From e2f472d802a9e1fb7ffd3fd81aa302e915351c47 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sun, 4 Jan 2026 10:52:31 +0700 Subject: [PATCH 001/245] rebase --- .gitignore | 4 + package-lock.json | 57 + package.json | 36 + scripts/components.ts | 62 + scripts/custom.ts | 17 + scripts/prefetch.ts | 5 + scripts/write/enum.ts | 43 + src/compilers/FormatProperties.ts | 11 + src/compilers/Memory.ts | 28 + src/components/Animation.ts | 3 + src/components/AnimationKeyframe.ts | 3 + src/components/Class.ts | 10 + src/components/UI.ts | 76 + src/components/Utils.ts | 169 + src/index.ts | 6 + src/types/enums/Anchor.ts | 11 + src/types/enums/AnimType.ts | 11 + src/types/enums/BagBinding.ts | 66 + src/types/enums/Binding.ts | 2793 +++++++++++++++++ src/types/enums/BindingCondition.ts | 8 + src/types/enums/BindingType.ts | 7 + src/types/enums/ButtonId.ts | 1111 +++++++ src/types/enums/ClipDirection.ts | 7 + src/types/enums/CollectionName.ts | 169 + src/types/enums/Color.ts | 1 + src/types/enums/DebugColor.ts | 10 + src/types/enums/Easing.ts | 34 + src/types/enums/FocusNavigationMode.ts | 6 + src/types/enums/FontSize.ts | 7 + src/types/enums/FontType.ts | 6 + src/types/enums/GlobalVariables.ts | 58 + src/types/enums/GridDimensions.ts | 86 + src/types/enums/InputModeCondition.ts | 6 + src/types/enums/Links.ts | 32 + src/types/enums/MappingType.ts | 6 + src/types/enums/McColor.ts | 14 + src/types/enums/Orientation.ts | 5 + src/types/enums/Renderer.ts | 54 + src/types/enums/Rotation.ts | 6 + src/types/enums/Scope.ts | 5 + src/types/enums/SliderName.ts | 67 + src/types/enums/TextAlignment.ts | 5 + src/types/enums/TextType.ts | 5 + src/types/enums/TextboxName.ts | 96 + src/types/enums/ToggleName.ts | 322 ++ src/types/enums/Type.ts | 35 + src/types/enums/index.ts | 30 + src/types/properties/components.ts | 70 + src/types/properties/element/Animation.ts | 28 + src/types/properties/element/Button.ts | 8 + src/types/properties/element/CarouselLabel.ts | 10 + src/types/properties/element/Collection.ts | 8 + src/types/properties/element/Control.ts | 21 + .../properties/element/CustomRenderer.ts | 72 + src/types/properties/element/Cycler.ts | 19 + src/types/properties/element/DataBinding.ts | 5 + src/types/properties/element/DropdownName.ts | 7 + src/types/properties/element/EditBox.ts | 19 + src/types/properties/element/Factory.ts | 20 + src/types/properties/element/Focus.ts | 33 + src/types/properties/element/Grid.ts | 13 + src/types/properties/element/GridItem.ts | 5 + .../properties/element/GridPageIndicator.ts | 7 + src/types/properties/element/Input.ts | 17 + src/types/properties/element/Layout.ts | 15 + src/types/properties/element/Screen.ts | 24 + src/types/properties/element/ScrollView.ts | 18 + .../properties/element/SelectionWheel.ts | 15 + src/types/properties/element/Slider.ts | 31 + src/types/properties/element/Sliderbox.ts | 5 + src/types/properties/element/Sound.ts | 17 + src/types/properties/element/Sprite.ts | 26 + src/types/properties/element/StackPanel.ts | 6 + src/types/properties/element/TTS.ts | 24 + src/types/properties/element/Tab.ts | 7 + src/types/properties/element/Text.ts | 26 + src/types/properties/element/Toggle.ts | 25 + .../properties/element/TooltipTrigger.ts | 9 + src/types/properties/element/index.ts | 30 + src/types/properties/index.ts | 3 + src/types/properties/value.ts | 57 + test/app.ts | 11 + tsconfig.json | 18 + 83 files changed, 6338 insertions(+) create mode 100644 .gitignore create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 scripts/components.ts create mode 100644 scripts/custom.ts create mode 100644 scripts/prefetch.ts create mode 100644 scripts/write/enum.ts create mode 100644 src/compilers/FormatProperties.ts create mode 100644 src/compilers/Memory.ts create mode 100644 src/components/Animation.ts create mode 100644 src/components/AnimationKeyframe.ts create mode 100644 src/components/Class.ts create mode 100644 src/components/UI.ts create mode 100644 src/components/Utils.ts create mode 100644 src/index.ts create mode 100644 src/types/enums/Anchor.ts create mode 100644 src/types/enums/AnimType.ts create mode 100644 src/types/enums/BagBinding.ts create mode 100644 src/types/enums/Binding.ts create mode 100644 src/types/enums/BindingCondition.ts create mode 100644 src/types/enums/BindingType.ts create mode 100644 src/types/enums/ButtonId.ts create mode 100644 src/types/enums/ClipDirection.ts create mode 100644 src/types/enums/CollectionName.ts create mode 100644 src/types/enums/Color.ts create mode 100644 src/types/enums/DebugColor.ts create mode 100644 src/types/enums/Easing.ts create mode 100644 src/types/enums/FocusNavigationMode.ts create mode 100644 src/types/enums/FontSize.ts create mode 100644 src/types/enums/FontType.ts create mode 100644 src/types/enums/GlobalVariables.ts create mode 100644 src/types/enums/GridDimensions.ts create mode 100644 src/types/enums/InputModeCondition.ts create mode 100644 src/types/enums/Links.ts create mode 100644 src/types/enums/MappingType.ts create mode 100644 src/types/enums/McColor.ts create mode 100644 src/types/enums/Orientation.ts create mode 100644 src/types/enums/Renderer.ts create mode 100644 src/types/enums/Rotation.ts create mode 100644 src/types/enums/Scope.ts create mode 100644 src/types/enums/SliderName.ts create mode 100644 src/types/enums/TextAlignment.ts create mode 100644 src/types/enums/TextType.ts create mode 100644 src/types/enums/TextboxName.ts create mode 100644 src/types/enums/ToggleName.ts create mode 100644 src/types/enums/Type.ts create mode 100644 src/types/enums/index.ts create mode 100644 src/types/properties/components.ts create mode 100644 src/types/properties/element/Animation.ts create mode 100644 src/types/properties/element/Button.ts create mode 100644 src/types/properties/element/CarouselLabel.ts create mode 100644 src/types/properties/element/Collection.ts create mode 100644 src/types/properties/element/Control.ts create mode 100644 src/types/properties/element/CustomRenderer.ts create mode 100644 src/types/properties/element/Cycler.ts create mode 100644 src/types/properties/element/DataBinding.ts create mode 100644 src/types/properties/element/DropdownName.ts create mode 100644 src/types/properties/element/EditBox.ts create mode 100644 src/types/properties/element/Factory.ts create mode 100644 src/types/properties/element/Focus.ts create mode 100644 src/types/properties/element/Grid.ts create mode 100644 src/types/properties/element/GridItem.ts create mode 100644 src/types/properties/element/GridPageIndicator.ts create mode 100644 src/types/properties/element/Input.ts create mode 100644 src/types/properties/element/Layout.ts create mode 100644 src/types/properties/element/Screen.ts create mode 100644 src/types/properties/element/ScrollView.ts create mode 100644 src/types/properties/element/SelectionWheel.ts create mode 100644 src/types/properties/element/Slider.ts create mode 100644 src/types/properties/element/Sliderbox.ts create mode 100644 src/types/properties/element/Sound.ts create mode 100644 src/types/properties/element/Sprite.ts create mode 100644 src/types/properties/element/StackPanel.ts create mode 100644 src/types/properties/element/TTS.ts create mode 100644 src/types/properties/element/Tab.ts create mode 100644 src/types/properties/element/Text.ts create mode 100644 src/types/properties/element/Toggle.ts create mode 100644 src/types/properties/element/TooltipTrigger.ts create mode 100644 src/types/properties/element/index.ts create mode 100644 src/types/properties/index.ts create mode 100644 src/types/properties/value.ts create mode 100644 test/app.ts create mode 100644 tsconfig.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..62f8e8a --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +dist +prefetch +node_modules +.tsbuildinfo \ No newline at end of file diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..8d1cc3c --- /dev/null +++ b/package-lock.json @@ -0,0 +1,57 @@ +{ + "name": "asajs", + "version": "4.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "asajs", + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "jsonc-parser": "^3.3.1" + }, + "devDependencies": { + "@types/node": "^25.0.3", + "typescript": "^5.9.3" + } + }, + "node_modules/@types/node": { + "version": "25.0.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.0.3.tgz", + "integrity": "sha512-W609buLVRVmeW693xKfzHeIV6nJGGz98uCPfeXI1ELMLXVeKYZ9m15fAMSaUPBHYLGFsVRcMmSCksQOrZV9BYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/jsonc-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.3.1.tgz", + "integrity": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==", + "license": "MIT" + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "dev": true, + "license": "MIT" + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..3b8a090 --- /dev/null +++ b/package.json @@ -0,0 +1,36 @@ +{ + "name": "asajs", + "version": "4.0.0", + "description": "Create your Minecraft JSON-UI resource packs using JavaScript", + "keywords": [ + "Minecraft", + "JSON-UI" + ], + "homepage": "https://github.com/asakiyuki/asajs", + "bugs": { + "url": "https://github.com/asakiyuki/asajs/issues" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/asakiyuki/asajs.git" + }, + "license": "MIT", + "author": "Asaki Yuki", + "type": "module", + "main": "dist/index.js", + "types": "dist/index.d.ts", + "scripts": { + "build": "npx tsc", + "watch": "npx tsc --watch", + "test": "bun test/app.ts", + "test-watch": "bun --watch test/app.ts", + "prefetch": "bun scripts/prefetch" + }, + "devDependencies": { + "@types/node": "^25.0.3", + "typescript": "^5.9.3" + }, + "dependencies": { + "jsonc-parser": "^3.3.1" + } +} diff --git a/scripts/components.ts b/scripts/components.ts new file mode 100644 index 0000000..4859674 --- /dev/null +++ b/scripts/components.ts @@ -0,0 +1,62 @@ +import JSONC from "jsonc-parser" +import fsp from "fs/promises" +import fs from "fs" + +if (!fs.existsSync("prefetch")) fs.mkdirSync("prefetch") + +export const Github = { + readFile: async (user: string, repo: string, branches: string, path: string) => { + try { + return fetch(`https://raw.githubusercontent.com/${user}/${repo}/refs/heads/${branches}/${path}`).then(res => + res.text() + ) + } catch (error) { + console.error(error) + process.exit(1) + } + }, +} + +export const PFFS = { + // Sync + readFile: (file: string) => { + try { + return fs.readFileSync(`prefetch/${file}`, "utf-8") + } catch (error) { + console.error(error) + process.exit(1) + } + }, + + writeFile: (file: string, data: string) => { + try { + file.split("/").reduce((a, b) => { + if (!fs.existsSync(a)) fs.mkdirSync(a) + return `prefetch/${a}/${b}` + }) + + return fsp.writeFile(`prefetch/${file}`, data) + } catch (error) { + console.error(error) + process.exit(1) + } + }, + + readFileJSON: (file: string) => { + try { + return JSONC.parse(PFFS.readFile(file)) + } catch (error) { + console.error(error) + process.exit(1) + } + }, + + writeFileJSON: (file: string, data: object) => { + try { + return PFFS.writeFile(file, JSON.stringify(data)) + } catch (error) { + console.error(error) + process.exit(1) + } + }, +} diff --git a/scripts/custom.ts b/scripts/custom.ts new file mode 100644 index 0000000..4360653 --- /dev/null +++ b/scripts/custom.ts @@ -0,0 +1,17 @@ +export {} // 👈 BẮT BUỘC + +declare global { + interface String { + toCamelCase(upcaseTop?: boolean): string + toSnakeCase(): string + } +} + +String.prototype.toCamelCase = function (this: string, upcaseTop: boolean): string { + const a = this.replace(/_([a-z])/g, g => g[1].toUpperCase()) + return upcaseTop ? a.charAt(0).toUpperCase() + a.slice(1) : a +} + +String.prototype.toSnakeCase = function (this: string): string { + return this.replace(/([A-Z])/g, "_$1").toLowerCase() +} diff --git a/scripts/prefetch.ts b/scripts/prefetch.ts new file mode 100644 index 0000000..6a0acfc --- /dev/null +++ b/scripts/prefetch.ts @@ -0,0 +1,5 @@ +import { Github, PFFS } from "./components" + +Github.readFile("KalmeMarq", "Bugrock-JSON-UI-Schemas", "main", "ui.schema.json").then(data => { + PFFS.writeFile("ui.schema.json", data) +}) diff --git a/scripts/write/enum.ts b/scripts/write/enum.ts new file mode 100644 index 0000000..01a6408 --- /dev/null +++ b/scripts/write/enum.ts @@ -0,0 +1,43 @@ +import { PFFS } from "../components" +import fs from "fs/promises" +import "../custom" + +const schema = PFFS.readFileJSON("ui.schema.json").definitions + +const enumPath = "src/types/enums/" + +const index: string[] = [] +for (const key in schema) { + const data = schema[key] + if (data.enum) { + const enumName = key.match(/\w+$/)?.[0].toCamelCase(true)! + index.push(`export { ${enumName} } from "./${enumName}.js"`) + const count = new Map() + + const fileData: string[] = [`export enum ${enumName} {`] + + for (const value of data.enum as string[]) { + if (enumName === "ButtonId") { + const values = value.match(/\w+/g)! + const name = + values[0] === "button" ? values.slice(1).join("_").toUpperCase() : values.join("_").toUpperCase() + if (name === undefined) continue + fileData.push(` ${count.get(name) ? `${name}_${count.get(name)}` : name} = "${value}",`) + + count.set(name, (count.get(name) || 0) + 1) + } else { + let name = value.match(/\w+$/g)?.join("_")?.toUpperCase()! + if (name === undefined) continue + if (/\d/.test(name?.[0])) name = "_" + name + fileData.push(` ${count.get(name) ? `${name}_${count.get(name)}` : name} = "${value}",`) + count.set(name, (count.get(name) || 0) + 1) + } + } + + fileData.push("}") + + fs.writeFile(`${enumPath}${enumName}.ts`, fileData.join("\n")) + } +} + +fs.writeFile(`${enumPath}index.ts`, index.join("\n")) diff --git a/src/compilers/FormatProperties.ts b/src/compilers/FormatProperties.ts new file mode 100644 index 0000000..e47d716 --- /dev/null +++ b/src/compilers/FormatProperties.ts @@ -0,0 +1,11 @@ +import { Type } from "../index.js" +import { Properties } from "../types/properties/components.js" + +export function FormatProperties(properties: any) { + if (properties.anchor) { + properties.anchor_from = properties.anchor_to = properties.anchor + delete properties.anchor + } + + return properties +} diff --git a/src/compilers/Memory.ts b/src/compilers/Memory.ts new file mode 100644 index 0000000..03fac9a --- /dev/null +++ b/src/compilers/Memory.ts @@ -0,0 +1,28 @@ +import { UI } from "../components/UI.js" + +export const Memory = { + cache: new Map> }>(), + + register_ui(path: string, element: UI) { + const { elements: saver, namespace } = this.get_file(path, element.namespace!) + + if (saver.get(element.name!)) { + console.error(`Element ${element.name} already exists in ${path}`) + process.exit(1) + } + + saver.set(element.name!, element) + return namespace + }, + + get_file(path: string, namespace: string) { + let cached = this.cache.get(path) + + if (!cached) { + cached = { namespace, elements: new Map>() } + this.cache.set(path, cached) + } + + return cached + }, +} diff --git a/src/components/Animation.ts b/src/components/Animation.ts new file mode 100644 index 0000000..2da4edf --- /dev/null +++ b/src/components/Animation.ts @@ -0,0 +1,3 @@ +import { Class } from "./Class.js" + +export class Animation extends Class {} diff --git a/src/components/AnimationKeyframe.ts b/src/components/AnimationKeyframe.ts new file mode 100644 index 0000000..f1b81bd --- /dev/null +++ b/src/components/AnimationKeyframe.ts @@ -0,0 +1,3 @@ +import { Class } from "./Class.js" + +export class AnimationKeyframe extends Class {} diff --git a/src/components/Class.ts b/src/components/Class.ts new file mode 100644 index 0000000..be58c58 --- /dev/null +++ b/src/components/Class.ts @@ -0,0 +1,10 @@ +export class Class { + private static arguments = "" + private static caller = "" + private static length = "" + private static name = "" + private static bind() {} + private static apply() {} + private static call() {} + private static toString() {} +} diff --git a/src/components/UI.ts b/src/components/UI.ts new file mode 100644 index 0000000..fc67e58 --- /dev/null +++ b/src/components/UI.ts @@ -0,0 +1,76 @@ +import { FormatProperties } from "../compilers/FormatProperties.js" +import { Memory } from "../compilers/Memory.js" +import { Type } from "../types/enums/Type.js" +import { Properties } from "../types/properties/components.js" +import { Class } from "./Class.js" +import { RandomString } from "./Utils.js" + +import util from "node:util" + +export class UI extends Class { + private path: string + + name: string + namespace: string + extend?: UI + + controls = new Map, Properties]>() + properties: Properties = {} + + constructor(public type?: T, name?: string, namespace?: string, path?: string) { + super() + + this.name = name?.match(/^\w+/)?.[0] || RandomString(16) + this.namespace = namespace || RandomString(16) + + if (!path) this.path = `@/${this.namespace}` + else this.path = path + + Memory.register_ui(this.path, this) + } + + setProperties(properties: Properties) { + this.properties = properties + return this + } + + addChild(child: UI, properties?: Properties, name?: string) { + if (this === child) { + throw new Error("Cannot add a child to itself") + } + + this.controls.set(name || child.name, [child, properties || {}]) + return this + } + + toString() { + return `@${this.namespace}.${this.name}` + } + + toJSON() { + const obj: any = { + type: this.type, + ...FormatProperties(this.properties), + } + + if (this.controls.size) { + obj.controls = [] + this.controls.forEach((e, key) => obj.controls.push({ [key + e[0]]: e[1] })) + } + + return obj + } + + [util.inspect.custom]($: any, opts: any) { + const obj: any = this.properties + + if (this.controls.size) { + obj.controls = [] + this.controls.forEach((e, key) => obj.controls.push({ [key + e[0]]: e[1] })) + } + + return `\x1b[33mUI\x1b[0m<\x1b[92m${ + this.type || `${this.extend}` + }\x1b[0m> \x1b[92m"${this}\x1b[92m"\x1b[0m ${util.inspect(obj, opts)}\n` + } +} diff --git a/src/components/Utils.ts b/src/components/Utils.ts new file mode 100644 index 0000000..4c0bc5e --- /dev/null +++ b/src/components/Utils.ts @@ -0,0 +1,169 @@ +import { Type } from "../types/enums/Type.js" +import { Array3 } from "../types/properties/value.js" +import { UI } from "./UI.js" + +import { Renderer } from "../types/enums/Renderer.js" +import { + RendererProperties, + Properties, + CollectionPanel, + Custom, + Grid, + Image, + InputPanel, + Label, + Panel, + Screen, + StackPanel, + TooltipTrigger, + Button, + Toggle, + Dropdown, + SelectionWheel, + EditBox, + ScrollbarBox, + ScrollbarTrack, + ScrollView, + Slider, + SliderBox, +} from "../types/properties/components.js" + +const CHARS = "0123456789abcdefghijklmnopqrstuvwxyz" + +export function Color(hex: string | number): Array3 { + if (typeof hex === "number") { + return [((hex >> 16) & 0xff) / 0xff, ((hex >> 8) & 0xff) / 0xff, (hex & 0xff) / 0xff] + } else { + if (hex.startsWith("#")) { + if (hex.length === 7) + return [ + parseInt(hex.slice(1, 3), 16) / 0xff, + parseInt(hex.slice(3, 5), 16) / 0xff, + parseInt(hex.slice(5, 7), 16) / 0xff, + ] + if (hex.length === 4) + return [ + parseInt(hex.slice(1, 2).repeat(2), 16) / 0xff, + parseInt(hex.slice(2, 3).repeat(2), 16) / 0xff, + parseInt(hex.slice(3, 4).repeat(2), 16) / 0xff, + ] + + console.error(`Invalid color: ${hex}`) + process.exit(1) + } else { + console.error(`Invalid color: ${hex}`) + process.exit(1) + } + } +} + +export function RandomString(length: number, base: number = 32) { + const chars = CHARS.slice(0, base) + const out = new Array(length) + + try { + const buffer = new Uint8Array(length) + crypto.getRandomValues(buffer) + for (let i = 0; i < length; i++) { + out[i] = chars[buffer[i] % base] + } + } catch { + for (let i = 0; i < length; i++) { + out[i] = chars[Math.floor(Math.random() * base)] + } + } + + return out.join("") +} + +// Quick Elements +export function Panel(properties?: Panel, name?: string, namespace?: string) { + return new UI(Type.PANEL, name, namespace).setProperties(properties || {}) +} + +export function CollectionPanel(properties?: CollectionPanel, name?: string, namespace?: string) { + return new UI(Type.COLLECTION_PANEL, name, namespace).setProperties(properties || {}) +} + +export function StackPanel(properties?: StackPanel, name?: string, namespace?: string) { + return new UI(Type.STACK_PANEL, name, namespace).setProperties(properties || {}) +} + +export function InputPanel(properties?: InputPanel, name?: string, namespace?: string) { + return new UI(Type.INPUT_PANEL, name, namespace).setProperties(properties || {}) +} + +export function Gird(properties?: Grid, name?: string, namespace?: string) { + return new UI(Type.GRID, name, namespace).setProperties(properties || {}) +} + +export function Screen(properties?: Screen, name?: string, namespace?: string) { + return new UI(Type.SCREEN, name, namespace).setProperties(properties || {}) +} + +export function Image(properties?: Image, name?: string, namespace?: string) { + return new UI(Type.IMAGE, name, namespace).setProperties(properties || {}) +} + +export function Label(properties?: Label, name?: string, namespace?: string) { + return new UI(Type.LABEL, name, namespace).setProperties(properties || {}) +} + +export function Custom( + renderer: R, + properties?: Custom | RendererProperties, + name?: string, + namespace?: string +) { + return new UI(Type.CUSTOM, name, namespace).setProperties({ renderer, ...properties }) +} + +export function TooltipTrigger(properties?: TooltipTrigger, name?: string, namespace?: string) { + return new UI(Type.TOOLTIP_TRIGGER, name, namespace).setProperties(properties || {}) +} + +export function Button(properties?: Button, name?: string, namespace?: string) { + return new UI(Type.BUTTON, name, namespace).setProperties(properties || {}) +} + +export function Toggle(properties?: Toggle, name?: string, namespace?: string) { + return new UI(Type.TOGGLE, name, namespace).setProperties(properties || {}) +} + +export function Dropdown(properties?: Dropdown, name?: string, namespace?: string) { + return new UI(Type.DROPDOWN, name, namespace).setProperties(properties || {}) +} + +export function SelectionWheel(properties?: SelectionWheel, name?: string, namespace?: string) { + return new UI(Type.SELECTION_WHEEL, name, namespace).setProperties(properties || {}) +} + +export function EditBox(properties?: EditBox, name?: string, namespace?: string) { + return new UI(Type.EDIT_BOX, name, namespace).setProperties(properties || {}) +} + +export function ScrollbarBox(properties?: ScrollbarBox, name?: string, namespace?: string) { + return new UI(Type.SCROLLBAR_BOX, name, namespace).setProperties(properties || {}) +} + +export function ScrollbarTrack(properties?: ScrollbarTrack, name?: string, namespace?: string) { + return new UI(Type.SCROLL_TRACK, name, namespace).setProperties(properties || {}) +} + +export function ScrollView(properties?: ScrollView, name?: string, namespace?: string) { + return new UI(Type.SCROLL_VIEW, name, namespace).setProperties(properties || {}) +} + +export function Slider(properties?: Slider, name?: string, namespace?: string) { + return new UI(Type.SLIDER, name, namespace).setProperties(properties || {}) +} + +export function SliderBox(properties?: SliderBox, name?: string, namespace?: string) { + return new UI(Type.SLIDER_BOX, name, namespace).setProperties(properties || {}) +} + +export function Extends(element: UI, properties?: Properties, name?: string, namespace?: string) { + const ui = new UI(undefined, name, namespace).setProperties(properties || {}) + ui.extend = element + return ui as typeof element +} diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 0000000..b187ce5 --- /dev/null +++ b/src/index.ts @@ -0,0 +1,6 @@ +export * from "./components/UI.js" +export { Animation } from "./components/Animation.js" +export * from "./components/Utils.js" + +export * from "./types/enums/index.js" +export * as Properties from "./types/properties/index.js" diff --git a/src/types/enums/Anchor.ts b/src/types/enums/Anchor.ts new file mode 100644 index 0000000..0d5722d --- /dev/null +++ b/src/types/enums/Anchor.ts @@ -0,0 +1,11 @@ +export enum Anchor { + TOP_LEFT = "top_left", + TOP_MIDDLE = "top_middle", + TOP_RIGHT = "top_right", + LEFT_MIDDLE = "left_middle", + CENTER = "center", + RIGHT_MIDDLE = "right_middle", + BOTTOM_LEFT = "bottom_left", + BOTTOM_MIDDLE = "bottom_middle", + BOTTOM_RIGHT = "bottom_right", +} \ No newline at end of file diff --git a/src/types/enums/AnimType.ts b/src/types/enums/AnimType.ts new file mode 100644 index 0000000..e5470c9 --- /dev/null +++ b/src/types/enums/AnimType.ts @@ -0,0 +1,11 @@ +export enum AnimType { + ALPHA = "alpha", + CLIP = "clip", + COLOR = "color", + FLIP_BOOK = "flip_book", + OFFSET = "offset", + SIZE = "size", + UV = "uv", + WAIT = "wait", + ASEPRITE_FLIP_BOOK = "aseprite_flip_book", +} \ No newline at end of file diff --git a/src/types/enums/BagBinding.ts b/src/types/enums/BagBinding.ts new file mode 100644 index 0000000..998a2f9 --- /dev/null +++ b/src/types/enums/BagBinding.ts @@ -0,0 +1,66 @@ +export enum BagBinding { + VISIBLE = "#visible", + TEXT = "#text", + ENABLED = "#enabled", + GRAYSCALE = "#grayscale", + TEXTURE = "#texture", + TEXTURE_FILE_SYSTEM = "#texture_file_system", + CLIP_RATIO = "#clip_ratio", + TOGGLE_STATE = "#toggle_state", + FOCUS_CHANGE_UP = "#focus_change_up", + FOCUS_CHANGE_DOWN = "#focus_change_down", + FOCUS_CHANGE_LEFT = "#focus_change_left", + FOCUS_CHANGE_RIGHT = "#focus_change_right", + FOCUS_IDENTIFIER = "#focus_identifier", + ITEM_ID_AUX = "#item_id_aux", + DISABLED_FILTER_VISIBLE = "#disabled_filter_visible", + MAXIMUM_GRID_ITEMS = "#maximum_grid_items", + DEFAULT_FOCUS_PRECEDENCE = "#default_focus_precedence", + LABEL_TEXT = "#label_text", + BUTTON_NAVIGATION = "#button_navigation", + FONT_TYPE = "#font_type", + COLOR = "#color", + PROPAGATEALPHA = "#propagateAlpha", + BANNER_PATTERNS = "#banner_patterns", + BANNER_COLORS = "#banner_colors", + IP = "#ip", + PROGRESS_LABEL = "#progress_label", + PROGRESS_BAR_TOTAL_AMOUNT = "#progress_bar_total_amount", + PROGRESS_BAR_CURRENT_AMOUNT = "#progress_bar_current_amount", + PROGRESS_BAR_VISIBLE = "#progress_bar_visible", + BILINEAR = "#bilinear", + MODAL = "#modal", + ALWAYS_HANDLE_CONTROLLER_DIRECTION = "#always_handle_controller_direction", + FOCUS_ENABLED = "#focus_enabled", + SLIDER_STEPS = "#slider_steps", + SLIDER_VALUE = "#slider_value", + ITEM_NAME = "#item_name", + CAN_BE_DESELECTED = "#can_be_deselected", + CHARGED_ITEM = "#charged_item", + ITEM_CUSTOM_COLOR = "#item_custom_color", + BANNER_TYPE = "#banner_type", + ALPHA = "#alpha", + TOGGLE_ON_HOVER = "#toggle_on_hover", + ANCHORED_OFFSET_VALUE_X = "#anchored_offset_value_x", + ANCHORED_OFFSET_VALUE_Y = "#anchored_offset_value_y", + COINS_TEXT = "#coins_text", + COLLECTION_LENGTH = "#collection_length", + ZIP_FOLDER = "#zip_folder", + ANCHORED_OFFSET_VALUE = "#anchored_offset_value", + NO_XBL_ICON_VISIBLE = "#no_xbl_icon_visible", + IS_HERO_AUTHOR_VISIBLE = "#is_hero_author_visible", + HERO_OFFER_MARKDOWN_VISIBLE = "#hero_offer_markdown_visible", + HERO_PROGRESS_VISIBLE = "#hero_progress_visible", + HERO_OFFER_DOWNLOAD_PROGRESS_LABEL = "#hero_offer_download_progress_label", + OFFER_MARKDOWN_PERCENTAGE = "#offer_markdown_percentage", + OFFER_MARKDOWN_VISIBLE = "#offer_markdown_visible", + HERO_OFFER_MARKDOWN_PERCENTAGE = "#hero_offer_markdown_percentage", + OFFER_FULL_PRICE = "#offer_full_price", + OFFER_STRIKETHROUGH_PRICE_VISIBLE = "#offer_strikethrough_price_visible", + IS_COLLECTION_QUERY_ON_SALE = "#is_collection_query_on_sale", + SHOW_SALES_BANNER = "#show_sales_banner", + TIME_REMAINING_LABEL = "#time_remaining_label", + SHOW_SALES_TIMER = "#show_sales_timer", + HYPERLINK = "#hyperlink", + SEACH_RESULTS_CLOSE_BUTTON_VISIBLE = "#seach_results_close_button_visible", +} \ No newline at end of file diff --git a/src/types/enums/Binding.ts b/src/types/enums/Binding.ts new file mode 100644 index 0000000..b147650 --- /dev/null +++ b/src/types/enums/Binding.ts @@ -0,0 +1,2793 @@ +export enum Binding { + GAMERSCORE_VALUE = "#gamerscore_value", + ACHIEVEMENTS_VALUE = "#achievements_value", + TIME_PLAYED_VALUE = "#time_played_value", + ACHIEVEMENT_PERCENTAGE = "#achievement_percentage", + ACHIEVEMENT_GRID_DIMENSION = "#achievement_grid_dimension", + IS_GAMEPAD = "#is_gamepad", + IS_LOCKED = "#is_locked", + IS_UNLOCKED = "#is_unlocked", + ACHIEVEMENT_NAME = "#achievement_name", + TEXTURE_NAME = "#texture_name", + GRAYSCALE_TEXTURE = "#grayscale_texture", + TEXTURE_LOCATIONTYPE = "#texture_locationtype", + ACHIEVEMENT_DESCRIPTION = "#achievement_description", + ACHIEVEMENT_GAMER_SCORE = "#achievement_gamer_score", + ACHIEVEMENT_WORLD_SCORE = "#achievement_world_score", + TROPHY_PROGRESS_PERCENTAGE = "#trophy_progress_percentage", + PROGRESS_PERCENTAGE = "#progress_percentage", + PLAY_BUTTON_ENABLED = "#play_button_enabled", + PLAY_BUTTON_DISABLED = "#play_button_disabled", + SAVE_BUTTON_ENABLED = "#save_button_enabled", + SAVE_BUTTON_DISABLED = "#save_button_disabled", + TITLE_TEXT = "#title_text", + CROSS_OUT_ICON = "#cross_out_icon", + COST_TEXT = "#cost_text", + COST_TEXT_RED = "#cost_text_red", + COST_TEXT_GREEN = "#cost_text_green", + COLLECTION_TOTAL_ITEMS = "#collection_total_items", + INVENTORY_FOCUSED = "#inventory_focused", + SLOTS_FOCUSED = "#slots_focused", + BUTTON_TEXT = "#button_text", + BUTTON_VISIBLE = "#button_visible", + AUTHENTICATION_MESSAGE = "#authentication_message", + EULA_CLICKABLE = "#eula_clickable", + POPUP_TEXT = "#popup_text", + POPUP_MESSAGE_STUDENT_VISIBLE = "#popup_message_student_visible", + HYPERLINK_PROMPT_TEXT = "#hyperlink_prompt_text", + GAMEPAD_HELPER_VISIBLE = "#gamepad_helper_visible", + SELECTED = "#selected", + EXTRA_IMAGE_SELECTION = "#extra_image_selection", + ACTIVE = "#active", + BUTTON_HOVER = "#button_hover", + EMPTY_BOTTLE_IMAGE_VISIBLE = "#empty_bottle_image_visible", + BREWING_BUBBLES_RATIO = "#brewing_bubbles_ratio", + BREWING_ARROW_RATIO = "#brewing_arrow_ratio", + KEYBOARD_NOT_BEING_USED = "#keyboard_not_being_used", + KEYBOARD_BEING_USED = "#keyboard_being_used", + SEND_BUTTON_VISIBLE = "#send_button_visible", + BUTTONS_VISIBLE = "#buttons_visible", + CHAT_VISIBLE = "#chat_visible", + AUTO_COMPLETE_ITEM = "#auto_complete_item", + AUTO_COMPLETE_TEXT = "#auto_complete_text", + GET_GRID_SIZE = "#get_grid_size", + DISCONNECT_TEXT = "#disconnect_text", + SHOW_SELECTED_BUTTON_HIGHLIGHT = "#show_selected_button_highlight", + ACTIVE_ENCHANT = "#active_enchant", + INPUT_ITEM_ID = "#input_item_id", + INACTIVE_ENCHANT = "#inactive_enchant", + OUTPUT_ITEM_ID = "#output_item_id", + ENCHANT_HINT = "#enchant_hint", + OPEN = "#open", + PLAYER_LEVEL_COLOR = "#player_level_color", + PLAYER_LEVEL_INFO = "#player_level_info", + RUNES = "#runes", + COST = "#cost", + SINGLE_LABEL_VISIBLE = "#single_label_visible", + DUAL_LABEL_VISIBLE = "#dual_label_visible", + UPLOAD_CONTENT_VISIBLE = "#upload_content_visible", + WARNING_CONTENT_VISIBLE = "#warning_content_visible", + PLAY_BUTTON_VISIBLE = "#play_button_visible", + CANCEL_BUTTON_VISIBLE = "#cancel_button_visible", + WARNING_BUTTON2_VISIBLE = "#warning_button2_visible", + OUTPUT_NAME = "#output_name", + OUTPUT_NAMES = "#output_names", + OUTPUT_ID = "#output_id", + FURNACE_ARROW_RATIO = "#furnace_arrow_ratio", + FURNACE_FLAME_RATIO = "#furnace_flame_ratio", + GAMEPAD_ACTION_ITEM_GRID_DIMENSION = "#gamepad_action_item_grid_dimension", + ROOT_VISIBLE = "#root_visible", + CDA_VISIBLE = "#cda_visible", + BINDING_STATE = "#binding_state", + ACTION = "#action", + BINDING = "#binding", + CONFIRMATION = "#confirmation", + ENTITY_ID = "#entity_id", + EQUIP_GRID_DIMENSIONS = "#equip_grid_dimensions", + SADLE_SLOT_CENTERED = "#sadle_slot_centered", + HAS_ARMOR_SLOT = "#has_armor_slot", + IS_CHESTED = "#is_chested", + HORSE_NAME_LOC = "#horse_name_loc", + INV_GRID_DIMENSIONS = "#inv_grid_dimensions", + IS_NOT_CREATIVE_MODE = "#is_not_creative_mode", + IS_CREATIVE_MODE = "#is_creative_mode", + LEVEL_NUMBER = "#level_number", + LEVEL_NUMBER_VISIBLE = "#level_number_visible", + INVENTORY_TOUCH_BUTTON = "#inventory_touch_button", + EXP_PROGRESS = "#exp_progress", + SLOT_SELECTED = "#slot_selected", + CHAT_TEXT = "#chat_text", + INVENTORY_STACK_COUNT = "#inventory_stack_count", + STACK_COUNT_VISIBLE = "#stack_count_visible", + IS_NOT_RIDING = "#is_not_riding", + IS_RIDING = "#is_riding", + HUD_VISIBLE_CENTERED = "#hud_visible_centered", + HUD_VISIBLE_NOT_CENTERED = "#hud_visible_not_centered", + HOTBAR_ELIPSES_RIGHT_VISIBLE = "#hotbar_elipses_right_visible", + HOTBAR_ELIPSES_LEFT_VISIBLE = "#hotbar_elipses_left_visible", + HOTBAR_GRID_DIMENSIONS = "#hotbar_grid_dimensions", + EDU_HOTBAR_FIXED_INVENTORY_VISIBLE = "#edu_hotbar_fixed_inventory_visible", + HOTBAR_GRID_DIMENSIONS_FIXED_INVENTORY = "#hotbar_grid_dimensions_fixed_inventory", + ITEM_TEXT = "#item_text", + TIP_TEXT = "#tip_text", + BOSSNAME = "#bossName", + BAR_VISIBLE = "#bar_visible", + PLAYER_POSITION_VISIBLE = "#player_position_visible", + PLAYER_POSITION_TEXT = "#player_position_text", + HUD_VISIBLE_CENTERED_RIDINGVR = "#hud_visible_centered_ridingvr", + VR_RIDING = "#vr_riding", + BOSS_HUD_PADDING = "#boss_hud_padding", + HUD_VISIBLE = "#hud_visible", + EMPTY_ARMOR_IMAGE_VISIBLE = "#empty_armor_image_visible", + ONLINE_VISIBLE = "#online_visible", + OFFLINE_VISIBLE = "#offline_visible", + LABEL_LINE1 = "#label_line1", + LABEL_LINE2 = "#label_line2", + ONLINE_FRIEND_GRID_DIMENSION = "#online_friend_grid_dimension", + OFFLINE_FRIEND_GRID_DIMENSION = "#offline_friend_grid_dimension", + ONLINE_FRIENDS_VISIBLE = "#online_friends_visible", + OFFLINE_FRIENDS_VISIBLE = "#offline_friends_visible", + NO_FRIENDS_VISIBLE = "#no_friends_visible", + PREVIEW_SKIN = "#preview_skin", + ACHIEVEMENTS_VISIBLE = "#achievements_visible", + INVITE_BUTTON_VISIBLE = "#invite_button_visible", + IS_TRIAL_VERSION = "#is_trial_version", + IS_FULL_VERSION = "#is_full_version", + IP_ADDRESS_VISIBLE = "#ip_address_visible", + IP_ADDRESS_TEXT = "#ip_address_text", + PLAYERS_GRID_DIMENSION = "#players_grid_dimension", + BUTTON_ENABLED = "#button_enabled", + BUTTON_DISABLED = "#button_disabled", + LOCAL_ICON_VISIBLE = "#local_icon_visible", + TEXTURE_SOURCE = "#texture_source", + GAMERPIC_VISIBLE = "#gamerpic_visible", + GAMERTAG = "#gamertag", + REALMS_NOT_AVAILABLE_TEXT = "#realms_not_available_text", + REALMS_NOT_AVAILABLE_TEXT_VISIBLE = "#realms_not_available_text_visible", + REALMS_NEW_REALM_VISIBLE = "#realms_new_realm_visible", + REALMS_XBOX_LIVE_SIGNIN_VISIBLE = "#realms_xbox_live_signin_visible", + REALMS_CHECK_STORE_VISIBLE = "#realms_check_store_visible", + REALMS_WORLD_HEADER = "#realms_world_header", + REALMS_WORLD_DETAILS = "#realms_world_details", + REALMS_WORLD_PLAYER_COUNT = "#realms_world_player_count", + REALMS_EDIT_VISIBLE = "#realms_edit_visible", + REALMS_INFO_VISIBLE = "#realms_info_visible", + REALMS_NETWORK_WORLD_ITEM_GRID_DIMENSION = "#realms_network_world_item_grid_dimension", + NETWORK_WORLD_HEADER = "#network_world_header", + NETWORK_WORLD_DETAILS = "#network_world_details", + NETWORK_WORLD_PLAYER_COUNT = "#network_world_player_count", + GAME_ONLINE = "#game_online", + GAME_UNAVAILABLE = "#game_unavailable", + GAME_OFFLINE = "#game_offline", + LOCAL_WORLD_NAME = "#local_world_name", + LOCAL_WORLD_GAME_MODE = "#local_world_game_mode", + LOCAL_WORLD_DATE = "#local_world_date", + LOCAL_WORLDFILE_SIZE = "#local_worldfile_size", + LOCAL_AND_CLOUD_STORAGE_VISIBLE = "#local_and_cloud_storage_visible", + CLOUD_ONLY_STORAGE_VISIBLE = "#cloud_only_storage_visible", + LOCAL_WORLD_ITEM_GRID_DIMENSION = "#local_world_item_grid_dimension", + REALMS_NOTIFICATION_COUNT = "#realms_notification_count", + NO_LOCAL_WORLDS = "#no_local_worlds", + FRIENDS_GRID_VISIBLE = "#friends_grid_visible", + NO_FRIENDS_GRID_VISIBLE = "#no_friends_grid_visible", + MULTIPLAYER_PRIVILEGES_BLOCKED_VISIBLE = "#multiplayer_privileges_blocked_visible", + LAN_GRID_VISIBLE = "#lan_grid_visible", + SERVERS_GRID_VISIBLE = "#servers_grid_visible", + REALMS_WORLD_LIST_VISIBLE = "#realms_world_list_visible", + REALMS_INFORMATION_PANEL_VISIBLE = "#realms_information_panel_visible", + REALMS_NOT_AVAILABLE_CONTENT = "#realms_not_available_content", + REALMS_OUTDATED_PANEL_VISIBLE = "#realms_outdated_panel_visible", + LOCAL_ONLY_STORAGE_VISIBLE = "#local_only_storage_visible", + SCREENSHOT_PATH = "#screenshot_path", + TRASH_VISIBILITY_LEFT = "#trash_visibility_left", + TRASH_VISIBILITY_RIGHT = "#trash_visibility_right", + PHOTO_PAGE_ITEM_NAME_LEFT = "#photo_page_item_name_left", + PHOTO_PAGE_ITEM_NAME_RIGHT = "#photo_page_item_name_right", + PHOTO_VISIBILITY = "#photo_visibility", + PAGE_PREV_VISIBILITY = "#page_prev_visibility", + PAGE_NEXT_VISIBILITY = "#page_next_visibility", + EXPORT_VISIBILITY = "#export_visibility", + SELECTEDPACKS = "#selectedPacks", + SELECTEDPACKSIZE = "#selectedPackSize", + REQUIRED_RESOURCE_PACK_GRID_DIMENSION = "#required_resource_pack_grid_dimension", + OPTIONAL_RESOURCE_PACK_GRID_DIMENSION = "#optional_resource_pack_grid_dimension", + PROGRESS_TEXT = "#progress_text", + BAR_ANIMATION_VISIBLE = "#bar_animation_visible", + LOADING_BAR_VISIBLE = "#loading_bar_visible", + LOADING_BAR_TOTAL_AMOUNT = "#loading_bar_total_amount", + LOADING_BAR_CURRENT_AMOUNT = "#loading_bar_current_amount", + CANCEL_VISIBLE = "#cancel_visible", + CANCEL_NOT_VISIBLE = "#cancel_not_visible", + PENDING_INVITES_VISIBLE = "#pending_invites_visible", + RESPONSE_BUTTONS_VISIBLE = "#response_buttons_visible", + REALM_NAME = "#realm_name", + REALM_OWNER = "#realm_owner", + ACCEPT_PANEL_VISIBLE = "#accept_panel_visible", + INVITE_STATUS = "#invite_status", + GAMERTAG_ITEM_GRID_DIMENSION = "#gamertag_item_grid_dimension", + NO_INVITES_VISIBLE = "#no_invites_visible", + REALM_SUBSCRIPTION_ORIGIN_VISIBILITY = "#realm_subscription_origin_visibility", + MANAGE_SUBSCRIPTION_BUTTON_VISIBLE = "#manage_subscription_button_visible", + RENEW_SUBSCRIPTION_BUTTON_VISIBLE = "#renew_subscription_button_visible", + EXTEND_CONSUMABLE_BUTTON_VISIBLE = "#extend_consumable_button_visible", + RENEW_CONSUMABLE_BUTTON_VISIBLE = "#renew_consumable_button_visible", + OPEN_REALM_BUTTON_VISIBLE = "#open_realm_button_visible", + CLOSE_REALM_BUTTON_VISIBLE = "#close_realm_button_visible", + REALMS_SUBSCRIPTION_LOADING_MESSAGE_VISIBLE = "#realms_subscription_loading_message_visible", + REALMS_SUBSCRIPTION_INFO_VISIBLE = "#realms_subscription_info_visible", + BRANCH_NAME = "#branch_name", + COMMIT_ID = "#commit_id", + REALMS_BRANCH_GRID_DIMENSION = "#realms_branch_grid_dimension", + SELECTED_BRANCH_COMMIT_ID = "#selected_branch_commit_id", + PREV_BUTTON_VISIBLE = "#prev_button_visible", + PAGE_INDEX_TEXT = "#page_index_text", + NEXT_BUTTON_VISIBLE = "#next_button_visible", + DISABLED_PLAY_BUTTON_VISIBLE = "#disabled_play_button_visible", + IS_REALM_EXPIRED = "#is_realm_expired", + INVITE_FRIENDS_VISIBLE = "#invite_friends_visible", + MEMBERS_VISIBLE = "#members_visible", + MEMBERS_GRID_DIMENSION = "#members_grid_dimension", + INVITED_FRIENDS_GRID_DIMENSION = "#invited_friends_grid_dimension", + UNINVITED_FRIENDS_VISIBLE = "#uninvited_friends_visible", + UNINVITED_FRIENDS_GRID_DIMENSION = "#uninvited_friends_grid_dimension", + LOADING_FRIENDS = "#loading_friends", + PLAYER_NOT_REMOVED = "#player_not_removed", + REAL_NAME = "#real_name", + SHOW_MEMBER_SETTINGS = "#show_member_settings", + PLAYER_STATUS_VISIBLE = "#player_status_visible", + UNDO_ACTION_VISIBLE = "#undo_action_visible", + PLAYER_ONLINE = "#player_online", + PLAYER_OFFLINE = "#player_offline", + PENDING_INVITE_LEFT = "#pending_invite_left", + PENDING_INVITE_RIGHT = "#pending_invite_right", + PLUS_BUTTON_VISIBLE = "#plus_button_visible", + SCREENSHOT_TEXTURE_NAME = "#screenshot_texture_name", + SCREENSHOT_TEXTURE_FILE_SYSTEM = "#screenshot_texture_file_system", + SCREENSHOTS_GRID_DIMENSIONS = "#screenshots_grid_dimensions", + ZOOMED_TEXTURE_NAME = "#zoomed_texture_name", + ZOOMED_TEXTURE_FILE_SYSTEM = "#zoomed_texture_file_system", + UNLOCK_BUTTON_VISIBLE = "#unlock_button_visible", + CREATE_WORLD_BUTTON_VISIBLE = "#create_world_button_visible", + ICON_PATH = "#icon_path", + ICON_ZIP = "#icon_zip", + ICON_FILE_SYSTEM = "#icon_file_system", + IS_PREMIUM_UNLOCKED = "#is_premium_unlocked", + IS_PREMIUM_LOCKED = "#is_premium_locked", + SHOW_DESCRIPTION = "#show_description", + DIRECTION_BUTTON_VISIBLE = "#direction_button_visible", + DESCRIPTION = "#description", + NAME = "#name", + SIZE = "#size", + IS_SELECTED = "#is_selected", + SKIN_INDEX = "#skin_index", + SKIN_LOCK_VISIBLE = "#skin_lock_visible", + SKINS_GRID_DIMENSIONS = "#skins_grid_dimensions", + SKIN_NAME = "#skin_name", + SHOW_RELOAD_CUSTOM_SKIN_BUTTON = "#show_reload_custom_skin_button", + SHOW_PREVIEW_SKIN_LOCK = "#show_preview_skin_lock", + SHOW_PACK_LOCKED = "#show_pack_locked", + SHOW_PACK_UNLOCKED = "#show_pack_unlocked", + PREMIUM_SKINS_GRID_DIMENSIONS = "#premium_skins_grid_dimensions", + PACK_NAME = "#pack_name", + SHOW_NEW_PACK_ICON = "#show_new_pack_icon", + CYCLE_PACK_LEFT_BUTTON_VISIBLE = "#cycle_pack_left_button_visible", + PREMIUM_PACKS_GRID_DIMENSIONS = "#premium_packs_grid_dimensions", + DEFAULT_SKINS_GRID_DIMENSIONS = "#default_skins_grid_dimensions", + RECENT_SKINS_GRID_DIMENSIONS = "#recent_skins_grid_dimensions", + DEVELOPMENT_VERSION = "#development_version", + VERSION = "#version", + PLAYERNAME = "#playername", + FEEDBACK_VISIBLE = "#feedback_visible", + SIGN_IN_VISIBLE = "#sign_in_visible", + SIGNINGIN_VISIBLE = "#signingin_visible", + SIGNINGIN_TEXT = "#signingin_text", + NEW_OFFERS = "#new_offers", + TRIAL_GAME_MODE = "#trial_game_mode", + REALMS_NOTIFICATION_VISIBLE = "#realms_notification_visible", + FEATURED_TEXTURE_PATH = "#featured_texture_path", + FEATURED_TEXTURE_FILE_SYSTEM = "#featured_texture_file_system", + NEW_FEATURED_OFFER = "#new_featured_offer", + FEATURED_TITLE = "#featured_title", + FEATURED_DESC = "#featured_desc", + FEATURED_PRICE = "#featured_price", + OFFER_TEXTURE_NAME = "#offer_texture_name", + OFFER_TEXTURE_FILE_SYSTEM = "#offer_texture_file_system", + NEW_OFFER = "#new_offer", + VALID_OFFER_INDEX = "#valid_offer_index", + OFFER_GRID_DIMENSIONS = "#offer_grid_dimensions", + OFFER_CATEGORY_NAME = "#offer_category_name", + CATEGORY_GRID_DIMENSIONS = "#category_grid_dimensions", + IS_RESOURCE_PACK = "#is_resource_pack", + IS_ACHIEVEMENT = "#is_achievement", + IS_INVITE = "#is_invite", + TOAST_TITLE = "#toast_title", + TOAST_SUBTITLE = "#toast_subtitle", + KEYBOARD_HELPER_VISIBLE = "#keyboard_helper_visible", + ITEM_DURABILITY_VISIBLE = "#item_durability_visible", + ITEM_DURABILITY_TOTAL_AMOUNT = "#item_durability_total_amount", + ITEM_DURABILITY_CURRENT_AMOUNT = "#item_durability_current_amount", + SELECTED_ITEM_DURABILITY_VISIBLE = "#selected_item_durability_visible", + SELECTED_ITEM_DURABILITY_TOTAL_AMOUNT = "#selected_item_durability_total_amount", + SELECTED_ITEM_DURABILITY_CURRENT_AMOUNT = "#selected_item_durability_current_amount", + GESTURE_CONTROL_ENABLED = "#gesture_control_enabled", + SHOW_HOVERED_SELECTED_INVENTORY_SLOT = "#show_hovered_selected_inventory_slot", + SHOW_SELECTED_SLOT = "#show_selected_slot", + SHOW_HOVERED_SELECTED_SLOT = "#show_hovered_selected_slot", + START_SELECTED = "#start_selected", + INVENTORY_SELECTED_ITEM_STACK_COUNT = "#inventory_selected_item_stack_count", + INVENTORY_SELECTED_ITEM = "#inventory_selected_item", + INVENTORY_SELECTED_ITEM_COLOR = "#inventory_selected_item_color", + MESSAGE = "#message", + TITLE = "#title", + BINDING_BUTTON_TEXT = "#binding_button_text", + KEYMAPPING_NAME = "#keymapping_name", + VR_ROLL_TURN_SENSITIVITY_VISIBLE = "#vr_roll_turn_sensitivity_visible", + KEYBOARD_GRID_DIMENSION = "#keyboard_grid_dimension", + GAMEPAD_GRID_DIMENSION = "#gamepad_grid_dimension", + NOT_LOGGED_IN = "#not_logged_in", + LOGGED_IN = "#logged_in", + SHOW_MSAA = "#show_msaa", + SHOW_VR_MSAA = "#show_vr_msaa", + SHOW_TEXEL_AA = "#show_texel_aa", + DEVICE_HAS_POSITIONAL_TRACKING = "#device_has_positional_tracking", + LANGUAGE_GRID_DIMENSION = "#language_grid_dimension", + DEV_REALMS_ENVIRONMENT_RADIO_LOCAL = "#dev_realms_environment_radio_local", + DOWNLOAD_BUTTON_ENABLED = "#download_button_enabled", + UPLOAD_BUTTON_ENABLED = "#upload_button_enabled", + RESET_BUTTON_ENABLED = "#reset_button_enabled", + RESET_BUTTON_VISIBLE = "#reset_button_visible", + SECTION_TITLE = "#section_title", + DIALOG_TITLE = "#dialog_title", + ACHIEVMENT_WARNING_VISIBLE = "#achievment_warning_visible", + PLAYER_GAME_MODE_DROPDOWN_VISIBLE = "#player_game_mode_dropdown_visible", + SHOW_WORLD_TYPE_OPTIONS = "#show_world_type_options", + SHOW_CONVERT_TO_INFINITE_BUTTON = "#show_convert_to_infinite_button", + CAN_BE_XBOXLIVE_VISIBLE = "#can_be_xboxlive_visible", + CAN_BE_SERVER_VISIBLE = "#can_be_server_visible", + KEYBOARD_MOUSE_SENSITIVITY = "#keyboard_mouse_sensitivity", + VR_UI_MOUSE_SENSITIVITY = "#vr_ui_mouse_sensitivity", + CONTROLLER_SENSITIVITY = "#controller_sensitivity", + VR_SENSITIVITY = "#vr_sensitivity", + VR_ROLL_TURN_SENSITIVITY = "#vr_roll_turn_sensitivity", + TOUCH_SENSITIVITY = "#touch_sensitivity", + BUTTON_SIZE = "#button_size", + KEYBOARD_MOUSE_SENSITIVITY_ENABLED = "#keyboard_mouse_sensitivity_enabled", + VR_UI_MOUSE_SENSITIVITY_ENABLED = "#vr_ui_mouse_sensitivity_enabled", + KEYBOARD_MOUSE_INVERT_Y_AXIS_ENABLED = "#keyboard_mouse_invert_y_axis_enabled", + KEYBOARD_MOUSE_AUTOJUMP_ENABLED = "#keyboard_mouse_autojump_enabled", + KEYBOARD_MOUSE_TOGGLE_CROUCH_ENABLED = "#keyboard_mouse_toggle_crouch_enabled", + CONTROLLER_SENSITIVITY_ENABLED = "#controller_sensitivity_enabled", + VR_SENSITIVITY_ENABLED = "#vr_sensitivity_enabled", + VR_ROLL_TURN_SENSITIVITY_ENABLED = "#vr_roll_turn_sensitivity_enabled", + CONTROLLER_INVERT_Y_AXIS_ENABLED = "#controller_invert_y_axis_enabled", + CONTROLLER_AUTOJUMP_ENABLED = "#controller_autojump_enabled", + VR_AUTOJUMP_ENABLED = "#vr_autojump_enabled", + CONTROLLER_TOGGLE_CROUCH_ENABLED = "#controller_toggle_crouch_enabled", + CONTROLLER_VIBRATION_ENABLED = "#controller_vibration_enabled", + TOUCH_SENSITIVITY_ENABLED = "#touch_sensitivity_enabled", + TOUCH_INVERT_Y_AXIS_ENABLED = "#touch_invert_y_axis_enabled", + TOUCH_AUTOJUMP_ENABLED = "#touch_autojump_enabled", + TOUCH_VIBRATION_ENABLED = "#touch_vibration_enabled", + TOUCH_TOGGLE_CROUCH_ENABLED = "#touch_toggle_crouch_enabled", + SPLIT_CONTROLS_ENABLED = "#split_controls_enabled", + LEFT_HANDED_ENABLED = "#left_handed_enabled", + SWAP_JUMP_AND_SNEAK_ENABLED = "#swap_jump_and_sneak_enabled", + BUTTON_SIZE_ENABLED = "#button_size_enabled", + KEYBOARD_MOUSE_INVERT_Y_AXIS = "#keyboard_mouse_invert_y_axis", + KEYBOARD_MOUSE_AUTOJUMP = "#keyboard_mouse_autojump", + KEYBOARD_MOUSE_TOGGLE_CROUCH = "#keyboard_mouse_toggle_crouch", + CONTROLLER_INVERT_Y_AXIS = "#controller_invert_y_axis", + CONTROLLER_AUTOJUMP = "#controller_autojump", + VR_AUTOJUMP = "#vr_autojump", + CONTROLLER_TOGGLE_CROUCH = "#controller_toggle_crouch", + CONTROLLER_VIBRATION = "#controller_vibration", + TOUCH_INVERT_Y_AXIS = "#touch_invert_y_axis", + TOUCH_AUTOJUMP = "#touch_autojump", + TOUCH_VIBRATION = "#touch_vibration", + TOUCH_TOGGLE_CROUCH = "#touch_toggle_crouch", + SPLIT_CONTROLS = "#split_controls", + LEFT_HANDED = "#left_handed", + SWAP_JUMP_AND_SNEAK = "#swap_jump_and_sneak", + ALLOW_CELLULAR_DATA = "#allow_cellular_data", + PLAYER_NAME = "#player_name", + FULL_SCREEN = "#full_screen", + VIEW_BOBBING = "#view_bobbing", + GRAPHICS_TOGGLE = "#graphics_toggle", + FANCY_SKIES = "#fancy_skies", + TRANSPARENT_LEAVES = "#transparent_leaves", + HIDE_GUI = "#hide_gui", + VR_HIDE_GUI = "#vr_hide_gui", + TEXEL_AA = "#texel_aa", + VR_3D_RENDERING = "#vr_3d_rendering", + VR_MIRROR_TEXTURE = "#vr_mirror_texture", + LIMIT_WORLD_SIZE = "#limit_world_size", + COMFORT_CONTROLS = "#comfort_controls", + SHOW_COMFORT_SELECT_SCREEN = "#show_comfort_select_screen", + VR_LIVING_ROOM_CURSOR_CENTERED = "#vr_living_room_cursor_centered", + VR_HMD_DISPLACEMENT = "#vr_hmd_displacement", + VR_LINEAR_JUMP = "#vr_linear_jump", + VR_LINEAR_MOTION = "#vr_linear_motion", + STICKY_MINING = "#sticky_mining", + VR_HUD_DRIFTS = "#vr_hud_drifts", + VR_HEAD_STEERING = "#vr_head_steering", + STUTTER_TURN = "#stutter_turn", + STUTTER_CONSTANT_ANGLE_OR_TIME = "#stutter_constant_angle_or_time", + STUTTER_TURN_SOUND = "#stutter_turn_sound", + VR_ROLL_TURN = "#vr_roll_turn", + DEV_ENABLE_DEBUG_UI = "#dev_enable_debug_ui", + DEV_OFFERS_UNLOCKED = "#dev_offers_unlocked", + DEV_RENDER_BOUNDING_BOX = "#dev_render_bounding_box", + DEV_RENDER_PATHS = "#dev_render_paths", + DEV_RENDER_GOAL_STATE = "#dev_render_goal_state", + DEV_RESET_CLIENT_ID = "#dev_reset_client_id", + DEV_SHOW_CHUNK_MAP = "#dev_show_chunk_map", + DEV_ENABLE_PROFILER = "#dev_enable_profiler", + DEV_ACHIEVEMENTS_ALWAYS_ENABLED = "#dev_achievements_always_enabled", + DEV_USE_LOCAL_SERVER = "#dev_use_local_server", + DEV_USE_IPV6_ONLY = "#dev_use_ipv6_only", + DEV_USE_FPS_INDEPENDENT_TURNING = "#dev_use_fps_independent_turning", + DEV_USE_RETAIL_XBOX_SANDBOX = "#dev_use_retail_xbox_sandbox", + DEV_CREATE_REALM_WITHOUT_PURCHASE = "#dev_create_realm_without_purchase", + DEV_REALMS_ENDPOINT = "#dev_realms_endpoint", + DEV_REALMS_ENDPOINT_PAYMENT = "#dev_realms_endpoint_payment", + DEV_REALMS_RELYING_PARTY = "#dev_realms_relying_party", + DEV_REALMS_RELYING_PARTY_PAYMENT = "#dev_realms_relying_party_payment", + ALLOW_CELLULAR_DATA_ENABLED = "#allow_cellular_data_enabled", + PLAYER_NAME_ENABLED = "#player_name_enabled", + FULL_SCREEN_ENABLED = "#full_screen_enabled", + GUI_SCALE_ENABLED = "#gui_scale_enabled", + GAMMA_ENABLED = "#gamma_enabled", + VR_GAMMA_ENABLED = "#vr_gamma_enabled", + THIRD_PERSON_DROPDOWN_ENABLED = "#third_person_dropdown_enabled", + VIEW_BOBBING_ENABLED = "#view_bobbing_enabled", + GRAPHICS_TOGGLE_ENABLED = "#graphics_toggle_enabled", + FANCY_SKIES_ENABLED = "#fancy_skies_enabled", + TRANSPARENT_LEAVES_ENABLED = "#transparent_leaves_enabled", + HIDE_GUI_ENABLED = "#hide_gui_enabled", + VR_HIDE_GUI_ENABLED = "#vr_hide_gui_enabled", + FIELD_OF_VIEW_ENABLED = "#field_of_view_enabled", + RENDER_DISTANCE_ENABLED = "#render_distance_enabled", + VR_RENDER_DISTANCE_ENABLED = "#vr_render_distance_enabled", + MSAA_ENABLED = "#msaa_enabled", + VR_MSAA_ENABLED = "#vr_msaa_enabled", + TEXEL_AA_ENABLED = "#texel_aa_enabled", + PARTICLE_RENDER_DISTANCE_ENABLED = "#particle_render_distance_enabled", + VR_PARTICLE_RENDER_DISTANCE_ENABLED = "#vr_particle_render_distance_enabled", + VR_3D_RENDERING_ENABLED = "#vr_3d_rendering_enabled", + VR_MIRROR_TEXTURE_ENABLED = "#vr_mirror_texture_enabled", + LIMIT_WORLD_SIZE_ENABLED = "#limit_world_size_enabled", + COMFORT_CONTROLS_ENABLED = "#comfort_controls_enabled", + SHOW_COMFORT_SELECT_SCREEN_ENABLED = "#show_comfort_select_screen_enabled", + VR_LIVING_ROOM_CURSOR_CENTERED_ENABLED = "#vr_living_room_cursor_centered_enabled", + VR_HMD_DISPLACEMENT_ENABLED = "#vr_hmd_displacement_enabled", + VR_LINEAR_JUMP_ENABLED = "#vr_linear_jump_enabled", + VR_LINEAR_MOTION_ENABLED = "#vr_linear_motion_enabled", + STICKY_MINING_ENABLED = "#sticky_mining_enabled", + VR_HUD_DRIFTS_ENABLED = "#vr_hud_drifts_enabled", + VR_HEAD_STEERING_ENABLED = "#vr_head_steering_enabled", + STUTTER_TURN_ENABLED = "#stutter_turn_enabled", + STUTTER_CONSTANT_ANGLE_OR_TIME_ENABLED = "#stutter_constant_angle_or_time_enabled", + STUTTER_TURN_SOUND_ENABLED = "#stutter_turn_sound_enabled", + VR_ROLL_TURN_ENABLED = "#vr_roll_turn_enabled", + MASTER_VOLUME_ENABLED = "#master_volume_enabled", + MUSIC_VOLUME_ENABLED = "#music_volume_enabled", + SOUND_VOLUME_ENABLED = "#sound_volume_enabled", + WEATHER_VOLUME_ENABLED = "#weather_volume_enabled", + HOSTILE_CREATURE_VOLUME_ENABLED = "#hostile_creature_volume_enabled", + PLAYER_VOLUME_ENABLED = "#player_volume_enabled", + JUKEBOX_AND_NOTE_BLOCK_VOLUME_ENABLED = "#jukebox_and_note_block_volume_enabled", + BLOCK_VOLUME_ENABLED = "#block_volume_enabled", + FRIENDLY_CREATURE_VOLUME_ENABLED = "#friendly_creature_volume_enabled", + ENVIRONMENT_VOLUME_ENABLED = "#environment_volume_enabled", + DEV_ENABLE_DEBUG_UI_ENABLED = "#dev_enable_debug_ui_enabled", + DEV_OFFERS_UNLOCKED_ENABLED = "#dev_offers_unlocked_enabled", + DEV_RENDER_BOUNDING_BOX_ENABLED = "#dev_render_bounding_box_enabled", + DEV_RENDER_PATHS_ENABLED = "#dev_render_paths_enabled", + DEV_RENDER_GOAL_STATE_ENABLED = "#dev_render_goal_state_enabled", + DEV_RESET_CLIENT_ID_ENABLED = "#dev_reset_client_id_enabled", + DEV_SHOW_CHUNK_MAP_ENABLED = "#dev_show_chunk_map_enabled", + DEV_ENABLE_PROFILER_ENABLED = "#dev_enable_profiler_enabled", + DEV_ACHIEVEMENTS_ALWAYS_ENABLED_ENABLED = "#dev_achievements_always_enabled_enabled", + DEV_USE_LOCAL_SERVER_ENABLED = "#dev_use_local_server_enabled", + DEV_USE_IPV6_ONLY_ENABLED = "#dev_use_ipv6_only_enabled", + DEV_USE_FPS_INDEPENDENT_TURNING_ENABLED = "#dev_use_fps_independent_turning_enabled", + DEV_CONNECTION_QUALITY_ENABLED = "#dev_connection_quality_enabled", + DEV_USE_RETAIL_XBOX_SANDBOX_ENABLED = "#dev_use_retail_xbox_sandbox_enabled", + DEV_CREATE_REALM_WITHOUT_PURCHASE_ENABLED = "#dev_create_realm_without_purchase_enabled", + DEV_REALMS_ENVIRONMENT_DROPDOWN_ENABLED = "#dev_realms_environment_dropdown_enabled", + DEV_REALMS_ENDPOINT_ENABLED = "#dev_realms_endpoint_enabled", + DEV_REALMS_ENDPOINT_PAYMENT_ENABLED = "#dev_realms_endpoint_payment_enabled", + DEV_REALMS_RELYING_PARTY_ENABLED = "#dev_realms_relying_party_enabled", + DEV_REALMS_RELYING_PARTY_PAYMENT_ENABLED = "#dev_realms_relying_party_payment_enabled", + GUI_SCALE = "#gui_scale", + GAMMA = "#gamma", + VR_GAMMA = "#vr_gamma", + FIELD_OF_VIEW = "#field_of_view", + RENDER_DISTANCE = "#render_distance", + VR_RENDER_DISTANCE = "#vr_render_distance", + MSAA = "#msaa", + VR_MSAA = "#vr_msaa", + PARTICLE_RENDER_DISTANCE = "#particle_render_distance", + VR_PARTICLE_RENDER_DISTANCE = "#vr_particle_render_distance", + MASTER_VOLUME = "#master_volume", + MUSIC_VOLUME = "#music_volume", + SOUND_VOLUME = "#sound_volume", + WEATHER_VOLUME = "#weather_volume", + HOSTILE_CREATURE_VOLUME = "#hostile_creature_volume", + PLAYER_VOLUME = "#player_volume", + JUKEBOX_AND_NOTE_BLOCK_VOLUME = "#jukebox_and_note_block_volume", + BLOCK_VOLUME = "#block_volume", + FRIENDLY_CREATURE_VOLUME = "#friendly_creature_volume", + ENVIRONMENT_VOLUME = "#environment_volume", + DEV_CONNECTION_QUALITY = "#dev_connection_quality", + SELECTED_PACK_ITEMS_GLOBAL = "#selected_pack_items_global", + AVAILABLE_PACK_ITEMS_GLOBAL = "#available_pack_items_global", + SELECTED_GRID_DIMENSIONS_GLOBAL = "#selected_grid_dimensions_global", + AVAILABLE_GRID_DIMENSIONS_GLOBAL = "#available_grid_dimensions_global", + DEFAULT_ITEM_TEXTURE_GLOBAL = "#default_item_texture_global", + DEFAULT_ITEM_FILE_SYSTEM_GLOBAL = "#default_item_file_system_global", + TOTAL_SIZE_BINDING_GLOBAL = "#total_size_binding_global", + ALLOW_CHEATS = "#allow_cheats", + ALLOW_CHEATS_ENABLED = "#allow_cheats_enabled", + WORLD_NAME = "#world_name", + WORLD_NAME_ENABLED = "#world_name_enabled", + WORLD_GAME_MODE_DROPDOWN_ENABLED = "#world_game_mode_dropdown_enabled", + WORLD_DIFFICULTY_DROPDOWN_ENABLED = "#world_difficulty_dropdown_enabled", + PLAYER_GAME_MODE_DROPDOWN_ENABLED = "#player_game_mode_dropdown_enabled", + ALWAYS_DAY = "#always_day", + ALWAYS_DAY_ENABLED = "#always_day_enabled", + WORLD_SEED = "#world_seed", + WORLD_SEED_ENABLED = "#world_seed_enabled", + WORLD_TYPE_DROPDOWN_ENABLED = "#world_type_dropdown_enabled", + MULTIPLAYER_GAME = "#multiplayer_game", + MULTIPLAYER_GAME_ENABLED = "#multiplayer_game_enabled", + XBOXLIVE_VISIBLE = "#xboxlive_visible", + XBOXLIVE_VISIBILITY_ENABLED = "#xboxlive_visibility_enabled", + SERVER_VISIBLE = "#server_visible", + SERVER_VISIBILITY_ENABLED = "#server_visibility_enabled", + PLAYER_COUNT_2 = "#player_count_2", + PLAYER_COUNT_10 = "#player_count_10", + WORLD_TEXTURE_NAME = "#world_texture_name", + WORLD_TEXTURE_LOCATIONTYPE = "#world_texture_locationtype", + REALM_BUTTON_TEXT = "#realm_button_text", + REALM_TRIAL_AVAILABLE = "#realm_trial_available", + REALM_GRID_DIMENSION = "#realm_grid_dimension", + TEMPLATES_VISIBLE = "#templates_visible", + DARK_BANNER_VISIBLE = "#dark_banner_visible", + GREY_BANNER_VISIBLE = "#grey_banner_visible", + UPSELL_TEXT = "#upsell_text", + WORLD_GRID_DIMENSION = "#world_grid_dimension", + SKIP_BUTTON_VISIBLE = "#skip_button_visible", + VR_NON_RIDING = "#vr_non_riding", + PACK_HEADER_SIZE_VISIBLE = "#pack_header_size_visible", + CLIPBOARD_VISIBLE = "#clipboard_visible", + REFRESH_VISIBLE = "#refresh_visible", + DELETE_VISIBLE = "#delete_visible", + ERROR_CONTENT_LABEL = "#error_content_label", + PACK_TYPE_LABEL = "#pack_type_label", + MASHUP_KEY_ART_TEXTURE = "#mashup_key_art_texture", + MASHUP_KEY_ART_FILE_SYSTEM = "#mashup_key_art_file_system", + PANORAMA_TEXTURE = "#panorama_texture", + PANORAMA_TEXTURE_FILE_SYSTEM = "#panorama_texture_file_system", + PANORAMA_VIEW = "#panorama_view", + NAVIGATION_TAB_ICON = "#navigation_tab_icon", + MASHUP_LOCKED = "#mashup_locked", + NAVIGATION_TAB_GRID_SIZE = "#navigation_tab_grid_size", + PATCH_DESCRIPTION = "#patch_description", + MAIN_IMAGE_TEXTURE = "#main_image_texture", + MAIN_IMAGE_TEXTURE_SOURCE = "#main_image_texture_source", + STORE_IMAGE_TEXTURE = "#store_image_texture", + STORE_IMAGE_TEXTURE_SOURCE = "#store_image_texture_source", + REALMS_GAME_ONLINE = "#realms_game_online", + REALMS_GAME_UNAVAILABLE = "#realms_game_unavailable", + REALMS_GAME_OFFLINE = "#realms_game_offline", + LEAVE_REALM_BUTTON_VISIBLE = "#leave_realm_button_visible", + REALMS_GRIDS_VISIBLE = "#realms_grids_visible", + REALMS_NOTIFICATION_BUTTON_INVISIBLE = "#realms_notification_button_invisible", + REALMS_NOTIFICATION_BUTTON_VISIBLE = "#realms_notification_button_visible", + REALM_LABEL_VISIBLE = "#realm_label_visible", + LOADING_PERSONAL_REALMS_GRID_DIMENSION = "#loading_personal_realms_grid_dimension", + REALMS_LOADING_DISPLAY_MESSAGE = "#realms_loading_display_message", + LOADING_PERSONAL_REALMS_GRID_VISIBLE = "#loading_personal_realms_grid_visible", + REALM_TRIAL_BUTTON_VISIBLE = "#realm_trial_button_visible", + LOCAL_WORLDS_VISIBLE = "#local_worlds_visible", + LOADING_BARS_ANIMATION_VISIBLE = "#loading_bars_animation_visible", + FRIENDS_REALMS_VISIBLE = "#friends_realms_visible", + LOADING_FRIENDS_REALMS_GRID_DIMENSION = "#loading_friends_realms_grid_dimension", + LOADING_FRIENDS_REALMS_GRID_VISIBLE = "#loading_friends_realms_grid_visible", + NO_FRIENDS_REALMS_VISIBLE = "#no_friends_realms_visible", + MEMBERS_LIST_ENABLED = "#members_list_enabled", + RESOURCE_PACK_DESCRIPTION = "#resource_pack_description", + ACTIVATE_PACK_BUTTON_VISIBLE = "#activate_pack_button_visible", + PATH_TO_KEY_ART = "#path_to_key_art", + KEY_ART_FILE_SYSTEM = "#key_art_file_system", + PROGRESS_VISIBLE = "#progress_visible", + OFFER_DEBUG_TEXT = "#offer_debug_text", + OFFER_DEBUG_VISIBLE = "#offer_debug_visible", + TEXT_BOX_STRUCTURE_OFFSET_X = "#text_box_structure_offset_x", + TEXT_BOX_STRUCTURE_OFFSET_Y = "#text_box_structure_offset_y", + TEXT_BOX_STRUCTURE_OFFSET_Z = "#text_box_structure_offset_z", + TEXT_BOX_STRUCTURE_SIZE_X = "#text_box_structure_size_x", + TEXT_BOX_STRUCTURE_SIZE_Y = "#text_box_structure_size_y", + TEXT_BOX_STRUCTURE_SIZE_Z = "#text_box_structure_size_z", + TEXT_BOX_STRUCTURE_SEED = "#text_box_structure_seed", + TEXT_BOX_STRUCTURE_INTEGRITY = "#text_box_structure_integrity", + TEXT_BOX_STRUCTURE_NAME = "#text_box_structure_name", + SAVE_MODE_VISIBLE = "#save_mode_visible", + LOAD_MODE_VISIBLE = "#load_mode_visible", + DATA_MODE_VISIBLE = "#data_mode_visible", + TEXT_BOX_METADATA_NAME = "#text_box_metadata_name", + CORNER_MODE_VISIBLE = "#corner_mode_visible", + UGC_MAX_GRID_ITEMS = "#ugc_max_grid_items", + SCREENSHOT_TEXTURE = "#screenshot_texture", + SCREENSHOT_ZIP_FOLDER = "#screenshot_zip_folder", + SCREENSHOT_FILE_SYSTEM = "#screenshot_file_system", + WORLD_TEMPLATE_NAME = "#world_template_name", + WORLD_TEMPLATE_DESCRIPTION = "#world_template_description", + WORLD_TEMPLATE_VERSION = "#world_template_version", + WORLD_TEMPLATE_ITEM_GRID_DIMENSION = "#world_template_item_grid_dimension", + INVALID_WORLD_TEMPLATE_ITEM_GRID_DIMENSION = "#invalid_world_template_item_grid_dimension", + LOADING_WORLD_TEMPLATE_ITEM_GRID_DIMENSION = "#loading_world_template_item_grid_dimension", + UI_PROFILE_DROPDOWN_ENABLED = "#ui_profile_dropdown_enabled", + UI_PROFILE_DROPDOWN_TOGGLE_LABEL = "#ui_profile_dropdown_toggle_label", + MAX_FRAMERATE = "#max_framerate", + MAX_FRAMERATE_ENABLED = "#max_framerate_enabled", + MAX_FRAMERATE_STEPS = "#max_framerate_steps", + MAX_FRAMERATE_SLIDER_LABEL = "#max_framerate_slider_label", + VR_HAND_CONTROLS_ITEM = "#vr_hand_controls_item", + VR_HAND_CONTROLS_ITEM_ENABLED = "#vr_hand_controls_item_enabled", + VR_HAND_CONTROLS_HUD = "#vr_hand_controls_hud", + VR_HAND_CONTROLS_HUD_ENABLED = "#vr_hand_controls_hud_enabled", + VR_HAND_POINTER = "#vr_hand_pointer", + VR_HAND_POINTER_ENABLED = "#vr_hand_pointer_enabled", + VR_HANDS_VISIBLE = "#vr_hands_visible", + VR_HANDS_VISIBLE_ENABLED = "#vr_hands_visible_enabled", + ENABLE_CHAT_TEXT_TO_SPEECH = "#enable_chat_text_to_speech", + ENABLE_CHAT_TEXT_TO_SPEECH_ENABLED = "#enable_chat_text_to_speech_enabled", + STICKY_MINING_HAND = "#sticky_mining_hand", + STICKY_MINING_HAND_ENABLED = "#sticky_mining_hand_enabled", + REALM_NAME_ENABLED = "#realm_name_enabled", + REALMS_DIFFICULTY_DROPDOWN_ENABLED = "#realms_difficulty_dropdown_enabled", + REALMS_GAME_MODE_DROPDOWN_ENABLED = "#realms_game_mode_dropdown_enabled", + DIFFICULTY_OPTION_LABEL = "#difficulty_option_label", + GAMEMODE_OPTION_LABEL = "#gameMode_option_label", + WORLD_GAME_MODE_RADIO_SURVIVAL = "#world_game_mode_radio_survival", + WORLD_GAME_MODE_RADIO_CREATIVE = "#world_game_mode_radio_creative", + PLAYER_GAME_MODE_RADIO_SURVIVAL = "#player_game_mode_radio_survival", + PLAYER_GAME_MODE_RADIO_CREATIVE = "#player_game_mode_radio_creative", + WORLD_TYPE_RADIO_FLAT = "#world_type_radio_flat", + WORLD_TYPE_RADIO_INFINITE = "#world_type_radio_infinite", + WORLD_DIFFICULTY_RADIO_PEACEFUL = "#world_difficulty_radio_peaceful", + WORLD_DIFFICULTY_RADIO_EASY = "#world_difficulty_radio_easy", + WORLD_DIFFICULTY_RADIO_NORMAL = "#world_difficulty_radio_normal", + WORLD_DIFFICULTY_RADIO_HARD = "#world_difficulty_radio_hard", + ADVANCED_VIDEO_OPTIONS = "#advanced_video_options", + LANGUAGE_INITIAL_SELECTED = "#language_initial_selected", + DEV_DEBUG_HUD_DROPDOWN_ENABLED = "#dev_debug_hud_dropdown_enabled", + INVITE_TOGGLE_STATE = "#invite_toggle_state", + MEMBER_SETTINGS = "#member_settings", + OPERATOR = "#operator", + FORCE_USER_AGREEMENT_LEVEL = "#force_user_agreement_level", + FORCE_USER_AGREEMENT_LEVEL_ENABLED = "#force_user_agreement_level_enabled", + X_HELPER_VISIBLE = "#x_helper_visible", + Y_HELPER_VISIBLE = "#y_helper_visible", + COINS_WITHOUT_BONUS = "#coins_without_bonus", + COIN_OFFER_TEXTURE_NAME = "#coin_offer_texture_name", + COIN_OFFER_TEXTURE_FILE_SYSTEM = "#coin_offer_texture_file_system", + COIN_OFFERS_VISIBLE = "#coin_offers_visible", + COIN_LOADING_VISIBLE = "#coin_loading_visible", + BLOCK_TYPE_ICON_TEXTURE = "#block_type_icon_texture", + CLOSE_BUTTON_VISIBLE_BINDING_NAME = "#close_button_visible_binding_name", + MINIMIZE_BUTTON_VISIBLE_BINDING_NAME = "#minimize_button_visible_binding_name", + MAXIMIZED_INPUT_VISIBLE = "#maximized_input_visible", + BLOCK_TYPE_DROPDOWN_ENABLED = "#block_type_dropdown_enabled", + CONDITION_DROPDOWN_ENABLED = "#condition_dropdown_enabled", + REDSTONE_DROPDOWN_ENABLED = "#redstone_dropdown_enabled", + BLOCK_TYPE_DROPDOWN_TOGGLE_LABEL = "#block_type_dropdown_toggle_label", + CONDITION_DROPDOWN_TOGGLE_LABEL = "#condition_dropdown_toggle_label", + REDSTONE_DROPDOWN_TOGGLE_LABEL = "#redstone_dropdown_toggle_label", + TRACK_OUTPUT_BINDING = "#track_output_binding", + HAS_ONLY_ARMOR_SLOT = "#has_only_armor_slot", + HAS_ONLY_CARPET_SLOT = "#has_only_carpet_slot", + HAS_ARMOR_AND_SADDLE_SLOT = "#has_armor_and_saddle_slot", + HAS_CARPET_AND_SADDLE_SLOT = "#has_carpet_and_saddle_slot", + CHEST_TAB_TOGGLE = "#chest_tab_toggle", + RENDERER_TAB_TOGGLE = "#renderer_tab_toggle", + HAS_SADDLE_SLOT = "#has_saddle_slot", + EMPTY_OFFHAND_IMAGE_VISIBLE = "#empty_offhand_image_visible", + TOGGLE_INVITE_STATE = "#toggle_invite_state", + WORLD_DESCRIPTION = "#world_description", + WORLD_SCREENSHOTS_GRID_DIMENSIONS = "#world_screenshots_grid_dimensions", + WORLD_SCREENSHOT_TEXTURE_NAME = "#world_screenshot_texture_name", + WORLD_SCREENSHOT_TEXTURE_FILE_SYSTEM = "#world_screenshot_texture_file_system", + NAVIGATION_TAB = "#navigation_tab", + COIN_VISIBLE = "#coin_visible", + ACTION_BUTTON_VISIBLE = "#action_button_visible", + ITEM_MEETS_REQUIREMENTS = "#item_meets_requirements", + MOB_EFFECT_NAME = "#mob_effect_name", + MOB_EFFECT_TIMER = "#mob_effect_timer", + MOB_EFFECT_GRID_SIZE = "#mob_effect_grid_size", + LOCAL_WORLD_IMAGE = "#local_world_image", + LOCAL_WORLD_TEXTURE_SOURCE = "#local_world_texture_source", + WORLD_LOCK_VISIBLE = "#world_lock_visible", + NO_LOCAL_WORLDS_SWITCH_SETTING_VISIBLE = "#no_local_worlds_switch_setting_visible", + SWITCH_STORAGE_TYPE_ENABLED = "#switch_storage_type_enabled", + SWITCH_STORAGE_TYPE_TOGGLE_LABEL = "#switch_storage_type_toggle_label", + STORAGE_LOCATION_RADIO_EXTERNAL = "#storage_location_radio_external", + STORAGE_LOCATION_RADIO_PACKAGE = "#storage_location_radio_package", + JOIN_AND_DOWNLOAD_EVERYTHING = "#join_and_download_everything", + JOIN_AND_DOWNLOAD_ONLY_ADD_ON = "#join_and_download_only_add_on", + JOIN_AND_DOWNLOAD = "#join_and_download", + EMPTY_BINDING = "#empty_binding", + REMIX_NAME_CONTENT_BINDING_NAME = "#remix_name_content_binding_name", + REMIX_DESCRIPTION_CONTENT_BINDING_NAME = "#remix_description_content_binding_name", + NEW_TAG_VISIBLE = "#new_tag_visible", + POLYMORPHIC_BUTTON_VISIBLE = "#polymorphic_button_visible", + DOWNLOAD_PROGRESS_BAR_VISIBLE = "#download_progress_bar_visible", + DOWNLOAD_INFO_TEXT = "#download_info_text", + DOWNLOAD_INFO_VISIBLE = "#download_info_visible", + NAVIGATION_TAB_FOCUS_PRECEDENCE = "#navigation_tab_focus_precedence", + NAVIGATION_TAB_TOGGLE_ON_HOVER = "#navigation_tab_toggle_on_hover", + LOCAL_SAFE_ZONE_OFFSET = "#local_safe_zone_offset", + SAFE_ZONE = "#safe_zone", + SAFE_ZONE_ENABLED = "#safe_zone_enabled", + SAFE_ZONE_SLIDER_LABEL = "#safe_zone_slider_label", + BUTTON_ACTION_TEXT = "#button_action_text", + SKIN_PACK_PRICE = "#skin_pack_price", + DEPENDENCY_LABEL_TEXT = "#dependency_label_text", + DEPENDENT_PACKS_LENGTH = "#dependent_packs_length", + DELETE_BUTTON_ENABLED = "#delete_button_enabled", + SHARE_BUTTON_ENABLED = "#share_button_enabled", + CATEGORY_PANEL_VISIBLE = "#category_panel_visible", + STORAGE_PANEL_LENGTH = "#storage_panel_length", + SEARCH_PANEL_VISIBLE = "#search_panel_visible", + SEARCH_PANEL_LENGTH = "#search_panel_length", + MULTISELECTENABLED = "#multiselectEnabled", + STORAGE_DROPDOWN = "#storage_dropdown", + SHOW_DISCONNECTED_BUTTON = "#show_disconnected_button", + SHOW_SIGNIN_BUTTON = "#show_signin_button", + SHOW_XBL_PROFILE_INFO = "#show_xbl_profile_info", + GAMER_PIC_TEXTURE = "#gamer_pic_texture", + GAMER_PIC_FILE_SOURCE = "#gamer_pic_file_source", + FEATURED_ITEM_GRID_DIMENSION = "#featured_item_grid_dimension", + FEATURED_ITEM_TEXTURE_PATH = "#featured_item_texture_path", + FEATURED_ITEM_TEXTURE_FILE_SYSTEM = "#featured_item_texture_file_system", + ITEM_DOES_NOT_MEET_REQUIREMENTS = "#item_does_not_meet_requirements", + FEATURED_ITEM_DOES_NOT_MEET_REQUIREMENTS = "#featured_item_does_not_meet_requirements", + FEATURED_COIN_VISIBLE = "#featured_coin_visible", + TITLE_LABEL = "#title_label", + CREATOR_LABEL = "#creator_label", + OFFER_COIN_VISIBLE = "#offer_coin_visible", + OFFER_PRICE = "#offer_price", + COIN_BALANCE = "#coin_balance", + PAGE_LOADING_VISIBLE = "#page_loading_visible", + LIST_GRID_DIMENSIONS = "#list_grid_dimensions", + INVISIBLE_BLOCKS_BINDING_NAME = "#invisible_blocks_binding_name", + INVISIBLE_BLOCKS_ENABLED = "#invisible_blocks_enabled", + INVISIBLE_BLOCKS_TOGGLE_OFF = "#invisible_blocks_toggle_off", + INVISIBLE_BLOCKS_TOGGLE_ON = "#invisible_blocks_toggle_on", + INCLUDE_PLAYERS_BINDING_NAME = "#include_players_binding_name", + INCLUDE_PLAYERS_ENABLED = "#include_players_enabled", + INCLUDE_PLAYERS_TOGGLE_OFF = "#include_players_toggle_off", + INCLUDE_PLAYERS_TOGGLE_ON = "#include_players_toggle_on", + REMOVE_BLOCKS_BINDING_NAME = "#remove_blocks_binding_name", + REMOVE_BLOCKS_ENABLED = "#remove_blocks_enabled", + REMOVE_BLOCKS_TOGGLE_OFF = "#remove_blocks_toggle_off", + REMOVE_BLOCKS_TOGGLE_ON = "#remove_blocks_toggle_on", + MODE_DROPDOWN_ENABLED = "#mode_dropdown_enabled", + MODE_DROPDOWN_TOGGLE_LABEL = "#mode_dropdown_toggle_label", + PROGRESS_PANEL_VISIBLE = "#progress_panel_visible", + STRUCTURE_RENDERER_VISIBLE = "#structure_renderer_visible", + BOTTOM_LEFT_BLOCK = "#bottom_left_block", + TOP_RIGHT_BLOCK = "#top_right_block", + INCLUDE_ENTITIES = "#include_entities", + REMOVE_BLOCKS = "#remove_blocks", + INCLUDE_PLAYERS = "#include_players", + INCLUDE_ENTITIES_BINDING_NAME = "#include_entities_binding_name", + INCLUDE_ENTITIES_ENABLED = "#include_entities_enabled", + EXPORT_MODE_PANEL_VISIBLE = "#export_mode_panel_visible", + HAS_ICON = "#has_icon", + ITEM_STACK_COUNT = "#item_stack_count", + SELL_ITEM_NAME = "#sell_item_name", + SHOW_SECOND_TRADE_SLOT = "#show_second_trade_slot", + TEMPLATES_PADDING_VISIBLE = "#templates_padding_visible", + CONTENT_AREA_FOCUSED = "#content_area_focused", + SELECTOR_AREA_FOCUSED = "#selector_area_focused", + WEBSOCKET_ENCRYPTION = "#websocket_encryption", + WEBSOCKET_ENCRYPTION_ENABLED = "#websocket_encryption_enabled", + FILE_STORAGE_LOCATION_ENABLED = "#file_storage_location_enabled", + BUILD_ID = "#build_id", + BUILD_DATE = "#build_date", + SMOOTH_LIGHTING = "#smooth_lighting", + SMOOTH_LIGHTING_ENABLED = "#smooth_lighting_enabled", + DEV_SHOW_BUILD_INFO = "#dev_show_build_info", + DEV_SHOW_BUILD_INFO_ENABLED = "#dev_show_build_info_enabled", + DEV_REALMS_ENVIRONMENT_RADIO_PRODUCTION = "#dev_realms_environment_radio_production", + DEV_REALMS_ENVIRONMENT_RADIO_STAGING = "#dev_realms_environment_radio_staging", + DEV_REALMS_ENVIRONMENT_RADIO_DEV = "#dev_realms_environment_radio_dev", + COMMAND_IMPULSE_MODE = "#command_impulse_mode", + COMMAND_CHAIN_MODE = "#command_chain_mode", + COMMAND_REPEAT_MODE = "#command_repeat_mode", + COMMAND_CONDITIONAL_MODE = "#command_conditional_mode", + COMMAND_UNCONDITIONAL_MODE = "#command_unconditional_mode", + COMMAND_ALWAYS_ON_MODE = "#command_always_on_mode", + COMMAND_NEEDS_REDSTONE_MODE = "#command_needs_redstone_mode", + WORLD_GAME_MODE_RADIO_ADVENTURE = "#world_game_mode_radio_adventure", + PLAYER_GAME_MODE_RADIO_ADVENTURE = "#player_game_mode_radio_adventure", + WORLD_TYPE_RADIO_OLD = "#world_type_radio_old", + KEYBOARD_MOUSE_SENSITIVITY_SLIDER_LABEL = "#keyboard_mouse_sensitivity_slider_label", + VR_UI_MOUSE_SENSITIVITY_SLIDER_LABEL = "#vr_ui_mouse_sensitivity_slider_label", + CONTROLLER_SENSITIVITY_SLIDER_LABEL = "#controller_sensitivity_slider_label", + VR_SENSITIVITY_SLIDER_LABEL = "#vr_sensitivity_slider_label", + VR_ROLL_TURN_SENSITIVITY_SLIDER_LABEL = "#vr_roll_turn_sensitivity_slider_label", + TOUCH_SENSITIVITY_SLIDER_LABEL = "#touch_sensitivity_slider_label", + BUTTON_SIZE_SLIDER_LABEL = "#button_size_slider_label", + GAMERTAG_LABEL = "#gamertag_label", + GUI_SCALE_SLIDER_LABEL = "#gui_scale_slider_label", + GAMMA_SLIDER_LABEL = "#gamma_slider_label", + VR_GAMMA_SLIDER_LABEL = "#vr_gamma_slider_label", + FIELD_OF_VIEW_SLIDER_LABEL = "#field_of_view_slider_label", + RENDER_DISTANCE_SLIDER_LABEL = "#render_distance_slider_label", + VR_RENDER_DISTANCE_SLIDER_LABEL = "#vr_render_distance_slider_label", + MSAA_SLIDER_LABEL = "#msaa_slider_label", + VR_MSAA_SLIDER_LABEL = "#vr_msaa_slider_label", + PARTICLE_RENDER_DISTANCE_SLIDER_LABEL = "#particle_render_distance_slider_label", + VR_PARTICLE_RENDER_DISTANCE_SLIDER_LABEL = "#vr_particle_render_distance_slider_label", + UI_PROFILE_RADIO_CLASSIC = "#ui_profile_radio_classic", + UI_PROFILE_RADIO_POCKET = "#ui_profile_radio_pocket", + THIRDPERSON_RADIO_FIRST = "#thirdperson_radio_first", + THIRDPERSON_RADIO_THIRD_BACK = "#thirdperson_radio_third_back", + THIRDPERSON_RADIO_THIRD_FRONT = "#thirdperson_radio_third_front", + MUSIC_VOLUME_SLIDER_LABEL = "#music_volume_slider_label", + SOUND_VOLUME_SLIDER_LABEL = "#sound_volume_slider_label", + LANGUAGE_DESCRIPTION = "#language_description", + DEV_CONNECTION_QUALITY_SLIDER_LABEL = "#dev_connection_quality_slider_label", + DEBUG_HUD_RADIO_OFF = "#debug_hud_radio_off", + DEBUG_HUD_RADIO_BASIC = "#debug_hud_radio_basic", + DEBUG_HUD_RADIO_WORKERTHREADS = "#debug_hud_radio_workerthreads", + DEBUG_HUD_RADIO_RENDERCHUNKS = "#debug_hud_radio_renderchunks", + DEBUG_HUD_RADIO_DEBUGTEXTURES = "#debug_hud_radio_debugtextures", + DOWNLOAD_PROGRESS_BAR_PERCENTAGE = "#download_progress_bar_percentage", + EULA_VISIBLE = "#eula_visible", + BACKGROUND_VISIBLE = "#background_visible", + AUTO_SAVE_ANIMATION_VISIBLE = "#auto_save_animation_visible", + IS_PHOTO_PAGE = "#is_photo_page", + PICK_ITEM_VISIBLE = "#pick_item_visible", + PICK_GRID_DIMENSIONS = "#pick_grid_dimensions", + EDITABLE = "#editable", + FINALIZE_BUTTON_ENABLED = "#finalize_button_enabled", + CLOSE_BUTTON_VISIBLE = "#close_button_visible", + PAGE_NUMBER = "#page_number", + EDIT_CONTROLS_ACTIVE = "#edit_controls_active", + PAGE_VISIBLE = "#page_visible", + VIEWING = "#viewing", + SIGNING = "#signing", + PICKING = "#picking", + EXPORTING = "#exporting", + EMPTY_FUEL_IMAGE_VISIBLE = "#empty_fuel_image_visible", + BREWING_FUEL_RATIO = "#brewing_fuel_ratio", + LOCKED = "#locked", + LOCK_LABEL_TEXT = "#lock_label_text", + LOCK_VISIBLE = "#lock_visible", + KEYBOARD_BUTTON_FOCUS_OVERRIDE_UP = "#keyboard_button_focus_override_up", + KEYBOARD_BUTTON_FOCUS_OVERRIDE_DOWN = "#keyboard_button_focus_override_down", + HIDE_CHAT = "#hide_chat", + HIDE_CHAT_ENABLED = "#hide_chat_enabled", + BOTTOM_BUTTON_FOCUS_OVERRIDE_UP = "#bottom_button_focus_override_up", + BOTTOM_BUTTON_FOCUS_OVERRIDE_DOWN = "#bottom_button_focus_override_down", + CHAT_TITLE_TEXT = "#chat_title_text", + TEXT_CHAT_HIDDEN = "#text_chat_hidden", + PRICE_TEXT = "#price_text", + COINS_REQUIRED_FOR_PURCHASE = "#coins_required_for_purchase", + HAS_COIN_OFFERS = "#has_coin_offers", + COIN_OFFER_SIZE = "#coin_offer_size", + REPORT_BUTTON_VISIBLE_FEEDITEM = "#report_button_visible_feeditem", + DELETE_BUTTON_VISIBLE_FEEDITEM = "#delete_button_visible_feeditem", + REPORT_BUTTON_VISIBLE_COMMENT = "#report_button_visible_comment", + DELETE_BUTTON_VISIBLE_COMMENT = "#delete_button_visible_comment", + COMMENT_GRID_DIMENSION = "#comment_grid_dimension", + COMMENT_CONTENT = "#comment_content", + CONTENT = "#content", + TEXT_VISIBLE = "#text_visible", + LIKES_AND_COMMENTS = "#likes_and_comments", + SCREENSHOT_TEXTURE_SOURCE = "#screenshot_texture_source", + TEXTPOST_CONTENT = "#textpost_content", + TEXTPOST_VISIBLE = "#textpost_visible", + COMMENT_TEXT_BOX = "#comment_text_box", + GAMERPIC_TEXTURE = "#gamerpic_texture", + COMMENT_GAMERPIC_TEXTURE = "#comment_gamerpic_texture", + COMMENT_TEXTURE_SOURCE = "#comment_texture_source", + COMMENT_GAMERPIC_VISIBLE = "#comment_gamerpic_visible", + COMMENT_GAMERTAG = "#comment_gamertag", + LIKES_AND_TIME_SINCE_COMMENT_POST = "#likes_and_time_since_comment_post", + AUTHOR_GAMERTAG = "#author_gamertag", + TIME_SINCE_FEED_POST = "#time_since_feed_post", + ACCESS_SCREEN_VISIBLE = "#access_screen_visible", + NO_FEED_ITEM_VISIBLE = "#no_feed_item_visible", + FEED_GRID_DIMENSION = "#feed_grid_dimension", + FEED_TEXT_VISIBLE = "#feed_text_visible", + FEED_TEXTURE = "#feed_texture", + FEED_TEXTURE_SOURCE = "#feed_texture_source", + GAMERPIC_TEXTURE_SOURCE = "#gamerpic_texture_source", + FEED_SCREENSHOT_TEXTURE = "#feed_screenshot_texture", + FEED_SCREENSHOT_TEXTURE_SOURCE = "#feed_screenshot_texture_source", + SHARE_TEXT_BOX = "#share_text_box", + REPORT_BUTTON_VISIBLE = "#report_button_visible", + DELETE_BUTTON_VISIBLE = "#delete_button_visible", + FEED_WORLD_NAME = "#feed_world_name", + BUTTON_GLYPH_VISIBLE = "#button_glyph_visible", + CHEATS_ON = "#cheats_on", + HOST_MAIN_BUTTON_FOCUS_OVERRIDE_UP = "#host_main_button_focus_override_up", + HOST_MAIN_BUTTON_FOCUS_OVERRIDE_DOWN = "#host_main_button_focus_override_down", + SUB_COMMAND = "#sub_command", + HOST_TELEPORT_VISIBLE = "#host_teleport_visible", + HOST_TELEPORT_MAIN_VISIBLE = "#host_teleport_main_visible", + HOST_TELEPORT_PLAYERS_VISIBLE = "#host_teleport_players_visible", + HOST_TIME_VISIBLE = "#host_time_visible", + HOST_WEATHER_VISIBLE = "#host_weather_visible", + HOST_OPTION_FOCUS_ID = "#host_option_focus_id", + HOST_OPTION_FOCUS_OVERRIDE_LEFT = "#host_option_focus_override_left", + HOST_OPTION_FOCUS_OVERRIDE_RIGHT = "#host_option_focus_override_right", + HOST_OPTION_FOCUS_OVERRIDE_UP = "#host_option_focus_override_up", + HOST_OPTION_FOCUS_OVERRIDE_DOWN = "#host_option_focus_override_down", + HOST_MAIN_VISIBLE = "#host_main_visible", + SPLITSCREEN_ENABLED = "#splitscreen_enabled", + PAPER_DOLL_VISIBLE = "#paper_doll_visible", + IS_ARMOR_VISIBLE = "#is_armor_visible", + HUD_VISIBLE_CENTERED_GUI_ELEMENTS = "#hud_visible_centered_gui_elements", + JUKEBOX_TEXT = "#jukebox_text", + DROP_ITEM_TOOLTIP_HELPER_VISIBLE = "#drop_item_tooltip_helper_visible", + MINE_TOOLTIP_VISIBLE = "#mine_tooltip_visible", + CONTEXT_SENSITIVE_VISIBLE = "#context_sensitive_visible", + DISMOUNT_TOOLTIP_VISIBLE = "#dismount_tooltip_visible", + CRAFTING_TOOLTIP_HELPER_VISIBLE = "#crafting_tooltip_helper_visible", + PAPER_DOLL_VISIBLE_LIVING_ROOM = "#paper_doll_visible_living_room", + HUD_ALPHA = "#hud_alpha", + HUD_PROPAGATE_ALPHA = "#hud_propagate_alpha", + RECIPE_ITEM_NAME = "#recipe_item_name", + NEEDS_CRAFTING_TABLE = "#needs_crafting_table", + IS_LEFT_TAB_INVENTORY = "#is_left_tab_inventory", + POCKET_RIGHT_PANE_VISIBLE = "#pocket_right_pane_visible", + GAMEPAD_HELPER_X_VISIBLE = "#gamepad_helper_x_visible", + GAMEPAD_HELPER_Y_VISIBLE = "#gamepad_helper_y_visible", + GAMEPAD_HELPER_A_VISIBLE = "#gamepad_helper_a_visible", + GAMEPAD_HELPER_LS_VISIBLE = "#gamepad_helper_ls_visible", + IS_RECIPE_BOOK_LAYOUT = "#is_recipe_book_layout", + IS_CREATIVE_LAYOUT = "#is_creative_layout", + IS_SURVIVAL_LAYOUT = "#is_survival_layout", + IS_LEFT_TAB_SEARCH = "#is_left_tab_search", + CONTAINER_ITEM_BACKGROUND_TEXTURE = "#container_item_background_texture", + CONTAINER_ITEM_BACKGROUND = "#container_item_background", + CONTAINER_ITEM_MODIFIER = "#container_item_modifier", + RECIPE_BOOK_TOTAL_ITEMS = "#recipe_book_total_items", + TAB_LABEL_TEXT = "#tab_label_text", + CREATIVE_LAYOUT_BUTTON_VISIBLE = "#creative_layout_button_visible", + ANIMATING_TEXT_VISIBLE = "#animating_text_visible", + ANIMATING_TEXT = "#animating_text", + MANAGE_FEED_GRID_DIMENSION = "#manage_feed_grid_dimension", + MANAGE_CONTENT = "#manage_content", + MANAGE_FEED_TEXT_VISIBLE = "#manage_feed_text_visible", + TIME_SINCE_MANAGE_FEED_POST = "#time_since_manage_feed_post", + NRREPORTS = "#nrreports", + MANAGE_GAMERTAG = "#manage_gamertag", + MANAGE_FEED_TEXTURE = "#manage_feed_texture", + MANAGE_FEED_TEXTURE_SOURCE = "#manage_feed_texture_source", + MANAGE_TEXTPOST_CONTENT = "#manage_textpost_content", + MANAGE_TEXTPOST_VISIBLE = "#manage_textpost_visible", + MANAGE_GAMERPIC_TEXTURE = "#manage_gamerpic_texture", + MANAGE_GAMERPIC_TEXTURE_SOURCE = "#manage_gamerpic_texture_source", + MANAGE_GAMERPIC_VISIBLE = "#manage_gamerpic_visible", + PROGRESS_LOADING_ANIM_VISIBLE = "#progress_loading_anim_visible", + SECTION_CONTENT = "#section_content", + RATINGS_PANEL_5STARS_VISIBLE = "#ratings_panel_5stars_visible", + RATING_TEXT = "#rating_text", + NUMBER_OF_RATINGS = "#number_of_ratings", + PLAYER_RATING_NUMBER = "#player_rating_number", + PLAYER_RATING_VISIBLE = "#player_rating_visible", + RATINGS_VALID = "#ratings_valid", + MAIN_MASHUP_KEY_ART_TEXTURE = "#main_mashup_key_art_texture", + MAIN_MASHUP_KEY_ART_FILE_SYSTEM = "#main_mashup_key_art_file_system", + RATE_BUTTON_VISIBLE = "#rate_button_visible", + RESOURCE_PACK_INTERACT_VISIBLE = "#resource_pack_interact_visible", + AUTHOR_BUTTON_TEXT = "#author_button_text", + TOTAL_RATINGS_COUNT = "#total_ratings_count", + RATING_BUTTON_TEXT = "#rating_button_text", + PACK_TITLE = "#pack_title", + PACK_CONTENTS_DESCRIPTION = "#pack_contents_description", + CONTENTS_DESCRIPTION_VISIBLE = "#contents_description_visible", + AUTHOR_LABEL = "#author_label", + PACK_DESCRIPTION = "#pack_description", + MODAL_TITLE_TEXT = "#modal_title_text", + MODAL_LABEL_TEXT = "#modal_label_text", + MODAL_LEFT_BUTTON_TEXT = "#modal_left_button_text", + MODAL_MIDDLE_BUTTON_TEXT = "#modal_middle_button_text", + MODAL_RIGHTCANCEL_BUTTON_TEXT = "#modal_rightcancel_button_text", + SKIN_VISIBLE = "#skin_visible", + BASIC_VISIBLE = "#basic_visible", + MAXIMIZED_EDIT_VISIBLE = "#maximized_edit_visible", + MAXIMIZED_PLACEHOLDER_TEXT = "#maximized_placeholder_text", + BUTTON_NAME_EDIT_VISIBLE = "#button_name_edit_visible", + IS_URL_ACTION = "#is_url_action", + IS_COMMAND_ACTION = "#is_command_action", + COMMANDS_ENABLED = "#commands_enabled", + ACTION_COUNT = "#action_count", + HELP_VISIBLE = "#help_visible", + ADD_BUTTONS_ENABLED = "#add_buttons_enabled", + ADVANCED_VISIBLE = "#advanced_visible", + STUDENT_MODEL_UPDATE = "#student_model_update", + INTERACT_TEXT = "#interact_text", + STUDENT_BUTTON_TEXT = "#student_button_text", + IS_URL_BUTTON = "#is_url_button", + IS_COMMAND_BUTTON = "#is_command_button", + STUDENT_BUTTON_VISIBLE = "#student_button_visible", + STUDENT_BUTTON_GRID_DIMENSIONS = "#student_button_grid_dimensions", + STUDENT_VIEW_VISIBLE = "#student_view_visible", + TEACHER_VIEW_VISIBLE = "#teacher_view_visible", + SERVER_STORE_BUTTON_VISIBLE = "#server_store_button_visible", + SHOW_CLUBS = "#show_clubs", + DISCONNECTED_FROM_XBOX_LIVE_LABEL_VISIBLE = "#disconnected_from_xbox_live_label_visible", + PERMISSIONS_VISIBLE = "#permissions_visible", + PLAYER_PERMISSION_LEVEL_ICON_TEXTURE = "#player_permission_level_icon_texture", + PERMISSIONS_GRID_DIMENSION = "#permissions_grid_dimension", + OPTION_STATE_NAME = "#option_state_name", + OPTION_NAME = "#option_name", + PERMISSION_LEVEL_DROPDOWN_ICON_TEXTURE = "#permission_level_dropdown_icon_texture", + WORLD_BUTTON_FOCUS_IDENTIFIER = "#world_button_focus_identifier", + MENU_REALMS_FEED_VISIBLE = "#menu_realms_feed_visible", + MENU_REALMS_FEED_ENABLED = "#menu_realms_feed_enabled", + SERVERS_NETWORK_WORLD_ITEM_GRID_DIMENSION = "#servers_network_world_item_grid_dimension", + SERVER_PLAYER_COUNT = "#server_player_count", + THIRD_PARTY_FEATURED_ITEM_GRID_DIMENSION = "#third_party_featured_item_grid_dimension", + FEATURED_SERVERS_VISIBLE = "#featured_servers_visible", + THIRD_PARTY_SCREENSHOT_VISIBLE = "#third_party_screenshot_visible", + SHOW_PING_LOADING = "#show_ping_loading", + THIRD_PARTY_SERVER_NAME = "#third_party_server_name", + THIRD_PARTY_SERVER_MESSAGE = "#third_party_server_message", + THIRD_PARTY_SERVER_LOGO_TEXTURE_PATH = "#third_party_server_logo_texture_path", + THIRD_PARTY_SERVER_LOGO_RESOURCE_LOCATION = "#third_party_server_logo_resource_location", + LEGACY_WORLD_NAME = "#legacy_world_name", + LEGACY_WORLD_GAME_MODE = "#legacy_world_game_mode", + LEGACY_WORLD_DATE = "#legacy_world_date", + LEGACY_WORLD_DATE_VISIBLE = "#legacy_world_date_visible", + LEGACY_WORLDFILE_SIZE = "#legacy_worldfile_size", + LEGACY_WORLD_ITEM_GRID_DIMENSION = "#legacy_world_item_grid_dimension", + JOIN_BY_CODE_VISIBLE = "#join_by_code_visible", + SYNC_LEGACY_WORLDS_BUTTON_VISIBLE = "#sync_legacy_worlds_button_visible", + WORLDS_TAB_IMPORT_BUTTON_FOCUS_DOWN_OVERRIDE = "#worlds_tab_import_button_focus_down_override", + FRIENDS_TAB_INVITATION_BUTTON_FOCUS_DOWN_OVERRIDE = "#friends_tab_invitation_button_focus_down_override", + LOADING_LEGACY_WORLDS_GRID_VISIBLE = "#loading_legacy_worlds_grid_visible", + LEGACY_WORLDS_VISIBLE = "#legacy_worlds_visible", + DISCONNECTED_FROM_XBL_VISIBLE = "#disconnected_from_xbl_visible", + DISCONNECTED_FROM_NETWORK_VISIBLE = "#disconnected_from_network_visible", + LOADING_SERVERS_PROGRESS_VISIBLE = "#loading_servers_progress_visible", + FEATURE_SERVER_MESSAGE_VISIBLE = "#feature_server_message_visible", + BUMPER_TOOLTIPS_VISIBLE = "#bumper_tooltips_visible", + FOOTER_TEXT = "#footer_text", + LOADING_BAR_PERCENTAGE = "#loading_bar_percentage", + INVITED_FRIENDS_VISIBLE = "#invited_friends_visible", + MEMBER_LOADING_TEXT = "#member_loading_text", + BLOCKED_PLAYERS_VISIBLE = "#blocked_players_visible", + BLOCKED_PLAYERS_GRID_DIMENSION = "#blocked_players_grid_dimension", + LINKURL = "#linkurl", + COPY_SHARE_ENABLED = "#copy_share_enabled", + DEFAULT_MESSAGE_VISIBLE = "#default_message_visible", + REFRESH_MESSAGE_VISIBLE = "#refresh_message_visible", + TAG_FACTORY_LENGTH = "#tag_factory_length", + IS_USING_GAMEPAD = "#is_using_gamepad", + HAS_SUBPACKS = "#has_subpacks", + CONTENT_TIER_OPTIONS_VISIBLE = "#content_tier_options_visible", + CONTENT_TIER_LABEL = "#content_tier_label", + CONTENT_TIER_SUPPORTED = "#content_tier_supported", + INCOMPATIBLE_REASON = "#incompatible_reason", + SCREENSHOTPICKER_GRID_DIMENSION = "#screenshotpicker_grid_dimension", + VALIDATION_FAILURE_VISIBLE = "#validation_failure_visible", + SCREENSHOTPICKER_VISIBLE = "#screenshotpicker_visible", + SCREENSHOTPICKER_SCREENSHOT_TIME = "#screenshotpicker_screenshot_time", + SCREENSHOTPICKER_TIMESINCE_VISIBLE = "#screenshotpicker_timesince_visible", + SCREENSHOTPICKER_TEXTURE = "#screenshotpicker_texture", + SCREENSHOTPICKER_TEXTURE_SOURCE = "#screenshotpicker_texture_source", + VALIDATION_SUCCEEDED = "#validation_succeeded", + IS_DELETE_VISIBLE = "#is_delete_visible", + NO_SCREENSHOT_VISIBLE = "#no_screenshot_visible", + CAPTION_TEXT_BOX = "#caption_text_box", + TOGGLE_SELECTED = "#toggle_selected", + HOTBAR_VISIBLE_NOT_CENTERED = "#hotbar_visible_not_centered", + IS_LEFT_TAB_CONSTRUCT = "#is_left_tab_construct", + IS_LEFT_TAB_EQUIPMENT = "#is_left_tab_equipment", + IS_LEFT_TAB_ITEMS = "#is_left_tab_items", + IS_LEFT_TAB_NATURE = "#is_left_tab_nature", + FILTERING_ENABLED = "#filtering_enabled", + BUTTON_MODE_ENABLED = "#button_mode_enabled", + MEMBERS_PREVBUTTON_VISIBLE = "#members_prevButton_visible", + MEMBERS_NEXTBUTTON_VISIBLE = "#members_nextButton_visible", + INVITED_FRIENDS_PREVBUTTON_VISIBLE = "#invited_friends_prevButton_visible", + INVITED_FRIENDS_NEXTBUTTON_VISIBLE = "#invited_friends_nextButton_visible", + UNINVITED_FRIENDS_PREVBUTTON_VISIBLE = "#uninvited_friends_prevButton_visible", + UNINVITED_FRIENDS_NEXTBUTTON_VISIBLE = "#uninvited_friends_nextButton_visible", + BLOCKED_PLAYERS_PREVBUTTON_VISIBLE = "#blocked_players_prevButton_visible", + BLOCKED_PLAYERS_NEXTBUTTON_VISIBLE = "#blocked_players_nextButton_visible", + MEMBERS_PAGE_INDEX_TEXT = "#members_page_index_text", + MEMBERS_BUTTONS_VISIBLE = "#members_buttons_visible", + INVITED_FRIENDS_PAGE_INDEX_TEXT = "#invited_friends_page_index_text", + INVITED_FRIENDS_BUTTONS_VISIBLE = "#invited_friends_buttons_visible", + UNINVITED_FRIENDS_PAGE_INDEX_TEXT = "#uninvited_friends_page_index_text", + UNINVITED_FRIENDS_BUTTONS_VISIBLE = "#uninvited_friends_buttons_visible", + BLOCKED_PLAYERS_PAGE_INDEX_TEXT = "#blocked_players_page_index_text", + BLOCKED_PLAYERS_BUTTONS_VISIBLE = "#blocked_players_buttons_visible", + SAFE_ZONE_ALL = "#safe_zone_all", + SAFE_ZONE_ALL_ENABLED = "#safe_zone_all_enabled", + SAFE_ZONE_ALL_SLIDER_LABEL = "#safe_zone_all_slider_label", + SAFE_ZONE_X_SLIDER_LABEL = "#safe_zone_x_slider_label", + SAFE_ZONE_X = "#safe_zone_x", + SAFE_ZONE_X_ENABLED = "#safe_zone_x_enabled", + SAFE_ZONE_Y_SLIDER_LABEL = "#safe_zone_y_slider_label", + SAFE_ZONE_Y = "#safe_zone_y", + SAFE_ZONE_Y_ENABLED = "#safe_zone_y_enabled", + SCREEN_POSITION_X = "#screen_position_x", + SCREEN_POSITION_X_ENABLED = "#screen_position_x_enabled", + SCREEN_POSITION_X_SLIDER_LABEL = "#screen_position_x_slider_label", + SCREEN_POSITION_Y = "#screen_position_y", + SCREEN_POSITION_Y_ENABLED = "#screen_position_y_enabled", + SCREEN_POSITION_Y_SLIDER_LABEL = "#screen_position_y_slider_label", + IS_POSTING = "#is_posting", + FORM_BUTTON_LENGTH = "#form_button_length", + FORM_BUTTON_TEXTURE = "#form_button_texture", + FORM_BUTTON_TEXTURE_FILE_SYSTEM = "#form_button_texture_file_system", + CUSTOM_FORM_LENGTH = "#custom_form_length", + SUBMIT_BUTTON_VISIBLE = "#submit_button_visible", + CUSTOM_TOGGLE_STATE = "#custom_toggle_state", + CUSTOM_RADIO_TOGGLE = "#custom_radio_toggle", + CUSTOM_INPUT_TEXT = "#custom_input_text", + CUSTOM_RADIO_TOGGLED = "#custom_radio_toggled", + POLYMORPHIC_BUTTON_ENABLED = "#polymorphic_button_enabled", + GRID_BUTTON_FOCUS_ID = "#grid_button_focus_id", + GRID_BUTTON_OVERRIDE_LEFT = "#grid_button_override_left", + GRID_BUTTON_OVERRIDE_RIGHT = "#grid_button_override_right", + GRID_BUTTON_OVERRIDE_UP = "#grid_button_override_up", + SKIN_BUTTON_VISIBLE = "#skin_button_visible", + PACK_LOADING_PROGRESS_VISIBLE = "#pack_loading_progress_visible", + ACCEPT_SKIN_BUTTON_ENABLED = "#accept_skin_button_enabled", + LEFT_VISIBLE = "#left_visible", + SKIN_CYCLE_PACK_LEFT_BUTTON_ENABLED = "#skin_cycle_pack_left_button_enabled", + CYCLE_PACK_RIGHT_BUTTON_VISIBLE = "#cycle_pack_right_button_visible", + RIGHT_VISIBLE = "#right_visible", + SKIN_CYCLE_PACK_RIGHT_BUTTON_ENABLED = "#skin_cycle_pack_right_button_enabled", + SKIN_CONTENT_VISIBLE = "#skin_content_visible", + SKIN_SEARCH_PROGRESS_VISIBLE = "#skin_search_progress_visible", + HOWTOPLAY_VISIBLE = "#howtoplay_visible", + UPDATE_ICON_VISIBLE = "#update_icon_visible", + NEW_OFFER_ICON_VISIBLE = "#new_offer_icon_visible", + PROMPT_ICON_VISIBLE = "#prompt_icon_visible", + PROMPT_ICON_TEXTURE = "#prompt_icon_texture", + SIGN_IN_FOCUS_ENABLED = "#sign_in_focus_enabled", + FEATURED_GRID_ITEM_ID = "#featured_grid_item_id", + FEATURED_GRID_ITEM_OVERRIDE_UP = "#featured_grid_item_override_up", + FEATURED_GRID_ITEM_OVERRIDE_LEFT = "#featured_grid_item_override_left", + FEATURED_RATING_RATIO = "#featured_rating_ratio", + FEATURED_RATING = "#featured_rating", + FEATURED_RATINGS_VISIBLE = "#featured_ratings_visible", + FEATURED_CREATOR_LABEL = "#featured_creator_label", + FEATURED_PROMPT_TEXT = "#featured_prompt_text", + FEATURED_ICON_VISIBLE = "#featured_icon_visible", + FEATURED_OFFER_OVERRIDE_UP = "#featured_offer_override_up", + OFFER_DOWNLOAD_PROGRESS_LABEL = "#offer_download_progress_label", + SHOW_MORE_VISIBLE = "#show_more_visible", + SHOW_MORE_TEXT = "#show_more_text", + RATING_TEXT_VISIBLE = "#rating_text_visible", + OFFER_PROMPT_TEXT = "#offer_prompt_text", + OFFER_GRID_ITEM_BUTTON_FOCUS_ID = "#offer_grid_item_button_focus_id", + LEFT_MOST_GRID_ITEM_FOCUS_OVERRIDE_LEFT = "#left_most_grid_item_focus_override_left", + RIGHT_MOST_GRID_ITEM_FOCUS_OVERRIDE_RIGHT = "#right_most_grid_item_focus_override_right", + COLLECTION_PAGE_NUMBER_LABEL = "#collection_page_number_label", + OFFER_TYPE_LABEL = "#offer_type_label", + PROMO_TEXTURE_PATH = "#promo_texture_path", + PROMO_TEXTURE_FILE_SYSTEM = "#promo_texture_file_system", + PROMO_WRAPPED = "#promo_wrapped", + PROMO_ROW_VISIBLE = "#promo_row_visible", + PROMO_ROW_LOADING_VISIBLE = "#promo_row_loading_visible", + PROMO_ROW_TEXT = "#promo_row_text", + PROMO_UNLOCK_DATE = "#promo_unlock_date", + PAST_PROMO_TEXTURE_PATH = "#past_promo_texture_path", + PAST_PROMO_TEXTURE_FILE_SYSTEM = "#past_promo_texture_file_system", + PROMO_GRID_BUTTON_FOCUS_ID = "#promo_grid_button_focus_id", + PROMO_GRID_BUTTON_FOCUS_LEFT = "#promo_grid_button_focus_left", + PROMO_GRID_BUTTON_FOCUS_RIGHT = "#promo_grid_button_focus_right", + PAST_PROMO_ROW_GRID_DIMENSION = "#past_promo_row_grid_dimension", + PROMO_OFFER_TODAY = "#promo_offer_today", + FUTURE_PROMO_ROW_GRID_DIMENSION = "#future_promo_row_grid_dimension", + LIST_MAXIMUM_GRID_ITEMS = "#list_maximum_grid_items", + EXPORT_ENABLED = "#export_enabled", + EXPORT_VISIBLE = "#export_visible", + SHOW_XBOX_ICON = "#show_xbox_icon", + TEXT_PADDING_VISIBLE = "#text_padding_visible", + CONTROLLER_START_ICON = "#controller_start_icon", + ITEM_GRAYED_OUT = "#item_grayed_out", + NOT_BOUND = "#not_bound", + TEMPLATE_DOWNLOAD_TEXT = "#template_download_text", + DOWNLOAD_TEXT_VISIBLE = "#download_text_visible", + TEMPLATE_LIST_VISIBLE = "#template_list_visible", + SUGGESTED_CONTENT_VISIBLE = "#suggested_content_visible", + SUGGESTED_OFFERS_ITEM_GRID_DIMENSION = "#suggested_offers_item_grid_dimension", + TEXTURE_LOCATION_TYPE = "#texture_location_type", + GAMER_SCORE = "#gamer_score", + IS_NEW_ACCOUNT = "#is_new_account", + URL = "#url", + CODE = "#code", + GAMERTAG_FOUND = "#gamertag_found", + PLAYER_UUID = "#player_uuid", + BLOCK_PLAYER = "#block_player", + MUTE_PLAYER = "#mute_player", + FRIEND_STATUS_DROPDOWN_TOGGLE_LABEL = "#friend_status_dropdown_toggle_label", + IS_FRIEND = "#is_friend", + CURRENTLY_PLAYING_VISIBLE = "#currently_playing_visible", + CURRENTLY_PLAYING = "#currently_playing", + TEXTURE_PATH = "#texture_path", + REASON_SELECTED = "#reason_selected", + SHOW_ITEM = "#show_item", + INACTIVE_ITEM = "#inactive_item", + ITEM_PICKUP_TIME = "#item_pickup_time", + INVENTORY_SELECTED_BANNER_PATTERNS = "#inventory_selected_banner_patterns", + INVENTORY_SELECTED_BANNER_COLORS = "#inventory_selected_banner_colors", + GAMEPAD_CURSOR_VISIBLE = "#gamepad_cursor_visible", + SAFEZONE_OUTER_TOP = "#safezone_outer_top", + SAFEZONE_INNER_TOP = "#safezone_inner_top", + HIDE_TOOLTIPS = "#hide_tooltips", + HIDE_TOOLTIPS_ENABLED = "#hide_tooltips_enabled", + HIDE_GAMEPAD_CURSOR = "#hide_gamepad_cursor", + HIDE_GAMEPAD_CURSOR_ENABLED = "#hide_gamepad_cursor_enabled", + GAMEPAD_CURSOR_SENSITIVITY = "#gamepad_cursor_sensitivity", + GAMEPAD_CURSOR_SENSITIVITY_ENABLED = "#gamepad_cursor_sensitivity_enabled", + GAMEPAD_CURSOR_SENSITIVITY_SLIDER_LABEL = "#gamepad_cursor_sensitivity_slider_label", + SERVER_SETTINGS_VISIBLE = "#server_settings_visible", + CLASSROOM_SETTINGS_VISIBLE = "#classroom_settings_visible", + START_WITH_MAP = "#start_with_map", + START_WITH_MAP_ENABLED = "#start_with_map_enabled", + BONUS_CHEST = "#bonus_chest", + BONUS_CHEST_ENABLED = "#bonus_chest_enabled", + PLAYER_PERMISSIONS_DROPDOWN_TOGGLE_LABEL = "#player_permissions_dropdown_toggle_label", + PLAYER_PERMISSIONS_DROPDOWN_ENABLED = "#player_permissions_dropdown_enabled", + SHOW_PERMISSIONS_DROPDOWN = "#show_permissions_dropdown", + SERVER_SIM_DISTANCE = "#server_sim_distance", + SERVER_SIM_DISTANCE_ENABLED = "#server_sim_distance_enabled", + SERVER_SIM_DISTANCE_STEPS = "#server_sim_distance_steps", + SERVER_SIM_DISTANCE_SLIDER_LABEL = "#server_sim_distance_slider_label", + SHOW_COORDINATES = "#show_coordinates", + SHOW_COORDINATES_ENABLED = "#show_coordinates_enabled", + FIRE_SPREADS = "#fire_spreads", + FIRE_SPREADS_ENABLED = "#fire_spreads_enabled", + TNT_EXPLODES = "#tnt_explodes", + TNT_EXPLODES_ENABLED = "#tnt_explodes_enabled", + MOB_LOOT = "#mob_loot", + MOB_LOOT_ENABLED = "#mob_loot_enabled", + NATURAL_REGENERATION = "#natural_regeneration", + NATURAL_REGENERATION_ENABLED = "#natural_regeneration_enabled", + TILE_DROPS = "#tile_drops", + TILE_DROPS_ENABLED = "#tile_drops_enabled", + DAYLIGHT_CYCLE = "#daylight_cycle", + DAYLIGHT_CYCLE_ENABLED = "#daylight_cycle_enabled", + KEEP_INVENTORY = "#keep_inventory", + KEEP_INVENTORY_ENABLED = "#keep_inventory_enabled", + MOB_SPAWN = "#mob_spawn", + MOB_SPAWN_ENABLED = "#mob_spawn_enabled", + MOB_GRIEFING = "#mob_griefing", + MOB_GRIEFING_ENABLED = "#mob_griefing_enabled", + ENTITIES_DROP_LOOT = "#entities_drop_loot", + ENTITIES_DROP_LOOT_ENABLED = "#entities_drop_loot_enabled", + WEATHER_CYCLE = "#weather_cycle", + WEATHER_CYCLE_ENABLED = "#weather_cycle_enabled", + CLASSROOM_SETTINGS = "#classroom_settings", + CLASSROOM_SETTINGS_ENABLED = "#classroom_settings_enabled", + PERFECT_WEATHER = "#perfect_weather", + PERFECT_WEATHER_ENABLED = "#perfect_weather_enabled", + ALLOW_MOBS = "#allow_mobs", + ALLOW_MOBS_ENABLED = "#allow_mobs_enabled", + ALLOW_DESTRUCTIVE_ITEMS = "#allow_destructive_items", + ALLOW_DESTRUCTIVE_ITEMS_ENABLED = "#allow_destructive_items_enabled", + PLAYER_DAMAGE = "#player_damage", + PLAYER_DAMAGE_ENABLED = "#player_damage_enabled", + IMMUTABLE_WORLD = "#immutable_world", + IMMUTABLE_WORLD_ENABLED = "#immutable_world_enabled", + PVP_DAMAGE = "#pvp_damage", + PVP_DAMAGE_ENABLED = "#pvp_damage_enabled", + XBL_BROADCAST_DROPDOWN_TOGGLE_LABEL = "#xbl_broadcast_dropdown_toggle_label", + SHOW_BROADCAST_DROPDOWN = "#show_broadcast_dropdown", + MULTIPLAYER_WARNING_VISIBLE = "#multiplayer_warning_visible", + CLUB_DESCRIPTION_ENABLED = "#club_description_enabled", + CLUB_DESCRIPTION_VISIBLE = "#club_description_visible", + CLUB_DESCRIPTION = "#club_description", + MANAGE_FEED_BUTTON_ENABLED = "#manage_feed_button_enabled", + MANAGE_FEED_BUTTON_VISIBLE = "#manage_feed_button_visible", + CLUB_INFOTEXT_VISIBLE = "#club_infotext_visible", + SHOW_AUTO_SAVE_ICON = "#show_auto_save_icon", + SHOW_AUTO_SAVE_ICON_ENABLED = "#show_auto_save_icon_enabled", + HIDE_HAND = "#hide_hand", + HIDE_HAND_ENABLED = "#hide_hand_enabled", + HIDE_PAPERDOLL = "#hide_paperdoll", + HIDE_PAPERDOLL_ENABLED = "#hide_paperdoll_enabled", + CLASSIC_BOX_SELECTION = "#classic_box_selection", + CLASSIC_BOX_SELECTION_ENABLED = "#classic_box_selection_enabled", + VR_CLASSIC_BOX_SELECTION = "#vr_classic_box_selection", + VR_CLASSIC_BOX_SELECTION_ENABLED = "#vr_classic_box_selection_enabled", + INGAME_PLAYER_NAMES = "#ingame_player_names", + INGAME_PLAYER_NAMES_ENABLED = "#ingame_player_names_enabled", + INTERFACE_OPACITY = "#interface_opacity", + INTERFACE_OPACITY_ENABLED = "#interface_opacity_enabled", + INTERFACE_OPACITY_SLIDER_LABEL = "#interface_opacity_slider_label", + SPLIT_SCREEN_DROPDOWN_ENABLED = "#split_screen_dropdown_enabled", + SPLITSCREEN_INTERFACE_OPACITY_ENABLED = "#splitscreen_interface_opacity_enabled", + SPLITSCREEN_INGAME_PLAYER_NAMES = "#splitscreen_ingame_player_names", + SPLITSCREEN_INGAME_PLAYER_NAMES_ENABLED = "#splitscreen_ingame_player_names_enabled", + VR_HIDE_HUD = "#vr_hide_hud", + VR_HIDE_HUD_ENABLED = "#vr_hide_hud_enabled", + VR_HIDE_HAND = "#vr_hide_hand", + VR_HIDE_HAND_ENABLED = "#vr_hide_hand_enabled", + FIELD_OF_VIEW_TOGGLE = "#field_of_view_toggle", + FIELD_OF_VIEW_TOGGLE_ENABLED = "#field_of_view_toggle_enabled", + DEV_DATE_YEAR_OVERRIDE = "#dev_date_year_override", + DEV_DATE_MONTH_OVERRIDE = "#dev_date_month_override", + DEV_DATE_DAY_OVERRIDE = "#dev_date_day_override", + DEV_DISPLAY_OVERRIDE_DATETIME = "#dev_display_override_datetime", + DEV_DISPLAY_OVERRIDE_DATETIME_ENABLED = "#dev_display_override_datetime_enabled", + DEV_SAVE_CURRENT_OVERRIDE_DATE = "#dev_save_current_override_date", + DEV_SAVE_CURRENT_OVERRIDE_DATE_ENABLED = "#dev_save_current_override_date_enabled", + DEV_OVERRIDE_DAY_LENGTH = "#dev_override_day_length", + UPDATE_OVERRIDE_DATE_BUTTON_VISIBLE = "#update_override_date_button_visible", + OVERRIDE_DATE_OPTIONS_VISIBLE = "#override_date_options_visible", + DEV_SHOW_OVERRIDE_TREATMENTS_ENABLED = "#dev_show_override_treatments_enabled", + DEV_SHOW_OVERRIDE_TREATMENTS = "#dev_show_override_treatments", + DEV_TREATMENT_ID = "#dev_treatment_id", + DEV_TREATMENT_ID_ENABLED = "#dev_treatment_id_enabled", + TREATMENTS_GRID_DIMENSION = "#treatments_grid_dimension", + DEV_DISPLAY_TREATMENTS_PANEL = "#dev_display_treatments_panel", + TREATMENT_ID = "#treatment_id", + FEATURE_TOGGLE_STATE = "#feature_toggle_state", + FEATURE_TOGGLE_COUNT = "#feature_toggle_count", + DEV_SERVER_INSTANCE_THREAD = "#dev_server_instance_thread", + DEV_SERVER_INSTANCE_THREAD_ENABLED = "#dev_server_instance_thread_enabled", + DEV_FIND_MOBS = "#dev_find_mobs", + DEV_FIND_MOBS_ENABLED = "#dev_find_mobs_enabled", + DEV_RENDER_ATTACH_POS_ENABLED = "#dev_render_attach_pos_enabled", + DEV_NEW_CULLER = "#dev_new_culler", + DEV_NEW_CULLER_ENABLED = "#dev_new_culler_enabled", + DEV_ASSERTIONS_DEBUG_BREAK = "#dev_assertions_debug_break", + DEV_ASSERTIONS_DEBUG_BREAK_ENABLED = "#dev_assertions_debug_break_enabled", + DEV_MCE_ASSERTIONS_DEBUG_BREAK_HACK = "#dev_mce_assertions_debug_break_hack", + DEV_MCE_ASSERTIONS_DEBUG_BREAK_HACK_ENABLED = "#dev_mce_assertions_debug_break_hack_enabled", + DEV_SHOW_DEV_CONSOLE_BUTTON = "#dev_show_dev_console_button", + DEV_SHOW_DEV_CONSOLE_BUTTON_ENABLED = "#dev_show_dev_console_button_enabled", + DEV_ENABLE_MIXER_INTERACTIVE = "#dev_enable_mixer_interactive", + DEV_ENABLE_MIXER_INTERACTIVE_ENABLED = "#dev_enable_mixer_interactive_enabled", + DEV_SHOW_TCUI_REPLACEMENT = "#dev_show_tcui_replacement", + DEV_SHOW_TCUI_REPLACEMENT_ENABLED = "#dev_show_tcui_replacement_enabled", + DEV_USE_ZIPPED_IN_PACKAGE_PACKS = "#dev_use_zipped_in_package_packs", + DEV_USE_ZIPPED_IN_PACKAGE_PACKS_ENABLED = "#dev_use_zipped_in_package_packs_enabled", + DEV_IMPORT_PACKS_AS_ZIP = "#dev_import_packs_as_zip", + DEV_IMPORT_PACKS_AS_ZIP_ENABLED = "#dev_import_packs_as_zip_enabled", + DEV_USE_OVERRIDE_DATE = "#dev_use_override_date", + DEV_USE_OVERRIDE_DATE_ENABLED = "#dev_use_override_date_enabled", + DEV_DISPLAY_TREATMENTS_PANEL_ENABLED = "#dev_display_treatments_panel_enabled", + MEM_CHECK_TIMER = "#mem_check_timer", + MEM_CHECK_TIMER_ENABLED = "#mem_check_timer_enabled", + MEM_CHECK_TIMER_STEPS = "#mem_check_timer_steps", + PROTOCOL_VERSION = "#protocol_version", + WORLD_CONVERSION_VERSION = "#world_conversion_version", + HIDE_HUD = "#hide_hud", + HIDE_HUD_ENABLED = "#hide_hud_enabled", + VR_TRANSPARENT_LEAVES = "#vr_transparent_leaves", + VR_TRANSPARENT_LEAVES_ENABLED = "#vr_transparent_leaves_enabled", + RENDER_CLOUDS = "#render_clouds", + VR_SMOOTH_LIGHTING = "#vr_smooth_lighting", + VR_SMOOTH_LIGHTING_ENABLED = "#vr_smooth_lighting_enabled", + CAN_CHANGE_NAME = "#can_change_name", + LOADING_ACHIEVEMENT_PANEL_VISIBLE = "#loading_achievement_panel_visible", + ADHOC_TITLE = "#adhoc_title", + SHOW_MISSING_COINS = "#show_missing_coins", + REPORT_TO_CLUB_BUTTON_VISIBLE_FEEDITEM = "#report_to_club_button_visible_feeditem", + REPORT_TO_ENFORCEMENT_BUTTON_VISIBLE_FEEDITEM = "#report_to_enforcement_button_visible_feeditem", + REPORT_TO_CLUB_BUTTON_VISIBLE_COMMENT = "#report_to_club_button_visible_comment", + REPORT_TO_ENFORCEMENT_BUTTON_VISIBLE_COMMENT = "#report_to_enforcement_button_visible_comment", + REPORT_TO_ENFORCEMENT_BUTTON_VISIBLE = "#report_to_enforcement_button_visible", + REPORT_TO_CLUB_BUTTON_VISIBLE = "#report_to_club_button_visible", + INFINITE_PROGRESS_VISIBLE = "#infinite_progress_visible", + PROGRESS_TEXT_VISIBLE = "#progress_text_visible", + REALMS_BUTTON_VISIBLE = "#realms_button_visible", + IS_CREATIVE_AND_RECIPE_BOOK_LAYOUT = "#is_creative_and_recipe_book_layout", + IS_CREATIVE_AND_CREATIVE_LAYOUT = "#is_creative_and_creative_layout", + IS_DELETING = "#is_deleting", + IS_DONE_VALIDATING = "#is_done_validating", + IS_INTERACTION_BUTTON_VISIBLE = "#is_interaction_button_visible", + RATINGS_SUMMARY_VALID = "#ratings_summary_valid", + RATINGS_HOVER_BUTTON_FOCUS_ENABLED = "#ratings_hover_button_focus_enabled", + RATING_STATUS_VALID = "#rating_status_valid", + HAS_CONTENT_TIERING = "#has_content_tiering", + PLAYERNAME_VISIBLE = "#playername_visible", + INVITE_BUTTON_ENABLED = "#invite_button_enabled", + DISCONNECTED_FROM_NEX_LABEL_VISIBLE = "#disconnected_from_nex_label_visible", + DISCONNECTED_FROM_ADHOC_LABEL_VISIBLE = "#disconnected_from_adhoc_label_visible", + DISCONNECTED_FROM_CROSSPLATFORM_MULTIPLAYER = "#disconnected_from_crossplatform_multiplayer", + DISCONNECTED_FROM_MULTIPLAYER = "#disconnected_from_multiplayer", + PLAYER_TOGGLE_STATE = "#player_toggle_state", + OPTION_TOGGLE_STATE = "#option_toggle_state", + CAN_EDIT_PERMISSIONS = "#can_edit_permissions", + PERMISSION_LEVEL_DROPDOWN_LABEL = "#permission_level_dropdown_label", + FRIENDS_SERVER_ICON_TEXTURE_NAME = "#friends_server_icon_texture_name", + CROSS_PLATFORM_FRIENDS_SERVER_ICON_TEXTURE_NAME = "#cross_platform_friends_server_icon_texture_name", + NETWORK_WORLD_HEADER_ICON_TEXTURE_PATH = "#network_world_header_icon_texture_path", + NETWORK_WORLD_HEADER_ICON_TEXTURE_LOCATION = "#network_world_header_icon_texture_location", + PRIVILEGESBLOCKEDTEXT = "#privilegesBlockedText", + ADD_FRIEND_BUTTON_VISIBLE = "#add_friend_button_visible", + NO_NEX_MULTIPLAYER_GRID_VISIBLE = "#no_nex_multiplayer_grid_visible", + CROSS_PLATFORM_FRIENDS_GRID_VISIBLE = "#cross_platform_friends_grid_visible", + CROSS_PLATFORM_NO_FRIENDS_GRID_VISIBLE = "#cross_platform_no_friends_grid_visible", + NO_CROSS_PLATFORM_MULTIPLAYER_GRID_VISIBLE = "#no_cross_platform_multiplayer_grid_visible", + MULTIPLAYER_BLOCKED_PANEL_VISIBLE = "#multiplayer_blocked_panel_visible", + IS_COIN_VISIBLE = "#is_coin_visible", + CONFIRMATION_BUTTON_TEXT = "#confirmation_button_text", + MATCHING_BRANCH_NAME = "#matching_branch_name", + MATCHING_COMMIT_ID = "#matching_commit_id", + TIME_SINCE_TEXT = "#time_since_text", + WORLD_TEXT = "#world_text", + DATE_TEXT = "#date_text", + TIME_TEXT = "#time_text", + BACKUP_ITEM_BUTTON_ENABLED = "#backup_item_button_enabled", + REALMS_BACKUP_GRID_DIMENSION = "#realms_backup_grid_dimension", + BACKUP_INFOTEXT = "#backup_infotext", + BACKUP_NETWORK_ERRORMSG = "#backup_network_errormsg", + PROGRESS_LOADING_BARS_BACKUPS_VISIBLE = "#progress_loading_bars_backups_visible", + BACKUP_NETWORK_ERROR_VISIBLE = "#backup_network_error_visible", + OPTIONS_VISIBLE = "#options_visible", + HAS_ERRORS = "#has_errors", + ERROR_FREE = "#error_free", + REPORT_GENERATING = "#report_generating", + HAS_PACK_SETTINGS = "#has_pack_settings", + PLAYER_SCORE_SIDEBAR = "#player_score_sidebar", + PLAYER_NAME_SIDEBAR = "#player_name_sidebar", + OBJECTIVE_SIDEBAR_NAME = "#objective_sidebar_name", + SCOREBOARD_SIDEBAR_SIZE = "#scoreboard_sidebar_size", + SCOREBOARD_SIDEBAR_VISIBLE = "#scoreboard_sidebar_visible", + SCOREBOARD_LIST_PLAYER_ICON = "#scoreboard_list_player_icon", + SCOREBOARD_LIST_PLAYER_ICON_FILESYSTEM = "#scoreboard_list_player_icon_filesystem", + SCOREBOARD_LIST_PLAYER_NAME = "#scoreboard_list_player_name", + SCOREBOARD_LIST_PLAYER_SCORE = "#scoreboard_list_player_score", + SCOREBOARD_LIST_CONNECTION = "#scoreboard_list_connection", + SCOREBOARD_LIST_SIZE = "#scoreboard_list_size", + SCOREBOARD_LIST_SCORETYPE_SCORE = "#scoreboard_list_scoretype_score", + SCOREBOARD_LIST_SCORETYPE_HEARTS = "#scoreboard_list_scoretype_hearts", + SCOREBOARD_SHOW_TAB = "#scoreboard_show_tab", + SKIN_BUTTON_GAME_PAD_VISIBLE = "#skin_button_game_pad_visible", + SKIN_BUTTON_NOT_GAME_PAD_VISIBLE = "#skin_button_not_game_pad_visible", + IS_USING_GAMEPAD_ICON = "#is_using_gamepad_icon", + FOCUS_OVERRIDE_LEFT = "#focus_override_left", + FOCUS_OVERRIDE_RIGHT = "#focus_override_right", + NX_SIGNIN_TEXT = "#nx_signin_text", + GAMERPIC_TEXTURE_PATH = "#gamerpic_texture_path", + GAMERPIC_TEXTURE_LOCATION_TYPE = "#gamerpic_texture_location_type", + GAMERTAG_PIC_AND_LABEL_VISIBLE = "#gamertag_pic_and_label_visible", + ONLINE_BUTTONS_VISIBLE = "#online_buttons_visible", + HERO_OFFER_PRICE_TEXT = "#hero_offer_price_text", + HERO_OFFER_COIN_ICON_VISIBLE = "#hero_offer_coin_icon_visible", + HERO_OFFER_DESCRIPTION_VISIBLE = "#hero_offer_description_visible", + HERO_OFFER_TITLE = "#hero_offer_title", + HERO_OFFER_AUTHOR = "#hero_offer_author", + CATEGORY_COLLECTION_READY = "#category_collection_ready", + SEARCH_ERROR_PANEL_VISIBLE = "#search_error_panel_visible", + SEARCH_RESULTS_PANEL_VISIBLE = "#search_results_panel_visible", + FILTER_SELECTED_COUNT = "#filter_selected_count", + SEARCH_VISIBLE = "#search_visible", + FILTER_SCREEN_ENABLED = "#filter_screen_enabled", + TOP_ROW_FOCUS_OVERRIDE_UP = "#top_row_focus_override_up", + TRENDING_ROW_NAME = "#trending_row_name", + TRENDING_OFFERS_DIMENSIONS = "#trending_offers_dimensions", + TRENDING_ROWS_DIMENSIONS = "#trending_rows_dimensions", + SEARCH_ACTIVE = "#search_active", + TRENDING_PAGE_LOADING_VISIBLE = "#trending_page_loading_visible", + SORT_TYPE_TEXT = "#sort_type_text", + RELEVANCE_TOGGLE_VISIBLE = "#relevance_toggle_visible", + SORT_MENU_VISIBLE = "#sort_menu_visible", + SORT_SCREEN_ENABLED = "#sort_screen_enabled", + GENERATE_RANDOM_BUTTON_ENABLED = "#generate_random_button_enabled", + REALMS_INFO_TEXT = "#realms_info_text", + SEARCH_IN_PROGRESS = "#search_in_progress", + MESSAGE_PANEL_VISIBLE = "#message_panel_visible", + ADD_FRIEND_BUTTON_TEXT = "#add_friend_button_text", + REMOVE_FRIEND_BUTTON_TEXT = "#remove_friend_button_text", + ADD_REMOVE_IN_PROGRESS = "#add_remove_in_progress", + IS_SELECTED_SLOT = "#is_selected_slot", + SHOW_HOVERED_SLOT = "#show_hovered_slot", + USING_TOUCH = "#using_touch", + KEYBOARD_SHOW_FULL_KEYBOARD_OPTIONS_ENABLED = "#keyboard_show_full_keyboard_options_enabled", + KEYBOARD_SHOW_STANDARD_KEYBOARD_OPTIONS = "#keyboard_show_standard_keyboard_options", + KEYBOARD_SHOW_FULL_KEYBOARD_OPTIONS = "#keyboard_show_full_keyboard_options", + KEYBOARD_SMOOTH_ROTATION_SPEED = "#keyboard_smooth_rotation_speed", + KEYBOARD_SMOOTH_ROTATION_SPEED_ENABLED = "#keyboard_smooth_rotation_speed_enabled", + SWAP_GAMEPAD_AB_BUTTONS = "#swap_gamepad_ab_buttons", + SWAP_GAMEPAD_AB_BUTTONS_ENABLED = "#swap_gamepad_ab_buttons_enabled", + SWAP_GAMEPAD_XY_BUTTONS = "#swap_gamepad_xy_buttons", + SWAP_GAMEPAD_XY_BUTTONS_ENABLED = "#swap_gamepad_xy_buttons_enabled", + HOTBAR_ONLY_TOUCH = "#hotbar_only_touch", + HOTBAR_ONLY_TOUCH_ENABLED = "#hotbar_only_touch_enabled", + GENERAL_MULTIPLAYER_WARNING_TEXT = "#general_multiplayer_warning_text", + GENERAL_MULTIPLAYER_WARNING_LABEL_VISIBLE = "#general_multiplayer_warning_label_visible", + XBL_SHOW_BROADCAST_DROPDOWN = "#xbl_show_broadcast_dropdown", + CAN_BE_XBL_ENABLED = "#can_be_xbl_enabled", + EDUCATION_TOGGLE = "#education_toggle", + EDUCATION_TOGGLE_ENABLED = "#education_toggle_enabled", + EXPERIMENTAL_GAMEPLAY = "#experimental_gameplay", + EXPERIMENTAL_GAMEPLAY_ENABLED = "#experimental_gameplay_enabled", + SHOW_EXPERIMENTAL_GAMEPLAY = "#show_experimental_gameplay", + PVP = "#pvp", + PVP_ENABLED = "#pvp_enabled", + PLATFORM_SHOW_BROADCAST_DROPDOWN = "#platform_show_broadcast_dropdown", + CAN_BE_NEX_ENABLED = "#can_be_nex_enabled", + HOW_TO_PLAY_GAMEPAD_HELPER_LABEL_TEXT = "#how_to_play_gamepad_helper_label_text", + HOW_TO_PLAY_GAMEPAD_HELPER_LABEL_VISIBLE = "#how_to_play_gamepad_helper_label_visible", + SWITCH_COIN_DEBUG = "#switch_coin_debug", + SWITCH_COIN_DEBUG_ENABLED = "#switch_coin_debug_enabled", + SHOW_SWITCH_COIN_DEBUG = "#show_switch_coin_debug", + MULTITHREADED_RENDERING = "#multithreaded_rendering", + MULTITHREADED_RENDERING_ENABLED = "#multithreaded_rendering_enabled", + SHOW_MULTITHREADED_RENDERING = "#show_multithreaded_rendering", + DEV_XFORGE_REQUESTS_REQUIRE_SIGN_IN = "#dev_xforge_requests_require_sign_in", + DEV_XFORGE_REQUESTS_REQUIRE_SIGN_IN_ENABLED = "#dev_xforge_requests_require_sign_in_enabled", + ATMOSPHERICS = "#atmospherics", + ATMOSPHERICS_ENABLED = "#atmospherics_enabled", + EDGE_HIGHLIGHT = "#edge_highlight", + EDGE_HIGHLIGHT_ENABLED = "#edge_highlight_enabled", + BLOOM = "#bloom", + BLOOM_ENABLED = "#bloom_enabled", + TERRAIN_SHADOWS = "#terrain_shadows", + TERRAIN_SHADOWS_ENABLED = "#terrain_shadows_enabled", + SUPER_FANCY_WATER = "#super_fancy_water", + SUPER_FANCY_WATER_ENABLED = "#super_fancy_water_enabled", + RENDERING_PROFILE = "#rendering_profile", + RENDERING_PROFILE_SLIDER_ENABLED = "#rendering_profile_slider_enabled", + RENDERING_PROFILE_STEPS = "#rendering_profile_steps", + RENDER_CLOUDS_ENABLED = "#render_clouds_enabled", + SCREEN_ANIMATIONS = "#screen_animations", + SCREEN_ANIMATIONS_ENABLED = "#screen_animations_enabled", + SCREEN_ANIMATIONS_VISIBLE = "#screen_animations_visible", + DEVICE_ID = "#device_id", + COMMERCE_ID = "#commerce_id", + AUTO_UPDATE_ENABLED = "#auto_update_enabled", + AUTO_UPDATE_MODE_DROPDOWN_TOGGLE_LABEL = "#auto_update_mode_dropdown_toggle_label", + GUI_SCALE_VISIBLE = "#gui_scale_visible", + SHOW_IOS_ACCOUNT_ERROR = "#show_ios_account_error", + SHOW_POPUP_BUTTON = "#show_popup_button", + TEXT_EDIT_BOX_FOCUS_OVERRIDE_UP = "#text_edit_box_focus_override_up", + TEXT_EDIT_BOX_FOCUS_OVERRIDE_DOWN = "#text_edit_box_focus_override_down", + ACTION_BUTTON_ENABLED = "#action_button_enabled", + PURCHASE_PANEL_VISIBLE = "#purchase_panel_visible", + PURCHASE_WITH_CURRENCY_BUTTON_TEXT = "#purchase_with_currency_button_text", + PURCHASE_WITH_COINS_BUTTON_TEXT = "#purchase_with_coins_button_text", + MARKDOWN_PERCENTAGE = "#markdown_percentage", + IS_ON_SALE = "#is_on_sale", + FULL_PRICE = "#full_price", + ITEM_SKIN_COUNT = "#item_skin_count", + ITEM_SKIN_COUNT_VISIBLE = "#item_skin_count_visible", + ITEM_WORLD_TEMPLATE_COUNT = "#item_world_template_count", + ITEM_WORLD_TEMPLATE_COUNT_VISIBLE = "#item_world_template_count_visible", + ITEM_RESOURCE_PACK_COUNT = "#item_resource_pack_count", + ITEM_RESOURCE_PACK_COUNT_VISIBLE = "#item_resource_pack_count_visible", + TIME_UNTIL_SALE_EXPIRES = "#time_until_sale_expires", + PERSONAL_REALMS_GRID_VISIBLE = "#personal_realms_grid_visible", + REALM_NINTENDO_FIRST_REALM_PURCHASE_BUTTON_VISIBLE = "#realm_nintendo_first_realm_purchase_button_visible", + JOINABLE_REALMS_PANEL_VISIBLE = "#joinable_realms_panel_visible", + BUTTONNAME = "#ButtonName", + SALE_VISIBLE = "#sale_visible", + COIN_PURCHASE_IN_PROGRESS = "#coin_purchase_in_progress", + SHOW_NO_XBL_AND_LOCAL_CONTENT_WARNING = "#show_no_xbl_and_local_content_warning", + SHOW_NO_XBL_AND_NO_LOCAL_CONTENT_WARNING = "#show_no_xbl_and_no_local_content_warning", + IS_SALES_GRID_VISIBLE = "#is_sales_grid_visible", + SALES_GRID_ITEM_COUNT = "#sales_grid_item_count", + IS_STORE_OFFER_GRID_PANEL_VISIBLE = "#is_store_offer_grid_panel_visible", + BUBBLE_PARTICLES = "#bubble_particles", + BUBBLE_PARTICLES_ENABLED = "#bubble_particles_enabled", + POPUP_TITLE = "#popup_title", + POPUP_MESSAGE_STUDENT_TEXT = "#popup_message_student_text", + CHAT_SETTINGS_BUTTON_ENABLED = "#chat_settings_button_enabled", + CHAT_SETTINGS_MAIN_ENABLED = "#chat_settings_main_enabled", + NO_FRIENDS_GRID_MESSAGE_TEXT = "#no_friends_grid_message_text", + NO_FRIENDS_GRID_MESSAGE_VISIBLE = "#no_friends_grid_message_visible", + NO_CROSS_PLATFORM_FRIENDS_GRID_MESSAGE_TEXT = "#no_cross_platform_friends_grid_message_text", + NO_CROSS_PLATFORM_FRIENDS_GRID_MESSAGE_VISIBLE = "#no_cross_platform_friends_grid_message_visible", + GENERAL_NO_MULTIPLAYER_GRID_MESSAGE_TEXT = "#general_no_multiplayer_grid_message_text", + GENERAL_NO_MULTIPLAYER_GRID_MESSAGE_VISIBLE = "#general_no_multiplayer_grid_message_visible", + REALM_DEFAULT_PERMISSION_DROPDOWN_TOGGLE_LABEL = "#realm_default_permission_dropdown_toggle_label", + REALM_DEFAULT_PERMISSION_DROPDOWN_ENABLED = "#realm_default_permission_dropdown_enabled", + PERMISSION_DROPDOWN_VISIBLE = "#permission_dropdown_visible", + PERMISSION_COLLECTION_DROPDOWN_VISIBLE = "#permission_collection_dropdown_visible", + FORCE_PACK_DOWNLOAD_ENABLED_LEVEL = "#force_pack_download_enabled_level", + FILTER_SCREEN_VISIBLE = "#filter_screen_visible", + DURABLE_TITLE_VISIBLE = "#durable_title_visible", + SORT_SCREEN_VISIBLE = "#sort_screen_visible", + SAVE_ENABLED = "#save_enabled", + SAVE_VISIBLE = "#save_visible", + LOAD_ENABLED = "#load_enabled", + LOAD_VISIBLE = "#load_visible", + SAVE_MODE_PANEL_VISIBLE = "#save_mode_panel_visible", + LOAD_MODE_PANEL_VISIBLE = "#load_mode_panel_visible", + PRICE = "#price", + DEV_ASSERTIONS_SHOW_DIALOG = "#dev_assertions_show_dialog", + DEV_ASSERTIONS_SHOW_DIALOG_ENABLED = "#dev_assertions_show_dialog_enabled", + AUTOMATION_UNIT_BLACKLIST_TEST_TAGS = "#automation_unit_blacklist_test_tags", + AUTOMATION_REPEAT_COUNT = "#automation_repeat_count", + AUTOMATION_INGESTION_ENDPOINT = "#automation_ingestion_endpoint", + AUTOMATION_TESTRUN_ID = "#automation_testrun_id", + AUTOMATION_FUNCTIONAL_TEST_BLOCK_INPUT = "#automation_functional_test_block_input", + AUTOMATION_FUNCTIONAL_TEST_BLOCK_INPUT_ENABLED = "#automation_functional_test_block_input_enabled", + AUTOMATION_FUNCTIONAL_TEST_TAGS = "#automation_functional_test_tags", + AUTOMATION_UNIT_TEST_TAGS = "#automation_unit_test_tags", + AUTOMATION_FUNCTIONAL_BLACKLIST_TEST_TAGS = "#automation_functional_blacklist_test_tags", + PLATFORM_MULTIPLAYER_WARNING_TEXT = "#platform_multiplayer_warning_text", + PLATFORM_MULTIPLAYER_WARNING_LABEL_VISIBLE = "#platform_multiplayer_warning_label_visible", + XBL_MULTIPLAYER_WARNING_TEXT = "#xbl_multiplayer_warning_text", + XBL_MULTIPLAYER_WARNING_LABEL_VISIBLE = "#xbl_multiplayer_warning_label_visible", + CHAT_MESSAGE_SPACING = "#chat_message_spacing", + CHAT_MESSAGE_SPACING_ENABLED = "#chat_message_spacing_enabled", + CHAT_MESSAGE_SPACING_CUSTOM_TEXT = "#chat_message_spacing_custom_text", + CHAT_SETTINGS_FONT_SECTION_ENABLED = "#chat_settings_font_section_enabled", + CHAT_SETTINGS_ENABLED = "#chat_settings_enabled", + EDITOR_BUTTON_VISIBLE = "#editor_button_visible", + EDITOR_GRID_DIMENSIONS = "#editor_grid_dimensions", + SHOW_EDITOR_CHOOSER = "#show_editor_chooser", + SHOW_WEBVIEW = "#show_webview", + WEBVIEW_UPDATE = "#webview_update", + SHOW_RESET = "#show_reset", + SHOW_RESET_WARNING = "#show_reset_warning", + COINS_WITH_BONUS = "#coins_with_bonus", + FEED_COMMENT_ENABLED = "#feed_comment_enabled", + HUD_TITLE_TEXT_STRING = "#hud_title_text_string", + HUD_SUBTITLE_TEXT_STRING = "#hud_subtitle_text_string", + BUTTONS_PANEL_VISIBLE = "#buttons_panel_visible", + PURCHASE_PANEL_ENABLED = "#purchase_panel_enabled", + SECTION_TITLE_VISIBLE = "#section_title_visible", + ITEM_PAGE_SECTION_CONTENT = "#item_page_section_content", + LIST_HAS_DISPLAY_OBJECTIVE = "#list_has_display_objective", + WORLDNAME = "#worldname", + LIST_SCORES_NOT_EMPTY = "#list_scores_not_empty", + UNSCORED_NOT_EMPTY = "#unscored_not_empty", + PLAYER_LIST_TITLE = "#player_list_title", + PLAYER_RANK = "#player_rank", + PLAYER_ICON = "#player_icon", + PLAYER_ICON_FILESYSTEM = "#player_icon_filesystem", + PLAYER_SCORE = "#player_score", + UNSCORED_LIST_SIZE = "#unscored_list_size", + SCORED_LIST_SIZE = "#scored_list_size", + IS_OFFER_COLLECTION_QUERY = "#is_offer_collection_query", + STORE_HOME_BUTTON_VISIBLE = "#store_home_button_visible", + GAMERTAGPACKS = "#gamertagpacks", + STORE_SECTION_CONTENT = "#store_section_content", + IS_CREATOR_LABEL_VISIBLE = "#is_creator_label_visible", + RATINGS_VISIBLE = "#ratings_visible", + IS_OFFER_COLLECTION_QUERY_AND_NOT_SALE_COLLECTION = "#is_offer_collection_query_and_not_sale_collection", + STORE_ROW_VISIBLE = "#store_row_visible", + STORE_ROW_READY = "#store_row_ready", + ROW_GRID_DIMENSIONS = "#row_grid_dimensions", + NAV_BUTTON_TEXTURE = "#nav_button_texture", + IS_VALID_NAV_BUTTON = "#is_valid_nav_button", + THUMBNAIL_TEXTURE_PATH = "#thumbnail_texture_path", + THUMBNAIL_TEXTURE_FILE_SYSTEM = "#thumbnail_texture_file_system", + MAX_GRID_OFFERS = "#max_grid_offers", + TRENDING_ROWS_VISIBLE = "#trending_rows_visible", + XBOX_ICON_VISIBLE = "#xbox_icon_visible", + CODE_BUILDER = "#code_builder", + CODE_BUILDER_ENABLED = "#code_builder_enabled", + COMMAND_BLOCKS_ENABLED = "#command_blocks_enabled", + COMMAND_BLOCKS_ENABLED_ON = "#command_blocks_enabled_on", + AUTHENTICATION_VISIBLE = "#authentication_visible", + BUY_BUTTON_VISIBLE = "#buy_button_visible", + CONFIRM_BUTTON_VISIBLE = "#confirm_button_visible", + CONFIRM_BUTTON_ENABLED = "#confirm_button_enabled", + EDU_STORE_PURCHASE_BUTTON_TEXT = "#edu_store_purchase_button_text", + TERMS_VISIBLE = "#terms_visible", + EDU_STORE_VISIBLE = "#edu_store_visible", + FONT_COLOR_GRID_DIMENSION = "#font_color_grid_dimension", + CHAT_SETTINGS_FONT_COLOR_SECTION_ENABLED = "#chat_settings_font_color_section_enabled", + FONT_COLORS_TOGGLE_CHECK = "#font_colors_toggle_check", + CHAT_SETTINGS_COLOR_SECTION_ENABLED = "#chat_settings_color_section_enabled", + EDITOR_BUTTON_DEFAULT = "#editor_button_default", + EDITOR_BUTTON_TEXT = "#editor_button_text", + SHOW_WEBVIEW_PROGRESS = "#show_webview_progress", + UNDO_BUTTON_ENABLED = "#undo_button_enabled", + CONFIRM_SKIN_BUTTON_ENABLED = "#confirm_skin_button_enabled", + DELAY_RIGHT_SIDE_BUTTONS_VISIBLE = "#delay_right_side_buttons_visible", + IS_OWNED = "#is_owned", + CREATOR_NAME = "#creator_name", + KEY_ART_TEXTURE = "#key_art_texture", + SKIN_LOCKED = "#skin_locked", + SKIN_DEFAULT_FOCUS = "#skin_default_focus", + GAMEPAD_BUTTON_VISIBLE = "#gamepad_button_visible", + KEYBOARD_KEY_VISIBLE = "#keyboard_key_visible", + TOOLTIP_VISIBLE = "#tooltip_visible", + GAMEPAD_BUTTON_ICON = "#gamepad_button_icon", + KEYBOARD_KEY_TEXT = "#keyboard_key_text", + KEYBOARD_KEY_ALPHA = "#keyboard_key_alpha", + LEFT_HELPER_COUNT = "#left_helper_count", + RIGHT_HELPER_COUNT = "#right_helper_count", + HELPER_DESCRIPTION = "#helper_description", + WORLD_TEXTURE = "#world_texture", + FILE_SYSTEM = "#file_system", + AUTHOR = "#author", + SUBTITLE = "#subtitle", + IMPORTED_TEMPLATE = "#imported_template", + DOWNLOAD_IN_PROGRESS = "#download_in_progress", + SHOW_IN_GAME_PROMPT = "#show_in_game_prompt", + SHOW_FETCH_ERROR = "#show_fetch_error", + WELCOME = "#welcome", + SHOW_WORLDS_POPULATING_PROGRESS = "#show_worlds_populating_progress", + LIBRARY_MAX_GRID_ITEMS = "#library_max_grid_items", + LIBRARY_ITEM_TITLE = "#library_item_title", + CREATOR = "#creator", + GRID_DIMENSIONS = "#grid_dimensions", + KEY_ART_TEXTURE_PATH = "#key_art_texture_path", + KEY_ART_TEXTURE_FILE_SYSTEM = "#key_art_texture_file_system", + OFFER_PROMPT_TEXT_COLOR = "#offer_prompt_text_color", + BUNDLE_THUMBNAIL_GRID_DIMENSIONS = "#bundle_thumbnail_grid_dimensions", + IS_SALE_TIMER_VISIBLE = "#is_sale_timer_visible", + VIDEO_BUTTON_ENABLED = "#video_button_enabled", + SEE_MORE_BUTTON_TEXT = "#see_more_button_text", + REALMS_WORLD_EXPIRY_NOTIFICATION_VISIBLE = "#realms_world_expiry_notification_visible", + REALM_CONSUMABLE_TO_SUBSCRIPTION_VISIBILITY = "#realm_consumable_to_subscription_visibility", + TEACHER_CONTENT_VISIBLE = "#teacher_content_visible", + PACK_ICON_SECTION_CONTENT = "#pack_icon_section_content", + OFFER_PROMPT_TEXT_VISIBILITY = "#offer_prompt_text_visibility", + OFFER_STATUS_PANEL_VISIBLE = "#offer_status_panel_visible", + TOAST_SUBTITLE_VISIBLE = "#toast_subtitle_visible", + INVENTORY_SELECTED_ITEM_CHARGED_ITEM = "#inventory_selected_item_charged_item", + HIDE_KEYBOARD_TOOLTIPS = "#hide_keyboard_tooltips", + HIDE_KEYBOARD_TOOLTIPS_ENABLED = "#hide_keyboard_tooltips_enabled", + IS_WORLD_TEMPLATE_LOCKED = "#is_world_template_locked", + WORLD_TEMPLATE_OPTIONS_LOCK_WARNING_TEXT = "#world_template_options_lock_warning_text", + PLAYER_HAS_WORLD_TEMPLATE_OPTION_UNLOCK_PERMISSIONS = "#player_has_world_template_option_unlock_permissions", + RANDOM_TICK_SPEED = "#random_tick_speed", + RANDOM_TICK_SPEED_ENABLED = "#random_tick_speed_enabled", + DEV_OVERRIDE_TIME_SCALE = "#dev_override_time_scale", + DEV_SHOW_LATENCY_GRAPH = "#dev_show_latency_graph", + DEV_SHOW_LATENCY_GRAPH_ENABLED = "#dev_show_latency_graph_enabled", + DEV_NEWPARTICLESYSTEM = "#dev_newParticleSystem", + DEV_NEWPARTICLESYSTEM_ENABLED = "#dev_newParticleSystem_enabled", + IMAGE_TEXTURE = "#image_texture", + BODY_TEXT = "#body_text", + MUTE_ALL_TEXTURE = "#mute_all_texture", + MUTE_ALL_TEXT = "#mute_all_text", + CHAT_SETTINGS_MUTE_SECTION_ENABLED = "#chat_settings_mute_section_enabled", + CHAT_LINE_SPACING = "#chat_line_spacing", + CHAT_LINE_SPACING_ENABLED = "#chat_line_spacing_enabled", + CHAT_LINE_SPACING_CUSTOM_TEXT = "#chat_line_spacing_custom_text", + CONTENT_LOG_TEXT = "#content_log_text", + SIZE_TEXT = "#size_text", + VERSION_TEXT = "#version_text", + DELETE_REALM_BUTTON_VISIBLE = "#delete_realm_button_visible", + PACK_LOADING_NO_CONNECTION_VISIBLE = "#pack_loading_no_connection_visible", + EDUCATION_TEMPLATE_VISIBLE = "#education_template_visible", + EDUCATION_TEMPLATE_ITEM_GRID_DIMENSION = "#education_template_item_grid_dimension", + IMMEDIATERESPAWN = "#immediaterespawn", + IMMEDIATERESPAWN_ENABLED = "#immediaterespawn_enabled", + UNUSED_TREATMENTS_GRID_DIMENSION = "#unused_treatments_grid_dimension", + MINECRAFTACCOUNT_ID = "#MinecraftAccount_id", + UNUSED_TREATMENT_ID = "#unused_treatment_id", + FEATURE_TOGGLE_ENABLED = "#feature_toggle_enabled", + DEV_SHOW_SERVER_CHUNK_MAP = "#dev_show_server_chunk_map", + DEV_SHOW_SERVER_CHUNK_MAP_ENABLED = "#dev_show_server_chunk_map_enabled", + CONTENT_LOG = "#content_log", + CONTENT_LOG_ENABLED = "#content_log_enabled", + CONTENT_LOG_GUI = "#content_log_gui", + CONTENT_LOG_GUI_ENABLED = "#content_log_gui_enabled", + DEV_GAME_TIP = "#dev_game_tip", + DEV_GAME_TIP_ENABLED = "#dev_game_tip_enabled", + FILE_WATCHER = "#file_watcher", + FILE_WATCHER_ENABLED = "#file_watcher_enabled", + VSYNC_DROPDOWN_TOGGLE_LABEL = "#vsync_dropdown_toggle_label", + VSYNC_DROPDOWN_ENABLED = "#vsync_dropdown_enabled", + VSYNC_OFF = "#vsync_off", + VSYNC_ON = "#vsync_on", + VSYNC_ADAPTIVE = "#vsync_adaptive", + SIGN_IN_BUTTON_VISIBLE = "#sign_in_button_visible", + ASKING_TO_BUY_VISIBLE = "#asking_to_buy_visible", + CONFIRMING_PURCHASE_VISIBLE = "#confirming_purchase_visible", + SIGN_IN_IOS_VISIBLE = "#sign_in_ios_visible", + SHOW_POPUP_DISMISS_BUTTON = "#show_popup_dismiss_button", + FOCUS_OVERRIDE_UP = "#focus_override_up", + FOCUS_OVERRIDE_DOWN = "#focus_override_down", + FOCUS_ID_OVERRIDE = "#focus_id_override", + KEYART_PATH = "#keyart_path", + KEYART_TEXTURE_FILE_SYSTEM = "#keyart_texture_file_system", + OFFER_TITLE = "#offer_title", + BANNER_VISIBLE = "#banner_visible", + CHAT_TYPEFACE_DROPDOWN_ENABLED = "#chat_typeface_dropdown_enabled", + CHAT_TYPEFACE_DROPDOWN_TOGGLE_LABEL = "#chat_typeface_dropdown_toggle_label", + CHAT_FONT_SIZE = "#chat_font_size", + CHAT_FONT_SIZE_ENABLED = "#chat_font_size_enabled", + CHAT_FONT_SIZE_CUSTOM_LABEL = "#chat_font_size_custom_label", + CHAT_TYPEFACE_VISIBLE = "#chat_typeface_visible", + IS_RIGHT_TAB_LOOM = "#is_right_tab_loom", + IS_LEFT_TAB_PATTERNS = "#is_left_tab_patterns", + PATTERN_CELL_BACKGROUND_TEXTURE = "#pattern_cell_background_texture", + CONTAINER_CELL_BACKGROUND_TEXTURE = "#container_cell_background_texture", + EMPTY_IMAGE_VISIBLE = "#empty_image_visible", + PATTERN_SELECTOR_TOTAL_ITEMS = "#pattern_selector_total_items", + RESULT_PATTERNS = "#result_patterns", + RESULT_COLORS = "#result_colors", + CURRENCY_PURCHASE_VISIBLE = "#currency_purchase_visible", + PURCHASE_WITH_CURRENCY_DISCLAIMER = "#purchase_with_currency_disclaimer", + FORCE_PACK_DOWNLOAD_LOCKED_LEVEL = "#force_pack_download_locked_level", + GRID_LIST_VISIBLE = "#grid_list_visible", + SHOW_TIMER = "#show_timer", + HEADER_VISIBLE = "#header_visible", + SHOW_BANNER = "#show_banner", + NAV_SECTION_CONTENT = "#nav_section_content", + DISCLAIMER_TEXT_VISIBLE = "#disclaimer_text_visible", + TOAST_ICON_SECTION_CONTENT = "#toast_icon_section_content", + PACK_TEXTURE = "#pack_texture", + TITLE_NAME = "#title_name", + DESCRIPTION_TEXT = "#description_text", + DEV_DATE_HOUR_OVERRIDE = "#dev_date_hour_override", + DEV_LOAD_OVERRIDE_DATE = "#dev_load_override_date", + DEV_LOAD_OVERRIDE_DATE_ENABLED = "#dev_load_override_date_enabled", + TIMEZONETYPE_DROPDOWN_TOGGLE_LABEL = "#timezonetype_dropdown_toggle_label", + TIMEZONETYPE_DROPDOWN_ENABLED = "#timezonetype_dropdown_enabled", + TIMEZONETYPE_RADIO_LOCAL = "#timezonetype_radio_local", + TIMEZONETYPE_RADIO_UTC = "#timezonetype_radio_utc", + WINDOWS_STORE_DROPDOWN_TOGGLE_LABEL = "#windows_store_dropdown_toggle_label", + ACTIVE_STORES_LABEL = "#active_stores_label", + SELECT_WINDOWS_STORE_VISIBLE = "#select_windows_store_visible", + CONTENT_LOG_FILE = "#content_log_file", + CONTENT_LOG_FILE_ENABLED = "#content_log_file_enabled", + DEV_IDENTITY_ENV_DROPDOWN_TOGGLE_LABEL = "#dev_identity_env_dropdown_toggle_label", + DEV_IDENTITY_ENV_DROPDOWN_DROPDOWN_ENABLED = "#dev_identity_env_dropdown_dropdown_enabled", + IDENTITY_ENVIRONMENT_DEV = "#identity_environment_dev", + IDENTITY_ENVIRONMENT_TEST = "#identity_environment_test", + IDENTITY_ENVIRONMENT_PROD = "#identity_environment_prod", + DEV_DATE_MINUTE_OVERRIDE = "#dev_date_minute_override", + IS_RIGHT_TAB_CARTOGRAPHY = "#is_right_tab_cartography", + OUTPUT_DESCRIPTION = "#output_description", + TTS_DIALOG_BODY = "#tts_dialog_body", + TTS_DIALOG_TITLE = "#tts_dialog_title", + TTS_OFFER_NAME = "#tts_offer_name", + TURTLE_VISIBLE = "#turtle_visible", + TURTLE_TEXT = "#turtle_text", + LIMITED_STATUS_VISIBLE = "#limited_status_visible", + APPEARANCE_STATUS_BRIEF_LABEL = "#appearance_status_brief_label", + IS_RECENT_GRID_READY = "#is_recent_grid_ready", + IS_APPEARANCE_VISIBLE = "#is_appearance_visible", + IS_RIGHT_TAB_STONECUTTER = "#is_right_tab_stonecutter", + IS_LEFT_TAB_STONES = "#is_left_tab_stones", + STONE_CELL_BACKGROUND_TEXTURE = "#stone_cell_background_texture", + STONE_SELECTOR_TOTAL_ITEMS = "#stone_selector_total_items", + HAS_INPUT_ITEM = "#has_input_item", + IS_LEFT_TAB_TRADE = "#is_left_tab_trade", + TRADE_TOGGLE_ENABLED = "#trade_toggle_enabled", + TRADE_CROSS_OUT_VISIBLE = "#trade_cross_out_visible", + HAS_SECOND_BUY_ITEM = "#has_second_buy_item", + TRADE_CELL_BACKGROUND_TEXTURE = "#trade_cell_background_texture", + TRADE_ITEM_COUNT = "#trade_item_count", + SINGLE_SLASH_VISIBLE = "#single_slash_visible", + DOUBLE_SLASH_VISIBLE = "#double_slash_visible", + SECOND_TRADE_ITEM_COUNT = "#second_trade_item_count", + TRADE_PRICE_DIFFERENT = "#trade_price_different", + PADDING_AROUND_SELL_ITEM = "#padding_around_sell_item", + HOVER_TEXT = "#hover_text", + TRADE_POSSIBLE = "#trade_possible", + TRADE_TIER_TOTAL = "#trade_tier_total", + IS_TIER_UNLOCKED = "#is_tier_unlocked", + TIER_NAME = "#tier_name", + SHOW_LEVEL = "#show_level", + TIER_VISIBLE = "#tier_visible", + TRADE_SELECTOR_TOTAL = "#trade_selector_total", + EXP_BAR_VISIBLE = "#exp_bar_visible", + EXP_POSSIBLE_PROGRESS = "#exp_possible_progress", + TRADE_DETAILS_BUTTON_1_VISIBLE = "#trade_details_button_1_visible", + TRADE_DETAILS_BUTTON_2_VISIBLE = "#trade_details_button_2_visible", + ENCHANTMENT_DETAILS_BUTTON_VISIBLE = "#enchantment_details_button_visible", + ITEM_VALID = "#item_valid", + TRADE_BUTTON_ENABLED = "#trade_button_enabled", + NAME_LABEL = "#name_label", + TRADE_TOGGLE_STATE = "#trade_toggle_state", + TTS_ENABLED = "#tts_enabled", + SHIELD_IS_ACTIVE = "#shield_is_active", + INVENTORY_SELECTED_BANNER_TYPE = "#inventory_selected_banner_type", + UPDATE_SCREEN_PATCH_NOTES = "#update_screen_patch_notes", + UPDATE_SCREEN_DESCRIPTION = "#update_screen_description", + AUDIBLE_KEYMAPPING_NAME = "#audible_keymapping_name", + ENABLE_UI_TEXT_TO_SPEECH = "#enable_ui_text_to_speech", + ENABLE_UI_TEXT_TO_SPEECH_ENABLED = "#enable_ui_text_to_speech_enabled", + UPDATE_OVERRIDE_VERSION_BUTTON_VISIBLE = "#update_override_version_button_visible", + OVERRIDE_VERSION_OPTIONS_VISIBLE = "#override_version_options_visible", + DEV_VERSION_MAJOR_OVERRIDE = "#dev_version_major_override", + DEV_VERSION_MINOR_OVERRIDE = "#dev_version_minor_override", + DEV_VERSION_PATCH_OVERRIDE = "#dev_version_patch_override", + PERF_TURTLE = "#perf_turtle", + PERF_TURTLE_ENABLED = "#perf_turtle_enabled", + DEV_USE_VERSION_OVERRIDE = "#dev_use_version_override", + DEV_USE_VERSION_OVERRIDE_ENABLED = "#dev_use_version_override_enabled", + REALMS_GRID_DIMENSION = "#realms_grid_dimension", + BONUS_COINS_VISIBLE = "#bonus_coins_visible", + BONUS_COINS = "#bonus_coins", + EXECUTE_ON_FIRST_TICK = "#execute_on_first_tick", + EXECUTE_ON_FIRST_TICK_ENABLED = "#execute_on_first_tick_enabled", + MESSAGES_SIZE = "#messages_size", + ESTIMATED_TIME = "#estimated_time", + LESSON_COUNT = "#lesson_count", + LESSON_IS_ACTIVE_ITEM = "#lesson_is_active_item", + LESSON_SHOULD_ADD_SPACING_PANEL = "#lesson_should_add_spacing_panel", + LESSON_TITLE = "#lesson_title", + ITEM_TITLE = "#item_title", + ACTIVE_LESSON_CONTENT_TITLE = "#active_lesson_content_title", + CONTENT_TITLE = "#content_title", + ACTIVE_LESSON_TITLE = "#active_lesson_title", + ACTIVE_TITLE = "#active_title", + ACTIVE_LESSON_CREATOR = "#active_lesson_creator", + ACTIVE_CREATOR = "#active_creator", + ACTIVE_LESSON_GOALS = "#active_lesson_goals", + ACTIVE_GOALS = "#active_goals", + IS_ACTIVE_LESSON_MULTIPLAYER = "#is_active_lesson_multiplayer", + ACTIVE_TASKS_COUNT = "#active_tasks_count", + ACTIVE_TASK_LABEL = "#active_task_label", + TASK_TEXT = "#task_text", + SHOW_COURSE_CONTENT = "#show_course_content", + SHOW_COURSE_POPULATING_PROGRESS = "#show_course_populating_progress", + RECIPE_SEARCH_TIP_CHEVRON_VISIBLE = "#recipe_search_tip_chevron_visible", + RECIPE_SEARCH_TIP_BOX_VISIBLE = "#recipe_search_tip_box_visible", + SHOULD_DISPLAY_NEW_ICON = "#should_display_new_icon", + APPLY_TO_REALM_BUTTON_VISIBLE = "#apply_to_realm_button_visible", + BUNDLE_OFFER_PROMPT_TEXT_COLOR = "#bundle_offer_prompt_text_color", + BUNDLE_UPSELL_OFFER_ALPHA = "#bundle_upsell_offer_alpha", + IS_VALID_BUNDLE_UPSELL = "#is_valid_bundle_upsell", + IS_BUNDLE_UPSELL_LOADING = "#is_bundle_upsell_loading", + SINGE_BUNDLE_UPSELL_VISIBLE = "#singe_bundle_upsell_visible", + BUNDLE_UPSELL_OFFER_COUNT = "#bundle_upsell_offer_count", + BUNDLE_UPSELL_GRID_VISIBLE = "#bundle_upsell_grid_visible", + BUNDLE_UPSELL_CONTENT_VISIBLE = "#bundle_upsell_content_visible", + BUNDLE_UPSELL_PROGRESS_VISIBLE = "#bundle_upsell_progress_visible", + BUNDLE_UPSELL_ROW_VISIBLE = "#bundle_upsell_row_visible", + INTEGRITY_FIELD = "#integrity_field", + INTEGRITY_CONTENT_EDIT_BOX = "#integrity_content_edit_box", + SEED_CONTENT_EDIT_BOX = "#seed_content_edit_box", + ROTATION_ENABLED = "#rotation_enabled", + ROTATION_STEPS = "#rotation_steps", + ROTATION_TEXT_VALUE = "#rotation_text_value", + ROTATION_SLIDER_LABEL = "#rotation_slider_label", + MIRROR = "#mirror", + MIRROR_ENABLED = "#mirror_enabled", + MIRROR_STEPS = "#mirror_steps", + MIRROR_TEXT_VALUE = "#mirror_text_value", + MIRROR_SLIDER_LABEL = "#mirror_slider_label", + DATA_MODE_PANEL_VISIBLE = "#data_mode_panel_visible", + MINIMUM_TEMPLATE_VERSION = "#minimum_template_version", + MINIMUM_TEMPLATE_ENABLED = "#minimum_template_enabled", + CONTENT_LOG_GUI_OPTION_ENABLED = "#content_log_gui_option_enabled", + CONTENT_LOG_LOCATION_TEXT = "#content_log_location_text", + AD_ACCOUNT_NAME = "#ad_account_name", + LEAK_MEMORY_VALUE = "#leak_memory_value", + LEAK_MEMORY_ENABLED = "#leak_memory_enabled", + SHOW_AD_DEBUG_PANEL_BUTTON = "#show_ad_debug_panel_button", + SHOW_AD_DEBUG_PANEL_BUTTON_ENABLED = "#show_ad_debug_panel_button_enabled", + DEV_DISABLE_CLIENT_BLOB_CACHE = "#dev_disable_client_blob_cache", + DEV_DISABLE_CLIENT_BLOB_CACHE_ENABLED = "#dev_disable_client_blob_cache_enabled", + DEV_FORCE_CLIENT_BLOB_CACHE = "#dev_force_client_blob_cache", + DEV_FORCE_CLIENT_BLOB_CACHE_ENABLED = "#dev_force_client_blob_cache_enabled", + DEV_SHOW_DOC_ID = "#dev_show_doc_id", + DEV_SHOW_DOC_ID_ENABLED = "#dev_show_doc_id_enabled", + ERROR_TITLE_TEXT = "#error_title_text", + ERROR_NUMBER_LABEL = "#error_number_label", + ERROR_NUMBER = "#error_number", + CORRELATION_ID_LABEL = "#correlation_id_label", + CORRELATION_ID = "#correlation_id", + TOGGLE_TTS = "#toggle_tts", + TYPEFACE_RADIO_MOJANGLES = "#typeface_radio_mojangles", + TYPEFACE_RADIO_NOTOSANS = "#typeface_radio_notoSans", + TEN_PLAYER_BUTTON_VISIBLE = "#ten_player_button_visible", + TWO_PLAYER_BUTTON_VISIBLE = "#two_player_button_visible", + IS_ACTIVE_LESSON_ENABLED = "#is_active_lesson_enabled", + SHOW_EDU_ICON = "#show_edu_icon", + SHOW_END_POEM = "#show_end_poem", + SCROLL_FASTER = "#scroll_faster", + TEMPLATES_GRID_DIMENSION = "#templates_grid_dimension", + TEMPLATE_VERSION = "#template_version", + IS_SKIN_RETRIEVAL_FINISHED = "#is_skin_retrieval_finished", + LEGACY_SKIN = "#legacy_skin", + NO_NETWORK_MESSAGE_VISIBLE = "#no_network_message_visible", + NEXT_BUTTON_TEXT = "#next_button_text", + NEXT_BUTTON_ENABLED = "#next_button_enabled", + RESPAWN_ENABLED = "#respawn_enabled", + QUIT_ENABLED = "#quit_enabled", + BUTTONS_AND_DEATHMESSAGE_VISIBLE = "#buttons_and_deathmessage_visible", + LOADING_MESSAGE_VISIBLE = "#loading_message_visible", + JOINCODE_IS_FETCHING = "#joincode_is_fetching", + JOINCODE_FETCHING_ANIM_TEXTURE = "#joincode_fetching_anim_texture", + JOINCODE_ICON = "#joincode_icon", + JOINCODE_ICON_NAME = "#joincode_icon_name", + JOINCODE_ICON_SLOT_NAME = "#joincode_icon_slot_name", + JOINCODE_ICON_LEFT_FOCUS_OVERRIDE = "#joincode_icon_left_focus_override", + JOINCODE_ICON_FOCUS_ID = "#joincode_icon_focus_id", + JOINCODE_ICON_COUNT = "#joincode_icon_count", + SHOW_IP_ADDRESS = "#show_ip_address", + HAS_QUIZ = "#has_quiz", + START_HOSTING_BUTTON_VISIBLE = "#start_hosting_button_visible", + EDU_INFO_PANEL_VISIBLE = "#edu_info_panel_visible", + PERMISSIONS_DROPDOWN_LABEL = "#permissions_dropdown_label", + PERMISSIONS_DROPDOWN_ENABLED = "#permissions_dropdown_enabled", + PERMISSIONS_DROPDOWN_BUTTON_LABEL = "#permissions_dropdown_button_label", + PERMISSION_LEVEL_RADIO_VISITOR = "#permission_level_radio_visitor", + PERMISSION_LEVEL_RADIO_MEMBER = "#permission_level_radio_member", + PERMISSION_LEVEL_RADIO_OPERATOR = "#permission_level_radio_operator", + PLAYER_PERMISSIONS_DROPDOWN_TOGGLE_BUTTON_ICON_TEXTURE = "#player_permissions_dropdown_toggle_button_icon_texture", + REMOVE_PLAYER_BUTTON_VISIBLE = "#remove_player_button_visible", + TEMPLATE_COLUMN_COUNT = "#template_column_count", + DIVIDER_VISIBLE = "#divider_visible", + TEMPLATE_ROW_COUNT = "#template_row_count", + LOCAL_TEMPLATES_HEADER = "#local_templates_header", + LOCAL_VISIBLE = "#local_visible", + IN_BOUNDS = "#in_bounds", + IS_VIEW_MORE = "#is_view_more", + TEMPLATE_TEXTURE = "#template_texture", + TEMPLATE_TEXTURE_SOURCE = "#template_texture_source", + TEMPLATE_TEXTURE_ZIP = "#template_texture_zip", + WORLD_TEXTURE_SOURCE = "#world_texture_source", + IS_FIRST = "#is_first", + WORLD_COLUMN_COUNT = "#world_column_count", + WORLD_ROW_COUNT = "#world_row_count", + MESSAGE_TEXT_VISIBLE = "#message_text_visible", + MESSAGE_TEXT = "#message_text", + GAME_TIP_VISIBLE = "#game_tip_visible", + IMMERSIVE_READER_RUNNING = "#immersive_reader_running", + CAN_RETRY = "#can_retry", + ERROR_TEXT = "#error_text", + IMMERSIVE_READER_ERROR = "#immersive_reader_error", + IMMERSIVE_READER_LOADING = "#immersive_reader_loading", + ONLINE_XBOX_LIVE_FRIEND_GRID_DIMENSION = "#online_xbox_live_friend_grid_dimension", + OFFLINE_XBOX_LIVE_FRIEND_GRID_DIMENSION = "#offline_xbox_live_friend_grid_dimension", + ONLINE_PLATFORM_FRIEND_GRID_DIMENSION = "#online_platform_friend_grid_dimension", + OFFLINE_PLATFORM_FRIEND_GRID_DIMENSION = "#offline_platform_friend_grid_dimension", + ONLINE_PLATFORM_FRIENDS_VISIBLE = "#online_platform_friends_visible", + ONLINE_XBOX_LIVE_FRIENDS_VISIBLE = "#online_xbox_live_friends_visible", + OFFLINE_PLATFORM_FRIENDS_VISIBLE = "#offline_platform_friends_visible", + NO_PLATFORM_FRIENDS_VISIBLE = "#no_platform_friends_visible", + OFFLINE_XBOX_LIVE_FRIENDS_VISIBLE = "#offline_xbox_live_friends_visible", + NO_XBOX_LIVE_FRIENDS_VISIBLE = "#no_xbox_live_friends_visible", + CROSS_PLATFORM_ENABLED = "#cross_platform_enabled", + HEADER_TEXT = "#header_text", + ICON = "#icon", + BORDER_VISIBLE = "#border_visible", + CAN_CLEAR = "#can_clear", + CAN_CONFIRM = "#can_confirm", + FOUND_WORLD_NAME = "#found_world_name", + FOUND_HOST_NAME = "#found_host_name", + ERROR_MESSAGE = "#error_message", + SHOW_DEBUG = "#show_debug", + IS_IP_FALLBACK = "#is_ip_fallback", + QUIZ_URL_OBTAINED = "#quiz_url_obtained", + QUIZ_POPUP_TEXT = "#quiz_popup_text", + QUIZ_QUERY_IN_PROGRESS = "#quiz_query_in_progress", + IS_IMAGE_GRAYED_OUT = "#is_image_grayed_out", + IS_COMPLETE = "#is_complete", + ERROR_TYPE_LABEL = "#error_type_label", + HAS_ERRORS_OR_WARNINGS = "#has_errors_or_warnings", + ERROR_GRID_DIMENSIONS = "#error_grid_dimensions", + IP_TEXT_BOX = "#ip_text_box", + IP_TEXT_BOX_CONTENT = "#ip_text_box_content", + PORT_TEXT_BOX = "#port_text_box", + PORT_TEXT_BOX_CONTENT = "#port_text_box_content", + IS_IP_TOOLTIP_HOVER_PANEL_VISIBLE = "#is_ip_tooltip_hover_panel_visible", + IP_TOOLTIP_HOVER_LABEL = "#ip_tooltip_hover_label", + IS_PORT_TOOLTIP_HOVER_PANEL_VISIBLE = "#is_port_tooltip_hover_panel_visible", + PORT_TOOLTIP_HOVER_LABEL = "#port_tooltip_hover_label", + HAS_WORLDS = "#has_worlds", + LAN_NETWORK_WORLD_ITEM_GRID_DIMENSION = "#lan_network_world_item_grid_dimension", + IM_READER_BUTTON_VISIBLE = "#im_reader_button_visible", + PERSONA_ENABLED = "#persona_enabled", + DISCONNECTED_FROM_THIRD_PARTY_LABEL_VISIBLE = "#disconnected_from_third_party_label_visible", + PERMISSIONS_BUTTON_VISIBLE = "#permissions_button_visible", + PERMISSIONS_BUTTON_ENABLED = "#permissions_button_enabled", + IS_PLATFORM_ICON_VISIBLE = "#is_platform_icon_visible", + CONTENT_RATING_REVERSE = "#content_rating_reverse", + CONTENT_RATING = "#content_rating", + STAR_EMPTY = "#star_empty", + STAR_FULL = "#star_full", + RATINGS_STAR_DIMENSIONS = "#ratings_star_dimensions", + REALMS_EXPIRATION_LABEL = "#realms_expiration_label", + REALM_EXPIRATION_BANNER_VISIBLE = "#realm_expiration_banner_visible", + IN_REALMS_PLUS_BUTTON_VISIBLE = "#in_realms_plus_button_visible", + UPDATE_INFO_VISIBLE = "#update_info_visible", + UPDATE_CHECK_VISIBLE = "#update_check_visible", + LAST_UPDATE_TEXT = "#last_update_text", + IS_READ_MORE = "#is_read_more", + IS_READ_LESS = "#is_read_less", + IS_SPECAIL_OFFER_BANNER_VISIBLE = "#is_specail_offer_banner_visible", + SHOW_COLOR_PICKER = "#show_color_picker", + COLOR_SINGLE_PAGE_SIZE = "#color_single_page_size", + RIGHT_PANEL_TITLE_RARITY = "#right_panel_title_rarity", + SKIN_PACK_RIGHT_PANEL_USAGE_IS_LIMITED = "#skin_pack_right_panel_usage_is_limited", + SKIN_PACK_RIGHT_PANEL_USAGE_TEXT = "#skin_pack_right_panel_usage_text", + PURCHASE_WITH_CURRENCY_DISCLAIMER_VISIBLE = "#purchase_with_currency_disclaimer_visible", + IS_FEATURED_CLASSIC_SKIN_LOADING = "#is_featured_classic_skin_loading", + IS_FEATURED_PACK_VISIBLE = "#is_featured_pack_visible", + IS_CYCLE_CLASSIC_SKIN_FEATURED_SECTION_READY = "#is_cycle_classic_skin_featured_section_ready", + RIGHT_PANEL_DESCRIPTION = "#right_panel_description", + IS_RIGHT_PANEL_CLASSIC_CUSTOM_VISIBLE = "#is_right_panel_classic_custom_visible", + RIGHT_PANEL_TITLE = "#right_panel_title", + IS_RIGHT_PANEL_CLASSIC_SKIN_PACK_VISIBLE = "#is_right_panel_classic_skin_pack_visible", + SKIN_PACK_AUTHOR = "#skin_pack_author", + SKIN_COLOR_OPTION_ON = "#skin_color_option_on", + IS_OFFER_ON_SALE = "#is_offer_on_sale", + IS_LIMITED_TIME_OFFER = "#is_limited_time_offer", + IS_OFFER_PURCHASABLE_AND_NOT_FREE = "#is_offer_purchasable_and_not_free", + IS_OFFER_NEW = "#is_offer_new", + IS_OFFER_LOCKED = "#is_offer_locked", + CURRENT_PANEL_COLOR = "#current_panel_color", + IN_USE_TEXTURE = "#in_use_texture", + IN_USE_TEXTURE_FILE_SYSTEM = "#in_use_texture_file_system", + LEFT_COLOR_CYCLE_ENABLED = "#left_color_cycle_enabled", + OTHER_CHANNELS = "#other_channels", + COLOR_PICKER_TITLE = "#color_picker_title", + RIGHT_COLOR_CYCLE_ENABLED = "#right_color_cycle_enabled", + IS_SKIN_INDEX_VISIBLE = "#is_skin_index_visible", + IS_SKIN_SELECTED = "#is_skin_selected", + IS_SKIN_EQUIPPED = "#is_skin_equipped", + CLASSIC_SKIN_INDEX = "#classic_skin_index", + HAS_CAPES = "#has_capes", + DRESSING_ROOM_TABS_VISIBLE = "#dressing_room_tabs_visible", + RARITY_BAR_TEXTURE = "#rarity_bar_texture", + RARITY_BAR_VISIBLE = "#rarity_bar_visible", + RARITY_COLOR = "#rarity_color", + IS_PIECE_EQUIPPED = "#is_piece_equipped", + IS_PIECE_SELECTED = "#is_piece_selected", + IS_PIECE_BEING_PREVIEWED = "#is_piece_being_previewed", + HAS_DEFAULTS = "#has_defaults", + SIZING_OPTIONS_ON = "#sizing_options_on", + LIMB_TITLE = "#limb_title", + LEFT_LIMB_ENABLED = "#left_limb_enabled", + IS_LEG_OR_ARMS = "#is_leg_or_arms", + IS_NONE_OPTION_VISIBLE = "#is_none_option_visible", + IS_NONE_OPTION_ENABLED = "#is_none_option_enabled", + IS_FEATURED_CYCLE_BUTTON_ENABLED = "#is_featured_cycle_button_enabled", + IS_CYCLE_FEATURED_SECTION_READY = "#is_cycle_featured_section_ready", + IS_SUBCATEGORY_FEATURED_SECTION_VISIBLE = "#is_subcategory_featured_section_visible", + BODY_CATEGORY_SELECTED = "#body_category_selected", + STYLE_CATEGORY_SELECTED = "#style_category_selected", + PACK_ADDITIONAL_SKIN_COUNT_TEXT = "#pack_additional_skin_count_text", + IS_CLASSIC_SKIN_PACK_LOADING = "#is_classic_skin_pack_loading", + IS_SKIN_PACK_MULTIPLAYER_RESTRICTED = "#is_skin_pack_multiplayer_restricted", + IS_DEFAULT_SKINS_VISIBLE = "#is_default_skins_visible", + IS_OWNED_PACK_SECTION_VISIBLE = "#is_owned_pack_section_visible", + IS_PURCHASABLE_PACK_SECTION_VISIBLE = "#is_purchasable_pack_section_visible", + IS_SKIN_PACK_SCREEN_SEARCH_LOADING = "#is_skin_pack_screen_search_loading", + IS_SKIN_PACK_SECTION_VISIBLE = "#is_skin_pack_section_visible", + IS_PACK_CATEGORY_SECTION_VISIBLE = "#is_pack_category_section_visible", + CAPE_COUNT = "#cape_count", + IS_CAPE_SELECTION_VISIBLE = "#is_cape_selection_visible", + IS_CAPE_SECTION_VISIBLE = "#is_cape_section_visible", + IS_PIECE_SECTION_VISIBLE = "#is_piece_section_visible", + PREVIEW_APPEARANCE_ON = "#preview_appearance_on", + IS_CLASSIC_SKIN_CURRENT_OFFER_LOADING = "#is_classic_skin_current_offer_loading", + IS_CATEGORY_SECTION_VISIBLE = "#is_category_section_visible", + IS_CUSTOM_SKIN_POPUP_VISIBLE = "#is_custom_skin_popup_visible", + IS_SKIN_PICKER_SECTION_VISIBLE = "#is_skin_picker_section_visible", + NETWORK_WORLD_BUTTON_ENABLED = "#network_world_button_enabled", + IS_NETWORK_AVAILABLE_AND_PING_LOADING = "#is_network_available_and_ping_loading", + WORLDS_DISKSPACE = "#worlds_diskspace", + LOCAL_WORLDS_STORAGE_SIZE = "#local_worlds_storage_size", + LEGACY_WORLDS_STORAGE_SIZE = "#legacy_worlds_storage_size", + LEGACY_WORLDS_AUTO_SYNC_FAILED_VISIBLE = "#legacy_worlds_auto_sync_failed_visible", + IS_NETWORK_AVAILABLE_AND_MULTIPLAYER_VISIBLE = "#is_network_available_and_multiplayer_visible", + REALMSPLUS_EXPIRED_VISIBLE = "#realmsplus_expired_visible", + PLATFORM_PICTURE_PATH = "#platform_picture_path", + PLATFORM_NAME = "#platform_name", + PLATFORM_INFO_VISIBLE = "#platform_info_visible", + XBL_INFO_VISIBLE = "#xbl_info_visible", + MANAGE_OPTIONS_VISIBLE = "#manage_options_visible", + IS_PRESET_ADD_VISIBLE = "#is_preset_add_visible", + IS_RETRY_VISIBLE = "#is_retry_visible", + IS_PRESET_LOADING_VISIBLE = "#is_preset_loading_visible", + CENTER_PRESET_SIZE = "#center_preset_size", + ENABLE_EDIT_APPEARANCE = "#enable_edit_appearance", + LEFT_PANEL_TITLE = "#left_panel_title", + REALMS_SUBSCRIPTION_LOADING_FAILED_MESSAGE_VISIBLE = "#realms_subscription_loading_failed_message_visible", + BUY_VISIBLE = "#buy_visible", + AVAILABLE_GRID_VISIBLE = "#available_grid_visible", + REALMS_VISIBLE = "#realms_visible", + REALMS_GRID_VISIBLE = "#realms_grid_visible", + SELECTED_GRID_VISIBLE = "#selected_grid_visible", + ANY_EXCEPTIONS = "#any_exceptions", + NUM_ERRORS = "#num_errors", + NUM_WARNINGS = "#num_warnings", + HAS_WARNINGS = "#has_warnings", + ANY_ERRORS = "#any_errors", + ANY_WARNINGS = "#any_warnings", + PERMISSION_ICON = "#permission_icon", + CAN_CLICK_PLAYER_BUTTON = "#can_click_player_button", + PLATFORM_SIGNIN_TEXT = "#platform_signin_text", + PLAY_BUTTON_RIGHT_FOCUS = "#play_button_right_focus", + HAS_MARKETPLACE_ERRORS = "#has_marketplace_errors", + EDITIONS_VISIBLE = "#editions_visible", + REALMS_CHEVRON_VISIBILITY = "#realms_chevron_visibility", + INVENTORY_PAGE_LOADING_VISIBLE = "#inventory_page_loading_visible", + RATING_VISIBLE = "#rating_visible", + _3D_EXPORT_ENABLED = "#3d_export_enabled", + SHOW_BOUNDING_BOX_BINDING_NAME = "#show_bounding_box_binding_name", + SHOW_BOUNDING_BOX_ENABLED = "#show_bounding_box_enabled", + SHOW_BOUNDING_BOX_TOGGLE_OFF = "#show_bounding_box_toggle_off", + SHOW_BOUNDING_BOX_TOGGLE_ON = "#show_bounding_box_toggle_on", + MIRROR_X = "#mirror_x", + MIRROR_Z = "#mirror_z", + _3D_EXPORT_VISIBLE = "#3d_export_visible", + EXPORT_DISABLED_VISIBLE = "#export_disabled_visible", + HAS_FOCUS = "#has_focus", + BLOCK_POSITION = "#block_position", + _3D_EXPORT_MODE_PANEL_VISIBLE = "#3d_export_mode_panel_visible", + IS_DOWNLOAD_IN_PROGRESS = "#is_download_in_progress", + IS_LOADING_IN_PROGRESS = "#is_loading_in_progress", + CONVERTED_WORLD_PREVIEW_NAME = "#converted_world_preview_name", + CONVERTED_WORLD_PREVIEW_DATE_VISIBLE = "#converted_world_preview_date_visible", + CONVERTED_WORLD_PREVIEW_DATE = "#converted_world_preview_date", + CONVERTED_WORLD_PREVIEW_GAME_MODE = "#converted_world_preview_game_mode", + CONVERTED_WORLD_PREVIEW_FILE_SIZE = "#converted_world_preview_file_size", + CONVERTED_WORLD_PREVIEW_IMAGE = "#converted_world_preview_image", + CONVERTED_WORLD_PREVIEW_TEXTURE_SOURCE = "#converted_world_preview_texture_source", + REALMS_PLUS_TEMPLATE_ITEM_GRID_DIMENSION = "#realms_plus_template_item_grid_dimension", + REALMS_PLUS_LIST_VISIBLE = "#realms_plus_list_visible", + CUSTOM_TEMPLATE_LIST_VISIBLE = "#custom_template_list_visible", + CUSTOM_WORLD_TEMPLATE_ITEM_GRID_DIMENSION = "#custom_world_template_item_grid_dimension", + SHOULD_DISPLAY_NO_INTERNET_WARNING = "#should_display_no_internet_warning", + RESPAWN_RADIUS = "#respawn_radius", + RESPAWN_RADIUS_ENABLED = "#respawn_radius_enabled", + BASE_GAME_VERSION_DEBUG_TEXT = "#base_game_version_debug_text", + CAN_BE_PLATFORM_NETWORK_ENABLED = "#can_be_platform_network_enabled", + CAN_BE_SERVER_ENABLED = "#can_be_server_enabled", + CREATE_ON_REALM_VISIBLE = "#create_on_realm_visible", + STORE_MISMATCH_VISIBLE = "#store_mismatch_visible", + REALMS_SUBSCRIPTIONS_LOADING_FAILED_VISIBLE = "#realms_subscriptions_loading_failed_visible", + REALMS_SUBSCRIPTIONS_LOADING_VISIBLE = "#realms_subscriptions_loading_visible", + NO_ACTIVE_SUBSCRIPTIONS_VISIBLE = "#no_active_subscriptions_visible", + REALMS_PLUS_SUBSCRIPTIONS_DIMENSIONS = "#realms_plus_subscriptions_dimensions", + CAN_BUY_MORE_SUBSCRIPTIONS = "#can_buy_more_subscriptions", + ADDITIONAL_REALMS_SUBSCRIPTIONS_DIMENSIONS = "#additional_realms_subscriptions_dimensions", + ENABLE_AUTO_TEXT_TO_SPEECH = "#enable_auto_text_to_speech", + ENABLE_AUTO_TEXT_TO_SPEECH_ENABLED = "#enable_auto_text_to_speech_enabled", + ENABLE_OPEN_CHAT_MESSAGE = "#enable_open_chat_message", + ENABLE_OPEN_CHAT_MESSAGE_ENABLED = "#enable_open_chat_message_enabled", + AUTOMATION_REPEAT_FAILURES_ONLY = "#automation_repeat_failures_only", + DEV_TOGGLE_DEFAULT_FONT_OVERRIDES = "#dev_toggle_default_font_overrides", + DEV_TOGGLE_DEFAULT_FONT_OVERRIDES_VISIBLE = "#dev_toggle_default_font_overrides_visible", + DEV_DISABLE_RENDER_TERRAIN = "#dev_disable_render_terrain", + DEV_DISABLE_RENDER_TERRAIN_ENABLED = "#dev_disable_render_terrain_enabled", + DEV_DISABLE_RENDER_ENTITIES = "#dev_disable_render_entities", + DEV_DISABLE_RENDER_ENTITIES_ENABLED = "#dev_disable_render_entities_enabled", + DEV_DISABLE_RENDER_BLOCKENTITIES = "#dev_disable_render_blockentities", + DEV_DISABLE_RENDER_BLOCKENTITIES_ENABLED = "#dev_disable_render_blockentities_enabled", + DEV_DISABLE_RENDER_PARTICLES = "#dev_disable_render_particles", + DEV_DISABLE_RENDER_PARTICLES_ENABLED = "#dev_disable_render_particles_enabled", + DEV_DISABLE_RENDER_SKY = "#dev_disable_render_sky", + DEV_DISABLE_RENDER_SKY_ENABLED = "#dev_disable_render_sky_enabled", + DEV_DISABLE_RENDER_WEATHER = "#dev_disable_render_weather", + DEV_DISABLE_RENDER_WEATHER_ENABLED = "#dev_disable_render_weather_enabled", + DEV_DISABLE_RENDER_HUD = "#dev_disable_render_hud", + DEV_DISABLE_RENDER_HUD_ENABLED = "#dev_disable_render_hud_enabled", + DEV_DISABLE_RENDER_ITEM_IN_HAND = "#dev_disable_render_item_in_hand", + DEV_DISABLE_RENDER_ITEM_IN_HAND_ENABLED = "#dev_disable_render_item_in_hand_enabled", + AD_TOKEN_REFRESH_THRESHOLD = "#ad_token_refresh_threshold", + AD_TOKEN_REFRESH_THRESHOLD_TEXT_VALUE = "#ad_token_refresh_threshold_text_value", + AD_TOKEN_REFRESH_THRESHOLD_ENABLED = "#ad_token_refresh_threshold_enabled", + AD_TOKEN_REFRESH_THRESHOLD_STEPS = "#ad_token_refresh_threshold_steps", + ASYNC_TEXTURE_LOADS = "#async_texture_loads", + ASYNC_TEXTURE_LOADS_ENABLED = "#async_texture_loads_enabled", + SHOW_ASYNC_TEXTURE_LOADS = "#show_async_texture_loads", + ASYNC_MISSING_TEXTURE = "#async_missing_texture", + ASYNC_MISSING_TEXTURE_ENABLED = "#async_missing_texture_enabled", + SHOW_ASYNC_MISSING_TEXTURE = "#show_async_missing_texture", + SHOW_CORE_UI_SHORTCUTS = "#show_core_ui_shortcuts", + ALLOW_CONTENT_LOG_WRITE_TO_DISK = "#allow_content_log_write_to_disk", + HAS_ACCOUNT_ERROR = "#has_account_error", + AD_USE_SINGLE_SIGN_ON = "#ad_use_single_sign_on", + ACCOUNT_TRANSFER_STATUS = "#account_transfer_status", + REALMS_SUBSCRIPTION_TEXT = "#realms_subscription_text", + FAQ_PRICE_TEXT = "#faq_price_text", + CONTENT_TAB_SECTIONS = "#content_tab_sections", + PACKS_LABEL = "#packs_label", + CONTENT_SECTION_TEXT = "#content_section_text", + PLATFORM_TERM_CONTROLS = "#platform_term_controls", + PLATFORM_TERMS_TEXT = "#platform_terms_text", + TRIAL_DESCIPTION_TEXT = "#trial_desciption_text", + BUY_NOW_BANNER_TEXT = "#buy_now_banner_text", + REALMS_NAME_BOX = "#realms_name_box", + HAS_CHECKED_TOS = "#has_checked_tos", + BUY_NOW_BUTTON_TEXT = "#buy_now_button_text", + FEED_COMMENT_PAGE_COLLECTION_LENGTH = "#feed_comment_page_collection_length", + IS_AUTHOR_LINKED_ACCOUNT = "#is_author_linked_account", + COMMENT_PLATFORM_TAG = "#comment_platform_tag", + AUTHOR_PLATFORM_TAG = "#author_platform_tag", + UNLINK_WARNING_TEXT = "#unlink_warning_text", + UNLINK_CONSEQUENCES_ACKNOWLEDGED = "#unlink_consequences_acknowledged", + CONFIRM_0 = "#confirm_0", + CONFIRM_0_ENABLED = "#confirm_0_enabled", + CONFIRM_1 = "#confirm_1", + CONFIRM_1_ENABLED = "#confirm_1_enabled", + CONFIRM_2 = "#confirm_2", + CONFIRM_2_ENABLED = "#confirm_2_enabled", + CONFIRM_3 = "#confirm_3", + CONFIRM_3_ENABLED = "#confirm_3_enabled", + FEED_PAGE_COLLECTION_LENGTH = "#feed_page_collection_length", + PLATFORM_TAG = "#platform_tag", + IS_LOADING = "#is_loading", + GAMERPIC_TEXTURE_FILE_SYSTEM = "#gamerpic_texture_file_system", + THIRD_PARTY_PROFILE_PIC = "#third_party_profile_pic", + THIRD_PARTY_PROFILE_PIC_FILE_SYSTEM = "#third_party_profile_pic_file_system", + XBL_GAMERTAG = "#xbl_gamertag", + CURRENT_GAME_LABEL = "#current_game_label", + THIRD_PARTY_TAG = "#third_party_tag", + FRIEND_BUTTON_FOCUS_OVERRIDE_UP = "#friend_button_focus_override_up", + FRIEND_BUTTON_FOCUS_OVERRIDE_DOWN = "#friend_button_focus_override_down", + ONLINE_LINKED_ACCOUNT_FRIEND_GRID_DIMENSION = "#online_linked_account_friend_grid_dimension", + OFFLINE_LINKED_ACCOUNT_FRIEND_GRID_DIMENSION = "#offline_linked_account_friend_grid_dimension", + CAN_CHANGE_SKIN = "#can_change_skin", + IS_RIGHT_PANEL_CLASSIC_SKIN_PACK_TITLE_VISIBLE = "#is_right_panel_classic_skin_pack_title_visible", + IS_REDEEMABLE = "#is_redeemable", + CURRENT_COLOR_EQUIPPED = "#current_color_equipped", + IS_SKIN_NOT_EQUIPPABLE = "#is_skin_not_equippable", + ONLINE_SAFETY_DO_NOT_SHOW_AGAIN = "#online_safety_do_not_show_again", + MEMBERS_SECTION_CONTENT = "#members_section_content", + PAGE_COUNTER_LABEL = "#page_counter_label", + FRIENDS_PAGINATION_VISIBLE = "#friends_pagination_visible", + INVITED_SECTION_CONTENT = "#invited_section_content", + UNINVITED_SECTION_CONTENT = "#uninvited_section_content", + BLOCKED_SECTION_CONTENT = "#blocked_section_content", + THIRD_PARTY_PROFILE_NAME = "#third_party_profile_name", + HAS_EXPIRED = "#has_expired", + UNOWNED_GRID_VISIBLE = "#unowned_grid_visible", + SHOULD_SHOW_SUBSCRIPTION_TAB = "#should_show_subscription_tab", + IN_PROGRESS_TITLE = "#in_progress_title", + MESSAGE_LINE2_VISIBLE = "#message_line2_visible", + PROGRESS_LOADING_VISIBILITY = "#progress_loading_visibility", + REALMS_PLUS_ONE_MONTH_FREE_TRIAL_VISIBLE = "#realms_plus_one_month_free_trial_visible", + GFX_TEXTURE_LOAD_DELAY = "#gfx_texture_load_delay", + GFX_TEXTURE_LOAD_DELAY_ENABLED = "#gfx_texture_load_delay_enabled", + GFX_TEXTURE_LOAD_DELAY_STEPS = "#gfx_texture_load_delay_steps", + GFX_TEXTURE_LOAD_DELAY_TEXT_VALUE = "#gfx_texture_load_delay_text_value", + GFX_MAX_DEQUEUED_TEXTURES_PER_FRAME = "#gfx_max_dequeued_textures_per_frame", + GFX_MAX_DEQUEUED_TEXTURES_PER_FRAME_ENABLED = "#gfx_max_dequeued_textures_per_frame_enabled", + GFX_MAX_DEQUEUED_TEXTURES_PER_FRAME_STEPS = "#gfx_max_dequeued_textures_per_frame_steps", + GFX_MAX_DEQUEUED_TEXTURES_PER_FRAME_TEXT_VALUE = "#gfx_max_dequeued_textures_per_frame_text_value", + CROSSPLATFORM_TOGGLE = "#crossplatform_toggle", + CROSSPLATFORM_TOGGLE_ENABLED = "#crossplatform_toggle_enabled", + ONLY_TRUSTED_SKINS_ALLOWED = "#only_trusted_skins_allowed", + ONLY_TRUSTED_SKINS_ALLOWED_ENABLED = "#only_trusted_skins_allowed_enabled", + TERMS_AND_CONDITIONS_HYPERLINK = "#terms_and_conditions_hyperlink", + HAS_PERSONA_REWARD = "#has_persona_reward", + DEMO_CHOICE_VISIBLE = "#demo_choice_visible", + SIGN_IN_IOS_BUTTONS_VISIBLE = "#sign_in_ios_buttons_visible", + SUPPORTS_NETHERITE = "#supports_netherite", + KEYBOARD_BUTTON_VISIBLE = "#keyboard_button_visible", + SEND_BUTTON_ACCESSIBILITY_TEXT = "#send_button_accessibility_text", + OPEN_URI_BUTTON_VISIBLE = "#open_uri_button_visible", + SERVICE_BODY_TEXT = "#service_body_text", + SERVICE_BUTTON_VISIBLE = "#service_button_visible", + BUTTON_COUNT = "#button_count", + EMOTE_NAME = "#emote_name", + IS_TOUCH_MODE = "#is_touch_mode", + EMOTE_NAME_TOUCH = "#emote_name_touch", + EMOTE_IS_VALID = "#emote_is_valid", + EMOTE_IMAGE = "#emote_image", + EMOTE_IMAGE_FILE_SYSTEM = "#emote_image_file_system", + EMOTE_IMAGE_TINT = "#emote_image_tint", + IMAGE_IS_VALID = "#image_is_valid", + EMOTE_INDEX_NAME = "#emote_index_name", + BUTTON_PANEL_PURCHASE_DISALLOWED = "#button_panel_purchase_disallowed", + GAMEPAD_HELPER_RS_VISIBLE = "#gamepad_helper_rs_visible", + CRAFTING_LABEL_TEXT = "#crafting_label_text", + NO_XBOX_LIVE_FRIENDS_TEXT = "#no_xbox_live_friends_text", + TARGET_POOL_TEXT_BOX_VALUE = "#target_pool_text_box_value", + NAME_TEXT_BOX_VALUE = "#name_text_box_value", + TARGET_TEXT_BOX_VALUE = "#target_text_box_value", + FINAL_BLOCK_TEXT_BOX_VALUE = "#final_block_text_box_value", + JOINT_TYPE_TOGGLE_STATE = "#joint_type_toggle_state", + COMMAND_IDENTIFIER = "#command_identifier", + ADD_COMMAND_FOCUS_OVERRIDE_UP = "#add_command_focus_override_up", + COMMAND_FOCUS_OVERRIDE_DOWN = "#command_focus_override_down", + BUTTON_NAME_IDENTIFIER = "#button_name_identifier", + BUTTON_NAME_FOCUS_OVERRIDE_UP = "#button_name_focus_override_up", + BUTTON_MODE_IDENTIFIER = "#button_mode_identifier", + BUTTON_MODE_FOCUS_OVERRIDE_UP = "#button_mode_focus_override_up", + LOADING_PATCH_NOTES = "#loading_patch_notes", + SUNSETTING_DO_NOT_SHOW_AGAIN = "#sunsetting_do_not_show_again", + INTERATION_BUTTON_ENABLED = "#interation_button_enabled", + INTERACTION_BUTTON_VISIBLE = "#interaction_button_visible", + SKIN_PACK_SECTION_VISIBLE = "#skin_pack_section_visible", + UPDATE_NOTIFICATION_VISIBLE = "#update_notification_visible", + REALMS_INCOMPATIBLE_BUTTON_VISIBLE = "#realms_incompatible_button_visible", + RTX_LABEL_VISIBLE = "#rtx_label_visible", + ITEM_REALMS_EXPIRATION_LABEL = "#item_realms_expiration_label", + RATINGS_BUTTON_ENABLED = "#ratings_button_enabled", + RATING_FOOTER_TEXT = "#rating_footer_text", + RATINGS_INTERACT_PANEL_VISIBLE = "#ratings_interact_panel_visible", + USER_RATING_STAR_TEXTURE = "#user_rating_star_texture", + INTERACT_BUTTON_TEXT = "#interact_button_text", + EXIT_WORLD_BUTTON_VISIBLE = "#exit_world_button_visible", + PURCHASE_PANEL_VISIBLE_DISALLOWED = "#purchase_panel_visible_disallowed", + KICK_BUTTON_VISIBLE = "#kick_button_visible", + KICK_BUTTON_ENABLED = "#kick_button_enabled", + BAN_BUTTON_VISIBLE = "#ban_button_visible", + BAN_BUTTON_ENABLED = "#ban_button_enabled", + PERMISSION_OPTIONS_GRID_VISIBLE = "#permission_options_grid_visible", + ACHIEVEMENT_OFFER_LOCK_STATE_TEXTURE = "#achievement_offer_lock_state_texture", + COLOR_SELECTED = "#color_selected", + IS_SKIN_REALMS_PLUS = "#is_skin_realms_plus", + IS_PIECE_VISIBLE = "#is_piece_visible", + CATEGORY_SECTION_CONTENT = "#category_section_content", + OWNED_PACKS_SELECTED = "#owned_packs_selected", + PURCHASABLE_PACKS_SELECTED = "#purchasable_packs_selected", + IS_REALMS_PLUS_ENABLED = "#is_realms_plus_enabled", + REALMS_PLUS_PACKS_SELECTED = "#realms_plus_packs_selected", + IS_PLAY_AGAIN_BUTTON_ENABLED = "#is_play_again_button_enabled", + IS_EMOTE_OFFER_LIST_VISIBLE = "#is_emote_offer_list_visible", + IS_EMOTES_SECTION_VISIBLE = "#is_emotes_section_visible", + IS_ACHIEVEMENT_AWARD = "#is_achievement_award", + IS_RIGHT_INFO_WITH_BUTTONS_VISIBLE = "#is_right_info_with_buttons_visible", + ACTIVE_SKIN_NAME = "#active_skin_name", + CURRENT_SKIN_NAME = "#current_skin_name", + IS_USING_DRESSING_ROOM_DEBUGGING = "#is_using_dressing_room_debugging", + PREVIEW_SKIN_NAME = "#preview_skin_name", + SKIN_COLOR_OPTION_ENABLED = "#skin_color_option_enabled", + CAN_PAPERDOLL_ROTATE = "#can_paperdoll_rotate", + CAN_COLLECT_ACHIEVEMENT_AWARD = "#can_collect_achievement_award", + IS_OFFER_ACHIEVEMENT = "#is_offer_achievement", + COLOR_PICKER_INFO_PANEL_TITLE_COLOR = "#color_picker_info_panel_title_color", + COLOR_PICKER_INFO_PANEL_TITLE_NAME = "#color_picker_info_panel_title_name", + REALMS_PLUS_SKIN_PACK_TIMER = "#realms_plus_skin_pack_timer", + HAS_REALMS_PLUS_TIMER = "#has_realms_plus_timer", + SHOW_REALMS_PLUS_BUTTON = "#show_realms_plus_button", + IS_CLASSIC_SKIN_SECTION_VISIBLE = "#is_classic_skin_section_visible", + IS_NONE_EMOTE_OPTION_ENABLED = "#is_none_emote_option_enabled", + PERSONA_IS_UPDATING = "#persona_is_updating", + IS_THIRD_PARTY_SERVER_SELECTED = "#is_third_party_server_selected", + IS_ADDITIONAL_SERVER_SELECTED = "#is_additional_server_selected", + ADD_SERVER_INFO_VISIBLE = "#add_server_info_visible", + FEATURE_SERVER_MESSAGE_TEXT = "#feature_server_message_text", + DEVICE_SUNSETTING = "#device_sunsetting", + IS_ADDITIONAL_SERVER_LABEL_VISIBLE = "#is_additional_server_label_visible", + FEATURED_SERVERS_VISIBLE_AND_AVAILABLE = "#featured_servers_visible_and_available", + BETA_RETAIL_LEGACY_WORLDS_VISIBLE = "#beta_retail_legacy_worlds_visible", + BETA_RETAIL_LOCAL_WORLDS_VISIBLE = "#beta_retail_local_worlds_visible", + IS_SERVER_INFO_AVAILABLE_COLLECTION = "#is_server_info_available_collection", + TOGGLE_STATE = "#toggle_state", + ADD_SERVER_ENABLED = "#add_server_enabled", + BETA_RETAIL_LEGACY_WORLD_ITEM_GRID_DIMENSION = "#beta_retail_legacy_world_item_grid_dimension", + BETA_RETAIL_LOCAL_WORLD_ITEM_GRID_DIMENSION = "#beta_retail_local_world_item_grid_dimension", + REALMS_CHEVRON_VISIBLE = "#realms_chevron_visible", + NEWS_IS_READ_MORE = "#news_is_read_more", + NEWS_IS_READ_LESS = "#news_is_read_less", + NEWS_LABEL = "#news_label", + NEWS_TEXT = "#news_text", + GAMES_COLLECTION_LENGTH = "#games_collection_length", + AVAILABLE_GAME_DESCRIPTION = "#available_game_description", + AVAILABLE_GAME_TITLE = "#available_game_title", + AVAILABLE_GAME_SUBTITLE = "#available_game_subtitle", + AVAILABLE_GAME_IMAGE = "#available_game_image", + AVAILABLE_GAME_IMAGE_VISIBLE = "#available_game_image_visible", + DESCRIPTION_IS_READ_MORE = "#description_is_read_more", + DESCRIPTION_IS_READ_LESS = "#description_is_read_less", + DESCRIPTION_LABEL = "#description_label", + SCREENSHOT_COLLECTION_LENGTH = "#screenshot_collection_length", + THIS_SCREENSHOT_SELECTED = "#this_screenshot_selected", + SERVER_HAS_NEWS = "#server_has_news", + SERVER_HAS_GAMES = "#server_has_games", + SERVER_HAS_DESCRIPTION = "#server_has_description", + SERVER_HAS_SCREENSHOTS = "#server_has_screenshots", + INFO_THIRD_PARTY_SERVER_NAME = "#info_third_party_server_name", + INFO_THIRD_PARTY_SERVER_LOGO_TEXTURE_PATH = "#info_third_party_server_logo_texture_path", + INFO_THIRD_PARTY_SCREENSHOT_VISIBLE = "#info_third_party_screenshot_visible", + IS_SERVER_INFO_AVAILABLE = "#is_server_info_available", + INFO_ADDITIONAL_SERVER_NAME = "#info_additional_server_name", + DEEP_LINK_PROFILE_LOADING_VISIBLE = "#deep_link_profile_loading_visible", + ENABLE_ACHIEVEMENT_BUTTON = "#enable_achievement_button", + SELECTED_SKIN_NAME = "#selected_skin_name", + SELECTED_SKIN = "#selected_skin", + VALID_SKIN_OFFER_INDEX = "#valid_skin_offer_index", + IS_LOADING_OUTLINE_VISIBLE = "#is_loading_outline_visible", + SKIN_PACK_LOADING_PROGRESS_VISIBLE = "#skin_pack_loading_progress_visible", + BUY_GAME_VISIBLE = "#buy_game_visible", + THIS_PAGE_SELECTED = "#this_page_selected", + OFFER_COLLECTION_VISIBLE = "#offer_collection_visible", + TIMER_DURATION = "#timer_duration", + IS_HERO_CAROUSEL_VISIBLE = "#is_hero_carousel_visible", + CAROUSEL_SECTION_CONTENT = "#carousel_section_content", + GREY_BAR_SECTION_CONTENT = "#grey_bar_section_content", + BANNER_BUTTON_TEXT = "#banner_button_text", + PROMO_PAGE_IS_READY = "#promo_page_is_ready", + BANNER_TITLE_TEXT = "#banner_title_text", + BANNER_DESCRIPTION_TEXT = "#banner_description_text", + OFFER_COLLECTION_READY = "#offer_collection_ready", + IS_SEARCH_OFFER_LIST_VISIBLE = "#is_search_offer_list_visible", + ITEM_DESCRIPTION_TEXT = "#item_description_text", + ITEM_DESCRIPTION_COLOR = "#item_description_color", + ITEM_TITLE_TEXT = "#item_title_text", + ITEM_TIMER_VISIBLE = "#item_timer_visible", + ITEM_TIMER_TEXT = "#item_timer_text", + ITEM_CREATOR_TEXT = "#item_creator_text", + ITEM_IS_WORLD = "#item_is_world", + PDP_BUTTON_TEXT = "#pdp_button_text", + ITEM_IS_NOT_OWNED = "#item_is_not_owned", + ITEM_FULL_PRICE = "#item_full_price", + ITEM_ACTION_BUTTON_TEXT = "#item_action_button_text", + SCREENSHOT_LOCATION = "#screenshot_location", + CHARACTER_LOADING_IN_PROGRESS = "#character_loading_in_progress", + CYCLE_PROMOTIONS_LEFT_BUTTON_ENABLED = "#cycle_promotions_left_button_enabled", + CYCLE_PROMOTIONS_RIGHT_BUTTON_ENABLED = "#cycle_promotions_right_button_enabled", + END_OF_WEEK_OFFER_PANEL_VISIBLE = "#end_of_week_offer_panel_visible", + PROMOTION_LAST_WEEK_DAY_TEXT = "#promotion_last_week_day_text", + IS_VALID = "#is_valid", + PROMOTION_DAY_TEXT = "#promotion_day_text", + THIS_PROMO_SELECTED = "#this_promo_selected", + ITEM_HAS_BEEN_CLAIMED = "#item_has_been_claimed", + PROMOTION_THUMBNAIL_TEXTURE_PATH = "#promotion_thumbnail_texture_path", + PROMOTION_THUMBNAIL_TEXTURE_FILE_SYSTEM = "#promotion_thumbnail_texture_file_system", + PROMOTION_OFFER_GIFT_IMAGE = "#promotion_offer_gift_image", + PROMOTION_OFFER_VISIBLE = "#promotion_offer_visible", + PRICE_INFO_VISIBLE = "#price_info_visible", + INVENTORY_SECTION_CONTENT = "#inventory_section_content", + REALMS_ENABLED = "#realms_enabled", + COLLECTION_COUNT = "#collection_count", + SUBCATEGORIES_VISIBLE = "#subcategories_visible", + BOUNDING_TOGGLE_VISIBLE = "#bounding_toggle_visible", + CORNER_MODE_PANEL_VISIBLE = "#corner_mode_panel_visible", + CORNER_TEXT_VISIBLE = "#corner_text_visible", + ROTATION_ARROWS_VISIBLE = "#rotation_arrows_visible", + SERVICE_IMAGE_TEXTURE_FILENAME = "#service_image_texture_filename", + SERVICE_IMAGE_TEXTURE_LOCATION = "#service_image_texture_location", + SERVICE_IMAGE_REPO_READY = "#service_image_repo_ready", + INVENTORY_SELECTED_ITEM_LOCK_IN_INVENTORY = "#inventory_selected_item_lock_in_inventory", + ITEM_LOCK = "#item_lock", + ITEM_LOCK_IN_SLOT = "#item_lock_in_slot", + ITEM_LODESTONE_TRACKING_HANDLE = "#item_lodestone_tracking_handle", + ITEM_LOCK_IN_INVENTORY = "#item_lock_in_inventory", + INVENTORY_SELECTED_ITEM_LOCK_IN_SLOT = "#inventory_selected_item_lock_in_slot", + ARE_WORLD_LIST_GRIDS_READY = "#are_world_list_grids_ready", + REALMS_PLUS_ONE_MONTH_FREE_TRIAL_NOT_VISIBLE = "#realms_plus_one_month_free_trial_not_visible", + FREE_TRIAL_HEADER_TEXT = "#free_trial_header_text", + LANDING_INFO_LINE_4 = "#landing_info_line_4", + REALM_DESCRIPTION_ENABLED = "#realm_description_enabled", + REALM_DESCRIPTION_VISIBLE = "#realm_description_visible", + REALM_DESCRIPTION = "#realm_description", + DEV_PROGRESSION_ID = "#dev_progression_id", + DEV_PROGRESSION_ID_ENABLED = "#dev_progression_id_enabled", + DEV_SHOW_OVERRIDE_PROGRESSIONS = "#dev_show_override_progressions", + DEV_SHOW_OVERRIDE_PROGRESSIONS_ENABLED = "#dev_show_override_progressions_enabled", + CAMERA_SHAKE = "#camera_shake", + CAMERA_SHAKE_ENABLED = "#camera_shake_enabled", + GRAPHICS_UPSCALING = "#graphics_upscaling", + GRAPHICS_UPSCALING_ENABLED = "#graphics_upscaling_enabled", + RAYTRACING = "#raytracing", + RAYTRACING_ENABLED = "#raytracing_enabled", + RAYTRACING_RENDER_DISTANCE_SLIDER_LABEL = "#raytracing_render_distance_slider_label", + RAYTRACING_RENDER_DISTANCE = "#raytracing_render_distance", + RAYTRACING_RENDER_DISTANCE_TEXT_VALUE = "#raytracing_render_distance_text_value", + RAYTRACING_RENDER_DISTANCE_ENABLED = "#raytracing_render_distance_enabled", + RAYTRACING_RENDER_DISTANCE_STEPS = "#raytracing_render_distance_steps", + SHOW_RENDER_DISTANCE = "#show_render_distance", + RTX_RENDER_DISTANCE_WARNING_VISIBLE = "#rtx_render_distance_warning_visible", + PAD_VISIBLE = "#pad_visible", + RIGHT_BUTTON_VISIBLE = "#right_button_visible", + CONSUMABLE_NOT_EXTENDABLE_VISIBLE = "#consumable_not_extendable_visible", + MY_SUBSCRIPTIONS_VISIBLE = "#my_subscriptions_visible", + AVAILABLE_OR_ADDITIONAL_SUBSCRIPTIONS_TEXT = "#available_or_additional_subscriptions_text", + VR_VARIABLE_SNAP_ANGLE = "#vr_variable_snap_angle", + VR_VARIABLE_SNAP_ANGLE_ENABLED = "#vr_variable_snap_angle_enabled", + VR_SNAP_SOUND = "#vr_snap_sound", + VR_SNAP_SOUND_ENABLED = "#vr_snap_sound_enabled", + VR_MOVEMENT_DROPDOWN_ENABLED = "#vr_movement_dropdown_enabled", + VR_MOVEMENT_DROPDOWN_TOGGLE_LABEL = "#vr_movement_dropdown_toggle_label", + VR_JUMP_DROPDOWN_ENABLED = "#vr_jump_dropdown_enabled", + VR_JUMP_DROPDOWN_TOGGLE_LABEL = "#vr_jump_dropdown_toggle_label", + VR_HEAD_STEERING_DROPDOWN_ENABLED = "#vr_head_steering_dropdown_enabled", + VR_HEAD_STEERING_DROPDOWN_TOGGLE_LABEL = "#vr_head_steering_dropdown_toggle_label", + VR_STICKY_MINING_DROPDOWN_ENABLED = "#vr_sticky_mining_dropdown_enabled", + VR_STICKY_MINING_DROPDOWN_TOGGLE_LABEL = "#vr_sticky_mining_dropdown_toggle_label", + VR_HUD_POSITION_DROPDOWN_ENABLED = "#vr_hud_position_dropdown_enabled", + VR_HUD_POSITION_DROPDOWN_TOGGLE_LABEL = "#vr_hud_position_dropdown_toggle_label", + VR_HUD_DISTANCE_SLIDER_LABEL = "#vr_hud_distance_slider_label", + VR_HUD_DISTANCE = "#vr_hud_distance", + VR_HUD_DISTANCE_TEXT_VALUE = "#vr_hud_distance_text_value", + VR_HUD_DISTANCE_ENABLED = "#vr_hud_distance_enabled", + VR_CAMERA_MOVEMENT_RADIO_SNAP = "#vr_camera_movement_radio_snap", + VR_CAMERA_MOVEMENT_RADIO_CLASSIC = "#vr_camera_movement_radio_classic", + VR_CAMERA_MOVEMENT_RADIO_WHEEL = "#vr_camera_movement_radio_wheel", + VR_CAMERA_MOVEMENT_RADIO_SNAP_WHEEL = "#vr_camera_movement_radio_snap_wheel", + VR_MOVEMENT_RADIO_LINEAR = "#vr_movement_radio_linear", + VR_MOVEMENT_RADIO_CLASSIC = "#vr_movement_radio_classic", + VR_JUMP_RADIO_LINEAR = "#vr_jump_radio_linear", + VR_JUMP_RADIO_CLASSIC = "#vr_jump_radio_classic", + VR_HEAD_STEERING_RADIO_GAZE = "#vr_head_steering_radio_gaze", + VR_HEAD_STEERING_RADIO_PLAYER = "#vr_head_steering_radio_player", + VR_STICKY_MINING_RADIO_LOCK = "#vr_sticky_mining_radio_lock", + VR_STICKY_MINING_RADIO_CONTROLLER = "#vr_sticky_mining_radio_controller", + VR_STICKY_MINING_RADIO_DISABLED = "#vr_sticky_mining_radio_disabled", + VR_HUD_POSITION_RADIO_DRIFT = "#vr_hud_position_radio_drift", + VR_HUD_POSITION_RADIO_OFFHAND = "#vr_hud_position_radio_offhand", + VR_HUD_POSITION_RADIO_FIXED = "#vr_hud_position_radio_fixed", + NOT_HIDE_CHAT = "#not_hide_chat", + TEXTTOSPEECH_VOLUME_SLIDER_LABEL = "#texttospeech_volume_slider_label", + TEXTTOSPEECH_VOLUME = "#texttospeech_volume", + TEXTTOSPEECH_VOLUME_TEXT_VALUE = "#texttospeech_volume_text_value", + TEXTTOSPEECH_VOLUME_ENABLED = "#texttospeech_volume_enabled", + TEXT_BACKGROUND_OPACITY_SLIDER_LABEL = "#text_background_opacity_slider_label", + TEXT_BACKGROUND_OPACITY = "#text_background_opacity", + TEXT_BACKGROUND_OPACITY_TEXT_VALUE = "#text_background_opacity_text_value", + TEXT_BACKGROUND_OPACITY_ENABLED = "#text_background_opacity_enabled", + MAIN_VOLUME_SLIDER_LABEL = "#main_volume_slider_label", + MAIN_VOLUME = "#main_volume", + MAIN_VOLUME_TEXT_VALUE = "#main_volume_text_value", + MAIN_VOLUME_ENABLED = "#main_volume_enabled", + AMBIENT_VOLUME_SLIDER_LABEL = "#ambient_volume_slider_label", + AMBIENT_VOLUME = "#ambient_volume", + AMBIENT_VOLUME_TEXT_VALUE = "#ambient_volume_text_value", + AMBIENT_VOLUME_ENABLED = "#ambient_volume_enabled", + HOSTILE_VOLUME_SLIDER_LABEL = "#hostile_volume_slider_label", + HOSTILE_VOLUME = "#hostile_volume", + HOSTILE_VOLUME_TEXT_VALUE = "#hostile_volume_text_value", + HOSTILE_VOLUME_ENABLED = "#hostile_volume_enabled", + NEUTRAL_VOLUME_SLIDER_LABEL = "#neutral_volume_slider_label", + NEUTRAL_VOLUME = "#neutral_volume", + NEUTRAL_VOLUME_TEXT_VALUE = "#neutral_volume_text_value", + NEUTRAL_VOLUME_ENABLED = "#neutral_volume_enabled", + RECORD_VOLUME_SLIDER_LABEL = "#record_volume_slider_label", + RECORD_VOLUME = "#record_volume", + RECORD_VOLUME_TEXT_VALUE = "#record_volume_text_value", + RECORD_VOLUME_ENABLED = "#record_volume_enabled", + DEV_OVERRIDE_XBOX_SANDBOX = "#dev_override_xbox_sandbox", + DEV_OVERRIDE_XBOX_SANDBOX_ENABLED = "#dev_override_xbox_sandbox_enabled", + OVERRIDE_XBOX_SANDBOX_ON_WINDOWS = "#override_xbox_sandbox_on_windows", + DEV_XBOX_ENVIRONMENT_DROPDOWN_TOGGLE_LABEL = "#dev_xbox_environment_dropdown_toggle_label", + DEV_XBOX_ENVIRONMENT_DROPDOWN_ENABLED = "#dev_xbox_environment_dropdown_enabled", + OVERRIDE_XBOX_SANDBOX_VISIBLE = "#override_xbox_sandbox_visible", + PROGRESSIONS_GRID_DIMENSION = "#progressions_grid_dimension", + DEV_DISPLAY_PROGRESSIONS_PANEL = "#dev_display_progressions_panel", + PROGRESSION_ID = "#progression_id", + AZURE_SHARED_ACCESS_SIGNATURE = "#test_assets.azure_shared_access_signature", + AUTOMATION_SERVER_TEST_TAGS = "#automation_server_test_tags", + AUTOMATION_BROKEN_FUNCTIONAL_TEST_TAGS = "#automation_broken_functional_test_tags", + AUTOMATION_BROKEN_SERVER_TEST_TAGS = "#automation_broken_server_test_tags", + AUTOMATION_BROKEN_UNIT_TEST_TAGS = "#automation_broken_unit_test_tags", + AUTOMATION_SOAK_TEST_DURATION_MINUTES = "#automation_soak_test_duration_minutes", + REMOTE_IMGUI = "#remote_imgui", + REMOTE_IMGUI_ENABLED = "#remote_imgui_enabled", + DEV_RENDER_MOB_INFO_STATE = "#dev_render_mob_info_state", + DEV_RENDER_MOB_INFO_STATE_ENABLED = "#dev_render_mob_info_state_enabled", + DEV_EDU_DEMO = "#dev_edu_demo", + DEV_EDU_DEMO_ENABLED = "#dev_edu_demo_enabled", + ENABLE_TEXTURE_HOT_RELOADER = "#enable_texture_hot_reloader", + TEXTURE_HOT_RELOADER_ENABLED = "#texture_hot_reloader_enabled", + DEV_DISCOVERY_ENVIRONMENT_DROPDOWN_TOGGLE_LABEL = "#dev_discovery_environment_dropdown_toggle_label", + DEV_DISCOVERY_ENVIRONMENT_DROPDOWN_ENABLED = "#dev_discovery_environment_dropdown_enabled", + DEV_USE_SUNSET_OVERRIDES = "#dev_use_sunset_overrides", + DEV_USE_SUNSET_OVERRIDES_ENABLED = "#dev_use_sunset_overrides_enabled", + SUNSETTING_OVERRIDE_ENABLED = "#sunsetting_override_enabled", + DEV_SUNSETTING_TIER_DROPDOWN_TOGGLE_LABEL = "#dev_sunsetting_tier_dropdown_toggle_label", + DEV_SUNSETTING_TIER_DROPDOWN_ENABLED = "#dev_sunsetting_tier_dropdown_enabled", + DEV_SUNSET_STATE = "#dev_sunset_state", + DEV_SUNSET_STATE_ENABLED = "#dev_sunset_state_enabled", + INITIAL_SELECTED = "#initial_selected", + UI_FEATURE_TOGGLE_COUNT = "#ui_feature_toggle_count", + CORE_UI_ENABLED = "#core_ui_enabled", + DEV_NEW_ACHIEVEMENTS_SCREENS_RADIO_DIMENSION = "#dev_new_achievements_screens_radio_dimension", + DEV_DISPLAY_PROGRESSIONS_PANEL_ENABLED = "#dev_display_progressions_panel_enabled", + SHOW_RAYTRACING_RENDER_DISTANCE = "#show_raytracing_render_distance", + REALM_PRICE_LOADED = "#realm_price_loaded", + VR_CAMERA_MOEMENT_DROPDOWN_ENABLED = "#vr_camera_moement_dropdown_enabled", + VR_CAMERA_MOVEMENT_DROPDOWN_TOGGLE_LABEL = "#vr_camera_movement_dropdown_toggle_label", + VR_SNAP_ANGLE_SLIDER_LABEL = "#vr_snap_angle_slider_label", + VR_SNAP_ANGLE = "#vr_snap_angle", + VR_SNAP_ANGLE_TEXT_VALUE = "#vr_snap_angle_text_value", + VR_SNAP_ANGLE_ENABLED = "#vr_snap_angle_enabled", + VR_SNAP_ANGLE_STEPS = "#vr_snap_angle_steps", + DEV_DISPLAY_MOCK_HTTP_PANEL = "#dev_display_mock_http_panel", + RULE_DETAILS_LABEL = "#rule_details_label", + MOCK_HTTP_RULE_COUNT = "#mock_http_rule_count", + SIGN_IN_ERROR_VISIBLE = "#sign_in_error_visible", + SIGN_IN_ERROR_CLIENT_VISIBLE = "#sign_in_error_client_visible", + PACK_PROGRESS_VISIBLE = "#pack_progress_visible", + WELCOME_VISIBLE = "#welcome_visible", + DEMO_VISIBLE = "#demo_visible", + LOADING_TEXT = "#loading_text", + DEBUG_JSON_POPUP_ENABLED = "#debug_json_popup_enabled", + POPUP_HAS_TWO_BUTTONS = "#popup_has_two_buttons", + PROGRESS_LOADING_VISIBLE = "#progress_loading_visible", + REALM_SLOT_IS_FILLED = "#realm_slot_is_filled", + SLOT_WORLD_IMAGE = "#slot_world_image", + SLOT_WORLD_TEXTURE_SOURCE = "#slot_world_texture_source", + SLOT_NAME = "#slot_name", + SLOTS_VIEW_TOGGLE = "#slots_view_toggle", + UPLOAD_IN_PROGRESS = "#upload_in_progress", + CLOUD_UPLOAD_TERMS_ACCEPTED = "#cloud_upload_terms_accepted", + INTERACT_VISIBLE = "#interact_visible", + IS_GAMEPAD_TIP = "#is_gamepad_tip", + GAMEPAD_POSTFIX_TEXT = "#gamepad_postfix_text", + LEFT_TIPS_VISIBLE = "#left_tips_visible", + LEFT_TIP_BACKGROUND = "#left_tip_background", + ON_ENTER_ENABLED = "#on_enter_enabled", + ON_EXIT_ENABLED = "#on_exit_enabled", + PATCH_LINK_BUTTON_TEXT = "#patch_link_button_text", + PAPER_DOLL_SKIN = "#paper_doll_skin", + STORE_BUTTON_VISIBLE = "#store_button_visible", + SHOW_EQUIP_BUTTON_HELPER = "#show_equip_button_helper", + IS_SEE_PACK_IN_STORE_BUTTON_VISIBLE = "#is_see_pack_in_store_button_visible", + COLOR_EQUIPPED = "#color_equipped", + IS_CATEGORY_TOGGLE_SELECTED = "#is_category_toggle_selected", + REALMS_SIGN_IN_PROMPT = "#realms_sign_in_prompt", + REALMS_SIGN_IN_PROMPT_FRIENDS = "#realms_sign_in_prompt_friends", + REALMS_SIGN_IN_BUTTON_VISIBLE = "#realms_sign_in_button_visible", + VIEW_OFFERS_VISIBLE = "#view_offers_visible", + CLOUD_UPLOAD_ENABLED = "#cloud_upload_enabled", + CREATE_ON_REALMS_BUTTON_VISIBLE = "#create_on_realms_button_visible", + NO_PICS_ALERT_VISIBILITY = "#no_pics_alert_visibility", + RIGHT_PHOTO_VISIBILITY = "#right_photo_visibility", + LEFT_PHOTO_VISIBILITY = "#left_photo_visibility", + NO_PICK_PHOTOS_ALERT_VISIBILITY = "#no_pick_photos_alert_visibility", + SPINNER_ANIMATION_VISIBLE = "#spinner_animation_visible", + CREATE_BUTTON_VISIBLE = "#create_button_visible", + SLOT_IMAGE_VISIBLE = "#slot_image_visible", + SLOT_EDIT_BUTTONS_TOGGLE = "#slot_edit_buttons_toggle", + SLOT_IS_CURRENT_WORLD = "#slot_is_current_world", + NEW_SLOT_LABEL = "#new_slot_label", + SLOT_IS_FILLED = "#slot_is_filled", + WORLD_SLOT_NAME = "#world_slot_name", + WORLD_SLOT_TYPE = "#world_slot_type", + WARNING_TEXT_VISIBLE = "#warning_text_visible", + WORLD_IMAGE = "#world_image", + SIDEBAR_VERBOSE_TOGGLE_CHECK = "#sidebar_verbose_toggle_check", + SIDEBAR_OPTION_TOGGLE_CHECK = "#sidebar_option_toggle_check", + IS_SCREEN_NAV_BUTTON_VISIBLE = "#is_screen_nav_button_visible", + IS_VERBOSE_SIDEBAR_NAV_BUTTON_VISIBLE = "#is_verbose_sidebar_nav_button_visible", + IS_SIDEBAR_NAV_READY = "#is_sidebar_nav_ready", + IS_SIMPLE_SIDEBAR_STATE_ACTIVE = "#is_simple_sidebar_state_active", + SIDEBAR_SECTIONS = "#sidebar_sections", + IS_SIDEBAR_NAV_VISIBLE = "#is_sidebar_nav_visible", + IS_CONTROLLER_HOVER_VISIBLE = "#is_controller_hover_visible", + PAGE_LOADING_FINISHED = "#page_loading_finished", + SIMPLE_SIDEBAR_OPTION_TOGGLE_CHECK = "#simple_sidebar_option_toggle_check", + VERBOSE_SIDEBAR_OPTION_TOGGLE_CHECK = "#verbose_sidebar_option_toggle_check", + ACHIEVEMENTS_ICON_VISIBLE = "#achievements_icon_visible", + TOOLBOX_BUTTON_VISIBLE = "#toolbox_button_visible", + SWAP_VR_KEYBOARD_HELPER_VISIBLE = "#swap_vr_keyboard_helper_visible", + CLOUD_UPLOAD_DO_NOT_SHOW_AGAIN = "#cloud_upload_do_not_show_again", + IS_TOP_ROW_BUTTON_FOCUS_ENABLED = "#is_top_row_button_focus_enabled", + STORE_FAILURE_CODE = "#store_failure_code", + BANNER_TEXTURE_NAME = "#banner_texture_name", + BANNER_TEXTURE_FILEPATH = "#banner_texture_filepath", + TITLE_TEXT_COLOR = "#title_text_color", + DAY_FOUR_STRING = "#day_four_string", + ANIMATION_MODE_DROPDOWN_ENABLED = "#animation_mode_dropdown_enabled", + ANIMATION_MODE_DROPDOWN_TOGGLE_LABEL = "#animation_mode_dropdown_toggle_label", + TOAST_FONT_TYPE = "#toast_font_type", + BUNDLE_SELECTED_ITEM_AUX = "#bundle_selected_item_aux", + BUNDLE_SELECTED_ITEM_VISIBLE = "#bundle_selected_item_visible", + BUNDLE_SELECTED_ITEM_CHARGED_ITEM = "#bundle_selected_item_charged_item", + BUNDLE_SELECTED_ITEM_COLOR = "#bundle_selected_item_color", + BUNDLE_SELECTED_ARMOR_TRIM_MATERIAL = "#bundle_selected_armor_trim_material", + BUNDLE_SELECTED_BANNER_PATTERNS = "#bundle_selected_banner_patterns", + BUNDLE_SHIELD_BASE_COLOR_HOVERED = "#bundle_shield_base_color_hovered", + BUNDLE_SELECTED_BANNER_COLORS = "#bundle_selected_banner_colors", + BUNDLE_SELECTED_BANNER_TYPE = "#bundle_selected_banner_type", + BUNDLE_SELECTED_DECORATED_POT_SHERDS = "#bundle_selected_decorated_pot_sherds", + BUNDLE_OPEN_BACK = "#bundle_open_back", + BUNDLE_OPEN_FRONT = "#bundle_open_front", + IS_SELECTED_BUNDLE_ITEM_SLOT = "#is_selected_bundle_item_slot", + SHOW_BUNDLE_ITEM_SLOT = "#show_bundle_item_slot", + MORE_HIDDEN_ITEMS_TEXT = "#more_hidden_items_text", + IS_HIDDEN_ITEMS_LABEL = "#is_hidden_items_label", + BUNDLE_TOOLTIP_SIZE_X = "#bundle_tooltip_size_x", + BUNDLE_TOOLTIP_SIZE_Y = "#bundle_tooltip_size_y", + SHOW_BUNDLE_TOOLTIP_HOVER = "#show_bundle_tooltip_hover", + SHOW_BUNDLE_TOOLTIP_HOVER_SOUTHWEST = "#show_bundle_tooltip_hover_southwest", + SHOW_BUNDLE_TOOLTIP_HOVER_NORTHWEST = "#show_bundle_tooltip_hover_northwest", + SHOW_BUNDLE_TOOLTIP_HOVER_NORTHEAST = "#show_bundle_tooltip_hover_northeast", + SHOW_BUNDLE_TOOLTIP_HOVER_SOUTHEAST = "#show_bundle_tooltip_hover_southeast", + SHOW_BUNDLE_TOOLTIP_POCKET = "#show_bundle_tooltip_pocket", + IS_SELECTED_BUNDLE_FULL = "#is_selected_bundle_full", + BUNDLE_WEIGHT_BAR_RATIO = "#bundle_weight_bar_ratio", + IS_SELECTED_BUNDLE_EMPTY = "#is_selected_bundle_empty", + BUNDLE_TOOLTIP_GRID_DIMENSIONS = "#bundle_tooltip_grid_dimensions", + BUNDLE_NAME = "#bundle_name", + BUNDLE_HAS_SELECTED_ITEM = "#bundle_has_selected_item", + SELECTED_BUNDLE_ITEM_TEXT = "#selected_bundle_item_text", + EDU_AI_LESSON_CRAFTER_ON = "#edu_ai_lesson_crafter_on", + EDITIONS_VISIBLE_AND_NOT_REALMS_PROMO_VISIBLE = "#editions_visible_and_not_realms_promo_visible", +} \ No newline at end of file diff --git a/src/types/enums/BindingCondition.ts b/src/types/enums/BindingCondition.ts new file mode 100644 index 0000000..94d30ad --- /dev/null +++ b/src/types/enums/BindingCondition.ts @@ -0,0 +1,8 @@ +export enum BindingCondition { + NONE = "none", + ALWAYS = "always", + ALWAYS_WHEN_VISIBLE = "always_when_visible", + VISIBLE = "visible", + ONCE = "once", + VISIBILITY_CHANGED = "visibility_changed", +} \ No newline at end of file diff --git a/src/types/enums/BindingType.ts b/src/types/enums/BindingType.ts new file mode 100644 index 0000000..cee5255 --- /dev/null +++ b/src/types/enums/BindingType.ts @@ -0,0 +1,7 @@ +export enum BindingType { + GLOBAL = "global", + COLLECTION = "collection", + COLLECTION_DETAILS = "collection_details", + VIEW = "view", + NONE = "none", +} \ No newline at end of file diff --git a/src/types/enums/ButtonId.ts b/src/types/enums/ButtonId.ts new file mode 100644 index 0000000..b649b55 --- /dev/null +++ b/src/types/enums/ButtonId.ts @@ -0,0 +1,1111 @@ +export enum ButtonId { + ANY = "any", + MENU_NETWORK_JOIN_BY_CODE_CLOSE = "button.menu_network_join_by_code_close", + SUBMIT_RATING = "button.submit_rating", + COMMAND_BLOCK_INPUT_MINIMIZE = "command_block.input_minimize", + LEAVE_ON_DEVICE = "button.leave_on_device", + MENU_VR_BACK = "button.menu_vr_back", + MOUSE_CLICKED_VRALIGN = "button.mouse_clicked_vralign", + CARTOGRAPHY_RESULT_TAKE_ALL_PLACE_ALL = "button.cartography_result_take_all_place_all", + MENU_TAB_RIGHT = "button.menu_tab_right", + NEXT_PAGE = "button.next_page", + PREV_PAGE = "button.prev_page", + BOOK_EXIT = "button.book_exit", + MENU_TAB_LEFT = "button.menu_tab_left", + PICKED_INVENTORY = "button.picked_inventory", + PICKED = "button.picked", + CLOSE_DIALOG = "button.close_dialog", + AUTH_CANCEL = "button.auth_cancel", + CANCEL = "button.cancel", + MENU_CANCEL = "button.menu_cancel", + MENU_EXIT = "button.menu_exit", + MENU_SELECT = "button.menu_select", + MENU_OK = "button.menu_ok", + ANVIL_TAKE_ALL_PLACE_ALL = "button.anvil_take_all_place_all", + MENU_SECONDARY_SELECT = "button.menu_secondary_select", + CONTROLLER_SELECT = "button.controller_select", + MENU_AUTO_PLACE = "button.menu_auto_place", + CONTAINER_AUTO_PLACE = "button.container_auto_place", + DROP_ONE = "button.drop_one", + MENU_INVENTORY_DROP = "button.menu_inventory_drop", + CONTROLLER_SECONDARY_SELECT = "button.controller_secondary_select", + MENU_INVENTORY_DROP_ALL = "button.menu_inventory_drop_all", + DROP_ALL = "button.drop_all", + ANVIL_COALESCE_STACK = "button.anvil_coalesce_stack", + CONTAINER_SLOT_HOVERED = "button.container_slot_hovered", + MENU_DOWN = "button.menu_down", + MENU_UP = "button.menu_up", + MENU_LEFT = "button.menu_left", + MENU_RIGHT = "button.menu_right", + REOPEN_KEYBOARD = "button.reopen_keyboard", + MENU_AUTOCOMPLETE = "button.menu_autocomplete", + MENU_AUTOCOMPLETE_BACK = "button.menu_autocomplete_back", + MENU_TEXTEDIT_UP = "button.menu_textedit_up", + MENU_TEXTEDIT_DOWN = "button.menu_textedit_down", + SEND_MESSAGE = "button.send_message", + RESPAWN_BUTTON = "button.respawn_button", + MAIN_MENU_BUTTON = "button.main_menu_button", + BUTTON_HOVERED = "button.button_hovered", + CONTAINER_UNSELECT_SLOT = "button.container_unselect_slot", + CONTAINER_TAKE_ALL_PLACE_ALL = "button.container_take_all_place_all", + CONTAINER_TAKE_HALF_PLACE_ONE = "button.container_take_half_place_one", + PREV_SKIN = "button.prev_skin", + NEXT_SKIN = "button.next_skin", + PLAYER_PROFILE_CARD = "button.player_profile_card", + WAKE_UP_BUTTON = "button.wake_up_button", + MENU_CONTINUE = "button.menu_continue", + MENU_VR_REALIGN = "button.menu_vr_realign", + PORTFOLIO_DELETE_PHOTO_LEFT = "button.portfolio_delete_photo_left", + PORTFOLIO_DELETE_PHOTO_RIGHT = "button.portfolio_delete_photo_right", + PORTFOLIO_PAGE_PREV = "button.portfolio_page_prev", + PORTFOLIO_PAGE_NEXT = "button.portfolio_page_next", + PORTFOLIO_EXPORT = "button.portfolio_export", + HOTBAR_OK = "button.hotbar_ok", + DROPDOWN_EXIT = "button.dropdown_exit", + SCROLLBAR_SKIP_TRACK = "button.scrollbar_skip_track", + SCROLLBAR_TOUCH = "button.scrollbar_touch", + SLOT_PRESSED = "button.slot_pressed", + INVENTORY_LEFT = "button.inventory_left", + INVENTORY_RIGHT = "button.inventory_right", + HOTBAR_INVENTORY_LEFT = "button.hotbar_inventory_left", + HOTBAR_INVENTORY_RIGHT = "button.hotbar_inventory_right", + HIDE_GUI = "button.hide_gui", + HIDE_GUI_HUD = "button.hide_gui_hud", + SLOT1 = "button.slot1", + SLOT_1 = "button.slot_1", + SLOT2 = "button.slot2", + SLOT_2 = "button.slot_2", + SLOT3 = "button.slot3", + SLOT_3 = "button.slot_3", + SLOT4 = "button.slot4", + SLOT_4 = "button.slot_4", + SLOT5 = "button.slot5", + SLOT_5 = "button.slot_5", + SLOT6 = "button.slot6", + SLOT_6 = "button.slot_6", + SLOT7 = "button.slot7", + SLOT_7 = "button.slot_7", + SLOT8 = "button.slot8", + SLOT_8 = "button.slot_8", + SLOT9 = "button.slot9", + SLOT_9 = "button.slot_9", + SLOT0 = "button.slot0", + SLOT_0 = "button.slot_0", + TURN_DOLL = "button.turn_doll", + REALM_INVITATION_ACCEPT = "button.realm_invitation_accept", + REALM_INVITATION_DECLINE = "button.realm_invitation_decline", + REALMS_INVITE_PLUS = "button.realms_invite_plus", + REALMS_INVITE_MINUS = "button.realms_invite_minus", + REALMS_INVITE_UNDO = "button.realms_invite_undo", + REALMS_INVITE_ADD_FRIENDS = "button.realms_invite_add_friends", + MENU_REALM_SEND_INVITES = "button.menu_realm_send_invites", + SELECT_SCREENSHOT = "button.select_screenshot", + VIEW_SKIN = "button.view_skin", + SKIN_HOVERED = "button.skin_hovered", + SKIN_UNHOVERED = "button.skin_unhovered", + DEFAULT_SKIN_HOVERED = "button.default_skin_hovered", + VIEW_DEFAULT_SKIN = "button.view_default_skin", + VIEW_PREMIUM_SKIN = "button.view_premium_skin", + PREMIUM_SKIN_UNHOVERED = "button.premium_skin_unhovered", + PREMIUM_SKIN_HOVERED = "button.premium_skin_hovered", + VIEW_RECENT_SKIN = "button.view_recent_skin", + RECENT_SKIN_HOVERED = "button.recent_skin_hovered", + SELECT_OFFER = "button.select_offer", + MENU_PLAY = "button.menu_play", + COALESCE_STACK = "button.coalesce_stack", + SHAPE_DRAWING = "button.shape_drawing", + CONTAINER_AUTO_PLACE_ONE = "button.container_auto_place_one", + CONTAINER_SELECT_SLOT = "button.container_select_slot", + CONTAINER_RESET_HELD = "button.container_reset_held", + MENU_INVENTORY_CANCEL = "button.menu_inventory_cancel", + CURSOR_DROP_ALL = "button.cursor_drop_all", + CURSOR_DROP_ONE = "button.cursor_drop_one", + MENU_TAB_CYCLE = "button.menu_tab_cycle", + CHAT = "button.chat", + SHOW_SKIP = "button.show_skip", + PAN_LEFT = "button.pan_left", + PAN_RIGHT = "button.pan_right", + SCROLL_MAP = "button.scroll_map", + MODAL_ESCAPE = "modal.escape", + POPUP_DIALOG_ESCAPE = "popup_dialog.escape", + ACHIEVEMENT_FOCUS_FILLER = "button.achievement_focus_filler", + PLAY_BUTTON = "button.play_button", + REMOVE_BUTTON = "button.remove_button", + SAVE_BUTTON = "button.save_button", + ACTION = "button.action", + SET_TEXT = "button.set_text", + HIDE_CHAT = "button.hide_chat", + REMOVE_TRIAL = "button.remove_trial", + MENU_CHECK_STORE = "button.menu_check_store", + NEW_WORLD = "button.new_world", + NEW_REALM = "button.new_realm", + ENCHANT = "button.enchant", + FILE_UPLOAD_PLAY = "button.file_upload_play", + FILE_UPLOAD_CANCEL = "button.file_upload_cancel", + FILE_UPLOAD_WIFI_WARNING_CONTINUE = "button.file_upload_wifi_warning_continue", + MENU_SAVE_AND_EXIT = "button.menu_save_and_exit", + MENU_RESET_DEFAULT = "button.menu_reset_default", + MENU_YES = "button.menu_yes", + MENU_NO = "button.menu_no", + MOBEFFECTS = "button.mobeffects", + DESELECT_RESOURCE = "button.deselect_resource", + SEARCHCLEAR = "button.searchClear", + RESTORE_STORE = "button.restore_store", + COIN_WALLET = "button.coin_wallet", + FEATURED_ITEM_COLLECTION = "featured_item_collection", + SELECT_FEATURED_SCREENSHOT = "button.select_featured_screenshot", + SELECT_FEATURED = "button.select_featured", + SELECT_ITEM = "button.select_item", + TURN_STRUCTURE = "button.turn_structure", + UPLOAD_LEGACY_WORLD = "button.upload_legacy_world", + REALMS_INVITE_CANCEL = "button.realms_invite_cancel", + REALMS_INVITE_NEW_LINK = "button.realms_invite_new_link", + REALMS_INVITE_COPY = "button.realms_invite_copy", + REALMS_INVITE_SHARE = "button.realms_invite_share", + REALMS_INVITE_REFRESH = "button.realms_invite_refresh", + REALMS_INVITE_SHARE_CLOSE = "button.realms_invite_share_close", + REALMS_INVITE_SHARE_BY_LINK = "button.realms_invite_share_by_link", + REALMS_INVITE_FIND_FRIENDS = "button.realms_invite_find_friends", + REALMS_INVITE_UNBLOCK = "button.realms_invite_unblock", + DELETE_ACTION = "button.delete_action", + EXIT_STUDENT = "button.exit_student", + MENU_PERMISSION = "button.menu_permission", + DELETE_ITEM = "button.delete_item", + SCREENSHOT = "button.screenshot", + SCREENSHOTPICKER_NEXT_BUTTON = "button.screenshotpicker_next_button", + SCREENSHOTPICKER_PREV_BUTTON = "button.screenshotpicker_prev_button", + SCREENSHOT_NEW_POST_CLOSE = "button.screenshot_new_post_close", + CYCLE_PACK_RIGHT = "button.cycle_pack_right", + CYCLE_PACK_LEFT = "button.cycle_pack_left", + CONTROLLER_CYCLE_PACK_LEFT = "button.controller_cycle_pack_left", + CONTROLLER_CYCLE_PACK_RIGHT = "button.controller_cycle_pack_right", + SIGNIN = "button.signin", + CYCLE_OFFER_RIGHT = "button.cycle_offer_right", + CYCLE_OFFER_LEFT = "button.cycle_offer_left", + CYCLE_RECIPE_LEFT = "button.cycle_recipe_left", + CYCLE_RECIPE_RIGHT = "button.cycle_recipe_right", + SEARCH = "button.search", + CONTROLLER_SECONDARY_SELECT_LEFT = "button.controller_secondary_select_left", + CONTROLLER_SECONDARY_SELECT_RIGHT = "button.controller_secondary_select_right", + FOCUS_LEFT = "button.focus_left", + FOCUS_RIGHT = "button.focus_right", + EDU_FEEDBACK = "button.edu_feedback", + EDU_RESOURCES = "button.edu_resources", + MENU_ACHIEVEMENTS = "button.menu_achievements", + BINDING_BUTTON = "button.binding_button", + RESET_BINDING = "button.reset_binding", + RESET_KEYBOARD_BINDINGS = "button.reset_keyboard_bindings", + RESET_GAMEPAD_BINDINGS = "button.reset_gamepad_bindings", + SIGN_IN_BUTTON = "sign_in_button", + CHANGE_GAMERTAG_BUTTON = "change_gamertag_button", + MANAGE_ACCOUNT_BUTTON = "manage_account_button", + SIGN_OUT_BUTTON = "sign_out_button", + SELECTED_PACK_GLOBAL = "button.selected_pack_global", + DESELECTED_PACK_GLOBAL = "button.deselected_pack_global", + AVAILABLE_PACK_GLOBAL = "button.available_pack_global", + MOVE_LEFT_GLOBAL = "button.move_left_global", + SORT_UP_GLOBAL = "button.sort_up_global", + SORT_DOWN_GLOBAL = "button.sort_down_global", + MENU_DOWNLOAD_WORLD = "menu_download_world", + MENU_UPLOAD_WORLD = "menu_upload_world", + MENU_RESET_WORLD = "menu_reset_world", + PLAY_WORLD_BUTTON = "play_world_button", + CONVERT_TO_INFINITE_BUTTON = "convert_to_infinite_button", + DELETE_WORLD_BUTTON = "delete_world_button", + EXPORT_WORLD_BUTTON = "export_world_button", + KEYBOARD_TOGGLE = "button.keyboard_toggle", + MENU_BINDING_START = "button.menu_binding_start", + HOTBAR_INVENTORY_BUTTON = "button.hotbar_inventory_button", + MENU_FRIEND_SELECT = "button.menu_friend_select", + ADD_FRIEND = "button.add_friend", + ADD_MEMBER = "button.add_member", + SEND_INVITES = "button.send_invites", + NPC_OPEN_URI = "button.npc_open_uri", + MENU_INVITE_PLAYERS = "button.menu_invite_players", + MENU_BUY_GAME = "button.menu_buy_game", + MENU_QUIT = "button.menu_quit", + MENU_SETTINGS = "button.menu_settings", + PAUSE_FOCUS_FILLER = "button.pause_focus_filler", + MENU_OPEN_URI = "button.menu_open_uri", + MENU_REALMS_WORLD_ITEM = "button.menu_realms_world_item", + MENU_REALMS_WORLD_ITEM_EDIT = "button.menu_realms_world_item_edit", + MENU_REALMS_WORLD_ITEM_REMOVE = "button.menu_realms_world_item_remove", + MENU_NETWORK_WORLD_ITEM = "button.menu_network_world_item", + MENU_NETWORK_SERVER_WORLD_EDIT = "button.menu_network_server_world_edit", + LOCAL_WORLD_UPLOAD = "button.local_world_upload", + MENU_LOCAL_WORLD_ITEM = "button.menu_local_world_item", + MENU_LOCAL_WORLD_ITEM_EDIT = "button.menu_local_world_item_edit", + MENU_NETWORK_ADD_FRIEND = "button.menu_network_add_friend", + MENU_NETWORK_ADD_EXTERNAL = "button.menu_network_add_external", + NEW_WORLD_UPLOAD = "button.new_world_upload", + MENU_LOCAL_WORLD_CREATE = "button.menu_local_world_create", + ARCHIVED_WORLD_UPLOAD = "button.archived_world_upload", + MENU_IMPORT_LEVEL = "button.menu_import_level", + MENU_REALM_WORLD_CREATE = "button.menu_realm_world_create", + MENU_INVITE_NOTIFICATION = "button.menu_invite_notification", + MENU_XBOX_SIGNIN = "button.menu_xbox_signin", + POPUP_DIALOG_FIRST_BUTTON = "popup_dialog.first_button", + POPUP_DIALOG_SECOND_BUTTON = "popup_dialog.second_button", + REALMS_DURATION_SHORT = "button.realms_duration_short", + REALMS_DURATION_LONG = "button.realms_duration_long", + TOS_POPUP = "button.tos_popup", + CREATE_REALM = "button.create_realm", + MENU_REALMS_MANAGE_SUBSCRIPTION = "menu_realms_manage_subscription", + MENU_REALMS_RENEW_SUBSCRIPTION = "menu_realms_renew_subscription", + MENU_REALMS_EXTEND_CONSUMABLE = "menu_realms_extend_consumable", + MENU_REALMS_RENEW_CONSUMABLE = "menu_realms_renew_consumable", + MENU_OPEN_REALM = "menu_open_realm", + MENU_CLOSE_REALM = "menu_close_realm", + SELECT_REALM_BRANCH = "select_realm_branch", + PREV_PAGE_BUTTON = "prev_page_button", + NEXT_PAGE_BUTTON = "next_page_button", + BUY_PACK = "button.buy_pack", + TRY_PACK = "button.try_pack", + CREATE_WORLD = "button.create_world", + COPY_GLOBAL = "button.copy_global", + CHOOSE_CUSTOM_SKIN = "button.choose_custom_skin", + UNDO_SKIN = "button.undo_skin", + ACCEPT_SKIN = "button.accept_skin", + CHOOSE_SKINNY = "button.choose_skinny", + CHOOSE_FAT = "button.choose_fat", + XBL_SIGNIN = "button.xbl_signin", + MENU_STORE = "button.menu_store", + XBL_NOTNOW = "button.xbl_notnow", + SELECTED_PACK_LEVEL = "button.selected_pack_level", + AVAILABLE_PACK_LEVEL = "button.available_pack_level", + MOVE_LEFT_LEVEL = "button.move_left_level", + SORT_UP_LEVEL = "button.sort_up_level", + SELECTED_PACK_ADDON = "button.selected_pack_addon", + AVAILABLE_PACK_ADDON = "button.available_pack_addon", + MOVE_LEFT_ADDON = "button.move_left_addon", + SORT_UP_ADDON = "button.sort_up_addon", + CHOOSE_UGC_LEVEL_SEED = "choose_ugc_level_seed", + DELETE_MANIFEST = "button.delete_manifest", + COPY_TO_CLIPBOARD = "button.copy_to_clipboard", + REFRESH_MANIFEST = "button.refresh_manifest", + PROMPT_FOR_ACTION = "button.prompt_for_action", + MENU_STORE_OFFER = "button.menu_store_offer", + ACTIVATE_PACK = "button.activate_pack", + BUTTON_CANCEL = "#button_cancel", + BUTTON_ACCEPT = "#button_accept", + BUTTON_DETECT_STRUCTURE = "#button_detect_structure", + BUTTON_SAVE_STRUCTURE = "#button_save_structure", + BUTTON_SELECTOR_ROTATION_PREV = "#button_selector_rotation_prev", + BUTTON_SELECTOR_ROTATION_NEXT = "#button_selector_rotation_next", + BUTTON_SELECTOR_MIRROR_PREV = "#button_selector_mirror_prev", + BUTTON_SELECTOR_MIRROR_NEXT = "#button_selector_mirror_next", + BUTTON_SELECTOR_SHOW_BOUNDING_BOX_PREV = "#button_selector_show_bounding_box_prev", + BUTTON_SELECTOR_SHOW_BOUNDING_BOX_NEXT = "#button_selector_show_bounding_box_next", + BUTTON_LOAD_STRUCTURE = "#button_load_structure", + BUTTON_SELECTOR_PREV = "#button_selector_prev", + BUTTON_SELECTOR_NEXT = "#button_selector_next", + UGC_ITEM = "button.ugc_item", + GENERATE_RANDOM = "button.generate_random", + HELP = "button.help", + MENU_WORLD_TEMPLATE_CLICKED = "button.menu_world_template_clicked", + MENU_INVALID_WORLD_TEMPLATE_CLICKED = "button.menu_invalid_world_template_clicked", + MENU_LOADING_WORLD_TEMPLATE_CLICKED = "button.menu_loading_world_template_clicked", + PATCH_NOTES_BUTTON = "patch_notes_button", + ATTRIBUTION_POPUP = "button.attribution_popup", + REPORT_ERRORS_GLOBAL = "button.report_errors_global", + INVALID_PACK_GLOBAL = "button.invalid_pack_global", + REPORT_ERRORS_LEVEL = "button.report_errors_level", + INVALID_PACK_LEVEL = "button.invalid_pack_level", + REPORT_ERRORS_ADDON = "button.report_errors_addon", + INVALID_PACK_ADDON = "button.invalid_pack_addon", + REMOVE_PACK_BUTTON = "button.remove_pack_button", + FILTER_1 = "button.filter_1", + FILTER_2 = "button.filter_2", + FILTER_3 = "button.filter_3", + GROUP_1 = "button.group_1", + GROUP_2 = "button.group_2", + DELETERESOURCES = "button.deleteResources", + SHARERESOURCES = "button.shareResources", + GENERATETEXTURELIST = "button.generateTextureList", + UPDATERESOURCE = "button.updateResource", + WARNINGDEPENDENCY = "button.warningDependency", + PURCHASE_COINS = "button.purchase_coins", + COMMAND_BLOCK_INPUT_MAXIMIZE = "command_block.input_maximize", + SAVE_TO_XBL = "button.save_to_xbl", + KEYBOARD_BUTTON = "keyboard_button", + MENU_REALM_WORLD_TRIAL = "button.menu_realm_world_trial", + MENU_START_LOCAL_WORLD = "button.menu_start_local_world", + MENU_START_REALMS_WORLD = "button.menu_start_realms_world", + JOIN_AND_DOWNLOAD_ALL = "button.join_and_download_all", + JOIN_AND_DOWNLOAD_NEEDED = "button.join_and_download_needed", + JOIN = "button.join", + TOS_HYPERLINK = "button.tos_hyperlink", + REMIX_PREVIEW_CANCEL = "button.remix_preview_cancel", + REMIX_PREVIEW_UPLOAD = "button.remix_preview_upload", + POLYMORPHIC_BUTTON_PRESS = "button.polymorphic_button_press", + CONFIRM_BUTTON = "button.confirm_button", + SKINPACKS = "button.skinpacks", + TEXTUREPACKS = "button.texturepacks", + WORLDS = "button.worlds", + MASHUPS = "button.mashups", + STRUCTURE_EXPORT = "button.structure_export", + STRUCTURE_RESET = "button.structure_reset", + EXPORT_TEMPLATE_BUTTON = "export_template_button", + PORT_INTERNAL_FILES = "button.port_internal_files", + CLEAR_PUCHASE_INVENTORY = "button.clear_puchase_inventory", + ADD_COINS = "button.add_coins", + SETUP_SAFE_ZONE_BUTTON = "setup_safe_zone_button", + INFO_ACCEPT = "button.info_accept", + SWAP_PAGE_LEFT = "button.swap_page_left", + INSERT_TEXT_PAGE = "button.insert_text_page", + INSERT_PHOTO_PAGE = "button.insert_photo_page", + DELETE_PAGE = "button.delete_page", + SWAP_PAGE_RIGHT = "button.swap_page_right", + EDIT_PAGE = "button.edit_page", + FINALIZE = "button.finalize", + EXPORT_BOOK = "button.export_book", + SIGN_BOOK = "button.sign_book", + REPORT_CLUB = "button.report_club", + REPORT_XBOX = "button.report_xbox", + COMMENT_DELETE_FEED_ITEM = "button.comment_delete_feed_item", + COMMENT_FEED_REPORT_CLUB = "button.comment_feed_report_club", + COMMENT_FEED_REPORT_XBOX = "button.comment_feed_report_xbox", + COMMENT_DELETE_FEED_ITEM_COMMENT = "button.comment_delete_feed_item_comment", + SUBMIT_COMMENT = "button.submit_comment", + HOST_TOGGLE = "button.host_toggle", + SUB_COMMAND = "button.sub_command", + HOST_MAIN = "button.host_main", + TELEPORT_CLEAR = "button.teleport_clear", + MENU_NAVIGATION = "button.menu_navigation", + DEFAULTNOACTION = "button.defaultNoAction", + AUTHORNAME = "button.authorName", + SCROLLTORATECONTENT = "button.scrollToRateContent", + USER_CONFIRM_DIALOG_ESCAPE = "user_confirm_dialog.escape", + USER_CONFIRM_DIALOG_LEFT_BUTTON = "user_confirm_dialog.left_button", + USER_CONFIRM_DIALOG_MIDDLE_BUTTON = "user_confirm_dialog.middle_button", + USER_CONFIRM_DIALOG_RIGHTCANCEL_BUTTON = "user_confirm_dialog.rightcancel_button", + ADVANCED_SETTINGS = "button.advanced_settings", + EXPAND_ACTION_EDIT = "button.expand_action_edit", + ADD_URL = "button.add_url", + ADD_COMMAND = "button.add_command", + STUDENT_BUTTON = "button.student_button", + MENU_SERVER_STORE = "button.menu_server_store", + MENU_HOW_TO_PLAY = "button.menu_how_to_play", + MENU_FEED = "button.menu_feed", + MENU_REALMS_FEED = "button.menu_realms_feed", + CONVERT_LEGACY_WORLD = "button.convert_legacy_world", + MENU_NETWORK_JOIN_BY_CODE = "button.menu_network_join_by_code", + CONNECT_TO_THIRD_PARTY_SERVER = "button.connect_to_third_party_server", + MENU_SYNC_LEGACY_WORLDS = "button.menu_sync_legacy_worlds", + MENU_NETWORK_JOIN_BY_CODE_POPUP_JOIN = "button.menu_network_join_by_code_popup_join", + NO_PHOTO_ALERT_OK = "button.no_photo_alert_ok", + REALMS_PLAYER_COUNT_2 = "button.realms_player_count_2", + REALMS_PLAYER_COUNT_10 = "button.realms_player_count_10", + NEXT_PAGE_BUTTON_MEMBERS = "next_page_button_members", + PREV_PAGE_BUTTON_MEMBERS = "prev_page_button_members", + NEXT_PAGE_BUTTON_INVITED_FRIENDS = "next_page_button_invited_friends", + PREV_PAGE_BUTTON_INVITED_FRIENDS = "prev_page_button_invited_friends", + NEXT_PAGE_BUTTON_UNINVITED_FRIENDS = "next_page_button_uninvited_friends", + PREV_PAGE_BUTTON_UNINVITED_FRIENDS = "prev_page_button_uninvited_friends", + NEXT_PAGE_BUTTON_BLOCKED_PLAYERS = "next_page_button_blocked_players", + PREV_PAGE_BUTTON_BLOCKED_PLAYERS = "prev_page_button_blocked_players", + EDIT = "button.edit", + SHARE_SCREENSHOT = "button.share_screenshot", + FORM_BUTTON_CLICK = "button.form_button_click", + SUBMIT_CUSTOM_FORM = "button.submit_custom_form", + EQUIP_SKIN = "button.equip_skin", + MORE_SUGGESTED_CONTENT_OFFERS = "button.more_suggested_content_offers", + SHOW_MORE_OFFERS = "button.show_more_offers", + FUTURE_PROMO = "button.future_promo", + PAST_PROMO = "button.past_promo", + UNWRAP_PROMO = "button.unwrap_promo", + REPORT = "button.report", + VIEW_TERMS = "button.view_terms", + BACK = "button.back", + PLAY = "button.play", + RESET_TOUCH_BINDINGS = "button.reset_touch_bindings", + COPY_WORLD_BUTTON = "copy_world_button", + MENU_MANAGE_FEED = "menu_manage_feed", + RESET_SETTINGS = "button.reset_settings", + LICENSED_CONTENT_POPUP = "button.licensed_content_popup", + START_BROADCAST = "button.start_broadcast", + GET_MIXER_CREATE = "button.get_mixer_create", + LAUNCH_MIXER_CREATE = "button.launch_mixer_create", + DEV_CLEAR_STORE_CACHE_BUTTON = "dev_clear_store_cache_button", + DEV_CLEAR_ALL_CACHE_BUTTON = "dev_clear_all_cache_button", + REMOVE_TREATMENT = "button.remove_treatment", + RESET_TO_DEFAULT_TREATMENTS = "button.reset_to_default_treatments", + ADD_TREATMENT = "button.add_treatment", + CLEAR_TREATMENT_LIST = "button.clear_treatment_list", + DEV_UPDATE_OVERRIDE_DATE_BUTTON = "dev_update_override_date_button", + CHAT_MENU_CANCEL = "button.chat_menu_cancel", + MUTE_CHAT = "button.mute_chat", + SEND = "button.send", + CONTROLLER_START = "button.controller_start", + CONTROLLER_AUTOCOMPLETE = "button.controller_autocomplete", + CONTROLLER_AUTOCOMPLETE_BACK = "button.controller_autocomplete_back", + CONTROLLER_TEXTEDIT_UP = "button.controller_textedit_up", + CONTROLLER_TEXTEDIT_DOWN = "button.controller_textedit_down", + COMMENT_NEXT_BUTTON = "button.comment_next_button", + COMMENT_PREV_BUTTON = "button.comment_prev_button", + COMMENT_OPTIONS_CLOSE = "button.comment_options_close", + COMMENT_FEED_OPTIONS_CLOSE = "button.comment_feed_options_close", + MENU_LEAVE_SCREEN = "button.menu_leave_screen", + NEWPOST = "button.newpost", + FEED_NEXT_BUTTON = "button.feed_next_button", + FEED_PREV_BUTTON = "button.feed_prev_button", + ADD_SCREENSHOT = "button.add_screenshot", + FEED_COMMENT = "button.feed_comment", + FEED_NEW_POST_CLOSE = "button.feed_new_post_close", + FEED_OPTIONS_CLOSE = "button.feed_options_close", + FEED_IMAGE = "button.feed_image", + SCOREBOARD = "button.scoreboard", + HIDE_GUI_ALL = "button.hide_gui_all", + HIDE_TOOLTIPS = "button.hide_tooltips", + HIDE_TOOLTIPS_HUD = "button.hide_tooltips_hud", + HIDE_PAPERDOLL = "button.hide_paperdoll", + HIDE_PAPERDOLL_HUD = "button.hide_paperdoll_hud", + LEFT_PANEL_TAB_DECREMENT = "button.left_panel_tab_decrement", + RIGHT_PANEL_TAB_DECREMENT = "button.right_panel_tab_decrement", + MENU_ALTERNATE_TAB_LEFT = "button.menu_alternate_tab_left", + LEFT_PANEL_TAB_INCREMENT = "button.left_panel_tab_increment", + MENU_ALTERNATE_TAB_RIGHT = "button.menu_alternate_tab_right", + RIGHT_PANEL_TAB_INCREMENT = "button.right_panel_tab_increment", + SHIFT_PANE_FOCUS = "button.shift_pane_focus", + MENU_CLEAR = "button.menu_clear", + TOUCH_DESELECT = "button.touch_deselect", + DESTROY_SELECTION = "button.destroy_selection", + CLEAR_HOTBAR_OR_REMOVE_ONE = "button.clear_hotbar_or_remove_one", + TRY_MENU_EXIT = "button.try_menu_exit", + LAYOUT_INCREMENT = "button.layout_increment", + LAYOUT_DECREMENT = "button.layout_decrement", + RECIPE_SEARCH = "button.recipe_search", + CLEAR_HOTBAR_OR_DROP = "button.clear_hotbar_or_drop", + LEAVE = "button.leave", + MANAGE_FEED_NEXT_BUTTON = "button.manage_feed_next_button", + MANAGE_FEED_PREV_BUTTON = "button.manage_feed_prev_button", + MANAGE_FEED_DELETE = "button.manage_feed_delete", + MANAGE_FEED_IGNORE = "button.manage_feed_ignore", + CYCLE_SCREENSHOTS_RIGHT = "button.cycle_screenshots_right", + CYCLE_SCREENSHOTS_LEFT = "button.cycle_screenshots_left", + MENU_SKINS = "button.menu_skins", + REALMS_OPTIONS_CLOSE = "button.realms_options_close", + CLEAR_MEMBERS = "button.clear_members", + MENU_OFFLINE = "button.menu_offline", + SEARCH_CLEAR = "button.search_clear", + ONLINE_BUTTON = "button.online_button", + LOCAL_BUTTON = "button.local_button", + ACCESS = "button.access", + MANAGE_FEED = "button.manage_feed", + SHARE_FEED_ITEM = "button.share_feed_item", + FEED_REPORT_CLUB = "button.feed_report_club", + FEED_REPORT_XBOX = "button.feed_report_xbox", + DELETE_FEED_ITEM = "button.delete_feed_item", + CONTINUE = "button.continue", + READ_MORE = "button.read_more", + RATECONTENT = "button.rateContent", + CREATEWORLD = "button.createWorld", + ACTIVATETEXTUREPACK = "button.activateTexturePack", + HOMEBUTTON = "button.homeButton", + DIALOG_BUTTON = "button.dialog_button", + TOS_IOS_APPLETV = "button.tos_ios_appletv", + PRIVPOL_HYPERLINK = "button.privpol_hyperlink", + PRIVPOL_POPUP = "button.privpol_popup", + SELECT_MATCHING_REALM_REF = "select_matching_realm_ref", + SELECT_REALM_BACKUP = "select_realm_backup", + BACKUP_DOWNLOAD = "button.backup_download", + MEMBER_LIST_OPTIONS = "button.member_list_options", + MENU_QUICK_PLAY = "button.menu_quick_play", + INVENTORY = "button.inventory", + SELECT_HERO_OFFER = "button.select_hero_offer", + FILTER = "button.filter", + SORT = "button.sort", + EXIT_FILTER_MENU = "button.exit_filter_menu", + CLOSE_FILTER_MENU = "button.close_filter_menu", + FILTER_PACK_TYPE = "button.filter_pack_type", + FILTER_CREATOR = "button.filter_creator", + FILTER_INSTALLED_STATE = "button.filter_installed_state", + CLEAR_ALL_FILTERS = "button.clear_all_filters", + CLOSE_SORT_MENU = "button.close_sort_menu", + REMOVE_FRIEND = "button.remove_friend", + TERMS_AND_CONDITIONS_POPUP = "button.terms_and_conditions_popup", + IOS_ERROR_SIGN_IN = "button.ios_error_sign_in", + MENU_REALM_NINTENDO_FIRST_REALM_PURCHASE_BUTTON = "button.menu_realm_nintendo_first_realm_purchase_button", + RATING_YES_BUTTON = "button.rating_yes_button", + RATING_NO_BUTTON = "button.rating_no_button", + MY_ACCOUNT = "button.my_account", + MANAGE_INVITES_POPUP = "button.manage_invites_popup", + CHAT_AUTOCOMPLETE = "button.chat_autocomplete", + CHAT_AUTOCOMPLETE_BACK = "button.chat_autocomplete_back", + CHAT_PREVIOUS_MESSAGE = "button.chat_previous_message", + CHAT_NEXT_MESSAGE = "button.chat_next_message", + OPEN_CHAT_SETTINGS = "button.open_chat_settings", + CHAT_SETTINGS_MENU_CANCEL = "button.chat_settings_menu_cancel", + TEMP_NAME = "button.temp_name", + STRUCTURE_LOAD = "button.structure_load", + STRUCTURE_SAVE = "button.structure_save", + TABBED_BUY_NOW_BUTTON = "button.tabbed_buy_now_button", + CLEAR_MSA_TOKEN_BUTTON = "button.clear_msa_token_button", + REDIRECT_TO_UPSELL = "button.redirect_to_upsell", + CLOSE_CHAT_SETTINGS = "button.close_chat_settings", + CLOSE_RESULT_PANEL = "button.close_result_panel", + OPEN_FONT_SECTION = "button.open_font_section", + SPLIT_LEFT = "button.split_left", + SPLIT_RIGHT = "button.split_right", + RESET = "button.reset", + MAXIMIZE = "button.maximize", + RESTORE = "button.restore", + EDITOR_BUTTON = "button.editor_button", + SHARE = "button.share", + SCORE_PLAYER_PROFILE_CARD = "button.score_player_profile_card", + NAV_BUTTON = "button.nav_button", + SYNC_NOW = "button.sync_now", + SELECT_SKIN = "button.select_skin", + DOWNLOAD_CANCEL = "button.download_cancel", + PLAY_VIDEO = "button.play_video", + SYNC_LATER = "button.sync_later", + TRADE_TAKE_ALL_PLACE_ALL = "button.trade_take_all_place_all", + TRADE_COALESCE_STACK = "button.trade_coalesce_stack", + BUY = "button.buy", + CONFIRM = "button.confirm", + OPEN_COLOR_SECTION = "button.open_color_section", + OPEN_DEFAULT_CHAT_COLORS = "button.open_default_chat_colors", + OPEN_MENTION_COLORS = "button.open_mention_colors", + SEE_PACK_IN_STORE = "button.see_pack_in_store", + UNDO = "button.undo", + IMPORT_WORLD = "button.import_world", + LAUNCH_WORLD = "button.launch_world", + FIND_MORE_WORLDS = "button.find_more_worlds", + LEAVE_FEEDBACK = "button.leave_feedback", + LIBRARY_ITEM = "button.library_item", + SEEMOREBY = "button.seeMoreBy", + SELECT_BUNDLE_OFFER = "button.select_bundle_offer", + EXPAND_VIEW = "button.expand_view", + MENU_LIBRARY = "button.menu_library", + STORE_HOME = "button.store_home", + LEFT_BUTTON = "button.left_button", + RIGHT_BUTTON = "button.right_button", + OPEN_MUTE_SECTION = "button.open_mute_section", + MENU_FEEDBACK = "button.menu_feedback", + MENU_REALMS_DELETE_REALM = "menu_realms_delete_realm", + SELECT_TEMPLATE = "button.select_template", + SEE_MORE_TEMPLATES = "button.see_more_templates", + UNLOCK_TEMPLATED_WORLD_OPTIONS = "unlock_templated_world_options", + ADD_TREATMENT_BY_NAME = "button.add_treatment_by_name", + RESET_RANDOM_TICK_SPEED = "reset_random_tick_speed", + SIGNIN_1 = "button.signIn", + ACCEPTEULA = "button.acceptEula", + FOCUS_FILLER = "button.focus_filler", + CONFIRM_BUNDLE_PURCHASE = "button.confirm_bundle_purchase", + RESET_CHAT_SETTINGS = "button.reset_chat_settings", + OPEN_CHAT_COLORS = "button.open_chat_colors", + STARTER_BUY_NOW_BUTTON = "button.starter_buy_now_button", + MASTER_BUY_NOW_BUTTON = "button.master_buy_now_button", + PACK_SELECT = "button.pack_select", + DEV_RESET_DATE_BUTTON = "dev_reset_date_button", + GRINDSTONE_TAKE_ALL_PLACE_ALL = "button.grindstone_take_all_place_all", + GRINDSTONE_COALESCE_STACK = "button.grindstone_coalesce_stack", + PATTERN_SELECT = "button.pattern_select", + LOOM_RESULT_TAKE_ALL_PLACE_ALL = "button.loom_result_take_all_place_all", + IS_HOVERED = "button.is_hovered", + STONE_SELECT = "button.stone_select", + STONECUTTER_RESULT_TAKE_ALL_PLACE_ALL = "button.stonecutter_result_take_all_place_all", + TRADE_SELECT = "button.trade_select", + TRADE_SECONDARY_SELECT = "button.trade_secondary_select", + TRADE_TOGGLE_HOVERED = "button.trade_toggle_hovered", + TRADE_DETAILS = "button.trade_details", + TRADE_DETAILS_1 = "button.trade_details_1", + TRADE_DETAILS_2 = "button.trade_details_2", + ENCHANTMENT_DETAILS = "button.enchantment_details", + TRADE = "button.trade", + UPDATE = "button.update", + DEV_UPDATE_OVERRIDE_VERSION_BUTTON = "dev_update_override_version_button", + DEBUG_REFRESH_POPUP = "button.debug_refresh_popup", + DEBUG_RESET = "button.debug_reset", + DEBUG_TOGGLE_IOS = "button.debug_toggle_ios", + MENU_CHOOSE_REALM = "button.menu_choose_realm", + ACTIVE_LESSON_JOIN = "button.active_lesson.join", + ACTIVE_LESSON_START = "button.active_lesson.start", + ACTIVE_LESSON_CONTINUE = "button.active_lesson.continue", + ACTIVE_LESSON_RESTART = "button.active_lesson.restart", + ACTIVE_LESSON_TRY_IT_NOW = "button.active_lesson.try_it_now", + ACTIVE_LESSON_LOAD_LINK = "button.active_lesson.load_link", + LESSON_ITEM = "button.lesson_item", + APPLY_TO_REALM = "button.apply_to_realm", + MENU_COURSES = "button.menu_courses", + MENU_TUTORIAL = "button.menu_tutorial", + SWITCH_ACCOUNTS = "button.switch_accounts", + STRUCTURE_3D_EXPORT = "button.structure_3D_export", + TEMPLATE_IMAGE_PICKER_BUTTON = "template_image_picker_button", + TEMPLATE_LOCALIZATION_PICKER_BUTTON = "template_localization_picker_button", + LEAK_MEMORY = "button.leak_memory", + OPEN_CONTENT_LOG_HISTORY = "button.open_content_log_history", + CLOSE_SHARE_POPUP = "button.close_share_popup", + NESTED_BACKGROUND = "button.nested_background", + PLAY_ON_REALM_CLOSE = "button.play_on_realm_close", + PLAYWITHFRIENDS = "button.playWithFriends", + PLAYSOLO = "button.playSolo", + ADDAPPEARANCE = "button.addAppearance", + TRY_EXITING = "button.try_exiting", + PRESSEDARROWLEFT = "button.pressedArrowLeft", + PRESSEDARROWRIGHT = "button.pressedArrowRight", + PREVIEW_SKIN = "button.preview_skin", + SUBCATEGORY_BUTTON_HOVERED = "button.subcategory_button_hovered", + PIECE_BUTTON_HOVERED = "button.piece_button_hovered", + ASSET_BUTTON_HOVERED = "button.asset_button_hovered", + IS_APPEARANCE_STATUS_HOVERED = "button.is_appearance_status_hovered", + TO_PROFILE_OR_SKINS_SCREEN = "button.to_profile_or_skins_screen", + ACTIVE_LESSON_POPUP_CLOSE = "button.active_lesson.popup_close", + LOCKED_TOOLTIP_IS_HOVERED = "locked_tooltip.is_hovered", + BUTTON = "button.button", + TEN_PLAYER = "button.ten_player", + TWO_PLAYER = "button.two_player", + FAQ_SCREEN = "button.faq_screen", + ACTIVE_LESSON_HOST = "button.active_lesson.host", + MENU_CUSTOM_WORLD_TEMPLATE_CLICKED = "button.menu_custom_world_template_clicked", + DAYONEEXPERIENCE_NEXT_SCREEN = "dayOneExperience.next_screen", + WORLD_PICKER_SKIP = "button.world_picker_skip", + GENERATE_JOINCODE = "button.generate_joincode", + STOP_HOSTING = "button.stop_hosting", + START_HOSTING = "button.start_hosting", + MENU_QUIZ = "button.menu_quiz", + REMOVE_PLAYER_BUTTON = "remove_player_button", + VIEW_WORLDS = "button.view_worlds", + CREATE_NEW_NEW = "button.create_new.new", + CREATE_NEW_FROM_TEMPLATE = "button.create_new.from_template", + VIEW_LIBRARY = "button.view_library", + CREATE_NEW = "button.create_new", + JOIN_WORLD_POPUP = "button.join_world_popup", + IMPORT = "button.import", + TEMPLATES_LOCAL_TEMPLATE = "button.templates.local_template", + TEMPLATES_VIEW_MORE = "button.templates.view_more", + WORLDS_NEW_WORLD_NEW = "button.worlds.new_world.new", + WORLDS_NEW_WORLD_TEMPLATE = "button.worlds.new_world.template", + WORLDS_NEW_WORLD = "button.worlds.new_world", + WORLDS_ENTRY_PLAY = "button.worlds.entry.play", + WORLDS_ENTRY_HOST = "button.worlds.entry.host", + WORLDS_ENTRY_SETTINGS = "button.worlds.entry.settings", + WORLDS_WORLD_BUTTON = "button.worlds.world_button", + IMMERSIVE_READER = "button.immersive_reader", + ERROR_TRY_AGAIN = "button.error.try_again", + JOIN_SERVER = "button.join_server", + ENTERED_ENTRIES = "button.entered_entries", + ENTRY_GRID_BUTTON = "button.entry_grid_button", + ENTRY_CLEAR = "button.entry_clear", + ENTRY_CONFIRM = "button.entry_confirm", + ENTRY_IP = "button.entry_ip", + CONNECTING_CANCEL = "button.connecting_cancel", + JOIN_WORLD = "button.join_world", + FOUND_CANCEL = "button.found_cancel", + DEBUG_BUTTON = "button.debug_button", + ERROR_TRY_AGAIN_1 = "button.error_try_again", + TAKE_QUIZ = "button.take_quiz", + SHARE_WORLD_LINK = "button.share_world_link", + ACTIVE_LESSON_JOIN_SERVER = "button.active_lesson.join_server", + ACTIVE_LESSON_JOIN_IP = "button.active_lesson.join_ip", + STAR_TOGGLE = "button.star_toggle", + REALMS_PLUS = "button.realms_plus", + IGNORE_ME = "button.ignore_me", + READ_TOGGLE = "button.read_toggle", + REAL_MONEY_PURCHASE = "button.real_money_purchase", + COIN_PURCHASE = "button.coin_purchase", + FEATURED_SKIN_PACK_PRESSED = "button.featured_skin_pack_pressed", + CHANGE_HEIGHT = "button.change_height", + CHANGE_ARM_SIZE = "button.change_arm_size", + SWAP_COLOR_CHANNEL_RIGHT = "button.swap_color_channel_right", + SWAP_COLOR_CHANNEL_LEFT = "button.swap_color_channel_left", + TOGGLE_SKIN_COLOR_PICKER = "button.toggle_skin_color_picker", + SWAP_TO_LEFT_LIMB = "button.swap_to_left_limb", + SWAP_TO_RIGHT_LIMB = "button.swap_to_right_limb", + CHANGE_PIECE_COLOR = "button.change_piece_color", + NONE_PIECE_OPTION = "button.none_piece_option", + CYCLE_FEATURED_CONTENT = "button.cycle_featured_content", + SUBCATEGORY_SELECTED = "button.subcategory_selected", + BODY_CATEGORY_SELECTED = "button.body_category_selected", + BODY_CATEGORY_UNSELECTED = "button.body_category_unselected", + STYLE_CATEGORY_SELECTED = "button.style_category_selected", + STYLE_CATEGORY_UNSELECTED = "button.style_category_unselected", + SKIN_SELECTED_SKINS_PAGE = "button.skin_selected_skins_page", + SKIN_SELECTED = "button.skin_selected", + EXPAND_SKIN_PACK = "button.expand_skin_pack", + DEFAULT_SKIN_SELECTED = "button.default_skin_selected", + SKIN_PACK_CATEGORY_TO_OWNED = "button.skin_pack_category_to_owned", + SKIN_PACK_CATEGORY_UNSELECTED = "button.skin_pack_category_unselected", + SKIN_PACK_CATEGORY_SELECTED = "button.skin_pack_category_selected", + MENU_LEGACY_WORLD_ITEM_DELETE = "button.menu_legacy_world_item_delete", + SHOW_CAPES = "button.show_capes", + MANAGE_APPEARANCE = "button.manage_appearance", + EDIT_APPEARANCE_PRESET = "button.edit_appearance_preset", + RANDOMIZE_APPEARANCE = "button.randomize_appearance", + DELETE_APPEARANCE_PRESET = "button.delete_appearance_preset", + RETRY_APPEARANCE_PRESET = "button.retry_appearance_preset", + ACHIEVEMENTS = "button.achievements", + SETTINGS = "button.settings", + MORE_INFO = "button.more_info", + RENEW = "button.renew", + MENU_REALMS_MANAGE_SUBSCRIPTIONS = "menu_realms_manage_subscriptions", + CONTINUE_BUTTON = "button.continue_button", + VIEWPACKS = "button.viewpacks", + LAUNCH_EDITIONS = "button.launch_editions", + MENU_CROSSPLATFORM = "button.menu_crossplatform", + FILTER_OFFER_TYPE = "button.filter_offer_type", + COPY_SHARE_LINK = "button.copy_share_link", + LOAD_GAME = "button.load_game", + RETURN = "button.return", + MENU_REALMS_PLUS_TEMPLATE_CLICKED = "button.menu_realms_plus_template_clicked", + MORE_REALMS_PLUS_TEMPLATES = "button.more_realms_plus_templates", + MORE_CUSTOM_TEMPLATES = "button.more_custom_templates", + CLEAR_PLAYER_DATA = "clear_player_data", + PLAY_WORLD_ON_REALM_BUTTON = "play_world_on_realm_button", + PLAY_WORLD_EDU_BUTTON = "play_world_edu_button", + DEV_DELETE_ALL_PERSONAS = "dev_delete_all_personas", + DEV_DELETE_LEGACY_PERSONA = "dev_delete_legacy_persona", + RESET_DAY_ONE_EXPERIENCE = "button.reset_day_one_experience", + OPEN_CORE_UI_TESTS = "button.open_core_ui_tests", + CREDITS = "button.credits", + CLEAR_CONTENT_LOG_FILES = "button.clear_content_log_files", + VIEW_ACCOUNT_ERRORS = "button.view_account_errors", + OPEN_CORE_UI_DOCS = "button.open_core_ui_docs", + ACTION_BUTTON = "button.action_button", + VIEW_ALL_PACKS = "button.view_all_packs", + UNLINK = "button.unlink", + PREVIOUS_FRIENDS_PAGE = "button.previous_friends_page", + NEXT_FRIENDS_PAGE = "button.next_friends_page", + FAKE_BUTTON = "button.fake_button", + PROCEED = "button.proceed", + TO_PROFILE_SCREEN = "button.to_profile_screen", + DEV_RESET_ONLINE_SAFETY_OPTION = "button.dev_reset_online_safety_option", + UNLINK_MSA = "button.unlink_msa", + EMOTE_SELECTED = "button.emote_selected", + REBIND_MODE = "button.rebind_mode", + DRESSING_ROOM = "button.dressing_room", + KEY_EMOTE = "key.emote", + SELECT_EMOTE_SLOT_0 = "button.select_emote_slot_0", + SELECT_EMOTE_SLOT_1 = "button.select_emote_slot_1", + SELECT_EMOTE_SLOT_2 = "button.select_emote_slot_2", + SELECT_EMOTE_SLOT_3 = "button.select_emote_slot_3", + SELECT_EMOTE_SLOT_4 = "button.select_emote_slot_4", + SELECT_EMOTE_SLOT_5 = "button.select_emote_slot_5", + NAVIGATE_TO_PERSONA = "button.navigate_to_persona", + CANCEL_PURCHASE_SHOW_DEMO_CHOICE = "button.cancel_purchase_show_demo_choice", + CANCEL_JOIN_REALM = "button.cancel_join_realm", + SERVICE = "button.service", + REBIND_EMOTE = "button.rebind_emote", + EXIT_DONE = "button.exit_done", + SUNSETTING_MOREINFO = "sunsetting.moreInfo", + USER_RATING_STAR_TOGGLE = "button.user_rating_star_toggle", + SELECT_BUNDLE_SUMMARY_OFFER = "button.select_bundle_summary_offer", + KICK = "button.kick", + BAN = "button.ban", + VIEW_ACHIEVEMENT = "button.view_achievement", + COLLECT_ACHIEVEMENT = "button.collect_achievement", + CYCLE_FEATURED_SKINS_LEFT = "button.cycle_featured_skins_left", + CYCLE_FEATURED_SKINS_RIGHT = "button.cycle_featured_skins_right", + TO_REALMS_PLUS = "button.to_realms_plus", + CYCLE_FEATURED_PIECES_LEFT = "button.cycle_featured_pieces_left", + CYCLE_FEATURED_PIECES_RIGHT = "button.cycle_featured_pieces_right", + CATEGORY_SELECTED = "button.category_selected", + CATEGORY_UNSELECTED = "button.category_unselected", + OWNED_CATEGORY_SELECTED = "button.owned_category_selected", + OWNED_CATEGORY_UNSELECTED = "button.owned_category_unselected", + PURCHASABLE_CATEGORY_SELECTED = "button.purchasable_category_selected", + PURCHASABLE_CATEGORY_UNSELECTED = "button.purchasable_category_unselected", + REALMS_PLUS_CATEGORY_SELECTED = "button.realms_plus_category_selected", + REALMS_PLUS_CATEGORY_UNSELECTED = "button.realms_plus_category_unselected", + EMOTE_SLOT_SELECTED = "button.emote_slot_selected", + PLAY_EMOTE_AGAIN = "button.play_emote_again", + REMOVE_EMOTE = "button.remove_emote", + DESCRIPTION_READ_TOGGLE = "button.description_read_toggle", + NEWS_READ_TOGGLE = "button.news_read_toggle", + IMPORT_BETA_RETAIL_LOCAL_WORLD = "button.import_beta_retail_local_world", + REALMS_WARNING_MORE_INFO = "button.realms_warning_more_info", + IMPORT_BETA_RETAIL_LEGACY_WORLD = "button.import_beta_retail_legacy_world", + NAVIGATE_SCREENSHOTS_RIGHT = "button.navigate_screenshots_right", + NAVIGATE_SCREENSHOTS_LEFT = "button.navigate_screenshots_left", + MENU_NETWORK_SERVER_ITEM = "button.menu_network_server_item", + JOIN_SERVER_ANYWAY = "button.join_server_anyway", + CANCEL_JOIN_SERVER = "button.cancel_join_server", + FEATURED_WORLD = "button.featured_world", + PLAY_BUTTON_TARGET = "$play_button_target", + PROMOTION_PAGE = "button.promotion_page", + NAVIGATE_CAROUSEL_LEFT = "button.navigate_carousel_left", + ITEM_ACTION = "button.item_action", + ITEM_PDP = "button.item_pdp", + STRUCTURE_DETECT = "button.structure_detect", + NO_INTERACTION = "button.no_interaction", + FONT_LICENSE_POPUP = "button.font_license_popup", + RESET_TO_DEFAULT_PROGRESSIONS = "button.reset_to_default_progressions", + REMOVE_PROGRESSION = "button.remove_progression", + CLEAR_PROGRESSION_LIST = "button.clear_progression_list", + DEV_ADD_MOCK_HTTP_RULES = "dev_add_mock_http_rules", + DEV_REMOVE_ALL_MOCK_HTTP_RULES = "dev_remove_all_mock_http_rules", + ADD_PROGRESSION_BY_NAME = "button.add_progression_by_name", + EXIT_VERBOSE_STATE = "button.exit_verbose_state", + TOGGLE_VERBOSE_STATE = "button.toggle_verbose_state", + CONTROLLER_HOVER_OPEN_VERBOSE_VIEW = "button.controller_hover_open_verbose_view", + GOTODOWNLOAD = "button.goToDownload", + DEBUG_OPEN_JSON_POPUP = "button.debug_open_json_popup", + SHOWELIGIBILITY = "button.showEligibility", + OPEN_DEMO_SCREEN = "button.open_demo_screen", + MENU_CHOOSE_SLOT = "button.menu_choose_slot", + CLOSE = "button.close", + RETRY = "button.retry", + SERVICE_AGREEMENT = "button.service_agreement", + UPLOAD_WORLD = "button.upload_world", + FEEDBACK = "button.feedback", + INTERACTION = "button.interaction", + PURCHASE_WITH_CURRENCY = "button.purchase_with_currency", + INTERACT_BUTTON = "button.interact_button", + COMMON_BUTTONS_NEW_UI_FORM_FITTING_BUTTON_PANEL = "common_buttons.new_ui_form_fitting_button_panel", + PURCHASE_WITH_COINS = "button.purchase_with_coins", + TOGGLE_SKIN_CATEGORY_SELECTED = "toggle.skin_category_selected", + SHOW_PROFILE_SETTINGS = "button.show_profile_settings", + CREATE_ON_REALMS_BUTTON = "button.create_on_realms_button", + CLOUD_UPLOAD = "button.cloud_upload", + VIEW_THIRD_PARTY_SERVER_OFFERS = "button.view_third_party_server_offers", + MENU_SIGN_IN_TO_VIEW_REALMS = "button.menu_sign_in_to_view_realms", + PORTFOLIO_CONVERT_LEFT = "button.portfolio_convert_left", + PORTFOLIO_CONVERT_RIGHT = "button.portfolio_convert_right", + PORTFOLIO_ADD_PHOTO = "button.portfolio_add_photo", + CREATE_WORLD_BUTTON = "create_world_button", + PLAY_REALM = "button.play_realm", + EDIT_REALM = "button.edit_realm", + EDIT_WORLD = "button.edit_world", + ACTIVATE_WORLD = "button.activate_world", + WORLD_SLOT = "button.world_slot", + TOGGLE_SIDEBAR_OPTION_SELECTION = "toggle.sidebar_option_selection", + SELECT_NAV_OPTION = "button.select_nav_option", + SELECT_SCREEN_NAV_BUTTON_OPTION = "button.select_screen_nav_button_option", + LEARN_MORE = "button.learn_more", + TOOLBOX_MODE = "button.toolbox_mode", + FEATURED_CATEGORY = "button.featured_category", + TURN_CHARACTER_SELECT_DOLL = "button.turn_character_select_doll", + SCROLL_UP = "button.scroll_up", + SCROLL_DOWN = "button.scroll_down", + SCROLL_RIGHT = "button.scroll_right", + SCROLL_LEFT = "button.scroll_left", + TURN_RIGHT = "button.turn_right", + TURN_LEFT = "button.turn_left", + TAPPED_BUNDLE_ITEM_ICON = "button.tapped_bundle_item_icon", + HIDE_BUNDLE_TOOLTIP = "button.hide_bundle_tooltip", + TAPPED_BUNDLE_TOOLTIP = "button.tapped_bundle_tooltip", + AI_LESSON_CRAFTER = "button.ai_lesson_crafter", + EXIT_GIFT_SCREEN = "button.exit_gift_screen", + CYCLE_PROMOTIONS_LEFT = "button.cycle_promotions_left", + CYCLE_PROMOTIONS_RIGHT = "button.cycle_promotions_right", + NAVIGATE_CAROUSEL_RIGHT = "button.navigate_carousel_right", + MENU_SWAP_VR_MODE = "button.menu_swap_vr_mode", + SMITHING_TABLE_TAKE_ALL_PLACE_ALL = "button.smithing_table_take_all_place_all", + SMITHING_TABLE_COALESCE_STACK = "button.smithing_table_coalesce_stack", + RTX_WARNING_IS_HOVERED = "button.rtx_warning_is_hovered", + CLEAR_SELECTED_RECIPE = "button.clear_selected_recipe", + MENU_STORE_ERROR = "button.menu_store_error", + COLOR_HOVERED = "button.color_hovered", + CLOSE_BUTTON = "button.close_button", + EXIT_OR_TOGGLE = "button.exit_or_toggle", + CYCLE_SKINS_LEFT = "button.cycle_skins_left", + CYCLE_SKINS_RIGHT = "button.cycle_skins_right", + LOADING_OUTLINE_UNHOVERED = "button.loading_outline_unhovered", + SLIDER_SMALL_DECREASE = "slider.small_decrease", + SLIDER_SMALL_INCREASE = "slider.small_increase", + SLIDER_SELECTED = "slider.selected", + SLIDER_DESELECTED = "slider.deselected", + CONTROLLER_BACK = "button.controller_back", + ANVIL_TAKE_HALF_PLACE_ONE = "button.anvil_take_half_place_one", + CANCEL_PURCHASE = "button.cancel_purchase", + CANCELSERVICEPACK = "button.cancelServicePack", + CARTOGRAPHY_RESULT_TAKE_HALF_PLACE_ONE = "button.cartography_result_take_half_place_one", + CHAT_PASTE_COORDINATES = "button.chat_paste_coordinates", + CLICK_AUTOCOMPLETE = "button.click_autocomplete", + LIKE_BUTTON = "button.like_button", + COMMENT_OPTIONS = "button.comment_options", + COMMENT_GRID_LIKE = "button.comment_grid_like", + COMMENT_FEED_OPTIONS = "button.comment_feed_options", + CLOSE_COMMENTS = "button.close_comments", + CLEAR = "button.clear", + PURCHASEERRORBACK = "button.purchaseErrorBack", + DISMISS = "button.dismiss", + SHOW_ERROR_DETAILS = "button.show_error_details", + COPY_LOG_PATH_TO_CLIPBOARD = "button.copy_log_path_to_clipboard", + EXPAND = "button.expand", + HIDE_ERROR_DETAILS = "button.hide_error_details", + EMOTE_WHEEL_EXIT_NON_GAMEPAD = "button.emote_wheel_exit_non_gamepad", + ADDONS_FAQ = "button.addons_faq", + BACK_TO_SELECTOR_AREA = "button.back_to_selector_area", + FEED_LIKE = "button.feed_like", + FEED_OPTIONS = "button.feed_options", + CLOSE_FEED = "button.close_feed", + INFO = "button.info", + GRINDSTONE_TAKE_HALF_PLACE_ONE = "button.grindstone_take_half_place_one", + HOTBAR_SELECT = "button.hotbar_select", + CONFIRM_RESET = "button.confirm_reset", + CANCEL_RESET = "button.cancel_reset", + CONFIRM_CLOSE_WITHOUT_SAVING = "button.confirm_close_without_saving", + CANCEL_CLOSE_WITHOUT_SAVING = "button.cancel_close_without_saving", + ARROW_UP = "button.arrow_up", + ARROW_KEY = "button.arrow_key", + ARROW_DOWN = "button.arrow_down", + ARROW_LEFT = "button.arrow_left", + ARROW_RIGHT = "button.arrow_right", + EXIT = "button.exit", + OPACITY = "button.opacity", + SIZE = "button.size", + OPTION_RESET = "button.option_reset", + CONTAINER_AUTO_DESTROY = "button.container_auto_destroy", + RECIPE_SELECT = "button.recipe_select", + RECIPE_SECONDARY = "button.recipe_secondary", + RECIPE_TERTIARY = "button.recipe_tertiary", + CRAFTING_OUTPUT_PRIMARY = "button.crafting_output_primary", + CRAFTING_OUTPUT_SECONDARY = "button.crafting_output_secondary", + CRAFTING_OUTPUT_TERTIARY = "button.crafting_output_tertiary", + SEARCH_BAR_HOVERED = "button.search_bar_hovered", + SEARCH_BAR_CLEAR = "button.search_bar_clear", + SEARCH_BAR_SELECTED = "button.search_bar_selected", + SEARCH_BAR_DESELECTED = "button.search_bar_deselected", + FILTER_TOGGLE_HOVERED = "button.filter_toggle_hovered", + OK = "button.ok", + LOOM_RESULT_TAKE_HALF_PLACE_ONE = "button.loom_result_take_half_place_one", + CLOSE_MANAGE_FEED = "button.close_manage_feed", + EXIT_BASIC = "button.exit_basic", + EXIT_STUDENT_EDIT = "button.exit_student_edit", + EXIT_MAXIMIZED = "button.exit_maximized", + EXIT_ADVANCED = "button.exit_advanced", + FEEDBACK_BUTTON_PRESSED = "button.feedback_button_pressed", + MUST_EXIT_WORLD_ERROR_DIALOG = "button.must_exit_world_error_dialog", + PURCHASE_ERROR_DIALOG = "button.purchase_error_dialog", + SAVE = "button.save", + SEND_FEEDBACK = "button.send_feedback", + EXPAND_TOGGLE = "button.expand_toggle", + IN_CSB_BUTTON = "button.in_csb_button", + TAG = "button.tag", + PLAYER_COUNT = "button.player_count", + LANGUAGE = "button.language", + GENRE = "button.genre", + SUBGENRE = "button.subgenre", + CAST_SELECT = "button.cast_select", + CAST_BACK = "button.cast_back", + CAST_SINGLE_CHARACTER_BUTTON = "button.cast_single_character_button", + CLOSE_ENTRY_PROMPT_DIALOG = "button.close_entry_prompt_dialog", + CAST_LEFT_SELECT = "button.cast_left_select", + CAST_RIGHT_SELECT = "button.cast_right_select", + CAST_SUBPAGE_RIGHT = "button.cast_subpage_right", + CAST_SUBPAGE_LEFT = "button.cast_subpage_left", + ITERATE_SELECTION_LEFT = "button.iterate_selection_left", + ITERATE_SELECTION_RIGHT = "button.iterate_selection_right", + EMOTE_HOVERED = "button.emote_hovered", + EMOTE_HOVERED_VIA_ANALOG = "button.emote_hovered_via_analog", + REDEEM_REALMS_ITEM = "button.redeem_realms_item", + SEE_REALMS_SUBSCRIPTION = "button.see_realms_subscription", + EQUIP_PIECE = "button.equip_piece", + EQUIP_SIZE = "button.equip_size", + REALMS_PACK_MORE_INFO = "button.realms_pack_more_info", + CUSTOM_SKIN_INFO_POPUP = "button.custom_skin_info_popup", + INFO_POPUP = "button.info_popup", + PERSONA_ITEM_HOVERED = "button.persona_item_hovered", + PERSONA_ITEM_UNHOVERED = "button.persona_item_unhovered", + APPLY_PERSONA_PIECE = "button.apply_persona_piece", + CATEGORY_BUTTON_HOVERED = "button.category_button_hovered", + PERSONA_CONFIRM_SWITCHING = "button.persona_confirm_switching", + GET_MORE_SKINS = "button.get_more_skins", + SHOW_MORE_SKIN_PACKS = "button.show_more_skin_packs", + APPLY_CAPE = "button.apply_cape", + EMOTE_SLOT_BUTTON_HOVERED = "button.emote_slot_button_hovered", + SELECT_EMOTE = "button.select_emote", + EMOTE_SLOT_POPUP_CLOSE = "button.emote_slot_popup_close", + COIN_WALLET_OR_EMOTE_PREVIEW = "button.coin_wallet_or_emote_preview", + SELECT_APPEARANCE = "button.select_appearance", + DIFFERENCES_INFORMATION_BUTTON = "button.differences_information_button", + REDIRECT_BUTTON = "button.redirect_button", + CLOSE_EXPANDED_APPEARANCE_VIEW = "button.close_expanded_appearance_view", + PIECE_HOVERED = "button.piece_hovered", + PIECE_UNHOVERED = "button.piece_unhovered", + MENU_LEGACY_WORLD_ITEM_MIGRATE = "button.menu_legacy_world_item_migrate", + OPEN_ACCOUNT_SETTING_GAMECORE = "button.open_account_setting_gamecore", + SWITCH_TO_NEW_UI = "button.switch_to_new_ui", + SWITCH_TO_NEW_UI_SERVERS = "button.switch_to_new_ui_servers", + FREE_PREVIEW_REALM_AVAILABLE = "button.free_preview_realm_available", + NO_LOCAL_WORLDS_LAUNCH_HELP = "button.no_local_worlds_launch_help", + EDITOR_SETTINGS = "button.editor_settings", + CLOSE_DIFFERENCES_DIALOG = "button.close_differences_dialog", + CONFIRM_DELETE = "button.confirm_delete", + OPEN_DEFAULT_CHARACTER_SELECTION_MODAL = "button.open_default_character_selection_modal", + CREATE_SELECTED_PERSONA = "button.create_selected_persona", + CLOSE_EDIT_APPEARANCE_PRESET = "button.close_edit_appearance_preset", + CONFIRM_DOWNLOAD = "button.confirm_download", + DOWNLOAD_RESOURCEPACK = "button.download_resourcepack", + DENY_PACKS = "button.deny_packs", + MENU_RETRY = "button.menu_retry", + EDUCLOUD_CLOUD_SUPPORT = "button.eduCloud_cloud_support", + EDUCLOUD_BACKUP_SUPPORT = "button.eduCloud_backup_support", + EDUCLOUD_GENERIC_DOWNLOAD_ERROR_SUPPORT = "button.eduCloud_generic_download_error_support", + EDUCLOUD_UNAUTHORIZED_DOWNLOAD_ERROR_SUPPORT = "button.eduCloud_unauthorized_download_error_support", + VIEW_FEED = "button.view_feed", + CLOSE_SCREENSHOT_PICKER = "button.close_screenshot_picker", + DROPDOWN_NAV_TOGGLE_ON_HOVER = "button.dropdown_nav_toggle_on_hover", + CONTROLLER_HOVER_CLOSE_VERBOSE_VIEW = "button.controller_hover_close_verbose_view", + EXIT_VERBOSE_STATE_BG = "button.exit_verbose_state_bg", + SMITHING_TABLE_TAKE_HALF_PLACE_ONE = "button.smithing_table_take_half_place_one", + GATHERING = "button.gathering", + MENU_INBOX = "button.menu_inbox", + MENU_GET_STARTED = "button.menu_get_started", + OPEN_MAIN_MENU = "button.open_main_menu", + MANAGE_ACCOUNT = "button.manage_account", + MENU_REALMS = "button.menu_realms", + MENU_SERVERS = "button.menu_servers", + CLOSE_CLOUD_UPLOAD_PROMPT = "button.close_cloud_upload_prompt", + STONECUTTER_RESULT_TAKE_HALF_PLACE_ONE = "button.stonecutter_result_take_half_place_one", + CLEAR_CACHE = "button.clear_cache", + SYNC_LEGACY_WORLDS = "button.sync_legacy_worlds", + SYNC_RETAILTOPREVIEW_WORLDS = "button.sync_retailtopreview_worlds", + FAQ = "button.faq", + NEXT = "button.next", + START_TRANSFER = "button.start_transfer", + MAIN_MENU = "button.main_menu", + SEARCH_HEADER_CLEAR = "button.search_header_clear", + TAB_NAME = "button.tab_name", + NAVIGATE_FIRST_PAGE = "button.navigate_first_page", + GO_TO_TOP = "button.go_to_top", + NAVIGATE_PREVIOUS_PAGE = "button.navigate_previous_page", + NAVIGATE_NEXT_PAGE = "button.navigate_next_page", + SELECT_BLADE_OFFER = "button.select_blade_offer", + CLOSE_POPUP = "button.close_popup", + NONE = "button.none", + NAVIGATE_EDIT_WORLD = "button.navigate_edit_world", + COPY_LOCAL_WORLD = "button.copy_local_world", + NAVIGATE_EDIT_REALMS_WORLD = "button.navigate_edit_realms_world", + DOWNLOAD_REALMS_WORLD = "button.download_realms_world", + ADDON_SELECT_WORLD = "button.addon_select_world", + NAVIGATE_CREATE_NEW_WORLD = "button.navigate_create_new_world", + ADDON_COPY_WORLD_WARNING = "button.addon_copy_world_warning", + ADDON_COPY_REALMS_WARNING = "button.addon_copy_realms_warning", + BOTTOM_MODAL = "button.bottom_modal", + CLEAR_PACK_TYPE_FILTERS = "button.clear_pack_type_filters", + SELECT_PROMOTION_OFFER = "button.select_promotion_offer", + ALL = "button.all", + ADDONS = "button.addons", + SKINS = "button.skins", + TEXTURES = "button.textures", + ROW_BUTTON = "button.row_button", + GO_BACK = "button.go_back", + CLAIM_ALL = "button.claim_all", + SELECT_PROMOTION_ITEM = "button.select_promotion_item", + PLATFORM_RESTRICTED = "button.platform_restricted", + STRUCTURE_IMPORT = "button.structure_import", + TOAST_INTERACTION = "button.toast_interaction", + TRADE_TAKE_HALF_PLACE_ONE = "button.trade_take_half_place_one", + SLIDER_SKIP_TRACK = "button.slider_skip_track", + TEXT_EDIT_BOX_CLEAR = "button.text_edit_box_clear", + TEXT_EDIT_BOX_HOVERED = "button.text_edit_box_hovered", + TEXT_EDIT_BOX_SELECTED = "button.text_edit_box_selected", + TEXT_EDIT_BOX_DESELECTED = "button.text_edit_box_deselected", + LIBRARY_HOME = "button.library_home", + CANCEL_ADD_RESOURCE_BUTTON = "button.cancel_add_resource_button", + RESOURCE_BUTTON = "button.resource_button", + ADD_RESOURCE_LEARN_MORE = "button.add_resource_learn_more", + LEAVE_ADD_RESOURCE = "button.leave_add_resource", + DONE_ADD_RESOURCE_BUTTON = "button.done_add_resource_button", + DELETE_RESOURCE_BUTTON = "button.delete_resource_button", + MANAGE_ACCESS = "button.manage_access", + TEAMS_SHARE = "button.teams_share", + MAIL_SHARE = "button.mail_share", + CLASSROOMS_SHARE = "button.classrooms_share", + LIBRARY_SEARCH = "button.library_search", + VIEW_TOGGLE = "button.view_toggle", + UPDATE_AND_PLAY = "button.update_and_play", + SELECT_WORLDS = "button.select_worlds", +} \ No newline at end of file diff --git a/src/types/enums/ClipDirection.ts b/src/types/enums/ClipDirection.ts new file mode 100644 index 0000000..31605d4 --- /dev/null +++ b/src/types/enums/ClipDirection.ts @@ -0,0 +1,7 @@ +export enum ClipDirection { + LEFT = "left", + RIGHT = "right", + UP = "up", + DOWN = "down", + CENTER = "center", +} \ No newline at end of file diff --git a/src/types/enums/CollectionName.ts b/src/types/enums/CollectionName.ts new file mode 100644 index 0000000..5c1b037 --- /dev/null +++ b/src/types/enums/CollectionName.ts @@ -0,0 +1,169 @@ +export enum CollectionName { + LANGUAGES = "languages", + ACTIONS_COLLECTION = "actions_collection", + TREATMENT_COLLECTION = "treatment_collection", + FEATURE_TOGGLES = "feature_toggles", + FEATURED_ITEM_COLLECTION = "featured_item_collection", + BOSS_BARS = "boss_bars", + FORM_BUTTONS = "form_buttons", + CUSTOM_FORM = "custom_form", + BLOCKED_PLAYERS_COLLECTION = "blocked_players_collection", + CHAT_TEXT_GRID = "chat_text_grid", + BREWING_RESULT_ITEMS = "brewing_result_items", + ACHIEVEMENT_LIST = "achievement_list", + BOOK_PAGES = "book_pages", + PICK_COLLECTION = "pick_collection", + PICK_COLLECTION_INVENTORY = "pick_collection_inventory", + OWNED_LIST = "owned_list", + UNOWNED_LIST = "unowned_list", + FUTURE_PROMO_COLLECTION = "future_promo_collection", + PAST_PROMO_COLLECTION = "past_promo_collection", + AUTO_COMPLETE = "auto_complete", + FONT_COLORS = "font_colors", + REALMS_COLLECTION = "realms_collection", + LIST_COLLECTION = "list_collection", + SLOTS_COLLECTION = "slots_collection", + COIN_PURCHASE_GRID = "coin_purchase_grid", + COMMENT_COLLECTION = "comment_collection", + CONTENT_LOG_MESSAGE = "content_log_message", + CONTENT_LOG_TEXT_GRID = "content_log_text_grid", + CATEGORY_COLLECTION = "category_collection", + OFFER_COLLECTION = "offer_collection", + GAMEPAD_ACTION_ITEMS = "gamepad_action_items", + SERVERS_NETWORK_WORLDS = "servers_network_worlds", + THIRD_PARTY_SERVER_NETWORK_WORLDS = "third_party_server_network_worlds", + LEGACY_WORLDS = "legacy_worlds", + CONTAINER_ITEMS = "container_items", + PERMISSIONS_COLLECTION = "permissions_collection", + SCREENSHOTPICKER_COLLECTION = "screenshotpicker_collection", + ENCHANTING_INPUT_ITEMS = "enchanting_input_items", + ENCHANTING_LAPIS_ITEMS = "enchanting_lapis_items", + HORSE_EQUIP_ITEMS = "horse_equip_items", + CRAFTING_INPUT_ITEMS = "crafting_input_items", + CRAFTING_OUTPUT_ITEMS = "crafting_output_items", + PLAYERS_COLLECTION = "players_collection", + ONLINE_FRIENDS = "online_friends", + OFFLINE_FRIENDS = "offline_friends", + REALMS_WORLDS = "realms_worlds", + LOCAL_WORLDS = "local_worlds", + PENDING_INVITES_COLLECTION = "pending_invites_collection", + REALMS_BRANCH_COLLECTION = "realms_branch_collection", + MEMBERS_COLLECTION = "members_collection", + INVITED_FRIENDS_COLLECTION = "invited_friends_collection", + UNINVITED_FRIENDS_COLLECTION = "uninvited_friends_collection", + UGC_ITEMS = "ugc_items", + HOTBAR_ITEMS = "hotbar_items", + INVENTORY_ITEMS = "inventory_items", + REALM_LIST = "realm_list", + WORLD_LIST = "world_list", + WORLD_TEMPLATES = "world_templates", + INVALID_WORLD_TEMPLATES = "invalid_world_templates", + LOADING_WORLD_TEMPLATES = "loading_world_templates", + COMBINED_HOTBAR_AND_INVENTORY_ITEMS = "combined_hotbar_and_inventory_items", + PHOTOS = "photos", + SPEED = "speed", + HASTE = "haste", + RESIST = "resist", + JUMP = "jump", + STRENGTH = "strength", + REGEN = "regen", + EXTRA = "extra", + CONFIRM = "confirm", + CANCEL = "cancel", + NAVIGATION_TABS = "navigation_tabs", + SKINS_COLLECTION = "skins_collection", + REQUIRED_RESOURCEPACKS = "required_resourcepacks", + OPTIONAL_RESOURCEPACKS = "optional_resourcepacks", + SCREENSHOTS_COLLECTION = "screenshots_collection", + DEFAULT_SKINS_COLLECTION = "default_skins_collection", + RECENT_SKINS_COLLECTION = "recent_skins_collection", + PREMIUM_PACKS_COLLECTION = "premium_packs_collection", + PREMIUM_SKINS_COLLECTION = "premium_skins_collection", + LOADING_PERSONAL_REALMS = "loading_personal_realms", + LOADING_FRIENDS_REALMS = "loading_friends_realms", + OFFERS_COLLECTION = "offers_collection", + MOB_EFFECTS_COLLECTION = "mob_effects_collection", + DEPENDENT_PACKS_PANEL = "dependent_packs_panel", + DEPENDENCY_PANEL = "dependency_panel", + STORAGE_PANEL = "storage_panel", + SEARCH_PANEL = "search_panel", + TAG_FACTORY_COLLECTION = "tag_factory_collection", + STUDENT_BUTTONS_COLLECTION = "student_buttons_collection", + ENCHANT_BUTTONS = "#enchant_buttons", + GAMEPAD_COLLECTION = "gamepad_collection", + KEYBOARD_COLLECTION = "keyboard_collection", + SUGGESTED_OFFERS_COLLECTION = "#suggested_offers_collection", + FEED_COLLECTION = "feed_collection", + MANAGE_FEED_COLLECTION = "manage_feed_collection", + BUTTONS = "buttons", + FRIENDS_NETWORK_WORLDS = "friends_network_worlds", + CROSS_PLATFORM_FRIENDS_NETWORK_WORLDS = "cross_platform_friends_network_worlds", + REALMS_BACKUP_COLLECTION = "realms_backup_collection", + SCOREBOARD_SCORES = "scoreboard_scores", + SCOREBOARD_PLAYERS = "scoreboard_players", + SCOREBOARD_LIST_ICONS = "scoreboard_list_icons", + SCOREBOARD_LIST_NAMES = "scoreboard_list_names", + SCOREBOARD_LIST_SCORES = "scoreboard_list_scores", + SCOREBOARD_LIST_CONNECTIONS = "scoreboard_list_connections", + SCOREBOARD_LIST_BGS = "scoreboard_list_bgs", + SCOREBOARD_LIST_HEALTHS = "scoreboard_list_healths", + HERO_ROW_COLLECTION = "hero_row_collection", + EDITOR_BUTTONS_COLLECTION = "editor_buttons_collection", + HERO_ROW_L2_COLLECTION = "hero_row_l2_collection", + SKIN_PACK_COLLECTION = "skin_pack_collection", + LIBRARY_ITEMS = "library_items", + PACK_ICONS = "pack_icons", + UNUSED_TREATMENT_COLLECTION = "unused_treatment_collection", + EDUCATION_TEMPLATE_COLLECTION = "#education_template_collection", + TRADE_ITEM_1 = "trade_item_1", + TRADE_ITEM_2 = "trade_item_2", + SELL_ITEM = "sell_item", + CONTENT_SECTIONS = "content_sections", + POPULAR_PACKS_COLLECTION = "popular_packs_collection", + PLATFORM_TERMS_COLLECTION = "platform_terms_collection", + REALMS_PLUS_TEMPLATES = "realms_plus_templates", + CUSTOM_WORLD_TEMPLATES = "custom_world_templates", + SKIN_COLORS = "skin_colors", + RATINGS_STAR_COLLECTION = "ratings_star_collection", + PACK_ERRORS = "pack_errors", + ERROR_DEBUG = "error_debug", + ONLINE_XBOX_LIVE_FRIENDS = "online_xbox_live_friends", + OFFLINE_XBOX_LIVE_FRIENDS = "offline_xbox_live_friends", + ONLINE_PLATFORM_FRIENDS = "online_platform_friends", + OFFLINE_PLATFORM_FRIENDS = "offline_platform_friends", + RECIPE_BOOK = "recipe_book", + TEMPLATES_COLLECTION = "templates_collection", + LESSON_ITEMS = "lesson_items", + ACTIVE_TASKS = "active_tasks", + LAN_NETWORK_WORLDS = "lan_network_worlds", + WORLD_COLUMN = "world_column", + WORLD_ROW = "world_row", + TEMPLATE_COLUMN = "template_column", + TEMPLATE_ROW = "template_row", + CREATION_TYPE = "creation_type", + PERMISSION_ROLES = "permission_roles", + BUTTON_COLLECTION = "button_collection", + WORLD_SCREENSHOT_COLLECTION = "world_screenshot_collection", + GIFT_PROMOTION_COLLECTION = "gift_promotion_collection", + CAROUSEL_BAR_COLLECTION = "carousel_bar_collection", + REALMS_PLUS_SUBSCRIPTIONS_COLLECTION = "realms_plus_subscriptions_collection", + ADDITIONAL_REALMS_SUBSCRIPTIONS_COLLECTION = "additional_realms_subscriptions_collection", + MOCK_HTTP_RULES = "mock_http_rules", + PROGRESSION_COLLECTION = "progression_collection", + UI_FEATURE_TOGGLES = "ui_feature_toggles", + DEV_NEW_ACHIEVEMENTS_SCREENS_RADIO = "dev_new_achievements_screens_radio", + EXPERIMENTAL_TOGGLES = "experimental_toggles", + CONTROLS_TOGGLE = "controls_toggle", + FACTORY_COLLECTION = "factory_collection", + COLOR_COLLECTION = "color_collection", + SERVER_GAMES_COLLECTION = "server_games_collection", + SERVER_SCREENSHOT_COLLECTION = "server_screenshot_collection", + BETA_RETAIL_LOCAL_WORLDS = "beta_retail_local_worlds", + BETA_RETAIL_LEGACY_WORLDS = "beta_retail_legacy_worlds", + WORLD_SLOTS = "world_slots", + DEV_NEW_CREATE_WORLD_SCREEN_RADIO = "dev_new_create_world_screen_radio", + OUTPUT_CHAR_COLLECTION = "output_char_collection", + COMPCREATE_INPUT = "compcreate_input", + LABTABLE_INPUT = "labtable_input", + MATREDUCE_OUTPUT = "matreduce_output", +} \ No newline at end of file diff --git a/src/types/enums/Color.ts b/src/types/enums/Color.ts new file mode 100644 index 0000000..2c7d580 --- /dev/null +++ b/src/types/enums/Color.ts @@ -0,0 +1 @@ +export enum Color {} diff --git a/src/types/enums/DebugColor.ts b/src/types/enums/DebugColor.ts new file mode 100644 index 0000000..479f4ab --- /dev/null +++ b/src/types/enums/DebugColor.ts @@ -0,0 +1,10 @@ +export enum DebugColor { + WHITE = "white", + BLACK = "black", + GRAY = "gray", + RED = "red", + BLUE = "blue", + GREEN = "green", + YELLOW = "yellow", + PURPLE = "purple", +} \ No newline at end of file diff --git a/src/types/enums/Easing.ts b/src/types/enums/Easing.ts new file mode 100644 index 0000000..a3bef5f --- /dev/null +++ b/src/types/enums/Easing.ts @@ -0,0 +1,34 @@ +export enum Easing { + LINEAR = "linear", + SPRING = "spring", + IN_QUAD = "in_quad", + OUT_QUAD = "out_quad", + IN_OUT_QUAD = "in_out_quad", + IN_CUBIC = "in_cubic", + OUT_CUBIC = "out_cubic", + IN_OUT_CUBIC = "in_out_cubic", + IN_QUART = "in_quart", + OUT_QUART = "out_quart", + IN_OUT_QUART = "in_out_quart", + IN_QUINT = "in_quint", + OUT_QUINT = "out_quint", + IN_OUT_QUINT = "in_out_quint", + IN_SINE = "in_sine", + OUT_SINE = "out_sine", + IN_OUT_SINE = "in_out_sine", + IN_EXPO = "in_expo", + OUT_EXPO = "out_expo", + IN_OUT_EXPO = "in_out_expo", + IN_CIRC = "in_circ", + OUT_CIRC = "out_circ", + IN_OUT_CIRC = "in_out_circ", + IN_BOUNCE = "in_bounce", + OUT_BOUNCE = "out_bounce", + IN_OUT_BOUNCE = "in_out_bounce", + IN_BACK = "in_back", + OUT_BACK = "out_back", + IN_OUT_BACK = "in_out_back", + IN_ELASTIC = "in_elastic", + OUT_ELASTIC = "out_elastic", + IN_OUT_ELASTIC = "in_out_elastic", +} \ No newline at end of file diff --git a/src/types/enums/FocusNavigationMode.ts b/src/types/enums/FocusNavigationMode.ts new file mode 100644 index 0000000..d13cd1f --- /dev/null +++ b/src/types/enums/FocusNavigationMode.ts @@ -0,0 +1,6 @@ +export enum FocusNavigationMode { + CONTAINED = "contained", + NONE = "none", + CUSTOM = "custom", + STOP = "stop", +} \ No newline at end of file diff --git a/src/types/enums/FontSize.ts b/src/types/enums/FontSize.ts new file mode 100644 index 0000000..7bc06ab --- /dev/null +++ b/src/types/enums/FontSize.ts @@ -0,0 +1,7 @@ +export enum FontSize { + SMALL = "small", + NORMAL = "normal", + MEDIUM = "medium", + LARGE = "large", + EXTRA_LARGE = "extra_large", +} \ No newline at end of file diff --git a/src/types/enums/FontType.ts b/src/types/enums/FontType.ts new file mode 100644 index 0000000..eb58c10 --- /dev/null +++ b/src/types/enums/FontType.ts @@ -0,0 +1,6 @@ +export enum FontType { + DEFAULT = "default", + RUNE = "rune", + UNICODE = "unicode", + SMOOTH = "smooth", +} \ No newline at end of file diff --git a/src/types/enums/GlobalVariables.ts b/src/types/enums/GlobalVariables.ts new file mode 100644 index 0000000..c315bfb --- /dev/null +++ b/src/types/enums/GlobalVariables.ts @@ -0,0 +1,58 @@ +export enum GlobalVariables { + STORE_DISABLED = "$store_disabled", + GAME_PAD = "$game_pad", + MOUSE = "$mouse", + TOUCH = "$touch", + TRIAL = "$trial", + BUILD_PLATFORM_UWP = "$build_platform_UWP", + WIN10_EDITION = "$win10_edition", + IGNORE_ADD_SERVERS = "$ignore_add_servers", + DISABLE_GAMERTAG_CONTROLS = "$disable_gamertag_controls", + CONSOLE_EDITION = "$console_edition", + OSX_EDITION = "$osx_edition", + POCKET_EDITION = "$pocket_edition", + EDUCATION_EDITION = "$education_edition", + WORLD_ARCHIVE_SUPPORT = "$world_archive_support", + FILE_PICKING_SUPPORTED = "$file_picking_supported", + DESKTOP_SCREEN = "$desktop_screen", + POCKET_SCREEN = "$pocket_screen", + IS_HOLOGRAPHIC = "$is_holographic", + GEAR_VR = "$gear_vr", + OCULUS_RIFT = "$oculus_rift", + IS_LIVING_ROOM_MODE = "$is_living_room_mode", + IS_REALITY_MODE = "$is_reality_mode", + REALMS_BETA = "$realms_beta", + FIRE_TV = "$fire_tv", + IS_IOS = "$is_ios", + APPLE_TV = "$apple_tv", + IS_WINDOWS_10_MOBILE = "$is_windows_10_mobile", + IMAGE_PICKING_NOT_SUPPORTED = "$image_picking_not_supported", + PRE_RELEASE = "$pre_release", + IOS = "$ios", + IS_CONSOLE = "$is_console", + CAN_QUIT = "$can_quit", + IS_SETTOPBOX = "$is_settopbox", + MICROSOFT_OS = "$microsoft_os", + APPLE_OS = "$apple_os", + GOOGLE_OS = "$google_os", + NX_OS = "$nx_os", + HORIZONTAL_SAFEZONE_SIZE = "$horizontal_safezone_size", + VERTICAL_SAFEZONE_SIZE = "$vertical_safezone_size", + CAN_SPLITSCREEN = "$can_splitscreen", + IS_SECONDARY_CLIENT = "$is_secondary_client", + MULTIPLAYER_REQUIRES_LIVE_GOLD = "$multiplayer_requires_live_gold", + XBOX_ONE = "$xbox_one", + IS_PREGAME = "$is_pregame", + IS_WIN10_ARM = "$is_win10_arm", + VIBRATION_SUPPORTED = "$vibration_supported", + IS_MOBILE_VR = "$is_mobile_vr", + IS_XBOXLIVE_ENABLED = "$is_xboxlive_enabled", + DEVICE_MUST_BE_REMOVED_FOR_XBL_SIGNIN = "$device_must_be_removed_for_xbl_signin", + IS_PUBLISH = "$is_publish", + IS_DESKTOP = "$is_desktop", + IS_PS4 = "$is_ps4", + IS_ON_3P_SERVER = "$is_on_3p_server", + IGNORE_3RD_PARTY_SERVERS = "$ignore_3rd_party_servers", + IS_BERWICK = "$is_berwick", + EDIT_MODE = "$edit_mode", +} \ No newline at end of file diff --git a/src/types/enums/GridDimensions.ts b/src/types/enums/GridDimensions.ts new file mode 100644 index 0000000..75cc012 --- /dev/null +++ b/src/types/enums/GridDimensions.ts @@ -0,0 +1,86 @@ +export enum GridDimensions { + ACHIEVEMENT_GRID_DIMENSION = "#achievement_grid_dimension", + GAMEPAD_ACTION_ITEM_GRID_DIMENSION = "#gamepad_action_item_grid_dimension", + EQUIP_GRID_DIMENSIONS = "#equip_grid_dimensions", + INV_GRID_DIMENSIONS = "#inv_grid_dimensions", + HOTBAR_GRID_DIMENSIONS = "#hotbar_grid_dimensions", + HOTBAR_GRID_DIMENSIONS_FIXED_INVENTORY = "#hotbar_grid_dimensions_fixed_inventory", + BOSS_GRID_DIMENSION = "#boss_grid_dimension", + ONLINE_FRIEND_GRID_DIMENSION = "#online_friend_grid_dimension", + OFFLINE_FRIEND_GRID_DIMENSION = "#offline_friend_grid_dimension", + PLAYERS_GRID_DIMENSION = "#players_grid_dimension", + REALMS_NETWORK_WORLD_ITEM_GRID_DIMENSION = "#realms_network_world_item_grid_dimension", + LOCAL_WORLD_ITEM_GRID_DIMENSION = "#local_world_item_grid_dimension", + REQUIRED_RESOURCE_PACK_GRID_DIMENSION = "#required_resource_pack_grid_dimension", + OPTIONAL_RESOURCE_PACK_GRID_DIMENSION = "#optional_resource_pack_grid_dimension", + GAMERTAG_ITEM_GRID_DIMENSION = "#gamertag_item_grid_dimension", + REALMS_BRANCH_GRID_DIMENSION = "#realms_branch_grid_dimension", + MEMBERS_GRID_DIMENSION = "#members_grid_dimension", + INVITED_FRIENDS_GRID_DIMENSION = "#invited_friends_grid_dimension", + UNINVITED_FRIENDS_GRID_DIMENSION = "#uninvited_friends_grid_dimension", + SCREENSHOTS_GRID_DIMENSIONS = "#screenshots_grid_dimensions", + SKINS_GRID_DIMENSIONS = "#skins_grid_dimensions", + PREMIUM_SKINS_GRID_DIMENSIONS = "#premium_skins_grid_dimensions", + PREMIUM_PACKS_GRID_DIMENSIONS = "#premium_packs_grid_dimensions", + DEFAULT_SKINS_GRID_DIMENSIONS = "#default_skins_grid_dimensions", + RECENT_SKINS_GRID_DIMENSIONS = "#recent_skins_grid_dimensions", + OFFER_GRID_DIMENSIONS = "#offer_grid_dimensions", + KEYBOARD_GRID_DIMENSION = "#keyboard_grid_dimension", + GAMEPAD_GRID_DIMENSION = "#gamepad_grid_dimension", + LANGUAGE_GRID_DIMENSION = "#language_grid_dimension", + CATEGORY_GRID_DIMENSIONS = "#category_grid_dimensions", + REALM_GRID_DIMENSION = "#realm_grid_dimension", + WORLD_GRID_DIMENSION = "#world_grid_dimension", + NAVIGATION_TAB_GRID_SIZE = "#navigation_tab_grid_size", + LOADING_PERSONAL_REALMS_GRID_DIMENSION = "#loading_personal_realms_grid_dimension", + LOADING_FRIENDS_REALMS_GRID_DIMENSION = "#loading_friends_realms_grid_dimension", + LOADING_WORLD_TEMPLATE_ITEM_GRID_DIMENSION = "#loading_world_template_item_grid_dimension", + WORLD_TEMPLATE_ITEM_GRID_DIMENSION = "#world_template_item_grid_dimension", + INVALID_WORLD_TEMPLATE_ITEM_GRID_DIMENSION = "#invalid_world_template_item_grid_dimension", + WORLD_SCREENSHOTS_GRID_DIMENSIONS = "#world_screenshots_grid_dimensions", + MOB_EFFECT_GRID_SIZE = "#mob_effect_grid_size", + FEATURED_ITEM_GRID_DIMENSION = "#featured_item_grid_dimension", + LIST_GRID_DIMENSIONS = "#list_grid_dimensions", + PICK_GRID_DIMENSIONS = "#pick_grid_dimensions", + COIN_OFFER_SIZE = "#coin_offer_size", + COMMENT_GRID_DIMENSION = "#comment_grid_dimension", + FEED_GRID_DIMENSION = "#feed_grid_dimension", + MANAGE_FEED_GRID_DIMENSION = "#manage_feed_grid_dimension", + STUDENT_BUTTON_GRID_DIMENSIONS = "#student_button_grid_dimensions", + PERMISSIONS_GRID_DIMENSION = "#permissions_grid_dimension", + SERVERS_NETWORK_WORLD_ITEM_GRID_DIMENSION = "#servers_network_world_item_grid_dimension", + THIRD_PARTY_FEATURED_ITEM_GRID_DIMENSION = "#third_party_featured_item_grid_dimension", + LEGACY_WORLD_ITEM_GRID_DIMENSION = "#legacy_world_item_grid_dimension", + BLOCKED_PLAYERS_GRID_DIMENSION = "#blocked_players_grid_dimension", + SCREENSHOTPICKER_GRID_DIMENSION = "#screenshotpicker_grid_dimension", + PAST_PROMO_ROW_GRID_DIMENSION = "#past_promo_row_grid_dimension", + FUTURE_PROMO_ROW_GRID_DIMENSION = "#future_promo_row_grid_dimension", + SUGGESTED_OFFERS_ITEM_GRID_DIMENSION = "#suggested_offers_item_grid_dimension", + TREATMENTS_GRID_DIMENSION = "#treatments_grid_dimension", + REALMS_BACKUP_GRID_DIMENSION = "#realms_backup_grid_dimension", + TRENDING_OFFERS_DIMENSIONS = "#trending_offers_dimensions", + TRENDING_ROWS_DIMENSIONS = "#trending_rows_dimensions", + EDITOR_GRID_DIMENSIONS = "#editor_grid_dimensions", + ROW_GRID_DIMENSIONS = "#row_grid_dimensions", + FONT_COLOR_GRID_DIMENSION = "#font_color_grid_dimension", + GRID_DIMENSIONS = "#grid_dimensions", + EDUCATION_TEMPLATE_ITEM_GRID_DIMENSION = "#education_template_item_grid_dimension", + UNUSED_TREATMENTS_GRID_DIMENSION = "#unused_treatments_grid_dimension", + REALMS_GRID_DIMENSION = "#realms_grid_dimension", + TEMPLATES_GRID_DIMENSION = "#templates_grid_dimension", + ONLINE_XBOX_LIVE_FRIEND_GRID_DIMENSION = "#online_xbox_live_friend_grid_dimension", + OFFLINE_XBOX_LIVE_FRIEND_GRID_DIMENSION = "#offline_xbox_live_friend_grid_dimension", + ONLINE_PLATFORM_FRIEND_GRID_DIMENSION = "#online_platform_friend_grid_dimension", + OFFLINE_PLATFORM_FRIEND_GRID_DIMENSION = "#offline_platform_friend_grid_dimension", + RATINGS_STAR_DIMENSIONS = "#ratings_star_dimensions", + COLOR_SINGLE_PAGE_SIZE = "#color_single_page_size", + CAPE_COUNT = "#cape_count", + REALMS_PLUS_TEMPLATE_ITEM_GRID_DIMENSION = "#realms_plus_template_item_grid_dimension", + CUSTOM_WORLD_TEMPLATE_ITEM_GRID_DIMENSION = "#custom_world_template_item_grid_dimension", + ONLINE_LINKED_ACCOUNT_FRIEND_GRID_DIMENSION = "#online_linked_account_friend_grid_dimension", + OFFLINE_LINKED_ACCOUNT_FRIEND_GRID_DIMENSION = "#offline_linked_account_friend_grid_dimension", + BETA_RETAIL_LOCAL_WORLD_ITEM_GRID_DIMENSION = "#beta_retail_local_world_item_grid_dimension", + BETA_RETAIL_LEGACY_WORLD_ITEM_GRID_DIMENSION = "#beta_retail_legacy_world_item_grid_dimension", + PROGRESSIONS_GRID_DIMENSION = "#progressions_grid_dimension", + DEV_NEW_ACHIEVEMENTS_SCREENS_RADIO_DIMENSION = "#dev_new_achievements_screens_radio_dimension", +} \ No newline at end of file diff --git a/src/types/enums/InputModeCondition.ts b/src/types/enums/InputModeCondition.ts new file mode 100644 index 0000000..3355fa4 --- /dev/null +++ b/src/types/enums/InputModeCondition.ts @@ -0,0 +1,6 @@ +export enum InputModeCondition { + ANY = "any", + NOT_GAZE = "not_gaze", + NOT_GAMEPAD = "not_gamepad", + GAMEPAD_AND_NOT_GAZE = "gamepad_and_not_gaze", +} \ No newline at end of file diff --git a/src/types/enums/Links.ts b/src/types/enums/Links.ts new file mode 100644 index 0000000..f5f5ef9 --- /dev/null +++ b/src/types/enums/Links.ts @@ -0,0 +1,32 @@ +export enum Links { + PROPERTY_BAG = "unset #hyperlink in property_bag", + EULA = "http://education.minecraft.net/eula", + HTML = "http://pocketbeta.minecraft.net/p/how-to-join-and-leave-beta.html", + MINECRAFTREALMSFB = "http://aka.ms/minecraftrealmsfb", + MINECRAFTREALMSTERMS = "http://aka.ms/minecraftrealmsterms", + MINECRAFTFB = "http://aka.ms/minecraftfb", + MINECRAFTEDUSUPPORT = "http://aka.ms/minecraftedusupport", + BLOCKXBOXMESSAGES = "https://aka.ms/blockxboxmessages", + MINECRAFTFBBETA = "http://aka.ms/minecraftfbbeta", + ATTRIBUTION = "https://minecraft.net/attribution", + MCEDULOGS = "http://aka.ms/mcedulogs", + EULA_1 = "https://education.minecraft.net/eula", + MCEDULOGS_1 = "https://aka.ms/mcedulogs", + MINECRAFTREALMSTERMS_1 = "https://aka.ms/minecraftrealmsterms", + MINECRAFTFB_1 = "https://aka.ms/minecraftfb", + MINECRAFTFBBETA_1 = "https://aka.ms/minecraftfbbeta", + MINECRAFTEDUSUPPORT_1 = "https://aka.ms/minecraftedusupport", + _8 = "https://itunes.apple.com/us/app/minecraft/id479516143?mt=8", + SETTINGS = "https://account.xbox.com/Settings", + MEETERMS = "https://aka.ms/meeterms", + PRIVACY = "https://aka.ms/privacy", + MCBANNED = "https://aka.ms/MCBanned", + MCMULTIPLAYERHELP = "https://aka.ms/MCMultiplayerHelp", + MEEEULA = "https://aka.ms/meeeula", + MEE_PRIVACY = "https://aka.ms/mee_privacy", + HIDECHROME = "https://www.minecraft.net/attribution/?hideChrome", + SWITCHATTRIBUTION = "https://aka.ms/switchattribution", + HIDECHROME_1 = "https://www.minecraft.net/licensed-content/?hideChrome", + SWITCHCONTENT = "https://aka.ms/switchcontent", + CHANGEGAMERTAG = "https://social.xbox.com/changegamertag", +} \ No newline at end of file diff --git a/src/types/enums/MappingType.ts b/src/types/enums/MappingType.ts new file mode 100644 index 0000000..a6ab74d --- /dev/null +++ b/src/types/enums/MappingType.ts @@ -0,0 +1,6 @@ +export enum MappingType { + GLOBAL = "global", + PRESSED = "pressed", + DOUBLE_PRESSED = "double_pressed", + FOCUSED = "focused", +} \ No newline at end of file diff --git a/src/types/enums/McColor.ts b/src/types/enums/McColor.ts new file mode 100644 index 0000000..2ad4190 --- /dev/null +++ b/src/types/enums/McColor.ts @@ -0,0 +1,14 @@ +export enum McColor { + WHITE = "white", + BLACK = "black", + YELLOW = "yellow", + ORANGE = "orange", + GREEN = "green", + PURPLE = "purple", + NIL = "nil", + CYAN = "cyan", + RED = "red", + GREY = "grey", + GRAY = "gray", + BLUE = "blue", +} \ No newline at end of file diff --git a/src/types/enums/Orientation.ts b/src/types/enums/Orientation.ts new file mode 100644 index 0000000..4e48b0b --- /dev/null +++ b/src/types/enums/Orientation.ts @@ -0,0 +1,5 @@ +export enum Orientation { + VERTICAL = "vertical", + HORIZONTAL = "horizontal", + NONE = "none", +} \ No newline at end of file diff --git a/src/types/enums/Renderer.ts b/src/types/enums/Renderer.ts new file mode 100644 index 0000000..de9c409 --- /dev/null +++ b/src/types/enums/Renderer.ts @@ -0,0 +1,54 @@ +export enum Renderer { + HOVER_TEXT_RENDERER = "hover_text_renderer", + _3D_STRUCTURE_RENDERER = "3d_structure_renderer", + SPLASH_TEXT_RENDERER = "splash_text_renderer", + UI_HOLO_CURSOR = "ui_holo_cursor", + TRIAL_TIME_RENDERER = "trial_time_renderer", + PANORAMA_RENDERER = "panorama_renderer", + ACTOR_PORTRAIT_RENDERER = "actor_portrait_renderer", + BANNER_PATTERN_RENDERER = "banner_pattern_renderer", + LIVE_PLAYER_RENDERER = "live_player_renderer", + WEB_VIEW_RENDERER = "web_view_renderer", + HUNGER_RENDERER = "hunger_renderer", + BUBBLES_RENDERER = "bubbles_renderer", + MOB_EFFECTS_RENDERER = "mob_effects_renderer", + CURSOR_RENDERER = "cursor_renderer", + PROGRESS_INDICATOR_RENDERER = "progress_indicator_renderer", + CAMERA_RENDERER = "camera_renderer", + HORSE_JUMP_RENDERER = "horse_jump_renderer", + ARMOR_RENDERER = "armor_renderer", + HORSE_HEART_RENDERER = "horse_heart_renderer", + HEART_RENDERER = "heart_renderer", + HOTBAR_COOLDOWN_RENDERER = "hotbar_cooldown_renderer", + HOTBAR_RENDERER = "hotbar_renderer", + HUD_PLAYER_RENDERER = "hud_player_renderer", + LIVE_HORSE_RENDERER = "live_horse_renderer", + HOLOGRAPHIC_POSTRENDERER = "holographic_postrenderer", + ENCHANTING_BOOK_RENDERER = "enchanting_book_renderer", + DEBUG_SCREEN_RENDERER = "debug_screen_renderer", + GRADIENT_RENDERER = "gradient_renderer", + PAPER_DOLL_RENDERER = "paper_doll_renderer", + NAME_TAG_RENDERER = "name_tag_renderer", + FLYING_ITEM_RENDERER = "flying_item_renderer", + INVENTORY_ITEM_RENDERER = "inventory_item_renderer", + CREDITS_RENDERER = "credits_renderer", + VIGNETTE_RENDERER = "vignette_renderer", + PROGRESS_BAR_RENDERER = "progress_bar_renderer", + DEBUG_OVERLAY_RENDERER = "debug_overlay_renderer", + BACKGROUND_RENDERER = "background_renderer", + BUNDLE_RENDERER = "bundle_renderer", + EDITOR_GIZMO_RENDERER = "editor_gizmo_renderer", + DASH_RENDERER = "dash_renderer", + EQUIPMENT_PREVIEW_RENDERER = "equipment_preview_renderer", + EDITOR_VOLUME_HIGHLIGHT_RENDERER = "editor_volume_highlight_renderer", + EDITOR_COMPASS_RENDERER = "editor_compass_renderer", + PROFILE_IMAGE_RENDERER = "profile_image_renderer", + LOCATOR_BAR = "locator_bar", + BUNDLE_TOOLTIP_RENDERER = "bundle_tooltip_renderer", + ANIMATED_GIF_RENDERER = "animated_gif_renderer", + QR_CODE_RENDERER = "qr_code_renderer", + BOHR_MODEL_RENDERER = "bohr_model_renderer", + TOAST_RENDERER = "toast_renderer", + NETEASE_PAPER_DOLL_RENDERER = "netease_paper_doll_renderer", + NETEASE_MINI_MAP_RENDERER = "netease_mini_map_renderer", +} \ No newline at end of file diff --git a/src/types/enums/Rotation.ts b/src/types/enums/Rotation.ts new file mode 100644 index 0000000..155cdf1 --- /dev/null +++ b/src/types/enums/Rotation.ts @@ -0,0 +1,6 @@ +export enum Rotation { + NONE = "none", + AUTO = "auto", + GESTURE_X = "gesture_x", + CUSTOM_Y = "custom_y", +} \ No newline at end of file diff --git a/src/types/enums/Scope.ts b/src/types/enums/Scope.ts new file mode 100644 index 0000000..d54a63c --- /dev/null +++ b/src/types/enums/Scope.ts @@ -0,0 +1,5 @@ +export enum Scope { + GLOBAL = "global", + VIEW = "view", + CONTROLLER = "controller", +} \ No newline at end of file diff --git a/src/types/enums/SliderName.ts b/src/types/enums/SliderName.ts new file mode 100644 index 0000000..3ecf5a9 --- /dev/null +++ b/src/types/enums/SliderName.ts @@ -0,0 +1,67 @@ +export enum SliderName { + KEYBOARD_MOUSE_SENSITIVITY = "keyboard_mouse_sensitivity", + VR_UI_MOUSE_SENSITIVITY = "vr_ui_mouse_sensitivity", + CONTROLLER_SENSITIVITY = "controller_sensitivity", + VR_SENSITIVITY = "vr_sensitivity", + VR_ROLL_TURN_SENSITIVITY = "vr_roll_turn_sensitivity", + TOUCH_SENSITIVITY = "touch_sensitivity", + BUTTON_SIZE = "button_size", + GUI_SCALE = "gui_scale", + GAMMA = "gamma", + VR_GAMMA = "vr_gamma", + FIELD_OF_VIEW = "field_of_view", + RENDER_DISTANCE = "render_distance", + VR_RENDER_DISTANCE = "vr_render_distance", + MSAA = "msaa", + VR_MSAA = "vr_msaa", + PARTICLE_RENDER_DISTANCE = "particle_render_distance", + VR_PARTICLE_RENDER_DISTANCE = "vr_particle_render_distance", + MASTER_VOLUME = "master_volume", + MUSIC_VOLUME = "music_volume", + SOUND_VOLUME = "sound_volume", + WEATHER_VOLUME = "weather_volume", + HOSTILE_CREATURE_VOLUME = "hostile_creature_volume", + PLAYER_VOLUME = "player_volume", + JUKEBOX_AND_NOTE_BLOCK_VOLUME = "jukebox_and_note_block_volume", + BLOCK_VOLUME = "block_volume", + FRIENDLY_CREATURE_VOLUME = "friendly_creature_volume", + ENVIRONMENT_VOLUME = "environment_volume", + DEV_CONNECTION_QUALITY = "dev_connection_quality", + MAX_FRAMERATE = "max_framerate", + SAFE_ZONE = "safe_zone", + SAFE_ZONE_ALL = "safe_zone_all", + SAFE_ZONE_X = "safe_zone_x", + SAFE_ZONE_Y = "safe_zone_y", + SCREEN_POSITION_X = "screen_position_x", + SCREEN_POSITION_Y = "screen_position_y", + CUSTOM_SLIDER_STEP = "custom_slider_step", + CUSTOM_SLIDER = "custom_slider", + GAMEPAD_CURSOR_SENSITIVITY = "gamepad_cursor_sensitivity", + SERVER_SIM_DISTANCE = "server_sim_distance", + DEV_RENDER_ATTACH_POS = "dev_render_attach_pos", + SPLITSCREEN_INTERFACE_OPACITY = "splitscreen_interface_opacity", + INTERFACE_OPACITY = "interface_opacity", + MEM_CHECK_TIMER = "mem_check_timer", + HDR_CALIBRATION = "hdr_calibration", + CONTENT_TIER_SLIDER = "content_tier_slider", + KEYBOARD_SMOOTH_ROTATION_SPEED = "keyboard_smooth_rotation_speed", + RENDERING_PROFILE = "rendering_profile", + CHAT_MESSAGE_SPACING = "chat_message_spacing", + CHAT_LINE_SPACING = "chat_line_spacing", + CHAT_FONT_SIZE = "chat_font_size", + ROTATION = "rotation", + MIRROR = "mirror", + AD_TOKEN_REFRESH_THRESHOLD = "ad_token_refresh_threshold", + GFX_TEXTURE_LOAD_DELAY = "gfx_texture_load_delay", + GFX_MAX_DEQUEUED_TEXTURES_PER_FRAME = "gfx_max_dequeued_textures_per_frame", + RAYTRACING_RENDER_DISTANCE = "raytracing_render_distance", + VR_SNAP_ANGLE = "vr_snap_angle", + VR_HUD_DISTANCE = "vr_hud_distance", + TEXTTOSPEECH_VOLUME = "texttospeech_volume", + TEXT_BACKGROUND_OPACITY = "text_background_opacity", + MAIN_VOLUME = "main_volume", + AMBIENT_VOLUME = "ambient_volume", + HOSTILE_VOLUME = "hostile_volume", + NEUTRAL_VOLUME = "neutral_volume", + RECORD_VOLUME = "record_volume", +} \ No newline at end of file diff --git a/src/types/enums/TextAlignment.ts b/src/types/enums/TextAlignment.ts new file mode 100644 index 0000000..d285059 --- /dev/null +++ b/src/types/enums/TextAlignment.ts @@ -0,0 +1,5 @@ +export enum TextAlignment { + LEFT = "left", + RIGHT = "right", + CENTER = "center", +} \ No newline at end of file diff --git a/src/types/enums/TextType.ts b/src/types/enums/TextType.ts new file mode 100644 index 0000000..41a7e52 --- /dev/null +++ b/src/types/enums/TextType.ts @@ -0,0 +1,5 @@ +export enum TextType { + EXTENDEDASCII = "ExtendedASCII", + IDENTIFIERCHARS = "IdentifierChars", + NUMBERCHARS = "NumberChars", +} \ No newline at end of file diff --git a/src/types/enums/TextboxName.ts b/src/types/enums/TextboxName.ts new file mode 100644 index 0000000..e679cd8 --- /dev/null +++ b/src/types/enums/TextboxName.ts @@ -0,0 +1,96 @@ +export enum TextboxName { + PLAYER_NAME_TEXT_BOX = "player_name_text_box", + DEV_REALMS_ENDPOINT = "dev_realms_endpoint", + DEV_REALMS_ENDPOINT_PAYMENT = "dev_realms_endpoint_payment", + DEV_REALMS_RELYING_PARTY = "dev_realms_relying_party", + DEV_REALMS_RELYING_PARTY_PAYMENT = "dev_realms_relying_party_payment", + REALM_NAME_TEXT_BOX = "realm_name_text_box", + WORLD_NAME_TEXT_BOX = "world_name_text_box", + WORLD_SEED_TEXT_BOX = "world_seed_text_box", + NAME_TEXT_BOX = "#name_text_box", + IP_TEXT_BOX = "#ip_text_box", + PORT_TEXT_BOX = "#port_text_box", + MESSAGE_TEXT_BOX = "#message_text_box", + URL_TEXT_BOX = "#url_text_box", + INTERACT_TEXT_BOX = "#interact_text_box", + TEXT_BOX_PHOTOS = "#text_box_photos", + REALMS_NAME_BOX = "#realms_name_box", + VERSION_FILTER_TEXT_BOX = "#version_filter_text_box", + TEXT_BOX_STRUCTURE_OFFSET_X = "#text_box_structure_offset_x", + TEXT_BOX_STRUCTURE_OFFSET_Y = "#text_box_structure_offset_y", + TEXT_BOX_STRUCTURE_OFFSET_Z = "#text_box_structure_offset_z", + TEXT_BOX_STRUCTURE_SIZE_X = "#text_box_structure_size_x", + TEXT_BOX_STRUCTURE_SIZE_Y = "#text_box_structure_size_y", + TEXT_BOX_STRUCTURE_SIZE_Z = "#text_box_structure_size_z", + TEXT_BOX_STRUCTURE_SEED = "#text_box_structure_seed", + TEXT_BOX_STRUCTURE_INTEGRITY = "#text_box_structure_integrity", + TEXT_BOX_STRUCTURE_NAME = "#text_box_structure_name", + TEXT_BOX_METADATA_NAME = "#text_box_metadata_name", + SEARCH_BOX_NAME = "#search_box_name", + HOVER_NOTE_TEXTBOX = "command_block.hover_note_textbox", + OUTPUT_TEXT = "command_block.output_text", + COMMAND_TEXT = "command_block.command_text", + REMIX_NAME = "#remix_name", + REMIX_DESCRIPTION = "#remix_description", + REMIX_TAG = "#remix_tag", + REMIX_MINECRAFT_TAG = "#remix_minecraft_tag", + SIGN_TEXT_MULTI = "#sign_text_multi", + SEARCH_CONTROL = "search_control", + STRUCTURE_NAME = "structure_name", + STRUCTURE_NAME_1 = "#structure_name", + PAGE_TEXT_BOX = "#page_text_box", + TITLE_TEXT_BOX = "#title_text_box", + AUTHOR_TEXT_BOX = "#author_text_box", + COMMENT_TEXT_BOX = "comment_text_box", + ACTION_TEXT_BOX = "action_text_box", + MAXIMIZED_ACTION_EDIT_BOX = "maximized_action_edit_box", + BUTTON_NAME_EDIT = "button_name_edit", + JOIN_BY_CODE_TEXT_EDIT = "#join_by_code_text_edit", + PLAYER_FILTER_TEXT_BOX = "#player_filter_text_box", + CAPTION_TEXT_BOX = "#caption_text_box", + CUSTOM_INPUT = "custom_input", + GAMERTAG_SEARCH_BOX = "gamertag_search_box", + REPORT_REASON_TEXT_BOX = "report_reason_text_box", + CLUB_DESCRIPTION_TEXT_BOX = "club_description_text_box", + DEV_DATE_YEAR_OVERRIDE_TEXT_BOX = "dev_date_year_override_text_box", + DEV_DATE_MONTH_OVERRIDE_TEXT_BOX = "dev_date_month_override_text_box", + DEV_DATE_DAY_OVERRIDE_TEXT_BOX = "dev_date_day_override_text_box", + DEV_OVERRIDE_DAY_LENGTH_TEXT_BOX = "dev_override_day_length_text_box", + DEV_TREATMENT_ID = "dev_treatment_id", + SHARE_TEXT_BOX = "share_text_box", + SEARCH_TEXT_BOX = "search_text_box", + STUDENT_MESSAGE_BUBBLE = "student_message_bubble", + AUTOMATION_FUNCTIONAL_TEST_TAGS = "automation_functional_test_tags", + AUTOMATION_UNIT_TEST_TAGS = "automation_unit_test_tags", + AUTOMATION_FUNCTIONAL_BLACKLIST_TEST_TAGS = "automation_functional_blacklist_test_tags", + AUTOMATION_UNIT_BLACKLIST_TEST_TAGS = "automation_unit_blacklist_test_tags", + AUTOMATION_REPEAT_COUNT = "automation_repeat_count", + AUTOMATION_INGESTION_ENDPOINT = "automation_ingestion_endpoint", + AUTOMATION_TESTRUN_ID = "automation_testrun_id", + RANDOM_TICK_SPEED_TEXT_BOX = "random_tick_speed_text_box", + DEV_OVERRIDE_TIME_SCALE_TEXT_BOX = "dev_override_time_scale_text_box", + SEARCH_FILTER_TEXT = "search_filter_text", + DEV_DATE_HOUR_OVERRIDE_TEXT_BOX = "dev_date_hour_override_text_box", + DEV_DATE_MINUTE_OVERRIDE_TEXT_BOX = "dev_date_minute_override_text_box", + DEV_VERSION_MAJOR_OVERRIDE_TEXT_BOX = "dev_version_major_override_text_box", + DEV_VERSION_MINOR_OVERRIDE_TEXT_BOX = "dev_version_minor_override_text_box", + DEV_VERSION_PATCH_OVERRIDE_TEXT_BOX = "dev_version_patch_override_text_box", + DEBUG_STATE_TEXT_BOX = "debug_state_text_box", + TICK_DELAY_TEXTBOX = "command_block.tick_delay_textbox", + INTEGRITY_FIELD = "#integrity_field", + SEED_FIELD = "#seed_field", + DATA_FIELD = "#data_field", + TEMPLATE_VERSION_TEXT_BOX = "template_version_text_box", + LEAK_MEMORY_TEXT_BOX = "leak_memory_text_box", + TEMPLATE_SEARCH_BOX = "#template_search_box", + WORLD_SEARCH_BOX = "#world_search_box", + RESPAWN_RADIUS_TEXT_BOX = "respawn_radius_text_box", + AZURE_SHARED_ACCESS_SIGNATURE = "test_assets.azure_shared_access_signature", + AUTOMATION_SERVER_TEST_TAGS = "automation_server_test_tags", + AUTOMATION_BROKEN_FUNCTIONAL_TEST_TAGS = "automation_broken_functional_test_tags", + AUTOMATION_BROKEN_SERVER_TEST_TAGS = "automation_broken_server_test_tags", + AUTOMATION_BROKEN_UNIT_TEST_TAGS = "automation_broken_unit_test_tags", + AUTOMATION_SOAK_TEST_DURATION_MINUTES = "automation_soak_test_duration_minutes", + DEV_PROGRESSION_ID = "dev_progression_id", + ANIMATION_TIME_FIELD = "#animation_time_field", +} \ No newline at end of file diff --git a/src/types/enums/ToggleName.ts b/src/types/enums/ToggleName.ts new file mode 100644 index 0000000..f061931 --- /dev/null +++ b/src/types/enums/ToggleName.ts @@ -0,0 +1,322 @@ +export enum ToggleName { + KEYBOARD_MOUSE_INVERT_Y_AXIS = "keyboard_mouse_invert_y_axis", + KEYBOARD_MOUSE_AUTOJUMP = "keyboard_mouse_autojump", + KEYBOARD_MOUSE_TOGGLE_CROUCH = "keyboard_mouse_toggle_crouch", + CONTROLLER_INVERT_Y_AXIS = "controller_invert_y_axis", + CONTROLLER_AUTOJUMP = "controller_autojump", + VR_AUTOJUMP = "vr_autojump", + CONTROLLER_TOGGLE_CROUCH = "controller_toggle_crouch", + CONTROLLER_VIBRATION = "controller_vibration", + TOUCH_INVERT_Y_AXIS = "touch_invert_y_axis", + TOUCH_AUTOJUMP = "touch_autojump", + TOUCH_VIBRATION = "touch_vibration", + TOUCH_TOGGLE_CROUCH = "touch_toggle_crouch", + SPLIT_CONTROLS = "split_controls", + LEFT_HANDED = "left_handed", + SWAP_JUMP_AND_SNEAK = "swap_jump_and_sneak", + ALLOW_CHEATS = "allow_cheats", + NAVIGATION_TAB = "navigation_tab", + ALLOW_CELLULAR_DATA = "allow_cellular_data", + ADVANCED_VIDEO_OPTIONS_TOGGLE = "advanced_video_options_toggle", + FULL_SCREEN = "full_screen", + VIEW_BOBBING = "view_bobbing", + GRAPHICS_TOGGLE = "graphics_toggle", + FANCY_SKIES = "fancy_skies", + TRANSPARENT_LEAVES = "transparent_leaves", + HIDE_GUI = "hide_gui", + VR_HIDE_GUI = "vr_hide_gui", + TEXEL_AA = "texel_aa", + VR_3D_RENDERING = "vr_3d_rendering", + VR_MIRROR_TEXTURE = "vr_mirror_texture", + LIMIT_WORLD_SIZE = "limit_world_size", + COMFORT_CONTROLS = "comfort_controls", + SHOW_COMFORT_SELECT_SCREEN = "show_comfort_select_screen", + VR_LIVING_ROOM_CURSOR_CENTERED = "vr_living_room_cursor_centered", + VR_HMD_DISPLACEMENT = "vr_hmd_displacement", + VR_LINEAR_JUMP = "vr_linear_jump", + VR_LINEAR_MOTION = "vr_linear_motion", + STICKY_MINING = "sticky_mining", + VR_HUD_DRIFTS = "vr_hud_drifts", + VR_HEAD_STEERING = "vr_head_steering", + STUTTER_TURN = "stutter_turn", + STUTTER_CONSTANT_ANGLE_OR_TIME = "stutter_constant_angle_or_time", + STUTTER_TURN_SOUND = "stutter_turn_sound", + VR_ROLL_TURN = "vr_roll_turn", + LANGUAGES = "languages", + DEV_ENABLE_DEBUG_UI = "dev_enable_debug_ui", + DEV_OFFERS_UNLOCKED = "dev_offers_unlocked", + DEV_RENDER_BOUNDING_BOX = "dev_render_bounding_box", + DEV_RENDER_PATHS = "dev_render_paths", + DEV_RENDER_GOAL_STATE = "dev_render_goal_state", + DEV_RESET_CLIENT_ID = "dev_reset_client_id", + DEV_SHOW_CHUNK_MAP = "dev_show_chunk_map", + DEV_ENABLE_PROFILER = "dev_enable_profiler", + DEV_ACHIEVEMENTS_ALWAYS_ENABLED = "dev_achievements_always_enabled", + DEV_USE_LOCAL_SERVER = "dev_use_local_server", + DEV_USE_IPV6_ONLY = "dev_use_ipv6_only", + DEV_USE_FPS_INDEPENDENT_TURNING = "dev_use_fps_independent_turning", + DEV_USE_RETAIL_XBOX_SANDBOX = "dev_use_retail_xbox_sandbox", + DEV_CREATE_REALM_WITHOUT_PURCHASE = "dev_create_realm_without_purchase", + ALWAYS_DAY = "always_day", + MULTIPLAYER_GAME = "multiplayer_game", + XBOXLIVE_VISIBLE = "xboxlive_visible", + SERVER_VISIBLE = "server_visible", + SPEED = "speed", + HASTE = "haste", + RESIST = "resist", + JUMP = "jump", + STRENGTH = "strength", + REGEN = "regen", + EXTRA = "extra", + CONFIRM = "confirm", + CANCEL = "cancel", + TOGGLE_INVITE_ONLINE = "toggle_invite_online", + TOGGLE_INVITE_OFFLINE = "toggle_invite_offline", + REQUIRED_RESOURCEPACKS = "required_resourcepacks", + OPTIONAL_RESOURCEPACKS = "optional_resourcepacks", + PLAYER_COUNT_2 = "#player_count_2", + PLAYER_COUNT_10 = "#player_count_10", + AGREE_TERMS_AND_CONDITIONS = "#agree_terms_and_conditions", + HIDE_INVITES = "#hide_invites", + OPERATOR = "#operator", + MEMBER_SETTINGS = "#member_settings", + FORCE_USER_AGREEMENT_LEVEL = "force_user_agreement_level", + THIRD_PERSON_DROPDOWN = "third_person_dropdown", + DEV_REALMS_ENVIRONMENT_DROPDOWN = "dev_realms_environment_dropdown", + REALMS_DIFFICULTY = "realms_difficulty", + REALMS_GAMEMODE = "realms_gamemode", + WORLD_GAME_MODE_DROPDOWN = "world_game_mode_dropdown", + PLAYER_GAME_MODE_DROPDOWN = "player_game_mode_dropdown", + WORLD_DIFFICULTY_DROPDOWN = "world_difficulty_dropdown", + WORLD_TYPE_DROPDOWN = "world_type_dropdown", + WORLD_TOGGLE = "world_toggle", + ADVANCED_VIDEO_OPTIONS = "advanced_video_options", + UI_PROFILE_DROPDOWN = "ui_profile_dropdown", + STICKY_MINING_HAND = "sticky_mining_hand", + VR_HAND_CONTROLS_ITEM = "vr_hand_controls_item", + VR_HAND_CONTROLS_HUD = "vr_hand_controls_hud", + VR_HAND_POINTER = "vr_hand_pointer", + VR_HANDS_VISIBLE = "vr_hands_visible", + ENABLE_CHAT_TEXT_TO_SPEECH = "enable_chat_text_to_speech", + DEV_DEBUG_HUD_DROPDOWN = "dev_debug_hud_dropdown", + TRACK_OUTPUT = "track_output", + REDSTONE_DROPDOWN = "redstone_dropdown", + CONDITION_DROPDOWN = "condition_dropdown", + BLOCK_TYPE_DROPDOWN = "block_type_dropdown", + HORSE_INTERACTIVE_TABS = "horse_interactive_tabs", + SWITCH_STORAGE_TYPE = "switch_storage_type", + LOCAL_COPY_TOGGLE = "local_copy_toggle", + ENABLEMULTISELECT = "toggle.enableMultiselect", + INVISIBLE_BLOCKS_TOGGLE = "#invisible_blocks_toggle", + INCLUDE_ENTITIES_TOGGLE = "#include_entities_toggle", + INCLUDE_PLAYERS_TOGGLE = "#include_players_toggle", + REMOVE_BLOCKS_TOGGLE = "#remove_blocks_toggle", + MODE_DROPDOWN = "mode_dropdown", + DEV_SHOW_BUILD_INFO = "dev_show_build_info", + SMOOTH_LIGHTING = "smooth_lighting", + FILE_STORAGE_LOCATION = "file_storage_location", + WEBSOCKET_ENCRYPTION = "websocket_encryption", + HIDE_CHAT = "hide_chat", + RIGHT_INVENTORY_NAVIGATION_TAB = "right_inventory_navigation_tab", + LAYOUT_TOGGLE = "layout_toggle", + ENABLEFILTERING = "toggle.enableFiltering", + BUTTON_MODE_TOGGLE = "button_mode_toggle", + RATING_DROPDOWN = "rating_dropdown", + SELECTED_DURATION_SHORT = "#selected_duration_short", + SELECTED_DURATION_LONG = "#selected_duration_long", + CUSTOM_DROPDOWN_RADIO_TOGGLE = "#custom_dropdown_radio_toggle", + CUSTOM_DROPDOWN = "#custom_dropdown", + CUSTOM_TOGGLE = "custom_toggle", + CUSTOM_DROPDOWN_1 = "custom_dropdown", + CUSTOM_DROPDOWN_RADIO_TOGGLE_1 = "custom_dropdown_radio_toggle", + REPORT_REASON_DROPDOWN = "report_reason_dropdown", + ADD_FRIEND_DROPDOWN = "add_friend_dropdown", + MUTE_PLAYER = "mute_player", + BLOCK_PLAYER = "block_player", + HIDE_TOOLTIPS = "hide_tooltips", + HIDE_GAMEPAD_CURSOR = "hide_gamepad_cursor", + START_WITH_MAP = "start_with_map", + BONUS_CHEST = "bonus_chest", + SHOW_COORDINATES = "show_coordinates", + FIRE_SPREADS = "fire_spreads", + TNT_EXPLODES = "tnt_explodes", + MOB_LOOT = "mob_loot", + NATURAL_REGENERATION = "natural_regeneration", + TILE_DROPS = "tile_drops", + DAYLIGHT_CYCLE = "daylight_cycle", + KEEP_INVENTORY = "keep_inventory", + MOB_SPAWN = "mob_spawn", + MOB_GRIEFING = "mob_griefing", + ENTITIES_DROP_LOOT = "entities_drop_loot", + WEATHER_CYCLE = "weather_cycle", + CLASSROOM_SETTINGS = "classroom_settings", + PERFECT_WEATHER = "perfect_weather", + ALLOW_MOBS = "allow_mobs", + ALLOW_DESTRUCTIVE_ITEMS = "allow_destructive_items", + PLAYER_DAMAGE = "player_damage", + IMMUTABLE_WORLD = "immutable_world", + PVP_DAMAGE = "pvp_damage", + PLAYER_PERMISSIONS_DROPDOWN = "player_permissions_dropdown", + XBL_BROADCAST_DROPDOWN = "xbl_broadcast_dropdown", + DEV_ASSERTIONS_DEBUG_BREAK = "dev_assertions_debug_break", + DEV_MCE_ASSERTIONS_DEBUG_BREAK_HACK = "dev_mce_assertions_debug_break_hack", + DEV_SHOW_DEV_CONSOLE_BUTTON = "dev_show_dev_console_button", + DEV_ENABLE_MIXER_INTERACTIVE = "dev_enable_mixer_interactive", + DEV_SHOW_TCUI_REPLACEMENT = "dev_show_tcui_replacement", + SHOW_AUTO_SAVE_ICON = "show_auto_save_icon", + HIDE_HAND = "hide_hand", + HIDE_PAPERDOLL = "hide_paperdoll", + CLASSIC_BOX_SELECTION = "classic_box_selection", + VR_CLASSIC_BOX_SELECTION = "vr_classic_box_selection", + INGAME_PLAYER_NAMES = "ingame_player_names", + SPLITSCREEN_INGAME_PLAYER_NAMES = "splitscreen_ingame_player_names", + VR_HIDE_HUD = "vr_hide_hud", + VR_HIDE_HAND = "vr_hide_hand", + FIELD_OF_VIEW_TOGGLE = "field_of_view_toggle", + DEV_DISPLAY_OVERRIDE_DATETIME = "dev_display_override_datetime", + DEV_SAVE_CURRENT_OVERRIDE_DATE = "dev_save_current_override_date", + DEV_SHOW_OVERRIDE_TREATMENTS = "dev_show_override_treatments", + FEATURE_TOGGLE = "feature_toggle", + DEV_SERVER_INSTANCE_THREAD = "dev_server_instance_thread", + DEV_FIND_MOBS = "dev_find_mobs", + SPLIT_SCREEN_DROPDOWN = "split_screen_dropdown", + VR_SMOOTH_LIGHTING = "vr_smooth_lighting", + RENDER_CLOUDS = "render_clouds", + VR_TRANSPARENT_LEAVES = "vr_transparent_leaves", + HIDE_HUD = "hide_hud", + DEV_USE_ZIPPED_IN_PACKAGE_PACKS = "dev_use_zipped_in_package_packs", + DEV_IMPORT_PACKS_AS_ZIP = "dev_import_packs_as_zip", + DEV_USE_OVERRIDE_DATE = "dev_use_override_date", + DEV_DISPLAY_TREATMENTS_PANEL = "dev_display_treatments_panel", + DEV_NEW_CULLER = "dev_new_culler", + LOCKED_TOGGLE = "locked_toggle", + OPTION_TOGGLE = "option_toggle", + PLAYER_TOGGLE = "player_toggle", + PERMISSION_LEVEL_DROPDOWN = "permission_level_dropdown", + HOTBAR_ONLY_TOUCH = "hotbar_only_touch", + SWAP_GAMEPAD_AB_BUTTONS = "swap_gamepad_ab_buttons", + SWAP_GAMEPAD_XY_BUTTONS = "swap_gamepad_xy_buttons", + KEYBOARD_SHOW_FULL_KEYBOARD_OPTIONS = "keyboard_show_full_keyboard_options", + PVP = "pvp", + EXPERIMENTAL_GAMEPLAY = "experimental_gameplay", + EDUCATION_TOGGLE = "education_toggle", + PLATFORM_BROADCAST_DROPDOWN = "platform_broadcast_dropdown", + AUTO_UPDATE_MODE_DROPDOWN = "auto_update_mode_dropdown", + AUTO_UPDATE_ENABLED = "auto_update_enabled", + SCREEN_ANIMATIONS = "screen_animations", + ATMOSPHERICS = "atmospherics", + EDGE_HIGHLIGHT = "edge_highlight", + BLOOM = "bloom", + TERRAIN_SHADOWS = "terrain_shadows", + SUPER_FANCY_WATER = "super_fancy_water", + DEV_XFORGE_REQUESTS_REQUIRE_SIGN_IN = "dev_xforge_requests_require_sign_in", + MULTITHREADED_RENDERING = "multithreaded_rendering", + SWITCH_COIN_DEBUG = "switch_coin_debug", + DEV_CONNECTION_QUALITY = "dev_connection_quality", + BUBBLE_PARTICLES = "bubble_particles", + REALM_DEFAULT_PERMISSION_DROPDOWN = "realm_default_permission_dropdown", + AUTOMATION_FUNCTIONAL_TEST_BLOCK_INPUT = "automation_functional_test_block_input", + DEV_ASSERTIONS_SHOW_DIALOG = "dev_assertions_show_dialog", + CODE_BUILDER = "code_builder", + COMMAND_BLOCKS_ENABLED = "command_blocks_enabled", + FONT_COLOR_TOGGLE = "font_color_toggle", + HIDE_KEYBOARD_TOOLTIPS = "hide_keyboard_tooltips", + DEV_SHOW_LATENCY_GRAPH = "dev_show_latency_graph", + DEV_NEWPARTICLESYSTEM = "dev_newParticleSystem", + VSYNC_DROPDOWN = "vsync_dropdown", + FILE_WATCHER = "file_watcher", + DEV_GAME_TIP = "dev_game_tip", + DEV_SHOW_SERVER_CHUNK_MAP = "dev_show_server_chunk_map", + CONTENT_LOG = "content_log", + CONTENT_LOG_GUI = "content_log_gui", + DOIMMEDIATERESPAWN = "doimmediaterespawn", + CHAT_TYPEFACE_DROPDOWN = "chat_typeface_dropdown", + LEFT_NAVIGATION_TAB = "left_navigation_tab", + RIGHT_NAVIGATION_TAB = "right_navigation_tab", + DEV_IDENTITY_ENV_DROPDOWN = "dev_identity_env_dropdown", + CONTENT_LOG_FILE = "content_log_file", + WINDOWS_STORE_DROPDOWN = "windows_store_dropdown", + TIMEZONETYPE_DROPDOWN = "timezonetype_dropdown", + DEV_LOAD_OVERRIDE_DATE = "dev_load_override_date", + TRADE_TOGGLE = "trade_toggle", + DEV_USE_VERSION_OVERRIDE = "dev_use_version_override", + PERF_TURTLE = "perf_turtle", + ENABLE_UI_TEXT_TO_SPEECH = "enable_ui_text_to_speech", + EXECUTE_ON_FIRST_TICK = "execute_on_first_tick", + DEV_FORCE_CLIENT_BLOB_CACHE = "dev_force_client_blob_cache", + DEV_DISABLE_CLIENT_BLOB_CACHE = "dev_disable_client_blob_cache", + SHOW_AD_DEBUG_PANEL_BUTTON = "show_ad_debug_panel_button", + DEV_SHOW_DOC_ID = "dev_show_doc_id", + TOGGLE_TTS = "toggle_tts", + SHOW_BOUNDING_BOX_TOGGLE = "#show_bounding_box_toggle", + MIRROR_X = "mirror_x", + MIRROR_Z = "mirror_z", + ENABLE_AUTO_TEXT_TO_SPEECH = "enable_auto_text_to_speech", + ENABLE_OPEN_CHAT_MESSAGE = "enable_open_chat_message", + AUTOMATION_REPEAT_FAILURES_ONLY = "automation_repeat_failures_only", + DEV_TOGGLE_DEFAULT_FONT_OVERRIDES = "dev_toggle_default_font_overrides", + DEV_DISABLE_RENDER_TERRAIN = "dev_disable_render_terrain", + DEV_DISABLE_RENDER_ENTITIES = "dev_disable_render_entities", + DEV_DISABLE_RENDER_BLOCKENTITIES = "dev_disable_render_blockentities", + DEV_DISABLE_RENDER_PARTICLES = "dev_disable_render_particles", + DEV_DISABLE_RENDER_SKY = "dev_disable_render_sky", + DEV_DISABLE_RENDER_WEATHER = "dev_disable_render_weather", + DEV_DISABLE_RENDER_HUD = "dev_disable_render_hud", + DEV_DISABLE_RENDER_ITEM_IN_HAND = "dev_disable_render_item_in_hand", + ASYNC_TEXTURE_LOADS = "async_texture_loads", + ASYNC_MISSING_TEXTURE = "async_missing_texture", + AD_USE_SINGLE_SIGN_ON = "ad_use_single_sign_on", + CONFIRM_0 = "confirm_0", + CONFIRM_1 = "confirm_1", + CONFIRM_2 = "confirm_2", + CONFIRM_3 = "confirm_3", + TOGGLE_XBOX_LIVE_INVITE_ONLINE = "toggle_xbox_live_invite_online", + TOGGLE_XBOX_LIVE_INVITE_OFFLINE = "toggle_xbox_live_invite_offline", + TOGGLE_PLATFORM_INVITE_ONLINE = "toggle_platform_invite_online", + TOGGLE_PLATFORM_INVITE_OFFLINE = "toggle_platform_invite_offline", + TOGGLE_LINKED_ACCOUNT_INVITE_ONLINE = "toggle_linked_account_invite_online", + TOGGLE_LINKED_ACCOUNT_INVITE_OFFLINE = "toggle_linked_account_invite_offline", + ONLINE_SAFETY_DO_NOT_SHOW_AGAIN = "online_safety_do_not_show_again", + ONLY_TRUSTED_SKINS_ALLOWED = "only_trusted_skins_allowed", + CROSSPLATFORM_TOGGLE = "crossplatform_toggle", + JOINT_TYPE_TOGGLE = "toggle.joint_type_toggle", + SUNSETTING_DO_NOT_SHOW_AGAIN = "sunsetting_do_not_show_again", + SERVER_NAVIGATION_TOGGLE = "server_navigation_toggle", + DEV_DISPLAY_PROGRESSIONS_PANEL = "dev_display_progressions_panel", + DEV_NEW_ACHIEVEMENTS_SCREENS_RADIO = "dev_new_achievements_screens_radio", + UI_FEATURE_TOGGLE = "ui_feature_toggle", + DEV_SUNSETTING_TIER_DROPDOWN = "dev_sunsetting_tier_dropdown", + DEV_USE_SUNSET_OVERRIDES = "dev_use_sunset_overrides", + DEV_SUNSET_STATE = "dev_sunset_state", + DEV_DISCOVERY_ENVIRONMENT_DROPDOWN = "dev_discovery_environment_dropdown", + ENABLE_TEXTURE_HOT_RELOADER = "enable_texture_hot_reloader", + DEV_EDU_DEMO = "dev_edu_demo", + DEV_RENDER_MOB_INFO_STATE = "dev_render_mob_info_state", + REMOTE_IMGUI = "remote_imgui", + AUTOMATION_SOAK_TEST_DURATION_MINUTES = "automation_soak_test_duration_minutes", + AUTOMATION_BROKEN_UNIT_TEST_TAGS = "automation_broken_unit_test_tags", + CAMERA_SHAKE = "camera_shake", + GRAPHICS_UPSCALING = "graphics_upscaling", + RAYTRACING = "raytracing", + VR_CAMERA_MOVEMENT_DROPDOWN = "vr_camera_movement_dropdown", + VR_VARIABLE_SNAP_ANGLE = "vr_variable_snap_angle", + VR_MOVEMENT_DROPDOWN = "vr_movement_dropdown", + VR_JUMP_DROPDOWN = "vr_jump_dropdown", + VR_HEAD_STEERING_DROPDOWN = "vr_head_steering_dropdown", + VR_STICKY_MINING_DROPDOWN = "vr_sticky_mining_dropdown", + VR_HUD_POSITION_DROPDOWN = "vr_hud_position_dropdown", + VR_SNAP_ANGLE = "vr_snap_angle", + VR_SNAP_SOUND = "vr_snap_sound", + DEV_OVERRIDE_XBOX_SANDBOX = "dev_override_xbox_sandbox", + DEV_XBOX_ENVIRONMENT_DROPDOWN = "dev_xbox_environment_dropdown", + DEV_SHOW_OVERRIDE_PROGRESSIONS = "dev_show_override_progressions", + DEV_DISPLAY_MOCK_HTTP_PANEL = "dev_display_mock_http_panel", + CLOUD_UPLOAD_TERMS_ACCEPTED = "cloud_upload_terms_accepted", + ON_ENTER_TOGGLE = "on_enter_toggle", + ON_EXIT_TOGGLE = "on_exit_toggle", + SKIN_PACK_CATEGORY = "toggle.skin_pack_category", + CATEGORY_SELECTED = "toggle.category_selected", + SIDEBAR_VERBOSE_TOGGLE = "toggle.sidebar_verbose_toggle", + SIDEBAR_OPTION_DROPDOWN = "toggle.sidebar_option_dropdown", + ANIMATION_MODE_DROPDOWN = "animation_mode_dropdown", +} \ No newline at end of file diff --git a/src/types/enums/Type.ts b/src/types/enums/Type.ts new file mode 100644 index 0000000..960b446 --- /dev/null +++ b/src/types/enums/Type.ts @@ -0,0 +1,35 @@ +export enum Type { + SELECTION_WHEEL = "selection_wheel", + PANEL = "panel", + SCREEN = "screen", + STACK_PANEL = "stack_panel", + LABEL = "label", + IMAGE = "image", + INPUT_PANEL = "input_panel", + CUSTOM = "custom", + GRID = "grid", + FACTORY = "factory", + BUTTON = "button", + TOGGLE = "toggle", + SLIDER = "slider", + EDIT_BOX = "edit_box", + DROPDOWN = "dropdown", + SCROLL_VIEW = "scroll_view", + SLIDER_BOX = "slider_box", + SCROLLBAR_BOX = "scrollbar_box", + SCROLL_TRACK = "scroll_track", + GRID_PAGE_INDICATOR = "grid_page_indicator", + IMAGE_CYCLER = "image_cycler", + LABEL_CYCLER = "label_cycler", + COLLECTION_PANEL = "collection_panel", + TOOLTIP_TRIGGER = "tooltip_trigger", + TAB = "tab", + CAROUSEL_LABEL = "carousel_label", + COMBOX = "combox", + LAYOUT = "layout", + STACK_GRID = "stack_grid", + JOYSTICK = "joystick", + RICH_TEXT = "rich_text", + SIXTEEN_NINE_LAYOUT = "sixteen_nine_layout", + MUL_LINES = "mul_lines", +} diff --git a/src/types/enums/index.ts b/src/types/enums/index.ts new file mode 100644 index 0000000..ad47853 --- /dev/null +++ b/src/types/enums/index.ts @@ -0,0 +1,30 @@ +export { Type } from "./Type.js" +export { Anchor } from "./Anchor.js" +export { Orientation } from "./Orientation.js" +export { TextAlignment } from "./TextAlignment.js" +export { FontType } from "./FontType.js" +export { FontSize } from "./FontSize.js" +export { ClipDirection } from "./ClipDirection.js" +export { McColor } from "./McColor.js" +export { DebugColor } from "./DebugColor.js" +export { Rotation } from "./Rotation.js" +export { BindingType } from "./BindingType.js" +export { BindingCondition } from "./BindingCondition.js" +export { AnimType } from "./AnimType.js" +export { Renderer } from "./Renderer.js" +export { Easing } from "./Easing.js" +export { MappingType } from "./MappingType.js" +export { Scope } from "./Scope.js" +export { InputModeCondition } from "./InputModeCondition.js" +export { TextType } from "./TextType.js" +export { FocusNavigationMode } from "./FocusNavigationMode.js" +export { GlobalVariables } from "./GlobalVariables.js" +export { ButtonId } from "./ButtonId.js" +export { CollectionName } from "./CollectionName.js" +export { Links } from "./Links.js" +export { GridDimensions } from "./GridDimensions.js" +export { TextboxName } from "./TextboxName.js" +export { SliderName } from "./SliderName.js" +export { ToggleName } from "./ToggleName.js" +export { BagBinding } from "./BagBinding.js" +export { Binding } from "./Binding.js" \ No newline at end of file diff --git a/src/types/properties/components.ts b/src/types/properties/components.ts new file mode 100644 index 0000000..445f4ad --- /dev/null +++ b/src/types/properties/components.ts @@ -0,0 +1,70 @@ +import { Renderer } from "../enums/Renderer.js" +import { Type } from "../enums/Type.js" +import * as e from "./element/index.js" + +export interface Panel extends e.Control, e.Layout {} +export interface CollectionPanel extends Panel, e.Collection {} +export interface StackPanel extends CollectionPanel, e.StackPanel {} +export interface InputPanel extends Panel, e.Collection, e.Input, e.Sound, e.Focus, e.TTS {} +export interface Grid extends CollectionPanel, e.Grid {} +export interface Screen extends Panel, e.Screen {} + +export interface Image extends Panel, e.Image {} +export interface Label extends Panel, e.Text {} +export interface Custom extends Panel, e.CustomRenderer {} +export interface TooltipTrigger extends InputPanel, e.TooltipTrigger {} + +export interface Button extends InputPanel, e.Button {} +export interface Toggle extends InputPanel, e.Toggle {} +export interface Dropdown extends Toggle, e.DropdownName {} +export interface SelectionWheel extends InputPanel, e.SelectionWheel {} +export interface EditBox extends Button, e.EditBox {} + +export interface ScrollbarBox extends Panel, e.Input {} +export interface ScrollbarTrack extends ScrollbarBox {} +export interface ScrollView extends ScrollbarBox, e.ScrollView {} + +export interface Slider extends InputPanel, e.Slider {} +export interface SliderBox extends ScrollbarBox, e.SliderBox {} + +export interface ComponenetsProperties { + [Type.PANEL]: Panel + [Type.COLLECTION_PANEL]: CollectionPanel + [Type.STACK_PANEL]: StackPanel + [Type.INPUT_PANEL]: InputPanel + [Type.GRID]: Grid + [Type.SCREEN]: Screen + + [Type.IMAGE]: Image + [Type.LABEL]: Label + [Type.CUSTOM]: Custom + [Type.TOOLTIP_TRIGGER]: TooltipTrigger + + [Type.BUTTON]: Button + [Type.TOGGLE]: Toggle + [Type.DROPDOWN]: Dropdown + [Type.SELECTION_WHEEL]: SelectionWheel + [Type.EDIT_BOX]: EditBox + + [Type.SCROLLBAR_BOX]: ScrollbarBox + [Type.SCROLL_TRACK]: ScrollbarTrack + [Type.SCROLL_VIEW]: ScrollView + [Type.SLIDER]: Slider + [Type.SLIDER_BOX]: SliderBox +} + +export type Properties = T extends keyof ComponenetsProperties ? Partial : {} + +export interface CustomRendererProperties { + [Renderer.PAPER_DOLL_RENDERER]: e.PaperDollRenderer + [Renderer.NETEASE_PAPER_DOLL_RENDERER]: e.NeteasePaperDollRenderer + [Renderer.NETEASE_MINI_MAP_RENDERER]: e.NeteaseMiniMapRenderer + [Renderer.PROGRESS_BAR_RENDERER]: e.ProgressBarRenderer + [Renderer.GRADIENT_RENDERER]: e.GradientRenderer + [Renderer.NAME_TAG_RENDERER]: e.NameTagRenderer + [Renderer.HOVER_TEXT_RENDERER]: e.HoverTextRenderer + [Renderer.DEBUG_OVERLAY_RENDERER]: e.Debug + [Renderer.EQUIPMENT_PREVIEW_RENDERER]: e.EquipmentPreviewRenderer +} + +export type RendererProperties = T extends keyof CustomRendererProperties ? Partial : {} diff --git a/src/types/properties/element/Animation.ts b/src/types/properties/element/Animation.ts new file mode 100644 index 0000000..ebd0cf5 --- /dev/null +++ b/src/types/properties/element/Animation.ts @@ -0,0 +1,28 @@ +import { AnimationKeyframe } from "../../../components/AnimationKeyframe.js" +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 + duration?: Value + next?: Value + 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 + activated?: Value + looping?: Value + wait_until_rendered_to_play?: Value +} diff --git a/src/types/properties/element/Button.ts b/src/types/properties/element/Button.ts new file mode 100644 index 0000000..09a8f85 --- /dev/null +++ b/src/types/properties/element/Button.ts @@ -0,0 +1,8 @@ +import { Value } from "../value.js" + +export interface Button { + default_control?: Value + hover_control?: Value + pressed_control?: Value + locked_control?: Value +} diff --git a/src/types/properties/element/CarouselLabel.ts b/src/types/properties/element/CarouselLabel.ts new file mode 100644 index 0000000..3fed28f --- /dev/null +++ b/src/types/properties/element/CarouselLabel.ts @@ -0,0 +1,10 @@ +import { Array3, Value } from "../value.js" + +export interface CarouselLabel { + always_rotate?: Value + rotate_speed?: Value + hover_color?: Value> + hover_alpha?: Value + pressed_color?: Value> + pressed_alpha?: Value +} diff --git a/src/types/properties/element/Collection.ts b/src/types/properties/element/Collection.ts new file mode 100644 index 0000000..4d90b0f --- /dev/null +++ b/src/types/properties/element/Collection.ts @@ -0,0 +1,8 @@ +import { CollectionName } from "../../enums/CollectionName.js" +import { Value } from "../value.js" + +export interface Collection { + collection_name?: Value + collection_index?: Value + ignoreCollectionItem?: Value +} diff --git a/src/types/properties/element/Control.ts b/src/types/properties/element/Control.ts new file mode 100644 index 0000000..c28b53e --- /dev/null +++ b/src/types/properties/element/Control.ts @@ -0,0 +1,21 @@ +import { AnimValue, Array2, Binding, PropertyBags, Value } from "../value.js" + +export interface Control { + visible?: Value + enabled?: Value + layer?: Value + z_order?: Value + alpha?: AnimValue + propagate_alpha?: Value + clips_children?: Value + allow_clipping?: Value + clip_offset?: Value> + clip_state_change_event?: Value + selected?: Value + use_child_anchors?: Value + contained?: Value + draggable?: Value + follows_cursor?: Value + property_bags?: Value + [key: Binding]: Value +} diff --git a/src/types/properties/element/CustomRenderer.ts b/src/types/properties/element/CustomRenderer.ts new file mode 100644 index 0000000..12a21ea --- /dev/null +++ b/src/types/properties/element/CustomRenderer.ts @@ -0,0 +1,72 @@ +import { DebugColor } from "../../enums/DebugColor.js" +import { Orientation } from "../../enums/Orientation.js" +import { Renderer } from "../../enums/Renderer.js" +import { Rotation } from "../../enums/Rotation.js" +import { Array3, Array4, Value } from "../value.js" + +export interface CustomRenderer { + renderer?: Value + replaced_while_inactive?: Value +} + +export interface PaperDollRenderer { + camera_tilt_degrees?: Value + starting_rotation?: Value + use_selected_skin?: Value + use_uuid?: Value + use_skin_gui_scale?: Value + use_player_paperdoll?: Value + rotation?: Value + modelsize?: Value + animation_looped?: Value + animation?: Value +} + +export interface NeteasePaperDollRenderer { + screen_offset?: null + screen_scale?: Value + mob_body_rot_y?: Value + mob_head_rot_y?: Value + init_rot_y?: Value + skeleton_model_name?: Value + entity_identifier?: Value +} + +export interface NeteaseMiniMapRenderer { + size_grade?: null + use_default_face_icon?: Value + face_icon_bg_color?: Value> + enable_live_update?: Value + live_update_interval?: Value + highest_y?: Value +} + +export interface ProgressBarRenderer { + primary_color?: Value> + secondary_color?: Value> + full_storage_color?: Value> +} + +export interface GradientRenderer { + gradient_direction?: Value + color1?: Value | Array4> + color2?: Value | Array4> +} + +export interface NameTagRenderer { + text_color?: Value> + background_color?: Value> +} + +export interface HoverTextRenderer { + hover_text_max_width?: Value +} + +export interface Debug { + debug?: Value +} + +export interface EquipmentPreviewRenderer { + rotation_x?: Value + rotation_y?: Value +} diff --git a/src/types/properties/element/Cycler.ts b/src/types/properties/element/Cycler.ts new file mode 100644 index 0000000..6da7a37 --- /dev/null +++ b/src/types/properties/element/Cycler.ts @@ -0,0 +1,19 @@ +import { Value } from "../value.js" + +export interface Image { + texture_path?: Value +} + +export interface Cycler { + target_cycler_to_compare?: Value + next_sub_page_button_name?: Value + prev_sub_page_button_name?: Value +} + +export interface LabelCycler { + text_labels?: Value> +} + +export interface ImageCycler { + images?: Value> +} diff --git a/src/types/properties/element/DataBinding.ts b/src/types/properties/element/DataBinding.ts new file mode 100644 index 0000000..675d755 --- /dev/null +++ b/src/types/properties/element/DataBinding.ts @@ -0,0 +1,5 @@ +import { BindingItem, Value } from "../value.js" + +export interface DataBinding { + bindings: Value> +} diff --git a/src/types/properties/element/DropdownName.ts b/src/types/properties/element/DropdownName.ts new file mode 100644 index 0000000..06b82ab --- /dev/null +++ b/src/types/properties/element/DropdownName.ts @@ -0,0 +1,7 @@ +import { Value } from "../value.js" + +export interface DropdownName { + dropdown_name?: Value + dropdown_content_control?: Value + dropdown_area?: Value +} diff --git a/src/types/properties/element/EditBox.ts b/src/types/properties/element/EditBox.ts new file mode 100644 index 0000000..22e8237 --- /dev/null +++ b/src/types/properties/element/EditBox.ts @@ -0,0 +1,19 @@ +import { CollectionName } from "../../enums/CollectionName.js" +import { TextboxName } from "../../enums/TextboxName.js" +import { TextType } from "../../enums/TextType.js" +import { Array3, Value } from "../value.js" + +export interface EditBox { + text_box_name?: Value + text_edit_box_grid_collection_name?: Value + constrain_to_rect?: Value + enabled_newline?: Value + text_type?: Value + max_length?: Value + text_control?: Value + place_holder_control?: Value + can_be_deselected?: Value + always_listening?: Value + virtual_keyboard_buffer_control?: Value + place_holder_text_hover_color?: Value> +} diff --git a/src/types/properties/element/Factory.ts b/src/types/properties/element/Factory.ts new file mode 100644 index 0000000..d81f485 --- /dev/null +++ b/src/types/properties/element/Factory.ts @@ -0,0 +1,20 @@ +import { Value, Variable } from "../value.js" + +export type FactoryControlIds = Record> + +export interface FactoryProperty { + name?: Value + control_name?: Value + control_ids?: Value + factory_variables?: Value> + max_children_size?: Value + insert_location?: Value<"front"> + max_size?: Value +} + +export interface Factory { + factory?: FactoryProperty + control_ids?: Value + control_name?: Value + factory_variables?: Value> +} diff --git a/src/types/properties/element/Focus.ts b/src/types/properties/element/Focus.ts new file mode 100644 index 0000000..be2e7af --- /dev/null +++ b/src/types/properties/element/Focus.ts @@ -0,0 +1,33 @@ +import { FocusNavigationMode } from "../../enums/FocusNavigationMode.js" +import { FocusContainerCustom, Value } from "../value.js" + +export interface FocusMapping { + focus_identifier?: string + focus_change_right?: string + focus_change_left?: string + focus_change_up?: string + focus_change_down?: string +} + +export interface Focus { + default_focus_precedence?: Value + focus_enabled?: Value + focus_wrap_enabled?: Value + focus_magnet_enabled?: Value + focus_identifier?: Value + focus_change_down?: Value + focus_change_up?: Value + focus_change_left?: Value + focus_change_right?: Value + focus_mapping?: Array + focus_container?: Value + use_last_focus?: Value + focus_navigation_mode_left?: Value + focus_navigation_mode_right?: Value + focus_navigation_mode_down?: Value + focus_navigation_mode_up?: Value + focus_container_custom_left?: Value + focus_container_custom_right?: Value + focus_container_custom_down?: Value + focus_container_custom_up?: Value +} diff --git a/src/types/properties/element/Grid.ts b/src/types/properties/element/Grid.ts new file mode 100644 index 0000000..2b41c3d --- /dev/null +++ b/src/types/properties/element/Grid.ts @@ -0,0 +1,13 @@ +import { Array2, Binding, Value } from "../value.js" +import * as bind from "../../enums/Binding.js" +import { Orientation } from "../../enums/Orientation.js" + +export interface Grid { + grid_dimensions?: Value> + maximum_grid_items?: Value + grid_dimension_binding?: Value + grid_rescaling_type?: Value + grid_fill_direction?: Value + precached_grid_item_count?: Value + grid_item_template?: Value +} diff --git a/src/types/properties/element/GridItem.ts b/src/types/properties/element/GridItem.ts new file mode 100644 index 0000000..64ebef8 --- /dev/null +++ b/src/types/properties/element/GridItem.ts @@ -0,0 +1,5 @@ +import { Array2, Value } from "../value.js" + +export interface GridItem { + grid_position?: Value> +} diff --git a/src/types/properties/element/GridPageIndicator.ts b/src/types/properties/element/GridPageIndicator.ts new file mode 100644 index 0000000..351a42d --- /dev/null +++ b/src/types/properties/element/GridPageIndicator.ts @@ -0,0 +1,7 @@ +import { Value } from "../value.js" + +export interface GridPageIndicator { + grid_item_when_current?: Value + grid_item_when_not_current?: Value + cycler_manager_size_control_target?: Value +} diff --git a/src/types/properties/element/Input.ts b/src/types/properties/element/Input.ts new file mode 100644 index 0000000..4b0f6b6 --- /dev/null +++ b/src/types/properties/element/Input.ts @@ -0,0 +1,17 @@ +import { ButtonId } from "../../enums/ButtonId.js" +import { ButtonMapping, Value } from "../value.js" + +export interface Input { + button_mappings?: Array + modal?: Value + inline_modal?: Value + always_listen_to_input?: Value + always_handle_pointer?: Value + always_handle_controller_direction?: Value + hover_enabled?: Value + prevent_touch_input?: Value + consume_event?: Value + consume_hover_events?: Value + gesture_tracking_button?: Value + gamepad_deflection_mode?: Value +} diff --git a/src/types/properties/element/Layout.ts b/src/types/properties/element/Layout.ts new file mode 100644 index 0000000..b9c5503 --- /dev/null +++ b/src/types/properties/element/Layout.ts @@ -0,0 +1,15 @@ +import { Anchor } from "../../enums/Anchor.js" +import { Value, AnimValue, Array2 } from "../value.js" + +export interface Layout { + offset?: AnimValue> + size?: AnimValue> + max_size?: AnimValue> + min_size?: AnimValue> + inherit_max_sibling_width?: Value + inherit_max_sibling_height?: Value + use_anchored_offset?: Value + anchor_from?: Value + anchor_to?: Value + anchor?: Value +} diff --git a/src/types/properties/element/Screen.ts b/src/types/properties/element/Screen.ts new file mode 100644 index 0000000..a9892e6 --- /dev/null +++ b/src/types/properties/element/Screen.ts @@ -0,0 +1,24 @@ +import { Value } from "../value.js" + +export interface Screen { + render_only_when_topmost?: Value + screen_not_flushable?: Value + always_accepts_input?: Value + render_game_behind?: Value + absorbs_input?: Value + is_showing_menu?: Value + is_modal?: Value + should_steal_mouse?: Value + low_frequency_rendering?: Value + screen_draws_last?: Value + vr_mode?: Value + force_render_below?: Value + send_telemetry?: Value + close_on_player_hurt?: Value + cache_screen?: Value + load_screen_immediately?: Value + gamepad_cursor?: Value + gamepad_cursor_deflection_mode?: Value + should_be_skipped_during_automation?: Value + use_custom_pocket_toast?: Value +} diff --git a/src/types/properties/element/ScrollView.ts b/src/types/properties/element/ScrollView.ts new file mode 100644 index 0000000..a63f41e --- /dev/null +++ b/src/types/properties/element/ScrollView.ts @@ -0,0 +1,18 @@ +import { Value } from "../value.js" + +export interface ScrollView { + scrollbar_track_button?: Value + scrollbar_touch_button?: Value + scroll_speed?: Value + gesture_control_enabled?: Value + always_handle_scrolling?: Value + touch_mode?: Value + scrollbar_box?: Value + scrollbar_track?: Value + scroll_view_port?: Value + scroll_content?: Value + scroll_box_and_track_panel?: Value + jump_to_bottom_on_update?: Value + allow_scroll_even_when_content_fits?: Value + scrollbar_always_visible?: Value +} diff --git a/src/types/properties/element/SelectionWheel.ts b/src/types/properties/element/SelectionWheel.ts new file mode 100644 index 0000000..50504d6 --- /dev/null +++ b/src/types/properties/element/SelectionWheel.ts @@ -0,0 +1,15 @@ +import { Value } from "../value.js" + +export interface SelectionWheel { + inner_radius?: Value + outer_radius?: Value + state_controls?: Value> + slice_count?: Value + button_name?: Value + iterate_left_button_name?: Value + iterate_right_button_name?: Value + initial_button_slice?: Value + select_button_name?: Value + hover_button_name?: Value + analog_button_name?: Value +} diff --git a/src/types/properties/element/Slider.ts b/src/types/properties/element/Slider.ts new file mode 100644 index 0000000..c0a9c99 --- /dev/null +++ b/src/types/properties/element/Slider.ts @@ -0,0 +1,31 @@ +import { Color } from "../../../components/Utils.js" +import { ButtonId } from "../../enums/ButtonId.js" +import { CollectionName } from "../../enums/CollectionName.js" +import { Orientation } from "../../enums/Orientation.js" +import { SliderName } from "../../enums/SliderName.js" +import { Array3, Value } from "../value.js" + +export interface Slider { + slider_track_button?: Value + slider_small_decrease_button?: Value + slider_small_increase_button?: Value + slider_steps?: Value + slider_direction?: Value + slider_timeout?: Value + slider_collection_name?: Value + slider_name?: Value + slider_select_on_hover?: Value + slider_selected_button?: Value + slider_deselected_button?: Value + slider_box_control?: Value + background_control?: Value + background_hover_control?: Value + progress_control?: Value + progress_hover_control?: Value + slider_render_bar_background_color?: Value> + slider_render_bar_progress_color?: Value> + slider_render_bar_outline_color?: Value> + slider_render_bar_background_hover_color?: Value> + slider_render_bar_progress_hover_color?: Value> + slider_render_bar_outline_hover_color?: Value> +} diff --git a/src/types/properties/element/Sliderbox.ts b/src/types/properties/element/Sliderbox.ts new file mode 100644 index 0000000..d1d91be --- /dev/null +++ b/src/types/properties/element/Sliderbox.ts @@ -0,0 +1,5 @@ +import { Value } from "../value.js" + +export interface SliderBox { + indent_control?: Value +} diff --git a/src/types/properties/element/Sound.ts b/src/types/properties/element/Sound.ts new file mode 100644 index 0000000..db1b9ec --- /dev/null +++ b/src/types/properties/element/Sound.ts @@ -0,0 +1,17 @@ +import { Value } from "../value.js" + +export interface SoundProperties { + sound_name?: Value + sound_volume?: Value + sound_pitch?: Value + min_seconds_between_plays?: Value + event_type?: Value + button_name?: Value +} + +export interface Sound { + sound_name?: Value + sound_volume?: Value + sound_pitch?: Value + sounds?: Value> +} diff --git a/src/types/properties/element/Sprite.ts b/src/types/properties/element/Sprite.ts new file mode 100644 index 0000000..363e65f --- /dev/null +++ b/src/types/properties/element/Sprite.ts @@ -0,0 +1,26 @@ +import { ClipDirection } from "../../enums/ClipDirection.js" +import { AnimValue, Array2, Array3, Array4, Value } from "../value.js" + +export interface Sprite { + texture?: Value + allow_debug_missing_texture?: Value + uv?: AnimValue> + uv_size?: AnimValue> + texture_file_system?: Value + nineslice_size?: AnimValue | Array3 | Array4> + tiled?: Value + tiled_scale?: Value> + clip_direction?: Value + clip_ratio?: Value + clip_pixelperfect?: Value + pixel_perfect?: Value + keep_ratio?: Value + bilinear?: Value + fill?: Value + fit_to_width?: Value + zip_folder?: Value + grayscale?: Value + force_texture_reload?: Value + base_size?: Value> + color_corrected?: Value +} diff --git a/src/types/properties/element/StackPanel.ts b/src/types/properties/element/StackPanel.ts new file mode 100644 index 0000000..a565ac6 --- /dev/null +++ b/src/types/properties/element/StackPanel.ts @@ -0,0 +1,6 @@ +import { Orientation } from "../../enums/Orientation.js" +import { Value } from "../value.js" + +export interface StackPanel { + orientation?: Value +} diff --git a/src/types/properties/element/TTS.ts b/src/types/properties/element/TTS.ts new file mode 100644 index 0000000..735b605 --- /dev/null +++ b/src/types/properties/element/TTS.ts @@ -0,0 +1,24 @@ +import { Value } from "../value.js" + +export interface TTS { + tts_name?: Value + tts_control_header?: Value + tts_section_header?: Value + tts_control_type_order_priority?: Value + tts_index_priority?: Value + tts_toggle_on?: Value + tts_toggle_off?: Value + tts_override_control_value?: Value + tts_inherit_siblings?: Value + tts_value_changed?: Value + ttsSectionContainer?: Value + tts_ignore_count?: Value + tts_skip_message?: Value + tts_skip_children?: Value + tts_value_order_priority?: Value + tts_play_on_unchanged_focus_control?: Value + tts_ignore_subsections?: Value + text_tts?: Value + use_priority?: Value + priority?: Value +} diff --git a/src/types/properties/element/Tab.ts b/src/types/properties/element/Tab.ts new file mode 100644 index 0000000..a45af0c --- /dev/null +++ b/src/types/properties/element/Tab.ts @@ -0,0 +1,7 @@ +import { Value } from "../value.js" + +export interface Tab { + tab_index?: Value + tab_control?: Value + tab_content?: Value +} diff --git a/src/types/properties/element/Text.ts b/src/types/properties/element/Text.ts new file mode 100644 index 0000000..70763f2 --- /dev/null +++ b/src/types/properties/element/Text.ts @@ -0,0 +1,26 @@ +import { FontType } from "../../enums/FontType.js" +import { TextAlignment } from "../../enums/TextAlignment.js" +import { AnimValue, Array3, Value } from "../value.js" + +export interface Text { + text?: Value + color?: AnimValue> + locked_color?: AnimValue> + shadow?: Value + hide_hyphens?: Value + notify_on_ellipses?: Value> + notify_ellipses_sibling?: Value + enable_profanity_filter?: Value + locked_alpha?: AnimValue + font_size?: Value + font_scale_factor?: Value + localize?: Value + line_padding?: Value + font_type?: Value + backup_font_type?: Value + text_alignment?: Value + alignment?: Value + use_place_holder?: Value + place_holder_text?: Value + place_holder_text_color?: AnimValue> +} diff --git a/src/types/properties/element/Toggle.ts b/src/types/properties/element/Toggle.ts new file mode 100644 index 0000000..abcfb75 --- /dev/null +++ b/src/types/properties/element/Toggle.ts @@ -0,0 +1,25 @@ +import { CollectionName } from "../../enums/CollectionName.js" +import { ToggleName } from "../../enums/ToggleName.js" +import { Value } from "../value.js" + +export interface Toggle { + radio_toggle_group?: Value + toggle_name?: Value + toggle_default_state?: Value + toggle_group_forced_index?: Value + toggle_group_default_selected?: Value + reset_on_focus_lost?: Value + toggle_on_hover?: Value + toggle_on_button?: Value + toggle_off_button?: Value + enable_directional_toggling?: Value + toggle_grid_collection_name?: Value + checked_control?: Value + unchecked_control?: Value + checked_hover_control?: Value + unchecked_hover_control?: Value + checked_locked_control?: Value + unchecked_locked_control?: Value + checked_locked_hover_control?: Value + unchecked_locked_hover_control?: Value +} diff --git a/src/types/properties/element/TooltipTrigger.ts b/src/types/properties/element/TooltipTrigger.ts new file mode 100644 index 0000000..775baab --- /dev/null +++ b/src/types/properties/element/TooltipTrigger.ts @@ -0,0 +1,9 @@ +import { Value } from "../value.js" + +export interface TooltipTrigger { + tooltip_name?: Value + tooltip_top_content_control?: Value + tooltip_bottom_content_control?: Value + tooltip_area?: Value + tooltip_tts_value?: Value +} diff --git a/src/types/properties/element/index.ts b/src/types/properties/element/index.ts new file mode 100644 index 0000000..7870f4d --- /dev/null +++ b/src/types/properties/element/index.ts @@ -0,0 +1,30 @@ +export * from "./Animation.js" +export * from "./Button.js" +export * from "./CarouselLabel.js" +export * from "./Collection.js" +export * from "./Control.js" +export * from "./CustomRenderer.js" +export * from "./Cycler.js" +export * from "./DataBinding.js" +export * from "./DropdownName.js" +export * from "./EditBox.js" +export * from "./Factory.js" +export * from "./Focus.js" +export * from "./Grid.js" +export * from "./GridItem.js" +export * from "./GridPageIndicator.js" +export * from "./Input.js" +export * from "./Layout.js" +export * from "./Screen.js" +export * from "./ScrollView.js" +export * from "./SelectionWheel.js" +export * from "./Slider.js" +export * from "./Sliderbox.js" +export * from "./Sound.js" +export * from "./Sprite.js" +export * from "./StackPanel.js" +export * from "./Tab.js" +export * from "./Text.js" +export * from "./Toggle.js" +export * from "./TooltipTrigger.js" +export * from "./TTS.js" diff --git a/src/types/properties/index.ts b/src/types/properties/index.ts new file mode 100644 index 0000000..b5b3bc0 --- /dev/null +++ b/src/types/properties/index.ts @@ -0,0 +1,3 @@ +export * as ElementProperties from "./element/index.js" +export * as ComponentProperties from "./components.js" +export * as Value from "./value.js" diff --git a/src/types/properties/value.ts b/src/types/properties/value.ts new file mode 100644 index 0000000..a1425f8 --- /dev/null +++ b/src/types/properties/value.ts @@ -0,0 +1,57 @@ +import * as anim from "../../components/Animation.js" +import { BindingType } from "../enums/BindingType.js" +import * as bind from "../enums/Binding.js" +import { CollectionName } from "../enums/CollectionName.js" +import { BindingCondition } from "../enums/BindingCondition.js" +import { ButtonId } from "../enums/ButtonId.js" +import { MappingType } from "../enums/MappingType.js" +import { InputModeCondition } from "../enums/InputModeCondition.js" +import { Scope } from "../enums/Scope.js" + +export type Variable = `$${string}` +export type Binding = `#${string}` +export type Animation = anim.Animation | `@${string}` + +export type Array2 = [T, T] +export type Array3 = [T, T, T] +export type Array4 = [T, T, T, T] + +export type Value = Variable | T +export type AnimValue = Value + +export type BindingItem = { + ignored?: Value + binding_type?: Value + binding_name?: Value + binding_name_override?: Value + binding_collection_name?: Value + binding_collection_prefix?: Value + binding_condition?: Value + source_control_name?: Value + source_property_name?: Value + target_property_name?: Value + resolve_sibling_scope?: Value +} + +export type FocusContainerCustom = Array<{ + other_focus_container_name?: Value + focus_id_inside?: Value +}> + +export type ButtonMapping = { + from_button_id?: Value + to_button_id?: Value + button_up_right_of_first_refusal?: Value + mapping_type?: Value + ignored?: Value + input_mode_condition?: Value + ignore_input_scope?: Value + scope?: Value + consume_event?: Value + handle_select?: Value + handle_deselect?: Value +} + +export type PropertyBags = { + [key: Binding]: Value +} diff --git a/test/app.ts b/test/app.ts new file mode 100644 index 0000000..5b2b4fd --- /dev/null +++ b/test/app.ts @@ -0,0 +1,11 @@ +import { Anchor, Custom, Extends, GlobalVariables, Panel, Renderer, Type, UI } from ".." + +const paperDoll = Custom(Renderer.PAPER_DOLL_RENDERER, { + camera_tilt_degrees: 360, + starting_rotation: 0, +}) + +const panel = Panel({ + anchor: Anchor.BOTTOM_LEFT, + offset: [50, 50], +}) diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..e4cc890 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "target": "esnext", + "module": "nodenext", + "moduleResolution": "nodenext", + + "outDir": "dist", + "declaration": true, + + "sourceMap": true, + "strict": true, + "esModuleInterop": true, + "incremental": true, + "tsBuildInfoFile": ".tsbuildinfo" + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist"] +} From d9cf50eec1a79a4cde89f2994ef9222db8da3b08 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sun, 4 Jan 2026 13:19:44 +0700 Subject: [PATCH 002/245] fun --- src/compilers/Memory.ts | 2 +- src/components/UI.ts | 13 +++++++------ src/components/Utils.ts | 17 ++++++++++++----- src/types/properties/components.ts | 7 ++++--- test/app.ts | 14 ++++++++++++-- 5 files changed, 36 insertions(+), 17 deletions(-) diff --git a/src/compilers/Memory.ts b/src/compilers/Memory.ts index 03fac9a..091e29b 100644 --- a/src/compilers/Memory.ts +++ b/src/compilers/Memory.ts @@ -3,7 +3,7 @@ import { UI } from "../components/UI.js" export const Memory = { cache: new Map> }>(), - register_ui(path: string, element: UI) { + register_ui(path: string, element: UI) { const { elements: saver, namespace } = this.get_file(path, element.namespace!) if (saver.get(element.name!)) { diff --git a/src/components/UI.ts b/src/components/UI.ts index fc67e58..b073649 100644 --- a/src/components/UI.ts +++ b/src/components/UI.ts @@ -1,5 +1,6 @@ import { FormatProperties } from "../compilers/FormatProperties.js" import { Memory } from "../compilers/Memory.js" +import { Renderer } from "../types/enums/Renderer.js" import { Type } from "../types/enums/Type.js" import { Properties } from "../types/properties/components.js" import { Class } from "./Class.js" @@ -7,15 +8,15 @@ import { RandomString } from "./Utils.js" import util from "node:util" -export class UI extends Class { +export class UI extends Class { private path: string name: string namespace: string - extend?: UI + extend?: UI - controls = new Map, Properties]>() - properties: Properties = {} + controls = new Map, Properties]>() + properties: Properties = {} constructor(public type?: T, name?: string, namespace?: string, path?: string) { super() @@ -29,12 +30,12 @@ export class UI extends Class { Memory.register_ui(this.path, this) } - setProperties(properties: Properties) { + setProperties(properties: Properties) { this.properties = properties return this } - addChild(child: UI, properties?: Properties, name?: string) { + addChild(child: UI, properties?: Properties, name?: string) { if (this === child) { throw new Error("Cannot add a child to itself") } diff --git a/src/components/Utils.ts b/src/components/Utils.ts index 4c0bc5e..4767783 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -4,7 +4,6 @@ import { UI } from "./UI.js" import { Renderer } from "../types/enums/Renderer.js" import { - RendererProperties, Properties, CollectionPanel, Custom, @@ -111,11 +110,13 @@ export function Label(properties?: Label, name?: string, namespace?: string) { export function Custom( renderer: R, - properties?: Custom | RendererProperties, + properties?: Properties, name?: string, namespace?: string ) { - return new UI(Type.CUSTOM, name, namespace).setProperties({ renderer, ...properties }) + const custom = new UI(Type.CUSTOM, name, namespace) + if (properties) custom.setProperties({ renderer, ...properties }) + return custom } export function TooltipTrigger(properties?: TooltipTrigger, name?: string, namespace?: string) { @@ -162,8 +163,14 @@ export function SliderBox(properties?: SliderBox, name?: string, namespace?: str return new UI(Type.SLIDER_BOX, name, namespace).setProperties(properties || {}) } -export function Extends(element: UI, properties?: Properties, name?: string, namespace?: string) { - const ui = new UI(undefined, name, namespace).setProperties(properties || {}) +export function Extends( + element: UI, + properties?: Properties, + name?: string, + namespace?: string +) { + const ui = new UI(undefined, name, namespace) + if (properties) ui.setProperties(properties) ui.extend = element return ui as typeof element } diff --git a/src/types/properties/components.ts b/src/types/properties/components.ts index 445f4ad..e71489c 100644 --- a/src/types/properties/components.ts +++ b/src/types/properties/components.ts @@ -53,8 +53,6 @@ export interface ComponenetsProperties { [Type.SLIDER_BOX]: SliderBox } -export type Properties = T extends keyof ComponenetsProperties ? Partial : {} - export interface CustomRendererProperties { [Renderer.PAPER_DOLL_RENDERER]: e.PaperDollRenderer [Renderer.NETEASE_PAPER_DOLL_RENDERER]: e.NeteasePaperDollRenderer @@ -67,4 +65,7 @@ export interface CustomRendererProperties { [Renderer.EQUIPMENT_PREVIEW_RENDERER]: e.EquipmentPreviewRenderer } -export type RendererProperties = T extends keyof CustomRendererProperties ? Partial : {} +export type Properties = (T extends keyof ComponenetsProperties + ? Partial + : {}) & + (K extends keyof CustomRendererProperties ? Partial : {}) diff --git a/test/app.ts b/test/app.ts index 5b2b4fd..382760e 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1,6 +1,6 @@ -import { Anchor, Custom, Extends, GlobalVariables, Panel, Renderer, Type, UI } from ".." +import { Anchor, Button, Custom, Extends, GlobalVariables, Panel, Renderer, Type, UI } from ".." -const paperDoll = Custom(Renderer.PAPER_DOLL_RENDERER, { +const paperDoll = Custom(Renderer.ANIMATED_GIF_RENDERER, { camera_tilt_degrees: 360, starting_rotation: 0, }) @@ -8,4 +8,14 @@ const paperDoll = Custom(Renderer.PAPER_DOLL_RENDERER, { const panel = Panel({ anchor: Anchor.BOTTOM_LEFT, offset: [50, 50], +}).setProperties({ + camera_tilt_degrees: 360, +}) + +paperDoll.setProperties({ + camera_tilt_degrees: 360, +}) + +panel.setProperties({ + hover_control: "cac", }) From bb9b300d6f9e18413d86742405a771bfc30c33d6 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 5 Jan 2026 10:58:28 +0700 Subject: [PATCH 003/245] idk --- src/compilers/FormatProperties.ts | 21 ++++++++++++++-- src/compilers/Memory.ts | 19 ++++++++++++--- src/compilers/PreCompile.ts | 11 +++++++++ src/compilers/RunEnd.ts | 7 ++++++ src/components/UI.ts | 16 +++++++++---- src/index.ts | 3 +++ src/types/properties/element/Control.ts | 3 ++- test/app.ts | 32 ++++++++++--------------- tsconfig.json | 2 +- 9 files changed, 83 insertions(+), 31 deletions(-) create mode 100644 src/compilers/PreCompile.ts create mode 100644 src/compilers/RunEnd.ts diff --git a/src/compilers/FormatProperties.ts b/src/compilers/FormatProperties.ts index e47d716..3e8b547 100644 --- a/src/compilers/FormatProperties.ts +++ b/src/compilers/FormatProperties.ts @@ -1,11 +1,28 @@ -import { Type } from "../index.js" -import { Properties } from "../types/properties/components.js" +import { Binding } from "../types/properties/value.js" export function FormatProperties(properties: any) { + const property_bags: Record = {} + + for (const key in properties) { + const value = properties[key] + + if (key.startsWith("#")) { + property_bags[key] = value + delete properties[key] + } + } + if (properties.anchor) { properties.anchor_from = properties.anchor_to = properties.anchor delete properties.anchor } + if (Object.keys(property_bags)) + if (properties.property_bags) { + properties.property_bags = { ...property_bags, ...properties.property_bags } + } else { + properties.property_bags = property_bags + } + return properties } diff --git a/src/compilers/Memory.ts b/src/compilers/Memory.ts index 091e29b..1fff7f7 100644 --- a/src/compilers/Memory.ts +++ b/src/compilers/Memory.ts @@ -1,9 +1,11 @@ import { UI } from "../components/UI.js" +import { Renderer } from "../types/enums/Renderer.js" +import { Type } from "../types/enums/Type.js" export const Memory = { - cache: new Map> }>(), + cache: new Map> }>(), - register_ui(path: string, element: UI) { + register_ui(path: string, element: UI) { const { elements: saver, namespace } = this.get_file(path, element.namespace!) if (saver.get(element.name!)) { @@ -15,11 +17,22 @@ export const Memory = { return namespace }, + gen_ui_file_content(namespace: string, elements: Map>) { + return JSON.stringify( + { + namespace, + ...elements.toJSON(), + }, + null, + 4 + ) + }, + get_file(path: string, namespace: string) { let cached = this.cache.get(path) if (!cached) { - cached = { namespace, elements: new Map>() } + cached = { namespace, elements: new Map>() } this.cache.set(path, cached) } diff --git a/src/compilers/PreCompile.ts b/src/compilers/PreCompile.ts new file mode 100644 index 0000000..bd03047 --- /dev/null +++ b/src/compilers/PreCompile.ts @@ -0,0 +1,11 @@ +declare global { + interface Map { + toJSON(): Record + } +} + +Map.prototype.toJSON = function () { + const obj: any = {} + this.forEach((value, key) => (obj[key] = value)) + return obj +} diff --git a/src/compilers/RunEnd.ts b/src/compilers/RunEnd.ts new file mode 100644 index 0000000..53f16fa --- /dev/null +++ b/src/compilers/RunEnd.ts @@ -0,0 +1,7 @@ +import { Memory } from "./Memory.js" + +process.on("beforeExit", () => { + Memory.cache.forEach(({ elements, namespace }) => { + console.log(Memory.gen_ui_file_content(namespace, elements)) + }) +}) diff --git a/src/components/UI.ts b/src/components/UI.ts index b073649..098eacc 100644 --- a/src/components/UI.ts +++ b/src/components/UI.ts @@ -21,6 +21,11 @@ export class UI extends Class constructor(public type?: T, name?: string, namespace?: string, path?: string) { super() + if (name === "namespace") { + console.error("The 'namespace' cannot be used as a name") + process.exit(1) + } + this.name = name?.match(/^\w+/)?.[0] || RandomString(16) this.namespace = namespace || RandomString(16) @@ -31,7 +36,7 @@ export class UI extends Class } setProperties(properties: Properties) { - this.properties = properties + this.properties = { ...this.properties, ...properties } return this } @@ -40,7 +45,7 @@ export class UI extends Class throw new Error("Cannot add a child to itself") } - this.controls.set(name || child.name, [child, properties || {}]) + this.controls.set(name || RandomString(16), [child, properties || {}]) return this } @@ -50,10 +55,13 @@ export class UI extends Class toJSON() { const obj: any = { - type: this.type, ...FormatProperties(this.properties), } + if (this.type) { + obj.type = this.type + } + if (this.controls.size) { obj.controls = [] this.controls.forEach((e, key) => obj.controls.push({ [key + e[0]]: e[1] })) @@ -63,7 +71,7 @@ export class UI extends Class } [util.inspect.custom]($: any, opts: any) { - const obj: any = this.properties + const obj: any = FormatProperties(this.properties) if (this.controls.size) { obj.controls = [] diff --git a/src/index.ts b/src/index.ts index b187ce5..ff6add8 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,3 +1,6 @@ +import "./compilers/PreCompile.js" +import "./compilers/RunEnd.js" + export * from "./components/UI.js" export { Animation } from "./components/Animation.js" export * from "./components/Utils.js" diff --git a/src/types/properties/element/Control.ts b/src/types/properties/element/Control.ts index c28b53e..4fa97dd 100644 --- a/src/types/properties/element/Control.ts +++ b/src/types/properties/element/Control.ts @@ -1,4 +1,4 @@ -import { AnimValue, Array2, Binding, PropertyBags, Value } from "../value.js" +import { AnimValue, Array2, Binding, PropertyBags, Value, Variable } from "../value.js" export interface Control { visible?: Value @@ -18,4 +18,5 @@ export interface Control { follows_cursor?: Value property_bags?: Value [key: Binding]: Value + [key: Variable]: Value } diff --git a/test/app.ts b/test/app.ts index 382760e..2799a38 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1,21 +1,13 @@ -import { Anchor, Button, Custom, Extends, GlobalVariables, Panel, Renderer, Type, UI } from ".." +import { Binding, Color, Label, Panel } from ".." -const paperDoll = Custom(Renderer.ANIMATED_GIF_RENDERER, { - camera_tilt_degrees: 360, - starting_rotation: 0, -}) - -const panel = Panel({ - anchor: Anchor.BOTTOM_LEFT, - offset: [50, 50], -}).setProperties({ - camera_tilt_degrees: 360, -}) - -paperDoll.setProperties({ - camera_tilt_degrees: 360, -}) - -panel.setProperties({ - hover_control: "cac", -}) +Panel({ + "#test": 123, + [Binding.IS_CREATIVE_LAYOUT]: true, + [Binding.INVENTORY_SELECTED_ITEM_COLOR]: Color(0x00ff00), +}).addChild( + Label({ + text: "Hello, World!", + shadow: true, + color: Color("#3b0202"), + }) +) diff --git a/tsconfig.json b/tsconfig.json index e4cc890..a459abe 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,7 +7,7 @@ "outDir": "dist", "declaration": true, - "sourceMap": true, + "sourceMap": false, "strict": true, "esModuleInterop": true, "incremental": true, From 4d5f81f7e5855b1d3134f4e59c91a51d4b5ec33e Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Wed, 7 Jan 2026 10:46:18 +0700 Subject: [PATCH 004/245] binding compiler --- src/compilers/Memory.ts | 2 +- src/compilers/PreCompile.ts | 8 ++ src/compilers/RunEnd.ts | 2 +- src/compilers/bindings/Bindings.ts | 149 +++++++++++++++++++++++++++++ src/compilers/bindings/index.ts | 1 + src/compilers/bindings/types.ts | 20 ++++ src/index.ts | 3 +- test/app.ts | 18 ++-- 8 files changed, 188 insertions(+), 15 deletions(-) create mode 100644 src/compilers/bindings/Bindings.ts create mode 100644 src/compilers/bindings/index.ts create mode 100644 src/compilers/bindings/types.ts diff --git a/src/compilers/Memory.ts b/src/compilers/Memory.ts index 1fff7f7..72354dc 100644 --- a/src/compilers/Memory.ts +++ b/src/compilers/Memory.ts @@ -17,7 +17,7 @@ export const Memory = { return namespace }, - gen_ui_file_content(namespace: string, elements: Map>) { + gen_ui_file_contents(namespace: string, elements: Map>) { return JSON.stringify( { namespace, diff --git a/src/compilers/PreCompile.ts b/src/compilers/PreCompile.ts index bd03047..ed18081 100644 --- a/src/compilers/PreCompile.ts +++ b/src/compilers/PreCompile.ts @@ -2,6 +2,10 @@ declare global { interface Map { toJSON(): Record } + + interface Array { + lastItem(): T + } } Map.prototype.toJSON = function () { @@ -9,3 +13,7 @@ Map.prototype.toJSON = function () { this.forEach((value, key) => (obj[key] = value)) return obj } + +Array.prototype.lastItem = function () { + return this[this.length - 1] +} diff --git a/src/compilers/RunEnd.ts b/src/compilers/RunEnd.ts index 53f16fa..4acb27f 100644 --- a/src/compilers/RunEnd.ts +++ b/src/compilers/RunEnd.ts @@ -2,6 +2,6 @@ import { Memory } from "./Memory.js" process.on("beforeExit", () => { Memory.cache.forEach(({ elements, namespace }) => { - console.log(Memory.gen_ui_file_content(namespace, elements)) + const contents = Memory.gen_ui_file_contents(namespace, elements) }) }) diff --git a/src/compilers/bindings/Bindings.ts b/src/compilers/bindings/Bindings.ts new file mode 100644 index 0000000..9aad1fd --- /dev/null +++ b/src/compilers/bindings/Bindings.ts @@ -0,0 +1,149 @@ +import { Token, TokenKind } from "./types.js" + +export const BindingTranspiler = { + isBlankChar(char: string) { + return /\s/.test(char) + }, + + isWordChar(char: string) { + return char && /\w/.test(char) + }, + + isNumberChar(char: string) { + return /\d/.test(char) + }, + + token(input: string, kind: TokenKind, start: number, length: number = 1): Token { + return { + value: input.slice(start, start + length), + kind, + start, + length, + } + }, + + lexer(input: string) { + const tokens: Token[] = [] + + let index = 0 + do { + const token = input[index] + + if (BindingTranspiler.isBlankChar(token)) continue + + switch (token) { + // Literals + case "#": + case "$": { + const start = index++ + + do { + const token = input[index] + if (BindingTranspiler.isWordChar(token)) continue + else break + } while (++index < input.length) + + tokens.push(BindingTranspiler.token(input, TokenKind.VARIABLE, start, index - start)) + + break + } + + case "'": { + const start = index++ + + do { + const token = input[index] + if (token === "'") break + } while (++index < input.length) + + tokens.push(BindingTranspiler.token(input, TokenKind.STRING, start, index - start + 1)) + + break + } + + case "`": { + const start = index++, + struct: boolean[] = [] + + do { + const token = input[index] + let lastStruct = struct.lastItem() + + if (token === "`") { + if (struct.length) { + if (lastStruct === false) struct.pop() + else struct.push(false) + } else break + } + + if (token === "$") { + if (input[index + 1] === "{" && !lastStruct) { + struct.push(true) + index++ + } + } + + if (token === "}" && lastStruct === true) struct.pop() + } while (++index < input.length) + + tokens.push(BindingTranspiler.token(input, TokenKind.TEMPLATE_STRING, start, index - start + 1)) + + break + } + + case ",": + tokens.push(BindingTranspiler.token(input, TokenKind.COMMA, index)) + break + + // Single operators + case "+": + case "-": + case "*": + case "/": + tokens.push(BindingTranspiler.token(input, TokenKind.OPERATOR, index)) + break + + case "(": + tokens.push(BindingTranspiler.token(input, TokenKind.OPEN_PARENTHESIS, index)) + break + + case ")": + tokens.push(BindingTranspiler.token(input, TokenKind.CLOSE_PARENTHESIS, index)) + break + + // Double operators + case "&": + case "|": + case "=": + if (input[index + 1] === input[index]) + tokens.push(BindingTranspiler.token(input, TokenKind.OPERATOR, ++index, 2)) + else tokens.push(BindingTranspiler.token(input, TokenKind.OPERATOR, index)) + break + + case "!": + case ">": + case "<": + if (input[index + 1] === "=") + tokens.push(BindingTranspiler.token(input, TokenKind.OPERATOR, ++index, 2)) + else tokens.push(BindingTranspiler.token(input, TokenKind.OPERATOR, index)) + break + + default: { + let start = index + + if (BindingTranspiler.isNumberChar(token)) { + while (BindingTranspiler.isNumberChar(input[index + 1])) index++ + tokens.push(BindingTranspiler.token(input, TokenKind.NUMBER, start, index - start + 1)) + } else if (BindingTranspiler.isWordChar(token)) { + while (BindingTranspiler.isWordChar(input[index + 1])) index++ + tokens.push(BindingTranspiler.token(input, TokenKind.WORD, start, index - start + 1)) + } + } + } + } while (++index < input.length) + + return tokens + }, + + parser(input: string, tokens: Token[]) {}, +} diff --git a/src/compilers/bindings/index.ts b/src/compilers/bindings/index.ts new file mode 100644 index 0000000..6082dd4 --- /dev/null +++ b/src/compilers/bindings/index.ts @@ -0,0 +1 @@ +export * from "./Bindings.js" diff --git a/src/compilers/bindings/types.ts b/src/compilers/bindings/types.ts new file mode 100644 index 0000000..71e8209 --- /dev/null +++ b/src/compilers/bindings/types.ts @@ -0,0 +1,20 @@ +export enum TokenKind { + VARIABLE, + NUMBER, + STRING, + TEMPLATE_STRING, + WORD, + + OPEN_PARENTHESIS, + CLOSE_PARENTHESIS, + + OPERATOR, + COMMA, +} + +export interface Token { + kind: TokenKind + value: string + start: number + length: number +} diff --git a/src/index.ts b/src/index.ts index ff6add8..d92a565 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,9 +1,10 @@ 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 * from "./components/Utils.js" export * from "./types/enums/index.js" +export * from "./compilers/bindings/index.js" export * as Properties from "./types/properties/index.js" diff --git a/test/app.ts b/test/app.ts index 2799a38..7ed14ef 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1,13 +1,7 @@ -import { Binding, Color, Label, Panel } from ".." +import { BindingTranspiler } from ".." -Panel({ - "#test": 123, - [Binding.IS_CREATIVE_LAYOUT]: true, - [Binding.INVENTORY_SELECTED_ITEM_COLOR]: Color(0x00ff00), -}).addChild( - Label({ - text: "Hello, World!", - shadow: true, - color: Color("#3b0202"), - }) -) +const input = "abcdef + 123456" + +const lexer = BindingTranspiler.lexer(input) + +console.log(lexer) From df7c64207783f260b733923af3458149ac5b42b2 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 17 Jan 2026 02:03:47 +0700 Subject: [PATCH 005/245] uh --- package.json | 2 +- src/compilers/bindings/Bindings.ts | 149 ------------------ src/compilers/bindings/Checker.ts | 11 ++ src/compilers/bindings/Funtion.ts | 33 ++++ src/compilers/bindings/Lexer.ts | 126 ++++++++++++++++ src/compilers/bindings/Parser.ts | 235 +++++++++++++++++++++++++++++ src/compilers/bindings/index.ts | 5 +- src/compilers/bindings/types.ts | 22 +++ src/components/Utils.ts | 6 +- test/app.ts | 8 +- 10 files changed, 440 insertions(+), 157 deletions(-) delete mode 100644 src/compilers/bindings/Bindings.ts create mode 100644 src/compilers/bindings/Checker.ts create mode 100644 src/compilers/bindings/Funtion.ts create mode 100644 src/compilers/bindings/Lexer.ts create mode 100644 src/compilers/bindings/Parser.ts diff --git a/package.json b/package.json index 3b8a090..7defb2b 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ "types": "dist/index.d.ts", "scripts": { "build": "npx tsc", - "watch": "npx tsc --watch", + "build-watch": "npx tsc --watch", "test": "bun test/app.ts", "test-watch": "bun --watch test/app.ts", "prefetch": "bun scripts/prefetch" diff --git a/src/compilers/bindings/Bindings.ts b/src/compilers/bindings/Bindings.ts deleted file mode 100644 index 9aad1fd..0000000 --- a/src/compilers/bindings/Bindings.ts +++ /dev/null @@ -1,149 +0,0 @@ -import { Token, TokenKind } from "./types.js" - -export const BindingTranspiler = { - isBlankChar(char: string) { - return /\s/.test(char) - }, - - isWordChar(char: string) { - return char && /\w/.test(char) - }, - - isNumberChar(char: string) { - return /\d/.test(char) - }, - - token(input: string, kind: TokenKind, start: number, length: number = 1): Token { - return { - value: input.slice(start, start + length), - kind, - start, - length, - } - }, - - lexer(input: string) { - const tokens: Token[] = [] - - let index = 0 - do { - const token = input[index] - - if (BindingTranspiler.isBlankChar(token)) continue - - switch (token) { - // Literals - case "#": - case "$": { - const start = index++ - - do { - const token = input[index] - if (BindingTranspiler.isWordChar(token)) continue - else break - } while (++index < input.length) - - tokens.push(BindingTranspiler.token(input, TokenKind.VARIABLE, start, index - start)) - - break - } - - case "'": { - const start = index++ - - do { - const token = input[index] - if (token === "'") break - } while (++index < input.length) - - tokens.push(BindingTranspiler.token(input, TokenKind.STRING, start, index - start + 1)) - - break - } - - case "`": { - const start = index++, - struct: boolean[] = [] - - do { - const token = input[index] - let lastStruct = struct.lastItem() - - if (token === "`") { - if (struct.length) { - if (lastStruct === false) struct.pop() - else struct.push(false) - } else break - } - - if (token === "$") { - if (input[index + 1] === "{" && !lastStruct) { - struct.push(true) - index++ - } - } - - if (token === "}" && lastStruct === true) struct.pop() - } while (++index < input.length) - - tokens.push(BindingTranspiler.token(input, TokenKind.TEMPLATE_STRING, start, index - start + 1)) - - break - } - - case ",": - tokens.push(BindingTranspiler.token(input, TokenKind.COMMA, index)) - break - - // Single operators - case "+": - case "-": - case "*": - case "/": - tokens.push(BindingTranspiler.token(input, TokenKind.OPERATOR, index)) - break - - case "(": - tokens.push(BindingTranspiler.token(input, TokenKind.OPEN_PARENTHESIS, index)) - break - - case ")": - tokens.push(BindingTranspiler.token(input, TokenKind.CLOSE_PARENTHESIS, index)) - break - - // Double operators - case "&": - case "|": - case "=": - if (input[index + 1] === input[index]) - tokens.push(BindingTranspiler.token(input, TokenKind.OPERATOR, ++index, 2)) - else tokens.push(BindingTranspiler.token(input, TokenKind.OPERATOR, index)) - break - - case "!": - case ">": - case "<": - if (input[index + 1] === "=") - tokens.push(BindingTranspiler.token(input, TokenKind.OPERATOR, ++index, 2)) - else tokens.push(BindingTranspiler.token(input, TokenKind.OPERATOR, index)) - break - - default: { - let start = index - - if (BindingTranspiler.isNumberChar(token)) { - while (BindingTranspiler.isNumberChar(input[index + 1])) index++ - tokens.push(BindingTranspiler.token(input, TokenKind.NUMBER, start, index - start + 1)) - } else if (BindingTranspiler.isWordChar(token)) { - while (BindingTranspiler.isWordChar(input[index + 1])) index++ - tokens.push(BindingTranspiler.token(input, TokenKind.WORD, start, index - start + 1)) - } - } - } - } while (++index < input.length) - - return tokens - }, - - parser(input: string, tokens: Token[]) {}, -} diff --git a/src/compilers/bindings/Checker.ts b/src/compilers/bindings/Checker.ts new file mode 100644 index 0000000..542752c --- /dev/null +++ b/src/compilers/bindings/Checker.ts @@ -0,0 +1,11 @@ +export function isBlankChar(char: string) { + return /\s/.test(char) +} + +export function isWordChar(char: string) { + return char && /\w/.test(char) +} + +export function isNumberChar(char: string) { + return /\d/.test(char) +} diff --git a/src/compilers/bindings/Funtion.ts b/src/compilers/bindings/Funtion.ts new file mode 100644 index 0000000..c06db6a --- /dev/null +++ b/src/compilers/bindings/Funtion.ts @@ -0,0 +1,33 @@ +import { RandomBindingString } from "../../components/Utils.js" +import { Expression, GenBinding } from "./types.js" + +export const FuntionMap = new Map< + string, + (...args: Expression[]) => { + genBindings?: GenBinding[] + value: Expression + } +>() + +// Default Functions +FuntionMap.set("abs", number => { + const randomBinding = RandomBindingString(16) + return { + genBindings: [{ source: `((-1 + (${number} > 0) * 2) * ${number})`, target: randomBinding }], + value: randomBinding, + } +}) + +FuntionMap.set("new", expression => { + const randomBinding = RandomBindingString(16) + return { + genBindings: [{ source: expression, target: randomBinding }], + value: randomBinding, + } +}) + +FuntionMap.set("max", (...args) => { + return { + value: "#a", + } +}) diff --git a/src/compilers/bindings/Lexer.ts b/src/compilers/bindings/Lexer.ts new file mode 100644 index 0000000..cd12faa --- /dev/null +++ b/src/compilers/bindings/Lexer.ts @@ -0,0 +1,126 @@ +import { makeToken, TokenKind, Token } from "./types.js" +import * as Checker from "./Checker.js" + +export function Lexer(input: string) { + const tokens: Token[] = [] + + if (input.length === 0) return tokens + + let index = 0 + do { + const token = input[index] + + if (Checker.isBlankChar(token)) continue + + switch (token) { + // Literals + case "#": + case "$": { + const start = index++ + + while (index < input.length) { + const token = input[index] + if (Checker.isWordChar(token)) index++ + else break + } + + tokens.push(makeToken(input, TokenKind.VARIABLE, start, index-- - start)) + + break + } + + case "'": { + const start = index++ + + do { + const token = input[index] + if (token === "'") break + } while (++index < input.length) + + tokens.push(makeToken(input, TokenKind.STRING, start, index - start + 1)) + + break + } + + case "`": { + const start = index++, + struct: boolean[] = [] + + do { + const token = input[index] + let lastStruct = struct.lastItem() + + if (token === "`") { + if (struct.length) { + if (lastStruct === false) struct.pop() + else struct.push(false) + } else break + } + + if (token === "$") { + if (input[index + 1] === "{" && !lastStruct) { + struct.push(true) + index++ + } + } + + if (token === "}" && lastStruct === true) struct.pop() + } while (++index < input.length) + + tokens.push(makeToken(input, TokenKind.TEMPLATE_STRING, start, index - start + 1)) + + break + } + + case ",": + tokens.push(makeToken(input, TokenKind.COMMA, index)) + break + + // Single operators + case "+": + case "-": + case "*": + case "/": + case "%": + tokens.push(makeToken(input, TokenKind.OPERATOR, index)) + break + + case "(": + tokens.push(makeToken(input, TokenKind.OPEN_PARENTHESIS, index)) + break + + case ")": + tokens.push(makeToken(input, TokenKind.CLOSE_PARENTHESIS, index)) + break + + // Double operators + case "&": + case "|": + case "=": + if (input[index + 1] === input[index]) tokens.push(makeToken(input, TokenKind.OPERATOR, index++, 2)) + else tokens.push(makeToken(input, TokenKind.OPERATOR, index)) + break + + case "!": + case ">": + case "<": + if (input[index + 1] === "=") tokens.push(makeToken(input, TokenKind.OPERATOR, index++, 2)) + else tokens.push(makeToken(input, TokenKind.OPERATOR, index)) + break + + default: { + let start = index + + if (Checker.isNumberChar(token)) { + while (Checker.isNumberChar(input[index + 1])) index++ + tokens.push(makeToken(input, TokenKind.NUMBER, start, index - start + 1)) + } else if (Checker.isWordChar(token)) { + while (Checker.isWordChar(input[index + 1])) index++ + tokens.push(makeToken(input, TokenKind.WORD, start, index - start + 1)) + } + } + } + } while (++index < input.length) + + return tokens +} diff --git a/src/compilers/bindings/Parser.ts b/src/compilers/bindings/Parser.ts new file mode 100644 index 0000000..7c62930 --- /dev/null +++ b/src/compilers/bindings/Parser.ts @@ -0,0 +1,235 @@ +import { BindingType } from "../../types/enums/BindingType.js" +import { BindingItem } from "../../types/properties/value.js" +import { FuntionMap } from "./Funtion.js" +import { Lexer } from "./Lexer.js" +import { Expression, GenBinding, Token, TokenKind } from "./types.js" + +export class Parser { + position: number = 0 + tokens: Token[] + + genBindings: GenBinding[] = [] + output: Expression + + constructor(private input: string) { + this.tokens = Lexer(this.input) + this.output = this.parseExpression() + } + + at() { + return this.tokens[this.position] + } + + eat() { + return this.tokens[this.position++] + } + + last() { + return this.tokens[this.tokens.length - 1] + } + + private parseExpression(): Expression { + return this.parseAdditiveExpression() + } + + private parseAdditiveExpression(): Expression { + let left = this.parseMultiplicativeExpression(), + current + + while ( + (current = this.at()) && + this.at()?.kind === TokenKind.OPERATOR && + ["+", "-", "==", ">", "<", ">=", "<=", "!=", "&&", "||"].includes(current.value) + ) { + const operator = this.eat() + const right = this.parseMultiplicativeExpression() + + switch (operator.value) { + case "==": + left = `(${left} = ${right})` + break + + case ">=": + case "<=": + left = `((${left} ${operator.value[0]} ${right}) or (${left} = ${right}))` + break + + case "!=": + left = `(not (${left} = ${right}))` + break + + case "&&": + left = `(${left} and ${right})` + break + + case "||": + left = `(${left} or ${right})` + break + + default: + left = `(${left} ${operator.value} ${right})` + break + } + } + + return left + } + + private parseMultiplicativeExpression(): Expression { + let left = this.parsePrimaryExpression(), + current + + while ( + (current = this.at()) && + this.at()?.kind === TokenKind.OPERATOR && + ["*", "/", "%"].includes(current.value) + ) { + const operator = this.eat() + const right = this.parsePrimaryExpression() + + if (current.value === "%") left = `(${left} - ${left} / ${right} * ${right})` + else left = `(${left} ${operator.value} ${right})` + } + + return left + } + + private parsePrimaryExpression(): Expression { + const left = this.at() + + switch (left?.kind) { + case TokenKind.WORD: + return this.parseCallExpression(this.eat()) + + case TokenKind.OPEN_PARENTHESIS: { + this.eat() + const value = this.parseExpression() + this.expect(TokenKind.CLOSE_PARENTHESIS, "Unexpected token!") + this.eat() + return `(${value})` + } + + case TokenKind.OPERATOR: { + if (left.value === "-" || left.value === "+") { + this.eat() + + let negative = left.value === "-", + current + + while ((current = this.at()) && current.kind === TokenKind.OPERATOR) { + if (current.value === "-") { + this.eat() + negative = !negative + } else if (current.value === "+") { + this.eat() + continue + } + } + + const value = this.parsePrimaryExpression() + + return negative ? `(0 - ${value})` : value + } else if (left.value === "!") { + this.eat() + + let not = true, + current + + while ((current = this.at()) && current.kind === TokenKind.OPERATOR) { + if (current.value === "!") { + this.eat() + not = !not + } + } + + const value = this.parsePrimaryExpression() + return not ? `(not ${value})` : value + } else break + } + + case TokenKind.VARIABLE: + case TokenKind.NUMBER: + case TokenKind.STRING: + return this.eat().value + + case undefined: + this.expect(TokenKind.NUMBER, "Unexpected token!") + } + + return left.value + } + + private parseCallExpression(callerToken: Token): Expression { + const left = this.at() + + if (left?.kind === TokenKind.OPEN_PARENTHESIS) { + this.eat() + const args: Expression[] = [] + + if (this.at().kind !== TokenKind.CLOSE_PARENTHESIS) { + args.push(this.parseExpression()) + + while (this.at().kind === TokenKind.COMMA) { + this.eat() + if (this.at().kind === TokenKind.CLOSE_PARENTHESIS) { + this.expect(TokenKind.CLOSE_PARENTHESIS, "Unexpected token!") + } + args.push(this.parseExpression()) + } + } + + this.eat() + + return this.funtionCall(callerToken.value, ...args) + } else { + this.warn("This token should be a string!", callerToken) + return callerToken.value + } + } + + private funtionCall(name: string, ...params: Expression[]): Expression { + const func = FuntionMap.get(name) + if (!func) { + return this.expect(TokenKind.WORD, "Function not found!")! + } else { + const { genBindings, value } = func(...params) + if (genBindings) this.genBindings.push(...genBindings) + return `(${value})` + } + } + + private expect(kind: TokenKind, err: string) { + const prev = this.at() || this.last() + if (!prev || prev.kind !== kind) { + throw new Error( + `\x1b[31m${this.getPointer(prev)}\n` + `[ERROR]: ${err}\x1b[0m - Expected ${TokenKind[kind]}` + ) + } + } + + private warn(err: string, token?: Token) { + const prev = token || this.at() + console.warn(`\x1b[33m${this.getPointer(prev)}\n` + `[WARNING]: ${err}\x1b[0m`) + } + + private getPointer(token: Token) { + return `${this.input.slice(0, token.start)}>>>${this.input.slice( + token.start, + token.start + token.length + )}<<<${this.input.slice(token.start + token.length)}` + } + + out(): { gen?: BindingItem[]; out: Expression } { + return { + out: this.output, + gen: this.genBindings.map( + ({ source, target }) => + { + binding_type: BindingType.VIEW, + source_property_name: `(${source})`, + target_property_name: `${target}`, + } + ), + } + } +} diff --git a/src/compilers/bindings/index.ts b/src/compilers/bindings/index.ts index 6082dd4..6ef98e5 100644 --- a/src/compilers/bindings/index.ts +++ b/src/compilers/bindings/index.ts @@ -1 +1,4 @@ -export * from "./Bindings.js" +export * from "./Checker.js" +export * from "./Lexer.js" +export * from "./Parser.js" +export * from "./types.js" diff --git a/src/compilers/bindings/types.ts b/src/compilers/bindings/types.ts index 71e8209..3b8fca7 100644 --- a/src/compilers/bindings/types.ts +++ b/src/compilers/bindings/types.ts @@ -12,9 +12,31 @@ export enum TokenKind { COMMA, } +export enum GroupType { + FUNCTION_CALL, + FUNCTION_PARAMS, + OPERATOR_SCOPE, +} + export interface Token { kind: TokenKind value: string start: number length: number } + +export type Expression = string + +export function makeToken(input: string, kind: TokenKind, start: number, length: number = 1): Token { + return { + value: input.slice(start, start + length), + kind, + start, + length, + } +} + +export interface GenBinding { + source: string + target: string +} diff --git a/src/components/Utils.ts b/src/components/Utils.ts index 4767783..30de344 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -1,5 +1,5 @@ import { Type } from "../types/enums/Type.js" -import { Array3 } from "../types/properties/value.js" +import { Array3, Binding } from "../types/properties/value.js" import { UI } from "./UI.js" import { Renderer } from "../types/enums/Renderer.js" @@ -75,6 +75,10 @@ export function RandomString(length: number, base: number = 32) { return out.join("") } +export function RandomBindingString(length: number, base: number = 32): Binding { + return `#${RandomString(length, base)}` +} + // Quick Elements export function Panel(properties?: Panel, name?: string, namespace?: string) { return new UI(Type.PANEL, name, namespace).setProperties(properties || {}) diff --git a/test/app.ts b/test/app.ts index 7ed14ef..26d63fa 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1,7 +1,5 @@ -import { BindingTranspiler } from ".." +import { Parser } from ".." -const input = "abcdef + 123456" +const { gen, out } = new Parser("new(#a + #b) >= #b").out() -const lexer = BindingTranspiler.lexer(input) - -console.log(lexer) +console.log(gen, out) From 80df04d3f6926f68c098c41c99af9564cbea9138 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 17 Jan 2026 02:31:37 +0700 Subject: [PATCH 006/245] he --- src/compilers/FormatProperties.ts | 3 ++- src/compilers/bindings/Funtion.ts | 42 ++++++++++++++++++++++++------- test/app.ts | 4 +-- 3 files changed, 37 insertions(+), 12 deletions(-) diff --git a/src/compilers/FormatProperties.ts b/src/compilers/FormatProperties.ts index 3e8b547..3243e9a 100644 --- a/src/compilers/FormatProperties.ts +++ b/src/compilers/FormatProperties.ts @@ -17,12 +17,13 @@ export function FormatProperties(properties: any) { delete properties.anchor } - if (Object.keys(property_bags)) + if (Object.keys(property_bags).length) { if (properties.property_bags) { properties.property_bags = { ...property_bags, ...properties.property_bags } } else { properties.property_bags = property_bags } + } return properties } diff --git a/src/compilers/bindings/Funtion.ts b/src/compilers/bindings/Funtion.ts index c06db6a..8751990 100644 --- a/src/compilers/bindings/Funtion.ts +++ b/src/compilers/bindings/Funtion.ts @@ -1,13 +1,16 @@ import { RandomBindingString } from "../../components/Utils.js" import { Expression, GenBinding } from "./types.js" -export const FuntionMap = new Map< - string, - (...args: Expression[]) => { - genBindings?: GenBinding[] - value: Expression - } ->() +type Callback = (...args: Expression[]) => { + genBindings?: GenBinding[] + value: Expression +} + +export const FuntionMap = new Map() + +function callFn(name: string, ...args: Expression[]) { + return FuntionMap.get(name)!(...args) +} // Default Functions FuntionMap.set("abs", number => { @@ -26,8 +29,29 @@ FuntionMap.set("new", expression => { } }) -FuntionMap.set("max", (...args) => { +FuntionMap.set("sqrt", number => { + const rtn = RandomBindingString(16), + $1 = RandomBindingString(16), + $2 = RandomBindingString(16) + + const { genBindings: absValue, value: absRtn } = callFn("abs") + return { - value: "#a", + genBindings: [ + { + source: `${number} * 100 / 2`, + target: $1, + }, + ...absValue!, + { + source: `${absRtn} > 1`, + target: $2, + }, + { + source: `(${number} < 0) * -1 + (${number} > -1) * (${$2} * ((${rtn} + ${number} / ${rtn}) / 2) + (not ${$2}) * ${rtn})`, + target: rtn, + }, + ], + value: rtn, } }) diff --git a/test/app.ts b/test/app.ts index 26d63fa..ef2d080 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1,5 +1,5 @@ -import { Parser } from ".." +import { Parser, Panel } from ".." -const { gen, out } = new Parser("new(#a + #b) >= #b").out() +const { gen, out } = new Parser("abs(#a)").out() console.log(gen, out) From a144909fbf591df3f5a4293ebcbe9cb7bc243a69 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 17 Jan 2026 18:04:48 +0700 Subject: [PATCH 007/245] resolve template string --- package.json | 4 +- src/compilers/bindings/Funtion.ts | 2 +- src/compilers/bindings/Lexer.ts | 108 +++++++++++++++---- src/compilers/bindings/Parser.ts | 167 +++++++++++++++++++++--------- src/compilers/bindings/types.ts | 49 ++++++--- test/app.ts | 7 +- 6 files changed, 246 insertions(+), 91 deletions(-) diff --git a/package.json b/package.json index 7defb2b..427f9d8 100644 --- a/package.json +++ b/package.json @@ -21,9 +21,9 @@ "types": "dist/index.d.ts", "scripts": { "build": "npx tsc", - "build-watch": "npx tsc --watch", + "dev": "npx tsc --watch", "test": "bun test/app.ts", - "test-watch": "bun --watch test/app.ts", + "test:watch": "bun --watch test/app.ts", "prefetch": "bun scripts/prefetch" }, "devDependencies": { diff --git a/src/compilers/bindings/Funtion.ts b/src/compilers/bindings/Funtion.ts index 8751990..964c23f 100644 --- a/src/compilers/bindings/Funtion.ts +++ b/src/compilers/bindings/Funtion.ts @@ -34,7 +34,7 @@ FuntionMap.set("sqrt", number => { $1 = RandomBindingString(16), $2 = RandomBindingString(16) - const { genBindings: absValue, value: absRtn } = callFn("abs") + const { genBindings: absValue, value: absRtn } = callFn("abs", number) return { genBindings: [ diff --git a/src/compilers/bindings/Lexer.ts b/src/compilers/bindings/Lexer.ts index cd12faa..c56127a 100644 --- a/src/compilers/bindings/Lexer.ts +++ b/src/compilers/bindings/Lexer.ts @@ -1,12 +1,12 @@ -import { makeToken, TokenKind, Token } from "./types.js" +import { makeToken, TokenKind, Token, TSToken, TSTokenKind } from "./types.js" import * as Checker from "./Checker.js" -export function Lexer(input: string) { +export function Lexer(input: string, start: number = 0, end?: number) { const tokens: Token[] = [] if (input.length === 0) return tokens - let index = 0 + let index = start do { const token = input[index] @@ -43,31 +43,88 @@ export function Lexer(input: string) { } case "`": { - const start = index++, - struct: boolean[] = [] + const tsTokens: TSToken[] = [] + const start = index - do { - const token = input[index] - let lastStruct = struct.lastItem() - - if (token === "`") { - if (struct.length) { - if (lastStruct === false) struct.pop() - else struct.push(false) - } else break - } - - if (token === "$") { - if (input[index + 1] === "{" && !lastStruct) { - struct.push(true) + const tokenization = (start: number) => { + while (index < input.length) { + const char = input[index] + if (char === "`") { index++ + eatString() + } else if (char === "}") { + tsTokens.push({ + kind: TSTokenKind.EXPRESSION, + tokens: Lexer(input, start + 1, index), + }) + break } + index++ } + } - if (token === "}" && lastStruct === true) struct.pop() - } while (++index < input.length) + const stringification = (start: number) => { + while (index < input.length) { + const char = input[index] + if (char === "`") { + if (start + 1 !== index) + tsTokens.push({ + kind: TSTokenKind.STRING, + tokens: { + kind: TokenKind.STRING, + start: start + 1, + length: index - start + 1, + value: `'${input.slice(start + 1, index)}'`, + }, + }) - tokens.push(makeToken(input, TokenKind.TEMPLATE_STRING, start, index - start + 1)) + break + } else if (char === "$" && input[index + 1] === "{") { + tsTokens.push({ + kind: TSTokenKind.STRING, + tokens: { + value: `'${input.slice(start + 1, index)}'`, + kind: TokenKind.STRING, + length: index - start + 1, + start, + }, + }) + tokenization(++index) + start = index + } + index++ + } + } + + const eatString = () => { + while (index < input.length) { + const char = input[index] + + if (char === "`") { + break + } else if (char === "$" && input[index + 1] === "{") { + index++ + eatTemplate() + } + + index++ + } + } + + const eatTemplate = () => { + while (index < input.length) { + const char = input[index] + if (char === "`") { + eatString() + } else if (char === "}") { + break + } + index++ + } + } + + stringification(index++) + tokens.push(makeToken(tsTokens, TokenKind.TEMPLATE_STRING, start, index - start + 1)) break } @@ -117,10 +174,15 @@ export function Lexer(input: string) { } else if (Checker.isWordChar(token)) { while (Checker.isWordChar(input[index + 1])) index++ tokens.push(makeToken(input, TokenKind.WORD, start, index - start + 1)) + } else if (!Checker.isBlankChar(token)) { + console.error( + `\x1b[31m${input.slice(0, index)}>>>${token}<<<${input.slice(index + 1)}\nInvalid character.\x1b[0m`, + ) + throw new Error() } } } - } while (++index < input.length) + } while (++index < (end || input.length)) return tokens } diff --git a/src/compilers/bindings/Parser.ts b/src/compilers/bindings/Parser.ts index 7c62930..65f435a 100644 --- a/src/compilers/bindings/Parser.ts +++ b/src/compilers/bindings/Parser.ts @@ -2,7 +2,7 @@ import { BindingType } from "../../types/enums/BindingType.js" import { BindingItem } from "../../types/properties/value.js" import { FuntionMap } from "./Funtion.js" import { Lexer } from "./Lexer.js" -import { Expression, GenBinding, Token, TokenKind } from "./types.js" +import { Expression, GenBinding, Token, TokenKind, TSToken, TSTokenKind } from "./types.js" export class Parser { position: number = 0 @@ -29,7 +29,74 @@ export class Parser { } private parseExpression(): Expression { - return this.parseAdditiveExpression() + return this.parseOrExpression() + } + + private parseOrExpression(): Expression { + let left = this.parseAndExpression(), + current + + while ( + (current = this.at()) && + this.at().kind === TokenKind.OPERATOR && + ["||"].includes(current.value) + ) { + this.eat() + left = `(${left} or ${this.parseAndExpression()})` + } + + return left + } + + private parseAndExpression(): Expression { + let left = this.parseComparisonExpression(), + current + + while ( + (current = this.at()) && + this.at().kind === TokenKind.OPERATOR && + ["&&"].includes(current.value) + ) { + this.eat() + left = `(${left} and ${this.parseComparisonExpression()})` + } + + return left + } + + private parseComparisonExpression(): Expression { + let left = this.parseAdditiveExpression(), + current + + while ( + (current = this.at()) && + this.at().kind === TokenKind.OPERATOR && + ["==", ">", "<", ">=", "<=", "!="].includes(current.value) + ) { + const operator = this.eat() + const right = this.parseAdditiveExpression() + + switch (operator.value) { + case "==": + left = `(${left} = ${right})` + break + + case "!=": + left = `(not (${left} = ${right}))` + break + + case ">=": + case "<=": + left = `((${left} ${operator.value[0]} ${right}) or (${left} = ${right}))` + break + + default: + left = `(${left} ${operator.value} ${right})` + break + } + } + + return left } private parseAdditiveExpression(): Expression { @@ -39,37 +106,12 @@ export class Parser { while ( (current = this.at()) && this.at()?.kind === TokenKind.OPERATOR && - ["+", "-", "==", ">", "<", ">=", "<=", "!=", "&&", "||"].includes(current.value) + ["+", "-"].includes(current.value) ) { const operator = this.eat() const right = this.parseMultiplicativeExpression() - switch (operator.value) { - case "==": - left = `(${left} = ${right})` - break - - case ">=": - case "<=": - left = `((${left} ${operator.value[0]} ${right}) or (${left} = ${right}))` - break - - case "!=": - left = `(not (${left} = ${right}))` - break - - case "&&": - left = `(${left} and ${right})` - break - - case "||": - left = `(${left} or ${right})` - break - - default: - left = `(${left} ${operator.value} ${right})` - break - } + left = `(${left} ${operator.value} ${right})` } return left @@ -82,7 +124,7 @@ export class Parser { while ( (current = this.at()) && this.at()?.kind === TokenKind.OPERATOR && - ["*", "/", "%"].includes(current.value) + ["*", "/", "%"].includes(current.value) ) { const operator = this.eat() const right = this.parsePrimaryExpression() @@ -99,7 +141,7 @@ export class Parser { switch (left?.kind) { case TokenKind.WORD: - return this.parseCallExpression(this.eat()) + return this.parseCallableOrLiteral(this.eat()) case TokenKind.OPEN_PARENTHESIS: { this.eat() @@ -109,6 +151,32 @@ export class Parser { return `(${value})` } + case TokenKind.VARIABLE: + case TokenKind.NUMBER: + case TokenKind.STRING: + return this.eat().value + + case TokenKind.TEMPLATE_STRING: + return `(${(this.eat().value) + .map(v => { + if (v.kind === TSTokenKind.STRING) return v.tokens.value + else { + const bakTokens = this.tokens + const bakPosition = this.position + + this.tokens = v.tokens + this.position = 0 + + const out = this.parseExpression() + + this.tokens = bakTokens + this.position = bakPosition + + return out + } + }) + .join(" + ")})` + case TokenKind.OPERATOR: { if (left.value === "-" || left.value === "+") { this.eat() @@ -144,35 +212,35 @@ export class Parser { const value = this.parsePrimaryExpression() return not ? `(not ${value})` : value - } else break + } } - case TokenKind.VARIABLE: - case TokenKind.NUMBER: - case TokenKind.STRING: - return this.eat().value - - case undefined: + default: + console.log(left) this.expect(TokenKind.NUMBER, "Unexpected token!") } - return left.value + return left.value } - private parseCallExpression(callerToken: Token): Expression { + private parseCallableOrLiteral(callerToken: Token): Expression { const left = this.at() if (left?.kind === TokenKind.OPEN_PARENTHESIS) { this.eat() const args: Expression[] = [] + if (this.at().kind === TokenKind.COMMA) { + this.expect(TokenKind.NUMBER, "Unexpected token!") + } + if (this.at().kind !== TokenKind.CLOSE_PARENTHESIS) { args.push(this.parseExpression()) while (this.at().kind === TokenKind.COMMA) { this.eat() if (this.at().kind === TokenKind.CLOSE_PARENTHESIS) { - this.expect(TokenKind.CLOSE_PARENTHESIS, "Unexpected token!") + this.expect(TokenKind.NUMBER, "Unexpected token!") } args.push(this.parseExpression()) } @@ -180,15 +248,18 @@ export class Parser { this.eat() - return this.funtionCall(callerToken.value, ...args) + return this.funtionCall(callerToken.value, ...args) } else { - this.warn("This token should be a string!", callerToken) - return callerToken.value + this.warn( + `Implicit string literal '${callerToken.value}'. Use quoted string ('${callerToken.value}') for clarity!`, + callerToken, + ) + return callerToken.value } } private funtionCall(name: string, ...params: Expression[]): Expression { - const func = FuntionMap.get(name) + const func = FuntionMap.get(name.toLowerCase()) if (!func) { return this.expect(TokenKind.WORD, "Function not found!")! } else { @@ -202,7 +273,7 @@ export class Parser { const prev = this.at() || this.last() if (!prev || prev.kind !== kind) { throw new Error( - `\x1b[31m${this.getPointer(prev)}\n` + `[ERROR]: ${err}\x1b[0m - Expected ${TokenKind[kind]}` + `\x1b[31m${this.getPointer(prev)}\n` + `[ERROR]: ${err}\x1b[0m - Expected ${TokenKind[kind]}`, ) } } @@ -215,7 +286,7 @@ export class Parser { private getPointer(token: Token) { return `${this.input.slice(0, token.start)}>>>${this.input.slice( token.start, - token.start + token.length + token.start + token.length, )}<<<${this.input.slice(token.start + token.length)}` } @@ -228,7 +299,7 @@ export class Parser { binding_type: BindingType.VIEW, source_property_name: `(${source})`, target_property_name: `${target}`, - } + }, ), } } diff --git a/src/compilers/bindings/types.ts b/src/compilers/bindings/types.ts index 3b8fca7..e8d95c9 100644 --- a/src/compilers/bindings/types.ts +++ b/src/compilers/bindings/types.ts @@ -12,27 +12,50 @@ export enum TokenKind { COMMA, } -export enum GroupType { - FUNCTION_CALL, - FUNCTION_PARAMS, - OPERATOR_SCOPE, +export enum TSTokenKind { + STRING, + EXPRESSION, } -export interface Token { - kind: TokenKind - value: string +export type TSToken = + | { + kind: TSTokenKind.EXPRESSION + tokens: Token[] + } + | { + kind: TSTokenKind.STRING + tokens: Token + } + +export interface BaseToken { start: number length: number } +export interface NormalToken extends BaseToken { + value: string + kind: Exclude +} + +export interface TemplateToken extends BaseToken { + value: TSToken[] + kind: TokenKind.TEMPLATE_STRING +} + +export type Token = NormalToken | TemplateToken + export type Expression = string -export function makeToken(input: string, kind: TokenKind, start: number, length: number = 1): Token { - return { - value: input.slice(start, start + length), - kind, - start, - length, +export function makeToken( + input: T extends TokenKind.TEMPLATE_STRING ? TSToken[] : string, + kind: T, + start: number, + length: number = 1, +): Token { + if (kind === TokenKind.TEMPLATE_STRING) { + return { value: input as TSToken[], kind: kind, start, length } + } else { + return { value: input.slice(start, start + length) as string, kind, start, length } } } diff --git a/test/app.ts b/test/app.ts index ef2d080..ddbd984 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1,5 +1,4 @@ -import { Parser, Panel } from ".." +import { Lexer, Parser } from ".." -const { gen, out } = new Parser("abs(#a)").out() - -console.log(gen, out) +const { out } = new Parser("`A${`#a${#a + #b}`}A`").out() +console.log(out) From ac412b798c3c8a037d0a96e31a35fe1e1afe4c29 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sun, 18 Jan 2026 01:59:02 +0700 Subject: [PATCH 008/245] vanilla deepsearch --- .gitignore | 2 +- package.json | 5 +- scripts/autocomplete-build.ts | 37 ++++++ scripts/components.ts | 12 +- scripts/prefetch.ts | 33 ++++- scripts/vanilladefs.ts | 158 ++++++++++++++++++++++ scripts/write/enum.ts | 1 + src/compilers/bindings/Parser.ts | 52 ++++---- src/components/Modify.ts | 5 + src/index.ts | 1 + src/types/enums/Type.ts | 68 +++++----- src/types/vanilla/elements.ts | 210 +++++++++++++++++++++++++++++ src/types/vanilla/index.ts | 2 + src/types/vanilla/intellisense.ts | 212 ++++++++++++++++++++++++++++++ test/app.ts | 5 +- 15 files changed, 725 insertions(+), 78 deletions(-) create mode 100644 scripts/autocomplete-build.ts create mode 100644 scripts/vanilladefs.ts create mode 100644 src/components/Modify.ts create mode 100644 src/types/vanilla/elements.ts create mode 100644 src/types/vanilla/index.ts create mode 100644 src/types/vanilla/intellisense.ts diff --git a/.gitignore b/.gitignore index 62f8e8a..98de768 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ dist -prefetch +cache node_modules .tsbuildinfo \ No newline at end of file diff --git a/package.json b/package.json index 427f9d8..7412453 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,10 @@ "dev": "npx tsc --watch", "test": "bun test/app.ts", "test:watch": "bun --watch test/app.ts", - "prefetch": "bun scripts/prefetch" + "prefetch": "bun scripts/prefetch", + "gen:enums": "bun scripts/write/enum", + "vanilla:defs": "bun scripts/vanilladefs", + "vanilla:autocomplete": "bun scripts/autocomplete-build" }, "devDependencies": { "@types/node": "^25.0.3", diff --git a/scripts/autocomplete-build.ts b/scripts/autocomplete-build.ts new file mode 100644 index 0000000..a0b455c --- /dev/null +++ b/scripts/autocomplete-build.ts @@ -0,0 +1,37 @@ +import fs from "fs" + +const data: any = JSON.parse(fs.readFileSync("cache/vanilla-defs.json", "utf-8")) + +function toCamelCase(str: string) { + return str.replace(/[-_]\w/g, m => m[1].toUpperCase()) +} + +const type: string[] = [] +const $$namespace: string[] = [] + +const intelliSense: string[] = ['import * as mc from "./elements.js"\n', "export type IntelliSense = {"] + +for (const [namespace, element] of Object.entries(data)) { + if (namespace === "undefined") continue + $$namespace.push(`"${namespace}"`) + const $namespace = toCamelCase("_" + namespace) + + const eType: string[] = [] + for (const [ePath, info] of Object.entries(element)) { + const { file, type, extend } = info + eType.push(`"${ePath}"`) + } + + intelliSense.push(` "${namespace}": mc.${$namespace},`) + + type.push(`export type ${$namespace} = ${eType.join(" | ")};`) +} + +intelliSense.push("}") + +fs.writeFileSync( + "src/types/vanilla/elements.ts", + `export type Namespace = ${$$namespace.join(" | ")}\n\n` + type.join("\n"), +) + +fs.writeFileSync("src/types/vanilla/intellisense.ts", intelliSense.join("\n")) diff --git a/scripts/components.ts b/scripts/components.ts index 4859674..9cafc39 100644 --- a/scripts/components.ts +++ b/scripts/components.ts @@ -2,13 +2,13 @@ import JSONC from "jsonc-parser" import fsp from "fs/promises" import fs from "fs" -if (!fs.existsSync("prefetch")) fs.mkdirSync("prefetch") +if (!fs.existsSync("cache")) fs.mkdirSync("cache") export const Github = { readFile: async (user: string, repo: string, branches: string, path: string) => { try { return fetch(`https://raw.githubusercontent.com/${user}/${repo}/refs/heads/${branches}/${path}`).then(res => - res.text() + res.text(), ) } catch (error) { console.error(error) @@ -21,7 +21,7 @@ export const PFFS = { // Sync readFile: (file: string) => { try { - return fs.readFileSync(`prefetch/${file}`, "utf-8") + return fs.readFileSync(`cache/${file}`, "utf-8") } catch (error) { console.error(error) process.exit(1) @@ -31,11 +31,11 @@ export const PFFS = { writeFile: (file: string, data: string) => { try { file.split("/").reduce((a, b) => { - if (!fs.existsSync(a)) fs.mkdirSync(a) - return `prefetch/${a}/${b}` + if (!fs.existsSync("cache/" + a)) fs.mkdirSync("cache/" + a) + return `${a}/${b}` }) - return fsp.writeFile(`prefetch/${file}`, data) + return fsp.writeFile(`cache/${file}`, data) } catch (error) { console.error(error) process.exit(1) diff --git a/scripts/prefetch.ts b/scripts/prefetch.ts index 6a0acfc..41c18fb 100644 --- a/scripts/prefetch.ts +++ b/scripts/prefetch.ts @@ -1,5 +1,32 @@ import { Github, PFFS } from "./components" +import { parse } from "jsonc-parser" -Github.readFile("KalmeMarq", "Bugrock-JSON-UI-Schemas", "main", "ui.schema.json").then(data => { - PFFS.writeFile("ui.schema.json", data) -}) +const user = "mojang" +const project = "bedrock-samples" +const branches = process.argv.includes("--preview") ? "preview" : "main" + +async function fetchfile(path: string) { + return parse(await Github.readFile(user, project, branches, path)) +} + +async function main() { + console.log("Prefetching...") + const data = await Github.readFile("KalmeMarq", "Bugrock-JSON-UI-Schemas", "main", "ui.schema.json") + await PFFS.writeFile("ui.schema.json", data) + console.log("ui.schema.json fetched!") + + const { ui_defs } = await fetchfile("resource_pack/ui/_ui_defs.json") + await PFFS.writeFile("ui_defs.json", JSON.stringify(ui_defs, null, 2)) + console.log("ui_defs.json fetched!") + + let fetched = 0 + await Promise.all( + ui_defs.map(async (path: string) => { + const data = await fetchfile("resource_pack/" + path) + await PFFS.writeFile(path, JSON.stringify(data, null, 2)) + console.log(`[${++fetched}/${ui_defs.length}] ${path}`) + }), + ) +} + +main() diff --git a/scripts/vanilladefs.ts b/scripts/vanilladefs.ts new file mode 100644 index 0000000..35b1449 --- /dev/null +++ b/scripts/vanilladefs.ts @@ -0,0 +1,158 @@ +import fs from "fs" + +const files: string[] = JSON.parse(fs.readFileSync("cache/ui_defs.json", "utf-8")) +const vanilla: NamespaceMap = new Map() + +function readControls(namespace: string, file: string, elements: ElementMap, data: any[], prefix: string) { + prefix += "/" + + for (const element of data) { + const [fullname, properties] = Object.entries(element)[0] + + const data: VanillaElement = { + file, + type: (properties).type, + } + + const [name, $2] = fullname.split("@") + + if (name.startsWith("$")) continue + + if ($2 && !$2.startsWith("$")) { + const [$3, $4] = $2.split(".") + if ($4) { + data.extend = { + name: $4, + namespace: $3, + } + } else { + data.extend = { + name: $3, + namespace, + } + } + } + + elements.set(prefix + name, data) + + const controls = (properties).controls + if (controls) { + readControls(namespace, file, elements, controls, prefix + name) + } + } +} + +function readData(namespace: string, file: string, elements: ElementMap, data: any) { + for (const [fullname, properties] of Object.entries(data)) { + const [name, $2] = fullname.split("@") + const data: VanillaElement = { + file, + type: (properties).type, + } + + if ((properties).anim_type) { + data.anim_type = (properties).anim_type + } + + // Register element + if ($2) { + const [$3, $4] = $2.split(".") + if ($4) { + data.extend = { + name: $4, + namespace: $3, + } + } else { + data.extend = { + name: $3, + namespace, + } + } + } + elements.set(name, data) + + const controls = (properties).controls + if (controls) { + readControls(namespace, file, elements, controls, name) + } + } +} + +// Read +for (const file of files) { + const { namespace, ...data } = JSON.parse(fs.readFileSync("cache/" + file, "utf-8")) + + let elements = vanilla.get(namespace) + if (!elements) { + elements = new Map() + vanilla.set(namespace, elements) + } + + readData(namespace, file, elements, data) +} + +// Format +function getActualType(name: string, namespace: string) { + const e = vanilla.get(namespace)?.get(name)! + + if (e?.anim_type) return null + + if (e?.type) { + return e.type + } else { + if (e?.extend) { + return getActualType(e.extend.name, e.extend.namespace) + } + } +} + +for (const [namespace, elements] of vanilla) { + for (const [name, element] of elements) { + if (element.extend) { + const type = getActualType(element.extend.name, element.extend.namespace) + if (type) { + element.type = type + elements.set(name, element) + } else if (type === null) { + vanilla.get(namespace)?.delete(name) + } + } + } +} + +for (const [namespace, elements] of vanilla) { + for (const [name, element] of elements) { + if (element.anim_type) { + vanilla.get(namespace)?.delete(name) + } + } +} + +const json: any = {} + +for (const [namespace, elements] of vanilla) { + json[namespace] ||= {} + + for (const [name, element] of elements) { + element.type ||= "unknown" + json[namespace][name] = element + } +} + +fs.writeFileSync("cache/vanilla-defs.json", JSON.stringify(json, null, 4)) + +// Types +interface VanillaElement { + extend?: { + name: string + namespace: string + } + anim_type?: string + type: string + file: string +} + +type Name = string +type Namespace = string +type ElementMap = Map +type NamespaceMap = Map diff --git a/scripts/write/enum.ts b/scripts/write/enum.ts index 01a6408..d93b206 100644 --- a/scripts/write/enum.ts +++ b/scripts/write/enum.ts @@ -11,6 +11,7 @@ for (const key in schema) { const data = schema[key] if (data.enum) { const enumName = key.match(/\w+$/)?.[0].toCamelCase(true)! + console.log(enumName) index.push(`export { ${enumName} } from "./${enumName}.js"`) const count = new Map() diff --git a/src/compilers/bindings/Parser.ts b/src/compilers/bindings/Parser.ts index 65f435a..6f9f6a9 100644 --- a/src/compilers/bindings/Parser.ts +++ b/src/compilers/bindings/Parser.ts @@ -36,11 +36,7 @@ export class Parser { let left = this.parseAndExpression(), current - while ( - (current = this.at()) && - this.at().kind === TokenKind.OPERATOR && - ["||"].includes(current.value) - ) { + while ((current = this.at()) && this.at().kind === TokenKind.OPERATOR && current.value === "||") { this.eat() left = `(${left} or ${this.parseAndExpression()})` } @@ -52,11 +48,7 @@ export class Parser { let left = this.parseComparisonExpression(), current - while ( - (current = this.at()) && - this.at().kind === TokenKind.OPERATOR && - ["&&"].includes(current.value) - ) { + while ((current = this.at()) && this.at().kind === TokenKind.OPERATOR && current.value === "&&") { this.eat() left = `(${left} and ${this.parseComparisonExpression()})` } @@ -156,26 +148,26 @@ export class Parser { case TokenKind.STRING: return this.eat().value - case TokenKind.TEMPLATE_STRING: - return `(${(this.eat().value) - .map(v => { - if (v.kind === TSTokenKind.STRING) return v.tokens.value - else { - const bakTokens = this.tokens - const bakPosition = this.position + case TokenKind.TEMPLATE_STRING: { + const out = (this.eat().value).map(v => { + if (v.kind === TSTokenKind.STRING) return v.tokens.value + else { + const bakTokens = this.tokens + const bakPosition = this.position - this.tokens = v.tokens - this.position = 0 + this.tokens = v.tokens + this.position = 0 - const out = this.parseExpression() + const out = this.parseExpression() - this.tokens = bakTokens - this.position = bakPosition + this.tokens = bakTokens + this.position = bakPosition - return out - } - }) - .join(" + ")})` + return out + } + }) + return out.length === 1 ? (out[0] as string) : `(${out.join(" + ")})` + } case TokenKind.OPERATOR: { if (left.value === "-" || left.value === "+") { @@ -216,11 +208,10 @@ export class Parser { } default: - console.log(left) this.expect(TokenKind.NUMBER, "Unexpected token!") } - return left.value + return left.value } private parseCallableOrLiteral(callerToken: Token): Expression { @@ -249,12 +240,15 @@ export class Parser { this.eat() return this.funtionCall(callerToken.value, ...args) - } else { + } else if (left.kind === TokenKind.OPERATOR) { this.warn( `Implicit string literal '${callerToken.value}'. Use quoted string ('${callerToken.value}') for clarity!`, callerToken, ) return callerToken.value + } else { + this.expect(TokenKind.OPERATOR, "Unexpected token!") + return callerToken.value } } diff --git a/src/components/Modify.ts b/src/components/Modify.ts new file mode 100644 index 0000000..146bfe2 --- /dev/null +++ b/src/components/Modify.ts @@ -0,0 +1,5 @@ +import { Namespace } from "../types/vanilla/elements.js" +import { IntelliSense } from "../types/vanilla/intellisense.js" +import { UI } from "./UI.js" + +export function Modify(namespace: T, name: IntelliSense[T]) {} diff --git a/src/index.ts b/src/index.ts index d92a565..f2538b9 100644 --- a/src/index.ts +++ b/src/index.ts @@ -3,6 +3,7 @@ import "./compilers/RunEnd.js" export * from "./components/Animation.js" export * from "./components/UI.js" +export * from "./components/Modify.js" export * from "./components/Utils.js" export * from "./types/enums/index.js" diff --git a/src/types/enums/Type.ts b/src/types/enums/Type.ts index 960b446..95113bd 100644 --- a/src/types/enums/Type.ts +++ b/src/types/enums/Type.ts @@ -1,35 +1,35 @@ export enum Type { - SELECTION_WHEEL = "selection_wheel", - PANEL = "panel", - SCREEN = "screen", - STACK_PANEL = "stack_panel", - LABEL = "label", - IMAGE = "image", - INPUT_PANEL = "input_panel", - CUSTOM = "custom", - GRID = "grid", - FACTORY = "factory", - BUTTON = "button", - TOGGLE = "toggle", - SLIDER = "slider", - EDIT_BOX = "edit_box", - DROPDOWN = "dropdown", - SCROLL_VIEW = "scroll_view", - SLIDER_BOX = "slider_box", - SCROLLBAR_BOX = "scrollbar_box", - SCROLL_TRACK = "scroll_track", - GRID_PAGE_INDICATOR = "grid_page_indicator", - IMAGE_CYCLER = "image_cycler", - LABEL_CYCLER = "label_cycler", - COLLECTION_PANEL = "collection_panel", - TOOLTIP_TRIGGER = "tooltip_trigger", - TAB = "tab", - CAROUSEL_LABEL = "carousel_label", - COMBOX = "combox", - LAYOUT = "layout", - STACK_GRID = "stack_grid", - JOYSTICK = "joystick", - RICH_TEXT = "rich_text", - SIXTEEN_NINE_LAYOUT = "sixteen_nine_layout", - MUL_LINES = "mul_lines", -} + SELECTION_WHEEL = "selection_wheel", + PANEL = "panel", + SCREEN = "screen", + STACK_PANEL = "stack_panel", + LABEL = "label", + IMAGE = "image", + INPUT_PANEL = "input_panel", + CUSTOM = "custom", + GRID = "grid", + FACTORY = "factory", + BUTTON = "button", + TOGGLE = "toggle", + SLIDER = "slider", + EDIT_BOX = "edit_box", + DROPDOWN = "dropdown", + SCROLL_VIEW = "scroll_view", + SLIDER_BOX = "slider_box", + SCROLLBAR_BOX = "scrollbar_box", + SCROLL_TRACK = "scroll_track", + GRID_PAGE_INDICATOR = "grid_page_indicator", + IMAGE_CYCLER = "image_cycler", + LABEL_CYCLER = "label_cycler", + COLLECTION_PANEL = "collection_panel", + TOOLTIP_TRIGGER = "tooltip_trigger", + TAB = "tab", + CAROUSEL_LABEL = "carousel_label", + COMBOX = "combox", + LAYOUT = "layout", + STACK_GRID = "stack_grid", + JOYSTICK = "joystick", + RICH_TEXT = "rich_text", + SIXTEEN_NINE_LAYOUT = "sixteen_nine_layout", + MUL_LINES = "mul_lines", +} \ No newline at end of file diff --git a/src/types/vanilla/elements.ts b/src/types/vanilla/elements.ts new file mode 100644 index 0000000..c6bf00a --- /dev/null +++ b/src/types/vanilla/elements.ts @@ -0,0 +1,210 @@ +export type Namespace = "achievement" | "add_external_server" | "adhoc_inprogress" | "adhoc" | "anvil" | "anvil_pocket" | "authentication_modals" | "authentication" | "auto_save_info" | "beacon" | "beacon_pocket" | "blast_furnace" | "book" | "brewing_stand" | "brewing_stand_pocket" | "bundle_purchase_warning" | "cartography" | "cartography_pocket" | "chalkboard" | "chat" | "chat_settings" | "chest" | "choose_realm" | "coin_purchase" | "command_block" | "confirm_delete_account" | "content_log" | "content_log_history" | "crafter_pocket" | "create_world_upsell" | "credits" | "csb_purchase_error" | "csb" | "csb_content" | "csb_banner" | "csb_buy" | "common_csb" | "csb_purchase_amazondevicewarning" | "csb_purchase_warning" | "csb_subscription_panel" | "csb_upsell" | "csb_packs" | "csb_welcome" | "csb_faq" | "csb_landing" | "custom_templates" | "world_conversion_complete" | "day_one_experience_intro" | "day_one_experience" | "death" | "debug_screen" | "dev_console" | "disconnect" | "display_logged_error" | "discovery_dialog" | "edu_featured" | "edu_quit_button" | "persona_emote" | "enchanting" | "enchanting_pocket" | "encyclopedia" | "expanded_skin_pack" | "feed_common" | "file_upload" | "furnace" | "furnace_pocket" | "game_tip" | "gamepad_disconnected" | "gameplay" | "gathering_info" | "globalpause" | "grindstone" | "grindstone_pocket" | "gamma_calibration" | "horse" | "horse_pocket" | "how_to_play_common" | "how_to_play" | "hud" | "host_options" | "bed" | "im_reader" | "crafting" | "crafting_pocket" | "invite" | "jigsaw_editor" | "late_join" | "library_modal" | "local_world_picker" | "loom" | "loom_pocket" | "manage_feed" | "manifest_validation" | "sdl_label" | "sdl_dropdowns" | "sdl_image_row" | "sdl_text_row" | "mob_effect" | "non_xbl_user_management" | "npc_interact" | "online_safety" | "pack_settings" | "panorama" | "patch_notes" | "pause" | "pdp" | "pdp_screenshots" | "permissions" | "persona_cast_character_screen" | "persona_common" | "persona_popups" | "play" | "perf_turtle" | "pocket_containers" | "popup_dialog" | "portfolio" | "progress" | "rating_prompt" | "realms_common" | "realms_create" | "realms_pending_invitations" | "realms_slots" | "realms_settings" | "realms_allowlist" | "realms_invite_link_settings" | "realms_plus_ended" | "realmsPlus" | "realmsPlus_content" | "realmsPlus_faq" | "realmsPlus_landing" | "realmsPlus_buy" | "realmsPlus_packs" | "realmsPlus_purchase_warning" | "realms_stories_transition" | "redstone" | "resource_packs" | "safe_zone" | "storage_migration_common" | "storage_migration_generic" | "scoreboard" | "screenshot" | "select_world" | "server_form" | "settings" | "controls_section" | "general_section" | "realms_world_section" | "settings_common" | "world_section" | "social_section" | "sidebar_navigation" | "sign" | "simple_inprogress" | "skin_pack_purchase" | "skin_picker" | "smithing_table" | "smithing_table_2" | "smithing_table_pocket" | "smithing_table_2_pocket" | "smoker" | "start" | "stonecutter" | "stonecutter_pocket" | "storage_management" | "storage_management_popup" | "common_store" | "store_layout" | "filter_menu" | "store_inventory" | "store_item_list" | "store_progress" | "promo_timeline" | "store_sale_item_list" | "store_search" | "sort_menu" | "structure_editor" | "submit_feedback" | "tabbed_upsell" | "thanks_for_testing" | "third_party_store" | "toast_screen" | "token_faq" | "trade" | "trade_pocket" | "trade2" | "trade2_pocket" | "trialUpsell" | "ugc_viewer" | "common_art" | "common" | "common-classic" | "edu_common" | "purchase_common" | "common_buttons" | "common_dialogs" | "common_tabs" | "common_toggles" | "friendsbutton" | "iconbutton" | "update_dimensions" | "update_version" | "world_recovery" | "world_templates" | "xbl_console_qr_signin" | "xbl_console_signin" | "xbl_console_signin_succeeded" | "xbl_immediate_signin" | "win10_trial_conversion" + +export type Achievement = "empty_progress_bar_icon" | "full_progress_bar_icon_base"; +export type AddExternalServer = "play_button" | "play_disabled_button" | "remove_button" | "save_button" | "save_disabled_button" | "text_edit_group" | "text_edit_group/name_label" | "text_edit_group/edit_box" | "title_text" | "content_panel" | "content_panel/name_edit" | "content_panel/ip_edit" | "content_panel/port_edit" | "main_panel" | "main_panel/common_panel" | "main_panel/title" | "main_panel/main_content" | "main_panel/play" | "main_panel/play_disabled" | "main_panel/remove" | "main_panel/save" | "main_panel/save_disabled" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "add_external_server_screen_new" | "add_external_server_screen_edit" | "add_external_server_screen" | "add_external_server_screen_content" | "add_external_server_screen_content/root_panel" | "add_external_server_screen_content/root_panel/gamepad_helpers" | "add_external_server_screen_content/root_panel/main_panel"; +export type AdhocInprogress = "title_text" | "main_panel" | "main_panel/common_panel" | "main_panel/title" | "main_panel/main_content" | "main_panel/progress_loading_bars" | "adhoc_inprogress_screen" | "adhoc_inprogress_screen_content" | "adhoc_inprogress_screen_content/root_panel" | "adhoc_inprogress_screen_content/root_panel/main_panel"; +export type Adhoc = "online_button" | "local_button" | "title_text" | "content_panel" | "content_panel/title_text" | "main_panel" | "main_panel/common_panel" | "main_panel/title" | "main_panel/main_content" | "main_panel/online" | "main_panel/local" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "adhoc_screen" | "adhoc_screen_content" | "adhoc_screen_content/root_panel" | "adhoc_screen_content/root_panel/gamepad_helpers" | "adhoc_screen_content/root_panel/main_panel"; +export type Anvil = "generic_label" | "anvil_icon" | "title_label" | "anvil_icon_panel" | "anvil_icon_panel/anvil_icon" | "text_edit_control" | "icon_and_text_panel" | "icon_and_text_panel/anvil_icon_panel" | "icon_and_text_panel/anvil_title_and_text_panel" | "title_panel" | "title_panel/title_label" | "text_edit_panel" | "text_edit_panel/text_edit_control" | "anvil_title_and_text_panel" | "anvil_title_and_text_panel/title_panel" | "anvil_title_and_text_panel/text_edit_panel" | "plus_sign_icon" | "arrow_icon" | "cross_out_icon" | "anvil_output_slot_button" | "anvil_item_slot" | "anvil_item_slot/container_item" | "recipe_grid" | "recipe_grid/input_item_slot" | "recipe_grid/plus" | "recipe_grid/plus/plus_sign_icon" | "recipe_grid/material_item_slot" | "recipe_grid/yields" | "recipe_grid/yields/arrow_icon" | "recipe_grid/yields/cross_out_icon" | "recipe_grid/result_item_slot" | "cost_label" | "cost_label/gray" | "recipe_panel" | "recipe_panel/recipe_grid" | "recipe_panel/cost_label_0" | "recipe_panel/cost_label_1" | "top_half_panel" | "top_half_panel/icon_and_text_panel" | "top_half_panel/recipe_panel" | "anvil_panel" | "anvil_panel/container_gamepad_helpers" | "anvil_panel/selected_item_details_factory" | "anvil_panel/item_lock_notification_factory" | "anvil_panel/root_panel" | "anvil_panel/root_panel/common_panel" | "anvil_panel/root_panel/anvil_screen_inventory" | "anvil_panel/root_panel/anvil_screen_inventory/top_half_panel" | "anvil_panel/root_panel/anvil_screen_inventory/inventory_panel_bottom_half_with_label" | "anvil_panel/root_panel/anvil_screen_inventory/hotbar_grid" | "anvil_panel/root_panel/anvil_screen_inventory/inventory_take_progress_icon_button" | "anvil_panel/root_panel/inventory_selected_icon_button" | "anvil_panel/root_panel/gamepad_cursor" | "anvil_panel/flying_item_renderer" | "anvil_screen"; +export type AnvilPocket = "generic_label" | "background_image" | "arrow_icon" | "cost_label" | "cost_label/gray" | "title_label" | "text_edit_control" | "anvil_title_and_text_panel" | "anvil_title_and_text_panel/title_label" | "anvil_title_and_text_panel/text_edit_control" | "slots_panel" | "slots_panel/input_slot" | "slots_panel/material_slot" | "slots_panel/result_slot" | "slots_panel/plus_sign" | "slots_panel/arrow" | "slots_panel/arrow/cross_out" | "anvil_contents_panel" | "anvil_contents_panel/red_cost" | "anvil_contents_panel/green_cost" | "anvil_contents_panel/slots_panel" | "anvil_contents_panel/anvil_title_and_text_panel" | "inventory_grid" | "inventory_content" | "inventory_content/scrolling_panel" | "inventory_and_anvil_panel" | "inventory_and_anvil_panel/inventory_half_screen" | "inventory_and_anvil_panel/inventory_half_screen/inventory_content" | "inventory_and_anvil_panel/anvil_half_screen" | "inventory_and_anvil_panel/anvil_half_screen/anvil_contents_panel" | "header" | "header/header_background" | "header/legacy_pocket_close_button" | "header/panel" | "header/panel/title_label" | "header_and_content_stack_panel" | "header_and_content_stack_panel/header" | "header_and_content_stack_panel/inventory_and_anvil_panel" | "anvil_panel" | "anvil_panel/bg" | "anvil_panel/root_panel" | "anvil_panel/header_and_content_stack_panel" | "anvil_panel/container_gamepad_helpers" | "anvil_panel/inventory_selected_icon_button" | "anvil_panel/hold_icon" | "anvil_panel/selected_item_details_factory" | "anvil_panel/item_lock_notification_factory" | "anvil_panel/flying_item_renderer"; +export type AuthenticationModals = "modal_dialog_label" | "modal_dialog_content" | "modal_dialog_content/body_text" | "modal_dialog_content/button_wrapper" | "modal_dialog_content/button_wrapper/buttons" | "modal_dialog_content/button_wrapper/buttons/left" | "modal_dialog_content/button_wrapper/buttons/padding" | "modal_dialog_content/button_wrapper/buttons/right" | "modal_dialog_frame" | "modal_dialog_frame/title" | "modal_dialog_frame/close" | "modal_dialog_frame/black_tint_image" | "modal_dialog_frame/black_tint_image/content" | "ad_modal_dialog"; +export type Authentication = "nothing" | "tts_control" | "split_button_panel" | "split_button_panel/buttons" | "split_button_panel/buttons/a" | "split_button_panel/buttons/paddding" | "split_button_panel/buttons/b" | "vertical_split_button_panel" | "fixed_width_wrapper" | "fixed_width_wrapper/content" | "sign_in_button" | "download_button" | "smooth_label" | "smooth_bound_label" | "title_label" | "eula_hyperlink" | "accept_eula_button" | "eula_content" | "eula_content/prompt_wrapper" | "eula_content/prompt_wrapper/border" | "eula_content/prompt_wrapper/prompt_text" | "eula_content/padding" | "eula_content/buttons" | "eula" | "version" | "version/label" | "version/label_background" | "view_terms_button" | "privacy_policy_button" | "agree_panel" | "agree_panel/checkbox_control" | "agree_panel/i_agree_label" | "term_item" | "term_item/item" | "terms_and_conditions_panel" | "terms_and_conditions_panel/terms_string_panel" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button" | "confirmation_panel" | "confirmation_panel/confirm_button" | "scroll_stack_panel" | "scroll_stack_panel/border" | "scroll_stack_panel/terms" | "purchase_confirm_content" | "purchase_confirm_content/header_padding" | "purchase_confirm_content/panel_wrap" | "purchase_confirm_content/panel_wrap/scrolling_panel" | "purchase_confirm_content/terms_and_conditions_panel" | "purchase_confirm_content/button_padding" | "purchase_confirm_content/confirmation_panel" | "purchase_confirm_content/padding" | "purchase_prompt_content" | "purchase_prompt_content/prompt_wrap" | "purchase_prompt_content/prompt_wrap/border" | "purchase_prompt_content/prompt_wrap/prompt" | "purchase_prompt_content/purchase_wrap_centering_container" | "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap" | "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/purchase" | "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/padding_middle" | "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/signout" | "purchase_prompt" | "purchase_confirm" | "purchase_panel" | "purchase_panel/prompt" | "purchase_panel/confirm" | "title_panel" | "title_panel/title_label_wrapper" | "hyperlink_panel" | "hyperlink_panel/link_stack" | "hyperlink_panel/link_stack/link1" | "hyperlink_panel/link_stack/link2" | "hyperlink_panel/link_stack/padding" | "auth_screen" | "sign_in_content" | "sign_in_content/body_text" | "sign_in_content/body_hyperlink" | "sign_in_content/sign_in_wrapper" | "sign_in_content/sign_in_wrapper/button" | "sign_in_content/download_wrapper" | "sign_in_content/download_wrapper/button" | "authentication_screen_content" | "authentication_screen_content/debug" | "authentication_screen_content/client_version" | "authentication_screen_content/client_version/version" | "authentication_screen_content/sign_in" | "authentication_screen_content/sign_in_ios" | "authentication_screen_content/pack_progress" | "authentication_screen_content/welcome" | "authentication_screen_content/demo" | "authentication_screen_content/eula" | "authentication_screen_content/purchase_panel" | "authentication_screen_content/popup_dialog_factory" | "popup_content_base" | "popup_content_base/message" | "popup_content_base/message/border" | "popup_content_base/message/text" | "popup_content_base/content" | "popup_content_base/footer_padding" | "popup_dialog" | "popup_dialog/dialog" | "trial_info_ios_additional_content" | "trial_info_ios_additional_content/dismiss" | "popup_dialog_trial_info_ios" | "student_message_panel" | "trial_info_additional_content" | "trial_info_additional_content/buttons" | "generic_welcome_additional_content" | "generic_welcome_additional_content/button_wrapper" | "generic_welcome_additional_content/button_wrapper/buttons" | "popup_dialog_trial_info" | "popup_dialog_generic_welcome" | "popup_message" | "popup_message/main_message" | "popup_message/extra_message" | "popup_message/padding" | "popup_message_student" | "popup_hyperlink" | "popup_purchase_link" | "popup_dismiss_button" | "pack_progress_content" | "pack_progress_content/top_padding" | "pack_progress_content/loading_text_panel" | "pack_progress_content/loading_text_panel/loading_text" | "pack_progress_content/loading_bar_panel" | "pack_progress_content/loading_bar_panel/loading_bar" | "pack_progress_content/loading_padding" | "pack_progress_content/skip_panel" | "pack_progress_content/skip_panel/skip_button" | "pack_progress_content/bottom_padding" | "sign_in_ios_content" | "sign_in_ios_content/body_text" | "sign_in_ios_content/body_hyperlink" | "sign_in_ios_content/signin_ios_button_panel" | "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap" | "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap/prompt" | "sign_in_ios_content/signin_ios_button_panel/buttons" | "sign_in_ios_content/signin_ios_button_panel/pad_footer" | "sign_in_ios_content/error_sign_in_panel" | "sign_in_ios_content/error_sign_in_panel/button" | "sign_in_ios_content/error_download_panel" | "sign_in_ios_content/error_download_panel/button" | "sign_in_ios_button" | "to_app_store" | "debug_panel" | "debug_panel/state_label" | "debug_panel/state_text_box" | "debug_panel/open_popup" | "debug_panel/refresh_popup" | "debug_panel/reset" | "debug_panel/toggle_ios" | "authentication_popup_link_button" | "authentication_popup_link_button/top_padding" | "authentication_popup_link_button/link_button" | "authentication_popup_contents" | "authentication_popup_contents/initial_padding" | "authentication_popup_contents/body" | "authentication_popup_contents/learn_more_link" | "authentication_popup_contents/link2" | "authentication_popup_contents/end_padding" | "resizeable_scrolling_panel" | "authentication_popup_content_panel" | "authentication_popup_button" | "authentication_popup_one_button" | "authentication_popup_one_button/button" | "authentication_popup_two_buttons" | "authentication_popup_two_buttons/first_button" | "authentication_popup_two_buttons/button_padding" | "authentication_popup_two_buttons/second_button" | "authentication_popup_lower_button_panel" | "authentication_popup_lower_button_panel/one_button" | "authentication_popup_lower_button_panel/two_buttons" | "authentication_popup"; +export type AutoSaveInfo = "auto_save" | "accept_label" | "accept_label/button_label" | "accept_button" | "main_panel" | "main_panel/common_panel" | "main_panel/title_label" | "main_panel/message_label" | "main_panel/save_icon" | "main_panel/a" | "main_panel/gamepad_helpers" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "auto_save_info_screen" | "auto_save_info_screen_content" | "auto_save_info_screen_content/root_panel" | "auto_save_info_screen_content/root_panel/main_panel"; +export type Beacon = "selected_item_details" | "beacon_panel" | "beacon_panel/container_gamepad_helpers" | "beacon_panel/selected_item_details_factory" | "beacon_panel/item_lock_notification_factory" | "beacon_panel/root_panel" | "beacon_panel/root_panel/common_panel" | "beacon_panel/root_panel/beacon_inventory" | "beacon_panel/root_panel/beacon_inventory/beacon_inner_panel" | "beacon_panel/root_panel/beacon_inventory/payment_panel" | "beacon_panel/root_panel/beacon_inventory/inventory_panel_bottom_half" | "beacon_panel/root_panel/beacon_inventory/hotbar_grid_template" | "beacon_panel/root_panel/beacon_inventory/inventory_selected_icon_button" | "beacon_panel/root_panel/beacon_inventory/gamepad_cursor" | "beacon_panel/flying_item_renderer" | "inventory_slot_button" | "hotbar_slot_button" | "image_atlas" | "pyramid_image" | "pyramid_panel" | "pyramid_panel/level1" | "pyramid_panel/level2" | "pyramid_panel/level3" | "pyramid_panel/level4" | "item_seperator" | "item_renderer" | "usable_items_panel" | "usable_items_panel/netherite" | "usable_items_panel/item_seperator_0" | "usable_items_panel/emerald" | "usable_items_panel/item_seperator_1" | "usable_items_panel/diamond" | "usable_items_panel/item_seperator_2" | "usable_items_panel/gold" | "usable_items_panel/item_seperator_3" | "usable_items_panel/iron" | "base_image" | "hover_text" | "hover_state" | "hover_state/hover_text" | "button_unchecked_default" | "button_unchecked_hover" | "button_unchecked_hover/hover_text" | "button_checked_hover" | "button_checked_hover/hover_text" | "button_locked" | "button_locked_hover" | "button_locked_hover/hover_text" | "button_checked" | "toggle_button" | "base_button" | "base_button/default" | "base_button/hover" | "base_button/pressed" | "active_button" | "inactive_button" | "inactive_button/default" | "inactive_button/hover" | "selected_button" | "selected_button/default" | "selected_button/hover" | "secondary_effect_base" | "speed_secondary" | "haste_secondary" | "resist_secondary" | "jump_secondary" | "strength_secondary" | "image_template" | "image_template/base_image" | "secondary_effect_images" | "secondary_effect_images/speed_secondary" | "secondary_effect_images/haste_secondary" | "secondary_effect_images/resist_secondary" | "secondary_effect_images/jump_secondary" | "secondary_effect_images/strength_secondary" | "toggle_template" | "toggle_template/toggle_button" | "button_template" | "button_template/active_button" | "button_template/inactive_button" | "button_template/image_template" | "panel_template" | "button_panel" | "button_panel/speed_panel" | "button_panel/speed_panel/toggle_template" | "button_panel/haste_panel" | "button_panel/resist_panel" | "button_panel/jump_panel" | "button_panel/strength_panel" | "button_panel/regen_panel" | "button_panel/extra_panel" | "payment_panel" | "payment_panel/confirm_panel" | "payment_panel/cancel_panel" | "payment_panel/ingredient_item" | "payment_panel/usable_items_panel" | "beacon_label" | "beacon_inner_panel" | "beacon_inner_panel/button_panel" | "beacon_inner_panel/pyramid_panel" | "beacon_inner_panel/middle_strip" | "beacon_inner_panel/primary_power_label" | "beacon_inner_panel/secondary_power_label" | "beacon_screen"; +export type BeaconPocket = "generic_label" | "panel_outline" | "dark_bg" | "background_image" | "item_seperator" | "item_renderer" | "usable_items_panel" | "usable_items_panel/netherite" | "usable_items_panel/item_seperator_0" | "usable_items_panel/emerald" | "usable_items_panel/item_seperator_1" | "usable_items_panel/diamond" | "usable_items_panel/item_seperator_2" | "usable_items_panel/gold" | "usable_items_panel/item_seperator_3" | "usable_items_panel/iron" | "pyramid_image" | "pyramid_panel" | "pyramid_panel/pyramid_image" | "background_panel" | "beacon_background" | "beacon_background/middle_strip" | "inventory_grid" | "inventory_content" | "inventory_content/scrolling_panel" | "highlight_hover_square" | "highlight_hover_square/highlight_square" | "button_unchecked_default" | "button_unchecked_hover" | "button_unchecked_hover/highlight_hover_square" | "button_checked" | "button_checked_hover" | "button_checked_hover/highlight_hover_square" | "button_locked" | "button_locked_hover" | "button_locked_hover/highlight_hover_square" | "toggle_button" | "base_button" | "base_button/default" | "base_button/hover" | "base_button/hover/highlight_hover_square" | "base_button/pressed" | "active_button" | "inactive_button_image" | "inactive_button" | "inactive_button/default" | "inactive_button/hover" | "inactive_button/hover/highlight_hover_square" | "selected_button_image" | "selected_button" | "selected_button/default" | "selected_button/hover" | "selected_button/hover/highlight_hover_square" | "secondary_effect_base" | "speed_secondary" | "haste_secondary" | "resist_secondary" | "jump_secondary" | "strength_secondary" | "secondary_effect_images" | "secondary_effect_images/speed_secondary" | "secondary_effect_images/haste_secondary" | "secondary_effect_images/resist_secondary" | "secondary_effect_images/jump_secondary" | "secondary_effect_images/strength_secondary" | "base_image" | "image_template" | "image_template/base_image" | "toggle_template" | "toggle_template/toggle_button" | "button_template" | "button_template/active_button" | "button_template/inactive_button" | "button_template/image_template" | "panel_template" | "beacon_power_label" | "beacon_power_label/label" | "beacon_sub_panel" | "beacon_button_left_panel" | "beacon_button_left_panel/primary_power_label" | "beacon_button_left_panel/panel" | "beacon_button_left_panel/panel/pyramids_and_buttons" | "beacon_button_left_panel/panel/pyramids_and_buttons/level1" | "beacon_button_left_panel/panel/pyramids_and_buttons/speed_panel" | "beacon_button_left_panel/panel/pyramids_and_buttons/haste_panel" | "beacon_button_left_panel/panel/pyramids_and_buttons/level2" | "beacon_button_left_panel/panel/pyramids_and_buttons/resist_panel" | "beacon_button_left_panel/panel/pyramids_and_buttons/jump_panel" | "beacon_button_left_panel/panel/pyramids_and_buttons/level3" | "beacon_button_left_panel/panel/pyramids_and_buttons/strength_panel" | "beacon_button_right_panel" | "beacon_button_right_panel/secondary_power_label" | "beacon_button_right_panel/panel" | "beacon_button_right_panel/panel/buttons_and_pyramid" | "beacon_button_right_panel/panel/buttons_and_pyramid/level4" | "beacon_button_right_panel/panel/buttons_and_pyramid/regen_panel" | "beacon_button_right_panel/panel/buttons_and_pyramid/extra_panel" | "beacon_buttons_panel" | "beacon_buttons_panel/beacon_background" | "beacon_buttons_panel/left_panel" | "beacon_buttons_panel/right_panel" | "confirm_panel" | "confirm_panel/ingredient_item" | "confirm_panel/confirm_panel" | "confirm_panel/cancel_panel" | "beacon_payment_panel" | "beacon_payment_panel/usable_items_panel" | "beacon_payment_panel/pad" | "beacon_payment_panel/confirm_panel" | "beacon_contents_panel" | "beacon_contents_panel/fill1" | "beacon_contents_panel/beacon_buttons_panel" | "beacon_contents_panel/pad1" | "beacon_contents_panel/beacon_payment_panel" | "beacon_contents_panel/fill2" | "header" | "header/header_background" | "header/legacy_pocket_close_button" | "header/panel" | "header/panel/title_label" | "inventory_and_beacon_panel" | "inventory_and_beacon_panel/inventory_half_screen" | "inventory_and_beacon_panel/inventory_half_screen/inventory_content" | "inventory_and_beacon_panel/beacon_half_screen" | "inventory_and_beacon_panel/beacon_half_screen/beacon_content" | "header_and_content_stack_panel" | "header_and_content_stack_panel/header" | "header_and_content_stack_panel/inventory_and_beacon_panel" | "beacon_panel" | "beacon_panel/bg" | "beacon_panel/root_panel" | "beacon_panel/header_and_content_stack_panel" | "beacon_panel/container_gamepad_helpers" | "beacon_panel/inventory_selected_icon_button" | "beacon_panel/hold_icon" | "beacon_panel/selected_item_details_factory" | "beacon_panel/item_lock_notification_factory" | "beacon_panel/flying_item_renderer"; +export type BlastFurnace = "blast_furnace_screen"; +export type Book = "screenshot" | "screenshot_frame" | "screenshot_frame/caption_edit" | "photo_corner" | "photo_corner_bl" | "photo_corner_br" | "photo_corner_tr" | "photo_corner_tl" | "page_caption" | "page_photo" | "page_photo/screenshot" | "page_photo/screenshot_frame" | "page_photo/photo_corner_bl" | "page_photo/photo_corner_br" | "page_photo/photo_corner_tl" | "page_photo/photo_corner_tr" | "pick_item" | "pick_item/photo" | "pick_item/button" | "pick_item_inventory" | "pick_item_inventory/photo" | "pick_item_inventory/button" | "header" | "text_centering_panel_inventory" | "text_centering_panel_inventory/inventory_header" | "text_centering_panel_portfolio" | "text_centering_panel_portfolio/portfolio_header" | "pick_scrolling_content" | "pick_scrolling_content/inventory_header" | "pick_scrolling_content/inventory_grid" | "pick_scrolling_content/portfolio_header" | "pick_scrolling_content/portfolio_grid" | "pick_panel" | "pick_panel/scroll" | "pick_panel/close_button" | "blank" | "book_background" | "book_spine_image" | "page_crease_left_image" | "page_crease_right_image" | "page_edge_left_image" | "page_edge_right_image" | "text_edit_hover_image" | "base_button" | "base_button/default" | "base_button/hover" | "base_button/pressed" | "book_buttons_panel" | "book_buttons_panel/sign_export_buttons" | "book_buttons_panel/sign_export_buttons/left_spacer" | "book_buttons_panel/sign_export_buttons/sign_button" | "book_buttons_panel/sign_export_buttons/export_button" | "book_buttons_panel/sign_export_buttons/right_spacer" | "book_buttons_panel/im_content_button" | "cover_buttons_stack_panel_holder" | "cover_buttons_stack_panel_holder/cover_buttons_stack_panel" | "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/finalize_button" | "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/padding_1" | "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/cancel_sign_button" | "close_button_default" | "close_button_hover" | "close_button_pressed" | "close_button" | "close_button/default" | "close_button/hover" | "close_button/pressed" | "page_text_edit" | "page_text" | "page_number_label" | "padded_button" | "padded_button/button" | "page_buttons_panel" | "page_buttons_panel/swap_page_left" | "page_buttons_panel/insert_text_page" | "page_buttons_panel/insert_photo_page" | "page_buttons_panel/delete_page" | "page_buttons_panel/swap_page_right" | "page_content_panel" | "page_content_panel/page_text" | "page_content_panel/page_photo" | "page_content_panel/page_number_label" | "page_content_panel/page_buttons_panel" | "page_content_panel/edit_page" | "title_label" | "title_text_box" | "author_label" | "author_text_box" | "author_stack_panel" | "author_stack_panel/author_label_panel" | "author_stack_panel/author_label_panel/author_label" | "author_stack_panel/author_text_panel" | "author_stack_panel/author_text_panel/author_text_box" | "warning_label" | "cover_content_panel" | "cover_content_panel/title_label" | "cover_content_panel/title_text_box" | "cover_content_panel/author_stack_panel" | "cover_content_panel/warning_label" | "cover_and_buttons_panel" | "cover_and_buttons_panel/cover_panel" | "cover_and_buttons_panel/cover_panel/cover_content_panel" | "cover_and_buttons_panel/cover_panel/book_background" | "cover_and_buttons_panel/cover_panel/close_button" | "cover_and_buttons_panel/cover_buttons_stack_panel_holder" | "page_panel" | "page_panel/page_content_panel" | "book_grid" | "book_grid/page_panel_left" | "book_grid/page_panel_right" | "book_and_buttons_panel" | "book_and_buttons_panel/book_panel" | "book_and_buttons_panel/book_panel/book_grid" | "book_and_buttons_panel/book_panel/book_background" | "book_and_buttons_panel/book_panel/book_spine_image" | "book_and_buttons_panel/book_panel/close_button" | "book_and_buttons_panel/book_panel/prev_button" | "book_and_buttons_panel/book_panel/next_button" | "book_and_buttons_panel/book_buttons_panel" | "root_panel" | "book_screen" | "book_screen_content" | "book_screen_content/root_panel" | "book_screen_content/root_panel/book_and_buttons_panel" | "book_screen_content/root_panel/cover_and_buttons_panel" | "book_screen_content/root_panel/pick_panel" | "book_screen_content/root_panel/export_progress" | "book_screen_content/root_panel/gamepad_helper_a" | "book_screen_content/root_panel/gamepad_helper_b"; +export type BrewingStand = "brewing_pipes" | "brewing_fuel_pipes" | "bottle_empty_image" | "fuel_empty_image" | "bubbles_empty_image" | "bubbles_full_image" | "brewing_arrow_empty_image" | "brewing_arrow_full_image" | "brewing_fuel_bar_empty_image" | "brewing_fuel_bar_full_image" | "brewing_label" | "brewingstand_output_item" | "brewing_output_slots" | "brewing_output_slots/left_offset" | "brewing_output_slots/left_offset/output_grid_item1" | "brewing_output_slots/output_grid_item2" | "brewing_output_slots/right_offset" | "brewing_output_slots/right_offset/output_grid_item3" | "brewing_input_slot" | "brewing_input_slot/input_grid_item" | "brewing_fuel_slot" | "brewing_fuel_slot/fuel_grid_item" | "brewing_panel_top_half" | "brewing_panel_top_half/brewing_label" | "brewing_panel_top_half/brewing_stand_pictogram" | "brewing_stand_pictogram" | "brewing_stand_pictogram/brewing_input_slot" | "brewing_stand_pictogram/brewing_output_slots" | "brewing_stand_pictogram/brewing_fuel_slot" | "brewing_stand_pictogram/brewing_arrow_empty_image" | "brewing_stand_pictogram/brewing_arrow_full_image" | "brewing_stand_pictogram/brewing_fuel_bar_empty_image" | "brewing_stand_pictogram/brewing_fuel_bar_full_image" | "brewing_stand_pictogram/bubbles_empty_image" | "brewing_stand_pictogram/bubbles_full_image" | "brewing_stand_pictogram/brewing_fuel_pipes" | "brewing_stand_pictogram/brewing_pipes" | "brewing_stand_panel" | "brewing_stand_panel/container_gamepad_helpers" | "brewing_stand_panel/selected_item_details_factory" | "brewing_stand_panel/item_lock_notification_factory" | "brewing_stand_panel/root_panel" | "brewing_stand_panel/root_panel/common_panel" | "brewing_stand_panel/root_panel/furnace_screen_inventory" | "brewing_stand_panel/root_panel/furnace_screen_inventory/brewing_panel_top_half" | "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label" | "brewing_stand_panel/root_panel/furnace_screen_inventory/hotbar_grid" | "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button" | "brewing_stand_panel/root_panel/inventory_selected_icon_button" | "brewing_stand_panel/root_panel/gamepad_cursor" | "brewing_stand_panel/flying_item_renderer" | "brewing_stand_screen"; +export type BrewingStandPocket = "generic_label" | "brewing_fuel_pipes" | "bubbles_empty_image" | "bubbles_full_image" | "bottle_empty_image" | "background_image" | "output_slot" | "brewing_input_slot" | "brewing_input_slot/input_slot" | "brewing_fuel_slot" | "brewing_fuel_slot/fuel_slot" | "brewing_out_slots" | "brewing_out_slots/left_offset" | "brewing_out_slots/left_offset/output_slot1" | "brewing_out_slots/middle" | "brewing_out_slots/middle/output_slot2" | "brewing_out_slots/right_offset" | "brewing_out_slots/right_offset/output_slot3" | "slots_panel" | "slots_panel/brewing_input_slot" | "slots_panel/brewing_fuel_slot" | "slots_panel/brewing_out_slots" | "slots_panel/brewing_arrow_panel" | "slots_panel/brewing_arrow_panel/brewing_arrow_empty_image" | "slots_panel/brewing_arrow_panel/brewing_arrow_full_image" | "slots_panel/brewing_bubbles_panel" | "slots_panel/brewing_bubbles_panel/bubbles_empty_image" | "slots_panel/brewing_bubbles_panel/bubbles_full_image" | "slots_panel/brewing_fuel_bar_panel" | "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_empty_image" | "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_full_image" | "slots_panel/brewing_fuel_pipes" | "slots_panel/brewing_pipes" | "inventory_grid" | "inventory_content" | "inventory_content/scrolling_panel" | "brewing_stand_contents_panel" | "brewing_stand_contents_panel/slots_panel" | "header" | "header/header_background" | "header/legacy_pocket_close_button" | "header/panel" | "header/panel/title_label" | "inventory_and_brewing_panel" | "inventory_and_brewing_panel/inventory_half_screen" | "inventory_and_brewing_panel/inventory_half_screen/inventory_content" | "inventory_and_brewing_panel/brewing_half_screen" | "inventory_and_brewing_panel/brewing_half_screen/brewing_stand_contents_panel" | "header_and_content_stack_panel" | "header_and_content_stack_panel/header" | "header_and_content_stack_panel/inventory_and_brewing_panel" | "brewing_stand_panel" | "brewing_stand_panel/bg" | "brewing_stand_panel/root_panel" | "brewing_stand_panel/header_and_content_stack_panel" | "brewing_stand_panel/container_gamepad_helpers" | "brewing_stand_panel/inventory_selected_icon_button" | "brewing_stand_panel/hold_icon" | "brewing_stand_panel/selected_item_details_factory" | "brewing_stand_panel/item_lock_notification_factory" | "brewing_stand_panel/flying_item_renderer"; +export type BundlePurchaseWarning = "x_padding" | "y_padding" | "bundle_grid_item" | "bundle_grid_item/banner_image" | "bundle_grid_item/content" | "bundle_grid_item/game_pad_focus_border" | "is_focused" | "is_focused/image_border" | "is_focused/banner_border" | "focus_border" | "focus_border_button" | "focus_border_button/default" | "focus_border_button/hover" | "focus_border_button/pressed" | "grid_item_content" | "grid_item_content/image_border" | "grid_item_content/image_border/bundle_thumbnail" | "grid_item_content/padding_0" | "grid_item_content/bundle_title_panel" | "grid_item_content/bundle_title_panel/bundle_title" | "bundle_grid" | "side_contents" | "side_contents/title_alignment_hack" | "side_contents/title_alignment_hack/side_section_title" | "side_contents/padding_y_0" | "side_contents/grid_input_panel" | "side_contents/grid_input_panel/grid_scroll" | "dialog_content" | "dialog_content/grid_stack" | "dialog_content/grid_stack/left_grid_scroll" | "dialog_content/grid_stack/padding_x_divider" | "dialog_content/grid_stack/right_grid_scroll" | "purchase_button_panel" | "screen_dialog" | "bundle_purchase_warning_screen_content" | "bundle_purchase_warning_screen_content/dialog" | "background" | "bundle_purchase_warning_screen"; +export type Cartography = "title_label" | "arrow_icon" | "plus_sign_icon" | "text_edit_control" | "cartography_output_slot_button" | "cartography_item_slot" | "cartography_item_slot/container_item" | "map_image" | "map_image_panel" | "map_image_panel/none_map" | "map_image_panel/copy_map" | "map_image_panel/rename_map" | "map_image_panel/map" | "map_image_panel/locator_map" | "map_image_panel/zoom_map" | "map_image_panel/lock_map" | "text_box_panel" | "text_box_panel/map_name_label" | "text_box_panel/text_edit_control" | "input_slots" | "input_slots/input_item_slot" | "input_slots/plus_centerer" | "input_slots/plus_centerer/plus_sign_icon" | "input_slots/additional_item_slot" | "output_description_label" | "main_panel" | "main_panel/input_slots" | "main_panel/arrow_icon" | "main_panel/map_image_panel" | "main_panel/arrow_icon2" | "main_panel/result_item_slot" | "top_half_panel" | "top_half_panel/padding1" | "top_half_panel/title_panel" | "top_half_panel/title_panel/title_label" | "top_half_panel/padding2" | "top_half_panel/text_box_panel" | "top_half_panel/padding3" | "top_half_panel/padding4" | "top_half_panel/main_panel_wrap" | "top_half_panel/main_panel_wrap/main_panel" | "top_half_panel/output_description_label" | "top_half_panel/padding5" | "cartography_panel" | "cartography_panel/container_gamepad_helpers" | "cartography_panel/selected_item_details_factory" | "cartography_panel/item_lock_notification_factory" | "cartography_panel/root_panel" | "cartography_panel/root_panel/common_panel" | "cartography_panel/root_panel/cartography_screen_inventory" | "cartography_panel/root_panel/cartography_screen_inventory/top_half_panel" | "cartography_panel/root_panel/cartography_screen_inventory/inventory_panel_bottom_half_with_label" | "cartography_panel/root_panel/cartography_screen_inventory/hotbar_grid" | "cartography_panel/root_panel/cartography_screen_inventory/inventory_take_progress_icon_button" | "cartography_panel/root_panel/inventory_selected_icon_button" | "cartography_panel/root_panel/gamepad_cursor" | "cartography_panel/root_panel/tab_close_and_help_button" | "cartography_panel/flying_item_renderer" | "cartography_screen"; +export type CartographyPocket = "vertical_arrow_icon" | "chest_item_renderer" | "cartography_item_renderer" | "input_item_slot" | "additional_item_slot" | "result_item_slot" | "right_panel" | "right_panel/content" | "right_panel/content/bg" | "right_panel/content/cartography_content_stack_panel" | "right_panel/navigation_tabs_holder" | "right_panel/navigation_tabs_holder/right_navigation_tabs" | "right_tab_cartography" | "right_navigation_tabs" | "right_navigation_tabs/pocket_tab_close_and_help_button" | "right_navigation_tabs/fill" | "right_navigation_tabs/right_tab_cartography" | "input_slots_stack_panel" | "input_slots_stack_panel/input_item_slot" | "input_slots" | "input_slots/input_item_slot" | "input_slots/plus_centerer" | "input_slots/plus_centerer/plus_sign_icon" | "input_slots/additional_item_slot" | "cartography_content_stack_panel" | "cartography_content_stack_panel/label_holder" | "cartography_content_stack_panel/label_holder/cartography_label" | "cartography_content_stack_panel/padding_1" | "cartography_content_stack_panel/panel" | "cartography_content_stack_panel/panel/input_slots" | "cartography_content_stack_panel/padding_2" | "cartography_content_stack_panel/map_centerer" | "cartography_content_stack_panel/map_centerer/map_image_panel" | "cartography_content_stack_panel/description_centerer" | "cartography_content_stack_panel/description_centerer/output_description_label" | "cartography_content_stack_panel/padding_3" | "cartography_content_stack_panel/arrow_centerer" | "cartography_content_stack_panel/arrow_centerer/vertical_arrow_icon" | "cartography_content_stack_panel/padding_4" | "cartography_content_stack_panel/result_centerer" | "cartography_content_stack_panel/result_centerer/result_item_slot" | "cartography_content_stack_panel/filling_panel" | "cartography_content_stack_panel/text_box_panel" | "inventory_panel" | "inventory_panel/inventory_title_label_centerer" | "inventory_panel/inventory_title_label_centerer/inventory_title_label" | "inventory_panel/inventory_scroll_panel" | "inventory_scroll_panel" | "pattern_button" | "pattern_scroll_panel" | "left_panel" | "left_panel/gamepad_helpers_and_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs" | "left_panel/content" | "left_panel/content/bg" | "left_panel/content/inventory_panel" | "left_tab_inventory" | "left_navigation_tabs" | "left_navigation_tabs/padding" | "left_navigation_tabs/left_tab_inventory" | "pocket_hotbar_and_content_panels" | "cartography_panel" | "cartography_panel/pocket_hotbar_and_content_panels" | "cartography_panel/container_gamepad_helpers" | "cartography_panel/selected_item_details_factory" | "cartography_panel/item_lock_notification_factory" | "cartography_panel/inventory_selected_icon_button" | "cartography_panel/inventory_take_progress_icon_button" | "cartography_panel/flying_item_renderer"; +export type Chalkboard = "text_edit_control" | "locked_toggle" | "locked_label" | "lock_control" | "lock_control/toggle" | "lock_control/pad_wrap" | "lock_control/pad_wrap/label" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "chalkboard_screen" | "chalkboard_root" | "chalkboard_content" | "chalkboard_content/gamepad_helpers" | "chalkboard_content/edit_box" | "chalkboard_content/locked_toggle"; +export type Chat = "down_arrow_image" | "keyboard_image" | "copy_image" | "paste_image" | "gear_image" | "send_image" | "send_panel" | "send_panel/send_image_panel" | "send_panel/send_image_panel/send_image" | "send_panel/gamepad_x_button" | "send_panel/gamepad_x_button/side_padding" | "send_panel/gamepad_x_button/gamepad_x_button_image" | "send_panel/gamepad_x_button/gamepad_x_button_image/icon" | "keyboard_image_panel" | "keyboard_image_panel/keyboard_image" | "keyboard_image_panel/down_arrow_image" | "small_button" | "keyboard_button" | "chat_settings_button" | "send_button" | "messages_text" | "messages_text/text" | "message_tts_wrapper" | "messages_stack_panel" | "messages_scrolling_panel" | "text_edit_box" | "commands_background" | "click_autocomplete_is_focused" | "auto_complete_panel_contents_with_item" | "auto_complete_panel_contents_with_item/auto_complete_item_renderer" | "auto_complete_panel_contents_with_item/text" | "auto_complete_panel_contents_with_item/autocomplete_button" | "auto_complete_panel_contents_with_item/autocomplete_button/default" | "auto_complete_panel_contents_with_item/autocomplete_button/hover" | "auto_complete_panel_contents_with_item/autocomplete_button/pressed" | "auto_complete_panel" | "auto_complete_panel/panel" | "auto_complete_panel/panel/auto_complete_grid" | "commands_panel" | "commands_panel/auto_complete_panel" | "chat_bottom_panel" | "chat_bottom_panel/keyboard_button" | "chat_bottom_panel/host_main_button" | "chat_bottom_panel/chat_settings" | "chat_bottom_panel/text_box" | "chat_bottom_panel/send_button" | "title_text" | "title_text/title_panel" | "back_content_panel" | "back_content_panel/back_button" | "back_content_panel/gamepad_back_helper" | "back_content_panel/gamepad_back_helper/gamepad_helper_button" | "coordinate_dropdown_content" | "coordinate_dropdown_content/top_padding" | "coordinate_dropdown_content/my_position" | "coordinate_dropdown_content/block_position" | "coordinate_dropdown_content/bottom_padding" | "coordinate_dropdown" | "popup_toast" | "copy_coordinate_button" | "paste_button" | "chat_header" | "chat_header/title_panel" | "chat_header/title_panel/back_button_content_panel" | "chat_header/title_panel/title" | "chat_header/title_panel/popup_dialog_factory" | "chat_header/title_panel/chat_header_content_area" | "chat_header/title_panel/chat_header_content_area/coordinate_dropdown" | "chat_header/title_panel/chat_header_content_area/coordinates_panel" | "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image" | "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image/coordinates_text" | "chat_header/title_panel/chat_header_content_area/copy_coordinate_button" | "chat_header/title_panel/chat_header_content_area/icon" | "chat_header/title_panel/chat_header_content_area/paste_button" | "chat_screen" | "chat_screen_content" | "chat_screen_content/messages_panel" | "chat_screen_content/chat_bottom_panel" | "chat_screen_content/chat_top_panel" | "chat_screen_content/autocomplete_commands_panel" | "chat_screen_content/host_main_panel" | "chat_screen_content/popup_factory" | "chat_background"; +export type ChatSettings = "mute_all_toggle" | "mute_emote_chat_toggle" | "chat_tts_toggle" | "reset_button" | "typeface_dropdown_content" | "typeface_dropdown_content/top_padding" | "typeface_dropdown_content/mojangles" | "typeface_dropdown_content/noto_sans" | "typeface_dropdown_content/bottom_padding" | "typeface_dropdown" | "chat_color_dropdown_content" | "chat_color_dropdown_content/top_padding" | "chat_color_dropdown_content/0" | "chat_color_dropdown_content/1" | "chat_color_dropdown_content/2" | "chat_color_dropdown_content/3" | "chat_color_dropdown_content/4" | "chat_color_dropdown_content/5" | "chat_color_dropdown_content/6" | "chat_color_dropdown_content/bottom_padding" | "colors_dropdown_base" | "chat_color_dropdown" | "mentions_color_dropdown" | "font_size_slider" | "line_spacing_slider" | "colored_icon_panel" | "colored_icon_panel/icon" | "colored_icon_panel/icon_overlay" | "paintbrush" | "line_break" | "line_break/line_break_image" | "chat_settings_scrolling_content" | "chat_settings_scrolling_content/chat_settings_content_area" | "chat_settings_scrolling_content/chat_settings_content_area/mute_all_toggle" | "chat_settings_scrolling_content/chat_settings_content_area/mute_emote_chat_toggle" | "chat_settings_scrolling_content/chat_settings_content_area/chat_tts_toggle" | "chat_settings_scrolling_content/chat_settings_content_area/toggles_to_font_shape" | "chat_settings_scrolling_content/chat_settings_content_area/typeface_dropdown" | "chat_settings_scrolling_content/chat_settings_content_area/font_size" | "chat_settings_scrolling_content/chat_settings_content_area/line_spacing" | "chat_settings_scrolling_content/chat_settings_content_area/font_shape_to_font_colors" | "chat_settings_scrolling_content/chat_settings_content_area/chat_color" | "chat_settings_scrolling_content/chat_settings_content_area/mentions_color" | "chat_settings_scrolling_content/chat_settings_content_area/reset_button" | "chat_setting_scrolling_panel" | "chat_settings_popup" | "popup_factory"; +export type Chest = "chest_label" | "chest_grid_item" | "small_chest_grid" | "large_chest_grid" | "small_chest_panel_top_half" | "small_chest_panel_top_half/chest_label" | "small_chest_panel_top_half/small_chest_grid" | "large_chest_panel_top_half" | "large_chest_panel_top_half/chest_label" | "large_chest_panel_top_half/large_chest_grid" | "small_chest_panel" | "small_chest_panel/container_gamepad_helpers" | "small_chest_panel/selected_item_details_factory" | "small_chest_panel/item_lock_notification_factory" | "small_chest_panel/root_panel" | "small_chest_panel/root_panel/common_panel" | "small_chest_panel/root_panel/chest_panel" | "small_chest_panel/root_panel/chest_panel/small_chest_panel_top_half" | "small_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label" | "small_chest_panel/root_panel/chest_panel/hotbar_grid" | "small_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button" | "small_chest_panel/root_panel/chest_panel/flying_item_renderer" | "small_chest_panel/root_panel/inventory_selected_icon_button" | "small_chest_panel/root_panel/gamepad_cursor" | "selected_item_details" | "large_chest_panel" | "large_chest_panel/container_gamepad_helpers" | "large_chest_panel/selected_item_details_factory" | "large_chest_panel/item_lock_notification_factory" | "large_chest_panel/root_panel" | "large_chest_panel/root_panel/common_panel" | "large_chest_panel/root_panel/chest_panel" | "large_chest_panel/root_panel/chest_panel/large_chest_panel_top_half" | "large_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label" | "large_chest_panel/root_panel/chest_panel/hotbar_grid" | "large_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button" | "large_chest_panel/root_panel/chest_panel/flying_item_renderer" | "large_chest_panel/root_panel/inventory_selected_icon_button" | "large_chest_panel/root_panel/gamepad_cursor" | "ender_chest_panel" | "shulker_box_panel" | "barrel_panel" | "small_chest_screen" | "large_chest_screen" | "ender_chest_screen" | "shulker_box_screen" | "barrel_screen"; +export type ChooseRealm = "realm_screenshot" | "realm_screenshot/picture" | "realms_scroll_content" | "realms_scroll_content/scrolling_panel" | "realms_scroll_panel" | "realms_scroll_panel/realms_stack_panel" | "realms_scroll_panel/realms_stack_panel/realms_world_item_grid" | "realms_scroll_panel/realms_stack_panel/padding_0" | "realms_scroll_panel/realms_stack_panel/add_realm_button" | "realms_scroll_panel/realms_stack_panel/ten_player_button" | "realms_scroll_panel/realms_stack_panel/padding_1" | "realms_scroll_panel/realms_stack_panel/two_player_button" | "realms_world_item_grid" | "realms_world_item" | "realms_world_item/realms_world_item_button" | "realms_world_item_button" | "add_realm_button" | "ten_player_button" | "two_player_button" | "realms_world_content_panel" | "realms_world_content_panel/realm_screenshot" | "realms_world_content_panel/padding" | "realms_world_content_panel/realms_world_content_text_area_panel" | "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel" | "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel/realms_world_header" | "realms_world_content_panel/realms_world_content_status_area_panel" | "realms_world_content_panel/realms_world_content_status_area_panel/world_player_count_text_panel" | "realms_world_content_panel/realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count" | "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon" | "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_online_icon" | "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_unavailable_icon" | "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_offline_icon" | "main_panel" | "main_panel/progress_loading_bars" | "main_panel/realms_scroll_content" | "slots_scroll_panel" | "slots_scroll_panel/slots_stack_panel" | "slots_scroll_panel/slots_stack_panel/padding_0" | "slots_scroll_panel/slots_stack_panel/choose_slot_text" | "slots_scroll_panel/slots_stack_panel/padding_1" | "slots_scroll_panel/slots_stack_panel/slots_grid" | "slots_grid" | "slots_grid/slot_1" | "slots_grid/padding_0" | "slots_grid/slot_2" | "slots_grid/padding_1" | "slots_grid/slot_3" | "slot_content_panel" | "slot_content_panel/world_slot_top" | "slot_content_panel/world_slot_top/plus_image" | "slot_content_panel/world_slot_top/world_thumbnail" | "slot_content_panel/world_slot_bottom" | "slot_content_panel/world_slot_bottom/white_line_hover" | "slot_content_panel/world_slot_bottom/world_text_panel" | "slot_content_panel/world_slot_bottom/world_text_panel/background_grey" | "slot_content_panel/world_slot_bottom/world_text_panel/background_green" | "slot_content_panel/world_slot_bottom/world_text_panel/world_text" | "slot_panel" | "slot_panel/slots_scroll_content" | "slot_panel/slots_scroll_content/scrolling_panel" | "choose_realm_screen" | "choose_realm_screen_content" | "choose_realm_screen_content/realm_dialog" | "choose_realm_screen_content/slot_dialog" | "background"; +export type CoinPurchase = "black_image" | "banner_fill" | "coins_stack_panel" | "coins_stack_panel/coin" | "coins_stack_panel/coin_padding" | "coins_stack_panel/text_padding" | "coins_stack_panel/text_padding/coins_without_bonus" | "call_out_coins_stack_panel" | "call_out_coins_stack_panel/coin" | "call_out_coins_stack_panel/coin_padding" | "call_out_coins_stack_panel/text_padding" | "call_out_coins_stack_panel/text_padding/coins_without_bonus" | "button_content" | "button_content/bonus_coins_stack" | "button_content/call_out_background" | "button_content/call_out_background/bevel" | "call_out_button_content" | "call_out_button_content/call_out_header" | "call_out_button_content/call_out_bonus_coins_stack" | "call_out_button_content/call_out_background" | "call_out_button_content/call_out_background/call_out_border" | "call_out_header" | "call_out_header/call_out_banner" | "call_out_header/call_out_label" | "bonus_coins_stack" | "bonus_coins_stack/image_padding" | "bonus_coins_stack/image_panel" | "bonus_coins_stack/image_panel/image" | "bonus_coins_stack/non_bonus_padding_0" | "bonus_coins_stack/price_panel" | "bonus_coins_stack/price_panel/coins_stack_panel" | "bonus_coins_stack/plus_label" | "bonus_coins_stack/plus_label/plus_label" | "bonus_coins_stack/non_bonus_padding_1" | "bonus_coins_stack/bonus_label_panel" | "bonus_coins_stack/bonus_label_panel/bonus_label" | "bonus_coins_stack/padding_0" | "bonus_coins_stack/bonus_price_panel" | "bonus_coins_stack/bonus_price_panel/coins_stack_panel" | "bonus_coins_stack/padding_1" | "bonus_coins_stack/currency_panel" | "bonus_coins_stack/currency_panel/currency_price_panel" | "bonus_coins_stack/currency_panel/currency_price_panel/price" | "bonus_coins_stack/currency_panel/currency_price_panel/debug_price" | "bonus_coins_stack/padding_2" | "call_out_bonus_coins_stack" | "call_out_bonus_coins_stack/image_padding" | "call_out_bonus_coins_stack/image_panel" | "call_out_bonus_coins_stack/image_panel/image" | "call_out_bonus_coins_stack/non_bonus_padding_0" | "call_out_bonus_coins_stack/price_panel" | "call_out_bonus_coins_stack/price_panel/call_out_coins_stack_panel" | "call_out_bonus_coins_stack/plus_label" | "call_out_bonus_coins_stack/plus_label/plus_label" | "call_out_bonus_coins_stack/non_bonus_padding" | "call_out_bonus_coins_stack/bonus_label_panel" | "call_out_bonus_coins_stack/bonus_label_panel/bonus_label" | "call_out_bonus_coins_stack/padding_0" | "call_out_bonus_coins_stack/bonus_coin_panel" | "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_0" | "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel" | "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel/coin" | "call_out_bonus_coins_stack/bonus_coin_panel/coin_padding" | "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel" | "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel/bonus_coins" | "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_1" | "call_out_bonus_coins_stack/padding_1" | "call_out_bonus_coins_stack/currency_panel" | "call_out_bonus_coins_stack/currency_panel/currency_price_panel" | "call_out_bonus_coins_stack/currency_panel/currency_price_panel/price" | "call_out_bonus_coins_stack/currency_panel/currency_price_panel/debug_price" | "call_out_bonus_coins_stack/padding_2" | "price" | "offer_panel" | "call_out_offer_panel" | "offer_item" | "offer_item/offer_panel" | "offer_item/call_out_offer_panel" | "offer_grid_item" | "offer_grid_item/offer_item" | "not_enough_coins" | "faq_button" | "divider_panel" | "divider_panel/divider" | "coin_purchase_panel" | "coin_purchase_panel/padding_0" | "coin_purchase_panel/not_enough_coins_panel" | "coin_purchase_panel/not_enough_coins_panel/not_enough_coins" | "coin_purchase_panel/padding_1" | "coin_purchase_panel/coin_purchase_grid" | "coin_purchase_panel/divider_panel" | "coin_purchase_panel/faq_button" | "main_panel" | "main_panel/coin_purchase_panel" | "main_panel/loading_background" | "main_panel/progress_loading_spinner" | "main_panel/no_offers_panel" | "background" | "bundle_description" | "bundle_description_left" | "bundle_description_center" | "bundle_description_right" | "bundle_coins_stack" | "bundle_coins_stack/content_panel" | "bundle_coins_stack/content_panel/text_stack" | "bundle_coins_stack/content_panel/text_stack/title_label" | "bundle_coins_stack/content_panel/text_stack/padding_1" | "bundle_coins_stack/content_panel/text_stack/description_section_factory" | "bundle_coins_stack/content_panel/thumbnail_panel" | "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail" | "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail/coin_image" | "bundle_coins_stack/content_panel/padding_0" | "bundle_coins_stack/padding_0" | "bundle_coins_stack/currency_panel" | "bundle_coins_stack/currency_panel/currency_price_panel" | "bundle_coins_stack/currency_panel/currency_price_panel/price" | "bundle_coins_stack/currency_panel/currency_price_panel/debug_price" | "bundle_coins_stack/padding_2" | "bundle_button_content" | "bundle_button_content/bundle_coins_stack" | "bundle_button_content/call_out_background" | "bundle_button_content/call_out_background/bevel" | "bundle_offer_panel" | "bundle_offer_item" | "bundle_offer_item/offer_panel" | "bundle_offer_grid_item" | "bundle_offer_grid_item/offer_item" | "bundle_stack_factory" | "bundle_factory_panel" | "bundle_factory_panel/bundle_stack_factory" | "bundle_panel" | "bundle_panel/progress_loading_spinner" | "bundle_panel/loading_background" | "bundle_panel/bundle_stack_factory"; +export type CommandBlock = "plus_icon" | "paste_icon" | "plus_button" | "paste_button" | "icon_dropdown_toggle_button_state_content" | "icon_dropdown_toggle_button_state_content/icon_panel" | "icon_dropdown_toggle_button_state_content/icon_panel/dropdown_contents_icon" | "icon_dropdown_toggle_button_state_content/spacer" | "icon_dropdown_toggle_button_state_content/label_panel" | "icon_dropdown_toggle_button_state_content/label_panel/label" | "icon_dropdown_toggle_button_state_content/arrow_panel" | "icon_dropdown_toggle_button_state_content/arrow_panel/arrow" | "command_block_multiline_text_edit_box" | "command_block_text_edit_box" | "command_block_helper_stack" | "command_block_helper_stack/offset" | "command_block_helper_stack/text_" | "previous_command_block_info_stack" | "previous_command_block_info_stack/offset" | "previous_command_block_info_stack/start_label" | "previous_command_block_info_stack/offset1" | "previous_command_block_info_stack/start_label_dynamic_text" | "cancel_button" | "blocktype_dropdown_content" | "block_type_panel" | "condition_dropdown_content" | "condition_mode_panel" | "redstone_dropdown_content" | "redstone_mode_panel" | "left_scrolling_panel" | "left_scroll_panel_content" | "left_scroll_panel_content/content_stack_panel" | "left_scroll_panel_content/content_stack_panel/offset1" | "left_scroll_panel_content/content_stack_panel/offset2" | "left_scroll_panel_content/content_stack_panel/offset2/hover_note_text" | "left_scroll_panel_content/content_stack_panel/offset3" | "left_scroll_panel_content/content_stack_panel/block_type_mode_panel" | "left_scroll_panel_content/content_stack_panel/offset4" | "left_scroll_panel_content/content_stack_panel/condition_mode_panel" | "left_scroll_panel_content/content_stack_panel/offset5" | "left_scroll_panel_content/content_stack_panel/redstone_mode_panel" | "left_scroll_panel_content/content_stack_panel/offset_execute_on_first_tick" | "left_scroll_panel_content/content_stack_panel/option_label_execute_on_first_tick" | "left_scroll_panel_content/content_stack_panel/execute_on_first_tick_toggle" | "left_scroll_panel_content/content_stack_panel/offset_tick_delay" | "left_scroll_panel_content/content_stack_panel/option_label_tick_delay" | "left_scroll_panel_content/content_stack_panel/tick_delay_text" | "left_scroll_panel_content/content_stack_panel/offset7" | "left_scroll_panel_content/content_stack_panel/cancel" | "left_scroll_panel_content/content_stack_panel/offset8" | "left_divider_content" | "left_divider_content/left_scrolling_panel" | "right_scrolling_panel" | "right_scroll_panel_content" | "right_scroll_panel_content/command_block_commands_panel" | "right_scroll_panel_content/command_block_commands_panel/spacer1" | "right_scroll_panel_content/command_block_commands_panel/centering_panel" | "right_scroll_panel_content/command_block_commands_panel/centering_panel/option_label" | "right_scroll_panel_content/command_block_commands_panel/spacer2" | "right_scroll_panel_content/command_block_commands_panel/centering_panel1" | "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel" | "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset" | "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset/command_block_commands_text" | "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/paste_button" | "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/plus_button" | "right_scroll_panel_content/switch_warning_panel" | "right_scroll_panel_content/switch_warning_panel/switch_warning_label" | "right_scroll_panel_content/self_label" | "right_scroll_panel_content/self_label_offset" | "right_scroll_panel_content/nearest_player_label" | "right_scroll_panel_content/nearest_player_label_offset" | "right_scroll_panel_content/random_player_label" | "right_scroll_panel_content/random_player_label_offset" | "right_scroll_panel_content/all_players_label" | "right_scroll_panel_content/all_players_label_offset" | "right_scroll_panel_content/all_entities_label" | "right_scroll_panel_content/all_entities_label_offset" | "right_scroll_panel_content/nearest_label" | "right_scroll_panel_content/nearest_label_offset" | "right_scroll_panel_content/command_block_previous_output_panel" | "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel" | "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack" | "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/show_output_toggle" | "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/option_label" | "right_scroll_panel_content/command_block_previous_output_panel/spacer" | "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel" | "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel/command_output_text" | "right_scroll_panel_content/previous_block_type_text" | "right_scroll_panel_content/offset4" | "right_scroll_panel_content/previous_conditional_mode_text" | "right_scroll_panel_content/offset5" | "right_scroll_panel_content/previous_redstone_mode_text" | "divider_content" | "divider_content/left_side" | "divider_content/right_side" | "command_block_screen_content" | "command_block_screen_content/background_divider" | "command_block_screen_content/background_divider/bg_image" | "command_block_screen_content/background_divider/dialog_divider" | "command_block_screen_content/background_divider/header_buttons_stack_panel" | "command_block_screen_content/background_divider/header_buttons_stack_panel/paste_button" | "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder" | "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/close" | "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize" | "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/default" | "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/hover" | "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/pressed" | "command_block_screen_content/title" | "command_block_screen_content/content" | "command_block_screen_content/maximized_command_block_text" | "right_divider_content" | "right_divider_content/right_scrolling_panel" | "command_block_screen"; +export type ConfirmDeleteAccount = "horizontal_divider" | "image_panel" | "image_panel/image" | "header_panel" | "header_panel/image_panel" | "header_panel/padding" | "header_panel/text_panel" | "header_panel/text_panel/header_text" | "header_panel/text_panel/padding_2" | "header_panel/text_panel/header_text_2" | "dialog_content" | "dialog_content/body_content" | "dialog_content/padding" | "dialog_content/button_panel" | "dialog_content/button_panel/confirm_delete_account_button" | "dialog_content/button_panel/padding" | "dialog_content/button_panel/cancel_delete_account_button" | "confirm_checkbox" | "confirm_checkbox/check_box_wrapper" | "confirm_checkbox/check_box_wrapper/check_box" | "confirm_checkbox/padding" | "confirm_checkbox/label_wrapper" | "confirm_checkbox/label_wrapper/label" | "scrolling_panel" | "description_label_panel" | "description_label_panel/header_label_wrapper" | "description_label_panel/padding" | "description_label_panel/divider_0" | "description_label_panel/confirm_0" | "description_label_panel/divider_1" | "description_label_panel/confirm_1" | "description_label_panel/divider_2" | "description_label_panel/confirm_2" | "description_label_panel/divider_3" | "description_label_panel/confirm_3" | "confirm_delete_account_screen" | "confirm_delete_account_screen_content" | "confirm_delete_account_screen_content/root_panel" | "confirm_delete_account_screen_content/root_panel/dialog" | "screen_dialog" | "background"; +export type ContentLog = "content_log_label" | "content_log_grid_item" | "content_log_grid_item/content_log_background" | "content_log_grid_item/content_log_background/content_log_text" | "content_log_panel" | "content_log_panel/stack_panel"; +export type ContentLogHistory = "clipboard_icon" | "clipboard_icon_wrapper" | "clipboard_icon_wrapper/stack_panel" | "clipboard_icon_wrapper/stack_panel/icon_panel" | "clipboard_icon_wrapper/stack_panel/icon_panel/icon" | "clipboard_icon_wrapper/stack_panel/offset" | "clipboard_icon_wrapper/stack_panel/label_panel" | "clipboard_icon_wrapper/stack_panel/label_panel/label" | "clipboard_button" | "clear_icon" | "clear_icon_wrapper" | "clear_icon_wrapper/stack_panel" | "clear_icon_wrapper/stack_panel/icon_panel" | "clear_icon_wrapper/stack_panel/icon_panel/icon" | "clear_icon_wrapper/stack_panel/offset" | "clear_icon_wrapper/stack_panel/label_panel" | "clear_icon_wrapper/stack_panel/label_panel/label" | "clear_button" | "horizontal_button_stack_panel" | "horizontal_button_stack_panel/clipboard_button" | "horizontal_button_stack_panel/clear_button" | "content_log_message" | "content_log_message_panel" | "content_log_message_panel/content_log_message" | "content_log_message_panel_panel" | "content_log_message_panel_panel/content_log_message_panel" | "messages_stack_panel" | "messages_scrolling_panel" | "main_stack_panel" | "main_stack_panel/messages_scrolling_panel" | "content_log_history_panel" | "content_log_history_panel/content_log_history_dialog" | "content_log_history_screen"; +export type CrafterPocket = "generic_label" | "header_panel" | "header_panel/header_background" | "header_panel/title_label" | "header_area" | "header_area/x" | "header_area/inventory_header" | "header_area/container_header" | "dark_bg" | "panel_outline" | "background_panel" | "inventory_panel" | "inventory_panel/scrolling_panel" | "left_screen" | "left_screen/inventory_panel" | "crafter_input_grid" | "crafter_disabled_slot" | "crafter_disabled_slot/default" | "crafter_disabled_slot/hover" | "crafter_disabled_slot/pressed" | "cell_image" | "crafter_highlight_slot" | "crafter_container_slot_button_prototype" | "crafter_highlight_slot_panel" | "crafter_highlight_slot_panel/highlight" | "crafter_highlight_slot_panel/highlight/hover_text" | "crafter_highlight_slot_panel/white_border" | "crafter_enabled_slot_template" | "output_slot_hover_info" | "output_slot_hover_info/hover" | "output_slot_hover_info/output_slot" | "output_slot_hover_info/output_slot_border" | "output_slot_hover_info/output_count" | "panel_crafter" | "panel_crafter/item_lock_notification_factory" | "panel_crafter/root_panel" | "panel_crafter/root_panel/disabled_slot_0_button" | "panel_crafter/root_panel/disabled_slot_1_button" | "panel_crafter/root_panel/disabled_slot_2_button" | "panel_crafter/root_panel/disabled_slot_3_button" | "panel_crafter/root_panel/disabled_slot_4_button" | "panel_crafter/root_panel/disabled_slot_5_button" | "panel_crafter/root_panel/disabled_slot_6_button" | "panel_crafter/root_panel/disabled_slot_7_button" | "panel_crafter/root_panel/disabled_slot_8_button" | "panel_crafter/root_panel/redstone_screen_inventory" | "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid" | "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid" | "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon" | "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line" | "panel_crafter/root_panel/redstone_screen_inventory/crafter_output" | "panel_crafter/root_panel/red_icon" | "right_screen_background" | "right_screen" | "right_screen/right_screen_bg" | "right_screen/right_screen_bg/inventory_panel" | "panel" | "panel/container_gamepad_helpers" | "panel/header" | "panel/bg" | "panel/inventory" | "panel/container" | "panel/selected_item_details_factory" | "panel/item_lock_notification_factory" | "panel/gamepad_cursor" | "panel/flying_item_renderer" | "crafter"; +export type CreateWorldUpsell = "world_icon" | "realms_icon" | "dark_banner" | "grey_banner" | "checkmark" | "largex" | "realms_art_icon" | "new_world_button" | "new_realm_button" | "remove_trial_button" | "button_content" | "button_content/padding_0" | "button_content/icon_panel" | "button_content/padding_1" | "button_content/label_panel" | "realm_button_content" | "world_button_content" | "realms_button_text_panel" | "realms_button_text_panel/new_realm_label" | "realms_button_text_panel/new_realm_trial_label" | "price_label" | "new_realm_label" | "new_realm_trial_label" | "new_world_label" | "button_and_price_panel" | "button_and_price_panel/padding" | "button_and_price_panel/price_label_panel" | "button_and_price_panel/price_label_panel/price" | "border_shell" | "head_banner_panel" | "create_new_realm_content" | "create_new_realm_content/head_banner_panel" | "create_new_realm_content/head_banner_panel/realm_button_price" | "create_new_realm_content/realm_grid" | "create_world_upsell_grid_item" | "create_world_upsell_grid_item/db" | "create_world_upsell_grid_item/gb" | "create_world_upsell_grid_item/gp" | "grid_panel" | "grid_panel/padding" | "grid_panel/upsell_text_panel" | "grid_panel/upsell_text_panel/upsell_label" | "create_new_world_content" | "create_new_world_content/head_banner_panel" | "create_new_world_content/head_banner_panel/world_button_price" | "create_new_world_content/world_grid" | "new_world_or_realm_scroll" | "create_new_world_or_realm_content" | "create_new_world_or_realm_content/world" | "create_new_world_or_realm_content/padding" | "create_new_world_or_realm_content/realm_content" | "new_realm_scroll" | "new_realm_content_panel" | "new_realm_content_panel/key_art_panel" | "new_realm_content_panel/key_art_panel/realms_art_icon" | "new_realm_content_panel/padding_hack" | "new_realm_content_panel/padding_0" | "new_realm_content_panel/new_realm_scroll" | "new_realm_content_panel/padding_1" | "create_realm_upsell_content" | "create_realm_upsell_content/realm_content" | "create_realm_upsell_content/padding_0" | "create_realm_upsell_content/remove_trial_button" | "create_realm_upsell_content/padding_1" | "realm_content" | "create_world_upsell" | "create_world_upsell_realms" | "main_panel" | "variable_screen_size_panel" | "variable_screen_size_panel/dialog_0" | "variable_screen_size_panel/dialog_1" | "main_panel_realms_only"; +export type Credits = "fade_in_image" | "fade_out_image" | "skip_panel" | "skip_panel/skip_button" | "skip_panel/exit_credits_input_panel" | "credits_renderer" | "credits_screen_content" | "credits_screen_content/credits_renderer" | "credits_screen_content/vignette_renderer" | "credits_screen_content/fade_in_image" | "credits_screen_content/credits_factory" | "credits_screen_content/whole_screen_input_panel" | "background" | "credits_screen"; +export type CsbPurchaseError = "csb_purchase_error_screen" | "purchase_error_screen_content" | "purchase_error_screen_content/main_panel" | "purchase_error_modal_main_panel" | "purchase_error_modal_main_panel/text_panel" | "purchase_error_modal_main_panel/text_panel/text" | "purchase_error_modal_main_panel/padding_1" | "purchase_error_modal_main_panel/art_panel" | "purchase_error_modal_main_panel/art_panel/art" | "purchase_error_modal_main_panel/padding_2" | "purchase_error_modal_main_panel/error_panel" | "purchase_error_modal_main_panel/error_panel/error_code" | "purchase_error_modal_main_panel/error_panel/correlation_id" | "purchase_error_modal_back_button"; +export type Csb = "csb_pdp_screen" | "csb_upgrade_notice_screen" | "csb_background" | "gradient_image_stack" | "gradient_image_stack/gradient" | "gradient_content_panel" | "gradient_content_panel/gradient" | "gradient_content_panel/particles" | "gradient_content_panel/content_panel" | "csb_screen_main_panel" | "csb_main_panel" | "csb_main_panel/root_panel" | "csb_main_panel/root_panel/main_panel" | "dialog_content" | "dialog_content/selector_area" | "dialog_content/padding_1" | "dialog_content/allow_divider_offset_panel" | "dialog_content/allow_divider_offset_panel/left_right_pane_divider" | "dialog_content/padding_2" | "dialog_content/content_area" | "dialog_content/padding_3" | "selector_area" | "selector_area/scrolling_panel" | "scrollable_selector_area_content" | "scrollable_selector_area_content/focus_reset_input_panel" | "scrollable_selector_area_content/csb_toggle" | "scrollable_selector_area_content/content_toggle" | "scrollable_selector_area_content/faq_toggle" | "scrollable_selector_area_content/toggle_section_divider" | "scrollable_selector_area_content/buy_now_toggle" | "scrollable_selector_area_content/xbl_btn_panel" | "scrollable_selector_area_content/xbl_btn_panel/xbl_btn" | "section_toggle_base" | "tab_button_text" | "toggle_base" | "toggle_base/toggle" | "toggle_base/padding" | "csb_toggle" | "content_toggle" | "faq_toggle" | "buy_now_toggle" | "left_right_pane_divider" | "content_area" | "content_area/control" | "content_area/control/scrolling_panel_csb" | "section_content_panels" | "vertical_padding_4px" | "section_base" | "buy_now_content_section" | "buy_now_content_section/vertical_padding" | "buy_now_content_section/content" | "markdown_background_animated" | "markdown_background_animated/csb_chevron" | "markdown_background" | "markdown_background/banner_panel" | "markdown_background/banner_panel/banner" | "markdown_background/banner_panel/banner/banner_stack_panel" | "markdown_background/banner_panel/banner/banner_stack_panel/0" | "markdown_background/triangle_panel" | "markdown_background/triangle_panel/triangle" | "empty_label" | "full_width_section_divider"; +export type CsbContent = "csb_content_section" | "csb_content_section/content_section_vertical_padding_1" | "csb_content_section/popular_packs_label_panel" | "csb_content_section/popular_packs_label_panel/label_with_gradient" | "csb_content_section/popular_packs_label_panel/tts_border" | "csb_content_section/content_section_vertical_padding_2" | "csb_content_section/content_pack_types" | "csb_content_section/content_packs_included" | "csb_content_section/content_section_vertical_padding_3" | "content_pack_types_section" | "content_pack_types_section/pack_types" | "content_pack_types_section/padding" | "content_packs_included_section" | "content_packs_included_section/popular_packs" | "content_packs_included_section/section_divider" | "pack_types" | "pack_types/padding_01" | "pack_types/pack_types_1" | "pack_types/padding_02" | "pack_types/pack_types_2" | "pack_types/padding_03" | "pack_types_1" | "pack_types_1/worlds" | "pack_types_1/padding_01" | "pack_types_1/textures" | "pack_types_1/padding_02" | "pack_types_1/persona" | "pack_types_2" | "pack_types_2/padding_1" | "pack_types_2/skins" | "pack_types_2/padding_2" | "pack_types_2/mashups" | "pack_types_2/padding_3" | "pack_type_description" | "pack_type_description/image_nesting_panel" | "pack_type_description/image_nesting_panel/texture" | "pack_type_description/padding_0" | "pack_type_description/description_nesting_panel" | "pack_type_description/description_nesting_panel/description_label" | "pack_type_description/description_nesting_panel/tts_border" | "pack_type_description/padding_1" | "popular_packs" | "popular_packs/padding_0" | "popular_packs/pack_grid" | "popular_packs/view_all_packs_panel" | "popular_packs/view_all_packs_panel/view_all_packs_button" | "popular_packs/view_all_packs_panel/padding" | "popular_packs/view_all_packs_panel/view_character_creator_items" | "popular_packs/padding_1" | "popular_packs_label" | "packs_collection" | "packs_collection/row_1" | "packs_collection/row_1/pack_image_grid_item_0" | "packs_collection/row_1/padding" | "packs_collection/row_1/pack_image_grid_item_1" | "packs_collection/padding_1" | "packs_collection/row_2" | "packs_collection/row_2/pack_image_grid_item_0" | "packs_collection/row_2/padding" | "packs_collection/row_2/pack_image_grid_item_1" | "packs_collection/padding_2" | "pack_image_grid_item" | "pack_image_grid_item/bg" | "pack_image_grid_item/bg/featured_key_art" | "pack_image_grid_item/bg/progress_loading" | "pack_image_grid_item/offer_button" | "pack_image_grid_item/offer_button/default" | "pack_image_grid_item/offer_button/hover" | "pack_image_grid_item/offer_button/pressed"; +export type CsbBanner = "csb_banner" | "csb_banner/static_button" | "csb_banner/animated_button" | "csb_banner_slim" | "csb_banner_slim/banner_button" | "csb_banner_portal" | "csb_banner_portal/banner_button" | "promo_banner_csb_button" | "promo_banner_csb_button/default" | "promo_banner_csb_button/hover" | "csb_banner_slim_content" | "csb_banner_slim_content/banner_content" | "csb_banner_portal_content" | "csb_banner_portal_content/banner_content" | "slim_logo_panel" | "slim_logo_panel/mpp_logo" | "portal_logo_panel" | "portal_logo_panel/mpp_logo" | "csb_banner_new_content" | "csb_banner_new_content/text" | "csb_banner_new_content/text/logo_panel" | "csb_banner_new_content/text/offer_panel" | "csb_banner_new_content/text/offer_panel/upsell_text" | "csb_banner_new_content/text/pixel_art" | "sdl_upsell_text_component_factory" | "csb_banner_content" | "csb_banner_content/banner" | "csb_banner_content/text" | "csb_banner_content/text/logo_panel" | "csb_banner_content/text/logo_panel/logo" | "csb_banner_content/text/offer_panel" | "csb_banner_content/text/offer_panel/offer" | "csb_banner_content/text/learn_more_panel" | "csb_banner_content/text/learn_more_panel/learn_more" | "csb_banner_content/text/learn_more_panel/learn_more/more" | "csb_banner_content/text/learn_more_panel/learn_more/more_chevron" | "animated_promo_banner_csb_button" | "animated_promo_banner_csb_button/default" | "animated_promo_banner_csb_button/hover" | "animated_csb_banner_content" | "animated_csb_banner_content/banner" | "animated_csb_banner_content/text" | "animated_csb_banner_content/text/logo_panel" | "animated_csb_banner_content/text/logo_panel/logo" | "animated_csb_banner_content/text/offer_panel" | "animated_csb_banner_content/text/offer_panel/offer" | "animated_csb_banner_content/text/learn_more_panel" | "animated_csb_banner_content/text/learn_more_panel/learn_more" | "animated_csb_banner_content/text/learn_more_panel/learn_more/more" | "animated_csb_banner_content/text/learn_more_panel/learn_more/more_chevron" | "still_pixel_art_panel" | "still_pixel_art_panel/banner" | "animated_pixel_art_panel" | "animated_pixel_art_panel/mygif" | "image_component_factory" | "image_asset_factory"; +export type CsbBuy = "buy_now_content" | "buy_now_content/description_stack" | "buy_now_content/terms_and_conditions" | "buy_now_content/padding_2" | "buy_now_content/button_panel" | "buy_now_content/button_panel/buy_button" | "buy_now_content/button_panel/icon_panel" | "buy_now_content/padding_3" | "buy_now_content/terms" | "content_text_section" | "content_text_section/text_description" | "content_text_section/padding" | "content_description" | "content_description/content_description_label" | "content_description/tts_hover" | "trial_image_and_description" | "trial_image_and_description/image_border" | "trial_image_and_description/padding" | "trial_image_and_description/description_text" | "trial_image_and_description/description_text/descriptions_label" | "trial_image_and_description/description_text/tts_hover" | "title_text" | "title_text/inner_text" | "title_text/tts_hover" | "description_stack" | "description_stack/title_with_gradient" | "description_stack/padding" | "description_stack/image_and_description" | "terms_and_conditions" | "terms_and_conditions/terms_panel" | "terms_and_conditions_panel" | "terms_and_conditions_panel/name_label" | "terms_and_conditions_panel/terms_string_panel" | "terms_and_conditions_panel/terms_string_panel/banner_fill" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button" | "button_text" | "mcten_text_centering_panel" | "mcten_text_centering_panel/button_text" | "view_terms_button" | "privacy_policy_button" | "buy_button_panel" | "buy_button_panel/buy_button" | "tool_tip_icon_panel" | "tool_tip_icon_panel/issue_icon" | "tool_tip_icon_panel/issue_icon/info_icon" | "tool_tip_icon_panel/issue_icon/default" | "tool_tip_icon_panel/issue_icon/hover" | "tool_tip_icon_panel/issue_icon/pressed" | "buy_button_content" | "buy_button_content/button_chevron_panel" | "buy_button_content/button_chevron_panel/buy_button_chevron" | "buy_button_content/button_text_centering_panel" | "info_icon" | "info_icon/panel_icon"; +export type CommonCsb = "csb_expiration_banner" | "csb_expiration_banner/background" | "csb_expiration_banner/icon" | "csb_expiration_banner/text" | "csb_icon_large" | "csb_header" | "csb_header/label_a_text_csb" | "csb_header/label_space_text_csb" | "csb_header/label_b_text_pass" | "csb_header_two_lines" | "csb_header_two_lines/top_header" | "csb_header_two_lines/panel_centre_second_line" | "csb_header_two_lines/panel_centre_second_line/sub_header" | "csb_gold_button" | "csb_gold_text_button"; +export type CsbPurchaseAmazondevicewarning = "csb_purchase_amazondevicewarning_screen" | "screen_content" | "screen_content/main_panel" | "main_panel" | "main_panel/text_panel_1" | "main_panel/text_panel_1/text" | "main_panel/art_panel" | "main_panel/art_panel/art" | "main_panel/padding" | "main_panel/text_panel_2" | "main_panel/text_panel_2/text" | "back_button"; +export type CsbPurchaseWarning = "csb_purchase_warning_screen" | "purchase_warning_screen_content" | "purchase_warning_screen_content/main_panel" | "warning_modal_main_panel" | "warning_modal_main_panel/text_panel_1" | "warning_modal_main_panel/text_panel_1/text" | "warning_modal_main_panel/padding_1" | "warning_modal_main_panel/art_panel" | "warning_modal_main_panel/art_panel/art" | "warning_modal_main_panel/padding_2" | "warning_modal_main_panel/text_panel_2" | "warning_modal_main_panel/text_panel_2/text" | "warning_modal_back_button"; +export type CsbSubscriptionPanel = "csb_container" | "csb_container/fill" | "csb_container/border" | "csb_container/panel_contents" | "csb_container/panel_contents/content_container" | "csb_container/panel_contents/content_container/side_image_stack_left" | "csb_container/panel_contents/content_container/side_image_stack_left/csb_image" | "csb_container/panel_contents/content_container/padding_02" | "csb_container/panel_contents/content_container/side_stack_right" | "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack" | "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/panel_label" | "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding_01" | "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_01_container" | "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_02_container" | "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_03_container" | "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding02" | "csb_container/panel_contents/button_panel_spacer" | "csb_container/panel_contents/csb_buttons" | "csb_container/panel_contents/csb_buttons/button_panel_padding" | "csb_container/panel_contents/csb_buttons/padding_01" | "csb_container/panel_contents/csb_buttons/csb_info_button" | "csb_marketplace_benefit" | "csb_marketplace_benefit/bullet_holder_01" | "csb_marketplace_benefit/bullet_holder_01/bullet_spacer" | "csb_marketplace_benefit/bullet_holder_01/bullet_01" | "csb_marketplace_benefit/panel_details_ln1" | "csb_buy_container" | "csb_buy_container/csb_buy_button" | "csb_buy_button_text" | "csb_cancel_button"; +export type CsbUpsell = "csb_upsell_screen" | "csb_upsell_compare_dialog" | "csb_upsell_compare_dialog/csb_upsell_compare_main_screen" | "csb_upsell_popup_content" | "csb_upsell_popup_content/two_side_panels" | "csb_upsell_popup_content/two_side_panels/border_panel_left" | "csb_upsell_popup_content/two_side_panels/border_panel_left/border" | "csb_upsell_popup_content/two_side_panels/border_panel_left/background_panel" | "csb_upsell_popup_content/two_side_panels/border_panel_left/left_side_panel" | "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering" | "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering/learn_more_left" | "csb_upsell_popup_content/two_side_panels/middle_spacer" | "csb_upsell_popup_content/two_side_panels/border_panel_right" | "csb_upsell_popup_content/two_side_panels/border_panel_right/border" | "csb_upsell_popup_content/two_side_panels/border_panel_right/background_panel" | "csb_upsell_popup_content/two_side_panels/border_panel_right/right_side_panel" | "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering" | "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering/learn_more_right" | "csb_upsell_left_side_panel" | "csb_upsell_left_side_panel/upper_half" | "csb_upsell_left_side_panel/upper_half/header_panel" | "csb_upsell_left_side_panel/upper_half/header_panel/blank_space" | "csb_upsell_left_side_panel/upper_half/header_panel/top_header" | "csb_upsell_left_side_panel/upper_half/header_panel/price_amount" | "csb_upsell_left_side_panel/middle_spacer" | "csb_upsell_left_side_panel/bottom_half" | "csb_upsell_left_side_panel/bottom_half/padding_b" | "csb_upsell_left_side_panel/bottom_half/bullet_one" | "csb_upsell_left_side_panel/bottom_half/padding_0" | "csb_upsell_left_side_panel/bottom_half/bullet_two" | "csb_upsell_left_side_panel/bottom_half/padding_1" | "csb_upsell_left_side_panel/bottom_half/bullet_three" | "csb_upsell_right_side_panel" | "csb_upsell_right_side_panel/upper_half" | "csb_upsell_right_side_panel/upper_half/marketing_banner" | "csb_upsell_right_side_panel/upper_half/marketing_banner/background_color" | "csb_upsell_right_side_panel/upper_half/marketing_banner/marketing_banner_label" | "csb_upsell_right_side_panel/upper_half/header_panel" | "csb_upsell_right_side_panel/upper_half/header_panel/top_header" | "csb_upsell_right_side_panel/upper_half/header_panel/price_amount" | "csb_upsell_right_side_panel/middle_spacer" | "csb_upsell_right_side_panel/bottom_half" | "csb_upsell_right_side_panel/bottom_half/padding_b" | "csb_upsell_right_side_panel/bottom_half/bullet_one" | "csb_upsell_right_side_panel/bottom_half/padding_1" | "csb_upsell_right_side_panel/bottom_half/bullet_two" | "csb_upsell_right_side_panel/bottom_half/padding_0" | "csb_upsell_right_side_panel/bottom_half/bullet_three" | "csb_big_padding" | "csb_bullet_padding" | "csb_bullet_padding/desktop" | "csb_bullet_padding/pocket" | "csb_bullet_desktop_padding" | "csb_bullet_pocket_padding" | "csb_bullet" | "csb_bullet/padding_icon_left" | "csb_bullet/padding_icon_vertical" | "csb_bullet/padding_icon_vertical/padding_vertical" | "csb_bullet/padding_icon_vertical/label_icon" | "csb_bullet/padding_icon_right" | "csb_bullet_point" | "csb_bullet_point/bullet_icon" | "csb_bullet_point/label_text" | "csb_bullet_split_point" | "csb_bullet_split_point/bullet_icon" | "csb_bullet_split_point/label_text" | "csb_bullet_split_point/space" | "csb_bullet_split_point/space/label_text_csb" | "csb_bullet_split_point/csb_name" | "csb_bullet_split_point/csb_name/csb_name_string" | "csb_price" | "csb_price/price_details" | "csb_price_details" | "csb_price_details/price_panel_1" | "csb_price_details/price_panel_1/amount" | "csb_price_details/price_panel_first_period" | "csb_price_details/price_panel_first_period/second_line" | "csb_learn_more" | "csb_learn_more/learn_more"; +export type CsbPacks = "view_all_packs_screen" | "view_packs_screen_content" | "view_packs_screen_content/main_panel" | "csb_view_packs_screen_main_panel" | "main_panel" | "main_panel/offers" | "main_panel/progress_loading" | "scrolling_content_stack" | "scrolling_content_stack/padding_0" | "scrolling_content_stack/store_factory"; +export type CsbWelcome = "csb_welcome_screen" | "welcome_screen_content" | "welcome_screen_content/main_panel" | "welcome_modal_main_panel" | "welcome_modal_main_panel/art_panel" | "welcome_modal_main_panel/art_panel/art" | "welcome_modal_main_panel/padding" | "welcome_modal_main_panel/text_panel" | "welcome_modal_main_panel/text_panel/text" | "welcome_modal_continue_button"; +export type CsbFaq = "faq_bottom_button" | "faq_image_section" | "faq_image_section/faq_image" | "faq_text_section_body" | "faq_text_question" | "faq_text_section" | "faq_text_section/faq_text_question" | "faq_text_section/faq_text_answer" | "faq_price_bound_text_section" | "faq_price_bound_text_section/faq_text_question" | "faq_price_bound_text_section/faq_text_answer" | "faq_question_body" | "faq_question_body/0" | "faq_question_body_stack" | "faq_question_body_horz_padding" | "image_left_faq_question_body" | "image_right_faq_question_body" | "image_left_faq_price_bound" | "image_right_faq_price_bound" | "faq_section_header_space" | "faq_section_divider" | "faq_content_section" | "faq_content_section/faq_section_vertical_padding_1" | "faq_content_section/faq_header" | "faq_content_section/faq_section_vertical_padding_2" | "faq_content_section/faq_question_1" | "faq_content_section/faq_question_1_divider" | "faq_content_section/faq_question_2" | "faq_content_section/faq_question_2_divider" | "faq_content_section/faq_question_3" | "faq_content_section/faq_question_3_divider" | "faq_content_section/faq_question_4" | "faq_content_section/faq_question_4_divider" | "faq_content_section/faq_question_5" | "faq_content_section/faq_question_5_divider" | "faq_content_section/faq_question_6" | "faq_content_section/faq_question_6_divider" | "faq_content_section/faq_question_7" | "faq_content_section/faq_question_7_divider" | "faq_content_section/faq_question_8" | "faq_content_section/faq_question_8_divider" | "faq_content_section/faq_question_9" | "faq_content_section/faq_question_9_divider" | "faq_content_section/faq_question_10" | "faq_content_section/faq_question_10_divider" | "faq_content_section/faq_button" | "faq_content_section/faq_bottom_padding" | "faq_content_section/faq_bottom_padding/bottom_left_particles"; +export type CsbLanding = "landing_content_section" | "landing_content_section/landing_section_vertical_padding" | "landing_content_section/landing_content" | "landing_content_section/landing_content/title_stack" | "landing_content_section/landing_content/vertical_small_spacer_0" | "landing_content_section/landing_content/vertical_small_spacer_1" | "landing_content_section/landing_content/info_stack" | "landing_content_section/landing_content/vertical_small_spacer_2" | "horizontal_small_spacer" | "vertical_small_spacer" | "vertical_large_spacer" | "title_stack" | "title_stack/title_image_panel" | "title_stack/title_space" | "title_stack/action_button" | "title_stack/sign_in_button" | "title_stack/vertical_space2" | "title_stack/gradient_panel" | "title_stack/gradient_panel/label_with_gradient" | "title_stack/gradient_panel/tts_hover" | "title_stack/gradient_panel2" | "title_stack/gradient_panel2/label_with_gradient2" | "title_stack/gradient_panel2/tts_hover" | "subscription_includes_text" | "free_trial_text" | "title_space" | "title_image_panel" | "title_image_panel/vertical_small_spacer_1" | "title_image_panel/title_image_container" | "title_image_panel/title_image_container/title_image" | "title_image_panel/vertical_small_spacer_2" | "info_stack" | "info_stack/info_section_image" | "info_stack/info_description_stack_retail" | "info_description_stack_retail" | "info_description_stack_retail/info_section_stack_1" | "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer" | "info_description_stack_retail/info_section_stack_1/info_section_text_1" | "info_section_stack" | "info_section_image_with_border" | "info_section_text_1" | "info_section_text_1/info_section_text" | "info_section_text_1/vertical_small_spacer_0" | "info_section_text_1/info_text_bullet_1" | "info_section_text_1/vertical_small_spacer_1" | "info_section_text_1/info_text_bullet_2" | "info_section_text_1/vertical_small_spacer_2" | "info_section_text_1/info_text_bullet_3" | "info_section_text_1/vertical_small_spacer_3" | "info_section_text_1/info_text_bullet_4" | "info_section_text_1/vertical_small_spacer_4" | "info_section_text_1/info_text_bullet_5" | "info_section_text_1/vertical_small_spacer_5" | "info_section_text_1/info_text_bullet_6" | "info_section_text_1/vertical_large_spacer_6" | "info_section_text_2" | "info_section_text_2/info_text_bullet_1" | "info_section_text_2/vertical_small_spacer_0" | "info_section_text_2/info_text_bullet_2" | "info_section_text_2/vertical_small_spacer_1" | "info_section_text_2/info_text_bullet_4" | "info_section_text_2/vertical_small_spacer_3" | "info_section_text_2/info_text_bullet_5" | "info_section_text" | "info_text_bullet" | "info_text_bullet/info_text_bullet_bullet" | "info_text_bullet/bullet_spacer" | "info_text_bullet/info_text_bullet_body" | "info_text_bullet/bullet_spacer_end" | "info_text_unbulletted" | "info_text_unbulletted/info_text_bullet_body" | "info_text_body" | "info_text_body/text_body" | "info_text_body/tts_border"; +export type CustomTemplates = "lock_icon" | "templates_scroll_content" | "templates_scroll_content/scrolling_panel" | "templates_scroll_panel" | "templates_scroll_panel/templates_stack_panel" | "templates_scroll_panel/templates_stack_panel/templates_item_grid" | "templates_item_grid" | "templates_item" | "templates_item/template_item_button" | "template_item_button" | "template_content_panel" | "template_content_panel/template_screenshot" | "template_content_panel/template_text_panel" | "template_content_panel/lock_panel" | "template_content_panel/lock_panel/lock_icon" | "template_screenshot" | "template_screenshot/picture" | "template_text_panel" | "template_text_panel/text_indent" | "template_text_panel/text_indent/top_side" | "template_text_panel/text_indent/top_side/template_name" | "template_text_panel/text_indent/top_side/download_text_label" | "template_text_panel/text_indent/bottom_side" | "template_text_panel/text_indent/bottom_side/template_description" | "template_text_panel/text_indent/bottom_side/template_version" | "template_name" | "template_download_text" | "template_list_text" | "template_description" | "template_version" | "main_panel" | "main_panel/templates_scroll_content" | "custom_templates_screen" | "custom_templates_screen_content" | "custom_templates_screen_content/dialog" | "background"; +export type WorldConversionComplete = "background" | "prompt_text" | "prompt_text/message" | "converted_world_preview_name" | "converted_world_preview_date" | "converted_world_preview_game_mode" | "converted_world_preview_filesize" | "converted_world_preview_text_panel" | "converted_world_preview_text_panel/text_indent" | "converted_world_preview_text_panel/text_indent/top_side" | "converted_world_preview_text_panel/text_indent/top_side/converted_world_name" | "converted_world_preview_text_panel/text_indent/top_side/converted_world_date" | "converted_world_preview_text_panel/text_indent/bottom_side" | "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_game_mode" | "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_filesize" | "converted_world_preview_panel" | "converted_world_preview_panel/world_preview_content" | "converted_world_preview_panel/world_preview_content/converted_world_screenshot" | "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content" | "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content/picture" | "converted_world_preview_panel/world_preview_content/converted_world_text_panel" | "main_panel" | "main_panel/padding_0" | "main_panel/prompt_1" | "main_panel/world_entry_container" | "main_panel/world_entry_container/world_entry_sizer" | "main_panel/world_entry_container/world_entry_sizer/world_entry" | "main_panel/buttons_panel_sizer" | "main_panel/buttons_panel_sizer/buttons_panel" | "main_panel/buttons_panel_sizer/buttons_panel/load_game_button" | "main_panel/buttons_panel_sizer/buttons_panel/padding" | "main_panel/buttons_panel_sizer/buttons_panel/return_button" | "world_conversion_complete_screen_content" | "world_conversion_complete_screen_content/dialog" | "world_conversion_complete_screen"; +export type DayOneExperienceIntro = "padding_horizontal" | "padding_vertical" | "label_panel" | "label_panel/label_text" | "text_panel" | "text_panel/padding_00" | "text_panel/tab_content_description_panel" | "text_panel/padding_01" | "dialog_image" | "image_panel" | "image_panel/dialog_image_with_border" | "image_panel/focus_image" | "top_tab" | "common_tab_navigation_panel_layout" | "tabbed_tab_navigation_panel_layout" | "tabbed_tab_navigation_panel_layout/nav_padding_01" | "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper" | "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper/gamepad_helper_left_bumper" | "tabbed_tab_navigation_panel_layout/nav_padding_02" | "tabbed_tab_navigation_panel_layout/welcome_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_03" | "tabbed_tab_navigation_panel_layout/marketplace_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_04" | "tabbed_tab_navigation_panel_layout/cross_platform_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_05" | "tabbed_tab_navigation_panel_layout/realms_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_06" | "tabbed_tab_navigation_panel_layout/villagers_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_07" | "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper" | "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper/gamepad_helper_right_bumper" | "tabbed_tab_navigation_panel_layout/nav_padding_08" | "tab_header_image_panel" | "tab_header_image_panel/welcome_tab_content" | "tab_header_image_panel/marketplace_tab_content" | "tab_header_image_panel/cross_platform_tab_content" | "tab_header_image_panel/realms_tab_content" | "tab_header_image_panel/villager_tab_content" | "tabbed_tab_content_panel_layout" | "tabbed_tab_content_panel_layout/welcome_tab_content" | "tabbed_tab_content_panel_layout/marketplace_tab_content" | "tabbed_tab_content_panel_layout/cross_platform_tab_content" | "tabbed_tab_content_panel_layout/realms_tab_content" | "tabbed_tab_content_panel_layout/villager_tab_content" | "common_tab_header_image_panel" | "common_tab_header_image_panel/header_image" | "common_tab_content_panel" | "common_tab_content_panel/content" | "welcome_tab_header_image_panel" | "welcome_tab_content_panel" | "marketplace_tab_header_image_panel" | "marketplace_tab_content_panel" | "cross_platform_tab_header_image_panel" | "cross_platform_tab_content_panel" | "realms_tab_header_image_panel" | "realms_tab_content_panel" | "villager_tab_header_image_panel" | "villager_tab_content_panel" | "tab_panel" | "tab_panel/tab_header_image" | "tab_panel/padding_00" | "tab_panel/tab_navigation_panel" | "tab_panel/tab_content_panel" | "tab_panel/padding_4" | "tab_panel/continue_button_panel" | "tab_panel/continue_button_panel/continue_button" | "day_one_experience_intro_screen" | "day_one_experience_intro_screen_content" | "day_one_experience_intro_screen_content/welcome_dialog"; +export type DayOneExperience = "alpha_scroll_background" | "tip_text" | "tip_arrow_base" | "tip_arrow_left" | "tip_arrow_right" | "import_time" | "skins_tip_image" | "skins_tip_image/arrows" | "skins_tip_image/arrows/right_arrow" | "skins_tip_image/arrows/padding" | "skins_tip_image/arrows/left_arrow" | "skins_tip_top_text" | "skins_tip_panel" | "skins_tip_panel/top_text_sizer" | "skins_tip_panel/top_text_sizer/settings_and_skin_text" | "skins_tip_panel/top_text_sizer/settings_text" | "skins_tip_panel/image_sizer" | "skins_tip_panel/image_sizer/image_section" | "skins_tip_panel/bottom_text_sizer" | "skins_tip_panel/bottom_text_sizer/bottom_text" | "skin_viewer_panel_text" | "skin_viewer_panel" | "skin_viewer_panel/paper_doll_container" | "skin_viewer_panel/paper_doll_container/paper_doll" | "skin_viewer_panel/legacy_skin_loading_panel" | "skin_viewer_panel/bottom_skin_text" | "skin_viewer_panel/bottom_skin_text/current_skin_text" | "skin_viewer_panel/bottom_skin_text/default_skin_text" | "skin_tip_screen" | "skin_tip_screen/primary_content" | "skin_tip_screen/primary_content/skin_viewer_panel" | "skin_tip_screen/primary_content/skin_viewer_panel/skin_viewer" | "skin_tip_screen/primary_content/padding" | "skin_tip_screen/primary_content/skins_tip_panel_container" | "skin_tip_screen/primary_content/skins_tip_panel_container/background" | "skin_tip_screen/primary_content/skins_tip_panel_container/skins_tip_panel" | "skin_tip_screen/no_network_message" | "legacy_world_item" | "legacy_world_item/header_button_panel" | "legacy_world_item_grid" | "world_picker_scrolling_content" | "world_picker_scrolling_content/padding_0" | "world_picker_scrolling_content/skip_button" | "world_picker_scrolling_content/padding_1" | "world_picker_scrolling_content/loading_legacy_worlds_panel" | "world_picker_scrolling_content/loading_legacy_worlds_panel/loading_legacy_worlds_label" | "world_picker_scrolling_content/loading_legacy_worlds_panel/padding" | "world_picker_scrolling_content/loading_legacy_worlds_panel/progress_loading_bars" | "world_picker_scrolling_content/padding_2" | "world_picker_scrolling_content/world_item_grid" | "world_picker_content" | "world_picker_content/scrolling_panel" | "advanced_worlds_screen" | "advanced_worlds_screen/world_picker" | "advanced_worlds_screen/padding_1" | "advanced_worlds_screen/import_time_container" | "advanced_worlds_screen/import_time_container/import_time_label" | "next_screen_button_content" | "next_screen_button_content/arrow_panel" | "next_screen_button_content/arrow_panel/label_panel" | "next_screen_button_content/arrow_panel/label_panel/label" | "next_screen_button_content/arrow_panel/image" | "next_screen_button_content/loading_panel" | "next_screen_button" | "next_panel" | "next_panel/next_button" | "common_scrolling_panel" | "skin_tip_scroll_panel" | "skin_tip_scroll_panel/skin_tip_screen" | "worlds_import_scroll_panel" | "worlds_import_scroll_panel/advanced_screen" | "common_content" | "skin_tip_scroll_content" | "skin_tip_scroll_content/scrolling_panel" | "world_import_scroll_content" | "world_import_scroll_content/scrolling_panel" | "default_tab_content_panel_layout" | "default_tab_content_panel_layout/skin_tip_tab_content" | "default_tab_content_panel_layout/world_import_tab_content" | "default_wizard_screen" | "default_wizard_screen/tab_content_panel" | "wizard_screen" | "wizard_screen_content" | "wizard_screen_content/main_control" | "wizard_screen_content/next_button"; +export type Death = "a_button_panel" | "a_button_panel/gamepad_helper_a" | "you_died_panel" | "you_died_panel/you_died_label" | "death_reason_panel" | "death_reason_panel/death_reason_label" | "labels_panel" | "labels_panel/fill_1" | "labels_panel/you_died" | "labels_panel/padd_1" | "labels_panel/death_reason" | "labels_panel/padd_2" | "buttons_panel" | "buttons_panel/padd_0" | "buttons_panel/respawn_button" | "buttons_panel/padd_1" | "buttons_panel/main_menu_button" | "buttons_panel/fill_2" | "buttons_panel/select_button" | "death_screen_content" | "death_screen_content/death_screen_buttons_and_stuff" | "death_screen_content/death_screen_buttons_and_stuff/labels_panel" | "death_screen_content/death_screen_buttons_and_stuff/buttons_panel" | "death_screen_content/loading_label" | "background_gradient" | "death_screen"; +export type DebugScreen = "access_button" | "special_render" | "content_panel" | "content_panel/access_button" | "content_panel/special_render" | "debug_screen"; +export type DevConsole = "keyboard_button_content" | "keyboard_button_content/keyboard_image" | "keyboard_button" | "button_content" | "button_content/image" | "up_arrow" | "down_arrow" | "send_button" | "sent_message_up_button" | "sent_message_down_button" | "chat_stack_panel" | "chat_stack_panel/text_box" | "chat_stack_panel/send_button" | "chat_stack_panel/sent_message_up_button" | "chat_stack_panel/sent_message_down_button" | "main_stack_panel" | "main_stack_panel/messages_scrolling_panel" | "main_stack_panel/chat_stack_panel" | "main_with_intellisense" | "main_with_intellisense/main_stack" | "main_with_intellisense/commands_panel" | "dev_console_dialog" | "dev_console_screen"; +export type Disconnect = "disconnect_screen_text" | "disconnect_text" | "disconnect_title_text" | "title_panel" | "title_panel/disconnect_title_text" | "title_panel/disconnect_text" | "menu_button_template" | "continue_button" | "check_store_button" | "exit_button" | "ok_button" | "open_uri_button" | "cancel_button" | "button_panel" | "button_panel/open_uri_button_panel" | "button_panel/open_uri_button_panel/open_uri_button" | "button_panel/open_button_panel" | "button_panel/open_button_panel/ok_button" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "disconnect_screen" | "disconnect_screen_content" | "disconnect_screen_content/title_panel" | "disconnect_screen_content/gamepad_helpers" | "spacing_gap" | "realms_disconnect_screen" | "realms_disconnect_button_panel" | "realms_disconnect_button_panel/open_uri_button_panel" | "realms_disconnect_button_panel/open_uri_button_panel/open_uri_button" | "realms_disconnect_button_panel/realm_buttons_panel" | "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons" | "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/check_store_button" | "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/spacing_gap" | "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/exit_button" | "realms_warning_screen" | "realms_warning_button_panel" | "realms_warning_button_panel/continue_button_panel" | "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel" | "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/check_store_button" | "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/spacing_gap" | "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/continue_button" | "realms_warning_button_panel/realms_warning_button_gap" | "realms_warning_button_panel/cancel_button_panel" | "realms_warning_button_panel/cancel_button_panel/cancel_button" | "open_account_setting_button"; +export type DisplayLoggedError = "display_logged_error_screen" | "factory_panel" | "factory_panel/error_dialog_factory" | "display_logged_error_modal" | "error_message_stack" | "error_message_stack/error_message" | "error_message_stack/error_count" | "input_blocking_button_base" | "details_button" | "dismiss_button" | "error_details_modal" | "copy_path_button" | "hide_error_details_button" | "error_stack_scrolling_panel" | "error_stack" | "error_controller_panel" | "error_controller_panel/error_message" | "error_controller_panel/controller_button" | "error_controller_panel/controller_button/hover" | "error_controller_panel/controller_button/pressed" | "error_base" | "error_base/error_message" | "error_base/expand_button" | "error_short" | "error_expanded"; +export type DiscoveryDialog = "service_body_label" | "service_button" | "service_buttons" | "content" | "content/body_text" | "content/text_to_button_padding" | "content/buttons" | "service_dialog" | "discovery_dialog_factory"; +export type EduFeatured = "featured_button_content" | "featured_button_content/button_label" | "featured_button"; +export type EduQuitButton = "quit_button"; +export type PersonaEmote = "emote_wheel_screen" | "emote_wheel_touch_zone" | "emote_wheel_screen_content" | "emote_wheel_screen_content/top_padding" | "emote_wheel_screen_content/root_panel" | "emote_wheel_screen_content/root_panel/emotes_panel" | "emote_wheel_screen_content/instruction_padding" | "emote_wheel_screen_content/instruction_panel" | "emote_wheel_screen_content/instruction_panel/instruction_background" | "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack" | "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/instruction_label_gamepad" | "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers" | "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack" | "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_start" | "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel" | "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel/gamepad_exit" | "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_keyboard" | "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_touch" | "emote_wheel_screen_content/dressing_room_button_panel" | "emote_wheel_screen_content/dressing_room_button_panel/dressing_room_button" | "emote_wheel_screen_content/bottom_padding" | "swap_emote_button"; +export type Enchanting = "enchanting_image" | "lapis_image" | "dust_image" | "dust_image_selectable" | "dust_image_unselectable" | "dust_template" | "dust_template/dust_image_selectable" | "dust_template/dust_image_unselectable" | "dust_panel" | "dust_panel/a" | "dust_panel/b" | "dust_panel/c" | "background_with_hover_text" | "background_with_hover_text/hover_text" | "dark_background" | "dark_background_with_hover_text" | "active_background" | "active_background_with_hover_text" | "enchant_runes" | "enchant_cost" | "success_runes" | "fail_runes" | "success_cost" | "fail_cost" | "enchanting_label" | "base_button" | "unselectable_button" | "unselectable_button/default" | "unselectable_button/hover" | "unselectable_button/pressed" | "unselectable_button/rune_text" | "unselectable_button/enchant_cost" | "selectable_button" | "selectable_button/default" | "selectable_button/hover" | "selectable_button/pressed" | "selectable_button/rune_text" | "selectable_button/enchant_cost" | "enchant_button_panel" | "enchant_button_panel/dark_background" | "enchant_button_panel/unselectable_button" | "enchant_button_panel/selectable_button" | "enchanting_panel_top_half" | "enchanting_panel_top_half/enchanting_label" | "enchanting_panel_top_half/enchanting_book_panel" | "enchanting_panel_top_half/enchanting_book_panel/enchanting_book" | "enchanting_panel_top_half/item_grid" | "enchanting_panel_top_half/item_grid/item_slot" | "enchanting_panel_top_half/lapis_grid" | "enchanting_panel_top_half/lapis_grid/lapis" | "enchanting_panel_top_half/grid_panel" | "enchanting_panel_top_half/grid_panel/indent" | "enchanting_panel_top_half/grid_panel/dust_panel" | "enchanting_panel_top_half/grid_panel/enchantments_grid" | "enchanting_panel" | "enchanting_panel/container_gamepad_helpers" | "enchanting_panel/selected_item_details_factory" | "enchanting_panel/item_lock_notification_factory" | "enchanting_panel/root_panel" | "enchanting_panel/root_panel/common_panel" | "enchanting_panel/root_panel/enchanting_screen_inventory" | "enchanting_panel/root_panel/enchanting_screen_inventory/enchanting_panel_top_half" | "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_panel_bottom_half_with_label" | "enchanting_panel/root_panel/enchanting_screen_inventory/hotbar_grid" | "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_take_progress_icon_button" | "enchanting_panel/root_panel/inventory_selected_icon_button" | "enchanting_panel/root_panel/gamepad_cursor" | "enchanting_panel/flying_item_renderer" | "enchanting_screen"; +export type EnchantingPocket = "generic_label" | "background_image" | "inventory_grid" | "inventory_content" | "inventory_content/scrolling_panel" | "lapis_image" | "enchanting_slots_panel" | "enchanting_slots_panel/input_slot" | "enchanting_slots_panel/lapis_slot" | "enchant_text_runes" | "show_highlighted_slot_control" | "show_highlighted_hover_slot_control" | "inactive_background" | "unselectable_button" | "unselectable_button/default" | "unselectable_button/hover" | "unselectable_button/pressed" | "unselectable_button/enchant_cost" | "selectable_button" | "selectable_button/default" | "selectable_button/hover" | "selectable_button/pressed" | "selectable_button/enchant_cost" | "enchant_button_panel" | "enchant_button_panel/inactive_background" | "enchant_button_panel/unselectable_button" | "enchant_button_panel/selectable_button" | "enchant_button_panel/dust" | "enchant_button_panel/rune_text" | "enchant_button_panel/highlight" | "enchant_selection_panel" | "enchant_selection_panel/grid" | "enchant_selection_panel/grid/button1" | "enchant_selection_panel/grid/button2" | "enchant_selection_panel/grid/button3" | "item_renderer" | "confirm_default_control" | "enchanting_confirm_button" | "enchanting_confirm_button/default" | "enchanting_confirm_button/hover" | "enchanting_confirm_button/pressed" | "enchanting_confirm_button/arrow_active" | "enchanting_confirm_button/arrow_inactive" | "enchanting_confirm_button/input_item_renderer" | "enchanting_confirm_button/output_item_renderer" | "enchanting_confirm_panel" | "enchanting_confirm_panel/confirm" | "enchanting_confirm_panel/enchantment_hint_text" | "enchanting_book_contents_panel" | "enchanting_book_contents_panel/enchanting_book" | "enchanting_book_contents_panel/player_level_label" | "enchanting_book_contents_panel/level_label" | "enchanting_book_panel" | "enchanting_book_panel/enchanting_slots_panel" | "enchanting_slots_and_selection" | "enchanting_slots_and_selection/enchanting_slots_panel" | "enchanting_slots_and_selection/pad1" | "enchanting_slots_and_selection/enchant_selection_panel" | "enchanting_contents_panel" | "enchanting_contents_panel/fill1" | "enchanting_contents_panel/enchanting_book_panel" | "enchanting_contents_panel/pad1" | "enchanting_contents_panel/enchanting_slots_and_selection" | "enchanting_contents_panel/pad2" | "enchanting_contents_panel/enchanting_confirm_panel" | "enchanting_contents_panel/fill2" | "header" | "header/header_background" | "header/legacy_pocket_close_button" | "header/panel" | "header/panel/title_label" | "inventory_and_enchanting_panel" | "inventory_and_enchanting_panel/inventory_half_screen" | "inventory_and_enchanting_panel/inventory_half_screen/inventory_content" | "inventory_and_enchanting_panel/enchanting_half_screen" | "inventory_and_enchanting_panel/enchanting_half_screen/enchanting_content" | "header_and_content_stack_panel" | "header_and_content_stack_panel/header" | "header_and_content_stack_panel/inventory_and_enchanting_panel" | "error_text_panel" | "error_text_panel/item_text_label" | "enchanting_panel" | "enchanting_panel/bg" | "enchanting_panel/root_panel" | "enchanting_panel/header_and_content_stack_panel" | "enchanting_panel/container_gamepad_helpers" | "enchanting_panel/inventory_selected_icon_button" | "enchanting_panel/hold_icon" | "enchanting_panel/selected_item_details_factory" | "enchanting_panel/item_lock_notification_factory" | "enchanting_panel/flying_item_renderer"; +export type Encyclopedia = "encyclopedia_screen" | "encyclopedia_selector_stack_panel" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/overworld_category" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_stand_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/banners_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beacons_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beds_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/blocks_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/book_and_quill_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/chests_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/conduits_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dyes_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/farming_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fireworks_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fishing_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jigsaw_blocks_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mounts_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/navigation_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/nether_portals_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/pets_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/raids_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/ranching_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/scaffolding_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/structure_blocks_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/tools_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/transportation_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/trading_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/weapons_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/stands_and_tables_category" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/anvil_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/brewing_stand_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/cauldron_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/crafting_table_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/enchanting_table_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/furnace_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/loom_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/smithing_table_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_engineering_category" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/droppers_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dispensers_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/hoppers_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jukebox_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_dimension_category" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/eye_of_ender_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/end_cities_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/elytra_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/shulker_boxes_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/options_and_cheats_category" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/game_settings_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/difficulty_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/adventure_mode_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/creative_mode_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/commands_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/host_and_player_options_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/command_blocks_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_category" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_stories_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/marketplace_category" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/minecoins_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/addons_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/worlds_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/textures_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/skins_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mashups_button" | "encyclopedia_section_content_panels" | "encyclopedia_section_content_panels/general_tips_sections" | "encyclopedia_section_content_panels/general_tips_sections/section_contents_header" | "encyclopedia_section_content_panels/general_tips_sections/armor_section" | "encyclopedia_section_content_panels/general_tips_sections/armor_stand_section" | "encyclopedia_section_content_panels/general_tips_sections/banners_section" | "encyclopedia_section_content_panels/general_tips_sections/beacons_section" | "encyclopedia_section_content_panels/general_tips_sections/beds_section" | "encyclopedia_section_content_panels/general_tips_sections/blocks_section" | "encyclopedia_section_content_panels/general_tips_sections/book_and_quill_section" | "encyclopedia_section_content_panels/general_tips_sections/chests_section" | "encyclopedia_section_content_panels/general_tips_sections/conduits_section" | "encyclopedia_section_content_panels/general_tips_sections/dyes_section" | "encyclopedia_section_content_panels/general_tips_sections/farming_section" | "encyclopedia_section_content_panels/general_tips_sections/fireworks_section" | "encyclopedia_section_content_panels/general_tips_sections/fishing_section" | "encyclopedia_section_content_panels/general_tips_sections/jigsaw" | "encyclopedia_section_content_panels/general_tips_sections/mounts_section" | "encyclopedia_section_content_panels/general_tips_sections/navigation_section" | "encyclopedia_section_content_panels/general_tips_sections/nether_portals_section" | "encyclopedia_section_content_panels/general_tips_sections/pets_section" | "encyclopedia_section_content_panels/general_tips_sections/raids_section" | "encyclopedia_section_content_panels/general_tips_sections/ranching_section" | "encyclopedia_section_content_panels/general_tips_sections/scaffolding_section" | "encyclopedia_section_content_panels/general_tips_sections/structure_blocks_section" | "encyclopedia_section_content_panels/general_tips_sections/tools_section" | "encyclopedia_section_content_panels/general_tips_sections/transportation_section" | "encyclopedia_section_content_panels/general_tips_sections/trading_section" | "encyclopedia_section_content_panels/general_tips_sections/weapons_section" | "encyclopedia_section_content_panels/general_tips_sections/anvil_section" | "encyclopedia_section_content_panels/general_tips_sections/brewing_stand_section" | "encyclopedia_section_content_panels/general_tips_sections/cauldron_section" | "encyclopedia_section_content_panels/general_tips_sections/crafting_table_section" | "encyclopedia_section_content_panels/general_tips_sections/enchanting_table_section" | "encyclopedia_section_content_panels/general_tips_sections/furnace_section" | "encyclopedia_section_content_panels/general_tips_sections/loom_section" | "encyclopedia_section_content_panels/general_tips_sections/smithing_table_section" | "encyclopedia_section_content_panels/general_tips_sections/droppers_section" | "encyclopedia_section_content_panels/general_tips_sections/dispensers_section" | "encyclopedia_section_content_panels/general_tips_sections/hoppers_section" | "encyclopedia_section_content_panels/general_tips_sections/jukebox_section" | "encyclopedia_section_content_panels/general_tips_sections/redstone_section" | "encyclopedia_section_content_panels/general_tips_sections/the_end_section" | "encyclopedia_section_content_panels/general_tips_sections/eye_of_ender_section" | "encyclopedia_section_content_panels/general_tips_sections/end_cities_section" | "encyclopedia_section_content_panels/general_tips_sections/elytra_section" | "encyclopedia_section_content_panels/general_tips_sections/shulker_boxes_section" | "encyclopedia_section_content_panels/general_tips_sections/game_settings_section" | "encyclopedia_section_content_panels/general_tips_sections/difficulty_section" | "encyclopedia_section_content_panels/general_tips_sections/adventure_mode_section" | "encyclopedia_section_content_panels/general_tips_sections/creative_mode_section" | "encyclopedia_section_content_panels/general_tips_sections/commands_section" | "encyclopedia_section_content_panels/general_tips_sections/host_and_player_options_section" | "encyclopedia_section_content_panels/general_tips_sections/command_blocks_section" | "encyclopedia_section_content_panels/general_tips_sections/realms_stories_section" | "encyclopedia_section_content_panels/general_tips_sections/minecoins_section" | "encyclopedia_section_content_panels/general_tips_sections/addons_section" | "encyclopedia_section_content_panels/general_tips_sections/worlds_section" | "encyclopedia_section_content_panels/general_tips_sections/textures_section" | "encyclopedia_section_content_panels/general_tips_sections/skins_section" | "encyclopedia_section_content_panels/general_tips_sections/mashups_section" | "encyclopedia_section_content_panels/general_tips_sections/section_contents_footer" | "adventure_mode_button" | "adventure_mode_section" | "adventure_mode_section/paragraph_1" | "adventure_mode_section/padding_1" | "adventure_mode_section/paragraph_2" | "anvil_button" | "anvil_section" | "anvil_section/paragraph_1" | "anvil_section/padding_1" | "anvil_section/header_1" | "anvil_section/paragraph_2" | "anvil_section/padding_2" | "anvil_section/header_2" | "anvil_section/paragraph_3" | "anvil_section/padding_3" | "anvil_section/paragraph_4" | "anvil_section/padding_4" | "anvil_section/paragraph_5" | "armor_button" | "armor_section" | "armor_section/paragraph_1" | "armor_section/padding_1" | "armor_section/header_1" | "armor_section/paragraph_2" | "armor_section/padding_2" | "armor_section/paragraph_3" | "armor_section/padding_3" | "armor_section/paragraph_4" | "armor_section/padding_4" | "armor_section/header_2" | "armor_section/paragraph_5_keyboard" | "armor_section/paragraph_5_gamepad" | "armor_section/paragraph_5a_touch" | "armor_section/padding_5a_touch" | "armor_section/paragraph_5b_touch" | "armor_section/padding_5b_touch" | "armor_section/paragraph_5c_touch" | "armor_section/padding_5" | "armor_section/paragraph_6" | "armor_section/padding_6" | "armor_section/header_3" | "armor_section/paragraph_7" | "armor_stand_button" | "armor_stand_section" | "armor_stand_section/paragraph_1" | "armor_stand_section/padding_1" | "armor_stand_section/header_1" | "armor_stand_section/paragraph_2_keyboard" | "armor_stand_section/paragraph_2_gamepad" | "armor_stand_section/paragraph_2_touch" | "armor_stand_section/padding_2" | "armor_stand_section/paragraph_3_keyboard" | "armor_stand_section/paragraph_3_gamepad" | "armor_stand_section/paragraph_3_touch" | "armor_stand_section/padding_3" | "armor_stand_section/header_2" | "armor_stand_section/paragraph_4_keyboard" | "armor_stand_section/paragraph_4_gamepad" | "armor_stand_section/paragraph_4_touch" | "armor_stand_section/padding_4" | "armor_stand_section/header_3" | "armor_stand_section/paragraph_5" | "banners_button" | "banners_section" | "banners_section/paragraph_1" | "banners_section/padding_1" | "banners_section/paragraph_2" | "banners_section/padding_2" | "banners_section/header_1" | "banners_section/paragraph_3" | "banners_section/padding_3" | "banners_section/paragraph_4" | "banners_section/padding_4" | "banners_section/paragraph_5" | "banners_section/padding_5" | "banners_section/paragraph_6" | "banners_section/padding_6" | "banners_section/paragraph_7" | "banners_section/padding_7" | "banners_section/header_2" | "banners_section/paragraph_8" | "banners_section/padding_8" | "banners_section/header_3" | "banners_section/paragraph_9" | "beacons_button" | "beacons_section" | "beacons_section/paragraph_1" | "beacons_section/padding_1" | "beacons_section/paragraph_2" | "beacons_section/padding_2" | "beacons_section/header_1" | "beacons_section/paragraph_3" | "beacons_section/padding_3" | "beacons_section/paragraph_4" | "beacons_section/padding_4" | "beacons_section/header_2" | "beacons_section/paragraph_5" | "beacons_section/padding_5" | "beacons_section/paragraph_6" | "beacons_section/padding_6" | "beacons_section/paragraph_7" | "beacons_section/padding_7" | "beacons_section/paragraph_8" | "conduits_button" | "conduits_section" | "conduits_section/paragraph_1" | "conduits_section/padding_1" | "conduits_section/paragraph_2" | "conduits_section/padding_2" | "conduits_section/header_1" | "conduits_section/paragraph_3" | "conduits_section/padding_3" | "conduits_section/paragraph_4" | "beds_button" | "beds_section" | "beds_section/paragraph_1" | "beds_section/padding_1" | "beds_section/paragraph_2_keyboard" | "beds_section/paragraph_2_gamepad" | "beds_section/paragraph_2_touch" | "beds_section/padding_2" | "beds_section/paragraph_3" | "beds_section/padding_3" | "beds_section/paragraph_4" | "beds_section/padding_4" | "beds_section/paragraph_5" | "blocks_button" | "blocks_section" | "blocks_section/paragraph_1" | "blocks_section/padding_1" | "blocks_section/paragraph_2" | "blocks_section/padding_2" | "blocks_section/header_1" | "blocks_section/paragraph_3" | "blocks_section/padding_3" | "blocks_section/header_2" | "blocks_section/paragraph_4" | "blocks_section/padding_4" | "blocks_section/paragraph_5" | "blocks_section/padding_5" | "blocks_section/paragraph_6" | "blocks_section/padding_6" | "blocks_section/paragraph_7" | "blocks_section/padding_7" | "blocks_section/paragraph_8" | "blocks_section/padding_8" | "blocks_section/paragraph_9" | "book_and_quill_button" | "book_and_quill_section" | "book_and_quill_section/paragraph_1" | "brewing_stand_button" | "brewing_stand_section" | "brewing_stand_section/paragraph_1" | "brewing_stand_section/padding_1" | "brewing_stand_section/header_1" | "brewing_stand_section/paragraph_2" | "brewing_stand_section/padding_2" | "brewing_stand_section/header_2" | "brewing_stand_section/paragraph_3" | "brewing_stand_section/padding_3" | "brewing_stand_section/paragraph_4" | "cauldron_button" | "cauldron_section" | "cauldron_section/paragraph_1" | "cauldron_section/padding_1" | "cauldron_section/header_1" | "cauldron_section/paragraph_2_keyboard" | "cauldron_section/paragraph_2_gamepad" | "cauldron_section/paragraph_2_touch" | "cauldron_section/padding_2" | "cauldron_section/paragraph_3" | "cauldron_section/padding_3" | "cauldron_section/header_2" | "cauldron_section/paragraph_4_keyboard" | "cauldron_section/paragraph_4_gamepad" | "cauldron_section/paragraph_4_touch" | "cauldron_section/padding_4" | "cauldron_section/header_3" | "cauldron_section/paragraph_5_keyboard" | "cauldron_section/paragraph_5_gamepad" | "cauldron_section/paragraph_5_touch" | "cauldron_section/padding_5" | "cauldron_section/paragraph_6" | "chests_button" | "chests_section" | "chests_section/paragraph_1_keyboard" | "chests_section/paragraph_1_gamepad" | "chests_section/paragraph_1_touch" | "chests_section/padding_1" | "chests_section/paragraph_2" | "chests_section/padding_2" | "chests_section/paragraph_3" | "command_blocks_button" | "command_blocks_section" | "command_blocks_section/paragraph_1" | "command_blocks_section/padding_1" | "command_blocks_section/paragraph_2" | "command_blocks_section/padding_2" | "command_blocks_section/paragraph_3" | "command_blocks_section/padding_3" | "command_blocks_section/paragraph_4" | "command_blocks_section/padding_4" | "command_blocks_section/paragraph_5" | "command_blocks_section/paragraph_5_1" | "command_blocks_section/paragraph_5_2" | "command_blocks_section/paragraph_5_3" | "command_blocks_section/padding_5" | "command_blocks_section/paragraph_6" | "command_blocks_section/paragraph_6_1" | "command_blocks_section/paragraph_6_2" | "command_blocks_section/padding_6" | "command_blocks_section/paragraph_7" | "command_blocks_section/paragraph_7_1" | "command_blocks_section/paragraph_7_2" | "command_blocks_section/padding_7" | "command_blocks_section/paragraph_8" | "commands_button" | "commands_section" | "commands_section/paragraph_1" | "commands_section/padding_1" | "commands_section/paragraph_2" | "crafting_table_button" | "crafting_table_section" | "crafting_table_section/paragraph_1" | "crafting_table_section/padding_1" | "crafting_table_section/paragraph_2_keyboard" | "crafting_table_section/paragraph_2_gamepad" | "crafting_table_section/paragraph_2_touch" | "creative_mode_button" | "creative_mode_section" | "creative_mode_section/paragraph_1" | "creative_mode_section/padding_1" | "creative_mode_section/header_1" | "creative_mode_section/paragraph_2" | "creative_mode_section/padding_2" | "creative_mode_section/paragraph_3" | "creative_mode_section/padding_3" | "creative_mode_section/header_2" | "creative_mode_section/paragraph_4_keyboard" | "creative_mode_section/paragraph_4_gamepad" | "creative_mode_section/paragraph_4a_touch_joystick_tap" | "creative_mode_section/paragraph_4a_touch_classic_dpad" | "creative_mode_section/paragraph_4a_touch_joystick_crosshair" | "creative_mode_section/padding_4a_touch" | "creative_mode_section/paragraph_4b_touch_joystick_tap" | "creative_mode_section/paragraph_4b_touch_classic_dpad" | "creative_mode_section/paragraph_4b_touch_joystick_crosshair" | "difficulty_button" | "difficulty_section" | "difficulty_section/paragraph_1" | "difficulty_section/padding_1" | "difficulty_section/header_1" | "difficulty_section/paragraph_2" | "difficulty_section/padding_2" | "difficulty_section/header_2" | "difficulty_section/paragraph_3" | "difficulty_section/padding_3" | "difficulty_section/header_3" | "difficulty_section/paragraph_4" | "difficulty_section/padding_4" | "difficulty_section/header_4" | "difficulty_section/paragraph_5" | "dispensers_button" | "dispensers_section" | "dispensers_section/paragraph_1" | "dispensers_section/padding_1" | "dispensers_section/paragraph_2_keyboard" | "dispensers_section/paragraph_2_gamepad" | "dispensers_section/paragraph_2_touch" | "dispensers_section/padding_2" | "dispensers_section/header_1" | "dispensers_section/paragraph_3" | "dispensers_section/padding_3" | "dispensers_section/paragraph_4" | "droppers_button" | "droppers_section" | "droppers_section/paragraph_1_keyboard" | "droppers_section/paragraph_1_gamepad" | "droppers_section/paragraph_1_touch" | "droppers_section/padding_1" | "droppers_section/header_1" | "droppers_section/paragraph_2" | "dyes_button" | "dyes_section" | "dyes_section/paragraph_1" | "dyes_section/padding_1" | "dyes_section/paragraph_2" | "dyes_section/padding_2" | "dyes_section/paragraph_3" | "dyes_section/padding_3" | "dyes_section/paragraph_4" | "dyes_section/padding_4" | "dyes_section/paragraph_5" | "dyes_section/padding_5" | "dyes_section/paragraph_6" | "dyes_section/padding_6" | "dyes_section/paragraph_7" | "elytra_button" | "elytra_section" | "elytra_section/paragraph_1" | "elytra_section/padding_1" | "elytra_section/paragraph_2" | "elytra_section/padding_2" | "elytra_section/header_1" | "elytra_section/paragraph_3_keyboard" | "elytra_section/paragraph_3_gamepad" | "elytra_section/paragraph_3_touch" | "elytra_section/padding_3" | "elytra_section/paragraph_4" | "elytra_section/paragraph_4_touch" | "elytra_section/padding_4" | "elytra_section/paragraph_5" | "elytra_section/padding_5" | "elytra_section/header_2" | "elytra_section/paragraph_6" | "enchanting_table_button" | "enchanting_table_section" | "enchanting_table_section/paragraph_1" | "enchanting_table_section/padding_1" | "enchanting_table_section/header_1" | "enchanting_table_section/paragraph_2" | "enchanting_table_section/padding_2" | "enchanting_table_section/paragraph_3" | "enchanting_table_section/padding_3" | "enchanting_table_section/header_2" | "enchanting_table_section/paragraph_4" | "enchanting_table_section/padding_4" | "enchanting_table_section/header_3" | "enchanting_table_section/paragraph_5" | "end_cities_button" | "end_cities_section" | "end_cities_section/paragraph_1" | "end_cities_section/padding_1" | "end_cities_section/paragraph_2" | "eye_of_ender_button" | "eye_of_ender_section" | "eye_of_ender_section/paragraph_1" | "eye_of_ender_section/padding_1" | "eye_of_ender_section/paragraph_2" | "farming_button" | "farming_section" | "farming_section/paragraph_1" | "farming_section/padding_1" | "farming_section/header_1" | "farming_section/paragraph_2" | "farming_section/padding_2" | "farming_section/paragraph_3" | "farming_section/padding_3" | "farming_section/header_2" | "farming_section/paragraph_4" | "farming_section/padding_4" | "farming_section/paragraph_5" | "farming_section/padding_5" | "farming_section/paragraph_6" | "farming_section/padding_6" | "farming_section/paragraph_7" | "fireworks_button" | "fireworks_section" | "fireworks_section/paragraph_1" | "fireworks_section/padding_1" | "fireworks_section/paragraph_2" | "fireworks_section/padding_2" | "fireworks_section/header_1" | "fireworks_section/paragraph_3_keyboard" | "fireworks_section/paragraph_3_gamepad" | "fireworks_section/paragraph_3_touch" | "fireworks_section/padding_3" | "fireworks_section/paragraph_4" | "fireworks_section/padding_4" | "fireworks_section/header_2" | "fireworks_section/paragraph_5" | "fireworks_section/padding_5" | "fireworks_section/paragraph_6" | "fireworks_section/padding_5a" | "fireworks_section/paragraph_6_1" | "fireworks_section/padding_5b" | "fireworks_section/paragraph_6_2" | "fireworks_section/padding_5c" | "fireworks_section/paragraph_6_3" | "fireworks_section/padding_5d" | "fireworks_section/paragraph_6_4" | "fireworks_section/padding_5e" | "fireworks_section/paragraph_6_5" | "fireworks_section/padding_5f" | "fireworks_section/paragraph_6_6" | "fireworks_section/padding_6" | "fireworks_section/header_3" | "fireworks_section/paragraph_7" | "jigsaw_blocks_button" | "jigsaw_blocks_section" | "jigsaw_blocks_section/paragraph_1" | "jigsaw_blocks_section/padding_1" | "jigsaw_blocks_section/header_1" | "jigsaw_blocks_section/paragraph_2" | "jigsaw_blocks_section/padding_2" | "jigsaw_blocks_section/header_2" | "jigsaw_blocks_section/paragraph_3" | "jigsaw_blocks_section/padding_3" | "jigsaw_blocks_section/paragraph_4" | "jigsaw_blocks_section/padding_4" | "jigsaw_blocks_section/paragraph_5" | "jigsaw_blocks_section/padding_5" | "jigsaw_blocks_section/paragraph_6" | "jigsaw_blocks_section/padding_6" | "jigsaw_blocks_section/paragraph_7" | "jigsaw_blocks_section/padding_7" | "jigsaw_blocks_section/paragraph_8" | "jigsaw_blocks_section/padding_8" | "jigsaw_blocks_section/paragraph_9" | "fishing_button" | "fishing_section" | "fishing_section/paragraph_1" | "fishing_section/padding_1" | "fishing_section/header_1" | "fishing_section/paragraph_2_keyboard" | "fishing_section/paragraph_2_gamepad" | "fishing_section/paragraph_2_touch" | "fishing_section/padding_2" | "fishing_section/header_2" | "fishing_section/paragraph_3" | "fishing_section/padding_3" | "fishing_section/paragraph_4_keyboard" | "fishing_section/paragraph_4_gamepad" | "fishing_section/paragraph_4_touch" | "furnace_button" | "furnace_section" | "furnace_section/paragraph_1" | "furnace_section/padding_1" | "furnace_section/paragraph_2_keyboard" | "furnace_section/paragraph_2_gamepad" | "furnace_section/paragraph_2_touch" | "furnace_section/padding_2" | "furnace_section/paragraph_3" | "game_settings_button" | "game_settings_section" | "game_settings_section/paragraph_1" | "game_settings_section/padding_1" | "game_settings_section/paragraph_2" | "game_settings_section/padding_2" | "game_settings_section/paragraph_3" | "game_settings_section/padding_3" | "game_settings_section/paragraph_4" | "game_settings_section/padding_4" | "game_settings_section/header_1" | "game_settings_section/paragraph_5" | "game_settings_section/padding_5" | "game_settings_section/paragraph_6" | "game_settings_section/padding_6" | "game_settings_section/paragraph_7" | "game_settings_section/paragraph_7_1" | "game_settings_section/paragraph_7_2" | "game_settings_section/padding_7" | "game_settings_section/paragraph_8" | "game_settings_section/padding_8" | "game_settings_section/header_2" | "game_settings_section/paragraph_9" | "game_settings_section/padding_9" | "game_settings_section/paragraph_10" | "game_settings_section/padding_10" | "game_settings_section/paragraph_11" | "game_settings_section/padding_11" | "game_settings_section/paragraph_12" | "game_settings_section/padding_12" | "game_settings_section/paragraph_13" | "game_settings_section/padding_13" | "game_settings_section/paragraph_14" | "game_settings_section/padding_14" | "game_settings_section/paragraph_15" | "game_settings_section/padding_15" | "game_settings_section/paragraph_16" | "game_settings_section/padding_16" | "game_settings_section/paragraph_17" | "hoppers_button" | "hoppers_section" | "hoppers_section/paragraph_1" | "hoppers_section/padding_1" | "hoppers_section/paragraph_2" | "hoppers_section/padding_2" | "hoppers_section/header_1" | "hoppers_section/paragraph_3" | "hoppers_section/padding_3" | "hoppers_section/paragraph_4" | "host_and_player_options_button" | "host_and_player_options_section" | "host_and_player_options_section/paragraph_1_not_touch" | "host_and_player_options_section/paragraph_1_touch" | "jukebox_button" | "jukebox_section" | "jukebox_section/paragraph_1" | "jukebox_section/padding_1" | "jukebox_section/header_1" | "jukebox_section/paragraph_2_not_touch" | "jukebox_section/paragraph_2_touch" | "jukebox_section/padding_2" | "jukebox_section/header_2" | "jukebox_section/paragraph_3" | "jukebox_section/padding_3" | "jukebox_section/paragraph_4" | "jukebox_section/padding_4" | "jukebox_section/paragraph_5" | "jukebox_section/padding_5" | "jukebox_section/paragraph_6" | "jukebox_section/padding_6" | "jukebox_section/header_3" | "jukebox_section/paragraph_7" | "jukebox_section/padding_7" | "jukebox_section/paragraph_8" | "loom_button" | "loom_section" | "loom_section/paragraph_1" | "loom_section/padding_1" | "loom_section/header_1" | "loom_section/paragraph_2" | "loom_section/padding_2" | "loom_section/paragraph_3" | "loom_section/padding_3" | "loom_section/header_2" | "loom_section/paragraph_4" | "realms_stories_button" | "realms_stories_section" | "realms_stories_section/paragraph_1" | "realms_stories_section/padding_1" | "realms_stories_section/header_1" | "realms_stories_section/paragraph_2" | "realms_stories_section/padding_2" | "realms_stories_section/header_2" | "realms_stories_section/paragraph_3" | "realms_stories_section/padding_3" | "realms_stories_section/header_3" | "realms_stories_section/paragraph_4" | "realms_stories_section/padding_4" | "realms_stories_section/header_4" | "realms_stories_section/paragraph_5" | "realms_stories_section/padding_5" | "realms_stories_section/header_5" | "realms_stories_section/paragraph_6" | "smithing_table_button" | "smithing_table_section" | "smithing_table_section/paragraph_1" | "smithing_table_section/padding_1" | "smithing_table_section/paragraph_2" | "smithing_table_section/padding_2" | "smithing_table_section/header_1" | "smithing_table_section/paragraph_3" | "smithing_table_section/padding_3" | "smithing_table_section/paragraph_4" | "smithing_table_section/padding_4" | "smithing_table_section/paragraph_5" | "smithing_table_section/padding_5" | "smithing_table_section/paragraph_6" | "smithing_table_section/padding_6" | "smithing_table_section/header_2" | "smithing_table_section/paragraph_7" | "smithing_table_section/padding_7" | "smithing_table_section/paragraph_8" | "smithing_table_section/padding_8" | "smithing_table_section/paragraph_9" | "mounts_button" | "mounts_section" | "mounts_section/paragraph_1" | "mounts_section/padding_1" | "mounts_section/paragraph_2" | "mounts_section/padding_2" | "mounts_section/header_1" | "mounts_section/paragraph_3_not_touch" | "mounts_section/paragraph_3_touch" | "mounts_section/padding_3" | "mounts_section/paragraph_4" | "mounts_section/padding_4" | "mounts_section/header_2" | "mounts_section/paragraph_5" | "mounts_section/padding_5" | "mounts_section/paragraph_6" | "mounts_section/padding_6" | "mounts_section/paragraph_6b" | "mounts_section/padding_6b" | "mounts_section/paragraph_7" | "mounts_section/padding_7" | "mounts_section/paragraph_8" | "mounts_section/padding_8" | "mounts_section/header_3" | "mounts_section/paragraph_9" | "mounts_section/padding_9" | "mounts_section/paragraph_10" | "mounts_section/padding_10" | "mounts_section/paragraph_11" | "mounts_section/padding_11" | "mounts_section/paragraph_12" | "mounts_section/padding_12" | "mounts_section/header_4" | "mounts_section/paragraph_13" | "mounts_section/padding_13" | "mounts_section/paragraph_14" | "mounts_section/padding_14" | "mounts_section/header_5" | "mounts_section/paragraph_15_not_touch" | "mounts_section/paragraph_15a_touch" | "mounts_section/padding_15" | "mounts_section/paragraph_15b_touch" | "navigation_button" | "navigation_section" | "navigation_section/paragraph_1" | "navigation_section/padding_1" | "navigation_section/paragraph_2" | "navigation_section/padding_2" | "navigation_section/header_1" | "navigation_section/paragraph_3" | "navigation_section/padding_3" | "navigation_section/paragraph_4" | "navigation_section/padding_4" | "navigation_section/paragraph_5" | "navigation_section/padding_5" | "navigation_section/paragraph_6" | "navigation_section/padding_6" | "navigation_section/paragraph_7" | "navigation_section/padding_7" | "navigation_section/header_2" | "navigation_section/paragraph_8" | "navigation_section/padding_8" | "navigation_section/paragraph_9" | "navigation_section/padding_9" | "navigation_section/header_3" | "navigation_section/paragraph_10" | "nether_portals_button" | "nether_portals_section" | "nether_portals_section/paragraph_1" | "nether_portals_section/padding_1" | "nether_portals_section/paragraph_2" | "nether_portals_section/padding_2" | "nether_portals_section/paragraph_3" | "nether_portals_section/padding_3" | "nether_portals_section/image_1" | "pets_button" | "pets_section" | "pets_section/header_1" | "pets_section/paragraph_1_not_touch" | "pets_section/paragraph_1_touch" | "pets_section/padding_1" | "pets_section/header_2" | "pets_section/paragraph_2" | "pets_section/padding_2" | "pets_section/header_3" | "pets_section/paragraph_3" | "pets_section/padding_3" | "pets_section/header_4" | "pets_section/paragraph_4" | "raids_button" | "raids_section" | "raids_section/paragraph_1" | "raids_section/padding_1" | "raids_section/paragraph_2" | "raids_section/padding_2" | "raids_section/header_1" | "raids_section/paragraph_3" | "ranching_button" | "ranching_section" | "ranching_section/paragraph_1" | "ranching_section/padding_1" | "ranching_section/header_1" | "ranching_section/paragraph_2" | "ranching_section/padding_2" | "ranching_section/paragraph_3" | "ranching_section/padding_3" | "ranching_section/header_2" | "ranching_section/paragraph_4" | "ranching_section/padding_4" | "ranching_section/paragraph_5" | "redstone_button" | "redstone_section" | "redstone_section/paragraph_1" | "redstone_section/padding_1" | "redstone_section/header_1" | "redstone_section/paragraph_2" | "redstone_section/padding_2" | "redstone_section/paragraph_3" | "redstone_section/padding_3" | "redstone_section/paragraph_4" | "redstone_section/padding_4" | "redstone_section/paragraph_5" | "scaffolding_button" | "scaffolding_section" | "scaffolding_section/header_1" | "scaffolding_section/paragraph_1_keyboard" | "scaffolding_section/paragraph_1_gamepad" | "scaffolding_section/paragraph_1a_touch" | "scaffolding_section/padding_1a_touch" | "scaffolding_section/paragraph_1b_touch" | "scaffolding_section/padding_1b_touch" | "scaffolding_section/paragraph_1c_touch" | "scaffolding_section/padding_1" | "scaffolding_section/header_2" | "scaffolding_section/paragraph_2" | "scaffolding_section/image_1" | "scaffolding_section/padding_2" | "scaffolding_section/header_3" | "scaffolding_section/paragraph_3" | "scaffolding_section/padding_3" | "structure_blocks_button" | "structure_blocks_section" | "structure_blocks_section/paragraph_1" | "structure_blocks_section/padding_1" | "structure_blocks_section/header_1" | "structure_blocks_section/paragraph_2" | "structure_blocks_section/padding_2" | "structure_blocks_section/header_2" | "structure_blocks_section/paragraph_3" | "structure_blocks_section/padding_3" | "structure_blocks_section/paragraph_4" | "structure_blocks_section/padding_4" | "structure_blocks_section/paragraph_5" | "structure_blocks_section/padding_5" | "structure_blocks_section/paragraph_6" | "structure_blocks_section/padding_6" | "structure_blocks_section/paragraph_7" | "structure_blocks_section/padding_7" | "structure_blocks_section/header_3" | "structure_blocks_section/paragraph_8" | "structure_blocks_section/padding_8" | "structure_blocks_section/paragraph_9_keyboard" | "structure_blocks_section/paragraph_9_gamepad" | "structure_blocks_section/paragraph_9_touch" | "structure_blocks_section/padding_9" | "structure_blocks_section/header_4" | "structure_blocks_section/paragraph_10" | "structure_blocks_section/padding_10" | "structure_blocks_section/header_5" | "structure_blocks_section/paragraph_11" | "structure_blocks_section/padding_11" | "structure_blocks_section/paragraph_12" | "structure_blocks_section/padding_12" | "structure_blocks_section/paragraph_13" | "structure_blocks_section/padding_13" | "structure_blocks_section/header_6" | "structure_blocks_section/paragraph_14" | "structure_blocks_section/padding_14" | "structure_blocks_section/paragraph_15" | "structure_blocks_section/padding_15" | "structure_blocks_section/header_7" | "structure_blocks_section/paragraph_16" | "structure_blocks_section/padding_16" | "structure_blocks_section/paragraph_17" | "shulker_boxes_button" | "shulker_boxes_section" | "shulker_boxes_section/paragraph_1" | "the_end_button" | "the_end_section" | "the_end_section/paragraph_1" | "the_end_section/padding_1" | "the_end_section/paragraph_2" | "the_end_section/padding_2" | "the_end_section/header_1" | "the_end_section/paragraph_3" | "the_end_section/padding_3" | "the_end_section/paragraph_4" | "the_end_section/padding_4" | "the_end_section/paragraph_5" | "tools_button" | "tools_section" | "tools_section/paragraph_1" | "tools_section/padding_1" | "tools_section/paragraph_2" | "tools_section/padding_2" | "tools_section/header_1" | "tools_section/paragraph_3" | "tools_section/padding_3" | "tools_section/paragraph_4" | "tools_section/padding_4" | "tools_section/paragraph_5_not_touch" | "tools_section/paragraph_5_touch" | "tools_section/padding_5" | "tools_section/paragraph_6_not_touch" | "tools_section/paragraph_6_touch" | "tools_section/padding_6" | "tools_section/paragraph_7" | "tools_section/padding_7" | "tools_section/header_2" | "tools_section/paragraph_8" | "tools_section/padding_8" | "tools_section/paragraph_9" | "tools_section/padding_9" | "tools_section/paragraph_10" | "tools_section/padding_10" | "tools_section/paragraph_11" | "tools_section/padding_11" | "tools_section/paragraph_12" | "trading_button" | "trading_section" | "trading_section/paragraph_1" | "trading_section/padding_1" | "trading_section/header_1" | "trading_section/paragraph_2" | "trading_section/padding_2" | "trading_section/paragraph_3" | "trading_section/padding_3" | "trading_section/paragraph_4" | "transportation_button" | "transportation_section" | "transportation_section/paragraph_1" | "transportation_section/padding_1" | "transportation_section/header_1" | "transportation_section/paragraph_2" | "transportation_section/paragraph_2_touch" | "transportation_section/padding_2" | "transportation_section/paragraph_3_keyboard" | "transportation_section/paragraph_3_gamepad" | "transportation_section/paragraph_3a_touch" | "transportation_section/padding_3a" | "transportation_section/paragraph_3b_touch" | "transportation_section/padding_3b" | "transportation_section/paragraph_3c_touch" | "transportation_section/padding_3" | "transportation_section/header_2" | "transportation_section/paragraph_4" | "transportation_section/paragraph_4_touch" | "transportation_section/padding_4" | "transportation_section/paragraph_5_keyboard" | "transportation_section/paragraph_5_gamepad" | "transportation_section/paragraph_5a_touch" | "transportation_section/padding_5a" | "transportation_section/paragraph_5b_touch" | "transportation_section/padding_5b" | "transportation_section/paragraph_5c_touch" | "weapons_button" | "weapons_section" | "weapons_section/header_1" | "weapons_section/paragraph_1" | "weapons_section/padding_1" | "weapons_section/paragraph_2_not_touch" | "weapons_section/paragraph_2_touch" | "weapons_section/padding_2" | "weapons_section/header_2" | "weapons_section/paragraph_3_not_touch" | "weapons_section/paragraph_3_touch" | "weapons_section/padding_3" | "weapons_section/paragraph_4" | "weapons_section/padding_5" | "weapons_section/header_3" | "weapons_section/paragraph_5_not_touch" | "weapons_section/paragraph_5a_touch" | "weapons_section/padding_5a_touch" | "weapons_section/paragraph_5b_touch" | "weapons_section/padding_5b_touch" | "weapons_section/paragraph_5c_touch" | "weapons_section/padding_5c_touch" | "weapons_section/paragraph_5d_touch" | "weapons_section/padding_6" | "weapons_section/header_4" | "weapons_section/paragraph_6_not_touch" | "weapons_section/paragraph_6_touch" | "weapons_section/padding_7" | "weapons_section/header_5" | "weapons_section/paragraph_7" | "minecoins_button" | "minecoins_section" | "minecoins_section/paragraph_1" | "minecoins_section/padding_1" | "minecoins_section/paragraph_2" | "minecoins_section/padding_2" | "minecoins_section/get_minecoins_button" | "minecoins_section/padding_3" | "minecoins_section/header_1" | "minecoins_section/paragraph_3" | "addons_button" | "addons_section" | "addons_section/paragraph_1" | "addons_section/padding_1" | "addons_section/paragraph_2" | "addons_section/padding_2" | "addons_section/header_1" | "addons_section/paragraph_3" | "addons_section/padding_3" | "addons_section/paragraph_4" | "addons_section/padding_4" | "addons_section/paragraph_5" | "addons_section/addons_faq_button" | "worlds_button" | "worlds_section" | "worlds_section/paragraph_1" | "worlds_section/padding_1" | "worlds_section/paragraph_2" | "worlds_section/padding_2" | "worlds_section/paragraph_3" | "worlds_section/padding_3" | "worlds_section/paragraph_4" | "worlds_section/padding_4" | "worlds_section/header_1" | "worlds_section/paragraph_5" | "worlds_section/padding_5" | "worlds_section/paragraph_6" | "worlds_section/padding_6" | "worlds_section/header_2" | "worlds_section/paragraph_7" | "worlds_section/padding_7" | "worlds_section/paragraph_8" | "worlds_section/padding_8" | "worlds_section/header_3" | "worlds_section/paragraph_9" | "worlds_section/padding_9" | "worlds_section/paragraph_10" | "worlds_section/padding_10" | "worlds_section/header_4" | "worlds_section/paragraph_11" | "worlds_section/padding_11" | "worlds_section/paragraph_12" | "worlds_section/padding_12" | "textures_button" | "textures_section" | "textures_section/paragraph_1" | "skins_button" | "skins_section" | "skins_section/paragraph_1" | "mashups_button" | "mashups_section" | "mashups_section/paragraph_1"; +export type ExpandedSkinPack = "banner_fill" | "title_label" | "label" | "undo_image" | "lock_icon" | "skin_button" | "skin_button/hover" | "skin_button/pressed" | "skin_rotation_arrows" | "skin_viewer_panel" | "skin_viewer_panel/skin_model_panel" | "skin_viewer_panel/skin_model_panel/skin_model" | "skin_viewer_panel/lock" | "undo_skin_button" | "confirm_skin_button" | "stack_item" | "accept_skin_panel" | "accept_skin_panel/stack_item_0" | "accept_skin_panel/stack_item_0/undo_btn" | "accept_skin_panel/stack_item_1" | "accept_skin_panel/stack_item_1/confirm_button" | "preview_skin_panel" | "preview_skin_panel/preview" | "preview_skin_panel/button_frame" | "preview_skin_panel/button_frame/stack_item_0" | "preview_skin_panel/button_frame/stack_item_0/rotation" | "preview_skin_panel/button_frame/stack_item_1" | "preview_skin_panel/button_frame/stack_item_1/accept" | "skin_model" | "scrolling_content" | "scrolling_content/padding_0" | "scrolling_content/pack_info_panel" | "scrolling_content/pack_info_panel/pack_info_panel" | "scrolling_content/skin_grid_panel" | "scrolling_content/skin_grid_panel/skins_grid" | "pack_info_panel" | "pack_info_panel/lock_icon_panel" | "pack_info_panel/lock_icon_panel/lock_icon" | "pack_info_panel/pack_info_panel" | "pack_info_panel/pack_info_panel/pack_name" | "pack_info_panel/pack_info_panel/creator_name" | "skins_grid_item" | "skins_grid_item/clip" | "skins_grid_item/clip/model" | "skins_grid_item/lock" | "skins_grid_item/button" | "skins_grid" | "select_skin_button" | "select_skin_button/default" | "select_skin_button/hover" | "select_skin_button/pressed" | "all_skins_content" | "all_skins_content/scrolling_frame" | "all_skins_content/scrolling_frame/change_skin_scroll" | "all_skins_frame" | "all_skins_frame/all_skins_content" | "title_bar" | "title_bar/padding_0" | "title_bar/fill_panel" | "title_bar/fill_panel/title_holder" | "title_bar/fill_panel/title_holder/change_skin_title" | "title_bar/padding_1" | "title_bar/skin_name_holder" | "title_bar/skin_name_holder/preview_skin_name" | "title_bar/padding_2" | "content" | "content/title" | "content/selector_area" | "content/content_area" | "content/section_divider" | "expanded_skin_pack_screen" | "skin_picker_screen_content" | "skin_picker_screen_content/bg" | "skin_picker_screen_content/container" | "skin_picker_screen_content/container/content" | "scrollable_selector_area_content" | "selector_area" | "selector_area/all_skins" | "selector_area/inactive_modal_pane_fade" | "content_area" | "content_area/preview_skin" | "content_area/inactive_modal_pane_fade" | "section_divider"; +export type FeedCommon = "top_bar_gradient" | "label" | "smooth_label" | "share_label" | "title_label" | "feed_label" | "item_label" | "return_label" | "prev_label" | "next_label" | "delete_label" | "report_to_club_label" | "report_to_xbox_label" | "new_post_header_text" | "feed_button" | "return_button" | "prev_button" | "prev_panel" | "prev_panel/padding_1" | "prev_panel/lab_panel" | "prev_panel/lab_panel/vert_pad" | "prev_panel/lab_panel/prevlab" | "next_button" | "next_panel" | "next_panel/lab_panel2" | "next_panel/lab_panel2/vert_pad2" | "next_panel/lab_panel2/nextlab" | "next_panel/padding_2" | "like_button" | "delete_button" | "report_to_xbox_button" | "report_to_club_button" | "options_button" | "options_close_button_high_contrast" | "options_close_button_high_contrast/background" | "options_close_button_high_contrast/default" | "options_close_button_high_contrast/hover" | "options_close_button_high_contrast/pressed" | "share_button" | "spacing_gap" | "platform_icon" | "platform_icon_panel" | "platform_icon_panel/platform_icon" | "account_link_image" | "account_link_icon" | "account_link_icon/space_01" | "account_link_icon/account_link_image" | "account_link_icon/space_02" | "player_pic_bevel" | "no_feed_item_content" | "gamepad_helpers" | "share_text_box" | "progress_loading_bars" | "popup_dialog_bg" | "pagination_panel" | "pagination_panel/prev_button" | "pagination_panel/page_text" | "pagination_panel/next_button" | "pagination_panel_gamepad" | "pagination_panel_gamepad/prev_panel" | "pagination_panel_gamepad/page_text" | "pagination_panel_gamepad/next_panel" | "like_image" | "like_image_default" | "like_image_panel" | "like_image_panel/like_image_instance" | "like_image_panel/like_image_default" | "feed_like_content_panel" | "feed_like_content_panel/like_image_panel" | "feed_like_content_panel/like_label" | "white_banner" | "page_text" | "options_icon" | "transparent_background" | "black_arrow" | "faded_background_image" | "unviewed_post_badge" | "unviewed_post_badge/unviewed_post_text"; +export type FileUpload = "empty_progress_bar_icon" | "full_progress_bar_icon" | "progress_bar_nub" | "progress_bar_icon" | "progress_bar_icon/empty_progress_bar_icon" | "progress_bar_icon/progress_percent_panel" | "progress_bar_icon/progress_percent_panel/full_progress_bar_icon" | "progress_bar_icon/progress_percent_panel/progress_bar_nub" | "common_label" | "progress_text_panel" | "progress_text_panel/progress" | "progress_text_panel/total" | "message_text_panel" | "message_text_panel/message_text" | "button_common" | "lets_go_button" | "cancel_button" | "continue_button" | "continue_or_cancel_button" | "continue_or_cancel_button/continue" | "continue_or_cancel_button/cancel" | "single_title_panel" | "single_title_panel/center" | "dual_title_panel" | "dual_title_panel/left" | "dual_title_panel/right" | "upload_title_panel" | "upload_title_panel/single_label" | "upload_title_panel/dual_label" | "content_panel" | "content_panel/stack_panel_0" | "content_panel/stack_panel_1" | "content_stack_panel" | "content_stack_panel/message" | "content_stack_panel/description" | "content_stack_panel/progress" | "warning_content_panel" | "warning_content_panel/message" | "button_panel" | "button_panel/play" | "button_panel/cancel" | "button_panel/continue_cancel" | "file_upload_content" | "file_upload_content/title_panel_content" | "file_upload_content/content" | "file_upload_content/content/background" | "file_upload_content/content/title" | "file_upload_content/content/content" | "file_upload_content/content/buttons" | "file_transmission_screen"; +export type Furnace = "flame_panel" | "flame_panel/flame_empty_image" | "flame_panel/flame_full_image" | "furnace_arrow_empty_image" | "furnace_arrow_full_image" | "flame_empty_image" | "flame_full_image" | "furnace_label" | "furnace_input_panel" | "furnace_input_panel/panel" | "furnace_input_panel/panel/furnace_ingredient_panel" | "furnace_input_panel/panel/flame_panel" | "furnace_input_panel/panel/furnace_fuel_panel" | "furnace_ingredient_panel" | "furnace_ingredient_panel/ingredient_item" | "furnace_fuel_panel" | "furnace_fuel_panel/fuel_item" | "furnace_output_panel" | "furnace_output_panel/output_item" | "furnace_panel_top_half" | "furnace_panel_top_half/furnace_label" | "furnace_panel_top_half/input" | "furnace_panel_top_half/furnace_arrow_empty_image" | "furnace_panel_top_half/furnace_arrow_full_image" | "furnace_panel_top_half/output" | "furnace_panel" | "furnace_panel/container_gamepad_helpers" | "furnace_panel/selected_item_details_factory" | "furnace_panel/item_lock_notification_factory" | "furnace_panel/root_panel" | "furnace_panel/root_panel/common_panel" | "furnace_panel/root_panel/furnace_screen_inventory" | "furnace_panel/root_panel/furnace_screen_inventory/furnace_panel_top_half" | "furnace_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label" | "furnace_panel/root_panel/furnace_screen_inventory/hotbar_grid" | "furnace_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button" | "furnace_panel/root_panel/inventory_selected_icon_button" | "furnace_panel/root_panel/gamepad_cursor" | "furnace_panel/flying_item_renderer" | "furnace_screen"; +export type FurnacePocket = "generic_label" | "background_image" | "empty_arrow" | "full_arrow" | "flame_empty" | "flame_full" | "input_label" | "fuel_label" | "result_label" | "result_name_label" | "furnace_content" | "furnace_content/input_panel" | "furnace_content/input_panel/input_label" | "furnace_content/input_panel/ingredient_item" | "furnace_content/flame_empty" | "furnace_content/flame_full" | "furnace_content/fuel_panel" | "furnace_content/fuel_panel/fuel_label" | "furnace_content/fuel_panel/fuel_item" | "furnace_content/empty_arrow" | "furnace_content/full_arrow" | "furnace_content/output_panel" | "furnace_content/output_panel/result_label" | "furnace_content/output_panel/result_name_label" | "furnace_content/output_panel/output_item" | "inventory_grid" | "inventory_content" | "inventory_content/scrolling_panel" | "header" | "header/header_background" | "header/close_button" | "header/panel" | "header/panel/title_label" | "inventory_and_furnace_panel" | "inventory_and_furnace_panel/inventory_half_screen" | "inventory_and_furnace_panel/inventory_half_screen/inventory_content" | "inventory_and_furnace_panel/furnace_half_screen" | "inventory_and_furnace_panel/furnace_half_screen/furnace_content" | "header_and_content_stack_panel" | "header_and_content_stack_panel/header" | "header_and_content_stack_panel/inventory_and_furnace_panel" | "furnace_panel" | "furnace_panel/bg" | "furnace_panel/root_panel" | "furnace_panel/header_and_content_stack_panel" | "furnace_panel/container_gamepad_helpers" | "furnace_panel/inventory_selected_icon_button" | "furnace_panel/hold_icon" | "furnace_panel/selected_item_details_factory" | "furnace_panel/item_lock_notification_factory" | "furnace_panel/flying_item_renderer"; +export type GameTip = "game_tip_animation" | "game_tip_animation_panel" | "game_tip_animation_panel/animated_icon" | "game_tip_label" | "game_tip_text_panel" | "game_tip_text_panel/upper_padding" | "game_tip_text_panel/label" | "game_tip_text_panel/lower_padding" | "game_tip_arrow_image" | "game_tip_arrow_panel" | "game_tip_arrow_panel/tip_arrow" | "game_tip_panel" | "game_tip_panel/animated_panel" | "game_tip_panel/middle_padding" | "game_tip_panel/label" | "game_tip_panel/right_padding" | "game_tip_item_background" | "game_tip_item_background/horizontal_container" | "game_tip_item_background/arrow_panel" | "chat_stack_game_tip_panel" | "chat_stack_game_tip_panel/top_padding" | "chat_stack_game_tip_panel/game_tip_background" | "game_tip_factory" | "game_tip_chat_stack_factory"; +export type GamepadDisconnected = "gamepad_disconnected_modal" | "gamepad_disconnected_modal/dialog_background_hollow_3" | "gamepad_disconnected_modal/dialog_background_hollow_3/control" | "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel" | "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_0" | "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/title" | "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_1" | "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/description" | "gamepad_disconnected_screen"; +export type Gameplay = "bundle_selected_item_icon" | "bundle_open_icon_back" | "bundle_open_icon_front" | "bundle_selected_item_background" | "bundle_selected_item_background/bundle_selected_item_background_colour_green" | "bundle_selected_item_background/bundle_selected_item_background_colour" | "bundle_selected_item_background/bundle_selected_item_frame" | "bundle_selected_item_panel" | "bundle_selected_item_panel/bundle_selected_item_background" | "bundle_selected_item_panel/bundle_open_icon_back" | "bundle_selected_item_panel/bundle_selected_item_icon" | "bundle_selected_item_panel/bundle_open_icon_front" | "bundle_selected_item_panel/storage_bar" | "bundle_slot_panel" | "bundle_slot_panel/bundle_selected_item_panel" | "bundle_cell_image" | "bundle_cell_image/background_panel" | "bundle_cell_image/background_panel/item_background" | "bundle_cell_image/highlight_panel" | "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_green" | "bundle_cell_image/highlight_panel/bundle_selected_item_background_border_white" | "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_blue" | "bundle_tooltip_slot_button" | "bundle_tooltip_slot_pocket" | "bundle_tooltip_slot_pocket/item_in_bundle_tooltip_pocket" | "bundle_tooltip_slot_pocket/more_hidden_items_label" | "bundle_tooltip_slot_classic" | "bundle_tooltip_slot_classic/item_in_bundle_tooltip_pocket" | "bundle_tooltip_slot_classic/more_hidden_items_label" | "bundle_tooltip" | "bundle_tooltip/background" | "bundle_tooltip/background/empty_button" | "bundle_tooltip/background/empty_button/default" | "bundle_tooltip/background/empty_button/hover" | "bundle_tooltip/background/empty_button/pressed" | "bundle_tooltip/background/selected_item_tooltip" | "bundle_tooltip/background/selected_item_tooltip/item_text_label" | "bundle_tooltip/header_stack" | "bundle_tooltip/header_stack/bundle_label" | "bundle_tooltip/header_stack/close_button" | "bundle_tooltip/header_stack/close_button/default" | "bundle_tooltip/header_stack/close_button/hover" | "bundle_tooltip/header_stack/close_button/pressed" | "bundle_tooltip/wrapper" | "bundle_tooltip/wrapper/vertical_layout_stack" | "bundle_tooltip/wrapper/vertical_layout_stack/header_padding" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/left_padding" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/item_grid" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/info_message" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/empty_message" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_fill" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full/full_label" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_border" | "bundle_touch_tooltip" | "bundle_tooltip_factory_wrapper" | "bundle_tooltip_factory_wrapper/bundle_cursor_tooltip" | "bundle_cursor_tooltip" | "bundle_cursor_tooltip/tooltip"; +export type GatheringInfo = "gathering_info_screen" | "info_content" | "info_content/header" | "info_content/left_panel" | "info_content/left_panel/stack" | "info_content/left_panel/stack/event_image" | "info_content/left_panel/stack/pad_2" | "info_content/left_panel/stack/button_and_caption" | "info_content/left_panel/stack/button_and_caption/caption" | "info_content/left_panel/stack/button_and_caption/action_button" | "info_content/left_panel/stack/pad_3" | "info_content/left_panel/stack/info_button" | "info_content/left_panel/stack/pad_4" | "info_content/left_panel/stack/gamepad_helper_panel" | "info_content/left_panel/stack/gamepad_helper_panel/gamepad_helpers" | "info_content/left_panel/stack/pad_fill" | "info_content/left_panel/stack/gathering_id_label" | "info_content/left_panel/stack/pad_5" | "info_content/section_divider" | "info_content/right_panel" | "info_content/right_panel/scroll" | "right_panel_content" | "right_panel_content/pad" | "right_panel_content/sign_in_panel" | "right_panel_content/sign_in_panel/sign_in_image" | "right_panel_content/sign_in_panel/horizontal_pad" | "right_panel_content/sign_in_panel/text_stack" | "right_panel_content/sign_in_panel/text_stack/sign_in_title" | "right_panel_content/sign_in_panel/text_stack/text_pad" | "right_panel_content/sign_in_panel/text_stack/sign_in_body" | "right_panel_content/sign_in_pad" | "right_panel_content/qr_panel" | "right_panel_content/qr_panel/qr_background" | "right_panel_content/qr_panel/qr_background/qr_image" | "right_panel_content/qr_panel/horizontal_pad" | "right_panel_content/qr_panel/text_stack" | "right_panel_content/qr_panel/text_stack/qr_title" | "right_panel_content/qr_panel/text_stack/text_pad" | "right_panel_content/qr_panel/text_stack/qr_body" | "right_panel_content/qr_pad" | "right_panel_content/title" | "right_panel_content/pad_1" | "right_panel_content/body" | "right_panel_content/pad_2" | "right_panel_content/body_image" | "right_panel_content/footer" | "tts_label" | "tts_label_title" | "sign_in_title" | "sign_in_body" | "qr_title" | "qr_body" | "title_panel" | "body_panel" | "section_divider" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "gamepad_helpers/gamepad_helper_b"; +export type Globalpause = "message" | "quit_button" | "globalpause_screen" | "pause_screen_content" | "pause_screen_content/transparentFill" | "pause_screen_content/message" | "pause_screen_content/quit_button"; +export type Grindstone = "title_label" | "arrow_icon" | "cross_out_icon" | "grindstone_output_slot_button" | "grindstone_item_slot" | "grindstone_item_slot/container_item" | "grindstone_middle_panel" | "grindstone_middle_panel/input_item_slot" | "grindstone_middle_panel/additional_item_slot" | "grindstone_slots_panel" | "grindstone_slots_panel/grindstone_middle_panel" | "grindstone_slots_panel/yields" | "grindstone_slots_panel/yields/arrow_icon" | "grindstone_slots_panel/yields/cross_out_icon" | "grindstone_slots_panel/result_item_slot" | "top_half_panel" | "top_half_panel/title_label" | "top_half_panel/grindstone_slots_panel" | "grindstone_panel" | "grindstone_panel/container_gamepad_helpers" | "grindstone_panel/selected_item_details_factory" | "grindstone_panel/item_lock_notification_factory" | "grindstone_panel/root_panel" | "grindstone_panel/root_panel/common_panel" | "grindstone_panel/root_panel/grindstone_screen_inventory" | "grindstone_panel/root_panel/grindstone_screen_inventory/top_half_panel" | "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_panel_bottom_half_with_label" | "grindstone_panel/root_panel/grindstone_screen_inventory/hotbar_grid" | "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_take_progress_icon_button" | "grindstone_panel/root_panel/inventory_selected_icon_button" | "grindstone_panel/root_panel/gamepad_cursor" | "grindstone_panel/flying_item_renderer" | "grindstone_screen"; +export type GrindstonePocket = "background_image" | "repair_title_label" | "grindstone_middle_panel" | "grindstone_middle_panel/input_slot" | "grindstone_middle_panel/additional_slot" | "slots_panel" | "slots_panel/grindstone_middle_panel" | "slots_panel/arrow" | "slots_panel/arrow/cross_out" | "slots_panel/result_slot" | "grindstone_contents_panel" | "grindstone_contents_panel/repair_title_label" | "grindstone_contents_panel/slots_panel" | "inventory_grid" | "inventory_content" | "inventory_content/scrolling_panel" | "header" | "header/header_background" | "header/legacy_pocket_close_button" | "header/panel" | "header/panel/title_label" | "inventory_and_grindstone_panel" | "inventory_and_grindstone_panel/inventory_half_screen" | "inventory_and_grindstone_panel/inventory_half_screen/inventory_content" | "inventory_and_grindstone_panel/grindstone_half_screen" | "inventory_and_grindstone_panel/grindstone_half_screen/grindstone_content" | "header_and_content_stack_panel" | "header_and_content_stack_panel/header" | "header_and_content_stack_panel/inventory_and_grindstone_panel" | "grindstone_panel" | "grindstone_panel/bg" | "grindstone_panel/root_panel" | "grindstone_panel/header_and_content_stack_panel" | "grindstone_panel/container_gamepad_helpers" | "grindstone_panel/inventory_selected_icon_button" | "grindstone_panel/hold_icon" | "grindstone_panel/selected_item_details_factory" | "grindstone_panel/item_lock_notification_factory" | "grindstone_panel/flying_item_renderer"; +export type GammaCalibration = "stack_panel_centering_panel" | "stack_panel_centering_panel/child" | "stack_panel_align_left_panel" | "stack_panel_align_left_panel/child" | "stack_panel_align_right_panel" | "stack_panel_align_right_panel/child" | "image_panel" | "image_panel/padding" | "image_panel/image" | "horizontal_padding" | "image_stack" | "image_stack/not_visible_image" | "image_stack/padding_0" | "image_stack/barely_visible_image" | "image_stack/padding_1" | "image_stack/easily_visible_image" | "button_stack" | "button_stack/continue_button_panel" | "button_stack/padding" | "button_stack/reset_button_panel" | "message_panel" | "message_panel/message_label" | "calibration_slider" | "calibration_slider/slider" | "continue_button" | "reset_button" | "main_panel" | "main_panel/hdr_message_panel" | "main_panel/image_stack_panel" | "main_panel/padding_0" | "main_panel/slider_panel" | "main_panel/padding_1" | "main_panel/button_stack_panel" | "gamma_calibration_screen"; +export type Horse = "renderer_bg" | "overlay_image" | "saddle_image" | "horse_armor_image" | "carpet_image" | "nautilus_armor_image" | "horse_label" | "equip_grid" | "inv_grid" | "inv_bg_panel" | "inv_bg_panel/cell_image" | "equip_panel" | "equip_panel/equip_grid" | "equip_panel/saddle" | "equip_panel/horse_armor_0" | "equip_panel/carpet_0" | "equip_panel/nautilus_armor_0" | "equip_panel/horse_armor_1" | "equip_panel/carpet_1" | "equip_panel/nautilus_armor_1" | "inv_panel" | "inv_panel/inv_bg_panel" | "inv_panel/inv_grid" | "horse_renderer" | "horse_renderer/renderer_bg" | "horse_renderer/horse_custom_panel" | "horse_renderer/horse_custom_panel/horse_custom" | "horse_panel" | "horse_panel/container_gamepad_helpers" | "horse_panel/selected_item_details_factory" | "horse_panel/item_lock_notification_factory" | "horse_panel/root_panel" | "horse_panel/root_panel/common_panel" | "horse_panel/root_panel/horse_section_label" | "horse_panel/root_panel/inv_panel" | "horse_panel/root_panel/equipment" | "horse_panel/root_panel/renderer" | "horse_panel/root_panel/inventory_panel_bottom_half_with_label" | "horse_panel/root_panel/hotbar_grid_template" | "horse_panel/root_panel/inventory_selected_icon_button" | "horse_panel/root_panel/gamepad_cursor" | "horse_panel/flying_item_renderer" | "horse_screen"; +export type HorsePocket = "horse_panel" | "horse_panel/gamepad_helpers" | "horse_panel/inventory_selected_icon_button" | "horse_panel/gamepad_cursor" | "horse_panel/selected_item_details_factory" | "horse_panel/item_lock_notification_factory" | "horse_panel/base_panel" | "horse_panel/base_panel/root_panel" | "horse_panel/base_panel/hold_icon" | "horse_panel/base_panel/bg" | "horse_panel/base_panel/interactive_tabs" | "horse_panel/base_panel/close_button" | "horse_panel/base_panel/inventory" | "horse_panel/base_panel/equipment" | "horse_panel/base_panel/chest_tab" | "horse_panel/base_panel/chest_tab/visual_tabs_chest" | "horse_panel/base_panel/chest_tab/chest" | "horse_panel/base_panel/renderer_tab" | "horse_panel/base_panel/renderer_tab/visual_tabs_equip" | "horse_panel/base_panel/renderer_tab/renderer" | "horse_panel/flying_item_renderer" | "background_image" | "dark_bg" | "renderer_bg" | "saddle_image" | "horse_armor_image" | "carpet_image" | "nautilus_armor_image" | "panel_outline" | "close_button_default" | "close_button_pressed" | "close_button" | "close_button/default" | "close_button/hover" | "close_button/pressed" | "base_grid" | "inventory_grid" | "chest_grid" | "base_grid_panel" | "base_grid_panel/panel_outline" | "base_grid_panel/dark_bg" | "base_grid_panel/scrolling_panel" | "inventory_panel" | "chest_panel" | "half_screen" | "middle_screen" | "half_screen_inventory" | "half_screen_inventory/inventory_panel" | "half_screen_chest" | "half_screen_chest/chest_panel" | "horse_renderer" | "horse_renderer/horse_custom" | "half_screen_renderer" | "half_screen_renderer/renderer_bg" | "half_screen_renderer/horse_custom_panel" | "half_screen_renderer/camel_custom_panel" | "equip_item_panel" | "equip_item_panel/equip_container_item" | "equip_grid" | "equip_middle_screen" | "equip_middle_screen/equip_grid_panel" | "equip_middle_screen/equip_grid_panel/equip_grid" | "equip_middle_screen/equip_grid_panel/centered_0" | "equip_middle_screen/equip_grid_panel/offset" | "equip_middle_screen/equip_grid_panel/centered_1" | "equip_middle_screen/equip_grid_panel/centered_2" | "equip_middle_screen/equip_grid_panel/horse_armor_image" | "equip_middle_screen/equip_grid_panel/carpet_image" | "horse_screen_tab_toggle" | "interactive_tabs" | "interactive_tabs/renderer_tab_interactive" | "interactive_tabs/chest_tab_interactive" | "tab_front" | "tab_back" | "close_tab" | "item_icon_renderer" | "saddle_icon_front" | "chest_icon_front" | "visual_tabs_equip" | "visual_tabs_equip/close_tab" | "visual_tabs_equip/close_tab/nodrop_zone" | "visual_tabs_equip/chest" | "visual_tabs_equip/chest/chest_icon" | "visual_tabs_equip/equip" | "visual_tabs_equip/equip/equip_icon" | "visual_tabs_chest" | "visual_tabs_chest/close_tab" | "visual_tabs_chest/chest" | "visual_tabs_chest/chest/chest_icon" | "visual_tabs_chest/equip" | "visual_tabs_chest/equip/equip_icon"; +export type HowToPlayCommon = "dynamic_dialog_screen" | "screen_background" | "top_bar" | "button_panel" | "light_text_button" | "action_button" | "topic_category" | "topic_category/top_padding" | "topic_category/category_text" | "toggle_button_control" | "toggle_button_control/tab_button_text" | "glyph_button_control" | "glyph_button_control/tab_button_text" | "glyph_button_control/glyph" | "section_toggle_button" | "section_toggle_button/section_toggle_button" | "edu_section_toggle_button" | "padding" | "touch_padding" | "small_padding" | "large_padding" | "section_contents_header" | "section_contents_footer" | "main_sections" | "splitscreen_only_content" | "splitscreen_only_content/0" | "tts_focus_border" | "header_tts_focus_border" | "header_background" | "header_background/header_label" | "header_background/focus_border" | "header" | "header/header" | "paragraph_panel" | "paragraph_label" | "paragraph_tts_focus_border" | "paragraph" | "paragraph/label" | "paragraph/focus_border" | "paragraph_with_icons" | "paragraph_with_icons/label" | "paragraph_with_icons/focus_border" | "input_conditional_paragraph" | "input_conditional_paragraph_with_icons" | "paragraph_keyboard" | "paragraph_gamepad" | "paragraph_gamepad_no_icons" | "paragraph_touch" | "paragraph_touch_classic_dpad_spacing" | "paragraph_touch_no_icons" | "paragraph_touch_joystick_tap" | "paragraph_touch_classic_dpad" | "paragraph_touch_joystick_crosshair" | "paragraph_not_touch" | "image" | "how_to_play_header" | "how_to_play_header/top_bar" | "how_to_play_header/top_bar/back_button" | "how_to_play_header/top_bar/how_to_play_title" | "how_to_play_header/top_bar/gamepad_bumper_helpers" | "how_to_play_content" | "how_to_play_content/header" | "how_to_play_content/container" | "dialog_content" | "dialog_content/selector_area" | "dialog_content/content_area" | "dialog_content/section_divider" | "scrollable_selector_area_content" | "selector_area" | "selector_area/scrolling_panel" | "section_divider" | "content_area_wrapper" | "content_area_wrapper/content_area" | "content_area" | "content_area/control" | "content_area/control/scrolling_panel" | "screen_base" | "gamepad_bumper_helper_description" | "gamepad_bumper_helpers" | "gamepad_bumper_helpers/gamepad_helper_left_bumper" | "gamepad_bumper_helpers/padding" | "gamepad_bumper_helpers/gamepad_helper_right_bumper"; +export type HowToPlay = "how_to_play_screen" | "how_to_play_selector_stack_panel" | "how_to_play_selector_stack_panel/how_to_play_selector_pane" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_started_category" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/moving_around_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/gathering_resources_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/selecting_items_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/placing_blocks_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/inventory_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/preparing_for_the_night_category" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/your_first_craft_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/recipe_book_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/the_crafting_table_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/crafting_a_tool_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/mining_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/surviving_the_first_night_category" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/nightfall_new_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/building_a_shelter_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/death_and_respawn_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_settled_category" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/food_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/beds_new_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/improved_tools_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/education_category" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/world_builder_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/permission_blocks_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/chalkboard_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/chemistry_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/npc_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/camera_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/portfolio_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/classroom_mode_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/code_builder_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/padding_1" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/playing_together_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/encyclopedia_button" | "how_to_play_section_content_panels" | "how_to_play_section_content_panels/general_tips_sections" | "how_to_play_section_content_panels/general_tips_sections/section_contents_header" | "how_to_play_section_content_panels/general_tips_sections/moving_around_section" | "how_to_play_section_content_panels/general_tips_sections/gathering_resources_section" | "how_to_play_section_content_panels/general_tips_sections/selecting_items_section" | "how_to_play_section_content_panels/general_tips_sections/placing_blocks_section" | "how_to_play_section_content_panels/general_tips_sections/inventory_section" | "how_to_play_section_content_panels/general_tips_sections/your_first_craft_section" | "how_to_play_section_content_panels/general_tips_sections/recipe_book_section" | "how_to_play_section_content_panels/general_tips_sections/the_crafting_table_section" | "how_to_play_section_content_panels/general_tips_sections/crafting_a_tool_section" | "how_to_play_section_content_panels/general_tips_sections/mining_section" | "how_to_play_section_content_panels/general_tips_sections/nightfall_new_section" | "how_to_play_section_content_panels/general_tips_sections/building_a_shelter_section" | "how_to_play_section_content_panels/general_tips_sections/death_and_respawn_section" | "how_to_play_section_content_panels/general_tips_sections/food_section" | "how_to_play_section_content_panels/general_tips_sections/beds_new_section" | "how_to_play_section_content_panels/general_tips_sections/improved_tools_section" | "how_to_play_section_content_panels/general_tips_sections/world_builder_section" | "how_to_play_section_content_panels/general_tips_sections/permission_blocks_section" | "how_to_play_section_content_panels/general_tips_sections/chalkboard_section" | "how_to_play_section_content_panels/general_tips_sections/chemistry_section" | "how_to_play_section_content_panels/general_tips_sections/npc_section" | "how_to_play_section_content_panels/general_tips_sections/camera_section" | "how_to_play_section_content_panels/general_tips_sections/portfolio_section" | "how_to_play_section_content_panels/general_tips_sections/classroom_mode_section" | "how_to_play_section_content_panels/general_tips_sections/code_builder_section" | "how_to_play_section_content_panels/general_tips_sections/playing_together_section" | "how_to_play_section_content_panels/general_tips_sections/encyclopedia_section" | "how_to_play_section_content_panels/general_tips_sections/section_contents_footer" | "moving_around_button" | "moving_around_section" | "moving_around_section/paragraph_1" | "moving_around_section/padding_1" | "moving_around_section/paragraph_2_keyboard" | "moving_around_section/paragraph_2_gamepad" | "moving_around_section/paragraph_touch_joystick_tap" | "moving_around_section/padding_2" | "moving_around_section/paragraph_3a_keyboard" | "moving_around_section/paragraph_3b_keyboard" | "moving_around_section/paragraph_3a_gamepad" | "moving_around_section/paragraph_3b_gamepad" | "moving_around_section/paragraph_3_touch_joystick_tap" | "moving_around_section/paragraph_3a_touch_classic_dpad" | "moving_around_section/paragraph_3b_touch_classic_dpad" | "moving_around_section/paragraph_3c_touch_classic_dpad" | "moving_around_section/paragraph_3d_touch_classic_dpad" | "moving_around_section/paragraph_3e_touch_classic_dpad" | "moving_around_section/paragraph_3_touch_joystick_crosshair" | "moving_around_section/image_1" | "gathering_resources_button" | "gathering_resources_section" | "gathering_resources_section/paragraph_1" | "gathering_resources_section/padding_1" | "gathering_resources_section/paragraph_2_keyboard" | "gathering_resources_section/paragraph_2_gamepad" | "gathering_resources_section/paragraph_2_touch_joystick_tap" | "gathering_resources_section/paragraph_2_touch_classic_dpad" | "gathering_resources_section/paragraph_2_touch_joystick_crosshair" | "gathering_resources_section/padding_2" | "gathering_resources_section/paragraph_3" | "selecting_items_button" | "selecting_items_section" | "selecting_items_section/paragraph_1" | "selecting_items_section/padding_1" | "selecting_items_section/paragraph_2_keyboard" | "selecting_items_section/paragraph_2_gamepad" | "selecting_items_section/paragraph_touch_joystick_tap" | "selecting_items_section/padding_2" | "selecting_items_section/paragraph_3_keyboard" | "selecting_items_section/paragraph_3_gamepad" | "selecting_items_section/paragraph_3_touch_joystick_tap" | "selecting_items_section/paragraph_3_touch_classic_dpad" | "selecting_items_section/paragraph_3_touch_joystick_crosshair" | "selecting_items_section/padding_3" | "selecting_items_section/header_1" | "selecting_items_section/image_1_not_touch" | "selecting_items_section/image_1_touch" | "placing_blocks_button" | "placing_blocks_section" | "placing_blocks_section/paragraph_1" | "placing_blocks_section/padding_1" | "placing_blocks_section/paragraph_2_keyboard" | "placing_blocks_section/paragraph_2_gamepad" | "placing_blocks_section/paragraph_2_touch_joystick_tap" | "placing_blocks_section/paragraph_2_touch_classic_dpad" | "placing_blocks_section/paragraph_2_touch_joystick_crosshair" | "placing_blocks_section/padding_2" | "placing_blocks_section/paragraph_3" | "inventory_button" | "inventory_section" | "inventory_section/image_1_not_touch" | "inventory_section/image_1_touch" | "inventory_section/header_1" | "inventory_section/paragraph_1_keyboard" | "inventory_section/paragraph_1_gamepad" | "inventory_section/paragraph_1_touch" | "inventory_section/padding_2" | "inventory_section/header_2" | "inventory_section/paragraph_2_keyboard" | "inventory_section/paragraph_2_gamepad" | "inventory_section/paragraph_2_touch" | "your_first_craft_button" | "your_first_craft_section" | "your_first_craft_section/image_1_not_touch" | "your_first_craft_section/image_1_touch" | "your_first_craft_section/header_1" | "your_first_craft_section/paragraph_1" | "your_first_craft_section/padding_2" | "your_first_craft_section/paragraph_2" | "your_first_craft_section/padding_3" | "your_first_craft_section/paragraph_3_touch" | "your_first_craft_section/paragraph_3_keyboard" | "your_first_craft_section/paragraph_3_gamepad" | "your_first_craft_section/padding_4" | "your_first_craft_section/header_2" | "your_first_craft_section/paragraph_4" | "your_first_craft_section/padding_5" | "your_first_craft_section/paragraph_5" | "recipe_book_button" | "recipe_book_section" | "recipe_book_section/paragraph_1_keyboard" | "recipe_book_section/paragraph_1_gamepad" | "recipe_book_section/paragraph_1_touch" | "recipe_book_section/padding_1" | "recipe_book_section/paragraph_2_keyboard" | "recipe_book_section/paragraph_2_gamepad" | "recipe_book_section/paragraph_2_touch" | "the_crafting_table_button" | "the_crafting_table_section" | "the_crafting_table_section/image_1" | "the_crafting_table_section/paragraph_1" | "the_crafting_table_section/padding_2" | "the_crafting_table_section/paragraph_2_keyboard" | "the_crafting_table_section/paragraph_2_gamepad" | "the_crafting_table_section/paragraph_2_touch" | "crafting_a_tool_button" | "crafting_a_tool_section" | "crafting_a_tool_section/paragraph_1" | "crafting_a_tool_section/padding_1" | "crafting_a_tool_section/paragraph_2_keyboard" | "crafting_a_tool_section/paragraph_2_gamepad" | "crafting_a_tool_section/paragraph_2_touch" | "mining_button" | "mining_section" | "mining_section/image_1" | "mining_section/paragraph_1" | "mining_section/padding_2" | "mining_section/paragraph_2" | "mining_section/padding_3" | "mining_section/paragraph_3" | "nightfall_new_button" | "nightfall_new_section" | "nightfall_new_section/paragraph_1" | "nightfall_new_section/padding_1" | "nightfall_new_section/paragraph_2" | "nightfall_new_section/padding_2" | "nightfall_new_section/paragraph_3" | "nightfall_new_section/padding_3" | "nightfall_new_section/paragraph_4_keyboard" | "nightfall_new_section/paragraph_4_gamepad" | "nightfall_new_section/paragraph_4_touch_joystick_tap" | "nightfall_new_section/paragraph_4_touch_classic_dpad" | "nightfall_new_section/paragraph_4_touch_joystick_crosshair" | "building_a_shelter_button" | "building_a_shelter_section" | "building_a_shelter_section/image_1" | "building_a_shelter_section/paragraph_1" | "building_a_shelter_section/padding_2" | "building_a_shelter_section/paragraph_2" | "building_a_shelter_section/padding_3" | "building_a_shelter_section/paragraph_3" | "death_and_respawn_button" | "death_and_respawn_section" | "death_and_respawn_section/paragraph_1" | "death_and_respawn_section/padding_1" | "death_and_respawn_section/paragraph_2" | "food_button" | "food_section" | "food_section/paragraph_1" | "food_section/padding_1" | "food_section/paragraph_2_keyboard" | "food_section/paragraph_2_gamepad" | "food_section/paragraph_2_touch" | "food_section/padding_2" | "food_section/paragraph_3" | "beds_new_button" | "beds_new_section" | "beds_new_section/paragraph_1" | "beds_new_section/padding_1" | "beds_new_section/paragraph_2" | "beds_new_section/padding_2" | "beds_new_section/paragraph_3" | "improved_tools_button" | "improved_tools_section" | "improved_tools_section/paragraph_1" | "improved_tools_section/padding_1" | "improved_tools_section/paragraph_2" | "world_builder_button" | "world_builder_section" | "world_builder_section/paragraph_1" | "world_builder_section/padding_1" | "world_builder_section/paragraph_2" | "world_builder_section/padding_2" | "world_builder_section/paragraph_3" | "world_builder_section/padding_3" | "world_builder_section/paragraph_4" | "world_builder_section/padding_4" | "world_builder_section/paragraph_5" | "world_builder_section/padding_5" | "world_builder_section/paragraph_6" | "world_builder_section/paragraph_7" | "world_builder_section/padding_7" | "world_builder_section/paragraph_8" | "world_builder_section/padding_8" | "world_builder_section/paragraph_9" | "permission_blocks_button" | "permission_blocks_section" | "permission_blocks_section/paragraph_1" | "permission_blocks_section/padding_1" | "permission_blocks_section/header_1" | "permission_blocks_section/paragraph_2" | "permission_blocks_section/padding_3" | "permission_blocks_section/paragraph_3" | "permission_blocks_section/padding_4" | "permission_blocks_section/paragraph_4" | "permission_blocks_section/padding_5" | "permission_blocks_section/paragraph_5" | "permission_blocks_section/padding_7" | "permission_blocks_section/header_2" | "permission_blocks_section/paragraph_6" | "chalkboard_button" | "chalkboard_section" | "chalkboard_section/paragraph_1_keyboard" | "chalkboard_section/paragraph_1_gamepad" | "chalkboard_section/paragraph_1_touch" | "chemistry_button" | "chemistry_section" | "chemistry_section/paragraph_1" | "chemistry_section/padding_1" | "chemistry_section/paragraph_2" | "npc_button" | "npc_section" | "npc_section/paragraph_1" | "npc_section/padding_1" | "npc_section/paragraph_2" | "npc_section/padding_2" | "npc_section/paragraph_3" | "camera_button" | "camera_section" | "camera_section/paragraph_1" | "camera_section/padding_1" | "camera_section/paragraph_2_keyboard" | "camera_section/paragraph_2_gamepad" | "camera_section/paragraph_2_touch" | "camera_section/padding_2" | "camera_section/paragraph_3_keyboard" | "camera_section/paragraph_3_gamepad" | "camera_section/paragraph_3_touch" | "camera_section/padding_3" | "camera_section/paragraph_4" | "portfolio_button" | "portfolio_section" | "portfolio_section/paragraph_1_keyboard" | "portfolio_section/paragraph_1_gamepad" | "portfolio_section/paragraph_1_touch" | "classroom_mode_button" | "classroom_mode_section" | "classroom_mode_section/paragraph_1" | "classroom_mode_section/padding_1" | "classroom_mode_section/paragraph_2" | "code_builder_button" | "code_builder_section" | "code_builder_section/paragraph_1" | "code_builder_section/padding_1" | "code_builder_section/paragraph_2_keyboard" | "code_builder_section/paragraph_2_gamepad" | "code_builder_section/paragraph_2_touch" | "playing_together_button" | "playing_together_section" | "playing_together_section/paragraph_1" | "playing_together_section/padding_1" | "playing_together_section/header_1" | "playing_together_section/paragraph_2" | "playing_together_section/padding_2" | "playing_together_section/header_2" | "playing_together_section/paragraph_3" | "playing_together_section/padding_3" | "playing_together_section/paragraph_4" | "playing_together_section/padding_4" | "playing_together_section/paragraph_5" | "playing_together_section/padding_5" | "playing_together_section/header_3" | "playing_together_section/paragraph_6" | "playing_together_section/padding_6" | "playing_together_section/paragraph_7" | "playing_together_section/padding_7" | "playing_together_section/paragraph_8" | "playing_together_section/realms_button" | "playing_together_section/sign_in_button" | "playing_together_section/padding_8" | "playing_together_section/header_4" | "playing_together_section/paragraph_9" | "playing_together_section/padding_9" | "playing_together_section/paragraph_10" | "try_realms_action_button" | "encyclopedia_button" | "encyclopedia_section" | "encyclopedia_section/paragraph_1"; +export type Hud = "hud_player_renderer" | "hud_player_renderer/hud_player" | "hotbar_renderer" | "hotbar_renderer/hotbar_slot_image" | "cooldown_renderer" | "heart_renderer" | "horse_heart_renderer" | "armor_renderer" | "exp_progress_bar_and_hotbar" | "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar" | "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar" | "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar" | "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub" | "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/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/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/hotbar" | "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/progress_text_label" | "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar" | "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend" | "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend" | "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend/hotbar" | "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar" | "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner" | "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/hotbar" | "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/size_without_hotbar" | "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/horse_jump_rend" | "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/dash_rend" | "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/locator_bar" | "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/progress_text_label" | "exp_progress_bar_and_hotbar/item_text_factory" | "exp_progress_bar_and_hotbar_pocket" | "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar" | "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar" | "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar" | "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub" | "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/progress_text_label" | "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar" | "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/locator_bar" | "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/progress_text_label" | "exp_progress_bar_and_hotbar_pocket/hotbar_panel" | "exp_progress_bar_and_hotbar_pocket/item_text" | "exp_progress_bar_and_hotbar_pocket/item_text/item_text_factory" | "exp_progress_bar_and_hotbar_pocket/horse_jump_rend" | "exp_progress_bar_and_hotbar_pocket/dash_rend" | "full_progress_bar" | "empty_progress_bar" | "progress_bar_nub" | "progress_text_label" | "horse_jump_renderer" | "dash_renderer" | "locator_bar" | "hunger_renderer" | "bubbles_renderer" | "mob_effects_renderer" | "vignette_renderer" | "editor_gizmo_renderer" | "cursor_renderer" | "progress_indicator_renderer" | "camera_renderer" | "editor_volume_highlight_renderer" | "editor_compass_renderer" | "hotbar_hud_item_icon" | "elipses_image" | "bound_button_label" | "default_borderless_button_layout" | "hover_borderless_button_layout" | "pressed_borderless_button_layout" | "borderless_button" | "borderless_button/default" | "borderless_button/hover" | "borderless_button/pressed" | "borderless_button/elipses" | "hotbar_elipses_button" | "start_cap_image" | "end_cap_image" | "hotbar_start_cap" | "hotbar_start_cap/start_cap_image" | "hotbar_end_cap" | "hotbar_end_cap/end_cap_image" | "heart_image" | "hotbar_slot_image" | "hotbar_slot_selected_image" | "gui_hotbar_slot_button_prototype" | "player_position" | "player_position/player_position_text" | "number_of_days_played" | "number_of_days_played/number_of_days_played_text" | "chat_label" | "chat_grid_item" | "chat_grid_item/chat_background" | "chat_grid_item/chat_background/chat_text" | "chat_panel" | "chat_panel/stack_panel" | "item_durability" | "item_storage" | "container_item_lock_overlay" | "item_lock_cell_image" | "gui_hotbar_grid_item" | "gui_hotbar_grid_item/hotbar_slot_selected_image" | "gui_hotbar_grid_item/hotbar_renderer" | "gui_hotbar_grid_item/hotbar_parent" | "gui_hotbar_grid_item/hotbar_parent/item_icon" | "gui_hotbar_grid_item/hotbar_parent/item_count" | "gui_hotbar_grid_item/hotbar_parent/hotbar_hint" | "gui_hotbar_grid_item/hotbar_parent/item_dura" | "gui_hotbar_grid_item/hotbar_parent/item_store" | "gui_hotbar_grid_item/hotbar_parent/container_item_lock_overlay" | "gui_hotbar_grid_item/cooldown_renderer" | "gui_hotbar_grid_item/hotbar_slot_button" | "gui_hotbar_grid_item_pocket" | "gui_hotbar_grid_item_pocket/hotbar_slot_selected_image" | "gui_hotbar_grid_item_pocket/hotbar_renderer" | "gui_hotbar_grid_item_pocket/hotbar_parent" | "gui_hotbar_grid_item_pocket/hotbar_parent/item_icon" | "gui_hotbar_grid_item_pocket/hotbar_parent/item_count" | "gui_hotbar_grid_item_pocket/hotbar_parent/item_dura" | "gui_hotbar_grid_item_pocket/hotbar_parent/item_store" | "gui_hotbar_grid_item_pocket/hotbar_parent/container_item_lock_overlay" | "gui_hotbar_grid_item_pocket/cooldown_renderer" | "gui_hotbar_grid_item_pocket/hotbar_slot_button" | "centered_gui_elements" | "centered_gui_elements/hud_player_rend_desktop" | "centered_gui_elements_at_bottom_middle" | "centered_gui_elements_at_bottom_middle/heart_rend" | "centered_gui_elements_at_bottom_middle/horse_heart_rend_0" | "centered_gui_elements_at_bottom_middle/horse_heart_rend_1" | "centered_gui_elements_at_bottom_middle/armor_rend" | "centered_gui_elements_at_bottom_middle/hunger_rend" | "centered_gui_elements_at_bottom_middle/bubbles_rend_0" | "centered_gui_elements_at_bottom_middle/bubbles_rend_1" | "centered_gui_elements_at_bottom_middle/exp_rend" | "centered_gui_elements_at_bottom_middle_touch" | "centered_gui_elements_at_bottom_middle_touch/heart_rend" | "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_0" | "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_1" | "centered_gui_elements_at_bottom_middle_touch/armor_rend" | "centered_gui_elements_at_bottom_middle_touch/hunger_rend" | "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_0" | "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_1" | "centered_gui_elements_at_bottom_middle_touch/exp_rend" | "not_centered_gui_elements" | "not_centered_gui_elements/heart_rend" | "not_centered_gui_elements/horse_heart_rend" | "not_centered_gui_elements/hunger_rend" | "not_centered_gui_elements/armor_rend" | "not_centered_gui_elements/hud_player_rend_pocket" | "not_centered_gui_elements/bubbles_rend_0" | "not_centered_gui_elements/bubbles_rend_1" | "hotbar_chooser" | "hotbar_chooser/desktop_hotbar" | "hotbar_chooser/pocket_hotbar" | "hotbar_elipses_panel_right_content" | "hotbar_elipses_panel_right_content/elipses_content" | "hotbar_elipses_panel_right_art" | "hotbar_elipses_panel_right_art/slot" | "hotbar_elipses_panel_right_art/button" | "hotbar_elipses_panel_left_content" | "hotbar_elipses_panel_left_content/button" | "hotbar_elipses_panel_left_art" | "hotbar_elipses_panel_left_art/slot" | "hotbar_elipses_panel_left_art/button" | "hotbar_panel" | "hotbar_panel/hotbar_start_cap" | "hotbar_panel/hotbar_elipses_panel_left" | "hotbar_panel/hotbar_grid" | "hotbar_panel/hotbar_elipses_panel_right" | "hotbar_panel/hotbar_end_cap" | "hotbar_panel_pocket" | "hotbar_panel_pocket/hotbar_start_cap_frame" | "hotbar_panel_pocket/hotbar_start_cap_frame/hotbar_start_cap" | "hotbar_panel_pocket/hotbar_elipses_panel_left" | "hotbar_panel_pocket/hotbar_elipses_panel_left/hotbar_elipses_panel_left" | "hotbar_panel_pocket/hotbar_grid" | "hotbar_panel_pocket/hotbar_elipses_panel_right" | "hotbar_panel_pocket/hotbar_elipses_panel_right/hotbar_elipses_panel_right" | "hotbar_panel_pocket/hotbar_end_cap_frame" | "hotbar_panel_pocket/hotbar_end_cap_frame/hotbar_end_cap" | "hotbar_grid" | "edu_hotbar_grid" | "item_name_text_root" | "item_name_text_root/item_text_aligner" | "item_name_text_root/item_text_aligner/item_text_control" | "item_name_text_root/item_text_aligner/item_text_control/item_text_background" | "item_name_text_root/item_text_aligner/item_text_control/item_text_label" | "item_name_text_root/item_text_aligner/interact_padding" | "item_name_text_root/item_text_aligner/survival_buffer" | "item_name_text" | "jukebox_popup_text" | "hud_tip_text" | "hud_tip_text/item_text_label" | "auto_save" | "hud_actionbar_text" | "hud_actionbar_text/actionbar_message" | "hud_title_text" | "hud_title_text/title_frame" | "hud_title_text/title_frame/title_background" | "hud_title_text/title_frame/title" | "hud_title_text/subtitle_frame" | "hud_title_text/subtitle_frame/subtitle_background" | "hud_title_text/subtitle_frame/subtitle" | "boss_name_panel" | "boss_name_panel/boss_name" | "tooltip_helper_icon_description" | "tooltip_helper_icon_description/label_background" | "tooltip_helper" | "tooltip_helper/icon" | "tooltip_helper/padding" | "tooltip_helper/centerer" | "tooltip_helper/centerer/desc" | "tooltip_helper_form_fitting" | "tooltip_helper_form_fitting/icon" | "tooltip_helper_form_fitting/padding" | "tooltip_helper_form_fitting/centerer" | "tooltip_helper_form_fitting/centerer/desc" | "keyboard_tooltip_helper" | "keyboard_tooltip_helper_form_fitting" | "mixed_tooltip_helper" | "mixed_tooltip_helper/gamepad_tooltip" | "mixed_tooltip_helper/keyboard_tooltip" | "mixed_tooltip_helper_form_fitting" | "mixed_tooltip_helper_form_fitting/gamepad_tooltip" | "mixed_tooltip_helper_form_fitting/keyboard_tooltip" | "base_icon_image" | "base_icon_image/icon" | "base_icon_image/postfix_label_wrapper" | "base_icon_image/postfix_label_wrapper/label" | "base_keyboard_icon" | "base_keyboard_icon/icon" | "base_keyboard_icon/icon/key_backing" | "base_keyboard_icon/icon/key_backing/key_label" | "base_keyboard_icon/icon/mouse_buttons" | "left_helpers_edu" | "left_helpers_edu/tip_window" | "left_helpers_edu/tip_window/stack_panel" | "left_helpers_edu/tip_paddding" | "left_helpers_edu/controls_toggle_label" | "left_helpers_edu/controls_toggle_label/tip" | "left_helpers_edu/controls_inventory_label" | "left_helpers_edu/controls_inventory_label/tip" | "left_helpers_edu/controls_menu_label" | "left_helpers_edu/controls_menu_label/tip" | "left_helpers" | "left_helpers/stack_panel" | "emote_label_background" | "emote_tip" | "emote_tip/emote_keyboard_centerer" | "emote_tip/emote_keyboard_centerer/emote_keyboard_helper" | "emote_tip/emote_gamepad_helper" | "emote_expediate_helpers" | "emote_expediate_helpers/stack_panel" | "emote_expediate_helpers/stack_panel/emote_tip_0" | "emote_expediate_helpers/stack_panel/emote_tip_1" | "emote_expediate_helpers/stack_panel/emote_tip_2" | "emote_expediate_helpers/stack_panel/emote_tip_3" | "right_helpers" | "right_helpers/stack_panel" | "boss_health_panel" | "boss_health_panel/boss_name" | "boss_health_panel/progress_bar_for_collections" | "boss_health_grid" | "wysiwyg_reset_modal_ok" | "wysiwyg_reset_modal_cancel" | "wysiwyg_close_without_saving_modal_ok" | "wysiwyg_close_without_saving_modal_cancel" | "root_panel" | "root_panel/layout_customization_reset" | "root_panel/layout_customization_reset/layout_customization_reset_modal" | "root_panel/layout_customization_close_without_saving" | "root_panel/layout_customization_close_without_saving/layout_customization_close_without_saving_modal" | "root_panel/layout_customization_main_panel" | "root_panel/layout_customization_sub_panel" | "root_panel/layout_customization_hint_drag_frame" | "root_panel/layout_customization_hint_drag_frame/layout_customization_hint_drag" | "root_panel/layout_customization_hint_deselect_frame" | "root_panel/layout_customization_hint_deselect_frame/layout_customization_hint_deselect" | "root_panel/layout_customization_hint_saved" | "root_panel/layout_customization_hint_saved/layout_customization_hint_saved" | "root_panel/left_helpers" | "root_panel/right_helpers" | "root_panel/emote_expediate_helpers" | "root_panel/centered_gui_elements" | "root_panel/centered_gui_elements_at_bottom_middle" | "root_panel/centered_gui_elements_at_bottom_middle_touch" | "root_panel/not_centered_gui_elements" | "root_panel/gamertag_label_for_splitscreen" | "root_panel/exp_rend" | "root_panel/exp_rend_resizable" | "root_panel/hud_tip_text_factory" | "root_panel/hud_actionbar_text_area" | "root_panel/hud_title_text_area" | "root_panel/mob_effects_renderer" | "root_panel/vignette_rend" | "root_panel/curor_rend" | "root_panel/game_tip" | "root_panel/sidebar" | "root_panel/progress_rend" | "root_panel/chat_stack" | "root_panel/chat_stack/paper_doll_padding" | "root_panel/chat_stack/non_centered_gui_padding" | "root_panel/chat_stack/player_position" | "root_panel/chat_stack/number_of_days_played" | "root_panel/chat_stack/game_tip" | "root_panel/chat_stack/chat_panel" | "root_panel/boss_health_panel" | "root_panel/boss_health_panel/boss_hud_padding" | "root_panel/boss_health_panel/boss_hud_touch_padding" | "root_panel/boss_health_panel/boss_hud_panel" | "root_panel/boss_health_panel/boss_hud_panel/boss_health_grid" | "root_panel/save_icon" | "hud_screen" | "hud_content" | "hud_content/root_panel" | "hud_content/editor_gizmo_renderer" | "hud_content/editor_compass_renderer" | "hud_content/editor_volume_highlight_renderer" | "hud_content/camera_renderer" | "layout_customization_main_panel_button" | "layout_customization_main_panel_button/button" | "layout_customization_main_panel" | "layout_customization_main_panel/main_panel_frame" | "layout_customization_main_panel/main_panel_frame/main_panel_content" | "layout_customization_main_panel/main_panel_frame/main_panel_content/reset_button" | "layout_customization_main_panel/main_panel_frame/main_panel_content/exit_button" | "layout_customization_main_panel/main_panel_frame/main_panel_content/opacity_button" | "layout_customization_main_panel/main_panel_frame/main_panel_content/size_button" | "layout_customization_option_slider" | "layout_customization_option_slider/slider" | "layout_customization_option_slider/reset" | "layout_customization_option_slider/reset/reset_button" | "layout_customization_option_slider/reset/reset_button/default" | "layout_customization_option_slider/reset/reset_button/hover" | "layout_customization_option_slider/reset/reset_button/pressed" | "layout_customization_option_content" | "layout_customization_option_content/scale_option" | "layout_customization_option_content/opacity_option" | "layout_customization_option_content/apply_to_all_toggle" | "layout_customization_option_content/apply_to_all_toggle/checkbox_frame" | "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_unchecked" | "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_checked" | "layout_customization_option_content/apply_to_all_toggle/caption_frame" | "layout_customization_option_content/apply_to_all_toggle/caption_frame/caption" | "layout_customization_option" | "layout_customization_option/content" | "layout_customization_sub_panel" | "layout_customization_sub_panel/background" | "layout_customization_sub_panel/background/sub_panel_content"; +export type HostOptions = "button_label" | "host_image_panel" | "host_image_panel/host_image" | "host_glyph_panel" | "scrollable_selector_area" | "host_main_button" | "scrolling_panel" | "scrolling_panel/background" | "scrolling_panel/scrollable_tab" | "button_content" | "button_content/button_label" | "button_content/image" | "main_light_button" | "main_dark_button" | "host_grid" | "host_sub_command_grid_item" | "host_sub_command_grid_item/host_option_banner" | "return_from_sub_command_button" | "platform_icon_panel" | "gamertag_wrapper" | "player_pic_panel" | "player_pic_panel/player_gamer_pic" | "player_pic_panel/player_local_icon" | "player_button_content" | "player_button_content/player_pic_panel" | "player_button_content/player_gamertag" | "player_button_content/platform_icon" | "player_grid_item" | "player_grid_item/player_banner" | "host_friends_tab" | "host_friends_tab/players_grid" | "host_teleport_grid_item" | "host_teleport_grid_item/host_option_toggle" | "host_teleport_grid_item/host_option_button" | "host_teleport_buttons" | "host_teleport_buttons/return" | "host_teleport_buttons/sub_tab" | "host_teleport_buttons/sub_tab/host_main_grid" | "host_teleport_player_list_buttons" | "host_teleport_player_list_buttons/toggle" | "host_teleport_player_list_buttons/toggle/host_time_panel" | "host_teleport_player_buttons" | "host_time_buttons" | "host_time_buttons/return" | "host_time_buttons/sub_tab" | "host_time_buttons/sub_tab/scrolli_scrolli_ravioli" | "host_weather_buttons" | "host_weather_buttons/return" | "host_weather_buttons/sub_tab" | "host_weather_buttons/sub_tab/host_main_grid" | "host_menu_grid_item" | "host_menu_grid_item/host_option_banner" | "host_main_buttons" | "host_main_buttons/host_main_grid" | "host_panel" | "host_panel/host_main_panel" | "host_panel/host_teleport_panel" | "host_panel/host_teleport_player_panel" | "host_panel/host_time_panel" | "host_panel/host_weather_panel"; +export type Bed = "in_bed_screen" | "in_bed_screen_content" | "in_bed_screen_content/wake_up_button_panel" | "in_bed_screen_content/wake_up_button_panel/wake_up_button" | "in_bed_screen_content/wake_up_button_panel/spacer" | "in_bed_screen_content/wake_up_button_panel/chat_button" | "in_bed_screen_content/wake_up_label_panel" | "in_bed_screen_content/select_button" | "background"; +export type ImReader = "reader_button_contents" | "reader_button" | "webview" | "loading" | "loading/animation_item" | "loading/animation_item/animation" | "loading/loading_text_item" | "loading/loading_text_item/loading_text" | "loading/bottom_padding" | "loading/cancel_button" | "no_retry_error_button" | "retry_error_buttons" | "retry_error_buttons/try_again" | "retry_error_buttons/middle_padding" | "retry_error_buttons/cancel" | "error" | "error/error_text" | "error/error_buttons" | "error/error_buttons/retry" | "error/error_buttons/no_retry" | "loading_and_error_panel" | "loading_and_error_panel/loading" | "loading_and_error_panel/error" | "immersive_reader_screen_content" | "immersive_reader_screen_content/loading_and_error" | "immersive_reader_screen_content/webview" | "immersive_reader_screen"; +export type Crafting = "inventory_x_gamepad_helper" | "inventory_y_gamepad_helper" | "inventory_a_gamepad_helper" | "inventory_b_gamepad_helper" | "gamepad_helper_bumpers" | "gamepad_helper_bumpers/gamepad_helper_left_bumper" | "gamepad_helper_bumpers/gamepad_helper_right_bumper" | "gamepad_helper_left_trigger" | "gamepad_helper_right_trigger" | "container_gamepad_helpers_second_row" | "container_gamepad_helpers_second_row/buffer_panel_left" | "container_gamepad_helpers_second_row/left_thumbstick_visibility" | "container_gamepad_helpers_second_row/left_thumbstick_visibility/gamepad_helper_thumbstick_left" | "container_gamepad_helpers_second_row/fill_panel" | "container_gamepad_helpers_second_row/right_thumbstick_visibility" | "container_gamepad_helpers_second_row/right_thumbstick_visibility/gamepad_helper_thumbstick_right" | "container_gamepad_helpers_second_row/buffer_panel_right" | "crafting_root_panel" | "drop_item_panel" | "inventory_container_slot_button" | "creative_hotbar_container_slot_button" | "no_coalesce_container_slot_button" | "creative_no_coalesce_container_slot_button" | "output_no_coalesce_container_slot_button" | "tab_image" | "item_renderer" | "inventory_icon" | "recipe_book_icon" | "creative_icon" | "icon_image" | "tab_front" | "tab_back" | "equipment_icon" | "construction_icon" | "nature_icon" | "search_icon" | "miscellaneous_icon" | "empty_tab_panel" | "empty_tab_panel/img" | "top_tab" | "search_tab" | "construction_tab" | "equipment_tab" | "nature_tab" | "items_tab" | "tab_navigation_panel_layout" | "tab_navigation_panel_layout/navigation_tabs" | "tab_navigation_panel_layout/navigation_tabs/content" | "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel" | "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel/construction_tab_factory" | "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel" | "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel/equipment_tab_factory" | "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel" | "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel/items_tab_factory" | "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel" | "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel/nature_tab_factory" | "tab_navigation_panel_layout/navigation_tabs/content/fill_panel_0" | "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder" | "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_end_creative" | "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_creative" | "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_survival" | "tab_content_padding" | "tab_content" | "tab_content/tab_content_search_bar_panel" | "tab_content/tab_content_search_bar_panel/vertical_padding_1" | "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder" | "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_1" | "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/creative_label" | "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_2" | "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder" | "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder/filter_toggle" | "tab_content/tab_content_search_bar_panel/vertical_padding_2" | "tab_content/tab_content_search_bar_panel/search_and_filter_panel" | "tab_content/tab_content_search_bar_panel/search_and_filter_panel/text_edit_control" | "tab_content/tab_content_search_bar_panel/search_and_filter_panel/padding_1" | "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder" | "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder/filter_toggle" | "tab_content/tab_content_search_bar_panel/vertical_padding_3" | "tab_content/tab_content_search_bar_panel/scroll_pane" | "tab_content/nodrop_zone" | "armor_overlay" | "offhand_overlay" | "armor_overlay_helmet" | "armor_overlay_chest" | "armor_overlay_legs" | "armor_image_feet" | "armor_overlay_shield" | "player_armor_panel" | "player_armor_panel/player_bg" | "player_armor_panel/player_bg/player_renderer_panel" | "player_armor_panel/player_bg/player_renderer_panel/player_renderer" | "player_armor_panel/player_preview_border" | "player_armor_panel/armor_grid" | "player_armor_panel/armor_grid/head_grid_item" | "player_armor_panel/armor_grid/chest_grid_item" | "player_armor_panel/armor_grid/legs_grid_item" | "player_armor_panel/armor_grid/feet_grid_item" | "player_armor_panel/offhand_grid" | "player_armor_panel/offhand_grid/offhand_grid_item" | "crafting_label" | "inventory_label" | "crafting_arrow" | "crafting_arrow_large" | "crafting_input_grid_item" | "crafting_grid_3x3" | "crafting_grid_3x3/crafting_input_item_top_left" | "crafting_grid_3x3/crafting_input_item_top_mid" | "crafting_grid_3x3/crafting_input_item_top_right" | "crafting_grid_3x3/crafting_input_item_mid_left" | "crafting_grid_3x3/crafting_input_item_middle" | "crafting_grid_3x3/crafting_input_item_mid_right" | "crafting_grid_3x3/crafting_input_item_bot_left" | "crafting_grid_3x3/crafting_input_item_bot_mid" | "crafting_grid_3x3/crafting_input_item_bot_right" | "crafting_grid_2x2" | "crafting_grid_2x2/crafting_input_item_top_left" | "crafting_grid_2x2/crafting_input_item_top_right" | "crafting_grid_2x2/crafting_input_item_bot_left" | "crafting_grid_2x2/crafting_input_item_bot_right" | "output_grid_3x3" | "output_grid_3x3/work_bench_output" | "output_grid_2x2" | "output_grid_2x2/work_bench_output" | "work_bench_panel_3x3" | "work_bench_panel_3x3/inventory_label" | "work_bench_panel_3x3/crafting_arrow_large" | "work_bench_panel_3x3/crafting_grid_3x3_with_label_0" | "work_bench_panel_3x3/work_bench_output_grid" | "crafting_grid_3x3_with_label" | "crafting_grid_3x3_with_label/crafting_label" | "crafting_grid_3x3_with_label/crafting_grid_3x3" | "crafting_grid_2x2_with_label" | "crafting_grid_2x2_with_label/crafting_label" | "crafting_grid_2x2_with_label/crafting_grid_2x2" | "crafting_panel_2x2" | "crafting_panel_2x2/crafting_arrow" | "crafting_panel_2x2/crafting_table" | "crafting_panel_2x2/crafting_grid_2x2" | "crafting_panel_2x2/survival_crafting_output_grid" | "survival_panel_top_half" | "survival_panel_top_half/player_armor_panel" | "survival_panel_top_half/crafting_panel" | "crafting_panel_top_half" | "crafting_panel_top_half/crafting_panel" | "recipe_container_cell_images" | "cell_image_recipe_default" | "cell_image_recipe_group_head_collapsed" | "cell_image_recipe_group_head_expanded" | "cell_image_recipe_group_item" | "cell_image_recipe_selected" | "cell_image_recipe_default_red" | "container_cell_images" | "container_cell_images/cell_classic" | "container_cell_images/cell_normal" | "container_cell_images/cell_invert" | "container_cell_images/cell_red" | "container_cell_images/cell_selected" | "container_cell_images/cell_darkgrey" | "crafting_container_cell_images" | "cell_image" | "cell_image_classic" | "cell_image_normal" | "cell_image_invert" | "cell_image_red" | "cell_image_selected" | "cell_image_darkgrey" | "container_overlay_images" | "container_overlay_images/expand" | "container_overlay_images/contract" | "item_overlay_image" | "item_overlay_contract" | "item_overlay_expand" | "inventory_container_item" | "inventory_container_item/item_cell" | "inventory_container_item/item_cell/item" | "inventory_container_item/item_cell/item/stack_count_label" | "inventory_container_item/item_cell/durability_bar" | "inventory_container_item/item_cell/storage_bar" | "inventory_container_item/item_cell_overlay_ref" | "inventory_container_item/item_selected_image" | "inventory_container_item/item_button_ref" | "inventory_container_item/container_item_lock_overlay" | "inventory_container_item/item_lock_cell_image" | "inventory_container_item/bundle_slot_panel" | "grid_item_for_recipe_book" | "scroll_grid_panel" | "scroll_grid_panel/grid" | "scroll_grid" | "scroll_panel" | "recipe_book_scroll_panel" | "creative_label" | "filter_toggle" | "toolbar_background" | "layout_toggle_content" | "layout_toggle_content/image" | "layout_toggle_content/icon" | "layout_template_toggle" | "layout_toggle" | "creative_layout_toggle" | "recipe_book_layout_toggle" | "survival_layout_toggle" | "help_button" | "help_button/default" | "help_button/hover" | "help_button/pressed" | "player_inventory" | "player_inventory/common_panel" | "player_inventory/inventory_panel_top_half" | "player_inventory/inventory_panel_bottom_half" | "player_inventory/hotbar_grid" | "recipe_book" | "recipe_book/gamepad_helper_bumpers" | "recipe_book/tab_navigation_panel" | "recipe_book/bg" | "recipe_book/tab_content_panel" | "recipe_book/creative_hotbar_panel" | "creative_hotbar_panel" | "creative_hotbar_panel/creative_hotbar_background" | "creative_hotbar_panel/creative_hotbar_background/hotbar_grid" | "center_fold" | "center_fold/center_bg" | "toolbar_panel" | "toolbar_panel/toolbar_background" | "toolbar_panel/toolbar_background/toolbar_stack_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor" | "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor/gamepad_helper_left_trigger" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_0" | "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel/creative_layout_toggle" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1" | "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival" | "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival/recipe_book_layout_toggle" | "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative" | "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative/recipe_book_layout_toggle" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2" | "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel/survival_layout_toggle" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_3" | "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_4" | "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor" | "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor/gamepad_helper_right_trigger" | "inventory_screen_base" | "crafting_screen" | "inventory_screen" | "recipe_book_toggle_image" | "recipe_inventory_screen_content" | "recipe_inventory_screen_content/content_stack_panel" | "recipe_inventory_screen_content/content_stack_panel/recipe_book" | "recipe_inventory_screen_content/content_stack_panel/center_fold" | "recipe_inventory_screen_content/content_stack_panel/survival_padding" | "recipe_inventory_screen_content/content_stack_panel/player_inventory" | "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor" | "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor/toolbar_panel" | "recipe_inventory_screen_content/inventory_take_progress_icon_button" | "recipe_inventory_screen_content/inventory_selected_icon_button" | "recipe_inventory_screen_content/hold_icon" | "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel" | "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers_second_row" | "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers" | "recipe_inventory_screen_content/selected_item_details_factory" | "recipe_inventory_screen_content/item_lock_notification_factory" | "recipe_inventory_screen_content/flying_item_renderer"; +export type CraftingPocket = "survival_icon" | "full_screen_icon" | "crafting_icon" | "armor_icon" | "crafting_arrow_down" | "empty_tab_panel" | "left_tab" | "right_tab" | "full_screen_tab" | "crafting_tab" | "armor_tab" | "search_tab" | "construction_tab" | "equipment_tab" | "items_tab" | "nature_tab" | "inventory_tab" | "left_tab_navigation_panel_pocket" | "left_tab_navigation_panel_pocket/content" | "left_tab_navigation_panel_pocket/content/search_tab_panel" | "left_tab_navigation_panel_pocket/content/search_tab_panel/search_tab" | "left_tab_navigation_panel_pocket/content/construction_tab_panel" | "left_tab_navigation_panel_pocket/content/construction_tab_panel/construction_tab_factory" | "left_tab_navigation_panel_pocket/content/equipment_tab_panel" | "left_tab_navigation_panel_pocket/content/equipment_tab_panel/equipment_tab_factory" | "left_tab_navigation_panel_pocket/content/items_tab_panel" | "left_tab_navigation_panel_pocket/content/items_tab_panel/items_tab_factory" | "left_tab_navigation_panel_pocket/content/nature_tab_panel" | "left_tab_navigation_panel_pocket/content/nature_tab_panel/nature_tab_factory" | "left_tab_navigation_panel_pocket/content/fill" | "left_tab_navigation_panel_pocket/content/inventory_tab" | "right_tab_navigation_panel_pocket" | "right_tab_navigation_panel_pocket/content" | "right_tab_navigation_panel_pocket/content/close" | "right_tab_navigation_panel_pocket/content/close/nodrop_zone" | "right_tab_navigation_panel_pocket/content/close/close_button" | "right_tab_navigation_panel_pocket/content/fill" | "right_tab_navigation_panel_pocket/content/full_screen_tab" | "right_tab_navigation_panel_pocket/content/crafting_tab" | "right_tab_navigation_panel_pocket/content/armor_tab" | "recipe_book_tab_content" | "inventory_tab_content" | "right_tab_content" | "right_tab_content/bg" | "right_tab_content/content" | "crafting_input_grid_item" | "crafting_grid_3x3" | "crafting_grid_2x2" | "output_grid_and_label" | "output_grid_and_label/recipe_item_label" | "output_grid_and_label/output_grid" | "output_grid" | "output_grid/work_bench_output" | "crafting_grid_3x3_with_label" | "crafting_grid_3x3_with_label/crafting_label" | "crafting_grid_3x3_with_label/crafting_grid_3x3" | "crafting_grid_2x2_with_label" | "crafting_grid_2x2_with_label/crafting_label" | "crafting_grid_2x2_with_label/crafting_grid_2x2" | "scroll_background_image" | "grid_item_for_inventory" | "survival_inventory_grid" | "scroll_panel_pocket" | "recipe_book_scroll_panel_pocket" | "survival_scroll_panel" | "pocket_armor_tab_content" | "pocket_armor_tab_content/label_and_renderer" | "pocket_armor_tab_content/label_and_renderer/label_panel" | "pocket_armor_tab_content/label_and_renderer/label_panel/armor_label" | "pocket_armor_tab_content/label_and_renderer/renderer_panel" | "pocket_armor_tab_content/label_and_renderer/renderer_panel/armor_renderer" | "pocket_armor_tab_content/equipment_and_renderer" | "pocket_armor_tab_content/equipment_and_renderer/equipment" | "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid" | "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/head_grid_item" | "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/chest_grid_item" | "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/legs_grid_item" | "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/feet_grid_item" | "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid" | "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid/offhand_grid_item" | "pocket_armor_tab_content/equipment_and_renderer/armor_panel" | "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player" | "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border" | "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg" | "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg/player_renderer_panel" | "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg/player_renderer_panel/player_renderer" | "hotbar_panel" | "hotbar_panel/bg" | "hotbar_panel/hotbar_grid" | "hotbar_grid_item" | "survival_panel_pocket" | "survival_panel_pocket/crafting_panel" | "survival_panel_pocket/crafting_arrow_down" | "survival_panel_pocket/crafting_table" | "survival_panel_pocket/output" | "survival_panel_crafting_pocket" | "survival_panel_crafting_pocket/crafting_panel" | "survival_panel_crafting_pocket/crafting_arrow_down" | "survival_panel_crafting_pocket/output" | "inventory_screen_pocket_base" | "crafting_screen_pocket" | "inventory_screen_pocket" | "left_panel" | "left_panel/left_background" | "left_panel/recipe_book_tab_content" | "left_panel/inventory_tab_content" | "right_panel" | "right_panel/right_background" | "right_panel/help_button" | "right_panel/crafting_tab_content" | "right_panel/armor_tab_content" | "both_panels" | "both_panels/left_tab_navigation_panel_pocket" | "both_panels/left_panel" | "both_panels/offset_panel" | "both_panels/offset_panel/center_bg" | "both_panels/right_panel" | "both_panels/right_tab_navigation_panel_pocket" | "gamepad_helper_border" | "gamepad_helper_border/left_gamepad_panel" | "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_bumper" | "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_trigger" | "gamepad_helper_border/both_panels" | "gamepad_helper_border/right_gamepad_panel" | "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper_creative" | "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper" | "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_trigger" | "hotbar_and_panels" | "hotbar_and_panels/padding_1" | "hotbar_and_panels/gamepad_helper_border" | "hotbar_and_panels/hotbar_section_panel" | "hotbar_and_panels/hotbar_section_panel/hotbar" | "recipe_inventory_screen_content_pocket" | "recipe_inventory_screen_content_pocket/container_gamepad_helpers_pocket" | "recipe_inventory_screen_content_pocket/toast_screen_content" | "recipe_inventory_screen_content_pocket/selected_item_details_factory" | "recipe_inventory_screen_content_pocket/item_lock_notification_factory" | "recipe_inventory_screen_content_pocket/base_panel" | "recipe_inventory_screen_content_pocket/base_panel/root_panel" | "recipe_inventory_screen_content_pocket/base_panel/inventory_selected_icon_button" | "recipe_inventory_screen_content_pocket/base_panel/gamepad_cursor" | "recipe_inventory_screen_content_pocket/base_panel/hold_icon" | "recipe_inventory_screen_content_pocket/base_panel/hotbar_and_panels" | "recipe_inventory_screen_content_pocket/flying_item_renderer"; +export type Invite = "black_border" | "black_border_hover" | "platform_icon" | "grey_borderless_locked" | "checked_locked_image" | "unchecked_locked_image" | "left_arrow_image" | "right_arrow_image" | "account_link_image" | "panel_text" | "loading_friends" | "account_link_icon" | "account_link_icon/space_01" | "account_link_icon/account_link_image" | "account_link_icon/space_03" | "gamerpic" | "third_party_profile_pic" | "gamerpic_panel" | "gamerpic_panel/black_border" | "gamerpic_panel/gamerpic" | "gamerpic_panel/online_indication_positioner" | "gamerpic_panel/online_indication_positioner/indicator_images" | "third_party_profile_pic_panel" | "third_party_profile_pic_panel/black_border" | "third_party_profile_pic_panel/third_party_profile_pic" | "platform_icon_panel" | "platform_icon_panel/platform_icon" | "status_image" | "online_image" | "offline_image" | "online_indicator" | "online_indicator/online_image" | "checkbox_panel" | "checked_panel" | "checked_panel/checked_image" | "unchecked_panel" | "unchecked_panel/unchecked_image" | "checked_locked_panel" | "checked_locked_panel/checked_image" | "unchecked_locked_panel" | "unchecked_locked_panel/unchecked_image" | "checked_hover_panel" | "checked_hover_panel/checked_hover_image" | "unchecked_hover_panel" | "unchecked_hover_panel/unchecked_hover_image" | "friend_label" | "friend_grid_xbl_gamertag" | "friend_grid_current_game_label" | "friend_grid_third_party_tag" | "friend_background" | "friend_background_hover" | "friend_background_borderless" | "hover_friend_button" | "hover_friend_button/friend_button_layout" | "hover_friend_button/hover_text" | "linked_hover_friend_button" | "linked_hover_friend_button/hover_text" | "msa_friend_button_layout" | "msa_friend_button_layout/spacer01" | "msa_friend_button_layout/platform_icon_spacer" | "msa_friend_button_layout/spacer_02" | "msa_friend_button_layout/friend_grid_label_layout" | "msa_friend_button_layout/friend_grid_label_layout/spacer_01" | "msa_friend_button_layout/friend_grid_label_layout/friend_grid_xbl_gamertag" | "msa_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label" | "platform_friend_button_layout" | "platform_friend_button_layout/spacer01" | "platform_friend_button_layout/platform_icon_spacer" | "platform_friend_button_layout/third_party_pic_panel_positioner" | "platform_friend_button_layout/third_party_pic_panel_positioner/pp" | "platform_friend_button_layout/spacer_02" | "platform_friend_button_layout/friend_grid_label_layout" | "platform_friend_button_layout/friend_grid_label_layout/spacer_01" | "platform_friend_button_layout/friend_grid_label_layout/friend_grid_third_party_tag" | "platform_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label" | "platform_friend_button_layout/platform_icon_positioner" | "platform_friend_button_layout/platform_icon_positioner/platform_icon" | "platform_friend_button_layout/online_indication_positioner" | "platform_friend_button_layout/online_indication_positioner/indicator_images" | "linked_friend_button_layout" | "linked_friend_button_layout/spacer01" | "linked_friend_button_layout/platform_icon_positioner" | "linked_friend_button_layout/platform_icon_positioner/platform_icon" | "linked_friend_button_layout/spacer02" | "linked_friend_button_layout/platform_profile_pictures" | "linked_friend_button_layout/platform_profile_pictures/spacer_01" | "linked_friend_button_layout/platform_profile_pictures/pp2" | "linked_friend_button_layout/platform_profile_pictures/account_link" | "linked_friend_button_layout/platform_profile_pictures/pp1" | "linked_friend_button_layout/platform_profile_pictures/spacer_03" | "linked_friend_button_layout/spacer03" | "linked_friend_button_layout/platform_profile_names" | "linked_friend_button_layout/platform_profile_names/spacer_01" | "linked_friend_button_layout/platform_profile_names/friend_grid_third_party_tag" | "linked_friend_button_layout/platform_profile_names/spacer_02" | "linked_friend_button_layout/platform_profile_names/friend_grid_xbl_gamertag" | "linked_friend_button_layout/platform_profile_names/friend_grid_current_game_label" | "linked_friend_button_layout/online_indication_positioner" | "linked_friend_button_layout/online_indication_positioner/indicator_images" | "template_msa_friend_button_layout" | "template_msa_friend_button_layout/friend_background" | "template_msa_friend_button_layout/friend_button_layout" | "template_msa_friend_button_layout/unchecked" | "template_platform_friend_button_layout" | "template_platform_friend_button_layout/friend_background" | "template_platform_friend_button_layout/friend_button_layout" | "template_platform_friend_button_layout/unchecked" | "template_linked_friend_button_layout" | "template_linked_friend_button_layout/friend_background" | "template_linked_friend_button_layout/horizontal_spacer_panel" | "template_linked_friend_button_layout/horizontal_spacer_panel/unchecked_locked" | "template_linked_friend_button_layout/horizontal_spacer_panel/friend_button_layout" | "msa_friend_button" | "msa_friend_button/checked" | "msa_friend_button/unchecked" | "msa_friend_button/checked_hover" | "msa_friend_button/unchecked_hover" | "msa_friend_button/checked_locked" | "msa_friend_button/unchecked_locked" | "msa_friend_button/checked_locked_hover" | "msa_friend_button/unchecked_locked_hover" | "platform_friend_button" | "platform_friend_button/checked" | "platform_friend_button/unchecked" | "platform_friend_button/checked_hover" | "platform_friend_button/unchecked_hover" | "platform_friend_button/checked_locked" | "platform_friend_button/unchecked_locked" | "platform_friend_button/checked_locked_hover" | "platform_friend_button/unchecked_locked_hover" | "linked_friend_button" | "linked_friend_button/checked" | "linked_friend_button/unchecked" | "linked_friend_button/checked_hover" | "linked_friend_button/unchecked_hover" | "linked_friend_button/checked_locked" | "linked_friend_button/unchecked_locked" | "linked_friend_button/checked_locked_hover" | "linked_friend_button/unchecked_locked_hover" | "msa_friend_grid_item_template" | "msa_friend_grid_item_template/friend_button_Panel" | "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner" | "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner/pp" | "msa_friend_grid_item_template/friend_button_Panel/friend_button" | "msa_friend_grid_item_template/profile_button_pannel" | "msa_friend_grid_item_template/profile_button_pannel/view_profile_button" | "msa_friend_grid_item_template/spacer_03" | "platform_friend_grid_item_template" | "platform_friend_grid_item_template/friend_button" | "friend_linked_account_grid_item_template" | "friend_linked_account_grid_item_template/friend_button" | "online_xbox_live_friend_grid_item" | "offline_xbox_live_friend_grid_item" | "online_linked_account_friend_grid_item" | "offline_linked_account_friend_grid_item" | "online_platform_friend_grid_item" | "offline_platform_friend_grid_item" | "online_xbox_live_friend_list_grid" | "offline_xbox_live_friend_list_grid" | "online_platform_friend_list_grid" | "offline_platform_friend_list_grid" | "online_linked_account_friend_list_grid" | "offline_linked_account_friend_list_grid" | "friends_pagination_controls" | "friends_pagination_controls/previous_button" | "friends_pagination_controls/center_panel" | "friends_pagination_controls/center_panel/page_counter" | "friends_pagination_controls/next_button" | "friends_category" | "friends_category/friends_grid" | "friends_category/pagination_stack_panel" | "friends_category/pagination_stack_panel/padding_1" | "friends_category/pagination_stack_panel/pagination_controls" | "friends_category/pagination_stack_panel/padding_2" | "friends_category/pagination_stack_panel/divider" | "friends_category/padding" | "frame_label" | "friend_panel" | "scrolling_content_stack" | "scrolling_content_stack/message" | "scrolling_content_stack/message/frame_label" | "scrolling_content_stack/online_platform" | "scrolling_content_stack/online_platform/frame_label" | "scrolling_content_stack/vertical_padding_0" | "scrolling_content_stack/online_platform_friend_list_category" | "scrolling_content_stack/crossplatform_disabled_panel" | "scrolling_content_stack/crossplatform_disabled_panel/disable_text" | "scrolling_content_stack/crossplatform_disable_spacer" | "scrolling_content_stack/online_cross_platform" | "scrolling_content_stack/online_cross_platform/frame_label" | "scrolling_content_stack/vertical_padding_1" | "scrolling_content_stack/online_linked_account_friend_list_category" | "scrolling_content_stack/online_xbox_live_friend_list_category" | "scrolling_content_stack/offline_platform" | "scrolling_content_stack/offline_platform/frame_label" | "scrolling_content_stack/vertical_padding_2" | "scrolling_content_stack/offline_platform_friend_list_category" | "scrolling_content_stack/no_platform_friends" | "scrolling_content_stack/no_platform_friends/no_friends_tts_wrapper" | "scrolling_content_stack/offline_cross_platform" | "scrolling_content_stack/offline_cross_platform/frame_label" | "scrolling_content_stack/vertical_padding_3" | "scrolling_content_stack/offline_linked_account_friend_list_category" | "scrolling_content_stack/offline_xbox_live_friend_list_category" | "scrolling_content_stack/no_xbox_live_friends" | "scrolling_content_stack/no_xbox_live_friends/no_friends_tts_wrapper" | "progress_bar_and_scrolling_content_panel" | "progress_bar_and_scrolling_content_panel/progress_loading_bars" | "progress_bar_and_scrolling_content_panel/invite_scrolling_area" | "no_xbox_live_friends_frame_label" | "no_platform_friends_frame_label" | "horizontal_invite_panel" | "vertical_invite_panel" | "scrolling_area" | "invite_button_content" | "invite_button_content/gameplay_helper" | "invite_button_content/button_label" | "invite_button_content_hover" | "invite_button_content_pressed" | "invite_button_content_locked" | "add_friend_button" | "profile_button_content" | "profile_button_content/button_label" | "profile_button_content_hover" | "profile_button_content_pressed" | "profile_button_content_locked" | "add_member_button" | "send_button" | "profile_button" | "horizontal_button_stack_panel" | "horizontal_button_stack_panel/add_friend_button" | "horizontal_button_stack_panel/add_member_button" | "horizontal_button_stack_panel/padding" | "horizontal_button_stack_panel/send_button" | "vertical_buttons_top_panel" | "vertical_buttons_top_panel/add_friend_button" | "vertical_buttons_top_panel/add_member_button" | "vertical_buttons_bottom_panel" | "vertical_buttons_bottom_panel/send_button" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "invite_screen" | "invite_screen_content" | "invite_screen_content/gamepad_helpers" | "invite_screen_content/invite_panel"; +export type JigsawEditor = "horizontal_buffer" | "vertical_buffer" | "common_text_label" | "text_edit_box" | "help_icon" | "toggle_with_label" | "toggle_with_label/toggle" | "toggle_with_label/toggle_label_padding" | "toggle_with_label/toggle_label_wrapper" | "toggle_with_label/toggle_label_wrapper/toggle_label" | "toggle_with_label/toggle_label_wrapper/toggle_label_disabled" | "data_item_title_and_edit" | "data_item_title_and_edit/data_title" | "data_item_title_and_edit/data_text_edit" | "data_item_title_and_edit_fill" | "data_item_title_and_toggle" | "data_item_title_and_toggle/data_title" | "data_item_title_and_toggle/toggle" | "exit_buttons" | "exit_buttons/done_button" | "exit_buttons/buffer" | "exit_buttons/help_button" | "scrolling_panel_wrapper" | "scrolling_panel_wrapper/scrolling_panel" | "scrolling_panel" | "scroll_panel_content" | "scroll_panel_content/target_pool_title_and_edit" | "scroll_panel_content/buffer_1" | "scroll_panel_content/name_title_and_edit" | "scroll_panel_content/buffer_2" | "scroll_panel_content/target_title_and_edit" | "scroll_panel_content/buffer_3" | "scroll_panel_content/final_block_title_and_edit" | "scroll_panel_content/buffer_4" | "scroll_panel_content/selection_and_placement_priority" | "scroll_panel_content/buffer_5" | "scroll_panel_content/joint_type_title_and_toggle" | "scroll_panel_content/buffer_6" | "selection_and_placement_priority" | "selection_and_placement_priority/selection_priority_title_and_edit" | "selection_and_placement_priority/buffer_1" | "selection_and_placement_priority/placement_priority_title_and_edit" | "button_panel_wrapper" | "button_panel_wrapper/exit_buttons" | "jigsaw_editor_panel" | "jigsaw_editor_panel/scrolling_panel" | "jigsaw_editor_panel/button_wrapper" | "jigsaw_editor_panel/button_wrapper/buttons" | "jigsaw_editor_content" | "jigsaw_editor_content/background_panel" | "jigsaw_editor_content/title" | "jigsaw_editor_content/jigsaw_editor_panel" | "jigsaw_editor_screen"; +export type LateJoin = "animation_panel" | "animation_panel/stacked_column" | "animation_panel/stacked_column/waiting_animating_text" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_b_and_padding" | "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b" | "late_join_pregame_screen" | "late_join_screen_content" | "late_join_screen_content/animation_panel" | "late_join_screen_content/gamepad_helpers"; +export type LibraryModal = "modal_button" | "modal_text_content" | "modal_ok" | "modal_cancel" | "in_game_prompt" | "fetch_error" | "content" | "content/fetch" | "content/ingame" | "content_wrapper" | "content_wrapper/content" | "background" | "library_modal_screen" | "text_panel" | "edu_icon" | "continue_button" | "paragraph" | "welcome_text_panel" | "welcome_text_panel/padding_1" | "welcome_text_panel/paragraph_1_wrapper" | "welcome_text_panel/paragraph_1_wrapper/edu_icon" | "welcome_text_panel/paragraph_1_wrapper/stack_buffer1" | "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel" | "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel/paragraph_1" | "welcome_text_panel/padding_2" | "welcome_text_panel/paragraph_two" | "welcome_text_panel/padding_3" | "welcome_text_panel/paragraph_three" | "welcome_scrolling_panel" | "welcome_panel_content" | "welcome_panel_content/background_panel" | "welcome_panel_content/welcome_scrolling_panel" | "welcome_panel_content/continue_button" | "welcome_panel" | "welcome_panel/welcome"; +export type LocalWorldPicker = "local_world_picker_screen" | "local_world_picker_content" | "local_world_picker_content/background" | "local_world_picker_content/panel_label" | "local_world_picker_content/content"; +export type Loom = "loom_label" | "arrow_icon" | "pattern_cell_image" | "container_cell_image" | "banner_outline" | "item_empty_image" | "banner_empty_image" | "dye_empty_image" | "pattern_item_empty_image" | "toolbar_background" | "highlight_slot_panel" | "highlight_slot_panel/highlight" | "highlight_slot_panel/white_border" | "pattern_slot_button" | "pattern_slot_button/hover" | "banner_pattern" | "pattern_button" | "pattern_button/banner_pattern" | "pattern_button/item_button_ref" | "scroll_grid" | "scroll_grid_panel" | "scroll_grid_panel/grid" | "scroll_panel" | "pattern_book_panel" | "pattern_book_panel/bg" | "pattern_book_panel/scroll_panel" | "result_slot_button" | "input_item_slot" | "dye_item_slot" | "material_item_slot" | "result_item_slot" | "input_slots_stack_panel" | "input_slots_stack_panel/input_item_slot" | "input_slots_stack_panel/padding_1" | "input_slots_stack_panel/dye_item_slot" | "input_slots_stack_panel/padding_2" | "input_slots_stack_panel/material_item_slot" | "result_banner_renderer" | "top_half_stack_panel" | "top_half_stack_panel/input_slots_holder" | "top_half_stack_panel/input_slots_holder/input_slots_stack_panel" | "top_half_stack_panel/padding_1" | "top_half_stack_panel/arrow_holder" | "top_half_stack_panel/arrow_holder/arrow_icon" | "top_half_stack_panel/padding_2" | "top_half_stack_panel/result_item_slot_holder" | "top_half_stack_panel/result_item_slot_holder/result_item_slot" | "top_half_stack_panel/padding_3" | "top_half_stack_panel/result_banner_outline" | "top_half_stack_panel/result_banner_outline/result_banner_renderer" | "top_half_panel" | "top_half_panel/top_half_stack_panel" | "right_panel" | "right_panel/common_panel" | "right_panel/loom_screen_inventory" | "right_panel/loom_screen_inventory/loom_label" | "right_panel/loom_screen_inventory/top_half_panel" | "right_panel/loom_screen_inventory/inventory_panel_bottom_half_with_label" | "right_panel/loom_screen_inventory/hotbar_grid" | "help_button" | "toolbar_panel" | "toolbar_panel/toolbar_background" | "toolbar_panel/toolbar_background/toolbar_stack_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1" | "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2" | "toolbar_anchor" | "toolbar_anchor/toolbar_panel" | "center_fold" | "center_fold/center_bg" | "screen_stack_panel" | "screen_stack_panel/pattern_book_panel" | "screen_stack_panel/center_fold" | "screen_stack_panel/right_panel" | "screen_stack_panel/toolbar_anchor" | "loom_panel" | "loom_panel/screen_stack_panel" | "loom_panel/container_gamepad_helpers" | "loom_panel/selected_item_details_factory" | "loom_panel/item_lock_notification_factory" | "loom_panel/inventory_selected_icon_button" | "loom_panel/inventory_take_progress_icon_button" | "loom_panel/flying_item_renderer" | "loom_screen"; +export type LoomPocket = "vertical_arrow_icon" | "banner_empty_image" | "dye_empty_image" | "pattern_item_empty_image" | "chest_item_renderer" | "banner_item_renderer" | "loom_item_renderer" | "input_item_slot" | "dye_item_slot" | "material_item_slot" | "result_item_slot" | "right_panel" | "right_panel/content" | "right_panel/content/bg" | "right_panel/content/loom_content_stack_panel" | "right_panel/navigation_tabs_holder" | "right_panel/navigation_tabs_holder/right_navigation_tabs" | "right_tab_loom" | "right_navigation_tabs" | "right_navigation_tabs/pocket_tab_close_and_help_button" | "right_navigation_tabs/fill" | "right_navigation_tabs/right_tab_loom" | "input_slots_stack_panel" | "input_slots_stack_panel/input_item_slot" | "input_slots_stack_panel/padding_1" | "input_slots_stack_panel/dye_item_slot" | "input_slots_stack_panel/padding_2" | "input_slots_stack_panel/material_item_slot" | "result_banner_outline" | "result_banner_outline/result_banner_renderer" | "loom_content_stack_panel" | "loom_content_stack_panel/label_holder" | "loom_content_stack_panel/label_holder/loom_label" | "loom_content_stack_panel/padding_1" | "loom_content_stack_panel/input_slots_holder" | "loom_content_stack_panel/input_slots_holder/input_slots_stack_panel" | "loom_content_stack_panel/padding_2" | "loom_content_stack_panel/banner_pattern_holder" | "loom_content_stack_panel/banner_pattern_holder/result_banner_outline" | "loom_content_stack_panel/padding_3" | "loom_content_stack_panel/arrow_holder" | "loom_content_stack_panel/arrow_holder/vertical_arrow_icon" | "loom_content_stack_panel/padding_4" | "loom_content_stack_panel/result_item_slot_holder" | "loom_content_stack_panel/result_item_slot_holder/result_item_slot" | "loom_content_stack_panel/padding_5" | "inventory_scroll_panel" | "pattern_button" | "banner_pattern" | "pattern_scroll_panel" | "left_panel" | "left_panel/gamepad_helpers_and_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs" | "left_panel/content" | "left_panel/content/bg" | "left_panel/content/inventory_scroll_panel" | "left_panel/content/pattern_scroll_panel" | "left_tab_patterns" | "left_tab_inventory" | "left_navigation_tabs" | "left_navigation_tabs/left_tab_patterns" | "left_navigation_tabs/padding" | "left_navigation_tabs/left_tab_inventory" | "pocket_hotbar_and_content_panels" | "loom_panel" | "loom_panel/pocket_hotbar_and_content_panels" | "loom_panel/container_gamepad_helpers" | "loom_panel/selected_item_details_factory" | "loom_panel/item_lock_notification_factory" | "loom_panel/inventory_selected_icon_button" | "loom_panel/inventory_take_progress_icon_button" | "loom_panel/flying_item_renderer"; +export type ManageFeed = "manage_feed_item_scrolling_panel" | "manage_feed_item_scrolling_panel/manage_feed_item_scrolling_panel_content" | "manage_feed_item_scrolling_panel_content" | "grid_panel" | "grid_panel/top_spacing_gap" | "grid_panel/manage_feed_loading_grid_item" | "grid_panel/manage_feed_grid" | "grid_panel/spacing_gap2" | "grid_panel/pagination_panel" | "pagination_panel" | "manage_feed_grid" | "manage_feed_grid_item" | "manage_feed_grid_item/image_panel_instance" | "manage_feed_grid_item/manage_feed_buttons_panel" | "manage_feed_grid_item/manage_feed_text_instance" | "manage_feed_grid_item/feed_timesince_instance" | "manage_feed_grid_item/nr_of_reports" | "manage_feed_grid_item/manage_player_pic_panel" | "manage_feed_grid_item/manage_feed_gamertag_instance" | "manage_feed_buttons_panel" | "manage_feed_buttons_panel/ignore_button" | "manage_feed_buttons_panel/delete_button" | "manage_feed_loading_grid_item" | "manage_feed_loading_grid_item/loading_image_panel" | "feed_buttons_panel_loading" | "feed_buttons_panel_loading/like_button_loading" | "feed_buttons_panel_loading/spacing_gap1" | "feed_buttons_panel_loading/comment_button_loading" | "feed_buttons_panel_loading/spacing_gap2" | "feed_buttons_panel_loading/options_button_loading" | "like_button_loading" | "comment_button_loading" | "options_button_loading" | "player_pic_panel_loading" | "player_pic_panel_loading/player_gamer_pic_loading" | "player_gamer_pic_loading" | "loading_image_panel" | "loading_image_panel/progress_loading_bars" | "loading_image_panel/manage_feed_image_loading" | "loading_image_panel/no_feed_item_content" | "manage_feed_image_loading" | "ignore_button" | "ignore_content_panel" | "ignore_content_panel/ignore_label" | "delete_button" | "delete_content_panel" | "delete_content_panel/delete_label" | "manage_feed_image" | "manage_feed_image_content_panel" | "manage_feed_image_content_panel/manage_feed_image" | "manage_feed_image_content_panel/textpost_content" | "textpost_content" | "image_panel" | "image_panel/manage_feed_image_content_panel" | "manage_player_pic_panel" | "manage_player_pic_panel/manage_player_gamer_pic" | "manage_player_gamer_pic" | "content" | "content/top_bar_gradient" | "content/gamepad_helpers" | "content/return_button" | "content/reported_items_label" | "content/manage_feed_item_scrolling_panel_instance" | "manage_feed_screen" | "manage_feed_screen_content" | "manage_feed_screen_content/transparent_background" | "manage_feed_screen_content/container" | "manage_feed_screen_content/container/content"; +export type ManifestValidation = "clipboard_icon" | "clipboard_icon_wrapper" | "clipboard_icon_wrapper/icon" | "trash_icon" | "trash_icon_wrapper" | "trash_icon_wrapper/icon" | "trash_icon_wrapper/progress_loading_bars" | "refresh_icon" | "refresh_icon_wrapper" | "refresh_icon_wrapper/icon" | "refresh_icon_wrapper/progress_loading_bars" | "section_divider" | "section_divider/divider_image" | "text_label" | "icon_image" | "progress_loading_bars" | "background" | "black_background_fill" | "error_pack_secondary_layout" | "error_pack_secondary_layout/black" | "error_pack_secondary_layout/black/stack_panel" | "error_pack_secondary_layout/black/stack_panel/stack_panel" | "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background" | "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background/icon" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/title" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/padding" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/pack_size" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/description" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/padding" | "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel" | "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/top_pad" | "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh" | "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh/button" | "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/pad" | "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete" | "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete/button" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pad" | "error_pack_secondary_layout/black/stack_panel/secondary_panel" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_0" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/title_text" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/space" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset/title" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_0" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_1" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/version_text" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/space" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset/version" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_1" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_2" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/path_text" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/space" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset/description" | "error_pack_content_layout" | "error_pack_content_layout/black" | "error_pack_content_layout/black/error_panel" | "error_pack_content_layout/black/error_panel/error_header_panel" | "error_pack_content_layout/black/error_panel/error_header_panel/error_type_panel" | "error_pack_content_layout/black/error_panel/error_header_panel/button" | "error_pack_content_layout/black/error_panel/padding_0" | "error_pack_content_layout/black/error_panel/error_text_panel" | "error_pack_content_layout/black/error_panel/error_text_panel/error_text" | "error_pack_content_layout/black/error_panel/error_text_panel/space" | "error_pack_content_layout/black/error_panel/error_text_panel/offset" | "error_pack_content_layout/black/error_panel/error_text_panel/offset/error_label" | "delete_button" | "delete_text_button" | "clipboard_button" | "refresh_button" | "refresh_text_button" | "pack_secondary_info" | "pack_secondary_info/layout" | "error_content_grid" | "pack_error_item" | "pack_error_item/secondary" | "pack_error_item/error_header" | "pack_error_item/error_header/error_text" | "pack_error_item/error" | "pack_error_group" | "pack_error_group/top_padding" | "pack_error_group/errors" | "pack_error_group/padding" | "common_scrolling_panel" | "common_content" | "scrolling_offsets" | "manifest_validation_scroll_content" | "manifest_validation_scroll_content/scrolling_panel" | "common_scroll_panel" | "manifest_validation_scroll_panel" | "manifest_validation_scroll_panel/pack_error_group" | "manifest_validation_screen" | "manifest_validation_screen_content" | "manifest_validation_screen_content/background"; +export type SdlLabel = "sdl_label_factory" | "sdl_label" | "sdl_mc_ten_label"; +export type SdlDropdowns = "sdl_dropdown_rows" | "sdl_dropdown_rows/container_panel" | "sdl_dropdown_rows/container_panel/toggle" | "sdl_dropdown_rows/container_panel/pad" | "sdl_rows_toggle"; +export type SdlImageRow = "image_row_factory" | "buffer_panel" | "single_image" | "single_image/image_with_border" | "single_image/image_with_border/screenshot_image" | "single_image/image_with_border/dark_border" | "single_image/image_with_border/progress_loading" | "single_image/image_selector" | "double_image" | "triple_image_with_buffer" | "triple_image_with_buffer/buffer_panel_in_1" | "triple_image_with_buffer/buffer_panel_in_2" | "triple_image_with_buffer/triple_image" | "triple_image_with_buffer/buffer_panel_out_1" | "triple_image_with_buffer/buffer_panel_out_2"; +export type SdlTextRow = "sdl_text_row_factory" | "sdl_header_component_factory" | "label_button" | "sdl_header_component_panel" | "sdl_header_component_panel/header_background" | "sdl_header_component_panel/header_internals" | "sdl_header_component_panel/header_highlight" | "sdl_header_component_panel/text_row_header_text" | "sdl_text_row_component_panel" | "sdl_text_row_component_panel/text_background" | "sdl_text_row_component_panel/text_row_selector" | "sdl_text_row_component_panel/text_row_background" | "sdl_text_row_component_panel/text_row_component_text" | "solo_text_row" | "solo_text_row/buffer_panel_front" | "solo_text_row/headercomp_and_textcomp_panel" | "solo_text_row/headercomp_and_textcomp_panel/text_row_header_text_panel" | "solo_text_row/headercomp_and_textcomp_panel/text_row_text_panel" | "solo_text_row/buffer_panel_back"; +export type MobEffect = "effect_background" | "main_background" | "button_background" | "effect_name" | "effect_timer" | "effect_icon" | "mob_effect_grid_panel" | "mob_effect_grid_panel/mob_effect_grid" | "mob_effect_grid" | "mob_effect_grid_item" | "mob_effect_grid_item/bg" | "mob_effect_grid_item/name" | "mob_effect_grid_item/timer" | "mob_effect_grid_item/icon" | "mob_effect_list_content_panel" | "mob_effect_list_content_panel/scrolling_panel" | "mob_effect_screen_close_button" | "close_button_panel" | "close_button_panel/bg" | "close_button_panel/close_button" | "mob_effect_content" | "mob_effect_content/bg" | "mob_effect_content/close_panel" | "mob_effect_content/content_panel" | "main_screen" | "main_screen/main_screen" | "mob_effect_screen"; +export type NonXblUserManagement = "black_tint_image" | "modal_title_text" | "modal_label_text" | "modal_label_text/padding" | "modal_label_text/text" | "modal_label_panel" | "modal_left_button" | "modal_middle_button" | "modal_rightcancel_button" | "three_buttons_panel" | "three_buttons_panel/left" | "three_buttons_panel/middle" | "three_buttons_panel/right" | "two_buttons_panel" | "two_buttons_panel/left" | "two_buttons_panel/right" | "single_button_panel" | "single_button_panel/left" | "modal_dialog_with_buttons" | "modal_dialog_with_buttons/background_with_buttons" | "modal_dialog_with_buttons/title" | "modal_dialog_with_buttons/text_with_buttons" | "modal_dialog_with_buttons/button_panel" | "modal_input_panel" | "modal_input_panel/black_tint_image" | "user_confirm_dialog_screen_content" | "user_confirm_dialog_screen_content/modal_input" | "user_confirm_dialog_screen_content/modal_input/modal_bg_buttons" | "user_confirm_dialog_screen"; +export type NpcInteract = "multiline_text_edit_control" | "text_edit_control" | "label_padding" | "main_stack_panel" | "skin_button" | "skin_model" | "skin_model_clipper" | "skins_grid_item" | "skins_grid_item/clip" | "skins_grid_item/clip/model" | "skins_grid_item/button" | "skins_grid_item/selectFrame" | "skins_grid" | "cycle_pack_button" | "cycle_pack_left_button" | "cycle_pack_right_button" | "banner_fill" | "skin_picker" | "skin_picker/left" | "skin_picker/sg" | "skin_picker/right" | "name_edit" | "advanced_button" | "advanced_button/button" | "dialog_button" | "dialog_button/button" | "basic_stack_panel" | "basic_stack_panel/top_pad" | "basic_stack_panel/name_label" | "basic_stack_panel/name_padding" | "basic_stack_panel/name_edit" | "basic_stack_panel/dialog_pre_padding" | "basic_stack_panel/dialog_label" | "basic_stack_panel/dialog_post_padding" | "basic_stack_panel/dialog__padding" | "basic_stack_panel/dialog_button" | "basic_stack_panel/appearance_pre_padding" | "basic_stack_panel/appearance_label" | "basic_stack_panel/appearance_post_padding" | "basic_stack_panel/skins" | "basic_stack_panel/advanced_button" | "basic_content" | "basic_content/basic" | "advanced_stack_panel" | "advanced_stack_panel/top_pad" | "advanced_stack_panel/add_help_text" | "advanced_stack_panel/middle_pad" | "advanced_stack_panel/actions" | "advanced_stack_panel/add_buttons" | "advanced_stack_panel/bottom_pad" | "action_title" | "plus_icon" | "plus_button" | "action_text_edit" | "maximized_action_edit" | "action_edit" | "action_edit/text_edit" | "action_edit/expand" | "button_name_edit" | "command_toggle" | "command_toggle_panel" | "command_toggle_panel/command_toggle" | "command_toggle_panel/toggle_label" | "action_mode" | "action_mode/button_mode_toggle_panel" | "action_mode/on_enter_toggle_panel" | "action_mode/on_exit_toggle_panel" | "button_name_label" | "url_notifications" | "url_notifications/empty_uri_warning" | "url_notifications/invalid_uri_warning" | "action_template" | "action_template/title" | "action_template/label_pad" | "action_template/edit" | "action_template/edit_pad" | "action_template/url_warning" | "action_template/url_pad" | "action_template/action_mode" | "action_template/mode_pad" | "action_template/button_name_label" | "action_template/button_name" | "action_command" | "action_url" | "padded_action" | "padded_action/action" | "padded_action/padding" | "action" | "action/trash" | "action/command" | "action/url" | "action_panel" | "add_button" | "help_label" | "add_help_section" | "add_help_section/text_url" | "add_help_section/text_url/tts_border" | "add_help_section/text_url/wrapper_panel_url" | "add_help_section/text_url/wrapper_panel_url/text_url_a" | "add_help_section/text_url/wrapper_panel_url/padding" | "add_help_section/text_url/wrapper_panel_url/text_url_b" | "add_help_section/padding" | "add_help_section/text_command" | "add_help_section/text_command/tts_border" | "add_help_section/text_command/wrapper_panel_command" | "add_help_section/text_command/wrapper_panel_command/text_command_a" | "add_help_section/text_command/wrapper_panel_command/padding" | "add_help_section/text_command/wrapper_panel_command/text_command_b" | "add_help_text" | "add_buttons" | "add_buttons/add_url" | "add_buttons/padding" | "add_buttons/add_command" | "advanced_scrolling_panel" | "advanced_scrolling_content" | "advanced_scrolling_content/advanced" | "message_model" | "message_model/model" | "clipped_message_model" | "clipped_message_model/model" | "message_model_window" | "message_model_window/model" | "message_model_window/immersive_reader_button" | "edit_box_background" | "npc_message" | "npc_message/label" | "npc_message/visibility_panel" | "npc_message/visibility_panel/place_holder" | "npc_message/background" | "text_scroll" | "student_message_bubble" | "student_message_bubble/dialog_panel" | "student_message_bubble/dialog_panel/text_scroll" | "bubble_point" | "student_message_section" | "student_message_section/model" | "student_message_section/point" | "student_message_section/message" | "student_button_label" | "student_button_label_panel" | "student_button_label_panel/url" | "student_button_label_panel/command" | "student_button" | "student_button/button" | "student_buttons" | "student_buttons/buttons" | "student_buttons/buttons/actions" | "student_stack_panel" | "student_stack_panel/top_pad" | "student_stack_panel/message" | "student_stack_panel/message_pad" | "student_stack_panel/buttons" | "student_view_content" | "student_view_content/student" | "student_view_content/close" | "close_button_base" | "close_button_base/default" | "close_button_base/hover" | "close_button_base/pressed" | "x_close_button" | "ignorable_x_close_button" | "ignorable_x_close_button/button" | "close_button_holder" | "close_button_holder/close_basic" | "close_button_holder/close_student_edit" | "close_button_holder/close_student" | "close_button_holder/close_maximized_action_edit" | "close_button_holder/close_advanced" | "main_content" | "main_content/basic" | "main_content/advanced" | "main_content/maximized_action_edit" | "main_content/close" | "root_panel" | "gamepad_helper_exit_text" | "close_text" | "npc_screen_contents" | "npc_screen_contents/teacher" | "npc_screen_contents/student" | "npc_screen_contents/npc_screen_close" | "npc_screen"; +export type OnlineSafety = "online_safety_proceed_button" | "online_safety_back_button" | "online_safety_description" | "ip_safety_description" | "online_safety_label_panel" | "ip_safety_label_panel" | "do_not_show_checkbox" | "do_not_show_checkbox/header_description_stack_panel" | "do_not_show_checkbox/header_description_stack_panel/checkbox_visuals" | "do_not_show_checkbox/header_description_stack_panel/buffer_panel" | "do_not_show_checkbox/header_description_stack_panel/buffer_panel/label" | "do_not_show_checkbox/header_description_stack_panel/another_panel" | "online_safety_dialog" | "ip_safety_dialog" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "online_safety_screen" | "online_safety_screen_content" | "online_safety_screen_content/online_safety_dialog" | "online_safety_screen_content/gamepad_helpers" | "ip_safety_screen" | "ip_safety_screen_content" | "ip_safety_screen_content/ip_safety_dialog" | "ip_safety_screen_content/gamepad_helpers"; +export type PackSettings = "background" | "screen" | "main_screen_content" | "pack_scroll_panel" | "scrolling_content" | "scrolling_content/content_tiering_panel" | "scrolling_content/generated_form" | "content_tiering_panel" | "content_tiering_panel/label_panel" | "content_tiering_panel/label_panel/content_tier_label" | "content_tiering_panel/label_panel/unsupported_content_tier_label" | "content_tiering_panel/slider_panel" | "content_tiering_panel/slider_panel/content_tier_slider" | "content_tiering_panel/incompatible_label_panel" | "content_tiering_panel/incompatible_label_panel/label"; +export type Panorama = "panorama_view" | "panorama_view/pan_left" | "panorama_view/screenshot" | "panorama_view/pan_right" | "panorama_input_panel" | "panorama_input_panel/image_border" | "panorama_input_panel/image_border/panorama_key_art" | "panorama_input_panel/image_border/progress_loading" | "pan_left_button" | "pan_right_button"; +export type PatchNotes = "solid_texture" | "image_with_background" | "image_with_background/image" | "image_with_background/image/loading_animation" | "white_image" | "patch_main_image" | "store_image" | "patch_notes_header_background" | "patch_notes_header_background/black_background" | "patch_notes_header_background/black_background/content" | "button_label_panel" | "button_label_panel/text_label" | "button_content" | "button_content/button_label2" | "patch_image" | "patch_notes_header_content_without_offer" | "patch_notes_header_content_without_offer/patch_image" | "patch_notes_header_content_with_offer" | "patch_notes_header_content_with_offer/patch_image" | "patch_notes_header_content_with_offer/padding" | "patch_notes_header_content_with_offer/store_item_section" | "patch_notes_header_content_with_offer/store_item_section/store_image" | "patch_notes_header_content_with_offer/store_item_section/padding" | "patch_notes_header_content_with_offer/store_item_section/store_button" | "store_button" | "store_button/store_button" | "store_button/loading_animation" | "patch_notes_header" | "patch_notes_header/patch_notes_background" | "scroll_content" | "scroll_content/padding_0" | "scroll_content/patch_notes_header" | "scroll_content/padding_1" | "scroll_content/tts_label_wrapper" | "patch_notes_panel" | "patch_notes_panel/patch_notes_text" | "patch_notes_panel/patch_notes_text/loading_animation" | "patch_notes_content" | "patch_notes_content/scrolling_panel" | "continue_button" | "patch_notes_dialog" | "patch_notes_screen" | "sunsetting_button_panel" | "sunsetting_button_panel/padding_0" | "sunsetting_button_panel/more_info_button" | "sunsetting_button_panel/padding_1" | "sunsetting_button_panel/continue_button" | "sunsetting_button_panel/padding_2" | "sunsetting_button_panel/sunsetting_toggle_panel" | "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel" | "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/checkbox_visuals" | "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel" | "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel/label" | "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/another_panel" | "sunsetting_content" | "sunsetting_content/scrolling_panel" | "sunsetting_dialog" | "sunsetting_screen"; +export type Pause = "pause_icon" | "feedback_icon" | "change_skin_icon" | "take_screenshot_icon" | "settings_icon" | "achievements_icon" | "alex_icon" | "profile_gamerpic" | "button_x" | "dressing_room_controller_button_content" | "dressing_room_controller_button_content/button_x" | "dressing_room_controller_button_content/button_label_panel" | "dressing_room_controller_button_content/button_label_panel/button_label_text_left" | "controller_button_label" | "column_frame" | "dressing_room_button_gamepad" | "dressing_room_button" | "profile_button_content" | "profile_button_content/button_offset_wrapper" | "profile_button_content/button_offset_wrapper/button_x" | "profile_button_content/gamerpic_offset_wrapper" | "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border" | "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic" | "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon" | "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black" | "profile_button_content/padding_middle" | "profile_button_content/vertically_central_text" | "profile_button_content/vertically_central_text/top_padding" | "profile_button_content/vertically_central_text/profile_button_label" | "profile_button_content/padding_right" | "profile_button" | "skin_viewer_panel" | "skin_viewer_panel/paper_doll_panel" | "skin_viewer_panel/paper_doll_panel/paper_doll" | "skin_viewer_panel/paper_doll_name_tag" | "skin_panel" | "skin_panel/interior" | "skin_panel_interior" | "skin_panel_interior/offset_panel" | "skin_panel_interior/offset_panel/viewer_panel" | "skin_panel_interior/fill_1" | "skin_panel_interior/change_profile_panel" | "skin_panel_interior/change_profile_panel/centering_panel_1" | "skin_panel_interior/change_profile_panel/centering_panel_1/dressing_room_button" | "skin_panel_interior/change_profile_panel/centering_panel_2" | "skin_panel_interior/change_profile_panel/centering_panel_2/dressing_room_button_gamepad" | "skin_panel_interior/change_profile_panel/centering_panel_3" | "skin_panel_interior/change_profile_panel/centering_panel_3/profile_button" | "pause_button_template" | "grid_button_template" | "return_to_game_button" | "realms_stories_button_panel" | "realms_stories_button_panel/realms_stories_button" | "realms_stories_button_panel/unread_story_count_panel" | "realms_stories_button" | "unread_story_count_panel" | "unread_story_count_panel/text" | "unread_story_count_panel/text/background" | "store_button_panel" | "store_button_panel/store_button" | "store_button_panel/store_error_button" | "store_button" | "store_error_button" | "store_error_button_content" | "store_error_button_content/marketplace_button_label" | "settings_button" | "how_to_play_button" | "invite_players_button" | "buy_button" | "quit_button" | "feedback_button" | "feedback_icon_button" | "feedback_icon_button/feedback_button" | "take_screenshot_gamepad_button_content" | "take_screenshot_gamepad_button_content/button_y" | "take_screenshot_gamepad_button_content/take_screenshot_icon" | "take_screenshot_gamepad_button" | "achievements_button_small" | "settings_button_small" | "take_screenshot_button" | "pause_screen" | "pause_screen_content" | "pause_screen_content/pause_screen_main_panels" | "pause_screen_content/skin_panel" | "pause_screen_content/friendsdrawer_button_panel" | "pause_screen_content/gamepad_helpers" | "pause_screen_content/keyboard_helpers" | "friendsdrawer_button_panel" | "friendsdrawer_button_panel/friendsdrawer_container_stack_panel" | "friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friendsdrawer_button" | "friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friends_drawer_ftue_popup" | "pause_screen_main_panels" | "pause_screen_main_panels/menu" | "left_buttons_panel" | "left_buttons_panel/filler" | "left_buttons_panel/trialTime" | "left_buttons_panel/the_rest_panel" | "smaller_buttons_panel" | "smaller_buttons_panel/stacked_column" | "smaller_buttons_panel/stacked_column/fill_1" | "smaller_buttons_panel/stacked_column/side_padding" | "smaller_buttons_panel/stacked_column/small_settings_button" | "smaller_buttons_panel/stacked_column/small_settings_button/small_settings_btn" | "smaller_buttons_panel/stacked_column/small_settings_padding" | "smaller_buttons_panel/stacked_column/small_achievements_button" | "smaller_buttons_panel/stacked_column/small_achievements_button/small_achievements_btn" | "smaller_buttons_panel/stacked_column/small_achievements_padding" | "smaller_buttons_panel/stacked_column/take_screenshot_btn" | "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_button" | "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_gamepad_button" | "smaller_buttons_panel/stacked_column/screenshot_padding" | "smaller_buttons_panel/stacked_column/fill_3" | "smaller_buttons_panel/padding_bottom" | "social_buttons_panel" | "social_buttons_panel/friendsbutton_panel" | "social_buttons_panel/friendsbutton_panel/friendsdrawer_button" | "social_buttons_panel/friendsbutton_panel/friends_drawer__ftue_popup" | "social_buttons_panel/invitebutton_panel" | "social_buttons_panel/invitebutton_panel/invite_button" | "social_buttons_panel/invitebutton_panel/vertical_padding_2" | "the_rest_panel" | "the_rest_panel/fill_1" | "the_rest_panel/pause_menu" | "the_rest_panel/fill_3" | "paused_text" | "green_tag" | "paused_text_panel" | "paused_text_panel/pause" | "paused_text_panel/horizontal_stack" | "paused_text_panel/horizontal_stack/pause_icon" | "paused_text_panel/horizontal_stack/fill_1" | "paused_text_panel/horizontal_stack/pause" | "transparent_background" | "non_transparent_background" | "menu_the_rest_panel" | "menu_the_rest_panel/menu_button_control" | "menu_button_control" | "menu_button_control/menu_background" | "pause_announcement_panel_type" | "pause_announcement_panel_type/horizontal_stack" | "pause_announcement_panel_type/horizontal_stack/fill_1" | "pause_announcement_panel_type/horizontal_stack/pause_text" | "pause_announcement_panel_type/horizontal_stack/fill_2" | "menu_background" | "menu_background/button_panel" | "menu_background/button_panel/title_image" | "menu_background/button_panel/title_image/image" | "menu_background/button_panel/fill_1" | "menu_background/button_panel/return_to_game_button" | "menu_background/button_panel/return" | "menu_background/button_panel/realms_stories_button_panel" | "menu_background/button_panel/realms_stories" | "menu_background/button_panel/buy_button" | "menu_background/button_panel/buy" | "menu_background/button_panel/store_button_panel" | "menu_background/button_panel/store_button_panel_padding" | "menu_background/button_panel/quit_button" | "menu_background/button_panel/smaller_buttons" | "menu_background/button_panel/pause_panel" | "info_panel_content_list" | "info_panel_content_list/player_list_scrolling_panel" | "info_panel_content_list/vertical_padding" | "info_panel_background" | "info_panel" | "info_panel/info_panel_background" | "info_panel/info_panel_list" | "player_panel_background" | "player_panel_background/player_list_scrolling_panel" | "player_list" | "player_list/vertical_padding_0" | "player_list/social_buttons_panel" | "player_list/players_label" | "player_list/vertical_padding_4" | "player_list/players_grid_panel" | "player_list/vertical_padding_5" | "player_list/invite_players_button_panel" | "player_list/vertical_padding_6" | "player_list/disconnected_from_multiplayer_label_panel" | "player_list/vertical_padding_7" | "player_lists" | "player_lists/normal_list" | "player_lists/scoreboard_list" | "player_list_scrolling_panel" | "disconnected_label" | "disconnected_from_multiplayer_label_panel" | "disconnected_from_multiplayer_label_panel/disconnected_from_xbox_live_label" | "disconnected_from_multiplayer_label_panel/disconnected_from_third_party_label" | "disconnected_from_multiplayer_label_panel/disconnected_from_adhoc_label" | "disconnected_from_multiplayer_label_panel/disconnected_from_crossplatform_multiplayer" | "disconnected_from_multiplayer_label_panel/disconnected_from_multiplayer" | "invite_players_button_panel" | "invite_players_button_panel/invite_players_button" | "ip_label" | "players_label" | "players_grid" | "player_grid_item" | "player_grid_item/player_grid_item_content" | "player_grid_item_content" | "player_grid_item_content/player_button_panel" | "player_grid_item_content/player_button_panel/player_button_banner" | "player_grid_item_content/player_button_panel/player_button_banner/player_button" | "player_grid_item_content/player_button_panel/player_button_banner/player_banner" | "player_grid_item_content/player_button_panel/player_permission_button_padding" | "player_grid_item_content/player_permission_button_panel" | "player_grid_item_content/player_permission_button_panel/player_permission_button" | "player_permission_button" | "player_permission_button_content" | "player_permission_button_content/permission_icon_image" | "vertical_padding" | "horizontal_padding" | "player_button_content" | "player_button_content/player_pic_panel" | "player_button_content/player_gamertag" | "player_button_content/platform_icon" | "player_button" | "player_banner" | "player_pic_panel" | "player_pic_panel/player_gamer_pic" | "player_pic_panel/player_local_icon" | "player_local_icon" | "player_gamer_pic" | "player_gamer_pic/player_panel_black_border" | "gametag_wrapper" | "gametag_wrapper/gamertag" | "platform_icon_panel" | "platform_icon_panel/platform_icon" | "player_gamertag" | "platform_icon" | "player_grid_banner_no_focus" | "player_grid_banner" | "player_grid_banner/player_grid_banner_no_focus" | "player_grid_banner/player_grid_banner_no_focus/player_button_content" | "player_grid_banner/focus_border_button" | "focus_border_button" | "focus_border_button/default" | "focus_border_button/hover" | "focus_border_button/pressed" | "focus_border" | "pause_screen_border" | "filler_panel" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_y" | "keyboard_helpers" | "keyboard_helpers/keyboard_helper_keys"; +export type Pdp = "download_progress" | "download_progress/stacker" | "download_progress/stacker/sizer_text" | "download_progress/stacker/sizer_text/download_progress_text" | "download_progress/stacker/sizer_bar" | "download_progress/stacker/sizer_bar/download_progress_bar" | "summary_box_button_panel" | "summary_box_button_panel/buttons_panel" | "summary_box_button_panel/download_buttons_panel" | "summary_box_button_panel/focus_border" | "interaction_button_content" | "interaction_button_content/line1_panel" | "interaction_button_content/line1_panel/upsell_text" | "interaction_button_panel" | "interaction_button_panel/content_action_button" | "interaction_button_panel/progress_bar" | "interaction_button_panel/focus_border" | "download_progress_small" | "download_progress_small/stacker" | "download_progress_small/stacker/sizer_text" | "download_progress_small/stacker/sizer_text/download_progress_text" | "download_progress_small/stacker/sizer_bar" | "download_progress_small/stacker/sizer_bar/download_progress_bar" | "progress_loading_anim" | "focus_border" | "focus_border/default" | "focus_border/default/loading_anim" | "focus_border/hover" | "focus_border/hover/loading_anim" | "focus_border/pressed" | "focus_border/pressed/loading_anim" | "purchase_button_base" | "deactivated_purchase_button_base" | "download_buttons_panel" | "download_buttons_panel/progress_panel" | "download_buttons_panel/progress_panel/progress_bar" | "smooth_purchase_buttons_panel" | "smooth_purchase_buttons_panel/activated_purchase_buttons_panel" | "smooth_purchase_buttons_panel/deactivated_purchase_buttons_panel" | "smooth_buttons_panel" | "smooth_buttons_panel/purchase_buttons_panel" | "smooth_buttons_panel/interact_filling_button" | "smooth_buttons_panel/interact_exit_world_filling_button" | "disabled_interact_label_formfitting" | "disabled_interact_label_formfitting/info_icon" | "disabled_interact_label_formfitting/info_icon_pad" | "disabled_interact_label_formfitting/interact_label_panel" | "disabled_interact_label_formfitting/interact_label_panel/interact_label_text_left" | "disabled_interact_label_formfitting/pad" | "interact_label_text" | "activated_smooth_purchase_buttons_panel" | "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel" | "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel/smooth_purchase_with_coins_button" | "activated_smooth_purchase_buttons_panel/pad_h1" | "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel" | "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel/purchase_with_currency_button" | "deactivated_purchase_hover_popup" | "deactivated_smooth_purchase_buttons_panel" | "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button" | "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/deactivated_purchase_hover_popup" | "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/content" | "deactivated_smooth_purchase_buttons_panel/pad_h1" | "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel" | "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel/deactivated_purchase_with_currency_button" | "smooth_save_share_button_panel" | "smooth_save_share_button_panel/pad_0" | "smooth_save_share_button_panel/share_button" | "smooth_save_share_button_panel/pad_1" | "smooth_save_share_button_panel/save_button" | "currency_purchase_label" | "currency_purchase_label/currency_purchase_label_text" | "coin_image" | "smooth_currency_purchase_label" | "smooth_currency_purchase_label/currency_purchase_label_text" | "discount_label" | "discount_label/label_panel" | "discount_label/label_panel/label" | "discount_label/icon_panel" | "discount_label/icon_panel/icon" | "coin_purchase_label_text" | "smooth_coin_purchase_label_formfitting" | "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel" | "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel" | "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner" | "smooth_coin_purchase_label_formfitting/markdown_panel" | "smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label" | "smooth_coin_purchase_label_formfitting/fill_pad_left" | "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel" | "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin" | "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel" | "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left" | "smooth_coin_purchase_label_formfitting/pad" | "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel" | "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin" | "smooth_coin_purchase_label_formfitting/fill_pad_right" | "disabled_smooth_coin_purchase_label_formfitting" | "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel" | "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel" | "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner" | "disabled_smooth_coin_purchase_label_formfitting/markdown_panel" | "disabled_smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label" | "disabled_smooth_coin_purchase_label_formfitting/fill_pad_left" | "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel" | "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel/info_bulb" | "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel" | "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin" | "disabled_smooth_coin_purchase_label_formfitting/info_icon_pad" | "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel" | "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left" | "disabled_smooth_coin_purchase_label_formfitting/pad" | "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel" | "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin" | "disabled_smooth_coin_purchase_label_formfitting/fill_pad_right" | "share_icon" | "share_label" | "share_label/share_image_offset_panel" | "share_label/share_image_offset_panel/link_share" | "save_label_panel" | "save_label_panel/heart_image" | "save_label_panel/progress_loading" | "save_label" | "save_label/save_image_offset_panel" | "save_label/save_image_offset_panel/full_heart" | "save_label/save_image_offset_panel/empty_heart" | "large_button_coin_purchase_label" | "large_button_coin_purchase_label/markdown_banner_filler_panel" | "large_button_coin_purchase_label/center_markdown_panel" | "large_button_coin_purchase_label/center_markdown_panel/markdown_banner" | "large_button_coin_purchase_label/sales_padding_0" | "large_button_coin_purchase_label/price_markdown_panel" | "large_button_coin_purchase_label/price_markdown_panel/price_markdown_label" | "large_button_coin_purchase_label/sales_padding_1" | "large_button_coin_purchase_label/left_coin_image_offset_panel" | "large_button_coin_purchase_label/left_coin_image_offset_panel/coin" | "large_button_coin_purchase_label/coin_purchase_label_panel" | "large_button_coin_purchase_label/coin_purchase_label_panel/coin_purchase_label_text" | "large_button_coin_purchase_label/right_coin_image_offset_panel" | "large_button_coin_purchase_label/right_coin_image_offset_panel/coin" | "large_button_coin_purchase_label/fill_padding_1" | "price_markdown_panel" | "price_markdown_panel/offer_price" | "price_markdown_panel/offer_price/text_strike_through" | "vertical_padding_2px" | "vertical_padding_4px" | "vertical_padding_fill" | "horizontal_padding_2px" | "horizontal_padding_4px" | "horizontal_padding_8px" | "horizontal_padding_fill" | "empty_content_panel" | "section_header" | "section_header/header_label" | "content_section_bg" | "content_section_bg/pad" | "content_section_bg/section_header" | "content_section_bg/bg_and_content" | "content_section_bg/bg_and_content/bg" | "content_section_boarder_bg" | "content_section_boarder_bg/pad" | "content_section_boarder_bg/bg_and_content" | "content_section_boarder_bg/bg_and_content/bg" | "content_section_boarder_bg/bg_and_content/bg/inner" | "content_section_boarder_bg/pad_3" | "content_section_boarder_bg/divider_3" | "summary_factory_object" | "summary_factory_object/summary" | "summary_factory_object/navigation_tab_section" | "summary_factory_object/update_notification_section" | "screenshot_carousel_factory_object" | "screenshot_carousel_factory_object/resource_pack_content_panel" | "screenshot_carousel_factory_object/pad_3" | "screenshot_carousel_factory_object/divider_3" | "image_gallery_factory_object" | "image_gallery_factory_object/resource_pack_content_panel" | "left_text_right_image_factory_object" | "left_text_right_image_factory_object/resource_pack_content_panel" | "right_text_left_image_factory_object" | "right_text_left_image_factory_object/resource_pack_content_panel" | "skin_pack_section_factory_object" | "skin_pack_section_factory_object/skin_pack_section_factory_content" | "skin_pack_section_factory_object/skin_pack_section_factory_content/skin_pack_content_panel" | "skin_pack_section_factory_object/skin_pack_section_factory_content/pad_3" | "skin_pack_section_factory_object/skin_pack_section_factory_content/divider_3" | "panorama_view_factory_object" | "panorama_view_factory_object/panorama_view_content_panel" | "panorama_view_factory_object/pad_3" | "panorama_view_factory_object/divider_3" | "ratings_factory_object" | "ratings_factory_object/rating_factory_object_content" | "focus_container_button" | "focus_container_button/default" | "bundle_summary_factory_object" | "bundle_summary_factory_object/bundle_summary_factory_object_content" | "pdp_cycle_offer_row_content" | "pdp_cycle_offer_row_content/store_row_panel" | "pdp_cycle_offer_row_content/pad_3" | "pdp_cycle_offer_row_content/divider_3" | "pdp_cycle_offer_row_section" | "recently_viewed_viewed_factory_object" | "scrolling_content_stack" | "warning_image" | "scaling_rating" | "scaling_rating/empty_rating" | "scaling_rating/empty_rating/full_rating" | "scaling_rating_new" | "scaling_rating_new/empty_rating" | "scaling_rating_new/empty_rating/full_rating" | "chart_section" | "chart_section/stack" | "chart_section/stack/star_number_panel" | "chart_section/stack/star_number_panel/star_number" | "chart_section/stack/star_panel" | "chart_section/stack/star_panel/star_img" | "chart_section/stack/pad_0" | "chart_section/stack/bar_panel" | "chart_section/stack/bar_panel/bar" | "chart_section/stack/bar_panel/bar/full_bar" | "chart_section/stack/pad_1" | "chart_section/stack/percent" | "ratings_chart" | "ratings_chart/5_star" | "ratings_chart/4_star" | "ratings_chart/3_star" | "ratings_chart/2_star" | "ratings_chart/1_star" | "ratings_chart_panel" | "ratings_chart_panel/ratings_chart_content" | "ratings_chart_panel/ratings_chart_content/pad_0" | "ratings_chart_panel/ratings_chart_content/title" | "ratings_chart_panel/ratings_chart_content/title/title_text" | "ratings_chart_panel/ratings_chart_content/pad_1" | "ratings_chart_panel/ratings_chart_content/rating_panel" | "ratings_chart_panel/ratings_chart_content/rating_panel/rating" | "ratings_chart_panel/ratings_chart_content/rating_panel/rating/rating_bar" | "ratings_chart_panel/ratings_chart_content/rating_panel/rating/pad" | "ratings_chart_panel/ratings_chart_content/rating_text_panel" | "ratings_chart_panel/ratings_chart_content/rating_text_panel/rating_text" | "ratings_chart_panel/ratings_chart_content/count_panel" | "ratings_chart_panel/ratings_chart_content/count_panel/count" | "ratings_chart_panel/ratings_chart_content/pad_2" | "ratings_chart_panel/ratings_chart_content/chart" | "ratings_chart_panel/ratings_chart_content/pad_3" | "ratings_box" | "ratings_box/ratings_panel_focus_point" | "ratings_box/ratings_full_panel" | "ratings_box/ratings_full_panel/ratings_chart_and_button" | "ratings_box/ratings_full_panel/ratings_chart_and_button/chart" | "ratings_box/ratings_full_panel/ratings_chart_and_button/pad_1" | "ratings_box/divider" | "user_rating_star_button" | "user_rating_star_button/default" | "user_rating_star_button/default/default_user_rating_star" | "user_rating_star_button/hover" | "user_rating_star_button/hover/hover_user_rating_star" | "user_rating_star_list_grid" | "ratings_interact_panel" | "ratings_interact_panel/title_text" | "ratings_interact_panel/pad_vertical_4px" | "ratings_interact_panel/rating_stars_and_button_panel" | "ratings_interact_panel/rating_stars_and_button_panel/fill_stars" | "ratings_interact_panel/rating_stars_and_button_panel/fill_stars/rating_buttons" | "ratings_interact_panel/rating_stars_and_button_panel/pad_3_percent" | "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel" | "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel/submit" | "ratings_interact_panel/pad_vertical_8px" | "ratings_interact_panel/fill_pad" | "ratings_interact_panel/fill_pad/text" | "ratings_interact_panel/send_feedback_button" | "ratings_interact_panel/pad_1" | "ratings_info_panel" | "ratings_info_panel/ratings" | "ratings_info_panel/ratings_right" | "ratings_info_panel/ratings_right/ratings_interact_panel" | "ratings_content_panel" | "panorama_view_content" | "panorama_view_content/panorama_panel" | "panorama_view_content/panorama_panel/panorama_content" | "skins" | "skin_pack_content_panel" | "resource_pack_content" | "resource_pack_content/screenshots" | "image_row_left_text_content" | "image_row_left_text_content/buffer_panel_front" | "image_row_left_text_content/text_section" | "image_row_left_text_content/text_section/left_header" | "image_row_left_text_content/text_section/left_text" | "image_row_left_text_content/text_section/buffer_panel_bottom" | "image_row_left_text_content/buffer_panel_mid" | "image_row_left_text_content/screenshots_single" | "image_row_left_text_content/buffer_panel_back" | "image_row_right_text_content" | "image_row_right_text_content/buffer_panel_front" | "image_row_right_text_content/screenshots_single" | "image_row_right_text_content/buffer_panel_mid" | "image_row_right_text_content/text_section" | "image_row_right_text_content/text_section/right_header" | "image_row_right_text_content/text_section/right_text" | "image_row_right_text_content/text_section/buffer_panel_bottom" | "image_row_right_text_content/buffer_panel_back" | "image_row_content" | "image_row_content/screenshots_triple" | "play_button" | "csb_expiration" | "csb_expiration/background" | "csb_expiration/background/content_stack_panel" | "csb_expiration/background/content_stack_panel/icon_wrapper" | "csb_expiration/background/content_stack_panel/icon_wrapper/icon" | "csb_expiration/background/content_stack_panel/text_wrapper" | "csb_expiration/background/content_stack_panel/text_wrapper/text" | "summary_content_left_side" | "summary_content_left_side/pad_left" | "summary_content_left_side/full_content" | "summary_content_left_side/full_content/top" | "summary_content_left_side/full_content/top/image" | "summary_content_left_side/full_content/top/image/key_image" | "summary_content_left_side/full_content/top/image/key_image/border" | "summary_content_left_side/full_content/top/image/key_image/csb_expiration_banner" | "summary_content_left_side/full_content/top/image/key_image/video_overlay_button" | "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/mask" | "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/default" | "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/hover" | "summary_content_left_side/full_content/top/image/key_image/rtx_label" | "summary_content_left_side/full_content/top/divider" | "summary_content_left_side/full_content/top/info" | "summary_content_left_side/full_content/top/info/summary_title_and_author_panel" | "summary_content_left_side/full_content/top/info/pad_fill" | "summary_content_left_side/full_content/top/info/glyph_section" | "summary_content_left_side/full_content/top/info/glyph_section/glyph_section_panel" | "summary_content_left_side/full_content/top/info/ratings_summary" | "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display" | "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel" | "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel/rating" | "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/summary_rating_button" | "summary_content_left_side/full_content/top/info/vibrant_visuals_badge_and_hover" | "summary_content_left_side/full_content/bottom" | "offer_title_label" | "title_and_author_panel" | "title_and_author_panel/title_panel" | "title_and_author_panel/author_button_panel" | "title_and_author_panel/author_button_panel/summary_author_button" | "description_label" | "warning_stack_panel" | "warning_stack_panel/warning_icon" | "warning_stack_panel/pad_0" | "warning_stack_panel/warning_text_panel" | "warning_stack_panel/warning_text_panel/warning_text" | "warning_panel" | "warning_panel/background" | "warning_panel/content_stack_panel" | "description_toggle_show_button_panel" | "description_toggle_show_button_panel/description_bottom_right_button_border" | "description_toggle_show_button_panel/description_toggle_show_button" | "description_toggle_show_button_panel/warning_icon" | "vibrant_visuals_underline_button" | "vibrant_visuals_hover_popup" | "vibrant_visuals_badge_display" | "vibrant_visuals_badge_display/vibrant_visuals_underline_button" | "vibrant_visuals_badge_and_hover" | "vibrant_visuals_badge_and_hover/vibrant_visuals_hover_popup" | "vibrant_visuals_badge_and_hover/vibrant_visuals_badge_display" | "glyph_icon" | "glyph_count_label" | "glyph_count_underline_button" | "glyph_count_hover_underline_button_panel" | "glyph_count_hover_underline_button_panel/glyph_hover_popup" | "glyph_count_hover_underline_button_panel/glyph_count_underline_button" | "glyph_icon_with_count" | "glyph_icon_with_count/glyph_icon" | "glyph_icon_with_count/horizontal_padding" | "glyph_icon_with_count/item_glyph_count_panel_label" | "glyph_panel_hover_popup" | "glyph_panel_mashup_hover_popup" | "mashup_glyph_tooltip_content" | "mashup_glyph_tooltip_content/mashup_text_row" | "mashup_glyph_tooltip_content/mashup_text_row/info_icon" | "mashup_glyph_tooltip_content/mashup_text_row/mashup_line_one" | "mashup_glyph_tooltip_content/mashup_line_two" | "mashup_glyph_tooltip_content/offset_panel" | "mashup_glyph_tooltip_content/offset_panel/basic_vertical_glyph_section_panel" | "glyph_section_mashup" | "glyph_section_skin" | "glyph_section_resource_pack" | "glyph_section_world" | "glyph_section_addon" | "basic_vertical_glyph_section_panel" | "basic_vertical_glyph_section_panel/glyph_section_skin" | "basic_vertical_glyph_section_panel/glyph_section_world" | "basic_vertical_glyph_section_panel/glyph_section_resource_pack" | "basic_vertical_glyph_section_panel/glyph_section_addon" | "vertical_glyph_section_panel" | "vertical_glyph_section_panel/glyph_section_mashup" | "vertical_glyph_section_panel/basic_vertical_glyph_section_panel" | "summary_text_panel" | "summary_text_panel/top_interact_button_stack" | "summary_text_panel/top_interact_button_stack/top_interact" | "summary_text_panel/apply_to_realm_panel" | "summary_text_panel/apply_to_realm_panel/apply_to_realm_button" | "summary_text_panel/in_csb_panel" | "summary_text_panel/in_csb_panel/in_csb_button" | "summary_text_panel/progress_loading_anim_panel" | "summary_text_panel/progress_loading_anim_panel/progress_loading_anim" | "summary_text_panel/pad_0" | "summary_text_panel/disclaimer_panel" | "summary_text_panel/pad_1" | "summary_text_panel/save_share_button_panel" | "summary_text_panel/pad_2" | "info_bulb_image" | "info_bulb_image_small" | "info_bulb_image_small_centered" | "info_bulb_image_small_centered/top_filler" | "info_bulb_image_small_centered/middle_panel" | "info_bulb_image_small_centered/middle_panel/front_filler" | "info_bulb_image_small_centered/middle_panel/info_bulb" | "info_bulb_image_small_centered/middle_panel/bottom_filler" | "info_bulb_image_small_centered/bottom_filler" | "realms_incompatable_content" | "realms_incompatable_content/realms_content_stack_panel" | "realms_incompatable_content/realms_content_stack_panel/info_bulb_image" | "realms_incompatable_content/realms_content_stack_panel/padding" | "realms_incompatable_content/realms_content_stack_panel/realms_incompatable_button_label" | "apply_to_realm_button" | "in_csb_button" | "read_more_button" | "read_more_button/default" | "read_more_button/hover" | "read_more_button/pressed" | "summary_content_right_side" | "summary_content_right_side/pad_middle" | "summary_content_right_side/text" | "summary_content_right_side/entitlements_progress_panel" | "summary_content_right_side/entitlements_progress_panel/progress_loading" | "summary_content_right_side/pad_right" | "summary_content_whole_stack_panel" | "summary_content_whole_stack_panel/left_side" | "summary_content_whole_stack_panel/divider_panel" | "summary_content_whole_stack_panel/right_side" | "summary_content_panel" | "summary_content_panel/pad_top" | "summary_content_panel/summary_content_whole_stack" | "summary_content_panel/pad_3" | "summary_content_panel/divider_3" | "appearance_status_image_panel" | "appearance_status_image_panel/limited_status_image" | "appearance_status_image_panel/no_restrictions_status_image" | "appearance_status_content" | "appearance_status_content/appearance_status_image_panel" | "appearance_status_content/last_update_panel" | "appearance_status_content/last_update_panel/last_update_label" | "dynamic_tooltip_notification_panel" | "dynamic_tooltip_notification_panel/default" | "dynamic_tooltip_notification_panel/hover" | "dynamic_tooltip_notification_panel/pressed" | "update_notification_content" | "update_notification_content/dynamic_tooltip_notification_panel" | "update_notification_content/status" | "update_notification_stack_panel" | "update_notification_stack_panel/pad_0" | "update_notification_stack_panel/content" | "update_notification_stack_panel/pad_1" | "tag_base" | "tag_button_panel" | "tag_button_panel/button" | "tag_button_panel/button/default" | "tag_button_panel/button/hover" | "tag_button_panel/button/pressed" | "tag_button_panel/button/label" | "tag_row_factory" | "player_count_button_panel" | "player_count_button_panel/player_count_button" | "player_count_button_panel/comma" | "player_count_factory" | "language_button_panel" | "language_button_panel/language_button" | "language_button_panel/comma" | "language_row_factory" | "description_inner_panel" | "description_inner_panel/description_stack_panel" | "description_inner_panel/description_stack_panel/pad_0" | "description_inner_panel/description_stack_panel/title_stack_panel" | "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel" | "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_label_icon" | "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/pad_0" | "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel" | "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel/title_label" | "description_inner_panel/description_stack_panel/title_stack_panel/pad_0" | "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel" | "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel/divider" | "description_inner_panel/description_stack_panel/title_stack_panel/pad_1" | "description_inner_panel/description_stack_panel/description_text_panel_full" | "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded" | "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/description_label" | "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/pad_0" | "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/warning_panel" | "description_inner_panel/description_stack_panel/description_text_panel_full/button_panel" | "description_inner_panel/description_stack_panel/description_text_panel_collapsed" | "description_inner_panel/description_stack_panel/description_text_panel_collapsed/description_text_collapsed" | "description_inner_panel/description_stack_panel/description_text_panel_collapsed/collapsed_show_more_panel" | "description_inner_panel/description_stack_panel/pad_1" | "description_inner_panel/description_stack_panel/divider_panel" | "description_inner_panel/description_stack_panel/divider_panel/divider" | "description_inner_panel/description_stack_panel/pad_2" | "description_inner_panel/description_stack_panel/tags_panel" | "description_inner_panel/description_stack_panel/tags_panel/label_text_panel" | "description_inner_panel/description_stack_panel/tags_panel/label_text_panel/label_text" | "description_inner_panel/description_stack_panel/tags_panel/pad" | "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel" | "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory_with_rows" | "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory" | "description_inner_panel/description_stack_panel/genre_panel" | "description_inner_panel/description_stack_panel/genre_panel/label_text" | "description_inner_panel/description_stack_panel/genre_panel/pad" | "description_inner_panel/description_stack_panel/genre_panel/text_panel" | "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel" | "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/genre_button" | "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/pad_0" | "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/slash_divider" | "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/subgenre_button" | "description_inner_panel/description_stack_panel/players_panel" | "description_inner_panel/description_stack_panel/players_panel/label_text" | "description_inner_panel/description_stack_panel/players_panel/pad" | "description_inner_panel/description_stack_panel/players_panel/text_panel" | "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel" | "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel" | "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_button_factory" | "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/pad" | "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_range_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" | "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/note_text" | "description_inner_panel/description_stack_panel/languages_panel" | "description_inner_panel/description_stack_panel/languages_panel/label_text_panel" | "description_inner_panel/description_stack_panel/languages_panel/label_text_panel/label_text" | "description_inner_panel/description_stack_panel/languages_panel/pad" | "description_inner_panel/description_stack_panel/languages_panel/languages_factory" | "description_inner_panel/description_stack_panel/pad_3" | "description_inner_panel/description_stack_panel/show_less_button_panel" | "description_section" | "changelog_section" | "bundle_thumbnail" | "bundle_thumbnail_section_content" | "bundle_thumbnail_section_content/bundle_thumbnail_grid" | "bundle_thumbnail_section" | "price_panel" | "price_panel/coin_non_sale_price_label" | "price_panel/price_padding" | "price_panel/offer_prompt_panel" | "price_panel/offer_prompt_panel/offer_status_text" | "price_panel/padding_3" | "price_panel/coin_panel" | "price_panel/coin_panel/offer_coin_icon" | "rating_and_coins_panel" | "rating_and_coins_panel/rating_panel" | "rating_and_coins_panel/rating_padding_coin" | "rating_and_coins_panel/price_panel" | "bundle_offer_texture" | "bundle_offer_texture/texture" | "bundle_offer_texture/texture/border" | "bundle_offer_info" | "bundle_offer_info/top_padding" | "bundle_offer_info/offer_title_and_author_panel" | "bundle_offer_info/glyph_section" | "bundle_offer_info/glyph_description_padding" | "bundle_offer_info/description_panel" | "bundle_offer_info/description_padding" | "bundle_offer_info/description_padding_bottom" | "bundle_offer_info/rating_and_price_panel" | "bundle_offer_info/bottom_padding" | "bundle_offer_summary_grid_item_content" | "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel" | "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/focus_border" | "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel" | "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/key_art" | "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/mid_padding" | "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/info" | "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/right_padding" | "bundle_offer_summary_grid_item" | "bundle_offer_summary_grid_item/bundle_offer_summary_button" | "bundle_offer_content_section" | "bundle_offer_content_section/bundle_grid" | "bundle_summary_section_panel" | "bundle_summary_section_panel/bundle_summary_section" | "bundle_summary_section_panel/bundle_summary_section/bundle_header_and_thumnails_section" | "bundle_summary_section_panel/bundle_summary_section/mid_padding" | "bundle_summary_section_panel/bundle_summary_section/bundle_offers_info_section" | "bundle_summary_section_panel/bundle_summary_section/mid_padding_2" | "bundle_summary_section_panel/bundle_summary_section/interact_panel" | "bundle_summary_section_panel/bundle_summary_section/interact_panel/bundle_interact" | "bundle_summary_section_panel/divider_3" | "pdp_screen" | "mashup_screen_content" | "mashup_screen_content/header" | "mashup_screen_content/popup_dialog_factory" | "mashup_screen_main" | "mashup_screen_main/pack_content" | "mashup_screen_main/progress_loading"; +export type PdpScreenshots = "banner_empty" | "screenshot_carousel" | "screenshot_carousel/screenshot_carousel_content" | "screenshot_carousel/screenshot_carousel_content/cycle_pack_left_button" | "screenshot_carousel/screenshot_carousel_content/screenshots_grid" | "screenshot_carousel/screenshot_carousel_content/cycle_pack_right_button" | "screenshots_grid" | "screenshots_grid/left_image_panel" | "screenshots_grid/middle_image_panel" | "screenshots_grid/right_image_panel" | "screenshots_grid_item" | "screenshots_grid_item/frame" | "screenshots_grid_item/frame/screenshot_button" | "screenshots_grid_item/frame/screenshot_button/hover" | "screenshots_grid_item/frame/screenshot_button/pressed" | "screenshots_grid_item/screenshot_image" | "screenshots_grid_item/progress_loading"; +export type Permissions = "permissions_screen" | "permissions_screen_content" | "permissions_screen_content/top_bar_panel" | "permissions_screen_content/content_panel" | "top_bar_panel" | "top_bar_panel/top_bar" | "top_bar_panel/back_button" | "top_bar_panel/gamepad_helper_b" | "top_bar_panel/title_label" | "content_panel" | "content_panel/content_stack_panel" | "content_panel/content_stack_panel/content_padding_1" | "content_panel/content_stack_panel/ip_label" | "content_panel/content_stack_panel/world_label" | "content_panel/content_stack_panel/content_padding_2" | "content_panel/content_stack_panel/player_and_permissions_panel" | "player_and_permissions_panel" | "player_and_permissions_panel/selector_area" | "player_and_permissions_panel/content_area" | "selector_area" | "selector_area/player_scrolling_panel" | "content_area" | "content_area/permissions_options_background" | "content_area/permissions_options_background/permissions_options_background_image" | "content_area/permissions_options_background/permissions_options_background_image/permissions_options_scrolling_panel" | "content_area/inactive_modal_pane_fade" | "kick_button" | "ban_button" | "players_grid_panel" | "players_grid_panel/players_grid" | "players_grid" | "player_grid_item" | "player_grid_item/player_toggle" | "player_grid_item/inactive_modal_pane_fade" | "permissions_options_scrolling_panel" | "permissions_options_panel" | "permissions_options_panel/inner_permissions_options_panel" | "permissions_options_panel/inner_permissions_options_panel/permissions_options_stack_panel" | "permissions_options_stack_panel" | "permissions_options_stack_panel/permissions_padding_0" | "permissions_options_stack_panel/world_template_option_lock_panel" | "permissions_options_stack_panel/world_template_option_lock_panel/option_info_label" | "permissions_options_stack_panel/permissions_padding_1" | "permissions_options_stack_panel/permission_level_dropdown" | "permissions_options_stack_panel/permissions_padding_2" | "permissions_options_stack_panel/permissions_options_grid" | "permissions_options_stack_panel/permissions_padding_3" | "permissions_options_stack_panel/permissions_kick_button_panel" | "permissions_options_stack_panel/permissions_padding_4" | "permissions_options_stack_panel/permissions_ban_button_panel" | "permissions_options_stack_panel/permissions_padding_5" | "permissions_options_grid" | "permissions_options_grid_item" | "permissions_options_grid_item/option_label_panel" | "permissions_options_grid_item/option_label_panel/option_label" | "permissions_options_grid_item/option_state_label_panel" | "permissions_options_grid_item/option_state_label_panel/option_state_label" | "permissions_options_grid_item/option_toggle" | "permissions_kick_button_panel" | "permissions_kick_button_panel/kick_button" | "permissions_ban_button_panel" | "permissions_ban_button_panel/ban_button" | "title_label" | "ip_label" | "world_label" | "gamertag_label" | "option_state_label" | "option_label" | "top_bar" | "banner_background" | "player_local_icon" | "player_gamer_pic" | "player_gamer_pic/player_panel_black_border" | "back_button" | "back_button_content" | "back_button_content/chevron_panel" | "back_button_content/chevron_panel/left_chevron" | "back_button_content/back_button_padding" | "back_button_content/label_panel" | "back_button_content/label_panel/label" | "player_toggle" | "player_button_content" | "player_button_content/player_pic_panel" | "player_button_content/player_button_padding_1" | "player_button_content/gamertag_panel" | "player_button_content/gamertag_panel/gamertag_label" | "player_button_content/icon_panel" | "player_button_content/icon_panel/dropdown_icon_image" | "player_button_content/player_button_padding_2" | "player_pic_panel" | "player_pic_panel/player_gamer_pic" | "player_pic_panel/player_local_icon" | "option_toggle" | "permission_level_dropdown" | "radio_title_and_icon" | "radio_title_and_icon/radio_icon" | "radio_title_and_icon/radio_title" | "radio_content_with_title_bar" | "radio_content_with_title_bar/title_and_icon" | "radio_content_with_title_bar/helper_text" | "radio_content_with_title_bar/bottom_padding" | "radio_visuals_with_title" | "radio_visuals_with_title/radio_content" | "radio_visuals_with_title_hover" | "radio_visuals_with_title_hover/radio_content" | "permissions_visitor_visuals_with_title_normal" | "permissions_visitor_visuals_with_title_hover" | "permissions_member_visuals_with_title_normal" | "permissions_member_visuals_with_title_hover" | "permissions_op_visuals_with_title_normal" | "permissions_op_visuals_with_title_hover" | "permissions_visitor_radio_visuals_normal" | "permissions_visitor_radio_visuals_hover" | "permissions_member_radio_visuals_normal" | "permissions_member_radio_visuals_hover" | "permissions_op_radio_visuals_normal" | "permissions_op_radio_visuals_hover" | "permissions_custom_radio_visuals_normal" | "permissions_custom_radio_visuals_hover" | "permission_level_radio" | "permission_level_radio/radio_with_label_core" | "permission_level_dropdown_content" | "permission_level_dropdown_state_content" | "permission_level_dropdown_state_content/icon_panel" | "permission_level_dropdown_state_content/icon_panel/dropdown_icon_image" | "permission_level_dropdown_state_content/dropdown_label_padding" | "permission_level_dropdown_state_content/label_panel" | "permission_level_dropdown_state_content/label_panel/label" | "permission_level_dropdown_state_content/arrow_panel" | "permission_level_dropdown_state_content/arrow_panel/arrow_image"; +export type PersonaCastCharacterScreen = "cast_modal_bottom_bar" | "cast_modal_bottom_bar/0" | "cast_common_dialog_background" | "cast_common_dialog_background/top_bar" | "cast_common_dialog_background/popup_inner_contents" | "cast_common_dialog_background/cast_modal_bottom_bar" | "cast_modal_panel" | "cast_modal_panel/cast_preview_modal_content" | "popup_dialog__cast_character_select" | "popup_dialog__cast_character_select/background" | "popup_dialog__cast_character_select/popup_background" | "common_dcast_popup_framework" | "common_cast_modal_top_bar" | "common_cast_modal_top_bar/title_panel" | "common_cast_modal_top_bar/close_button_holder" | "cast_character_select_main" | "cast_character_select_main/modal_inner_background" | "cast_character_select_main/main_content_horizontal_stack" | "cast_character_select_main/main_content_horizontal_stack/cast_grid" | "cast_character_select_main/main_content_horizontal_stack/vertical_centerer" | "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/top_fill" | "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/skin_viewer_panel" | "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_fill" | "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_padding" | "cast_scroll_view_panel" | "cast_grid_with_buttons" | "cast_grid_with_buttons/top_spacing" | "cast_grid_with_buttons/cast_grid" | "cast_grid_with_buttons/bottom_spacing" | "cast_grid_panel" | "cast_grid_panel/cast_grid" | "cast_single_character_button_panel" | "cast_single_character_button_panel/cast_character_button" | "cast_single_character_button_panel/cast_character_button/background_image" | "cast_single_character_button_panel/cast_character_button/selected" | "cast_single_character_button_panel/cast_character_button/default" | "cast_single_character_button_panel/cast_character_button/hover" | "cast_single_character_button_panel/cast_character_button/pressed" | "cast_single_character_button_panel/cast_character_button/button_outline" | "cast_single_character_button_panel/cast_character_button/button_outline/cast_character_content" | "cast_character_button_content_panel" | "cast_character_button_content_panel/cast_single_character_content_visible_panel" | "cast_character_button_content_panel/cast_single_character_content_visible_panel/cast_single_character_button_content" | "in_use_grid_item" | "persona_cast_paper_doll_panel" | "persona_cast_paper_doll_panel/preset_input_panel" | "character_loading_anim" | "character_loading_anim_panel" | "character_loading_anim_panel/character_loading_anim" | "skin_viewer_panel_skin_model" | "skin_viewer_panel_skin_model/skin_model" | "cast_character_screen_right_side_model" | "cast_character_screen_right_side_model/skin_model_panel" | "cast_character_screen_right_side_model/skin_model_loading_anim" | "cast_character_screen_right_side_model/skin_model_label" | "common_background_blocker" | "common_background_blocker/modal_background_button" | "common_preview_page_framework" | "common_preview_page_framework/background" | "common_preview_page_framework/cast_preview_modal" | "cast_preview_page_one" | "cast_preview_page_two" | "cast_preview_page_one_inner_section" | "cast_preview_page_one_inner_section/modal_inner_background" | "cast_preview_page_one_inner_section/cast_content" | "cast_preview_page_one_inner_section/cast_content/cast_image_cycler" | "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel" | "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel" | "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel/text_cycler" | "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/buffer_panel" | "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_shoulder_button_display_panel" | "chevron_image_panel" | "chevron_image_panel/chevron_image" | "chevron_button" | "shift_page_panel" | "shift_page_panel/centering_panel" | "shift_page_panel/centering_panel/0" | "shift_page_left_panel" | "shift_page_right_panel" | "horizontal_8px_padding" | "horizontal_20px_padding" | "ftue_subpage_indicator_panel" | "ftue_subpage_indicator_panel/controls_shoulder_button_display" | "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_padding" | "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_panel" | "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_padding" | "ftue_subpage_indicator_panel/controls_shoulder_button_display/page_indicator_grid" | "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_padding" | "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_panel" | "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_padding" | "individaul_cast_page_indicator" | "individaul_cast_page_indicator/panel_when_current_page" | "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding" | "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding/cast_dot" | "individaul_cast_page_indicator/panel_when_not_current_page" | "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding" | "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding/cast_dot" | "how_to_section" | "how_to_section/how_to_image" | "how_to_section/how_to_label_section" | "how_to_section/how_to_label_section/how_to_label" | "cast_preview_page_two_inner_section" | "cast_preview_page_two_inner_section/how_to_section_stack" | "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_left" | "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel" | "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel/divider" | "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_right"; +export type PersonaCommon = "icon_image" | "mashup_world" | "mashup_hangar" | "mashup_paintbrush" | "info_bulb_icon" | "green_checkmark_icon" | "persona_screen_background_content" | "loading_icon" | "focus_border" | "selected_border" | "equipped_border" | "progress_loading" | "progress_loading/progress_loading" | "title_rarity_positionable_title" | "generic_title_panel" | "generic_title_panel/title_label" | "rarity_bar" | "item_rarity_color_background" | "piece_item_display" | "piece_item_display/item_renderer" | "piece_item_display/item_renderer/background" | "piece_item_display/item_renderer/item_image" | "piece_item_display/item_renderer/rarity_bar_panel" | "piece_item_display/item_renderer/extra_control" | "piece_item_display/item_renderer/extra_control/control_instance" | "piece_item_display/loading_progress_spinner" | "wheel_state" | "emote_label" | "touch_name_label" | "emote_image" | "emote_image/empty" | "emote_image/emote_preview" | "emote_image/emote_preview/valid" | "emote_image/emote_preview/valid_no_image" | "emote_image/emote_preview/valid_no_image/valid_text" | "keyboard_hotkey_helpers" | "keyboard_hotkey_helpers/keyboard_1" | "keyboard_hotkey_helpers/keyboard_2" | "keyboard_hotkey_helpers/keyboard_3" | "keyboard_hotkey_helpers/keyboard_4" | "gamepad_hotkey_helpers" | "gamepad_hotkey_helpers/quick_select_gamepad_helpers" | "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_y" | "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_b" | "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_a" | "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_x" | "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel" | "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel/analog_select_gamepad_helper" | "emote_wheel_slot_content" | "emote_wheel_slot_content/image_0" | "emote_wheel_slot_content/touch_label_0" | "selection_wheel" | "emote_selection_wheel" | "emote_selection_wheel/default_state" | "emote_selection_wheel/emote_slot_0_content" | "emote_selection_wheel/emote_slot_1_content" | "emote_selection_wheel/emote_slot_2_content" | "emote_selection_wheel/emote_slot_3_content" | "emote_wheel_panel" | "emote_wheel_panel/emote_name" | "emote_wheel_panel/emote_wheel_content_panel" | "emote_wheel_panel/emote_wheel_content_panel/gamepad_helpers" | "emote_wheel_panel/emote_wheel_content_panel/keyboard_helpers" | "emote_wheel_panel/emote_wheel_content_panel/emote_wheel"; +export type PersonaPopups = "no_content_panel" | "common_image" | "common_icon" | "create_persona_choice_checked_image" | "create_persona_choice_unchecked_image" | "modal_window_input_blocker" | "modal_popup_background" | "general_text_field" | "title_text" | "popup_title" | "popup_content" | "popup_ok_button" | "popup_frame" | "popup_frame/title_label" | "popup_frame/close_button" | "popup_frame/content" | "popup_frame/ok_button" | "popup_info_panel" | "popup_info_panel/background" | "popup_info_panel/frame" | "common_dialog" | "common_dialog/background" | "common_dialog/panel" | "popup_dialog_bg" | "popup_dialog_bg/background_image" | "popup_dialog_bg/title_panel" | "popup_dialog_bg/title_panel/title" | "popup_dialog_bg/popup_content" | "icon_title_bar" | "icon_title_bar/icon" | "icon_title_bar/padding" | "icon_title_bar/text_title_panel" | "popup_common" | "popup_common/background" | "popup_common/background/text_stack_panel" | "popup_dialog__difference_information" | "differences_left_details" | "differences_left_section" | "differences_left_section/title_bar" | "differences_left_section/padding_1" | "differences_left_section/details" | "differences_detail_image" | "differences_title_card_display" | "differences_title_card_display/left" | "differences_title_card_display/padding_1" | "differences_title_card_display/right" | "differences_persona_detail_section" | "differences_classic_skin_detail_section" | "different_info_panel_contents" | "different_info_panel_contents/character_display" | "different_info_panel_contents/item_1_padding" | "different_info_panel_contents/divider" | "different_info_panel_contents/item_2_padding" | "different_info_panel_contents/classic_skin_display" | "popup_dialog__preview_difference_information" | "popup_dialog__delete_persona" | "popup_dialog__delete_persona/popup_dialog_bg" | "popup_dialog_delete_persona_content" | "popup_dialog_delete_persona_content/image" | "popup_dialog_delete_persona_content/message" | "popup_dialog_delete_persona_content/buttons" | "alex_warning" | "delete_popup_dialog_message" | "delete_persona_button_stack" | "delete_persona_button_stack/left_button" | "delete_persona_button_stack/padding" | "delete_persona_button_stack/right_button" | "delete_persona_left_button" | "delete_persona_right_button" | "popup_dialog__create_persona" | "create_persona_display" | "create_persona_display/vertical_padding_2px" | "create_persona_display/stack_content" | "create_persona_choice_stack" | "create_persona_choice_stack/background1" | "create_persona_choice_stack/background2" | "create_persona_choice_character" | "create_persona_choice_character/create_persona_choice_character" | "select_default_character_button_vertical_panel" | "select_default_character_button_vertical_panel/padding" | "select_default_character_button_vertical_panel/select_default_character_button_panel" | "select_default_character_button_vertical_panel/select_default_character_button_panel/select_default_character_button" | "select_default_character_button" | "create_persona_choice_classic_skin" | "create_persona_choice_button" | "create_persona_choice_button/choice_toggle" | "create_persona_choice_background" | "create_persona_choice_background/choice_title_bar" | "create_persona_choice_background/choice_details_body" | "create_persona_choice_background/choice_bottom_content" | "create_persona_choice_title_bar" | "create_persona_choice_title_bar/checkbox" | "create_persona_choice_title_bar/spacing" | "create_persona_choice_title_bar/icon_title" | "create_persona_choice_check_positioning" | "create_persona_choice_check_positioning/toggle_image" | "create_persona_choice_icon_title" | "create_persona_choice_detail_panel" | "create_persona_choice_detail_panel/spacing" | "create_persona_choice_detail_panel/choice_details_body" | "create_persona_choice_detail" | "popup_dialog__invalid_custom_skin" | "popup_dialog__invalid_custom_skin/popup_dialog_bg" | "popup_dialog_invalid_custom_skin_content" | "popup_dialog_invalid_custom_skin_content/popup_dialog_message" | "popup_dialog_invalid_custom_skin_content/popup_dialog_middle_button" | "popup_dialog__upsell_without_store" | "popup_dialog__choose_skin_type" | "popup_dialog__choose_skin_type/popup_dialog_bg" | "popup_dialog_choose_skin_type_content" | "popup_dialog_choose_skin_type_content/popup_dialog_message" | "popup_dialog_choose_skin_type_content/left" | "popup_dialog_choose_skin_type_content/right" | "popup_dialog_choose_skin_type_panel" | "popup_dialog_choose_skin_type_panel/choose_skin_type_button" | "popup_dialog_skin_model" | "popup_dialog_skin_model/paper_doll" | "popup_dialog__custom_skin_info" | "popup_dialog__custom_skin_info/background_image" | "popup_dialog__custom_skin_info/popup_dialog_bg" | "custom_skin_info_panel_text" | "custom_skin_info_panel" | "custom_skin_info_panel/message" | "custom_skin_info_panel/button_group" | "custom_skin_info_button_collection" | "custom_skin_info_button_collection/settings" | "custom_skin_info_button_collection/vertical_4_padding" | "custom_skin_info_button_collection/close" | "popup_dialog_close_button" | "usage_limited_settings_profile_button" | "custom_skin_popup_dialog_bg" | "custom_skin_popup_dialog_bg/background_image" | "custom_skin_popup_dialog_bg/vertical_align_title" | "custom_skin_popup_dialog_bg/vertical_align_title/title" | "custom_skin_popup_dialog_bg/popup_content" | "popup_dialog__emote_equip_slot_editor" | "popup_dialog__emote_equip_slot_editor/background_image" | "popup_dialog__emote_equip_slot_editor/popup_emote_wheel_dialog" | "popup_emote_wheel_dialog" | "popup_emote_wheel_dialog/popup_background" | "emote_equip_slot_content" | "emote_equip_slot_content/close" | "emote_equip_slot_content/emote_wheel_content_panel" | "emote_equip_slot_content/emote_wheel_content_panel/cancel" | "emote_equip_slot_content/emote_wheel_content_panel/emote_wheel_prompt_content" | "close_emote_popup_controller" | "close_emote_popup_controller/close_ui" | "emote_wheel_content" | "popup_dialog__realms_plus_extra_info" | "popup_dialog__realms_plus_extra_info/background_image" | "popup_dialog__realms_plus_extra_info/dialog_bg" | "realms_plus_extra_info_popup_dialog_bg" | "realms_plus_extra_info_popup_dialog_bg/background_image" | "realms_plus_extra_info_popup_dialog_bg/title" | "realms_plus_extra_info_popup_dialog_bg/popup_content" | "realms_extra_info_panel_text" | "realms_extra_info_panel" | "realms_extra_info_panel/realms_extra" | "realms_extra_info_panel/button_group" | "realms_extra_info_button_collection" | "realms_extra_info_button_collection/close" | "realms_extra_info_content" | "realms_extra_info_content/the_spread" | "realms_extra_info_content/the_spread/pack_image" | "realms_extra_info_content/the_spread/horizontal_6_padding" | "realms_extra_info_content/the_spread/the_info_stack" | "realms_extra_info_content/the_spread/the_info_stack/skins_and_world" | "realms_extra_info_content/the_spread/the_info_stack/padding" | "realms_extra_info_content/the_spread/the_info_stack/textures_and_usage" | "pack_information_textures_and_usage_tooltip" | "pack_information_textures_and_usage_tooltip/textures" | "pack_information_textures_and_usage_tooltip/mid_padding" | "pack_information_textures_and_usage_tooltip/appearance_status" | "roamable_status_notification_panel" | "roamable_status_notification_panel/appearance_status_notification" | "roamable_status_notification_panel/roamable_status" | "appearance_status_image_panel" | "appearance_status_image_panel/usage_limited" | "appearance_status_image_panel/usage_not_limited" | "pack_information_skins_and_world" | "pack_information_skins_and_world/skins" | "pack_information_skins_and_world/mid_padding" | "pack_information_skins_and_world/worlds" | "skin_info_label_and_image" | "skin_info_label_and_image/content_stack" | "skin_info_image_panel" | "skin_info_image_panel/image" | "skin_info_label_panel_label" | "skin_info_label_panel" | "skin_info_label_panel/label" | "skin_info_content_stack" | "skin_info_content_stack/image_panel" | "skin_info_content_stack/horizontal_2_padding" | "skin_info_content_stack/label_panel" | "realms_extra_info_pack_info" | "popup_toast"; +export type Play = "label_background" | "dark_label_background" | "world_screenshot_base" | "collection_world_screenshot" | "collection_world_screenshot/screenshot_picture" | "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel" | "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/gradient_image_realmsplus_expired" | "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired" | "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired/exclamationmark" | "world_item_grid_base" | "edit_icon" | "realms_stories_icon" | "realms_stories_icon_animated" | "realms_slots_edit_icon" | "worlds_icon" | "realms_icon" | "realms_chevron" | "friends_icon_1" | "friends_icon_2" | "bell_icon" | "invite_icon" | "delete_icon" | "world_download_icon" | "third_party_servers_icon" | "lan_icon" | "friends_server_icon" | "cross_platform_friends_server_icon" | "realms_remove_icon" | "game_online_icon" | "game_offline_icon" | "game_unavailable_icon" | "import_icon" | "add_server_icon" | "server_tab_icon" | "realms_art_icon" | "realms_text_background" | "connected_storage" | "feedback_icon" | "local_only_storage" | "local_and_cloud_storage" | "cloud_only_storage" | "left_arrow_icon" | "right_arrow_icon" | "small_progress_panel" | "sign_in_realms_image" | "sign_in_realms_image/chevron" | "sign_in_realms_image/portal" | "realms_sign_in_prompt_label" | "realms_sign_in_prompt" | "realms_sign_in_prompt/realms_sign_in_prompt_label" | "realms_sign_in_prompt_friends" | "realms_sign_in_prompt_friends/realms_sign_in_prompt_label_friends" | "sign_in_to_view_realms_content_panel" | "sign_in_to_view_realms_content_panel/sign_in_realms_image" | "sign_in_to_view_realms_content_panel/realms_sign_in_prompt" | "sign_in_to_view_realms_content_panel_friends" | "sign_in_to_view_realms_button" | "sign_in_to_view_realms_button_friends" | "realms_list_text" | "realms_world_header" | "realms_world_details" | "realms_world_type" | "realms_world_player_count" | "realms_world_game_status_icon" | "realms_world_game_status_icon/game_online_icon" | "realms_world_game_status_icon/game_unavailable_icon" | "realms_world_game_status_icon/game_offline_icon" | "realms_world_text_panel" | "realms_world_text_panel/realms_world_header" | "realms_world_text_panel/realms_world_details" | "realms_world_trial_text_panel" | "realms_world_trial_text_panel/realms_world_header_text" | "realms_world_trial_text_panel/realms_world_details" | "realms_world_content_text_area_panel" | "realms_world_content_text_area_panel/realms_world_text_panel" | "realms_trial_content_text_area_panel" | "realms_trial_content_text_area_panel/realms_world_trial_text_panel" | "realms_world_content_status_area_panel" | "realms_world_content_status_area_panel/world_player_count_text_panel" | "realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count" | "realms_world_content_status_area_panel/padding" | "realms_world_content_status_area_panel/realms_world_game_status_icon" | "realms_world_content_status_area_panel_container" | "realms_world_content_status_area_panel_container/realms_world_status_panel" | "realms_world_content_status_area_panel_container/realms_world_status_panel/realms_world_content_status_area_panel" | "realms_world_content_status_area_panel_container/realms_world_type" | "realms_world_content_panel" | "realms_world_content_panel/realm_screenshot" | "realms_world_content_panel/padding" | "realms_world_content_panel/realms_world_content_text_area_panel" | "realms_world_content_panel/realms_world_content_status_area_panel" | "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_content_status_area_panel_container" | "realms_trial_content_panel" | "realms_trial_content_panel/realm_screenshot" | "realms_trial_content_panel/padding" | "realms_trial_content_panel/realms_trial_content_text_area_panel" | "realms_world_item_button" | "realms_world_edit_button" | "realms_feed_button_content" | "realms_feed_button_content/default_icon" | "realms_feed_button_content/unread_icon_active" | "persistent_realms_feed_button_control" | "realms_feed_button" | "leave_friends_realm_button" | "unread_story_count_text" | "unread_story_count_text_background" | "unread_story_count_panel" | "unread_story_count_panel/text" | "unread_story_count_panel/text/background" | "realms_world_item" | "realms_world_item/realms_button_panel" | "realms_world_item/realms_button_panel/realms_world_item_button" | "realms_world_item/realms_button_panel/tts_border" | "realms_world_item/edit_panel" | "realms_world_item/edit_panel/realms_world_edit_button" | "realms_world_item/edit_panel/realms_world_expiry_notification_image" | "realms_world_item/feed_panel_with_unread_count" | "realms_world_item/feed_panel_with_unread_count/feed_panel" | "realms_world_item/feed_panel_with_unread_count/feed_panel/realms_feed_button" | "realms_world_item/feed_panel_with_unread_count/unread_story_count" | "realms_world_item/leave_realm_panel" | "realms_world_item/leave_realm_panel/leave_friends_realm_button" | "realms_world_item_grid" | "network_world_header" | "network_world_header/network_world_header_icon" | "network_world_header/spacer" | "network_world_header/header_panel" | "network_world_header/header_panel/network_world_header_text" | "network_world_details" | "network_world_player_count" | "network_world_player_count/count" | "network_world_game_status_icon" | "network_world_game_status_icon/game_online_icon" | "network_world_game_status_icon/game_unavailable_icon" | "network_world_game_status_icon/game_offline_icon" | "network_world_text_panel" | "network_world_text_panel/network_world_header" | "network_world_text_panel/network_world_details" | "network_world_content_text_area_panel" | "network_world_content_text_area_panel/network_world_text_panel" | "network_world_content_status_area_panel" | "network_world_content_status_area_panel/network_player_count_text_panel" | "network_world_content_status_area_panel/network_player_count_text_panel/network_world_player_count" | "network_world_content_status_area_panel/padding" | "network_world_content_status_area_panel/network_world_game_status_icon" | "network_world_content_status_area_panel_container" | "network_world_content_status_area_panel_container/network_world_status_panel" | "network_world_content_status_area_panel_container/network_world_status_panel/network_world_content_status_area_panel" | "network_world_content_status_area_panel_container/network_world_type" | "network_world_type" | "network_world_type/type" | "network_world_item_button_content" | "network_world_item_button_content/network_world_content_text_area_panel" | "network_world_item_button_content/network_status_area_panel" | "network_world_item_button_content/network_status_area_panel/network_world_content_status_area_panel_container" | "network_world_item_button_content/network_world_type_icon" | "network_world_item_button_content/network_world_type_icon/padding" | "network_world_item_button" | "network_server_world_edit_button" | "network_world_item" | "network_world_item/network_world_item_button" | "network_world_item/tts_border" | "network_world_item_grid" | "network_world_item_ignore_crossplay" | "network_world_item_ignore_crossplay/network_world_item_button" | "label_content_template" | "label_content_template/label_panel" | "label_content_template/label_panel/label_panel_layout" | "label_content_template/label_panel/label_panel_layout/label" | "label_content_template/content" | "information_panel" | "information_panel/background" | "information_panel/background/label_panel_layout" | "information_panel/background/label_panel_layout/label" | "information_panel/focus_button" | "blocked_multiplayer_privileges_panel" | "blocked_multiplayer_privileges_panel/background" | "blocked_multiplayer_privileges_panel/background/label_panel_layout" | "blocked_multiplayer_privileges_panel/background/label_panel_layout/label" | "more_servers_grid" | "additional_server_toggle_content" | "additional_server_toggle_content/network_world_content_text_area_panel" | "more_servers_label_panel" | "more_servers_label_panel/list_label" | "more_servers_world_item" | "more_servers_world_item/additional_server_toggle_base" | "more_servers_world_item/network_server_world_edit_button" | "additional_server_info_panel" | "additional_server_info_panel/server_info_stack_panel" | "additional_server_info_panel/server_info_stack_panel/padding_1" | "additional_server_info_panel/server_info_stack_panel/server_name" | "additional_server_info_panel/server_info_stack_panel/padding_2" | "additional_server_info_panel/server_info_stack_panel/player_count" | "additional_server_info_panel/server_info_stack_panel/padding_3" | "additional_server_info_panel/server_info_stack_panel/ping" | "additional_server_info_panel/server_info_stack_panel/padding_4" | "additional_server_info_panel/server_info_stack_panel/join_server_button" | "ping_rate_icon" | "ping_rate_panel" | "ping_rate_panel/concurrency_stack" | "ping_rate_panel/concurrency_stack/player_count" | "ping_rate_panel/concurrency_stack/padding_0" | "ping_rate_panel/concurrency_stack/ping_rate_icon" | "add_server_info_panel" | "add_server_info_panel/server_info_stack_panel" | "add_server_info_panel/server_info_stack_panel/padding_0" | "add_server_info_panel/server_info_stack_panel/add_server_title" | "add_server_info_panel/server_info_stack_panel/padding_1" | "add_server_info_panel/server_info_stack_panel/add_server_description" | "third_party_featured_server_grid" | "featured_server_world_item" | "featured_server_world_item/server_button" | "server_button_content_panel" | "server_button_content_panel/top_panel" | "server_button_content_panel/top_panel/third_party_server_screenshot" | "server_button_content_panel/top_panel/padding_0" | "server_button_content_panel/top_panel/title_panel" | "server_button_content_panel/top_panel/title_panel/third_party_server_name" | "server_button_content_panel/top_panel/title_panel/progress" | "server_button_content_panel/padding" | "server_button_content_panel/bottom_panel" | "server_button_content_panel/bottom_panel/third_party_server_message" | "third_party_server_content_panel" | "third_party_server_content_panel/ping_rate_panel" | "loading_featured_servers_panel" | "loading_featured_servers_panel/load_bars" | "loading_featured_servers_panel/load_bars/progress_loading_bars" | "third_party_server_screenshot" | "third_party_server_screenshot/picture" | "third_party_server_info_panel" | "third_party_server_info_panel/server_info_stack_panel" | "third_party_server_info_panel/server_info_stack_panel/padding_0" | "third_party_server_info_panel/server_info_stack_panel/server_screenshot" | "third_party_server_info_panel/server_info_stack_panel/padding_1" | "third_party_server_info_panel/server_info_stack_panel/server_name" | "third_party_server_info_panel/server_info_stack_panel/padding_2" | "third_party_server_info_panel/server_info_stack_panel/player_count" | "third_party_server_info_panel/server_info_stack_panel/padding_3" | "third_party_server_info_panel/server_info_stack_panel/ping" | "third_party_server_info_panel/server_info_stack_panel/padding_4" | "third_party_server_info_panel/server_info_stack_panel/join_server_button" | "third_party_server_info_panel/server_info_stack_panel/view_offers_button" | "third_party_server_info_panel/server_info_stack_panel/padding_5" | "third_party_server_info_panel/server_info_stack_panel/screenshots_section" | "third_party_server_info_panel/server_info_stack_panel/description_section" | "third_party_server_info_panel/server_info_stack_panel/games_section" | "third_party_server_info_panel/server_info_stack_panel/news_section" | "third_party_server_info_panel/progress" | "text_icon_number_panel" | "text_icon_number_panel/text" | "text_icon_number_panel/padding_0" | "text_icon_number_panel/stack_panel" | "text_icon_number_panel/stack_panel/icon_panel" | "text_icon_number_panel/stack_panel/icon_panel/icon" | "text_icon_number_panel/stack_panel/padding_1" | "text_icon_number_panel/stack_panel/number" | "grey_bar_panel" | "grey_bar_panel/grey_bar" | "grey_bar_panel/green_bar" | "grey_bar_panel/padding" | "screenshots_section_panel" | "screenshots_section_panel/divider_0" | "screenshots_section_panel/padding_0" | "screenshots_section_panel/screenshots_label" | "screenshots_section_panel/padding_1" | "screenshots_section_panel/screenshots" | "screenshots_section_panel/padding_2" | "screenshots_section_panel/navigation_panel" | "screenshots_section_panel/navigation_panel/left_arrow_button" | "screenshots_section_panel/navigation_panel/padding_0" | "screenshots_section_panel/navigation_panel/navigation_bar" | "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar" | "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar/grey_bar_factory_panel" | "screenshots_section_panel/navigation_panel/padding_1" | "screenshots_section_panel/navigation_panel/right_arrow_button" | "screenshots_section_panel/padding_3" | "description_text_panel" | "description_text_panel/contents_description" | "description_section_panel" | "description_section_panel/divider_0" | "description_section_panel/padding_0" | "description_section_panel/description_label" | "description_section_panel/padding_1" | "description_section_panel/read_more_panel" | "description_section_panel/read_more_panel/description_text_small" | "description_section_panel/read_more_panel/description_text_full" | "description_section_panel/read_more_panel/description_read_more_button_panel" | "description_section_panel/read_more_panel/description_read_less_button_panel" | "description_section_panel/padding_3" | "games_factory_object" | "games_factory_object/games_factory_panel" | "games_factory_object/games_factory_panel/top_panel" | "games_factory_object/games_factory_panel/top_panel/game_image_panel" | "games_factory_object/games_factory_panel/top_panel/game_image_panel/game_image" | "games_factory_object/games_factory_panel/top_panel/padding" | "games_factory_object/games_factory_panel/top_panel/game_title_panel" | "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_title" | "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_subtitle" | "games_factory_object/games_factory_panel/bottom_panel" | "games_factory_object/games_factory_panel/bottom_panel/bottom_panel" | "games_factory_object/padding" | "games_section_panel" | "games_section_panel/divider_0" | "games_section_panel/padding_0" | "games_section_panel/description_label" | "games_section_panel/padding_1" | "games_section_panel/games_factory_panel" | "games_section_panel/padding_3" | "news_text_panel" | "news_text_panel/contents_news" | "news_section_panel" | "news_section_panel/divider_0" | "news_section_panel/padding_0" | "news_section_panel/news_label" | "news_section_panel/padding_1" | "news_section_panel/read_more_panel" | "news_section_panel/read_more_panel/text_stack_panel" | "news_section_panel/read_more_panel/text_stack_panel/news_title_text" | "news_section_panel/read_more_panel/text_stack_panel/divider_panel" | "news_section_panel/read_more_panel/text_stack_panel/divider_panel/divider_0" | "news_section_panel/read_more_panel/text_stack_panel/news_text_small" | "news_section_panel/read_more_panel/text_stack_panel/news_text_full" | "news_section_panel/read_more_panel/news_read_more_button_panel" | "news_section_panel/read_more_panel/news_read_less_button_panel" | "news_section_panel/padding_3" | "divider" | "blue_diskspace_bar" | "green_diskspace_bar" | "empty_diskspace_bar" | "legacy_world_content_status_area_panel" | "legacy_world_content_status_area_panel/world_storage_content_panel" | "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_separator" | "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information" | "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_label" | "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/padding" | "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar" | "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/local_diskspace_bar" | "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/legacy_diskspace_bar" | "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/empty_diskspace_bar" | "world_list_text" | "realm_screenshot" | "realm_screenshot/picture" | "local_world_name" | "legacy_world_name" | "world_lock" | "local_world_game_mode" | "legacy_world_game_mode" | "local_world_date" | "legacy_world_date" | "local_world_filesize" | "legacy_world_filesize" | "local_world_connected_storage" | "local_world_connected_storage/local_and_cloud" | "local_world_connected_storage/local_only" | "local_world_connected_storage/cloud_only" | "local_world_lock_panel" | "local_world_lock_panel/lock" | "realms_plus_banner" | "realms_plus_banner/realms_banner" | "local_world_text_panel" | "local_world_text_panel/text_indent" | "local_world_text_panel/text_indent/top_side" | "local_world_text_panel/text_indent/top_side/local_world_name" | "local_world_text_panel/text_indent/top_side/lock_1" | "local_world_text_panel/text_indent/top_side/local_world_date" | "local_world_text_panel/text_indent/bottom_side" | "local_world_text_panel/text_indent/bottom_side/realms_plus_icon" | "local_world_text_panel/text_indent/bottom_side/pad" | "local_world_text_panel/text_indent/bottom_side/local_world_game_mode" | "local_world_text_panel/text_indent/bottom_side/local_world_connected_storage" | "local_world_text_panel/text_indent/bottom_side/local_world_filesize" | "legacy_world_text_panel" | "legacy_world_text_panel/text_indent" | "legacy_world_text_panel/text_indent/top_side" | "legacy_world_text_panel/text_indent/top_side/legacy_world_name" | "legacy_world_text_panel/text_indent/top_side/legacy_world_date" | "legacy_world_text_panel/text_indent/bottom_side" | "legacy_world_text_panel/text_indent/bottom_side/legacy_world_game_mode" | "legacy_world_text_panel/text_indent/bottom_side/legacy_world_filesize" | "beta_retail_world_text_panel" | "beta_retail_world_text_panel/text_indent" | "beta_retail_world_text_panel/text_indent/top_side" | "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_name" | "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_date" | "beta_retail_world_text_panel/text_indent/bottom_side" | "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_game_mode" | "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_filesize" | "world_content_panel" | "world_content_panel/world_screenshot" | "world_content_panel/world_text_panel" | "ownership_verification_in_progress_content" | "ownership_verification_in_progress_content/top_padding" | "ownership_verification_in_progress_content/loading_bar_panel" | "ownership_verification_in_progress_content/loading_bar_panel/loading_bar_animation" | "ownership_verification_in_progress_content/mid_padding" | "ownership_verification_in_progress_content/loading_label" | "ownership_verification_in_progress_content/bottom_padding" | "ownership_verification_in_progress_panel" | "ownership_verification_in_progress_panel/ownership_verification_in_progress_content" | "local_world_item_button" | "legacy_world_item_button" | "beta_retail_world_item_button" | "local_world_edit_button" | "legacy_world_delete_button" | "legacy_world_migrate_button" | "local_world_item" | "local_world_item/header_button_panel" | "local_world_item/signin_in_progress_panel" | "legacy_world_item" | "legacy_world_item/header_button_panel_with_delete" | "legacy_world_item/header_button_panel_with_migrate" | "legacy_world_item/header_button_panel_no_delete" | "beta_retail_world_item" | "local_world_item_grid" | "legacy_world_item_grid" | "beta_retail_local_world_item_grid" | "beta_retail_legacy_world_item_grid" | "common_button_template" | "common_button_text" | "add_friend_and_invite_panel" | "add_friend_and_invite_panel/add_friend_button" | "add_friend_and_invite_panel/padding_1" | "add_friend_and_invite_panel/join_by_code_button" | "add_friend_and_invite_panel/padding_2" | "add_friend_and_invite_panel/notification_button_panel" | "add_friend_and_invite_panel/notification_button_panel/notification_button" | "add_friend_button" | "join_by_code_button" | "add_server_toggle_button" | "server_toggle_base" | "quick_play_button" | "create_new_world_button" | "create_on_realms_button_panel" | "create_on_realms_button_panel/create_on_realms_button" | "import_world_button" | "sync_legacy_worlds_button" | "notification_button_text_layout" | "notification_button_text_layout/image1" | "notification_button_text_layout/image2" | "notification_button_text_layout/count" | "notification_button_label_panel" | "notification_button_label_panel/notification_button_label" | "notification_content" | "notification_button" | "header_button_panel" | "header_button_panel/buttons" | "header_button_panel/buttons/primary_panel" | "header_button_panel/buttons/primary_panel/primary" | "header_button_panel/buttons/secondary" | "header_button_panel_opt_in" | "header_button_panel_opt_in/buttons" | "header_button_panel_opt_in/buttons/primary_panel" | "header_button_panel_opt_in/buttons/primary_panel/primary" | "header_button_panel_opt_in/buttons/secondary" | "header_button_panel_opt_in/buttons/ternary" | "header_single_button_panel" | "header_single_button_panel/buttons" | "header_single_button_panel/buttons/primary" | "open_account_setting_button_gamecore" | "common_scroll_pane" | "worlds_scroll_panel" | "worlds_scroll_panel/worlds_list_stack_panel" | "game_tip_item_panel" | "game_tip_item_panel/info_bulb" | "game_tip_item_panel/padding_1" | "game_tip_item_panel/label_panel" | "game_tip_item_panel/label_panel/padding_vertical" | "game_tip_item_panel/label_panel/realms_warning_text" | "game_tip_item_panel/label_panel/padding_vertical_1" | "game_tip_item_panel/more_info_button" | "realm_warning_tip" | "realm_warning_tip/padding_vertical" | "realm_warning_tip/info_panel" | "new_ui_switch_button_options_panel" | "new_ui_switch_button_options_panel/unlock_template_options_button" | "new_ui_servers_switch_button_options_panel" | "new_ui_servers_switch_button_options_panel/unlock_template_options_button" | "new_ui_servers_switch_button_options_panel/padding_0" | "worlds_stack_panel" | "worlds_stack_panel/padding_0" | "worlds_stack_panel/play_screen_warning" | "worlds_stack_panel/header_button" | "worlds_stack_panel/header_button/quick_play" | "worlds_stack_panel/header_button/buttons" | "worlds_stack_panel/worlds_crossplatform_disabled_panel" | "worlds_stack_panel/worlds_crossplatform_disable_spacer" | "worlds_stack_panel/realms_panel" | "worlds_stack_panel/realms_panel/realms_label" | "worlds_stack_panel/realms_panel/sign_in_to_view_realms_button" | "worlds_stack_panel/realms_panel/realms_previews_panel" | "worlds_stack_panel/realms_panel/realms_previews_panel/new_offers_icon" | "worlds_stack_panel/realms_panel/realms_previews_panel/realms_world_item_button" | "worlds_stack_panel/realms_panel/create_on_realms_button_panel" | "worlds_stack_panel/realms_panel/personal_realms" | "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel" | "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/placeholder_loading_personal_realms" | "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/loading_friends_realms_label" | "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/padding" | "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/progress_loading_bars" | "worlds_stack_panel/realms_panel/realms_trial_panel" | "worlds_stack_panel/realms_panel/realms_trial_panel/realms_world_item_button" | "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel" | "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel/realms_world_item_button" | "worlds_stack_panel/realms_panel/padding_1" | "worlds_stack_panel/realms_multiplayer_blocked_panel" | "worlds_stack_panel/realms_multiplayer_blocked_panel/text_panel" | "worlds_stack_panel/realms_multiplayer_blocked_panel/open_uri_button" | "worlds_stack_panel/realms_multiplayer_blocked_panel/open_account_setting_button_gamecore" | "worlds_stack_panel/worlds_label" | "worlds_stack_panel/grid" | "worlds_stack_panel/no_local_worlds_label" | "worlds_stack_panel/no_local_worlds_switch_setting" | "worlds_stack_panel/beta_retail_local_padding" | "worlds_stack_panel/beta_retail_local_worlds_label" | "worlds_stack_panel/beta_retail_local_grid" | "worlds_stack_panel/loading_legacy_worlds_panel_padding" | "worlds_stack_panel/legacy_worlds_button" | "worlds_stack_panel/legacy_worlds_button/legacy_worlds_label" | "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel" | "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel/button" | "worlds_stack_panel/loading_legacy_worlds_panel" | "worlds_stack_panel/loading_legacy_worlds_panel/loading_legacy_worlds_label" | "worlds_stack_panel/loading_legacy_worlds_panel/padding" | "worlds_stack_panel/loading_legacy_worlds_panel/progress_loading_bars" | "worlds_stack_panel/padding_2" | "worlds_stack_panel/upgrade_legacy_worlds_label" | "worlds_stack_panel/legacy_world_item_grid" | "worlds_stack_panel/beta_retail_legacy_padding" | "worlds_stack_panel/beta_retail_legacy_worlds_label" | "worlds_stack_panel/beta_retail_legacy_grid" | "worlds_stack_panel/pad_hack_panel" | "no_local_worlds_switch_setting" | "no_local_worlds_switch_setting/bg" | "no_local_worlds_switch_setting/bg/no_local_worlds_switch_setting" | "no_local_worlds_switch_setting/bg/no_local_worlds_get_help" | "no_local_worlds_launch_help" | "storage_location_dropdown_panel" | "storage_location_dropdown_panel/padding1" | "storage_location_dropdown_panel/storage_location_dropdown" | "storage_location_dropdown" | "switch_storage_type_content" | "light_centered_loading_label" | "light_loading_label" | "loading_label" | "progress_loading_bars" | "world_list_label_panel" | "world_list_label_panel/list_label" | "world_list_label_with_color_panel" | "world_list_label_with_color_panel/colored_square_sizer" | "world_list_label_with_color_panel/colored_square_sizer/colored_square" | "world_list_label_with_color_panel/padding" | "world_list_label_with_color_panel/list_label" | "empty_panel" | "empty_grid" | "lan_servers_scroll_content" | "friends_scroll_panel" | "friends_scroll_panel/stack_panel" | "friends_scroll_panel/stack_panel/padding_0" | "friends_scroll_panel/stack_panel/friends_screen_warning" | "friends_scroll_panel/stack_panel/header_button" | "friends_scroll_panel/stack_panel/header_button/add_friend_and_invite_panel" | "friends_scroll_panel/stack_panel/friends_crossplatform_disabled_panel" | "friends_scroll_panel/stack_panel/friends_crossplatform_disable_spacer" | "friends_scroll_panel/stack_panel/joinable_realms_panel" | "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms_label" | "friends_scroll_panel/stack_panel/joinable_realms_panel/sign_in_to_view_realms_button_friends" | "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms" | "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel" | "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/placeholder_loading_friends_realms" | "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/loading_friends_realms_label" | "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/padding" | "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/progress_loading_bars" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel/message_label" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel/link_image" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/hover" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/pressed" | "friends_scroll_panel/stack_panel/joinable_realms_panel/no_realms_grid" | "friends_scroll_panel/stack_panel/joinable_realms_panel/padding_1" | "friends_scroll_panel/stack_panel/friends_grid" | "friends_scroll_panel/stack_panel/pad_hack_panel" | "friends_scroll_panel/stack_panel/no_friends_grid_message" | "friends_scroll_panel/stack_panel/switch_find_cross_platform_friend_button" | "friends_scroll_panel/stack_panel/add_friend_button_padding" | "friends_scroll_panel/stack_panel/cross_platform_friends_grid" | "friends_scroll_panel/stack_panel/no_cross_platform_friends_grid_message" | "friends_scroll_panel/stack_panel/general_no_multiplayer_grid_message" | "friends_scroll_panel/stack_panel/lan_grid" | "friends_scroll_panel/stack_panel/open_account_setting_button_gamecore" | "manually_added_servers_scrolling_content" | "manually_added_servers_scrolling_content/padding_0" | "manually_added_servers_scrolling_content/more_servers_label" | "manually_added_servers_scrolling_content/padding_1" | "manually_added_servers_scrolling_content/more_servers_grid" | "manually_added_servers_scrolling_content/padding_3" | "servers_content_panel" | "servers_content_panel/new_ui_servers_switch_button_options_panel" | "servers_content_panel/featured_servers_panel" | "servers_content_panel/featured_servers_panel/loading_featured_panel" | "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_friends_realms_label" | "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_featured_servers_panel" | "servers_content_panel/featured_servers_panel/padding_1" | "servers_content_panel/featured_servers_panel/featured_servers_label" | "servers_content_panel/featured_servers_panel/padding_2" | "servers_content_panel/featured_servers_panel/third_party_featured_grid" | "servers_content_panel/featured_servers_panel/padding_3" | "servers_content_panel/more_servers_divider" | "servers_content_panel/more_servers_panel" | "server_scroll_panel" | "server_scroll_panel/stack_panel" | "server_scroll_panel/stack_panel/padding_0" | "server_scroll_panel/stack_panel/servers_crossplatform_disabled_panel" | "server_scroll_panel/stack_panel/no_featured_server_connection" | "server_scroll_panel/stack_panel/more_servers_blocked_panel" | "server_scroll_panel/stack_panel/more_servers_blocked_panel/server_multiplayer_privileges_blocked" | "server_scroll_panel/stack_panel/more_servers_blocked_panel/open_uri_button" | "server_scroll_panel/stack_panel/padding_1" | "server_scroll_panel/stack_panel/server_content" | "server_scroll_panel/stack_panel/add_server_button" | "crossplatform_disabled_panel" | "crossplatform_disable_spacer" | "common_scrolling_panel" | "common_content" | "scrolling_offsets" | "worlds_scroll_content" | "worlds_scroll_content/worlds_stack_panel" | "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer" | "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer/scrolling_panel" | "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer" | "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer/scrolling_panel" | "friends_scroll_content" | "friends_scroll_content/scrolling_panel" | "show_servers_panel" | "show_servers_panel/left_panel" | "show_servers_panel/left_panel/scrolling_panel" | "show_servers_panel/divider_panel" | "show_servers_panel/divider_panel/main_divider" | "show_servers_panel/right_panel" | "server_scroll_content" | "server_scroll_content/severs_panel" | "server_scroll_content/severs_panel/offset_panel" | "server_scroll_content/severs_panel/offset_panel/servers_sunsetting_warning" | "server_scroll_content/severs_panel/show_servers_panel" | "server_scroll_content/feature_server_message_panel" | "server_scroll_content/feature_server_message_panel/featured_servers_label" | "server_scroll_content/feature_server_message_panel/pad" | "server_scroll_content/feature_server_message_panel/feature_server_message_panel" | "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout" | "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout/label" | "server_scroll_content/feature_server_message_panel/open_account_setting_button_gamecore" | "server_content_area" | "server_content_area/third_party_scrolling_panel" | "server_content_area/additional_server_scrolling_panel" | "server_content_area/add_server_pane" | "tab_front" | "tab_front_middle" | "tab_back" | "X_tab_back" | "tab_text_stack_panel" | "tab_text_stack_panel/padding" | "tab_text_stack_panel/text_section" | "tab_text_stack_panel/text_section/text" | "tab_text_stack_panel/count_section" | "tab_text_stack_panel/count_section/count_background_image" | "tab_text_stack_panel/count_section/count_background_image/count" | "common_navigation_tab_content" | "common_navigation_tab_content/padding_0" | "common_navigation_tab_content/icon_section" | "common_navigation_tab_content/icon_section/icon" | "common_navigation_tab_content/padding_1" | "common_navigation_tab_content/count_text" | "friends_navigation_tab_content" | "friends_navigation_tab_content/padding" | "friends_navigation_tab_content/icon_section" | "friends_navigation_tab_content/icon_section/icon" | "friends_navigation_tab_content/icon_section_2" | "friends_navigation_tab_content/icon_section_2/icon" | "friends_navigation_tab_content/icon_section_nobounce" | "friends_navigation_tab_content/icon_section_nobounce/icon" | "friends_navigation_tab_content/icon_section_nobounce_2" | "friends_navigation_tab_content/icon_section_nobounce_2/icon" | "friends_navigation_tab_content/icon_section_notification" | "friends_navigation_tab_content/icon_section_notification/icon1" | "friends_navigation_tab_content/icon_section_notification/icon2" | "friends_navigation_tab_content/count_text" | "top_tab" | "world_navigation_tab" | "friends_navigation_tab" | "server_navigation_tab" | "close_navigation_tab" | "close_navigation_tab/background" | "close_navigation_tab/x_image" | "common_tab_content_panel" | "common_tab_content_panel/background" | "common_tab_content_panel/content" | "worlds_tab_content_panel" | "friends_tab_content_panel" | "server_tab_content_panel" | "common_tab_content_panel_type" | "edu_tab_content_panel_layout" | "edu_tab_content_panel_layout/worlds_tab_content" | "edu_tab_content_panel_layout/friends_tab_content" | "edu_tab_content_panel_layout/server_tab_content_panel" | "trial_tab_content_panel_layout" | "trial_tab_content_panel_layout/worlds_tab_content" | "default_tab_content_panel_layout" | "default_tab_content_panel_layout/worlds_tab_content" | "default_tab_content_panel_layout/friends_tab_content" | "default_tab_content_panel_layout/server_tab_content_panel" | "tab_navigation_panel_layout" | "tab_navigation_panel_layout/navigation_tabs" | "tab_navigation_panel_layout/navigation_tabs/content" | "tab_navigation_panel_layout/close_navigation_tab" | "tab_navigation_panel_layout/close_navigation_tab/close_button" | "common_tab_navigation_panel_layout" | "edu_tab_navigation_panel_layout" | "edu_tab_navigation_panel_layout/world_navigation_tab" | "edu_tab_navigation_panel_layout/friends_navigation_tab" | "edu_tab_navigation_panel_layout/server_navigation_tab" | "trial_tab_navigation_panel_layout" | "trial_tab_navigation_panel_layout/world_navigation_tab" | "default_tab_navigation_panel_layout" | "default_tab_navigation_panel_layout/world_navigation_tab" | "default_tab_navigation_panel_layout/friends_navigation_tab" | "default_tab_navigation_panel_layout/server_navigation_tab" | "common_play_screen_panel" | "play_screen_panel" | "play_screen_panel/tab_navigation_panel" | "play_screen_panel/tab_content_panel" | "play_screen_panel/gamepad_helper_left_bumper" | "play_screen_panel/gamepad_helper_right_bumper" | "play_screen_panel/keyboard_helper_left_bracket" | "play_screen_panel/keyboard_helper_right_bracket" | "default_play_screen_panel" | "trial_play_screen_panel" | "edu_play_screen_panel" | "play_screen" | "play_screen_content" | "play_screen_content/main_control" | "play_screen_content/editor_text_panel" | "play_screen_content/popup_dialog_factory" | "popup_dialog_join_by_code" | "popup_dialog_join_by_code/join_by_code_popup_background" | "popup_dialog_join_by_code/join_by_code_popup_content" | "popup_dialog_join_by_code/gamepad_helpers" | "join_by_code_popup_background" | "join_by_code_popup_content" | "join_by_code_popup_content/popup_dialog_bg" | "join_by_code_popup_content/popup_stack_panel" | "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_header" | "join_by_code_popup_content/popup_stack_panel/spacing_1" | "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_upper_body" | "join_by_code_popup_content/popup_stack_panel/spacing_2" | "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_lower_body" | "join_by_code_popup_dialog_header" | "join_by_code_popup_dialog_header/join_by_code_popup_header_text" | "join_by_code_popup_dialog_header/close_button" | "join_by_code_popup_header_text" | "join_by_code_popup_dialog_upper_body" | "join_by_code_popup_dialog_upper_body/margin1" | "join_by_code_popup_dialog_upper_body/join_by_code_popup_code_text_field" | "join_by_code_popup_dialog_upper_body/spacing" | "join_by_code_popup_dialog_upper_body/join_by_code_popup_join_button" | "join_by_code_popup_dialog_upper_body/margin2" | "join_by_code_popup_code_text_field" | "join_by_code_popup_join_button" | "join_by_code_popup_help_text" | "lower_body_default_content" | "lower_body_default_content/info_text" | "join_by_code_popup_dialog_lower_body" | "join_by_code_popup_dialog_lower_body/default" | "open_account_setting_button" | "popup_dialog_high_ping" | "popup_dialog_high_ping/high_ping_popup_background" | "popup_dialog_high_ping/high_ping_popup_content" | "popup_dialog_high_ping/gamepad_helpers" | "popup_two_buttons" | "popup_two_buttons/common_panel" | "popup_two_buttons/title_label" | "popup_two_buttons/panel_indent" | "popup_two_buttons/panel_indent/inside_header_panel" | "popup_two_buttons/button_panel" | "popup_two_buttons/button_panel/left_button_panel" | "popup_two_buttons/button_panel/pad" | "popup_two_buttons/button_panel/right_button_panel" | "high_ping_popup_content_stack_panel" | "high_ping_popup_content_stack_panel/pad_0" | "high_ping_popup_content_stack_panel/ping_images_panel" | "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel" | "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/medium_connection" | "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/pad" | "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/low_connection" | "high_ping_popup_content_stack_panel/pad_1" | "high_ping_popup_content_stack_panel/text_line_1" | "high_ping_popup_content_stack_panel/pad_2" | "high_ping_popup_content_stack_panel/text_line_2" | "high_ping_popup_content_stack_panel/pad_3" | "high_ping_popup_join_button" | "high_ping_popup_cancel_button" | "copyright" | "development_version" | "version" | "editor_text_panel" | "editor_text_panel/copyright" | "editor_text_panel/development_version" | "editor_text_panel/version" | "editor_settings_image_content" | "editor_settings_menu_button" | "editor_server_content_panel" | "editor_server_content_panel/more_servers_panel" | "editor_tab_content_panel_layout" | "editor_tab_content_panel_layout/worlds_tab_content" | "editor_tab_content_panel_layout/friends_tab_content" | "editor_tab_content_panel_layout/server_tab_content_panel" | "editor_play_screen_panel"; +export type PerfTurtle = "perf_turtle_panel" | "perf_turtle_panel/perf_turtle_background" | "perf_turtle_panel/stack_panel" | "perf_turtle_panel/stack_panel/turtle" | "perf_turtle_panel/stack_panel/turtle_text"; +export type PocketContainers = "generic_label" | "header_panel" | "header_panel/header_background" | "header_panel/title_label" | "header_area" | "header_area/x" | "header_area/inventory_header" | "header_area/container_header" | "dark_bg" | "panel_outline" | "background_panel" | "inventory_grid" | "inventory_panel" | "inventory_panel/scrolling_panel" | "half_screen" | "half_screen/inventory_panel" | "panel" | "panel/container_gamepad_helpers" | "panel/header" | "panel/bg" | "panel/inventory" | "panel/container" | "panel/selected_item_details_factory" | "panel/item_lock_notification_factory" | "panel/gamepad_cursor" | "panel/inventory_selected_icon_button" | "panel/hold_icon" | "panel/flying_item_renderer" | "small_chest_panel" | "large_chest_panel" | "hopper_panel" | "dispenser_panel" | "dropper_panel" | "ender_chest_panel" | "shulker_box_panel" | "barrel_panel"; +export type PopupDialog = "popup_dialog_bg" | "popup_dialog_message" | "popup_dialog_button" | "popup_dialog_button_with_binding" | "popup_dialog_left_button" | "popup_dialog_middle_button" | "popup_dialog_right_button" | "popup_dialog" | "modal_background_image" | "black_tint_image" | "modal_title_text" | "modal_label_text" | "modal_label_text/padding" | "modal_label_text/text" | "modal_checkbox_button" | "modal_checkbox_button/header_description_stack_panel" | "modal_checkbox_button/header_description_stack_panel/checkbox_visuals" | "modal_checkbox_button/header_description_stack_panel/buffer_panel" | "modal_checkbox_button/header_description_stack_panel/buffer_panel/label" | "modal_checkbox_button/header_description_stack_panel/padding_panel" | "dialog_text_wrapper" | "modal_label_panel" | "modal_left_button" | "modal_middle_button" | "modal_rightcancel_button" | "three_buttons_panel" | "three_buttons_panel/left" | "three_buttons_panel/middle" | "three_buttons_panel/right" | "two_buttons_checkbox_panel" | "two_buttons_checkbox_panel/left" | "two_buttons_checkbox_panel/middle" | "two_buttons_checkbox_panel/checkbox" | "destructive_three_buttons_panel" | "destructive_three_buttons_panel/left" | "destructive_three_buttons_panel/middle" | "destructive_three_buttons_panel/right" | "two_buttons_panel" | "two_buttons_panel/left" | "two_buttons_panel/right" | "destructive_two_buttons_panel" | "destructive_two_buttons_panel/left" | "destructive_two_buttons_panel/right" | "single_button_panel" | "single_button_panel/left" | "single_button_checkbox_panel" | "single_button_checkbox_panel/left" | "single_button_checkbox_panel/checkbox" | "modal_dialog_base" | "modal_dialog_with_buttons" | "modal_dialog_with_buttons/background_with_buttons" | "modal_dialog_with_buttons/title" | "modal_dialog_with_buttons/text" | "modal_dialog_with_buttons/button_panel" | "modal_input_panel" | "modal_input_panel/black_tint_image" | "modal_dialog_popup" | "modal_dialog_popup/modal_input" | "modal_dialog_popup/modal_input/modal_bg_buttons" | "modal_dialog_popup/modal_input/black_background" | "hollow_2_bottom_button_panel" | "hollow_2_bottom_button_panel/lower_button_controls" | "form_fit_screen_with_title_and_close_and_bottom_buttons" | "form_fit_screen_with_title_and_close" | "form_fit_screen_with_title_and_close/panel_background" | "form_fit_screen_with_title_and_close/panel_content" | "form_fit_screen_with_title_and_close/panel_content/header" | "form_fit_screen_with_title_and_close/panel_content/header/header_content" | "form_fit_screen_with_title_and_close/panel_content/close_button_panel" | "form_fit_screen_with_title_and_close/panel_content/close_button_panel/close" | "form_fit_screen_with_title_and_close/panel_content/contents" | "form_fit_screen_with_title_and_close/panel_content/contents/contents" | "form_fit_screen_with_title_and_close/panel_content/contents/content_padding" | "form_fit_screen_with_title_and_close/panel_content/lower_contents" | "form_fit_screen_with_title_and_close/panel_content/lower_contents/contents" | "form_fit_modal_dialog_popup" | "form_fit_modal_dialog_popup/background" | "form_fit_modal_dialog_popup/content" | "progress_dialog_popup" | "progress_dialog_popup/background" | "progress_dialog_popup/title" | "progress_dialog_popup/progress_content" | "progress_dialog_popup/button" | "progress_content" | "progress_content/progress_titles" | "progress_content/progress_titles/current_progress_label" | "progress_content/progress_titles/total_progress_label" | "progress_content/progress_bar" | "progress_label" | "current_progress_label" | "total_progress_label" | "progress_bar_icon" | "progress_bar_icon/full_progress_bar_icon" | "progress_bar_icon/empty_progress_bar_icon" | "progress_bar_icon/progress_bar_nub" | "empty_progress_bar_icon" | "full_progress_bar_icon" | "progress_bar_nub"; +export type Portfolio = "screenshot" | "screenshot_frame" | "trash_default" | "trash_hover" | "trash_pressed" | "photo_trash_button_left" | "photo_trash_button_left/default" | "photo_trash_button_left/hover" | "photo_trash_button_left/pressed" | "photo_trash_button_right" | "photo_trash_button_right/default" | "photo_trash_button_right/hover" | "photo_trash_button_right/pressed" | "photo_number" | "photo_number_left" | "photo_number_right" | "photo_corner_bl" | "photo_corner_br" | "photo_corner_tr" | "photo_corner_tl" | "page_photo" | "page_photo/screenshot" | "page_photo/screenshot_frame" | "page_photo/photo_corner_bl" | "page_photo/photo_corner_br" | "page_photo/photo_corner_tl" | "page_photo/photo_corner_tr" | "pick_item" | "pick_item/photo" | "pick_item/button" | "header" | "screenshot_grid" | "text_centering_panel" | "text_centering_panel/header" | "pick_scrolling_content" | "pick_scrolling_content/header" | "pick_scrolling_content/portfolio_grid" | "no_pick_photos_alert_label" | "pick_panel" | "pick_panel/scroll" | "pick_panel/close_button" | "pick_panel/no_pick_photos_alert_label" | "text_edit_box_default_indent" | "text_edit_box_hover_indent" | "text_edit_box_hover_indent/focus_border_white" | "text_edit_control" | "text_edit_control/clipper_panel" | "text_edit_control/clipper_panel/display_text" | "text_edit_control/clipper_panel/place_holder_control" | "text_edit_control/locked" | "text_edit_control/locked/edit_box_indent" | "text_edit_control/default" | "text_edit_control/hover" | "text_edit_control/pressed" | "photo_item" | "photo_item/screenshot" | "photo_item/screenshot_frame" | "photo_item/text_edit_control" | "photo_item/photo_corner_bl" | "photo_item/photo_corner_br" | "photo_item/photo_corner_tl" | "photo_item/photo_corner_tr" | "photo_grid_item" | "photo_grid_item/photo_item" | "photo_list_grid" | "prev_button_default" | "prev_button_hover" | "prev_button_pressed" | "photo_page_prev_button" | "photo_page_prev_button/default" | "photo_page_prev_button/hover" | "photo_page_prev_button/pressed" | "next_button_default" | "next_button_hover" | "next_button_pressed" | "photo_page_next_button" | "photo_page_next_button/default" | "photo_page_next_button/hover" | "photo_page_next_button/pressed" | "convert_button_default" | "convert_button_hover" | "convert_button_pressed" | "photo_convert_left_button" | "photo_convert_left_button/default" | "photo_convert_left_button/hover" | "photo_convert_left_button/pressed" | "photo_convert_right_button" | "photo_convert_right_button/default" | "photo_convert_right_button/hover" | "photo_convert_right_button/pressed" | "bottom_button_panel" | "bottom_button_panel/export_button" | "bottom_button_panel/im_content_button" | "bottom_button_panel/add_photo_button" | "im_content_button" | "export_button" | "add_photo_button" | "book_binding" | "book_spine" | "book_background" | "book_background/book_binding" | "book_background/top_spine" | "book_background/bottom_spine" | "header_panel" | "header_panel/header_background" | "close_button_default" | "close_button_hover" | "close_button_pressed" | "close_button" | "close_button/default" | "close_button/hover" | "close_button/pressed" | "no_photos_alert_label" | "book_and_buttons_panel" | "book_and_buttons_panel/book_panel" | "book_and_buttons_panel/book_panel/book_background" | "book_and_buttons_panel/book_panel/close_button" | "book_and_buttons_panel/book_panel/photo_list_grid" | "book_and_buttons_panel/book_panel/photo_number_left" | "book_and_buttons_panel/book_panel/photo_number_right" | "book_and_buttons_panel/book_panel/photo_trash_button_left" | "book_and_buttons_panel/book_panel/photo_trash_button_right" | "book_and_buttons_panel/book_panel/photo_page_prev_button" | "book_and_buttons_panel/book_panel/photo_page_next_button" | "book_and_buttons_panel/book_panel/photo_convert_left_button" | "book_and_buttons_panel/book_panel/photo_convert_right_button" | "book_and_buttons_panel/book_panel/no_photos_alert_label" | "book_and_buttons_panel/bottom_button_panel" | "root_panel" | "portfolio_screen" | "portfolio_screen_content" | "portfolio_screen_content/root_panel" | "portfolio_screen_content/root_panel/book_and_buttons_panel" | "portfolio_screen_content/root_panel/pick_panel"; +export type Progress = "popup_dialog_base" | "popup_dialog_base/background" | "popup_dialog_base/scrolling_panel" | "popup_dialog_base/totalSelected" | "popup_dialog_base/totalSelectedSize" | "popup_dialog_base/left" | "popup_dialog_base/right" | "checkbox_visual" | "checkbox_visual/control" | "checkbox_visuals_unchecked" | "checkbox_visuals_checked" | "checkbox_visuals_unchecked_locked" | "checkbox_visuals_checked_locked" | "checkbox_visuals_unchecked_hover" | "checkbox_visuals_checked_hover" | "checkbox_with_label_core" | "checkbox_with_label" | "checkbox_with_label/checkbox_with_label_core" | "resource_pack_grid_item" | "resource_pack_section" | "resource_pack_section/required_resource_pack_list_grid" | "resource_pack_section/optional_resource_pack_list_grid" | "simple_popup_dialog_base" | "simple_popup_dialog_base/dialog_background_hollow_3" | "simple_popup_dialog_base/dialog_background_hollow_3/control" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_0" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/title" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_1" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_2" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description2" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_3" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/top_optional_button" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_4" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/middle_button" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_5" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/bottom_button" | "resource_pack_download_popup_base" | "resource_pack_download_server_required" | "resource_pack_download_optional_and_required" | "resource_pack_download_optional" | "resource_pack_download_required" | "normal_stroke_button" | "progress_screen_text" | "progress_title_text" | "progress_bar_text" | "code_text" | "code_number" | "progress_loading_bars" | "progress_loading_spinner" | "fancy_progress_loading_bars" | "fancy_progress_loading_bars/full_progress_bar_icon" | "fancy_progress_loading_bars/empty_progress_bar_icon" | "fancy_progress_loading_bars/progress_bar_nub" | "progress_bar" | "progress_bar_nub" | "thick_progress_bar_icon_base" | "thick_progress_bar_icon_empty" | "thick_progress_bar" | "thick_progress_bar/full_progress_bar_icon" | "thick_progress_bar/empty_progress_bar_icon" | "edu_cloud_upload_progress_bar" | "edu_cloud_upload_progress_bar/waveform_loading_bar" | "edu_cloud_upload_progress_bar/determinate_loading_bar" | "cancel_button" | "retry_button" | "abort_button" | "ok_button" | "title_panel" | "title_panel/progress_title_text" | "title_panel/progress_bar_text" | "title_panel/progress_bar" | "button_panel" | "button_panel/cancel_button" | "modal_button_panel" | "modal_button_panel/cancel_button" | "modal_button_panel_with_retry" | "modal_button_panel_with_retry/abort_button" | "modal_button_panel_with_retry/cancel_button" | "modal_button_panel_with_retry/retry_button" | "modal_ok_button_panel" | "modal_ok_button_panel/ok_button" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "world_image" | "cloud_image" | "server_image" | "edu_cloud_upload_image" | "edu_cloud_upload_image/world_image_wrapper" | "edu_cloud_upload_image/world_image_wrapper/fetch_world_image" | "edu_cloud_upload_image/arrow_image_wrapper" | "edu_cloud_upload_image/arrow_image_wrapper/arrow_image" | "edu_cloud_upload_image/cloud_image_wrapper" | "edu_cloud_upload_image/cloud_image_wrapper/upload_cloud_image" | "edu_cloud_fetch_image" | "edu_cloud_fetch_image/cloud_image_wrapper" | "edu_cloud_fetch_image/cloud_image_wrapper/fetch_cloud_image" | "edu_cloud_fetch_image/spyglass_image_wrapper" | "edu_cloud_fetch_image/spyglass_image_wrapper/spyglass_image" | "edu_cloud_fetch_image/world_image_wrapper" | "edu_cloud_fetch_image/world_image_wrapper/fetch_world_image" | "edu_cloud_download_image" | "edu_cloud_download_image/cloud_image_wrapper" | "edu_cloud_download_image/cloud_image_wrapper/download_cloud_image" | "edu_cloud_download_image/arrow_image_wrapper" | "edu_cloud_download_image/arrow_image_wrapper/arrow_image" | "edu_cloud_download_image/world_image_wrapper" | "edu_cloud_download_image/world_image_wrapper/download_world_image" | "edu_server_fetch_image" | "edu_server_fetch_image/server_image_wrapper_left" | "edu_server_fetch_image/server_image_wrapper_left/server_image" | "edu_server_fetch_image/spyglass_image_wrapper" | "edu_server_fetch_image/spyglass_image_wrapper/spyglass_image" | "edu_server_fetch_image/server_image_wrapper_right" | "edu_server_fetch_image/server_image_wrapper_right/server_image" | "modal_progress_panel_no_cancel" | "modal_progress_panel_no_cancel/common_panel" | "modal_progress_panel_no_cancel/content" | "modal_progress_panel_no_cancel/content/title_panel" | "modal_progress_panel_no_cancel/content/progress_loading_bars" | "modal_progress_panel_with_cancel" | "modal_progress_panel_with_cancel/common_panel" | "modal_progress_panel_with_cancel/content" | "modal_progress_panel_with_cancel/content/title_panel" | "modal_progress_panel_with_cancel/content/progress_loading_bars" | "modal_progress_panel_with_cancel/modal_button_panel" | "progress_panel" | "progress_panel/progress_loading_bars" | "progress_panel/title_panel" | "progress_panel/button_panel" | "modal_progress_screen" | "delete_progress_screen" | "realms_loading_background" | "realms_loading_background/solid_blue" | "realms_loading_background/solid_blue/gradient" | "realms_stories_loading_progress_screen" | "world_loading_progress_screen" | "world_loading_screen_background" | "overworld_loading_background" | "overworld_loading_background/background_gradient" | "overworld_loading_progress_screen" | "nether_loading_background" | "nether_loading_background/background_gradient" | "nether_loading_progress_screen" | "theend_loading_background" | "theend_loading_background/background_gradient" | "theend_loading_progress_screen" | "world_saving_progress_screen" | "fetching_edu_cloud_worlds" | "edu_cloud_download_progress_screen" | "fetching_edu_servers" | "world_convert_modal_progress_screen" | "progress_screen" | "popup_dialog_factory" | "progress_screen_content" | "progress_screen_content/progress_content_panel" | "progress_screen_content/popup_dialog_factory" | "progress_content_panel" | "progress_content_panel/progress_panel" | "progress_content_panel/gamepad_helpers" | "modal_screen_content" | "modal_screen_content/modal_progress_panel" | "world_modal_progress_panel" | "world_modal_progress_panel/common_panel" | "world_modal_progress_panel/base_content" | "world_modal_progress_panel/base_content/progress_title_text" | "world_modal_progress_panel/base_content/progress_bar_text" | "world_modal_progress_panel/inside_content" | "world_modal_progress_panel/inside_content/loading_bar_panel" | "world_modal_progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars" | "world_modal_progress_panel/inside_content/loading_bar_panel/progress_loading_bars" | "world_modal_progress_panel/inside_content/vertical_padding" | "world_modal_progress_panel/inside_content/modal_button_panel" | "world_modal_progress_panel/inside_content/vertical_padding_2" | "cloud_upload_panel" | "cloud_upload_panel/common_panel" | "cloud_upload_panel/base_content" | "cloud_upload_panel/base_content/progress_title_text" | "cloud_upload_panel/base_content/progress_text" | "cloud_upload_panel/base_content/edu_cloud_upload_image" | "cloud_upload_panel/base_content/loading_bar_panel" | "cloud_upload_panel/base_content/loading_bar_panel/progress_loading_bars" | "cloud_error_panel" | "cloud_error_panel/common_panel" | "cloud_error_panel/content_wrapper" | "cloud_error_panel/content_wrapper/title_wrapper" | "cloud_error_panel/content_wrapper/title_wrapper/progress_title_text" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/tts_border" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/edu_cloud_error_text" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_text" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_number" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding_2" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/cloud_support_hypertext" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon/icon" | "cloud_error_panel/content_wrapper/button_content" | "cloud_error_panel/content_wrapper/button_content/modal_button_panel" | "cloud_error_panel/content_wrapper/error_button_content" | "cloud_error_panel/content_wrapper/error_button_content/download_ok_button" | "cloud_error_panel/content_wrapper/error_button_content/download_cancel_button" | "cloud_fetch_panel" | "cloud_fetch_panel/common_panel" | "cloud_fetch_panel/base_content" | "cloud_fetch_panel/base_content/progress_title_text" | "cloud_fetch_panel/base_content/progress_text" | "cloud_fetch_panel/base_content/edu_cloud_fetch_image" | "cloud_fetch_panel/base_content/loading_bar_panel" | "cloud_fetch_panel/base_content/loading_bar_panel/progress_loading_bars" | "server_fetch_panel" | "server_fetch_panel/common_panel" | "server_fetch_panel/base_content" | "server_fetch_panel/base_content/progress_title_text" | "server_fetch_panel/base_content/progress_text" | "server_fetch_panel/base_content/edu_server_fetch_image" | "server_fetch_panel/base_content/loading_bar_panel" | "server_fetch_panel/base_content/loading_bar_panel/progress_loading_bars" | "cloud_download_panel" | "cloud_download_panel/common_panel" | "cloud_download_panel/base_content" | "cloud_download_panel/base_content/progress_title_text" | "cloud_download_panel/base_content/progress_bar_text" | "cloud_download_panel/base_content/edu_cloud_download_image" | "cloud_download_panel/loading_bar_panel" | "cloud_download_panel/loading_bar_panel/progress_loading_bars" | "world_convert_modal_progress_screen_content" | "world_convert_modal_progress_screen_content/mobile_data_icon" | "world_convert_modal_progress_screen_content/title_panel_content" | "world_convert_modal_progress_screen_content/world_modal_progress_panel" | "world_convert_modal_progress_screen_content/popup_dialog_factory" | "realms_loading_world_modal_progress_screen_content" | "realms_loading_world_modal_progress_screen_content/mobile_data_icon" | "realms_loading_world_modal_progress_screen_content/realms_title_image" | "realms_loading_world_modal_progress_screen_content/world_modal_progress_panel" | "realms_loading_world_modal_progress_screen_content/popup_dialog_factory" | "realms_loading_world_modal_progress_screen_content/server_region_connected" | "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_label" | "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_connected_text" | "realms_loading_world_modal_progress_screen_content/server_region_connected/padding" | "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_ping_icon" | "world_save_modal_progress_screen_content" | "world_save_modal_progress_screen_content/title_panel_content" | "world_save_modal_progress_screen_content/world_modal_progress_panel" | "world_save_modal_progress_screen_content/save_icon" | "world_save_modal_progress_screen_content/popup_dialog_factory" | "cloud_upload_screen_content" | "cloud_upload_screen_content/title_panel_content" | "cloud_upload_screen_content/cloud_upload_panel" | "cloud_upload_screen_content/cloud_upload_error_panel" | "cloud_upload_screen_content/popup_dialog_factory" | "cloud_upload_screen_content/cloud_conflict_resolution_popup_factory" | "edu_cloud_fetch_screen_content" | "edu_cloud_fetch_screen_content/cloud_fetch_panel" | "edu_cloud_fetch_screen_content/popup_dialog_factory" | "edu_server_fetch_screen_content" | "edu_server_fetch_screen_content/server_fetch_panel" | "edu_server_fetch_screen_content/popup_dialog_factory" | "cloud_download_screen_content" | "cloud_download_screen_content/background" | "cloud_download_screen_content/cloud_download_panel" | "cloud_download_screen_content/cloud_download_error_panel" | "cloud_download_screen_content/popup_dialog_factory" | "auto_save" | "mobile_data_ios_icon" | "mobile_data_android_icon" | "mobile_data_icon_text" | "mobile_data_icon" | "mobile_data_icon/icon_android" | "mobile_data_icon/icon_ios" | "mobile_data_icon/text"; +export type RatingPrompt = "padding_horizontal" | "padding_vertical" | "rating_prompt_yes_label" | "rating_prompt_yes_label/button_label" | "rating_prompt_no_label" | "rating_prompt_no_label/button_label" | "rating_prompt_yes_button" | "rating_prompt_no_button" | "dialog_image" | "dialog_image_with_border" | "dialog_image_with_border/dialog_image" | "button_panel" | "button_panel/padding_3" | "button_panel/yes_button" | "button_panel/no_button" | "image_panel" | "image_panel/padding_2" | "image_panel/dialog_image_with_border" | "main_panel" | "main_panel/padding_0" | "main_panel/image_panel" | "main_panel/padding_1" | "main_panel/button_panel" | "rating_prompt_screen" | "rating_prompt_screen_content"; +export type RealmsCommon = "pending_invites_icon" | "dark_banner" | "dark_banner_hover" | "legacy_banner" | "main_banner" | "hollow_banner" | "popup_dialog_bg" | "popup_dialog__play_on_realm" | "popup_dialog__play_on_realm/play_on_realm_popup_background" | "popup_dialog__play_on_realm/gamepad_helpers" | "popup_dialog__play_on_realm/play_on_realm_popup_content" | "play_on_realm_popup_background" | "play_on_realm_popup_content" | "play_on_realm_popup_content/popup_dialog_bg" | "play_on_realm_popup_content/play_on_realm_popup_dialog_header" | "play_on_realm_popup_content/play_on_realm_popup_dialog_upper_body" | "play_on_realm_popup_content/play_on_realm_popup_dialog_lower_body" | "play_on_realm_popup_dialog_header" | "play_on_realm_popup_dialog_header/play_on_realm_popup_dialog_header_text" | "play_on_realm_popup_dialog_header/close_button" | "play_on_realm_popup_dialog_header_text" | "play_on_realm_popup_dialog_upper_body" | "play_on_realm_popup_dialog_upper_body/play_on_realm_banner" | "play_on_realm_popup_dialog_upper_body/play_on_realm_panel" | "play_on_realm_popup_dialog_upper_body/background_panel" | "play_on_realm_popup_dialog_upper_body/background_panel/black_background" | "play_on_realm_panel" | "play_on_realm_panel/play_on_realm_content_panel" | "play_on_realm_panel/play_on_realm_content_panel/play_image_panel" | "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/spacing_gap_image" | "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/realms_image" | "play_on_realm_panel/play_on_realm_content_panel/play_text_panel" | "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_1" | "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_1" | "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_2" | "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_2" | "play_on_realm_popup_dialog_lower_body" | "play_on_realm_popup_dialog_lower_body/button_panel" | "play_on_realm_popup_dialog_lower_body/button_panel/play_with_friends_button" | "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap1" | "play_on_realm_popup_dialog_lower_body/button_panel/play_solo_button" | "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap2" | "play_on_realm_popup_dialog_lower_body/button_panel/go_back_button"; +export type RealmsCreate = "title_label" | "label" | "enter_name_panel" | "enter_name_panel/name_label_0" | "enter_name_panel/name_edit" | "selected_option_checkbox" | "selected_option_checkbox_empty" | "selected_option_checkbox_filled" | "checkbox_panel" | "checkbox_panel/selected_option_checkbox_empty" | "checkbox_panel/selected_option_checkbox_filled" | "checkbox_panel/button_label" | "realms_option_button" | "choose_duration_panel" | "choose_duration_panel/name_label" | "choose_duration_panel/choose_duration_stack_panel" | "choose_duration_panel/choose_duration_stack_panel/short" | "choose_duration_panel/choose_duration_stack_panel/long" | "choose_tier_panel" | "choose_tier_panel/name_label" | "choose_tier_panel/choose_tier_stack_panel" | "choose_tier_panel/choose_tier_stack_panel/player_count_2" | "view_terms_button" | "privacy_policy_button" | "terms_and_conditions_panel" | "terms_and_conditions_panel/name_label" | "terms_and_conditions_panel/terms_string_panel" | "terms_and_conditions_panel/terms_string_panel/banner_fill" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button" | "confirmation_panel" | "confirmation_panel/create_realms_button" | "create_realms_stack_panel" | "create_realms_stack_panel/padding_0" | "create_realms_stack_panel/create_realms_text_panel" | "create_realms_text_panel" | "create_realms_text_panel/create" | "stack_item" | "scroll_stack_panel" | "scroll_stack_panel/name" | "scroll_stack_panel/name/enter_name_panel" | "scroll_stack_panel/padding_0" | "scroll_stack_panel/duration" | "scroll_stack_panel/duration/choose_duration_panel" | "scroll_stack_panel/tier" | "scroll_stack_panel/tier/choose_tier_panel" | "scroll_stack_panel/toc" | "scroll_stack_panel/toc/terms_and_conditions_panel" | "scroll_stack_panel/padding_1" | "scroll_stack_panel/realms_terms_info" | "scroll_stack_panel/realms_terms_info/label_panel" | "scroll_stack_panel/realms_terms_info/label_panel/padding_1" | "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper" | "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper_extra" | "scroll_stack_panel/realms_terms_info/label_panel/padding_2" | "scroll_stack_panel/realms_switch_nso_info" | "terms_section" | "terms_section/terms_section_label" | "terms_section_extra" | "terms_section_extra/terms_section_label" | "main_panel" | "main_panel/scrolling_panel" | "main_panel/padding_0" | "main_panel/confirmation_panel" | "main_panel/padding_1" | "content" | "content/main_panel" | "realms_create_screen" | "realms_create_content_and_factory" | "realms_create_content_and_factory/realms_create_content" | "realms_create_content_and_factory/popup_dialog_factory"; +export type RealmsPendingInvitations = "panel_text" | "banner_panel_base" | "banner_panel_base/background" | "banner_panel_base/indent_panel" | "banner_panel_base/indent_panel/content" | "banner_panel" | "banner_panel_hover" | "realm_invite_button" | "realm_name_label" | "realm_owner_label" | "tts_gamertag_item_info_wrapper" | "gamertag_item_info" | "gamertag_item_info/rnl" | "gamertag_item_info/rol" | "accept_button_content" | "decline_button_content" | "realm_accept_button" | "realm_decline_button" | "realm_accepted_panel" | "gamertag_item_content" | "gamertag_item_content/lb" | "gamertag_item_content/a" | "gamertag_item_content/d" | "gamertag_item_content/ap" | "gamertag_item" | "gamertag_item_grid" | "show_friends_only_toggle_state_content" | "show_friends_only_toggle_state_content/checkbox_holding_panel" | "show_friends_only_toggle_state_content/checkbox_holding_panel/hide_invites" | "show_friends_only_toggle_state_content/hide_invites_text_panel" | "show_friends_only_toggle_state_content/hide_invites_text_panel/hide_invites_text" | "show_friends_only_toggle_on_state_content" | "show_friends_only_toggle_on_state" | "show_friends_only_toggle_off_state_content" | "show_friends_only_toggle_off_state" | "show_friends_only_toggle_on_hover_state_content" | "show_friends_only_toggle_on_hover_state" | "show_friends_only_toggle_off_hover_state_content" | "show_friends_only_toggle_off_hover_state" | "show_friends_only_toggle_on_locked_state_content" | "show_friends_only_toggle_on_locked_state" | "show_friends_only_toggle_off_locked_state_content" | "show_friends_only_toggle_off_locked_state" | "show_friends_only_toggle" | "gamepad_helpers" | "gamepad_helpers/a" | "gamepad_helpers/b" | "no_invites_label_wrapper" | "no_invites_label" | "no_invites_label/label" | "realms_pending_invitation_list" | "realms_pending_invitation_list/upper_padding" | "realms_pending_invitation_list/sfop" | "realms_pending_invitation_list/gig" | "realms_pending_invitation_list/lower_padding" | "realms_pending_invitation_list/nil" | "content_panel" | "realms_pending_invitations_screen" | "realms_invitation_screen_content" | "realms_invitation_screen_content/root_panel" | "realms_invitation_screen_content/root_panel/main_panel" | "realms_invitation_screen_content/root_panel/sgh"; +export type RealmsSlots = "vertical_padding" | "horizontal_padding" | "horizontal_padding_sibling_height" | "realms_background" | "realms_background/gradient" | "realms_background/particle_1" | "realms_background/particle_2" | "plus" | "check" | "world_thumbnail" | "realms_stories_icon_glyph" | "realms_stories_icon_glyph/realms_stories_icon" | "play_button" | "edit_realm_button" | "realms_feed_button" | "unread_story_count_text" | "unread_story_count_text_background" | "unread_story_count_panel" | "unread_story_count_panel/text" | "unread_story_count_panel/text/background" | "edit_world_button_panel" | "edit_world_button_panel/edit_world_button" | "edit_world_button_panel/padding" | "edit_world_button_panel/activate_world_button" | "world_slot_button" | "world_slot_button_content" | "world_slot_button_content/world_slot_top" | "world_slot_button_content/world_slot_top/background" | "world_slot_button_content/world_slot_top/add_world_image_panel" | "world_slot_button_content/world_slot_top/add_world_image_panel/plus_image" | "world_slot_button_content/world_slot_top/world_thumbnail_image_panel" | "world_slot_button_content/world_slot_top/world_thumbnail_image_panel/world_thumbnail" | "world_slot_button_content/world_slot_top/edit_world_button_panel" | "world_slot_button_content/world_slot_top/foreground" | "world_slot_button_content/world_slot_top/check_image" | "world_slot_button_content/world_slot_bottom" | "world_slot_button_content/world_slot_bottom/divider_line_black" | "world_slot_button_content/world_slot_bottom/divider_line_white" | "world_slot_button_content/world_slot_bottom/add_world_text_panel" | "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_grey" | "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_green" | "world_slot_button_content/world_slot_bottom/add_world_text_panel/add_world_text" | "world_slot_button_content/world_slot_bottom/world_info_panel" | "world_slot_button_content/world_slot_bottom/world_info_panel/background" | "world_slot_button_content/world_slot_bottom/world_info_panel/background_green" | "world_slot_button_content/world_slot_bottom/world_info_panel/world_info_stack_panel" | "world_info_stack_panel" | "world_info_stack_panel/world_name_panel" | "world_info_stack_panel/world_name_panel/world_name" | "world_info_stack_panel/world_type_panel" | "world_info_stack_panel/world_type_panel/world_type" | "world_info_stack_panel/bottom_padding" | "main_stack_panel" | "main_stack_panel/padding_0" | "main_stack_panel/button_panel" | "main_stack_panel/button_panel/play_button" | "main_stack_panel/button_panel/left_padding" | "main_stack_panel/button_panel/edit_realm_button" | "main_stack_panel/button_panel/right_padding" | "main_stack_panel/button_panel/feed_panel_with_unread_count" | "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel" | "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel/realms_feed_button" | "main_stack_panel/button_panel/feed_panel_with_unread_count/unread_story_count" | "main_stack_panel/padding_1" | "main_stack_panel/text_panel_0" | "main_stack_panel/text_panel_0/text" | "main_stack_panel/padding_2" | "main_stack_panel/worlds_panel" | "main_stack_panel/worlds_panel/world_slot_1" | "main_stack_panel/worlds_panel/padding_0" | "main_stack_panel/worlds_panel/world_slot_2" | "main_stack_panel/worlds_panel/padding_1" | "main_stack_panel/worlds_panel/world_slot_3" | "main_stack_panel/padding_3" | "main_stack_panel/text_panel_1" | "main_stack_panel/text_panel_1/text" | "realms_slots_screen" | "realms_slots_screen_content" | "realms_slots_screen_content/background" | "realms_slots_screen_content_panel" | "realms_slots_screen_content_panel/main_scroll_panel"; +export type RealmsSettings = "settings_screen" | "generic_section" | "generic_section_wrapper" | "generic_section_wrapper/generic_section" | "checkbox_image" | "checkbox_unchecked_state" | "checkbox_checked_state" | "checkbox_unchecked_hover_state" | "checkbox_checked_hover_state" | "checkbox_unchecked_locked_state" | "checkbox_checked_locked_state" | "player_count_label" | "realm_duration_label" | "realm_subscription_origin_label" | "realm_consumable_to_subscription_info_label" | "manage_subscriptions_button" | "delete_realm_button" | "open_realm_button" | "close_realm_button" | "subscriptions_section" | "subscriptions_section/loading_view" | "subscriptions_section/loading_failed_view" | "subscriptions_section/loaded_view" | "subscriptions_section/loaded_view/player_count_label" | "subscriptions_section/loaded_view/realm_duration_label" | "subscriptions_section/loaded_view/possible_store_mismatch" | "subscriptions_section/loaded_view/realm_subscription_origin_label" | "subscriptions_section/loaded_view/realm_consumable_to_subscription_info_label" | "subscriptions_section/loaded_view/_0" | "subscriptions_section/loaded_view/delete_realm_button" | "subscriptions_section/loaded_view/open_realm_button" | "subscriptions_section/loaded_view/close_realm_button" | "subscriptions_section/loaded_view/_1" | "subscriptions_section/loaded_view/manage_subscriptions_button" | "invite_link_item_content" | "invite_link_item_content/invite_link_item_name_and_expiry_text" | "invite_link_item_content/invite_link_item_name_and_expiry_text/name_text" | "invite_link_item_content/invite_link_item_name_and_expiry_text/spacing_gap" | "invite_link_item_content/invite_link_item_name_and_expiry_text/expiry_text" | "invite_link_item_content/invite_link_item_state_text" | "invite_link_item_content/invite_link_item_state_text/state_text" | "invite_link_item_content/spacing_gap" | "invite_link_item_template" | "invite_link_item_template/invite_link_item_button" | "invite_links_section" | "invite_links_section/loading_view" | "invite_links_section/loading_failed_view" | "invite_links_section/loaded_view" | "invite_links_section/loaded_view/spacing_gap_0" | "invite_links_section/loaded_view/invite_links_info" | "invite_links_section/loaded_view/invite_links_grid" | "invite_links_section/loaded_view/spacing_gap_1" | "invite_links_section/loaded_view/add_invite_link_button" | "advanced_section" | "advanced_section/loading_view" | "advanced_section/loading_failed_view" | "advanced_section/loaded_view" | "advanced_section/loaded_view/spacing_gap_0" | "advanced_section/loaded_view/server_preference" | "advanced_section/loaded_view/set_region_content" | "advanced_section/loaded_view/changes_not_applied_panel" | "advanced_section/loaded_view/changes_not_applied_panel/changes_not_applied_label" | "advanced_section/loaded_view/spacing_gap_1" | "advanced_section/loaded_view/region_help_button" | "set_region_dropdown" | "region_dropdown_content" | "region_dropdown_radio" | "region_help_button_content" | "region_help_button_content/external_link_icon" | "region_help_button_content/spacing_gap_1" | "region_help_button_content/help_text" | "tts_focus_border" | "saves_section" | "saves_section/padding_saves_section_top" | "saves_section/loaded_view" | "saves_section/loaded_view/storage_bar_header_panel" | "saves_section/loaded_view/storage_bar_header_panel/storage_bar_with_header" | "saves_section/loaded_view/storage_bar_header_panel/focus_border" | "saves_section/loaded_view/padding3" | "saves_section/loaded_view/save_active_world_button" | "saves_section/loaded_view/padding4" | "saves_section/loaded_view/active_world_info" | "saves_section/loaded_view/padding5" | "saves_section/loaded_view/storage_warning" | "saves_section/loaded_view/storage_warning/warning_text_panel" | "saves_section/loaded_view/storage_warning/focus_border" | "saves_section/loaded_view/padding6" | "saves_section/loaded_view/save_list_container" | "saves_section/loaded_view/save_list_container/tab_buttons" | "saves_section/loaded_view/save_list_container/tab_content_panel" | "saves_section/loaded_view/padding_loaded_view_bottom" | "saves_section/loaded_view/restore_info" | "saves_section/loaded_view/saves_help_panel" | "saves_section/loading_indicator" | "saves_section/loading_indicator/restore_info" | "saves_section/loading_indicator/loading_text_panel" | "saves_section/loading_indicator/loading_text_panel/loading_text" | "saves_section/loading_indicator/loading_text_panel/loading_text_padding" | "saves_section/loading_indicator/loading_bars" | "saves_section/loading_indicator/loading_bars/progress_loading_bars" | "saves_section/loading_failed_panel" | "saves_section/loading_failed_panel/restore_info" | "saves_section/loading_failed_panel/saves_help_panel" | "saves_section/loading_failed_panel/loading_failed_message" | "saves_help_panel" | "saves_help_panel/padding_help_button_top" | "saves_help_panel/saves_help_button" | "saves_help_panel/padding_help_button_bottom" | "saves_help_button_content" | "saves_help_button_content/external_link_icon" | "saves_help_button_content/spacing_gap_1" | "saves_help_button_content/help_text" | "storage_bar_label_stack_panel" | "storage_bar_label_stack_panel/text_left" | "storage_bar_label_stack_panel/padding" | "storage_bar_label_stack_panel/text_right" | "storage_bar_panel_with_header" | "storage_bar_panel_with_header/label_panel" | "storage_bar_panel_with_header/label_panel/heading_label" | "storage_bar_panel_with_header/padding2" | "storage_bar_panel_with_header/storage_bar_panel" | "realm_storage_heading_label" | "storage_bar_panel" | "storage_bar_panel/storage_bar_label" | "storage_bar_panel/padding" | "storage_bar_panel/storage_bar" | "storage_bar_panel_with_tts_focus_border" | "storage_bar_panel_with_tts_focus_border/storage_bar_panel" | "storage_bar_panel_with_tts_focus_border/focus_border" | "storage_bar" | "storage_bar/empty_progress_bar_beveled" | "storage_bar/storage_fill" | "storage_bar/storage_bar_beveled_overlay" | "active_world_info_panel" | "active_world_info_panel/active_world_info_label_stack_panel" | "active_world_info_panel/active_world_info_label_stack_panel/active_world_name_label" | "active_world_info_panel/active_world_info_label_stack_panel/active_world_size_label" | "active_world_info_panel/focus_border" | "warning_text_panel" | "warning_text_panel/warning_panel" | "warning_text_panel/warning_panel/padding1" | "warning_text_panel/warning_panel/warning_image" | "warning_text_panel/warning_panel/padding2" | "warning_text_panel/padding1" | "warning_text_panel/text_label" | "popup_dialog_background" | "popup_dialog_label" | "delete_selected_saves_button" | "cancel_popup_button" | "free_up_space_popup_content" | "free_up_space_popup_content/common_panel" | "free_up_space_popup_content/title_label" | "free_up_space_popup_content/panel_indent" | "free_up_space_popup_content/panel_indent/inside_header_panel" | "free_up_space_popup_content/button_panel" | "free_up_space_popup_content/button_panel/left_button_panel" | "free_up_space_popup_content/button_panel/pad" | "free_up_space_popup_content/button_panel/right_button_panel" | "free_up_space_popup_scrolling_panel" | "free_up_space_text_description" | "free_up_space_popup_content_stack_panel" | "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel" | "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/free_up_space_storage_bar_panel" | "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/focus_border" | "free_up_space_popup_content_stack_panel/padding_1" | "free_up_space_popup_content_stack_panel/free_up_space_manual_save_list_stack_panel" | "popup_dialog__free_up_space" | "popup_dialog__free_up_space/free_up_space_popup_background" | "popup_dialog__free_up_space/free_up_space_popup_content" | "top_tab" | "tab_content" | "tab_content/text" | "manual_navigation_tab" | "automatic_navigation_tab" | "tab_navigation_panel_layout" | "tab_navigation_panel_layout/content" | "button_tabs_container" | "button_tabs_container/manual_navigation_tab" | "button_tabs_container/automatic_navigation_tab" | "tab_content_panel" | "tab_content_panel/background" | "tab_content_panel/background/manual_save_list" | "tab_content_panel/background/automatic_save_list" | "save_list_panel" | "save_list_panel/save_list" | "manual_save_list_panel" | "manual_tab_info_panel" | "manual_tab_info_panel/info_label" | "manual_save_list_stack_panel" | "manual_save_list_stack_panel/padding1" | "manual_save_list_stack_panel/save_tab_info_label" | "manual_save_list_stack_panel/padding2" | "manual_save_list_stack_panel/stack_panel" | "manual_save_list_stack_panel/padding3" | "automatic_save_list_panel" | "automatic_tab_info_panel" | "automatic_tab_info_panel/info_label" | "automatic_save_list_stack_panel" | "automatic_save_list_stack_panel/padding1" | "automatic_save_list_stack_panel/save_tab_info_label" | "automatic_save_list_stack_panel/padding2" | "automatic_save_list_stack_panel/stack_panel" | "automatic_save_list_stack_panel/padding3" | "options_icon" | "saves_info_accordian" | "saves_info_accordian/main_content_panel" | "saves_info_accordian/main_content_panel/checkbox_button" | "saves_info_accordian/main_content_panel/main_item_toggle" | "saves_info_accordian/main_content_panel/options_button" | "saves_info_accordian/sub_content_panel" | "saves_info_accordian/sub_content_panel/saves_content" | "saves_info_accordion_checkbox" | "saves_info_accordion_checkbox/unchecked_control" | "saves_info_accordion_checkbox/checked_control" | "saves_info_accordion_checkbox/unchecked_hover_control" | "saves_info_accordion_checkbox/checked__hover_control" | "main_item_content" | "main_item_content/date_and_name" | "main_item_content/date_and_name/date_saved_label" | "main_item_content/date_and_name/world_name_label" | "main_item_content/time_and_size" | "main_item_content/time_and_size/save_data_time_label" | "main_item_content/time_and_size/save_data_size_label" | "main_item_content/padding_left_down_icon" | "main_item_content/down_icon" | "main_item_content/down_icon/options_icon" | "main_item_content/padding_right_down_icon" | "option_saves_info_label" | "saves_info_container" | "saves_info_container/saves_info_content" | "saves_info_content" | "saves_info_content/version_panel" | "saves_info_content/pack_header_panel" | "saves_info_content/world_packs_label" | "version_panel" | "version_panel/left_content" | "version_panel/left_content/save_version_label" | "pack_header_panel" | "pack_header_panel/left_content" | "pack_header_panel/left_content/packs_label" | "label_text" | "branch_grid_item_content" | "branch_grid_item_content/branch_text" | "branch_grid_item_content/commit_text" | "matching_item_button_content" | "matching_item_button_content/branch_text" | "matching_item_button_content/commit_text" | "branch_item_template" | "branch_item_template/branch_item_button" | "branches_grid" | "branch_set_panel" | "branch_set_panel/set_branch_id_label" | "version_filter_text_box" | "branch_page_panel" | "branch_page_panel/prev_button" | "branch_page_panel/page_text" | "branch_page_panel/next_button" | "branches_panel" | "branches_panel/branch_label" | "branches_panel/spacing_gap_1" | "branches_panel/set_branch_version_label" | "branches_panel/branch_set_panel" | "branches_panel/spacing_gap_2" | "branches_panel/matching_version_label" | "branches_panel/matching_item_button" | "branches_panel/spacing_gap_3" | "branches_panel/all_commits_label" | "branches_panel/version_filter_text_box" | "branches_panel/branches_grid" | "branches_panel/spacing_gap" | "branches_panel/branch_page_panel" | "branch_section" | "branch_section/branches_panel" | "popup_dialog__backups" | "popup_dialog__backups/transparent_close_button" | "popup_dialog__backups/backup_restore_popup_content" | "backup_restore_popup_content" | "backup_restore_popup_content/popup_dialog_bg" | "backup_restore_popup_content/backup_restore_popup_dialog_header" | "backup_restore_popup_content/backup_restore_popup_dialog_body" | "backup_restore_popup_dialog_header" | "backup_restore_popup_dialog_header/backup_restore_popup_dialog_header_text" | "backup_restore_popup_dialog_header_text" | "backup_restore_popup_dialog_body" | "backup_restore_popup_dialog_body/backup_restore_loading_panel" | "backup_restore_loading_panel" | "backup_restore_loading_panel/backup_restore_loading_stack_panel" | "backup_restore_loading_stack_panel" | "backup_restore_loading_stack_panel/padding" | "backup_restore_loading_stack_panel/backup_restore_text_panel" | "backup_restore_loading_stack_panel/backup_restore_loading_bar_panel" | "backup_restore_loading_stack_panel/padding2" | "backup_restore_text_panel" | "backup_restore_text_panel/loading_text" | "backup_restore_loading_bar_panel" | "backup_restore_loading_bar_panel/progress_loading_bars" | "backup_replace_icon" | "backup_download_icon" | "backup_grid_item_content" | "backup_grid_item_content/backup_grid_item_icon_panel" | "backup_grid_item_content/backup_grid_item_name_and_time_since" | "backup_grid_item_content/backup_grid_item_date_and_time" | "backup_grid_item_content/spacing_gap" | "backup_grid_item_name_and_time_since" | "backup_grid_item_name_and_time_since/date_text" | "backup_grid_item_name_and_time_since/spacing_gap" | "backup_grid_item_name_and_time_since/version_text" | "backup_grid_item_date_and_time" | "backup_grid_item_date_and_time/time_text" | "backup_grid_item_date_and_time/spacing_gap" | "backup_grid_item_date_and_time/size_text" | "backup_grid_item_icon_panel" | "backup_grid_item_icon_panel/backup_replace_icon" | "backup_item_template" | "backup_item_template/backup_item_button" | "backup_item_template/download_backup_panel" | "backup_item_template/download_backup_panel/download_backup_button" | "download_backup_button" | "backup_grid" | "backup_section" | "backup_section/backup_panel" | "backup_info_label" | "backup_network_error_label" | "backup_panel" | "backup_panel/spacing_gap" | "backup_panel/backup_info_label" | "backup_panel/spacing_gap2" | "backup_panel/progress_panel" | "backup_panel/progress_panel/progress_loading_bars" | "backup_panel/backup_grid" | "backup_panel/backup_network_error_label" | "test_content" | "test_content/realms_allowlist_content_panel" | "test_content/gamepad_helpers" | "selector_panel" | "selector_panel/play_button" | "selector_panel/disabled_play_button" | "selector_panel/expired_play_button" | "selector_panel/padding" | "selector_panel/selector_group_label" | "selector_panel/world_button" | "selector_panel/members_button" | "selector_panel/saves_button" | "selector_panel/subscription_button" | "selector_panel/backup_button" | "selector_panel/dev_options_button" | "selector_panel/invite_links_button" | "selector_panel/advanced_button" | "section_content_panels" | "section_content_panels/world_section" | "section_content_panels/players_section" | "section_content_panels/subscription_section" | "section_content_panels/invite_links_section" | "section_content_panels/advanced_section" | "section_content_panels/dev_options_section" | "section_content_panels/backup_section" | "section_content_panels/saves_section" | "popup_dialog__save_options" | "save_options_popup_content" | "save_options_popup_content/restore_button" | "save_options_popup_content/spacing_1" | "save_options_popup_content/download_button" | "save_options_popup_content/spacing_2" | "save_options_popup_content/save_button_container" | "save_options_popup_content/save_button_container/save_button" | "save_options_popup_content/save_button_container/spacing_3" | "save_options_popup_content/delete_button_container" | "save_options_popup_content/delete_button_container/delete_button" | "standalone_dialog_title" | "standalone_dialog_title/left_padding" | "standalone_dialog_title/dialog_title_label" | "standalone_dialog_title/right_padding" | "standalone_dialog_content" | "standalone_dialog_content/dialog_title" | "standalone_dialog_content/content_area" | "standalone_content_area" | "standalone_content_area/control" | "standalone_content_area/control/scrolling_panel" | "realms_settings_screen_base_no_selector_area" | "screen_realm_hub_manage_members" | "screen_realm_hub_invite_links"; +export type RealmsAllowlist = "spacing_gap" | "friends_containing_panel" | "friends_containing_panel/friends_panel" | "friends_panel" | "friends_panel/add_friends_and_invite_link_panel" | "friends_panel/option_dropdown_permissions" | "friends_panel/player_filter_label" | "friends_panel/player_filter_text_box" | "friends_panel/spacing_gap_members_top" | "friends_panel/lists" | "friends_panel/lists/members_label" | "friends_panel/lists/members_stack" | "friends_panel/lists/spacing_gap_members_bottom" | "friends_panel/lists/members_page_panel" | "friends_panel/lists/invited_friends_label" | "friends_panel/lists/invited_stack" | "friends_panel/lists/spacing_gap_invited_friends" | "friends_panel/lists/invited_friends_page_panel" | "friends_panel/lists/uninvited_friends_label" | "friends_panel/lists/uninvited_stack" | "friends_panel/lists/spacing_gap_uninvited_friends" | "friends_panel/lists/uninvited_friends_page_panel" | "friends_panel/lists/blocked_players_label" | "friends_panel/lists/blocked_players_stack" | "friends_panel/lists/spacing_gap_blocked_players" | "friends_panel/lists/blocked_players_page_panel" | "friends_panel/lists/no_invites_label" | "friends_panel/loading_friends" | "add_friends_and_invite_link_panel" | "add_friends_and_invite_link_panel/allowlist_stack_panel" | "add_friends_and_invite_link_panel/allowlist_stack_panel/find_friends_button_panel" | "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_1" | "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel" | "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel/invite_links_button" | "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_2" | "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel" | "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel/clear_members_button" | "options_icon" | "account_link_image" | "account_link_icon" | "account_link_icon/space_01" | "account_link_icon/account_link_image" | "account_link_icon/space_03" | "find_friends_button_panel" | "find_friends_button_panel/find_friends_button" | "invited_friends_label" | "invited_friends_label/friend_title" | "player_filter_label" | "player_filter_label/player_filter_title" | "members_label" | "members_label/friend_title" | "members_label/padding_panel" | "members_label/loading_text" | "blocked_players_label" | "blocked_players_label/friend_title" | "uninvited_friends_label" | "uninvited_friends_label/friend_title" | "no_invites_label" | "loading_friends" | "blocked_grid_item" | "blocked_grid_item/blocked_panel" | "factory_stack" | "member_factory_xbl_profile" | "member_factory_linked_account" | "invited_factory_xbl_profile" | "invited_factory_linked_account" | "uninvited_factory_xbl_profile" | "uninvited_factory_linked_account" | "blocked_factory_xbl_profile" | "blocked_factory_linked_account" | "xbl_profile_panel_factory" | "xbl_profile_blocked_panel_factory" | "linked_account_panel_factory" | "linked_account_blocked_panel_factory" | "xbl_profile_panel" | "xbl_profile_panel/player_status_panel" | "xbl_profile_panel/xbl_user_panel" | "xbl_profile_panel/right_controls_panel" | "xbl_profile_panel/progress" | "factory_gap_template" | "factory_gap_template/gapped_control" | "factory_gap_template/spacing1" | "gapped_xbl_profile_panel" | "gapped_linked_account_panel" | "gapped_blocked_xbl_profile_panel" | "gapped_blocked_linked_account_panel" | "blocked_panel" | "blocked_panel/xbl_user_panel" | "blocked_panel/unblock_button" | "linked_account_panel" | "linked_account_panel/linked_account_positioning_panel" | "linked_account_panel/right_controls_panel" | "linked_account_panel/progress" | "linked_account_blocked_panel" | "linked_account_blocked_panel/linked_account_positioning_panel" | "linked_account_blocked_panel/unblock_button" | "linked_account_blocked_panel/progress" | "xbl_user_panel" | "xbl_user_panel/spacing1" | "xbl_user_panel/platform_icon_positioner" | "xbl_user_panel/gamerpic_panel" | "xbl_user_panel/spacing2" | "xbl_user_panel/gamertag_label_panel" | "third_party_user_panel" | "third_party_user_panel/spacing1" | "third_party_user_panel/profile_picture" | "third_party_user_panel/spacing2" | "third_party_user_panel/third_party_profile_label" | "linked_profile_pictures_panel" | "linked_profile_pictures_panel/pp2" | "linked_profile_pictures_panel/account_link" | "linked_profile_pictures_panel/pp1" | "platform_profile_names" | "platform_profile_names/friend_grid_third_party_tag" | "platform_profile_names/spacer_02" | "platform_profile_names/friend_grid_xbl_gamertag" | "platform_profile_names/spacer_03" | "linked_user_stack_panel" | "linked_user_stack_panel/allow_offset_control" | "linked_user_stack_panel/allow_offset_control/player_status_panel" | "linked_user_stack_panel/platform_icon_positioner" | "linked_user_stack_panel/platform_icon_positioner/platform_icon" | "linked_user_stack_panel/spacing1" | "linked_user_stack_panel/profile_picture" | "linked_user_stack_panel/spacing2" | "linked_user_stack_panel/platform_names_label" | "linked_user_stack_panel/spacing3" | "horizontal_indent" | "vertical_indent" | "gamerpic_panel" | "gamerpic_panel/black_border" | "gamerpic_panel/gamer_pic" | "third_party_profile_pic_panel" | "third_party_profile_pic_panel/black_border" | "third_party_profile_pic_panel/third_party_profile_picture" | "gamertag_label_panel" | "gamertag_label_panel/gamertag_label" | "gamertag_label_panel/real_name_label" | "third_party_profile_label" | "third_party_profile_label/profile_name_label" | "panel_text" | "gamertag_label" | "third_party_profile_name_label" | "real_name_label" | "right_settings_panel" | "right_settings_panel/member_settings" | "member_settings" | "member_settings/minus_button" | "member_settings/horizontal_space" | "member_settings/member_permissions" | "member_settings/op_deop_button" | "right_controls_panel" | "right_controls_panel/right_settings_panel" | "right_controls_panel/uninvited_friends_invite_button" | "player_status_panel" | "player_status_panel/player_online_icon" | "player_status_panel/player_offline_icon" | "permissions_dropdown" | "permissions_dropdown/vertical_space" | "permissions_dropdown/option_dropdown_permissions" | "invite_button" | "minus_button" | "unblock_label" | "unblock_button" | "op_deop_button" | "find_friends_button" | "black_border" | "gamer_pic" | "third_party_profile_picture" | "player_online_icon" | "player_offline_icon" | "plus_icon" | "more_icon" | "share_icon" | "minus_icon" | "op_icon" | "deop_icon" | "player_filter_text_box" | "page_panel" | "page_panel/prev_button" | "page_panel/page_text" | "page_panel/next_button" | "realms_allowlist_panel_content" | "realms_allowlist_content_panel" | "realms_allowlist_content_panel_children" | "realms_allowlist_content_panel_children/realms_allowlist_panel_content" | "realms_allowlist_content_panel_children/done_button" | "realms_allowlist_screen" | "realms_allowlist_content" | "realms_allowlist_content/root_panel" | "realms_allowlist_content/root_panel/realms_allowlist_content_panel" | "transparent_close_button"; +export type RealmsInviteLinkSettings = "generic_section_wrapper" | "generic_section_wrapper/generic_section" | "link_banner" | "clipboard_icon" | "description_wrap" | "description_wrap/description" | "invite_link_url" | "link_panel" | "link_panel/invite_link_url_wrapper" | "link_panel/link_copy_container" | "link_panel/link_copy_container/link_copy" | "general_content" | "general_content/spacing_gap_0" | "general_content/invite_link_title" | "general_content/invite_link_description" | "general_content/spacing_gap_1" | "general_content/link_panel" | "general_content/spacing_gap_2" | "general_content/activate_link_toggle" | "general_content/activate_link_description" | "general_content/spacing_gap_3" | "general_content/infinite_link_toggle" | "general_content/spacing_gap_4" | "general_content/share_link_title" | "general_content/share_link_description" | "general_content/spacing_gap_5" | "general_content/share_link_button" | "general_content/spacing_gap_6" | "general_content/remove_link_title" | "general_content/remove_invite_link_button" | "invite_link_expiration" | "advanced_content" | "advanced_content/spacing_gap_0" | "advanced_content/expiry_title" | "advanced_content/spacing_gap_1" | "advanced_content/expiration_description" | "advanced_content/spacing_gap_2" | "advanced_content/expiration_panel" | "advanced_content/expiration_panel/invite_link_expiration_wrapper" | "advanced_content/expiration_dropdown" | "expiration_dropdown_content" | "selector_panel" | "selector_panel/spacing_gap_0" | "selector_panel/general_button" | "selector_panel/advanced_button" | "section_content_panels" | "section_content_panels/general_section" | "section_content_panels/advanced_section"; +export type RealmsPlusEnded = "subscription_ended_screen" | "subscription_ended_screen_content" | "subscription_ended_screen_content/root_panel" | "subscription_ended_screen_content/root_panel/gamepad_helpers" | "subscription_ended_screen_content/root_panel/main_panel" | "main_panel" | "main_panel/dialog" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "content_stack_panel" | "content_stack_panel/pad_0" | "content_stack_panel/main_content" | "content_stack_panel/pad_1" | "content_stack_panel/button_center_panel" | "content_stack_panel/button_center_panel/buttons" | "content_stack_panel/pad_2" | "main_content_panel" | "main_content_panel/main_content_stack_panel" | "main_content_panel/main_content_stack_panel/image_panel" | "main_content_panel/main_content_stack_panel/pad" | "main_content_panel/main_content_stack_panel/text_panel" | "main_content_panel/main_content_stack_panel/text_panel/text" | "buttons_panel" | "buttons_panel/more_info_button" | "buttons_panel/pad" | "buttons_panel/renew_subscription_button"; +export type RealmsPlus = "realms_plus_pdp_screen" | "realms_plus_upgrade_notice_screen" | "purple_background" | "purple_background/bottom_left_particles" | "purple_background/top_right_particles" | "main_background" | "main_background/dark_blue" | "main_background/grey_gradient" | "dark_blue_background" | "gradient_image_stack" | "gradient_image_stack/solid_pink" | "gradient_image_stack/gradient" | "gradient_content_panel" | "gradient_content_panel/gradient" | "gradient_content_panel/content_panel" | "realmsPlus_screen_main_panel" | "realmsPlus_main_panel" | "realmsPlus_main_panel/root_panel" | "realmsPlus_main_panel/root_panel/main_panel" | "realmsPlus_main_panel/popup_dialog_factory" | "dialog_content" | "dialog_content/selector_area" | "dialog_content/content_area" | "dialog_content/left_right_pane_divider" | "selector_area" | "selector_area/scrolling_panel" | "scrollable_selector_area_content" | "scrollable_selector_area_content/realmsPlus_toggle" | "scrollable_selector_area_content/content_toggle" | "scrollable_selector_area_content/faq_toggle" | "scrollable_selector_area_content/toggle_section_divider" | "scrollable_selector_area_content/buy_now_toggle" | "scrollable_selector_area_content/xbl_btn_panel" | "scrollable_selector_area_content/xbl_btn_panel/xbl_btn" | "scrollable_selector_area_content/focus_reset_input_panel" | "section_toggle_base" | "tab_button_text" | "toggle_base" | "toggle_base/toggle" | "toggle_base/padding" | "realmsPlus_toggle" | "content_toggle" | "faq_toggle" | "buy_now_toggle" | "left_right_pane_divider" | "content_area" | "content_area/control" | "content_area/control/scrolling_panel" | "section_content_panels" | "content_section_top_padding" | "section_base" | "buy_now_content_section" | "buy_now_content_section/content_section_top_padding" | "buy_now_content_section/content" | "markdown_background_animated" | "markdown_background_animated/realms_banner" | "markdown_background_animated/realms_plus_normal" | "markdown_background_animated/realms_plus_hover" | "markdown_background" | "markdown_background/banner_panel" | "markdown_background/banner_panel/banner" | "markdown_background/banner_panel/banner/banner_stack_panel" | "markdown_background/banner_panel/banner/banner_stack_panel/0" | "markdown_background/triangle_panel" | "markdown_background/triangle_panel/triangle" | "empty_label" | "full_width_section_divider"; +export type RealmsPlusContent = "realmsPlus_content_section" | "realmsPlus_content_section/content_section_top_padding" | "realmsPlus_content_section/content_sections" | "realmsPlus_content_section/content_section_bottom_padding" | "content_pack_types_section" | "content_pack_types_section/includes_marketplace_pass_wrapper" | "content_pack_types_section/padding_contentSub" | "content_pack_types_section/pack_types_wrapper" | "content_packs_included_section" | "content_packs_included_section/popular_packs" | "content_packs_included_section/section_divider" | "persona_row" | "persona_row/persona" | "worlds_row" | "pack_types" | "pack_types/middle_row" | "pack_types/middle_row/worlds_contentSub" | "pack_types/middle_row/textures" | "pack_types/bottom_row" | "pack_types/bottom_row/skins_persona_contentSub" | "pack_types/bottom_row/mashups" | "pack_types/bottom_contentSub" | "skins" | "friends_get_access" | "pack_type_row_panel" | "pack_type_description" | "pack_type_description/image_nesting_panel" | "pack_type_description/image_nesting_panel/texture" | "pack_type_description/padding_0" | "pack_type_description/description_nesting_panel" | "pack_type_description/description_nesting_panel/description_label" | "popular_packs" | "popular_packs/padding_0" | "popular_packs/pack_grid" | "popular_packs/view_all_packs_panel" | "popular_packs/view_all_packs_panel/view_all_packs_button" | "popular_packs/padding_1" | "popular_packs/view_character_creator_items_button" | "popular_packs/padding_2" | "popular_packs_label" | "includes_marketplace_pass" | "includes_marketplace_pass_label" | "packs_collection" | "packs_collection/row_1" | "packs_collection/row_1/pack_image_grid_item_0" | "packs_collection/row_1/padding" | "packs_collection/row_1/pack_image_grid_item_1" | "packs_collection/padding_1" | "packs_collection/row_2" | "packs_collection/row_2/pack_image_grid_item_0" | "packs_collection/row_2/padding" | "packs_collection/row_2/pack_image_grid_item_1" | "packs_collection/padding_2" | "pack_image_grid_item" | "pack_image_grid_item/bg" | "pack_image_grid_item/bg/featured_key_art" | "pack_image_grid_item/bg/progress_loading" | "pack_image_grid_item/offer_button" | "pack_image_grid_item/offer_button/default" | "pack_image_grid_item/offer_button/hover" | "pack_image_grid_item/offer_button/pressed"; +export type RealmsPlusFaq = "faq_image_section" | "faq_image_local" | "faq_image_type" | "faq_image_type/0" | "faq_text_section_body" | "faq_text_question" | "faq_text_section" | "faq_text_section/faq_text_question" | "faq_text_section/faq_text_answer" | "faq_price_bound_text_section" | "faq_price_bound_text_section/faq_text_question" | "faq_price_bound_text_section/faq_text_answer" | "faq_question_body" | "faq_question_body/0" | "faq_question_body_stack" | "faq_question_body_horz_padding" | "image_left_faq_question_body" | "image_right_faq_question_body" | "image_left_faq_question_body_flip" | "image_left_faq_question_body_flip/faq_question_left" | "image_right_faq_question_body_flip" | "image_right_faq_question_body_flip/faq_question_right" | "image_left_faq_price_bound" | "faq_section_header_space" | "faq_section_divider" | "faq_content_section" | "faq_content_section/content_section_top_padding_1" | "faq_content_section/faq_header" | "faq_content_section/content_section_top_padding_2" | "faq_content_section/faq_question_1" | "faq_content_section/faq_question_1_divider" | "faq_content_section/faq_question_2" | "faq_content_section/faq_question_2_divider" | "faq_content_section/faq_question_3" | "faq_content_section/faq_question_3_divider" | "faq_content_section/faq_question_4" | "faq_content_section/faq_question_4_divider" | "faq_content_section/faq_question_5" | "faq_content_section/faq_question_5_divider" | "faq_content_section/faq_question_6" | "faq_content_section/faq_question_6_divider" | "faq_content_section/faq_question_7" | "faq_content_section/faq_question_7_divider" | "faq_content_section/faq_question_8" | "faq_content_section/faq_question_8_divider" | "faq_content_section/faq_question_9" | "faq_content_section/faq_question_9_divider" | "faq_content_section/faq_question_10" | "faq_content_section/faq_question_10_divider" | "faq_content_section/faq_question_11" | "faq_content_section/content_section_top_padding_3"; +export type RealmsPlusLanding = "landing_content_section" | "landing_content_section/landing_content" | "landing_content_section/landing_content/title_stack" | "landing_content_section/landing_content/vertical_small_spacer_0" | "landing_content_section/landing_content/divider_panel" | "landing_content_section/landing_content/divider_panel/section_divider" | "landing_content_section/landing_content/vertical_small_spacer_1" | "landing_content_section/landing_content/info_stack" | "landing_content_section/landing_content/vertical_small_spacer_2" | "horizontal_small_spacer" | "vertical_small_spacer" | "vertical_med_spacer" | "vertical_large_spacer" | "title_stack" | "title_stack/title_image_panel" | "title_stack/gradient_panel" | "title_stack/gradient_panel/label_with_gradient_wrapper" | "title_stack/vertical_space" | "title_stack/action_button" | "title_stack/sign_in_button" | "title_stack/vertical_space2" | "label_with_gradient" | "free_trial_text" | "title_image_panel" | "title_image_panel/title_image_container" | "title_image_panel/title_image_container/title_image" | "title_image_panel/title_image_container/title_art_image" | "title_image_panel/title_image_pre_release_container" | "title_image_panel/title_image_pre_release_container/title_image_pre_release" | "info_stack" | "info_stack/info_stack" | "info_stack/info_stack/info_description_stack_retail" | "info_stack/info_stack/info_description_stack_preview" | "info_description_stack_retail" | "info_description_stack_retail/info_section_stack_1" | "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer" | "info_description_stack_retail/info_section_stack_1/info_section_text_1_wrapper" | "info_description_stack_retail/vertical_med_spacer0" | "info_description_stack_retail/divider_centering_panel" | "info_description_stack_retail/divider_centering_panel/divider" | "info_description_stack_retail/vertical_med_spacer1" | "info_description_stack_retail/info_section_stack_recently_added" | "info_description_stack_retail/info_section_stack_recently_added/horizontal_small_spacer" | "info_description_stack_retail/info_section_stack_recently_added/info_section_text_recently_added_wrapper" | "info_description_stack_retail/vertical_med_spacer2" | "info_description_stack_retail/divider_centering_panel2" | "info_description_stack_retail/divider_centering_panel2/divider2" | "info_description_stack_retail/vertical_med_spacer3" | "info_description_stack_retail/info_section_stack_2" | "info_description_stack_retail/info_section_stack_2/horizontal_small_spacer" | "info_description_stack_retail/info_section_stack_2/info_section_text_2_wrapper" | "info_description_stack_prerelease" | "info_description_stack_prerelease/info_section_stack" | "info_description_stack_prerelease/info_section_stack/horizontal_large_spacer" | "info_description_stack_prerelease/info_section_stack/info_section_text_3_wrapper" | "info_section_stack" | "info_section_text_1" | "info_section_text_1/info_text_bullet_1" | "info_section_text_1/vertical_small_spacer_0" | "info_section_text_1/info_text_bullet_2" | "info_section_text_1/vertical_small_spacer_1" | "info_section_text_1/info_text_bullet_3" | "info_section_text_recently_added" | "info_section_text_recently_added/recently_added_header" | "info_section_text_recently_added/info_text_bullet_contentSub" | "info_section_text_recently_added/info_text_bullet_contentSub/vertical_small_spacer_0" | "info_section_text_recently_added/info_text_bullet_contentSub/info_text_bullet_0" | "info_section_text_recently_added/vertical_small_spacer_1" | "info_section_text_recently_added/info_text_bullet_1" | "info_section_text_recently_added/vertical_small_spacer_2" | "info_section_text_recently_added/info_text_bullet_2" | "info_section_text_2" | "info_section_text_2/info_text_bullet_2" | "info_section_text_2/vertical_small_spacer_0" | "info_section_text_2/info_text_bullet_3" | "info_section_text_2/vertical_small_spacer_1" | "info_section_text_2/info_text_bullet_4" | "info_section_text_2/info_text_bullet_notFreeTrial" | "info_section_text_2/info_text_bullet_notFreeTrial/vertical_small_spacer" | "info_section_text_2/info_text_bullet_notFreeTrial/info_text_bullet_4" | "info_section_text_3" | "info_section_text_3/info_text_unbulletted_1" | "info_section_text_3/vertical_large_spacer_0" | "info_section_text_3/info_text_unbulletted_2" | "info_section_text_3/vertical_large_spacer_1" | "info_section_text_3/info_text_unbulletted_3" | "info_section_text_3/vertical_large_spacer_2" | "info_section_text_3/info_text_unbulletted_4" | "info_section_text" | "info_text_bullet" | "info_text_bullet/info_text_bullet_bullet" | "info_text_bullet/info_text_bullet_body" | "info_text_unbulletted" | "info_text_unbulletted/info_text_bullet_body"; +export type RealmsPlusBuy = "buy_now_content" | "buy_now_content/description_stack" | "buy_now_content/realm_name" | "buy_now_content/terms_and_conditions" | "buy_now_content/padding_2" | "buy_now_content/buy_button" | "buy_now_content/padding_3" | "buy_now_content/platform_terms_factory" | "content_text_section" | "content_text_section/text_description_wrapper" | "content_text_section/padding" | "content_description" | "content_description/content_description_label" | "trial_image_and_description" | "trial_image_and_description/realms_image" | "trial_image_and_description/padding" | "trial_image_and_description/description_text_wrapper" | "description_text" | "title_text" | "title_with_gradient" | "description_stack" | "description_stack/title_with_gradient_wrapper" | "description_stack/padding" | "description_stack/image_and_description" | "realm_name_stack" | "realm_name_stack/realm_name_label" | "realm_name_stack/padding_0" | "realm_name_stack/realm_name_text_box" | "terms_and_conditions" | "terms_and_conditions/terms_panel" | "terms_and_conditions_panel" | "terms_and_conditions_panel/name_label" | "terms_and_conditions_panel/terms_string_panel" | "terms_and_conditions_panel/terms_string_panel/banner_fill" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button" | "button_text" | "view_terms_button" | "privacy_policy_button" | "buy_button_panel" | "buy_button_panel/buy_button" | "buy_button_content" | "buy_button_content/button_chevron_panel" | "buy_button_content/button_chevron_panel/buy_button_chevron" | "buy_button_content/button_text"; +export type RealmsPlusPacks = "view_all_packs_screen" | "view_packs_screen_content" | "view_packs_screen_content/main_panel" | "realmsPlus_view_packs_screen_main_panel" | "main_panel" | "main_panel/offers" | "main_panel/progress_loading" | "scrolling_content_stack" | "scrolling_content_stack/padding_0" | "scrolling_content_stack/store_factory"; +export type RealmsPlusPurchaseWarning = "realmsPlus_purchase_warning_screen" | "purchase_warning_screen_content" | "purchase_warning_screen_content/main_panel" | "warning_modal_main_panel" | "warning_modal_main_panel/art_panel" | "warning_modal_main_panel/art_panel/art" | "warning_modal_main_panel/padding" | "warning_modal_main_panel/text_panel" | "warning_modal_main_panel/text_panel/description_panel" | "warning_modal_main_panel/text_panel/description_panel/description_text" | "warning_modal_main_panel/text_panel/padding" | "warning_modal_main_panel/text_panel/checkbox_with_label_panel" | "warning_modal_main_panel/text_panel/checkbox_with_label_panel/checkbox_panel" | "warning_modal_main_panel/text_panel/checkbox_with_label_panel/padding" | "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel" | "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel/label_text" | "warning_modal_button_panel" | "warning_modal_button_panel/back_button" | "warning_modal_button_panel/padding" | "warning_modal_button_panel/continue_button"; +export type RealmsStoriesTransition = "realms_stories_transition_screen"; +export type Redstone = "item_dropper_label" | "dispenser_label" | "crafter_label" | "dropper_label" | "hopper_label" | "redstone_input_grid" | "redstone_panel_top_half" | "redstone_panel_top_half/redstone_input_grid" | "panel" | "panel/container_gamepad_helpers" | "panel/selected_item_details_factory" | "panel/item_lock_notification_factory" | "panel/root_panel" | "panel/root_panel/common_panel" | "panel/root_panel/redstone_screen_inventory" | "panel/root_panel/redstone_screen_inventory/red_panel" | "panel/root_panel/redstone_screen_inventory/red_bottom_half" | "panel/root_panel/redstone_screen_inventory/hotbar_grid" | "panel/root_panel/redstone_screen_inventory/red_hold_icon" | "panel/root_panel/red_icon" | "panel/root_panel/gamepad_cursor" | "panel/flying_item_renderer" | "crafter_input_grid" | "cell_image" | "crafter_highlight_slot" | "crafter_container_slot_button_prototype" | "crafter_highlight_slot_panel" | "crafter_highlight_slot_panel/highlight" | "crafter_highlight_slot_panel/highlight/hover_text" | "crafter_highlight_slot_panel/white_border" | "crafter_enabled_slot_template" | "crafter_disabled_slot" | "crafter_disabled_slot/default" | "crafter_disabled_slot/hover" | "crafter_disabled_slot/pressed" | "output_slot_hover_info" | "output_slot_hover_info/hover" | "output_slot_hover_info/output_slot" | "output_slot_hover_info/output_slot_border" | "output_slot_hover_info/output_count" | "panel_crafter" | "panel_crafter/container_gamepad_helpers" | "panel_crafter/selected_item_details_factory" | "panel_crafter/item_lock_notification_factory" | "panel_crafter/root_panel" | "panel_crafter/root_panel/common_panel" | "panel_crafter/root_panel/disabled_slot_0_button" | "panel_crafter/root_panel/disabled_slot_1_button" | "panel_crafter/root_panel/disabled_slot_2_button" | "panel_crafter/root_panel/disabled_slot_3_button" | "panel_crafter/root_panel/disabled_slot_4_button" | "panel_crafter/root_panel/disabled_slot_5_button" | "panel_crafter/root_panel/disabled_slot_6_button" | "panel_crafter/root_panel/disabled_slot_7_button" | "panel_crafter/root_panel/disabled_slot_8_button" | "panel_crafter/root_panel/redstone_screen_inventory" | "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid" | "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid" | "panel_crafter/root_panel/redstone_screen_inventory/red_bottom_half" | "panel_crafter/root_panel/redstone_screen_inventory/hotbar_grid" | "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon" | "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line" | "panel_crafter/root_panel/redstone_screen_inventory/crafter_output" | "panel_crafter/root_panel/red_icon" | "panel_crafter/root_panel/gamepad_cursor" | "panel_crafter/flying_item_renderer" | "hopper_screen" | "dispenser_screen" | "crafter_screen" | "dropper_screen"; +export type ResourcePacks = "black_image" | "gray_image" | "yellow_image" | "white_image" | "white_image/border" | "icon_image" | "resource_packs_toggle_button_control" | "resource_packs_toggle_button_control/icon_border" | "resource_packs_toggle_button_control/cycling_icon" | "resource_packs_toggle_button_control/tab_button_text" | "resource_packs_section_toggle_base" | "selected_icon_image" | "available_icon_image" | "realms_icon_image" | "unowned_icon_image" | "invalid_icon_image" | "minus_image" | "plus_image" | "minus_text" | "plus_text" | "store_text" | "error_image" | "error_image_hover" | "error_image_panel" | "error_image_panel/default" | "error_image_panel/hover" | "warning_image" | "warning_image_hover" | "warning_panel" | "warning_panel/default" | "warning_panel/hover" | "no_error_image" | "no_error_image_hover" | "no_error_panel" | "no_error_panel/default" | "no_error_panel/hover" | "up_arrow_image" | "down_arrow_image" | "up_arrow_image_hover" | "down_arrow_image_hover" | "up_arrow_panel" | "up_arrow_panel/default" | "up_arrow_panel/hover" | "up_arrow_wrapper" | "up_arrow_wrapper/down_arrow" | "up_arrow_wrapper/divider_right" | "down_arrow_panel" | "down_arrow_panel/default" | "down_arrow_panel/hover" | "down_arrow_wrapper" | "down_arrow_wrapper/down_arrow" | "down_arrow_wrapper/divider_right" | "progress_loading_bars" | "warning_image_wrapper" | "warning_image_wrapper/error_image" | "warning_image_wrapper/warning_image" | "warning_image_wrapper/no_error_panel" | "warning_image_wrapper/progress_loading_bars" | "tooltip_image_wrapper" | "tooltip_image_wrapper/error_image" | "tooltip_image_wrapper/warning_image" | "options_image" | "options_image_hover" | "options_image_panel" | "options_image_panel/default" | "options_image_panel/hover" | "options_image_panel/hover/image" | "options_image_panel/hover/border" | "options_wrapper" | "options_wrapper/options" | "options_wrapper/divider_right" | "common_pack_button" | "available_text_panel" | "available_text_panel/name_panel" | "available_text_panel/name_panel/available_pack_name_label" | "available_text_panel/name_panel/available_file_size_label" | "available_text_panel/full_panel" | "available_text_panel/full_panel/description_panel" | "available_text_panel/full_panel/description_panel/available_pack_description_label" | "realms_text_panel" | "realms_text_panel/name_panel" | "realms_text_panel/name_panel/realms_pack_name_label" | "realms_text_panel/name_panel/realms_file_size_label" | "realms_text_panel/description_panel" | "realms_text_panel/description_panel/realms_pack_description_label" | "unowned_text_panel" | "unowned_text_panel/name_panel" | "unowned_text_panel/name_panel/unowned_pack_name_label" | "unowned_text_panel/name_panel/unowned_file_size_label" | "unowned_text_panel/description_panel" | "unowned_text_panel/description_panel/unowned_pack_description_label" | "selected_text_panel" | "selected_text_panel/name_panel" | "selected_text_panel/name_panel/selected_pack_name_label" | "selected_text_panel/name_panel/selected_file_size_label" | "selected_text_panel/name_panel/active_dot_panel" | "selected_text_panel/name_panel/active_dot_panel/active_dot" | "selected_text_panel/full_panel" | "selected_text_panel/full_panel/warning_line" | "selected_text_panel/full_panel/warning_line/warning_text" | "selected_text_panel/full_panel/warning_line/warning_number" | "selected_text_panel/full_panel/error_line" | "selected_text_panel/full_panel/error_line/error_text" | "selected_text_panel/full_panel/error_line/error_number" | "selected_text_panel/full_panel/expired_line" | "selected_text_panel/full_panel/expired_line/expired_text" | "selected_text_panel/full_panel/description_panel" | "selected_text_panel/full_panel/description_panel/selected_pack_description_label" | "invalid_text_panel" | "invalid_text_panel/full_panel" | "invalid_text_panel/full_panel/error_line" | "invalid_text_panel/full_panel/error_line/error_text" | "invalid_text_panel/full_panel/error_line/error_number" | "available_pack_button_layout" | "available_pack_button_layout/available_icon_image" | "available_pack_button_layout/text_panel_small" | "available_pack_button_layout/text_panel_full" | "available_pack_button_layout/read_more_button_panel" | "available_pack_button_layout/read_less_button_panel" | "available_pack_button_layout_hover" | "available_pack_button_layout_hover/hover_small" | "available_pack_button_layout_hover/available_icon_image" | "available_pack_button_layout_hover/text_panel_small" | "available_pack_button_layout_hover/text_panel_full_hover" | "available_pack_button_layout_hover/text_panel_full_hover/text_panel_full" | "available_pack_button_layout_hover/read_more_button_panel" | "available_pack_button_layout_hover/read_less_button_panel" | "available_pack_button" | "available_pack_button/default" | "available_pack_button/pressed" | "available_pack_button/hover" | "realms_pack_button_layout" | "realms_pack_button_layout/realms_icon_image" | "realms_pack_button_layout/text_panel_small" | "realms_pack_button_layout/text_panel_full" | "realms_pack_button_layout/read_more_button_panel" | "realms_pack_button_layout/read_less_button_panel" | "realms_pack_button_layout_hover" | "realms_pack_button_layout_hover/hover_small" | "realms_pack_button_layout_hover/realms_icon_image" | "realms_pack_button_layout_hover/text_panel_small" | "realms_pack_button_layout_hover/text_panel_full_hover" | "realms_pack_button_layout_hover/text_panel_full_hover/text_panel_full" | "realms_pack_button_layout_hover/read_more_button_panel" | "realms_pack_button_layout_hover/read_less_button_panel" | "realms_pack_button" | "realms_pack_button/default" | "realms_pack_button/pressed" | "realms_pack_button/hover" | "unowned_pack_button_layout" | "unowned_pack_button_layout/unowned_icon_image" | "unowned_pack_button_layout/text_panel_small" | "unowned_pack_button_layout/text_panel_full" | "unowned_pack_button_layout/read_more_button_panel" | "unowned_pack_button_layout/read_less_button_panel" | "unowned_pack_button_layout_hover" | "unowned_pack_button_layout_hover/hover_small" | "unowned_pack_button_layout_hover/unowned_icon_image" | "unowned_pack_button_layout_hover/text_panel_small" | "unowned_pack_button_layout_hover/text_panel_full_hover" | "unowned_pack_button_layout_hover/text_panel_full_hover/text_panel_full" | "unowned_pack_button_layout_hover/read_more_button_panel" | "unowned_pack_button_layout_hover/read_less_button_panel" | "unowned_pack_button" | "unowned_pack_button/default" | "unowned_pack_button/pressed" | "unowned_pack_button/hover" | "invalid_pack_button_layout" | "invalid_pack_button_layout/invalid_icon_image" | "invalid_pack_button_layout/text_panel" | "invalid_pack_button_layout_hover" | "invalid_pack_button_layout_hover/hover_small" | "invalid_pack_button_layout_hover/invalid_icon_image" | "invalid_pack_button_layout_hover/text_panel_full_hover" | "invalid_pack_button_layout_hover/text_panel_full_hover/text_panel" | "invalid_pack_button" | "invalid_pack_button/default" | "invalid_pack_button/pressed" | "invalid_pack_button/hover" | "empty_resource_pack_button" | "resource_pack_button_padding" | "input_button_panel" | "input_button_panel/border_image" | "input_button_panel/border_image/button_panel" | "input_button_panel/border_image/button_panel/padding_0" | "input_button_panel/border_image/button_panel/padding_1" | "input_button_panel/border_image/button_panel/padding_2" | "input_button_panel/border_image/button_panel/padding_3" | "input_button_panel/border_image/button_panel/padding_4" | "input_button_panel/background" | "selected_pack_button_layout" | "selected_pack_button_layout/selected_icon_image" | "selected_pack_button_layout/text_panel_small" | "selected_pack_button_layout/text_panel_full" | "selected_pack_button_layout/read_more_button_panel" | "selected_pack_button_layout/read_less_button_panel" | "selected_pack_button_layout_hover" | "selected_pack_button_layout_hover/hover_small" | "selected_pack_button_layout_hover/selected_icon_image" | "selected_pack_button_layout_hover/text_panel_small" | "selected_pack_button_layout_hover/text_panel_full_hover" | "selected_pack_button_layout_hover/text_panel_full_hover/text_panel_full" | "selected_pack_button_layout_hover/read_more_button_panel" | "selected_pack_button_layout_hover/read_less_button_panel" | "selected_pack_button" | "selected_pack_button/default" | "selected_pack_button/pressed" | "selected_pack_button/hover" | "selected_pack_movement_button" | "selected_pack_transparent_movement_button" | "selected_pack_minus_button" | "selected_pack_plus_button" | "selected_pack_store_button" | "selected_pack_store_button_fill" | "selected_pack_up_button" | "selected_pack_down_button" | "selected_pack_warning_button" | "selected_pack_options_button" | "white_label" | "gray_label" | "suggested_content_offers_title_label" | "available_packs_title_content" | "realms_packs_title_content" | "unowned_packs_title_content" | "selected_packs_title_content" | "selected_packs_title_content/selected_packs_title_label" | "selected_packs_title_content/fill_pad" | "selected_packs_title_content/icon_panel" | "selected_packs_title_content/icon_panel/block_icon" | "selected_packs_title_content/pad_0" | "selected_packs_title_content/count" | "selected_packs_title_content/pad_1" | "selected_packs_title_content/plus_panel" | "selected_packs_title_content/plus_panel/plus" | "selected_packs_title_content/minus_panel" | "selected_packs_title_content/minus_panel/minus" | "available_packs_title_button" | "realms_packs_title_button" | "unowned_packs_title_button" | "selected_packs_title_button" | "name_label" | "size_label" | "description_label" | "pack_label" | "selected_pack_description_label" | "available_pack_description_label" | "realms_pack_description_label" | "unowned_pack_description_label" | "selected_pack_name_label" | "selected_file_size_label" | "available_pack_name_label" | "available_file_size_label" | "realms_pack_name_label" | "realms_file_size_label" | "unowned_pack_name_label" | "unowned_file_size_label" | "invalid_pack_name_label" | "invalid_pack_description_label" | "available_panel" | "available_panel/selected_packs" | "checkbox_visuals" | "header_control" | "header_control/header_description_stack_panel" | "header_control/header_description_stack_panel/checkbox_visuals" | "header_control/header_description_stack_panel/buffer_panel" | "header_control/header_description_stack_panel/buffer_panel/label" | "addon_header_control" | "addon_header_control/header_description_stack_panel" | "addon_header_control/header_description_stack_panel/padding_0" | "addon_header_control/header_description_stack_panel/description_center_panel" | "addon_header_control/header_description_stack_panel/description_center_panel/label" | "addon_header_control/header_description_stack_panel/padding_1" | "addon_header_control/header_description_stack_panel/link_center_panel" | "addon_header_control/header_description_stack_panel/link_center_panel/addon_link_button" | "addon_header_control/header_description_stack_panel/padding_2" | "panel_bg" | "panel_bg/black_background" | "panel_bg/gray" | "addon_panel_bg" | "addon_panel_bg/black_background" | "addon_panel_bg/yellow" | "error_panel" | "error_panel/black_background" | "error_panel/black_background/gray" | "error_panel/black_background/gray/panel" | "error_panel/black_background/gray/panel/error_label" | "selected_stack_panel" | "selected_stack_panel/world_template_option_lock_panel" | "selected_stack_panel/world_template_option_lock_panel/option_info_label" | "selected_stack_panel/top_panel" | "selected_stack_panel/top_panel/panel_bg" | "selected_stack_panel/top_panel/header_control" | "selected_stack_panel/offset_0" | "selected_stack_panel/addon_stacking_warning_panel" | "selected_stack_panel/addon_stacking_warning_panel/addon_panel_bg" | "selected_stack_panel/addon_stacking_warning_panel/header_control" | "selected_stack_panel/offset_1" | "selected_stack_panel/selected_packs_title_panel" | "selected_stack_panel/selected_packs_title_panel/selected_packs_title_button" | "selected_stack_panel/selected_packs_title_panel/tooltip" | "selected_stack_panel/selected_packs_title_panel/tooltip/button" | "selected_stack_panel/selected_pack_section" | "selected_stack_panel/selected_pack_section/offset" | "selected_stack_panel/selected_pack_section/selected_pack_grid" | "selected_stack_panel/selected_pack_section/default_item" | "selected_stack_panel/selected_pack_section/default_item/icon_image" | "selected_stack_panel/selected_pack_section/default_item/name_panel" | "selected_stack_panel/selected_pack_section/default_item/name_panel/white_label" | "selected_stack_panel/selected_pack_section/default_item/description_panel" | "selected_stack_panel/selected_pack_section/default_item/description_panel/white_label" | "selected_stack_panel/selected_pack_section/filler_panel" | "selected_stack_panel/selected_pack_section/filler_panel/description_label" | "selected_stack_panel/offset_2" | "selected_stack_panel/available_packs_title_panel" | "selected_stack_panel/available_packs_title_panel/available_packs_title_button" | "selected_stack_panel/available_packs_title_panel/tooltip" | "selected_stack_panel/available_packs_title_panel/tooltip/button" | "selected_stack_panel/available_packs_section" | "selected_stack_panel/available_packs_section/offset" | "selected_stack_panel/available_packs_section/empty_panel" | "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel" | "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel/no_packs_text" | "selected_stack_panel/available_packs_section/empty_panel/to_store_button" | "selected_stack_panel/available_packs_section/available_pack_grid" | "selected_stack_panel/available_packs_section/invalid_pack_grid" | "selected_stack_panel/offset_3" | "selected_stack_panel/realms_packs_title_button" | "selected_stack_panel/realms_packs_section" | "selected_stack_panel/realms_packs_section/offset" | "selected_stack_panel/realms_packs_section/realms_pack_grid" | "selected_stack_panel/realms_packs_section/offset_4" | "selected_stack_panel/offset_4" | "selected_stack_panel/unowned_packs_title_button" | "selected_stack_panel/unowned_packs_section" | "selected_stack_panel/unowned_packs_section/offset" | "selected_stack_panel/unowned_packs_section/unowned_pack_grid" | "selected_stack_panel/unowned_packs_section/to_store_button" | "selected_stack_panel/unowned_packs_section/offset_4" | "available_stack_panel" | "available_stack_panel/available_packs_title_button" | "available_stack_panel/available_pack_grid" | "pack_background" | "pack_background/white_image" | "pack_background/gray_image" | "selected_pack_panel" | "selected_pack_panel/selected_pack_button" | "selected_pack_panel/pad_0" | "selected_pack_panel/center_panel" | "selected_pack_panel/center_panel/visibility_panel" | "selected_pack_panel/center_panel/visibility_panel/selected_pack_direction_buttons" | "selected_pack_panel/divider" | "selected_pack_panel/pad_1" | "available_pack_panel" | "available_pack_panel/available_pack_button" | "available_pack_panel/pad_0" | "available_pack_panel/center_panel" | "available_pack_panel/center_panel/available_pack_direction_buttons" | "available_pack_panel/divider" | "available_pack_panel/pad_1" | "realms_pack_panel" | "realms_pack_panel/realms_pack_button" | "realms_pack_panel/pad_0" | "realms_pack_panel/center_panel" | "realms_pack_panel/center_panel/realms_pack_direction_buttons" | "realms_pack_panel/divider" | "realms_pack_panel/pad_1" | "unowned_pack_panel" | "unowned_pack_panel/unowned_pack_button" | "unowned_pack_panel/pad_0" | "unowned_pack_panel/center_panel" | "unowned_pack_panel/center_panel/realms_pack_direction_buttons" | "unowned_pack_panel/divider" | "unowned_pack_panel/pad_1" | "invalid_pack_panel" | "invalid_pack_panel/invalid_pack_button" | "invalid_pack_panel/pad_0" | "invalid_pack_panel/divider" | "invalid_pack_panel/pad_1" | "selected_pack_grid" | "available_pack_grid" | "realms_pack_grid" | "unowned_pack_grid" | "invalid_pack_grid"; +export type SafeZone = "corner_image_common" | "corner_bl" | "corner_br" | "corner_tr" | "corner_tl" | "confirm_button" | "title_text" | "instructions_text" | "instructions_text/inner_label" | "label_button" | "label_button_hover" | "label_button_hover/hover" | "label_button_hover/hover/button_hover_text" | "content_panel" | "content_panel/safe_zone_slider_all" | "content_panel/safe_zone_slider_x" | "content_panel/safe_zone_slider_y" | "content_panel/screen_position_slider_x" | "content_panel/screen_position_slider_y" | "content_panel/instruction_text_button" | "content_panel/instruction_text_button/default" | "content_panel/instruction_text_button/pressed" | "content_panel/instruction_text_button/hover" | "safe_zone_screen" | "safe_zone_screen/safe_zone_bounds_markers" | "safe_zone_screen/safe_zone_bounds_markers/top_left_marker" | "safe_zone_screen/safe_zone_bounds_markers/top_right_marker" | "safe_zone_screen/safe_zone_bounds_markers/bottom_left_marker" | "safe_zone_screen/safe_zone_bounds_markers/bottom_right_marker" | "safe_zone_screen/main_content_panel" | "safe_zone_screen/main_content_panel/common_panel" | "safe_zone_screen/main_content_panel/title_text" | "safe_zone_screen/main_content_panel/scrolling_panel" | "safe_zone_screen/main_content_panel/confirm_button"; +export type StorageMigrationCommon = "progress_panel" | "progress_panel/common_panel" | "progress_panel/base_content" | "progress_panel/base_content/progress_title_text" | "progress_panel/base_content/progress_bar_text" | "progress_panel/inside_content" | "progress_panel/inside_content/size_label" | "progress_panel/inside_content/padding_1" | "progress_panel/inside_content/loading_bar_panel" | "progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars" | "progress_panel/inside_content/loading_bar_panel/progress_loading_bars" | "progress_panel/inside_content/padding_3" | "label" | "base_button" | "retry_button" | "go_to_faq_button" | "next_button" | "get_started_button" | "start_transfer_button" | "finished_main_menu_button" | "start_transfer_out_of_space_button" | "continue_out_of_space_button" | "resume_transfer_button" | "exit_button" | "retry_help_button_panel" | "retry_help_button_panel/retry" | "retry_help_button_panel/padding" | "retry_help_button_panel/help" | "modal_no_buttons" | "modal_one_button" | "modal_two_buttons" | "base_child_control" | "base_child_control/scrolling_panel" | "file_size_description" | "file_size_description/description" | "file_size_description/padding" | "file_size_description/size_stack" | "file_size_description/size_stack/file_text" | "file_size_description/size_stack/padding_1" | "file_size_description/size_stack/file_size_total" | "file_size_description/size_stack/padding_2" | "file_size_description/size_stack/file_size_available" | "file_size_description/file_location" | "error_icon_and_description" | "error_icon_and_description/error_image" | "error_icon_and_description/description" | "file_size_description_with_error" | "file_size_description_with_error/file_size" | "file_size_description_with_error/padding" | "file_size_description_with_error/error_icon_and_description" | "start_transfer" | "start_transfer_content" | "resume_transfer" | "resume_transfer_content" | "resume_transfer_content/file_size" | "transfer_error_out_of_space" | "transfer_error_out_of_space_content"; +export type StorageMigrationGeneric = "storage_migration_generic_screen" | "modal_screen_content" | "modal_screen_content/modal_progress_panel_no_cancel" | "modal_screen_content/popup_dialog_factory" | "start_transfer" | "start_transfer_out_of_space" | "start_transfer_out_of_space_content" | "start_transfer_out_of_space_content/base_start_content" | "start_transfer_out_of_space_content/padding" | "start_transfer_out_of_space_content/error_icon_and_description" | "finished" | "finished_content" | "finished_content/description" | "resume_transfer_out_of_space" | "resume_transfer_out_of_space_content" | "transfer_error" | "transfer_error_content" | "transfer_error_content/description" | "transfer_error_out_of_space"; +export type Scoreboard = "scoreboard_sidebar_score" | "scoreboard_sidebar_player" | "scoreboard_sidebar" | "scoreboard_sidebar/main" | "scoreboard_sidebar/main/displayed_objective" | "scoreboard_sidebar/main/lists" | "scoreboard_sidebar/main/lists/players" | "scoreboard_sidebar/main/lists/horizontal_padding" | "scoreboard_sidebar/main/lists/scores" | "scoreboard_sidebar/displayed_objective_background" | "scoreboard_player_list" | "scoreboard_player_list/vertical_padding_0" | "scoreboard_player_list/social_buttons_panel" | "scoreboard_player_list/vertical_padding_1" | "scoreboard_player_list/permissions_button" | "scoreboard_player_list/vertical_padding_2" | "scoreboard_player_list/players_label" | "scoreboard_player_list/vertical_padding_3" | "scoreboard_player_list/scored_players_grid_panel" | "scoreboard_player_list/vertical_padding_4" | "scoreboard_player_list/unscored_players_grid_panel" | "scoreboard_player_list/vertical_padding_5" | "scoreboard_player_list/invite_players_button_panel" | "scoreboard_player_list/vertical_padding_6" | "scoreboard_player_list/disconnected_from_multiplayer_label_panel" | "scoreboard_player_list/vertical_padding_7" | "list_objective_label" | "player_rank_panel" | "player_rank_panel/player_rank_bg" | "player_rank_panel/player_rank_bg/player_rank" | "player_icon_panel" | "player_icon_panel/player_icon" | "player_icon_panel/player_icon/player_panel_black_border" | "player_icon_panel/permission_icon" | "player_name" | "player_score" | "player_details" | "player_details/name_panel" | "player_details/name_panel/name" | "player_details/score_panel" | "player_details/score_panel/score" | "player_content" | "player_content/icon" | "player_content/padding" | "player_content/details" | "base_player_button" | "player_panel" | "player_panel/rank_base" | "player_panel/rank_base/player_rank" | "player_panel/player_button" | "players_grid_list" | "players_unscored_grid_list" | "players_scored_grid_list"; +export type Screenshot = "screenshot_flash_image" | "screenshot_screen" | "screenshot_screen_content" | "screenshot_screen_content/transparent_background" | "screenshot_screen_content/screenshot_flash"; +export type SelectWorld = "popup_dialog__add_on_common" | "popup_dialog__add_on_common_no_buttons" | "popup_dialog__add_on_common_no_buttons/popup_dialog_bg" | "popup_dialog__add_on_common_no_buttons/popup_dialog_message" | "popup_dialog__add_on_common_no_buttons/close_button" | "popup_dialog__add_on_common_no_buttons/add_on_popup_content_panel" | "popup_dialog__add_on_common_two_buttons" | "popup_dialog__add_on_common_two_buttons/popup_dialog_bg" | "popup_dialog__add_on_common_two_buttons/popup_dialog_message" | "popup_dialog__add_on_common_two_buttons/close_button" | "popup_dialog__add_on_common_two_buttons/add_on_popup_content_panel" | "popup_dialog__add_on_common_two_buttons/button_copy" | "popup_dialog__add_on_common_two_buttons/button_continue" | "add_on_button_copy" | "add_on_button_continue" | "add_on_popup_content_panel" | "add_on_popup_content_panel/popup_content" | "popup_dialog__activate_add_on" | "popup_dialog__activate_add_on_select_world" | "popup_dialog__copy_local_world" | "popup_dialog__copy_realms_world" | "copy_local_world_panel" | "copy_local_world_panel/padding_top" | "copy_local_world_panel/text_box" | "copy_local_world_panel/padding_middle" | "copy_local_world_panel/text_box2" | "copy_realms_world_panel" | "copy_realms_world_panel/padding_top" | "copy_realms_world_panel/text_box" | "copy_realms_world_panel/padding_middle" | "copy_realms_world_panel/text_box2" | "new_or_existing_world_panel" | "new_or_existing_world_panel/padding_left" | "new_or_existing_world_panel/world_icon_existing" | "new_or_existing_world_panel/padding_middle" | "new_or_existing_world_panel/world_icon_new" | "new_or_existing_world_panel/padding_right" | "world_icon_with_button" | "world_icon_with_button/padding_top" | "world_icon_with_button/world_icon" | "world_icon_with_button/button" | "world_icon_with_button/padding_bottom" | "world_icon_new" | "world_icon_new/plus_button" | "world_icon_existing" | "select_world_panel" | "select_world_list" | "select_world_list/realms_world_label" | "select_world_list/realms_world_list" | "select_world_list/padding_middle" | "select_world_list/local_world_label" | "select_world_list/local_world_list" | "select_world_list/padding_end" | "local_world_item_button" | "realms_world_item_button" | "select_world_screen_content" | "select_world_screen_content/popup_dialog_factory" | "select_world_popup_screen"; +export type ServerForm = "third_party_server_screen" | "main_screen_content" | "main_screen_content/server_form_factory" | "long_form" | "long_form_panel" | "long_form_panel/scrolling_panel" | "long_form_scrolling_content" | "long_form_scrolling_content/label_offset_panel" | "long_form_scrolling_content/label_offset_panel/main_label" | "long_form_scrolling_content/padding" | "long_form_scrolling_content/wrapping_panel" | "long_form_scrolling_content/wrapping_panel/long_form_dynamic_buttons_panel" | "long_form_dynamic_buttons_panel" | "dynamic_button" | "dynamic_button/panel_name" | "dynamic_button/panel_name/image" | "dynamic_button/panel_name/progress" | "dynamic_button/form_button" | "dynamic_label" | "dynamic_header" | "custom_form" | "custom_form_panel" | "generated_contents" | "custom_form_scrolling_content" | "custom_form_scrolling_content/generated_form" | "custom_form_scrolling_content/submit_button" | "custom_label" | "custom_header" | "custom_toggle" | "custom_slider" | "custom_step_slider" | "custom_dropdown" | "custom_dropdown/dropdown" | "custom_dropdown_content" | "custom_dropdown_radio" | "custom_input"; +export type Settings = "settings_screen_base" | "screen_world_create" | "screen_template_create" | "screen_world_edit" | "screen_controls_and_settings" | "screen_world_controls_and_settings" | "screen_realm_controls_and_settings" | "screen_realm_member_controls_and_settings" | "screen_realm_settings" | "screen_world_slot_edit" | "screen_realm_manage" | "screen_realm_invite_link_settings" | "selector_stack_panel" | "selector_stack_panel/spacer_0" | "selector_stack_panel/accessibility_button" | "selector_stack_panel/spacer_1" | "selector_stack_panel/how_to_play_button" | "selector_stack_panel/spacer_01" | "selector_stack_panel/world_selector_pane" | "selector_stack_panel/realm_selector_pane" | "selector_stack_panel/controls_and_settings_selector_pane" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_1" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_1_no_spatial" | "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_1" | "selector_stack_panel/controls_and_settings_selector_pane/keyboard_and_mouse_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_01" | "selector_stack_panel/controls_and_settings_selector_pane/controller_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_02" | "selector_stack_panel/controls_and_settings_selector_pane/switch_controller_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_03" | "selector_stack_panel/controls_and_settings_selector_pane/touch_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_04" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_04_no_spatial" | "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_2" | "selector_stack_panel/controls_and_settings_selector_pane/party_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_05" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_05_no_spatial" | "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_3" | "selector_stack_panel/controls_and_settings_selector_pane/general_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_06" | "selector_stack_panel/controls_and_settings_selector_pane/video_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_07" | "selector_stack_panel/controls_and_settings_selector_pane/sound_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_08" | "selector_stack_panel/controls_and_settings_selector_pane/account_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_09" | "selector_stack_panel/controls_and_settings_selector_pane/view_subscriptions_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_10" | "selector_stack_panel/controls_and_settings_selector_pane/global_texture_pack_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_11" | "selector_stack_panel/controls_and_settings_selector_pane/storage_management_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_12" | "selector_stack_panel/controls_and_settings_selector_pane/edu_cloud_storage_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_13" | "selector_stack_panel/controls_and_settings_selector_pane/language_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_14" | "selector_stack_panel/controls_and_settings_selector_pane/creator_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_15" | "selector_stack_panel/controls_and_settings_selector_pane/preview_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_4" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_4_no_spatial" | "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_4" | "selector_stack_panel/controls_and_settings_selector_pane/debug_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_16" | "selector_stack_panel/controls_and_settings_selector_pane/discovery_debug_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_17" | "selector_stack_panel/controls_and_settings_selector_pane/ui_debug_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_18" | "selector_stack_panel/controls_and_settings_selector_pane/edu_debug_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_19" | "selector_stack_panel/controls_and_settings_selector_pane/marketplace_debug_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_20" | "selector_stack_panel/controls_and_settings_selector_pane/gatherings_debug_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_21" | "selector_stack_panel/controls_and_settings_selector_pane/flighting_debug_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_22" | "selector_stack_panel/controls_and_settings_selector_pane/realms_debug_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_23" | "selector_stack_panel/controls_and_settings_selector_pane/automation_button" | "selector_stack_panel/spacer_24" | "selector_stack_panel/addons_selector_panel" | "selector_stack_panel/realms_invite_link_settings_pane" | "section_content_panels" | "section_content_panels/realm_invite_link_settings_content_panels" | "section_content_panels/world_sections" | "section_content_panels/world_sections/game_section" | "section_content_panels/world_sections/classroom_section_panel" | "section_content_panels/world_sections/classroom_section_panel/classroom_section" | "section_content_panels/world_sections/server_section" | "section_content_panels/world_sections/multiplayer_section" | "section_content_panels/world_sections/edu_cloud_section" | "section_content_panels/world_sections/debug_section" | "section_content_panels/packs_sections" | "section_content_panels/packs_sections/level_texture_pack_section" | "section_content_panels/packs_sections/addon_section" | "section_content_panels/section_content_panels" | "section_content_panels/general_and_controls_sections" | "section_content_panels/general_and_controls_sections/accessibility_section" | "section_content_panels/general_and_controls_sections/accessibility_section_ore_ui" | "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section" | "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section_ore_ui" | "section_content_panels/general_and_controls_sections/controller_section" | "section_content_panels/general_and_controls_sections/touch_section" | "section_content_panels/general_and_controls_sections/party_section" | "section_content_panels/general_and_controls_sections/general_tab_section" | "section_content_panels/general_and_controls_sections/general_tab_section_ore_ui" | "section_content_panels/general_and_controls_sections/account_section" | "section_content_panels/general_and_controls_sections/account_section_ore_ui" | "section_content_panels/general_and_controls_sections/global_texture_pack_section" | "section_content_panels/general_and_controls_sections/storage_management_header" | "section_content_panels/general_and_controls_sections/storage_management_section" | "section_content_panels/general_and_controls_sections/edu_cloud_storage_section" | "section_content_panels/general_and_controls_sections/creator_section" | "section_content_panels/general_and_controls_sections/video_section" | "section_content_panels/general_and_controls_sections/video_section_ore_ui" | "section_content_panels/general_and_controls_sections/view_subscriptions_prerelease_section" | "section_content_panels/general_and_controls_sections/view_subscriptions_section" | "section_content_panels/general_and_controls_sections/sound_section" | "section_content_panels/general_and_controls_sections/sound_section_ore_ui" | "section_content_panels/general_and_controls_sections/language_section" | "section_content_panels/general_and_controls_sections/language_section_ore_ui" | "section_content_panels/general_and_controls_sections/preview_section" | "section_content_panels/general_and_controls_sections/debug_section" | "section_content_panels/general_and_controls_sections/ui_debug_section" | "section_content_panels/general_and_controls_sections/edu_debug_section" | "section_content_panels/general_and_controls_sections/marketplace_debug_section" | "section_content_panels/general_and_controls_sections/gatherings_debug_section" | "section_content_panels/general_and_controls_sections/flighting_debug_section" | "section_content_panels/general_and_controls_sections/realms_debug_section" | "section_content_panels/general_and_controls_sections/automation_section" | "section_content_panels/general_and_controls_sections/discovery_debug_section" | "section_content_panels/general_and_controls_sections/how_to_play_section" | "section_header_panels" | "section_header_panels/world_sections" | "section_header_panels/general_and_controls_sections" | "section_footer_panels" | "section_footer_panels/world_sections" | "section_footer_panels/general_and_controls_sections" | "section_footer_panels/general_and_controls_sections/storage_management_footer"; +export type ControlsSection = "binding_button" | "binding_button_content" | "binding_button_content/default_label" | "image_binding_button" | "image_binding_button_content" | "image_binding_button_content/base_icon_image" | "image_binding_button_content/default_label" | "arrow_reset" | "reset_binding_button" | "keymapping_item_parent" | "keymapping_item_parent/keymapping_row" | "keymapping_item" | "keymapping_item/option_info_label_control" | "keymapping_item/option_info_label_control/keymapping_label_control" | "keymapping_item/keymapping_button_0" | "keymapping_item/keymapping_button_1" | "keymapping_grid" | "full_keymapping_grid" | "gamepad_mapping_item" | "gamepad_mapping_item/option_info_label_control" | "gamepad_mapping_item/option_info_label_control/keymapping_label_control" | "gamepad_mapping_item/keymapping_button_0" | "gamepad_mapping_item/keymapping_button_1" | "gamepad_mapping_grid" | "keyboard_and_mouse_button" | "keyboard_and_mouse_section_ore_ui" | "keyboard_and_mouse_section_ore_ui/spacer_0" | "keyboard_and_mouse_section_ore_ui/generic_label" | "keyboard_and_mouse_section_ore_ui/spacer_1" | "keyboard_and_mouse_section_ore_ui/gamepad_helper_label" | "keyboard_and_mouse_section" | "keyboard_and_mouse_section/option_slider_0" | "keyboard_and_mouse_section/option_slider_damen" | "keyboard_and_mouse_section/option_toggle_0" | "keyboard_and_mouse_section/option_toggle_1" | "keyboard_and_mouse_section/option_toggle_2" | "keyboard_and_mouse_section/option_toggle_full_keyboard_gameplay" | "keyboard_and_mouse_section/option_toggle_show_keyboard_prompts" | "keyboard_and_mouse_section/option_toggle_show_learning_prompts" | "keyboard_and_mouse_section/keyboard_section" | "keyboard_and_mouse_section/keyboard_section/option_group_label" | "keyboard_and_mouse_section/keyboard_section/keyboard_keymapping_grid" | "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section" | "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/option_group_label" | "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/control_alt_chord_keymapping_grid" | "keyboard_and_mouse_section/full_keyboard_section" | "keyboard_and_mouse_section/full_keyboard_section/option_slider_smooth_rotation_speed" | "keyboard_and_mouse_section/full_keyboard_section/full_keyboard_label" | "keyboard_and_mouse_section/full_keyboard_section/keyboard_full_keymapping_grid" | "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section" | "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/option_group_label" | "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/control_alt_chord_keymapping_grid" | "keyboard_and_mouse_section/reset_button" | "controller_button" | "controller_section" | "controller_section/option_slider_0" | "controller_section/option_slider_damen" | "controller_section/option_toggle_0" | "controller_section/option_toggle_1" | "controller_section/option_toggle9" | "controller_section/option_toggle10" | "controller_section/option_toggle_11" | "controller_section/gamepad_swap_ab" | "controller_section/gamepad_swap_xy" | "controller_section/gamepad_cursor_sensitivity_option_slider" | "controller_section/option_toggle_3" | "controller_section/option_toggle_4" | "controller_section/option_toggle_5" | "controller_section/option_group_label" | "controller_section/gamepad_keymapping_grid" | "controller_section/reset_button" | "touch_button" | "touch_section" | "touch_section/common_touch_settings" | "touch_section/common_touch_settings/option_enable_new_touch_control_schemes_button" | "touch_section/common_touch_settings/control_scheme_section" | "touch_section/common_touch_settings/control_scheme_section/section_label" | "touch_section/common_touch_settings/control_scheme_section/padding_0" | "touch_section/common_touch_settings/control_scheme_section/image_and_button" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/images" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/touch_image" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/crosshair_image" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/classic_image" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/padding" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_label" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_control" | "touch_section/common_touch_settings/control_scheme_section/padding_1" | "touch_section/common_touch_settings/control_scheme_section/select_control_mode" | "touch_section/common_touch_settings/control_scheme_section/padding_2" | "touch_section/common_touch_settings/modify_control_layout_section" | "touch_section/common_touch_settings/modify_control_layout_section/modify_control_layout_button" | "touch_section/common_touch_settings/modify_control_layout_section/customize_tooltip_option" | "touch_section/common_touch_settings/modify_control_layout_section/padding" | "touch_section/common_touch_settings/option_slider_0" | "touch_section/common_touch_settings/option_slider_damen" | "touch_section/common_touch_settings/option_show_action_button" | "touch_section/common_touch_settings/option_show_block_select_button" | "touch_section/common_touch_settings/option_toggle_left_handed" | "touch_section/common_touch_settings/option_toggle_auto_jump" | "touch_section/common_touch_settings/option_bool_sprint_on_movement" | "touch_section/common_touch_settings/option_show_toggle_camera_perspective_button" | "touch_section/common_touch_settings/joystick_visibility_dropdown" | "touch_section/common_touch_settings/top_button_scale" | "touch_section/common_touch_settings/sneak_dropdown" | "touch_section/common_touch_settings/option_toggle_destroy_vibration" | "touch_section/common_touch_settings/option_toggle_split_vibration" | "touch_section/common_touch_settings/option_creative_delayed_block_breaking" | "touch_section/common_touch_settings/option_toggle_invert_y" | "touch_section/common_touch_settings/option_always_highlight_hovering_box_in_crosshair" | "touch_section/common_touch_settings/option_toggle_use_touchpad" | "touch_section/common_touch_settings/option_toggle_swap_jump_and_sneak" | "touch_section/common_touch_settings/hotbar_only_touch_toggle" | "touch_section/reset_button" | "joystick_visibility_dropdown_content" | "top_button_scale_dropdown_content" | "sneak_dropdown_content" | "customize_tooltip_option_image" | "customize_tooltip_option_popup" | "customize_tooltip_option" | "customize_tooltip_option/customize_tooltip_option_image" | "customize_tooltip_option/customize_tooltip_option_image/hover_detection_input_panel" | "customize_tooltip_option/customize_tooltip_option_popup"; +export type GeneralSection = "general_button" | "general_tab_section_ore_ui" | "general_tab_section_ore_ui/spacer_0" | "general_tab_section_ore_ui/generic_label" | "general_tab_section_ore_ui/spacer_1" | "general_tab_section_ore_ui/gamepad_helper_label" | "general_tab_section" | "general_tab_section/option_toggle_fail_realms_purchase_fulfillment" | "general_tab_section/network_label_header" | "general_tab_section/paddingCrossPlatform" | "general_tab_section/cross_platform_enabled_toggle" | "general_tab_section/paddingCellularData" | "general_tab_section/mobile_data_option_toggle" | "general_tab_section/paddingWebSockets" | "general_tab_section/websockets_enabled_toggle" | "general_tab_section/websocket_encryption_toggle" | "general_tab_section/paddingAutoUpdate" | "general_tab_section/auto_update_mode_dropdown" | "general_tab_section/paddingAutoUpdateToggle" | "general_tab_section/auto_update_enabled_toggle" | "general_tab_section/paddingGameTipsFeature" | "general_tab_section/tutorial_toggle" | "general_tab_section/tutorial_animation_toggle" | "general_tab_section/tutorial_restart_button" | "general_tab_section/paddingTrustedSkins" | "general_tab_section/only_allow_trusted_skins_toggle" | "general_tab_section/paddingFilterProfanity" | "general_tab_section/filter_profanity_toggle" | "general_tab_section/filter_profanity_toggle/option_generic_core" | "general_tab_section/pause_label_header" | "general_tab_section/paddingPauseFeature" | "general_tab_section/pause_toggle" | "general_tab_section/paddingLinkEduSupport" | "general_tab_section/link_button" | "general_tab_section/paddingDividerSustainability" | "general_tab_section/ecomode_label_header" | "general_tab_section/paddingEcoMode" | "general_tab_section/ecomode_enabled_toggle" | "general_tab_section/paddingDividerTermsCreditsAttribution" | "general_tab_section/dividerTermsCreditsAttribution" | "general_tab_section/dividerTermsCreditsAttribution/section_divider" | "general_tab_section/paddingDividerTermsCreditsAttributionAfter" | "general_tab_section/paddingTermsNConditions" | "general_tab_section/terms_and_conditions_link_button" | "general_tab_section/paddingCreditsButton" | "general_tab_section/credits_button" | "general_tab_section/paddingAttribution" | "general_tab_section/attribution_link_button" | "general_tab_section/paddingfeedback" | "general_tab_section/feedback_link_button" | "general_tab_section/paddingLicenses" | "general_tab_section/dividerLicenses" | "general_tab_section/dividerLicenses/section_divider" | "general_tab_section/paddingLicensesAfter" | "general_tab_section/paddingLicensesHeader" | "general_tab_section/licenses_label_header" | "general_tab_section/paddingLicensedContent" | "general_tab_section/licensed_content_link_button" | "general_tab_section/paddingFontLicense" | "general_tab_section/font_license_popup_button" | "general_tab_section/third_party_copyright_info_label_panel" | "general_tab_section/third_party_copyright_info_label_panel/spacer_0" | "general_tab_section/third_party_copyright_info_label_panel/copyright_label" | "general_tab_section/third_party_copyright_info_label_panel/spacer_1" | "general_tab_section/third_party_copyright_info_label_panel/copyright_icon" | "general_tab_section/paddingSectionDividerContentLog" | "general_tab_section/build_info_label_panel" | "general_tab_section/build_info_label_panel/build_info_label" | "general_tab_section/paddingSectionDividerBuildInfo" | "general_tab_section/treatment_ids_label" | "account_section_ore_ui" | "account_section_ore_ui/spacer_0" | "account_section_ore_ui/generic_label" | "account_section_ore_ui/spacer_1" | "account_section_ore_ui/gamepad_helper_label" | "account_button" | "view_account_errors_button_content" | "switch_accounts_button_content" | "switch_accounts_button_content/padded_icon" | "switch_accounts_button_content/padded_icon/icon" | "switch_accounts_button_content/padded_label" | "switch_accounts_button_content/padded_label/label" | "sign_out_button_content" | "sign_out_button_content/padded_label" | "sign_out_button_content/padded_label/label" | "switch_accounts_panel" | "switch_accounts_panel/name_label" | "switch_accounts_panel/paddingSwitchAccounts" | "switch_accounts_panel/switch_accounts" | "sign_out_panel" | "sign_out_panel/sign_out" | "sign_out_fail_popup" | "sign_out_fail_body_panel" | "sign_out_fail_body_content_stack" | "sign_out_fail_body_content_stack/body_text_centering_panel1" | "sign_out_fail_body_content_stack/body_text_centering_panel1/body_text1" | "sign_out_fail_body_content_stack/body_text_centering_panel2" | "sign_out_fail_body_content_stack/body_text_centering_panel2/body_text2" | "sign_out_fail_body_content_stack/padding1" | "sign_out_fail_body_content_stack/learn_more_button" | "sign_out_fail_body_content_stack/padding2" | "sign_out_fail_body_content_stack/close_button" | "account_section" | "account_section/use_edu_remember_me" | "account_section/paddingUseSSO" | "account_section/switch_accounts" | "account_section/sign_out" | "account_section/paddingNameControls" | "account_section/name_controls" | "account_section/paddingSignInControls" | "account_section/signin_controls" | "account_section/paddingGamerTagControls" | "account_section/gamertag_controls" | "account_section/paddingClearMSAToken" | "account_section/clear_msa_token" | "account_section/clear_msa_token/clear_msa_token_button" | "account_section/paddingUnlinkMSAAccount" | "account_section/unlink_msa_account" | "account_section/unlink_msa_account_nx" | "account_section/paddingDeleteAccount" | "account_section/delete_account" | "account_section/paddingUseRemoteConnect" | "account_section/remote_connect_toggle" | "account_section/paddingInfoLabels" | "account_section/account_info_buttom" | "account_section/account_info_buttom/account_info_label" | "name_controls" | "name_controls/option_text_edit_control" | "signin_controls" | "signin_controls/sign_in" | "signin_controls/sign_in/action_button" | "signin_subscription" | "signin_subscription/sign_in" | "signin_subscription/sign_in/please_signin_label" | "gamertag_controls" | "gamertag_controls/gamertag_label" | "gamertag_controls/gamertag_label/panel_descriptor" | "gamertag_controls/gamertag_label/panel_descriptor/label_descriptor" | "gamertag_controls/gamertag_label/spacer" | "gamertag_controls/gamertag_label/gamerpic" | "gamertag_controls/gamertag_label/spacer_2" | "gamertag_controls/gamertag_label/panel_gamertag" | "gamertag_controls/gamertag_label/panel_gamertag/gamertag_label" | "gamertag_controls/paddingXboxAccountButtons" | "gamertag_controls/xboxlive_deep_link_buttons" | "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button" | "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button_mobile" | "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button" | "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button_mobile" | "gamertag_controls/xboxlive_deep_link_buttons/paddingXboxSettingsPrivacyControl" | "gamertag_controls/xboxlive_deep_link_buttons/link_button" | "gamertag_controls/paddingSignOut" | "gamertag_controls/realms_invites" | "gamertag_controls/realms_invites/check_realms_invites_button" | "gamertag_controls/sign_out" | "gamertag_controls/sign_out/action_button" | "gamertag_controls/offline_token_authorization" | "gamertag_controls/offline_token_authorization/request_psn_authorization_button" | "auto_update_mode_dropdown_content" | "global_texture_pack_button" | "global_texture_pack_section" | "storage_management_button" | "storage_management_section" | "storage_management_header" | "storage_management_footer" | "edu_cloud_storage_button" | "edu_cloud_storage_section" | "edu_cloud_storage_section/spacing1" | "edu_cloud_storage_section/edu_cloud_backup_toggle" | "edu_cloud_storage_section/spacing2" | "edu_cloud_storage_section/body_wrapper_panel" | "edu_cloud_storage_section/body_wrapper_panel/tts_border" | "edu_cloud_storage_section/body_wrapper_panel/edu_cloud_storage_body_label" | "edu_cloud_storage_section/spacing3" | "edu_cloud_storage_section/edu_cloud_onedrive_button" | "edu_cloud_storage_section/spacing4" | "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel" | "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/learn_more_button" | "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon" | "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon/icon" | "edu_cloud_onedrive_button_content" | "edu_cloud_onedrive_button_content/padded_label" | "edu_cloud_onedrive_button_content/padded_label/label" | "edu_cloud_onedrive_button_content/padded_icon" | "edu_cloud_onedrive_button_content/padded_icon/icon" | "edu_cloud_onedrive_error_popup" | "edu_cloud_onedrive_error_content" | "edu_cloud_onedrive_error_content/body_text_centering_panel2" | "edu_cloud_onedrive_error_content/body_text_centering_panel2/body_text2" | "edu_cloud_onedrive_error_content/padding2" | "edu_cloud_onedrive_error_content/learn_more_button" | "edu_cloud_onedrive_error_content/padding3" | "edu_cloud_onedrive_error_content/ok_button" | "creator_button" | "editor_toggle_panel" | "editor_toggle_panel/editor_confirmation_panel" | "editor_toggle_panel/editor_confirmation_panel/editor_active_label" | "editor_toggle_panel/editor_confirmation_panel/toggle_spacer" | "editor_toggle_panel/editor_confirmation_panel/editor_confirmation_section_label" | "editor_toggle_panel/editor_toggle_spacer" | "editor_toggle_panel/editor_image_panel" | "editor_toggle_panel/editor_image_panel/editor_icon" | "creator_toggles_panel" | "creator_toggles_panel/section_panel_1" | "creator_toggles_panel/section_panel_1/section_divider" | "creator_toggles_panel/copy_coordinate_section_stack_panel" | "creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label" | "creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label_spacer" | "creator_toggles_panel/copy_coordinate_section_stack_panel/option_content_file_log" | "creator_toggles_panel/creator_setting_button" | "creator_toggles_panel/creator_setting_button/go_to_keybinds" | "creator_toggles_panel/creator_setting_button/creator_settings_section_label_spacer" | "debugger_toggles_panel" | "debugger_toggles_panel/section_panel_1" | "debugger_toggles_panel/section_panel_1/section_divider" | "debugger_toggles_panel/primary_panel" | "debugger_toggles_panel/primary_panel/heading" | "debugger_toggles_panel/primary_panel/spacer" | "debugger_toggles_panel/primary_panel/passcode_required_toggle" | "debugger_toggles_panel/primary_panel/passcode_input" | "debugger_toggles_panel/primary_panel/auto_attach_toggle" | "debugger_toggles_panel/primary_panel/all_options_panel" | "debugger_toggles_panel/primary_panel/all_options_panel/attach_mode_option" | "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel" | "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/host_input" | "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/spacer" | "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/port_input" | "debugger_toggles_panel/primary_panel/all_options_panel/auto_attach_timeout_slider" | "diagnostics_toggles_panel" | "diagnostics_toggles_panel/section_panel_1" | "diagnostics_toggles_panel/section_panel_1/section_divider" | "diagnostics_toggles_panel/primary_panel" | "diagnostics_toggles_panel/primary_panel/heading" | "diagnostics_toggles_panel/primary_panel/spacer" | "diagnostics_toggles_panel/primary_panel/serverbound_client_diagnostics_toggle" | "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons" | "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons/clear_diagnostics_capture_files" | "watchdog_toggles_panel" | "watchdog_toggles_panel/section_panel_1" | "watchdog_toggles_panel/section_panel_1/section_divider" | "watchdog_toggles_panel/primary_panel" | "watchdog_toggles_panel/primary_panel/heading" | "watchdog_toggles_panel/primary_panel/spacer" | "watchdog_toggles_panel/primary_panel/hang_threshold_slider" | "watchdog_toggles_panel/primary_panel/spike_warning_toggle" | "watchdog_toggles_panel/primary_panel/spike_threshold_slider" | "watchdog_toggles_panel/primary_panel/slow_warning_toggle" | "watchdog_toggles_panel/primary_panel/slow_threshold_slider" | "device_info_toggles_panel" | "device_info_toggles_panel/section_panel_1" | "device_info_toggles_panel/section_panel_1/section_divider" | "device_info_toggles_panel/primary_panel" | "device_info_toggles_panel/primary_panel/heading" | "device_info_toggles_panel/primary_panel/spacer" | "device_info_toggles_panel/primary_panel/device_info_memory_tier_use_override_toggle" | "device_info_toggles_panel/device_info_memory_tier_dropdown" | "content_memory_tier_dropdown_content" | "content_log_gui_level_content" | "content_log_panel" | "content_log_panel/section_panel_1" | "content_log_panel/section_panel_1/section_divider" | "content_log_panel/content_log_section_label" | "content_log_panel/content_log_section_label_spacer" | "content_log_panel/option_content_file_log" | "content_log_panel/option_content_gui_log" | "content_log_panel/option_content_gui_log_show_on_errors" | "content_log_panel/option_content_log_gui_level" | "content_log_panel/content_log_buttons" | "content_log_panel/content_log_buttons/open_content_log_history" | "content_log_panel/content_log_buttons/content_log_section_label_spacer" | "content_log_panel/content_log_buttons/clear_content_log_files" | "content_log_panel/content_log_section_label_spacer_2" | "content_log_panel/content_log_location_label_header" | "content_log_panel/content_log_location_label" | "creator_section" | "creator_section/editor_toggle" | "creator_section/creator_toggles" | "creator_section/debugger_toggles_panel" | "creator_section/diagnostics_toggle_panel" | "creator_section/watchdog_toggles_panel" | "creator_section/device_info_toggles_panel" | "creator_section/content_log_panel" | "video_button" | "advanced_video_options_toggle" | "video_section_ore_ui" | "video_section_ore_ui/spacer_0" | "video_section_ore_ui/generic_label" | "video_section_ore_ui/spacer_1" | "video_section_ore_ui/gamepad_helper_label" | "video_menu_slider_step_progress" | "video_menu_slider_progress" | "video_menu_slider_bar_default" | "video_menu_customization_slider_control" | "video_menu_customization_slider_control/slider" | "video_menu_customization_slider_control/slider/slider_box" | "video_menu_customization_slider_control/slider/slider_bar_default" | "video_menu_customization_slider_control/slider/slider_bar_hover" | "video_menu_customization_option_slider" | "video_section" | "video_section/advanced_graphics_options_panel" | "video_section/advanced_graphics_options_panel/graphics_mode" | "video_section/advanced_graphics_options_panel/graphics_quality_preset_mode_dropdown_content" | "video_section/advanced_graphics_options_panel/spacer_0" | "video_section/advanced_graphics_options_panel/advanced_graphics_options_button" | "video_section/advanced_graphics_options_panel/advanced_graphics_options_section" | "video_section/spacer_1" | "video_section/graphics_api_dropdown" | "video_section/raytracing_render_distance_slider" | "video_section/raytracing_render_distance_slider/option_generic_core" | "video_section/deferred_render_distance_slider" | "video_section/deferred_render_distance_slider/option_generic_core" | "video_section/render_distance_slider" | "video_section/render_distance_slider/render_distance_warning" | "video_section/render_distance_slider/option_generic_core" | "video_section/render_distance_warning_text" | "video_section/render_distance_warning_text/render_distance_popup" | "video_section/spacer_2" | "video_section/brightness_slider" | "video_section/spacer_3" | "video_section/perspective_dropdown" | "video_section/spacer_4" | "video_section/fullscreen_toggle" | "video_section/spacer_5" | "video_section/option_toggle_hidehand" | "video_section/spacer_6" | "video_section/hide_paperdoll_toggle" | "video_section/spacer_7" | "video_section/option_toggle_hidehud" | "video_section/spacer_8" | "video_section/option_toggle_screen_animations" | "video_section/spacer_9" | "video_section/hud_opacity_slider" | "video_section/spacer_10" | "video_section/splitscreen_hud_opacity_slider" | "video_section/spacer_11" | "video_section/setup_safe_zone" | "video_section/setup_safe_zone/action_button" | "video_section/spacer_12" | "video_section/fov_slider" | "video_section/spacer_13" | "video_section/split_screen_dropdown" | "video_section/spacer_14" | "video_section/auto_save_icon_toggle" | "video_section/spacer_15" | "video_section/outline_selection_toggle" | "video_section/spacer_16" | "video_section/player_names_toggle" | "video_section/spacer_17" | "video_section/splitscreen_player_names_toggle" | "video_section/spacer_18" | "video_section/view_bobbing_toggle" | "video_section/spacer_19" | "video_section/camera_shake_toggle" | "video_section/spacer_20" | "video_section/fancy_leaves_toggle" | "video_section/spacer_21" | "video_section/fancy_bubbles_toggle" | "video_section/spacer_22" | "video_section/render_clouds_toggle" | "video_section/spacer_23" | "video_section/fancy_clouds_toggle" | "video_section/spacer_24" | "video_section/smooth_lighting_toggle" | "video_section/spacer_25" | "video_section/rendering_profile_option_slider" | "video_section/field_of_view_toggle" | "video_section/spacer_26" | "video_section/damage_bob_option_slider" | "video_section/spacer_26.5" | "video_section/super_fancy_panel" | "video_section/super_fancy_panel/super_fancy_section" | "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents" | "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/atmospherics_toggle" | "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/edge_highlight_toggle" | "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/bloom_toggle" | "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/terrain_shadows_toggle" | "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/super_fancy_water_toggle" | "video_section/ui_profile_dropdown" | "video_section/spacer_27" | "video_section/gui_scale_slider" | "video_section/gui_scale_slider/option_generic_core" | "video_section/spacer_28" | "video_section/gui_accessibility_scaling_toggle" | "video_section/gui_accessibility_scaling_toggle/option_generic_core" | "video_section/spacer_29" | "video_section/option_toggle_improved_input_response" | "video_section/option_toggle_improved_input_response/option_generic_core" | "video_section/spacer_30" | "video_section/frame_pacing_toggle" | "video_section/frame_pacing_toggle/option_generic_core" | "video_section/spacer_31" | "video_section/graphics_mode_switch_toggle" | "video_section/spacer_32" | "video_section/upscaling_toggle" | "video_section/spacer_33" | "video_section/max_framerate_slider" | "video_section/spacer_34" | "video_section/msaa_slider" | "video_section/spacer_35" | "video_section/texel_anti_aliasing_toggle" | "video_section/spacer_36" | "video_section/reset_button" | "max_framerate_slider" | "max_framerate_slider/option_generic_core" | "msaa_slider" | "upscaling_toggle" | "upscaling_toggle/option_generic_core" | "render_distance_warning_image" | "render_distance_warning" | "render_distance_warning/render_distance_warning_image" | "ui_profile_dropdown_content" | "split_screen_dropdown_content" | "third_person_dropdown_content" | "toast_notification_duration_dropdown_content" | "chat_message_duration_dropdown_content" | "file_storage_location_content" | "background" | "background/fill" | "background/border" | "left_button_label" | "right_button_label" | "realms_button_panel" | "realms_button_panel/pad_0" | "realms_button_panel/left_button_panel" | "realms_button_panel/left_button_panel/left_button" | "realms_button_panel/left_button_panel/left_button_loading" | "realms_button_panel/pad_1" | "realms_button_panel/right_button" | "realms_button_panel/pad_2" | "consumable_not_extendable" | "consumable_not_extendable/panel_content" | "consumable_not_extendable/panel_content/padded_icon_0" | "consumable_not_extendable/panel_content/limited_status_image" | "consumable_not_extendable/panel_content/padded_icon_1" | "consumable_not_extendable/panel_content/label_panel" | "consumable_not_extendable/panel_content/label_panel/name_label2" | "possible_store_mismatch" | "possible_store_mismatch/panel_content" | "possible_store_mismatch/panel_content/padded_icon_0" | "possible_store_mismatch/panel_content/limited_status_image" | "possible_store_mismatch/panel_content/padded_icon_1" | "possible_store_mismatch/panel_content/label_panel" | "possible_store_mismatch/panel_content/label_panel/name_label2" | "realms_subscription_stack" | "realms_subscription_stack/image_panel" | "realms_subscription_stack/image_panel/0" | "realms_subscription_stack/pad" | "realms_subscription_stack/info" | "realms_subscription_stack/info/realm_name" | "realms_subscription_stack/info/realms_desc_label" | "realms_subscription_stack/info/bottom_pad" | "realms_subscription_main" | "realms_subscription_main/black_background" | "realms_subscription_main/realms_plus_subscription_stack" | "realms_subscription_main/realms_plus_subscription_stack/realms_plus_subscription_top_stack" | "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack" | "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/top_pad" | "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/realms_plus_bottom_button_panel" | "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/bottom_pad" | "realms_subscription_panel" | "realms_subscription_panel/top_panel" | "realms_subscription_panel/pad_1" | "realms_subscription_panel/middle_panel" | "realms_subscription_panel/middle_panel/black_background" | "realms_subscription_panel/middle_panel/renews_text" | "realms_subscription_panel/pad_2" | "realms_subscription_panel/lower_panel" | "realms_subscription_panel/lower_panel/black_background" | "realms_subscription_panel/lower_panel/consumable_not_extendable" | "realms_subscription_panel/pad_3" | "realms_subscription_panel/platform_mismatch_container" | "realms_subscription_panel/platform_mismatch_container/black_background" | "realms_subscription_panel/platform_mismatch_container/possible_store_mismatch" | "realms_subscription_panel/pad_4" | "realms_plus_subscription_panel" | "additional_subscription_panel" | "view_subscriptions_button" | "view_subscriptions_prerelease_section" | "view_subscriptions_prerelease_section/black_background" | "view_subscriptions_prerelease_section/renews_text" | "view_subscriptions_section" | "view_subscriptions_section/sunsetting_label" | "view_subscriptions_section/failed_loading_subscriptions_label" | "view_subscriptions_section/loading_subscriptions_label" | "view_subscriptions_section/no_active_subscriptions_panel" | "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions" | "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions/text" | "view_subscriptions_section/no_active_subscriptions_panel/background_panel" | "view_subscriptions_section/realms_plus_header_my_subscriptions" | "view_subscriptions_section/realms_plus_header_my_subscriptions/text" | "view_subscriptions_section/realms_plus_subscriptions_grid" | "view_subscriptions_section/csb_purchased_with_cancel" | "view_subscriptions_section/csb_purchased_with_buy" | "view_subscriptions_section/csb_purchased_padding" | "view_subscriptions_section/platform_mismatch_container" | "view_subscriptions_section/platform_mismatch_container/black_background" | "view_subscriptions_section/platform_mismatch_container/possible_store_mismatch" | "view_subscriptions_section/csb_expiration_container" | "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container" | "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration_text_padding" | "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration" | "view_subscriptions_section/csb_expiration_container/background_panel" | "view_subscriptions_section/csb_expiration_and_platform_mismatch_padding" | "view_subscriptions_section/additional_realms_subscriptions_grid" | "view_subscriptions_section/settings_additional_subscription_offers_section" | "view_subscriptions_section/pad_3" | "settings_additional_subscription_offers_section" | "settings_additional_subscription_offers_section/active_available_divider" | "settings_additional_subscription_offers_section/realms_plus_header_label" | "settings_additional_subscription_offers_section/pad_0" | "settings_additional_subscription_offers_section/additional_realms_buy_offer" | "settings_additional_subscription_offers_section/pad_8" | "settings_additional_subscription_offers_section/csb_buy_panel" | "accessibility_button" | "toast_notification_duration_label" | "toast_notification_duration_info_label" | "toast_notification_duration_info_edu_label" | "chat_message_duration_label" | "chat_message_duration_info_label" | "accessibility_section" | "accessibility_section/option_toggle0" | "accessibility_section/option_toggle1" | "accessibility_section/option_toggle2" | "accessibility_section/option_slider_0" | "accessibility_section/option_toggle3" | "accessibility_section/hud_text_background_opacity_slider" | "accessibility_section/chat_opacity_slider" | "accessibility_section/actionbar_text_background_opacity_slider" | "accessibility_section/camera_shake_toggle" | "accessibility_section/hide_endflash_toggle" | "accessibility_section/enable_dithering_blocks_toggle" | "accessibility_section/enable_dithering_mobs_toggle" | "accessibility_section/darkness_slider" | "accessibility_section/glint_strength_slider" | "accessibility_section/glint_speed_slider" | "accessibility_section/toast_notification_duration_options_panel" | "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_label_wrapper" | "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_wrapper" | "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_edu_wrapper" | "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown_spacer_pre" | "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown" | "accessibility_section/chat_message_duration_options_panel" | "accessibility_section/chat_message_duration_options_panel/chat_message_duration_label_wrapper" | "accessibility_section/chat_message_duration_options_panel/chat_message_duration_info_label_wrapper" | "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown_spacer_pre" | "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown" | "accessibility_section/gui_scale_slider" | "accessibility_section/gui_scale_slider/option_generic_core" | "accessibility_section/gui_accessibility_scaling_toggle" | "accessibility_section/gui_accessibility_scaling_toggle/option_generic_core" | "accessibility_section/reset_button" | "accessibility_section_ore_ui" | "accessibility_section_ore_ui/spacer_0" | "accessibility_section_ore_ui/generic_label" | "accessibility_section_ore_ui/spacer_1" | "accessibility_section_ore_ui/gamepad_helper_label" | "accessibility_section_ore_ui/accessibility_button" | "sound_button" | "sound_section_ore_ui" | "sound_section_ore_ui/spacer_0" | "sound_section_ore_ui/generic_label" | "sound_section_ore_ui/spacer_1" | "sound_section_ore_ui/gamepad_helper_label" | "sound_section" | "sound_section/paddingMainVolume" | "sound_section/option_slider_0" | "sound_section/paddingDividerAudioSettings" | "sound_section/dividerAudioSettings" | "sound_section/dividerAudioSettings/section_divider" | "sound_section/paddingMusic" | "sound_section/option_slider_1" | "sound_section/paddingSound" | "sound_section/option_slider_2" | "sound_section/paddingAmbient" | "sound_section/option_slider_3" | "sound_section/paddingBlockVolume" | "sound_section/option_slider_4" | "sound_section/paddingHostile" | "sound_section/option_slider_5" | "sound_section/paddingNeutralVolume" | "sound_section/option_slider_6" | "sound_section/paddingPlayervolume" | "sound_section/option_slider_7" | "sound_section/paddingRecordVolume" | "sound_section/option_slider_8" | "sound_section/paddingWeatherVolume" | "sound_section/option_slider_9" | "sound_section/paddingTTSVolume" | "sound_section/option_slider_10" | "sound_section/paddingResetVolumes" | "sound_section/reset_button" | "sound_section/paddingEndOfList" | "language_button" | "language_grid_item" | "language_section" | "language_section/language_list_grid" | "language_section_ore_ui" | "language_section_ore_ui/spacer_0" | "language_section_ore_ui/generic_label" | "language_section_ore_ui/spacer_1" | "language_section_ore_ui/gamepad_helper_label" | "preview_button" | "preview_section" | "preview_section/spacer_0" | "preview_section/generic_label" | "preview_section/preview_store_launch_app1_button" | "preview_section/preview_store_launch_app2_button" | "override_date_panel" | "override_date_panel/year_text_box" | "override_date_panel/year_month_slash" | "override_date_panel/month_text_box" | "override_date_panel/month_day_slash" | "override_date_panel/day_text_box" | "override_date_panel/day_hour_slash" | "override_date_panel/hour_text_box" | "override_date_panel/hour_minute_slash" | "override_date_panel/minute_text_box" | "timezonetype_dropdown_content" | "date_options_panel" | "date_options_panel/padding0" | "date_options_panel/display_override_datetime_option_toggle" | "date_options_panel/option_toggle_date_override" | "date_options_panel/override_date_options_panel" | "override_date_options_panel" | "override_date_options_panel/override_date_options_background_panel" | "override_date_options_panel/override_date_options_background_panel/load_override_date_option_toggle" | "override_date_options_panel/override_date_options_background_panel/select_dropdown" | "override_date_options_panel/override_date_options_background_panel/override_date_panel" | "override_date_options_panel/override_date_options_background_panel/padding1" | "override_date_options_panel/override_date_options_background_panel/override_time_scale_option" | "override_date_options_panel/override_date_options_background_panel/reset_time_button" | "override_date_options_panel/override_date_options_background_panel/padding2" | "debug_display_logged_error_panel" | "debug_display_logged_error_panel/debug_display_logged_error_panel_background" | "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_marketplace" | "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_ui" | "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_osi" | "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_other" | "debug_display_logged_error_panel/debug_display_logged_error_panel_background/spacer_0" | "xbox_sandbox_panel" | "xbox_sandbox_panel/padding0" | "xbox_sandbox_panel/display_override_xbox_sandbox_toggle_windows" | "xbox_sandbox_panel/display_override_xbox_sandbox_toggle" | "xbox_sandbox_panel/override_xbox_options_panel" | "override_xbox_options_panel" | "override_xbox_options_panel/override_xbox_options" | "override_xbox_options_panel/override_xbox_options/option_dropdown_xbox" | "override_version_options_panel" | "override_version_options_panel/override_version_panel" | "override_version_options_panel/override_version_button_panel" | "override_version_options_panel/override_version_button_panel/update_override_version_button" | "override_version_options_panel/override_date_panel_bottom_padding" | "override_version_panel" | "override_version_panel/major_version_text_box" | "override_version_panel/first_dot" | "override_version_panel/minor_version_text_box" | "override_version_panel/second_dot" | "override_version_panel/patch_version_text_box" | "dot_label" | "debug_override_treatments_panel" | "debug_override_treatments_panel/override_treatments_panel_background" | "debug_override_treatments_panel/override_treatments_panel_background/option_toggle_treatment_override" | "debug_override_treatments_panel/override_treatments_panel_background/spacer_0" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/apply_treatments_button" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/text_edit_treatment" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel/add_button" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/reset_to_default" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/clear_treatments" | "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel" | "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel/treatments_label" | "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1" | "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1/progress_loading_spinner_1" | "debug_override_treatments_panel/override_treatments_panel_background/treatment_grid" | "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel" | "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel/treatments_label" | "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2" | "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2/progress_loading_spinner_2" | "debug_override_treatments_panel/override_treatments_panel_background/unused_treatment_grid" | "debug_override_treatments_panel/override_treatments_panel_background/spacer_1" | "debug_override_configurations_panel" | "debug_override_configurations_panel/override_configurations_panel_background" | "debug_override_configurations_panel/override_configurations_panel_background/option_toggle_configuration_override" | "debug_override_configurations_panel/override_configurations_panel_background/spacer_0" | "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel" | "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel" | "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/text_edit_configuration" | "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel" | "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel/add_button" | "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel" | "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/reset_to_default" | "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/clear_configurations" | "debug_override_configurations_panel/override_configurations_panel_background/configuration_grid" | "debug_override_realms_features_panel" | "debug_override_realms_features_panel/override_realms_features_panel_background" | "debug_override_realms_features_panel/override_realms_features_panel_background/option_toggle_realms_feature_override" | "debug_override_realms_features_panel/override_realms_features_panel_background/spacer_0" | "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel" | "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel" | "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/text_edit_realms_features" | "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/add_button_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" | "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel" | "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/reset_to_default" | "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/clear_realms_features" | "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel" | "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel/realms_features_label" | "debug_override_realms_features_panel/override_realms_features_panel_background/realms_features_grid" | "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel" | "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel/realms_features_label" | "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_grid" | "configuration_grid_item" | "configuration_grid_item/configuration_id_panel" | "configuration_grid_item/configuration_id_panel/configuration_id" | "configuration_grid_item/remove_button" | "remove_configuration_icon" | "realms_feature_grid_item" | "realms_feature_grid_item/realms_feature_id_panel" | "realms_feature_grid_item/realms_feature_id_panel/realms_feature_id" | "realms_feature_grid_item/disable_button" | "disable_realms_feature_icon" | "unused_realms_feature_grid_item" | "unused_realms_feature_grid_item/unused_realms_feature_id_panel" | "unused_realms_feature_grid_item/unused_realms_feature_id_panel/unused_realms_feature_id" | "unused_realms_feature_grid_item/enable_button" | "enable_realms_feature_icon" | "treatment_grid_item" | "treatment_grid_item/treatment_id_panel" | "treatment_grid_item/treatment_id_panel/treatment_id" | "treatment_grid_item/remove_button" | "remove_treatment_icon" | "unused_treatment_grid_item" | "unused_treatment_grid_item/unused_treatment_id_panel" | "unused_treatment_grid_item/unused_treatment_id_panel/unused_treatment_id" | "unused_treatment_grid_item/add_button" | "add_treatment_icon" | "debug_select_windows_store_panel" | "debug_select_windows_store_panel/select_store_dropdown" | "debug_select_windows_store_panel/stores_label" | "debug_select_windows_store_panel/sandbox_label" | "windows_store_dropdown_content" | "mock_http_panel" | "mock_http_panel/display_mock_http_panel_toggle" | "mock_http_panel/mock_http_panel_content" | "mock_http_panel_content" | "mock_http_panel_content/mock_http_panel_background" | "mock_http_panel_content/mock_http_panel_background/add_mock_rules_button" | "mock_http_panel_content/mock_http_panel_background/remove_all_mock_rules_button" | "mock_http_panel_content/mock_http_panel_background/active_rules_label" | "mock_http_panel_content/mock_http_panel_background/rule_list" | "mock_http_panel_content/mock_http_panel_background/divider" | "mock_http_rule_list" | "mock_http_rule" | "mock_http_rule/rule_details_label" | "mock_http_rule/rule_spacer" | "automation_button" | "automation_section" | "automation_section/automation_tab_label" | "automation_section/padding" | "automation_section/automation_test_asset_sas_text_box" | "automation_section/automation_functional_test_tags_text_box" | "automation_section/automation_server_test_tags_text_box" | "automation_section/automation_unit_test_tags_text_box" | "automation_section/automation_broken_functional_test_tags_text_box" | "automation_section/automation_broken_server_test_tags_text_box" | "automation_section/automation_broken_unit_test_tags_text_box" | "automation_section/automation_repeat_count_text_box" | "automation_section/automation_soak_test_duration_minutes_text_box" | "automation_section/automation_repeat_failures_only_toggle" | "automation_section/automation_run_entire_server_test_group" | "automation_section/automation_testbuild_id_text_box" | "automation_section/automation_functional_test_block_input_toggle" | "automation_section/automation_server_test_assert_on_level_diff_toggle" | "discovery_debug_button" | "discovery_debug_section" | "discovery_debug_section/option_discovery_environment" | "discovery_debug_section/debug_override_discovery_panel" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/option_toggle_discovery_override" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/spacer_0" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_name" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_type" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_branch" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_custom" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/reset_endpoint_override" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/apply_endpoint_override" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_1" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/active_service_overrides_label" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_2" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/reset_all_endpoint_overrides_button" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/discovery_overrides_do_not_save_label" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_3" | "debug_button" | "feature_toggle" | "debug_section" | "debug_section/options_for_qa_convenience" | "debug_section/options_for_qa_convenience_spacer" | "debug_section/option_toggle_dev_console_button_0" | "debug_section/option_toggle_assertions_debug_break" | "debug_section/option_toggle_assertions_show_dialog" | "debug_section/option_dev_show_display_logged_error" | "debug_section/display_logged_error_panel" | "debug_section/option_dev_force_trial_mode" | "debug_section/option_dev_force_trial_mode_spacer" | "debug_section/debug_overlay_pages_label" | "debug_section/debug_overlay_button_panel" | "debug_section/debug_overlay_button_panel/debug_overlay_previous_button" | "debug_section/debug_overlay_button_panel/debug_overlay_next_button" | "debug_section/pre_feature_toggles_label_spacer" | "debug_section/feature_toggles_label" | "debug_section/feature_toggles_label_spacer" | "debug_section/feature_toggles" | "debug_section/end_of_feature_toggles_label_spacer" | "debug_section/option_toggle_dev_disable_lan_signaling" | "debug_section/option_dropdown_nethernet_logging_verbosity" | "debug_section/option_dropdown_http_logging_verbosity" | "debug_section/option_dropdown_xsapi_logging_verbosity" | "debug_section/option_toggle_remote_imgui" | "debug_section/option_dropdown_0" | "debug_section/option_toggle_extra_debug_hud_info" | "debug_section/option_toggle_0_1" | "debug_section/option_toggle_0_2" | "debug_section/option_slider_0" | "debug_section/option_toggle_3" | "debug_section/option_toggle_4" | "debug_section/option_toggle_5" | "debug_section/option_toggle_6" | "debug_section/option_dropdown_server_chunk_map" | "debug_section/option_toggle_9" | "debug_section/option_toggle_disable_render_terrain" | "debug_section/option_toggle_disable_render_entities" | "debug_section/option_toggle_disable_render_blockentities" | "debug_section/option_toggle_disable_render_particles" | "debug_section/option_toggle_disable_render_sky" | "debug_section/option_toggle_disable_render_weather" | "debug_section/option_toggle_disable_render_hud" | "debug_section/option_toggle_disable_render_item_in_hand" | "debug_section/option_toggle_disable_render_main_menu_cubemap" | "debug_section/option_toggle_disable_render_main_menu_paperdoll_animation" | "debug_section/leak_memory" | "debug_section/log_area" | "debug_section/log_priority" | "debug_section/option_toggle_build_info" | "debug_section/option_perf_turtle" | "debug_section/option_default_profiling_option" | "debug_section/option_toggle_7" | "debug_section/option_toggle_8" | "debug_section/option_toggle_game_tip" | "debug_section/option_toggle_10" | "debug_section/dev_disable_client_blob_cache_toggle" | "debug_section/dev_force_client_blob_cache_toggle" | "debug_section/devquality_dropdown" | "debug_section/dev_add_http_delay_seconds" | "debug_section/dev_show_latency_graph_toggle" | "debug_section/xbox_sandbox_panel" | "debug_section/multithreaded_rendering_toggle" | "debug_section/filewatcher_rendering_toggle" | "debug_section/enable_texture_hot_reloader_toggle" | "debug_section/mock_http_panel" | "debug_section/vsync_dropdown" | "debug_section/sunsetting_use_overrides_toggle" | "debug_section/padding_sunsetting" | "debug_section/sunseting_state_toggle" | "debug_section/sunsetting_tier_dropdown" | "debug_section/padding_sunsetting_2" | "debug_section/padding1" | "debug_section/copy_internal_settings_folder_to_external" | "debug_section/padding_reset_day_one" | "debug_section/reset_new_player_flow" | "debug_section/reset_day_one_experience" | "debug_section/option_text_edit_1" | "debug_section/option_text_edit_2" | "debug_section/option_text_edit_3" | "debug_section/reset_report_timer_option" | "debug_section/reset_online_safety_option" | "debug_section/reset_ip_safety_option" | "debug_section/padding_graphics_options" | "debug_section/option_shadersdk_service_ip" | "debug_section/option_shadersdk_service_port" | "debug_section/option_shadersdk_target_port" | "debug_section/padding_graphics_buttons" | "debug_section/trigger_graphics_device_loss" | "debug_section/allocate_texture_handles" | "debug_section/padding_deferred_debug" | "debug_section/deferred_platform_override" | "realms_debug_button" | "realms_debug_section" | "realms_debug_section/realms_menu_title" | "realms_debug_section/realms_title_spacer" | "realms_debug_section/feature_toggles_label" | "realms_debug_section/feature_toggles_label_spacer" | "realms_debug_section/feature_toggles" | "realms_debug_section/end_of_feature_toggles_label_spacer" | "realms_debug_section/realms_dev_toggles_title" | "realms_debug_section/realms_dev_toggle_spacer" | "realms_debug_section/realms_without_purchase_toggle" | "realms_debug_section/realms_debug_options_title" | "realms_debug_section/realms_debug_options_spacer" | "realms_debug_section/option_dropdown_1" | "realms_debug_section/option_dropdown_2" | "realms_debug_section/option_text_edit_0" | "realms_debug_section/realms_features_override_panel" | "realms_debug_section/realms_features_override_panel/option_toggle_realms_features_override" | "realms_debug_section/realms_features_override_panel/override_realms_features_panel" | "realms_debug_section/realms_debug_options_spacer_2" | "realms_feature_toggle" | "marketplace_debug_button" | "marketplace_debug_section" | "marketplace_debug_section/marketplace_feature_toggles_label" | "marketplace_debug_section/marketplace_feature_toggles_label_spacer" | "marketplace_debug_section/marketplace_feature_toggles" | "marketplace_debug_section/playfab_token_refresh_threshold" | "marketplace_debug_section/option_dropdown_skin_rotation_speed" | "marketplace_debug_section/option_toggle_all_skins_rotate" | "marketplace_debug_section/option_toggle_display_marketplace_document_id" | "marketplace_debug_section/option_toggle_display_platform_offer_check" | "marketplace_debug_section/version_options_panel" | "marketplace_debug_section/version_options_panel/option_version_override" | "marketplace_debug_section/version_options_panel/override_version_options_panel" | "marketplace_debug_section/select_windows_store_panel" | "marketplace_debug_section/date_options_panel" | "marketplace_debug_section/option_clear_store_cache_button" | "marketplace_debug_section/option_clear_all_cache_button" | "marketplace_debug_section/option_delete_all_personas_button" | "marketplace_debug_section/option_delete_legacy_personas_button" | "marketplace_debug_section/padding2" | "marketplace_debug_section/enable_coin_debug_switch_toggle" | "marketplace_debug_section/add_500_coins" | "marketplace_debug_section/add_100000_coins" | "marketplace_debug_section/padding3" | "marketplace_debug_section/reset_entitlements" | "marketplace_debug_section/reset_wallet" | "marketplace_feature_toggle" | "gatherings_debug_button" | "gatherings_debug_section" | "gatherings_debug_section/refresh_gatherings_button" | "gatherings_debug_section/spacer_1" | "gatherings_debug_section/clear_system_service_pack_cache_button" | "gatherings_debug_section/spacer_2" | "gatherings_debug_section/active_gathering_label" | "gatherings_debug_section/spacer_3" | "gatherings_debug_section/text_edit_filter_gatherings" | "gatherings_debug_section/spacer_4" | "gatherings_debug_section/available_gatherings_section" | "gathering_grid_item_content" | "gathering_grid_item_content/gathering_name" | "gathering_grid_item_content/gathering_uuid" | "gathering_item_template" | "gathering_item_template/gathering_item_button" | "available_gatherings_grid" | "available_gatherings_panel" | "available_gatherings_panel/available_label" | "available_gatherings_panel/gatherings_grid" | "available_gatherings_panel/spacing_gap" | "available_gatherings_section" | "available_gatherings_section/available_gatherings_panel" | "ui_debug_button" | "ui_feature_toggle" | "edu_debug_button" | "edu_feature_toggle" | "new_create_world_grid_item" | "new_edu_create_world_screen_grid_item" | "new_play_screen_grid_item" | "new_edit_world_screen_grid_item" | "new_player_permissions_screen_grid_item" | "new_send_invites_screen_grid_item" | "new_death_grid_item" | "new_bed_grid_item" | "ore_ui_gameplay_ui_grid_item" | "new_settings_screen_grid_item" | "ui_debug_section" | "ui_debug_section/ui_feature_toggles_label" | "ui_debug_section/ui_feature_toggles_info_label" | "ui_debug_section/ui_feature_toggles_label_spacer" | "ui_debug_section/ui_feature_toggles" | "ui_debug_section/end_of_ui_feature_toggles_label_divider" | "ui_debug_section/end_of_ui_feature_toggles_label_divider/section_divider" | "ui_debug_section/end_of_ui_feature_toggles_label_divider_spacer" | "ui_debug_section/end_of_ui_feature_toggles_label_spacer" | "ui_debug_section/screen_override_label" | "ui_debug_section/screen_override_info_label" | "ui_debug_section/screen_override_label_spacer" | "ui_debug_section/new_edu_create_world_screen_radio_label" | "ui_debug_section/new_edu_create_world_screen_radio_label_spacer" | "ui_debug_section/new_edu_create_world_screen_radio_button" | "ui_debug_section/new_edu_create_world_screen_radio_button_spacer" | "ui_debug_section/new_play_screen_radio_label" | "ui_debug_section/new_play_screen_radio_label_spacer" | "ui_debug_section/new_play_screen_radio_button" | "ui_debug_section/new_play_screen_radio_button_spacer" | "ui_debug_section/new_edit_world_screen_radio_label" | "ui_debug_section/new_edit_world_screen_radio_label_spacer" | "ui_debug_section/new_edit_world_screen_radio_button" | "ui_debug_section/new_edit_world_screen_radio_button_spacer" | "ui_debug_section/new_send_invites_radio_label" | "ui_debug_section/new_send_invites_screen_radio_label_spacer" | "ui_debug_section/new_send_invites_screen_radio_button" | "ui_debug_section/new_send_invites_screen_radio_button_spacer" | "ui_debug_section/new_death_screen_radio_label" | "ui_debug_section/new_death_screen_radio_label_spacer" | "ui_debug_section/new_death_screen_radio_button" | "ui_debug_section/new_death_screen_radio_button_spacer" | "ui_debug_section/new_bed_screen_radio_label" | "ui_debug_section/new_bed_screen_radio_label_spacer" | "ui_debug_section/new_bed_screen_radio_button" | "ui_debug_section/new_bed_screen_radio_button_spacer" | "ui_debug_section/ore_ui_gameplay_ui_radio_label" | "ui_debug_section/ore_ui_gameplay_ui_radio_label_spacer" | "ui_debug_section/ore_ui_gameplay_ui_radio_button" | "ui_debug_section/ore_ui_gameplay_ui_radio_button_spacer" | "ui_debug_section/end_of_ui_screen_override_divider" | "ui_debug_section/end_of_ui_screen_override_divider/section_divider" | "ui_debug_section/end_of_ui_sceen_override_divider_spacer" | "ui_debug_section/new_settings_screen_radio_label" | "ui_debug_section/new_settings_screen_radio_label_spacer" | "ui_debug_section/new_settings_screen_radio_button" | "ui_debug_section/new_settings_screen_radio_button_spacer" | "ui_debug_section/screen_opt_in_options_label" | "ui_debug_section/screen_opt_in_info_label" | "ui_debug_section/screen_opt_in_options_label_spacer" | "ui_debug_section/end_of_ui_screen_opt_in_divider" | "ui_debug_section/end_of_ui_screen_opt_in_divider/section_divider" | "ui_debug_section/end_of_ui_sceen_opt_in_divider_spacer" | "ui_debug_section/other_ui_options_label" | "ui_debug_section/other_ui_options_label_spacer" | "ui_debug_section/option_toggle_default_font_override" | "ui_debug_section/option_toggle_dev_show_tcui_replacement" | "ui_debug_section/option_toggle_use_mobile_data_blocked_modal" | "ui_debug_section/ui_feature_toggles_spacer" | "ui_debug_section/option_show_touch_control_selection_screen" | "ui_debug_section/option_reset_on_start" | "ui_debug_section/option_slider_drag_dwell" | "ui_debug_section/option_slider_stack_splitting" | "ui_debug_section/reset_render_distance_warning_modal_label" | "ui_debug_section/reset_render_distance_warning_modal_label_spacer" | "ui_debug_section/reset_render_distance_warning_modal" | "ui_debug_section/reset_render_distance_warning_modal_spacer" | "ui_debug_section/ore_ui_developer_pages_divider" | "ui_debug_section/ore_ui_developer_pages_divider/section_divider" | "ui_debug_section/ore_ui_developer_pages_spacer" | "ui_debug_section/open_ore_ui_label" | "ui_debug_section/open_ore_ui_info_label" | "ui_debug_section/open_ore_ui_label_spacer" | "ui_debug_section/open_ore_ui_docs" | "ui_debug_section/open_ore_ui_tests" | "ui_debug_section/open_ore_ui_perf" | "ui_debug_section/open_ore_ui_test_modal" | "ui_debug_section/open_ore_ui_tests_spacer" | "edu_debug_section" | "edu_debug_section/edu_feature_toggles_label" | "edu_debug_section/edu_feature_toggles_label_spacer" | "edu_debug_section/edu_demo" | "edu_debug_section/edu_ad_debug_panel" | "edu_debug_section/edu_ad_token_refresh_threshold" | "edu_debug_section/edu_ad_max_signin_token_refresh" | "edu_debug_section/edu_ad_max_graph_token_refresh" | "edu_debug_section/edu_environment_divider" | "edu_debug_section/edu_environment_divider/section_divider" | "edu_debug_section/edu_environment_spacer" | "edu_debug_section/edu_env_dropdown" | "flighting_debug_button" | "flighting_debug_section" | "flighting_debug_section/treatment_override_panel" | "flighting_debug_section/treatment_override_panel/option_toggle_treatment_override" | "flighting_debug_section/treatment_override_panel/override_treatments_panel" | "flighting_debug_section/configuration_override_panel" | "flighting_debug_section/configuration_override_panel/option_toggle_configuration_override" | "flighting_debug_section/configuration_override_panel/override_configurations_panel" | "how_to_play_button" | "how_to_play_section" | "how_to_play_section/spacer_0" | "how_to_play_section/generic_label" | "how_to_play_section/spacer_1" | "how_to_play_section/gamepad_helper_label" | "dev_xbox_environment_dropdown_content" | "dev_discovery_environment_dropdown_content" | "dev_service_override_type_dropdown_content" | "dev_realms_environment_dropdown_content" | "dev_realms_sku_dropdown_content" | "default_profiling_group_dropdown_content" | "dev_nethernet_logging_verbosity_dropdown_content" | "dev_http_logging_verbosity_dropdown_content" | "dev_xsapi_logging_verbosity_dropdown_content" | "dev_debug_speed_multiplier_options" | "dev_debug_hud_dropdown_content" | "dev_chunkMapMode_content" | "dev_quality_dropdown_content" | "vysnc_dropdown_content" | "deferred_platform_override_dropdown_content" | "dev_education_environment_dropdown_content" | "dev_sunsetting_tier_dropdown_content" | "graphics_api_dropdown_content" | "graphics_mode_dropdown_content" | "upscaling_mode_dropdown_content" | "advanced_graphics_options_button_content" | "advanced_graphics_options_button_content/advanced_graphics_options_label" | "advanced_graphics_options_button_content/fill_pad" | "advanced_graphics_options_button_content/plus_panel" | "advanced_graphics_options_button_content/plus_panel/plus" | "advanced_graphics_options_button_content/minus_panel" | "advanced_graphics_options_button_content/minus_panel/minus" | "advanced_graphics_options_section" | "advanced_graphics_options_section/spacer_0" | "advanced_graphics_options_section/gamma_calibration" | "advanced_graphics_options_section/spacer_1" | "advanced_graphics_options_section/max_framerate_slider" | "advanced_graphics_options_section/spacer_2" | "advanced_graphics_options_section/msaa_slider" | "advanced_graphics_options_section/spacer_3" | "advanced_graphics_options_section/shadow_quality_slider" | "advanced_graphics_options_section/spacer_4" | "advanced_graphics_options_section/point_light_shadow_quality_slider" | "advanced_graphics_options_section/spacer_5" | "advanced_graphics_options_section/point_light_loding_quality_slider" | "advanced_graphics_options_section/spacer_6" | "advanced_graphics_options_section/cloud_quality_slider" | "advanced_graphics_options_section/spacer_7" | "advanced_graphics_options_section/volumetric_fog_quality_slider" | "advanced_graphics_options_section/spacer_8" | "advanced_graphics_options_section/reflections_quality_slider" | "advanced_graphics_options_section/spacer_9" | "advanced_graphics_options_section/bloom_strength" | "advanced_graphics_options_section/spacer_10" | "advanced_graphics_options_section/upscaling_toggle" | "advanced_graphics_options_section/spacer_11" | "advanced_graphics_options_section/upscaling_mode" | "advanced_graphics_options_section/spacer_12" | "advanced_graphics_options_section/upscaling_percentage" | "advanced_graphics_options_section/fancy_clouds_toggle" | "advanced_graphics_options_section/spacer_13" | "advanced_graphics_options_section/smooth_lighting_toggle"; +export type RealmsWorldSection = "realm_name_edit" | "world_name_edit" | "realm_description_edit" | "download_world_button" | "upload_world_button" | "reset_world_button" | "manage_feed_button" | "club_info_label" | "difficulty_dropdown" | "game_mode_dropdown" | "panel_content" | "panel_content/new_edit_world_opt_in_panel" | "panel_content/new_edit_world_opt_in_panel/panel_title" | "panel_content/new_edit_world_opt_in_panel/panel_text" | "panel_content/new_edit_world_opt_in_panel/opt_in_button" | "panel_content/new_edit_world_opt_in_divider" | "panel_content/new_edit_world_opt_in_divider/section_divider" | "panel_content/option_info_label" | "panel_content/hardcore_info_label" | "panel_content/realm_name_edit" | "panel_content/world_name_edit" | "panel_content/realm_description_edit" | "panel_content/difficulty_dropdown" | "panel_content/game_mode_dropdown" | "panel_content/is_hardcore_toggle" | "panel_content/world_options_label" | "panel_content/pvp_toggle" | "panel_content/show_coordinates_toggle" | "panel_content/locator_bar_toggle" | "panel_content/show_days_played_toggle" | "panel_content/fire_spreads_toggle" | "panel_content/recipes_unlock_toggle" | "panel_content/tnt_explodes_toggle" | "panel_content/respawn_blocks_explode_toggle" | "panel_content/mob_loot_toggle" | "panel_content/natural_regeneration_toggle" | "panel_content/tile_drops_toggle" | "panel_content/player_sleep_toggle" | "panel_content/player_sleep_percentage_slider" | "panel_content/immediate_respawn_toggle" | "panel_content/respawn_radius" | "panel_content/world_cheats_label" | "panel_content/allow_cheats_toggle" | "panel_content/daylight_cycle_toggle" | "panel_content/keep_inventory_toggle" | "panel_content/mob_spawn_toggle" | "panel_content/mob_griefing_toggle" | "panel_content/entities_drop_loot_toggle" | "panel_content/weather_cycle_toggle" | "panel_content/command_blocks_enabled_toggle" | "panel_content/random_tick_speed" | "panel_content/download_world_button" | "panel_content/padding_0" | "panel_content/upload_world_button" | "panel_content/padding_1" | "panel_content/reset_world_button" | "panel_content/padding_2" | "panel_content/club_info_label" | "panel_content/manage_feed_button"; +export type SettingsCommon = "arrow_image" | "subsection_title" | "subsection_title/spacer_0" | "subsection_title/sizer_0" | "subsection_title/sizer_0/title" | "subsection_title/spacer_1" | "subsection_title/sizer_1" | "subsection_title/sizer_1/section_divider" | "action_button" | "action_button_dark_text" | "link_button" | "option_group_label" | "option_group_label/text" | "option_group_header" | "option_group_header/text" | "option_group_spaced_label" | "option_group_spaced_label/text" | "option_group_spaced_header" | "option_group_spaced_header/text" | "option_group_section_divider" | "option_group_section_divider/background" | "option_generic" | "option_generic/option_generic_core" | "white_label" | "option_generic_core" | "option_generic_core/two_line_layout" | "option_generic_core/two_line_layout/option_label_panel" | "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01" | "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01/option_label" | "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02" | "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02/option_label" | "option_generic_core/two_line_layout/option_label_panel/option_tooltip" | "option_generic_core/two_line_layout/spacer" | "option_generic_core/two_line_layout/option_descriptive_text_0" | "option_generic_core/two_line_layout/spacer2" | "option_generic_core/one_line_layout" | "option_generic_core/one_line_layout/option_label_subpanel_01" | "option_generic_core/one_line_layout/option_label_subpanel_01/option_label" | "option_generic_core/one_line_layout/option_label_subpanel_02" | "option_generic_core/one_line_layout/option_label_subpanel_02/option_label" | "option_generic_core/one_line_layout/option_descriptive_text" | "option_generic_core/one_line_layout/option_tooltip" | "option_generic_core/spacer" | "option_generic_core_label" | "option_generic_tooltip_image" | "option_generic_tooltip_top_popup" | "option_generic_tooltip_bottom_popup" | "option_generic_tooltip" | "option_generic_tooltip/focus_detection_input_panel_two_line_layout" | "option_generic_tooltip/hover_detection_input_panel" | "option_generic_tooltip/hover_detection_input_panel/option_generic_tooltip_image" | "option_generic_tooltip/option_generic_tooltip_top_popup" | "option_generic_tooltip/option_generic_tooltip_bottom_popup" | "option_text_edit_control" | "option_text_edit_control_with_button" | "option_text_edit_control_with_button/text_box" | "option_text_edit_control_with_button/button" | "option_text_edit_control_with_text_button" | "option_text_edit_control_with_text_button/text_box" | "option_text_edit_control_with_text_button/button" | "option_toggle_state_template" | "option_toggle_on" | "option_toggle_off" | "option_toggle_on_hover" | "option_toggle_off_hover" | "option_toggle_on_locked" | "option_toggle_off_locked" | "option_toggle_control" | "checkbox_visuals_unchecked" | "checkbox_visuals_checked" | "checkbox_visuals_unchecked_locked" | "checkbox_visuals_checked_locked" | "checkbox_visuals_unchecked_hover" | "checkbox_visuals_checked_hover" | "checkbox_visuals" | "checkbox_visuals/checkbox_image" | "checkbox_visuals/checkbox_label" | "checkbox_visuals/accessibility_selection_highlight" | "checkbox_with_highlight_and_label" | "radio_visuals_unchecked" | "radio_visuals_checked" | "radio_visuals_unchecked_locked" | "radio_visuals_checked_locked" | "radio_visuals_unchecked_hover" | "radio_visuals_checked_hover" | "radio_visuals" | "radio_visuals/radio_image" | "radio_visuals/radio_label" | "radio_visuals/accessibility_selection_highlight" | "radio_with_label_core" | "option_radio_group_control" | "option_radio_group_control/0" | "radio_with_label" | "radio_with_label/radio_with_label_core" | "radio_with_label_and_icon" | "radio_with_label_and_icon/radio_with_label_core" | "radio_with_label_and_icon/radio_with_label_icon" | "radio_with_label_and_content_unchecked" | "radio_with_label_and_content_checked" | "radio_with_label_and_content_unchecked_locked" | "radio_with_label_and_content_checked_locked" | "radio_with_label_and_content_unchecked_hover" | "radio_with_label_and_content_checked_hover" | "radio_with_label_and_content_stack_item" | "radio_with_label_and_content" | "radio_with_label_and_content/radio_background" | "radio_with_label_and_content/radio_item_with_description_stack" | "radio_with_label_and_content/radio_item_with_description_stack/radio_icon_and_label" | "radio_with_label_and_content/radio_item_with_description_stack/radio_description" | "radio_item_with_label_and_content_stack" | "radio_item_with_label_and_content_stack/initial_padding" | "radio_item_with_label_and_content_stack/radio_image_panel" | "radio_item_with_label_and_content_stack/radio_image_panel/image" | "radio_item_with_label_and_content_stack/radio_to_content_padding" | "radio_item_with_label_and_content_stack/radio_content_panel" | "radio_item_with_label_and_content_stack/radio_content_panel/radio_image" | "radio_item_with_label_and_content_stack/content_to_label_padding" | "radio_item_with_label_and_content_stack/radio_label_panel" | "radio_item_with_label_and_content_stack/radio_label_panel/radio_label" | "radio_description_panel" | "radio_description_panel/description" | "radio_description" | "radio_item_with_label_and_content" | "radio_item_with_label_and_content/radio_with_label_core" | "option_slider_control" | "option_slider_control/slider" | "default_options_dropdown_toggle_button_state_content" | "default_options_dropdown_toggle_button_state_content/left_padding" | "default_options_dropdown_toggle_button_state_content/option_content" | "default_options_dropdown_toggle_button_state_content/option_content_padding" | "default_options_dropdown_toggle_button_state_content/label_panel" | "default_options_dropdown_toggle_button_state_content/label_panel/label" | "default_options_dropdown_toggle_button_state_content/arrow_panel" | "default_options_dropdown_toggle_button_state_content/arrow_panel/dropdown_chevron_image" | "default_options_dropdown_toggle_button_state_content/right_padding" | "options_dropdown_toggle_control" | "options_dropdown_dark_toggle_control" | "option_dropdown_control" | "option_dropdown_control/dropdown" | "option_dropdown_control_no_scroll" | "option_info_label_with_icon" | "option_info_label_with_icon/control" | "option_info_label_with_icon/icon_panel" | "option_info_label_with_icon/icon_panel/icon_image" | "option_info_label_with_icon/icon_panel/padding2" | "option_info_label_icon" | "option_icon_label" | "option_info_label_with_bulb" | "option_info_label_with_bulb/stack_panel" | "option_info_label_with_bulb/stack_panel/padding1" | "option_info_label_with_bulb/stack_panel/bulb_panel" | "option_info_label_with_bulb/stack_panel/bulb_panel/padding1" | "option_info_label_with_bulb/stack_panel/bulb_panel/bulb_image" | "option_info_label_with_bulb/stack_panel/bulb_panel/padding2" | "option_info_label_with_bulb/stack_panel/padding2" | "option_info_label_with_bulb/stack_panel/label_panel" | "option_info_label_with_bulb/stack_panel/label_panel/info_label1" | "option_info_label_with_bulb/stack_panel/label_panel/padding2" | "option_info_label_with_bulb/stack_panel/label_panel/info_label2" | "option_info_label_with_bulb/stack_panel/padding3" | "option_info_label_with_image" | "option_info_label_with_image/control" | "option_info_label_image" | "option_toggle" | "option_radio_group" | "option_radio_dropdown_group" | "option_radio_dropdown_group/radio_control_group" | "option_text_edit" | "option_text_edit_with_button" | "option_text_edit_with_text_button" | "option_slider" | "option_dropdown" | "option_dropdown_no_scroll" | "option_custom_control" | "option_info_label" | "dynamic_dialog_screen" | "settings_content" | "settings_content/background" | "settings_content/stack_panel" | "settings_content/stack_panel/content_panel" | "settings_content/stack_panel/content_panel/common_panel" | "settings_content/stack_panel/content_panel/container" | "settings_content/popup_dialog_factory" | "toggle_button_control" | "toggle_button_control/glyph" | "toggle_button_control/glyph_color" | "toggle_button_control/progress_loading_bars" | "toggle_button_control/tab_button_text" | "section_toggle_base" | "section_title_label" | "dialog_title_label" | "dialog_titles" | "dialog_titles/left_padding" | "dialog_titles/dialog_title_label" | "dialog_titles/center_padding" | "dialog_titles/section_title_label" | "dialog_titles/right_padding_is_always_right" | "dialog_content" | "dialog_content/dialog_titles" | "dialog_content/selector_area" | "dialog_content/content_area" | "dialog_content/section_divider" | "selector_group_label" | "scrollable_selector_area_content" | "selector_area" | "selector_area/scrolling_panel" | "content_area" | "content_area/control" | "content_area/control/header_panel" | "content_area/control/header_panel/content" | "content_area/control/scrolling_panel" | "content_area/control/footer_panel" | "content_area/control/footer_panel/content" | "section_divider" | "screen_base"; +export type WorldSection = "selector_pane_content" | "selector_pane_content/world_snapshot_image" | "selector_pane_content/world_snapshot_image/thumbnail" | "selector_pane_content/world_snapshot_image/thumbnail/border" | "selector_pane_content/play_or_create_panel" | "selector_pane_content/play_or_host_panel" | "selector_pane_content/spacer" | "selector_pane_content/server_settings_visibility_panel" | "selector_pane_content/server_settings_visibility_panel/selector_group_label_0" | "selector_pane_content/server_settings_visibility_panel/server_settings_button" | "selector_pane_content/server_settings_visibility_panel/server_spacer" | "selector_pane_content/selector_group_label_1" | "selector_pane_content/game_button" | "selector_pane_content/spacer_01" | "selector_pane_content/classroom_button" | "selector_pane_content/spacer_02" | "selector_pane_content/switch_game_button" | "selector_pane_content/spacer_03" | "selector_pane_content/multiplayer_button" | "selector_pane_content/spacer_04" | "selector_pane_content/edu_cloud_button" | "selector_pane_content/spacer_05" | "selector_pane_content/debug_button" | "launch_world_button_stack_def" | "play_or_create_stack_bedrock" | "play_or_create_stack_bedrock/create_or_play_button" | "play_or_create_stack_bedrock/play_on_realm_button" | "edu_play_host_button" | "play_or_host_stack_edu" | "play_or_host_stack_edu/edu_play_button" | "play_or_host_stack_edu/edu_host_button" | "addons_selector_panel" | "addons_selector_panel/spacer_01" | "addons_selector_panel/selector_group_label_2" | "addons_selector_panel/level_texture_pack_button" | "addons_selector_panel/spacer_02" | "addons_selector_panel/addon_button" | "server_settings_button" | "server_section" | "game_button" | "export_world_button" | "delete_world_button" | "export_template_button" | "copy_world_button" | "edit_world_manipulation_buttons" | "edit_world_manipulation_buttons/export" | "edit_world_manipulation_buttons/padding" | "edit_world_manipulation_buttons/delete" | "game_section" | "game_section/new_edit_world_opt_in_panel" | "game_section/new_edit_world_opt_in_panel/panel_title" | "game_section/new_edit_world_opt_in_panel/panel_text" | "game_section/new_edit_world_opt_in_panel/opt_in_button" | "game_section/new_edit_world_opt_in_divider" | "game_section/new_edit_world_opt_in_divider/section_divider" | "game_section/unlock_template_options_panel" | "game_section/unlock_template_options_panel/option_info_label" | "game_section/unlock_template_options_panel/unlock_template_options_button" | "game_section/option_info_label" | "game_section/hardcore_info_label" | "game_section/world_settings_label" | "game_section/option_text_edit_0" | "game_section/project_section_divider_1" | "game_section/project_header_label" | "game_section/project_section_divider_2" | "game_section/project_spacer" | "game_section/option_text_edit_1" | "game_section/export_settings_section_divider_1" | "game_section/export_settings_header_label" | "game_section/export_settings_header_description" | "game_section/export_settings_section_divider_2" | "game_section/export_settings_spacer" | "game_section/option_dropdown_0" | "game_section/option_dropdown_1" | "game_section/is_hardcore_toggle" | "game_section/option_dropdown_2" | "game_section/world_preferences_label" | "game_section/starting_map_toggle" | "game_section/bonus_chest_toggle" | "game_section/option_dropdown_permissions" | "game_section/option_dropdown_3" | "game_section/level_seed_selector_edu" | "game_section/level_seed_selector" | "game_section/level_seed_selector_trial" | "game_section/server_sim_distance_slider" | "game_section/world_options_label" | "game_section/pvp_toggle" | "game_section/show_coordinates_toggle" | "game_section/locator_bar_toggle" | "game_section/show_days_played_toggle" | "game_section/fire_spreads_toggle" | "game_section/recipes_unlock_toggle" | "game_section/tnt_explodes_toggle" | "game_section/respawn_blocks_explode_toggle" | "game_section/mob_loot_toggle" | "game_section/natural_regeneration_toggle" | "game_section/tile_drops_toggle" | "game_section/player_sleep_toggle" | "game_section/player_sleep_percentage_slider" | "game_section/immediate_respawn_toggle" | "game_section/respawn_radius" | "game_section/experimental_toggles_label" | "game_section/experimental_toggles_label_info" | "game_section/experimental_toggles" | "game_section/world_cheats_label" | "game_section/allow_cheats_toggle" | "game_section/education_toggle" | "game_section/always_day_toggle" | "game_section/daylight_cycle_toggle" | "game_section/keep_inventory_toggle" | "game_section/mob_spawn_toggle" | "game_section/mob_griefing_toggle" | "game_section/entities_drop_loot_toggle" | "game_section/weather_cycle_toggle" | "game_section/command_blocks_enabled_toggle" | "game_section/random_tick_speed" | "game_section/world_management_label" | "game_section/convert_to_infinite_panel" | "game_section/convert_to_infinite_panel/convert_to_infinite_button" | "game_section/delete_button" | "game_section/button_panel" | "game_section/button_panel/manipulation_controls" | "game_section/export_template_panel" | "game_section/export_template_panel/padding" | "game_section/export_template_panel/template_version" | "game_section/export_template_panel/template_buttons" | "game_section/export_template_panel/template_buttons/template_image_picker_button" | "game_section/export_template_panel/template_buttons/padding" | "game_section/export_template_panel/template_buttons/template_localization_picker_button" | "game_section/export_template_panel/export_template" | "game_section/clear_player_data_panel" | "game_section/clear_player_data_panel/padding" | "game_section/clear_player_data_panel/clear_player_data_button" | "game_section/copy_world_panel" | "game_section/copy_world_panel/copy_world" | "game_section/upload_download_slot_panel" | "game_section/upload_download_slot_panel/upload_download_slot_button" | "game_section/replace_slot_panel" | "game_section/replace_slot_panel/replace_slot_button" | "level_texture_pack_button" | "level_texture_pack_section" | "addon_button" | "addon_section" | "world_game_mode_dropdown_content" | "xbl_broadcast_dropdown_content" | "platform_broadcast_dropdown_content" | "player_game_mode_dropdown_content" | "world_type_dropdown_content" | "world_difficulty_dropdown_content" | "multiplayer_button" | "cross_platform_warning_label" | "multiplayer_section" | "multiplayer_section/multiplayer_game_toggle" | "multiplayer_section/platform_settings_dropdown" | "multiplayer_section/xbl_settings_dropdown" | "multiplayer_section/server_visible_toggle" | "multiplayer_section/general_multiplayer_warning_label" | "multiplayer_section/open_uri_button" | "multiplayer_section/platform_multiplayer_warning_label" | "multiplayer_section/xbl_multiplayer_warning_label" | "option_text_edit_mock_with_button" | "option_text_edit_mock_control_with_button" | "option_text_edit_mock_control_with_button/trial_text_box_button" | "option_text_edit_mock_control_with_button/seed_arrow_button" | "experimental_toggle" | "open_account_setting_button" | "edu_cloud_button" | "edu_cloud_section" | "edu_cloud_section/edu_cloud_label" | "edu_cloud_section/cloud_file_name" | "edu_cloud_section/cloud_file_last_changed" | "edu_cloud_section/cloud_upload_toggle" | "edu_cloud_section/cloud_help_wrapper_panel" | "edu_cloud_section/cloud_help_wrapper_panel/cloud_help_button" | "edu_cloud_section/cloud_help_wrapper_panel/padded_icon" | "edu_cloud_section/cloud_help_wrapper_panel/padded_icon/icon" | "debug_button" | "debug_section" | "debug_section/flat_nether_toggle" | "debug_section/game_version_override_toggle" | "debug_section/game_version_override_textbox" | "debug_section/spawn_dimension_dropdown" | "debug_section/spawn_biome_dropdown" | "debug_section/biome_override_dropdown" | "debug_section/base_game_version_debug_text" | "debug_spawn_dimension_dropdown_content" | "debug_spawn_biome_dropdown_content" | "debug_biome_override_dropdown_content" | "editor_edit_world_manipulation_buttons_content" | "editor_edit_world_manipulation_buttons_content/export_as_project" | "editor_edit_world_manipulation_buttons_content/padding" | "editor_edit_world_manipulation_buttons_content/export_as_world_buttons" | "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_world" | "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/padding" | "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_template" | "editor_edit_world_manipulation_buttons_content/padding_2" | "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons" | "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/copy_project" | "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/padding" | "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/delete_project" | "editor_edit_world_manipulation_buttons"; +export type SocialSection = "party_button" | "party_section" | "party_section/party_invite_filter_dropdown" | "party_section/party_invite_reset_default_padding" | "party_section/party_invite_send_privileges_dropdown" | "party_section/party_privacy_default_padding" | "party_section/party_privacy_dropdown" | "party_section/party_privacy_label_wrapper" | "party_section/party_settings_reset_default_button_default_padding" | "party_section/party_settings_reset_default_button" | "party_section/microsoft_account_settings_divider" | "party_section/microsoft_account_settings_divider/section_divider" | "party_section/microsoft_account_settings_header" | "party_section/microsoft_account_settings_padding" | "party_section/microsoft_account_settings_label_wrapper" | "party_section/privacy_and_online_safety_button_padding" | "party_section/privacy_and_online_safety_button" | "party_section/microsoft_account_settings_ending_padding" | "party_privacy_label" | "microsoft_account_settings_label" | "platform_settings_label" | "party_invite_filter_dropdown_content" | "party_privacy_dropdown_content" | "party_invite_send_privileges_dropdown_content"; +export type SidebarNavigation = "empty_panel" | "empty_fill_x_panel" | "empty_default_panel" | "vertical_padding_panel" | "sidebar_bg" | "sidebar_divider" | "sidebar_divider_panel" | "sidebar_divider_panel/sidebar_divider" | "toggle_content" | "toggle_content/toggle_content" | "sidebar_section_scroll_panel" | "sidebar_bg_content_panel" | "sidebar_bg_content_panel/sidebar_bg_content" | "sidebar_nav_toggle_image" | "sidebar_nav_toggle_image_panel" | "sidebar_nav_toggle_image_panel/sidebar_nav_toggle_image" | "sidebar_nav_toggle_image_panel/gamepad_helper_icon" | "gamepad_helper_icon_start_toggle" | "verbose_view_toggle_content" | "verbose_view_toggle_content/left_padding" | "verbose_view_toggle_content/sidebar_nav_toggle_image" | "sidebar_toggle_bg" | "sidebar_toggle" | "sidebar_option_toggle" | "simple_sidebar_toggle" | "verbose_toggle" | "verbose_sidebar_option" | "verbose_expand_option" | "verbose_dropdown_option" | "verbose_dropdown_expanded_option" | "verbose_sidebar_expand_section_bg" | "verbose_sidebar_expand_section_panel" | "verbose_expand_section_panel" | "verbose_view_toggle" | "sidebar_option_factory" | "sidebar_option_factory_panel" | "sidebar_option_factory_panel/sidebar_option_factory" | "verbose_button_content" | "verbose_button_content/button_label" | "verbose_button" | "verbose_nav_button_panel" | "verbose_nav_button_panel/verbose_nav_button" | "verbose_screen_nav_button" | "verbose_screen_nav_option_panel" | "verbose_screen_nav_option_panel/verbose_nav_button" | "sidebar_option_factory_scroll_panel" | "sidebar_screen_nav_option_factory_panel" | "sidebar_screen_nav_option_factory_panel/fill_panel" | "sidebar_screen_nav_option_factory_panel/button" | "sidebar_screen_nav_option_factory_panel/padding" | "sidebar_screen_nav_option_factory_panel/platform_icon_padding" | "root_section_content_panel" | "root_section_content_panel/sidebar_option_factory" | "root_section_content_panel/verbose_sidebar_screen_Nav" | "edge_bar" | "verbose_view_stack_panel" | "verbose_view_stack_panel/verbose_view_toggle" | "sidebar_section" | "sidebar_section/left_edge_bar" | "sidebar_section/verbose_view_stack_panel" | "sidebar_section/right_edge_bar" | "root_section" | "verbose_root_section" | "simple_root_section" | "simple_root_section/verbose_view_toggle" | "simple_root_section/root_section" | "sidebar_section_factory_panel" | "sidebar_section_factory_panel/sidebar_section_factory" | "sidebar_view_content_panel" | "sidebar_view_content_panel/view_stack_panel" | "sidebar_view_content_panel/view_stack_panel/sidebar_view" | "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel" | "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button" | "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/default" | "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/hover" | "sidebar_view_content_panel/verbose_view_exit" | "verbose_sidebar_view_modal" | "sidebar_views" | "sidebar_views/sidebar_view_conent" | "sidebar_views/sidebar_view_conent/simple_sidebar_view" | "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal" | "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal/verbose_sidebar_view" | "sidebar_empty_panel" | "content_view" | "content_view/content_view_stack" | "content_view/content_view_stack/sidebar_view_stack" | "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel" | "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel" | "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button" | "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/default" | "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/hover" | "content_view/content_view_stack/sidebar_view_stack/divider" | "content_view/content_view_stack/main_view_content" | "content_view/content_view_stack/main_view_content/screen_content" | "sidebar_view" | "sidebar_view/sidebar_content" | "sidebar_view/content_view" | "sidebar_view/progress_loading" | "platform_store_icon_spacing"; +export type Sign = "sign_background" | "hanging_sign_background" | "base_sign_text_multiline" | "regular_sign_text_multiline" | "hanging_sign_text_multiline" | "sign_screen_content" | "sign_screen_content/input_eating_panel" | "sign_screen_content/input_eating_panel/text_edit" | "sign_screen_content/invisible_exit_background" | "sign_screen"; +export type SimpleInprogress = "title_text" | "main_panel" | "main_panel/common_panel" | "main_panel/title" | "main_panel/main_content" | "main_panel/progress_loading_bars" | "simple_inprogress_screen" | "simple_inprogress_screen_content" | "simple_inprogress_screen_content/root_panel" | "simple_inprogress_screen_content/root_panel/main_panel"; +export type SkinPackPurchase = "cycle_pack_left_button" | "cycle_pack_right_button" | "skin_model" | "skin_model/paper_doll" | "skin_lock" | "skin_focus_border" | "skin_focus_border/equip" | "skin_button_panel_gamepad" | "skin_button_panel_gamepad/skin_button" | "skin_button_panel_gamepad/skin_button/hover" | "skin_button_panel_gamepad/skin_button/pressed" | "skin_button_panel_not_gamepad" | "skin_button_panel_not_gamepad/skin_button" | "skin_button_panel_not_gamepad/skin_button/hover" | "skin_button_panel_not_gamepad/skin_button/pressed" | "skin_button_panel_not_gamepad/equip_button" | "skin_button_panel" | "skin_button_panel/gamepad" | "skin_button_panel/not_gamepad" | "equip_button_state_panel" | "equip_button_state_panel/button_panel" | "equip_button_text" | "equip_button_text/text" | "skins_grid_item" | "skins_grid_item/model" | "skins_grid_item/lock" | "skins_grid_item/button" | "skins_grid" | "skins_panel" | "skins_panel/bg" | "skins_panel/bg/left" | "skins_panel/bg/sg" | "skins_panel/bg/right" | "skins_panel/bg/progress_loading_panel" | "skins_panel/bg/progress_loading_panel/progress_loading" | "skins_panel/bg/progress_loading_panel/progress_loading_outline" | "skins_panel/bg/progress_loading_panel/progress_loading_outline/hover" | "screen_root" | "skin_pack_purchase_upsell_screen" | "skin_pack_purchase_upsell_screen_content" | "skin_pack_purchase_upsell_dialog_content" | "skin_pack_purchase_upsell_dialog_content/container" | "skin_pack_purchase_standard" | "skin_pack_purchase_standard_content" | "skin_pack_purchase_dialog_content" | "skin_pack_purchase_dialog_content/container"; +export type SkinPicker = "banner_fill" | "title_label" | "label" | "chevron_image" | "bumper_image" | "undo_image" | "plus_icon" | "direction_button_panel" | "direction_button_panel/chevron_image" | "direction_button_panel/bumper_image" | "cycle_pack_button" | "cycle_pack_left_button" | "cycle_pack_right_button" | "skin_button" | "skin_button/hover" | "skin_button/pressed" | "skin_rotation_arrows" | "skin_viewer_panel" | "skin_viewer_panel/custom_skin_button" | "skin_viewer_panel/skin_model_panel" | "skin_viewer_panel/skin_model_panel/skin_model" | "skin_viewer_panel/lock" | "undo_skin_button" | "accept_skin_button" | "stack_item" | "accept_skin_panel" | "accept_skin_panel/stack_item_0" | "accept_skin_panel/stack_item_0/undo_btn" | "accept_skin_panel/stack_item_1" | "accept_skin_panel/stack_item_1/accept_button" | "appearance_status_image_panel" | "appearance_status_image_panel/limited_status_image" | "appearance_status_image_panel/no_restrictions_status_image" | "appearance_status_content" | "appearance_status_content/appearance_status_image_panel" | "appearance_status_content/padding" | "appearance_status_content/appearance_status_label_panel" | "appearance_status_content/appearance_status_label_panel/appearance_status_label" | "preview_skin_panel" | "preview_skin_panel/preview" | "preview_skin_panel/button_frame" | "preview_skin_panel/button_frame/stack_item_0" | "preview_skin_panel/button_frame/stack_item_0/rotation" | "preview_skin_panel/button_frame/padding" | "preview_skin_panel/button_frame/notification_and_accept_input_panel" | "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack" | "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/skin_status_notification_section" | "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/skin_status_notification_section/appearance_status_notification_panel" | "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1" | "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1/accept" | "skin_model" | "premium_skin_button" | "skin_lock" | "new_pack_icon" | "new_pack_icon/icon" | "pack_lock" | "pack_lock/locked" | "pack_lock/unlocked" | "skin_input_panel" | "skin_input_panel/sg" | "skins_grid_item" | "skins_grid_item/clip" | "skins_grid_item/clip/model" | "skins_grid_item/lock" | "skins_grid_item/button" | "skins_grid" | "pack_name" | "pack_grid_item" | "pack_grid_item/header" | "pack_grid_item/header/padding" | "pack_grid_item/header/pack_lock" | "pack_grid_item/header/pack_name" | "pack_grid_item/header/padding_2" | "pack_grid_item/header/new_pack_icon" | "pack_grid_item/header/padding_3" | "pack_grid_item/bg" | "pack_grid_item/bg/skin_input_panel" | "pack_grid_item/bg/expand_view_button" | "pack_grid_item/bg/progress_loading_no_connection" | "pack_grid_item/bg/progress_loading" | "premium_packs_grid" | "standard_skin_button" | "default_skins_grid_item" | "default_skins_grid_item/model" | "default_skins_grid_item/button" | "default_skins_grid" | "recent_skins_grid_item" | "recent_skins_grid_item/clip" | "recent_skins_grid_item/clip/model" | "recent_skins_grid_item/button" | "recent_skins_grid" | "standard_frame" | "standard_header" | "standard_fill" | "standard_panel" | "standard_panel/default_skins" | "standard_panel/default_skins/header" | "standard_panel/default_skins/fill" | "standard_panel/default_skins/fill/default_skins_grid" | "standard_panel/recent_skins" | "standard_panel/recent_skins/header" | "standard_panel/recent_skins/fill" | "standard_panel/recent_skins/fill/recent_skins_grid" | "standard_panel/recent_skins/fill/recent_skins_loading_panel" | "scrolling_content_stack" | "scrolling_content_stack/standard_panel" | "scrolling_content_stack/premium_packs_grid" | "all_skins_content" | "all_skins_content/scrolling_frame" | "all_skins_content/scrolling_frame/change_skin_scroll" | "all_skins_content/scrolling_frame/progress_loading" | "all_skins_frame" | "all_skins_frame/all_skins_content" | "title_bar" | "title_bar/padding_0" | "title_bar/fill_panel" | "title_bar/fill_panel/title_holder" | "title_bar/fill_panel/title_holder/change_skin_title" | "title_bar/padding_1" | "title_bar/skin_name_holder" | "title_bar/skin_name_holder/preview_skin_name" | "title_bar/padding_2" | "popup_dialog_skin_model" | "popup_dialog_skin_model/paper_doll" | "popup_dialog_choose_skin_type_button" | "popup_dialog_choose_skin_type_button/hover" | "popup_dialog_choose_skin_type_button/pressed" | "popup_dialog_choose_skin_type_panel" | "popup_dialog_choose_skin_type_panel/model" | "popup_dialog_choose_skin_type_panel/button_highlight" | "popup_dialog__invalid_custom_skin" | "popup_dialog__invalid_custom_skin/popup_dialog_bg" | "popup_dialog__invalid_custom_skin/popup_dialog_message" | "popup_dialog__invalid_custom_skin/popup_dialog_middle_button" | "popup_dialog__upsell_without_store" | "popup_dialog__choose_skin_type" | "popup_dialog__choose_skin_type/popup_dialog_bg" | "popup_dialog__choose_skin_type/popup_dialog_message" | "popup_dialog__choose_skin_type/left" | "popup_dialog__choose_skin_type/right" | "content" | "content/title" | "content/selector_area" | "content/content_area" | "content/section_divider" | "skin_picker_screen" | "skin_picker_screen_content" | "skin_picker_screen_content/bg" | "skin_picker_screen_content/container" | "skin_picker_screen_content/container/content" | "skin_picker_screen_content/popup_dialog_factory" | "scrollable_selector_area_content" | "selector_area" | "selector_area/all_skins" | "selector_area/inactive_modal_pane_fade" | "content_area" | "content_area/preview_skin" | "content_area/inactive_modal_pane_fade" | "section_divider"; +export type SmithingTable = "smithing_image" | "ingot_image" | "smithing_icon" | "upgrade_label" | "icon_and_text_panel" | "icon_and_text_panel/smithing_icon_panel" | "icon_and_text_panel/upgrade_label" | "smithing_icon_panel" | "smithing_icon_panel/smithing_icon" | "plus_sign_icon" | "arrow_icon" | "cross_out_icon" | "smithing_table_output_slot_button" | "smithing_table_item_slot" | "smithing_table_item_slot/container_item" | "recipe_grid" | "recipe_grid/input_item_slot" | "recipe_grid/plus" | "recipe_grid/plus/plus_sign_icon" | "recipe_grid/material_item_slot" | "recipe_grid/yields" | "recipe_grid/yields/arrow_icon" | "recipe_grid/yields/cross_out_icon" | "recipe_grid/result_item_slot" | "recipe_panel" | "recipe_panel/recipe_grid" | "top_half_panel" | "top_half_panel/icon_and_text_panel" | "top_half_panel/recipe_panel" | "smithing_table_panel" | "smithing_table_panel/container_gamepad_helpers" | "smithing_table_panel/selected_item_details_factory" | "smithing_table_panel/item_lock_notification_factory" | "smithing_table_panel/root_panel" | "smithing_table_panel/root_panel/common_panel" | "smithing_table_panel/root_panel/smithing_table_screen_inventory" | "smithing_table_panel/root_panel/smithing_table_screen_inventory/top_half_panel" | "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label" | "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid" | "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button" | "smithing_table_panel/root_panel/inventory_selected_icon_button" | "smithing_table_panel/root_panel/gamepad_cursor" | "smithing_table_panel/flying_item_renderer" | "smithing_table_screen"; +export type SmithingTable2 = "smithing_icon" | "upgrade_label" | "icon_and_text_panel" | "icon_and_text_panel/smithing_icon_panel" | "icon_and_text_panel/upgrade_label" | "smithing_icon_panel" | "smithing_icon_panel/smithing_icon" | "smithing_image" | "smithing_material_image_ingot" | "arrow_icon" | "cross_out_icon_image" | "cross_out_icon_button" | "cross_out_icon_button/default" | "cross_out_icon_button/hover" | "smithing_input_image_templates" | "smithing_input_image_armors" | "smithing_input_image_armors_and_tools" | "smithing_material_image_all" | "template_overlay_image" | "template_overlay_image/templates" | "input_overlay_image" | "input_overlay_image/armors_and_tools" | "input_overlay_image/armors" | "material_overlay_image" | "material_overlay_image/all_materials" | "material_overlay_image/ingot" | "smithing_table_output_slot_button" | "smithing_table_item_slot" | "smithing_table_item_slot/container_item" | "recipe_grid" | "recipe_grid/template_item_slot" | "recipe_grid/input_item_slot" | "recipe_grid/material_item_slot" | "recipe_grid/yields" | "recipe_grid/yields/arrow_icon" | "recipe_grid/yields/cross_out_icon" | "recipe_grid/result_item_slot" | "recipe_grid/result_item_preview" | "recipe_panel" | "recipe_panel/recipe_grid" | "result_item_preview" | "result_item_preview/inner" | "result_item_preview_inner" | "result_item_preview_inner/smithing_preview_renderer" | "toolbar_background" | "help_button" | "toolbar_panel" | "toolbar_panel/toolbar_background" | "toolbar_panel/toolbar_background/toolbar_stack_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1" | "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2" | "toolbar_anchor" | "toolbar_anchor/toolbar_panel" | "top_half_panel" | "top_half_panel/icon_and_text_panel" | "top_half_panel/recipe_panel" | "smithing_table_panel" | "smithing_table_panel/container_gamepad_helpers" | "smithing_table_panel/selected_item_details_factory" | "smithing_table_panel/item_lock_notification_factory" | "smithing_table_panel/root_panel" | "smithing_table_panel/root_panel/common_panel" | "smithing_table_panel/root_panel/smithing_table_screen_inventory" | "smithing_table_panel/root_panel/smithing_table_screen_inventory/top_half_panel" | "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label" | "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid" | "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button" | "smithing_table_panel/root_panel/inventory_selected_icon_button" | "smithing_table_panel/root_panel/toolbar_anchor" | "smithing_table_panel/root_panel/gamepad_cursor" | "smithing_table_panel/flying_item_renderer"; +export type SmithingTablePocket = "ingot_image" | "background_image" | "arrow_icon" | "smithing_icon" | "upgrade_label" | "smithing_icon_panel" | "smithing_icon_panel/smithing_icon" | "smithing_table_title_and_text_panel" | "smithing_table_title_and_text_panel/smithing_icon_panel" | "smithing_table_title_and_text_panel/upgrade_label" | "slots_panel" | "slots_panel/input_slot" | "slots_panel/material_slot" | "slots_panel/result_slot" | "slots_panel/plus_sign" | "slots_panel/arrow" | "slots_panel/arrow/cross_out" | "smithing_table_contents_panel" | "smithing_table_contents_panel/smithing_table_title_and_text_panel" | "smithing_table_contents_panel/slots_panel" | "inventory_grid" | "inventory_content" | "inventory_content/scrolling_panel" | "inventory_and_smithing_table_panel" | "inventory_and_smithing_table_panel/inventory_half_screen" | "inventory_and_smithing_table_panel/inventory_half_screen/inventory_content" | "inventory_and_smithing_table_panel/smithing_half_screen" | "inventory_and_smithing_table_panel/smithing_half_screen/smithing_table_content" | "header" | "header/header_background" | "header/close_button" | "header/panel" | "header/panel/title_label" | "header_and_content_stack_panel" | "header_and_content_stack_panel/header" | "header_and_content_stack_panel/inventory_and_smithing_table_panel" | "smithing_table_panel" | "smithing_table_panel/bg" | "smithing_table_panel/root_panel" | "smithing_table_panel/header_and_content_stack_panel" | "smithing_table_panel/container_gamepad_helpers" | "smithing_table_panel/inventory_selected_icon_button" | "smithing_table_panel/hold_icon" | "smithing_table_panel/selected_item_details_factory" | "smithing_table_panel/item_lock_notification_factory" | "smithing_table_panel/flying_item_renderer"; +export type SmithingTable2Pocket = "smithing_table_item_renderer" | "smithing_image" | "smithing_material_image_ingot" | "background_image" | "smithing_input_image_templates" | "smithing_material_image_all" | "smithing_input_image_armors" | "smithing_input_image_armors_and_tools" | "template_overlay_image" | "template_overlay_image/templates" | "input_overlay_image" | "input_overlay_image/armors_and_tools" | "input_overlay_image/armors" | "material_overlay_image" | "material_overlay_image/ingot" | "material_overlay_image/all_materials" | "arrow_icon" | "smithing_icon" | "upgrade_label" | "slot_grid_item" | "slot_grid_item/slot" | "template_slot" | "input_slot" | "material_slot" | "inputs_stack" | "inputs_stack/template_slot" | "inputs_stack/padding1" | "inputs_stack/input_slot" | "inputs_stack/padding2" | "inputs_stack/material_slot" | "inputs_panel" | "inputs_panel/inputs_stack" | "result_slot" | "cross_out_image" | "cross_out_icon" | "cross_out_icon/default" | "cross_out_icon/hover" | "crafting_arrow" | "crafting_arrow/cross_out" | "crafting_arrow_grid_item" | "crafting_arrow_grid_item/crafting_arrow" | "result_item_preview" | "result_item_preview/smithing_preview_renderer" | "result_item_preview_grid_item" | "result_item_preview_grid_item/result_preview" | "smithing_table_contents_panel" | "smithing_table_contents_panel/label_holder" | "smithing_table_contents_panel/label_holder/title_label" | "smithing_table_contents_panel/inputs" | "smithing_table_contents_panel/result_slot" | "smithing_table_contents_panel/crafting_arrow" | "smithing_table_contents_panel/result_item_preview" | "chest_item_renderer" | "left_tab_inventory" | "left_navigation_tabs" | "left_navigation_tabs/left_tab_inventory" | "inventory_scroll_panel" | "left_panel" | "left_panel/gamepad_helpers_and_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs" | "left_panel/content" | "left_panel/content/bg" | "left_panel/content/inventory_scroll_panel" | "right_tab_smithing_table" | "right_navigation_tabs" | "right_navigation_tabs/pocket_tab_close_and_help_button" | "right_navigation_tabs/fill" | "right_navigation_tabs/right_tab_smithing_table" | "right_panel" | "right_panel/content" | "right_panel/content/bg" | "right_panel/content/smithing_content_stack_panel" | "right_panel/navigation_tabs_holder" | "right_panel/navigation_tabs_holder/right_navigation_tabs" | "pocket_hotbar_and_content_panels" | "smithing_table_panel" | "smithing_table_panel/pocket_hotbar_and_content_panels" | "smithing_table_panel/container_gamepad_helpers" | "smithing_table_panel/selected_item_details_factory" | "smithing_table_panel/item_lock_notification_factory" | "smithing_table_panel/inventory_selected_icon_button" | "smithing_table_panel/inventory_take_progress_icon_button" | "smithing_table_panel/flying_item_renderer"; +export type Smoker = "smoker_screen"; +export type Start = "achievements_icon" | "inbox_bell_animated_icon" | "inbox_icon" | "unread_notification_icon" | "feedback_icon" | "feedback_icon_edu" | "Xbox_icon" | "change_skin_icon" | "manage_accounts_icon" | "new_offers_icon" | "edu_ai_lesson_crafter_button_content" | "edu_ai_lesson_crafter_button_content/padded_label" | "edu_ai_lesson_crafter_button_content/padded_label/label" | "edu_ai_lesson_crafter_button_content/padded_icon" | "edu_ai_lesson_crafter_button_content/padded_icon/icon" | "preview_tag" | "preview_tag/preview_label" | "update_prompt_icon" | "marketplace_error_icon" | "sale_ribbon_icon" | "alex_icon" | "gamerpic" | "copyright" | "copyright/label" | "copyright/label_background" | "development_version" | "development_version/label" | "development_version/label_background" | "version" | "version/label" | "version/label_background" | "trial_info" | "trial_info/trial_label" | "trial_info/label_background" | "text_panel" | "text_panel/copyright" | "text_panel/development_version" | "text_panel/version" | "skin_or_profile_panel" | "skin_or_profile_panel/change_skin" | "skin_or_profile_panel/change_skin_button_demo" | "skin_or_profile_panel/dressing_room_button" | "skin_or_profile_panel/switch_accounts" | "skin_or_profile_panel/profile_button" | "change_skin_button" | "change_skin_button_demo" | "switch_accounts_button" | "dressing_room_button" | "profile_button_content" | "profile_button_content/gamerpic_offset_wrapper" | "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border" | "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic" | "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon" | "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black" | "profile_button_content/padding_middle" | "profile_button_content/vertically_central_text" | "profile_button_content/vertically_central_text/top_padding" | "profile_button_content/vertically_central_text/profile_button_label" | "profile_button_content/padding_right" | "profile_button" | "skin_viewer_panel" | "skin_viewer_panel/paper_doll_panel" | "skin_viewer_panel/paper_doll_panel/paper_doll" | "skin_viewer_panel/paper_doll_panel/appearacne_loading_panel" | "skin_viewer_panel/paper_doll_name_tag" | "skin_panel" | "skin_panel/change_profile_or_skin" | "skin_panel/viewer_panel" | "friendsdrawer_button_panel" | "friendsdrawer_button_panel/friendsdrawer_button" | "gathering_button" | "badge_and_caption_animated" | "badge_and_caption_animated/caption_and_padding" | "badge_and_caption_animated/caption_and_padding/pad" | "badge_and_caption_animated/caption_and_padding/caption" | "badge_and_caption_animated/badge_and_padding" | "badge_and_caption_animated/badge_and_padding/badge" | "badge_and_caption_animated/badge_and_padding/fill" | "gathering_badge" | "badge_and_caption" | "badge_and_caption/caption_and_padding" | "badge_and_caption/caption_and_padding/pad" | "badge_and_caption/caption_and_padding/caption" | "badge_and_caption/badge_and_padding" | "badge_and_caption/badge_and_padding/badge" | "badge_and_caption/badge_and_padding/fill" | "gathering_caption" | "gathering_caption/countdown_text" | "gathering_panel" | "gathering_panel/horizontal_panel" | "gathering_panel/horizontal_panel/pad" | "gathering_panel/horizontal_panel/inner_panel" | "gathering_panel/horizontal_panel/inner_panel/badge_and_caption" | "gathering_panel/horizontal_panel/inner_panel/badge_and_caption_animated" | "gathering_panel/horizontal_panel/inner_panel/gathering_button" | "gathering_panel/bottom_pad" | "edu_feedback_button" | "release_feedback_button" | "pre_release_feedback_button" | "feedback_button" | "feedback_button/edu_feedback_button" | "feedback_button/release_feedback_button" | "feedback_button/pre_release_feedback_button" | "achievements_button" | "achievements_icon_button" | "achievements_icon_button/achievements_button" | "inbox_button" | "inbox_button_unread_panel" | "inbox_button_unread_panel/background" | "inbox_icon_button" | "inbox_icon_button/inbox_button" | "inbox_icon_button/inbox_button_unread_panel" | "xbl_signin_button" | "platform_signin_button" | "column_frame" | "educator_resources_button" | "upper_online_buttons_panel" | "upper_online_buttons_panel/top_pad" | "upper_online_buttons_panel/stacked_column" | "upper_online_buttons_panel/stacked_column/xbl_btn_padding" | "upper_online_buttons_panel/stacked_column/xbl_btn" | "upper_online_buttons_panel/stacked_column/xbl_btn/xbl_signin_button" | "upper_online_buttons_panel/stacked_column/platform_signin_btn" | "upper_online_buttons_panel/stacked_column/platform_signin_btn/platform_signin_button" | "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label" | "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border" | "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/gamerpic" | "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/border_white" | "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/spacer" | "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel" | "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel/gamertag_label" | "upper_online_buttons_panel/bottom_pad" | "lower_online_buttons_panel" | "lower_online_buttons_panel/stacked_column" | "lower_online_buttons_panel/stacked_column/feedback_padding" | "lower_online_buttons_panel/stacked_column/feedback_btn" | "lower_online_buttons_panel/stacked_column/feedback_btn/feedback_button" | "lower_online_buttons_panel/stacked_column/signingin" | "lower_online_buttons_panel/stacked_column/achievements_padding" | "lower_online_buttons_panel/stacked_column/achievements_btn" | "lower_online_buttons_panel/stacked_column/achievements_btn/achievements_icon_button" | "lower_online_buttons_panel/stacked_column/inbox_padding" | "lower_online_buttons_panel/stacked_column/inbox_btn" | "lower_online_buttons_panel/stacked_column/inbox_btn/inbox_icon_button" | "lower_online_buttons_panel/stacked_column/profile_btn_padding" | "lower_online_buttons_panel/stacked_column/profile_btn" | "lower_online_buttons_panel/stacked_column/profile_btn/profile_button" | "main_button" | "main_button_dark" | "main_content_button" | "main_button_gif" | "main_button_banner" | "main_button_banner/banner_label" | "play_button" | "play_button_art" | "play_button_art/default_background" | "play_button_art/hover_background" | "play_button_art/label" | "play_button_art/default_foreground" | "play_button_art/hover_foreground" | "play_button_stack" | "play_button_stack/play_button" | "play_button_stack/play_button_art" | "play_button_stack/play_button_banner" | "get_started_button" | "main_menu_button" | "featured_world_button" | "unlock_full_game_button" | "launch_editions_button" | "ai_lesson_crafter_button" | "settings_button" | "realms_button" | "servers_button" | "store_button" | "error_store_button" | "store_button_sale_banner" | "store_button_sale_banner/banner_label_padding" | "store_button_sale_banner/banner_label_padding/banner_label" | "store_button_content" | "store_button_content/button_label" | "store_button_content/sales_banner" | "store_error_image" | "store_error_content" | "store_error_content/marketplace_button_label" | "store_sale_label" | "store_button_art" | "store_button_art/default_background" | "store_button_art/hover_background" | "store_button_art/label" | "store_button_art/default_foreground" | "store_button_art/hover_foreground" | "store_button_stack" | "store_button_stack/store_button" | "store_button_stack/store_button_art" | "store_button_stack/store_button_banner" | "store_button_stack/update_icon" | "store_button_stack/new_offers_icon" | "buy_game_button" | "stacked_row" | "main_buttons_stack_panel" | "main_buttons_stack_panel/title_offset_padding" | "main_buttons_stack_panel/title_panel_content" | "main_buttons_stack_panel/padding_fill_1" | "main_buttons_stack_panel/main_buttons_panel" | "main_buttons_stack_panel/main_buttons_panel/main_buttons_panel" | "main_buttons_stack_panel/main_buttons_panel_new_player_flow" | "main_buttons_stack_panel/main_buttons_panel_new_player_flow/main_buttons_panel_new_player_flow" | "main_buttons_stack_panel/padding_fill_2" | "main_buttons_stack_panel/padding_fill_2/gamepad_helpers" | "main_buttons_stack_panel/padding_3" | "main_buttons_panel_new_player_flow" | "main_buttons_panel_new_player_flow/stacked_rows" | "main_buttons_panel_new_player_flow/stacked_rows/test_label_row" | "main_buttons_panel_new_player_flow/stacked_rows/test_label_row/trial_info" | "main_buttons_panel_new_player_flow/stacked_rows/spacer" | "main_buttons_panel_new_player_flow/stacked_rows/get_started_row" | "main_buttons_panel_new_player_flow/stacked_rows/get_started_row/get_started_button" | "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row" | "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row/main_menu_button" | "main_buttons_panel" | "main_buttons_panel/stacked_rows" | "main_buttons_panel/stacked_rows/play" | "main_buttons_panel/stacked_rows/featured_world" | "main_buttons_panel/stacked_rows/featured_world/featured_world_button" | "main_buttons_panel/stacked_rows/stacked_row_2" | "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns" | "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0" | "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0/settings_button" | "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1" | "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/store_button" | "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/update_icon" | "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/new_offers_icon" | "main_buttons_panel/stacked_rows/ai_lesson_crafter_row" | "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/ai_lesson_crafter_button" | "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/lesson_crafter_preview_overlay" | "main_buttons_panel/stacked_rows/edu_featured_button" | "main_buttons_panel/stacked_rows/edu_featured_button/new_and_featured_button" | "main_buttons_panel/stacked_rows/settings_and_editions_panel" | "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions" | "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel" | "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel/settings_button" | "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel" | "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel/launch_editions_button" | "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel" | "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel/settings_button" | "main_buttons_panel/stacked_rows/settings" | "main_buttons_panel/stacked_rows/settings/settings_button" | "main_buttons_panel/stacked_rows/realms" | "main_buttons_panel/stacked_rows/realms/realms_button" | "main_buttons_panel/stacked_rows/unlock_full_game_row" | "main_buttons_panel/stacked_rows/unlock_full_game_row/unlock_full_game" | "main_buttons_panel/stacked_rows/store" | "main_buttons_panel/stacked_rows/buy_game" | "main_buttons_panel/stacked_rows/buy_game/buy_game_button" | "main_buttons_panel/stacked_rows/launch_editions" | "main_buttons_panel/stacked_rows/launch_editions/launch_editions_button" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "gamepad_helpers/gamepad_helper_b_and_padding" | "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b" | "gamepad_helpers/gamepad_helper_y_and_padding" | "gamepad_helpers/gamepad_helper_y_and_padding/gamepad_helper_y" | "gamepad_helpers/gamepad_helper_x_and_padding" | "gamepad_helpers/gamepad_helper_x_and_padding/gamepad_helper_x" | "invite_notification_icon" | "invite_notification_button" | "notification_button_text" | "notification_button_text_background" | "notification_button_text_panel" | "notification_button_text_panel/text" | "notification_button_text_panel/text/background" | "start_screen" | "start_screen_content" | "start_screen_content/main_buttons_and_title_panel" | "start_screen_content/online_button_stack" | "start_screen_content/online_button_stack/gathering_panel" | "start_screen_content/online_button_stack/upper_online_buttons_panel" | "start_screen_content/online_button_stack/lower_online_buttons_panel" | "start_screen_content/skin_panel" | "start_screen_content/text_panel" | "start_screen_content/friendsdrawer_button_panel"; +export type Stonecutter = "stonecutter_label" | "arrow_icon" | "stone_cell_image" | "container_cell_image" | "toolbar_background" | "highlight_slot_panel" | "highlight_slot_panel/hover_text" | "highlight_slot_panel/highlight" | "highlight_slot_panel/white_border" | "stone_slot_button" | "stone_slot_button/hover" | "item_panel" | "item_panel/item_renderer" | "item_panel/item_renderer/stack_count_label" | "stone_button" | "stone_button/banner_pattern" | "stone_button/item_button_ref" | "scroll_grid" | "scroll_grid_panel" | "scroll_grid_panel/grid" | "scroll_panel" | "stone_book_panel" | "stone_book_panel/bg" | "stone_book_panel/scroll_panel" | "result_slot_button" | "input_item_slot" | "result_item_slot" | "input_slots_stack_panel" | "input_slots_stack_panel/input_item_slot" | "top_half_stack_panel" | "top_half_stack_panel/input_slots_holder" | "top_half_stack_panel/input_slots_holder/input_slots_stack_panel" | "top_half_stack_panel/padding_1" | "top_half_stack_panel/arrow_holder" | "top_half_stack_panel/arrow_holder/arrow_icon" | "top_half_stack_panel/padding_2" | "top_half_stack_panel/result_item_slot_holder" | "top_half_stack_panel/result_item_slot_holder/result_item_slot" | "top_half_panel" | "top_half_panel/top_half_stack_panel" | "right_panel" | "right_panel/common_panel" | "right_panel/stonecutter_screen_inventory" | "right_panel/stonecutter_screen_inventory/stonecutter_label" | "right_panel/stonecutter_screen_inventory/top_half_panel" | "right_panel/stonecutter_screen_inventory/inventory_panel_bottom_half_with_label" | "right_panel/stonecutter_screen_inventory/hotbar_grid" | "toolbar_panel" | "toolbar_panel/toolbar_background" | "toolbar_panel/toolbar_background/toolbar_stack_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2" | "toolbar_anchor" | "toolbar_anchor/toolbar_panel" | "center_fold" | "center_fold/center_bg" | "screen_stack_panel" | "screen_stack_panel/stone_book_panel" | "screen_stack_panel/center_fold" | "screen_stack_panel/right_panel" | "screen_stack_panel/toolbar_anchor" | "stonecutter_panel" | "stonecutter_panel/screen_stack_panel" | "stonecutter_panel/container_gamepad_helpers" | "stonecutter_panel/selected_item_details_factory" | "stonecutter_panel/item_lock_notification_factory" | "stonecutter_panel/inventory_selected_icon_button" | "stonecutter_panel/inventory_take_progress_icon_button" | "stonecutter_panel/flying_item_renderer" | "stonecutter_screen"; +export type StonecutterPocket = "vertical_arrow_icon" | "chest_item_renderer" | "stonecutter_item_renderer" | "input_item_slot" | "result_item_slot" | "right_panel" | "right_panel/content" | "right_panel/content/bg" | "right_panel/content/stonecutter_content_stack_panel" | "right_panel/navigation_tabs_holder" | "right_panel/navigation_tabs_holder/right_navigation_tabs" | "right_tab_stonecutter" | "right_navigation_tabs" | "right_navigation_tabs/close" | "right_navigation_tabs/close/nodrop_zone" | "right_navigation_tabs/close/close_button" | "right_navigation_tabs/fill" | "right_navigation_tabs/right_tab_stonecutter" | "input_slots_stack_panel" | "input_slots_stack_panel/input_item_slot" | "stonecutter_content_stack_panel" | "stonecutter_content_stack_panel/label_holder" | "stonecutter_content_stack_panel/label_holder/stonecutter_label" | "stonecutter_content_stack_panel/padding_1" | "stonecutter_content_stack_panel/panel" | "stonecutter_content_stack_panel/panel/stack_panel" | "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder" | "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder/input_slots_stack_panel" | "stonecutter_content_stack_panel/panel/stack_panel/padding_3" | "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder" | "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder/vertical_arrow_icon" | "stonecutter_content_stack_panel/panel/stack_panel/padding_4" | "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder" | "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder/result_item_slot" | "stonecutter_content_stack_panel/panel/stack_panel/padding_5" | "inventory_panel" | "inventory_panel/inventory_title_label_centerer" | "inventory_panel/inventory_title_label_centerer/inventory_title_label" | "inventory_panel/inventory_scroll_panel" | "inventory_scroll_panel" | "pattern_button" | "pattern_scroll_panel" | "left_panel" | "left_panel/gamepad_helpers_and_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs" | "left_panel/content" | "left_panel/content/bg" | "left_panel/content/inventory_panel" | "left_panel/content/pattern_scroll_panel" | "left_tab_stones" | "left_tab_inventory" | "left_navigation_tabs" | "left_navigation_tabs/left_tab_stones" | "left_navigation_tabs/padding" | "left_navigation_tabs/left_tab_inventory" | "pocket_hotbar_and_content_panels" | "stonecutter_panel" | "stonecutter_panel/pocket_hotbar_and_content_panels" | "stonecutter_panel/container_gamepad_helpers" | "stonecutter_panel/selected_item_details_factory" | "stonecutter_panel/item_lock_notification_factory" | "stonecutter_panel/inventory_selected_icon_button" | "stonecutter_panel/inventory_take_progress_icon_button" | "stonecutter_panel/flying_item_renderer"; +export type StorageManagement = "lock_icon" | "storage_header_panel" | "storage_header_panel/header_panel" | "storage_header_panel/header_panel/file_storage_dropdown" | "storage_header_panel/header_panel/file_storage_dropdown_edu" | "storage_header_panel/header_panel/clear_cache_button_panel" | "storage_header_panel/header_panel/clear_cache_button_panel/clear_cache_button" | "storage_header_panel/header_panel/clear_download_cache_button_panel" | "storage_header_panel/header_panel/clear_download_cache_button_panel/clear_download_button" | "storage_header_panel/header_panel/clear_screenshots_cache_button_panel" | "storage_header_panel/header_panel/clear_screenshots_cache_button_panel/clear_screenshots_cache_button" | "storage_header_panel/header_panel/delete_local_screenshots_button_panel" | "storage_header_panel/header_panel/delete_local_screenshots_button_panel/delete_local_screenshots_button" | "storage_header_panel/header_panel/panel" | "storage_header_panel/header_panel/panel/multiselect_button" | "x_button_image" | "storage_main_panel" | "storage_main_panel/scroll_content" | "storage_footer_panel" | "storage_footer_panel/visibleContent" | "storage_footer_panel/visibleContent/delete_button" | "storage_footer_panel/visibleContent/share_button" | "delete_checkbox" | "delete_checkbox/selected_checkbox_image" | "generic_button" | "generic_button/picture" | "generic_button/text" | "common_scroll_pane" | "common_label" | "main_content_panel" | "main_content_panel/panel" | "main_content_panel/panel/spacing" | "main_content_panel/panel/delete_checkbox" | "main_content_panel/panel/image_panel" | "main_content_panel/panel/image_panel/image_border" | "main_content_panel/panel/image_panel/image_border/image" | "main_content_panel/panel/text_panel_offset" | "main_content_panel/panel/text_panel_offset/text_panel" | "main_content_panel/panel/text_panel_offset/text_panel/0" | "common_main_button" | "common_main_button/background" | "common_main_button/border" | "common_main_button/main_content_panel" | "base_glyph" | "base_glyph/image" | "base_glyph/padding" | "main_item_text" | "grey_button" | "icon_item_text" | "world_item_text" | "storage_main_item_toggle" | "storage_main_item_toggle/main_item_toggle" | "storage_main_item_toggle/contentPanel" | "storage_main_item_toggle/padding" | "storage_scroll_pane" | "storage_scroll_pane/category_stack_panel" | "storage_scroll_pane/category_stack_panel/stack_panel" | "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel" | "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel/legacy_world_controls" | "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel" | "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel/retailtopreview_world_controls" | "storage_scroll_pane/multiselect_padding" | "world_controls" | "world_template_controls" | "resource_controls" | "behavior_controls" | "skin_controls" | "cached_controls" | "resource_sub_item" | "resource_sub_item/dummy_panel" | "resource_sub_item/main_panel" | "resource_sub_item/main_panel/content" | "resource_toggle" | "resource_toggle/content_toggle" | "resource_toggle/content_toggle/default" | "resource_toggle/content_toggle/hover" | "resource_toggle/content_toggle/unchecked" | "resource_toggle/content_toggle/unchecked_hover" | "resource_toggle/item_button_panel" | "resource_toggle/item_button_panel/y_sizing_panel" | "resource_toggle/item_button_panel/y_sizing_panel/border" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_0" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/blank" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/generate_texture_list_button" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_1" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/delete_button" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_2" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/blank" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/share_button" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_3" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank_3" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_4" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/blank" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/dependency_button" | "sub_item_tray_button" | "glyph_sub_icon" | "sub_item_blank_button" | "texture_icon_text" | "texture_icon_sub_item" | "version_sub_item" | "pack_description_sub_item" | "world_sub_text" | "world_template_sub_text" | "basic_sub_item" | "dropdown_button" | "dropdown_button_content" | "dropdown_button_content/image_panel" | "dropdown_button_content/image_panel/icon" | "dropdown_button_content/text_panel" | "dropdown_button_content/text_panel/main_label" | "filter_options" | "filter_options/0" | "light_assets" | "button_add" | "sort_panel" | "sort_panel/default" | "sort_toggle" | "storage_scroll_panel" | "storage_main_item_legacy_world_toggle" | "storage_main_item_legacy_world_toggle/main_item_toggle" | "storage_main_item_legacy_world_toggle/contentPanel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/dummy_panel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/sync_legacy_world_button" | "storage_main_item_legacy_world_toggle/contentPanel/dummy_panel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/dummy_panel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/sync_legacy_world_description" | "storage_main_item_legacy_world_toggle/contentPanel/itemsPanel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel_dummy_panel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/dummy_panel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/sync_legacy_world_conversion_description" | "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel" | "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/loading_legacy_worlds_label" | "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/padding" | "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/progress_loading_bars" | "storage_main_item_legacy_world_toggle/padding" | "legacy_world_main_item_text" | "storage_main_item_retailtopreview_world_toggle" | "storage_main_item_retailtopreview_world_toggle/main_item_toggle" | "storage_main_item_retailtopreview_world_toggle/contentPanel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/dummy_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/sync_retailtopreview_world_button" | "storage_main_item_retailtopreview_world_toggle/contentPanel/dummy_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/dummy_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/sync_retailtopreview_world_description" | "storage_main_item_retailtopreview_world_toggle/contentPanel/itemsPanel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel_dummy_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/dummy_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/sync_retailtopreview_world_conversion_description" | "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/loading_retailtopreview_worlds_label" | "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/padding" | "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/progress_loading_bars" | "storage_main_item_retailtopreview_world_toggle/padding" | "retailtopreview_world_main_item_text"; +export type StorageManagementPopup = "storage_dependency_modal" | "storage_dependency_modal/base" | "storage_dependency_modal/base/background_with_buttons" | "storage_dependency_modal/base/title" | "storage_dependency_modal/base/dependencies" | "storage_dependency_modal/base/two_buttons" | "storage_dependency_modal/base/two_buttons/disabled_left" | "storage_dependency_modal/base/two_buttons/left" | "storage_dependency_modal/base/two_buttons/right" | "storage_dependency_panel" | "storage_dependency_panel/scroll" | "storage_dependency_scroll_panel" | "dependency_item_content" | "dependency_item_content/content" | "dependency_scroll_pane" | "dependency_scroll_pane/main_label" | "dependency_scroll_pane/contentPanel" | "dependency_item" | "dependency_item_small" | "dependency_resource_item" | "dependency_resource_item_small" | "dependency_sub_item" | "dependency_sub_item/border" | "dependency_sub_item/border/stack" | "dependency_sub_item/border/stack/padding_0" | "dependency_sub_item/border/stack/wrapper" | "dependency_sub_item/border/stack/wrapper/dependency_item" | "dependency_sub_item/border/stack/panel_0" | "dependency_sub_item/border/stack/panel_0/main_label" | "dependency_sub_item/border/stack/contentPanel" | "dependency_sub_item/border/stack/panel_1" | "dependency_sub_item/border/stack/panel_1/remove_pack_button" | "dependency_sub_item/border/stack/padding_1" | "dependency_sub_item/padding" | "sharing_popup_content"; +export type CommonStore = "store_base_screen" | "label" | "offer_image_panel" | "banner_fill" | "store_description_background" | "store_description_background_dark" | "text_style_label" | "text_style_label/text_label" | "sdl_texture" | "store_offer_grid_button" | "store_offer_grid_button/hover" | "store_offer_grid_button/hover/key_art_size_panel" | "store_offer_grid_button/hover/key_art_size_panel/key_art_frame" | "store_offer_grid_button/pressed" | "store_offer_grid_button/pressed/key_art_size_panel" | "store_offer_grid_button/pressed/key_art_size_panel/key_art_frame" | "store_offer_grid_button/icon_overlay_panel" | "ribbon_bar_text_background" | "ribbon_bar_red_hover_text_background" | "store_background" | "coin_icon" | "tag" | "tag/new_offer_label" | "marketplace_error_icon" | "new_offer_icon" | "status_new_offer_icon" | "update_balloon_icon" | "icon_overlay_panel" | "icon_overlay_panel/icon_overlay_position_factory" | "icon_overlay_position_factory" | "top_left_icon_factory" | "top_middle_icon_factory" | "top_right_icon_factory" | "left_middle_icon_factory" | "center_icon_factory" | "right_middle_icon_factory" | "bottom_left_icon_factory" | "bottom_middle_icon_factory" | "bottom_right_icon_factory" | "icon_factory" | "new_offer_icon_panel" | "new_offer_icon_panel/new_icon" | "update_offer_icon_panel" | "update_offer_icon_panel/update_icon" | "icon_overlay_image_panel" | "icon_overlay_image_panel/image_stack_panel" | "icon_overlay_image_panel/image_stack_panel/icon" | "icon_overlay_image_panel/image_stack_panel/padding" | "icon_overlay_sdl_padding" | "status_icon_overlay" | "status_icon_overlay/icon_overlay_label_panel" | "status_icon_overlay/icon_overlay_label_panel/left_margin_padding" | "status_icon_overlay/icon_overlay_label_panel/left_padding_1" | "status_icon_overlay/icon_overlay_label_panel/left_padding_2" | "status_icon_overlay/icon_overlay_label_panel/icon_panel" | "status_icon_overlay/icon_overlay_label_panel/icon_panel/icon_overlay_label" | "status_icon_overlay/icon_overlay_label_panel/right_padding_1" | "status_icon_overlay/icon_overlay_label_panel/right_padding_2" | "status_icon_overlay/icon_overlay_label_panel/right_margin_padding" | "status_icon_panel" | "status_icon_panel/new_offer_icon" | "status_icon_panel/update_icon" | "prompt_icon" | "up_arrow_icon" | "plus_icon" | "bang_icon" | "user_icon_small" | "user_icon_hover" | "gamepad_store_helper" | "purchase_coins_panel" | "purchase_coins_panel/plus_button" | "inventory_panel" | "inventory_panel/inventory_button" | "progress_loading_bars" | "progress_loading_spinner" | "progress_loading" | "progress_loading/centerer" | "progress_loading/centerer/progress_loading_spinner" | "progress_loading/progress_loading_outline" | "progress_loading/stack_panel" | "progress_loading/stack_panel/top_panel" | "progress_loading/stack_panel/top_panel/error_glyph_panel" | "progress_loading/stack_panel/top_panel/error_glyph_panel/error_image" | "progress_loading/stack_panel/top_panel/padding" | "progress_loading/stack_panel/top_panel/store_failure_text" | "progress_loading/stack_panel/padding" | "progress_loading/stack_panel/image" | "progress_loading/store_failure_code" | "store_empty_progress_bar_icon" | "store_full_progress_bar_icon" | "store_progress_bar_nub" | "store_progress_bar_icon" | "store_progress_bar_icon/empty_progress_bar_icon" | "store_progress_bar_icon/progress_percent_panel" | "store_progress_bar_icon/progress_percent_panel/full_progress_bar_icon" | "store_progress_bar_icon/progress_percent_panel/progress_bar_nub" | "screen_contents_with_gamepad_helpers" | "screen_contents_with_gamepad_helpers/dialog_panel" | "screen_contents_with_gamepad_helpers/dialog_panel/dialog" | "screen_contents_with_gamepad_helpers/padding" | "screen_contents_with_gamepad_helpers/gamepad_helpers_panel" | "screen_contents_with_gamepad_helpers/gamepad_helpers_panel/gamepad_helpers_a_and_b" | "text_strike_through" | "markdown_banner" | "markdown_triangle" | "timer_panel" | "timer_panel/timer" | "store_offer_type_icon" | "addon_pack_icon" | "addon_pack_small_icon" | "realms_plus_icon" | "resource_pack_icon" | "resource_pack_small_icon" | "skinpack_icon" | "skinpack_small_icon" | "world_icon" | "world_small_icon" | "mashup_icon" | "mashup_small_icon" | "persona_icon" | "persona_small_icon" | "small_padding_panel" | "resource_pack_small_icon_with_buffer" | "resource_pack_small_icon_with_buffer/resource_pack_small_icon" | "resource_pack_small_icon_with_buffer/small_padding_panel" | "addon_pack_small_icon_with_buffer" | "addon_pack_small_icon_with_buffer/addon_pack_small_icon" | "addon_pack_small_icon_with_buffer/small_padding_panel" | "skinpack_small_icon_with_buffer" | "skinpack_small_icon_with_buffer/skinpack_small_icon" | "skinpack_small_icon_with_buffer/small_padding_panel" | "world_small_icon_with_buffer" | "world_small_icon_with_buffer/world_small_icon" | "world_small_icon_with_buffer/small_padding_panel" | "mashup_small_icon_with_buffer" | "mashup_small_icon_with_buffer/mashup_small_icon" | "mashup_small_icon_with_buffer/small_padding_panel" | "persona_small_icon_with_buffer" | "persona_small_icon_with_buffer/persona_small_icon" | "persona_small_icon_with_buffer/small_padding_panel" | "realms_icon" | "realms_banner_icon" | "csb_banner_icon" | "csb_expiration" | "csb_expiration/background" | "csb_expiration/contents" | "csb_expiration/contents/csb_icon" | "csb_expiration/contents/pad_0" | "csb_expiration/contents/text_panel" | "csb_expiration/contents/text_panel/text" | "pack_icon_stack" | "pack_icon_stack/pack_icon_stack_factory" | "pack_icon_stack_factory" | "markdown_background" | "markdown_background/banner_panel" | "markdown_background/banner_panel/banner" | "markdown_background/banner_panel/banner/banner_content_stack_panel" | "markdown_background/banner_panel/banner/banner_content_stack_panel/timer_panel" | "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel" | "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel/pack_icon_stack" | "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel" | "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel/markdown_label" | "markdown_background/triangle_panel" | "markdown_background/triangle_panel/triangle" | "store_top_bar" | "store_top_bar_filler" | "direction_button_panel" | "direction_button_panel/chevron_image" | "cycle_pack_button" | "cycle_pack_left_button" | "cycle_pack_right_button" | "restore_purchases" | "back_content_panel" | "back_content_panel/back_button" | "unlock_with_coins_button_stack_panel" | "unlock_with_coins_button_stack_panel/coin_panel" | "unlock_with_coins_button_stack_panel/coin_panel/coin" | "unlock_with_coins_button_stack_panel/padding_1" | "unlock_with_coins_button_stack_panel/unlock_text" | "store_dialog_with_coin_header" | "store_coins_title_label" | "search_header_stack" | "search_header_stack/gamepad_helper_y_alignment_hack" | "search_header_stack/gamepad_helper_y_alignment_hack/gamepad_helper_y" | "search_header_stack/search_header_text_box_panel" | "search_header_stack/search_header_text_box_panel/search_header_text_box" | "search_header_stack/search_header_text_box_panel/clear_button" | "search_header_stack/store_layout_search_button" | "search_header_stack/padding0" | "sdl_store_header_with_coins" | "sdl_store_header_with_coins/sdl_store_header_with_coins_content" | "top_bar_with_coins_panel" | "top_bar_with_coins_panel/top_bar" | "top_bar_with_coins_panel/top_bar/title_stack_panel" | "top_bar_with_coins_panel/top_bar/title_stack_panel/padding1" | "top_bar_with_coins_panel/top_bar/title_stack_panel/back_button_content_panel" | "top_bar_with_coins_panel/top_bar/title_stack_panel/padding2" | "top_bar_with_coins_panel/top_bar/title_stack_panel/header_title_panel" | "top_bar_with_coins_panel/top_bar/title_stack_panel/padding3" | "top_bar_with_coins_panel/top_bar/title_stack_panel/padding4" | "top_bar_with_coins_panel/top_bar/title_stack_panel/status_and_coins" | "top_bar_with_coins_panel/top_bar/title_stack_panel/padding5" | "top_bar_with_coins_panel/top_bar/title_stack_panel/search_header_stack" | "sdl_store_header_with_coins_content" | "sdl_store_header_with_coins_content/top_bar_coins" | "store_header_with_coins" | "store_header_with_coins/top_bar_coins" | "store_header_with_coins/child_control" | "status_with_coins" | "status_with_coins/inventory_panel" | "status_with_coins/inventory_panel/inventory_button" | "status_with_coins/padding0" | "status_with_coins/coin_balance_panel" | "status_with_coins/coin_balance_panel/coin_balance_panel" | "status_with_coins/padding1" | "coins_with_title" | "coins_with_title/coin_balance_panel" | "coins_with_title/title_panel" | "wallet_button_panel" | "wallet_button_panel/purchase_coin_panel_alignment_hack" | "wallet_button_panel/purchase_coin_panel_alignment_hack/purchase_coin_panel" | "wallet_button_panel/plus_image" | "wallet_button_panel/gamepad_helper_x_alignment_hack" | "wallet_button_panel/gamepad_helper_x_alignment_hack/gamepad_helper_x" | "coin_balance_panel" | "coin_balance_panel/coin_purchase_in_progress_panel" | "coin_balance_panel/coin_purchase_in_progress_panel/coin_purchase_in_progress" | "coin_balance_panel/horizontal_coin_stack" | "coin_balance_panel/horizontal_coin_stack/padding" | "coin_balance_panel/horizontal_coin_stack/coin_icon" | "coin_balance_panel/horizontal_coin_stack/small_filler" | "coin_balance_panel/horizontal_coin_stack/coin_text_holder" | "coin_balance_panel/horizontal_coin_stack/coin_text_holder/coin_balance_text" | "my_account_button_content" | "my_account_button_content/my_account_content" | "my_account_button_content/my_account_content/user_icon" | "my_account_button_content/my_account_content/my_account_label_panel" | "my_account_button_content/my_account_content/my_account_label_panel/padding" | "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label" | "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label/my_account_label" | "inventory_button_panel" | "inventory_button_panel/inventory_button" | "inventory_button_panel/inventory_button/status_panel" | "inventory_button" | "inventory_button/my_content_button" | "inventory_button/my_content_button/library_icon" | "inventory_button/my_content_button/library_icon_bevel" | "inventory_button/updates_with_bevel" | "inventory_button/updates_with_bevel/update_glyph" | "inventory_button/updates_with_bevel/updates_bevel" | "inventory_button/label_alignment_pannel" | "inventory_button/label_alignment_pannel/label_panel" | "inventory_button/label_alignment_pannel/label_panel/inventory_label" | "xbl_button_content" | "xbl_button_content/xbl_icon" | "xbl_button_content/padding_0" | "xbl_button_content/disconnected_label" | "xbl_button_content/padding_1" | "xbl_button_content/error_icon_panel" | "xbl_button_content/error_icon_panel/error_icon" | "disclaimer_panel" | "disclaimer_panel/legal_text_label" | "grey_bar_panel" | "grey_bar_panel/color_panel" | "grey_bar_panel/color_panel/grey_bar" | "grey_bar_panel/color_panel/green_bar" | "grey_bar_panel/pad" | "tab_name_panel" | "tab_name_panel/bar_panel" | "tab_name_panel/bar_panel/green_bar" | "tab_name_panel/button_panel" | "tab_name_panel/button_panel/tab_name_button_grey" | "tab_name_panel/button_panel/tab_name_button_white" | "tab_name_panel/pad_1" | "store_offer_item_title_panel" | "store_offer_item_title_panel/offer_title" | "store_offer_item_creator_panel" | "store_offer_item_creator_panel/pack_icon_panel" | "store_offer_item_creator_panel/pack_icon_panel/pack_icon_stack" | "store_offer_item_creator_panel/creator_label" | "store_offer_ratings" | "store_offer_ratings/rating_text_panel" | "vertical_store_offer_price_info_panel" | "vertical_store_offer_price_info_panel/sales_banner" | "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels" | "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/markdown_panel" | "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/padding_markdown_panel_right" | "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel" | "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel/offer_status_text" | "vertical_store_offer_price_info_panel/sales_banner/padding_to_right" | "store_offer_price_info_panel" | "store_offer_price_info_panel/sales_banner" | "store_offer_price_info_panel/sales_banner/sales_markdown_percentage_panel" | "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown" | "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/fill_markdown_panel_left" | "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/markdown_panel" | "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/padding_markdown_panel_right" | "store_offer_price_info_panel/sales_banner/coin_panel" | "store_offer_price_info_panel/sales_banner/coin_panel/offer_coin_icon" | "store_offer_price_info_panel/sales_banner/padding_3" | "store_offer_price_info_panel/sales_banner/offer_prompt_panel" | "store_offer_sales_markdown_percentage_panel" | "store_offer_sales_markdown_percentage_panel/markdown_background" | "store_offer_prompt_panel" | "store_offer_prompt_panel/offer_status_text" | "featured_key_art" | "featured_key_art/bg" | "featured_key_art/bg/featured_key_art" | "featured_key_art/bg/progress_loading" | "featured_key_art/bg/new_offer_icon" | "featured_key_art/focus_border" | "price_panel" | "price_panel/featured_icon_panel" | "price_panel/featured_icon_panel/featured_offer_coin_icon" | "price_panel/price_label_panel" | "price_panel/price_label_panel/price" | "price_panel/padding" | "vertical_padding_4" | "vertical_padding_2" | "sdl_vertical_padding_fill" | "footer" | "footer/restore_purchases" | "store_section_panel" | "store_section_panel/store_section_panel_outline" | "store_section_panel/section_panel" | "store_section_panel/section_panel/header" | "store_section_panel/section_panel/section_panel" | "store_section_panel/section_panel/section_panel/background" | "store_section_factory" | "store_static_section_factory" | "rtx_label" | "rtx_label/banner" | "rtx_label/banner/icon" | "subscription_chevron" | "subscription_chevron/subscription_chevron_panel" | "subscription_chevron/subscription_chevron_panel/csb_chevron" | "subscription_chevron/subscription_chevron_panel/sales_banner_background" | "csb_banner" | "csb_banner/banner" | "pagination_content_panel" | "pagination_content_panel/padding_left" | "pagination_content_panel/first_page_button" | "pagination_content_panel/pagination_middle_buttons_panel" | "pagination_content_panel/padding_right_fill" | "pagination_content_panel/go_to_top_button" | "pagination_panel" | "pagination_panel/top_padding" | "pagination_panel/pagination_content" | "pagination_panel/bottom_padding" | "store_offer_grid_panel_content" | "store_offer_grid_panel_content/header_centerer_panel" | "store_offer_grid_panel_content/store_offer_grid_factory" | "store_offer_grid_panel_content/pagination_centerer" | "store_offer_grid_panel_content/divider" | "store_offer_grid_panel" | "pagination_top_button_panel" | "pagination_top_button_panel/top_button_image" | "pagination_middle_buttons_panel" | "pagination_middle_buttons_panel/previous_page_button" | "pagination_middle_buttons_panel/current_page_number_panel" | "pagination_middle_buttons_panel/current_page_number_panel/current_page_number" | "pagination_middle_buttons_panel/next_page_button" | "vertical_store_offer_grid_panel" | "vertical_store_offer_grid_panel/header" | "vertical_store_offer_grid_panel/centering_panel" | "vertical_store_offer_grid_panel/centering_panel/vertical_store_offer_grid_content" | "vertical_store_offer_grid_panel/padding_0" | "vertical_store_offer_grid_panel/divider" | "carousel_row_panel" | "carousel_row_panel/top_panel" | "carousel_row_panel/top_panel/pad_0" | "carousel_row_panel/top_panel/tab_names_factory_panel" | "carousel_row_panel/top_padding" | "carousel_row_panel/middle_panel" | "carousel_row_panel/middle_panel/left_button_panel" | "carousel_row_panel/middle_panel/left_button_panel/left_button" | "carousel_row_panel/middle_panel/left_button_panel/left_bumper" | "carousel_row_panel/middle_panel/main_panel_factory" | "carousel_row_panel/middle_panel/right_button_panel" | "carousel_row_panel/middle_panel/right_button_panel/right_button" | "carousel_row_panel/middle_panel/right_button_panel/right_bumper" | "carousel_row_panel/bottom_panel" | "carousel_row_panel/bottom_panel/grey_bar_factory_panel" | "carousel_row_panel/bottom_padding" | "carousel_row_panel/divider_panel" | "carousel_row_panel/divider_panel/divider" | "carousel_factory" | "hero_row_l2_panel" | "hero_row_l2_panel/header" | "hero_row_l2_panel/centering_panel" | "hero_row_l2_panel/centering_panel/l2_featured_stack" | "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_0" | "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_1" | "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_1" | "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_2" | "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_2" | "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_3" | "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_3" | "hero_row_l2_panel/padding_0" | "hero_row_l2_panel/divider" | "blade_row_key_art" | "blade_row_key_art/blade_row_key_art_image" | "blade_row_key_art/blade_row_key_art_image/key_art_border" | "one_key_art_screenshot" | "one_key_art_screenshot_panel" | "one_key_art_screenshot_panel/blade_offer_frame" | "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot" | "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot/one_key_art_frame" | "screenshots_grid" | "screenshots_grid/screenshot_1" | "screenshots_grid/screenshot_2" | "screenshots_grid/screenshot_3" | "screenshots_grid/screenshot_4" | "blade_offer_details_title" | "blade_offer_sale_markdown" | "blade_offer_description_details" | "blade_offer_description_details/blade_title_stack" | "blade_offer_description_details/blade_title_stack/blade_title" | "blade_offer_description_details/blade_offer_creator_label" | "blade_offer_description_details/blade_offer_description_padding_2" | "blade_offer_description_details/ratings_and_coins" | "blade_offer_description_details/ratings_and_coins/subscription_panel" | "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel" | "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel/blade_markdown_background" | "blade_offer_description_details/ratings_and_coins/ratings_panel" | "blade_offer_description_details/ratings_and_coins/ratings_panel/blade_ratings" | "blade_offer_description_details/ratings_and_coins/blade_rating_count_panel" | "blade_offer_description_details/ratings_and_coins/fill_padding" | "blade_offer_description_details/ratings_and_coins/blade_offer_price_markdown_panel" | "blade_offer_description_details/ratings_and_coins/price_panel" | "blade_offer_description_details/ratings_and_coins/price_panel/price" | "blade_offer_description_details/ratings_and_coins/price_panel_padding_right" | "blade_offer_description_details/blade_offer_description_padding_3" | "screenshots_and_offer_details_panel" | "screenshots_and_offer_details_panel/blade_offer_screenshots_grid" | "screenshots_and_offer_details_panel/blade_offer_description_area" | "screenshots_and_offer_details_panel/blade_offer_description_area/blade_offer_description_border" | "screenshots_and_offer_details_panel/blade_offer_description_area/hero_blade_offer_description_details" | "blade_row_featured_panel" | "blade_row_featured_panel/blade_row_featured_key_art" | "blade_row_featured_panel/blade_offer_screenshots_and_details_panel" | "transparent_content_button" | "hero_blade_row_panel" | "hero_blade_row_panel/blade_row_transparent_button" | "hero_row_panel" | "hero_row_panel/header" | "hero_row_panel/centering_panel" | "hero_row_panel/centering_panel/featured_stack" | "hero_row_panel/centering_panel/featured_stack/hero_offer" | "hero_row_panel/centering_panel/featured_stack/padding_0" | "hero_row_panel/centering_panel/featured_stack/hero_offer_grid" | "hero_row_panel/padding_0" | "hero_row_panel/divider" | "hero_offer" | "hero_offer/featured_key_art" | "hero_offer/rtx_label" | "hero_offer/offer_description_area" | "hero_offer/offer_description_area/hero_offer_description_details" | "hero_offer_details_title" | "hero_offer_description_details" | "hero_offer_description_details/hero_title_stack" | "hero_offer_description_details/hero_title_stack/title" | "hero_offer_description_details/padding_5" | "hero_offer_description_details/progress" | "hero_offer_description_details/creator_label" | "hero_offer_description_details/padding_0" | "hero_offer_description_details/durable_offer_info_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/subscription_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel/ratings" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/rating_count_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/fill_padding" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/offer_price_markdown_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel/price" | "hero_offer_description_details/padding_1" | "hero_offer_download_progress" | "hero_offer_download_progress/label" | "hero_offer_download_progress/bar" | "rating_text_panel" | "rating_text_panel/left_padding" | "rating_text_panel/star_panel" | "rating_text_panel/star_panel/rating_star" | "rating_text_panel/middle_padding" | "rating_text_panel/rating_label" | "ratings_description" | "ratings_description/rating_text_panel" | "store_rating_count_panel" | "store_rating_count_panel/rating_count_text" | "hero_offer_grid" | "hero_offer_grid/row_1" | "hero_offer_grid/row_1/offer_1" | "hero_offer_grid/row_1/padding_0" | "hero_offer_grid/row_1/offer_2" | "hero_offer_grid/padding_0" | "hero_offer_grid/row_2" | "hero_offer_grid/row_2/offer_1" | "hero_offer_grid/row_2/padding_0" | "hero_offer_grid/row_2/offer_2" | "offer_download_progress" | "offer_download_progress/label" | "offer_download_progress/bar" | "banner_button" | "sdl_text_aligned_panel" | "sdl_text_minecraftTen_aligned_panel" | "sdl_content_aligned_panel" | "sdl_content_aligned_panel/left__padding_panel" | "sdl_content_aligned_panel/control" | "sdl_content_aligned_panel/right_padding_panel" | "sdl_aligned_text" | "sdl_aligned_minecraftTen_text" | "content_offer_key_art" | "vertical_content_offer_header" | "vertical_content_offer_header/header" | "vertical_content_offer_panel" | "vertical_offer_grid_panel" | "offer_content" | "offer_content/offer_item" | "vertical_offer_content" | "vertical_offer_content/offer_item" | "vertical_coin_offer_content" | "vertical_coin_offer_content/offer_item" | "store_offer_key_art" | "store_offer_grid_show_more" | "store_offer_grid_show_more/frame" | "store_offer_grid_show_more/frame/title" | "store_offer_grid_show_more/offer_button" | "store_offer_grid_show_more/offer_button/hover" | "store_offer_grid_show_more/offer_button/hover/key_art_size_panel" | "store_offer_grid_show_more/offer_button/pressed" | "store_offer_grid_show_more/offer_button/pressed/key_art_size_panel" | "persona_grid_show_more" | "row_offer_sale_markdown" | "discount_label" | "discount_label/label_panel" | "discount_label/label_panel/label" | "discount_label/icon_panel" | "discount_label/icon_panel/icon" | "hero_offer_sale_markdown" | "offer_price_markdown_panel" | "offer_price_markdown_panel/offer_price" | "offer_price_markdown_panel/offer_price/text_strike_through" | "store_offer_title" | "store_offer_key_art_frame" | "store_offer_key_art_frame/key_art" | "store_offer_key_art_frame/key_art/key_art_frame" | "store_offer_key_art_frame/key_art/csb_expiration_banner" | "store_offer_key_art_frame/progress_loading" | "vertical_store_offer_grid_item" | "vertical_store_offer_grid_item/frame" | "vertical_store_offer_grid_item/frame/horizontal_stack_panel" | "vertical_store_offer_grid_item/frame/offer_button" | "vertical_store_offer_grid_item/dark_frame" | "vertical_store_offer_grid_item/dark_frame/horizontal_stack_panel" | "vertical_store_offer_grid_item/dark_frame/offer_button" | "vertical_store_offer_grid_inside_frame" | "vertical_store_offer_grid_inside_frame/key_art_size_panel" | "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art_frame" | "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding/title" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding/creator_label" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/ratings" | "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" | "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" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/right_side_padding" | "vertical_store_coin_offer_grid_item" | "vertical_store_coin_offer_grid_item/frame" | "vertical_store_coin_offer_grid_item/frame/horizontal_stack_panel" | "vertical_store_coin_offer_grid_item/dark_frame" | "vertical_store_coin_offer_grid_item/dark_frame/horizontal_stack_panel" | "vertical_store_coin_offer_grid_item/dark_frame/offer_button" | "vertical_coin_offer_grid_inside_frame" | "vertical_coin_offer_grid_inside_frame/key_art_size_panel" | "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art_frame" | "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art" | "vertical_coin_offer_grid_inside_frame/padding" | "vertical_coin_offer_grid_inside_frame/coin_panel" | "vertical_coin_offer_grid_inside_frame/coin_panel/offer_coin_icon" | "vertical_coin_offer_grid_inside_frame/Minecoins_panel" | "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel" | "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding" | "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel" | "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel/minecoins_offer_status_text" | "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding" | "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding/title" | "offer_prompt_panel" | "offer_prompt_panel/coin_panel" | "offer_prompt_panel/coin_panel/offer_coin_icon" | "offer_prompt_panel/padding_3" | "offer_prompt_panel/offer_status_text_panel" | "offer_prompt_panel/offer_status_text_panel/offer_status_text" | "store_offer_grid_item" | "store_offer_grid_item/frame" | "store_offer_grid_item/frame/key_art" | "store_offer_grid_item/frame/key_art/key_art_frame" | "store_offer_grid_item/frame/key_art/csb_plus_expiration_banner" | "store_offer_grid_item/frame/progress_loading" | "store_offer_grid_item/frame/progress" | "store_offer_grid_item/frame/durable_offer_info_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack" | "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/title" | "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/creator_label" | "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/offer_price_info_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/no_durable_status_padding" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel/markdown_banner" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/ratings" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rating_count_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel/sale_timer" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_2" | "store_offer_grid_item/frame/offer_button" | "thumbnail_only_offer" | "thumbnail_only_offer/frame" | "thumbnail_only_offer/frame/key_art" | "thumbnail_only_offer/frame/key_art/key_art_frame" | "thumbnail_only_offer/frame/key_art/offer_coin_icon" | "thumbnail_only_offer/frame/offer_button" | "store_section_header_label" | "persona_store_row_offer" | "persona_store_row_offer/persona_offer" | "thumnail_only_row_offer" | "thumnail_only_row_offer/generic_store_offer" | "generic_store_row_offer_panel" | "generic_store_row_offer_panel/generic_store_offer" | "store_row_show_more_button_panel" | "store_row_show_more_button_panel/show_more_button" | "persona_show_more_button_panel" | "persona_show_more_button_panel/show_more_button" | "persona_grid_panel_stack" | "persona_grid_panel_stack/default_piece_button" | "persona_grid_panel_stack/persona_grid_panel" | "persona_grid_panel" | "persona_grid_panel/persona_offer_grid" | "store_offer_grid_factory" | "non_collection_item_horizontal_padding" | "horizontal_store_offer_row_factory" | "recently_viewed_row_panel" | "static_offer_row_panel" | "static_offer_row_panel/store_row_dropdown_panel" | "static_offer_row_panel/store_row_dropdown_panel/store_row_section_panel" | "store_row_panel" | "store_row_panel/store_row_dropdown_panel" | "store_row_panel/store_row_dropdown_panel/store_row_section_panel" | "vertical_store_row_panel" | "style_header" | "style_header/background" | "style_header/style_header" | "style_header_panel" | "style_header_panel/row_header" | "style_header_panel/row_header/label_panel" | "style_header_panel/row_header/label_panel/indent" | "style_header_panel/row_header/label_panel/row_header_label_centering_panel" | "style_header_panel/row_header/label_panel/row_header_label_centering_panel/row_header_label" | "style_header_panel/row_header/label_panel/on_sale_banner" | "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel" | "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label" | "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/triangle" | "style_header_panel/row_header/label_panel/time_remaining_label" | "style_header_panel/row_carousel_padding" | "store_row_cycle_button_panel" | "store_row_cycle_button_panel/cycle_button_panel" | "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel" | "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel/page_indicator" | "store_row" | "store_row/carousel_panel" | "store_row/carousel_panel/progress_loading" | "store_row/carousel_panel/cycle_pack_horizontal_stack" | "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_left_button_panel" | "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel" | "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel/offer_grid" | "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_right_button_panel" | "store_row/divider" | "page_indicator_panel" | "page_indicator_panel/first_of_three" | "page_indicator_panel/second_of_three" | "page_indicator_panel/third_of_three" | "page_indicator_panel/first_of_two" | "page_indicator_panel/second_of_two" | "page_indicator" | "popup_dialog__no_store_connection" | "popup_dialog__no_store_connection/popup_dialog_bg" | "popup_dialog__no_store_connection/popup_dialog_message" | "popup_dialog__no_store_connection/popup_dialog_middle_button" | "popup_dialog__restore_popup" | "popup_dialog__restore_popup/popup_dialog_bg" | "popup_dialog__restore_popup/popup_dialog_message" | "popup_dialog__restore_failed" | "popup_dialog__restore_failed/popup_dialog_bg" | "popup_dialog__restore_failed/popup_dialog_message" | "popup_dialog__restore_failed/popup_dialog_middle_button" | "suggested_content_offers_grid_item" | "suggested_content_offers_grid_item/frame" | "suggested_content_offers_grid_item/frame/key_art" | "suggested_content_offers_grid_item/frame/key_art/key_art_frame" | "suggested_content_offers_grid_item/frame/progress_loading" | "suggested_content_offers_grid_item/frame/progress" | "suggested_content_offers_grid_item/frame/title_label_panel" | "suggested_content_offers_grid_item/frame/title_label_panel/title" | "suggested_content_offers_grid_item/frame/title_label_panel/offer_type" | "suggested_content_offers_grid_item/frame/offer_button" | "suggested_content_offers_grid_item/frame/offer_button/hover" | "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel" | "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame" | "suggested_content_offers_grid_item/frame/offer_button/pressed" | "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel" | "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame" | "suggested_content_offers_grid" | "more_suggested_content_offers_button" | "suggested_content_offers_panel_base" | "suggested_content_offers_panel_base/content" | "suggested_content_offers_panel_base/content/suggested_content_offers_grid" | "suggested_content_offers_panel_base/content/more_suggested_content_offers_button" | "suggested_content_offers_panel_base/progress_loading" | "suggested_content_offers_panel_3x1" | "suggested_content_offers_panel_4x1" | "search_text_box_panel" | "search_text_box_panel/search_text_box" | "search_text_box_panel/clear_button" | "search_text_box_panel/loading_spinner" | "search_label_panel" | "search_label_panel/offset_panel" | "search_label_panel/offset_panel/label" | "error_text_panel" | "error_text_panel/error_text_content" | "error_text_panel/error_text_content/top_padding" | "error_text_panel/error_text_content/label_panel" | "error_text_panel/error_text_content/bottom_padding" | "results_text_panel" | "results_text_panel/results_panel" | "results_text_panel/results_panel/top_padding" | "results_text_panel/results_panel/results_content" | "results_text_panel/results_panel/results_content/label_panel" | "results_text_panel/results_panel/results_content/mid_padding" | "results_text_panel/results_panel/results_content/results_close_centering_panel" | "results_text_panel/results_panel/results_content/results_close_centering_panel/results_close_button" | "results_text_panel/results_panel/results_content/right_padding" | "results_text_panel/results_panel/bottom_padding" | "filter_logo_content_panel" | "filter_logo_content_panel/filter_logo_image" | "filter_logo_content_panel/filter_count_label" | "filter_sort_toggle" | "filter_sort_submenu_scrolling_panel_section" | "filter_sort_submenu_scrolling_panel_section/submenu_scrolling_panel" | "filter_sort_grid_panel" | "filter_sort_grid_panel/filter_sort_grid" | "sort_button_content_panel" | "search_panel_filter" | "search_panel_filter/search_text_box" | "search_panel_filter/filter_button" | "search_panel_filter/sort_button" | "search_results_and_error_stack" | "search_results_and_error_stack/mid_padding_1" | "search_results_and_error_stack/error_text_panel" | "search_results_and_error_stack/mid_padding_2" | "search_results_and_error_stack/results_text_panel" | "search_panel" | "search_panel/search_panel_content" | "search_panel/search_panel_content/search_text_box" | "search_panel/search_panel_content/search_results_and_error_panel" | "search_panel/search_panel_content/bottom_padding" | "search_and_offer_content" | "search_and_offer_content/search_and_offer_panel" | "search_and_offer_content/search_and_offer_panel/search_and_offer_content" | "search_and_offer_content/search_and_offer_panel/search_and_offer_content/top_padding" | "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel" | "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel/upper_section" | "search_and_offer_content/search_and_offer_panel/search_and_offer_content/search_panel" | "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel" | "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel/offer_content" | "search_and_offer_content/search_and_offer_panel/search_and_offer_content/bottom_padding" | "search_object" | "search_object/search_object_content" | "sort_and_filter_menu_modal_panel" | "sort_and_filter_menu_modal_panel/filter_menu" | "sort_and_filter_menu_modals" | "sort_and_filter_menu_modals/filter_menu_modal" | "sort_and_filter_menu_modals/sort_menu_panel" | "search_filter_sort_background" | "search_filter_background_panel" | "search_filter_background_panel/search_filter_sort_background" | "close_bg_button" | "close_bg_button/default" | "close_bg_button/hover" | "close_bg_button/pressed" | "close_bg_panel" | "close_bg_panel/header_close_button" | "close_bg_panel/main_close_button" | "vertical_line_divider_row" | "vertical_line_divider_row/vert_line_divider_row_top_buffer" | "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding" | "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_left_buffer" | "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vertical_line_divider_row_line" | "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_right_buffer" | "vertical_line_divider_row/vert_line_divider_row_bottom_buffer" | "sdl_dropdown_header_row_button" | "sdl_subcategory_button" | "sdl_dropdown_header_row" | "sdl_dropdown_header_row/drowdown_header_row_content" | "sdl_dropdown_header_row/drowdown_header_row_content/button_aspects" | "sdl_dropdown_data_row" | "sdl_dropdown_data_row/row_background" | "sdl_dropdown_data_row/button_aspects"; +export type StoreLayout = "sdl_scrolling_content_panel" | "sdl_scrolling_content_panel/sdl_scrolling_content_stack" | "sdl_scrolling_content_stack" | "sdl_scrolling_content_stack/padding_0" | "sdl_scrolling_content_stack/store_screen_layout_factory" | "sdl_scrolling_content_stack/footer" | "sdl_scrolling_section_panel" | "sdl_scrolling_section_panel/padding0" | "sdl_scrolling_section_panel/top_static_sdl_section" | "sdl_scrolling_section_panel/padding1" | "sdl_scrolling_section_panel/sdl_scrolling_section" | "sdl_scrolling_section" | "character_creator_sdl_scroll_section" | "character_creator_sdl_section" | "character_creator_sdl_section/sdl_section" | "character_creator_panel" | "character_creator_panel/left_main_panel_padding" | "character_creator_panel/character_creator_sdl_portion" | "character_creator_panel/middle_main_panel_padding" | "character_creator_panel/right_main_panel" | "character_creator_panel/right_main_panel_padding" | "character_creator_screen_layout" | "character_creator_screen_layout/character_creator_panel" | "main_panel" | "main_panel/background" | "main_panel/main_panel_content" | "main_panel/main_panel_content/sdl_screen_content" | "main_panel/progress_loading" | "nav_button_content" | "nav_button_content/image_panel" | "nav_button_content/small_padding" | "nav_button_content/label_panel" | "default_nav_label_panel" | "default_nav_label_panel/button_text_label" | "styled_nav_label_panel" | "styled_nav_label_panel/button_text_label" | "styled_nav_label_panel_minecraftTen" | "styled_nav_label_panel_minecraftTen/button_text_label" | "default_styled_button_text_label" | "nav_image_panel" | "nav_image_panel/button_image_panel" | "nav_image_panel/button_animated_panel" | "nav_button_image_panel" | "nav_button_image_panel/button_image" | "nav_button_image" | "nav_button_animation" | "nav_button_fill" | "nav_button_fill_styled" | "nav_button_fill_styled_mc10" | "nav_button_standard_styled" | "nav_button_standard_styled_mc10" | "nav_button_standard" | "nav_button_standard/nav_button" | "nav_button_grid_panel" | "nav_button_grid_panel/nav_button_grid" | "store_layout_ribbon_search_button" | "store_layout_ribbon_search_button_content" | "store_layout_ribbon_search_button_content/button_image" | "store_data_driven_screen_base" | "store_screen_modal_panel" | "store_screen_modal_panel/one_button_dialog" | "store_screen_modal_panel/popup_dialog_factory" | "dialog_button" | "store_screen_main_panel" | "store_screen_main_panel/main_content_view" | "store_screen_main_panel/sort_and_filter_modals" | "store_full_screen_content" | "store_full_screen_content/mouse_input_focus_panel" | "store_full_screen_content/screen_content" | "store_full_screen_content/screen_content/top_bar_section" | "store_full_screen_content/screen_content/main_panel" | "store_full_screen_content/screen_content/main_panel/main_panel_content" | "store_full_screen_content/popup_dialog_factory" | "store_full_screen_content/character_selector_dialog_factory" | "store_full_screen_content/custom_skin_dialog_factory" | "sdl_base_screen" | "character_creator_base_screen" | "store_data_driven_screen" | "character_creator_screen" | "dressing_room_color_picker_screen" | "expanded_appearance_view_screen" | "non_scrollable_sdl_screen" | "skin_selector_screen" | "store_data_driven_modal_one_button_screen"; +export type FilterMenu = "filter_clear_button_panel" | "filter_clear_button_panel/clear_button" | "chevron_icon_panel" | "chevron_icon_panel/chevron_icon" | "filter_variables_panel" | "filter_option_button_content" | "filter_option_button_content/left_chevron_icon_panel" | "filter_option_button_content/filter_type_and_selected_panel" | "filter_option_button_content/filter_type_and_selected_panel/top_padding" | "filter_option_button_content/filter_type_and_selected_panel/filter_type_label" | "filter_option_button_content/filter_type_and_selected_panel/middle_padding" | "filter_option_button_content/filter_type_and_selected_panel/selected_label" | "filter_option_button_content/filter_type_and_selected_panel/bottom_padding" | "filter_option_button_content/right_chevron_icon_panel" | "filter_options_button_panel" | "filter_options_button_panel/filter_variables_panel" | "filter_options_button_panel/filter_variables_panel/filter_options_button" | "filter_main_menu_options_button_panel" | "filter_title_bar_content" | "filter_title_bar_content/filter_logo_and_count_panel" | "filter_title_bar_content/centered_filter_title_label" | "filter_title_bar_content/centered_filter_title_label/filter_title_label" | "filter_title_bar_content/filter_title_padding_close_button" | "filter_title_bar_content/centered_x" | "filter_title_bar_content/centered_x/close_x_image" | "filter_title_bar" | "filter_checkbox_toggle" | "filter_checkbox_no_icon_toggle" | "filter_checkbox_no_icon_toggle/filter_checkbox_no_icon_toggle" | "pack_type_sub_menu_panel" | "pack_type_sub_menu_panel/pack_type_sub_menu" | "pack_type_sub_menu_panel/pack_type_sub_menu/addon_packs_filter" | "pack_type_sub_menu_panel/pack_type_sub_menu/skin_packs_filter" | "pack_type_sub_menu_panel/pack_type_sub_menu/texture_packs_filter" | "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel" | "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/worlds_template_filter" | "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/world_template_type_filters" | "pack_type_sub_menu_panel/pack_type_sub_menu/mashup_packs_filter" | "offer_type_sub_menu_panel" | "offer_type_sub_menu_panel/bundles_filter" | "offer_type_sub_menu_panel/realms_plus_filter" | "offer_type_sub_menu_panel/csb_filter" | "realms_plus_filter" | "realms_plus_filter/realms_plus_filter" | "csb_filter" | "csb_filter/csb_filter" | "realms_plus_gradient_content_panel" | "realms_plus_gradient_content_panel/gradient" | "realms_plus_gradient_content_panel/particles" | "realms_plus_gradient_content_panel/content_panel" | "csb_gradient_content_panel" | "csb_gradient_content_panel/gradient" | "csb_gradient_content_panel/particles" | "csb_gradient_content_panel/content_panel" | "filter_section_content" | "filter_section_content/section_title_button" | "filter_section_content/clear_button" | "filter_section_content/section_sub_menu" | "filter_section_content_dynamic" | "filter_section_content_dynamic/filter_section_content" | "filter_main_menu_content" | "filter_main_menu_content/filter_title_bar_panel" | "filter_main_menu_content/offer_type_button" | "filter_main_menu_content/pack_type_button" | "filter_main_menu_content/minecoin_button" | "filter_main_menu_content/rating_button" | "filter_main_menu_content/creator_button" | "filter_main_menu_content/graphics_button" | "filter_main_menu_content/installed_state_button" | "filter_main_menu_content/filter_main_menu_filter_toggles_section" | "filter_main_menu_content/filter_main_menu_filter_toggles_section/filter_main_menu_filter_toggle_grid_panel" | "filter_main_menu_content/clear_button_panel" | "filter_main_menu_content_persona" | "filter_main_menu_content_persona/filter_title_bar_panel" | "filter_main_menu_content_persona/persona_body_button" | "filter_main_menu_content_persona/persona_style_button" | "filter_main_menu_content_persona/emote_filter_section" | "filter_main_menu_content_persona/emote_filter_section/filter_emote_toggle_grid_panel" | "filter_main_menu_content_persona/minecoin_button" | "filter_main_menu_content_persona/clear_button_panel" | "filter_section_content_panel" | "filter_section_content_panel/filter_menu_screen" | "filter_main_menu_section" | "filter_main_menu_section_persona" | "filter_pack_type_section" | "filter_offer_type_section" | "filter_type_section" | "filter_menu_content" | "filter_menu_content/filter_main_menu_screen" | "filter_menu_content/filter_offer_type_screen" | "filter_menu_content/filter_pack_type_screen" | "filter_menu_content/filter_minecoin_section" | "filter_menu_content/filter_rating_section" | "filter_menu_content/filter_creator_section" | "filter_menu_content/filter_graphics_section" | "filter_menu_content/filter_installed_state_section" | "filter_menu_content_persona" | "filter_menu_content_persona/filter_main_menu_screen" | "filter_menu_content_persona/filter_style_section" | "filter_menu_content_persona/filter_body_section" | "filter_menu_content_persona/filter_minecoin_section" | "filter_menu_panel" | "filter_menu_panel/top_padding" | "filter_menu_panel/alignment_panel" | "filter_menu_panel/alignment_panel/left_padding" | "filter_menu_panel/alignment_panel/filter_menu_content_scroll" | "filter_menu_panel/alignment_panel/right_padding" | "filter_menu_screen_content" | "filter_menu_screen_content/filter_main_panel" | "filter_menu_screen_content/filter_main_panel_persona" | "filter_menu_screen_content/filter_menu_close_background_button"; +export type StoreInventory = "sign_in_button" | "no_xbl_and_local_content_warning_panel" | "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel" | "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel" | "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack" | "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/top_padding" | "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" | "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" | "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" | "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" | "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" | "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" | "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" | "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" | "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" | "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" | "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" | "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding" | "no_xbl_and_local_content_warning_panel/bottom_padding" | "no_xbl_and_no_local_conent_warning_panel" | "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel" | "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel" | "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/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/top_padding" | "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" | "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" | "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" | "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" | "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" | "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" | "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" | "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" | "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" | "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" | "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" | "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding" | "no_xbl_and_no_local_conent_warning_panel/bottom_padding" | "inventory_sign_in_panel" | "inventory_sign_in_panel/no_xbl_and_local_content_warning_panel" | "inventory_sign_in_panel/no_xbl_and_no_local_conent_warning_panel" | "divider_panel" | "divider_panel/top_pad" | "divider_panel/divider" | "divider_panel/bottom_pad" | "right_image" | "down_image" | "section_toggle_base" | "owned_toggle" | "current_toggle" | "removed_toggle" | "subscriptions_toggle" | "inventory_left_panel" | "inventory_left_panel/top_pad" | "inventory_left_panel/owned_toggle" | "inventory_left_panel/owned_dropdown_box_panel" | "inventory_left_panel/owned_dropdown_box_panel/owned_dropdown_box" | "inventory_left_panel/divider_0" | "inventory_left_panel/csub_panel" | "inventory_left_panel/csub_panel/csub_stack_panel" | "inventory_left_panel/divider_1" | "inventory_left_panel/subscriptions_toggle" | "csub_stack_panel" | "csub_stack_panel/padding_title_vertical" | "csub_stack_panel/section_title" | "csub_stack_panel/section_title/padding_title_horizontal" | "csub_stack_panel/section_title/testTitle" | "csub_stack_panel/dropdown_panel" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2" | "subscriptions_text_panel" | "subscriptions_text_panel/subscriptions_text" | "realms_plus_stack_panel" | "realms_plus_stack_panel/section_title" | "realms_plus_stack_panel/section_title/border" | "realms_plus_stack_panel/section_title/section_title_label" | "realms_plus_stack_panel/section_title/particles" | "realms_plus_stack_panel/dropdown_panel" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_0" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2" | "dropdown_button_content" | "dropdown_button_content/title_label" | "dropdown_button_content/pad_0_fill" | "dropdown_button_content/pad_0" | "dropdown_button_content/icon_panel" | "dropdown_button_content/icon_panel/block_icon" | "dropdown_button_content/pad_1" | "dropdown_button_content/pad_2" | "dropdown_button_content/count_panel" | "dropdown_button_content/count_panel/count" | "dropdown_button_content/pad_3" | "dropdown_button_content/right_carrot" | "dropdown_button_content/right_carrot/right" | "dropdown_button_content/down_carrot" | "dropdown_button_content/down_carrot/down" | "owned_dropdown_content" | "current_dropdown_content" | "removed_dropdown_content" | "dropdown_box" | "dropdown_box/top_pad" | "dropdown_box/all" | "dropdown_box/divider_0" | "dropdown_box/addons" | "dropdown_box/divider_1" | "dropdown_box/skins" | "dropdown_box/divider_2" | "dropdown_box/worlds" | "dropdown_box/divider_3" | "dropdown_box/textures" | "dropdown_box/divider_4" | "dropdown_box/mashups" | "dropdown_box/bottom_pad" | "category_panel_button" | "category_panel_button/default" | "category_panel_button/hover" | "category_panel_button/pressed" | "category_stack_panel" | "category_stack_panel/text" | "category_stack_panel/fill_pad" | "category_stack_panel/icon" | "category_stack_panel/pad_1" | "category_stack_panel/number" | "search_object" | "list_panel" | "list_panel/list_panel_content" | "list_panel/list_panel_content/search_and_offers_grid_scroll_panel" | "list_panel/progress_loading" | "items_content_section" | "subscriptions_content_section" | "subscriptions_content_section/left_pad" | "subscriptions_content_section/search_and_offers_grid_scroll_panel" | "right_pane_factory" | "content_area" | "content_area/control" | "content_area/control/right_pane_factory" | "main_panel" | "main_panel/inventory_left_panel" | "main_panel/inventory_left_panel/inventory_left_image" | "main_panel/inventory_left_panel/left_scrolling_panel" | "main_panel/divider_panel" | "main_panel/divider_panel/main_divider" | "main_panel/inventory_right_panel" | "main_panel/inventory_right_panel/right_panel_background_image" | "main_panel/inventory_right_panel/content_right_panel" | "store_inventory_screen_main_panel" | "store_inventory_screen_main_panel/main_content_view" | "store_inventory_screen_main_panel/sort_and_filter_modals" | "store_search_screen_content" | "store_search_screen_content/main_panel" | "store_search_screen_content/popup_dialog_factory" | "store_inventory_screen" | "signin_text_section_body" | "signin_text" | "signin_text_02" | "signin_text_section" | "signin_text_section/signin_text" | "signin_text_section/line_1_padding_line_2" | "signin_text_section/signin_text_02" | "sign_in_panel_text_body"; +export type StoreItemList = "store_offer_key_art" | "main_panel" | "main_panel/search_object" | "main_panel/progress_loading" | "scrolling_content_stack" | "scrolling_content_stack/search_panel" | "store_offer_grid" | "persona_offer_grid" | "vertical_store_offer_grid" | "store_offer_title" | "store_offer_grid_item" | "store_offer_grid_item/frame" | "store_offer_grid_item/frame/key_art" | "store_offer_grid_item/frame/key_art/key_art_frame" | "store_offer_grid_item/frame/key_art/csb_expiration_banner" | "store_offer_grid_item/frame/progress" | "store_offer_grid_item/frame/title_label_panel" | "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label" | "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/title" | "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/creator_label" | "store_offer_grid_item/frame/durable_offer_info_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6" | "store_offer_grid_item/frame/offer_button" | "store_offer_grid_item/frame/offer_button/hover" | "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel" | "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame" | "store_offer_grid_item/frame/offer_button/pressed" | "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel" | "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame" | "store_offer_grid_item/frame/offer_button/offer_status_icon" | "store_screen_content" | "store_screen_content/main_panel" | "store_screen_content/popup_dialog_factory"; +export type StoreProgress = "store_progress_screen" | "screen_content" | "screen_content/title_image" | "screen_content/progress_dialog" | "dialog_content" | "dialog_content/tooltip_panel" | "dialog_content/tooltip_panel/tooltip_text" | "dialog_content/padding" | "dialog_content/progress_panel" | "dialog_content/progress_panel/empty_progress_bar" | "dialog_content/progress_panel/progress_percent_panel" | "dialog_content/progress_panel/progress_percent_panel/full_progress_bar" | "dialog_content/progress_panel/progress_percent_panel/progress_bar_nub" | "screen_background"; +export type PromoTimeline = "promo_banner_factory" | "promo_banner_button_content" | "promo_banner_button_content/promo_banner_button" | "promo_banner_button_content/progress_loading_spinner" | "promo_banner_image" | "promo_banner_panel_content" | "promo_banner_panel_content/banner_image" | "promo_banner_panel_content/banner_text_panel" | "promo_banner_panel_content/banner_text_panel/padding_0" | "promo_banner_panel_content/banner_text_panel/title_stack_panel" | "promo_banner_panel_content/banner_text_panel/title_stack_panel/banner_title" | "promo_banner_panel_content/banner_text_panel/description" | "promo_banner_panel_content/button_stack_panel" | "promo_banner_panel_content/button_stack_panel/left_offset" | "promo_banner_panel_content/button_stack_panel/banner_button" | "promo_banner_panel_content/button_stack_panel/right_offset" | "promo_banner_holiday_panel" | "promo_banner_holiday_panel/banner_full_button" | "promo_banner_holiday_panel/banner_full_button/default" | "promo_banner_holiday_panel/banner_full_button/hover" | "promo_banner_holiday_panel/banner_full_button/pressed" | "image_message_panel" | "image_message_panel/image_message_row_content" | "image_message_panel/padding_0" | "image_message_row_content" | "image_message_row_content/gray_background" | "image_message_row_content/gray_background/message_text" | "image_message_row_content/gray_background/row_image" | "image_message_row_content/row_button" | "promo_image_panel" | "promo_image_panel/button_image_panel" | "promo_image_panel/button_animated_panel" | "promo_button_image_panel" | "promo_button_image_panel/button_image" | "promo_button_image" | "promo_button_animation" | "banner_button" | "sdl_text_aligned_panel" | "sdl_text_minecraftTen_aligned_panel" | "sdl_content_aligned_panel" | "sdl_content_aligned_panel/left__padding_panel" | "sdl_content_aligned_panel/control" | "sdl_content_aligned_panel/right_padding_panel" | "sdl_aligned_text" | "sdl_aligned_minecraftTen_text" | "colored_direction_button_panel" | "colored_direction_button_panel/chevron_image" | "left_corner_art" | "right_corner_art" | "promo_landing_panel" | "promo_landing_panel/promo_landing_panel_content" | "promo_landing_panel/promo_landing_panel_content/promo_top" | "promo_landing_panel/promo_landing_panel_content/pad_0" | "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel" | "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom" | "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel" | "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/left_button_panel" | "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/left_button_panel/left_button" | "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/offer_grid" | "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel" | "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel/right_button" | "promo_landing_panel/promo_landing_panel_content/pad_1" | "promo_landing_panel/left_corner_art" | "promo_landing_panel/right_corner_art" | "promotion_screen_top_section" | "promotion_screen_top_section/main_panel" | "promotion_top_main_panel" | "promotion_top_main_panel/promotion_top_main_stack" | "promotion_top_main_panel/promotion_top_main_stack/main_panel_title" | "promotion_top_main_panel/promotion_top_main_stack/promo_single_top" | "promotion_top_main_panel/promotion_top_main_stack/promo_single_top/single_item_view" | "promotion_top_main_panel/promotion_top_main_stack/promo_multi_item" | "main_panel_title" | "main_panel_title/padding_0" | "main_panel_title/header_stack" | "main_panel_title/header_stack/padding_0" | "main_panel_title/header_stack/back_button_centering_panel" | "main_panel_title/header_stack/back_button_centering_panel/button" | "main_panel_title/header_stack/padding_1" | "main_panel_title/header_stack/header_panel" | "main_panel_title/header_stack/header_panel/title_and_description" | "main_panel_title/header_stack/padding_2" | "main_panel_title/header_stack/claim_all_button_panel" | "main_panel_title/header_stack/claim_all_button_panel/claim_all_button" | "main_panel_title/padding_1" | "main_panel_title/divdier_centering_panel" | "main_panel_title/divdier_centering_panel/divider" | "main_panel_title/padding_2" | "promo_multi_item_grid" | "promo_button" | "promo_button/default" | "promo_button/default/key_art_size_panel" | "promo_button/default/key_art_size_panel/key_art_frame" | "promo_button/default/key_art_size_panel/key_art_frame/sizing_panel" | "promo_button/default/key_art_size_panel/key_art_frame/platform_restricted_warning_image" | "promo_button/default/key_art_size_panel/button_frame" | "promo_button/hover" | "promo_button/hover/key_art_size_panel" | "promo_button/hover/key_art_size_panel/key_art_frame" | "promo_button/hover/key_art_size_panel/key_art_frame/sizing_panel" | "promo_button/hover/key_art_size_panel/button_frame" | "promo_button/pressed" | "promo_button/pressed/key_art_frame" | "promo_button/pressed/key_art_frame/sizing_panel" | "promo_button/pressed/button_frame" | "promo_grid_item" | "promo_grid_item/background_image" | "promo_grid_item/background_image/promo_content" | "promo_grid_item/promo_button" | "promo_grid_item/platform_restricted_error_multi_item" | "platform_restricted_error" | "platform_restricted_error/platform_restricted_error_button" | "platform_restricted_error/platform_restricted_error_button/default" | "platform_restricted_error/platform_restricted_error_button/hover" | "platform_restricted_error/platform_restricted_error_button/pressed" | "platform_restricted_error/platform_restricted_error_button/white_overlay_to_gray_out" | "promo_grid_item_content" | "promo_grid_item_content/thumbnail_image" | "promo_grid_item_content/persona_key_art_frame" | "promo_grid_item_content/persona_key_art_frame/persona_image_panel" | "promo_grid_item_content/persona_key_art_frame/background" | "promo_grid_item_content/persona_key_art_frame/rarity_bar_panel" | "promo_grid_item_content/padding_0" | "promo_grid_item_content/title_tooltip" | "promo_grid_item_content/title_tooltip/promo_title" | "promo_grid_item_content/title_tooltip/tooltip" | "promotion_period_grid_panel" | "promotion_period_grid_panel/promotion_offer_grid_image" | "promotion_period_grid_panel/promotion_offer_grid_image/item_selected_bg" | "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel" | "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel" | "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel/day_label" | "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/pad" | "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel" | "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel" | "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel/item_button" | "promotion_period_offer_panel" | "promotion_period_offer_panel/period_1" | "promotion_period_offer_panel/padding_0" | "promotion_period_offer_panel/period_2" | "promotion_period_offer_panel/padding_1" | "promotion_period_offer_panel/period_3" | "promotion_period_offer_panel/padding_2" | "promotion_period_offer_panel/period_4" | "promotion_period_offer_panel/padding_3" | "promotion_period_offer_panel/period_5" | "promotion_period_offer_panel/padding_4" | "promotion_period_offer_panel/period_6" | "promotion_period_offer_panel/padding_5" | "promotion_period_offer_panel/period_7" | "toggle_button_control" | "toggle_button_control/green_check" | "toggle_button_control/key_art_image_panel" | "toggle_button_control/key_art_image_panel/image_loading_panel" | "toggle_button_control/key_art_image_panel/key_art_image" | "checked_border" | "promotion_period_grid_item" | "promotion_period_grid_item/frame" | "promotion_period_grid_item/frame/offer_button" | "promotion_period_grid_item/frame/offer_button/offer_toggle_button" | "vertical_padding_2px" | "timer_icon_tooltip_panel" | "timer_icon_tooltip_panel/limited_status_image" | "timer_tooltip_panel_right_extending" | "timer_tooltip_panel_right_extending/default" | "timer_tooltip_panel_right_extending/hover" | "timer_tooltip_panel_right_extending/pressed" | "timer_tooltip_panel_left_extending" | "timer_tooltip_panel_left_extending/default" | "timer_tooltip_panel_left_extending/hover" | "timer_tooltip_panel_left_extending/pressed" | "no_timer_tooltip_panel" | "no_timer_tooltip_panel/default" | "no_timer_tooltip_panel/hover" | "no_timer_tooltip_panel/pressed" | "promo_timer_panel" | "promo_timer_panel/timer_icon_and_tooltip_panel" | "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_right_extending" | "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_left_extending" | "promo_timer_panel/timer_icon_and_tooltip_panel/notooltip_button" | "promo_timer_panel/timer_icon_and_tooltip_panel/timer_icon" | "promo_timer_panel/padding" | "promo_timer_panel/timer_text" | "offer_title_panel" | "offer_title_panel/offer_title_label" | "title_and_author_panel" | "title_and_author_panel/author_button_panel" | "title_and_author_panel/author_button_panel/summary_author_button" | "glyph_panel" | "glyph_panel/item_glyph_count_panel" | "glyph_panel/item_glyph_count_panel/glyph_icon_panel" | "glyph_panel/item_glyph_count_panel/glyph_icon_panel/glyph_icon" | "glyph_panel/item_glyph_count_panel/center_item_glyph_padding" | "glyph_panel/item_glyph_count_panel/item_glyph_count_panel_label" | "glyph_panel/item_glyph_count_panel/item_glyph_panel_padding" | "vertical_glyph_section_content" | "vertical_glyph_section_content/glyph_content" | "vertical_glyph_section_content/bottom_glyph_content_padding" | "glyph_section_panel" | "glyph_section_panel/glyphs" | "glyph_section_panel/glyphs/skin_glyph_section" | "glyph_section_panel/glyphs/world_glyph_section" | "glyph_section_panel/glyphs/resource_pack_glyph_section" | "vertical_glyph_section_panel" | "image_glyphs_panel" | "image_glyphs_panel/world_panel" | "image_glyphs_panel/world_panel/border" | "image_glyphs_panel/world_panel/world_key_image" | "image_glyphs_panel/persona_panel" | "image_glyphs_panel/persona_panel/border" | "image_glyphs_panel/persona_panel/persona_image" | "image_glyphs_panel/persona_panel/background" | "image_glyphs_panel/persona_panel/rarity_bar_panel" | "image_glyphs_panel/divider" | "image_glyphs_panel/info" | "image_glyphs_panel/info/summary_title_and_author_panel" | "image_glyphs_panel/info/glyph_section" | "image_glyphs_panel/info/glyph_section/glyph_section_panel" | "promo_lower_button_content" | "promo_lower_button_content/promo_banner_button" | "promo_lower_button_content/progress_loading_spinner" | "free_discount_label" | "promo_upper_button_content" | "promo_upper_button_content/markdown" | "promo_upper_button_content/markdown/sales_banner_offset_panel" | "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel" | "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel/markdown_banner" | "promo_upper_button_content/markdown/price_markdown_panel" | "promo_upper_button_content/markdown/price_markdown_panel/offer_price" | "promo_upper_button_content/markdown/price_markdown_panel/offer_price/text_strike_through" | "promo_upper_button_content/promo_item_action_text_panel" | "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel" | "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/platform_restricted_warning_image" | "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/padding" | "promo_upper_button_content/promo_item_action_text_panel/promo_item_action_text" | "promo_upper_button_content/download_progress_bar" | "description_section_panel" | "description_section_panel/contents_description" | "offset_title_offer" | "offset_title_offer/pad_0" | "offset_title_offer/title_panel" | "offset_promo_timer" | "offset_promo_timer/pad_0" | "offset_promo_timer/promo_timer" | "offset_image_glyphs_panel" | "offset_image_glyphs_panel/pad_0" | "offset_image_glyphs_panel/smaller_panel" | "offset_image_glyphs_panel/smaller_panel/details" | "offset_image_glyphs_panel/smaller_panel/description" | "promo_pack_detail_panel" | "promo_pack_detail_panel/offset_title_panel" | "promo_pack_detail_panel/offsetted_promo_timer" | "promo_pack_detail_panel/pad_0" | "promo_pack_detail_panel/offsetted_details" | "promo_pack_detail_panel/pad_1" | "promo_left_inner_top_scrolling_content" | "promo_left_inner_top_scrolling_content/details" | "promo_left_inner_top" | "promo_left_inner_top/top" | "promo_left_inner_top/padding2" | "promo_left_inner_bottom" | "promo_left_inner_bottom/banner_button_top_panel" | "promo_left_inner_bottom/banner_button_top_panel/banner_button_top" | "promo_left_inner_bottom/banner_button_top_panel/platform_restricted_error_single_item" | "promo_left_inner_bottom/banner_button_bottom" | "promo_left_panel" | "promo_left_panel/top" | "promo_left_panel/bottom_buttons_padded" | "promo_left_panel/bottom_buttons_padded/pad_0" | "promo_left_panel/bottom_buttons_padded/bottom" | "promo_left_panel/padding" | "promo_world_image_panel" | "promo_world_image_panel/image" | "promo_world_image_panel/image/key_image" | "promo_world_image_panel/image/key_image/border" | "promo_grey_bar_panel" | "promo_grey_bar_panel/grey_bar" | "promo_grey_bar_panel/green_bar" | "promo_grey_bar_panel/padding" | "promo_world_button_panel" | "promo_world_button_panel/pan_left_button" | "promo_world_button_panel/navigation_bar" | "promo_world_button_panel/navigation_bar/grey_bar" | "promo_world_button_panel/navigation_bar/grey_bar/grey_bar_factory_panel" | "promo_world_button_panel/pan_right_button" | "promo_world_panel" | "promo_world_panel/image" | "promo_world_panel/padding1" | "promo_world_panel/buttons" | "promo_world_panel/padding_3" | "promo_skin_panel" | "promo_skin_panel/size_control" | "promo_skin_panel/size_control/background" | "promo_skin_panel/size_control/skin_button" | "promo_skin_panel/size_control/skin_button/default" | "promo_skin_panel/size_control/skin_button/hover" | "promo_skin_panel/size_control/skin_button/pressed" | "promo_skin_panel/size_control/skin_button/content_panel" | "promo_skin_panel/size_control/skin_button/content_panel/paper_doll" | "promo_skin_grid_panel" | "promo_skin_grid_panel/promo_skin_pack_grid" | "promo_right_panel_scroll_content" | "promo_right_panel_scroll_content/world_screenshots_panel" | "promo_right_panel_scroll_content/world_screenshots_panel/world_panel" | "promo_right_panel_scroll_content/skin_image_panel" | "promo_right_panel_scroll_content/skin_image_panel/skin_panel" | "promo_right_panel_scroll_content/persona_preview" | "skin_scroll_panel" | "persona_classic_skin_grid_panel" | "persona_classic_skin_grid_panel/persona_skin_pack_category_grid" | "promo_right_panel" | "promo_detail_panel" | "promo_detail_panel/detail" | "promo_detail_panel/center_spacing" | "promo_detail_panel/right" | "promotion_skin_viewer_panel" | "promotion_skin_viewer_panel/popup_dialog_factory" | "promotion_skin_viewer_panel/character_loading_panel" | "promotion_skin_viewer_panel/skin_model_panel" | "promotion_skin_viewer_panel/skin_model_panel/skin_model" | "promotion_skin_viewer_panel/skin_model_panel/arrow_panel" | "promotion_skin_viewer_panel/skin_model_panel/arrow_panel/rotate_arrows" | "promo_popup_toast"; +export type StoreSaleItemList = "banner_header" | "banner_header/label_panel" | "banner_header/label_panel/on_sale_banner" | "banner_header/label_panel/on_sale_banner/padding_panel" | "banner_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label" | "banner_header/label_panel/on_sale_banner/padding_panel/triangle" | "banner_header/label_panel/time_remaining_label" | "sales_offer_content" | "sales_offer_content/top_padding" | "sales_offer_content/sales_panel" | "sales_offer_content/sales_panel/sales_banner_panel" | "sales_offer_content/sales_panel/top_sales_grid_padding" | "sales_offer_content/sales_panel/sales_grid_panel" | "sales_offer_content/sales_panel/sales_grid_panel/sales_offer_grid" | "all_offer_content" | "all_offer_content/store_offer_grid_panel"; +export type StoreSearch = "store_offer_grid_item" | "trending_row_content" | "trending_row_content/trending_row_panel" | "trending_row_content/trending_row_panel/trending_row_label_panel" | "trending_row_content/trending_row_panel/trending_row_label_panel/trending_row_label" | "trending_row_content/trending_row_panel/mid_padding" | "trending_row_content/trending_row_panel/trending_offers_grid" | "trending_row_content/trending_row_panel/bottom_padding" | "trending_rows_grid" | "search_offer_content" | "search_offer_content/trending_grid" | "search_offer_content/item_list_panel" | "search_offer_content/item_list_panel/item_list_grid" | "main_panel" | "main_panel/seach_object" | "main_panel/progress_loading" | "store_search_screen_content" | "store_search_screen_content/main_panel" | "store_search_screen_content/popup_dialog_factory" | "store_search_screen"; +export type SortMenu = "sort_menu_toggle_panel" | "sort_menu_toggle_panel/sort_menu_toggle_panel" | "sort_menu_toggle_panel/sort_menu_toggle_panel/sort_menu_toggle" | "sort_menu_first_button_content_panel" | "sort_menu_first_button_content_panel/left_padding" | "sort_menu_first_button_content_panel/centered_sort_logo_icon" | "sort_menu_first_button_content_panel/centered_sort_logo_icon/sort_logo_icon" | "sort_menu_first_button_content_panel/logo_padding_labels" | "sort_menu_first_button_content_panel/labels_stack_panel" | "sort_menu_first_button_content_panel/labels_stack_panel/top_padding" | "sort_menu_first_button_content_panel/labels_stack_panel/sort_const_word_top" | "sort_menu_first_button_content_panel/labels_stack_panel/middle_padding" | "sort_menu_first_button_content_panel/labels_stack_panel/current_sort_value_label_bottom" | "sort_menu_first_button_content_panel/labels_stack_panel/bottom_padding" | "sort_menu_first_button_content_panel/labels_padding_x_image" | "sort_menu_first_button_content_panel/x_image_panel" | "sort_menu_first_button_content_panel/x_image_panel/x_image" | "sort_menu_toggles" | "sort_menu_toggles/relevance_toggle_panel" | "sort_menu_toggles/relevance_toggle_panel/relevance_toggle" | "sort_menu_toggles/sort_toggle_grid" | "sort_menu_show" | "sort_menu_show/1st_button_centering_panel" | "sort_menu_show/1st_button_centering_panel/first_button_main" | "sort_menu_show/sort_scrolling_content_panel" | "sort_menu_panel" | "sort_menu_panel/top_padding" | "sort_menu_panel/alignment_panel" | "sort_menu_panel/alignment_panel/left_padding" | "sort_menu_panel/alignment_panel/sort_menu_show" | "sort_menu_panel/alignment_panel/right_padding" | "sort_menu_screen_content" | "sort_menu_screen_content/sort_menu_main" | "sort_menu_screen_content/sort_menu_main_persona" | "sort_menu_screen_content/sort_menu_background"; +export type StructureEditor = "small_padding" | "help_icon" | "common_text_label" | "text_edit_control" | "axis_selection_panel" | "axis_selection_panel/label" | "axis_selection_panel/edit_box" | "grid_axis_selection_panel" | "grid_axis_selection_panel/label_container" | "grid_axis_selection_panel/label_container/label" | "grid_axis_selection_panel/axis_grid" | "grid_axis_selection_panel/axis_grid/X" | "grid_axis_selection_panel/axis_grid/Y" | "grid_axis_selection_panel/axis_grid/Z" | "3d_export_button" | "save_button" | "export_button" | "load_button" | "detect_button" | "import_button" | "reset_button" | "help_button" | "toggle_option_panel" | "toggle_option_panel/toggle" | "toggle_option_panel/offset_0" | "toggle_option_panel/first_label_wrapper" | "toggle_option_panel/first_label_wrapper/first_label" | "toggle_option_panel/second_label_wrapper" | "toggle_option_panel/second_label_wrapper/second_label" | "include_entities_panel" | "include_entities_panel/label" | "include_entities_panel/toggle_wrapper" | "include_entities_panel/toggle_wrapper/toggle" | "waterlogging_panel" | "waterlogging_panel/label" | "waterlogging_panel/toggle_wrapper" | "waterlogging_panel/toggle_wrapper/toggle" | "show_bounding_box_panel" | "show_bounding_box_panel/label" | "show_bounding_box_panel/toggle_wrapper" | "show_bounding_box_panel/toggle_wrapper/toggle" | "include_player_panel" | "include_player_panel/label" | "include_player_panel/toggle_wrapper" | "include_player_panel/toggle_wrapper/toggle" | "remove_blocks_panel" | "remove_blocks_panel/label" | "remove_blocks_panel/toggle_wrapper" | "remove_blocks_panel/toggle_wrapper/toggle" | "3d_export_mode_panel" | "3d_export_mode_panel/size_offset_panel" | "3d_export_mode_panel/size_offset_panel/size_panel" | "3d_export_mode_panel/size_offset_panel/offset_panel" | "3d_export_mode_panel/offset_0" | "3d_export_mode_panel/offset_2" | "3d_export_mode_panel/remove_blocks" | "save_mode_panel" | "save_mode_panel/structure_name" | "save_mode_panel/size_offset_panel" | "save_mode_panel/size_offset_panel/size_panel" | "save_mode_panel/size_offset_panel/offset_panel" | "save_mode_panel/detect_offset" | "save_mode_panel/detect" | "save_mode_panel/include_entities_offset" | "save_mode_panel/include_entities" | "save_mode_panel/remove_blocks_offset" | "save_mode_panel/remove_blocks" | "save_mode_panel/redstone_save_offset" | "save_mode_panel/redstone_save_mode" | "save_mode_panel/trailing_offset" | "mirror_checkbox" | "mirror_checkbox/label" | "mirror_checkbox/padding" | "mirror_checkbox/check_box" | "mirror_checkboxes" | "mirror_checkboxes/mirror_checkbox_x" | "mirror_checkboxes/padding" | "mirror_checkboxes/mirror_checkbox_z" | "load_mode_panel" | "load_mode_panel/structure_name" | "load_mode_panel/offset_panel" | "load_mode_panel/include_entities_offset" | "load_mode_panel/include_entities" | "load_mode_panel/remove_blocks_offset" | "load_mode_panel/waterlog_blocks" | "load_mode_panel/waterlog_blocks_offset" | "load_mode_panel/remove_blocks" | "load_mode_panel/integrity_offset" | "load_mode_panel/integrity_label" | "load_mode_panel/integrity_field" | "load_mode_panel/offset_1" | "load_mode_panel/seed_label" | "load_mode_panel/seed_field" | "load_mode_panel/offset_2" | "load_mode_panel/rotation_slider" | "load_mode_panel/mirror_label" | "load_mode_panel/mirror_checkboxes_centerer" | "load_mode_panel/mirror_checkboxes_centerer/mirror_checkboxes" | "load_mode_panel/checkbox_offset" | "load_mode_panel/animation_mode" | "load_mode_panel/animation_time_label" | "load_mode_panel/animation_time_field" | "data_mode_panel" | "data_mode_panel/top_offset" | "data_mode_panel/data_label" | "data_mode_panel/data_label_offset" | "data_mode_panel/data_field" | "data_mode_panel/data_field_offset" | "corner_mode_panel" | "corner_mode_panel/structure_name" | "help_button_panel" | "help_button_panel/help" | "help_button_panel/help_divider" | "save_button_panel" | "save_button_panel/divider" | "save_button_panel/save" | "save_button_panel/save_divider" | "save_button_panel/export" | "save_button_panel/export_divider" | "save_button_panel/import_divider" | "save_button_panel/reset" | "save_button_panel/reset_divider" | "save_button_panel_no_export" | "save_button_panel_no_export/divider" | "save_button_panel_no_export/save" | "save_button_panel_no_export/save_divider" | "save_button_panel_no_export/reset" | "save_button_panel_no_export/reset_divider" | "load_button_panel" | "load_button_panel/divider" | "load_button_panel/load" | "load_button_panel/load_divider" | "load_button_panel/export_divider" | "load_button_panel/import" | "load_button_panel/import_divider" | "load_button_panel/reset" | "load_button_panel/reset_divider" | "load_button_panel_no_export" | "load_button_panel_no_export/divider" | "load_button_panel_no_export/load" | "load_button_panel_no_export/load_divider" | "load_button_panel_no_export/reset" | "load_button_panel_no_export/reset_divider" | "3d_export_button_panel" | "3d_export_button_panel/divider" | "3d_export_button_panel/3d_export" | "3d_export_button_panel/3d_export_divider" | "3d_export_button_panel/import" | "3d_export_button_panel/import_divider" | "3d_export_button_panel/reset" | "3d_export_button_panel/reset_divider" | "data_button_panel" | "data_button_panel/divider" | "data_button_panel/reset" | "data_button_panel/reset_divider" | "corner_button_panel" | "corner_button_panel/reset_divider" | "button_panel_wrapper" | "button_panel_wrapper/panel" | "button_panel_wrapper/panel/divider" | "button_panel_wrapper/panel/save_panel" | "button_panel_wrapper/panel/save_panel_no_export" | "button_panel_wrapper/panel/corner_panel" | "button_panel_wrapper/panel/load_panel_no_export" | "button_panel_wrapper/panel/load_panel" | "button_panel_wrapper/panel/3d_export_panel" | "button_panel_wrapper/panel/data_panel" | "button_panel_wrapper/panel/how_to_play_button" | "button_panel_wrapper/panel/end_divider" | "redstone_dropdown_content" | "redstone_save_mode_panel" | "animation_mode_dropdown_content" | "animation_mode_dropdown" | "structure_name_wrapper" | "structure_name_wrapper/structure_name" | "structure_name_wrapper/structure_name_offset" | "detect_button_wrapper" | "detect_button_wrapper/detect" | "detect_button_wrapper/detect_offset" | "mode_dropdown_content" | "mode_panel" | "scrolling_panel_wrapper" | "scrolling_panel_wrapper/scrolling_panel" | "scrolling_panel" | "scroll_panel_content" | "scroll_panel_content/content_stack_panel" | "scroll_panel_content/content_stack_panel/base_offset" | "scroll_panel_content/content_stack_panel/mode_panel" | "scroll_panel_content/content_stack_panel/mode_panel_offset" | "scroll_panel_content/content_stack_panel/3d_export_mode_panel" | "scroll_panel_content/content_stack_panel/save_mode_panel" | "scroll_panel_content/content_stack_panel/load_mode_panel" | "scroll_panel_content/content_stack_panel/data_mode_panel" | "scroll_panel_content/content_stack_panel/corner_mode_panel" | "scroll_panel_content/content_stack_panel/base_mode_offset" | "scroll_panel_content/content_stack_panel/show_bounding_box" | "scroll_panel_content/content_stack_panel/show_bounding_box_offset" | "scroll_panel_content/content_stack_panel/offset_2" | "left_divider_content" | "left_divider_content/scrolling_panel" | "save_message_text" | "save_message_text/save_message_label" | "import_message_text" | "import_message_text/save_message_label" | "import_failed_message_text" | "import_failed_message_text/save_message_label" | "export_disabled_label" | "image_panel_wrapper" | "image_panel_wrapper/image_panel" | "image_panel_wrapper/save_message_factory" | "image_panel_wrapper/import_message_factory" | "image_panel_wrapper/import_failed_message_factory" | "image_panel_wrapper/export_disabled" | "corner_text" | "corner_text/image_panel" | "image_panel" | "image_panel/border_indent" | "image_panel/border_indent/background_gradient" | "image_panel/border_indent/image_outline" | "image_panel/border_indent/structure_renderer" | "image_panel/border_indent/text_corner" | "image_panel/border_indent/progress_panel" | "image_panel/border_indent/rotate_arrows" | "progress_panel" | "progress_panel/stack_panel" | "progress_panel/stack_panel/label_wrapper" | "progress_panel/stack_panel/label_wrapper/progress_label" | "progress_panel/stack_panel/progress_bar" | "background_gradient" | "corner_text_panel" | "corner_text_panel/paragraph_1_corner" | "corner_text_panel/padding_1" | "corner_text_panel/paragraph_2_corner" | "structure_renderer" | "structure_renderer/renderer" | "black_border" | "rotation_arrows" | "right_divider_content" | "right_divider_content/base_offset" | "right_divider_content/preview" | "right_divider_content/image_offset" | "right_divider_content/button_wrapper" | "right_divider_content/button_wrapper/buttons" | "divider_content" | "divider_content/left_side" | "divider_content/right_side" | "structure_editor_content" | "structure_editor_content/background_panel" | "structure_editor_content/title" | "structure_editor_content/content" | "structure_editor_screen"; +export type SubmitFeedback = "send_feedback_button" | "write_feedback_panel" | "write_feedback_panel/pad_1" | "write_feedback_panel/write_feedback_label" | "write_feedback_panel/pad_2" | "write_feedback_panel/feedback_textbox" | "write_feedback_panel/remaining_characters_panel" | "write_feedback_panel/remaining_characters_panel/remaining_characters_count_label" | "scroll_panel" | "scroll_panel/write_feedback_panel" | "main_panel" | "main_panel/scrolling_panel" | "submit_feedback_screen" | "submit_feedback_content" | "submit_feedback_content/submit_feedback_main_panel" | "submit_feedback_content/progress_loading"; +export type TabbedUpsell = "padding_horizontal" | "padding_vertical" | "text_horizontal_padding" | "tabbed_upsell_buy_now_button" | "tabbed_buy_now_label" | "tabbed_buy_now_label/button_label" | "label_panel" | "label_panel/label_text" | "text_panel" | "text_panel/tab_content_title_panel" | "text_panel/tab_content_description_panel" | "text_panel/tab_content_description_panel_second" | "dialog_image" | "dialog_image_with_border" | "dialog_image_with_border/dialog_image" | "content_image_panel" | "content_image_panel/minecraft_dialog_image_with_border" | "content_image_panel/horizontal_padding_01" | "content_image_panel/scrolling_panel" | "scroll_text" | "image_panel" | "image_panel/dialog_image_with_border" | "image_panel/focus_image" | "top_tab" | "tab_navigation_panel_layout" | "tab_navigation_panel_layout/navigation_tabs" | "tab_navigation_panel_layout/navigation_tabs/content" | "common_tab_navigation_panel_layout" | "tabbed_tab_navigation_panel_layout" | "tabbed_tab_navigation_panel_layout/minecraft_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_01" | "tabbed_tab_navigation_panel_layout/xbl_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_02" | "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3" | "tabbed_tab_navigation_panel_layout/nav_padding_03" | "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4" | "tabbed_tab_navigation_panel_layout/nav_padding_04" | "tabbed_tab_navigation_panel_layout/server_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_05" | "tabbed_tab_navigation_panel_layout/store_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_06" | "tabbed_tab_navigation_panel_layout/creative_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_07" | "tabbed_tab_navigation_panel_layout/packs_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_08" | "tabbed_tab_navigation_panel_layout/seeds_navigation_tab" | "tabbed_tab_content_panel_layout" | "tabbed_tab_content_panel_layout/minecraft_tab_content" | "tabbed_tab_content_panel_layout/xbl_tab_content2" | "tabbed_tab_content_panel_layout/achievements_tab_content3" | "tabbed_tab_content_panel_layout/multiplayer_tab_content4" | "tabbed_tab_content_panel_layout/server_tab_content5" | "tabbed_tab_content_panel_layout/store_tab_content6" | "tabbed_tab_content_panel_layout/creative_tab_content7" | "tabbed_tab_content_panel_layout/packs_tab_content8" | "tabbed_tab_content_panel_layout/seeds_tab_content9" | "common_tab_content_panel" | "common_tab_content_panel/content" | "minecraft_tab_content_panel" | "xbl_tab_content_panel" | "achievements_tab_content_panel" | "multiplayer_tab_content_panel" | "server_tab_content_panel" | "store_tab_content_panel" | "creative_tab_content_panel" | "packs_tab_content_panel" | "seeds_tab_content_panel" | "common_tab_screen_panel" | "common_tab_screen_panel/tab_navigation_panel" | "common_tab_screen_panel/padding_01" | "common_tab_screen_panel/tab_content_panel" | "tabbed_screen_panel" | "button_panel" | "button_panel/padding_5" | "button_panel/buy_now_button" | "button_panel/padding_6" | "tab_panel" | "tab_panel/padding_3" | "tab_panel/main_control" | "tab_panel/padding_4" | "tabbed_upsell_content" | "tabbed_upsell_content/padding_0" | "tabbed_upsell_content/tab_panel" | "tabbed_upsell_content/padding_1" | "tabbed_upsell_content/button_panel" | "tabbed_upsell_content/padding_2" | "tabbed_upsell_screen" | "tabbed_upsell_screen_panel" | "tabbed_upsell_screen_panel/tabbed_upsell_screen_content" | "tabbed_upsell_screen_panel/background"; +export type ThanksForTesting = "padding_horizontal" | "padding_vertical" | "text_horizontal_padding" | "tabbed_upsell_buy_now_button" | "tabbed_buy_now_label" | "tabbed_buy_now_label/button_label" | "label_panel" | "label_panel/label_text" | "text_panel" | "text_panel/tab_content_title_panel" | "text_panel/tab_content_description_panel" | "text_panel/tab_content_description_panel_second" | "dialog_image" | "dialog_image_with_border" | "dialog_image_with_border/dialog_image" | "content_image_panel" | "content_image_panel/minecraft_dialog_image_with_border" | "content_image_panel/horizontal_padding_01" | "content_image_panel/scrolling_panel" | "scroll_text" | "image_panel" | "image_panel/dialog_image_with_border" | "image_panel/focus_image" | "top_tab" | "tab_navigation_panel_layout" | "tab_navigation_panel_layout/navigation_tabs" | "tab_navigation_panel_layout/navigation_tabs/content" | "common_tab_navigation_panel_layout" | "tabbed_tab_navigation_panel_layout" | "tabbed_tab_navigation_panel_layout/minecraft_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_01" | "tabbed_tab_navigation_panel_layout/xbl_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_02" | "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3" | "tabbed_tab_navigation_panel_layout/nav_padding_03" | "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4" | "tabbed_tab_navigation_panel_layout/nav_padding_04" | "tabbed_tab_navigation_panel_layout/server_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_05" | "tabbed_tab_navigation_panel_layout/store_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_06" | "tabbed_tab_navigation_panel_layout/creative_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_07" | "tabbed_tab_navigation_panel_layout/packs_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_08" | "tabbed_tab_navigation_panel_layout/seeds_navigation_tab" | "tabbed_tab_content_panel_layout" | "tabbed_tab_content_panel_layout/minecraft_tab_content" | "tabbed_tab_content_panel_layout/xbl_tab_content2" | "tabbed_tab_content_panel_layout/achievements_tab_content3" | "tabbed_tab_content_panel_layout/multiplayer_tab_content4" | "tabbed_tab_content_panel_layout/server_tab_content5" | "tabbed_tab_content_panel_layout/store_tab_content6" | "tabbed_tab_content_panel_layout/creative_tab_content7" | "tabbed_tab_content_panel_layout/packs_tab_content8" | "tabbed_tab_content_panel_layout/seeds_tab_content9" | "common_tab_content_panel" | "common_tab_content_panel/content" | "minecraft_tab_content_panel" | "xbl_tab_content_panel" | "achievements_tab_content_panel" | "multiplayer_tab_content_panel" | "server_tab_content_panel" | "store_tab_content_panel" | "creative_tab_content_panel" | "packs_tab_content_panel" | "seeds_tab_content_panel" | "common_tab_screen_panel" | "common_tab_screen_panel/tab_navigation_panel" | "common_tab_screen_panel/padding_01" | "common_tab_screen_panel/tab_content_panel" | "tabbed_screen_panel" | "button_panel" | "button_panel/padding_5" | "button_panel/buy_now_button" | "button_panel/padding_6" | "tab_panel" | "tab_panel/padding_3" | "tab_panel/main_control" | "tab_panel/padding_4" | "tabbed_upsell_content" | "tabbed_upsell_content/padding_0" | "tabbed_upsell_content/tab_panel" | "tabbed_upsell_content/padding_1" | "tabbed_upsell_content/button_panel" | "tabbed_upsell_content/padding_2" | "thanks_for_testing_screen" | "tabbed_upsell_screen_panel" | "tabbed_upsell_screen_panel/tabbed_upsell_screen_content" | "tabbed_upsell_screen_panel/background"; +export type ThirdPartyStore = "third_party_store_screen"; +export type ToastScreen = "toast_image" | "toast_icon" | "toast_icon/toast_icon" | "xbox_icon" | "third_party_invite_icon" | "third_party_achievement_icon" | "persona_icon" | "persona_icon/item" | "resource_pack_icon" | "resource_pack_icon/resource_pack_image" | "key_art_image" | "gamer_score_icon" | "toast_label" | "static_button_state_panel" | "static_button" | "static_button/default" | "static_button/hover" | "static_button/pressed" | "static_button/locked" | "popup" | "popup/background" | "popup/popup_content" | "popup/popup_content/icon_padding" | "popup/popup_content/text_padding" | "popup/popup_content/text_panel" | "popup/popup_content/text_panel/text_stack_panel" | "popup/popup_content/button_panel" | "popup/popup_content/button_panel/visual_button" | "item_renderer" | "game_tip_label" | "toast_progress_bar" | "toast_progress_bar/toast_duration_progress_bar" | "recipe_unlocked_icon" | "recipe_unlocked_icon/padding_vertical" | "recipe_unlocked_icon/item_renderer" | "recipe_unlocked_popup" | "recipe_unlocked_popup/input_panel" | "recipe_unlocked_popup/input_panel/label_panel" | "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_1" | "recipe_unlocked_popup/input_panel/label_panel/recipe_unlocked_icon" | "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_2" | "recipe_unlocked_popup/input_panel/label_panel/label_panel" | "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_1" | "recipe_unlocked_popup/input_panel/label_panel/label_panel/label" | "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_2" | "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_3" | "recipe_unlocked_pocket_popup" | "recipe_unlocked_pocket_popup/input_panel" | "recipe_unlocked_pocket_popup/input_panel/label_panel" | "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_1" | "recipe_unlocked_pocket_popup/input_panel/label_panel/recipe_unlocked_icon" | "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_2" | "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel" | "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical" | "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/label" | "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical_1" | "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_3" | "text_stack_panel" | "text_stack_panel/title" | "text_stack_panel/subtitle" | "text_stack_panel/subtitle/icon_padding" | "text_stack_panel/subtitle/icon_padding/gamer_score_icon" | "text_stack_panel/subtitle/subtext_offset" | "text_stack_panel/subtitle/subtext_offset/subtext" | "join_button_icon" | "chat_popup" | "splitscreen_join_popup" | "splitscreen_join_popup/join_button_icon" | "splitscreen_join_popup/join_prompt_text_panel" | "splitscreen_join_popup/join_prompt_text_panel/join_prompt_text" | "formfitting_alpha_toast" | "formfitting_alpha_toast/bg" | "formfitting_alpha_toast/bg/label" | "snackbar" | "snackbar/body" | "snackbar/body/background" | "snackbar/body/background/content" | "snackbar/body/background/content/left_padding" | "snackbar/body/background/content/vertically_central_text" | "snackbar/body/background/content/vertically_central_text/top_padding" | "snackbar/body/background/content/vertically_central_text/text" | "snackbar/body/background/content/right_padding" | "snackbar/body/background/right_shadow" | "progress_button_content" | "progress_button_content/gamepad_icon_glyph" | "progress_button_content/spacer" | "progress_button_content/progress_button_label" | "progress_popup" | "progress_popup/background" | "progress_popup/popup_content" | "progress_popup/popup_content/progress_toast_image" | "progress_popup/popup_content/profilepicture" | "progress_popup/popup_content/text_padding" | "progress_popup/popup_content/progress_content_vertical_panel" | "progress_popup/popup_content/progress_content_vertical_panel/title_text_label" | "progress_popup/popup_content/progress_content_vertical_panel/subtext" | "progress_popup/popup_content/progress_content_vertical_panel/stacked_progress_bar" | "progress_popup/popup_content/progress_content_vertical_panel/end_progress_padding" | "progress_popup/popup_content/divider_padding" | "progress_popup/popup_content/divider_image" | "progress_popup/popup_content/popup_decline_button" | "progress_popup/popup_content/end_padding" | "party_invite_popup" | "party_invite_popup/background" | "party_invite_popup/party_invite_content" | "party_invite_popup/party_invite_content/profilepicture" | "party_invite_popup/party_invite_content/text_padding" | "party_invite_popup/party_invite_content/party_invite_content_vertical_panel" | "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/title_text_label" | "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/subtext" | "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/end_padding" | "party_invite_popup/party_invite_content/divider_padding" | "party_invite_popup/party_invite_content/divider_image" | "party_invite_popup/party_invite_content/party_invite_button" | "party_invite_popup/party_invite_content/end_padding" | "party_travel_popup" | "toast_screen" | "toast_screen_content" | "toast_screen_content/content_log_panel" | "toast_screen_content/perf_turtle_panel"; +export type TokenFaq = "main_panel" | "main_panel/faq_question_1" | "main_panel/faq_question_1_divider" | "main_panel/faq_question_2" | "main_panel/faq_question_2_divider" | "main_panel/faq_question_3" | "main_panel/faq_question_3_divider" | "main_panel/faq_question_4" | "main_panel/faq_question_4_divider" | "main_panel/faq_question_5" | "scrolling_panel" | "token_faq_screen_content" | "token_faq_screen_content/dialog" | "background" | "token_faq_screen" | "token_content_panel" | "token_content_panel/token_info_text" | "token_popup_content" | "token_popup_content/dialog" | "token_faq_button_panel" | "back_button_panel" | "token_popup"; +export type Trade = "cycle_recipe_button" | "cycle_recipe_left_button" | "cycle_recipe_right_button" | "arrow_image" | "cross_out_icon" | "highlight_slot_panel" | "highlight_slot_panel/hover_text" | "recipe_button" | "recipe_button/hover" | "recipe_item_panel" | "recipe_item_panel/item_renderer" | "recipe_item_panel/item_renderer/stack_count_label" | "recipe_item_panel/recipe_button" | "trade_item_slot" | "trade_item_slot/container_item" | "trade_item_slotB" | "trade_item_slot_result_button" | "trade_item_slot_result" | "arrow" | "arrow/arrow_image" | "arrow/cross_out_icon" | "arrow/recipe_button" | "purchase_grid_item" | "purchase_grid_item/top_item" | "purchase_grid_item/padding" | "purchase_grid_item/bottom_item" | "purchase_grid" | "purchase_grid/grid_slot1" | "purchase_grid/grid_slot2" | "purchase_grid/arrow" | "purchase_grid/result_item_slot" | "greyed_item_panel" | "greyed_item_panel/item_renderer" | "cycle_panel_keyboard" | "cycle_panel_keyboard/left" | "cycle_panel_keyboard/right" | "cycle_panel_gamepad" | "cycle_panel_gamepad/left" | "cycle_panel_gamepad/right" | "cycle_panel" | "cycle_panel/keyboard" | "cycle_panel/gamepad" | "merchant_purchase_panel" | "merchant_purchase_panel/purchase_grid" | "top_half_panel" | "top_half_panel/villager_name_label" | "top_half_panel/cycle_panel" | "top_half_panel/merchant_purchase_panel" | "trade_panel" | "trade_panel/gamepad_helpers" | "trade_panel/selected_item_details_factory" | "trade_panel/item_lock_notification_factory" | "trade_panel/root_panel" | "trade_panel/root_panel/common_panel" | "trade_panel/root_panel/trade_inventory" | "trade_panel/root_panel/trade_inventory/top_half_panel" | "trade_panel/root_panel/trade_inventory/inventory_panel_bottom_half_with_label" | "trade_panel/root_panel/trade_inventory/hotbar_grid_template" | "trade_panel/root_panel/trade_inventory/inventory_selected_icon_button" | "trade_panel/root_panel/trade_inventory/gamepad_cursor" | "trade_panel/flying_item_renderer" | "trade_screen"; +export type TradePocket = "background_image" | "recipe_item_panel" | "recipe_item_panel/item_renderer" | "recipe_item_panel/item_renderer/stack_count_label" | "result_item_panel" | "result_item_panel/output_item_name" | "result_item_panel/recipe_item_panel" | "trade_item_slot" | "trade_item_slot/container_item" | "trade_item_slotB" | "trade_item_slot_result_button" | "trade_item_slot_result" | "purchase_grid" | "purchase_grid/grid_slot1" | "purchase_grid/grid_slot2" | "purchase_grid/arrow" | "purchase_grid/result_item_slot" | "merchant_purchase_panel" | "merchant_purchase_panel/left" | "merchant_purchase_panel/purchase_grid" | "merchant_purchase_panel/right" | "merchant_panel" | "merchant_panel/merchant_purchase_panel" | "inventory_grid" | "inventory_content" | "inventory_content/scrolling_panel" | "half_screen" | "inventory_half_screen" | "inventory_half_screen/inventory_content" | "merchant_half_screen" | "merchant_half_screen/merchant_panel" | "header" | "header/header_background" | "header/close_button" | "header/villager_name_label" | "trade_panel" | "trade_panel/bg" | "trade_panel/root_panel" | "trade_panel/header" | "trade_panel/inventory" | "trade_panel/merchant_half_screen" | "trade_panel/gamepad_helpers" | "trade_panel/container_gamepad_helpers" | "trade_panel/inventory_selected_icon_button" | "trade_panel/selected_item_details_factory" | "trade_panel/item_lock_notification_factory" | "trade_panel/flying_item_renderer"; +export type Trade2 = "toolbar_background" | "arrow_left_image" | "arrow_right_image" | "trade_cell_image" | "cross_out_image" | "lock_image" | "scroll_background_image" | "red_slash" | "blue_progress_bar" | "white_progress_bar" | "empty_progress_bar" | "progress_bar_nub" | "hover_button" | "hover_button/hover_text" | "stack_count_label" | "changed_item_count_label" | "changed_item_count_label/stack_count_label" | "changed_item_count_label/stack_count_label/red_slash" | "changed_item_count_label/stack_count_label/red_slash_double" | "changed_item_count_label/padding" | "changed_item_count_label/second_stack_count_label" | "single_item_grid" | "single_item_grid/item_with_count" | "single_item_grid/item_with_count/item_renderer" | "single_item_grid/item_with_count/item_renderer/stack_count_label" | "single_item_grid/item_with_count/item_renderer/changed_item_count_label" | "single_item_grid/item_with_count/item_renderer/hover_button" | "trade_item_1" | "trade_item_2" | "sell_item" | "arrow_holder" | "arrow_holder/arrow_image" | "arrow_holder/cross_out_image" | "arrow_holder/lock_image" | "toggle_content" | "toggle_content/padding_1" | "toggle_content/trade_item_1" | "toggle_content/padding_2" | "toggle_content/padding_2_extra" | "toggle_content/trade_item_2" | "toggle_content/padding_3" | "toggle_content/padding_3_extra" | "toggle_content/arrow_holder" | "toggle_content/padding_4" | "toggle_content/sell_item_holder" | "toggle_content/sell_item_holder/sell_item" | "toggle_content/sell_item_holder_with_less_padding" | "toggle_content/sell_item_holder_with_less_padding/sell_item" | "toggle_content/padding_5" | "toggle_content_holder" | "toggle_content_holder/toggle_content" | "trade_toggle_unchecked" | "trade_toggle_unchecked/toggle_checked_normal" | "trade_toggle_unchecked/toggle_checked_red" | "trade_toggle_checked" | "trade_toggle_checked/toggle_checked_normal" | "trade_toggle_checked/toggle_checked_red" | "trade_toggle_locked" | "trade_actual_toggle" | "trade_toggle" | "trade_toggle_holder" | "trade_toggle_holder/trade_toggle" | "trade_toggle_stack_panel" | "tier_label" | "tier_label_locked" | "tier_stack_panel" | "tier_stack_panel/padding" | "tier_stack_panel/tier_label_holder" | "tier_stack_panel/tier_label_holder/tier_label" | "tier_stack_panel/tier_label_holder/tier_label_locked" | "tier_stack_panel/trade_toggle_stack_panel" | "trade_selector_stack_panel" | "scroll_inner_input_panel" | "scroll_inner_input_panel/trade_selector_stack_panel" | "trade_scroll_panel" | "left_panel" | "left_panel/bg" | "left_panel/trade_scroll_panel" | "exp_progress_bar" | "exp_progress_bar/empty_progress_bar" | "exp_progress_bar/empty_progress_bar/progress_bar_nub" | "exp_progress_bar/empty_progress_bar/blue_progress_bar" | "exp_progress_bar/empty_progress_bar/white_progress_bar" | "trade_details" | "trade_details/item_panel_image" | "trade_details/item_panel_image/item_text_label" | "trade_details_factory" | "trade_details_factory_holder" | "trade_details_button" | "trade_details_1_button" | "trade_details_2_button" | "enchantment_details_button" | "trade_result_item_slot_button" | "red_cell_image" | "container_cell_image" | "container_cell_image/cell_image" | "container_cell_image/red_cell_image" | "item_slot" | "ingredient_1_item_slot" | "ingredient_2_item_slot" | "result_item_slot" | "item_slot_holder" | "item_slot_holder/ingredient_1_item_slot" | "item_slot_holder/trade_details_1_button" | "item_slot_holder/trade_details_1_factory_holder" | "item_slots_stack_panel" | "item_slots_stack_panel/ingredient_item_1_holder" | "item_slots_stack_panel/ingredient_item_2_holder" | "item_slots_stack_panel/pointing_right_arrow_holder" | "item_slots_stack_panel/pointing_right_arrow_holder/arrow_right_image" | "item_slots_stack_panel/pointing_left_arrow_holder" | "item_slots_stack_panel/pointing_left_arrow_holder/arrow_left_image" | "item_slots_stack_panel/result_item_slot_holder" | "trade_button" | "how_to_play_button" | "top_half_stack_panel" | "top_half_stack_panel/item_slots_holder" | "top_half_stack_panel/item_slots_holder/item_slots_stack_panel" | "top_half_stack_panel/padding_1" | "top_half_stack_panel/trade_button_holder" | "top_half_stack_panel/trade_button_holder/trade_button" | "top_half_stack_panel/how_to_play_button_holder" | "top_half_stack_panel/how_to_play_button_holder/how_to_play_button" | "top_half_panel" | "top_half_panel/top_half_stack_panel" | "villager_name_label" | "right_panel" | "right_panel/common_panel" | "right_panel/trade_screen_inventory" | "right_panel/trade_screen_inventory/villager_name_label" | "right_panel/trade_screen_inventory/exp_progress_bar" | "right_panel/trade_screen_inventory/top_half_panel" | "right_panel/trade_screen_inventory/inventory_panel_bottom_half_with_label" | "right_panel/trade_screen_inventory/hotbar_grid" | "toolbar_panel" | "toolbar_panel/toolbar_background" | "toolbar_panel/toolbar_background/toolbar_stack_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2" | "toolbar_anchor" | "toolbar_anchor/toolbar_panel" | "center_fold" | "center_fold/center_bg" | "screen_stack_panel" | "screen_stack_panel/left_panel" | "screen_stack_panel/center_fold" | "screen_stack_panel/right_panel" | "screen_stack_panel/toolbar_anchor" | "gamepad_helper_x" | "gamepad_helper_y" | "screen_panel" | "screen_panel/screen_stack_panel" | "screen_panel/container_gamepad_helpers" | "screen_panel/selected_item_details_factory" | "screen_panel/item_lock_notification_factory" | "screen_panel/inventory_selected_icon_button" | "screen_panel/inventory_take_progress_icon_button" | "screen_panel/flying_item_renderer" | "trade_screen"; +export type Trade2Pocket = "chest_item_renderer" | "trade_icon" | "arrow_right_image" | "right_navigation_tabs" | "right_navigation_tabs/pocket_tab_close_button" | "right_navigation_tabs/fill" | "trade_slots_panel" | "trade_slots_panel/item_slots_stack_panel" | "trade_and_help_buttons" | "trade_and_help_buttons/trade_button_holder" | "trade_and_help_buttons/trade_button_holder/trade_button" | "trade_and_help_buttons/how_to_play_button_holder" | "trade_and_help_buttons/how_to_play_button_holder/how_to_play_button" | "name_and_trade_slots_stack_panel" | "name_and_trade_slots_stack_panel/padding_1" | "name_and_trade_slots_stack_panel/villager_name_label_holder" | "name_and_trade_slots_stack_panel/villager_name_label_holder/villager_name_label" | "name_and_trade_slots_stack_panel/padding_2" | "name_and_trade_slots_stack_panel/exp_progress_bar_holder" | "name_and_trade_slots_stack_panel/exp_progress_bar_holder/exp_progress_bar" | "name_and_trade_slots_stack_panel/padding_3" | "name_and_trade_slots_stack_panel/trade_slots_panel" | "name_and_trade_slots_stack_panel/padding_4" | "name_and_trade_slots_stack_panel/trade_and_help_buttons" | "right_panel" | "right_panel/content" | "right_panel/content/bg" | "right_panel/content/name_and_trade_slots_stack_panel" | "right_panel/navigation_tabs_holder" | "right_panel/navigation_tabs_holder/right_navigation_tabs" | "left_tab_trade" | "left_tab_inventory" | "left_navigation_tabs" | "left_navigation_tabs/left_tab_trades" | "left_navigation_tabs/padding" | "left_navigation_tabs/left_tab_inventory" | "arrow_holder" | "arrow_holder/arrow_image" | "arrow_holder/cross_out_image" | "arrow_holder/lock_image" | "inventory_scroll_panel" | "toggle_content" | "toggle_content/padding_1" | "toggle_content/trade_item_holder" | "toggle_content/trade_item_holder/padding_left" | "toggle_content/trade_item_holder/trade_item_1" | "toggle_content/trade_item_holder/padding_middle" | "toggle_content/trade_item_holder/trade_item_2" | "toggle_content/trade_item_holder/padding_right" | "toggle_content/padding_2" | "toggle_content/arrow_holder" | "toggle_content/padding_3" | "toggle_content/sell_item_holder" | "toggle_content/sell_item_holder/sell_item" | "toggle_content/padding_4" | "left_panel" | "left_panel/gamepad_helpers_and_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs" | "left_panel/content" | "left_panel/content/bg" | "left_panel/content/inventory_scroll_panel" | "left_panel/content/trade_scroll_panel" | "pocket_hotbar_and_content_panels" | "screen_panel" | "screen_panel/pocket_hotbar_and_content_panels" | "screen_panel/container_gamepad_helpers" | "screen_panel/selected_item_details_factory" | "screen_panel/item_lock_notification_factory" | "screen_panel/inventory_selected_icon_button" | "screen_panel/inventory_take_progress_icon_button" | "screen_panel/flying_item_renderer"; +export type TrialUpsell = "normal_stroke_button" | "normal_description_label" | "trialTime" | "trial_label" | "trial_description_panel" | "trial_description_panel/description_text" | "trial_expired_description_panel" | "trial_expired_description_panel/vertical_padding_0" | "trial_expired_description_panel/line1" | "trial_expired_description_panel/vertical_padding_1" | "trial_expired_description_panel/line2" | "trial_expired_description_panel/line3" | "trial_expired_description_panel/line4" | "trial_expired_description_panel/line5" | "continue_button" | "buy_button" | "root_panel" | "trial_upsell_screen_dialog" | "trial_upsell_expired_screen_dialog" | "button_content_panel" | "button_content_panel/buy" | "button_content_panel/continue" | "trial_upsell_screen" | "trial_upsell_screen_content" | "trial_upsell_screen_content/trialTime" | "trial_upsell_screen_content/root_panel" | "trial_upsell_screen_content/root_panel/trial_upsell_screen_dialog" | "trial_upsell_expired_screen" | "trial_upsell_expired_screen_content" | "trial_upsell_expired_screen_content/trialTime" | "trial_upsell_expired_screen_content/root_panel" | "trial_upsell_expired_screen_content/root_panel/trial_upsell_expired_screen_dialog" | "content_description_panel" | "content_description_panel/scrolling_panel"; +export type UgcViewer = "padding" | "world_label" | "world_image" | "button_content" | "button_content/stack_panel" | "button_content/stack_panel/world_label" | "button_content/stack_panel/world_panel" | "button_content/stack_panel/world_panel/background" | "button_content/stack_panel/world_panel/background/world_image" | "grid_item" | "grid_item/button" | "place_holder_control" | "place_holder_control/search_icon" | "place_holder_control/place_holder_text" | "search_box" | "grid_content" | "scrolling_content" | "scrolling_content/grid_content" | "main_panel" | "main_panel/padding_0" | "main_panel/centerer_panel_0" | "main_panel/centerer_panel_0/search_box" | "main_panel/padding_1" | "main_panel/centerer_panel_1" | "main_panel/centerer_panel_1/scrolling_panel" | "main_panel/padding_2" | "ugc_viewer_screen" | "screen_content" | "screen_content/main_panel"; +export type CommonArt = "title_image" | "title_image_edu" | "splash_text" | "title_panel_pocket" | "title_panel_pocket/title_image" | "title_panel_pocket/splash_text" | "title_panel_win10" | "title_panel_win10/title_image" | "title_panel_win10/splash_text" | "title_panel_osx" | "title_panel_osx/title_image" | "title_panel_osx/splash_text" | "title_panel_edu_desktop" | "title_panel_edu_desktop/banner_control" | "title_panel_edu_desktop/banner_control/banner" | "title_panel_edu_desktop/banner_control/drop_shadow" | "title_panel_edu_desktop/title_control" | "title_panel_edu_desktop/title_control/title_image_edu" | "title_panel_edu_desktop/title_control/splash_text" | "title_panel_edu_mobile" | "title_panel_edu_mobile/title_control" | "title_panel_edu_mobile/title_control/title_image_edu" | "title_panel_edu_mobile/title_control/splash_text" | "title_panel_content" | "start_title_panel_content" | "pause_logo_panel" | "pause_logo_panel/logo"; +export type Common = "empty_panel" | "vertical_padding_8px" | "horizontal_padding_2px" | "empty_image" | "horizontal_stack_panel" | "vertical_stack_panel" | "vert_stack_centering_panel" | "vert_stack_centering_panel/stack_content" | "button" | "screen_header_title_panel" | "screen_header_title_panel/store_header_title" | "back_button" | "back_title_button" | "back_title_button/panel1" | "back_title_button/panel1/button" | "back_title_button/padding1" | "back_title_button/panel2" | "back_title_button/panel2/label" | "chevron_image" | "back_button_content" | "back_button_content/chevron_panel" | "back_button_content/chevron_panel/left_chevron" | "back_button_content/padding1" | "back_button_content/label_panel" | "back_button_content/label_panel/label" | "label_hover" | "label_hover/hover" | "tts_activate_sibling" | "tts_activate_sibling/default" | "tts_activate_sibling/pressed" | "tts_activate_sibling/hover" | "back_title_button_content" | "back_title_button_content/padding1" | "back_title_button_content/chevron_panel" | "back_title_button_content/chevron_panel/left_chevron" | "back_title_button_content/padding2" | "toggle_visuals" | "toggle_visuals/unchecked" | "toggle_visuals/checked" | "toggle_visuals/unchecked_hover" | "toggle_visuals/checked_hover" | "toggle_visuals/unchecked_locked" | "toggle_visuals/checked_locked" | "toggle_visuals/unchecked_locked_hover" | "toggle_visuals/checked_locked_hover" | "toggle" | "radio_toggle" | "checkbox" | "checkbox_image" | "checked_image" | "unchecked_image" | "checked_hover_image" | "unchecked_hover_image" | "rotating_text" | "button_text" | "toggle_state_template" | "new_button_label" | "checkbox_checked_state" | "checkbox_unchecked_state" | "checkbox_checked_hover_state" | "checkbox_unchecked_hover_state" | "checkbox_checked_locked_state" | "checkbox_unchecked_locked_state" | "radio_toggle_checked_state" | "radio_toggle_unchecked_state" | "radio_toggle_checked_hover_state" | "radio_toggle_unchecked_hover_state" | "radio_toggle_checked_locked_state" | "radio_toggle_unchecked_locked_state" | "slider_button_state" | "slider_button_layout" | "slider_button_hover_layout" | "slider_button_locked_layout" | "slider_button_indent_layout" | "slider_box" | "slider_box/default" | "slider_box/hover" | "slider_box/indent" | "slider_box/locked" | "slider_box/locked/transparent_grey" | "slider_background" | "slider_background_hover" | "slider_progress" | "slider_progress_hover" | "slider_border" | "slider_bar_default" | "slider_bar_default/sizing_panel" | "slider_bar_default/transparent_grey" | "slider_bar_hover" | "slider_step" | "slider_step_hover" | "slider_step_progress" | "slider_step_progress_hover" | "slider" | "slider/slider_box" | "slider/slider_bar_default" | "slider/slider_bar_hover" | "dropdown_background" | "dropdown" | "dropdown/dropdown_content" | "dropdown/dropdown_content/0" | "dropdown_no_scrollpanel" | "square_image_border_white" | "focus_border_white" | "focus_border_yellow" | "focus_border_black" | "non_interact_focus_border" | "non_interact_focus_border_button" | "non_interact_focus_border_button/default" | "non_interact_focus_border_button/hover" | "non_interact_focus_border_button/pressed" | "non_interact_focus_border_button/content" | "tts_label_focus_wrapper" | "tts_label_focus_wrapper/label" | "tts_label_focus_wrapper/focus_border" | "default_indent" | "edit_box_indent" | "edit_box_indent_hover" | "transparent_edit_box_indent" | "transparent_edit_box_indent_hover" | "text_edit_box_label" | "text_edit_box_place_holder_label" | "text_magnifying_glass_image" | "text_close_X_button_image" | "text_close_X_button_image_hover" | "clear_text_button" | "clear_text_button/default" | "clear_text_button/hover" | "clear_text_button/pressed" | "text_edit_box" | "text_edit_box/centering_panel" | "text_edit_box/centering_panel/clipper_panel" | "text_edit_box/centering_panel/clipper_panel/magnifying_glass" | "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel" | "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel/clear_text_button" | "text_edit_box/centering_panel/clipper_panel/visibility_panel" | "text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control" | "text_edit_box/locked" | "text_edit_box/locked/edit_box_indent" | "text_edit_box/default" | "text_edit_box/hover" | "text_edit_box/pressed" | "text_edit_box_scrolling_content" | "scrollable_text_edit_box" | "scrollable_text_edit_box/centering_panel" | "scrollable_text_edit_box/centering_panel/clipper_panel" | "scrollable_text_edit_box/centering_panel/clipper_panel/text_edit_text_control" | "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel" | "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control" | "scrollable_text_edit_box/locked" | "scrollable_text_edit_box/locked/edit_box_indent" | "scrollable_text_edit_box/default" | "scrollable_text_edit_box/hover" | "scrollable_text_edit_box/pressed" | "transparent_text_edit_box" | "transparent_text_edit_box/clipper_panel" | "transparent_text_edit_box/clipper_panel/visibility_panel" | "transparent_text_edit_box/clipper_panel/visibility_panel/place_holder_control" | "transparent_text_edit_box/locked" | "transparent_text_edit_box/locked/edit_box_indent" | "transparent_text_edit_box/default" | "transparent_text_edit_box/hover" | "transparent_text_edit_box/pressed" | "multiline_text_edit_box" | "scrollable_multiline_text_edit_box" | "dirt_background" | "portal_background" | "empty_progress_bar" | "filled_progress_bar" | "empty_progress_bar_beveled" | "progress_bar_beveled_overlay" | "filled_progress_bar_for_collections" | "progress_bar" | "progress_bar/empty_progress_bar" | "progress_bar/filled_progress_bar" | "progress_bar_for_collections" | "progress_bar_for_collections/empty_progress_bar" | "progress_bar_for_collections/filled_progress_bar_for_collections" | "horizontal_divider" | "horizontal_divider/divider_image" | "vertical_divider" | "vertical_divider/divider_image" | "underline" | "single_line_label" | "single_line_label/label_panel" | "single_line_label/label_panel/0" | "gamepad_helper_icon_description" | "gamepad_helper_icon_image" | "keyboard_helper_icon_image" | "gamepad_helper" | "gamepad_helper/icon_panel" | "gamepad_helper/description_panel" | "gamepad_helper/description_panel/desc" | "gamepad_helpers" | "gamepad_helpers_a_and_b" | "gamepad_helpers_a_and_b/gamepad_helper_a" | "gamepad_helpers_a_and_b/control" | "gamepad_helpers_a_and_b/gamepad_helper_b" | "container_gamepad_helpers" | "container_gamepad_helpers/fill_panel" | "container_gamepad_helpers/buttons" | "container_gamepad_helpers/buttons/gamepad_helper_x" | "container_gamepad_helpers/buttons/gamepad_helper_a" | "container_gamepad_helpers/buttons/gamepad_helper_y" | "container_gamepad_helpers/buttons/gamepad_helper_b" | "container_gamepad_helpers/buffer_panel_right" | "tabs_left_gamepad_helpers" | "tabs_left_gamepad_helpers/gamepad_helper_left_bumper" | "tabs_left_gamepad_helpers/gamepad_helper_left_trigger" | "tabs_right_gamepad_helpers" | "tabs_right_gamepad_helpers/gamepad_helper_right_bumper" | "tabs_right_gamepad_helpers/gamepad_helper_right_trigger" | "keyboard_helper_description" | "keyboard_helper" | "keyboard_helper/image_centerer" | "keyboard_helper/image_centerer/image" | "keyboard_helper/image_centerer/image/keyboard_character" | "keyboard_helper/centerer" | "keyboard_helper/centerer/desc" | "keyboard_helpers" | "gamepad_icon_button" | "gamepad_helper_start" | "gamepad_helper_a" | "gamepad_helper_a_14" | "gamepad_helper_b" | "gamepad_helper_b_14" | "gamepad_helper_x" | "gamepad_helper_x_14" | "gamepad_helper_y" | "gamepad_helper_y_14" | "keyboard_helper_keys" | "gamepad_helper_left_trigger" | "gamepad_helper_right_trigger" | "keyboard_left_trigger" | "keyboard_right_trigger" | "gamepad_icon_dpad" | "gamepad_helper_dpad" | "gamepad_helper_dpad_down" | "gamepad_helper_dpad_left" | "gamepad_helper_dpad_right" | "gamepad_helper_dpad_up" | "gamepad_icon_thumbstick" | "gamepad_helper_thumbstick" | "gamepad_helper_thumbstick_right" | "gamepad_helper_thumbstick_left" | "gamepad_helper_left_bumper" | "gamepad_helper_right_bumper" | "dialog_background_common" | "dialog_background_hollow_common" | "dialog_background_hollow_common/control" | "dialog_background_opaque" | "dialog_background_hollow_1" | "dialog_background_hollow_2" | "dialog_background_hollow_3" | "dialog_background_hollow_4" | "dialog_background_hollow_4_thin" | "dialog_background_hollow_5" | "dialog_background_hollow_6" | "dialog_background_hollow_7" | "dialog_background_hollow_8" | "dialog_divider" | "normal_button" | "normal_stroke_button" | "section_heading_label" | "section_divider" | "section_divider/padding1" | "section_divider/divider_parent" | "section_divider/divider_parent/divider" | "section_divider/padding2" | "minecraftTenLabel" | "close_button_image" | "close_button_panel" | "close_button_panel/close_button_image" | "close_button" | "close_button/default" | "close_button/hover" | "close_button/pressed" | "close_button_grey_bg" | "close_button_grey_bg/default" | "close_button_grey_bg/hover" | "close_button_grey_bg/pressed" | "close_button_high_contrast" | "close_button_high_contrast/background" | "close_button_high_contrast/default" | "close_button_high_contrast/hover" | "close_button_high_contrast/pressed" | "compact_close_button" | "compact_close_button/default" | "compact_close_button/hover" | "compact_close_button/pressed" | "light_close_button" | "light_close_button/default" | "light_close_button/hover" | "light_close_button/pressed" | "help_button" | "help_button/default" | "help_button/hover" | "help_button/pressed" | "cell_image" | "cell_image_selected" | "cell_image_panel" | "cell_image_panel/cell_image" | "cell_image_panel/cell_image_selected" | "cell_overlay" | "highlight_slot" | "white_border_slot" | "progressive_select_progress_bar" | "progressive_select_progress_bar/stack_progress_bar_down" | "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_progress_bar" | "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_text" | "stack_splitting_overlay" | "stack_splitting_overlay/classic_stack_splitting_overlay" | "stack_splitting_overlay/classic_stack_splitting_overlay/stack_splitting_bar" | "stack_splitting_overlay/pocket_stack_splitting_overlay" | "stack_splitting_overlay/pocket_stack_splitting_overlay/stack_splitting_bar" | "inventory_hold_icon_holding" | "inventory_hold_icon_holding/progressive_down" | "inventory_hold_icon_holding/progressive_up" | "inventory_hold_icon_holding/progressive_left_side" | "inventory_hold_icon_holding/progressive_right_side" | "inventory_hold_icon_release" | "highlight_slot_panel" | "highlight_slot_panel/highlight" | "highlight_slot_panel/highlight/hover_text" | "highlight_slot_panel/white_border" | "pocket_ui_highlight_slot" | "hover_text" | "screen_background" | "stack_count_label" | "durability_bar" | "durability_bar_grabbed" | "storage_bar" | "storage_bar_grabbed" | "item_renderer" | "filtered_item_renderer" | "flying_item_renderer" | "selected_item_details" | "selected_item_details/item_panel_image" | "item_panel_image" | "item_panel_image/item_text_label" | "item_text_label" | "selected_item_details_factory" | "item_lock_notification" | "item_lock_notification/notification_background_image" | "item_lock_notification/notification_background_image/notification_text_label" | "item_lock_notification_factory" | "empty_panel_size_y_0" | "scroll_background_and_viewport" | "scroll_background_and_viewport/background" | "scroll_background_and_viewport/scrolling_view_port" | "scroll_background_and_viewport/scrolling_view_port/scrolling_content" | "scroll_bar_and_track" | "scroll_bar_and_track/stack_panel" | "scroll_bar_and_track/stack_panel/empty_panel_0" | "scroll_bar_and_track/stack_panel/panel" | "scroll_bar_and_track/stack_panel/panel/centered_panel" | "scroll_bar_and_track/stack_panel/panel/centered_panel/track" | "scroll_bar_and_track/stack_panel/panel/centered_panel/scroll_box" | "scroll_bar_and_track/stack_panel/empty_panel_1" | "scroll_view_control" | "scroll_view_control/stack_panel" | "scroll_view_control/stack_panel/background_and_viewport" | "scroll_view_control/stack_panel/bar_and_track" | "scroll_view_control/panel" | "scroll_view_control/panel/background_and_viewport" | "scroll_view_control/panel/bar_and_track" | "scrollbar_track" | "scrollbar_track/bar_indent" | "scroll_box" | "scroll_box/box" | "scroll_box/box/mouse_box" | "scroll_box/box/touch_box" | "scroll_box_indent" | "scrollbar_box_image" | "touch_scrollbar_box_image" | "new_touch_scrollbar_box_image" | "container_touch_scrollbar_box_image" | "scroll_indent_image" | "scrolling_panel_base" | "scrolling_panel" | "scrolling_panel/scroll_touch" | "scrolling_panel/scroll_mouse" | "scrolling_panel_with_offset" | "container_slot_button_prototype" | "container_slot_button_prototype/hover" | "no_coalesce_container_slot_button" | "pocket_ui_container_slot" | "pocket_ui_container_slot/hover" | "pocket_ui_container_slot/hover/highlight_square" | "slot_selected" | "slot_selected/progress_bar_release" | "container_item" | "container_item/item_cell" | "container_item/item_cell/item" | "container_item/item_cell/item/stack_count_label" | "container_item/item_cell/durability_bar" | "container_item/item_cell/storage_bar" | "container_item/item_cell_overlay_ref" | "container_item/item_selected_image" | "container_item/item_button_ref" | "container_item/container_item_lock_overlay" | "container_item/item_lock_cell_image" | "container_item/bundle_slot_panel" | "pocket_ui_container_item" | "pocket_ui_large_container_item" | "container_item_lock_yellow" | "container_item_lock_red" | "container_item_lock_overlay" | "container_item_lock_overlay/container_item_lock_yellow" | "container_item_lock_overlay/container_item_lock_red" | "item_lock_cell_image" | "container_grid" | "pocket_container_grid" | "container_scroll_box_image" | "container_scroll_bar_side_rails" | "container_scrollbar_track" | "container_scrollbar_track/rails" | "container_scroll_background_image" | "container_scroll_panel" | "pocket_ui_highlight_selected_slot" | "pocket_hotbar_panel" | "pocket_hotbar_panel/bg" | "pocket_hotbar_panel/hotbar_grid" | "drop_item_panel" | "pocket_hotbar_and_content_panels" | "pocket_hotbar_and_content_panels/pocket_content_panels" | "pocket_hotbar_and_content_panels/hotbar_drop_item_panel" | "pocket_hotbar_and_content_panels/hotbar_drop_item_panel/pocket_hotbar_panel" | "blank_pocket_content_panel" | "pocket_content_panels" | "pocket_content_panels/left_panel" | "pocket_content_panels/offset_panel" | "pocket_content_panels/offset_panel/center_bg" | "pocket_content_panels/right_panel" | "inventory_selected_icon" | "inventory_selected_stack_size_text" | "inventory_hold_icon" | "inventory_selected_item_lock_overlay" | "inventory_selected_item_lock_overlay/container_item_lock_yellow" | "inventory_selected_item_lock_overlay/container_item_lock_red" | "inventory_icon_panel" | "inventory_icon_panel/selected_item_icon" | "inventory_icon_panel/selected_stack_size_text" | "inventory_icon_panel/selected_item_lock_overlay" | "inventory_icon_panel/hover_text" | "inventory_selected_icon_button" | "inventory_selected_icon_button/default" | "inventory_selected_icon_button/pressed" | "inventory_selected_icon_button/hover" | "inventory_selected_icon_button/durability_bar_grabbed" | "inventory_selected_icon_button/storage_bar_grabbed" | "inventory_take_progress_icon_button" | "inventory_take_progress_icon_button/default" | "inventory_take_progress_icon_button/pressed" | "inventory_take_progress_icon_button/hover" | "gamepad_cursor_image" | "gamepad_cursor_button" | "gamepad_cursor_button/default" | "gamepad_cursor_button/pressed" | "gamepad_cursor_button/hover" | "grid_item_for_inventory" | "grid_item_for_hotbar" | "hotbar_grid_template" | "inventory_panel" | "inventory_panel/inventory_grid" | "inventory_panel_bottom_half" | "inventory_panel_bottom_half/inventory_panel" | "inventory_panel_bottom_half_with_label" | "inventory_panel_bottom_half_with_label/inventory_panel" | "inventory_panel_bottom_half_with_label/inventory_label" | "common_panel" | "common_panel/bg_image" | "common_panel/dialog_divider" | "common_panel/close_button_holder" | "common_panel/close_button_holder/close" | "common_panel/close_button_holder/compact_close" | "root_panel" | "input_panel" | "base_screen" | "base_screen/variables_button_mappings_and_controls" | "base_screen/variables_button_mappings_and_controls/bg_no_safezone_screen_panel" | "base_screen/variables_button_mappings_and_controls/safezone_screen_matrix" | "base_screen/variables_button_mappings_and_controls/screen_background" | "base_screen/loading_bars_background" | "base_screen/loading_bars_background/loading_bars" | "render_below_base_screen" | "safezone_buffer" | "top_safezone_vertical_buffer" | "bottom_safezone_vertical_buffer" | "left_safezone_horizontal_buffer" | "right_safezone_horizontal_buffer" | "safe_zone_stack" | "safe_zone_stack/top_outer_control" | "safe_zone_stack/top_inner_control" | "safe_zone_stack/header_bar" | "safezone_inner_matrix" | "safezone_inner_matrix/outer_top" | "safezone_inner_matrix/outer_top/top_side_control" | "safezone_inner_matrix/inner_top" | "safezone_inner_matrix/inner_top/top_side_control" | "safezone_inner_matrix/safezone_screen_panel" | "safezone_inner_matrix/inner_bottom" | "safezone_inner_matrix/outer_bottom" | "safezone_outer_matrix" | "safezone_outer_matrix/outer_left" | "safezone_outer_matrix/outer_left/outer_left_safe_zone_stack" | "safezone_outer_matrix/inner_left" | "safezone_outer_matrix/inner_left/inner_left_safe_zone_stack" | "safezone_outer_matrix/inner_matrix" | "safezone_outer_matrix/inner_right" | "safezone_outer_matrix/inner_right/inner_right_safe_zone_stack" | "safezone_outer_matrix/outer_right" | "safezone_outer_matrix/outer_right/outer_right_safe_zone_stack" | "bundle_tooltip_wrapper" | "bundle_tooltip_wrapper/bundle_tooltip_factory_wrapper" | "bundle_tooltip_wrapper/bundle_touch_tooltip" | "screen_panel" | "screen_panel/root_screen_panel" | "screen_panel/additional_screen_content" | "screen_panel/popup_dialog_factory" | "screen_panel/bundle_hover_tooltip" | "base_screen_empty_panel" | "modal_screen" | "realms_error_modal_screen" | "modal_area_panel_base" | "inactive_modal_pane_fade" | "inventory_screen_common" | "fullscreen_header" | "fullscreen_header/top_bar" | "fullscreen_header/top_bar/title_stack_panel" | "fullscreen_header/top_bar/title_stack_panel/padding1" | "fullscreen_header/top_bar/title_stack_panel/back_button_content_panel" | "fullscreen_header/top_bar/title_stack_panel/padding2" | "fullscreen_header/child_control" | "back_content_panel" | "back_content_panel/back_button" | "top_bar" | "tooltip_background" | "tooltip_button_content" | "tooltip_button_content/tooltip_panel_content" | "static_tooltip_popup_with_image_and_text" | "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel" | "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel" | "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel" | "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel/0" | "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding" | "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text" | "static_tooltip_popup_with_image_and_text/tooltip_chevron" | "dynamic_tooltip_popup_with_custom_content" | "dynamic_tooltip_popup_with_custom_content/tooltip_content" | "dynamic_tooltip_popup_with_custom_content/tooltip_chevron" | "dynamic_tooltip_popup_with_image_and_text" | "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel" | "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel" | "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel" | "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel/0" | "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding" | "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text" | "dynamic_tooltip_popup_with_image_and_text/tooltip_chevron" | "dynamic_tooltip_left" | "dynamic_tooltip_below" | "dynamic_custom_tooltip_below" | "dynamic_tooltip" | "dynamic_tooltip/above" | "dynamic_tooltip/above/content" | "dynamic_tooltip/below" | "dynamic_tooltip/below/content" | "legacy_pocket_close_button_default" | "legacy_pocket_close_button_pressed" | "legacy_pocket_close_button" | "legacy_pocket_close_button/default" | "legacy_pocket_close_button/hover" | "legacy_pocket_close_button/pressed" | "info_icon" | "error_glyph" | "service_repo_image_panel" | "service_repo_image_panel/service_repo_image" | "service_repo_image_panel/progress_loading" | "common_cycler" | "image_cycler" | "text_cycler" | "squaring_panel" | "squaring_panel/squaring_panel" | "squaring_panel/squaring_panel/squaring_panel_content"; +export type CommonClassic = "button" | "button_state_default" | "button_state_hover" | "button_state_pressed" | "toggle" | "toggle_checked_state" | "toggle_unchecked_state" | "toggle_checked_hovered_state" | "toggle_checked_hovered_state/toggle_checked_state" | "toggle_checked_hovered_state/hover" | "toggle_unchecked_hovered_state" | "toggle_unchecked_hovered_state/toggle_unchecked_state" | "toggle_unchecked_hovered_state/hover"; +export type EduCommon = "light_label" | "dark_label" | "readable_label" | "slider_toggle" | "trash_default" | "trash_hover" | "trash_pressed" | "photo_trash_button" | "photo_trash_button/default" | "photo_trash_button/hover" | "photo_trash_button/pressed" | "download_progress_modal_panel" | "download_progress_modal_panel/downloading" | "loading_progress_modal_panel" | "loading_progress_modal_panel/loading" | "modal_cancel_button" | "modal_progress_panel_with_cancel" | "modal_progress_panel_with_cancel/common_panel" | "modal_progress_panel_with_cancel/title" | "modal_progress_panel_with_cancel/content" | "modal_progress_panel_with_cancel/content/title_panel" | "modal_progress_panel_with_cancel/content/label" | "modal_progress_panel_with_cancel/content/progress_loading_bars" | "modal_progress_panel_with_cancel/cancel_button" | "modal_progress_panel_no_button" | "modal_progress_panel_no_button/common_panel" | "modal_progress_panel_no_button/content" | "modal_progress_panel_no_button/content/progress_title_text" | "modal_progress_panel_no_button/content/progress_loading_bars" | "apple_animation" | "book_animation" | "edu_loading_animation" | "horizontal_stack_item" | "vertical_stack_item" | "back_button_padded" | "back_button_padded/back_button_padding_before" | "back_button_padded/back_button" | "home_button_content" | "home_button" | "underline_text" | "underline_text/label_hover" | "underline_button" | "underline_button/default" | "underline_button/hover" | "underline_button/pressed" | "edu_screen_header" | "edu_screen_header/title_controls" | "edu_screen_header/title_controls/back_item" | "edu_screen_header/title_controls/back_item/back_button" | "edu_screen_header/title_controls/back_item/gamepad" | "edu_screen_header/title_controls/image_item" | "edu_screen_header/title_controls/image_item/image" | "edu_screen_header/title_controls/image_item_template" | "edu_screen_header/title_controls/image_item_template/image" | "edu_screen_header/title_controls/image_item_template/image/image_color" | "edu_screen_header/title_controls/title_text_padding" | "edu_screen_header/title_controls/title_item" | "edu_screen_header/title_controls/title_item/title" | "share_dialog_title" | "share_header_panel" | "share_header_panel/title" | "share_header_panel/close_button" | "teams_advanced_share_header_panel" | "add_resource_share_header_panel" | "body_panel" | "body_panel/body_stack" | "teams_body_panel" | "teams_body_resource_panel" | "teams_simple_body_resource_panel" | "joincode_body_panel" | "add_resource_body_panel" | "icon_section" | "icon_section/icon_stack_panel" | "icon_section/icon_padding" | "add_resources_section" | "add_resources_section/divider" | "add_resources_section/add_resource_label" | "add_resources_section/teams_padding_middle" | "add_resources_section/resource_button" | "edit_resource_uri_glyph" | "edit_resources_section" | "edit_resources_section/divider" | "edit_resources_section/resource_label_text" | "edit_resources_section/teams_padding_middle" | "edit_resources_section/edit_resource_body_button_stack" | "edit_resources_section/edit_resource_body_button_stack/resource_button" | "edit_resources_section/edit_resource_body_button_stack/padding_middle" | "edit_resources_section/edit_resource_body_button_stack/edit_resource_uri_button" | "body_content_stack" | "body_content_stack/body_text_centering_panel" | "body_content_stack/body_text_centering_panel/body_text" | "body_content_stack/padding_middle" | "body_content_stack/icons" | "body_content_stack/copy_link_centering_panel" | "body_content_stack/copy_link_centering_panel/copy_link_panel" | "body_content_stack/add_resources" | "body_content_stack/edit_resources" | "teams_simple_body_content_stack" | "teams_body_content_stack" | "teams_body_resource_content_stack" | "joincode_body_content_stack" | "add_resource_body_content_stack" | "add_resource_body_content_stack/label_one_centering_panel" | "add_resource_body_content_stack/label_one_centering_panel/teams_share_label" | "add_resource_body_content_stack/label_padding_middle" | "add_resource_body_content_stack/label_two_centering_panel" | "add_resource_body_content_stack/label_two_centering_panel/teams_share_label" | "add_resource_body_content_stack/learn_more_padding_middle" | "add_resource_body_content_stack/link1" | "add_resource_body_content_stack/url_padding_middle" | "add_resource_body_content_stack/url_label" | "add_resource_body_content_stack/url_textbox" | "add_resource_body_content_stack/inline_notification" | "add_resource_body_content_stack/inline_notification_spacer" | "add_resource_body_content_stack/button_name_label" | "add_resource_body_content_stack/button_middle_spacer" | "add_resource_body_content_stack/button_name_textbox" | "add_resource_body_content_stack/button_name_textbox_next_disabled" | "add_edit_resource_body_content_stack" | "add_edit_resource_body_content_stack/scroll_content" | "add_edit_resource_body_content_stack/scroll_content/scrolling_panel" | "resource_popup_buttons" | "resource_popup_buttons/done_button" | "resource_popup_buttons/button_padding" | "resource_popup_buttons/back_button_panel" | "resource_popup_buttons/back_button_panel/back_button_enabled" | "resource_popup_buttons/back_button_panel/back_button_disabled" | "add_resource_popup_lower_button_panel" | "add_resource_popup_lower_button_panel/edit_resource_popup_buttons" | "add_resource_popup_lower_button_panel/add_resource_popup_buttons" | "share_dialog_body_text" | "share_dialog_body_text/tts_border" | "share_dialog_body_text/text" | "share_icon" | "share_label" | "share_label/share_image_offset_panel" | "share_label/share_image_offset_panel/link_share" | "copy_link_stack_panel" | "copy_link_stack_panel/link_box" | "copy_link_stack_panel/copy_button" | "icon_stack_panel" | "icon_stack_panel/padding_left" | "icon_stack_panel/teams_button" | "icon_stack_panel/teams_mail_padding" | "icon_stack_panel/mail_button" | "icon_stack_panel/mail_classrooms_padding" | "icon_stack_panel/classrooms_button" | "icon_stack_panel/padding_right" | "default_share_button_contents" | "default_share_button_contents/background" | "default_share_button_contents/image" | "default_share_button" | "default_share_button/default" | "default_share_button/hover" | "default_share_button/pressed" | "vertical_divider" | "vertical_divider/divider" | "horizontal_divider" | "horizontal_divider/divider" | "stack_panel_grid_slot" | "stack_panel_grid_slot/stack_panel_grid_item_panel" | "stack_panel_grid_slot/stack_panel_grid_item_panel/stack_panel_grid_item" | "stack_panel_grid_row" | "stack_panel_grid_row/stack_panel_grid_row_item" | "stack_panel_grid_row/stack_panel_grid_row_item/row" | "stack_panel_grid_row/divider" | "stack_panel_grid_row/divider/line" | "stack_panel_grid" | "border" | "description_panel" | "description_panel/border" | "description_panel/description" | "edu_share_text_popup" | "teams_edu_share_text_popup" | "teams_edu_share_resource_popup" | "teams_edu_simple_share_resource_popup" | "joincode_edu_popup" | "add_resource_dialog" | "share_popup_dialog_factory" | "inline_notification" | "inline_notification/stack" | "inline_notification/stack/icon" | "inline_notification/stack/spacer" | "inline_notification/stack/warning_text" | "search_button_content" | "search_bar_and_home_button" | "search_bar_and_home_button/search_bar" | "search_bar_and_home_button/search_bar/search_bar" | "search_bar_and_home_button/search_button" | "search_bar_and_home_button/search_pad" | "search_bar_and_home_button/home_button" | "search_bar_and_home_button/end_pad" | "hotbar_hint" | "hotbar_hint/inactive_slot_dimmer" | "hotbar_hint/bound_key_glyph_background" | "hotbar_hint/bound_key_glyph_background/bound_key_glyph_text" | "view_toggle_content" | "view_toggle_content/button_image_templates" | "view_toggle_content/button_image_templates/image_color_templates" | "view_toggle_content/button_image_worlds" | "view_toggle_content/button_label_wrapper" | "view_toggle_content/button_label_wrapper/button_label" | "view_toggle_content/left_edge_text_padding" | "worlds_and_templates_search_bar" | "worlds_and_templates_search_bar/stack_panel" | "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper" | "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper/search_bar" | "worlds_and_templates_search_bar/stack_panel/temp_padding" | "worlds_and_templates_search_bar/stack_panel/view_toggle_background" | "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel" | "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/left_edge_padding" | "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/view_toggle_button" | "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/right_edge_padding" | "edu_cloud_conflict_resolution_popup_dialog_factory" | "edu_cloud_conflict_resolution_popup" | "edu_cloud_conflict_resolution_content" | "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper" | "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/tts_border" | "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/conflict_resolution_description" | "edu_cloud_conflict_resolution_content/padding1" | "edu_cloud_conflict_resolution_content/world_info_wrapper" | "edu_cloud_conflict_resolution_content/world_info_wrapper/tts_border" | "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack" | "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_name_label" | "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_last_changed_label" | "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_name_label" | "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_last_changed_label" | "edu_cloud_conflict_resolution_content/padding2" | "edu_cloud_conflict_resolution_content/keep_local_button" | "edu_cloud_conflict_resolution_content/keep_cloud_button" | "edu_cloud_conflict_resolution_content/keep_both_button" | "nested_buttons_base_definition"; +export type PurchaseCommon = "banner_fill" | "banner_empty" | "screenshots_grid_item" | "screenshots_grid_item/frame" | "screenshots_grid_item/frame/screenshot_image" | "screenshots_grid_item/frame/progress_loading" | "screenshots_grid_item/frame/screenshot_button" | "screenshots_grid_item/frame/screenshot_button/hover" | "screenshots_grid_item/frame/screenshot_button/pressed" | "screenshots_grid" | "key_image_frame" | "key_image_frame/zoomed" | "offer_grid_item" | "offer_grid_item/frame" | "offer_grid_item/frame/offer_key_art" | "offer_grid_item/frame/offer_button" | "offer_grid_item/frame/offer_button/hover" | "offer_grid_item/frame/offer_button/pressed" | "offer_grid" | "key_art_and_text" | "key_art_and_text/key_image_panel" | "key_art_and_text/key_image_panel/key_image" | "key_art_and_text/padding" | "key_art_and_text/description_scroll" | "pack_description"; +export type CommonButtons = "button_image" | "background_button_image" | "locked_button_image" | "light_button_assets" | "dark_button_assets" | "focus_border" | "new_ui_button_panel" | "new_ui_button_panel/button_content" | "new_ui_button_panel/border" | "new_ui_form_fitting_button_panel" | "new_ui_form_fitting_button_panel/border" | "new_ui_width_fitting_button_panel" | "new_ui_width_fitting_button_panel/border" | "new_ui_height_fitting_button_panel" | "new_ui_height_fitting_button_panel/border" | "borderless_form_fitting_button_panel" | "light_text_button" | "light_text_button/default" | "light_text_button/hover" | "light_text_button/pressed" | "light_text_button/locked" | "dark_text_button" | "dark_text_button/default" | "dark_text_button/hover" | "dark_text_button/pressed" | "dark_text_button/locked" | "new_ui_binding_button_label" | "underline_button" | "underline_button/default" | "underline_button/default/label_default" | "underline_button/hover" | "underline_button/hover/label_hover" | "underline_button/pressed" | "underline_button/pressed/label_hover" | "read_button" | "read_button/read_button_inner" | "light_content_form_fitting_button" | "dark_content_form_fitting_button" | "light_text_form_fitting_button" | "dark_text_form_fitting_button" | "transparent_content_button" | "single_image_with_border_button" | "light_content_button" | "light_content_button/default" | "light_content_button/hover" | "light_content_button/pressed" | "light_content_button/locked" | "light_content_button_control_content" | "light_content_button_control_content/default" | "light_content_button_control_content/hover" | "light_content_button_control_content/pressed" | "light_content_button_control_content/locked" | "deactivated_light_content_button" | "dark_content_button" | "dark_content_button/default" | "dark_content_button/hover" | "dark_content_button/pressed" | "dark_content_button/locked" | "no_background_content_button" | "no_background_content_button/default" | "no_background_content_button/hover" | "no_background_content_button/pressed" | "no_background_content_button/locked" | "button_content_panel" | "button_content_panel/content" | "form_fitting_button_content_panel" | "form_fitting_button_content_panel/content" | "horizontal_form_fitting" | "horizontal_form_fitting/content" | "width_fitting_button_content_panel" | "width_fitting_button_content_panel/content" | "height_fitting_button_content_panel" | "height_fitting_button_content_panel/content" | "light_glyph_button" | "light_glyph_button/default" | "light_glyph_button/hover" | "light_glyph_button/pressed" | "light_glyph_button/locked" | "dark_glyph_button_default" | "dark_glyph_button_hover" | "dark_glyph_button_pressed" | "dark_glyph_button_locked" | "dark_glyph_button" | "dark_glyph_button/default" | "dark_glyph_button/hover" | "dark_glyph_button/pressed" | "dark_glyph_button/locked" | "dark_glyph_button_with_custom_control" | "dark_glyph_button_with_custom_control/custom_control" | "dark_glyph_button_with_custom_control/default" | "dark_glyph_button_with_custom_control/hover" | "dark_glyph_button_with_custom_control/pressed" | "dark_glyph_button_with_custom_control/locked" | "glyph_content_panel" | "glyph_content_panel/glyph_button_content" | "hyperlink_button" | "hyperlink_content_button" | "nested_button_assets" | "nested_overlay_assets" | "nested_label_content_background_assets" | "nested_label_background_assets" | "nested_transparent_label_content_background_assets" | "nested_transparent_label_content_background_assets/assets" | "nested_base_label" | "nested_centered_label_control" | "nested_centered_label_control/label" | "nested_label_with_image_control" | "nested_label_with_image_control/image" | "nested_label_with_image_control/image_to_label_padding" | "nested_label_with_image_control/label_panel" | "nested_label_with_image_control/label_panel/label" | "nested_six_part_empty_definition" | "nested_six_part_label_control" | "nested_six_part_label_control/left_top_label" | "nested_six_part_label_control/left_middle_label" | "nested_six_part_label_control/left_bottom_label" | "nested_six_part_label_control/right_top_label" | "nested_six_part_label_control/right_middle_label" | "nested_six_part_label_control/right_bottom_label" | "nested_dark_button_assets" | "nested_content_background_assets" | "nested_content_overlay_assets" | "nested_dark_control_with_image" | "nested_dark_control_with_image/background" | "nested_dark_control_with_image/image_panel" | "nested_dark_control_with_image/image_panel/image" | "nestable_button" | "nestable_button/nested_controls_panel" | "nestable_button/nested_controls_panel/locked_overlay" | "nestable_button/nested_controls_panel/nested_controls" | "nestable_button/base_button" | "nestable_button/base_button/default" | "nestable_button/base_button/hover" | "nestable_button/base_button/pressed" | "nestable_button/base_button/locked" | "nested_button_base" | "nested_button_base/button_overlay" | "nested_button_base/button_control" | "nested_button_base/button_control/control_area" | "nested_button_base/button_control/control_area/background" | "nested_button_base/button_control/control_area/control" | "nested_button_base/button_control/control_area/overlay" | "nested_button_base/button_control/button_stack_padding" | "nested_button_base/button_control/label_area" | "nested_button_base/button_control/label_area/background" | "nested_button_base/button_control/label_area/control_background" | "nested_button_base/button_control/label_area/control" | "dark_nestable_button" | "transparent_label_nestable_button" | "static_tooltip_notification_panel" | "static_tooltip_notification_panel/default" | "static_tooltip_notification_panel/pressed" | "static_tooltip_notification_panel/hover" | "static_tooltip_notification_panel/locked" | "static_tooltip_notification_panel/static_tooltip_popup_panel" | "dynamic_tooltip_notification_panel" | "dynamic_tooltip_notification_panel/default" | "dynamic_tooltip_notification_panel/pressed" | "dynamic_tooltip_notification_panel/hover" | "dynamic_tooltip_notification_panel/locked" | "dynamic_tooltip_notification_panel/dyanmic_tooltip_popup_panel" | "text_body_focus_border_for_controller_button" | "text_body_focus_border_for_controller_button/default" | "text_body_focus_border_for_controller_button/hover" | "text_body_focus_border_for_controller_button/hover/focus_border" | "text_body_focus_border_for_controller_button/text_control"; +export type CommonDialogs = "standard_title_label" | "title_label" | "title_label/common_dialogs_0" | "title_label/common_dialogs_1" | "main_panel_three_buttons" | "main_panel_three_buttons/common_panel" | "main_panel_three_buttons/title_label" | "main_panel_three_buttons/panel_indent" | "main_panel_three_buttons/panel_indent/inside_header_panel" | "main_panel_three_buttons/top_button_panel" | "main_panel_three_buttons/middle_button_panel" | "main_panel_three_buttons/bottom_button_panel" | "main_panel_two_buttons" | "main_panel_two_buttons/common_panel" | "main_panel_two_buttons/title_label" | "main_panel_two_buttons/panel_indent" | "main_panel_two_buttons/panel_indent/inside_header_panel" | "main_panel_two_buttons/top_button_panel" | "main_panel_two_buttons/bottom_button_panel" | "main_panel_one_button" | "main_panel_one_button/common_panel" | "main_panel_one_button/title_label" | "main_panel_one_button/panel_indent" | "main_panel_one_button/panel_indent/inside_header_panel" | "main_panel_one_button/bottom_button_panel" | "main_panel_no_buttons" | "main_panel_no_buttons/common_panel" | "main_panel_no_buttons/title_label" | "main_panel_no_buttons/panel_indent" | "main_panel_no_buttons/panel_indent/inside_header_panel" | "main_panel_no_title_no_buttons" | "main_panel_no_title_no_buttons/common_panel" | "main_panel_no_title_no_buttons/panel_indent" | "main_panel_no_title_no_buttons/panel_indent/inside_header_panel" | "main_panel_small_title_one_button" | "main_panel_small_title_one_button/common_panel" | "main_panel_small_title_one_button/title_label" | "main_panel_small_title_one_button/panel_indent" | "main_panel_small_title_one_button/panel_indent/inside_header_panel" | "main_panel_small_title_one_button/bottom_button_panel" | "main_panel" | "main_panel/modal_background_image" | "main_panel/panel_indent" | "main_panel/panel_indent/inside_header_panel" | "form_fitting_main_panel_no_buttons" | "form_fitting_main_panel_no_buttons/common_panel" | "common_panel" | "common_panel/bg_image" | "dialog_background_common" | "dialog_background_thin" | "flat_solid_background" | "dialog_background_hollow_common" | "dialog_background_hollow_common/control" | "dialog_background_hollow_common/control/inside_header_panel" | "dialog_background_hollow_common/control/close_button_holder" | "dialog_background_hollow_common/control/title_label" | "common_close_button_holder" | "common_close_button_holder/close" | "common_close_button_holder/compact_close" | "dialog_background_opaque" | "dialog_background_opaque_with_child" | "dialog_background_hollow_1" | "dialog_background_hollow_2" | "dialog_background_hollow_3" | "dialog_background_hollow_4" | "dialog_background_hollow_6" | "full_screen_background" | "full_screen_background/background" | "background_image"; +export type CommonTabs = "empty_tab_content" | "tab_image" | "tab_panel" | "tab_panel/tab_image" | "tab_panel/tab_content_sizer" | "tab_panel/tab_content_sizer/tab_content" | "base_tab" | "tab_top" | "tab_left" | "tab_right" | "pocket_tab_left" | "pocket_tab_right" | "pocket_tab_close_button" | "pocket_tab_close_button/close_button" | "pocket_tab_help_button" | "pocket_tab_help_button/help_button" | "pocket_tab_close_and_help_button" | "pocket_tab_close_and_help_button/close_button" | "pocket_tab_close_and_help_button/help_button" | "tab_close_and_help_button" | "tab_close_and_help_button/close_button" | "tab_close_and_help_button/help_button"; +export type CommonToggles = "content_toggle_image_panel" | "content_toggle_image_panel/icon" | "content_toggle_label_panel" | "content_toggle_label_panel/toggle_label" | "content_toggle_icon_panel" | "content_toggle_icon_panel/content_toggle_image" | "toggle_content_panel" | "toggle_content_panel/toggle_image_panel" | "toggle_content_panel/toggle_image_padding_label" | "toggle_content_panel/toggle_label_panel" | "toggle_content_panel/toggle_label_padding_toggle_icon" | "toggle_content_panel/toggle_icon" | "vertical_form_fitting_toggle_content" | "vertical_form_fitting_toggle_content/toggle_image_panel" | "vertical_form_fitting_toggle_content/toggle_image_padding_label" | "vertical_form_fitting_toggle_content/toggle_label_panel" | "vertical_form_fitting_toggle_content/toggle_label_padding_toggle_icon" | "vertical_form_fitting_toggle_content/toggle_icon" | "light_text_toggle" | "light_image_toggle" | "light_content_toggle" | "dark_ui_toggle" | "dark_text_toggle" | "dark_image_toggle" | "dark_content_toggle" | "dark_vertical_template_toggle" | "dark_vertical_form_fitting_content_toggle" | "dark_vertical_form_fitting_content_toggle/dark_content_toggle" | "dark_template_toggle" | "light_template_toggle" | "light_ui_toggle" | "switch_toggle" | "light_text_toggle_collection" | "light_image_toggle_collection" | "dark_text_toggle_collection" | "dark_image_toggle_collection" | "dark_ui_toggle_collection" | "light_ui_toggle_collection" | "switch_toggle_collection" | "toggle_state_panel" | "toggle_state_panel/button_panel" | "toggle_unchecked" | "toggle_checked" | "toggle_unchecked_hover" | "toggle_checked_hover" | "toggle_locked" | "toggle_unchecked_locked" | "toggle_checked_locked" | "toggle_unchecked_hover_with_chevron" | "toggle_checked_hover_with_chevron" | "toggle_image" | "toggle_image/image" | "radio_off_icon" | "radio_off_hover_icon" | "radio_on_icon" | "radio_on_hover_icon" | "check_box_button_toggle_image" | "checkbox_button_checked_state" | "checkbox_button_unchecked_state" | "checkbox_button_checked_hover_state" | "checkbox_button_unchecked_hover_state" | "checkbox_button_checked_locked_state" | "checkbox_button_unchecked_locked_state" | "toggle_checkbox_unchecked" | "toggle_checkbox_checked" | "toggle_checkbox_unchecked_hover" | "toggle_checkbox_checked_hover" | "toggle_checkbox_unchecked_locked" | "toggle_checkbox_checked_locked" | "check_box_button_ui_panel" | "check_box_button_ui_panel/toggle_image" | "check_box_button_ui_panel/toggle_image/button_content" | "check_box_button_ui_panel/toggle_image/border" | "check_box_button_ui_panel/toggle_image/checkbox_image" | "check_box_button_ui_panel/toggle_image/checkbox_image/image" | "button_and_checkbox_template" | "button_with_checkbox_toggle"; +export type Friendsbutton = "friendsdrawer_animated_icon" | "profilepicture" | "persona_icon_with_border" | "persona_icon_with_border/profile_icon" | "persona_icon_with_border/border_black" | "friendsdrawer_persona_icons" | "social_button_stackpanel" | "social_button_stackpanel/image_panel" | "social_button_stackpanel/image_panel/social_icon" | "social_button_hover_stackpanel" | "self_persona_stackpanel" | "self_persona_stackpanel/self_icon" | "single_friend_persona_stackpanel" | "single_friend_persona_stackpanel/self_icon" | "single_friend_persona_stackpanel/friend_one_icon" | "many_friend_persona_stackpanel" | "many_friend_persona_stackpanel/self_icon" | "many_friend_persona_stackpanel/extra_friends_text_panel" | "many_friend_persona_stackpanel/extra_friends_text_panel/background" | "many_friend_persona_stackpanel/extra_friends_text_panel/extra_members_label" | "many_friend_persona_stackpanel/extra_friends_text_panel/border_black" | "button" | "button/default" | "button/hover" | "button/pressed" | "button/locked" | "social_factory_stackpanel_default" | "social_factory_stackpanel_hovered" | "friendsdrawer_button_content" | "friendsdrawer_button_content/social_factory_stackpanel" | "friendsdrawer_button_content/padding_middle" | "friendsdrawer_button_content/vertically_centered_text" | "friendsdrawer_button_content/vertically_centered_text/top_padding" | "friendsdrawer_button_content/vertically_centered_text/profile_button_label" | "friendsdrawer_button_content/padding_right" | "friendsdrawer_hover_button_content" | "friends_drawer_popup"; +export type Iconbutton = "iconbutton_animated_icon" | "button" | "iconbutton_button_content" | "iconbutton_button_content/icon_wrapper" | "iconbutton_button_content/icon_wrapper/icon_with_border" | "iconbutton_button_content/icon_wrapper/icon_with_border/iconbutton_animated_icon" | "iconbutton_button_content/icon_wrapper/icon_with_border/border_black" | "iconbutton_button_content/padding_middle" | "iconbutton_button_content/vertically_centered_text" | "iconbutton_button_content/vertically_centered_text/top_padding" | "iconbutton_button_content/vertically_centered_text/profile_button_label"; +export type UpdateDimensions = "update_dimensions_update_and_play_button" | "update_dimensions_description" | "update_dimensions_label_panel" | "make_backup_checkbox" | "make_backup_checkbox/header_description_stack_panel" | "make_backup_checkbox/header_description_stack_panel/checkbox_visuals" | "make_backup_checkbox/header_description_stack_panel/buffer_panel" | "make_backup_checkbox/header_description_stack_panel/buffer_panel/label" | "make_backup_checkbox/header_description_stack_panel/another_panel" | "world_upgrade" | "update_dimensions_dialog" | "update_dimensions_dialog/common_panel" | "update_dimensions_dialog/title_label" | "update_dimensions_dialog/panel_indent" | "update_dimensions_dialog/panel_indent/inside_header_panel" | "update_dimensions_dialog/top_button_panel" | "update_dimensions_dialog/bottom_button_panel" | "update_dimensions_dialog/world_upgrade_image" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "update_dimensions_screen" | "update_dimensions_screen_content" | "update_dimensions_screen_content/update_dimensions_dialog" | "update_dimensions_screen_content/gamepad_helpers"; +export type UpdateVersion = "update_version_screen" | "update_version_popup" | "background" | "update_version_content" | "update_version_content/top_of_version_panel" | "update_version_content/spacer_1px" | "update_version_content/update_body_text" | "update_version_content/spacer_1px_2" | "patch_notes_panel" | "patch_notes_panel/patch_notes_text" | "picture_and_patch_notes" | "picture_and_patch_notes/patch_notes_image_outline" | "picture_and_patch_notes/patch_notes_image_outline/patch_notes_image" | "picture_and_patch_notes/patch_notes_panel" | "patch_notes" | "patch_notes/patch_notes_text" | "update_body_text" | "update_button"; +export type WorldRecovery = "world_recovery_screen" | "world_recovery_screen_content" | "world_recovery_screen_content/dialog" | "description_panel" | "scrolling_panel" | "description_label" | "button_panel" | "background"; +export type WorldTemplates = "horizontal_padding" | "world_icon" | "realms_icon" | "label_background" | "lock_icon" | "realms_plus_icon" | "new_world_toggle" | "new_realm_toggle" | "world_button_content" | "world_button_content/horizontal_padding_0" | "world_button_content/icon_panel" | "world_button_content/horizontal_padding_1" | "world_button_content/world_button_label_panel" | "world_button_content/world_button_label_panel/world_button_label" | "world_button_content/horizontal_padding_2" | "world_button_label" | "common_button_template" | "generate_random" | "help_button" | "grid_button_content_template" | "grid_button_content_template/content" | "label_content_template" | "label_content_template/label_panel" | "label_content_template/label_panel/label_panel_layout" | "label_content_template/label_panel/label_panel_layout/label" | "my_templates_label" | "realms_plus_templates_label" | "custom_templates_label" | "generate_random_button" | "realms_templates_info" | "realms_templates_info/info_label" | "world_list_text" | "world_template_screenshot" | "world_template_screenshot/picture" | "world_template_name" | "world_template_description" | "world_template_version" | "template_download_text" | "world_template_text_panel" | "world_template_text_panel/text_indent" | "world_template_text_panel/text_indent/top_side" | "world_template_text_panel/text_indent/top_side/world_template_name" | "world_template_text_panel/text_indent/top_side/download_text_label" | "world_template_text_panel/text_indent/bottom_side" | "world_template_text_panel/text_indent/bottom_side/csb_icon" | "world_template_text_panel/text_indent/bottom_side/pad" | "world_template_text_panel/text_indent/bottom_side/world_template_description" | "world_template_text_panel/text_indent/bottom_side/world_template_version" | "csb_banner" | "csb_banner/banner" | "world_template_content_panel" | "world_template_content_panel/world_template_screenshot" | "world_template_content_panel/world_template_text_panel" | "world_template_content_panel/lock_panel" | "world_template_content_panel/lock_panel/lock_icon" | "world_template_item_button" | "realms_plus_template_item_button" | "world_template_item" | "world_template_item/world_template_item_button" | "realms_plus_template_item" | "realms_plus_template_item/realms_plus_template_item_button" | "world_template_item_grid" | "see_more_templates_button" | "suggested_see_more_button" | "realms_plus_see_more_button" | "world_template_inventory_see_more_button" | "custom_world_template_see_more_button" | "world_template_section_factory" | "suggested_template_section_factory" | "realms_plus_template_section_factory" | "world_template_inventory_section_factory" | "custom_world_template_section_factory" | "custom_world_template_item_grid" | "no_owned_templates_text_label" | "no_owned_templates_text" | "no_template_content_owned" | "no_template_content_owned/no_template_content_owned_text_panel" | "common_scrolling_panel" | "common_content" | "scrolling_offsets" | "template_scroll_content" | "template_scroll_content/scrolling_panel" | "common_scroll_pane" | "template_scroll_panel" | "template_scroll_panel/world_template_screen_content_stack_panel" | "world_list_grids_stack" | "world_list_grids_stack/template_list_panel" | "world_list_grids_stack/template_list_panel/my_templates_label_panel" | "world_list_grids_stack/template_list_panel/world_template_inventory_section_factory" | "world_list_grids_stack/template_list_panel/template_bottom_padding" | "world_list_grids_stack/store_panel" | "world_list_grids_stack/store_panel/loading_panel" | "world_list_grids_stack/store_panel/store_grids" | "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel" | "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_label_panel" | "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_section_factory" | "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_bottom_padding" | "world_list_grids_stack/store_panel/store_grids/suggested_content_panel" | "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_content_offers_title_label" | "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_section_factory" | "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_bottom_padding" | "world_list_grids_stack/custom_template_panel" | "world_list_grids_stack/custom_template_panel/custom_templates_label_panel" | "world_list_grids_stack/custom_template_panel/custom_world_template_section_factory" | "world_list_grids_stack/custom_template_panel/custom_template_list_bottom_padding" | "world_list_grids_stack/realms_info_panel" | "world_list_grids_stack/realms_info_panel/padding" | "world_list_grids_stack/realms_info_panel/realms_templates_info" | "world_list_grids_stack/realms_info_panel/open_uri_button" | "world_list_grid_content" | "world_list_grid_content/world_list_grids_stack" | "world_template_screen_content_stack_panel" | "world_template_screen_content_stack_panel/padding_0" | "world_template_screen_content_stack_panel/crossplatform_disabled_panel" | "world_template_screen_content_stack_panel/crossplatform_disabled_panel/disable_text" | "world_template_screen_content_stack_panel/crossplatform_disable_spacer" | "world_template_screen_content_stack_panel/generate_random_panel" | "world_template_screen_content_stack_panel/generate_random_button_bottom_padding" | "world_template_screen_content_stack_panel/world_list_grid_content" | "open_account_setting_button" | "world_templates_screen" | "world_templates_picker_content" | "world_templates_picker_content/background"; +export type XblConsoleQrSignin = "banner_fill" | "main_panel_qr" | "main_panel_qr/left_panel" | "main_panel_qr/divider" | "main_panel_qr/right_panel" | "main_panel_qr/right_panel/scrolling_panel_sizer" | "main_panel_qr/right_panel/scrolling_panel_sizer/right_scroll_panel" | "common_scrolling_panel" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_b" | "xbl_console_qr_signin" | "xbl_console_qr_signin_screen_content" | "xbl_console_qr_signin_screen_content/gamepad_helpers" | "xbl_console_qr_signin_screen_content/dialog" | "dialog" | "scroll_content_focus_border" | "left_panel" | "left_panel/left_header" | "left_panel/padding_1" | "left_panel/left_body" | "left_panel/padding_2" | "left_panel/qr_panel" | "left_panel/qr_panel/qr_border" | "left_panel/qr_panel/qr_code" | "left_panel/qr_panel/bee_overlay" | "input_panel_wrapper" | "input_panel_wrapper/r_scroll_panel" | "right_scroll_panel" | "right_scroll_panel/right_header" | "right_scroll_panel/padding_1" | "right_scroll_panel/website_message_label" | "right_scroll_panel/padding_2" | "right_scroll_panel/wrapper_panel_1" | "right_scroll_panel/wrapper_panel_1/banner_1" | "right_scroll_panel/wrapper_panel_1/banner_1/url_label" | "right_scroll_panel/padding_3" | "right_scroll_panel/code_message_label" | "right_scroll_panel/padding_4" | "right_scroll_panel/wrapper_panel_2" | "right_scroll_panel/wrapper_panel_2/banner_2" | "right_scroll_panel/wrapper_panel_2/banner_2/code_label" | "right_scroll_panel/padding_5" | "right_scroll_panel/code_message_body1" | "right_scroll_panel/padding_6" | "right_scroll_panel/code_message_body2" | "right_scroll_panel/padding_7" | "right_scroll_panel/warning_messages" | "ps4_warning_message_panel" | "ps4_warning_message_panel/sign_in_account_message" | "ps4_warning_message_panel/padding_1" | "ps4_warning_message_panel/permanent_linking_message"; +export type XblConsoleSignin = "banner_fill" | "main_panel" | "main_panel/padding_0" | "main_panel/message_label_panel" | "main_panel/message_label_panel/message_label" | "main_panel/padding_1" | "main_panel/website_message_label" | "main_panel/banner_1" | "main_panel/banner_1/url_label" | "main_panel/padding_2" | "main_panel/code_message_label" | "main_panel/banner_2" | "main_panel/banner_2/code_label" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_b" | "xbl_console_signin" | "xbl_console_signin_screen_content" | "xbl_console_signin_screen_content/gamepad_helpers" | "xbl_console_signin_screen_content/dialog" | "dialog"; +export type XblConsoleSigninSucceeded = "banner_fill" | "gamer_score_icon" | "profile_pic" | "gamertag_label" | "gamer_score_label" | "gamer_score_panel" | "gamer_score_panel/gamer_score_icon" | "gamer_score_panel/padding_0" | "gamer_score_panel/gamer_score_panel" | "gamer_score_panel/gamer_score_panel/gamer_score" | "button_panel" | "button_panel/play" | "text_panel" | "text_panel/new_account_text" | "third_party_platform_legal_text" | "new_account_text_panel" | "gamer_profile_panel" | "gamer_profile_panel/picture_panel" | "gamer_profile_panel/picture_panel/banner" | "gamer_profile_panel/picture_panel/banner/profile_pic" | "gamer_profile_panel/padding_1" | "gamer_profile_panel/info_panel" | "gamer_profile_panel/info_panel/profile_info_panel" | "gamer_profile_panel/info_panel/profile_info_panel/gamertag_label" | "gamer_profile_panel/info_panel/profile_info_panel/padding_0" | "gamer_profile_panel/info_panel/profile_info_panel/gamer_score_panel" | "main_panel" | "main_panel/profile" | "main_panel/padding_0" | "main_panel/third_party_legal_text_panel" | "main_panel/padding_1" | "main_panel/new_account_text_panel" | "main_panel/padding_2" | "main_panel/button_panel" | "xbl_console_signin_succeeded" | "xbl_console_signin_succeeded_screen_content" | "xbl_console_signin_succeeded_screen_content/dialog" | "dialog"; +export type XblImmediateSignin = "xbl_immediate_signin_screen" | "xbl_immediate_signin_screen_content" | "xbl_immediate_signin_screen_content/root_panel"; +export type Win10TrialConversion = "padding_horizontal" | "padding_vertical" | "padding_vertical_3" | "background_image" | "title_image" | "focus_border" | "pack_image" | "pack_image_panel" | "pack_image_panel/pack_image" | "title_image_border" | "title_image_border/image" | "pack_image_with_border" | "pack_image_with_border/image" | "label_panel" | "button_panel" | "button_panel/padding_5" | "button_panel/buy_now_button" | "button_panel/padding_6" | "buy_now_button" | "buy_now_label" | "buy_now_label/button_label" | "is_focused" | "filler_panel" | "focus_border_button" | "focus_border_button/default" | "focus_border_button/hover" | "focus_border_button/pressed" | "grid_item" | "grid_item/padding_1" | "grid_item/pack_image_pane" | "grid_item/padding_2" | "grid_item/pack_panel" | "grid_item/padding_3" | "grid_item_vertical" | "grid_item_vertical/grid_item_horizontal" | "grid_item_vertical/pack_grid" | "pack_panel" | "pack_panel/packtitle" | "pack_panel/padding_2" | "pack_panel/packdesc" | "collection_main_panel" | "collection_main_panel/padding_1" | "collection_main_panel/title_panel" | "collection_main_panel/padding_2" | "collection_main_panel/title_image_panel" | "collection_main_panel/title_image_panel/border_image" | "collection_main_panel/padding_3" | "collection_main_panel/offer_panel" | "collection_main_panel/offer_panel/padding_1" | "collection_main_panel/offer_panel/label_panel" | "collection_main_panel/offer_panel/label_panel/offer_label" | "collection_main_panel/offer_panel/padding_2" | "collection_main_panel/padding_4" | "collection_main_panel/button_panel" | "collection_main_panel/padding_5" | "collection_main_panel/include_panel" | "collection_main_panel/include_panel/padding_1" | "collection_main_panel/include_panel/include_label" | "collection_main_panel/padding_6" | "collection_main_panel/pack_list_grid" | "background_image_with_border" | "background_image_with_border/main_panel_no_buttons" | "win10_trial_conversion_main_panel" | "win10_trial_conversion_main_panel/scrolling_panel" | "vertical_main_panel" | "vertical_main_panel/padding_1" | "vertical_main_panel/panel" | "vertical_main_panel/padding_2" | "horizontal_main_panel" | "horizontal_main_panel/padding_1" | "horizontal_main_panel/starter_collection" | "horizontal_main_panel/padding_2" | "horizontal_main_panel/master_collection" | "win10_trial_conversion_screen" | "win10_trial_conversion_panel"; \ No newline at end of file diff --git a/src/types/vanilla/index.ts b/src/types/vanilla/index.ts new file mode 100644 index 0000000..1a82b2b --- /dev/null +++ b/src/types/vanilla/index.ts @@ -0,0 +1,2 @@ +export * from "./elements.js" +export * from "./intellisense.js" diff --git a/src/types/vanilla/intellisense.ts b/src/types/vanilla/intellisense.ts new file mode 100644 index 0000000..9508817 --- /dev/null +++ b/src/types/vanilla/intellisense.ts @@ -0,0 +1,212 @@ +import * as mc from "./elements.js" + +export type IntelliSense = { + achievement: mc.Achievement + add_external_server: mc.AddExternalServer + adhoc_inprogress: mc.AdhocInprogress + adhoc: mc.Adhoc + anvil: mc.Anvil + anvil_pocket: mc.AnvilPocket + authentication_modals: mc.AuthenticationModals + authentication: mc.Authentication + auto_save_info: mc.AutoSaveInfo + beacon: mc.Beacon + beacon_pocket: mc.BeaconPocket + blast_furnace: mc.BlastFurnace + book: mc.Book + brewing_stand: mc.BrewingStand + brewing_stand_pocket: mc.BrewingStandPocket + bundle_purchase_warning: mc.BundlePurchaseWarning + cartography: mc.Cartography + cartography_pocket: mc.CartographyPocket + chalkboard: mc.Chalkboard + chat: mc.Chat + chat_settings: mc.ChatSettings + chest: mc.Chest + choose_realm: mc.ChooseRealm + coin_purchase: mc.CoinPurchase + command_block: mc.CommandBlock + confirm_delete_account: mc.ConfirmDeleteAccount + content_log: mc.ContentLog + content_log_history: mc.ContentLogHistory + crafter_pocket: mc.CrafterPocket + create_world_upsell: mc.CreateWorldUpsell + credits: mc.Credits + csb_purchase_error: mc.CsbPurchaseError + csb: mc.Csb + csb_content: mc.CsbContent + csb_banner: mc.CsbBanner + csb_buy: mc.CsbBuy + common_csb: mc.CommonCsb + csb_purchase_amazondevicewarning: mc.CsbPurchaseAmazondevicewarning + csb_purchase_warning: mc.CsbPurchaseWarning + csb_subscription_panel: mc.CsbSubscriptionPanel + csb_upsell: mc.CsbUpsell + csb_packs: mc.CsbPacks + csb_welcome: mc.CsbWelcome + csb_faq: mc.CsbFaq + csb_landing: mc.CsbLanding + custom_templates: mc.CustomTemplates + world_conversion_complete: mc.WorldConversionComplete + day_one_experience_intro: mc.DayOneExperienceIntro + day_one_experience: mc.DayOneExperience + death: mc.Death + debug_screen: mc.DebugScreen + dev_console: mc.DevConsole + disconnect: mc.Disconnect + display_logged_error: mc.DisplayLoggedError + discovery_dialog: mc.DiscoveryDialog + edu_featured: mc.EduFeatured + edu_quit_button: mc.EduQuitButton + persona_emote: mc.PersonaEmote + enchanting: mc.Enchanting + enchanting_pocket: mc.EnchantingPocket + encyclopedia: mc.Encyclopedia + expanded_skin_pack: mc.ExpandedSkinPack + feed_common: mc.FeedCommon + file_upload: mc.FileUpload + furnace: mc.Furnace + furnace_pocket: mc.FurnacePocket + game_tip: mc.GameTip + gamepad_disconnected: mc.GamepadDisconnected + gameplay: mc.Gameplay + gathering_info: mc.GatheringInfo + globalpause: mc.Globalpause + grindstone: mc.Grindstone + grindstone_pocket: mc.GrindstonePocket + gamma_calibration: mc.GammaCalibration + horse: mc.Horse + horse_pocket: mc.HorsePocket + how_to_play_common: mc.HowToPlayCommon + how_to_play: mc.HowToPlay + hud: mc.Hud + host_options: mc.HostOptions + bed: mc.Bed + im_reader: mc.ImReader + crafting: mc.Crafting + crafting_pocket: mc.CraftingPocket + invite: mc.Invite + jigsaw_editor: mc.JigsawEditor + late_join: mc.LateJoin + library_modal: mc.LibraryModal + local_world_picker: mc.LocalWorldPicker + loom: mc.Loom + loom_pocket: mc.LoomPocket + manage_feed: mc.ManageFeed + manifest_validation: mc.ManifestValidation + sdl_label: mc.SdlLabel + sdl_dropdowns: mc.SdlDropdowns + sdl_image_row: mc.SdlImageRow + sdl_text_row: mc.SdlTextRow + mob_effect: mc.MobEffect + non_xbl_user_management: mc.NonXblUserManagement + npc_interact: mc.NpcInteract + online_safety: mc.OnlineSafety + pack_settings: mc.PackSettings + panorama: mc.Panorama + patch_notes: mc.PatchNotes + pause: mc.Pause + pdp: mc.Pdp + pdp_screenshots: mc.PdpScreenshots + permissions: mc.Permissions + persona_cast_character_screen: mc.PersonaCastCharacterScreen + persona_common: mc.PersonaCommon + persona_popups: mc.PersonaPopups + play: mc.Play + perf_turtle: mc.PerfTurtle + pocket_containers: mc.PocketContainers + popup_dialog: mc.PopupDialog + portfolio: mc.Portfolio + progress: mc.Progress + rating_prompt: mc.RatingPrompt + realms_common: mc.RealmsCommon + realms_create: mc.RealmsCreate + realms_pending_invitations: mc.RealmsPendingInvitations + realms_slots: mc.RealmsSlots + realms_settings: mc.RealmsSettings + realms_allowlist: mc.RealmsAllowlist + realms_invite_link_settings: mc.RealmsInviteLinkSettings + realms_plus_ended: mc.RealmsPlusEnded + realmsPlus: mc.RealmsPlus + realmsPlus_content: mc.RealmsPlusContent + realmsPlus_faq: mc.RealmsPlusFaq + realmsPlus_landing: mc.RealmsPlusLanding + realmsPlus_buy: mc.RealmsPlusBuy + realmsPlus_packs: mc.RealmsPlusPacks + realmsPlus_purchase_warning: mc.RealmsPlusPurchaseWarning + realms_stories_transition: mc.RealmsStoriesTransition + redstone: mc.Redstone + resource_packs: mc.ResourcePacks + safe_zone: mc.SafeZone + storage_migration_common: mc.StorageMigrationCommon + storage_migration_generic: mc.StorageMigrationGeneric + scoreboard: mc.Scoreboard + screenshot: mc.Screenshot + select_world: mc.SelectWorld + server_form: mc.ServerForm + settings: mc.Settings + controls_section: mc.ControlsSection + general_section: mc.GeneralSection + realms_world_section: mc.RealmsWorldSection + settings_common: mc.SettingsCommon + world_section: mc.WorldSection + social_section: mc.SocialSection + sidebar_navigation: mc.SidebarNavigation + sign: mc.Sign + simple_inprogress: mc.SimpleInprogress + skin_pack_purchase: mc.SkinPackPurchase + skin_picker: mc.SkinPicker + smithing_table: mc.SmithingTable + smithing_table_2: mc.SmithingTable2 + smithing_table_pocket: mc.SmithingTablePocket + smithing_table_2_pocket: mc.SmithingTable2Pocket + smoker: mc.Smoker + start: mc.Start + stonecutter: mc.Stonecutter + stonecutter_pocket: mc.StonecutterPocket + storage_management: mc.StorageManagement + storage_management_popup: mc.StorageManagementPopup + common_store: mc.CommonStore + store_layout: mc.StoreLayout + filter_menu: mc.FilterMenu + store_inventory: mc.StoreInventory + store_item_list: mc.StoreItemList + store_progress: mc.StoreProgress + promo_timeline: mc.PromoTimeline + store_sale_item_list: mc.StoreSaleItemList + store_search: mc.StoreSearch + sort_menu: mc.SortMenu + structure_editor: mc.StructureEditor + submit_feedback: mc.SubmitFeedback + tabbed_upsell: mc.TabbedUpsell + thanks_for_testing: mc.ThanksForTesting + third_party_store: mc.ThirdPartyStore + toast_screen: mc.ToastScreen + token_faq: mc.TokenFaq + trade: mc.Trade + trade_pocket: mc.TradePocket + trade2: mc.Trade2 + trade2_pocket: mc.Trade2Pocket + trialUpsell: mc.TrialUpsell + ugc_viewer: mc.UgcViewer + common_art: mc.CommonArt + common: mc.Common + "common-classic": mc.CommonClassic + edu_common: mc.EduCommon + purchase_common: mc.PurchaseCommon + common_buttons: mc.CommonButtons + common_dialogs: mc.CommonDialogs + common_tabs: mc.CommonTabs + common_toggles: mc.CommonToggles + friendsbutton: mc.Friendsbutton + iconbutton: mc.Iconbutton + update_dimensions: mc.UpdateDimensions + update_version: mc.UpdateVersion + world_recovery: mc.WorldRecovery + world_templates: mc.WorldTemplates + xbl_console_qr_signin: mc.XblConsoleQrSignin + xbl_console_signin: mc.XblConsoleSignin + xbl_console_signin_succeeded: mc.XblConsoleSigninSucceeded + xbl_immediate_signin: mc.XblImmediateSignin + win10_trial_conversion: mc.Win10TrialConversion +} diff --git a/test/app.ts b/test/app.ts index ddbd984..750edc5 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1,4 +1 @@ -import { Lexer, Parser } from ".." - -const { out } = new Parser("`A${`#a${#a + #b}`}A`").out() -console.log(out) +import { Modify } from ".." From 6a5addb38322aea743d05dd651d214548ed48ba7 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sun, 18 Jan 2026 03:24:03 +0700 Subject: [PATCH 009/245] improve intellisense --- package.json | 6 +- scripts/autocomplete-build.ts | 39 +- scripts/custom.ts | 2 +- scripts/write/enum.ts | 4 + src/components/Modify.ts | 9 +- src/components/UI.ts | 18 +- src/components/Utils.ts | 7 +- src/types/enums/Type.ts | 69 +- src/types/properties/element/Control.ts | 1 + src/types/vanilla/elements.ts | 210 - src/types/vanilla/index.ts | 1 - src/types/vanilla/intellisense.ts | 20063 +++++++++++++++++++++- src/types/vanilla/paths.ts | 19435 +++++++++++++++++++++ test/app.ts | 8 +- tsconfig.json | 4 +- 15 files changed, 39393 insertions(+), 483 deletions(-) delete mode 100644 src/types/vanilla/elements.ts create mode 100644 src/types/vanilla/paths.ts diff --git a/package.json b/package.json index 7412453..4cdc0fe 100644 --- a/package.json +++ b/package.json @@ -20,14 +20,14 @@ "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { - "build": "npx tsc", - "dev": "npx tsc --watch", + "build": "tsc", + "dev": "tsc --watch", "test": "bun test/app.ts", "test:watch": "bun --watch test/app.ts", "prefetch": "bun scripts/prefetch", "gen:enums": "bun scripts/write/enum", "vanilla:defs": "bun scripts/vanilladefs", - "vanilla:autocomplete": "bun scripts/autocomplete-build" + "gen:autocomplete": "bun scripts/autocomplete-build" }, "devDependencies": { "@types/node": "^25.0.3", diff --git a/scripts/autocomplete-build.ts b/scripts/autocomplete-build.ts index a0b455c..b18ed9d 100644 --- a/scripts/autocomplete-build.ts +++ b/scripts/autocomplete-build.ts @@ -6,32 +6,47 @@ function toCamelCase(str: string) { return str.replace(/[-_]\w/g, m => m[1].toUpperCase()) } -const type: string[] = [] -const $$namespace: string[] = [] +const intelliSense: string[] = [ + 'import { Type as T } from "../enums/Type.js"\n', + "export type Namespace = keyof IntelliSense;", + "export type Element = IntelliSense[T]", + "export type VanillaType> = IntelliSense[T][K]\n", + "export type IntelliSense = {", +] -const intelliSense: string[] = ['import * as mc from "./elements.js"\n', "export type IntelliSense = {"] +const intelliSenseTypeEachNamespace: string[] = [] + +const paths: string[] = ["export const paths = {"] for (const [namespace, element] of Object.entries(data)) { if (namespace === "undefined") continue - $$namespace.push(`"${namespace}"`) const $namespace = toCamelCase("_" + namespace) - const eType: string[] = [] + const eType: string[] = [], + eType3: string[] = [`export type ${$namespace}Type = {`], + ePaths: string[] = [` "${namespace}": {`] + for (const [ePath, info] of Object.entries(element)) { const { file, type, extend } = info eType.push(`"${ePath}"`) + eType3.push(` "${ePath}": T.${type.toUpperCase()},`) + ePaths.push(` "${ePath}": "${file}",`) } - intelliSense.push(` "${namespace}": mc.${$namespace},`) + eType3.push("}\n") + ePaths.push(" },") - type.push(`export type ${$namespace} = ${eType.join(" | ")};`) + paths.push(ePaths.join("\n")) + intelliSense.push(` "${namespace}": ${$namespace}Type,`) + intelliSenseTypeEachNamespace.push(eType3.join("\n")) } intelliSense.push("}") -fs.writeFileSync( - "src/types/vanilla/elements.ts", - `export type Namespace = ${$$namespace.join(" | ")}\n\n` + type.join("\n"), -) +paths.push("}") -fs.writeFileSync("src/types/vanilla/intellisense.ts", intelliSense.join("\n")) +fs.writeFileSync( + "src/types/vanilla/intellisense.ts", + intelliSense.join("\n") + "\n\n" + intelliSenseTypeEachNamespace.join("\n"), +) +fs.writeFileSync("src/types/vanilla/paths.ts", paths.join("\n")) diff --git a/scripts/custom.ts b/scripts/custom.ts index 4360653..ee2d309 100644 --- a/scripts/custom.ts +++ b/scripts/custom.ts @@ -1,4 +1,4 @@ -export {} // 👈 BẮT BUỘC +export {} declare global { interface String { diff --git a/scripts/write/enum.ts b/scripts/write/enum.ts index d93b206..33a5ef5 100644 --- a/scripts/write/enum.ts +++ b/scripts/write/enum.ts @@ -35,6 +35,10 @@ for (const key in schema) { } } + if (enumName === "Type") { + fileData.push(` UNKNOWN = "unknown",`) + } + fileData.push("}") fs.writeFile(`${enumPath}${enumName}.ts`, fileData.join("\n")) diff --git a/src/components/Modify.ts b/src/components/Modify.ts index 146bfe2..7edfa42 100644 --- a/src/components/Modify.ts +++ b/src/components/Modify.ts @@ -1,5 +1,8 @@ -import { Namespace } from "../types/vanilla/elements.js" -import { IntelliSense } from "../types/vanilla/intellisense.js" +import { IntelliSense, Namespace, Element, VanillaType } from "../types/vanilla/intellisense.js" +import { paths } from "../types/vanilla/paths.js" import { UI } from "./UI.js" -export function Modify(namespace: T, name: IntelliSense[T]) {} +export function Modify>(namespace: T, name: K) { + // @ts-ignore -- TS cannot prove this, but runtime guarantees it + return new UI>(undefined, name, namespace, paths[namespace][name]) +} diff --git a/src/components/UI.ts b/src/components/UI.ts index 098eacc..3db4668 100644 --- a/src/components/UI.ts +++ b/src/components/UI.ts @@ -3,22 +3,30 @@ import { Memory } from "../compilers/Memory.js" import { Renderer } from "../types/enums/Renderer.js" import { Type } from "../types/enums/Type.js" import { Properties } from "../types/properties/components.js" +import { Namespace, VanillaType } from "../types/vanilla/intellisense.js" import { Class } from "./Class.js" import { RandomString } from "./Utils.js" import util from "node:util" export class UI extends Class { - private path: string + path: string name: string namespace: string extend?: UI + canExtend: boolean + controls = new Map, Properties]>() properties: Properties = {} - constructor(public type?: T, name?: string, namespace?: string, path?: string) { + constructor( + public type?: T, + name?: string, + namespace?: string, + path?: string, + ) { super() if (name === "namespace") { @@ -26,12 +34,14 @@ export class UI extends Class process.exit(1) } - this.name = name?.match(/^\w+/)?.[0] || RandomString(16) + this.name = name?.match(/^(\w|\/)+/)?.[0] || RandomString(16) this.namespace = namespace || RandomString(16) if (!path) this.path = `@/${this.namespace}` else this.path = path + this.canExtend = this.name.search("/") === -1 + Memory.register_ui(this.path, this) } @@ -79,7 +89,7 @@ export class UI extends Class } return `\x1b[33mUI\x1b[0m<\x1b[92m${ - this.type || `${this.extend}` + this.type || this.extend ? `${this.extend}` : "ANY" }\x1b[0m> \x1b[92m"${this}\x1b[92m"\x1b[0m ${util.inspect(obj, opts)}\n` } } diff --git a/src/components/Utils.ts b/src/components/Utils.ts index 30de344..ff7467d 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -116,7 +116,7 @@ export function Custom( renderer: R, properties?: Properties, name?: string, - namespace?: string + namespace?: string, ) { const custom = new UI(Type.CUSTOM, name, namespace) if (properties) custom.setProperties({ renderer, ...properties }) @@ -171,8 +171,11 @@ export function Extends( element: UI, properties?: Properties, name?: string, - namespace?: string + namespace?: string, ) { + if (!element.canExtend) { + throw new Error("Cannot extend a UI that cannot be extended") + } const ui = new UI(undefined, name, namespace) if (properties) ui.setProperties(properties) ui.extend = element diff --git a/src/types/enums/Type.ts b/src/types/enums/Type.ts index 95113bd..dc70234 100644 --- a/src/types/enums/Type.ts +++ b/src/types/enums/Type.ts @@ -1,35 +1,36 @@ export enum Type { - SELECTION_WHEEL = "selection_wheel", - PANEL = "panel", - SCREEN = "screen", - STACK_PANEL = "stack_panel", - LABEL = "label", - IMAGE = "image", - INPUT_PANEL = "input_panel", - CUSTOM = "custom", - GRID = "grid", - FACTORY = "factory", - BUTTON = "button", - TOGGLE = "toggle", - SLIDER = "slider", - EDIT_BOX = "edit_box", - DROPDOWN = "dropdown", - SCROLL_VIEW = "scroll_view", - SLIDER_BOX = "slider_box", - SCROLLBAR_BOX = "scrollbar_box", - SCROLL_TRACK = "scroll_track", - GRID_PAGE_INDICATOR = "grid_page_indicator", - IMAGE_CYCLER = "image_cycler", - LABEL_CYCLER = "label_cycler", - COLLECTION_PANEL = "collection_panel", - TOOLTIP_TRIGGER = "tooltip_trigger", - TAB = "tab", - CAROUSEL_LABEL = "carousel_label", - COMBOX = "combox", - LAYOUT = "layout", - STACK_GRID = "stack_grid", - JOYSTICK = "joystick", - RICH_TEXT = "rich_text", - SIXTEEN_NINE_LAYOUT = "sixteen_nine_layout", - MUL_LINES = "mul_lines", -} \ No newline at end of file + SELECTION_WHEEL = "selection_wheel", + PANEL = "panel", + SCREEN = "screen", + STACK_PANEL = "stack_panel", + LABEL = "label", + IMAGE = "image", + INPUT_PANEL = "input_panel", + CUSTOM = "custom", + GRID = "grid", + FACTORY = "factory", + BUTTON = "button", + TOGGLE = "toggle", + SLIDER = "slider", + EDIT_BOX = "edit_box", + DROPDOWN = "dropdown", + SCROLL_VIEW = "scroll_view", + SLIDER_BOX = "slider_box", + SCROLLBAR_BOX = "scrollbar_box", + SCROLL_TRACK = "scroll_track", + GRID_PAGE_INDICATOR = "grid_page_indicator", + IMAGE_CYCLER = "image_cycler", + LABEL_CYCLER = "label_cycler", + COLLECTION_PANEL = "collection_panel", + TOOLTIP_TRIGGER = "tooltip_trigger", + TAB = "tab", + CAROUSEL_LABEL = "carousel_label", + COMBOX = "combox", + LAYOUT = "layout", + STACK_GRID = "stack_grid", + JOYSTICK = "joystick", + RICH_TEXT = "rich_text", + SIXTEEN_NINE_LAYOUT = "sixteen_nine_layout", + MUL_LINES = "mul_lines", + UNKNOWN = "unknown", +} diff --git a/src/types/properties/element/Control.ts b/src/types/properties/element/Control.ts index 4fa97dd..af56c56 100644 --- a/src/types/properties/element/Control.ts +++ b/src/types/properties/element/Control.ts @@ -2,6 +2,7 @@ import { AnimValue, Array2, Binding, PropertyBags, Value, Variable } from "../va export interface Control { visible?: Value + ignored?: Value enabled?: Value layer?: Value z_order?: Value diff --git a/src/types/vanilla/elements.ts b/src/types/vanilla/elements.ts deleted file mode 100644 index c6bf00a..0000000 --- a/src/types/vanilla/elements.ts +++ /dev/null @@ -1,210 +0,0 @@ -export type Namespace = "achievement" | "add_external_server" | "adhoc_inprogress" | "adhoc" | "anvil" | "anvil_pocket" | "authentication_modals" | "authentication" | "auto_save_info" | "beacon" | "beacon_pocket" | "blast_furnace" | "book" | "brewing_stand" | "brewing_stand_pocket" | "bundle_purchase_warning" | "cartography" | "cartography_pocket" | "chalkboard" | "chat" | "chat_settings" | "chest" | "choose_realm" | "coin_purchase" | "command_block" | "confirm_delete_account" | "content_log" | "content_log_history" | "crafter_pocket" | "create_world_upsell" | "credits" | "csb_purchase_error" | "csb" | "csb_content" | "csb_banner" | "csb_buy" | "common_csb" | "csb_purchase_amazondevicewarning" | "csb_purchase_warning" | "csb_subscription_panel" | "csb_upsell" | "csb_packs" | "csb_welcome" | "csb_faq" | "csb_landing" | "custom_templates" | "world_conversion_complete" | "day_one_experience_intro" | "day_one_experience" | "death" | "debug_screen" | "dev_console" | "disconnect" | "display_logged_error" | "discovery_dialog" | "edu_featured" | "edu_quit_button" | "persona_emote" | "enchanting" | "enchanting_pocket" | "encyclopedia" | "expanded_skin_pack" | "feed_common" | "file_upload" | "furnace" | "furnace_pocket" | "game_tip" | "gamepad_disconnected" | "gameplay" | "gathering_info" | "globalpause" | "grindstone" | "grindstone_pocket" | "gamma_calibration" | "horse" | "horse_pocket" | "how_to_play_common" | "how_to_play" | "hud" | "host_options" | "bed" | "im_reader" | "crafting" | "crafting_pocket" | "invite" | "jigsaw_editor" | "late_join" | "library_modal" | "local_world_picker" | "loom" | "loom_pocket" | "manage_feed" | "manifest_validation" | "sdl_label" | "sdl_dropdowns" | "sdl_image_row" | "sdl_text_row" | "mob_effect" | "non_xbl_user_management" | "npc_interact" | "online_safety" | "pack_settings" | "panorama" | "patch_notes" | "pause" | "pdp" | "pdp_screenshots" | "permissions" | "persona_cast_character_screen" | "persona_common" | "persona_popups" | "play" | "perf_turtle" | "pocket_containers" | "popup_dialog" | "portfolio" | "progress" | "rating_prompt" | "realms_common" | "realms_create" | "realms_pending_invitations" | "realms_slots" | "realms_settings" | "realms_allowlist" | "realms_invite_link_settings" | "realms_plus_ended" | "realmsPlus" | "realmsPlus_content" | "realmsPlus_faq" | "realmsPlus_landing" | "realmsPlus_buy" | "realmsPlus_packs" | "realmsPlus_purchase_warning" | "realms_stories_transition" | "redstone" | "resource_packs" | "safe_zone" | "storage_migration_common" | "storage_migration_generic" | "scoreboard" | "screenshot" | "select_world" | "server_form" | "settings" | "controls_section" | "general_section" | "realms_world_section" | "settings_common" | "world_section" | "social_section" | "sidebar_navigation" | "sign" | "simple_inprogress" | "skin_pack_purchase" | "skin_picker" | "smithing_table" | "smithing_table_2" | "smithing_table_pocket" | "smithing_table_2_pocket" | "smoker" | "start" | "stonecutter" | "stonecutter_pocket" | "storage_management" | "storage_management_popup" | "common_store" | "store_layout" | "filter_menu" | "store_inventory" | "store_item_list" | "store_progress" | "promo_timeline" | "store_sale_item_list" | "store_search" | "sort_menu" | "structure_editor" | "submit_feedback" | "tabbed_upsell" | "thanks_for_testing" | "third_party_store" | "toast_screen" | "token_faq" | "trade" | "trade_pocket" | "trade2" | "trade2_pocket" | "trialUpsell" | "ugc_viewer" | "common_art" | "common" | "common-classic" | "edu_common" | "purchase_common" | "common_buttons" | "common_dialogs" | "common_tabs" | "common_toggles" | "friendsbutton" | "iconbutton" | "update_dimensions" | "update_version" | "world_recovery" | "world_templates" | "xbl_console_qr_signin" | "xbl_console_signin" | "xbl_console_signin_succeeded" | "xbl_immediate_signin" | "win10_trial_conversion" - -export type Achievement = "empty_progress_bar_icon" | "full_progress_bar_icon_base"; -export type AddExternalServer = "play_button" | "play_disabled_button" | "remove_button" | "save_button" | "save_disabled_button" | "text_edit_group" | "text_edit_group/name_label" | "text_edit_group/edit_box" | "title_text" | "content_panel" | "content_panel/name_edit" | "content_panel/ip_edit" | "content_panel/port_edit" | "main_panel" | "main_panel/common_panel" | "main_panel/title" | "main_panel/main_content" | "main_panel/play" | "main_panel/play_disabled" | "main_panel/remove" | "main_panel/save" | "main_panel/save_disabled" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "add_external_server_screen_new" | "add_external_server_screen_edit" | "add_external_server_screen" | "add_external_server_screen_content" | "add_external_server_screen_content/root_panel" | "add_external_server_screen_content/root_panel/gamepad_helpers" | "add_external_server_screen_content/root_panel/main_panel"; -export type AdhocInprogress = "title_text" | "main_panel" | "main_panel/common_panel" | "main_panel/title" | "main_panel/main_content" | "main_panel/progress_loading_bars" | "adhoc_inprogress_screen" | "adhoc_inprogress_screen_content" | "adhoc_inprogress_screen_content/root_panel" | "adhoc_inprogress_screen_content/root_panel/main_panel"; -export type Adhoc = "online_button" | "local_button" | "title_text" | "content_panel" | "content_panel/title_text" | "main_panel" | "main_panel/common_panel" | "main_panel/title" | "main_panel/main_content" | "main_panel/online" | "main_panel/local" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "adhoc_screen" | "adhoc_screen_content" | "adhoc_screen_content/root_panel" | "adhoc_screen_content/root_panel/gamepad_helpers" | "adhoc_screen_content/root_panel/main_panel"; -export type Anvil = "generic_label" | "anvil_icon" | "title_label" | "anvil_icon_panel" | "anvil_icon_panel/anvil_icon" | "text_edit_control" | "icon_and_text_panel" | "icon_and_text_panel/anvil_icon_panel" | "icon_and_text_panel/anvil_title_and_text_panel" | "title_panel" | "title_panel/title_label" | "text_edit_panel" | "text_edit_panel/text_edit_control" | "anvil_title_and_text_panel" | "anvil_title_and_text_panel/title_panel" | "anvil_title_and_text_panel/text_edit_panel" | "plus_sign_icon" | "arrow_icon" | "cross_out_icon" | "anvil_output_slot_button" | "anvil_item_slot" | "anvil_item_slot/container_item" | "recipe_grid" | "recipe_grid/input_item_slot" | "recipe_grid/plus" | "recipe_grid/plus/plus_sign_icon" | "recipe_grid/material_item_slot" | "recipe_grid/yields" | "recipe_grid/yields/arrow_icon" | "recipe_grid/yields/cross_out_icon" | "recipe_grid/result_item_slot" | "cost_label" | "cost_label/gray" | "recipe_panel" | "recipe_panel/recipe_grid" | "recipe_panel/cost_label_0" | "recipe_panel/cost_label_1" | "top_half_panel" | "top_half_panel/icon_and_text_panel" | "top_half_panel/recipe_panel" | "anvil_panel" | "anvil_panel/container_gamepad_helpers" | "anvil_panel/selected_item_details_factory" | "anvil_panel/item_lock_notification_factory" | "anvil_panel/root_panel" | "anvil_panel/root_panel/common_panel" | "anvil_panel/root_panel/anvil_screen_inventory" | "anvil_panel/root_panel/anvil_screen_inventory/top_half_panel" | "anvil_panel/root_panel/anvil_screen_inventory/inventory_panel_bottom_half_with_label" | "anvil_panel/root_panel/anvil_screen_inventory/hotbar_grid" | "anvil_panel/root_panel/anvil_screen_inventory/inventory_take_progress_icon_button" | "anvil_panel/root_panel/inventory_selected_icon_button" | "anvil_panel/root_panel/gamepad_cursor" | "anvil_panel/flying_item_renderer" | "anvil_screen"; -export type AnvilPocket = "generic_label" | "background_image" | "arrow_icon" | "cost_label" | "cost_label/gray" | "title_label" | "text_edit_control" | "anvil_title_and_text_panel" | "anvil_title_and_text_panel/title_label" | "anvil_title_and_text_panel/text_edit_control" | "slots_panel" | "slots_panel/input_slot" | "slots_panel/material_slot" | "slots_panel/result_slot" | "slots_panel/plus_sign" | "slots_panel/arrow" | "slots_panel/arrow/cross_out" | "anvil_contents_panel" | "anvil_contents_panel/red_cost" | "anvil_contents_panel/green_cost" | "anvil_contents_panel/slots_panel" | "anvil_contents_panel/anvil_title_and_text_panel" | "inventory_grid" | "inventory_content" | "inventory_content/scrolling_panel" | "inventory_and_anvil_panel" | "inventory_and_anvil_panel/inventory_half_screen" | "inventory_and_anvil_panel/inventory_half_screen/inventory_content" | "inventory_and_anvil_panel/anvil_half_screen" | "inventory_and_anvil_panel/anvil_half_screen/anvil_contents_panel" | "header" | "header/header_background" | "header/legacy_pocket_close_button" | "header/panel" | "header/panel/title_label" | "header_and_content_stack_panel" | "header_and_content_stack_panel/header" | "header_and_content_stack_panel/inventory_and_anvil_panel" | "anvil_panel" | "anvil_panel/bg" | "anvil_panel/root_panel" | "anvil_panel/header_and_content_stack_panel" | "anvil_panel/container_gamepad_helpers" | "anvil_panel/inventory_selected_icon_button" | "anvil_panel/hold_icon" | "anvil_panel/selected_item_details_factory" | "anvil_panel/item_lock_notification_factory" | "anvil_panel/flying_item_renderer"; -export type AuthenticationModals = "modal_dialog_label" | "modal_dialog_content" | "modal_dialog_content/body_text" | "modal_dialog_content/button_wrapper" | "modal_dialog_content/button_wrapper/buttons" | "modal_dialog_content/button_wrapper/buttons/left" | "modal_dialog_content/button_wrapper/buttons/padding" | "modal_dialog_content/button_wrapper/buttons/right" | "modal_dialog_frame" | "modal_dialog_frame/title" | "modal_dialog_frame/close" | "modal_dialog_frame/black_tint_image" | "modal_dialog_frame/black_tint_image/content" | "ad_modal_dialog"; -export type Authentication = "nothing" | "tts_control" | "split_button_panel" | "split_button_panel/buttons" | "split_button_panel/buttons/a" | "split_button_panel/buttons/paddding" | "split_button_panel/buttons/b" | "vertical_split_button_panel" | "fixed_width_wrapper" | "fixed_width_wrapper/content" | "sign_in_button" | "download_button" | "smooth_label" | "smooth_bound_label" | "title_label" | "eula_hyperlink" | "accept_eula_button" | "eula_content" | "eula_content/prompt_wrapper" | "eula_content/prompt_wrapper/border" | "eula_content/prompt_wrapper/prompt_text" | "eula_content/padding" | "eula_content/buttons" | "eula" | "version" | "version/label" | "version/label_background" | "view_terms_button" | "privacy_policy_button" | "agree_panel" | "agree_panel/checkbox_control" | "agree_panel/i_agree_label" | "term_item" | "term_item/item" | "terms_and_conditions_panel" | "terms_and_conditions_panel/terms_string_panel" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button" | "confirmation_panel" | "confirmation_panel/confirm_button" | "scroll_stack_panel" | "scroll_stack_panel/border" | "scroll_stack_panel/terms" | "purchase_confirm_content" | "purchase_confirm_content/header_padding" | "purchase_confirm_content/panel_wrap" | "purchase_confirm_content/panel_wrap/scrolling_panel" | "purchase_confirm_content/terms_and_conditions_panel" | "purchase_confirm_content/button_padding" | "purchase_confirm_content/confirmation_panel" | "purchase_confirm_content/padding" | "purchase_prompt_content" | "purchase_prompt_content/prompt_wrap" | "purchase_prompt_content/prompt_wrap/border" | "purchase_prompt_content/prompt_wrap/prompt" | "purchase_prompt_content/purchase_wrap_centering_container" | "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap" | "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/purchase" | "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/padding_middle" | "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/signout" | "purchase_prompt" | "purchase_confirm" | "purchase_panel" | "purchase_panel/prompt" | "purchase_panel/confirm" | "title_panel" | "title_panel/title_label_wrapper" | "hyperlink_panel" | "hyperlink_panel/link_stack" | "hyperlink_panel/link_stack/link1" | "hyperlink_panel/link_stack/link2" | "hyperlink_panel/link_stack/padding" | "auth_screen" | "sign_in_content" | "sign_in_content/body_text" | "sign_in_content/body_hyperlink" | "sign_in_content/sign_in_wrapper" | "sign_in_content/sign_in_wrapper/button" | "sign_in_content/download_wrapper" | "sign_in_content/download_wrapper/button" | "authentication_screen_content" | "authentication_screen_content/debug" | "authentication_screen_content/client_version" | "authentication_screen_content/client_version/version" | "authentication_screen_content/sign_in" | "authentication_screen_content/sign_in_ios" | "authentication_screen_content/pack_progress" | "authentication_screen_content/welcome" | "authentication_screen_content/demo" | "authentication_screen_content/eula" | "authentication_screen_content/purchase_panel" | "authentication_screen_content/popup_dialog_factory" | "popup_content_base" | "popup_content_base/message" | "popup_content_base/message/border" | "popup_content_base/message/text" | "popup_content_base/content" | "popup_content_base/footer_padding" | "popup_dialog" | "popup_dialog/dialog" | "trial_info_ios_additional_content" | "trial_info_ios_additional_content/dismiss" | "popup_dialog_trial_info_ios" | "student_message_panel" | "trial_info_additional_content" | "trial_info_additional_content/buttons" | "generic_welcome_additional_content" | "generic_welcome_additional_content/button_wrapper" | "generic_welcome_additional_content/button_wrapper/buttons" | "popup_dialog_trial_info" | "popup_dialog_generic_welcome" | "popup_message" | "popup_message/main_message" | "popup_message/extra_message" | "popup_message/padding" | "popup_message_student" | "popup_hyperlink" | "popup_purchase_link" | "popup_dismiss_button" | "pack_progress_content" | "pack_progress_content/top_padding" | "pack_progress_content/loading_text_panel" | "pack_progress_content/loading_text_panel/loading_text" | "pack_progress_content/loading_bar_panel" | "pack_progress_content/loading_bar_panel/loading_bar" | "pack_progress_content/loading_padding" | "pack_progress_content/skip_panel" | "pack_progress_content/skip_panel/skip_button" | "pack_progress_content/bottom_padding" | "sign_in_ios_content" | "sign_in_ios_content/body_text" | "sign_in_ios_content/body_hyperlink" | "sign_in_ios_content/signin_ios_button_panel" | "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap" | "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap/prompt" | "sign_in_ios_content/signin_ios_button_panel/buttons" | "sign_in_ios_content/signin_ios_button_panel/pad_footer" | "sign_in_ios_content/error_sign_in_panel" | "sign_in_ios_content/error_sign_in_panel/button" | "sign_in_ios_content/error_download_panel" | "sign_in_ios_content/error_download_panel/button" | "sign_in_ios_button" | "to_app_store" | "debug_panel" | "debug_panel/state_label" | "debug_panel/state_text_box" | "debug_panel/open_popup" | "debug_panel/refresh_popup" | "debug_panel/reset" | "debug_panel/toggle_ios" | "authentication_popup_link_button" | "authentication_popup_link_button/top_padding" | "authentication_popup_link_button/link_button" | "authentication_popup_contents" | "authentication_popup_contents/initial_padding" | "authentication_popup_contents/body" | "authentication_popup_contents/learn_more_link" | "authentication_popup_contents/link2" | "authentication_popup_contents/end_padding" | "resizeable_scrolling_panel" | "authentication_popup_content_panel" | "authentication_popup_button" | "authentication_popup_one_button" | "authentication_popup_one_button/button" | "authentication_popup_two_buttons" | "authentication_popup_two_buttons/first_button" | "authentication_popup_two_buttons/button_padding" | "authentication_popup_two_buttons/second_button" | "authentication_popup_lower_button_panel" | "authentication_popup_lower_button_panel/one_button" | "authentication_popup_lower_button_panel/two_buttons" | "authentication_popup"; -export type AutoSaveInfo = "auto_save" | "accept_label" | "accept_label/button_label" | "accept_button" | "main_panel" | "main_panel/common_panel" | "main_panel/title_label" | "main_panel/message_label" | "main_panel/save_icon" | "main_panel/a" | "main_panel/gamepad_helpers" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "auto_save_info_screen" | "auto_save_info_screen_content" | "auto_save_info_screen_content/root_panel" | "auto_save_info_screen_content/root_panel/main_panel"; -export type Beacon = "selected_item_details" | "beacon_panel" | "beacon_panel/container_gamepad_helpers" | "beacon_panel/selected_item_details_factory" | "beacon_panel/item_lock_notification_factory" | "beacon_panel/root_panel" | "beacon_panel/root_panel/common_panel" | "beacon_panel/root_panel/beacon_inventory" | "beacon_panel/root_panel/beacon_inventory/beacon_inner_panel" | "beacon_panel/root_panel/beacon_inventory/payment_panel" | "beacon_panel/root_panel/beacon_inventory/inventory_panel_bottom_half" | "beacon_panel/root_panel/beacon_inventory/hotbar_grid_template" | "beacon_panel/root_panel/beacon_inventory/inventory_selected_icon_button" | "beacon_panel/root_panel/beacon_inventory/gamepad_cursor" | "beacon_panel/flying_item_renderer" | "inventory_slot_button" | "hotbar_slot_button" | "image_atlas" | "pyramid_image" | "pyramid_panel" | "pyramid_panel/level1" | "pyramid_panel/level2" | "pyramid_panel/level3" | "pyramid_panel/level4" | "item_seperator" | "item_renderer" | "usable_items_panel" | "usable_items_panel/netherite" | "usable_items_panel/item_seperator_0" | "usable_items_panel/emerald" | "usable_items_panel/item_seperator_1" | "usable_items_panel/diamond" | "usable_items_panel/item_seperator_2" | "usable_items_panel/gold" | "usable_items_panel/item_seperator_3" | "usable_items_panel/iron" | "base_image" | "hover_text" | "hover_state" | "hover_state/hover_text" | "button_unchecked_default" | "button_unchecked_hover" | "button_unchecked_hover/hover_text" | "button_checked_hover" | "button_checked_hover/hover_text" | "button_locked" | "button_locked_hover" | "button_locked_hover/hover_text" | "button_checked" | "toggle_button" | "base_button" | "base_button/default" | "base_button/hover" | "base_button/pressed" | "active_button" | "inactive_button" | "inactive_button/default" | "inactive_button/hover" | "selected_button" | "selected_button/default" | "selected_button/hover" | "secondary_effect_base" | "speed_secondary" | "haste_secondary" | "resist_secondary" | "jump_secondary" | "strength_secondary" | "image_template" | "image_template/base_image" | "secondary_effect_images" | "secondary_effect_images/speed_secondary" | "secondary_effect_images/haste_secondary" | "secondary_effect_images/resist_secondary" | "secondary_effect_images/jump_secondary" | "secondary_effect_images/strength_secondary" | "toggle_template" | "toggle_template/toggle_button" | "button_template" | "button_template/active_button" | "button_template/inactive_button" | "button_template/image_template" | "panel_template" | "button_panel" | "button_panel/speed_panel" | "button_panel/speed_panel/toggle_template" | "button_panel/haste_panel" | "button_panel/resist_panel" | "button_panel/jump_panel" | "button_panel/strength_panel" | "button_panel/regen_panel" | "button_panel/extra_panel" | "payment_panel" | "payment_panel/confirm_panel" | "payment_panel/cancel_panel" | "payment_panel/ingredient_item" | "payment_panel/usable_items_panel" | "beacon_label" | "beacon_inner_panel" | "beacon_inner_panel/button_panel" | "beacon_inner_panel/pyramid_panel" | "beacon_inner_panel/middle_strip" | "beacon_inner_panel/primary_power_label" | "beacon_inner_panel/secondary_power_label" | "beacon_screen"; -export type BeaconPocket = "generic_label" | "panel_outline" | "dark_bg" | "background_image" | "item_seperator" | "item_renderer" | "usable_items_panel" | "usable_items_panel/netherite" | "usable_items_panel/item_seperator_0" | "usable_items_panel/emerald" | "usable_items_panel/item_seperator_1" | "usable_items_panel/diamond" | "usable_items_panel/item_seperator_2" | "usable_items_panel/gold" | "usable_items_panel/item_seperator_3" | "usable_items_panel/iron" | "pyramid_image" | "pyramid_panel" | "pyramid_panel/pyramid_image" | "background_panel" | "beacon_background" | "beacon_background/middle_strip" | "inventory_grid" | "inventory_content" | "inventory_content/scrolling_panel" | "highlight_hover_square" | "highlight_hover_square/highlight_square" | "button_unchecked_default" | "button_unchecked_hover" | "button_unchecked_hover/highlight_hover_square" | "button_checked" | "button_checked_hover" | "button_checked_hover/highlight_hover_square" | "button_locked" | "button_locked_hover" | "button_locked_hover/highlight_hover_square" | "toggle_button" | "base_button" | "base_button/default" | "base_button/hover" | "base_button/hover/highlight_hover_square" | "base_button/pressed" | "active_button" | "inactive_button_image" | "inactive_button" | "inactive_button/default" | "inactive_button/hover" | "inactive_button/hover/highlight_hover_square" | "selected_button_image" | "selected_button" | "selected_button/default" | "selected_button/hover" | "selected_button/hover/highlight_hover_square" | "secondary_effect_base" | "speed_secondary" | "haste_secondary" | "resist_secondary" | "jump_secondary" | "strength_secondary" | "secondary_effect_images" | "secondary_effect_images/speed_secondary" | "secondary_effect_images/haste_secondary" | "secondary_effect_images/resist_secondary" | "secondary_effect_images/jump_secondary" | "secondary_effect_images/strength_secondary" | "base_image" | "image_template" | "image_template/base_image" | "toggle_template" | "toggle_template/toggle_button" | "button_template" | "button_template/active_button" | "button_template/inactive_button" | "button_template/image_template" | "panel_template" | "beacon_power_label" | "beacon_power_label/label" | "beacon_sub_panel" | "beacon_button_left_panel" | "beacon_button_left_panel/primary_power_label" | "beacon_button_left_panel/panel" | "beacon_button_left_panel/panel/pyramids_and_buttons" | "beacon_button_left_panel/panel/pyramids_and_buttons/level1" | "beacon_button_left_panel/panel/pyramids_and_buttons/speed_panel" | "beacon_button_left_panel/panel/pyramids_and_buttons/haste_panel" | "beacon_button_left_panel/panel/pyramids_and_buttons/level2" | "beacon_button_left_panel/panel/pyramids_and_buttons/resist_panel" | "beacon_button_left_panel/panel/pyramids_and_buttons/jump_panel" | "beacon_button_left_panel/panel/pyramids_and_buttons/level3" | "beacon_button_left_panel/panel/pyramids_and_buttons/strength_panel" | "beacon_button_right_panel" | "beacon_button_right_panel/secondary_power_label" | "beacon_button_right_panel/panel" | "beacon_button_right_panel/panel/buttons_and_pyramid" | "beacon_button_right_panel/panel/buttons_and_pyramid/level4" | "beacon_button_right_panel/panel/buttons_and_pyramid/regen_panel" | "beacon_button_right_panel/panel/buttons_and_pyramid/extra_panel" | "beacon_buttons_panel" | "beacon_buttons_panel/beacon_background" | "beacon_buttons_panel/left_panel" | "beacon_buttons_panel/right_panel" | "confirm_panel" | "confirm_panel/ingredient_item" | "confirm_panel/confirm_panel" | "confirm_panel/cancel_panel" | "beacon_payment_panel" | "beacon_payment_panel/usable_items_panel" | "beacon_payment_panel/pad" | "beacon_payment_panel/confirm_panel" | "beacon_contents_panel" | "beacon_contents_panel/fill1" | "beacon_contents_panel/beacon_buttons_panel" | "beacon_contents_panel/pad1" | "beacon_contents_panel/beacon_payment_panel" | "beacon_contents_panel/fill2" | "header" | "header/header_background" | "header/legacy_pocket_close_button" | "header/panel" | "header/panel/title_label" | "inventory_and_beacon_panel" | "inventory_and_beacon_panel/inventory_half_screen" | "inventory_and_beacon_panel/inventory_half_screen/inventory_content" | "inventory_and_beacon_panel/beacon_half_screen" | "inventory_and_beacon_panel/beacon_half_screen/beacon_content" | "header_and_content_stack_panel" | "header_and_content_stack_panel/header" | "header_and_content_stack_panel/inventory_and_beacon_panel" | "beacon_panel" | "beacon_panel/bg" | "beacon_panel/root_panel" | "beacon_panel/header_and_content_stack_panel" | "beacon_panel/container_gamepad_helpers" | "beacon_panel/inventory_selected_icon_button" | "beacon_panel/hold_icon" | "beacon_panel/selected_item_details_factory" | "beacon_panel/item_lock_notification_factory" | "beacon_panel/flying_item_renderer"; -export type BlastFurnace = "blast_furnace_screen"; -export type Book = "screenshot" | "screenshot_frame" | "screenshot_frame/caption_edit" | "photo_corner" | "photo_corner_bl" | "photo_corner_br" | "photo_corner_tr" | "photo_corner_tl" | "page_caption" | "page_photo" | "page_photo/screenshot" | "page_photo/screenshot_frame" | "page_photo/photo_corner_bl" | "page_photo/photo_corner_br" | "page_photo/photo_corner_tl" | "page_photo/photo_corner_tr" | "pick_item" | "pick_item/photo" | "pick_item/button" | "pick_item_inventory" | "pick_item_inventory/photo" | "pick_item_inventory/button" | "header" | "text_centering_panel_inventory" | "text_centering_panel_inventory/inventory_header" | "text_centering_panel_portfolio" | "text_centering_panel_portfolio/portfolio_header" | "pick_scrolling_content" | "pick_scrolling_content/inventory_header" | "pick_scrolling_content/inventory_grid" | "pick_scrolling_content/portfolio_header" | "pick_scrolling_content/portfolio_grid" | "pick_panel" | "pick_panel/scroll" | "pick_panel/close_button" | "blank" | "book_background" | "book_spine_image" | "page_crease_left_image" | "page_crease_right_image" | "page_edge_left_image" | "page_edge_right_image" | "text_edit_hover_image" | "base_button" | "base_button/default" | "base_button/hover" | "base_button/pressed" | "book_buttons_panel" | "book_buttons_panel/sign_export_buttons" | "book_buttons_panel/sign_export_buttons/left_spacer" | "book_buttons_panel/sign_export_buttons/sign_button" | "book_buttons_panel/sign_export_buttons/export_button" | "book_buttons_panel/sign_export_buttons/right_spacer" | "book_buttons_panel/im_content_button" | "cover_buttons_stack_panel_holder" | "cover_buttons_stack_panel_holder/cover_buttons_stack_panel" | "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/finalize_button" | "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/padding_1" | "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/cancel_sign_button" | "close_button_default" | "close_button_hover" | "close_button_pressed" | "close_button" | "close_button/default" | "close_button/hover" | "close_button/pressed" | "page_text_edit" | "page_text" | "page_number_label" | "padded_button" | "padded_button/button" | "page_buttons_panel" | "page_buttons_panel/swap_page_left" | "page_buttons_panel/insert_text_page" | "page_buttons_panel/insert_photo_page" | "page_buttons_panel/delete_page" | "page_buttons_panel/swap_page_right" | "page_content_panel" | "page_content_panel/page_text" | "page_content_panel/page_photo" | "page_content_panel/page_number_label" | "page_content_panel/page_buttons_panel" | "page_content_panel/edit_page" | "title_label" | "title_text_box" | "author_label" | "author_text_box" | "author_stack_panel" | "author_stack_panel/author_label_panel" | "author_stack_panel/author_label_panel/author_label" | "author_stack_panel/author_text_panel" | "author_stack_panel/author_text_panel/author_text_box" | "warning_label" | "cover_content_panel" | "cover_content_panel/title_label" | "cover_content_panel/title_text_box" | "cover_content_panel/author_stack_panel" | "cover_content_panel/warning_label" | "cover_and_buttons_panel" | "cover_and_buttons_panel/cover_panel" | "cover_and_buttons_panel/cover_panel/cover_content_panel" | "cover_and_buttons_panel/cover_panel/book_background" | "cover_and_buttons_panel/cover_panel/close_button" | "cover_and_buttons_panel/cover_buttons_stack_panel_holder" | "page_panel" | "page_panel/page_content_panel" | "book_grid" | "book_grid/page_panel_left" | "book_grid/page_panel_right" | "book_and_buttons_panel" | "book_and_buttons_panel/book_panel" | "book_and_buttons_panel/book_panel/book_grid" | "book_and_buttons_panel/book_panel/book_background" | "book_and_buttons_panel/book_panel/book_spine_image" | "book_and_buttons_panel/book_panel/close_button" | "book_and_buttons_panel/book_panel/prev_button" | "book_and_buttons_panel/book_panel/next_button" | "book_and_buttons_panel/book_buttons_panel" | "root_panel" | "book_screen" | "book_screen_content" | "book_screen_content/root_panel" | "book_screen_content/root_panel/book_and_buttons_panel" | "book_screen_content/root_panel/cover_and_buttons_panel" | "book_screen_content/root_panel/pick_panel" | "book_screen_content/root_panel/export_progress" | "book_screen_content/root_panel/gamepad_helper_a" | "book_screen_content/root_panel/gamepad_helper_b"; -export type BrewingStand = "brewing_pipes" | "brewing_fuel_pipes" | "bottle_empty_image" | "fuel_empty_image" | "bubbles_empty_image" | "bubbles_full_image" | "brewing_arrow_empty_image" | "brewing_arrow_full_image" | "brewing_fuel_bar_empty_image" | "brewing_fuel_bar_full_image" | "brewing_label" | "brewingstand_output_item" | "brewing_output_slots" | "brewing_output_slots/left_offset" | "brewing_output_slots/left_offset/output_grid_item1" | "brewing_output_slots/output_grid_item2" | "brewing_output_slots/right_offset" | "brewing_output_slots/right_offset/output_grid_item3" | "brewing_input_slot" | "brewing_input_slot/input_grid_item" | "brewing_fuel_slot" | "brewing_fuel_slot/fuel_grid_item" | "brewing_panel_top_half" | "brewing_panel_top_half/brewing_label" | "brewing_panel_top_half/brewing_stand_pictogram" | "brewing_stand_pictogram" | "brewing_stand_pictogram/brewing_input_slot" | "brewing_stand_pictogram/brewing_output_slots" | "brewing_stand_pictogram/brewing_fuel_slot" | "brewing_stand_pictogram/brewing_arrow_empty_image" | "brewing_stand_pictogram/brewing_arrow_full_image" | "brewing_stand_pictogram/brewing_fuel_bar_empty_image" | "brewing_stand_pictogram/brewing_fuel_bar_full_image" | "brewing_stand_pictogram/bubbles_empty_image" | "brewing_stand_pictogram/bubbles_full_image" | "brewing_stand_pictogram/brewing_fuel_pipes" | "brewing_stand_pictogram/brewing_pipes" | "brewing_stand_panel" | "brewing_stand_panel/container_gamepad_helpers" | "brewing_stand_panel/selected_item_details_factory" | "brewing_stand_panel/item_lock_notification_factory" | "brewing_stand_panel/root_panel" | "brewing_stand_panel/root_panel/common_panel" | "brewing_stand_panel/root_panel/furnace_screen_inventory" | "brewing_stand_panel/root_panel/furnace_screen_inventory/brewing_panel_top_half" | "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label" | "brewing_stand_panel/root_panel/furnace_screen_inventory/hotbar_grid" | "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button" | "brewing_stand_panel/root_panel/inventory_selected_icon_button" | "brewing_stand_panel/root_panel/gamepad_cursor" | "brewing_stand_panel/flying_item_renderer" | "brewing_stand_screen"; -export type BrewingStandPocket = "generic_label" | "brewing_fuel_pipes" | "bubbles_empty_image" | "bubbles_full_image" | "bottle_empty_image" | "background_image" | "output_slot" | "brewing_input_slot" | "brewing_input_slot/input_slot" | "brewing_fuel_slot" | "brewing_fuel_slot/fuel_slot" | "brewing_out_slots" | "brewing_out_slots/left_offset" | "brewing_out_slots/left_offset/output_slot1" | "brewing_out_slots/middle" | "brewing_out_slots/middle/output_slot2" | "brewing_out_slots/right_offset" | "brewing_out_slots/right_offset/output_slot3" | "slots_panel" | "slots_panel/brewing_input_slot" | "slots_panel/brewing_fuel_slot" | "slots_panel/brewing_out_slots" | "slots_panel/brewing_arrow_panel" | "slots_panel/brewing_arrow_panel/brewing_arrow_empty_image" | "slots_panel/brewing_arrow_panel/brewing_arrow_full_image" | "slots_panel/brewing_bubbles_panel" | "slots_panel/brewing_bubbles_panel/bubbles_empty_image" | "slots_panel/brewing_bubbles_panel/bubbles_full_image" | "slots_panel/brewing_fuel_bar_panel" | "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_empty_image" | "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_full_image" | "slots_panel/brewing_fuel_pipes" | "slots_panel/brewing_pipes" | "inventory_grid" | "inventory_content" | "inventory_content/scrolling_panel" | "brewing_stand_contents_panel" | "brewing_stand_contents_panel/slots_panel" | "header" | "header/header_background" | "header/legacy_pocket_close_button" | "header/panel" | "header/panel/title_label" | "inventory_and_brewing_panel" | "inventory_and_brewing_panel/inventory_half_screen" | "inventory_and_brewing_panel/inventory_half_screen/inventory_content" | "inventory_and_brewing_panel/brewing_half_screen" | "inventory_and_brewing_panel/brewing_half_screen/brewing_stand_contents_panel" | "header_and_content_stack_panel" | "header_and_content_stack_panel/header" | "header_and_content_stack_panel/inventory_and_brewing_panel" | "brewing_stand_panel" | "brewing_stand_panel/bg" | "brewing_stand_panel/root_panel" | "brewing_stand_panel/header_and_content_stack_panel" | "brewing_stand_panel/container_gamepad_helpers" | "brewing_stand_panel/inventory_selected_icon_button" | "brewing_stand_panel/hold_icon" | "brewing_stand_panel/selected_item_details_factory" | "brewing_stand_panel/item_lock_notification_factory" | "brewing_stand_panel/flying_item_renderer"; -export type BundlePurchaseWarning = "x_padding" | "y_padding" | "bundle_grid_item" | "bundle_grid_item/banner_image" | "bundle_grid_item/content" | "bundle_grid_item/game_pad_focus_border" | "is_focused" | "is_focused/image_border" | "is_focused/banner_border" | "focus_border" | "focus_border_button" | "focus_border_button/default" | "focus_border_button/hover" | "focus_border_button/pressed" | "grid_item_content" | "grid_item_content/image_border" | "grid_item_content/image_border/bundle_thumbnail" | "grid_item_content/padding_0" | "grid_item_content/bundle_title_panel" | "grid_item_content/bundle_title_panel/bundle_title" | "bundle_grid" | "side_contents" | "side_contents/title_alignment_hack" | "side_contents/title_alignment_hack/side_section_title" | "side_contents/padding_y_0" | "side_contents/grid_input_panel" | "side_contents/grid_input_panel/grid_scroll" | "dialog_content" | "dialog_content/grid_stack" | "dialog_content/grid_stack/left_grid_scroll" | "dialog_content/grid_stack/padding_x_divider" | "dialog_content/grid_stack/right_grid_scroll" | "purchase_button_panel" | "screen_dialog" | "bundle_purchase_warning_screen_content" | "bundle_purchase_warning_screen_content/dialog" | "background" | "bundle_purchase_warning_screen"; -export type Cartography = "title_label" | "arrow_icon" | "plus_sign_icon" | "text_edit_control" | "cartography_output_slot_button" | "cartography_item_slot" | "cartography_item_slot/container_item" | "map_image" | "map_image_panel" | "map_image_panel/none_map" | "map_image_panel/copy_map" | "map_image_panel/rename_map" | "map_image_panel/map" | "map_image_panel/locator_map" | "map_image_panel/zoom_map" | "map_image_panel/lock_map" | "text_box_panel" | "text_box_panel/map_name_label" | "text_box_panel/text_edit_control" | "input_slots" | "input_slots/input_item_slot" | "input_slots/plus_centerer" | "input_slots/plus_centerer/plus_sign_icon" | "input_slots/additional_item_slot" | "output_description_label" | "main_panel" | "main_panel/input_slots" | "main_panel/arrow_icon" | "main_panel/map_image_panel" | "main_panel/arrow_icon2" | "main_panel/result_item_slot" | "top_half_panel" | "top_half_panel/padding1" | "top_half_panel/title_panel" | "top_half_panel/title_panel/title_label" | "top_half_panel/padding2" | "top_half_panel/text_box_panel" | "top_half_panel/padding3" | "top_half_panel/padding4" | "top_half_panel/main_panel_wrap" | "top_half_panel/main_panel_wrap/main_panel" | "top_half_panel/output_description_label" | "top_half_panel/padding5" | "cartography_panel" | "cartography_panel/container_gamepad_helpers" | "cartography_panel/selected_item_details_factory" | "cartography_panel/item_lock_notification_factory" | "cartography_panel/root_panel" | "cartography_panel/root_panel/common_panel" | "cartography_panel/root_panel/cartography_screen_inventory" | "cartography_panel/root_panel/cartography_screen_inventory/top_half_panel" | "cartography_panel/root_panel/cartography_screen_inventory/inventory_panel_bottom_half_with_label" | "cartography_panel/root_panel/cartography_screen_inventory/hotbar_grid" | "cartography_panel/root_panel/cartography_screen_inventory/inventory_take_progress_icon_button" | "cartography_panel/root_panel/inventory_selected_icon_button" | "cartography_panel/root_panel/gamepad_cursor" | "cartography_panel/root_panel/tab_close_and_help_button" | "cartography_panel/flying_item_renderer" | "cartography_screen"; -export type CartographyPocket = "vertical_arrow_icon" | "chest_item_renderer" | "cartography_item_renderer" | "input_item_slot" | "additional_item_slot" | "result_item_slot" | "right_panel" | "right_panel/content" | "right_panel/content/bg" | "right_panel/content/cartography_content_stack_panel" | "right_panel/navigation_tabs_holder" | "right_panel/navigation_tabs_holder/right_navigation_tabs" | "right_tab_cartography" | "right_navigation_tabs" | "right_navigation_tabs/pocket_tab_close_and_help_button" | "right_navigation_tabs/fill" | "right_navigation_tabs/right_tab_cartography" | "input_slots_stack_panel" | "input_slots_stack_panel/input_item_slot" | "input_slots" | "input_slots/input_item_slot" | "input_slots/plus_centerer" | "input_slots/plus_centerer/plus_sign_icon" | "input_slots/additional_item_slot" | "cartography_content_stack_panel" | "cartography_content_stack_panel/label_holder" | "cartography_content_stack_panel/label_holder/cartography_label" | "cartography_content_stack_panel/padding_1" | "cartography_content_stack_panel/panel" | "cartography_content_stack_panel/panel/input_slots" | "cartography_content_stack_panel/padding_2" | "cartography_content_stack_panel/map_centerer" | "cartography_content_stack_panel/map_centerer/map_image_panel" | "cartography_content_stack_panel/description_centerer" | "cartography_content_stack_panel/description_centerer/output_description_label" | "cartography_content_stack_panel/padding_3" | "cartography_content_stack_panel/arrow_centerer" | "cartography_content_stack_panel/arrow_centerer/vertical_arrow_icon" | "cartography_content_stack_panel/padding_4" | "cartography_content_stack_panel/result_centerer" | "cartography_content_stack_panel/result_centerer/result_item_slot" | "cartography_content_stack_panel/filling_panel" | "cartography_content_stack_panel/text_box_panel" | "inventory_panel" | "inventory_panel/inventory_title_label_centerer" | "inventory_panel/inventory_title_label_centerer/inventory_title_label" | "inventory_panel/inventory_scroll_panel" | "inventory_scroll_panel" | "pattern_button" | "pattern_scroll_panel" | "left_panel" | "left_panel/gamepad_helpers_and_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs" | "left_panel/content" | "left_panel/content/bg" | "left_panel/content/inventory_panel" | "left_tab_inventory" | "left_navigation_tabs" | "left_navigation_tabs/padding" | "left_navigation_tabs/left_tab_inventory" | "pocket_hotbar_and_content_panels" | "cartography_panel" | "cartography_panel/pocket_hotbar_and_content_panels" | "cartography_panel/container_gamepad_helpers" | "cartography_panel/selected_item_details_factory" | "cartography_panel/item_lock_notification_factory" | "cartography_panel/inventory_selected_icon_button" | "cartography_panel/inventory_take_progress_icon_button" | "cartography_panel/flying_item_renderer"; -export type Chalkboard = "text_edit_control" | "locked_toggle" | "locked_label" | "lock_control" | "lock_control/toggle" | "lock_control/pad_wrap" | "lock_control/pad_wrap/label" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "chalkboard_screen" | "chalkboard_root" | "chalkboard_content" | "chalkboard_content/gamepad_helpers" | "chalkboard_content/edit_box" | "chalkboard_content/locked_toggle"; -export type Chat = "down_arrow_image" | "keyboard_image" | "copy_image" | "paste_image" | "gear_image" | "send_image" | "send_panel" | "send_panel/send_image_panel" | "send_panel/send_image_panel/send_image" | "send_panel/gamepad_x_button" | "send_panel/gamepad_x_button/side_padding" | "send_panel/gamepad_x_button/gamepad_x_button_image" | "send_panel/gamepad_x_button/gamepad_x_button_image/icon" | "keyboard_image_panel" | "keyboard_image_panel/keyboard_image" | "keyboard_image_panel/down_arrow_image" | "small_button" | "keyboard_button" | "chat_settings_button" | "send_button" | "messages_text" | "messages_text/text" | "message_tts_wrapper" | "messages_stack_panel" | "messages_scrolling_panel" | "text_edit_box" | "commands_background" | "click_autocomplete_is_focused" | "auto_complete_panel_contents_with_item" | "auto_complete_panel_contents_with_item/auto_complete_item_renderer" | "auto_complete_panel_contents_with_item/text" | "auto_complete_panel_contents_with_item/autocomplete_button" | "auto_complete_panel_contents_with_item/autocomplete_button/default" | "auto_complete_panel_contents_with_item/autocomplete_button/hover" | "auto_complete_panel_contents_with_item/autocomplete_button/pressed" | "auto_complete_panel" | "auto_complete_panel/panel" | "auto_complete_panel/panel/auto_complete_grid" | "commands_panel" | "commands_panel/auto_complete_panel" | "chat_bottom_panel" | "chat_bottom_panel/keyboard_button" | "chat_bottom_panel/host_main_button" | "chat_bottom_panel/chat_settings" | "chat_bottom_panel/text_box" | "chat_bottom_panel/send_button" | "title_text" | "title_text/title_panel" | "back_content_panel" | "back_content_panel/back_button" | "back_content_panel/gamepad_back_helper" | "back_content_panel/gamepad_back_helper/gamepad_helper_button" | "coordinate_dropdown_content" | "coordinate_dropdown_content/top_padding" | "coordinate_dropdown_content/my_position" | "coordinate_dropdown_content/block_position" | "coordinate_dropdown_content/bottom_padding" | "coordinate_dropdown" | "popup_toast" | "copy_coordinate_button" | "paste_button" | "chat_header" | "chat_header/title_panel" | "chat_header/title_panel/back_button_content_panel" | "chat_header/title_panel/title" | "chat_header/title_panel/popup_dialog_factory" | "chat_header/title_panel/chat_header_content_area" | "chat_header/title_panel/chat_header_content_area/coordinate_dropdown" | "chat_header/title_panel/chat_header_content_area/coordinates_panel" | "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image" | "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image/coordinates_text" | "chat_header/title_panel/chat_header_content_area/copy_coordinate_button" | "chat_header/title_panel/chat_header_content_area/icon" | "chat_header/title_panel/chat_header_content_area/paste_button" | "chat_screen" | "chat_screen_content" | "chat_screen_content/messages_panel" | "chat_screen_content/chat_bottom_panel" | "chat_screen_content/chat_top_panel" | "chat_screen_content/autocomplete_commands_panel" | "chat_screen_content/host_main_panel" | "chat_screen_content/popup_factory" | "chat_background"; -export type ChatSettings = "mute_all_toggle" | "mute_emote_chat_toggle" | "chat_tts_toggle" | "reset_button" | "typeface_dropdown_content" | "typeface_dropdown_content/top_padding" | "typeface_dropdown_content/mojangles" | "typeface_dropdown_content/noto_sans" | "typeface_dropdown_content/bottom_padding" | "typeface_dropdown" | "chat_color_dropdown_content" | "chat_color_dropdown_content/top_padding" | "chat_color_dropdown_content/0" | "chat_color_dropdown_content/1" | "chat_color_dropdown_content/2" | "chat_color_dropdown_content/3" | "chat_color_dropdown_content/4" | "chat_color_dropdown_content/5" | "chat_color_dropdown_content/6" | "chat_color_dropdown_content/bottom_padding" | "colors_dropdown_base" | "chat_color_dropdown" | "mentions_color_dropdown" | "font_size_slider" | "line_spacing_slider" | "colored_icon_panel" | "colored_icon_panel/icon" | "colored_icon_panel/icon_overlay" | "paintbrush" | "line_break" | "line_break/line_break_image" | "chat_settings_scrolling_content" | "chat_settings_scrolling_content/chat_settings_content_area" | "chat_settings_scrolling_content/chat_settings_content_area/mute_all_toggle" | "chat_settings_scrolling_content/chat_settings_content_area/mute_emote_chat_toggle" | "chat_settings_scrolling_content/chat_settings_content_area/chat_tts_toggle" | "chat_settings_scrolling_content/chat_settings_content_area/toggles_to_font_shape" | "chat_settings_scrolling_content/chat_settings_content_area/typeface_dropdown" | "chat_settings_scrolling_content/chat_settings_content_area/font_size" | "chat_settings_scrolling_content/chat_settings_content_area/line_spacing" | "chat_settings_scrolling_content/chat_settings_content_area/font_shape_to_font_colors" | "chat_settings_scrolling_content/chat_settings_content_area/chat_color" | "chat_settings_scrolling_content/chat_settings_content_area/mentions_color" | "chat_settings_scrolling_content/chat_settings_content_area/reset_button" | "chat_setting_scrolling_panel" | "chat_settings_popup" | "popup_factory"; -export type Chest = "chest_label" | "chest_grid_item" | "small_chest_grid" | "large_chest_grid" | "small_chest_panel_top_half" | "small_chest_panel_top_half/chest_label" | "small_chest_panel_top_half/small_chest_grid" | "large_chest_panel_top_half" | "large_chest_panel_top_half/chest_label" | "large_chest_panel_top_half/large_chest_grid" | "small_chest_panel" | "small_chest_panel/container_gamepad_helpers" | "small_chest_panel/selected_item_details_factory" | "small_chest_panel/item_lock_notification_factory" | "small_chest_panel/root_panel" | "small_chest_panel/root_panel/common_panel" | "small_chest_panel/root_panel/chest_panel" | "small_chest_panel/root_panel/chest_panel/small_chest_panel_top_half" | "small_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label" | "small_chest_panel/root_panel/chest_panel/hotbar_grid" | "small_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button" | "small_chest_panel/root_panel/chest_panel/flying_item_renderer" | "small_chest_panel/root_panel/inventory_selected_icon_button" | "small_chest_panel/root_panel/gamepad_cursor" | "selected_item_details" | "large_chest_panel" | "large_chest_panel/container_gamepad_helpers" | "large_chest_panel/selected_item_details_factory" | "large_chest_panel/item_lock_notification_factory" | "large_chest_panel/root_panel" | "large_chest_panel/root_panel/common_panel" | "large_chest_panel/root_panel/chest_panel" | "large_chest_panel/root_panel/chest_panel/large_chest_panel_top_half" | "large_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label" | "large_chest_panel/root_panel/chest_panel/hotbar_grid" | "large_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button" | "large_chest_panel/root_panel/chest_panel/flying_item_renderer" | "large_chest_panel/root_panel/inventory_selected_icon_button" | "large_chest_panel/root_panel/gamepad_cursor" | "ender_chest_panel" | "shulker_box_panel" | "barrel_panel" | "small_chest_screen" | "large_chest_screen" | "ender_chest_screen" | "shulker_box_screen" | "barrel_screen"; -export type ChooseRealm = "realm_screenshot" | "realm_screenshot/picture" | "realms_scroll_content" | "realms_scroll_content/scrolling_panel" | "realms_scroll_panel" | "realms_scroll_panel/realms_stack_panel" | "realms_scroll_panel/realms_stack_panel/realms_world_item_grid" | "realms_scroll_panel/realms_stack_panel/padding_0" | "realms_scroll_panel/realms_stack_panel/add_realm_button" | "realms_scroll_panel/realms_stack_panel/ten_player_button" | "realms_scroll_panel/realms_stack_panel/padding_1" | "realms_scroll_panel/realms_stack_panel/two_player_button" | "realms_world_item_grid" | "realms_world_item" | "realms_world_item/realms_world_item_button" | "realms_world_item_button" | "add_realm_button" | "ten_player_button" | "two_player_button" | "realms_world_content_panel" | "realms_world_content_panel/realm_screenshot" | "realms_world_content_panel/padding" | "realms_world_content_panel/realms_world_content_text_area_panel" | "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel" | "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel/realms_world_header" | "realms_world_content_panel/realms_world_content_status_area_panel" | "realms_world_content_panel/realms_world_content_status_area_panel/world_player_count_text_panel" | "realms_world_content_panel/realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count" | "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon" | "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_online_icon" | "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_unavailable_icon" | "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_offline_icon" | "main_panel" | "main_panel/progress_loading_bars" | "main_panel/realms_scroll_content" | "slots_scroll_panel" | "slots_scroll_panel/slots_stack_panel" | "slots_scroll_panel/slots_stack_panel/padding_0" | "slots_scroll_panel/slots_stack_panel/choose_slot_text" | "slots_scroll_panel/slots_stack_panel/padding_1" | "slots_scroll_panel/slots_stack_panel/slots_grid" | "slots_grid" | "slots_grid/slot_1" | "slots_grid/padding_0" | "slots_grid/slot_2" | "slots_grid/padding_1" | "slots_grid/slot_3" | "slot_content_panel" | "slot_content_panel/world_slot_top" | "slot_content_panel/world_slot_top/plus_image" | "slot_content_panel/world_slot_top/world_thumbnail" | "slot_content_panel/world_slot_bottom" | "slot_content_panel/world_slot_bottom/white_line_hover" | "slot_content_panel/world_slot_bottom/world_text_panel" | "slot_content_panel/world_slot_bottom/world_text_panel/background_grey" | "slot_content_panel/world_slot_bottom/world_text_panel/background_green" | "slot_content_panel/world_slot_bottom/world_text_panel/world_text" | "slot_panel" | "slot_panel/slots_scroll_content" | "slot_panel/slots_scroll_content/scrolling_panel" | "choose_realm_screen" | "choose_realm_screen_content" | "choose_realm_screen_content/realm_dialog" | "choose_realm_screen_content/slot_dialog" | "background"; -export type CoinPurchase = "black_image" | "banner_fill" | "coins_stack_panel" | "coins_stack_panel/coin" | "coins_stack_panel/coin_padding" | "coins_stack_panel/text_padding" | "coins_stack_panel/text_padding/coins_without_bonus" | "call_out_coins_stack_panel" | "call_out_coins_stack_panel/coin" | "call_out_coins_stack_panel/coin_padding" | "call_out_coins_stack_panel/text_padding" | "call_out_coins_stack_panel/text_padding/coins_without_bonus" | "button_content" | "button_content/bonus_coins_stack" | "button_content/call_out_background" | "button_content/call_out_background/bevel" | "call_out_button_content" | "call_out_button_content/call_out_header" | "call_out_button_content/call_out_bonus_coins_stack" | "call_out_button_content/call_out_background" | "call_out_button_content/call_out_background/call_out_border" | "call_out_header" | "call_out_header/call_out_banner" | "call_out_header/call_out_label" | "bonus_coins_stack" | "bonus_coins_stack/image_padding" | "bonus_coins_stack/image_panel" | "bonus_coins_stack/image_panel/image" | "bonus_coins_stack/non_bonus_padding_0" | "bonus_coins_stack/price_panel" | "bonus_coins_stack/price_panel/coins_stack_panel" | "bonus_coins_stack/plus_label" | "bonus_coins_stack/plus_label/plus_label" | "bonus_coins_stack/non_bonus_padding_1" | "bonus_coins_stack/bonus_label_panel" | "bonus_coins_stack/bonus_label_panel/bonus_label" | "bonus_coins_stack/padding_0" | "bonus_coins_stack/bonus_price_panel" | "bonus_coins_stack/bonus_price_panel/coins_stack_panel" | "bonus_coins_stack/padding_1" | "bonus_coins_stack/currency_panel" | "bonus_coins_stack/currency_panel/currency_price_panel" | "bonus_coins_stack/currency_panel/currency_price_panel/price" | "bonus_coins_stack/currency_panel/currency_price_panel/debug_price" | "bonus_coins_stack/padding_2" | "call_out_bonus_coins_stack" | "call_out_bonus_coins_stack/image_padding" | "call_out_bonus_coins_stack/image_panel" | "call_out_bonus_coins_stack/image_panel/image" | "call_out_bonus_coins_stack/non_bonus_padding_0" | "call_out_bonus_coins_stack/price_panel" | "call_out_bonus_coins_stack/price_panel/call_out_coins_stack_panel" | "call_out_bonus_coins_stack/plus_label" | "call_out_bonus_coins_stack/plus_label/plus_label" | "call_out_bonus_coins_stack/non_bonus_padding" | "call_out_bonus_coins_stack/bonus_label_panel" | "call_out_bonus_coins_stack/bonus_label_panel/bonus_label" | "call_out_bonus_coins_stack/padding_0" | "call_out_bonus_coins_stack/bonus_coin_panel" | "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_0" | "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel" | "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel/coin" | "call_out_bonus_coins_stack/bonus_coin_panel/coin_padding" | "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel" | "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel/bonus_coins" | "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_1" | "call_out_bonus_coins_stack/padding_1" | "call_out_bonus_coins_stack/currency_panel" | "call_out_bonus_coins_stack/currency_panel/currency_price_panel" | "call_out_bonus_coins_stack/currency_panel/currency_price_panel/price" | "call_out_bonus_coins_stack/currency_panel/currency_price_panel/debug_price" | "call_out_bonus_coins_stack/padding_2" | "price" | "offer_panel" | "call_out_offer_panel" | "offer_item" | "offer_item/offer_panel" | "offer_item/call_out_offer_panel" | "offer_grid_item" | "offer_grid_item/offer_item" | "not_enough_coins" | "faq_button" | "divider_panel" | "divider_panel/divider" | "coin_purchase_panel" | "coin_purchase_panel/padding_0" | "coin_purchase_panel/not_enough_coins_panel" | "coin_purchase_panel/not_enough_coins_panel/not_enough_coins" | "coin_purchase_panel/padding_1" | "coin_purchase_panel/coin_purchase_grid" | "coin_purchase_panel/divider_panel" | "coin_purchase_panel/faq_button" | "main_panel" | "main_panel/coin_purchase_panel" | "main_panel/loading_background" | "main_panel/progress_loading_spinner" | "main_panel/no_offers_panel" | "background" | "bundle_description" | "bundle_description_left" | "bundle_description_center" | "bundle_description_right" | "bundle_coins_stack" | "bundle_coins_stack/content_panel" | "bundle_coins_stack/content_panel/text_stack" | "bundle_coins_stack/content_panel/text_stack/title_label" | "bundle_coins_stack/content_panel/text_stack/padding_1" | "bundle_coins_stack/content_panel/text_stack/description_section_factory" | "bundle_coins_stack/content_panel/thumbnail_panel" | "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail" | "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail/coin_image" | "bundle_coins_stack/content_panel/padding_0" | "bundle_coins_stack/padding_0" | "bundle_coins_stack/currency_panel" | "bundle_coins_stack/currency_panel/currency_price_panel" | "bundle_coins_stack/currency_panel/currency_price_panel/price" | "bundle_coins_stack/currency_panel/currency_price_panel/debug_price" | "bundle_coins_stack/padding_2" | "bundle_button_content" | "bundle_button_content/bundle_coins_stack" | "bundle_button_content/call_out_background" | "bundle_button_content/call_out_background/bevel" | "bundle_offer_panel" | "bundle_offer_item" | "bundle_offer_item/offer_panel" | "bundle_offer_grid_item" | "bundle_offer_grid_item/offer_item" | "bundle_stack_factory" | "bundle_factory_panel" | "bundle_factory_panel/bundle_stack_factory" | "bundle_panel" | "bundle_panel/progress_loading_spinner" | "bundle_panel/loading_background" | "bundle_panel/bundle_stack_factory"; -export type CommandBlock = "plus_icon" | "paste_icon" | "plus_button" | "paste_button" | "icon_dropdown_toggle_button_state_content" | "icon_dropdown_toggle_button_state_content/icon_panel" | "icon_dropdown_toggle_button_state_content/icon_panel/dropdown_contents_icon" | "icon_dropdown_toggle_button_state_content/spacer" | "icon_dropdown_toggle_button_state_content/label_panel" | "icon_dropdown_toggle_button_state_content/label_panel/label" | "icon_dropdown_toggle_button_state_content/arrow_panel" | "icon_dropdown_toggle_button_state_content/arrow_panel/arrow" | "command_block_multiline_text_edit_box" | "command_block_text_edit_box" | "command_block_helper_stack" | "command_block_helper_stack/offset" | "command_block_helper_stack/text_" | "previous_command_block_info_stack" | "previous_command_block_info_stack/offset" | "previous_command_block_info_stack/start_label" | "previous_command_block_info_stack/offset1" | "previous_command_block_info_stack/start_label_dynamic_text" | "cancel_button" | "blocktype_dropdown_content" | "block_type_panel" | "condition_dropdown_content" | "condition_mode_panel" | "redstone_dropdown_content" | "redstone_mode_panel" | "left_scrolling_panel" | "left_scroll_panel_content" | "left_scroll_panel_content/content_stack_panel" | "left_scroll_panel_content/content_stack_panel/offset1" | "left_scroll_panel_content/content_stack_panel/offset2" | "left_scroll_panel_content/content_stack_panel/offset2/hover_note_text" | "left_scroll_panel_content/content_stack_panel/offset3" | "left_scroll_panel_content/content_stack_panel/block_type_mode_panel" | "left_scroll_panel_content/content_stack_panel/offset4" | "left_scroll_panel_content/content_stack_panel/condition_mode_panel" | "left_scroll_panel_content/content_stack_panel/offset5" | "left_scroll_panel_content/content_stack_panel/redstone_mode_panel" | "left_scroll_panel_content/content_stack_panel/offset_execute_on_first_tick" | "left_scroll_panel_content/content_stack_panel/option_label_execute_on_first_tick" | "left_scroll_panel_content/content_stack_panel/execute_on_first_tick_toggle" | "left_scroll_panel_content/content_stack_panel/offset_tick_delay" | "left_scroll_panel_content/content_stack_panel/option_label_tick_delay" | "left_scroll_panel_content/content_stack_panel/tick_delay_text" | "left_scroll_panel_content/content_stack_panel/offset7" | "left_scroll_panel_content/content_stack_panel/cancel" | "left_scroll_panel_content/content_stack_panel/offset8" | "left_divider_content" | "left_divider_content/left_scrolling_panel" | "right_scrolling_panel" | "right_scroll_panel_content" | "right_scroll_panel_content/command_block_commands_panel" | "right_scroll_panel_content/command_block_commands_panel/spacer1" | "right_scroll_panel_content/command_block_commands_panel/centering_panel" | "right_scroll_panel_content/command_block_commands_panel/centering_panel/option_label" | "right_scroll_panel_content/command_block_commands_panel/spacer2" | "right_scroll_panel_content/command_block_commands_panel/centering_panel1" | "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel" | "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset" | "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset/command_block_commands_text" | "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/paste_button" | "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/plus_button" | "right_scroll_panel_content/switch_warning_panel" | "right_scroll_panel_content/switch_warning_panel/switch_warning_label" | "right_scroll_panel_content/self_label" | "right_scroll_panel_content/self_label_offset" | "right_scroll_panel_content/nearest_player_label" | "right_scroll_panel_content/nearest_player_label_offset" | "right_scroll_panel_content/random_player_label" | "right_scroll_panel_content/random_player_label_offset" | "right_scroll_panel_content/all_players_label" | "right_scroll_panel_content/all_players_label_offset" | "right_scroll_panel_content/all_entities_label" | "right_scroll_panel_content/all_entities_label_offset" | "right_scroll_panel_content/nearest_label" | "right_scroll_panel_content/nearest_label_offset" | "right_scroll_panel_content/command_block_previous_output_panel" | "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel" | "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack" | "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/show_output_toggle" | "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/option_label" | "right_scroll_panel_content/command_block_previous_output_panel/spacer" | "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel" | "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel/command_output_text" | "right_scroll_panel_content/previous_block_type_text" | "right_scroll_panel_content/offset4" | "right_scroll_panel_content/previous_conditional_mode_text" | "right_scroll_panel_content/offset5" | "right_scroll_panel_content/previous_redstone_mode_text" | "divider_content" | "divider_content/left_side" | "divider_content/right_side" | "command_block_screen_content" | "command_block_screen_content/background_divider" | "command_block_screen_content/background_divider/bg_image" | "command_block_screen_content/background_divider/dialog_divider" | "command_block_screen_content/background_divider/header_buttons_stack_panel" | "command_block_screen_content/background_divider/header_buttons_stack_panel/paste_button" | "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder" | "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/close" | "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize" | "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/default" | "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/hover" | "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/pressed" | "command_block_screen_content/title" | "command_block_screen_content/content" | "command_block_screen_content/maximized_command_block_text" | "right_divider_content" | "right_divider_content/right_scrolling_panel" | "command_block_screen"; -export type ConfirmDeleteAccount = "horizontal_divider" | "image_panel" | "image_panel/image" | "header_panel" | "header_panel/image_panel" | "header_panel/padding" | "header_panel/text_panel" | "header_panel/text_panel/header_text" | "header_panel/text_panel/padding_2" | "header_panel/text_panel/header_text_2" | "dialog_content" | "dialog_content/body_content" | "dialog_content/padding" | "dialog_content/button_panel" | "dialog_content/button_panel/confirm_delete_account_button" | "dialog_content/button_panel/padding" | "dialog_content/button_panel/cancel_delete_account_button" | "confirm_checkbox" | "confirm_checkbox/check_box_wrapper" | "confirm_checkbox/check_box_wrapper/check_box" | "confirm_checkbox/padding" | "confirm_checkbox/label_wrapper" | "confirm_checkbox/label_wrapper/label" | "scrolling_panel" | "description_label_panel" | "description_label_panel/header_label_wrapper" | "description_label_panel/padding" | "description_label_panel/divider_0" | "description_label_panel/confirm_0" | "description_label_panel/divider_1" | "description_label_panel/confirm_1" | "description_label_panel/divider_2" | "description_label_panel/confirm_2" | "description_label_panel/divider_3" | "description_label_panel/confirm_3" | "confirm_delete_account_screen" | "confirm_delete_account_screen_content" | "confirm_delete_account_screen_content/root_panel" | "confirm_delete_account_screen_content/root_panel/dialog" | "screen_dialog" | "background"; -export type ContentLog = "content_log_label" | "content_log_grid_item" | "content_log_grid_item/content_log_background" | "content_log_grid_item/content_log_background/content_log_text" | "content_log_panel" | "content_log_panel/stack_panel"; -export type ContentLogHistory = "clipboard_icon" | "clipboard_icon_wrapper" | "clipboard_icon_wrapper/stack_panel" | "clipboard_icon_wrapper/stack_panel/icon_panel" | "clipboard_icon_wrapper/stack_panel/icon_panel/icon" | "clipboard_icon_wrapper/stack_panel/offset" | "clipboard_icon_wrapper/stack_panel/label_panel" | "clipboard_icon_wrapper/stack_panel/label_panel/label" | "clipboard_button" | "clear_icon" | "clear_icon_wrapper" | "clear_icon_wrapper/stack_panel" | "clear_icon_wrapper/stack_panel/icon_panel" | "clear_icon_wrapper/stack_panel/icon_panel/icon" | "clear_icon_wrapper/stack_panel/offset" | "clear_icon_wrapper/stack_panel/label_panel" | "clear_icon_wrapper/stack_panel/label_panel/label" | "clear_button" | "horizontal_button_stack_panel" | "horizontal_button_stack_panel/clipboard_button" | "horizontal_button_stack_panel/clear_button" | "content_log_message" | "content_log_message_panel" | "content_log_message_panel/content_log_message" | "content_log_message_panel_panel" | "content_log_message_panel_panel/content_log_message_panel" | "messages_stack_panel" | "messages_scrolling_panel" | "main_stack_panel" | "main_stack_panel/messages_scrolling_panel" | "content_log_history_panel" | "content_log_history_panel/content_log_history_dialog" | "content_log_history_screen"; -export type CrafterPocket = "generic_label" | "header_panel" | "header_panel/header_background" | "header_panel/title_label" | "header_area" | "header_area/x" | "header_area/inventory_header" | "header_area/container_header" | "dark_bg" | "panel_outline" | "background_panel" | "inventory_panel" | "inventory_panel/scrolling_panel" | "left_screen" | "left_screen/inventory_panel" | "crafter_input_grid" | "crafter_disabled_slot" | "crafter_disabled_slot/default" | "crafter_disabled_slot/hover" | "crafter_disabled_slot/pressed" | "cell_image" | "crafter_highlight_slot" | "crafter_container_slot_button_prototype" | "crafter_highlight_slot_panel" | "crafter_highlight_slot_panel/highlight" | "crafter_highlight_slot_panel/highlight/hover_text" | "crafter_highlight_slot_panel/white_border" | "crafter_enabled_slot_template" | "output_slot_hover_info" | "output_slot_hover_info/hover" | "output_slot_hover_info/output_slot" | "output_slot_hover_info/output_slot_border" | "output_slot_hover_info/output_count" | "panel_crafter" | "panel_crafter/item_lock_notification_factory" | "panel_crafter/root_panel" | "panel_crafter/root_panel/disabled_slot_0_button" | "panel_crafter/root_panel/disabled_slot_1_button" | "panel_crafter/root_panel/disabled_slot_2_button" | "panel_crafter/root_panel/disabled_slot_3_button" | "panel_crafter/root_panel/disabled_slot_4_button" | "panel_crafter/root_panel/disabled_slot_5_button" | "panel_crafter/root_panel/disabled_slot_6_button" | "panel_crafter/root_panel/disabled_slot_7_button" | "panel_crafter/root_panel/disabled_slot_8_button" | "panel_crafter/root_panel/redstone_screen_inventory" | "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid" | "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid" | "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon" | "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line" | "panel_crafter/root_panel/redstone_screen_inventory/crafter_output" | "panel_crafter/root_panel/red_icon" | "right_screen_background" | "right_screen" | "right_screen/right_screen_bg" | "right_screen/right_screen_bg/inventory_panel" | "panel" | "panel/container_gamepad_helpers" | "panel/header" | "panel/bg" | "panel/inventory" | "panel/container" | "panel/selected_item_details_factory" | "panel/item_lock_notification_factory" | "panel/gamepad_cursor" | "panel/flying_item_renderer" | "crafter"; -export type CreateWorldUpsell = "world_icon" | "realms_icon" | "dark_banner" | "grey_banner" | "checkmark" | "largex" | "realms_art_icon" | "new_world_button" | "new_realm_button" | "remove_trial_button" | "button_content" | "button_content/padding_0" | "button_content/icon_panel" | "button_content/padding_1" | "button_content/label_panel" | "realm_button_content" | "world_button_content" | "realms_button_text_panel" | "realms_button_text_panel/new_realm_label" | "realms_button_text_panel/new_realm_trial_label" | "price_label" | "new_realm_label" | "new_realm_trial_label" | "new_world_label" | "button_and_price_panel" | "button_and_price_panel/padding" | "button_and_price_panel/price_label_panel" | "button_and_price_panel/price_label_panel/price" | "border_shell" | "head_banner_panel" | "create_new_realm_content" | "create_new_realm_content/head_banner_panel" | "create_new_realm_content/head_banner_panel/realm_button_price" | "create_new_realm_content/realm_grid" | "create_world_upsell_grid_item" | "create_world_upsell_grid_item/db" | "create_world_upsell_grid_item/gb" | "create_world_upsell_grid_item/gp" | "grid_panel" | "grid_panel/padding" | "grid_panel/upsell_text_panel" | "grid_panel/upsell_text_panel/upsell_label" | "create_new_world_content" | "create_new_world_content/head_banner_panel" | "create_new_world_content/head_banner_panel/world_button_price" | "create_new_world_content/world_grid" | "new_world_or_realm_scroll" | "create_new_world_or_realm_content" | "create_new_world_or_realm_content/world" | "create_new_world_or_realm_content/padding" | "create_new_world_or_realm_content/realm_content" | "new_realm_scroll" | "new_realm_content_panel" | "new_realm_content_panel/key_art_panel" | "new_realm_content_panel/key_art_panel/realms_art_icon" | "new_realm_content_panel/padding_hack" | "new_realm_content_panel/padding_0" | "new_realm_content_panel/new_realm_scroll" | "new_realm_content_panel/padding_1" | "create_realm_upsell_content" | "create_realm_upsell_content/realm_content" | "create_realm_upsell_content/padding_0" | "create_realm_upsell_content/remove_trial_button" | "create_realm_upsell_content/padding_1" | "realm_content" | "create_world_upsell" | "create_world_upsell_realms" | "main_panel" | "variable_screen_size_panel" | "variable_screen_size_panel/dialog_0" | "variable_screen_size_panel/dialog_1" | "main_panel_realms_only"; -export type Credits = "fade_in_image" | "fade_out_image" | "skip_panel" | "skip_panel/skip_button" | "skip_panel/exit_credits_input_panel" | "credits_renderer" | "credits_screen_content" | "credits_screen_content/credits_renderer" | "credits_screen_content/vignette_renderer" | "credits_screen_content/fade_in_image" | "credits_screen_content/credits_factory" | "credits_screen_content/whole_screen_input_panel" | "background" | "credits_screen"; -export type CsbPurchaseError = "csb_purchase_error_screen" | "purchase_error_screen_content" | "purchase_error_screen_content/main_panel" | "purchase_error_modal_main_panel" | "purchase_error_modal_main_panel/text_panel" | "purchase_error_modal_main_panel/text_panel/text" | "purchase_error_modal_main_panel/padding_1" | "purchase_error_modal_main_panel/art_panel" | "purchase_error_modal_main_panel/art_panel/art" | "purchase_error_modal_main_panel/padding_2" | "purchase_error_modal_main_panel/error_panel" | "purchase_error_modal_main_panel/error_panel/error_code" | "purchase_error_modal_main_panel/error_panel/correlation_id" | "purchase_error_modal_back_button"; -export type Csb = "csb_pdp_screen" | "csb_upgrade_notice_screen" | "csb_background" | "gradient_image_stack" | "gradient_image_stack/gradient" | "gradient_content_panel" | "gradient_content_panel/gradient" | "gradient_content_panel/particles" | "gradient_content_panel/content_panel" | "csb_screen_main_panel" | "csb_main_panel" | "csb_main_panel/root_panel" | "csb_main_panel/root_panel/main_panel" | "dialog_content" | "dialog_content/selector_area" | "dialog_content/padding_1" | "dialog_content/allow_divider_offset_panel" | "dialog_content/allow_divider_offset_panel/left_right_pane_divider" | "dialog_content/padding_2" | "dialog_content/content_area" | "dialog_content/padding_3" | "selector_area" | "selector_area/scrolling_panel" | "scrollable_selector_area_content" | "scrollable_selector_area_content/focus_reset_input_panel" | "scrollable_selector_area_content/csb_toggle" | "scrollable_selector_area_content/content_toggle" | "scrollable_selector_area_content/faq_toggle" | "scrollable_selector_area_content/toggle_section_divider" | "scrollable_selector_area_content/buy_now_toggle" | "scrollable_selector_area_content/xbl_btn_panel" | "scrollable_selector_area_content/xbl_btn_panel/xbl_btn" | "section_toggle_base" | "tab_button_text" | "toggle_base" | "toggle_base/toggle" | "toggle_base/padding" | "csb_toggle" | "content_toggle" | "faq_toggle" | "buy_now_toggle" | "left_right_pane_divider" | "content_area" | "content_area/control" | "content_area/control/scrolling_panel_csb" | "section_content_panels" | "vertical_padding_4px" | "section_base" | "buy_now_content_section" | "buy_now_content_section/vertical_padding" | "buy_now_content_section/content" | "markdown_background_animated" | "markdown_background_animated/csb_chevron" | "markdown_background" | "markdown_background/banner_panel" | "markdown_background/banner_panel/banner" | "markdown_background/banner_panel/banner/banner_stack_panel" | "markdown_background/banner_panel/banner/banner_stack_panel/0" | "markdown_background/triangle_panel" | "markdown_background/triangle_panel/triangle" | "empty_label" | "full_width_section_divider"; -export type CsbContent = "csb_content_section" | "csb_content_section/content_section_vertical_padding_1" | "csb_content_section/popular_packs_label_panel" | "csb_content_section/popular_packs_label_panel/label_with_gradient" | "csb_content_section/popular_packs_label_panel/tts_border" | "csb_content_section/content_section_vertical_padding_2" | "csb_content_section/content_pack_types" | "csb_content_section/content_packs_included" | "csb_content_section/content_section_vertical_padding_3" | "content_pack_types_section" | "content_pack_types_section/pack_types" | "content_pack_types_section/padding" | "content_packs_included_section" | "content_packs_included_section/popular_packs" | "content_packs_included_section/section_divider" | "pack_types" | "pack_types/padding_01" | "pack_types/pack_types_1" | "pack_types/padding_02" | "pack_types/pack_types_2" | "pack_types/padding_03" | "pack_types_1" | "pack_types_1/worlds" | "pack_types_1/padding_01" | "pack_types_1/textures" | "pack_types_1/padding_02" | "pack_types_1/persona" | "pack_types_2" | "pack_types_2/padding_1" | "pack_types_2/skins" | "pack_types_2/padding_2" | "pack_types_2/mashups" | "pack_types_2/padding_3" | "pack_type_description" | "pack_type_description/image_nesting_panel" | "pack_type_description/image_nesting_panel/texture" | "pack_type_description/padding_0" | "pack_type_description/description_nesting_panel" | "pack_type_description/description_nesting_panel/description_label" | "pack_type_description/description_nesting_panel/tts_border" | "pack_type_description/padding_1" | "popular_packs" | "popular_packs/padding_0" | "popular_packs/pack_grid" | "popular_packs/view_all_packs_panel" | "popular_packs/view_all_packs_panel/view_all_packs_button" | "popular_packs/view_all_packs_panel/padding" | "popular_packs/view_all_packs_panel/view_character_creator_items" | "popular_packs/padding_1" | "popular_packs_label" | "packs_collection" | "packs_collection/row_1" | "packs_collection/row_1/pack_image_grid_item_0" | "packs_collection/row_1/padding" | "packs_collection/row_1/pack_image_grid_item_1" | "packs_collection/padding_1" | "packs_collection/row_2" | "packs_collection/row_2/pack_image_grid_item_0" | "packs_collection/row_2/padding" | "packs_collection/row_2/pack_image_grid_item_1" | "packs_collection/padding_2" | "pack_image_grid_item" | "pack_image_grid_item/bg" | "pack_image_grid_item/bg/featured_key_art" | "pack_image_grid_item/bg/progress_loading" | "pack_image_grid_item/offer_button" | "pack_image_grid_item/offer_button/default" | "pack_image_grid_item/offer_button/hover" | "pack_image_grid_item/offer_button/pressed"; -export type CsbBanner = "csb_banner" | "csb_banner/static_button" | "csb_banner/animated_button" | "csb_banner_slim" | "csb_banner_slim/banner_button" | "csb_banner_portal" | "csb_banner_portal/banner_button" | "promo_banner_csb_button" | "promo_banner_csb_button/default" | "promo_banner_csb_button/hover" | "csb_banner_slim_content" | "csb_banner_slim_content/banner_content" | "csb_banner_portal_content" | "csb_banner_portal_content/banner_content" | "slim_logo_panel" | "slim_logo_panel/mpp_logo" | "portal_logo_panel" | "portal_logo_panel/mpp_logo" | "csb_banner_new_content" | "csb_banner_new_content/text" | "csb_banner_new_content/text/logo_panel" | "csb_banner_new_content/text/offer_panel" | "csb_banner_new_content/text/offer_panel/upsell_text" | "csb_banner_new_content/text/pixel_art" | "sdl_upsell_text_component_factory" | "csb_banner_content" | "csb_banner_content/banner" | "csb_banner_content/text" | "csb_banner_content/text/logo_panel" | "csb_banner_content/text/logo_panel/logo" | "csb_banner_content/text/offer_panel" | "csb_banner_content/text/offer_panel/offer" | "csb_banner_content/text/learn_more_panel" | "csb_banner_content/text/learn_more_panel/learn_more" | "csb_banner_content/text/learn_more_panel/learn_more/more" | "csb_banner_content/text/learn_more_panel/learn_more/more_chevron" | "animated_promo_banner_csb_button" | "animated_promo_banner_csb_button/default" | "animated_promo_banner_csb_button/hover" | "animated_csb_banner_content" | "animated_csb_banner_content/banner" | "animated_csb_banner_content/text" | "animated_csb_banner_content/text/logo_panel" | "animated_csb_banner_content/text/logo_panel/logo" | "animated_csb_banner_content/text/offer_panel" | "animated_csb_banner_content/text/offer_panel/offer" | "animated_csb_banner_content/text/learn_more_panel" | "animated_csb_banner_content/text/learn_more_panel/learn_more" | "animated_csb_banner_content/text/learn_more_panel/learn_more/more" | "animated_csb_banner_content/text/learn_more_panel/learn_more/more_chevron" | "still_pixel_art_panel" | "still_pixel_art_panel/banner" | "animated_pixel_art_panel" | "animated_pixel_art_panel/mygif" | "image_component_factory" | "image_asset_factory"; -export type CsbBuy = "buy_now_content" | "buy_now_content/description_stack" | "buy_now_content/terms_and_conditions" | "buy_now_content/padding_2" | "buy_now_content/button_panel" | "buy_now_content/button_panel/buy_button" | "buy_now_content/button_panel/icon_panel" | "buy_now_content/padding_3" | "buy_now_content/terms" | "content_text_section" | "content_text_section/text_description" | "content_text_section/padding" | "content_description" | "content_description/content_description_label" | "content_description/tts_hover" | "trial_image_and_description" | "trial_image_and_description/image_border" | "trial_image_and_description/padding" | "trial_image_and_description/description_text" | "trial_image_and_description/description_text/descriptions_label" | "trial_image_and_description/description_text/tts_hover" | "title_text" | "title_text/inner_text" | "title_text/tts_hover" | "description_stack" | "description_stack/title_with_gradient" | "description_stack/padding" | "description_stack/image_and_description" | "terms_and_conditions" | "terms_and_conditions/terms_panel" | "terms_and_conditions_panel" | "terms_and_conditions_panel/name_label" | "terms_and_conditions_panel/terms_string_panel" | "terms_and_conditions_panel/terms_string_panel/banner_fill" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button" | "button_text" | "mcten_text_centering_panel" | "mcten_text_centering_panel/button_text" | "view_terms_button" | "privacy_policy_button" | "buy_button_panel" | "buy_button_panel/buy_button" | "tool_tip_icon_panel" | "tool_tip_icon_panel/issue_icon" | "tool_tip_icon_panel/issue_icon/info_icon" | "tool_tip_icon_panel/issue_icon/default" | "tool_tip_icon_panel/issue_icon/hover" | "tool_tip_icon_panel/issue_icon/pressed" | "buy_button_content" | "buy_button_content/button_chevron_panel" | "buy_button_content/button_chevron_panel/buy_button_chevron" | "buy_button_content/button_text_centering_panel" | "info_icon" | "info_icon/panel_icon"; -export type CommonCsb = "csb_expiration_banner" | "csb_expiration_banner/background" | "csb_expiration_banner/icon" | "csb_expiration_banner/text" | "csb_icon_large" | "csb_header" | "csb_header/label_a_text_csb" | "csb_header/label_space_text_csb" | "csb_header/label_b_text_pass" | "csb_header_two_lines" | "csb_header_two_lines/top_header" | "csb_header_two_lines/panel_centre_second_line" | "csb_header_two_lines/panel_centre_second_line/sub_header" | "csb_gold_button" | "csb_gold_text_button"; -export type CsbPurchaseAmazondevicewarning = "csb_purchase_amazondevicewarning_screen" | "screen_content" | "screen_content/main_panel" | "main_panel" | "main_panel/text_panel_1" | "main_panel/text_panel_1/text" | "main_panel/art_panel" | "main_panel/art_panel/art" | "main_panel/padding" | "main_panel/text_panel_2" | "main_panel/text_panel_2/text" | "back_button"; -export type CsbPurchaseWarning = "csb_purchase_warning_screen" | "purchase_warning_screen_content" | "purchase_warning_screen_content/main_panel" | "warning_modal_main_panel" | "warning_modal_main_panel/text_panel_1" | "warning_modal_main_panel/text_panel_1/text" | "warning_modal_main_panel/padding_1" | "warning_modal_main_panel/art_panel" | "warning_modal_main_panel/art_panel/art" | "warning_modal_main_panel/padding_2" | "warning_modal_main_panel/text_panel_2" | "warning_modal_main_panel/text_panel_2/text" | "warning_modal_back_button"; -export type CsbSubscriptionPanel = "csb_container" | "csb_container/fill" | "csb_container/border" | "csb_container/panel_contents" | "csb_container/panel_contents/content_container" | "csb_container/panel_contents/content_container/side_image_stack_left" | "csb_container/panel_contents/content_container/side_image_stack_left/csb_image" | "csb_container/panel_contents/content_container/padding_02" | "csb_container/panel_contents/content_container/side_stack_right" | "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack" | "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/panel_label" | "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding_01" | "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_01_container" | "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_02_container" | "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_03_container" | "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding02" | "csb_container/panel_contents/button_panel_spacer" | "csb_container/panel_contents/csb_buttons" | "csb_container/panel_contents/csb_buttons/button_panel_padding" | "csb_container/panel_contents/csb_buttons/padding_01" | "csb_container/panel_contents/csb_buttons/csb_info_button" | "csb_marketplace_benefit" | "csb_marketplace_benefit/bullet_holder_01" | "csb_marketplace_benefit/bullet_holder_01/bullet_spacer" | "csb_marketplace_benefit/bullet_holder_01/bullet_01" | "csb_marketplace_benefit/panel_details_ln1" | "csb_buy_container" | "csb_buy_container/csb_buy_button" | "csb_buy_button_text" | "csb_cancel_button"; -export type CsbUpsell = "csb_upsell_screen" | "csb_upsell_compare_dialog" | "csb_upsell_compare_dialog/csb_upsell_compare_main_screen" | "csb_upsell_popup_content" | "csb_upsell_popup_content/two_side_panels" | "csb_upsell_popup_content/two_side_panels/border_panel_left" | "csb_upsell_popup_content/two_side_panels/border_panel_left/border" | "csb_upsell_popup_content/two_side_panels/border_panel_left/background_panel" | "csb_upsell_popup_content/two_side_panels/border_panel_left/left_side_panel" | "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering" | "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering/learn_more_left" | "csb_upsell_popup_content/two_side_panels/middle_spacer" | "csb_upsell_popup_content/two_side_panels/border_panel_right" | "csb_upsell_popup_content/two_side_panels/border_panel_right/border" | "csb_upsell_popup_content/two_side_panels/border_panel_right/background_panel" | "csb_upsell_popup_content/two_side_panels/border_panel_right/right_side_panel" | "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering" | "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering/learn_more_right" | "csb_upsell_left_side_panel" | "csb_upsell_left_side_panel/upper_half" | "csb_upsell_left_side_panel/upper_half/header_panel" | "csb_upsell_left_side_panel/upper_half/header_panel/blank_space" | "csb_upsell_left_side_panel/upper_half/header_panel/top_header" | "csb_upsell_left_side_panel/upper_half/header_panel/price_amount" | "csb_upsell_left_side_panel/middle_spacer" | "csb_upsell_left_side_panel/bottom_half" | "csb_upsell_left_side_panel/bottom_half/padding_b" | "csb_upsell_left_side_panel/bottom_half/bullet_one" | "csb_upsell_left_side_panel/bottom_half/padding_0" | "csb_upsell_left_side_panel/bottom_half/bullet_two" | "csb_upsell_left_side_panel/bottom_half/padding_1" | "csb_upsell_left_side_panel/bottom_half/bullet_three" | "csb_upsell_right_side_panel" | "csb_upsell_right_side_panel/upper_half" | "csb_upsell_right_side_panel/upper_half/marketing_banner" | "csb_upsell_right_side_panel/upper_half/marketing_banner/background_color" | "csb_upsell_right_side_panel/upper_half/marketing_banner/marketing_banner_label" | "csb_upsell_right_side_panel/upper_half/header_panel" | "csb_upsell_right_side_panel/upper_half/header_panel/top_header" | "csb_upsell_right_side_panel/upper_half/header_panel/price_amount" | "csb_upsell_right_side_panel/middle_spacer" | "csb_upsell_right_side_panel/bottom_half" | "csb_upsell_right_side_panel/bottom_half/padding_b" | "csb_upsell_right_side_panel/bottom_half/bullet_one" | "csb_upsell_right_side_panel/bottom_half/padding_1" | "csb_upsell_right_side_panel/bottom_half/bullet_two" | "csb_upsell_right_side_panel/bottom_half/padding_0" | "csb_upsell_right_side_panel/bottom_half/bullet_three" | "csb_big_padding" | "csb_bullet_padding" | "csb_bullet_padding/desktop" | "csb_bullet_padding/pocket" | "csb_bullet_desktop_padding" | "csb_bullet_pocket_padding" | "csb_bullet" | "csb_bullet/padding_icon_left" | "csb_bullet/padding_icon_vertical" | "csb_bullet/padding_icon_vertical/padding_vertical" | "csb_bullet/padding_icon_vertical/label_icon" | "csb_bullet/padding_icon_right" | "csb_bullet_point" | "csb_bullet_point/bullet_icon" | "csb_bullet_point/label_text" | "csb_bullet_split_point" | "csb_bullet_split_point/bullet_icon" | "csb_bullet_split_point/label_text" | "csb_bullet_split_point/space" | "csb_bullet_split_point/space/label_text_csb" | "csb_bullet_split_point/csb_name" | "csb_bullet_split_point/csb_name/csb_name_string" | "csb_price" | "csb_price/price_details" | "csb_price_details" | "csb_price_details/price_panel_1" | "csb_price_details/price_panel_1/amount" | "csb_price_details/price_panel_first_period" | "csb_price_details/price_panel_first_period/second_line" | "csb_learn_more" | "csb_learn_more/learn_more"; -export type CsbPacks = "view_all_packs_screen" | "view_packs_screen_content" | "view_packs_screen_content/main_panel" | "csb_view_packs_screen_main_panel" | "main_panel" | "main_panel/offers" | "main_panel/progress_loading" | "scrolling_content_stack" | "scrolling_content_stack/padding_0" | "scrolling_content_stack/store_factory"; -export type CsbWelcome = "csb_welcome_screen" | "welcome_screen_content" | "welcome_screen_content/main_panel" | "welcome_modal_main_panel" | "welcome_modal_main_panel/art_panel" | "welcome_modal_main_panel/art_panel/art" | "welcome_modal_main_panel/padding" | "welcome_modal_main_panel/text_panel" | "welcome_modal_main_panel/text_panel/text" | "welcome_modal_continue_button"; -export type CsbFaq = "faq_bottom_button" | "faq_image_section" | "faq_image_section/faq_image" | "faq_text_section_body" | "faq_text_question" | "faq_text_section" | "faq_text_section/faq_text_question" | "faq_text_section/faq_text_answer" | "faq_price_bound_text_section" | "faq_price_bound_text_section/faq_text_question" | "faq_price_bound_text_section/faq_text_answer" | "faq_question_body" | "faq_question_body/0" | "faq_question_body_stack" | "faq_question_body_horz_padding" | "image_left_faq_question_body" | "image_right_faq_question_body" | "image_left_faq_price_bound" | "image_right_faq_price_bound" | "faq_section_header_space" | "faq_section_divider" | "faq_content_section" | "faq_content_section/faq_section_vertical_padding_1" | "faq_content_section/faq_header" | "faq_content_section/faq_section_vertical_padding_2" | "faq_content_section/faq_question_1" | "faq_content_section/faq_question_1_divider" | "faq_content_section/faq_question_2" | "faq_content_section/faq_question_2_divider" | "faq_content_section/faq_question_3" | "faq_content_section/faq_question_3_divider" | "faq_content_section/faq_question_4" | "faq_content_section/faq_question_4_divider" | "faq_content_section/faq_question_5" | "faq_content_section/faq_question_5_divider" | "faq_content_section/faq_question_6" | "faq_content_section/faq_question_6_divider" | "faq_content_section/faq_question_7" | "faq_content_section/faq_question_7_divider" | "faq_content_section/faq_question_8" | "faq_content_section/faq_question_8_divider" | "faq_content_section/faq_question_9" | "faq_content_section/faq_question_9_divider" | "faq_content_section/faq_question_10" | "faq_content_section/faq_question_10_divider" | "faq_content_section/faq_button" | "faq_content_section/faq_bottom_padding" | "faq_content_section/faq_bottom_padding/bottom_left_particles"; -export type CsbLanding = "landing_content_section" | "landing_content_section/landing_section_vertical_padding" | "landing_content_section/landing_content" | "landing_content_section/landing_content/title_stack" | "landing_content_section/landing_content/vertical_small_spacer_0" | "landing_content_section/landing_content/vertical_small_spacer_1" | "landing_content_section/landing_content/info_stack" | "landing_content_section/landing_content/vertical_small_spacer_2" | "horizontal_small_spacer" | "vertical_small_spacer" | "vertical_large_spacer" | "title_stack" | "title_stack/title_image_panel" | "title_stack/title_space" | "title_stack/action_button" | "title_stack/sign_in_button" | "title_stack/vertical_space2" | "title_stack/gradient_panel" | "title_stack/gradient_panel/label_with_gradient" | "title_stack/gradient_panel/tts_hover" | "title_stack/gradient_panel2" | "title_stack/gradient_panel2/label_with_gradient2" | "title_stack/gradient_panel2/tts_hover" | "subscription_includes_text" | "free_trial_text" | "title_space" | "title_image_panel" | "title_image_panel/vertical_small_spacer_1" | "title_image_panel/title_image_container" | "title_image_panel/title_image_container/title_image" | "title_image_panel/vertical_small_spacer_2" | "info_stack" | "info_stack/info_section_image" | "info_stack/info_description_stack_retail" | "info_description_stack_retail" | "info_description_stack_retail/info_section_stack_1" | "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer" | "info_description_stack_retail/info_section_stack_1/info_section_text_1" | "info_section_stack" | "info_section_image_with_border" | "info_section_text_1" | "info_section_text_1/info_section_text" | "info_section_text_1/vertical_small_spacer_0" | "info_section_text_1/info_text_bullet_1" | "info_section_text_1/vertical_small_spacer_1" | "info_section_text_1/info_text_bullet_2" | "info_section_text_1/vertical_small_spacer_2" | "info_section_text_1/info_text_bullet_3" | "info_section_text_1/vertical_small_spacer_3" | "info_section_text_1/info_text_bullet_4" | "info_section_text_1/vertical_small_spacer_4" | "info_section_text_1/info_text_bullet_5" | "info_section_text_1/vertical_small_spacer_5" | "info_section_text_1/info_text_bullet_6" | "info_section_text_1/vertical_large_spacer_6" | "info_section_text_2" | "info_section_text_2/info_text_bullet_1" | "info_section_text_2/vertical_small_spacer_0" | "info_section_text_2/info_text_bullet_2" | "info_section_text_2/vertical_small_spacer_1" | "info_section_text_2/info_text_bullet_4" | "info_section_text_2/vertical_small_spacer_3" | "info_section_text_2/info_text_bullet_5" | "info_section_text" | "info_text_bullet" | "info_text_bullet/info_text_bullet_bullet" | "info_text_bullet/bullet_spacer" | "info_text_bullet/info_text_bullet_body" | "info_text_bullet/bullet_spacer_end" | "info_text_unbulletted" | "info_text_unbulletted/info_text_bullet_body" | "info_text_body" | "info_text_body/text_body" | "info_text_body/tts_border"; -export type CustomTemplates = "lock_icon" | "templates_scroll_content" | "templates_scroll_content/scrolling_panel" | "templates_scroll_panel" | "templates_scroll_panel/templates_stack_panel" | "templates_scroll_panel/templates_stack_panel/templates_item_grid" | "templates_item_grid" | "templates_item" | "templates_item/template_item_button" | "template_item_button" | "template_content_panel" | "template_content_panel/template_screenshot" | "template_content_panel/template_text_panel" | "template_content_panel/lock_panel" | "template_content_panel/lock_panel/lock_icon" | "template_screenshot" | "template_screenshot/picture" | "template_text_panel" | "template_text_panel/text_indent" | "template_text_panel/text_indent/top_side" | "template_text_panel/text_indent/top_side/template_name" | "template_text_panel/text_indent/top_side/download_text_label" | "template_text_panel/text_indent/bottom_side" | "template_text_panel/text_indent/bottom_side/template_description" | "template_text_panel/text_indent/bottom_side/template_version" | "template_name" | "template_download_text" | "template_list_text" | "template_description" | "template_version" | "main_panel" | "main_panel/templates_scroll_content" | "custom_templates_screen" | "custom_templates_screen_content" | "custom_templates_screen_content/dialog" | "background"; -export type WorldConversionComplete = "background" | "prompt_text" | "prompt_text/message" | "converted_world_preview_name" | "converted_world_preview_date" | "converted_world_preview_game_mode" | "converted_world_preview_filesize" | "converted_world_preview_text_panel" | "converted_world_preview_text_panel/text_indent" | "converted_world_preview_text_panel/text_indent/top_side" | "converted_world_preview_text_panel/text_indent/top_side/converted_world_name" | "converted_world_preview_text_panel/text_indent/top_side/converted_world_date" | "converted_world_preview_text_panel/text_indent/bottom_side" | "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_game_mode" | "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_filesize" | "converted_world_preview_panel" | "converted_world_preview_panel/world_preview_content" | "converted_world_preview_panel/world_preview_content/converted_world_screenshot" | "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content" | "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content/picture" | "converted_world_preview_panel/world_preview_content/converted_world_text_panel" | "main_panel" | "main_panel/padding_0" | "main_panel/prompt_1" | "main_panel/world_entry_container" | "main_panel/world_entry_container/world_entry_sizer" | "main_panel/world_entry_container/world_entry_sizer/world_entry" | "main_panel/buttons_panel_sizer" | "main_panel/buttons_panel_sizer/buttons_panel" | "main_panel/buttons_panel_sizer/buttons_panel/load_game_button" | "main_panel/buttons_panel_sizer/buttons_panel/padding" | "main_panel/buttons_panel_sizer/buttons_panel/return_button" | "world_conversion_complete_screen_content" | "world_conversion_complete_screen_content/dialog" | "world_conversion_complete_screen"; -export type DayOneExperienceIntro = "padding_horizontal" | "padding_vertical" | "label_panel" | "label_panel/label_text" | "text_panel" | "text_panel/padding_00" | "text_panel/tab_content_description_panel" | "text_panel/padding_01" | "dialog_image" | "image_panel" | "image_panel/dialog_image_with_border" | "image_panel/focus_image" | "top_tab" | "common_tab_navigation_panel_layout" | "tabbed_tab_navigation_panel_layout" | "tabbed_tab_navigation_panel_layout/nav_padding_01" | "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper" | "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper/gamepad_helper_left_bumper" | "tabbed_tab_navigation_panel_layout/nav_padding_02" | "tabbed_tab_navigation_panel_layout/welcome_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_03" | "tabbed_tab_navigation_panel_layout/marketplace_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_04" | "tabbed_tab_navigation_panel_layout/cross_platform_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_05" | "tabbed_tab_navigation_panel_layout/realms_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_06" | "tabbed_tab_navigation_panel_layout/villagers_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_07" | "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper" | "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper/gamepad_helper_right_bumper" | "tabbed_tab_navigation_panel_layout/nav_padding_08" | "tab_header_image_panel" | "tab_header_image_panel/welcome_tab_content" | "tab_header_image_panel/marketplace_tab_content" | "tab_header_image_panel/cross_platform_tab_content" | "tab_header_image_panel/realms_tab_content" | "tab_header_image_panel/villager_tab_content" | "tabbed_tab_content_panel_layout" | "tabbed_tab_content_panel_layout/welcome_tab_content" | "tabbed_tab_content_panel_layout/marketplace_tab_content" | "tabbed_tab_content_panel_layout/cross_platform_tab_content" | "tabbed_tab_content_panel_layout/realms_tab_content" | "tabbed_tab_content_panel_layout/villager_tab_content" | "common_tab_header_image_panel" | "common_tab_header_image_panel/header_image" | "common_tab_content_panel" | "common_tab_content_panel/content" | "welcome_tab_header_image_panel" | "welcome_tab_content_panel" | "marketplace_tab_header_image_panel" | "marketplace_tab_content_panel" | "cross_platform_tab_header_image_panel" | "cross_platform_tab_content_panel" | "realms_tab_header_image_panel" | "realms_tab_content_panel" | "villager_tab_header_image_panel" | "villager_tab_content_panel" | "tab_panel" | "tab_panel/tab_header_image" | "tab_panel/padding_00" | "tab_panel/tab_navigation_panel" | "tab_panel/tab_content_panel" | "tab_panel/padding_4" | "tab_panel/continue_button_panel" | "tab_panel/continue_button_panel/continue_button" | "day_one_experience_intro_screen" | "day_one_experience_intro_screen_content" | "day_one_experience_intro_screen_content/welcome_dialog"; -export type DayOneExperience = "alpha_scroll_background" | "tip_text" | "tip_arrow_base" | "tip_arrow_left" | "tip_arrow_right" | "import_time" | "skins_tip_image" | "skins_tip_image/arrows" | "skins_tip_image/arrows/right_arrow" | "skins_tip_image/arrows/padding" | "skins_tip_image/arrows/left_arrow" | "skins_tip_top_text" | "skins_tip_panel" | "skins_tip_panel/top_text_sizer" | "skins_tip_panel/top_text_sizer/settings_and_skin_text" | "skins_tip_panel/top_text_sizer/settings_text" | "skins_tip_panel/image_sizer" | "skins_tip_panel/image_sizer/image_section" | "skins_tip_panel/bottom_text_sizer" | "skins_tip_panel/bottom_text_sizer/bottom_text" | "skin_viewer_panel_text" | "skin_viewer_panel" | "skin_viewer_panel/paper_doll_container" | "skin_viewer_panel/paper_doll_container/paper_doll" | "skin_viewer_panel/legacy_skin_loading_panel" | "skin_viewer_panel/bottom_skin_text" | "skin_viewer_panel/bottom_skin_text/current_skin_text" | "skin_viewer_panel/bottom_skin_text/default_skin_text" | "skin_tip_screen" | "skin_tip_screen/primary_content" | "skin_tip_screen/primary_content/skin_viewer_panel" | "skin_tip_screen/primary_content/skin_viewer_panel/skin_viewer" | "skin_tip_screen/primary_content/padding" | "skin_tip_screen/primary_content/skins_tip_panel_container" | "skin_tip_screen/primary_content/skins_tip_panel_container/background" | "skin_tip_screen/primary_content/skins_tip_panel_container/skins_tip_panel" | "skin_tip_screen/no_network_message" | "legacy_world_item" | "legacy_world_item/header_button_panel" | "legacy_world_item_grid" | "world_picker_scrolling_content" | "world_picker_scrolling_content/padding_0" | "world_picker_scrolling_content/skip_button" | "world_picker_scrolling_content/padding_1" | "world_picker_scrolling_content/loading_legacy_worlds_panel" | "world_picker_scrolling_content/loading_legacy_worlds_panel/loading_legacy_worlds_label" | "world_picker_scrolling_content/loading_legacy_worlds_panel/padding" | "world_picker_scrolling_content/loading_legacy_worlds_panel/progress_loading_bars" | "world_picker_scrolling_content/padding_2" | "world_picker_scrolling_content/world_item_grid" | "world_picker_content" | "world_picker_content/scrolling_panel" | "advanced_worlds_screen" | "advanced_worlds_screen/world_picker" | "advanced_worlds_screen/padding_1" | "advanced_worlds_screen/import_time_container" | "advanced_worlds_screen/import_time_container/import_time_label" | "next_screen_button_content" | "next_screen_button_content/arrow_panel" | "next_screen_button_content/arrow_panel/label_panel" | "next_screen_button_content/arrow_panel/label_panel/label" | "next_screen_button_content/arrow_panel/image" | "next_screen_button_content/loading_panel" | "next_screen_button" | "next_panel" | "next_panel/next_button" | "common_scrolling_panel" | "skin_tip_scroll_panel" | "skin_tip_scroll_panel/skin_tip_screen" | "worlds_import_scroll_panel" | "worlds_import_scroll_panel/advanced_screen" | "common_content" | "skin_tip_scroll_content" | "skin_tip_scroll_content/scrolling_panel" | "world_import_scroll_content" | "world_import_scroll_content/scrolling_panel" | "default_tab_content_panel_layout" | "default_tab_content_panel_layout/skin_tip_tab_content" | "default_tab_content_panel_layout/world_import_tab_content" | "default_wizard_screen" | "default_wizard_screen/tab_content_panel" | "wizard_screen" | "wizard_screen_content" | "wizard_screen_content/main_control" | "wizard_screen_content/next_button"; -export type Death = "a_button_panel" | "a_button_panel/gamepad_helper_a" | "you_died_panel" | "you_died_panel/you_died_label" | "death_reason_panel" | "death_reason_panel/death_reason_label" | "labels_panel" | "labels_panel/fill_1" | "labels_panel/you_died" | "labels_panel/padd_1" | "labels_panel/death_reason" | "labels_panel/padd_2" | "buttons_panel" | "buttons_panel/padd_0" | "buttons_panel/respawn_button" | "buttons_panel/padd_1" | "buttons_panel/main_menu_button" | "buttons_panel/fill_2" | "buttons_panel/select_button" | "death_screen_content" | "death_screen_content/death_screen_buttons_and_stuff" | "death_screen_content/death_screen_buttons_and_stuff/labels_panel" | "death_screen_content/death_screen_buttons_and_stuff/buttons_panel" | "death_screen_content/loading_label" | "background_gradient" | "death_screen"; -export type DebugScreen = "access_button" | "special_render" | "content_panel" | "content_panel/access_button" | "content_panel/special_render" | "debug_screen"; -export type DevConsole = "keyboard_button_content" | "keyboard_button_content/keyboard_image" | "keyboard_button" | "button_content" | "button_content/image" | "up_arrow" | "down_arrow" | "send_button" | "sent_message_up_button" | "sent_message_down_button" | "chat_stack_panel" | "chat_stack_panel/text_box" | "chat_stack_panel/send_button" | "chat_stack_panel/sent_message_up_button" | "chat_stack_panel/sent_message_down_button" | "main_stack_panel" | "main_stack_panel/messages_scrolling_panel" | "main_stack_panel/chat_stack_panel" | "main_with_intellisense" | "main_with_intellisense/main_stack" | "main_with_intellisense/commands_panel" | "dev_console_dialog" | "dev_console_screen"; -export type Disconnect = "disconnect_screen_text" | "disconnect_text" | "disconnect_title_text" | "title_panel" | "title_panel/disconnect_title_text" | "title_panel/disconnect_text" | "menu_button_template" | "continue_button" | "check_store_button" | "exit_button" | "ok_button" | "open_uri_button" | "cancel_button" | "button_panel" | "button_panel/open_uri_button_panel" | "button_panel/open_uri_button_panel/open_uri_button" | "button_panel/open_button_panel" | "button_panel/open_button_panel/ok_button" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "disconnect_screen" | "disconnect_screen_content" | "disconnect_screen_content/title_panel" | "disconnect_screen_content/gamepad_helpers" | "spacing_gap" | "realms_disconnect_screen" | "realms_disconnect_button_panel" | "realms_disconnect_button_panel/open_uri_button_panel" | "realms_disconnect_button_panel/open_uri_button_panel/open_uri_button" | "realms_disconnect_button_panel/realm_buttons_panel" | "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons" | "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/check_store_button" | "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/spacing_gap" | "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/exit_button" | "realms_warning_screen" | "realms_warning_button_panel" | "realms_warning_button_panel/continue_button_panel" | "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel" | "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/check_store_button" | "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/spacing_gap" | "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/continue_button" | "realms_warning_button_panel/realms_warning_button_gap" | "realms_warning_button_panel/cancel_button_panel" | "realms_warning_button_panel/cancel_button_panel/cancel_button" | "open_account_setting_button"; -export type DisplayLoggedError = "display_logged_error_screen" | "factory_panel" | "factory_panel/error_dialog_factory" | "display_logged_error_modal" | "error_message_stack" | "error_message_stack/error_message" | "error_message_stack/error_count" | "input_blocking_button_base" | "details_button" | "dismiss_button" | "error_details_modal" | "copy_path_button" | "hide_error_details_button" | "error_stack_scrolling_panel" | "error_stack" | "error_controller_panel" | "error_controller_panel/error_message" | "error_controller_panel/controller_button" | "error_controller_panel/controller_button/hover" | "error_controller_panel/controller_button/pressed" | "error_base" | "error_base/error_message" | "error_base/expand_button" | "error_short" | "error_expanded"; -export type DiscoveryDialog = "service_body_label" | "service_button" | "service_buttons" | "content" | "content/body_text" | "content/text_to_button_padding" | "content/buttons" | "service_dialog" | "discovery_dialog_factory"; -export type EduFeatured = "featured_button_content" | "featured_button_content/button_label" | "featured_button"; -export type EduQuitButton = "quit_button"; -export type PersonaEmote = "emote_wheel_screen" | "emote_wheel_touch_zone" | "emote_wheel_screen_content" | "emote_wheel_screen_content/top_padding" | "emote_wheel_screen_content/root_panel" | "emote_wheel_screen_content/root_panel/emotes_panel" | "emote_wheel_screen_content/instruction_padding" | "emote_wheel_screen_content/instruction_panel" | "emote_wheel_screen_content/instruction_panel/instruction_background" | "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack" | "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/instruction_label_gamepad" | "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers" | "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack" | "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_start" | "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel" | "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel/gamepad_exit" | "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_keyboard" | "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_touch" | "emote_wheel_screen_content/dressing_room_button_panel" | "emote_wheel_screen_content/dressing_room_button_panel/dressing_room_button" | "emote_wheel_screen_content/bottom_padding" | "swap_emote_button"; -export type Enchanting = "enchanting_image" | "lapis_image" | "dust_image" | "dust_image_selectable" | "dust_image_unselectable" | "dust_template" | "dust_template/dust_image_selectable" | "dust_template/dust_image_unselectable" | "dust_panel" | "dust_panel/a" | "dust_panel/b" | "dust_panel/c" | "background_with_hover_text" | "background_with_hover_text/hover_text" | "dark_background" | "dark_background_with_hover_text" | "active_background" | "active_background_with_hover_text" | "enchant_runes" | "enchant_cost" | "success_runes" | "fail_runes" | "success_cost" | "fail_cost" | "enchanting_label" | "base_button" | "unselectable_button" | "unselectable_button/default" | "unselectable_button/hover" | "unselectable_button/pressed" | "unselectable_button/rune_text" | "unselectable_button/enchant_cost" | "selectable_button" | "selectable_button/default" | "selectable_button/hover" | "selectable_button/pressed" | "selectable_button/rune_text" | "selectable_button/enchant_cost" | "enchant_button_panel" | "enchant_button_panel/dark_background" | "enchant_button_panel/unselectable_button" | "enchant_button_panel/selectable_button" | "enchanting_panel_top_half" | "enchanting_panel_top_half/enchanting_label" | "enchanting_panel_top_half/enchanting_book_panel" | "enchanting_panel_top_half/enchanting_book_panel/enchanting_book" | "enchanting_panel_top_half/item_grid" | "enchanting_panel_top_half/item_grid/item_slot" | "enchanting_panel_top_half/lapis_grid" | "enchanting_panel_top_half/lapis_grid/lapis" | "enchanting_panel_top_half/grid_panel" | "enchanting_panel_top_half/grid_panel/indent" | "enchanting_panel_top_half/grid_panel/dust_panel" | "enchanting_panel_top_half/grid_panel/enchantments_grid" | "enchanting_panel" | "enchanting_panel/container_gamepad_helpers" | "enchanting_panel/selected_item_details_factory" | "enchanting_panel/item_lock_notification_factory" | "enchanting_panel/root_panel" | "enchanting_panel/root_panel/common_panel" | "enchanting_panel/root_panel/enchanting_screen_inventory" | "enchanting_panel/root_panel/enchanting_screen_inventory/enchanting_panel_top_half" | "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_panel_bottom_half_with_label" | "enchanting_panel/root_panel/enchanting_screen_inventory/hotbar_grid" | "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_take_progress_icon_button" | "enchanting_panel/root_panel/inventory_selected_icon_button" | "enchanting_panel/root_panel/gamepad_cursor" | "enchanting_panel/flying_item_renderer" | "enchanting_screen"; -export type EnchantingPocket = "generic_label" | "background_image" | "inventory_grid" | "inventory_content" | "inventory_content/scrolling_panel" | "lapis_image" | "enchanting_slots_panel" | "enchanting_slots_panel/input_slot" | "enchanting_slots_panel/lapis_slot" | "enchant_text_runes" | "show_highlighted_slot_control" | "show_highlighted_hover_slot_control" | "inactive_background" | "unselectable_button" | "unselectable_button/default" | "unselectable_button/hover" | "unselectable_button/pressed" | "unselectable_button/enchant_cost" | "selectable_button" | "selectable_button/default" | "selectable_button/hover" | "selectable_button/pressed" | "selectable_button/enchant_cost" | "enchant_button_panel" | "enchant_button_panel/inactive_background" | "enchant_button_panel/unselectable_button" | "enchant_button_panel/selectable_button" | "enchant_button_panel/dust" | "enchant_button_panel/rune_text" | "enchant_button_panel/highlight" | "enchant_selection_panel" | "enchant_selection_panel/grid" | "enchant_selection_panel/grid/button1" | "enchant_selection_panel/grid/button2" | "enchant_selection_panel/grid/button3" | "item_renderer" | "confirm_default_control" | "enchanting_confirm_button" | "enchanting_confirm_button/default" | "enchanting_confirm_button/hover" | "enchanting_confirm_button/pressed" | "enchanting_confirm_button/arrow_active" | "enchanting_confirm_button/arrow_inactive" | "enchanting_confirm_button/input_item_renderer" | "enchanting_confirm_button/output_item_renderer" | "enchanting_confirm_panel" | "enchanting_confirm_panel/confirm" | "enchanting_confirm_panel/enchantment_hint_text" | "enchanting_book_contents_panel" | "enchanting_book_contents_panel/enchanting_book" | "enchanting_book_contents_panel/player_level_label" | "enchanting_book_contents_panel/level_label" | "enchanting_book_panel" | "enchanting_book_panel/enchanting_slots_panel" | "enchanting_slots_and_selection" | "enchanting_slots_and_selection/enchanting_slots_panel" | "enchanting_slots_and_selection/pad1" | "enchanting_slots_and_selection/enchant_selection_panel" | "enchanting_contents_panel" | "enchanting_contents_panel/fill1" | "enchanting_contents_panel/enchanting_book_panel" | "enchanting_contents_panel/pad1" | "enchanting_contents_panel/enchanting_slots_and_selection" | "enchanting_contents_panel/pad2" | "enchanting_contents_panel/enchanting_confirm_panel" | "enchanting_contents_panel/fill2" | "header" | "header/header_background" | "header/legacy_pocket_close_button" | "header/panel" | "header/panel/title_label" | "inventory_and_enchanting_panel" | "inventory_and_enchanting_panel/inventory_half_screen" | "inventory_and_enchanting_panel/inventory_half_screen/inventory_content" | "inventory_and_enchanting_panel/enchanting_half_screen" | "inventory_and_enchanting_panel/enchanting_half_screen/enchanting_content" | "header_and_content_stack_panel" | "header_and_content_stack_panel/header" | "header_and_content_stack_panel/inventory_and_enchanting_panel" | "error_text_panel" | "error_text_panel/item_text_label" | "enchanting_panel" | "enchanting_panel/bg" | "enchanting_panel/root_panel" | "enchanting_panel/header_and_content_stack_panel" | "enchanting_panel/container_gamepad_helpers" | "enchanting_panel/inventory_selected_icon_button" | "enchanting_panel/hold_icon" | "enchanting_panel/selected_item_details_factory" | "enchanting_panel/item_lock_notification_factory" | "enchanting_panel/flying_item_renderer"; -export type Encyclopedia = "encyclopedia_screen" | "encyclopedia_selector_stack_panel" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/overworld_category" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_stand_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/banners_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beacons_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beds_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/blocks_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/book_and_quill_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/chests_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/conduits_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dyes_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/farming_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fireworks_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fishing_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jigsaw_blocks_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mounts_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/navigation_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/nether_portals_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/pets_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/raids_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/ranching_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/scaffolding_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/structure_blocks_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/tools_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/transportation_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/trading_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/weapons_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/stands_and_tables_category" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/anvil_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/brewing_stand_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/cauldron_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/crafting_table_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/enchanting_table_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/furnace_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/loom_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/smithing_table_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_engineering_category" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/droppers_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dispensers_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/hoppers_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jukebox_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_dimension_category" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/eye_of_ender_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/end_cities_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/elytra_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/shulker_boxes_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/options_and_cheats_category" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/game_settings_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/difficulty_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/adventure_mode_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/creative_mode_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/commands_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/host_and_player_options_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/command_blocks_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_category" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_stories_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/marketplace_category" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/minecoins_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/addons_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/worlds_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/textures_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/skins_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mashups_button" | "encyclopedia_section_content_panels" | "encyclopedia_section_content_panels/general_tips_sections" | "encyclopedia_section_content_panels/general_tips_sections/section_contents_header" | "encyclopedia_section_content_panels/general_tips_sections/armor_section" | "encyclopedia_section_content_panels/general_tips_sections/armor_stand_section" | "encyclopedia_section_content_panels/general_tips_sections/banners_section" | "encyclopedia_section_content_panels/general_tips_sections/beacons_section" | "encyclopedia_section_content_panels/general_tips_sections/beds_section" | "encyclopedia_section_content_panels/general_tips_sections/blocks_section" | "encyclopedia_section_content_panels/general_tips_sections/book_and_quill_section" | "encyclopedia_section_content_panels/general_tips_sections/chests_section" | "encyclopedia_section_content_panels/general_tips_sections/conduits_section" | "encyclopedia_section_content_panels/general_tips_sections/dyes_section" | "encyclopedia_section_content_panels/general_tips_sections/farming_section" | "encyclopedia_section_content_panels/general_tips_sections/fireworks_section" | "encyclopedia_section_content_panels/general_tips_sections/fishing_section" | "encyclopedia_section_content_panels/general_tips_sections/jigsaw" | "encyclopedia_section_content_panels/general_tips_sections/mounts_section" | "encyclopedia_section_content_panels/general_tips_sections/navigation_section" | "encyclopedia_section_content_panels/general_tips_sections/nether_portals_section" | "encyclopedia_section_content_panels/general_tips_sections/pets_section" | "encyclopedia_section_content_panels/general_tips_sections/raids_section" | "encyclopedia_section_content_panels/general_tips_sections/ranching_section" | "encyclopedia_section_content_panels/general_tips_sections/scaffolding_section" | "encyclopedia_section_content_panels/general_tips_sections/structure_blocks_section" | "encyclopedia_section_content_panels/general_tips_sections/tools_section" | "encyclopedia_section_content_panels/general_tips_sections/transportation_section" | "encyclopedia_section_content_panels/general_tips_sections/trading_section" | "encyclopedia_section_content_panels/general_tips_sections/weapons_section" | "encyclopedia_section_content_panels/general_tips_sections/anvil_section" | "encyclopedia_section_content_panels/general_tips_sections/brewing_stand_section" | "encyclopedia_section_content_panels/general_tips_sections/cauldron_section" | "encyclopedia_section_content_panels/general_tips_sections/crafting_table_section" | "encyclopedia_section_content_panels/general_tips_sections/enchanting_table_section" | "encyclopedia_section_content_panels/general_tips_sections/furnace_section" | "encyclopedia_section_content_panels/general_tips_sections/loom_section" | "encyclopedia_section_content_panels/general_tips_sections/smithing_table_section" | "encyclopedia_section_content_panels/general_tips_sections/droppers_section" | "encyclopedia_section_content_panels/general_tips_sections/dispensers_section" | "encyclopedia_section_content_panels/general_tips_sections/hoppers_section" | "encyclopedia_section_content_panels/general_tips_sections/jukebox_section" | "encyclopedia_section_content_panels/general_tips_sections/redstone_section" | "encyclopedia_section_content_panels/general_tips_sections/the_end_section" | "encyclopedia_section_content_panels/general_tips_sections/eye_of_ender_section" | "encyclopedia_section_content_panels/general_tips_sections/end_cities_section" | "encyclopedia_section_content_panels/general_tips_sections/elytra_section" | "encyclopedia_section_content_panels/general_tips_sections/shulker_boxes_section" | "encyclopedia_section_content_panels/general_tips_sections/game_settings_section" | "encyclopedia_section_content_panels/general_tips_sections/difficulty_section" | "encyclopedia_section_content_panels/general_tips_sections/adventure_mode_section" | "encyclopedia_section_content_panels/general_tips_sections/creative_mode_section" | "encyclopedia_section_content_panels/general_tips_sections/commands_section" | "encyclopedia_section_content_panels/general_tips_sections/host_and_player_options_section" | "encyclopedia_section_content_panels/general_tips_sections/command_blocks_section" | "encyclopedia_section_content_panels/general_tips_sections/realms_stories_section" | "encyclopedia_section_content_panels/general_tips_sections/minecoins_section" | "encyclopedia_section_content_panels/general_tips_sections/addons_section" | "encyclopedia_section_content_panels/general_tips_sections/worlds_section" | "encyclopedia_section_content_panels/general_tips_sections/textures_section" | "encyclopedia_section_content_panels/general_tips_sections/skins_section" | "encyclopedia_section_content_panels/general_tips_sections/mashups_section" | "encyclopedia_section_content_panels/general_tips_sections/section_contents_footer" | "adventure_mode_button" | "adventure_mode_section" | "adventure_mode_section/paragraph_1" | "adventure_mode_section/padding_1" | "adventure_mode_section/paragraph_2" | "anvil_button" | "anvil_section" | "anvil_section/paragraph_1" | "anvil_section/padding_1" | "anvil_section/header_1" | "anvil_section/paragraph_2" | "anvil_section/padding_2" | "anvil_section/header_2" | "anvil_section/paragraph_3" | "anvil_section/padding_3" | "anvil_section/paragraph_4" | "anvil_section/padding_4" | "anvil_section/paragraph_5" | "armor_button" | "armor_section" | "armor_section/paragraph_1" | "armor_section/padding_1" | "armor_section/header_1" | "armor_section/paragraph_2" | "armor_section/padding_2" | "armor_section/paragraph_3" | "armor_section/padding_3" | "armor_section/paragraph_4" | "armor_section/padding_4" | "armor_section/header_2" | "armor_section/paragraph_5_keyboard" | "armor_section/paragraph_5_gamepad" | "armor_section/paragraph_5a_touch" | "armor_section/padding_5a_touch" | "armor_section/paragraph_5b_touch" | "armor_section/padding_5b_touch" | "armor_section/paragraph_5c_touch" | "armor_section/padding_5" | "armor_section/paragraph_6" | "armor_section/padding_6" | "armor_section/header_3" | "armor_section/paragraph_7" | "armor_stand_button" | "armor_stand_section" | "armor_stand_section/paragraph_1" | "armor_stand_section/padding_1" | "armor_stand_section/header_1" | "armor_stand_section/paragraph_2_keyboard" | "armor_stand_section/paragraph_2_gamepad" | "armor_stand_section/paragraph_2_touch" | "armor_stand_section/padding_2" | "armor_stand_section/paragraph_3_keyboard" | "armor_stand_section/paragraph_3_gamepad" | "armor_stand_section/paragraph_3_touch" | "armor_stand_section/padding_3" | "armor_stand_section/header_2" | "armor_stand_section/paragraph_4_keyboard" | "armor_stand_section/paragraph_4_gamepad" | "armor_stand_section/paragraph_4_touch" | "armor_stand_section/padding_4" | "armor_stand_section/header_3" | "armor_stand_section/paragraph_5" | "banners_button" | "banners_section" | "banners_section/paragraph_1" | "banners_section/padding_1" | "banners_section/paragraph_2" | "banners_section/padding_2" | "banners_section/header_1" | "banners_section/paragraph_3" | "banners_section/padding_3" | "banners_section/paragraph_4" | "banners_section/padding_4" | "banners_section/paragraph_5" | "banners_section/padding_5" | "banners_section/paragraph_6" | "banners_section/padding_6" | "banners_section/paragraph_7" | "banners_section/padding_7" | "banners_section/header_2" | "banners_section/paragraph_8" | "banners_section/padding_8" | "banners_section/header_3" | "banners_section/paragraph_9" | "beacons_button" | "beacons_section" | "beacons_section/paragraph_1" | "beacons_section/padding_1" | "beacons_section/paragraph_2" | "beacons_section/padding_2" | "beacons_section/header_1" | "beacons_section/paragraph_3" | "beacons_section/padding_3" | "beacons_section/paragraph_4" | "beacons_section/padding_4" | "beacons_section/header_2" | "beacons_section/paragraph_5" | "beacons_section/padding_5" | "beacons_section/paragraph_6" | "beacons_section/padding_6" | "beacons_section/paragraph_7" | "beacons_section/padding_7" | "beacons_section/paragraph_8" | "conduits_button" | "conduits_section" | "conduits_section/paragraph_1" | "conduits_section/padding_1" | "conduits_section/paragraph_2" | "conduits_section/padding_2" | "conduits_section/header_1" | "conduits_section/paragraph_3" | "conduits_section/padding_3" | "conduits_section/paragraph_4" | "beds_button" | "beds_section" | "beds_section/paragraph_1" | "beds_section/padding_1" | "beds_section/paragraph_2_keyboard" | "beds_section/paragraph_2_gamepad" | "beds_section/paragraph_2_touch" | "beds_section/padding_2" | "beds_section/paragraph_3" | "beds_section/padding_3" | "beds_section/paragraph_4" | "beds_section/padding_4" | "beds_section/paragraph_5" | "blocks_button" | "blocks_section" | "blocks_section/paragraph_1" | "blocks_section/padding_1" | "blocks_section/paragraph_2" | "blocks_section/padding_2" | "blocks_section/header_1" | "blocks_section/paragraph_3" | "blocks_section/padding_3" | "blocks_section/header_2" | "blocks_section/paragraph_4" | "blocks_section/padding_4" | "blocks_section/paragraph_5" | "blocks_section/padding_5" | "blocks_section/paragraph_6" | "blocks_section/padding_6" | "blocks_section/paragraph_7" | "blocks_section/padding_7" | "blocks_section/paragraph_8" | "blocks_section/padding_8" | "blocks_section/paragraph_9" | "book_and_quill_button" | "book_and_quill_section" | "book_and_quill_section/paragraph_1" | "brewing_stand_button" | "brewing_stand_section" | "brewing_stand_section/paragraph_1" | "brewing_stand_section/padding_1" | "brewing_stand_section/header_1" | "brewing_stand_section/paragraph_2" | "brewing_stand_section/padding_2" | "brewing_stand_section/header_2" | "brewing_stand_section/paragraph_3" | "brewing_stand_section/padding_3" | "brewing_stand_section/paragraph_4" | "cauldron_button" | "cauldron_section" | "cauldron_section/paragraph_1" | "cauldron_section/padding_1" | "cauldron_section/header_1" | "cauldron_section/paragraph_2_keyboard" | "cauldron_section/paragraph_2_gamepad" | "cauldron_section/paragraph_2_touch" | "cauldron_section/padding_2" | "cauldron_section/paragraph_3" | "cauldron_section/padding_3" | "cauldron_section/header_2" | "cauldron_section/paragraph_4_keyboard" | "cauldron_section/paragraph_4_gamepad" | "cauldron_section/paragraph_4_touch" | "cauldron_section/padding_4" | "cauldron_section/header_3" | "cauldron_section/paragraph_5_keyboard" | "cauldron_section/paragraph_5_gamepad" | "cauldron_section/paragraph_5_touch" | "cauldron_section/padding_5" | "cauldron_section/paragraph_6" | "chests_button" | "chests_section" | "chests_section/paragraph_1_keyboard" | "chests_section/paragraph_1_gamepad" | "chests_section/paragraph_1_touch" | "chests_section/padding_1" | "chests_section/paragraph_2" | "chests_section/padding_2" | "chests_section/paragraph_3" | "command_blocks_button" | "command_blocks_section" | "command_blocks_section/paragraph_1" | "command_blocks_section/padding_1" | "command_blocks_section/paragraph_2" | "command_blocks_section/padding_2" | "command_blocks_section/paragraph_3" | "command_blocks_section/padding_3" | "command_blocks_section/paragraph_4" | "command_blocks_section/padding_4" | "command_blocks_section/paragraph_5" | "command_blocks_section/paragraph_5_1" | "command_blocks_section/paragraph_5_2" | "command_blocks_section/paragraph_5_3" | "command_blocks_section/padding_5" | "command_blocks_section/paragraph_6" | "command_blocks_section/paragraph_6_1" | "command_blocks_section/paragraph_6_2" | "command_blocks_section/padding_6" | "command_blocks_section/paragraph_7" | "command_blocks_section/paragraph_7_1" | "command_blocks_section/paragraph_7_2" | "command_blocks_section/padding_7" | "command_blocks_section/paragraph_8" | "commands_button" | "commands_section" | "commands_section/paragraph_1" | "commands_section/padding_1" | "commands_section/paragraph_2" | "crafting_table_button" | "crafting_table_section" | "crafting_table_section/paragraph_1" | "crafting_table_section/padding_1" | "crafting_table_section/paragraph_2_keyboard" | "crafting_table_section/paragraph_2_gamepad" | "crafting_table_section/paragraph_2_touch" | "creative_mode_button" | "creative_mode_section" | "creative_mode_section/paragraph_1" | "creative_mode_section/padding_1" | "creative_mode_section/header_1" | "creative_mode_section/paragraph_2" | "creative_mode_section/padding_2" | "creative_mode_section/paragraph_3" | "creative_mode_section/padding_3" | "creative_mode_section/header_2" | "creative_mode_section/paragraph_4_keyboard" | "creative_mode_section/paragraph_4_gamepad" | "creative_mode_section/paragraph_4a_touch_joystick_tap" | "creative_mode_section/paragraph_4a_touch_classic_dpad" | "creative_mode_section/paragraph_4a_touch_joystick_crosshair" | "creative_mode_section/padding_4a_touch" | "creative_mode_section/paragraph_4b_touch_joystick_tap" | "creative_mode_section/paragraph_4b_touch_classic_dpad" | "creative_mode_section/paragraph_4b_touch_joystick_crosshair" | "difficulty_button" | "difficulty_section" | "difficulty_section/paragraph_1" | "difficulty_section/padding_1" | "difficulty_section/header_1" | "difficulty_section/paragraph_2" | "difficulty_section/padding_2" | "difficulty_section/header_2" | "difficulty_section/paragraph_3" | "difficulty_section/padding_3" | "difficulty_section/header_3" | "difficulty_section/paragraph_4" | "difficulty_section/padding_4" | "difficulty_section/header_4" | "difficulty_section/paragraph_5" | "dispensers_button" | "dispensers_section" | "dispensers_section/paragraph_1" | "dispensers_section/padding_1" | "dispensers_section/paragraph_2_keyboard" | "dispensers_section/paragraph_2_gamepad" | "dispensers_section/paragraph_2_touch" | "dispensers_section/padding_2" | "dispensers_section/header_1" | "dispensers_section/paragraph_3" | "dispensers_section/padding_3" | "dispensers_section/paragraph_4" | "droppers_button" | "droppers_section" | "droppers_section/paragraph_1_keyboard" | "droppers_section/paragraph_1_gamepad" | "droppers_section/paragraph_1_touch" | "droppers_section/padding_1" | "droppers_section/header_1" | "droppers_section/paragraph_2" | "dyes_button" | "dyes_section" | "dyes_section/paragraph_1" | "dyes_section/padding_1" | "dyes_section/paragraph_2" | "dyes_section/padding_2" | "dyes_section/paragraph_3" | "dyes_section/padding_3" | "dyes_section/paragraph_4" | "dyes_section/padding_4" | "dyes_section/paragraph_5" | "dyes_section/padding_5" | "dyes_section/paragraph_6" | "dyes_section/padding_6" | "dyes_section/paragraph_7" | "elytra_button" | "elytra_section" | "elytra_section/paragraph_1" | "elytra_section/padding_1" | "elytra_section/paragraph_2" | "elytra_section/padding_2" | "elytra_section/header_1" | "elytra_section/paragraph_3_keyboard" | "elytra_section/paragraph_3_gamepad" | "elytra_section/paragraph_3_touch" | "elytra_section/padding_3" | "elytra_section/paragraph_4" | "elytra_section/paragraph_4_touch" | "elytra_section/padding_4" | "elytra_section/paragraph_5" | "elytra_section/padding_5" | "elytra_section/header_2" | "elytra_section/paragraph_6" | "enchanting_table_button" | "enchanting_table_section" | "enchanting_table_section/paragraph_1" | "enchanting_table_section/padding_1" | "enchanting_table_section/header_1" | "enchanting_table_section/paragraph_2" | "enchanting_table_section/padding_2" | "enchanting_table_section/paragraph_3" | "enchanting_table_section/padding_3" | "enchanting_table_section/header_2" | "enchanting_table_section/paragraph_4" | "enchanting_table_section/padding_4" | "enchanting_table_section/header_3" | "enchanting_table_section/paragraph_5" | "end_cities_button" | "end_cities_section" | "end_cities_section/paragraph_1" | "end_cities_section/padding_1" | "end_cities_section/paragraph_2" | "eye_of_ender_button" | "eye_of_ender_section" | "eye_of_ender_section/paragraph_1" | "eye_of_ender_section/padding_1" | "eye_of_ender_section/paragraph_2" | "farming_button" | "farming_section" | "farming_section/paragraph_1" | "farming_section/padding_1" | "farming_section/header_1" | "farming_section/paragraph_2" | "farming_section/padding_2" | "farming_section/paragraph_3" | "farming_section/padding_3" | "farming_section/header_2" | "farming_section/paragraph_4" | "farming_section/padding_4" | "farming_section/paragraph_5" | "farming_section/padding_5" | "farming_section/paragraph_6" | "farming_section/padding_6" | "farming_section/paragraph_7" | "fireworks_button" | "fireworks_section" | "fireworks_section/paragraph_1" | "fireworks_section/padding_1" | "fireworks_section/paragraph_2" | "fireworks_section/padding_2" | "fireworks_section/header_1" | "fireworks_section/paragraph_3_keyboard" | "fireworks_section/paragraph_3_gamepad" | "fireworks_section/paragraph_3_touch" | "fireworks_section/padding_3" | "fireworks_section/paragraph_4" | "fireworks_section/padding_4" | "fireworks_section/header_2" | "fireworks_section/paragraph_5" | "fireworks_section/padding_5" | "fireworks_section/paragraph_6" | "fireworks_section/padding_5a" | "fireworks_section/paragraph_6_1" | "fireworks_section/padding_5b" | "fireworks_section/paragraph_6_2" | "fireworks_section/padding_5c" | "fireworks_section/paragraph_6_3" | "fireworks_section/padding_5d" | "fireworks_section/paragraph_6_4" | "fireworks_section/padding_5e" | "fireworks_section/paragraph_6_5" | "fireworks_section/padding_5f" | "fireworks_section/paragraph_6_6" | "fireworks_section/padding_6" | "fireworks_section/header_3" | "fireworks_section/paragraph_7" | "jigsaw_blocks_button" | "jigsaw_blocks_section" | "jigsaw_blocks_section/paragraph_1" | "jigsaw_blocks_section/padding_1" | "jigsaw_blocks_section/header_1" | "jigsaw_blocks_section/paragraph_2" | "jigsaw_blocks_section/padding_2" | "jigsaw_blocks_section/header_2" | "jigsaw_blocks_section/paragraph_3" | "jigsaw_blocks_section/padding_3" | "jigsaw_blocks_section/paragraph_4" | "jigsaw_blocks_section/padding_4" | "jigsaw_blocks_section/paragraph_5" | "jigsaw_blocks_section/padding_5" | "jigsaw_blocks_section/paragraph_6" | "jigsaw_blocks_section/padding_6" | "jigsaw_blocks_section/paragraph_7" | "jigsaw_blocks_section/padding_7" | "jigsaw_blocks_section/paragraph_8" | "jigsaw_blocks_section/padding_8" | "jigsaw_blocks_section/paragraph_9" | "fishing_button" | "fishing_section" | "fishing_section/paragraph_1" | "fishing_section/padding_1" | "fishing_section/header_1" | "fishing_section/paragraph_2_keyboard" | "fishing_section/paragraph_2_gamepad" | "fishing_section/paragraph_2_touch" | "fishing_section/padding_2" | "fishing_section/header_2" | "fishing_section/paragraph_3" | "fishing_section/padding_3" | "fishing_section/paragraph_4_keyboard" | "fishing_section/paragraph_4_gamepad" | "fishing_section/paragraph_4_touch" | "furnace_button" | "furnace_section" | "furnace_section/paragraph_1" | "furnace_section/padding_1" | "furnace_section/paragraph_2_keyboard" | "furnace_section/paragraph_2_gamepad" | "furnace_section/paragraph_2_touch" | "furnace_section/padding_2" | "furnace_section/paragraph_3" | "game_settings_button" | "game_settings_section" | "game_settings_section/paragraph_1" | "game_settings_section/padding_1" | "game_settings_section/paragraph_2" | "game_settings_section/padding_2" | "game_settings_section/paragraph_3" | "game_settings_section/padding_3" | "game_settings_section/paragraph_4" | "game_settings_section/padding_4" | "game_settings_section/header_1" | "game_settings_section/paragraph_5" | "game_settings_section/padding_5" | "game_settings_section/paragraph_6" | "game_settings_section/padding_6" | "game_settings_section/paragraph_7" | "game_settings_section/paragraph_7_1" | "game_settings_section/paragraph_7_2" | "game_settings_section/padding_7" | "game_settings_section/paragraph_8" | "game_settings_section/padding_8" | "game_settings_section/header_2" | "game_settings_section/paragraph_9" | "game_settings_section/padding_9" | "game_settings_section/paragraph_10" | "game_settings_section/padding_10" | "game_settings_section/paragraph_11" | "game_settings_section/padding_11" | "game_settings_section/paragraph_12" | "game_settings_section/padding_12" | "game_settings_section/paragraph_13" | "game_settings_section/padding_13" | "game_settings_section/paragraph_14" | "game_settings_section/padding_14" | "game_settings_section/paragraph_15" | "game_settings_section/padding_15" | "game_settings_section/paragraph_16" | "game_settings_section/padding_16" | "game_settings_section/paragraph_17" | "hoppers_button" | "hoppers_section" | "hoppers_section/paragraph_1" | "hoppers_section/padding_1" | "hoppers_section/paragraph_2" | "hoppers_section/padding_2" | "hoppers_section/header_1" | "hoppers_section/paragraph_3" | "hoppers_section/padding_3" | "hoppers_section/paragraph_4" | "host_and_player_options_button" | "host_and_player_options_section" | "host_and_player_options_section/paragraph_1_not_touch" | "host_and_player_options_section/paragraph_1_touch" | "jukebox_button" | "jukebox_section" | "jukebox_section/paragraph_1" | "jukebox_section/padding_1" | "jukebox_section/header_1" | "jukebox_section/paragraph_2_not_touch" | "jukebox_section/paragraph_2_touch" | "jukebox_section/padding_2" | "jukebox_section/header_2" | "jukebox_section/paragraph_3" | "jukebox_section/padding_3" | "jukebox_section/paragraph_4" | "jukebox_section/padding_4" | "jukebox_section/paragraph_5" | "jukebox_section/padding_5" | "jukebox_section/paragraph_6" | "jukebox_section/padding_6" | "jukebox_section/header_3" | "jukebox_section/paragraph_7" | "jukebox_section/padding_7" | "jukebox_section/paragraph_8" | "loom_button" | "loom_section" | "loom_section/paragraph_1" | "loom_section/padding_1" | "loom_section/header_1" | "loom_section/paragraph_2" | "loom_section/padding_2" | "loom_section/paragraph_3" | "loom_section/padding_3" | "loom_section/header_2" | "loom_section/paragraph_4" | "realms_stories_button" | "realms_stories_section" | "realms_stories_section/paragraph_1" | "realms_stories_section/padding_1" | "realms_stories_section/header_1" | "realms_stories_section/paragraph_2" | "realms_stories_section/padding_2" | "realms_stories_section/header_2" | "realms_stories_section/paragraph_3" | "realms_stories_section/padding_3" | "realms_stories_section/header_3" | "realms_stories_section/paragraph_4" | "realms_stories_section/padding_4" | "realms_stories_section/header_4" | "realms_stories_section/paragraph_5" | "realms_stories_section/padding_5" | "realms_stories_section/header_5" | "realms_stories_section/paragraph_6" | "smithing_table_button" | "smithing_table_section" | "smithing_table_section/paragraph_1" | "smithing_table_section/padding_1" | "smithing_table_section/paragraph_2" | "smithing_table_section/padding_2" | "smithing_table_section/header_1" | "smithing_table_section/paragraph_3" | "smithing_table_section/padding_3" | "smithing_table_section/paragraph_4" | "smithing_table_section/padding_4" | "smithing_table_section/paragraph_5" | "smithing_table_section/padding_5" | "smithing_table_section/paragraph_6" | "smithing_table_section/padding_6" | "smithing_table_section/header_2" | "smithing_table_section/paragraph_7" | "smithing_table_section/padding_7" | "smithing_table_section/paragraph_8" | "smithing_table_section/padding_8" | "smithing_table_section/paragraph_9" | "mounts_button" | "mounts_section" | "mounts_section/paragraph_1" | "mounts_section/padding_1" | "mounts_section/paragraph_2" | "mounts_section/padding_2" | "mounts_section/header_1" | "mounts_section/paragraph_3_not_touch" | "mounts_section/paragraph_3_touch" | "mounts_section/padding_3" | "mounts_section/paragraph_4" | "mounts_section/padding_4" | "mounts_section/header_2" | "mounts_section/paragraph_5" | "mounts_section/padding_5" | "mounts_section/paragraph_6" | "mounts_section/padding_6" | "mounts_section/paragraph_6b" | "mounts_section/padding_6b" | "mounts_section/paragraph_7" | "mounts_section/padding_7" | "mounts_section/paragraph_8" | "mounts_section/padding_8" | "mounts_section/header_3" | "mounts_section/paragraph_9" | "mounts_section/padding_9" | "mounts_section/paragraph_10" | "mounts_section/padding_10" | "mounts_section/paragraph_11" | "mounts_section/padding_11" | "mounts_section/paragraph_12" | "mounts_section/padding_12" | "mounts_section/header_4" | "mounts_section/paragraph_13" | "mounts_section/padding_13" | "mounts_section/paragraph_14" | "mounts_section/padding_14" | "mounts_section/header_5" | "mounts_section/paragraph_15_not_touch" | "mounts_section/paragraph_15a_touch" | "mounts_section/padding_15" | "mounts_section/paragraph_15b_touch" | "navigation_button" | "navigation_section" | "navigation_section/paragraph_1" | "navigation_section/padding_1" | "navigation_section/paragraph_2" | "navigation_section/padding_2" | "navigation_section/header_1" | "navigation_section/paragraph_3" | "navigation_section/padding_3" | "navigation_section/paragraph_4" | "navigation_section/padding_4" | "navigation_section/paragraph_5" | "navigation_section/padding_5" | "navigation_section/paragraph_6" | "navigation_section/padding_6" | "navigation_section/paragraph_7" | "navigation_section/padding_7" | "navigation_section/header_2" | "navigation_section/paragraph_8" | "navigation_section/padding_8" | "navigation_section/paragraph_9" | "navigation_section/padding_9" | "navigation_section/header_3" | "navigation_section/paragraph_10" | "nether_portals_button" | "nether_portals_section" | "nether_portals_section/paragraph_1" | "nether_portals_section/padding_1" | "nether_portals_section/paragraph_2" | "nether_portals_section/padding_2" | "nether_portals_section/paragraph_3" | "nether_portals_section/padding_3" | "nether_portals_section/image_1" | "pets_button" | "pets_section" | "pets_section/header_1" | "pets_section/paragraph_1_not_touch" | "pets_section/paragraph_1_touch" | "pets_section/padding_1" | "pets_section/header_2" | "pets_section/paragraph_2" | "pets_section/padding_2" | "pets_section/header_3" | "pets_section/paragraph_3" | "pets_section/padding_3" | "pets_section/header_4" | "pets_section/paragraph_4" | "raids_button" | "raids_section" | "raids_section/paragraph_1" | "raids_section/padding_1" | "raids_section/paragraph_2" | "raids_section/padding_2" | "raids_section/header_1" | "raids_section/paragraph_3" | "ranching_button" | "ranching_section" | "ranching_section/paragraph_1" | "ranching_section/padding_1" | "ranching_section/header_1" | "ranching_section/paragraph_2" | "ranching_section/padding_2" | "ranching_section/paragraph_3" | "ranching_section/padding_3" | "ranching_section/header_2" | "ranching_section/paragraph_4" | "ranching_section/padding_4" | "ranching_section/paragraph_5" | "redstone_button" | "redstone_section" | "redstone_section/paragraph_1" | "redstone_section/padding_1" | "redstone_section/header_1" | "redstone_section/paragraph_2" | "redstone_section/padding_2" | "redstone_section/paragraph_3" | "redstone_section/padding_3" | "redstone_section/paragraph_4" | "redstone_section/padding_4" | "redstone_section/paragraph_5" | "scaffolding_button" | "scaffolding_section" | "scaffolding_section/header_1" | "scaffolding_section/paragraph_1_keyboard" | "scaffolding_section/paragraph_1_gamepad" | "scaffolding_section/paragraph_1a_touch" | "scaffolding_section/padding_1a_touch" | "scaffolding_section/paragraph_1b_touch" | "scaffolding_section/padding_1b_touch" | "scaffolding_section/paragraph_1c_touch" | "scaffolding_section/padding_1" | "scaffolding_section/header_2" | "scaffolding_section/paragraph_2" | "scaffolding_section/image_1" | "scaffolding_section/padding_2" | "scaffolding_section/header_3" | "scaffolding_section/paragraph_3" | "scaffolding_section/padding_3" | "structure_blocks_button" | "structure_blocks_section" | "structure_blocks_section/paragraph_1" | "structure_blocks_section/padding_1" | "structure_blocks_section/header_1" | "structure_blocks_section/paragraph_2" | "structure_blocks_section/padding_2" | "structure_blocks_section/header_2" | "structure_blocks_section/paragraph_3" | "structure_blocks_section/padding_3" | "structure_blocks_section/paragraph_4" | "structure_blocks_section/padding_4" | "structure_blocks_section/paragraph_5" | "structure_blocks_section/padding_5" | "structure_blocks_section/paragraph_6" | "structure_blocks_section/padding_6" | "structure_blocks_section/paragraph_7" | "structure_blocks_section/padding_7" | "structure_blocks_section/header_3" | "structure_blocks_section/paragraph_8" | "structure_blocks_section/padding_8" | "structure_blocks_section/paragraph_9_keyboard" | "structure_blocks_section/paragraph_9_gamepad" | "structure_blocks_section/paragraph_9_touch" | "structure_blocks_section/padding_9" | "structure_blocks_section/header_4" | "structure_blocks_section/paragraph_10" | "structure_blocks_section/padding_10" | "structure_blocks_section/header_5" | "structure_blocks_section/paragraph_11" | "structure_blocks_section/padding_11" | "structure_blocks_section/paragraph_12" | "structure_blocks_section/padding_12" | "structure_blocks_section/paragraph_13" | "structure_blocks_section/padding_13" | "structure_blocks_section/header_6" | "structure_blocks_section/paragraph_14" | "structure_blocks_section/padding_14" | "structure_blocks_section/paragraph_15" | "structure_blocks_section/padding_15" | "structure_blocks_section/header_7" | "structure_blocks_section/paragraph_16" | "structure_blocks_section/padding_16" | "structure_blocks_section/paragraph_17" | "shulker_boxes_button" | "shulker_boxes_section" | "shulker_boxes_section/paragraph_1" | "the_end_button" | "the_end_section" | "the_end_section/paragraph_1" | "the_end_section/padding_1" | "the_end_section/paragraph_2" | "the_end_section/padding_2" | "the_end_section/header_1" | "the_end_section/paragraph_3" | "the_end_section/padding_3" | "the_end_section/paragraph_4" | "the_end_section/padding_4" | "the_end_section/paragraph_5" | "tools_button" | "tools_section" | "tools_section/paragraph_1" | "tools_section/padding_1" | "tools_section/paragraph_2" | "tools_section/padding_2" | "tools_section/header_1" | "tools_section/paragraph_3" | "tools_section/padding_3" | "tools_section/paragraph_4" | "tools_section/padding_4" | "tools_section/paragraph_5_not_touch" | "tools_section/paragraph_5_touch" | "tools_section/padding_5" | "tools_section/paragraph_6_not_touch" | "tools_section/paragraph_6_touch" | "tools_section/padding_6" | "tools_section/paragraph_7" | "tools_section/padding_7" | "tools_section/header_2" | "tools_section/paragraph_8" | "tools_section/padding_8" | "tools_section/paragraph_9" | "tools_section/padding_9" | "tools_section/paragraph_10" | "tools_section/padding_10" | "tools_section/paragraph_11" | "tools_section/padding_11" | "tools_section/paragraph_12" | "trading_button" | "trading_section" | "trading_section/paragraph_1" | "trading_section/padding_1" | "trading_section/header_1" | "trading_section/paragraph_2" | "trading_section/padding_2" | "trading_section/paragraph_3" | "trading_section/padding_3" | "trading_section/paragraph_4" | "transportation_button" | "transportation_section" | "transportation_section/paragraph_1" | "transportation_section/padding_1" | "transportation_section/header_1" | "transportation_section/paragraph_2" | "transportation_section/paragraph_2_touch" | "transportation_section/padding_2" | "transportation_section/paragraph_3_keyboard" | "transportation_section/paragraph_3_gamepad" | "transportation_section/paragraph_3a_touch" | "transportation_section/padding_3a" | "transportation_section/paragraph_3b_touch" | "transportation_section/padding_3b" | "transportation_section/paragraph_3c_touch" | "transportation_section/padding_3" | "transportation_section/header_2" | "transportation_section/paragraph_4" | "transportation_section/paragraph_4_touch" | "transportation_section/padding_4" | "transportation_section/paragraph_5_keyboard" | "transportation_section/paragraph_5_gamepad" | "transportation_section/paragraph_5a_touch" | "transportation_section/padding_5a" | "transportation_section/paragraph_5b_touch" | "transportation_section/padding_5b" | "transportation_section/paragraph_5c_touch" | "weapons_button" | "weapons_section" | "weapons_section/header_1" | "weapons_section/paragraph_1" | "weapons_section/padding_1" | "weapons_section/paragraph_2_not_touch" | "weapons_section/paragraph_2_touch" | "weapons_section/padding_2" | "weapons_section/header_2" | "weapons_section/paragraph_3_not_touch" | "weapons_section/paragraph_3_touch" | "weapons_section/padding_3" | "weapons_section/paragraph_4" | "weapons_section/padding_5" | "weapons_section/header_3" | "weapons_section/paragraph_5_not_touch" | "weapons_section/paragraph_5a_touch" | "weapons_section/padding_5a_touch" | "weapons_section/paragraph_5b_touch" | "weapons_section/padding_5b_touch" | "weapons_section/paragraph_5c_touch" | "weapons_section/padding_5c_touch" | "weapons_section/paragraph_5d_touch" | "weapons_section/padding_6" | "weapons_section/header_4" | "weapons_section/paragraph_6_not_touch" | "weapons_section/paragraph_6_touch" | "weapons_section/padding_7" | "weapons_section/header_5" | "weapons_section/paragraph_7" | "minecoins_button" | "minecoins_section" | "minecoins_section/paragraph_1" | "minecoins_section/padding_1" | "minecoins_section/paragraph_2" | "minecoins_section/padding_2" | "minecoins_section/get_minecoins_button" | "minecoins_section/padding_3" | "minecoins_section/header_1" | "minecoins_section/paragraph_3" | "addons_button" | "addons_section" | "addons_section/paragraph_1" | "addons_section/padding_1" | "addons_section/paragraph_2" | "addons_section/padding_2" | "addons_section/header_1" | "addons_section/paragraph_3" | "addons_section/padding_3" | "addons_section/paragraph_4" | "addons_section/padding_4" | "addons_section/paragraph_5" | "addons_section/addons_faq_button" | "worlds_button" | "worlds_section" | "worlds_section/paragraph_1" | "worlds_section/padding_1" | "worlds_section/paragraph_2" | "worlds_section/padding_2" | "worlds_section/paragraph_3" | "worlds_section/padding_3" | "worlds_section/paragraph_4" | "worlds_section/padding_4" | "worlds_section/header_1" | "worlds_section/paragraph_5" | "worlds_section/padding_5" | "worlds_section/paragraph_6" | "worlds_section/padding_6" | "worlds_section/header_2" | "worlds_section/paragraph_7" | "worlds_section/padding_7" | "worlds_section/paragraph_8" | "worlds_section/padding_8" | "worlds_section/header_3" | "worlds_section/paragraph_9" | "worlds_section/padding_9" | "worlds_section/paragraph_10" | "worlds_section/padding_10" | "worlds_section/header_4" | "worlds_section/paragraph_11" | "worlds_section/padding_11" | "worlds_section/paragraph_12" | "worlds_section/padding_12" | "textures_button" | "textures_section" | "textures_section/paragraph_1" | "skins_button" | "skins_section" | "skins_section/paragraph_1" | "mashups_button" | "mashups_section" | "mashups_section/paragraph_1"; -export type ExpandedSkinPack = "banner_fill" | "title_label" | "label" | "undo_image" | "lock_icon" | "skin_button" | "skin_button/hover" | "skin_button/pressed" | "skin_rotation_arrows" | "skin_viewer_panel" | "skin_viewer_panel/skin_model_panel" | "skin_viewer_panel/skin_model_panel/skin_model" | "skin_viewer_panel/lock" | "undo_skin_button" | "confirm_skin_button" | "stack_item" | "accept_skin_panel" | "accept_skin_panel/stack_item_0" | "accept_skin_panel/stack_item_0/undo_btn" | "accept_skin_panel/stack_item_1" | "accept_skin_panel/stack_item_1/confirm_button" | "preview_skin_panel" | "preview_skin_panel/preview" | "preview_skin_panel/button_frame" | "preview_skin_panel/button_frame/stack_item_0" | "preview_skin_panel/button_frame/stack_item_0/rotation" | "preview_skin_panel/button_frame/stack_item_1" | "preview_skin_panel/button_frame/stack_item_1/accept" | "skin_model" | "scrolling_content" | "scrolling_content/padding_0" | "scrolling_content/pack_info_panel" | "scrolling_content/pack_info_panel/pack_info_panel" | "scrolling_content/skin_grid_panel" | "scrolling_content/skin_grid_panel/skins_grid" | "pack_info_panel" | "pack_info_panel/lock_icon_panel" | "pack_info_panel/lock_icon_panel/lock_icon" | "pack_info_panel/pack_info_panel" | "pack_info_panel/pack_info_panel/pack_name" | "pack_info_panel/pack_info_panel/creator_name" | "skins_grid_item" | "skins_grid_item/clip" | "skins_grid_item/clip/model" | "skins_grid_item/lock" | "skins_grid_item/button" | "skins_grid" | "select_skin_button" | "select_skin_button/default" | "select_skin_button/hover" | "select_skin_button/pressed" | "all_skins_content" | "all_skins_content/scrolling_frame" | "all_skins_content/scrolling_frame/change_skin_scroll" | "all_skins_frame" | "all_skins_frame/all_skins_content" | "title_bar" | "title_bar/padding_0" | "title_bar/fill_panel" | "title_bar/fill_panel/title_holder" | "title_bar/fill_panel/title_holder/change_skin_title" | "title_bar/padding_1" | "title_bar/skin_name_holder" | "title_bar/skin_name_holder/preview_skin_name" | "title_bar/padding_2" | "content" | "content/title" | "content/selector_area" | "content/content_area" | "content/section_divider" | "expanded_skin_pack_screen" | "skin_picker_screen_content" | "skin_picker_screen_content/bg" | "skin_picker_screen_content/container" | "skin_picker_screen_content/container/content" | "scrollable_selector_area_content" | "selector_area" | "selector_area/all_skins" | "selector_area/inactive_modal_pane_fade" | "content_area" | "content_area/preview_skin" | "content_area/inactive_modal_pane_fade" | "section_divider"; -export type FeedCommon = "top_bar_gradient" | "label" | "smooth_label" | "share_label" | "title_label" | "feed_label" | "item_label" | "return_label" | "prev_label" | "next_label" | "delete_label" | "report_to_club_label" | "report_to_xbox_label" | "new_post_header_text" | "feed_button" | "return_button" | "prev_button" | "prev_panel" | "prev_panel/padding_1" | "prev_panel/lab_panel" | "prev_panel/lab_panel/vert_pad" | "prev_panel/lab_panel/prevlab" | "next_button" | "next_panel" | "next_panel/lab_panel2" | "next_panel/lab_panel2/vert_pad2" | "next_panel/lab_panel2/nextlab" | "next_panel/padding_2" | "like_button" | "delete_button" | "report_to_xbox_button" | "report_to_club_button" | "options_button" | "options_close_button_high_contrast" | "options_close_button_high_contrast/background" | "options_close_button_high_contrast/default" | "options_close_button_high_contrast/hover" | "options_close_button_high_contrast/pressed" | "share_button" | "spacing_gap" | "platform_icon" | "platform_icon_panel" | "platform_icon_panel/platform_icon" | "account_link_image" | "account_link_icon" | "account_link_icon/space_01" | "account_link_icon/account_link_image" | "account_link_icon/space_02" | "player_pic_bevel" | "no_feed_item_content" | "gamepad_helpers" | "share_text_box" | "progress_loading_bars" | "popup_dialog_bg" | "pagination_panel" | "pagination_panel/prev_button" | "pagination_panel/page_text" | "pagination_panel/next_button" | "pagination_panel_gamepad" | "pagination_panel_gamepad/prev_panel" | "pagination_panel_gamepad/page_text" | "pagination_panel_gamepad/next_panel" | "like_image" | "like_image_default" | "like_image_panel" | "like_image_panel/like_image_instance" | "like_image_panel/like_image_default" | "feed_like_content_panel" | "feed_like_content_panel/like_image_panel" | "feed_like_content_panel/like_label" | "white_banner" | "page_text" | "options_icon" | "transparent_background" | "black_arrow" | "faded_background_image" | "unviewed_post_badge" | "unviewed_post_badge/unviewed_post_text"; -export type FileUpload = "empty_progress_bar_icon" | "full_progress_bar_icon" | "progress_bar_nub" | "progress_bar_icon" | "progress_bar_icon/empty_progress_bar_icon" | "progress_bar_icon/progress_percent_panel" | "progress_bar_icon/progress_percent_panel/full_progress_bar_icon" | "progress_bar_icon/progress_percent_panel/progress_bar_nub" | "common_label" | "progress_text_panel" | "progress_text_panel/progress" | "progress_text_panel/total" | "message_text_panel" | "message_text_panel/message_text" | "button_common" | "lets_go_button" | "cancel_button" | "continue_button" | "continue_or_cancel_button" | "continue_or_cancel_button/continue" | "continue_or_cancel_button/cancel" | "single_title_panel" | "single_title_panel/center" | "dual_title_panel" | "dual_title_panel/left" | "dual_title_panel/right" | "upload_title_panel" | "upload_title_panel/single_label" | "upload_title_panel/dual_label" | "content_panel" | "content_panel/stack_panel_0" | "content_panel/stack_panel_1" | "content_stack_panel" | "content_stack_panel/message" | "content_stack_panel/description" | "content_stack_panel/progress" | "warning_content_panel" | "warning_content_panel/message" | "button_panel" | "button_panel/play" | "button_panel/cancel" | "button_panel/continue_cancel" | "file_upload_content" | "file_upload_content/title_panel_content" | "file_upload_content/content" | "file_upload_content/content/background" | "file_upload_content/content/title" | "file_upload_content/content/content" | "file_upload_content/content/buttons" | "file_transmission_screen"; -export type Furnace = "flame_panel" | "flame_panel/flame_empty_image" | "flame_panel/flame_full_image" | "furnace_arrow_empty_image" | "furnace_arrow_full_image" | "flame_empty_image" | "flame_full_image" | "furnace_label" | "furnace_input_panel" | "furnace_input_panel/panel" | "furnace_input_panel/panel/furnace_ingredient_panel" | "furnace_input_panel/panel/flame_panel" | "furnace_input_panel/panel/furnace_fuel_panel" | "furnace_ingredient_panel" | "furnace_ingredient_panel/ingredient_item" | "furnace_fuel_panel" | "furnace_fuel_panel/fuel_item" | "furnace_output_panel" | "furnace_output_panel/output_item" | "furnace_panel_top_half" | "furnace_panel_top_half/furnace_label" | "furnace_panel_top_half/input" | "furnace_panel_top_half/furnace_arrow_empty_image" | "furnace_panel_top_half/furnace_arrow_full_image" | "furnace_panel_top_half/output" | "furnace_panel" | "furnace_panel/container_gamepad_helpers" | "furnace_panel/selected_item_details_factory" | "furnace_panel/item_lock_notification_factory" | "furnace_panel/root_panel" | "furnace_panel/root_panel/common_panel" | "furnace_panel/root_panel/furnace_screen_inventory" | "furnace_panel/root_panel/furnace_screen_inventory/furnace_panel_top_half" | "furnace_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label" | "furnace_panel/root_panel/furnace_screen_inventory/hotbar_grid" | "furnace_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button" | "furnace_panel/root_panel/inventory_selected_icon_button" | "furnace_panel/root_panel/gamepad_cursor" | "furnace_panel/flying_item_renderer" | "furnace_screen"; -export type FurnacePocket = "generic_label" | "background_image" | "empty_arrow" | "full_arrow" | "flame_empty" | "flame_full" | "input_label" | "fuel_label" | "result_label" | "result_name_label" | "furnace_content" | "furnace_content/input_panel" | "furnace_content/input_panel/input_label" | "furnace_content/input_panel/ingredient_item" | "furnace_content/flame_empty" | "furnace_content/flame_full" | "furnace_content/fuel_panel" | "furnace_content/fuel_panel/fuel_label" | "furnace_content/fuel_panel/fuel_item" | "furnace_content/empty_arrow" | "furnace_content/full_arrow" | "furnace_content/output_panel" | "furnace_content/output_panel/result_label" | "furnace_content/output_panel/result_name_label" | "furnace_content/output_panel/output_item" | "inventory_grid" | "inventory_content" | "inventory_content/scrolling_panel" | "header" | "header/header_background" | "header/close_button" | "header/panel" | "header/panel/title_label" | "inventory_and_furnace_panel" | "inventory_and_furnace_panel/inventory_half_screen" | "inventory_and_furnace_panel/inventory_half_screen/inventory_content" | "inventory_and_furnace_panel/furnace_half_screen" | "inventory_and_furnace_panel/furnace_half_screen/furnace_content" | "header_and_content_stack_panel" | "header_and_content_stack_panel/header" | "header_and_content_stack_panel/inventory_and_furnace_panel" | "furnace_panel" | "furnace_panel/bg" | "furnace_panel/root_panel" | "furnace_panel/header_and_content_stack_panel" | "furnace_panel/container_gamepad_helpers" | "furnace_panel/inventory_selected_icon_button" | "furnace_panel/hold_icon" | "furnace_panel/selected_item_details_factory" | "furnace_panel/item_lock_notification_factory" | "furnace_panel/flying_item_renderer"; -export type GameTip = "game_tip_animation" | "game_tip_animation_panel" | "game_tip_animation_panel/animated_icon" | "game_tip_label" | "game_tip_text_panel" | "game_tip_text_panel/upper_padding" | "game_tip_text_panel/label" | "game_tip_text_panel/lower_padding" | "game_tip_arrow_image" | "game_tip_arrow_panel" | "game_tip_arrow_panel/tip_arrow" | "game_tip_panel" | "game_tip_panel/animated_panel" | "game_tip_panel/middle_padding" | "game_tip_panel/label" | "game_tip_panel/right_padding" | "game_tip_item_background" | "game_tip_item_background/horizontal_container" | "game_tip_item_background/arrow_panel" | "chat_stack_game_tip_panel" | "chat_stack_game_tip_panel/top_padding" | "chat_stack_game_tip_panel/game_tip_background" | "game_tip_factory" | "game_tip_chat_stack_factory"; -export type GamepadDisconnected = "gamepad_disconnected_modal" | "gamepad_disconnected_modal/dialog_background_hollow_3" | "gamepad_disconnected_modal/dialog_background_hollow_3/control" | "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel" | "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_0" | "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/title" | "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_1" | "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/description" | "gamepad_disconnected_screen"; -export type Gameplay = "bundle_selected_item_icon" | "bundle_open_icon_back" | "bundle_open_icon_front" | "bundle_selected_item_background" | "bundle_selected_item_background/bundle_selected_item_background_colour_green" | "bundle_selected_item_background/bundle_selected_item_background_colour" | "bundle_selected_item_background/bundle_selected_item_frame" | "bundle_selected_item_panel" | "bundle_selected_item_panel/bundle_selected_item_background" | "bundle_selected_item_panel/bundle_open_icon_back" | "bundle_selected_item_panel/bundle_selected_item_icon" | "bundle_selected_item_panel/bundle_open_icon_front" | "bundle_selected_item_panel/storage_bar" | "bundle_slot_panel" | "bundle_slot_panel/bundle_selected_item_panel" | "bundle_cell_image" | "bundle_cell_image/background_panel" | "bundle_cell_image/background_panel/item_background" | "bundle_cell_image/highlight_panel" | "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_green" | "bundle_cell_image/highlight_panel/bundle_selected_item_background_border_white" | "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_blue" | "bundle_tooltip_slot_button" | "bundle_tooltip_slot_pocket" | "bundle_tooltip_slot_pocket/item_in_bundle_tooltip_pocket" | "bundle_tooltip_slot_pocket/more_hidden_items_label" | "bundle_tooltip_slot_classic" | "bundle_tooltip_slot_classic/item_in_bundle_tooltip_pocket" | "bundle_tooltip_slot_classic/more_hidden_items_label" | "bundle_tooltip" | "bundle_tooltip/background" | "bundle_tooltip/background/empty_button" | "bundle_tooltip/background/empty_button/default" | "bundle_tooltip/background/empty_button/hover" | "bundle_tooltip/background/empty_button/pressed" | "bundle_tooltip/background/selected_item_tooltip" | "bundle_tooltip/background/selected_item_tooltip/item_text_label" | "bundle_tooltip/header_stack" | "bundle_tooltip/header_stack/bundle_label" | "bundle_tooltip/header_stack/close_button" | "bundle_tooltip/header_stack/close_button/default" | "bundle_tooltip/header_stack/close_button/hover" | "bundle_tooltip/header_stack/close_button/pressed" | "bundle_tooltip/wrapper" | "bundle_tooltip/wrapper/vertical_layout_stack" | "bundle_tooltip/wrapper/vertical_layout_stack/header_padding" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/left_padding" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/item_grid" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/info_message" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/empty_message" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_fill" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full/full_label" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_border" | "bundle_touch_tooltip" | "bundle_tooltip_factory_wrapper" | "bundle_tooltip_factory_wrapper/bundle_cursor_tooltip" | "bundle_cursor_tooltip" | "bundle_cursor_tooltip/tooltip"; -export type GatheringInfo = "gathering_info_screen" | "info_content" | "info_content/header" | "info_content/left_panel" | "info_content/left_panel/stack" | "info_content/left_panel/stack/event_image" | "info_content/left_panel/stack/pad_2" | "info_content/left_panel/stack/button_and_caption" | "info_content/left_panel/stack/button_and_caption/caption" | "info_content/left_panel/stack/button_and_caption/action_button" | "info_content/left_panel/stack/pad_3" | "info_content/left_panel/stack/info_button" | "info_content/left_panel/stack/pad_4" | "info_content/left_panel/stack/gamepad_helper_panel" | "info_content/left_panel/stack/gamepad_helper_panel/gamepad_helpers" | "info_content/left_panel/stack/pad_fill" | "info_content/left_panel/stack/gathering_id_label" | "info_content/left_panel/stack/pad_5" | "info_content/section_divider" | "info_content/right_panel" | "info_content/right_panel/scroll" | "right_panel_content" | "right_panel_content/pad" | "right_panel_content/sign_in_panel" | "right_panel_content/sign_in_panel/sign_in_image" | "right_panel_content/sign_in_panel/horizontal_pad" | "right_panel_content/sign_in_panel/text_stack" | "right_panel_content/sign_in_panel/text_stack/sign_in_title" | "right_panel_content/sign_in_panel/text_stack/text_pad" | "right_panel_content/sign_in_panel/text_stack/sign_in_body" | "right_panel_content/sign_in_pad" | "right_panel_content/qr_panel" | "right_panel_content/qr_panel/qr_background" | "right_panel_content/qr_panel/qr_background/qr_image" | "right_panel_content/qr_panel/horizontal_pad" | "right_panel_content/qr_panel/text_stack" | "right_panel_content/qr_panel/text_stack/qr_title" | "right_panel_content/qr_panel/text_stack/text_pad" | "right_panel_content/qr_panel/text_stack/qr_body" | "right_panel_content/qr_pad" | "right_panel_content/title" | "right_panel_content/pad_1" | "right_panel_content/body" | "right_panel_content/pad_2" | "right_panel_content/body_image" | "right_panel_content/footer" | "tts_label" | "tts_label_title" | "sign_in_title" | "sign_in_body" | "qr_title" | "qr_body" | "title_panel" | "body_panel" | "section_divider" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "gamepad_helpers/gamepad_helper_b"; -export type Globalpause = "message" | "quit_button" | "globalpause_screen" | "pause_screen_content" | "pause_screen_content/transparentFill" | "pause_screen_content/message" | "pause_screen_content/quit_button"; -export type Grindstone = "title_label" | "arrow_icon" | "cross_out_icon" | "grindstone_output_slot_button" | "grindstone_item_slot" | "grindstone_item_slot/container_item" | "grindstone_middle_panel" | "grindstone_middle_panel/input_item_slot" | "grindstone_middle_panel/additional_item_slot" | "grindstone_slots_panel" | "grindstone_slots_panel/grindstone_middle_panel" | "grindstone_slots_panel/yields" | "grindstone_slots_panel/yields/arrow_icon" | "grindstone_slots_panel/yields/cross_out_icon" | "grindstone_slots_panel/result_item_slot" | "top_half_panel" | "top_half_panel/title_label" | "top_half_panel/grindstone_slots_panel" | "grindstone_panel" | "grindstone_panel/container_gamepad_helpers" | "grindstone_panel/selected_item_details_factory" | "grindstone_panel/item_lock_notification_factory" | "grindstone_panel/root_panel" | "grindstone_panel/root_panel/common_panel" | "grindstone_panel/root_panel/grindstone_screen_inventory" | "grindstone_panel/root_panel/grindstone_screen_inventory/top_half_panel" | "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_panel_bottom_half_with_label" | "grindstone_panel/root_panel/grindstone_screen_inventory/hotbar_grid" | "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_take_progress_icon_button" | "grindstone_panel/root_panel/inventory_selected_icon_button" | "grindstone_panel/root_panel/gamepad_cursor" | "grindstone_panel/flying_item_renderer" | "grindstone_screen"; -export type GrindstonePocket = "background_image" | "repair_title_label" | "grindstone_middle_panel" | "grindstone_middle_panel/input_slot" | "grindstone_middle_panel/additional_slot" | "slots_panel" | "slots_panel/grindstone_middle_panel" | "slots_panel/arrow" | "slots_panel/arrow/cross_out" | "slots_panel/result_slot" | "grindstone_contents_panel" | "grindstone_contents_panel/repair_title_label" | "grindstone_contents_panel/slots_panel" | "inventory_grid" | "inventory_content" | "inventory_content/scrolling_panel" | "header" | "header/header_background" | "header/legacy_pocket_close_button" | "header/panel" | "header/panel/title_label" | "inventory_and_grindstone_panel" | "inventory_and_grindstone_panel/inventory_half_screen" | "inventory_and_grindstone_panel/inventory_half_screen/inventory_content" | "inventory_and_grindstone_panel/grindstone_half_screen" | "inventory_and_grindstone_panel/grindstone_half_screen/grindstone_content" | "header_and_content_stack_panel" | "header_and_content_stack_panel/header" | "header_and_content_stack_panel/inventory_and_grindstone_panel" | "grindstone_panel" | "grindstone_panel/bg" | "grindstone_panel/root_panel" | "grindstone_panel/header_and_content_stack_panel" | "grindstone_panel/container_gamepad_helpers" | "grindstone_panel/inventory_selected_icon_button" | "grindstone_panel/hold_icon" | "grindstone_panel/selected_item_details_factory" | "grindstone_panel/item_lock_notification_factory" | "grindstone_panel/flying_item_renderer"; -export type GammaCalibration = "stack_panel_centering_panel" | "stack_panel_centering_panel/child" | "stack_panel_align_left_panel" | "stack_panel_align_left_panel/child" | "stack_panel_align_right_panel" | "stack_panel_align_right_panel/child" | "image_panel" | "image_panel/padding" | "image_panel/image" | "horizontal_padding" | "image_stack" | "image_stack/not_visible_image" | "image_stack/padding_0" | "image_stack/barely_visible_image" | "image_stack/padding_1" | "image_stack/easily_visible_image" | "button_stack" | "button_stack/continue_button_panel" | "button_stack/padding" | "button_stack/reset_button_panel" | "message_panel" | "message_panel/message_label" | "calibration_slider" | "calibration_slider/slider" | "continue_button" | "reset_button" | "main_panel" | "main_panel/hdr_message_panel" | "main_panel/image_stack_panel" | "main_panel/padding_0" | "main_panel/slider_panel" | "main_panel/padding_1" | "main_panel/button_stack_panel" | "gamma_calibration_screen"; -export type Horse = "renderer_bg" | "overlay_image" | "saddle_image" | "horse_armor_image" | "carpet_image" | "nautilus_armor_image" | "horse_label" | "equip_grid" | "inv_grid" | "inv_bg_panel" | "inv_bg_panel/cell_image" | "equip_panel" | "equip_panel/equip_grid" | "equip_panel/saddle" | "equip_panel/horse_armor_0" | "equip_panel/carpet_0" | "equip_panel/nautilus_armor_0" | "equip_panel/horse_armor_1" | "equip_panel/carpet_1" | "equip_panel/nautilus_armor_1" | "inv_panel" | "inv_panel/inv_bg_panel" | "inv_panel/inv_grid" | "horse_renderer" | "horse_renderer/renderer_bg" | "horse_renderer/horse_custom_panel" | "horse_renderer/horse_custom_panel/horse_custom" | "horse_panel" | "horse_panel/container_gamepad_helpers" | "horse_panel/selected_item_details_factory" | "horse_panel/item_lock_notification_factory" | "horse_panel/root_panel" | "horse_panel/root_panel/common_panel" | "horse_panel/root_panel/horse_section_label" | "horse_panel/root_panel/inv_panel" | "horse_panel/root_panel/equipment" | "horse_panel/root_panel/renderer" | "horse_panel/root_panel/inventory_panel_bottom_half_with_label" | "horse_panel/root_panel/hotbar_grid_template" | "horse_panel/root_panel/inventory_selected_icon_button" | "horse_panel/root_panel/gamepad_cursor" | "horse_panel/flying_item_renderer" | "horse_screen"; -export type HorsePocket = "horse_panel" | "horse_panel/gamepad_helpers" | "horse_panel/inventory_selected_icon_button" | "horse_panel/gamepad_cursor" | "horse_panel/selected_item_details_factory" | "horse_panel/item_lock_notification_factory" | "horse_panel/base_panel" | "horse_panel/base_panel/root_panel" | "horse_panel/base_panel/hold_icon" | "horse_panel/base_panel/bg" | "horse_panel/base_panel/interactive_tabs" | "horse_panel/base_panel/close_button" | "horse_panel/base_panel/inventory" | "horse_panel/base_panel/equipment" | "horse_panel/base_panel/chest_tab" | "horse_panel/base_panel/chest_tab/visual_tabs_chest" | "horse_panel/base_panel/chest_tab/chest" | "horse_panel/base_panel/renderer_tab" | "horse_panel/base_panel/renderer_tab/visual_tabs_equip" | "horse_panel/base_panel/renderer_tab/renderer" | "horse_panel/flying_item_renderer" | "background_image" | "dark_bg" | "renderer_bg" | "saddle_image" | "horse_armor_image" | "carpet_image" | "nautilus_armor_image" | "panel_outline" | "close_button_default" | "close_button_pressed" | "close_button" | "close_button/default" | "close_button/hover" | "close_button/pressed" | "base_grid" | "inventory_grid" | "chest_grid" | "base_grid_panel" | "base_grid_panel/panel_outline" | "base_grid_panel/dark_bg" | "base_grid_panel/scrolling_panel" | "inventory_panel" | "chest_panel" | "half_screen" | "middle_screen" | "half_screen_inventory" | "half_screen_inventory/inventory_panel" | "half_screen_chest" | "half_screen_chest/chest_panel" | "horse_renderer" | "horse_renderer/horse_custom" | "half_screen_renderer" | "half_screen_renderer/renderer_bg" | "half_screen_renderer/horse_custom_panel" | "half_screen_renderer/camel_custom_panel" | "equip_item_panel" | "equip_item_panel/equip_container_item" | "equip_grid" | "equip_middle_screen" | "equip_middle_screen/equip_grid_panel" | "equip_middle_screen/equip_grid_panel/equip_grid" | "equip_middle_screen/equip_grid_panel/centered_0" | "equip_middle_screen/equip_grid_panel/offset" | "equip_middle_screen/equip_grid_panel/centered_1" | "equip_middle_screen/equip_grid_panel/centered_2" | "equip_middle_screen/equip_grid_panel/horse_armor_image" | "equip_middle_screen/equip_grid_panel/carpet_image" | "horse_screen_tab_toggle" | "interactive_tabs" | "interactive_tabs/renderer_tab_interactive" | "interactive_tabs/chest_tab_interactive" | "tab_front" | "tab_back" | "close_tab" | "item_icon_renderer" | "saddle_icon_front" | "chest_icon_front" | "visual_tabs_equip" | "visual_tabs_equip/close_tab" | "visual_tabs_equip/close_tab/nodrop_zone" | "visual_tabs_equip/chest" | "visual_tabs_equip/chest/chest_icon" | "visual_tabs_equip/equip" | "visual_tabs_equip/equip/equip_icon" | "visual_tabs_chest" | "visual_tabs_chest/close_tab" | "visual_tabs_chest/chest" | "visual_tabs_chest/chest/chest_icon" | "visual_tabs_chest/equip" | "visual_tabs_chest/equip/equip_icon"; -export type HowToPlayCommon = "dynamic_dialog_screen" | "screen_background" | "top_bar" | "button_panel" | "light_text_button" | "action_button" | "topic_category" | "topic_category/top_padding" | "topic_category/category_text" | "toggle_button_control" | "toggle_button_control/tab_button_text" | "glyph_button_control" | "glyph_button_control/tab_button_text" | "glyph_button_control/glyph" | "section_toggle_button" | "section_toggle_button/section_toggle_button" | "edu_section_toggle_button" | "padding" | "touch_padding" | "small_padding" | "large_padding" | "section_contents_header" | "section_contents_footer" | "main_sections" | "splitscreen_only_content" | "splitscreen_only_content/0" | "tts_focus_border" | "header_tts_focus_border" | "header_background" | "header_background/header_label" | "header_background/focus_border" | "header" | "header/header" | "paragraph_panel" | "paragraph_label" | "paragraph_tts_focus_border" | "paragraph" | "paragraph/label" | "paragraph/focus_border" | "paragraph_with_icons" | "paragraph_with_icons/label" | "paragraph_with_icons/focus_border" | "input_conditional_paragraph" | "input_conditional_paragraph_with_icons" | "paragraph_keyboard" | "paragraph_gamepad" | "paragraph_gamepad_no_icons" | "paragraph_touch" | "paragraph_touch_classic_dpad_spacing" | "paragraph_touch_no_icons" | "paragraph_touch_joystick_tap" | "paragraph_touch_classic_dpad" | "paragraph_touch_joystick_crosshair" | "paragraph_not_touch" | "image" | "how_to_play_header" | "how_to_play_header/top_bar" | "how_to_play_header/top_bar/back_button" | "how_to_play_header/top_bar/how_to_play_title" | "how_to_play_header/top_bar/gamepad_bumper_helpers" | "how_to_play_content" | "how_to_play_content/header" | "how_to_play_content/container" | "dialog_content" | "dialog_content/selector_area" | "dialog_content/content_area" | "dialog_content/section_divider" | "scrollable_selector_area_content" | "selector_area" | "selector_area/scrolling_panel" | "section_divider" | "content_area_wrapper" | "content_area_wrapper/content_area" | "content_area" | "content_area/control" | "content_area/control/scrolling_panel" | "screen_base" | "gamepad_bumper_helper_description" | "gamepad_bumper_helpers" | "gamepad_bumper_helpers/gamepad_helper_left_bumper" | "gamepad_bumper_helpers/padding" | "gamepad_bumper_helpers/gamepad_helper_right_bumper"; -export type HowToPlay = "how_to_play_screen" | "how_to_play_selector_stack_panel" | "how_to_play_selector_stack_panel/how_to_play_selector_pane" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_started_category" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/moving_around_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/gathering_resources_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/selecting_items_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/placing_blocks_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/inventory_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/preparing_for_the_night_category" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/your_first_craft_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/recipe_book_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/the_crafting_table_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/crafting_a_tool_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/mining_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/surviving_the_first_night_category" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/nightfall_new_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/building_a_shelter_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/death_and_respawn_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_settled_category" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/food_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/beds_new_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/improved_tools_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/education_category" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/world_builder_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/permission_blocks_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/chalkboard_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/chemistry_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/npc_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/camera_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/portfolio_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/classroom_mode_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/code_builder_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/padding_1" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/playing_together_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/encyclopedia_button" | "how_to_play_section_content_panels" | "how_to_play_section_content_panels/general_tips_sections" | "how_to_play_section_content_panels/general_tips_sections/section_contents_header" | "how_to_play_section_content_panels/general_tips_sections/moving_around_section" | "how_to_play_section_content_panels/general_tips_sections/gathering_resources_section" | "how_to_play_section_content_panels/general_tips_sections/selecting_items_section" | "how_to_play_section_content_panels/general_tips_sections/placing_blocks_section" | "how_to_play_section_content_panels/general_tips_sections/inventory_section" | "how_to_play_section_content_panels/general_tips_sections/your_first_craft_section" | "how_to_play_section_content_panels/general_tips_sections/recipe_book_section" | "how_to_play_section_content_panels/general_tips_sections/the_crafting_table_section" | "how_to_play_section_content_panels/general_tips_sections/crafting_a_tool_section" | "how_to_play_section_content_panels/general_tips_sections/mining_section" | "how_to_play_section_content_panels/general_tips_sections/nightfall_new_section" | "how_to_play_section_content_panels/general_tips_sections/building_a_shelter_section" | "how_to_play_section_content_panels/general_tips_sections/death_and_respawn_section" | "how_to_play_section_content_panels/general_tips_sections/food_section" | "how_to_play_section_content_panels/general_tips_sections/beds_new_section" | "how_to_play_section_content_panels/general_tips_sections/improved_tools_section" | "how_to_play_section_content_panels/general_tips_sections/world_builder_section" | "how_to_play_section_content_panels/general_tips_sections/permission_blocks_section" | "how_to_play_section_content_panels/general_tips_sections/chalkboard_section" | "how_to_play_section_content_panels/general_tips_sections/chemistry_section" | "how_to_play_section_content_panels/general_tips_sections/npc_section" | "how_to_play_section_content_panels/general_tips_sections/camera_section" | "how_to_play_section_content_panels/general_tips_sections/portfolio_section" | "how_to_play_section_content_panels/general_tips_sections/classroom_mode_section" | "how_to_play_section_content_panels/general_tips_sections/code_builder_section" | "how_to_play_section_content_panels/general_tips_sections/playing_together_section" | "how_to_play_section_content_panels/general_tips_sections/encyclopedia_section" | "how_to_play_section_content_panels/general_tips_sections/section_contents_footer" | "moving_around_button" | "moving_around_section" | "moving_around_section/paragraph_1" | "moving_around_section/padding_1" | "moving_around_section/paragraph_2_keyboard" | "moving_around_section/paragraph_2_gamepad" | "moving_around_section/paragraph_touch_joystick_tap" | "moving_around_section/padding_2" | "moving_around_section/paragraph_3a_keyboard" | "moving_around_section/paragraph_3b_keyboard" | "moving_around_section/paragraph_3a_gamepad" | "moving_around_section/paragraph_3b_gamepad" | "moving_around_section/paragraph_3_touch_joystick_tap" | "moving_around_section/paragraph_3a_touch_classic_dpad" | "moving_around_section/paragraph_3b_touch_classic_dpad" | "moving_around_section/paragraph_3c_touch_classic_dpad" | "moving_around_section/paragraph_3d_touch_classic_dpad" | "moving_around_section/paragraph_3e_touch_classic_dpad" | "moving_around_section/paragraph_3_touch_joystick_crosshair" | "moving_around_section/image_1" | "gathering_resources_button" | "gathering_resources_section" | "gathering_resources_section/paragraph_1" | "gathering_resources_section/padding_1" | "gathering_resources_section/paragraph_2_keyboard" | "gathering_resources_section/paragraph_2_gamepad" | "gathering_resources_section/paragraph_2_touch_joystick_tap" | "gathering_resources_section/paragraph_2_touch_classic_dpad" | "gathering_resources_section/paragraph_2_touch_joystick_crosshair" | "gathering_resources_section/padding_2" | "gathering_resources_section/paragraph_3" | "selecting_items_button" | "selecting_items_section" | "selecting_items_section/paragraph_1" | "selecting_items_section/padding_1" | "selecting_items_section/paragraph_2_keyboard" | "selecting_items_section/paragraph_2_gamepad" | "selecting_items_section/paragraph_touch_joystick_tap" | "selecting_items_section/padding_2" | "selecting_items_section/paragraph_3_keyboard" | "selecting_items_section/paragraph_3_gamepad" | "selecting_items_section/paragraph_3_touch_joystick_tap" | "selecting_items_section/paragraph_3_touch_classic_dpad" | "selecting_items_section/paragraph_3_touch_joystick_crosshair" | "selecting_items_section/padding_3" | "selecting_items_section/header_1" | "selecting_items_section/image_1_not_touch" | "selecting_items_section/image_1_touch" | "placing_blocks_button" | "placing_blocks_section" | "placing_blocks_section/paragraph_1" | "placing_blocks_section/padding_1" | "placing_blocks_section/paragraph_2_keyboard" | "placing_blocks_section/paragraph_2_gamepad" | "placing_blocks_section/paragraph_2_touch_joystick_tap" | "placing_blocks_section/paragraph_2_touch_classic_dpad" | "placing_blocks_section/paragraph_2_touch_joystick_crosshair" | "placing_blocks_section/padding_2" | "placing_blocks_section/paragraph_3" | "inventory_button" | "inventory_section" | "inventory_section/image_1_not_touch" | "inventory_section/image_1_touch" | "inventory_section/header_1" | "inventory_section/paragraph_1_keyboard" | "inventory_section/paragraph_1_gamepad" | "inventory_section/paragraph_1_touch" | "inventory_section/padding_2" | "inventory_section/header_2" | "inventory_section/paragraph_2_keyboard" | "inventory_section/paragraph_2_gamepad" | "inventory_section/paragraph_2_touch" | "your_first_craft_button" | "your_first_craft_section" | "your_first_craft_section/image_1_not_touch" | "your_first_craft_section/image_1_touch" | "your_first_craft_section/header_1" | "your_first_craft_section/paragraph_1" | "your_first_craft_section/padding_2" | "your_first_craft_section/paragraph_2" | "your_first_craft_section/padding_3" | "your_first_craft_section/paragraph_3_touch" | "your_first_craft_section/paragraph_3_keyboard" | "your_first_craft_section/paragraph_3_gamepad" | "your_first_craft_section/padding_4" | "your_first_craft_section/header_2" | "your_first_craft_section/paragraph_4" | "your_first_craft_section/padding_5" | "your_first_craft_section/paragraph_5" | "recipe_book_button" | "recipe_book_section" | "recipe_book_section/paragraph_1_keyboard" | "recipe_book_section/paragraph_1_gamepad" | "recipe_book_section/paragraph_1_touch" | "recipe_book_section/padding_1" | "recipe_book_section/paragraph_2_keyboard" | "recipe_book_section/paragraph_2_gamepad" | "recipe_book_section/paragraph_2_touch" | "the_crafting_table_button" | "the_crafting_table_section" | "the_crafting_table_section/image_1" | "the_crafting_table_section/paragraph_1" | "the_crafting_table_section/padding_2" | "the_crafting_table_section/paragraph_2_keyboard" | "the_crafting_table_section/paragraph_2_gamepad" | "the_crafting_table_section/paragraph_2_touch" | "crafting_a_tool_button" | "crafting_a_tool_section" | "crafting_a_tool_section/paragraph_1" | "crafting_a_tool_section/padding_1" | "crafting_a_tool_section/paragraph_2_keyboard" | "crafting_a_tool_section/paragraph_2_gamepad" | "crafting_a_tool_section/paragraph_2_touch" | "mining_button" | "mining_section" | "mining_section/image_1" | "mining_section/paragraph_1" | "mining_section/padding_2" | "mining_section/paragraph_2" | "mining_section/padding_3" | "mining_section/paragraph_3" | "nightfall_new_button" | "nightfall_new_section" | "nightfall_new_section/paragraph_1" | "nightfall_new_section/padding_1" | "nightfall_new_section/paragraph_2" | "nightfall_new_section/padding_2" | "nightfall_new_section/paragraph_3" | "nightfall_new_section/padding_3" | "nightfall_new_section/paragraph_4_keyboard" | "nightfall_new_section/paragraph_4_gamepad" | "nightfall_new_section/paragraph_4_touch_joystick_tap" | "nightfall_new_section/paragraph_4_touch_classic_dpad" | "nightfall_new_section/paragraph_4_touch_joystick_crosshair" | "building_a_shelter_button" | "building_a_shelter_section" | "building_a_shelter_section/image_1" | "building_a_shelter_section/paragraph_1" | "building_a_shelter_section/padding_2" | "building_a_shelter_section/paragraph_2" | "building_a_shelter_section/padding_3" | "building_a_shelter_section/paragraph_3" | "death_and_respawn_button" | "death_and_respawn_section" | "death_and_respawn_section/paragraph_1" | "death_and_respawn_section/padding_1" | "death_and_respawn_section/paragraph_2" | "food_button" | "food_section" | "food_section/paragraph_1" | "food_section/padding_1" | "food_section/paragraph_2_keyboard" | "food_section/paragraph_2_gamepad" | "food_section/paragraph_2_touch" | "food_section/padding_2" | "food_section/paragraph_3" | "beds_new_button" | "beds_new_section" | "beds_new_section/paragraph_1" | "beds_new_section/padding_1" | "beds_new_section/paragraph_2" | "beds_new_section/padding_2" | "beds_new_section/paragraph_3" | "improved_tools_button" | "improved_tools_section" | "improved_tools_section/paragraph_1" | "improved_tools_section/padding_1" | "improved_tools_section/paragraph_2" | "world_builder_button" | "world_builder_section" | "world_builder_section/paragraph_1" | "world_builder_section/padding_1" | "world_builder_section/paragraph_2" | "world_builder_section/padding_2" | "world_builder_section/paragraph_3" | "world_builder_section/padding_3" | "world_builder_section/paragraph_4" | "world_builder_section/padding_4" | "world_builder_section/paragraph_5" | "world_builder_section/padding_5" | "world_builder_section/paragraph_6" | "world_builder_section/paragraph_7" | "world_builder_section/padding_7" | "world_builder_section/paragraph_8" | "world_builder_section/padding_8" | "world_builder_section/paragraph_9" | "permission_blocks_button" | "permission_blocks_section" | "permission_blocks_section/paragraph_1" | "permission_blocks_section/padding_1" | "permission_blocks_section/header_1" | "permission_blocks_section/paragraph_2" | "permission_blocks_section/padding_3" | "permission_blocks_section/paragraph_3" | "permission_blocks_section/padding_4" | "permission_blocks_section/paragraph_4" | "permission_blocks_section/padding_5" | "permission_blocks_section/paragraph_5" | "permission_blocks_section/padding_7" | "permission_blocks_section/header_2" | "permission_blocks_section/paragraph_6" | "chalkboard_button" | "chalkboard_section" | "chalkboard_section/paragraph_1_keyboard" | "chalkboard_section/paragraph_1_gamepad" | "chalkboard_section/paragraph_1_touch" | "chemistry_button" | "chemistry_section" | "chemistry_section/paragraph_1" | "chemistry_section/padding_1" | "chemistry_section/paragraph_2" | "npc_button" | "npc_section" | "npc_section/paragraph_1" | "npc_section/padding_1" | "npc_section/paragraph_2" | "npc_section/padding_2" | "npc_section/paragraph_3" | "camera_button" | "camera_section" | "camera_section/paragraph_1" | "camera_section/padding_1" | "camera_section/paragraph_2_keyboard" | "camera_section/paragraph_2_gamepad" | "camera_section/paragraph_2_touch" | "camera_section/padding_2" | "camera_section/paragraph_3_keyboard" | "camera_section/paragraph_3_gamepad" | "camera_section/paragraph_3_touch" | "camera_section/padding_3" | "camera_section/paragraph_4" | "portfolio_button" | "portfolio_section" | "portfolio_section/paragraph_1_keyboard" | "portfolio_section/paragraph_1_gamepad" | "portfolio_section/paragraph_1_touch" | "classroom_mode_button" | "classroom_mode_section" | "classroom_mode_section/paragraph_1" | "classroom_mode_section/padding_1" | "classroom_mode_section/paragraph_2" | "code_builder_button" | "code_builder_section" | "code_builder_section/paragraph_1" | "code_builder_section/padding_1" | "code_builder_section/paragraph_2_keyboard" | "code_builder_section/paragraph_2_gamepad" | "code_builder_section/paragraph_2_touch" | "playing_together_button" | "playing_together_section" | "playing_together_section/paragraph_1" | "playing_together_section/padding_1" | "playing_together_section/header_1" | "playing_together_section/paragraph_2" | "playing_together_section/padding_2" | "playing_together_section/header_2" | "playing_together_section/paragraph_3" | "playing_together_section/padding_3" | "playing_together_section/paragraph_4" | "playing_together_section/padding_4" | "playing_together_section/paragraph_5" | "playing_together_section/padding_5" | "playing_together_section/header_3" | "playing_together_section/paragraph_6" | "playing_together_section/padding_6" | "playing_together_section/paragraph_7" | "playing_together_section/padding_7" | "playing_together_section/paragraph_8" | "playing_together_section/realms_button" | "playing_together_section/sign_in_button" | "playing_together_section/padding_8" | "playing_together_section/header_4" | "playing_together_section/paragraph_9" | "playing_together_section/padding_9" | "playing_together_section/paragraph_10" | "try_realms_action_button" | "encyclopedia_button" | "encyclopedia_section" | "encyclopedia_section/paragraph_1"; -export type Hud = "hud_player_renderer" | "hud_player_renderer/hud_player" | "hotbar_renderer" | "hotbar_renderer/hotbar_slot_image" | "cooldown_renderer" | "heart_renderer" | "horse_heart_renderer" | "armor_renderer" | "exp_progress_bar_and_hotbar" | "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar" | "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar" | "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar" | "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub" | "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/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/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/hotbar" | "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/progress_text_label" | "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar" | "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend" | "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend" | "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend/hotbar" | "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar" | "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner" | "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/hotbar" | "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/size_without_hotbar" | "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/horse_jump_rend" | "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/dash_rend" | "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/locator_bar" | "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/progress_text_label" | "exp_progress_bar_and_hotbar/item_text_factory" | "exp_progress_bar_and_hotbar_pocket" | "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar" | "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar" | "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar" | "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub" | "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/progress_text_label" | "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar" | "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/locator_bar" | "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/progress_text_label" | "exp_progress_bar_and_hotbar_pocket/hotbar_panel" | "exp_progress_bar_and_hotbar_pocket/item_text" | "exp_progress_bar_and_hotbar_pocket/item_text/item_text_factory" | "exp_progress_bar_and_hotbar_pocket/horse_jump_rend" | "exp_progress_bar_and_hotbar_pocket/dash_rend" | "full_progress_bar" | "empty_progress_bar" | "progress_bar_nub" | "progress_text_label" | "horse_jump_renderer" | "dash_renderer" | "locator_bar" | "hunger_renderer" | "bubbles_renderer" | "mob_effects_renderer" | "vignette_renderer" | "editor_gizmo_renderer" | "cursor_renderer" | "progress_indicator_renderer" | "camera_renderer" | "editor_volume_highlight_renderer" | "editor_compass_renderer" | "hotbar_hud_item_icon" | "elipses_image" | "bound_button_label" | "default_borderless_button_layout" | "hover_borderless_button_layout" | "pressed_borderless_button_layout" | "borderless_button" | "borderless_button/default" | "borderless_button/hover" | "borderless_button/pressed" | "borderless_button/elipses" | "hotbar_elipses_button" | "start_cap_image" | "end_cap_image" | "hotbar_start_cap" | "hotbar_start_cap/start_cap_image" | "hotbar_end_cap" | "hotbar_end_cap/end_cap_image" | "heart_image" | "hotbar_slot_image" | "hotbar_slot_selected_image" | "gui_hotbar_slot_button_prototype" | "player_position" | "player_position/player_position_text" | "number_of_days_played" | "number_of_days_played/number_of_days_played_text" | "chat_label" | "chat_grid_item" | "chat_grid_item/chat_background" | "chat_grid_item/chat_background/chat_text" | "chat_panel" | "chat_panel/stack_panel" | "item_durability" | "item_storage" | "container_item_lock_overlay" | "item_lock_cell_image" | "gui_hotbar_grid_item" | "gui_hotbar_grid_item/hotbar_slot_selected_image" | "gui_hotbar_grid_item/hotbar_renderer" | "gui_hotbar_grid_item/hotbar_parent" | "gui_hotbar_grid_item/hotbar_parent/item_icon" | "gui_hotbar_grid_item/hotbar_parent/item_count" | "gui_hotbar_grid_item/hotbar_parent/hotbar_hint" | "gui_hotbar_grid_item/hotbar_parent/item_dura" | "gui_hotbar_grid_item/hotbar_parent/item_store" | "gui_hotbar_grid_item/hotbar_parent/container_item_lock_overlay" | "gui_hotbar_grid_item/cooldown_renderer" | "gui_hotbar_grid_item/hotbar_slot_button" | "gui_hotbar_grid_item_pocket" | "gui_hotbar_grid_item_pocket/hotbar_slot_selected_image" | "gui_hotbar_grid_item_pocket/hotbar_renderer" | "gui_hotbar_grid_item_pocket/hotbar_parent" | "gui_hotbar_grid_item_pocket/hotbar_parent/item_icon" | "gui_hotbar_grid_item_pocket/hotbar_parent/item_count" | "gui_hotbar_grid_item_pocket/hotbar_parent/item_dura" | "gui_hotbar_grid_item_pocket/hotbar_parent/item_store" | "gui_hotbar_grid_item_pocket/hotbar_parent/container_item_lock_overlay" | "gui_hotbar_grid_item_pocket/cooldown_renderer" | "gui_hotbar_grid_item_pocket/hotbar_slot_button" | "centered_gui_elements" | "centered_gui_elements/hud_player_rend_desktop" | "centered_gui_elements_at_bottom_middle" | "centered_gui_elements_at_bottom_middle/heart_rend" | "centered_gui_elements_at_bottom_middle/horse_heart_rend_0" | "centered_gui_elements_at_bottom_middle/horse_heart_rend_1" | "centered_gui_elements_at_bottom_middle/armor_rend" | "centered_gui_elements_at_bottom_middle/hunger_rend" | "centered_gui_elements_at_bottom_middle/bubbles_rend_0" | "centered_gui_elements_at_bottom_middle/bubbles_rend_1" | "centered_gui_elements_at_bottom_middle/exp_rend" | "centered_gui_elements_at_bottom_middle_touch" | "centered_gui_elements_at_bottom_middle_touch/heart_rend" | "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_0" | "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_1" | "centered_gui_elements_at_bottom_middle_touch/armor_rend" | "centered_gui_elements_at_bottom_middle_touch/hunger_rend" | "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_0" | "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_1" | "centered_gui_elements_at_bottom_middle_touch/exp_rend" | "not_centered_gui_elements" | "not_centered_gui_elements/heart_rend" | "not_centered_gui_elements/horse_heart_rend" | "not_centered_gui_elements/hunger_rend" | "not_centered_gui_elements/armor_rend" | "not_centered_gui_elements/hud_player_rend_pocket" | "not_centered_gui_elements/bubbles_rend_0" | "not_centered_gui_elements/bubbles_rend_1" | "hotbar_chooser" | "hotbar_chooser/desktop_hotbar" | "hotbar_chooser/pocket_hotbar" | "hotbar_elipses_panel_right_content" | "hotbar_elipses_panel_right_content/elipses_content" | "hotbar_elipses_panel_right_art" | "hotbar_elipses_panel_right_art/slot" | "hotbar_elipses_panel_right_art/button" | "hotbar_elipses_panel_left_content" | "hotbar_elipses_panel_left_content/button" | "hotbar_elipses_panel_left_art" | "hotbar_elipses_panel_left_art/slot" | "hotbar_elipses_panel_left_art/button" | "hotbar_panel" | "hotbar_panel/hotbar_start_cap" | "hotbar_panel/hotbar_elipses_panel_left" | "hotbar_panel/hotbar_grid" | "hotbar_panel/hotbar_elipses_panel_right" | "hotbar_panel/hotbar_end_cap" | "hotbar_panel_pocket" | "hotbar_panel_pocket/hotbar_start_cap_frame" | "hotbar_panel_pocket/hotbar_start_cap_frame/hotbar_start_cap" | "hotbar_panel_pocket/hotbar_elipses_panel_left" | "hotbar_panel_pocket/hotbar_elipses_panel_left/hotbar_elipses_panel_left" | "hotbar_panel_pocket/hotbar_grid" | "hotbar_panel_pocket/hotbar_elipses_panel_right" | "hotbar_panel_pocket/hotbar_elipses_panel_right/hotbar_elipses_panel_right" | "hotbar_panel_pocket/hotbar_end_cap_frame" | "hotbar_panel_pocket/hotbar_end_cap_frame/hotbar_end_cap" | "hotbar_grid" | "edu_hotbar_grid" | "item_name_text_root" | "item_name_text_root/item_text_aligner" | "item_name_text_root/item_text_aligner/item_text_control" | "item_name_text_root/item_text_aligner/item_text_control/item_text_background" | "item_name_text_root/item_text_aligner/item_text_control/item_text_label" | "item_name_text_root/item_text_aligner/interact_padding" | "item_name_text_root/item_text_aligner/survival_buffer" | "item_name_text" | "jukebox_popup_text" | "hud_tip_text" | "hud_tip_text/item_text_label" | "auto_save" | "hud_actionbar_text" | "hud_actionbar_text/actionbar_message" | "hud_title_text" | "hud_title_text/title_frame" | "hud_title_text/title_frame/title_background" | "hud_title_text/title_frame/title" | "hud_title_text/subtitle_frame" | "hud_title_text/subtitle_frame/subtitle_background" | "hud_title_text/subtitle_frame/subtitle" | "boss_name_panel" | "boss_name_panel/boss_name" | "tooltip_helper_icon_description" | "tooltip_helper_icon_description/label_background" | "tooltip_helper" | "tooltip_helper/icon" | "tooltip_helper/padding" | "tooltip_helper/centerer" | "tooltip_helper/centerer/desc" | "tooltip_helper_form_fitting" | "tooltip_helper_form_fitting/icon" | "tooltip_helper_form_fitting/padding" | "tooltip_helper_form_fitting/centerer" | "tooltip_helper_form_fitting/centerer/desc" | "keyboard_tooltip_helper" | "keyboard_tooltip_helper_form_fitting" | "mixed_tooltip_helper" | "mixed_tooltip_helper/gamepad_tooltip" | "mixed_tooltip_helper/keyboard_tooltip" | "mixed_tooltip_helper_form_fitting" | "mixed_tooltip_helper_form_fitting/gamepad_tooltip" | "mixed_tooltip_helper_form_fitting/keyboard_tooltip" | "base_icon_image" | "base_icon_image/icon" | "base_icon_image/postfix_label_wrapper" | "base_icon_image/postfix_label_wrapper/label" | "base_keyboard_icon" | "base_keyboard_icon/icon" | "base_keyboard_icon/icon/key_backing" | "base_keyboard_icon/icon/key_backing/key_label" | "base_keyboard_icon/icon/mouse_buttons" | "left_helpers_edu" | "left_helpers_edu/tip_window" | "left_helpers_edu/tip_window/stack_panel" | "left_helpers_edu/tip_paddding" | "left_helpers_edu/controls_toggle_label" | "left_helpers_edu/controls_toggle_label/tip" | "left_helpers_edu/controls_inventory_label" | "left_helpers_edu/controls_inventory_label/tip" | "left_helpers_edu/controls_menu_label" | "left_helpers_edu/controls_menu_label/tip" | "left_helpers" | "left_helpers/stack_panel" | "emote_label_background" | "emote_tip" | "emote_tip/emote_keyboard_centerer" | "emote_tip/emote_keyboard_centerer/emote_keyboard_helper" | "emote_tip/emote_gamepad_helper" | "emote_expediate_helpers" | "emote_expediate_helpers/stack_panel" | "emote_expediate_helpers/stack_panel/emote_tip_0" | "emote_expediate_helpers/stack_panel/emote_tip_1" | "emote_expediate_helpers/stack_panel/emote_tip_2" | "emote_expediate_helpers/stack_panel/emote_tip_3" | "right_helpers" | "right_helpers/stack_panel" | "boss_health_panel" | "boss_health_panel/boss_name" | "boss_health_panel/progress_bar_for_collections" | "boss_health_grid" | "wysiwyg_reset_modal_ok" | "wysiwyg_reset_modal_cancel" | "wysiwyg_close_without_saving_modal_ok" | "wysiwyg_close_without_saving_modal_cancel" | "root_panel" | "root_panel/layout_customization_reset" | "root_panel/layout_customization_reset/layout_customization_reset_modal" | "root_panel/layout_customization_close_without_saving" | "root_panel/layout_customization_close_without_saving/layout_customization_close_without_saving_modal" | "root_panel/layout_customization_main_panel" | "root_panel/layout_customization_sub_panel" | "root_panel/layout_customization_hint_drag_frame" | "root_panel/layout_customization_hint_drag_frame/layout_customization_hint_drag" | "root_panel/layout_customization_hint_deselect_frame" | "root_panel/layout_customization_hint_deselect_frame/layout_customization_hint_deselect" | "root_panel/layout_customization_hint_saved" | "root_panel/layout_customization_hint_saved/layout_customization_hint_saved" | "root_panel/left_helpers" | "root_panel/right_helpers" | "root_panel/emote_expediate_helpers" | "root_panel/centered_gui_elements" | "root_panel/centered_gui_elements_at_bottom_middle" | "root_panel/centered_gui_elements_at_bottom_middle_touch" | "root_panel/not_centered_gui_elements" | "root_panel/gamertag_label_for_splitscreen" | "root_panel/exp_rend" | "root_panel/exp_rend_resizable" | "root_panel/hud_tip_text_factory" | "root_panel/hud_actionbar_text_area" | "root_panel/hud_title_text_area" | "root_panel/mob_effects_renderer" | "root_panel/vignette_rend" | "root_panel/curor_rend" | "root_panel/game_tip" | "root_panel/sidebar" | "root_panel/progress_rend" | "root_panel/chat_stack" | "root_panel/chat_stack/paper_doll_padding" | "root_panel/chat_stack/non_centered_gui_padding" | "root_panel/chat_stack/player_position" | "root_panel/chat_stack/number_of_days_played" | "root_panel/chat_stack/game_tip" | "root_panel/chat_stack/chat_panel" | "root_panel/boss_health_panel" | "root_panel/boss_health_panel/boss_hud_padding" | "root_panel/boss_health_panel/boss_hud_touch_padding" | "root_panel/boss_health_panel/boss_hud_panel" | "root_panel/boss_health_panel/boss_hud_panel/boss_health_grid" | "root_panel/save_icon" | "hud_screen" | "hud_content" | "hud_content/root_panel" | "hud_content/editor_gizmo_renderer" | "hud_content/editor_compass_renderer" | "hud_content/editor_volume_highlight_renderer" | "hud_content/camera_renderer" | "layout_customization_main_panel_button" | "layout_customization_main_panel_button/button" | "layout_customization_main_panel" | "layout_customization_main_panel/main_panel_frame" | "layout_customization_main_panel/main_panel_frame/main_panel_content" | "layout_customization_main_panel/main_panel_frame/main_panel_content/reset_button" | "layout_customization_main_panel/main_panel_frame/main_panel_content/exit_button" | "layout_customization_main_panel/main_panel_frame/main_panel_content/opacity_button" | "layout_customization_main_panel/main_panel_frame/main_panel_content/size_button" | "layout_customization_option_slider" | "layout_customization_option_slider/slider" | "layout_customization_option_slider/reset" | "layout_customization_option_slider/reset/reset_button" | "layout_customization_option_slider/reset/reset_button/default" | "layout_customization_option_slider/reset/reset_button/hover" | "layout_customization_option_slider/reset/reset_button/pressed" | "layout_customization_option_content" | "layout_customization_option_content/scale_option" | "layout_customization_option_content/opacity_option" | "layout_customization_option_content/apply_to_all_toggle" | "layout_customization_option_content/apply_to_all_toggle/checkbox_frame" | "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_unchecked" | "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_checked" | "layout_customization_option_content/apply_to_all_toggle/caption_frame" | "layout_customization_option_content/apply_to_all_toggle/caption_frame/caption" | "layout_customization_option" | "layout_customization_option/content" | "layout_customization_sub_panel" | "layout_customization_sub_panel/background" | "layout_customization_sub_panel/background/sub_panel_content"; -export type HostOptions = "button_label" | "host_image_panel" | "host_image_panel/host_image" | "host_glyph_panel" | "scrollable_selector_area" | "host_main_button" | "scrolling_panel" | "scrolling_panel/background" | "scrolling_panel/scrollable_tab" | "button_content" | "button_content/button_label" | "button_content/image" | "main_light_button" | "main_dark_button" | "host_grid" | "host_sub_command_grid_item" | "host_sub_command_grid_item/host_option_banner" | "return_from_sub_command_button" | "platform_icon_panel" | "gamertag_wrapper" | "player_pic_panel" | "player_pic_panel/player_gamer_pic" | "player_pic_panel/player_local_icon" | "player_button_content" | "player_button_content/player_pic_panel" | "player_button_content/player_gamertag" | "player_button_content/platform_icon" | "player_grid_item" | "player_grid_item/player_banner" | "host_friends_tab" | "host_friends_tab/players_grid" | "host_teleport_grid_item" | "host_teleport_grid_item/host_option_toggle" | "host_teleport_grid_item/host_option_button" | "host_teleport_buttons" | "host_teleport_buttons/return" | "host_teleport_buttons/sub_tab" | "host_teleport_buttons/sub_tab/host_main_grid" | "host_teleport_player_list_buttons" | "host_teleport_player_list_buttons/toggle" | "host_teleport_player_list_buttons/toggle/host_time_panel" | "host_teleport_player_buttons" | "host_time_buttons" | "host_time_buttons/return" | "host_time_buttons/sub_tab" | "host_time_buttons/sub_tab/scrolli_scrolli_ravioli" | "host_weather_buttons" | "host_weather_buttons/return" | "host_weather_buttons/sub_tab" | "host_weather_buttons/sub_tab/host_main_grid" | "host_menu_grid_item" | "host_menu_grid_item/host_option_banner" | "host_main_buttons" | "host_main_buttons/host_main_grid" | "host_panel" | "host_panel/host_main_panel" | "host_panel/host_teleport_panel" | "host_panel/host_teleport_player_panel" | "host_panel/host_time_panel" | "host_panel/host_weather_panel"; -export type Bed = "in_bed_screen" | "in_bed_screen_content" | "in_bed_screen_content/wake_up_button_panel" | "in_bed_screen_content/wake_up_button_panel/wake_up_button" | "in_bed_screen_content/wake_up_button_panel/spacer" | "in_bed_screen_content/wake_up_button_panel/chat_button" | "in_bed_screen_content/wake_up_label_panel" | "in_bed_screen_content/select_button" | "background"; -export type ImReader = "reader_button_contents" | "reader_button" | "webview" | "loading" | "loading/animation_item" | "loading/animation_item/animation" | "loading/loading_text_item" | "loading/loading_text_item/loading_text" | "loading/bottom_padding" | "loading/cancel_button" | "no_retry_error_button" | "retry_error_buttons" | "retry_error_buttons/try_again" | "retry_error_buttons/middle_padding" | "retry_error_buttons/cancel" | "error" | "error/error_text" | "error/error_buttons" | "error/error_buttons/retry" | "error/error_buttons/no_retry" | "loading_and_error_panel" | "loading_and_error_panel/loading" | "loading_and_error_panel/error" | "immersive_reader_screen_content" | "immersive_reader_screen_content/loading_and_error" | "immersive_reader_screen_content/webview" | "immersive_reader_screen"; -export type Crafting = "inventory_x_gamepad_helper" | "inventory_y_gamepad_helper" | "inventory_a_gamepad_helper" | "inventory_b_gamepad_helper" | "gamepad_helper_bumpers" | "gamepad_helper_bumpers/gamepad_helper_left_bumper" | "gamepad_helper_bumpers/gamepad_helper_right_bumper" | "gamepad_helper_left_trigger" | "gamepad_helper_right_trigger" | "container_gamepad_helpers_second_row" | "container_gamepad_helpers_second_row/buffer_panel_left" | "container_gamepad_helpers_second_row/left_thumbstick_visibility" | "container_gamepad_helpers_second_row/left_thumbstick_visibility/gamepad_helper_thumbstick_left" | "container_gamepad_helpers_second_row/fill_panel" | "container_gamepad_helpers_second_row/right_thumbstick_visibility" | "container_gamepad_helpers_second_row/right_thumbstick_visibility/gamepad_helper_thumbstick_right" | "container_gamepad_helpers_second_row/buffer_panel_right" | "crafting_root_panel" | "drop_item_panel" | "inventory_container_slot_button" | "creative_hotbar_container_slot_button" | "no_coalesce_container_slot_button" | "creative_no_coalesce_container_slot_button" | "output_no_coalesce_container_slot_button" | "tab_image" | "item_renderer" | "inventory_icon" | "recipe_book_icon" | "creative_icon" | "icon_image" | "tab_front" | "tab_back" | "equipment_icon" | "construction_icon" | "nature_icon" | "search_icon" | "miscellaneous_icon" | "empty_tab_panel" | "empty_tab_panel/img" | "top_tab" | "search_tab" | "construction_tab" | "equipment_tab" | "nature_tab" | "items_tab" | "tab_navigation_panel_layout" | "tab_navigation_panel_layout/navigation_tabs" | "tab_navigation_panel_layout/navigation_tabs/content" | "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel" | "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel/construction_tab_factory" | "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel" | "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel/equipment_tab_factory" | "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel" | "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel/items_tab_factory" | "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel" | "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel/nature_tab_factory" | "tab_navigation_panel_layout/navigation_tabs/content/fill_panel_0" | "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder" | "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_end_creative" | "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_creative" | "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_survival" | "tab_content_padding" | "tab_content" | "tab_content/tab_content_search_bar_panel" | "tab_content/tab_content_search_bar_panel/vertical_padding_1" | "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder" | "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_1" | "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/creative_label" | "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_2" | "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder" | "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder/filter_toggle" | "tab_content/tab_content_search_bar_panel/vertical_padding_2" | "tab_content/tab_content_search_bar_panel/search_and_filter_panel" | "tab_content/tab_content_search_bar_panel/search_and_filter_panel/text_edit_control" | "tab_content/tab_content_search_bar_panel/search_and_filter_panel/padding_1" | "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder" | "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder/filter_toggle" | "tab_content/tab_content_search_bar_panel/vertical_padding_3" | "tab_content/tab_content_search_bar_panel/scroll_pane" | "tab_content/nodrop_zone" | "armor_overlay" | "offhand_overlay" | "armor_overlay_helmet" | "armor_overlay_chest" | "armor_overlay_legs" | "armor_image_feet" | "armor_overlay_shield" | "player_armor_panel" | "player_armor_panel/player_bg" | "player_armor_panel/player_bg/player_renderer_panel" | "player_armor_panel/player_bg/player_renderer_panel/player_renderer" | "player_armor_panel/player_preview_border" | "player_armor_panel/armor_grid" | "player_armor_panel/armor_grid/head_grid_item" | "player_armor_panel/armor_grid/chest_grid_item" | "player_armor_panel/armor_grid/legs_grid_item" | "player_armor_panel/armor_grid/feet_grid_item" | "player_armor_panel/offhand_grid" | "player_armor_panel/offhand_grid/offhand_grid_item" | "crafting_label" | "inventory_label" | "crafting_arrow" | "crafting_arrow_large" | "crafting_input_grid_item" | "crafting_grid_3x3" | "crafting_grid_3x3/crafting_input_item_top_left" | "crafting_grid_3x3/crafting_input_item_top_mid" | "crafting_grid_3x3/crafting_input_item_top_right" | "crafting_grid_3x3/crafting_input_item_mid_left" | "crafting_grid_3x3/crafting_input_item_middle" | "crafting_grid_3x3/crafting_input_item_mid_right" | "crafting_grid_3x3/crafting_input_item_bot_left" | "crafting_grid_3x3/crafting_input_item_bot_mid" | "crafting_grid_3x3/crafting_input_item_bot_right" | "crafting_grid_2x2" | "crafting_grid_2x2/crafting_input_item_top_left" | "crafting_grid_2x2/crafting_input_item_top_right" | "crafting_grid_2x2/crafting_input_item_bot_left" | "crafting_grid_2x2/crafting_input_item_bot_right" | "output_grid_3x3" | "output_grid_3x3/work_bench_output" | "output_grid_2x2" | "output_grid_2x2/work_bench_output" | "work_bench_panel_3x3" | "work_bench_panel_3x3/inventory_label" | "work_bench_panel_3x3/crafting_arrow_large" | "work_bench_panel_3x3/crafting_grid_3x3_with_label_0" | "work_bench_panel_3x3/work_bench_output_grid" | "crafting_grid_3x3_with_label" | "crafting_grid_3x3_with_label/crafting_label" | "crafting_grid_3x3_with_label/crafting_grid_3x3" | "crafting_grid_2x2_with_label" | "crafting_grid_2x2_with_label/crafting_label" | "crafting_grid_2x2_with_label/crafting_grid_2x2" | "crafting_panel_2x2" | "crafting_panel_2x2/crafting_arrow" | "crafting_panel_2x2/crafting_table" | "crafting_panel_2x2/crafting_grid_2x2" | "crafting_panel_2x2/survival_crafting_output_grid" | "survival_panel_top_half" | "survival_panel_top_half/player_armor_panel" | "survival_panel_top_half/crafting_panel" | "crafting_panel_top_half" | "crafting_panel_top_half/crafting_panel" | "recipe_container_cell_images" | "cell_image_recipe_default" | "cell_image_recipe_group_head_collapsed" | "cell_image_recipe_group_head_expanded" | "cell_image_recipe_group_item" | "cell_image_recipe_selected" | "cell_image_recipe_default_red" | "container_cell_images" | "container_cell_images/cell_classic" | "container_cell_images/cell_normal" | "container_cell_images/cell_invert" | "container_cell_images/cell_red" | "container_cell_images/cell_selected" | "container_cell_images/cell_darkgrey" | "crafting_container_cell_images" | "cell_image" | "cell_image_classic" | "cell_image_normal" | "cell_image_invert" | "cell_image_red" | "cell_image_selected" | "cell_image_darkgrey" | "container_overlay_images" | "container_overlay_images/expand" | "container_overlay_images/contract" | "item_overlay_image" | "item_overlay_contract" | "item_overlay_expand" | "inventory_container_item" | "inventory_container_item/item_cell" | "inventory_container_item/item_cell/item" | "inventory_container_item/item_cell/item/stack_count_label" | "inventory_container_item/item_cell/durability_bar" | "inventory_container_item/item_cell/storage_bar" | "inventory_container_item/item_cell_overlay_ref" | "inventory_container_item/item_selected_image" | "inventory_container_item/item_button_ref" | "inventory_container_item/container_item_lock_overlay" | "inventory_container_item/item_lock_cell_image" | "inventory_container_item/bundle_slot_panel" | "grid_item_for_recipe_book" | "scroll_grid_panel" | "scroll_grid_panel/grid" | "scroll_grid" | "scroll_panel" | "recipe_book_scroll_panel" | "creative_label" | "filter_toggle" | "toolbar_background" | "layout_toggle_content" | "layout_toggle_content/image" | "layout_toggle_content/icon" | "layout_template_toggle" | "layout_toggle" | "creative_layout_toggle" | "recipe_book_layout_toggle" | "survival_layout_toggle" | "help_button" | "help_button/default" | "help_button/hover" | "help_button/pressed" | "player_inventory" | "player_inventory/common_panel" | "player_inventory/inventory_panel_top_half" | "player_inventory/inventory_panel_bottom_half" | "player_inventory/hotbar_grid" | "recipe_book" | "recipe_book/gamepad_helper_bumpers" | "recipe_book/tab_navigation_panel" | "recipe_book/bg" | "recipe_book/tab_content_panel" | "recipe_book/creative_hotbar_panel" | "creative_hotbar_panel" | "creative_hotbar_panel/creative_hotbar_background" | "creative_hotbar_panel/creative_hotbar_background/hotbar_grid" | "center_fold" | "center_fold/center_bg" | "toolbar_panel" | "toolbar_panel/toolbar_background" | "toolbar_panel/toolbar_background/toolbar_stack_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor" | "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor/gamepad_helper_left_trigger" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_0" | "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel/creative_layout_toggle" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1" | "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival" | "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival/recipe_book_layout_toggle" | "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative" | "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative/recipe_book_layout_toggle" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2" | "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel/survival_layout_toggle" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_3" | "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_4" | "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor" | "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor/gamepad_helper_right_trigger" | "inventory_screen_base" | "crafting_screen" | "inventory_screen" | "recipe_book_toggle_image" | "recipe_inventory_screen_content" | "recipe_inventory_screen_content/content_stack_panel" | "recipe_inventory_screen_content/content_stack_panel/recipe_book" | "recipe_inventory_screen_content/content_stack_panel/center_fold" | "recipe_inventory_screen_content/content_stack_panel/survival_padding" | "recipe_inventory_screen_content/content_stack_panel/player_inventory" | "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor" | "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor/toolbar_panel" | "recipe_inventory_screen_content/inventory_take_progress_icon_button" | "recipe_inventory_screen_content/inventory_selected_icon_button" | "recipe_inventory_screen_content/hold_icon" | "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel" | "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers_second_row" | "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers" | "recipe_inventory_screen_content/selected_item_details_factory" | "recipe_inventory_screen_content/item_lock_notification_factory" | "recipe_inventory_screen_content/flying_item_renderer"; -export type CraftingPocket = "survival_icon" | "full_screen_icon" | "crafting_icon" | "armor_icon" | "crafting_arrow_down" | "empty_tab_panel" | "left_tab" | "right_tab" | "full_screen_tab" | "crafting_tab" | "armor_tab" | "search_tab" | "construction_tab" | "equipment_tab" | "items_tab" | "nature_tab" | "inventory_tab" | "left_tab_navigation_panel_pocket" | "left_tab_navigation_panel_pocket/content" | "left_tab_navigation_panel_pocket/content/search_tab_panel" | "left_tab_navigation_panel_pocket/content/search_tab_panel/search_tab" | "left_tab_navigation_panel_pocket/content/construction_tab_panel" | "left_tab_navigation_panel_pocket/content/construction_tab_panel/construction_tab_factory" | "left_tab_navigation_panel_pocket/content/equipment_tab_panel" | "left_tab_navigation_panel_pocket/content/equipment_tab_panel/equipment_tab_factory" | "left_tab_navigation_panel_pocket/content/items_tab_panel" | "left_tab_navigation_panel_pocket/content/items_tab_panel/items_tab_factory" | "left_tab_navigation_panel_pocket/content/nature_tab_panel" | "left_tab_navigation_panel_pocket/content/nature_tab_panel/nature_tab_factory" | "left_tab_navigation_panel_pocket/content/fill" | "left_tab_navigation_panel_pocket/content/inventory_tab" | "right_tab_navigation_panel_pocket" | "right_tab_navigation_panel_pocket/content" | "right_tab_navigation_panel_pocket/content/close" | "right_tab_navigation_panel_pocket/content/close/nodrop_zone" | "right_tab_navigation_panel_pocket/content/close/close_button" | "right_tab_navigation_panel_pocket/content/fill" | "right_tab_navigation_panel_pocket/content/full_screen_tab" | "right_tab_navigation_panel_pocket/content/crafting_tab" | "right_tab_navigation_panel_pocket/content/armor_tab" | "recipe_book_tab_content" | "inventory_tab_content" | "right_tab_content" | "right_tab_content/bg" | "right_tab_content/content" | "crafting_input_grid_item" | "crafting_grid_3x3" | "crafting_grid_2x2" | "output_grid_and_label" | "output_grid_and_label/recipe_item_label" | "output_grid_and_label/output_grid" | "output_grid" | "output_grid/work_bench_output" | "crafting_grid_3x3_with_label" | "crafting_grid_3x3_with_label/crafting_label" | "crafting_grid_3x3_with_label/crafting_grid_3x3" | "crafting_grid_2x2_with_label" | "crafting_grid_2x2_with_label/crafting_label" | "crafting_grid_2x2_with_label/crafting_grid_2x2" | "scroll_background_image" | "grid_item_for_inventory" | "survival_inventory_grid" | "scroll_panel_pocket" | "recipe_book_scroll_panel_pocket" | "survival_scroll_panel" | "pocket_armor_tab_content" | "pocket_armor_tab_content/label_and_renderer" | "pocket_armor_tab_content/label_and_renderer/label_panel" | "pocket_armor_tab_content/label_and_renderer/label_panel/armor_label" | "pocket_armor_tab_content/label_and_renderer/renderer_panel" | "pocket_armor_tab_content/label_and_renderer/renderer_panel/armor_renderer" | "pocket_armor_tab_content/equipment_and_renderer" | "pocket_armor_tab_content/equipment_and_renderer/equipment" | "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid" | "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/head_grid_item" | "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/chest_grid_item" | "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/legs_grid_item" | "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/feet_grid_item" | "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid" | "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid/offhand_grid_item" | "pocket_armor_tab_content/equipment_and_renderer/armor_panel" | "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player" | "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border" | "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg" | "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg/player_renderer_panel" | "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg/player_renderer_panel/player_renderer" | "hotbar_panel" | "hotbar_panel/bg" | "hotbar_panel/hotbar_grid" | "hotbar_grid_item" | "survival_panel_pocket" | "survival_panel_pocket/crafting_panel" | "survival_panel_pocket/crafting_arrow_down" | "survival_panel_pocket/crafting_table" | "survival_panel_pocket/output" | "survival_panel_crafting_pocket" | "survival_panel_crafting_pocket/crafting_panel" | "survival_panel_crafting_pocket/crafting_arrow_down" | "survival_panel_crafting_pocket/output" | "inventory_screen_pocket_base" | "crafting_screen_pocket" | "inventory_screen_pocket" | "left_panel" | "left_panel/left_background" | "left_panel/recipe_book_tab_content" | "left_panel/inventory_tab_content" | "right_panel" | "right_panel/right_background" | "right_panel/help_button" | "right_panel/crafting_tab_content" | "right_panel/armor_tab_content" | "both_panels" | "both_panels/left_tab_navigation_panel_pocket" | "both_panels/left_panel" | "both_panels/offset_panel" | "both_panels/offset_panel/center_bg" | "both_panels/right_panel" | "both_panels/right_tab_navigation_panel_pocket" | "gamepad_helper_border" | "gamepad_helper_border/left_gamepad_panel" | "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_bumper" | "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_trigger" | "gamepad_helper_border/both_panels" | "gamepad_helper_border/right_gamepad_panel" | "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper_creative" | "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper" | "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_trigger" | "hotbar_and_panels" | "hotbar_and_panels/padding_1" | "hotbar_and_panels/gamepad_helper_border" | "hotbar_and_panels/hotbar_section_panel" | "hotbar_and_panels/hotbar_section_panel/hotbar" | "recipe_inventory_screen_content_pocket" | "recipe_inventory_screen_content_pocket/container_gamepad_helpers_pocket" | "recipe_inventory_screen_content_pocket/toast_screen_content" | "recipe_inventory_screen_content_pocket/selected_item_details_factory" | "recipe_inventory_screen_content_pocket/item_lock_notification_factory" | "recipe_inventory_screen_content_pocket/base_panel" | "recipe_inventory_screen_content_pocket/base_panel/root_panel" | "recipe_inventory_screen_content_pocket/base_panel/inventory_selected_icon_button" | "recipe_inventory_screen_content_pocket/base_panel/gamepad_cursor" | "recipe_inventory_screen_content_pocket/base_panel/hold_icon" | "recipe_inventory_screen_content_pocket/base_panel/hotbar_and_panels" | "recipe_inventory_screen_content_pocket/flying_item_renderer"; -export type Invite = "black_border" | "black_border_hover" | "platform_icon" | "grey_borderless_locked" | "checked_locked_image" | "unchecked_locked_image" | "left_arrow_image" | "right_arrow_image" | "account_link_image" | "panel_text" | "loading_friends" | "account_link_icon" | "account_link_icon/space_01" | "account_link_icon/account_link_image" | "account_link_icon/space_03" | "gamerpic" | "third_party_profile_pic" | "gamerpic_panel" | "gamerpic_panel/black_border" | "gamerpic_panel/gamerpic" | "gamerpic_panel/online_indication_positioner" | "gamerpic_panel/online_indication_positioner/indicator_images" | "third_party_profile_pic_panel" | "third_party_profile_pic_panel/black_border" | "third_party_profile_pic_panel/third_party_profile_pic" | "platform_icon_panel" | "platform_icon_panel/platform_icon" | "status_image" | "online_image" | "offline_image" | "online_indicator" | "online_indicator/online_image" | "checkbox_panel" | "checked_panel" | "checked_panel/checked_image" | "unchecked_panel" | "unchecked_panel/unchecked_image" | "checked_locked_panel" | "checked_locked_panel/checked_image" | "unchecked_locked_panel" | "unchecked_locked_panel/unchecked_image" | "checked_hover_panel" | "checked_hover_panel/checked_hover_image" | "unchecked_hover_panel" | "unchecked_hover_panel/unchecked_hover_image" | "friend_label" | "friend_grid_xbl_gamertag" | "friend_grid_current_game_label" | "friend_grid_third_party_tag" | "friend_background" | "friend_background_hover" | "friend_background_borderless" | "hover_friend_button" | "hover_friend_button/friend_button_layout" | "hover_friend_button/hover_text" | "linked_hover_friend_button" | "linked_hover_friend_button/hover_text" | "msa_friend_button_layout" | "msa_friend_button_layout/spacer01" | "msa_friend_button_layout/platform_icon_spacer" | "msa_friend_button_layout/spacer_02" | "msa_friend_button_layout/friend_grid_label_layout" | "msa_friend_button_layout/friend_grid_label_layout/spacer_01" | "msa_friend_button_layout/friend_grid_label_layout/friend_grid_xbl_gamertag" | "msa_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label" | "platform_friend_button_layout" | "platform_friend_button_layout/spacer01" | "platform_friend_button_layout/platform_icon_spacer" | "platform_friend_button_layout/third_party_pic_panel_positioner" | "platform_friend_button_layout/third_party_pic_panel_positioner/pp" | "platform_friend_button_layout/spacer_02" | "platform_friend_button_layout/friend_grid_label_layout" | "platform_friend_button_layout/friend_grid_label_layout/spacer_01" | "platform_friend_button_layout/friend_grid_label_layout/friend_grid_third_party_tag" | "platform_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label" | "platform_friend_button_layout/platform_icon_positioner" | "platform_friend_button_layout/platform_icon_positioner/platform_icon" | "platform_friend_button_layout/online_indication_positioner" | "platform_friend_button_layout/online_indication_positioner/indicator_images" | "linked_friend_button_layout" | "linked_friend_button_layout/spacer01" | "linked_friend_button_layout/platform_icon_positioner" | "linked_friend_button_layout/platform_icon_positioner/platform_icon" | "linked_friend_button_layout/spacer02" | "linked_friend_button_layout/platform_profile_pictures" | "linked_friend_button_layout/platform_profile_pictures/spacer_01" | "linked_friend_button_layout/platform_profile_pictures/pp2" | "linked_friend_button_layout/platform_profile_pictures/account_link" | "linked_friend_button_layout/platform_profile_pictures/pp1" | "linked_friend_button_layout/platform_profile_pictures/spacer_03" | "linked_friend_button_layout/spacer03" | "linked_friend_button_layout/platform_profile_names" | "linked_friend_button_layout/platform_profile_names/spacer_01" | "linked_friend_button_layout/platform_profile_names/friend_grid_third_party_tag" | "linked_friend_button_layout/platform_profile_names/spacer_02" | "linked_friend_button_layout/platform_profile_names/friend_grid_xbl_gamertag" | "linked_friend_button_layout/platform_profile_names/friend_grid_current_game_label" | "linked_friend_button_layout/online_indication_positioner" | "linked_friend_button_layout/online_indication_positioner/indicator_images" | "template_msa_friend_button_layout" | "template_msa_friend_button_layout/friend_background" | "template_msa_friend_button_layout/friend_button_layout" | "template_msa_friend_button_layout/unchecked" | "template_platform_friend_button_layout" | "template_platform_friend_button_layout/friend_background" | "template_platform_friend_button_layout/friend_button_layout" | "template_platform_friend_button_layout/unchecked" | "template_linked_friend_button_layout" | "template_linked_friend_button_layout/friend_background" | "template_linked_friend_button_layout/horizontal_spacer_panel" | "template_linked_friend_button_layout/horizontal_spacer_panel/unchecked_locked" | "template_linked_friend_button_layout/horizontal_spacer_panel/friend_button_layout" | "msa_friend_button" | "msa_friend_button/checked" | "msa_friend_button/unchecked" | "msa_friend_button/checked_hover" | "msa_friend_button/unchecked_hover" | "msa_friend_button/checked_locked" | "msa_friend_button/unchecked_locked" | "msa_friend_button/checked_locked_hover" | "msa_friend_button/unchecked_locked_hover" | "platform_friend_button" | "platform_friend_button/checked" | "platform_friend_button/unchecked" | "platform_friend_button/checked_hover" | "platform_friend_button/unchecked_hover" | "platform_friend_button/checked_locked" | "platform_friend_button/unchecked_locked" | "platform_friend_button/checked_locked_hover" | "platform_friend_button/unchecked_locked_hover" | "linked_friend_button" | "linked_friend_button/checked" | "linked_friend_button/unchecked" | "linked_friend_button/checked_hover" | "linked_friend_button/unchecked_hover" | "linked_friend_button/checked_locked" | "linked_friend_button/unchecked_locked" | "linked_friend_button/checked_locked_hover" | "linked_friend_button/unchecked_locked_hover" | "msa_friend_grid_item_template" | "msa_friend_grid_item_template/friend_button_Panel" | "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner" | "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner/pp" | "msa_friend_grid_item_template/friend_button_Panel/friend_button" | "msa_friend_grid_item_template/profile_button_pannel" | "msa_friend_grid_item_template/profile_button_pannel/view_profile_button" | "msa_friend_grid_item_template/spacer_03" | "platform_friend_grid_item_template" | "platform_friend_grid_item_template/friend_button" | "friend_linked_account_grid_item_template" | "friend_linked_account_grid_item_template/friend_button" | "online_xbox_live_friend_grid_item" | "offline_xbox_live_friend_grid_item" | "online_linked_account_friend_grid_item" | "offline_linked_account_friend_grid_item" | "online_platform_friend_grid_item" | "offline_platform_friend_grid_item" | "online_xbox_live_friend_list_grid" | "offline_xbox_live_friend_list_grid" | "online_platform_friend_list_grid" | "offline_platform_friend_list_grid" | "online_linked_account_friend_list_grid" | "offline_linked_account_friend_list_grid" | "friends_pagination_controls" | "friends_pagination_controls/previous_button" | "friends_pagination_controls/center_panel" | "friends_pagination_controls/center_panel/page_counter" | "friends_pagination_controls/next_button" | "friends_category" | "friends_category/friends_grid" | "friends_category/pagination_stack_panel" | "friends_category/pagination_stack_panel/padding_1" | "friends_category/pagination_stack_panel/pagination_controls" | "friends_category/pagination_stack_panel/padding_2" | "friends_category/pagination_stack_panel/divider" | "friends_category/padding" | "frame_label" | "friend_panel" | "scrolling_content_stack" | "scrolling_content_stack/message" | "scrolling_content_stack/message/frame_label" | "scrolling_content_stack/online_platform" | "scrolling_content_stack/online_platform/frame_label" | "scrolling_content_stack/vertical_padding_0" | "scrolling_content_stack/online_platform_friend_list_category" | "scrolling_content_stack/crossplatform_disabled_panel" | "scrolling_content_stack/crossplatform_disabled_panel/disable_text" | "scrolling_content_stack/crossplatform_disable_spacer" | "scrolling_content_stack/online_cross_platform" | "scrolling_content_stack/online_cross_platform/frame_label" | "scrolling_content_stack/vertical_padding_1" | "scrolling_content_stack/online_linked_account_friend_list_category" | "scrolling_content_stack/online_xbox_live_friend_list_category" | "scrolling_content_stack/offline_platform" | "scrolling_content_stack/offline_platform/frame_label" | "scrolling_content_stack/vertical_padding_2" | "scrolling_content_stack/offline_platform_friend_list_category" | "scrolling_content_stack/no_platform_friends" | "scrolling_content_stack/no_platform_friends/no_friends_tts_wrapper" | "scrolling_content_stack/offline_cross_platform" | "scrolling_content_stack/offline_cross_platform/frame_label" | "scrolling_content_stack/vertical_padding_3" | "scrolling_content_stack/offline_linked_account_friend_list_category" | "scrolling_content_stack/offline_xbox_live_friend_list_category" | "scrolling_content_stack/no_xbox_live_friends" | "scrolling_content_stack/no_xbox_live_friends/no_friends_tts_wrapper" | "progress_bar_and_scrolling_content_panel" | "progress_bar_and_scrolling_content_panel/progress_loading_bars" | "progress_bar_and_scrolling_content_panel/invite_scrolling_area" | "no_xbox_live_friends_frame_label" | "no_platform_friends_frame_label" | "horizontal_invite_panel" | "vertical_invite_panel" | "scrolling_area" | "invite_button_content" | "invite_button_content/gameplay_helper" | "invite_button_content/button_label" | "invite_button_content_hover" | "invite_button_content_pressed" | "invite_button_content_locked" | "add_friend_button" | "profile_button_content" | "profile_button_content/button_label" | "profile_button_content_hover" | "profile_button_content_pressed" | "profile_button_content_locked" | "add_member_button" | "send_button" | "profile_button" | "horizontal_button_stack_panel" | "horizontal_button_stack_panel/add_friend_button" | "horizontal_button_stack_panel/add_member_button" | "horizontal_button_stack_panel/padding" | "horizontal_button_stack_panel/send_button" | "vertical_buttons_top_panel" | "vertical_buttons_top_panel/add_friend_button" | "vertical_buttons_top_panel/add_member_button" | "vertical_buttons_bottom_panel" | "vertical_buttons_bottom_panel/send_button" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "invite_screen" | "invite_screen_content" | "invite_screen_content/gamepad_helpers" | "invite_screen_content/invite_panel"; -export type JigsawEditor = "horizontal_buffer" | "vertical_buffer" | "common_text_label" | "text_edit_box" | "help_icon" | "toggle_with_label" | "toggle_with_label/toggle" | "toggle_with_label/toggle_label_padding" | "toggle_with_label/toggle_label_wrapper" | "toggle_with_label/toggle_label_wrapper/toggle_label" | "toggle_with_label/toggle_label_wrapper/toggle_label_disabled" | "data_item_title_and_edit" | "data_item_title_and_edit/data_title" | "data_item_title_and_edit/data_text_edit" | "data_item_title_and_edit_fill" | "data_item_title_and_toggle" | "data_item_title_and_toggle/data_title" | "data_item_title_and_toggle/toggle" | "exit_buttons" | "exit_buttons/done_button" | "exit_buttons/buffer" | "exit_buttons/help_button" | "scrolling_panel_wrapper" | "scrolling_panel_wrapper/scrolling_panel" | "scrolling_panel" | "scroll_panel_content" | "scroll_panel_content/target_pool_title_and_edit" | "scroll_panel_content/buffer_1" | "scroll_panel_content/name_title_and_edit" | "scroll_panel_content/buffer_2" | "scroll_panel_content/target_title_and_edit" | "scroll_panel_content/buffer_3" | "scroll_panel_content/final_block_title_and_edit" | "scroll_panel_content/buffer_4" | "scroll_panel_content/selection_and_placement_priority" | "scroll_panel_content/buffer_5" | "scroll_panel_content/joint_type_title_and_toggle" | "scroll_panel_content/buffer_6" | "selection_and_placement_priority" | "selection_and_placement_priority/selection_priority_title_and_edit" | "selection_and_placement_priority/buffer_1" | "selection_and_placement_priority/placement_priority_title_and_edit" | "button_panel_wrapper" | "button_panel_wrapper/exit_buttons" | "jigsaw_editor_panel" | "jigsaw_editor_panel/scrolling_panel" | "jigsaw_editor_panel/button_wrapper" | "jigsaw_editor_panel/button_wrapper/buttons" | "jigsaw_editor_content" | "jigsaw_editor_content/background_panel" | "jigsaw_editor_content/title" | "jigsaw_editor_content/jigsaw_editor_panel" | "jigsaw_editor_screen"; -export type LateJoin = "animation_panel" | "animation_panel/stacked_column" | "animation_panel/stacked_column/waiting_animating_text" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_b_and_padding" | "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b" | "late_join_pregame_screen" | "late_join_screen_content" | "late_join_screen_content/animation_panel" | "late_join_screen_content/gamepad_helpers"; -export type LibraryModal = "modal_button" | "modal_text_content" | "modal_ok" | "modal_cancel" | "in_game_prompt" | "fetch_error" | "content" | "content/fetch" | "content/ingame" | "content_wrapper" | "content_wrapper/content" | "background" | "library_modal_screen" | "text_panel" | "edu_icon" | "continue_button" | "paragraph" | "welcome_text_panel" | "welcome_text_panel/padding_1" | "welcome_text_panel/paragraph_1_wrapper" | "welcome_text_panel/paragraph_1_wrapper/edu_icon" | "welcome_text_panel/paragraph_1_wrapper/stack_buffer1" | "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel" | "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel/paragraph_1" | "welcome_text_panel/padding_2" | "welcome_text_panel/paragraph_two" | "welcome_text_panel/padding_3" | "welcome_text_panel/paragraph_three" | "welcome_scrolling_panel" | "welcome_panel_content" | "welcome_panel_content/background_panel" | "welcome_panel_content/welcome_scrolling_panel" | "welcome_panel_content/continue_button" | "welcome_panel" | "welcome_panel/welcome"; -export type LocalWorldPicker = "local_world_picker_screen" | "local_world_picker_content" | "local_world_picker_content/background" | "local_world_picker_content/panel_label" | "local_world_picker_content/content"; -export type Loom = "loom_label" | "arrow_icon" | "pattern_cell_image" | "container_cell_image" | "banner_outline" | "item_empty_image" | "banner_empty_image" | "dye_empty_image" | "pattern_item_empty_image" | "toolbar_background" | "highlight_slot_panel" | "highlight_slot_panel/highlight" | "highlight_slot_panel/white_border" | "pattern_slot_button" | "pattern_slot_button/hover" | "banner_pattern" | "pattern_button" | "pattern_button/banner_pattern" | "pattern_button/item_button_ref" | "scroll_grid" | "scroll_grid_panel" | "scroll_grid_panel/grid" | "scroll_panel" | "pattern_book_panel" | "pattern_book_panel/bg" | "pattern_book_panel/scroll_panel" | "result_slot_button" | "input_item_slot" | "dye_item_slot" | "material_item_slot" | "result_item_slot" | "input_slots_stack_panel" | "input_slots_stack_panel/input_item_slot" | "input_slots_stack_panel/padding_1" | "input_slots_stack_panel/dye_item_slot" | "input_slots_stack_panel/padding_2" | "input_slots_stack_panel/material_item_slot" | "result_banner_renderer" | "top_half_stack_panel" | "top_half_stack_panel/input_slots_holder" | "top_half_stack_panel/input_slots_holder/input_slots_stack_panel" | "top_half_stack_panel/padding_1" | "top_half_stack_panel/arrow_holder" | "top_half_stack_panel/arrow_holder/arrow_icon" | "top_half_stack_panel/padding_2" | "top_half_stack_panel/result_item_slot_holder" | "top_half_stack_panel/result_item_slot_holder/result_item_slot" | "top_half_stack_panel/padding_3" | "top_half_stack_panel/result_banner_outline" | "top_half_stack_panel/result_banner_outline/result_banner_renderer" | "top_half_panel" | "top_half_panel/top_half_stack_panel" | "right_panel" | "right_panel/common_panel" | "right_panel/loom_screen_inventory" | "right_panel/loom_screen_inventory/loom_label" | "right_panel/loom_screen_inventory/top_half_panel" | "right_panel/loom_screen_inventory/inventory_panel_bottom_half_with_label" | "right_panel/loom_screen_inventory/hotbar_grid" | "help_button" | "toolbar_panel" | "toolbar_panel/toolbar_background" | "toolbar_panel/toolbar_background/toolbar_stack_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1" | "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2" | "toolbar_anchor" | "toolbar_anchor/toolbar_panel" | "center_fold" | "center_fold/center_bg" | "screen_stack_panel" | "screen_stack_panel/pattern_book_panel" | "screen_stack_panel/center_fold" | "screen_stack_panel/right_panel" | "screen_stack_panel/toolbar_anchor" | "loom_panel" | "loom_panel/screen_stack_panel" | "loom_panel/container_gamepad_helpers" | "loom_panel/selected_item_details_factory" | "loom_panel/item_lock_notification_factory" | "loom_panel/inventory_selected_icon_button" | "loom_panel/inventory_take_progress_icon_button" | "loom_panel/flying_item_renderer" | "loom_screen"; -export type LoomPocket = "vertical_arrow_icon" | "banner_empty_image" | "dye_empty_image" | "pattern_item_empty_image" | "chest_item_renderer" | "banner_item_renderer" | "loom_item_renderer" | "input_item_slot" | "dye_item_slot" | "material_item_slot" | "result_item_slot" | "right_panel" | "right_panel/content" | "right_panel/content/bg" | "right_panel/content/loom_content_stack_panel" | "right_panel/navigation_tabs_holder" | "right_panel/navigation_tabs_holder/right_navigation_tabs" | "right_tab_loom" | "right_navigation_tabs" | "right_navigation_tabs/pocket_tab_close_and_help_button" | "right_navigation_tabs/fill" | "right_navigation_tabs/right_tab_loom" | "input_slots_stack_panel" | "input_slots_stack_panel/input_item_slot" | "input_slots_stack_panel/padding_1" | "input_slots_stack_panel/dye_item_slot" | "input_slots_stack_panel/padding_2" | "input_slots_stack_panel/material_item_slot" | "result_banner_outline" | "result_banner_outline/result_banner_renderer" | "loom_content_stack_panel" | "loom_content_stack_panel/label_holder" | "loom_content_stack_panel/label_holder/loom_label" | "loom_content_stack_panel/padding_1" | "loom_content_stack_panel/input_slots_holder" | "loom_content_stack_panel/input_slots_holder/input_slots_stack_panel" | "loom_content_stack_panel/padding_2" | "loom_content_stack_panel/banner_pattern_holder" | "loom_content_stack_panel/banner_pattern_holder/result_banner_outline" | "loom_content_stack_panel/padding_3" | "loom_content_stack_panel/arrow_holder" | "loom_content_stack_panel/arrow_holder/vertical_arrow_icon" | "loom_content_stack_panel/padding_4" | "loom_content_stack_panel/result_item_slot_holder" | "loom_content_stack_panel/result_item_slot_holder/result_item_slot" | "loom_content_stack_panel/padding_5" | "inventory_scroll_panel" | "pattern_button" | "banner_pattern" | "pattern_scroll_panel" | "left_panel" | "left_panel/gamepad_helpers_and_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs" | "left_panel/content" | "left_panel/content/bg" | "left_panel/content/inventory_scroll_panel" | "left_panel/content/pattern_scroll_panel" | "left_tab_patterns" | "left_tab_inventory" | "left_navigation_tabs" | "left_navigation_tabs/left_tab_patterns" | "left_navigation_tabs/padding" | "left_navigation_tabs/left_tab_inventory" | "pocket_hotbar_and_content_panels" | "loom_panel" | "loom_panel/pocket_hotbar_and_content_panels" | "loom_panel/container_gamepad_helpers" | "loom_panel/selected_item_details_factory" | "loom_panel/item_lock_notification_factory" | "loom_panel/inventory_selected_icon_button" | "loom_panel/inventory_take_progress_icon_button" | "loom_panel/flying_item_renderer"; -export type ManageFeed = "manage_feed_item_scrolling_panel" | "manage_feed_item_scrolling_panel/manage_feed_item_scrolling_panel_content" | "manage_feed_item_scrolling_panel_content" | "grid_panel" | "grid_panel/top_spacing_gap" | "grid_panel/manage_feed_loading_grid_item" | "grid_panel/manage_feed_grid" | "grid_panel/spacing_gap2" | "grid_panel/pagination_panel" | "pagination_panel" | "manage_feed_grid" | "manage_feed_grid_item" | "manage_feed_grid_item/image_panel_instance" | "manage_feed_grid_item/manage_feed_buttons_panel" | "manage_feed_grid_item/manage_feed_text_instance" | "manage_feed_grid_item/feed_timesince_instance" | "manage_feed_grid_item/nr_of_reports" | "manage_feed_grid_item/manage_player_pic_panel" | "manage_feed_grid_item/manage_feed_gamertag_instance" | "manage_feed_buttons_panel" | "manage_feed_buttons_panel/ignore_button" | "manage_feed_buttons_panel/delete_button" | "manage_feed_loading_grid_item" | "manage_feed_loading_grid_item/loading_image_panel" | "feed_buttons_panel_loading" | "feed_buttons_panel_loading/like_button_loading" | "feed_buttons_panel_loading/spacing_gap1" | "feed_buttons_panel_loading/comment_button_loading" | "feed_buttons_panel_loading/spacing_gap2" | "feed_buttons_panel_loading/options_button_loading" | "like_button_loading" | "comment_button_loading" | "options_button_loading" | "player_pic_panel_loading" | "player_pic_panel_loading/player_gamer_pic_loading" | "player_gamer_pic_loading" | "loading_image_panel" | "loading_image_panel/progress_loading_bars" | "loading_image_panel/manage_feed_image_loading" | "loading_image_panel/no_feed_item_content" | "manage_feed_image_loading" | "ignore_button" | "ignore_content_panel" | "ignore_content_panel/ignore_label" | "delete_button" | "delete_content_panel" | "delete_content_panel/delete_label" | "manage_feed_image" | "manage_feed_image_content_panel" | "manage_feed_image_content_panel/manage_feed_image" | "manage_feed_image_content_panel/textpost_content" | "textpost_content" | "image_panel" | "image_panel/manage_feed_image_content_panel" | "manage_player_pic_panel" | "manage_player_pic_panel/manage_player_gamer_pic" | "manage_player_gamer_pic" | "content" | "content/top_bar_gradient" | "content/gamepad_helpers" | "content/return_button" | "content/reported_items_label" | "content/manage_feed_item_scrolling_panel_instance" | "manage_feed_screen" | "manage_feed_screen_content" | "manage_feed_screen_content/transparent_background" | "manage_feed_screen_content/container" | "manage_feed_screen_content/container/content"; -export type ManifestValidation = "clipboard_icon" | "clipboard_icon_wrapper" | "clipboard_icon_wrapper/icon" | "trash_icon" | "trash_icon_wrapper" | "trash_icon_wrapper/icon" | "trash_icon_wrapper/progress_loading_bars" | "refresh_icon" | "refresh_icon_wrapper" | "refresh_icon_wrapper/icon" | "refresh_icon_wrapper/progress_loading_bars" | "section_divider" | "section_divider/divider_image" | "text_label" | "icon_image" | "progress_loading_bars" | "background" | "black_background_fill" | "error_pack_secondary_layout" | "error_pack_secondary_layout/black" | "error_pack_secondary_layout/black/stack_panel" | "error_pack_secondary_layout/black/stack_panel/stack_panel" | "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background" | "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background/icon" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/title" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/padding" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/pack_size" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/description" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/padding" | "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel" | "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/top_pad" | "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh" | "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh/button" | "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/pad" | "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete" | "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete/button" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pad" | "error_pack_secondary_layout/black/stack_panel/secondary_panel" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_0" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/title_text" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/space" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset/title" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_0" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_1" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/version_text" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/space" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset/version" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_1" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_2" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/path_text" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/space" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset/description" | "error_pack_content_layout" | "error_pack_content_layout/black" | "error_pack_content_layout/black/error_panel" | "error_pack_content_layout/black/error_panel/error_header_panel" | "error_pack_content_layout/black/error_panel/error_header_panel/error_type_panel" | "error_pack_content_layout/black/error_panel/error_header_panel/button" | "error_pack_content_layout/black/error_panel/padding_0" | "error_pack_content_layout/black/error_panel/error_text_panel" | "error_pack_content_layout/black/error_panel/error_text_panel/error_text" | "error_pack_content_layout/black/error_panel/error_text_panel/space" | "error_pack_content_layout/black/error_panel/error_text_panel/offset" | "error_pack_content_layout/black/error_panel/error_text_panel/offset/error_label" | "delete_button" | "delete_text_button" | "clipboard_button" | "refresh_button" | "refresh_text_button" | "pack_secondary_info" | "pack_secondary_info/layout" | "error_content_grid" | "pack_error_item" | "pack_error_item/secondary" | "pack_error_item/error_header" | "pack_error_item/error_header/error_text" | "pack_error_item/error" | "pack_error_group" | "pack_error_group/top_padding" | "pack_error_group/errors" | "pack_error_group/padding" | "common_scrolling_panel" | "common_content" | "scrolling_offsets" | "manifest_validation_scroll_content" | "manifest_validation_scroll_content/scrolling_panel" | "common_scroll_panel" | "manifest_validation_scroll_panel" | "manifest_validation_scroll_panel/pack_error_group" | "manifest_validation_screen" | "manifest_validation_screen_content" | "manifest_validation_screen_content/background"; -export type SdlLabel = "sdl_label_factory" | "sdl_label" | "sdl_mc_ten_label"; -export type SdlDropdowns = "sdl_dropdown_rows" | "sdl_dropdown_rows/container_panel" | "sdl_dropdown_rows/container_panel/toggle" | "sdl_dropdown_rows/container_panel/pad" | "sdl_rows_toggle"; -export type SdlImageRow = "image_row_factory" | "buffer_panel" | "single_image" | "single_image/image_with_border" | "single_image/image_with_border/screenshot_image" | "single_image/image_with_border/dark_border" | "single_image/image_with_border/progress_loading" | "single_image/image_selector" | "double_image" | "triple_image_with_buffer" | "triple_image_with_buffer/buffer_panel_in_1" | "triple_image_with_buffer/buffer_panel_in_2" | "triple_image_with_buffer/triple_image" | "triple_image_with_buffer/buffer_panel_out_1" | "triple_image_with_buffer/buffer_panel_out_2"; -export type SdlTextRow = "sdl_text_row_factory" | "sdl_header_component_factory" | "label_button" | "sdl_header_component_panel" | "sdl_header_component_panel/header_background" | "sdl_header_component_panel/header_internals" | "sdl_header_component_panel/header_highlight" | "sdl_header_component_panel/text_row_header_text" | "sdl_text_row_component_panel" | "sdl_text_row_component_panel/text_background" | "sdl_text_row_component_panel/text_row_selector" | "sdl_text_row_component_panel/text_row_background" | "sdl_text_row_component_panel/text_row_component_text" | "solo_text_row" | "solo_text_row/buffer_panel_front" | "solo_text_row/headercomp_and_textcomp_panel" | "solo_text_row/headercomp_and_textcomp_panel/text_row_header_text_panel" | "solo_text_row/headercomp_and_textcomp_panel/text_row_text_panel" | "solo_text_row/buffer_panel_back"; -export type MobEffect = "effect_background" | "main_background" | "button_background" | "effect_name" | "effect_timer" | "effect_icon" | "mob_effect_grid_panel" | "mob_effect_grid_panel/mob_effect_grid" | "mob_effect_grid" | "mob_effect_grid_item" | "mob_effect_grid_item/bg" | "mob_effect_grid_item/name" | "mob_effect_grid_item/timer" | "mob_effect_grid_item/icon" | "mob_effect_list_content_panel" | "mob_effect_list_content_panel/scrolling_panel" | "mob_effect_screen_close_button" | "close_button_panel" | "close_button_panel/bg" | "close_button_panel/close_button" | "mob_effect_content" | "mob_effect_content/bg" | "mob_effect_content/close_panel" | "mob_effect_content/content_panel" | "main_screen" | "main_screen/main_screen" | "mob_effect_screen"; -export type NonXblUserManagement = "black_tint_image" | "modal_title_text" | "modal_label_text" | "modal_label_text/padding" | "modal_label_text/text" | "modal_label_panel" | "modal_left_button" | "modal_middle_button" | "modal_rightcancel_button" | "three_buttons_panel" | "three_buttons_panel/left" | "three_buttons_panel/middle" | "three_buttons_panel/right" | "two_buttons_panel" | "two_buttons_panel/left" | "two_buttons_panel/right" | "single_button_panel" | "single_button_panel/left" | "modal_dialog_with_buttons" | "modal_dialog_with_buttons/background_with_buttons" | "modal_dialog_with_buttons/title" | "modal_dialog_with_buttons/text_with_buttons" | "modal_dialog_with_buttons/button_panel" | "modal_input_panel" | "modal_input_panel/black_tint_image" | "user_confirm_dialog_screen_content" | "user_confirm_dialog_screen_content/modal_input" | "user_confirm_dialog_screen_content/modal_input/modal_bg_buttons" | "user_confirm_dialog_screen"; -export type NpcInteract = "multiline_text_edit_control" | "text_edit_control" | "label_padding" | "main_stack_panel" | "skin_button" | "skin_model" | "skin_model_clipper" | "skins_grid_item" | "skins_grid_item/clip" | "skins_grid_item/clip/model" | "skins_grid_item/button" | "skins_grid_item/selectFrame" | "skins_grid" | "cycle_pack_button" | "cycle_pack_left_button" | "cycle_pack_right_button" | "banner_fill" | "skin_picker" | "skin_picker/left" | "skin_picker/sg" | "skin_picker/right" | "name_edit" | "advanced_button" | "advanced_button/button" | "dialog_button" | "dialog_button/button" | "basic_stack_panel" | "basic_stack_panel/top_pad" | "basic_stack_panel/name_label" | "basic_stack_panel/name_padding" | "basic_stack_panel/name_edit" | "basic_stack_panel/dialog_pre_padding" | "basic_stack_panel/dialog_label" | "basic_stack_panel/dialog_post_padding" | "basic_stack_panel/dialog__padding" | "basic_stack_panel/dialog_button" | "basic_stack_panel/appearance_pre_padding" | "basic_stack_panel/appearance_label" | "basic_stack_panel/appearance_post_padding" | "basic_stack_panel/skins" | "basic_stack_panel/advanced_button" | "basic_content" | "basic_content/basic" | "advanced_stack_panel" | "advanced_stack_panel/top_pad" | "advanced_stack_panel/add_help_text" | "advanced_stack_panel/middle_pad" | "advanced_stack_panel/actions" | "advanced_stack_panel/add_buttons" | "advanced_stack_panel/bottom_pad" | "action_title" | "plus_icon" | "plus_button" | "action_text_edit" | "maximized_action_edit" | "action_edit" | "action_edit/text_edit" | "action_edit/expand" | "button_name_edit" | "command_toggle" | "command_toggle_panel" | "command_toggle_panel/command_toggle" | "command_toggle_panel/toggle_label" | "action_mode" | "action_mode/button_mode_toggle_panel" | "action_mode/on_enter_toggle_panel" | "action_mode/on_exit_toggle_panel" | "button_name_label" | "url_notifications" | "url_notifications/empty_uri_warning" | "url_notifications/invalid_uri_warning" | "action_template" | "action_template/title" | "action_template/label_pad" | "action_template/edit" | "action_template/edit_pad" | "action_template/url_warning" | "action_template/url_pad" | "action_template/action_mode" | "action_template/mode_pad" | "action_template/button_name_label" | "action_template/button_name" | "action_command" | "action_url" | "padded_action" | "padded_action/action" | "padded_action/padding" | "action" | "action/trash" | "action/command" | "action/url" | "action_panel" | "add_button" | "help_label" | "add_help_section" | "add_help_section/text_url" | "add_help_section/text_url/tts_border" | "add_help_section/text_url/wrapper_panel_url" | "add_help_section/text_url/wrapper_panel_url/text_url_a" | "add_help_section/text_url/wrapper_panel_url/padding" | "add_help_section/text_url/wrapper_panel_url/text_url_b" | "add_help_section/padding" | "add_help_section/text_command" | "add_help_section/text_command/tts_border" | "add_help_section/text_command/wrapper_panel_command" | "add_help_section/text_command/wrapper_panel_command/text_command_a" | "add_help_section/text_command/wrapper_panel_command/padding" | "add_help_section/text_command/wrapper_panel_command/text_command_b" | "add_help_text" | "add_buttons" | "add_buttons/add_url" | "add_buttons/padding" | "add_buttons/add_command" | "advanced_scrolling_panel" | "advanced_scrolling_content" | "advanced_scrolling_content/advanced" | "message_model" | "message_model/model" | "clipped_message_model" | "clipped_message_model/model" | "message_model_window" | "message_model_window/model" | "message_model_window/immersive_reader_button" | "edit_box_background" | "npc_message" | "npc_message/label" | "npc_message/visibility_panel" | "npc_message/visibility_panel/place_holder" | "npc_message/background" | "text_scroll" | "student_message_bubble" | "student_message_bubble/dialog_panel" | "student_message_bubble/dialog_panel/text_scroll" | "bubble_point" | "student_message_section" | "student_message_section/model" | "student_message_section/point" | "student_message_section/message" | "student_button_label" | "student_button_label_panel" | "student_button_label_panel/url" | "student_button_label_panel/command" | "student_button" | "student_button/button" | "student_buttons" | "student_buttons/buttons" | "student_buttons/buttons/actions" | "student_stack_panel" | "student_stack_panel/top_pad" | "student_stack_panel/message" | "student_stack_panel/message_pad" | "student_stack_panel/buttons" | "student_view_content" | "student_view_content/student" | "student_view_content/close" | "close_button_base" | "close_button_base/default" | "close_button_base/hover" | "close_button_base/pressed" | "x_close_button" | "ignorable_x_close_button" | "ignorable_x_close_button/button" | "close_button_holder" | "close_button_holder/close_basic" | "close_button_holder/close_student_edit" | "close_button_holder/close_student" | "close_button_holder/close_maximized_action_edit" | "close_button_holder/close_advanced" | "main_content" | "main_content/basic" | "main_content/advanced" | "main_content/maximized_action_edit" | "main_content/close" | "root_panel" | "gamepad_helper_exit_text" | "close_text" | "npc_screen_contents" | "npc_screen_contents/teacher" | "npc_screen_contents/student" | "npc_screen_contents/npc_screen_close" | "npc_screen"; -export type OnlineSafety = "online_safety_proceed_button" | "online_safety_back_button" | "online_safety_description" | "ip_safety_description" | "online_safety_label_panel" | "ip_safety_label_panel" | "do_not_show_checkbox" | "do_not_show_checkbox/header_description_stack_panel" | "do_not_show_checkbox/header_description_stack_panel/checkbox_visuals" | "do_not_show_checkbox/header_description_stack_panel/buffer_panel" | "do_not_show_checkbox/header_description_stack_panel/buffer_panel/label" | "do_not_show_checkbox/header_description_stack_panel/another_panel" | "online_safety_dialog" | "ip_safety_dialog" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "online_safety_screen" | "online_safety_screen_content" | "online_safety_screen_content/online_safety_dialog" | "online_safety_screen_content/gamepad_helpers" | "ip_safety_screen" | "ip_safety_screen_content" | "ip_safety_screen_content/ip_safety_dialog" | "ip_safety_screen_content/gamepad_helpers"; -export type PackSettings = "background" | "screen" | "main_screen_content" | "pack_scroll_panel" | "scrolling_content" | "scrolling_content/content_tiering_panel" | "scrolling_content/generated_form" | "content_tiering_panel" | "content_tiering_panel/label_panel" | "content_tiering_panel/label_panel/content_tier_label" | "content_tiering_panel/label_panel/unsupported_content_tier_label" | "content_tiering_panel/slider_panel" | "content_tiering_panel/slider_panel/content_tier_slider" | "content_tiering_panel/incompatible_label_panel" | "content_tiering_panel/incompatible_label_panel/label"; -export type Panorama = "panorama_view" | "panorama_view/pan_left" | "panorama_view/screenshot" | "panorama_view/pan_right" | "panorama_input_panel" | "panorama_input_panel/image_border" | "panorama_input_panel/image_border/panorama_key_art" | "panorama_input_panel/image_border/progress_loading" | "pan_left_button" | "pan_right_button"; -export type PatchNotes = "solid_texture" | "image_with_background" | "image_with_background/image" | "image_with_background/image/loading_animation" | "white_image" | "patch_main_image" | "store_image" | "patch_notes_header_background" | "patch_notes_header_background/black_background" | "patch_notes_header_background/black_background/content" | "button_label_panel" | "button_label_panel/text_label" | "button_content" | "button_content/button_label2" | "patch_image" | "patch_notes_header_content_without_offer" | "patch_notes_header_content_without_offer/patch_image" | "patch_notes_header_content_with_offer" | "patch_notes_header_content_with_offer/patch_image" | "patch_notes_header_content_with_offer/padding" | "patch_notes_header_content_with_offer/store_item_section" | "patch_notes_header_content_with_offer/store_item_section/store_image" | "patch_notes_header_content_with_offer/store_item_section/padding" | "patch_notes_header_content_with_offer/store_item_section/store_button" | "store_button" | "store_button/store_button" | "store_button/loading_animation" | "patch_notes_header" | "patch_notes_header/patch_notes_background" | "scroll_content" | "scroll_content/padding_0" | "scroll_content/patch_notes_header" | "scroll_content/padding_1" | "scroll_content/tts_label_wrapper" | "patch_notes_panel" | "patch_notes_panel/patch_notes_text" | "patch_notes_panel/patch_notes_text/loading_animation" | "patch_notes_content" | "patch_notes_content/scrolling_panel" | "continue_button" | "patch_notes_dialog" | "patch_notes_screen" | "sunsetting_button_panel" | "sunsetting_button_panel/padding_0" | "sunsetting_button_panel/more_info_button" | "sunsetting_button_panel/padding_1" | "sunsetting_button_panel/continue_button" | "sunsetting_button_panel/padding_2" | "sunsetting_button_panel/sunsetting_toggle_panel" | "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel" | "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/checkbox_visuals" | "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel" | "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel/label" | "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/another_panel" | "sunsetting_content" | "sunsetting_content/scrolling_panel" | "sunsetting_dialog" | "sunsetting_screen"; -export type Pause = "pause_icon" | "feedback_icon" | "change_skin_icon" | "take_screenshot_icon" | "settings_icon" | "achievements_icon" | "alex_icon" | "profile_gamerpic" | "button_x" | "dressing_room_controller_button_content" | "dressing_room_controller_button_content/button_x" | "dressing_room_controller_button_content/button_label_panel" | "dressing_room_controller_button_content/button_label_panel/button_label_text_left" | "controller_button_label" | "column_frame" | "dressing_room_button_gamepad" | "dressing_room_button" | "profile_button_content" | "profile_button_content/button_offset_wrapper" | "profile_button_content/button_offset_wrapper/button_x" | "profile_button_content/gamerpic_offset_wrapper" | "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border" | "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic" | "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon" | "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black" | "profile_button_content/padding_middle" | "profile_button_content/vertically_central_text" | "profile_button_content/vertically_central_text/top_padding" | "profile_button_content/vertically_central_text/profile_button_label" | "profile_button_content/padding_right" | "profile_button" | "skin_viewer_panel" | "skin_viewer_panel/paper_doll_panel" | "skin_viewer_panel/paper_doll_panel/paper_doll" | "skin_viewer_panel/paper_doll_name_tag" | "skin_panel" | "skin_panel/interior" | "skin_panel_interior" | "skin_panel_interior/offset_panel" | "skin_panel_interior/offset_panel/viewer_panel" | "skin_panel_interior/fill_1" | "skin_panel_interior/change_profile_panel" | "skin_panel_interior/change_profile_panel/centering_panel_1" | "skin_panel_interior/change_profile_panel/centering_panel_1/dressing_room_button" | "skin_panel_interior/change_profile_panel/centering_panel_2" | "skin_panel_interior/change_profile_panel/centering_panel_2/dressing_room_button_gamepad" | "skin_panel_interior/change_profile_panel/centering_panel_3" | "skin_panel_interior/change_profile_panel/centering_panel_3/profile_button" | "pause_button_template" | "grid_button_template" | "return_to_game_button" | "realms_stories_button_panel" | "realms_stories_button_panel/realms_stories_button" | "realms_stories_button_panel/unread_story_count_panel" | "realms_stories_button" | "unread_story_count_panel" | "unread_story_count_panel/text" | "unread_story_count_panel/text/background" | "store_button_panel" | "store_button_panel/store_button" | "store_button_panel/store_error_button" | "store_button" | "store_error_button" | "store_error_button_content" | "store_error_button_content/marketplace_button_label" | "settings_button" | "how_to_play_button" | "invite_players_button" | "buy_button" | "quit_button" | "feedback_button" | "feedback_icon_button" | "feedback_icon_button/feedback_button" | "take_screenshot_gamepad_button_content" | "take_screenshot_gamepad_button_content/button_y" | "take_screenshot_gamepad_button_content/take_screenshot_icon" | "take_screenshot_gamepad_button" | "achievements_button_small" | "settings_button_small" | "take_screenshot_button" | "pause_screen" | "pause_screen_content" | "pause_screen_content/pause_screen_main_panels" | "pause_screen_content/skin_panel" | "pause_screen_content/friendsdrawer_button_panel" | "pause_screen_content/gamepad_helpers" | "pause_screen_content/keyboard_helpers" | "friendsdrawer_button_panel" | "friendsdrawer_button_panel/friendsdrawer_container_stack_panel" | "friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friendsdrawer_button" | "friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friends_drawer_ftue_popup" | "pause_screen_main_panels" | "pause_screen_main_panels/menu" | "left_buttons_panel" | "left_buttons_panel/filler" | "left_buttons_panel/trialTime" | "left_buttons_panel/the_rest_panel" | "smaller_buttons_panel" | "smaller_buttons_panel/stacked_column" | "smaller_buttons_panel/stacked_column/fill_1" | "smaller_buttons_panel/stacked_column/side_padding" | "smaller_buttons_panel/stacked_column/small_settings_button" | "smaller_buttons_panel/stacked_column/small_settings_button/small_settings_btn" | "smaller_buttons_panel/stacked_column/small_settings_padding" | "smaller_buttons_panel/stacked_column/small_achievements_button" | "smaller_buttons_panel/stacked_column/small_achievements_button/small_achievements_btn" | "smaller_buttons_panel/stacked_column/small_achievements_padding" | "smaller_buttons_panel/stacked_column/take_screenshot_btn" | "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_button" | "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_gamepad_button" | "smaller_buttons_panel/stacked_column/screenshot_padding" | "smaller_buttons_panel/stacked_column/fill_3" | "smaller_buttons_panel/padding_bottom" | "social_buttons_panel" | "social_buttons_panel/friendsbutton_panel" | "social_buttons_panel/friendsbutton_panel/friendsdrawer_button" | "social_buttons_panel/friendsbutton_panel/friends_drawer__ftue_popup" | "social_buttons_panel/invitebutton_panel" | "social_buttons_panel/invitebutton_panel/invite_button" | "social_buttons_panel/invitebutton_panel/vertical_padding_2" | "the_rest_panel" | "the_rest_panel/fill_1" | "the_rest_panel/pause_menu" | "the_rest_panel/fill_3" | "paused_text" | "green_tag" | "paused_text_panel" | "paused_text_panel/pause" | "paused_text_panel/horizontal_stack" | "paused_text_panel/horizontal_stack/pause_icon" | "paused_text_panel/horizontal_stack/fill_1" | "paused_text_panel/horizontal_stack/pause" | "transparent_background" | "non_transparent_background" | "menu_the_rest_panel" | "menu_the_rest_panel/menu_button_control" | "menu_button_control" | "menu_button_control/menu_background" | "pause_announcement_panel_type" | "pause_announcement_panel_type/horizontal_stack" | "pause_announcement_panel_type/horizontal_stack/fill_1" | "pause_announcement_panel_type/horizontal_stack/pause_text" | "pause_announcement_panel_type/horizontal_stack/fill_2" | "menu_background" | "menu_background/button_panel" | "menu_background/button_panel/title_image" | "menu_background/button_panel/title_image/image" | "menu_background/button_panel/fill_1" | "menu_background/button_panel/return_to_game_button" | "menu_background/button_panel/return" | "menu_background/button_panel/realms_stories_button_panel" | "menu_background/button_panel/realms_stories" | "menu_background/button_panel/buy_button" | "menu_background/button_panel/buy" | "menu_background/button_panel/store_button_panel" | "menu_background/button_panel/store_button_panel_padding" | "menu_background/button_panel/quit_button" | "menu_background/button_panel/smaller_buttons" | "menu_background/button_panel/pause_panel" | "info_panel_content_list" | "info_panel_content_list/player_list_scrolling_panel" | "info_panel_content_list/vertical_padding" | "info_panel_background" | "info_panel" | "info_panel/info_panel_background" | "info_panel/info_panel_list" | "player_panel_background" | "player_panel_background/player_list_scrolling_panel" | "player_list" | "player_list/vertical_padding_0" | "player_list/social_buttons_panel" | "player_list/players_label" | "player_list/vertical_padding_4" | "player_list/players_grid_panel" | "player_list/vertical_padding_5" | "player_list/invite_players_button_panel" | "player_list/vertical_padding_6" | "player_list/disconnected_from_multiplayer_label_panel" | "player_list/vertical_padding_7" | "player_lists" | "player_lists/normal_list" | "player_lists/scoreboard_list" | "player_list_scrolling_panel" | "disconnected_label" | "disconnected_from_multiplayer_label_panel" | "disconnected_from_multiplayer_label_panel/disconnected_from_xbox_live_label" | "disconnected_from_multiplayer_label_panel/disconnected_from_third_party_label" | "disconnected_from_multiplayer_label_panel/disconnected_from_adhoc_label" | "disconnected_from_multiplayer_label_panel/disconnected_from_crossplatform_multiplayer" | "disconnected_from_multiplayer_label_panel/disconnected_from_multiplayer" | "invite_players_button_panel" | "invite_players_button_panel/invite_players_button" | "ip_label" | "players_label" | "players_grid" | "player_grid_item" | "player_grid_item/player_grid_item_content" | "player_grid_item_content" | "player_grid_item_content/player_button_panel" | "player_grid_item_content/player_button_panel/player_button_banner" | "player_grid_item_content/player_button_panel/player_button_banner/player_button" | "player_grid_item_content/player_button_panel/player_button_banner/player_banner" | "player_grid_item_content/player_button_panel/player_permission_button_padding" | "player_grid_item_content/player_permission_button_panel" | "player_grid_item_content/player_permission_button_panel/player_permission_button" | "player_permission_button" | "player_permission_button_content" | "player_permission_button_content/permission_icon_image" | "vertical_padding" | "horizontal_padding" | "player_button_content" | "player_button_content/player_pic_panel" | "player_button_content/player_gamertag" | "player_button_content/platform_icon" | "player_button" | "player_banner" | "player_pic_panel" | "player_pic_panel/player_gamer_pic" | "player_pic_panel/player_local_icon" | "player_local_icon" | "player_gamer_pic" | "player_gamer_pic/player_panel_black_border" | "gametag_wrapper" | "gametag_wrapper/gamertag" | "platform_icon_panel" | "platform_icon_panel/platform_icon" | "player_gamertag" | "platform_icon" | "player_grid_banner_no_focus" | "player_grid_banner" | "player_grid_banner/player_grid_banner_no_focus" | "player_grid_banner/player_grid_banner_no_focus/player_button_content" | "player_grid_banner/focus_border_button" | "focus_border_button" | "focus_border_button/default" | "focus_border_button/hover" | "focus_border_button/pressed" | "focus_border" | "pause_screen_border" | "filler_panel" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_y" | "keyboard_helpers" | "keyboard_helpers/keyboard_helper_keys"; -export type Pdp = "download_progress" | "download_progress/stacker" | "download_progress/stacker/sizer_text" | "download_progress/stacker/sizer_text/download_progress_text" | "download_progress/stacker/sizer_bar" | "download_progress/stacker/sizer_bar/download_progress_bar" | "summary_box_button_panel" | "summary_box_button_panel/buttons_panel" | "summary_box_button_panel/download_buttons_panel" | "summary_box_button_panel/focus_border" | "interaction_button_content" | "interaction_button_content/line1_panel" | "interaction_button_content/line1_panel/upsell_text" | "interaction_button_panel" | "interaction_button_panel/content_action_button" | "interaction_button_panel/progress_bar" | "interaction_button_panel/focus_border" | "download_progress_small" | "download_progress_small/stacker" | "download_progress_small/stacker/sizer_text" | "download_progress_small/stacker/sizer_text/download_progress_text" | "download_progress_small/stacker/sizer_bar" | "download_progress_small/stacker/sizer_bar/download_progress_bar" | "progress_loading_anim" | "focus_border" | "focus_border/default" | "focus_border/default/loading_anim" | "focus_border/hover" | "focus_border/hover/loading_anim" | "focus_border/pressed" | "focus_border/pressed/loading_anim" | "purchase_button_base" | "deactivated_purchase_button_base" | "download_buttons_panel" | "download_buttons_panel/progress_panel" | "download_buttons_panel/progress_panel/progress_bar" | "smooth_purchase_buttons_panel" | "smooth_purchase_buttons_panel/activated_purchase_buttons_panel" | "smooth_purchase_buttons_panel/deactivated_purchase_buttons_panel" | "smooth_buttons_panel" | "smooth_buttons_panel/purchase_buttons_panel" | "smooth_buttons_panel/interact_filling_button" | "smooth_buttons_panel/interact_exit_world_filling_button" | "disabled_interact_label_formfitting" | "disabled_interact_label_formfitting/info_icon" | "disabled_interact_label_formfitting/info_icon_pad" | "disabled_interact_label_formfitting/interact_label_panel" | "disabled_interact_label_formfitting/interact_label_panel/interact_label_text_left" | "disabled_interact_label_formfitting/pad" | "interact_label_text" | "activated_smooth_purchase_buttons_panel" | "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel" | "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel/smooth_purchase_with_coins_button" | "activated_smooth_purchase_buttons_panel/pad_h1" | "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel" | "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel/purchase_with_currency_button" | "deactivated_purchase_hover_popup" | "deactivated_smooth_purchase_buttons_panel" | "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button" | "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/deactivated_purchase_hover_popup" | "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/content" | "deactivated_smooth_purchase_buttons_panel/pad_h1" | "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel" | "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel/deactivated_purchase_with_currency_button" | "smooth_save_share_button_panel" | "smooth_save_share_button_panel/pad_0" | "smooth_save_share_button_panel/share_button" | "smooth_save_share_button_panel/pad_1" | "smooth_save_share_button_panel/save_button" | "currency_purchase_label" | "currency_purchase_label/currency_purchase_label_text" | "coin_image" | "smooth_currency_purchase_label" | "smooth_currency_purchase_label/currency_purchase_label_text" | "discount_label" | "discount_label/label_panel" | "discount_label/label_panel/label" | "discount_label/icon_panel" | "discount_label/icon_panel/icon" | "coin_purchase_label_text" | "smooth_coin_purchase_label_formfitting" | "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel" | "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel" | "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner" | "smooth_coin_purchase_label_formfitting/markdown_panel" | "smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label" | "smooth_coin_purchase_label_formfitting/fill_pad_left" | "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel" | "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin" | "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel" | "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left" | "smooth_coin_purchase_label_formfitting/pad" | "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel" | "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin" | "smooth_coin_purchase_label_formfitting/fill_pad_right" | "disabled_smooth_coin_purchase_label_formfitting" | "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel" | "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel" | "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner" | "disabled_smooth_coin_purchase_label_formfitting/markdown_panel" | "disabled_smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label" | "disabled_smooth_coin_purchase_label_formfitting/fill_pad_left" | "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel" | "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel/info_bulb" | "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel" | "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin" | "disabled_smooth_coin_purchase_label_formfitting/info_icon_pad" | "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel" | "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left" | "disabled_smooth_coin_purchase_label_formfitting/pad" | "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel" | "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin" | "disabled_smooth_coin_purchase_label_formfitting/fill_pad_right" | "share_icon" | "share_label" | "share_label/share_image_offset_panel" | "share_label/share_image_offset_panel/link_share" | "save_label_panel" | "save_label_panel/heart_image" | "save_label_panel/progress_loading" | "save_label" | "save_label/save_image_offset_panel" | "save_label/save_image_offset_panel/full_heart" | "save_label/save_image_offset_panel/empty_heart" | "large_button_coin_purchase_label" | "large_button_coin_purchase_label/markdown_banner_filler_panel" | "large_button_coin_purchase_label/center_markdown_panel" | "large_button_coin_purchase_label/center_markdown_panel/markdown_banner" | "large_button_coin_purchase_label/sales_padding_0" | "large_button_coin_purchase_label/price_markdown_panel" | "large_button_coin_purchase_label/price_markdown_panel/price_markdown_label" | "large_button_coin_purchase_label/sales_padding_1" | "large_button_coin_purchase_label/left_coin_image_offset_panel" | "large_button_coin_purchase_label/left_coin_image_offset_panel/coin" | "large_button_coin_purchase_label/coin_purchase_label_panel" | "large_button_coin_purchase_label/coin_purchase_label_panel/coin_purchase_label_text" | "large_button_coin_purchase_label/right_coin_image_offset_panel" | "large_button_coin_purchase_label/right_coin_image_offset_panel/coin" | "large_button_coin_purchase_label/fill_padding_1" | "price_markdown_panel" | "price_markdown_panel/offer_price" | "price_markdown_panel/offer_price/text_strike_through" | "vertical_padding_2px" | "vertical_padding_4px" | "vertical_padding_fill" | "horizontal_padding_2px" | "horizontal_padding_4px" | "horizontal_padding_8px" | "horizontal_padding_fill" | "empty_content_panel" | "section_header" | "section_header/header_label" | "content_section_bg" | "content_section_bg/pad" | "content_section_bg/section_header" | "content_section_bg/bg_and_content" | "content_section_bg/bg_and_content/bg" | "content_section_boarder_bg" | "content_section_boarder_bg/pad" | "content_section_boarder_bg/bg_and_content" | "content_section_boarder_bg/bg_and_content/bg" | "content_section_boarder_bg/bg_and_content/bg/inner" | "content_section_boarder_bg/pad_3" | "content_section_boarder_bg/divider_3" | "summary_factory_object" | "summary_factory_object/summary" | "summary_factory_object/navigation_tab_section" | "summary_factory_object/update_notification_section" | "screenshot_carousel_factory_object" | "screenshot_carousel_factory_object/resource_pack_content_panel" | "screenshot_carousel_factory_object/pad_3" | "screenshot_carousel_factory_object/divider_3" | "image_gallery_factory_object" | "image_gallery_factory_object/resource_pack_content_panel" | "left_text_right_image_factory_object" | "left_text_right_image_factory_object/resource_pack_content_panel" | "right_text_left_image_factory_object" | "right_text_left_image_factory_object/resource_pack_content_panel" | "skin_pack_section_factory_object" | "skin_pack_section_factory_object/skin_pack_section_factory_content" | "skin_pack_section_factory_object/skin_pack_section_factory_content/skin_pack_content_panel" | "skin_pack_section_factory_object/skin_pack_section_factory_content/pad_3" | "skin_pack_section_factory_object/skin_pack_section_factory_content/divider_3" | "panorama_view_factory_object" | "panorama_view_factory_object/panorama_view_content_panel" | "panorama_view_factory_object/pad_3" | "panorama_view_factory_object/divider_3" | "ratings_factory_object" | "ratings_factory_object/rating_factory_object_content" | "focus_container_button" | "focus_container_button/default" | "bundle_summary_factory_object" | "bundle_summary_factory_object/bundle_summary_factory_object_content" | "pdp_cycle_offer_row_content" | "pdp_cycle_offer_row_content/store_row_panel" | "pdp_cycle_offer_row_content/pad_3" | "pdp_cycle_offer_row_content/divider_3" | "pdp_cycle_offer_row_section" | "recently_viewed_viewed_factory_object" | "scrolling_content_stack" | "warning_image" | "scaling_rating" | "scaling_rating/empty_rating" | "scaling_rating/empty_rating/full_rating" | "scaling_rating_new" | "scaling_rating_new/empty_rating" | "scaling_rating_new/empty_rating/full_rating" | "chart_section" | "chart_section/stack" | "chart_section/stack/star_number_panel" | "chart_section/stack/star_number_panel/star_number" | "chart_section/stack/star_panel" | "chart_section/stack/star_panel/star_img" | "chart_section/stack/pad_0" | "chart_section/stack/bar_panel" | "chart_section/stack/bar_panel/bar" | "chart_section/stack/bar_panel/bar/full_bar" | "chart_section/stack/pad_1" | "chart_section/stack/percent" | "ratings_chart" | "ratings_chart/5_star" | "ratings_chart/4_star" | "ratings_chart/3_star" | "ratings_chart/2_star" | "ratings_chart/1_star" | "ratings_chart_panel" | "ratings_chart_panel/ratings_chart_content" | "ratings_chart_panel/ratings_chart_content/pad_0" | "ratings_chart_panel/ratings_chart_content/title" | "ratings_chart_panel/ratings_chart_content/title/title_text" | "ratings_chart_panel/ratings_chart_content/pad_1" | "ratings_chart_panel/ratings_chart_content/rating_panel" | "ratings_chart_panel/ratings_chart_content/rating_panel/rating" | "ratings_chart_panel/ratings_chart_content/rating_panel/rating/rating_bar" | "ratings_chart_panel/ratings_chart_content/rating_panel/rating/pad" | "ratings_chart_panel/ratings_chart_content/rating_text_panel" | "ratings_chart_panel/ratings_chart_content/rating_text_panel/rating_text" | "ratings_chart_panel/ratings_chart_content/count_panel" | "ratings_chart_panel/ratings_chart_content/count_panel/count" | "ratings_chart_panel/ratings_chart_content/pad_2" | "ratings_chart_panel/ratings_chart_content/chart" | "ratings_chart_panel/ratings_chart_content/pad_3" | "ratings_box" | "ratings_box/ratings_panel_focus_point" | "ratings_box/ratings_full_panel" | "ratings_box/ratings_full_panel/ratings_chart_and_button" | "ratings_box/ratings_full_panel/ratings_chart_and_button/chart" | "ratings_box/ratings_full_panel/ratings_chart_and_button/pad_1" | "ratings_box/divider" | "user_rating_star_button" | "user_rating_star_button/default" | "user_rating_star_button/default/default_user_rating_star" | "user_rating_star_button/hover" | "user_rating_star_button/hover/hover_user_rating_star" | "user_rating_star_list_grid" | "ratings_interact_panel" | "ratings_interact_panel/title_text" | "ratings_interact_panel/pad_vertical_4px" | "ratings_interact_panel/rating_stars_and_button_panel" | "ratings_interact_panel/rating_stars_and_button_panel/fill_stars" | "ratings_interact_panel/rating_stars_and_button_panel/fill_stars/rating_buttons" | "ratings_interact_panel/rating_stars_and_button_panel/pad_3_percent" | "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel" | "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel/submit" | "ratings_interact_panel/pad_vertical_8px" | "ratings_interact_panel/fill_pad" | "ratings_interact_panel/fill_pad/text" | "ratings_interact_panel/send_feedback_button" | "ratings_interact_panel/pad_1" | "ratings_info_panel" | "ratings_info_panel/ratings" | "ratings_info_panel/ratings_right" | "ratings_info_panel/ratings_right/ratings_interact_panel" | "ratings_content_panel" | "panorama_view_content" | "panorama_view_content/panorama_panel" | "panorama_view_content/panorama_panel/panorama_content" | "skins" | "skin_pack_content_panel" | "resource_pack_content" | "resource_pack_content/screenshots" | "image_row_left_text_content" | "image_row_left_text_content/buffer_panel_front" | "image_row_left_text_content/text_section" | "image_row_left_text_content/text_section/left_header" | "image_row_left_text_content/text_section/left_text" | "image_row_left_text_content/text_section/buffer_panel_bottom" | "image_row_left_text_content/buffer_panel_mid" | "image_row_left_text_content/screenshots_single" | "image_row_left_text_content/buffer_panel_back" | "image_row_right_text_content" | "image_row_right_text_content/buffer_panel_front" | "image_row_right_text_content/screenshots_single" | "image_row_right_text_content/buffer_panel_mid" | "image_row_right_text_content/text_section" | "image_row_right_text_content/text_section/right_header" | "image_row_right_text_content/text_section/right_text" | "image_row_right_text_content/text_section/buffer_panel_bottom" | "image_row_right_text_content/buffer_panel_back" | "image_row_content" | "image_row_content/screenshots_triple" | "play_button" | "csb_expiration" | "csb_expiration/background" | "csb_expiration/background/content_stack_panel" | "csb_expiration/background/content_stack_panel/icon_wrapper" | "csb_expiration/background/content_stack_panel/icon_wrapper/icon" | "csb_expiration/background/content_stack_panel/text_wrapper" | "csb_expiration/background/content_stack_panel/text_wrapper/text" | "summary_content_left_side" | "summary_content_left_side/pad_left" | "summary_content_left_side/full_content" | "summary_content_left_side/full_content/top" | "summary_content_left_side/full_content/top/image" | "summary_content_left_side/full_content/top/image/key_image" | "summary_content_left_side/full_content/top/image/key_image/border" | "summary_content_left_side/full_content/top/image/key_image/csb_expiration_banner" | "summary_content_left_side/full_content/top/image/key_image/video_overlay_button" | "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/mask" | "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/default" | "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/hover" | "summary_content_left_side/full_content/top/image/key_image/rtx_label" | "summary_content_left_side/full_content/top/divider" | "summary_content_left_side/full_content/top/info" | "summary_content_left_side/full_content/top/info/summary_title_and_author_panel" | "summary_content_left_side/full_content/top/info/pad_fill" | "summary_content_left_side/full_content/top/info/glyph_section" | "summary_content_left_side/full_content/top/info/glyph_section/glyph_section_panel" | "summary_content_left_side/full_content/top/info/ratings_summary" | "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display" | "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel" | "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel/rating" | "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/summary_rating_button" | "summary_content_left_side/full_content/top/info/vibrant_visuals_badge_and_hover" | "summary_content_left_side/full_content/bottom" | "offer_title_label" | "title_and_author_panel" | "title_and_author_panel/title_panel" | "title_and_author_panel/author_button_panel" | "title_and_author_panel/author_button_panel/summary_author_button" | "description_label" | "warning_stack_panel" | "warning_stack_panel/warning_icon" | "warning_stack_panel/pad_0" | "warning_stack_panel/warning_text_panel" | "warning_stack_panel/warning_text_panel/warning_text" | "warning_panel" | "warning_panel/background" | "warning_panel/content_stack_panel" | "description_toggle_show_button_panel" | "description_toggle_show_button_panel/description_bottom_right_button_border" | "description_toggle_show_button_panel/description_toggle_show_button" | "description_toggle_show_button_panel/warning_icon" | "vibrant_visuals_underline_button" | "vibrant_visuals_hover_popup" | "vibrant_visuals_badge_display" | "vibrant_visuals_badge_display/vibrant_visuals_underline_button" | "vibrant_visuals_badge_and_hover" | "vibrant_visuals_badge_and_hover/vibrant_visuals_hover_popup" | "vibrant_visuals_badge_and_hover/vibrant_visuals_badge_display" | "glyph_icon" | "glyph_count_label" | "glyph_count_underline_button" | "glyph_count_hover_underline_button_panel" | "glyph_count_hover_underline_button_panel/glyph_hover_popup" | "glyph_count_hover_underline_button_panel/glyph_count_underline_button" | "glyph_icon_with_count" | "glyph_icon_with_count/glyph_icon" | "glyph_icon_with_count/horizontal_padding" | "glyph_icon_with_count/item_glyph_count_panel_label" | "glyph_panel_hover_popup" | "glyph_panel_mashup_hover_popup" | "mashup_glyph_tooltip_content" | "mashup_glyph_tooltip_content/mashup_text_row" | "mashup_glyph_tooltip_content/mashup_text_row/info_icon" | "mashup_glyph_tooltip_content/mashup_text_row/mashup_line_one" | "mashup_glyph_tooltip_content/mashup_line_two" | "mashup_glyph_tooltip_content/offset_panel" | "mashup_glyph_tooltip_content/offset_panel/basic_vertical_glyph_section_panel" | "glyph_section_mashup" | "glyph_section_skin" | "glyph_section_resource_pack" | "glyph_section_world" | "glyph_section_addon" | "basic_vertical_glyph_section_panel" | "basic_vertical_glyph_section_panel/glyph_section_skin" | "basic_vertical_glyph_section_panel/glyph_section_world" | "basic_vertical_glyph_section_panel/glyph_section_resource_pack" | "basic_vertical_glyph_section_panel/glyph_section_addon" | "vertical_glyph_section_panel" | "vertical_glyph_section_panel/glyph_section_mashup" | "vertical_glyph_section_panel/basic_vertical_glyph_section_panel" | "summary_text_panel" | "summary_text_panel/top_interact_button_stack" | "summary_text_panel/top_interact_button_stack/top_interact" | "summary_text_panel/apply_to_realm_panel" | "summary_text_panel/apply_to_realm_panel/apply_to_realm_button" | "summary_text_panel/in_csb_panel" | "summary_text_panel/in_csb_panel/in_csb_button" | "summary_text_panel/progress_loading_anim_panel" | "summary_text_panel/progress_loading_anim_panel/progress_loading_anim" | "summary_text_panel/pad_0" | "summary_text_panel/disclaimer_panel" | "summary_text_panel/pad_1" | "summary_text_panel/save_share_button_panel" | "summary_text_panel/pad_2" | "info_bulb_image" | "info_bulb_image_small" | "info_bulb_image_small_centered" | "info_bulb_image_small_centered/top_filler" | "info_bulb_image_small_centered/middle_panel" | "info_bulb_image_small_centered/middle_panel/front_filler" | "info_bulb_image_small_centered/middle_panel/info_bulb" | "info_bulb_image_small_centered/middle_panel/bottom_filler" | "info_bulb_image_small_centered/bottom_filler" | "realms_incompatable_content" | "realms_incompatable_content/realms_content_stack_panel" | "realms_incompatable_content/realms_content_stack_panel/info_bulb_image" | "realms_incompatable_content/realms_content_stack_panel/padding" | "realms_incompatable_content/realms_content_stack_panel/realms_incompatable_button_label" | "apply_to_realm_button" | "in_csb_button" | "read_more_button" | "read_more_button/default" | "read_more_button/hover" | "read_more_button/pressed" | "summary_content_right_side" | "summary_content_right_side/pad_middle" | "summary_content_right_side/text" | "summary_content_right_side/entitlements_progress_panel" | "summary_content_right_side/entitlements_progress_panel/progress_loading" | "summary_content_right_side/pad_right" | "summary_content_whole_stack_panel" | "summary_content_whole_stack_panel/left_side" | "summary_content_whole_stack_panel/divider_panel" | "summary_content_whole_stack_panel/right_side" | "summary_content_panel" | "summary_content_panel/pad_top" | "summary_content_panel/summary_content_whole_stack" | "summary_content_panel/pad_3" | "summary_content_panel/divider_3" | "appearance_status_image_panel" | "appearance_status_image_panel/limited_status_image" | "appearance_status_image_panel/no_restrictions_status_image" | "appearance_status_content" | "appearance_status_content/appearance_status_image_panel" | "appearance_status_content/last_update_panel" | "appearance_status_content/last_update_panel/last_update_label" | "dynamic_tooltip_notification_panel" | "dynamic_tooltip_notification_panel/default" | "dynamic_tooltip_notification_panel/hover" | "dynamic_tooltip_notification_panel/pressed" | "update_notification_content" | "update_notification_content/dynamic_tooltip_notification_panel" | "update_notification_content/status" | "update_notification_stack_panel" | "update_notification_stack_panel/pad_0" | "update_notification_stack_panel/content" | "update_notification_stack_panel/pad_1" | "tag_base" | "tag_button_panel" | "tag_button_panel/button" | "tag_button_panel/button/default" | "tag_button_panel/button/hover" | "tag_button_panel/button/pressed" | "tag_button_panel/button/label" | "tag_row_factory" | "player_count_button_panel" | "player_count_button_panel/player_count_button" | "player_count_button_panel/comma" | "player_count_factory" | "language_button_panel" | "language_button_panel/language_button" | "language_button_panel/comma" | "language_row_factory" | "description_inner_panel" | "description_inner_panel/description_stack_panel" | "description_inner_panel/description_stack_panel/pad_0" | "description_inner_panel/description_stack_panel/title_stack_panel" | "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel" | "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_label_icon" | "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/pad_0" | "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel" | "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel/title_label" | "description_inner_panel/description_stack_panel/title_stack_panel/pad_0" | "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel" | "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel/divider" | "description_inner_panel/description_stack_panel/title_stack_panel/pad_1" | "description_inner_panel/description_stack_panel/description_text_panel_full" | "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded" | "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/description_label" | "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/pad_0" | "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/warning_panel" | "description_inner_panel/description_stack_panel/description_text_panel_full/button_panel" | "description_inner_panel/description_stack_panel/description_text_panel_collapsed" | "description_inner_panel/description_stack_panel/description_text_panel_collapsed/description_text_collapsed" | "description_inner_panel/description_stack_panel/description_text_panel_collapsed/collapsed_show_more_panel" | "description_inner_panel/description_stack_panel/pad_1" | "description_inner_panel/description_stack_panel/divider_panel" | "description_inner_panel/description_stack_panel/divider_panel/divider" | "description_inner_panel/description_stack_panel/pad_2" | "description_inner_panel/description_stack_panel/tags_panel" | "description_inner_panel/description_stack_panel/tags_panel/label_text_panel" | "description_inner_panel/description_stack_panel/tags_panel/label_text_panel/label_text" | "description_inner_panel/description_stack_panel/tags_panel/pad" | "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel" | "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory_with_rows" | "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory" | "description_inner_panel/description_stack_panel/genre_panel" | "description_inner_panel/description_stack_panel/genre_panel/label_text" | "description_inner_panel/description_stack_panel/genre_panel/pad" | "description_inner_panel/description_stack_panel/genre_panel/text_panel" | "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel" | "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/genre_button" | "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/pad_0" | "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/slash_divider" | "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/subgenre_button" | "description_inner_panel/description_stack_panel/players_panel" | "description_inner_panel/description_stack_panel/players_panel/label_text" | "description_inner_panel/description_stack_panel/players_panel/pad" | "description_inner_panel/description_stack_panel/players_panel/text_panel" | "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel" | "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel" | "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_button_factory" | "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/pad" | "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_range_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" | "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/note_text" | "description_inner_panel/description_stack_panel/languages_panel" | "description_inner_panel/description_stack_panel/languages_panel/label_text_panel" | "description_inner_panel/description_stack_panel/languages_panel/label_text_panel/label_text" | "description_inner_panel/description_stack_panel/languages_panel/pad" | "description_inner_panel/description_stack_panel/languages_panel/languages_factory" | "description_inner_panel/description_stack_panel/pad_3" | "description_inner_panel/description_stack_panel/show_less_button_panel" | "description_section" | "changelog_section" | "bundle_thumbnail" | "bundle_thumbnail_section_content" | "bundle_thumbnail_section_content/bundle_thumbnail_grid" | "bundle_thumbnail_section" | "price_panel" | "price_panel/coin_non_sale_price_label" | "price_panel/price_padding" | "price_panel/offer_prompt_panel" | "price_panel/offer_prompt_panel/offer_status_text" | "price_panel/padding_3" | "price_panel/coin_panel" | "price_panel/coin_panel/offer_coin_icon" | "rating_and_coins_panel" | "rating_and_coins_panel/rating_panel" | "rating_and_coins_panel/rating_padding_coin" | "rating_and_coins_panel/price_panel" | "bundle_offer_texture" | "bundle_offer_texture/texture" | "bundle_offer_texture/texture/border" | "bundle_offer_info" | "bundle_offer_info/top_padding" | "bundle_offer_info/offer_title_and_author_panel" | "bundle_offer_info/glyph_section" | "bundle_offer_info/glyph_description_padding" | "bundle_offer_info/description_panel" | "bundle_offer_info/description_padding" | "bundle_offer_info/description_padding_bottom" | "bundle_offer_info/rating_and_price_panel" | "bundle_offer_info/bottom_padding" | "bundle_offer_summary_grid_item_content" | "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel" | "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/focus_border" | "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel" | "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/key_art" | "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/mid_padding" | "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/info" | "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/right_padding" | "bundle_offer_summary_grid_item" | "bundle_offer_summary_grid_item/bundle_offer_summary_button" | "bundle_offer_content_section" | "bundle_offer_content_section/bundle_grid" | "bundle_summary_section_panel" | "bundle_summary_section_panel/bundle_summary_section" | "bundle_summary_section_panel/bundle_summary_section/bundle_header_and_thumnails_section" | "bundle_summary_section_panel/bundle_summary_section/mid_padding" | "bundle_summary_section_panel/bundle_summary_section/bundle_offers_info_section" | "bundle_summary_section_panel/bundle_summary_section/mid_padding_2" | "bundle_summary_section_panel/bundle_summary_section/interact_panel" | "bundle_summary_section_panel/bundle_summary_section/interact_panel/bundle_interact" | "bundle_summary_section_panel/divider_3" | "pdp_screen" | "mashup_screen_content" | "mashup_screen_content/header" | "mashup_screen_content/popup_dialog_factory" | "mashup_screen_main" | "mashup_screen_main/pack_content" | "mashup_screen_main/progress_loading"; -export type PdpScreenshots = "banner_empty" | "screenshot_carousel" | "screenshot_carousel/screenshot_carousel_content" | "screenshot_carousel/screenshot_carousel_content/cycle_pack_left_button" | "screenshot_carousel/screenshot_carousel_content/screenshots_grid" | "screenshot_carousel/screenshot_carousel_content/cycle_pack_right_button" | "screenshots_grid" | "screenshots_grid/left_image_panel" | "screenshots_grid/middle_image_panel" | "screenshots_grid/right_image_panel" | "screenshots_grid_item" | "screenshots_grid_item/frame" | "screenshots_grid_item/frame/screenshot_button" | "screenshots_grid_item/frame/screenshot_button/hover" | "screenshots_grid_item/frame/screenshot_button/pressed" | "screenshots_grid_item/screenshot_image" | "screenshots_grid_item/progress_loading"; -export type Permissions = "permissions_screen" | "permissions_screen_content" | "permissions_screen_content/top_bar_panel" | "permissions_screen_content/content_panel" | "top_bar_panel" | "top_bar_panel/top_bar" | "top_bar_panel/back_button" | "top_bar_panel/gamepad_helper_b" | "top_bar_panel/title_label" | "content_panel" | "content_panel/content_stack_panel" | "content_panel/content_stack_panel/content_padding_1" | "content_panel/content_stack_panel/ip_label" | "content_panel/content_stack_panel/world_label" | "content_panel/content_stack_panel/content_padding_2" | "content_panel/content_stack_panel/player_and_permissions_panel" | "player_and_permissions_panel" | "player_and_permissions_panel/selector_area" | "player_and_permissions_panel/content_area" | "selector_area" | "selector_area/player_scrolling_panel" | "content_area" | "content_area/permissions_options_background" | "content_area/permissions_options_background/permissions_options_background_image" | "content_area/permissions_options_background/permissions_options_background_image/permissions_options_scrolling_panel" | "content_area/inactive_modal_pane_fade" | "kick_button" | "ban_button" | "players_grid_panel" | "players_grid_panel/players_grid" | "players_grid" | "player_grid_item" | "player_grid_item/player_toggle" | "player_grid_item/inactive_modal_pane_fade" | "permissions_options_scrolling_panel" | "permissions_options_panel" | "permissions_options_panel/inner_permissions_options_panel" | "permissions_options_panel/inner_permissions_options_panel/permissions_options_stack_panel" | "permissions_options_stack_panel" | "permissions_options_stack_panel/permissions_padding_0" | "permissions_options_stack_panel/world_template_option_lock_panel" | "permissions_options_stack_panel/world_template_option_lock_panel/option_info_label" | "permissions_options_stack_panel/permissions_padding_1" | "permissions_options_stack_panel/permission_level_dropdown" | "permissions_options_stack_panel/permissions_padding_2" | "permissions_options_stack_panel/permissions_options_grid" | "permissions_options_stack_panel/permissions_padding_3" | "permissions_options_stack_panel/permissions_kick_button_panel" | "permissions_options_stack_panel/permissions_padding_4" | "permissions_options_stack_panel/permissions_ban_button_panel" | "permissions_options_stack_panel/permissions_padding_5" | "permissions_options_grid" | "permissions_options_grid_item" | "permissions_options_grid_item/option_label_panel" | "permissions_options_grid_item/option_label_panel/option_label" | "permissions_options_grid_item/option_state_label_panel" | "permissions_options_grid_item/option_state_label_panel/option_state_label" | "permissions_options_grid_item/option_toggle" | "permissions_kick_button_panel" | "permissions_kick_button_panel/kick_button" | "permissions_ban_button_panel" | "permissions_ban_button_panel/ban_button" | "title_label" | "ip_label" | "world_label" | "gamertag_label" | "option_state_label" | "option_label" | "top_bar" | "banner_background" | "player_local_icon" | "player_gamer_pic" | "player_gamer_pic/player_panel_black_border" | "back_button" | "back_button_content" | "back_button_content/chevron_panel" | "back_button_content/chevron_panel/left_chevron" | "back_button_content/back_button_padding" | "back_button_content/label_panel" | "back_button_content/label_panel/label" | "player_toggle" | "player_button_content" | "player_button_content/player_pic_panel" | "player_button_content/player_button_padding_1" | "player_button_content/gamertag_panel" | "player_button_content/gamertag_panel/gamertag_label" | "player_button_content/icon_panel" | "player_button_content/icon_panel/dropdown_icon_image" | "player_button_content/player_button_padding_2" | "player_pic_panel" | "player_pic_panel/player_gamer_pic" | "player_pic_panel/player_local_icon" | "option_toggle" | "permission_level_dropdown" | "radio_title_and_icon" | "radio_title_and_icon/radio_icon" | "radio_title_and_icon/radio_title" | "radio_content_with_title_bar" | "radio_content_with_title_bar/title_and_icon" | "radio_content_with_title_bar/helper_text" | "radio_content_with_title_bar/bottom_padding" | "radio_visuals_with_title" | "radio_visuals_with_title/radio_content" | "radio_visuals_with_title_hover" | "radio_visuals_with_title_hover/radio_content" | "permissions_visitor_visuals_with_title_normal" | "permissions_visitor_visuals_with_title_hover" | "permissions_member_visuals_with_title_normal" | "permissions_member_visuals_with_title_hover" | "permissions_op_visuals_with_title_normal" | "permissions_op_visuals_with_title_hover" | "permissions_visitor_radio_visuals_normal" | "permissions_visitor_radio_visuals_hover" | "permissions_member_radio_visuals_normal" | "permissions_member_radio_visuals_hover" | "permissions_op_radio_visuals_normal" | "permissions_op_radio_visuals_hover" | "permissions_custom_radio_visuals_normal" | "permissions_custom_radio_visuals_hover" | "permission_level_radio" | "permission_level_radio/radio_with_label_core" | "permission_level_dropdown_content" | "permission_level_dropdown_state_content" | "permission_level_dropdown_state_content/icon_panel" | "permission_level_dropdown_state_content/icon_panel/dropdown_icon_image" | "permission_level_dropdown_state_content/dropdown_label_padding" | "permission_level_dropdown_state_content/label_panel" | "permission_level_dropdown_state_content/label_panel/label" | "permission_level_dropdown_state_content/arrow_panel" | "permission_level_dropdown_state_content/arrow_panel/arrow_image"; -export type PersonaCastCharacterScreen = "cast_modal_bottom_bar" | "cast_modal_bottom_bar/0" | "cast_common_dialog_background" | "cast_common_dialog_background/top_bar" | "cast_common_dialog_background/popup_inner_contents" | "cast_common_dialog_background/cast_modal_bottom_bar" | "cast_modal_panel" | "cast_modal_panel/cast_preview_modal_content" | "popup_dialog__cast_character_select" | "popup_dialog__cast_character_select/background" | "popup_dialog__cast_character_select/popup_background" | "common_dcast_popup_framework" | "common_cast_modal_top_bar" | "common_cast_modal_top_bar/title_panel" | "common_cast_modal_top_bar/close_button_holder" | "cast_character_select_main" | "cast_character_select_main/modal_inner_background" | "cast_character_select_main/main_content_horizontal_stack" | "cast_character_select_main/main_content_horizontal_stack/cast_grid" | "cast_character_select_main/main_content_horizontal_stack/vertical_centerer" | "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/top_fill" | "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/skin_viewer_panel" | "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_fill" | "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_padding" | "cast_scroll_view_panel" | "cast_grid_with_buttons" | "cast_grid_with_buttons/top_spacing" | "cast_grid_with_buttons/cast_grid" | "cast_grid_with_buttons/bottom_spacing" | "cast_grid_panel" | "cast_grid_panel/cast_grid" | "cast_single_character_button_panel" | "cast_single_character_button_panel/cast_character_button" | "cast_single_character_button_panel/cast_character_button/background_image" | "cast_single_character_button_panel/cast_character_button/selected" | "cast_single_character_button_panel/cast_character_button/default" | "cast_single_character_button_panel/cast_character_button/hover" | "cast_single_character_button_panel/cast_character_button/pressed" | "cast_single_character_button_panel/cast_character_button/button_outline" | "cast_single_character_button_panel/cast_character_button/button_outline/cast_character_content" | "cast_character_button_content_panel" | "cast_character_button_content_panel/cast_single_character_content_visible_panel" | "cast_character_button_content_panel/cast_single_character_content_visible_panel/cast_single_character_button_content" | "in_use_grid_item" | "persona_cast_paper_doll_panel" | "persona_cast_paper_doll_panel/preset_input_panel" | "character_loading_anim" | "character_loading_anim_panel" | "character_loading_anim_panel/character_loading_anim" | "skin_viewer_panel_skin_model" | "skin_viewer_panel_skin_model/skin_model" | "cast_character_screen_right_side_model" | "cast_character_screen_right_side_model/skin_model_panel" | "cast_character_screen_right_side_model/skin_model_loading_anim" | "cast_character_screen_right_side_model/skin_model_label" | "common_background_blocker" | "common_background_blocker/modal_background_button" | "common_preview_page_framework" | "common_preview_page_framework/background" | "common_preview_page_framework/cast_preview_modal" | "cast_preview_page_one" | "cast_preview_page_two" | "cast_preview_page_one_inner_section" | "cast_preview_page_one_inner_section/modal_inner_background" | "cast_preview_page_one_inner_section/cast_content" | "cast_preview_page_one_inner_section/cast_content/cast_image_cycler" | "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel" | "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel" | "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel/text_cycler" | "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/buffer_panel" | "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_shoulder_button_display_panel" | "chevron_image_panel" | "chevron_image_panel/chevron_image" | "chevron_button" | "shift_page_panel" | "shift_page_panel/centering_panel" | "shift_page_panel/centering_panel/0" | "shift_page_left_panel" | "shift_page_right_panel" | "horizontal_8px_padding" | "horizontal_20px_padding" | "ftue_subpage_indicator_panel" | "ftue_subpage_indicator_panel/controls_shoulder_button_display" | "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_padding" | "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_panel" | "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_padding" | "ftue_subpage_indicator_panel/controls_shoulder_button_display/page_indicator_grid" | "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_padding" | "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_panel" | "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_padding" | "individaul_cast_page_indicator" | "individaul_cast_page_indicator/panel_when_current_page" | "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding" | "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding/cast_dot" | "individaul_cast_page_indicator/panel_when_not_current_page" | "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding" | "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding/cast_dot" | "how_to_section" | "how_to_section/how_to_image" | "how_to_section/how_to_label_section" | "how_to_section/how_to_label_section/how_to_label" | "cast_preview_page_two_inner_section" | "cast_preview_page_two_inner_section/how_to_section_stack" | "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_left" | "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel" | "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel/divider" | "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_right"; -export type PersonaCommon = "icon_image" | "mashup_world" | "mashup_hangar" | "mashup_paintbrush" | "info_bulb_icon" | "green_checkmark_icon" | "persona_screen_background_content" | "loading_icon" | "focus_border" | "selected_border" | "equipped_border" | "progress_loading" | "progress_loading/progress_loading" | "title_rarity_positionable_title" | "generic_title_panel" | "generic_title_panel/title_label" | "rarity_bar" | "item_rarity_color_background" | "piece_item_display" | "piece_item_display/item_renderer" | "piece_item_display/item_renderer/background" | "piece_item_display/item_renderer/item_image" | "piece_item_display/item_renderer/rarity_bar_panel" | "piece_item_display/item_renderer/extra_control" | "piece_item_display/item_renderer/extra_control/control_instance" | "piece_item_display/loading_progress_spinner" | "wheel_state" | "emote_label" | "touch_name_label" | "emote_image" | "emote_image/empty" | "emote_image/emote_preview" | "emote_image/emote_preview/valid" | "emote_image/emote_preview/valid_no_image" | "emote_image/emote_preview/valid_no_image/valid_text" | "keyboard_hotkey_helpers" | "keyboard_hotkey_helpers/keyboard_1" | "keyboard_hotkey_helpers/keyboard_2" | "keyboard_hotkey_helpers/keyboard_3" | "keyboard_hotkey_helpers/keyboard_4" | "gamepad_hotkey_helpers" | "gamepad_hotkey_helpers/quick_select_gamepad_helpers" | "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_y" | "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_b" | "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_a" | "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_x" | "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel" | "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel/analog_select_gamepad_helper" | "emote_wheel_slot_content" | "emote_wheel_slot_content/image_0" | "emote_wheel_slot_content/touch_label_0" | "selection_wheel" | "emote_selection_wheel" | "emote_selection_wheel/default_state" | "emote_selection_wheel/emote_slot_0_content" | "emote_selection_wheel/emote_slot_1_content" | "emote_selection_wheel/emote_slot_2_content" | "emote_selection_wheel/emote_slot_3_content" | "emote_wheel_panel" | "emote_wheel_panel/emote_name" | "emote_wheel_panel/emote_wheel_content_panel" | "emote_wheel_panel/emote_wheel_content_panel/gamepad_helpers" | "emote_wheel_panel/emote_wheel_content_panel/keyboard_helpers" | "emote_wheel_panel/emote_wheel_content_panel/emote_wheel"; -export type PersonaPopups = "no_content_panel" | "common_image" | "common_icon" | "create_persona_choice_checked_image" | "create_persona_choice_unchecked_image" | "modal_window_input_blocker" | "modal_popup_background" | "general_text_field" | "title_text" | "popup_title" | "popup_content" | "popup_ok_button" | "popup_frame" | "popup_frame/title_label" | "popup_frame/close_button" | "popup_frame/content" | "popup_frame/ok_button" | "popup_info_panel" | "popup_info_panel/background" | "popup_info_panel/frame" | "common_dialog" | "common_dialog/background" | "common_dialog/panel" | "popup_dialog_bg" | "popup_dialog_bg/background_image" | "popup_dialog_bg/title_panel" | "popup_dialog_bg/title_panel/title" | "popup_dialog_bg/popup_content" | "icon_title_bar" | "icon_title_bar/icon" | "icon_title_bar/padding" | "icon_title_bar/text_title_panel" | "popup_common" | "popup_common/background" | "popup_common/background/text_stack_panel" | "popup_dialog__difference_information" | "differences_left_details" | "differences_left_section" | "differences_left_section/title_bar" | "differences_left_section/padding_1" | "differences_left_section/details" | "differences_detail_image" | "differences_title_card_display" | "differences_title_card_display/left" | "differences_title_card_display/padding_1" | "differences_title_card_display/right" | "differences_persona_detail_section" | "differences_classic_skin_detail_section" | "different_info_panel_contents" | "different_info_panel_contents/character_display" | "different_info_panel_contents/item_1_padding" | "different_info_panel_contents/divider" | "different_info_panel_contents/item_2_padding" | "different_info_panel_contents/classic_skin_display" | "popup_dialog__preview_difference_information" | "popup_dialog__delete_persona" | "popup_dialog__delete_persona/popup_dialog_bg" | "popup_dialog_delete_persona_content" | "popup_dialog_delete_persona_content/image" | "popup_dialog_delete_persona_content/message" | "popup_dialog_delete_persona_content/buttons" | "alex_warning" | "delete_popup_dialog_message" | "delete_persona_button_stack" | "delete_persona_button_stack/left_button" | "delete_persona_button_stack/padding" | "delete_persona_button_stack/right_button" | "delete_persona_left_button" | "delete_persona_right_button" | "popup_dialog__create_persona" | "create_persona_display" | "create_persona_display/vertical_padding_2px" | "create_persona_display/stack_content" | "create_persona_choice_stack" | "create_persona_choice_stack/background1" | "create_persona_choice_stack/background2" | "create_persona_choice_character" | "create_persona_choice_character/create_persona_choice_character" | "select_default_character_button_vertical_panel" | "select_default_character_button_vertical_panel/padding" | "select_default_character_button_vertical_panel/select_default_character_button_panel" | "select_default_character_button_vertical_panel/select_default_character_button_panel/select_default_character_button" | "select_default_character_button" | "create_persona_choice_classic_skin" | "create_persona_choice_button" | "create_persona_choice_button/choice_toggle" | "create_persona_choice_background" | "create_persona_choice_background/choice_title_bar" | "create_persona_choice_background/choice_details_body" | "create_persona_choice_background/choice_bottom_content" | "create_persona_choice_title_bar" | "create_persona_choice_title_bar/checkbox" | "create_persona_choice_title_bar/spacing" | "create_persona_choice_title_bar/icon_title" | "create_persona_choice_check_positioning" | "create_persona_choice_check_positioning/toggle_image" | "create_persona_choice_icon_title" | "create_persona_choice_detail_panel" | "create_persona_choice_detail_panel/spacing" | "create_persona_choice_detail_panel/choice_details_body" | "create_persona_choice_detail" | "popup_dialog__invalid_custom_skin" | "popup_dialog__invalid_custom_skin/popup_dialog_bg" | "popup_dialog_invalid_custom_skin_content" | "popup_dialog_invalid_custom_skin_content/popup_dialog_message" | "popup_dialog_invalid_custom_skin_content/popup_dialog_middle_button" | "popup_dialog__upsell_without_store" | "popup_dialog__choose_skin_type" | "popup_dialog__choose_skin_type/popup_dialog_bg" | "popup_dialog_choose_skin_type_content" | "popup_dialog_choose_skin_type_content/popup_dialog_message" | "popup_dialog_choose_skin_type_content/left" | "popup_dialog_choose_skin_type_content/right" | "popup_dialog_choose_skin_type_panel" | "popup_dialog_choose_skin_type_panel/choose_skin_type_button" | "popup_dialog_skin_model" | "popup_dialog_skin_model/paper_doll" | "popup_dialog__custom_skin_info" | "popup_dialog__custom_skin_info/background_image" | "popup_dialog__custom_skin_info/popup_dialog_bg" | "custom_skin_info_panel_text" | "custom_skin_info_panel" | "custom_skin_info_panel/message" | "custom_skin_info_panel/button_group" | "custom_skin_info_button_collection" | "custom_skin_info_button_collection/settings" | "custom_skin_info_button_collection/vertical_4_padding" | "custom_skin_info_button_collection/close" | "popup_dialog_close_button" | "usage_limited_settings_profile_button" | "custom_skin_popup_dialog_bg" | "custom_skin_popup_dialog_bg/background_image" | "custom_skin_popup_dialog_bg/vertical_align_title" | "custom_skin_popup_dialog_bg/vertical_align_title/title" | "custom_skin_popup_dialog_bg/popup_content" | "popup_dialog__emote_equip_slot_editor" | "popup_dialog__emote_equip_slot_editor/background_image" | "popup_dialog__emote_equip_slot_editor/popup_emote_wheel_dialog" | "popup_emote_wheel_dialog" | "popup_emote_wheel_dialog/popup_background" | "emote_equip_slot_content" | "emote_equip_slot_content/close" | "emote_equip_slot_content/emote_wheel_content_panel" | "emote_equip_slot_content/emote_wheel_content_panel/cancel" | "emote_equip_slot_content/emote_wheel_content_panel/emote_wheel_prompt_content" | "close_emote_popup_controller" | "close_emote_popup_controller/close_ui" | "emote_wheel_content" | "popup_dialog__realms_plus_extra_info" | "popup_dialog__realms_plus_extra_info/background_image" | "popup_dialog__realms_plus_extra_info/dialog_bg" | "realms_plus_extra_info_popup_dialog_bg" | "realms_plus_extra_info_popup_dialog_bg/background_image" | "realms_plus_extra_info_popup_dialog_bg/title" | "realms_plus_extra_info_popup_dialog_bg/popup_content" | "realms_extra_info_panel_text" | "realms_extra_info_panel" | "realms_extra_info_panel/realms_extra" | "realms_extra_info_panel/button_group" | "realms_extra_info_button_collection" | "realms_extra_info_button_collection/close" | "realms_extra_info_content" | "realms_extra_info_content/the_spread" | "realms_extra_info_content/the_spread/pack_image" | "realms_extra_info_content/the_spread/horizontal_6_padding" | "realms_extra_info_content/the_spread/the_info_stack" | "realms_extra_info_content/the_spread/the_info_stack/skins_and_world" | "realms_extra_info_content/the_spread/the_info_stack/padding" | "realms_extra_info_content/the_spread/the_info_stack/textures_and_usage" | "pack_information_textures_and_usage_tooltip" | "pack_information_textures_and_usage_tooltip/textures" | "pack_information_textures_and_usage_tooltip/mid_padding" | "pack_information_textures_and_usage_tooltip/appearance_status" | "roamable_status_notification_panel" | "roamable_status_notification_panel/appearance_status_notification" | "roamable_status_notification_panel/roamable_status" | "appearance_status_image_panel" | "appearance_status_image_panel/usage_limited" | "appearance_status_image_panel/usage_not_limited" | "pack_information_skins_and_world" | "pack_information_skins_and_world/skins" | "pack_information_skins_and_world/mid_padding" | "pack_information_skins_and_world/worlds" | "skin_info_label_and_image" | "skin_info_label_and_image/content_stack" | "skin_info_image_panel" | "skin_info_image_panel/image" | "skin_info_label_panel_label" | "skin_info_label_panel" | "skin_info_label_panel/label" | "skin_info_content_stack" | "skin_info_content_stack/image_panel" | "skin_info_content_stack/horizontal_2_padding" | "skin_info_content_stack/label_panel" | "realms_extra_info_pack_info" | "popup_toast"; -export type Play = "label_background" | "dark_label_background" | "world_screenshot_base" | "collection_world_screenshot" | "collection_world_screenshot/screenshot_picture" | "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel" | "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/gradient_image_realmsplus_expired" | "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired" | "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired/exclamationmark" | "world_item_grid_base" | "edit_icon" | "realms_stories_icon" | "realms_stories_icon_animated" | "realms_slots_edit_icon" | "worlds_icon" | "realms_icon" | "realms_chevron" | "friends_icon_1" | "friends_icon_2" | "bell_icon" | "invite_icon" | "delete_icon" | "world_download_icon" | "third_party_servers_icon" | "lan_icon" | "friends_server_icon" | "cross_platform_friends_server_icon" | "realms_remove_icon" | "game_online_icon" | "game_offline_icon" | "game_unavailable_icon" | "import_icon" | "add_server_icon" | "server_tab_icon" | "realms_art_icon" | "realms_text_background" | "connected_storage" | "feedback_icon" | "local_only_storage" | "local_and_cloud_storage" | "cloud_only_storage" | "left_arrow_icon" | "right_arrow_icon" | "small_progress_panel" | "sign_in_realms_image" | "sign_in_realms_image/chevron" | "sign_in_realms_image/portal" | "realms_sign_in_prompt_label" | "realms_sign_in_prompt" | "realms_sign_in_prompt/realms_sign_in_prompt_label" | "realms_sign_in_prompt_friends" | "realms_sign_in_prompt_friends/realms_sign_in_prompt_label_friends" | "sign_in_to_view_realms_content_panel" | "sign_in_to_view_realms_content_panel/sign_in_realms_image" | "sign_in_to_view_realms_content_panel/realms_sign_in_prompt" | "sign_in_to_view_realms_content_panel_friends" | "sign_in_to_view_realms_button" | "sign_in_to_view_realms_button_friends" | "realms_list_text" | "realms_world_header" | "realms_world_details" | "realms_world_type" | "realms_world_player_count" | "realms_world_game_status_icon" | "realms_world_game_status_icon/game_online_icon" | "realms_world_game_status_icon/game_unavailable_icon" | "realms_world_game_status_icon/game_offline_icon" | "realms_world_text_panel" | "realms_world_text_panel/realms_world_header" | "realms_world_text_panel/realms_world_details" | "realms_world_trial_text_panel" | "realms_world_trial_text_panel/realms_world_header_text" | "realms_world_trial_text_panel/realms_world_details" | "realms_world_content_text_area_panel" | "realms_world_content_text_area_panel/realms_world_text_panel" | "realms_trial_content_text_area_panel" | "realms_trial_content_text_area_panel/realms_world_trial_text_panel" | "realms_world_content_status_area_panel" | "realms_world_content_status_area_panel/world_player_count_text_panel" | "realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count" | "realms_world_content_status_area_panel/padding" | "realms_world_content_status_area_panel/realms_world_game_status_icon" | "realms_world_content_status_area_panel_container" | "realms_world_content_status_area_panel_container/realms_world_status_panel" | "realms_world_content_status_area_panel_container/realms_world_status_panel/realms_world_content_status_area_panel" | "realms_world_content_status_area_panel_container/realms_world_type" | "realms_world_content_panel" | "realms_world_content_panel/realm_screenshot" | "realms_world_content_panel/padding" | "realms_world_content_panel/realms_world_content_text_area_panel" | "realms_world_content_panel/realms_world_content_status_area_panel" | "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_content_status_area_panel_container" | "realms_trial_content_panel" | "realms_trial_content_panel/realm_screenshot" | "realms_trial_content_panel/padding" | "realms_trial_content_panel/realms_trial_content_text_area_panel" | "realms_world_item_button" | "realms_world_edit_button" | "realms_feed_button_content" | "realms_feed_button_content/default_icon" | "realms_feed_button_content/unread_icon_active" | "persistent_realms_feed_button_control" | "realms_feed_button" | "leave_friends_realm_button" | "unread_story_count_text" | "unread_story_count_text_background" | "unread_story_count_panel" | "unread_story_count_panel/text" | "unread_story_count_panel/text/background" | "realms_world_item" | "realms_world_item/realms_button_panel" | "realms_world_item/realms_button_panel/realms_world_item_button" | "realms_world_item/realms_button_panel/tts_border" | "realms_world_item/edit_panel" | "realms_world_item/edit_panel/realms_world_edit_button" | "realms_world_item/edit_panel/realms_world_expiry_notification_image" | "realms_world_item/feed_panel_with_unread_count" | "realms_world_item/feed_panel_with_unread_count/feed_panel" | "realms_world_item/feed_panel_with_unread_count/feed_panel/realms_feed_button" | "realms_world_item/feed_panel_with_unread_count/unread_story_count" | "realms_world_item/leave_realm_panel" | "realms_world_item/leave_realm_panel/leave_friends_realm_button" | "realms_world_item_grid" | "network_world_header" | "network_world_header/network_world_header_icon" | "network_world_header/spacer" | "network_world_header/header_panel" | "network_world_header/header_panel/network_world_header_text" | "network_world_details" | "network_world_player_count" | "network_world_player_count/count" | "network_world_game_status_icon" | "network_world_game_status_icon/game_online_icon" | "network_world_game_status_icon/game_unavailable_icon" | "network_world_game_status_icon/game_offline_icon" | "network_world_text_panel" | "network_world_text_panel/network_world_header" | "network_world_text_panel/network_world_details" | "network_world_content_text_area_panel" | "network_world_content_text_area_panel/network_world_text_panel" | "network_world_content_status_area_panel" | "network_world_content_status_area_panel/network_player_count_text_panel" | "network_world_content_status_area_panel/network_player_count_text_panel/network_world_player_count" | "network_world_content_status_area_panel/padding" | "network_world_content_status_area_panel/network_world_game_status_icon" | "network_world_content_status_area_panel_container" | "network_world_content_status_area_panel_container/network_world_status_panel" | "network_world_content_status_area_panel_container/network_world_status_panel/network_world_content_status_area_panel" | "network_world_content_status_area_panel_container/network_world_type" | "network_world_type" | "network_world_type/type" | "network_world_item_button_content" | "network_world_item_button_content/network_world_content_text_area_panel" | "network_world_item_button_content/network_status_area_panel" | "network_world_item_button_content/network_status_area_panel/network_world_content_status_area_panel_container" | "network_world_item_button_content/network_world_type_icon" | "network_world_item_button_content/network_world_type_icon/padding" | "network_world_item_button" | "network_server_world_edit_button" | "network_world_item" | "network_world_item/network_world_item_button" | "network_world_item/tts_border" | "network_world_item_grid" | "network_world_item_ignore_crossplay" | "network_world_item_ignore_crossplay/network_world_item_button" | "label_content_template" | "label_content_template/label_panel" | "label_content_template/label_panel/label_panel_layout" | "label_content_template/label_panel/label_panel_layout/label" | "label_content_template/content" | "information_panel" | "information_panel/background" | "information_panel/background/label_panel_layout" | "information_panel/background/label_panel_layout/label" | "information_panel/focus_button" | "blocked_multiplayer_privileges_panel" | "blocked_multiplayer_privileges_panel/background" | "blocked_multiplayer_privileges_panel/background/label_panel_layout" | "blocked_multiplayer_privileges_panel/background/label_panel_layout/label" | "more_servers_grid" | "additional_server_toggle_content" | "additional_server_toggle_content/network_world_content_text_area_panel" | "more_servers_label_panel" | "more_servers_label_panel/list_label" | "more_servers_world_item" | "more_servers_world_item/additional_server_toggle_base" | "more_servers_world_item/network_server_world_edit_button" | "additional_server_info_panel" | "additional_server_info_panel/server_info_stack_panel" | "additional_server_info_panel/server_info_stack_panel/padding_1" | "additional_server_info_panel/server_info_stack_panel/server_name" | "additional_server_info_panel/server_info_stack_panel/padding_2" | "additional_server_info_panel/server_info_stack_panel/player_count" | "additional_server_info_panel/server_info_stack_panel/padding_3" | "additional_server_info_panel/server_info_stack_panel/ping" | "additional_server_info_panel/server_info_stack_panel/padding_4" | "additional_server_info_panel/server_info_stack_panel/join_server_button" | "ping_rate_icon" | "ping_rate_panel" | "ping_rate_panel/concurrency_stack" | "ping_rate_panel/concurrency_stack/player_count" | "ping_rate_panel/concurrency_stack/padding_0" | "ping_rate_panel/concurrency_stack/ping_rate_icon" | "add_server_info_panel" | "add_server_info_panel/server_info_stack_panel" | "add_server_info_panel/server_info_stack_panel/padding_0" | "add_server_info_panel/server_info_stack_panel/add_server_title" | "add_server_info_panel/server_info_stack_panel/padding_1" | "add_server_info_panel/server_info_stack_panel/add_server_description" | "third_party_featured_server_grid" | "featured_server_world_item" | "featured_server_world_item/server_button" | "server_button_content_panel" | "server_button_content_panel/top_panel" | "server_button_content_panel/top_panel/third_party_server_screenshot" | "server_button_content_panel/top_panel/padding_0" | "server_button_content_panel/top_panel/title_panel" | "server_button_content_panel/top_panel/title_panel/third_party_server_name" | "server_button_content_panel/top_panel/title_panel/progress" | "server_button_content_panel/padding" | "server_button_content_panel/bottom_panel" | "server_button_content_panel/bottom_panel/third_party_server_message" | "third_party_server_content_panel" | "third_party_server_content_panel/ping_rate_panel" | "loading_featured_servers_panel" | "loading_featured_servers_panel/load_bars" | "loading_featured_servers_panel/load_bars/progress_loading_bars" | "third_party_server_screenshot" | "third_party_server_screenshot/picture" | "third_party_server_info_panel" | "third_party_server_info_panel/server_info_stack_panel" | "third_party_server_info_panel/server_info_stack_panel/padding_0" | "third_party_server_info_panel/server_info_stack_panel/server_screenshot" | "third_party_server_info_panel/server_info_stack_panel/padding_1" | "third_party_server_info_panel/server_info_stack_panel/server_name" | "third_party_server_info_panel/server_info_stack_panel/padding_2" | "third_party_server_info_panel/server_info_stack_panel/player_count" | "third_party_server_info_panel/server_info_stack_panel/padding_3" | "third_party_server_info_panel/server_info_stack_panel/ping" | "third_party_server_info_panel/server_info_stack_panel/padding_4" | "third_party_server_info_panel/server_info_stack_panel/join_server_button" | "third_party_server_info_panel/server_info_stack_panel/view_offers_button" | "third_party_server_info_panel/server_info_stack_panel/padding_5" | "third_party_server_info_panel/server_info_stack_panel/screenshots_section" | "third_party_server_info_panel/server_info_stack_panel/description_section" | "third_party_server_info_panel/server_info_stack_panel/games_section" | "third_party_server_info_panel/server_info_stack_panel/news_section" | "third_party_server_info_panel/progress" | "text_icon_number_panel" | "text_icon_number_panel/text" | "text_icon_number_panel/padding_0" | "text_icon_number_panel/stack_panel" | "text_icon_number_panel/stack_panel/icon_panel" | "text_icon_number_panel/stack_panel/icon_panel/icon" | "text_icon_number_panel/stack_panel/padding_1" | "text_icon_number_panel/stack_panel/number" | "grey_bar_panel" | "grey_bar_panel/grey_bar" | "grey_bar_panel/green_bar" | "grey_bar_panel/padding" | "screenshots_section_panel" | "screenshots_section_panel/divider_0" | "screenshots_section_panel/padding_0" | "screenshots_section_panel/screenshots_label" | "screenshots_section_panel/padding_1" | "screenshots_section_panel/screenshots" | "screenshots_section_panel/padding_2" | "screenshots_section_panel/navigation_panel" | "screenshots_section_panel/navigation_panel/left_arrow_button" | "screenshots_section_panel/navigation_panel/padding_0" | "screenshots_section_panel/navigation_panel/navigation_bar" | "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar" | "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar/grey_bar_factory_panel" | "screenshots_section_panel/navigation_panel/padding_1" | "screenshots_section_panel/navigation_panel/right_arrow_button" | "screenshots_section_panel/padding_3" | "description_text_panel" | "description_text_panel/contents_description" | "description_section_panel" | "description_section_panel/divider_0" | "description_section_panel/padding_0" | "description_section_panel/description_label" | "description_section_panel/padding_1" | "description_section_panel/read_more_panel" | "description_section_panel/read_more_panel/description_text_small" | "description_section_panel/read_more_panel/description_text_full" | "description_section_panel/read_more_panel/description_read_more_button_panel" | "description_section_panel/read_more_panel/description_read_less_button_panel" | "description_section_panel/padding_3" | "games_factory_object" | "games_factory_object/games_factory_panel" | "games_factory_object/games_factory_panel/top_panel" | "games_factory_object/games_factory_panel/top_panel/game_image_panel" | "games_factory_object/games_factory_panel/top_panel/game_image_panel/game_image" | "games_factory_object/games_factory_panel/top_panel/padding" | "games_factory_object/games_factory_panel/top_panel/game_title_panel" | "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_title" | "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_subtitle" | "games_factory_object/games_factory_panel/bottom_panel" | "games_factory_object/games_factory_panel/bottom_panel/bottom_panel" | "games_factory_object/padding" | "games_section_panel" | "games_section_panel/divider_0" | "games_section_panel/padding_0" | "games_section_panel/description_label" | "games_section_panel/padding_1" | "games_section_panel/games_factory_panel" | "games_section_panel/padding_3" | "news_text_panel" | "news_text_panel/contents_news" | "news_section_panel" | "news_section_panel/divider_0" | "news_section_panel/padding_0" | "news_section_panel/news_label" | "news_section_panel/padding_1" | "news_section_panel/read_more_panel" | "news_section_panel/read_more_panel/text_stack_panel" | "news_section_panel/read_more_panel/text_stack_panel/news_title_text" | "news_section_panel/read_more_panel/text_stack_panel/divider_panel" | "news_section_panel/read_more_panel/text_stack_panel/divider_panel/divider_0" | "news_section_panel/read_more_panel/text_stack_panel/news_text_small" | "news_section_panel/read_more_panel/text_stack_panel/news_text_full" | "news_section_panel/read_more_panel/news_read_more_button_panel" | "news_section_panel/read_more_panel/news_read_less_button_panel" | "news_section_panel/padding_3" | "divider" | "blue_diskspace_bar" | "green_diskspace_bar" | "empty_diskspace_bar" | "legacy_world_content_status_area_panel" | "legacy_world_content_status_area_panel/world_storage_content_panel" | "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_separator" | "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information" | "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_label" | "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/padding" | "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar" | "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/local_diskspace_bar" | "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/legacy_diskspace_bar" | "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/empty_diskspace_bar" | "world_list_text" | "realm_screenshot" | "realm_screenshot/picture" | "local_world_name" | "legacy_world_name" | "world_lock" | "local_world_game_mode" | "legacy_world_game_mode" | "local_world_date" | "legacy_world_date" | "local_world_filesize" | "legacy_world_filesize" | "local_world_connected_storage" | "local_world_connected_storage/local_and_cloud" | "local_world_connected_storage/local_only" | "local_world_connected_storage/cloud_only" | "local_world_lock_panel" | "local_world_lock_panel/lock" | "realms_plus_banner" | "realms_plus_banner/realms_banner" | "local_world_text_panel" | "local_world_text_panel/text_indent" | "local_world_text_panel/text_indent/top_side" | "local_world_text_panel/text_indent/top_side/local_world_name" | "local_world_text_panel/text_indent/top_side/lock_1" | "local_world_text_panel/text_indent/top_side/local_world_date" | "local_world_text_panel/text_indent/bottom_side" | "local_world_text_panel/text_indent/bottom_side/realms_plus_icon" | "local_world_text_panel/text_indent/bottom_side/pad" | "local_world_text_panel/text_indent/bottom_side/local_world_game_mode" | "local_world_text_panel/text_indent/bottom_side/local_world_connected_storage" | "local_world_text_panel/text_indent/bottom_side/local_world_filesize" | "legacy_world_text_panel" | "legacy_world_text_panel/text_indent" | "legacy_world_text_panel/text_indent/top_side" | "legacy_world_text_panel/text_indent/top_side/legacy_world_name" | "legacy_world_text_panel/text_indent/top_side/legacy_world_date" | "legacy_world_text_panel/text_indent/bottom_side" | "legacy_world_text_panel/text_indent/bottom_side/legacy_world_game_mode" | "legacy_world_text_panel/text_indent/bottom_side/legacy_world_filesize" | "beta_retail_world_text_panel" | "beta_retail_world_text_panel/text_indent" | "beta_retail_world_text_panel/text_indent/top_side" | "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_name" | "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_date" | "beta_retail_world_text_panel/text_indent/bottom_side" | "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_game_mode" | "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_filesize" | "world_content_panel" | "world_content_panel/world_screenshot" | "world_content_panel/world_text_panel" | "ownership_verification_in_progress_content" | "ownership_verification_in_progress_content/top_padding" | "ownership_verification_in_progress_content/loading_bar_panel" | "ownership_verification_in_progress_content/loading_bar_panel/loading_bar_animation" | "ownership_verification_in_progress_content/mid_padding" | "ownership_verification_in_progress_content/loading_label" | "ownership_verification_in_progress_content/bottom_padding" | "ownership_verification_in_progress_panel" | "ownership_verification_in_progress_panel/ownership_verification_in_progress_content" | "local_world_item_button" | "legacy_world_item_button" | "beta_retail_world_item_button" | "local_world_edit_button" | "legacy_world_delete_button" | "legacy_world_migrate_button" | "local_world_item" | "local_world_item/header_button_panel" | "local_world_item/signin_in_progress_panel" | "legacy_world_item" | "legacy_world_item/header_button_panel_with_delete" | "legacy_world_item/header_button_panel_with_migrate" | "legacy_world_item/header_button_panel_no_delete" | "beta_retail_world_item" | "local_world_item_grid" | "legacy_world_item_grid" | "beta_retail_local_world_item_grid" | "beta_retail_legacy_world_item_grid" | "common_button_template" | "common_button_text" | "add_friend_and_invite_panel" | "add_friend_and_invite_panel/add_friend_button" | "add_friend_and_invite_panel/padding_1" | "add_friend_and_invite_panel/join_by_code_button" | "add_friend_and_invite_panel/padding_2" | "add_friend_and_invite_panel/notification_button_panel" | "add_friend_and_invite_panel/notification_button_panel/notification_button" | "add_friend_button" | "join_by_code_button" | "add_server_toggle_button" | "server_toggle_base" | "quick_play_button" | "create_new_world_button" | "create_on_realms_button_panel" | "create_on_realms_button_panel/create_on_realms_button" | "import_world_button" | "sync_legacy_worlds_button" | "notification_button_text_layout" | "notification_button_text_layout/image1" | "notification_button_text_layout/image2" | "notification_button_text_layout/count" | "notification_button_label_panel" | "notification_button_label_panel/notification_button_label" | "notification_content" | "notification_button" | "header_button_panel" | "header_button_panel/buttons" | "header_button_panel/buttons/primary_panel" | "header_button_panel/buttons/primary_panel/primary" | "header_button_panel/buttons/secondary" | "header_button_panel_opt_in" | "header_button_panel_opt_in/buttons" | "header_button_panel_opt_in/buttons/primary_panel" | "header_button_panel_opt_in/buttons/primary_panel/primary" | "header_button_panel_opt_in/buttons/secondary" | "header_button_panel_opt_in/buttons/ternary" | "header_single_button_panel" | "header_single_button_panel/buttons" | "header_single_button_panel/buttons/primary" | "open_account_setting_button_gamecore" | "common_scroll_pane" | "worlds_scroll_panel" | "worlds_scroll_panel/worlds_list_stack_panel" | "game_tip_item_panel" | "game_tip_item_panel/info_bulb" | "game_tip_item_panel/padding_1" | "game_tip_item_panel/label_panel" | "game_tip_item_panel/label_panel/padding_vertical" | "game_tip_item_panel/label_panel/realms_warning_text" | "game_tip_item_panel/label_panel/padding_vertical_1" | "game_tip_item_panel/more_info_button" | "realm_warning_tip" | "realm_warning_tip/padding_vertical" | "realm_warning_tip/info_panel" | "new_ui_switch_button_options_panel" | "new_ui_switch_button_options_panel/unlock_template_options_button" | "new_ui_servers_switch_button_options_panel" | "new_ui_servers_switch_button_options_panel/unlock_template_options_button" | "new_ui_servers_switch_button_options_panel/padding_0" | "worlds_stack_panel" | "worlds_stack_panel/padding_0" | "worlds_stack_panel/play_screen_warning" | "worlds_stack_panel/header_button" | "worlds_stack_panel/header_button/quick_play" | "worlds_stack_panel/header_button/buttons" | "worlds_stack_panel/worlds_crossplatform_disabled_panel" | "worlds_stack_panel/worlds_crossplatform_disable_spacer" | "worlds_stack_panel/realms_panel" | "worlds_stack_panel/realms_panel/realms_label" | "worlds_stack_panel/realms_panel/sign_in_to_view_realms_button" | "worlds_stack_panel/realms_panel/realms_previews_panel" | "worlds_stack_panel/realms_panel/realms_previews_panel/new_offers_icon" | "worlds_stack_panel/realms_panel/realms_previews_panel/realms_world_item_button" | "worlds_stack_panel/realms_panel/create_on_realms_button_panel" | "worlds_stack_panel/realms_panel/personal_realms" | "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel" | "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/placeholder_loading_personal_realms" | "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/loading_friends_realms_label" | "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/padding" | "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/progress_loading_bars" | "worlds_stack_panel/realms_panel/realms_trial_panel" | "worlds_stack_panel/realms_panel/realms_trial_panel/realms_world_item_button" | "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel" | "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel/realms_world_item_button" | "worlds_stack_panel/realms_panel/padding_1" | "worlds_stack_panel/realms_multiplayer_blocked_panel" | "worlds_stack_panel/realms_multiplayer_blocked_panel/text_panel" | "worlds_stack_panel/realms_multiplayer_blocked_panel/open_uri_button" | "worlds_stack_panel/realms_multiplayer_blocked_panel/open_account_setting_button_gamecore" | "worlds_stack_panel/worlds_label" | "worlds_stack_panel/grid" | "worlds_stack_panel/no_local_worlds_label" | "worlds_stack_panel/no_local_worlds_switch_setting" | "worlds_stack_panel/beta_retail_local_padding" | "worlds_stack_panel/beta_retail_local_worlds_label" | "worlds_stack_panel/beta_retail_local_grid" | "worlds_stack_panel/loading_legacy_worlds_panel_padding" | "worlds_stack_panel/legacy_worlds_button" | "worlds_stack_panel/legacy_worlds_button/legacy_worlds_label" | "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel" | "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel/button" | "worlds_stack_panel/loading_legacy_worlds_panel" | "worlds_stack_panel/loading_legacy_worlds_panel/loading_legacy_worlds_label" | "worlds_stack_panel/loading_legacy_worlds_panel/padding" | "worlds_stack_panel/loading_legacy_worlds_panel/progress_loading_bars" | "worlds_stack_panel/padding_2" | "worlds_stack_panel/upgrade_legacy_worlds_label" | "worlds_stack_panel/legacy_world_item_grid" | "worlds_stack_panel/beta_retail_legacy_padding" | "worlds_stack_panel/beta_retail_legacy_worlds_label" | "worlds_stack_panel/beta_retail_legacy_grid" | "worlds_stack_panel/pad_hack_panel" | "no_local_worlds_switch_setting" | "no_local_worlds_switch_setting/bg" | "no_local_worlds_switch_setting/bg/no_local_worlds_switch_setting" | "no_local_worlds_switch_setting/bg/no_local_worlds_get_help" | "no_local_worlds_launch_help" | "storage_location_dropdown_panel" | "storage_location_dropdown_panel/padding1" | "storage_location_dropdown_panel/storage_location_dropdown" | "storage_location_dropdown" | "switch_storage_type_content" | "light_centered_loading_label" | "light_loading_label" | "loading_label" | "progress_loading_bars" | "world_list_label_panel" | "world_list_label_panel/list_label" | "world_list_label_with_color_panel" | "world_list_label_with_color_panel/colored_square_sizer" | "world_list_label_with_color_panel/colored_square_sizer/colored_square" | "world_list_label_with_color_panel/padding" | "world_list_label_with_color_panel/list_label" | "empty_panel" | "empty_grid" | "lan_servers_scroll_content" | "friends_scroll_panel" | "friends_scroll_panel/stack_panel" | "friends_scroll_panel/stack_panel/padding_0" | "friends_scroll_panel/stack_panel/friends_screen_warning" | "friends_scroll_panel/stack_panel/header_button" | "friends_scroll_panel/stack_panel/header_button/add_friend_and_invite_panel" | "friends_scroll_panel/stack_panel/friends_crossplatform_disabled_panel" | "friends_scroll_panel/stack_panel/friends_crossplatform_disable_spacer" | "friends_scroll_panel/stack_panel/joinable_realms_panel" | "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms_label" | "friends_scroll_panel/stack_panel/joinable_realms_panel/sign_in_to_view_realms_button_friends" | "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms" | "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel" | "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/placeholder_loading_friends_realms" | "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/loading_friends_realms_label" | "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/padding" | "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/progress_loading_bars" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel/message_label" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel/link_image" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/hover" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/pressed" | "friends_scroll_panel/stack_panel/joinable_realms_panel/no_realms_grid" | "friends_scroll_panel/stack_panel/joinable_realms_panel/padding_1" | "friends_scroll_panel/stack_panel/friends_grid" | "friends_scroll_panel/stack_panel/pad_hack_panel" | "friends_scroll_panel/stack_panel/no_friends_grid_message" | "friends_scroll_panel/stack_panel/switch_find_cross_platform_friend_button" | "friends_scroll_panel/stack_panel/add_friend_button_padding" | "friends_scroll_panel/stack_panel/cross_platform_friends_grid" | "friends_scroll_panel/stack_panel/no_cross_platform_friends_grid_message" | "friends_scroll_panel/stack_panel/general_no_multiplayer_grid_message" | "friends_scroll_panel/stack_panel/lan_grid" | "friends_scroll_panel/stack_panel/open_account_setting_button_gamecore" | "manually_added_servers_scrolling_content" | "manually_added_servers_scrolling_content/padding_0" | "manually_added_servers_scrolling_content/more_servers_label" | "manually_added_servers_scrolling_content/padding_1" | "manually_added_servers_scrolling_content/more_servers_grid" | "manually_added_servers_scrolling_content/padding_3" | "servers_content_panel" | "servers_content_panel/new_ui_servers_switch_button_options_panel" | "servers_content_panel/featured_servers_panel" | "servers_content_panel/featured_servers_panel/loading_featured_panel" | "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_friends_realms_label" | "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_featured_servers_panel" | "servers_content_panel/featured_servers_panel/padding_1" | "servers_content_panel/featured_servers_panel/featured_servers_label" | "servers_content_panel/featured_servers_panel/padding_2" | "servers_content_panel/featured_servers_panel/third_party_featured_grid" | "servers_content_panel/featured_servers_panel/padding_3" | "servers_content_panel/more_servers_divider" | "servers_content_panel/more_servers_panel" | "server_scroll_panel" | "server_scroll_panel/stack_panel" | "server_scroll_panel/stack_panel/padding_0" | "server_scroll_panel/stack_panel/servers_crossplatform_disabled_panel" | "server_scroll_panel/stack_panel/no_featured_server_connection" | "server_scroll_panel/stack_panel/more_servers_blocked_panel" | "server_scroll_panel/stack_panel/more_servers_blocked_panel/server_multiplayer_privileges_blocked" | "server_scroll_panel/stack_panel/more_servers_blocked_panel/open_uri_button" | "server_scroll_panel/stack_panel/padding_1" | "server_scroll_panel/stack_panel/server_content" | "server_scroll_panel/stack_panel/add_server_button" | "crossplatform_disabled_panel" | "crossplatform_disable_spacer" | "common_scrolling_panel" | "common_content" | "scrolling_offsets" | "worlds_scroll_content" | "worlds_scroll_content/worlds_stack_panel" | "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer" | "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer/scrolling_panel" | "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer" | "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer/scrolling_panel" | "friends_scroll_content" | "friends_scroll_content/scrolling_panel" | "show_servers_panel" | "show_servers_panel/left_panel" | "show_servers_panel/left_panel/scrolling_panel" | "show_servers_panel/divider_panel" | "show_servers_panel/divider_panel/main_divider" | "show_servers_panel/right_panel" | "server_scroll_content" | "server_scroll_content/severs_panel" | "server_scroll_content/severs_panel/offset_panel" | "server_scroll_content/severs_panel/offset_panel/servers_sunsetting_warning" | "server_scroll_content/severs_panel/show_servers_panel" | "server_scroll_content/feature_server_message_panel" | "server_scroll_content/feature_server_message_panel/featured_servers_label" | "server_scroll_content/feature_server_message_panel/pad" | "server_scroll_content/feature_server_message_panel/feature_server_message_panel" | "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout" | "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout/label" | "server_scroll_content/feature_server_message_panel/open_account_setting_button_gamecore" | "server_content_area" | "server_content_area/third_party_scrolling_panel" | "server_content_area/additional_server_scrolling_panel" | "server_content_area/add_server_pane" | "tab_front" | "tab_front_middle" | "tab_back" | "X_tab_back" | "tab_text_stack_panel" | "tab_text_stack_panel/padding" | "tab_text_stack_panel/text_section" | "tab_text_stack_panel/text_section/text" | "tab_text_stack_panel/count_section" | "tab_text_stack_panel/count_section/count_background_image" | "tab_text_stack_panel/count_section/count_background_image/count" | "common_navigation_tab_content" | "common_navigation_tab_content/padding_0" | "common_navigation_tab_content/icon_section" | "common_navigation_tab_content/icon_section/icon" | "common_navigation_tab_content/padding_1" | "common_navigation_tab_content/count_text" | "friends_navigation_tab_content" | "friends_navigation_tab_content/padding" | "friends_navigation_tab_content/icon_section" | "friends_navigation_tab_content/icon_section/icon" | "friends_navigation_tab_content/icon_section_2" | "friends_navigation_tab_content/icon_section_2/icon" | "friends_navigation_tab_content/icon_section_nobounce" | "friends_navigation_tab_content/icon_section_nobounce/icon" | "friends_navigation_tab_content/icon_section_nobounce_2" | "friends_navigation_tab_content/icon_section_nobounce_2/icon" | "friends_navigation_tab_content/icon_section_notification" | "friends_navigation_tab_content/icon_section_notification/icon1" | "friends_navigation_tab_content/icon_section_notification/icon2" | "friends_navigation_tab_content/count_text" | "top_tab" | "world_navigation_tab" | "friends_navigation_tab" | "server_navigation_tab" | "close_navigation_tab" | "close_navigation_tab/background" | "close_navigation_tab/x_image" | "common_tab_content_panel" | "common_tab_content_panel/background" | "common_tab_content_panel/content" | "worlds_tab_content_panel" | "friends_tab_content_panel" | "server_tab_content_panel" | "common_tab_content_panel_type" | "edu_tab_content_panel_layout" | "edu_tab_content_panel_layout/worlds_tab_content" | "edu_tab_content_panel_layout/friends_tab_content" | "edu_tab_content_panel_layout/server_tab_content_panel" | "trial_tab_content_panel_layout" | "trial_tab_content_panel_layout/worlds_tab_content" | "default_tab_content_panel_layout" | "default_tab_content_panel_layout/worlds_tab_content" | "default_tab_content_panel_layout/friends_tab_content" | "default_tab_content_panel_layout/server_tab_content_panel" | "tab_navigation_panel_layout" | "tab_navigation_panel_layout/navigation_tabs" | "tab_navigation_panel_layout/navigation_tabs/content" | "tab_navigation_panel_layout/close_navigation_tab" | "tab_navigation_panel_layout/close_navigation_tab/close_button" | "common_tab_navigation_panel_layout" | "edu_tab_navigation_panel_layout" | "edu_tab_navigation_panel_layout/world_navigation_tab" | "edu_tab_navigation_panel_layout/friends_navigation_tab" | "edu_tab_navigation_panel_layout/server_navigation_tab" | "trial_tab_navigation_panel_layout" | "trial_tab_navigation_panel_layout/world_navigation_tab" | "default_tab_navigation_panel_layout" | "default_tab_navigation_panel_layout/world_navigation_tab" | "default_tab_navigation_panel_layout/friends_navigation_tab" | "default_tab_navigation_panel_layout/server_navigation_tab" | "common_play_screen_panel" | "play_screen_panel" | "play_screen_panel/tab_navigation_panel" | "play_screen_panel/tab_content_panel" | "play_screen_panel/gamepad_helper_left_bumper" | "play_screen_panel/gamepad_helper_right_bumper" | "play_screen_panel/keyboard_helper_left_bracket" | "play_screen_panel/keyboard_helper_right_bracket" | "default_play_screen_panel" | "trial_play_screen_panel" | "edu_play_screen_panel" | "play_screen" | "play_screen_content" | "play_screen_content/main_control" | "play_screen_content/editor_text_panel" | "play_screen_content/popup_dialog_factory" | "popup_dialog_join_by_code" | "popup_dialog_join_by_code/join_by_code_popup_background" | "popup_dialog_join_by_code/join_by_code_popup_content" | "popup_dialog_join_by_code/gamepad_helpers" | "join_by_code_popup_background" | "join_by_code_popup_content" | "join_by_code_popup_content/popup_dialog_bg" | "join_by_code_popup_content/popup_stack_panel" | "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_header" | "join_by_code_popup_content/popup_stack_panel/spacing_1" | "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_upper_body" | "join_by_code_popup_content/popup_stack_panel/spacing_2" | "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_lower_body" | "join_by_code_popup_dialog_header" | "join_by_code_popup_dialog_header/join_by_code_popup_header_text" | "join_by_code_popup_dialog_header/close_button" | "join_by_code_popup_header_text" | "join_by_code_popup_dialog_upper_body" | "join_by_code_popup_dialog_upper_body/margin1" | "join_by_code_popup_dialog_upper_body/join_by_code_popup_code_text_field" | "join_by_code_popup_dialog_upper_body/spacing" | "join_by_code_popup_dialog_upper_body/join_by_code_popup_join_button" | "join_by_code_popup_dialog_upper_body/margin2" | "join_by_code_popup_code_text_field" | "join_by_code_popup_join_button" | "join_by_code_popup_help_text" | "lower_body_default_content" | "lower_body_default_content/info_text" | "join_by_code_popup_dialog_lower_body" | "join_by_code_popup_dialog_lower_body/default" | "open_account_setting_button" | "popup_dialog_high_ping" | "popup_dialog_high_ping/high_ping_popup_background" | "popup_dialog_high_ping/high_ping_popup_content" | "popup_dialog_high_ping/gamepad_helpers" | "popup_two_buttons" | "popup_two_buttons/common_panel" | "popup_two_buttons/title_label" | "popup_two_buttons/panel_indent" | "popup_two_buttons/panel_indent/inside_header_panel" | "popup_two_buttons/button_panel" | "popup_two_buttons/button_panel/left_button_panel" | "popup_two_buttons/button_panel/pad" | "popup_two_buttons/button_panel/right_button_panel" | "high_ping_popup_content_stack_panel" | "high_ping_popup_content_stack_panel/pad_0" | "high_ping_popup_content_stack_panel/ping_images_panel" | "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel" | "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/medium_connection" | "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/pad" | "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/low_connection" | "high_ping_popup_content_stack_panel/pad_1" | "high_ping_popup_content_stack_panel/text_line_1" | "high_ping_popup_content_stack_panel/pad_2" | "high_ping_popup_content_stack_panel/text_line_2" | "high_ping_popup_content_stack_panel/pad_3" | "high_ping_popup_join_button" | "high_ping_popup_cancel_button" | "copyright" | "development_version" | "version" | "editor_text_panel" | "editor_text_panel/copyright" | "editor_text_panel/development_version" | "editor_text_panel/version" | "editor_settings_image_content" | "editor_settings_menu_button" | "editor_server_content_panel" | "editor_server_content_panel/more_servers_panel" | "editor_tab_content_panel_layout" | "editor_tab_content_panel_layout/worlds_tab_content" | "editor_tab_content_panel_layout/friends_tab_content" | "editor_tab_content_panel_layout/server_tab_content_panel" | "editor_play_screen_panel"; -export type PerfTurtle = "perf_turtle_panel" | "perf_turtle_panel/perf_turtle_background" | "perf_turtle_panel/stack_panel" | "perf_turtle_panel/stack_panel/turtle" | "perf_turtle_panel/stack_panel/turtle_text"; -export type PocketContainers = "generic_label" | "header_panel" | "header_panel/header_background" | "header_panel/title_label" | "header_area" | "header_area/x" | "header_area/inventory_header" | "header_area/container_header" | "dark_bg" | "panel_outline" | "background_panel" | "inventory_grid" | "inventory_panel" | "inventory_panel/scrolling_panel" | "half_screen" | "half_screen/inventory_panel" | "panel" | "panel/container_gamepad_helpers" | "panel/header" | "panel/bg" | "panel/inventory" | "panel/container" | "panel/selected_item_details_factory" | "panel/item_lock_notification_factory" | "panel/gamepad_cursor" | "panel/inventory_selected_icon_button" | "panel/hold_icon" | "panel/flying_item_renderer" | "small_chest_panel" | "large_chest_panel" | "hopper_panel" | "dispenser_panel" | "dropper_panel" | "ender_chest_panel" | "shulker_box_panel" | "barrel_panel"; -export type PopupDialog = "popup_dialog_bg" | "popup_dialog_message" | "popup_dialog_button" | "popup_dialog_button_with_binding" | "popup_dialog_left_button" | "popup_dialog_middle_button" | "popup_dialog_right_button" | "popup_dialog" | "modal_background_image" | "black_tint_image" | "modal_title_text" | "modal_label_text" | "modal_label_text/padding" | "modal_label_text/text" | "modal_checkbox_button" | "modal_checkbox_button/header_description_stack_panel" | "modal_checkbox_button/header_description_stack_panel/checkbox_visuals" | "modal_checkbox_button/header_description_stack_panel/buffer_panel" | "modal_checkbox_button/header_description_stack_panel/buffer_panel/label" | "modal_checkbox_button/header_description_stack_panel/padding_panel" | "dialog_text_wrapper" | "modal_label_panel" | "modal_left_button" | "modal_middle_button" | "modal_rightcancel_button" | "three_buttons_panel" | "three_buttons_panel/left" | "three_buttons_panel/middle" | "three_buttons_panel/right" | "two_buttons_checkbox_panel" | "two_buttons_checkbox_panel/left" | "two_buttons_checkbox_panel/middle" | "two_buttons_checkbox_panel/checkbox" | "destructive_three_buttons_panel" | "destructive_three_buttons_panel/left" | "destructive_three_buttons_panel/middle" | "destructive_three_buttons_panel/right" | "two_buttons_panel" | "two_buttons_panel/left" | "two_buttons_panel/right" | "destructive_two_buttons_panel" | "destructive_two_buttons_panel/left" | "destructive_two_buttons_panel/right" | "single_button_panel" | "single_button_panel/left" | "single_button_checkbox_panel" | "single_button_checkbox_panel/left" | "single_button_checkbox_panel/checkbox" | "modal_dialog_base" | "modal_dialog_with_buttons" | "modal_dialog_with_buttons/background_with_buttons" | "modal_dialog_with_buttons/title" | "modal_dialog_with_buttons/text" | "modal_dialog_with_buttons/button_panel" | "modal_input_panel" | "modal_input_panel/black_tint_image" | "modal_dialog_popup" | "modal_dialog_popup/modal_input" | "modal_dialog_popup/modal_input/modal_bg_buttons" | "modal_dialog_popup/modal_input/black_background" | "hollow_2_bottom_button_panel" | "hollow_2_bottom_button_panel/lower_button_controls" | "form_fit_screen_with_title_and_close_and_bottom_buttons" | "form_fit_screen_with_title_and_close" | "form_fit_screen_with_title_and_close/panel_background" | "form_fit_screen_with_title_and_close/panel_content" | "form_fit_screen_with_title_and_close/panel_content/header" | "form_fit_screen_with_title_and_close/panel_content/header/header_content" | "form_fit_screen_with_title_and_close/panel_content/close_button_panel" | "form_fit_screen_with_title_and_close/panel_content/close_button_panel/close" | "form_fit_screen_with_title_and_close/panel_content/contents" | "form_fit_screen_with_title_and_close/panel_content/contents/contents" | "form_fit_screen_with_title_and_close/panel_content/contents/content_padding" | "form_fit_screen_with_title_and_close/panel_content/lower_contents" | "form_fit_screen_with_title_and_close/panel_content/lower_contents/contents" | "form_fit_modal_dialog_popup" | "form_fit_modal_dialog_popup/background" | "form_fit_modal_dialog_popup/content" | "progress_dialog_popup" | "progress_dialog_popup/background" | "progress_dialog_popup/title" | "progress_dialog_popup/progress_content" | "progress_dialog_popup/button" | "progress_content" | "progress_content/progress_titles" | "progress_content/progress_titles/current_progress_label" | "progress_content/progress_titles/total_progress_label" | "progress_content/progress_bar" | "progress_label" | "current_progress_label" | "total_progress_label" | "progress_bar_icon" | "progress_bar_icon/full_progress_bar_icon" | "progress_bar_icon/empty_progress_bar_icon" | "progress_bar_icon/progress_bar_nub" | "empty_progress_bar_icon" | "full_progress_bar_icon" | "progress_bar_nub"; -export type Portfolio = "screenshot" | "screenshot_frame" | "trash_default" | "trash_hover" | "trash_pressed" | "photo_trash_button_left" | "photo_trash_button_left/default" | "photo_trash_button_left/hover" | "photo_trash_button_left/pressed" | "photo_trash_button_right" | "photo_trash_button_right/default" | "photo_trash_button_right/hover" | "photo_trash_button_right/pressed" | "photo_number" | "photo_number_left" | "photo_number_right" | "photo_corner_bl" | "photo_corner_br" | "photo_corner_tr" | "photo_corner_tl" | "page_photo" | "page_photo/screenshot" | "page_photo/screenshot_frame" | "page_photo/photo_corner_bl" | "page_photo/photo_corner_br" | "page_photo/photo_corner_tl" | "page_photo/photo_corner_tr" | "pick_item" | "pick_item/photo" | "pick_item/button" | "header" | "screenshot_grid" | "text_centering_panel" | "text_centering_panel/header" | "pick_scrolling_content" | "pick_scrolling_content/header" | "pick_scrolling_content/portfolio_grid" | "no_pick_photos_alert_label" | "pick_panel" | "pick_panel/scroll" | "pick_panel/close_button" | "pick_panel/no_pick_photos_alert_label" | "text_edit_box_default_indent" | "text_edit_box_hover_indent" | "text_edit_box_hover_indent/focus_border_white" | "text_edit_control" | "text_edit_control/clipper_panel" | "text_edit_control/clipper_panel/display_text" | "text_edit_control/clipper_panel/place_holder_control" | "text_edit_control/locked" | "text_edit_control/locked/edit_box_indent" | "text_edit_control/default" | "text_edit_control/hover" | "text_edit_control/pressed" | "photo_item" | "photo_item/screenshot" | "photo_item/screenshot_frame" | "photo_item/text_edit_control" | "photo_item/photo_corner_bl" | "photo_item/photo_corner_br" | "photo_item/photo_corner_tl" | "photo_item/photo_corner_tr" | "photo_grid_item" | "photo_grid_item/photo_item" | "photo_list_grid" | "prev_button_default" | "prev_button_hover" | "prev_button_pressed" | "photo_page_prev_button" | "photo_page_prev_button/default" | "photo_page_prev_button/hover" | "photo_page_prev_button/pressed" | "next_button_default" | "next_button_hover" | "next_button_pressed" | "photo_page_next_button" | "photo_page_next_button/default" | "photo_page_next_button/hover" | "photo_page_next_button/pressed" | "convert_button_default" | "convert_button_hover" | "convert_button_pressed" | "photo_convert_left_button" | "photo_convert_left_button/default" | "photo_convert_left_button/hover" | "photo_convert_left_button/pressed" | "photo_convert_right_button" | "photo_convert_right_button/default" | "photo_convert_right_button/hover" | "photo_convert_right_button/pressed" | "bottom_button_panel" | "bottom_button_panel/export_button" | "bottom_button_panel/im_content_button" | "bottom_button_panel/add_photo_button" | "im_content_button" | "export_button" | "add_photo_button" | "book_binding" | "book_spine" | "book_background" | "book_background/book_binding" | "book_background/top_spine" | "book_background/bottom_spine" | "header_panel" | "header_panel/header_background" | "close_button_default" | "close_button_hover" | "close_button_pressed" | "close_button" | "close_button/default" | "close_button/hover" | "close_button/pressed" | "no_photos_alert_label" | "book_and_buttons_panel" | "book_and_buttons_panel/book_panel" | "book_and_buttons_panel/book_panel/book_background" | "book_and_buttons_panel/book_panel/close_button" | "book_and_buttons_panel/book_panel/photo_list_grid" | "book_and_buttons_panel/book_panel/photo_number_left" | "book_and_buttons_panel/book_panel/photo_number_right" | "book_and_buttons_panel/book_panel/photo_trash_button_left" | "book_and_buttons_panel/book_panel/photo_trash_button_right" | "book_and_buttons_panel/book_panel/photo_page_prev_button" | "book_and_buttons_panel/book_panel/photo_page_next_button" | "book_and_buttons_panel/book_panel/photo_convert_left_button" | "book_and_buttons_panel/book_panel/photo_convert_right_button" | "book_and_buttons_panel/book_panel/no_photos_alert_label" | "book_and_buttons_panel/bottom_button_panel" | "root_panel" | "portfolio_screen" | "portfolio_screen_content" | "portfolio_screen_content/root_panel" | "portfolio_screen_content/root_panel/book_and_buttons_panel" | "portfolio_screen_content/root_panel/pick_panel"; -export type Progress = "popup_dialog_base" | "popup_dialog_base/background" | "popup_dialog_base/scrolling_panel" | "popup_dialog_base/totalSelected" | "popup_dialog_base/totalSelectedSize" | "popup_dialog_base/left" | "popup_dialog_base/right" | "checkbox_visual" | "checkbox_visual/control" | "checkbox_visuals_unchecked" | "checkbox_visuals_checked" | "checkbox_visuals_unchecked_locked" | "checkbox_visuals_checked_locked" | "checkbox_visuals_unchecked_hover" | "checkbox_visuals_checked_hover" | "checkbox_with_label_core" | "checkbox_with_label" | "checkbox_with_label/checkbox_with_label_core" | "resource_pack_grid_item" | "resource_pack_section" | "resource_pack_section/required_resource_pack_list_grid" | "resource_pack_section/optional_resource_pack_list_grid" | "simple_popup_dialog_base" | "simple_popup_dialog_base/dialog_background_hollow_3" | "simple_popup_dialog_base/dialog_background_hollow_3/control" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_0" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/title" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_1" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_2" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description2" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_3" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/top_optional_button" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_4" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/middle_button" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_5" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/bottom_button" | "resource_pack_download_popup_base" | "resource_pack_download_server_required" | "resource_pack_download_optional_and_required" | "resource_pack_download_optional" | "resource_pack_download_required" | "normal_stroke_button" | "progress_screen_text" | "progress_title_text" | "progress_bar_text" | "code_text" | "code_number" | "progress_loading_bars" | "progress_loading_spinner" | "fancy_progress_loading_bars" | "fancy_progress_loading_bars/full_progress_bar_icon" | "fancy_progress_loading_bars/empty_progress_bar_icon" | "fancy_progress_loading_bars/progress_bar_nub" | "progress_bar" | "progress_bar_nub" | "thick_progress_bar_icon_base" | "thick_progress_bar_icon_empty" | "thick_progress_bar" | "thick_progress_bar/full_progress_bar_icon" | "thick_progress_bar/empty_progress_bar_icon" | "edu_cloud_upload_progress_bar" | "edu_cloud_upload_progress_bar/waveform_loading_bar" | "edu_cloud_upload_progress_bar/determinate_loading_bar" | "cancel_button" | "retry_button" | "abort_button" | "ok_button" | "title_panel" | "title_panel/progress_title_text" | "title_panel/progress_bar_text" | "title_panel/progress_bar" | "button_panel" | "button_panel/cancel_button" | "modal_button_panel" | "modal_button_panel/cancel_button" | "modal_button_panel_with_retry" | "modal_button_panel_with_retry/abort_button" | "modal_button_panel_with_retry/cancel_button" | "modal_button_panel_with_retry/retry_button" | "modal_ok_button_panel" | "modal_ok_button_panel/ok_button" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "world_image" | "cloud_image" | "server_image" | "edu_cloud_upload_image" | "edu_cloud_upload_image/world_image_wrapper" | "edu_cloud_upload_image/world_image_wrapper/fetch_world_image" | "edu_cloud_upload_image/arrow_image_wrapper" | "edu_cloud_upload_image/arrow_image_wrapper/arrow_image" | "edu_cloud_upload_image/cloud_image_wrapper" | "edu_cloud_upload_image/cloud_image_wrapper/upload_cloud_image" | "edu_cloud_fetch_image" | "edu_cloud_fetch_image/cloud_image_wrapper" | "edu_cloud_fetch_image/cloud_image_wrapper/fetch_cloud_image" | "edu_cloud_fetch_image/spyglass_image_wrapper" | "edu_cloud_fetch_image/spyglass_image_wrapper/spyglass_image" | "edu_cloud_fetch_image/world_image_wrapper" | "edu_cloud_fetch_image/world_image_wrapper/fetch_world_image" | "edu_cloud_download_image" | "edu_cloud_download_image/cloud_image_wrapper" | "edu_cloud_download_image/cloud_image_wrapper/download_cloud_image" | "edu_cloud_download_image/arrow_image_wrapper" | "edu_cloud_download_image/arrow_image_wrapper/arrow_image" | "edu_cloud_download_image/world_image_wrapper" | "edu_cloud_download_image/world_image_wrapper/download_world_image" | "edu_server_fetch_image" | "edu_server_fetch_image/server_image_wrapper_left" | "edu_server_fetch_image/server_image_wrapper_left/server_image" | "edu_server_fetch_image/spyglass_image_wrapper" | "edu_server_fetch_image/spyglass_image_wrapper/spyglass_image" | "edu_server_fetch_image/server_image_wrapper_right" | "edu_server_fetch_image/server_image_wrapper_right/server_image" | "modal_progress_panel_no_cancel" | "modal_progress_panel_no_cancel/common_panel" | "modal_progress_panel_no_cancel/content" | "modal_progress_panel_no_cancel/content/title_panel" | "modal_progress_panel_no_cancel/content/progress_loading_bars" | "modal_progress_panel_with_cancel" | "modal_progress_panel_with_cancel/common_panel" | "modal_progress_panel_with_cancel/content" | "modal_progress_panel_with_cancel/content/title_panel" | "modal_progress_panel_with_cancel/content/progress_loading_bars" | "modal_progress_panel_with_cancel/modal_button_panel" | "progress_panel" | "progress_panel/progress_loading_bars" | "progress_panel/title_panel" | "progress_panel/button_panel" | "modal_progress_screen" | "delete_progress_screen" | "realms_loading_background" | "realms_loading_background/solid_blue" | "realms_loading_background/solid_blue/gradient" | "realms_stories_loading_progress_screen" | "world_loading_progress_screen" | "world_loading_screen_background" | "overworld_loading_background" | "overworld_loading_background/background_gradient" | "overworld_loading_progress_screen" | "nether_loading_background" | "nether_loading_background/background_gradient" | "nether_loading_progress_screen" | "theend_loading_background" | "theend_loading_background/background_gradient" | "theend_loading_progress_screen" | "world_saving_progress_screen" | "fetching_edu_cloud_worlds" | "edu_cloud_download_progress_screen" | "fetching_edu_servers" | "world_convert_modal_progress_screen" | "progress_screen" | "popup_dialog_factory" | "progress_screen_content" | "progress_screen_content/progress_content_panel" | "progress_screen_content/popup_dialog_factory" | "progress_content_panel" | "progress_content_panel/progress_panel" | "progress_content_panel/gamepad_helpers" | "modal_screen_content" | "modal_screen_content/modal_progress_panel" | "world_modal_progress_panel" | "world_modal_progress_panel/common_panel" | "world_modal_progress_panel/base_content" | "world_modal_progress_panel/base_content/progress_title_text" | "world_modal_progress_panel/base_content/progress_bar_text" | "world_modal_progress_panel/inside_content" | "world_modal_progress_panel/inside_content/loading_bar_panel" | "world_modal_progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars" | "world_modal_progress_panel/inside_content/loading_bar_panel/progress_loading_bars" | "world_modal_progress_panel/inside_content/vertical_padding" | "world_modal_progress_panel/inside_content/modal_button_panel" | "world_modal_progress_panel/inside_content/vertical_padding_2" | "cloud_upload_panel" | "cloud_upload_panel/common_panel" | "cloud_upload_panel/base_content" | "cloud_upload_panel/base_content/progress_title_text" | "cloud_upload_panel/base_content/progress_text" | "cloud_upload_panel/base_content/edu_cloud_upload_image" | "cloud_upload_panel/base_content/loading_bar_panel" | "cloud_upload_panel/base_content/loading_bar_panel/progress_loading_bars" | "cloud_error_panel" | "cloud_error_panel/common_panel" | "cloud_error_panel/content_wrapper" | "cloud_error_panel/content_wrapper/title_wrapper" | "cloud_error_panel/content_wrapper/title_wrapper/progress_title_text" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/tts_border" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/edu_cloud_error_text" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_text" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_number" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding_2" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/cloud_support_hypertext" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon/icon" | "cloud_error_panel/content_wrapper/button_content" | "cloud_error_panel/content_wrapper/button_content/modal_button_panel" | "cloud_error_panel/content_wrapper/error_button_content" | "cloud_error_panel/content_wrapper/error_button_content/download_ok_button" | "cloud_error_panel/content_wrapper/error_button_content/download_cancel_button" | "cloud_fetch_panel" | "cloud_fetch_panel/common_panel" | "cloud_fetch_panel/base_content" | "cloud_fetch_panel/base_content/progress_title_text" | "cloud_fetch_panel/base_content/progress_text" | "cloud_fetch_panel/base_content/edu_cloud_fetch_image" | "cloud_fetch_panel/base_content/loading_bar_panel" | "cloud_fetch_panel/base_content/loading_bar_panel/progress_loading_bars" | "server_fetch_panel" | "server_fetch_panel/common_panel" | "server_fetch_panel/base_content" | "server_fetch_panel/base_content/progress_title_text" | "server_fetch_panel/base_content/progress_text" | "server_fetch_panel/base_content/edu_server_fetch_image" | "server_fetch_panel/base_content/loading_bar_panel" | "server_fetch_panel/base_content/loading_bar_panel/progress_loading_bars" | "cloud_download_panel" | "cloud_download_panel/common_panel" | "cloud_download_panel/base_content" | "cloud_download_panel/base_content/progress_title_text" | "cloud_download_panel/base_content/progress_bar_text" | "cloud_download_panel/base_content/edu_cloud_download_image" | "cloud_download_panel/loading_bar_panel" | "cloud_download_panel/loading_bar_panel/progress_loading_bars" | "world_convert_modal_progress_screen_content" | "world_convert_modal_progress_screen_content/mobile_data_icon" | "world_convert_modal_progress_screen_content/title_panel_content" | "world_convert_modal_progress_screen_content/world_modal_progress_panel" | "world_convert_modal_progress_screen_content/popup_dialog_factory" | "realms_loading_world_modal_progress_screen_content" | "realms_loading_world_modal_progress_screen_content/mobile_data_icon" | "realms_loading_world_modal_progress_screen_content/realms_title_image" | "realms_loading_world_modal_progress_screen_content/world_modal_progress_panel" | "realms_loading_world_modal_progress_screen_content/popup_dialog_factory" | "realms_loading_world_modal_progress_screen_content/server_region_connected" | "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_label" | "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_connected_text" | "realms_loading_world_modal_progress_screen_content/server_region_connected/padding" | "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_ping_icon" | "world_save_modal_progress_screen_content" | "world_save_modal_progress_screen_content/title_panel_content" | "world_save_modal_progress_screen_content/world_modal_progress_panel" | "world_save_modal_progress_screen_content/save_icon" | "world_save_modal_progress_screen_content/popup_dialog_factory" | "cloud_upload_screen_content" | "cloud_upload_screen_content/title_panel_content" | "cloud_upload_screen_content/cloud_upload_panel" | "cloud_upload_screen_content/cloud_upload_error_panel" | "cloud_upload_screen_content/popup_dialog_factory" | "cloud_upload_screen_content/cloud_conflict_resolution_popup_factory" | "edu_cloud_fetch_screen_content" | "edu_cloud_fetch_screen_content/cloud_fetch_panel" | "edu_cloud_fetch_screen_content/popup_dialog_factory" | "edu_server_fetch_screen_content" | "edu_server_fetch_screen_content/server_fetch_panel" | "edu_server_fetch_screen_content/popup_dialog_factory" | "cloud_download_screen_content" | "cloud_download_screen_content/background" | "cloud_download_screen_content/cloud_download_panel" | "cloud_download_screen_content/cloud_download_error_panel" | "cloud_download_screen_content/popup_dialog_factory" | "auto_save" | "mobile_data_ios_icon" | "mobile_data_android_icon" | "mobile_data_icon_text" | "mobile_data_icon" | "mobile_data_icon/icon_android" | "mobile_data_icon/icon_ios" | "mobile_data_icon/text"; -export type RatingPrompt = "padding_horizontal" | "padding_vertical" | "rating_prompt_yes_label" | "rating_prompt_yes_label/button_label" | "rating_prompt_no_label" | "rating_prompt_no_label/button_label" | "rating_prompt_yes_button" | "rating_prompt_no_button" | "dialog_image" | "dialog_image_with_border" | "dialog_image_with_border/dialog_image" | "button_panel" | "button_panel/padding_3" | "button_panel/yes_button" | "button_panel/no_button" | "image_panel" | "image_panel/padding_2" | "image_panel/dialog_image_with_border" | "main_panel" | "main_panel/padding_0" | "main_panel/image_panel" | "main_panel/padding_1" | "main_panel/button_panel" | "rating_prompt_screen" | "rating_prompt_screen_content"; -export type RealmsCommon = "pending_invites_icon" | "dark_banner" | "dark_banner_hover" | "legacy_banner" | "main_banner" | "hollow_banner" | "popup_dialog_bg" | "popup_dialog__play_on_realm" | "popup_dialog__play_on_realm/play_on_realm_popup_background" | "popup_dialog__play_on_realm/gamepad_helpers" | "popup_dialog__play_on_realm/play_on_realm_popup_content" | "play_on_realm_popup_background" | "play_on_realm_popup_content" | "play_on_realm_popup_content/popup_dialog_bg" | "play_on_realm_popup_content/play_on_realm_popup_dialog_header" | "play_on_realm_popup_content/play_on_realm_popup_dialog_upper_body" | "play_on_realm_popup_content/play_on_realm_popup_dialog_lower_body" | "play_on_realm_popup_dialog_header" | "play_on_realm_popup_dialog_header/play_on_realm_popup_dialog_header_text" | "play_on_realm_popup_dialog_header/close_button" | "play_on_realm_popup_dialog_header_text" | "play_on_realm_popup_dialog_upper_body" | "play_on_realm_popup_dialog_upper_body/play_on_realm_banner" | "play_on_realm_popup_dialog_upper_body/play_on_realm_panel" | "play_on_realm_popup_dialog_upper_body/background_panel" | "play_on_realm_popup_dialog_upper_body/background_panel/black_background" | "play_on_realm_panel" | "play_on_realm_panel/play_on_realm_content_panel" | "play_on_realm_panel/play_on_realm_content_panel/play_image_panel" | "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/spacing_gap_image" | "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/realms_image" | "play_on_realm_panel/play_on_realm_content_panel/play_text_panel" | "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_1" | "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_1" | "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_2" | "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_2" | "play_on_realm_popup_dialog_lower_body" | "play_on_realm_popup_dialog_lower_body/button_panel" | "play_on_realm_popup_dialog_lower_body/button_panel/play_with_friends_button" | "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap1" | "play_on_realm_popup_dialog_lower_body/button_panel/play_solo_button" | "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap2" | "play_on_realm_popup_dialog_lower_body/button_panel/go_back_button"; -export type RealmsCreate = "title_label" | "label" | "enter_name_panel" | "enter_name_panel/name_label_0" | "enter_name_panel/name_edit" | "selected_option_checkbox" | "selected_option_checkbox_empty" | "selected_option_checkbox_filled" | "checkbox_panel" | "checkbox_panel/selected_option_checkbox_empty" | "checkbox_panel/selected_option_checkbox_filled" | "checkbox_panel/button_label" | "realms_option_button" | "choose_duration_panel" | "choose_duration_panel/name_label" | "choose_duration_panel/choose_duration_stack_panel" | "choose_duration_panel/choose_duration_stack_panel/short" | "choose_duration_panel/choose_duration_stack_panel/long" | "choose_tier_panel" | "choose_tier_panel/name_label" | "choose_tier_panel/choose_tier_stack_panel" | "choose_tier_panel/choose_tier_stack_panel/player_count_2" | "view_terms_button" | "privacy_policy_button" | "terms_and_conditions_panel" | "terms_and_conditions_panel/name_label" | "terms_and_conditions_panel/terms_string_panel" | "terms_and_conditions_panel/terms_string_panel/banner_fill" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button" | "confirmation_panel" | "confirmation_panel/create_realms_button" | "create_realms_stack_panel" | "create_realms_stack_panel/padding_0" | "create_realms_stack_panel/create_realms_text_panel" | "create_realms_text_panel" | "create_realms_text_panel/create" | "stack_item" | "scroll_stack_panel" | "scroll_stack_panel/name" | "scroll_stack_panel/name/enter_name_panel" | "scroll_stack_panel/padding_0" | "scroll_stack_panel/duration" | "scroll_stack_panel/duration/choose_duration_panel" | "scroll_stack_panel/tier" | "scroll_stack_panel/tier/choose_tier_panel" | "scroll_stack_panel/toc" | "scroll_stack_panel/toc/terms_and_conditions_panel" | "scroll_stack_panel/padding_1" | "scroll_stack_panel/realms_terms_info" | "scroll_stack_panel/realms_terms_info/label_panel" | "scroll_stack_panel/realms_terms_info/label_panel/padding_1" | "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper" | "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper_extra" | "scroll_stack_panel/realms_terms_info/label_panel/padding_2" | "scroll_stack_panel/realms_switch_nso_info" | "terms_section" | "terms_section/terms_section_label" | "terms_section_extra" | "terms_section_extra/terms_section_label" | "main_panel" | "main_panel/scrolling_panel" | "main_panel/padding_0" | "main_panel/confirmation_panel" | "main_panel/padding_1" | "content" | "content/main_panel" | "realms_create_screen" | "realms_create_content_and_factory" | "realms_create_content_and_factory/realms_create_content" | "realms_create_content_and_factory/popup_dialog_factory"; -export type RealmsPendingInvitations = "panel_text" | "banner_panel_base" | "banner_panel_base/background" | "banner_panel_base/indent_panel" | "banner_panel_base/indent_panel/content" | "banner_panel" | "banner_panel_hover" | "realm_invite_button" | "realm_name_label" | "realm_owner_label" | "tts_gamertag_item_info_wrapper" | "gamertag_item_info" | "gamertag_item_info/rnl" | "gamertag_item_info/rol" | "accept_button_content" | "decline_button_content" | "realm_accept_button" | "realm_decline_button" | "realm_accepted_panel" | "gamertag_item_content" | "gamertag_item_content/lb" | "gamertag_item_content/a" | "gamertag_item_content/d" | "gamertag_item_content/ap" | "gamertag_item" | "gamertag_item_grid" | "show_friends_only_toggle_state_content" | "show_friends_only_toggle_state_content/checkbox_holding_panel" | "show_friends_only_toggle_state_content/checkbox_holding_panel/hide_invites" | "show_friends_only_toggle_state_content/hide_invites_text_panel" | "show_friends_only_toggle_state_content/hide_invites_text_panel/hide_invites_text" | "show_friends_only_toggle_on_state_content" | "show_friends_only_toggle_on_state" | "show_friends_only_toggle_off_state_content" | "show_friends_only_toggle_off_state" | "show_friends_only_toggle_on_hover_state_content" | "show_friends_only_toggle_on_hover_state" | "show_friends_only_toggle_off_hover_state_content" | "show_friends_only_toggle_off_hover_state" | "show_friends_only_toggle_on_locked_state_content" | "show_friends_only_toggle_on_locked_state" | "show_friends_only_toggle_off_locked_state_content" | "show_friends_only_toggle_off_locked_state" | "show_friends_only_toggle" | "gamepad_helpers" | "gamepad_helpers/a" | "gamepad_helpers/b" | "no_invites_label_wrapper" | "no_invites_label" | "no_invites_label/label" | "realms_pending_invitation_list" | "realms_pending_invitation_list/upper_padding" | "realms_pending_invitation_list/sfop" | "realms_pending_invitation_list/gig" | "realms_pending_invitation_list/lower_padding" | "realms_pending_invitation_list/nil" | "content_panel" | "realms_pending_invitations_screen" | "realms_invitation_screen_content" | "realms_invitation_screen_content/root_panel" | "realms_invitation_screen_content/root_panel/main_panel" | "realms_invitation_screen_content/root_panel/sgh"; -export type RealmsSlots = "vertical_padding" | "horizontal_padding" | "horizontal_padding_sibling_height" | "realms_background" | "realms_background/gradient" | "realms_background/particle_1" | "realms_background/particle_2" | "plus" | "check" | "world_thumbnail" | "realms_stories_icon_glyph" | "realms_stories_icon_glyph/realms_stories_icon" | "play_button" | "edit_realm_button" | "realms_feed_button" | "unread_story_count_text" | "unread_story_count_text_background" | "unread_story_count_panel" | "unread_story_count_panel/text" | "unread_story_count_panel/text/background" | "edit_world_button_panel" | "edit_world_button_panel/edit_world_button" | "edit_world_button_panel/padding" | "edit_world_button_panel/activate_world_button" | "world_slot_button" | "world_slot_button_content" | "world_slot_button_content/world_slot_top" | "world_slot_button_content/world_slot_top/background" | "world_slot_button_content/world_slot_top/add_world_image_panel" | "world_slot_button_content/world_slot_top/add_world_image_panel/plus_image" | "world_slot_button_content/world_slot_top/world_thumbnail_image_panel" | "world_slot_button_content/world_slot_top/world_thumbnail_image_panel/world_thumbnail" | "world_slot_button_content/world_slot_top/edit_world_button_panel" | "world_slot_button_content/world_slot_top/foreground" | "world_slot_button_content/world_slot_top/check_image" | "world_slot_button_content/world_slot_bottom" | "world_slot_button_content/world_slot_bottom/divider_line_black" | "world_slot_button_content/world_slot_bottom/divider_line_white" | "world_slot_button_content/world_slot_bottom/add_world_text_panel" | "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_grey" | "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_green" | "world_slot_button_content/world_slot_bottom/add_world_text_panel/add_world_text" | "world_slot_button_content/world_slot_bottom/world_info_panel" | "world_slot_button_content/world_slot_bottom/world_info_panel/background" | "world_slot_button_content/world_slot_bottom/world_info_panel/background_green" | "world_slot_button_content/world_slot_bottom/world_info_panel/world_info_stack_panel" | "world_info_stack_panel" | "world_info_stack_panel/world_name_panel" | "world_info_stack_panel/world_name_panel/world_name" | "world_info_stack_panel/world_type_panel" | "world_info_stack_panel/world_type_panel/world_type" | "world_info_stack_panel/bottom_padding" | "main_stack_panel" | "main_stack_panel/padding_0" | "main_stack_panel/button_panel" | "main_stack_panel/button_panel/play_button" | "main_stack_panel/button_panel/left_padding" | "main_stack_panel/button_panel/edit_realm_button" | "main_stack_panel/button_panel/right_padding" | "main_stack_panel/button_panel/feed_panel_with_unread_count" | "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel" | "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel/realms_feed_button" | "main_stack_panel/button_panel/feed_panel_with_unread_count/unread_story_count" | "main_stack_panel/padding_1" | "main_stack_panel/text_panel_0" | "main_stack_panel/text_panel_0/text" | "main_stack_panel/padding_2" | "main_stack_panel/worlds_panel" | "main_stack_panel/worlds_panel/world_slot_1" | "main_stack_panel/worlds_panel/padding_0" | "main_stack_panel/worlds_panel/world_slot_2" | "main_stack_panel/worlds_panel/padding_1" | "main_stack_panel/worlds_panel/world_slot_3" | "main_stack_panel/padding_3" | "main_stack_panel/text_panel_1" | "main_stack_panel/text_panel_1/text" | "realms_slots_screen" | "realms_slots_screen_content" | "realms_slots_screen_content/background" | "realms_slots_screen_content_panel" | "realms_slots_screen_content_panel/main_scroll_panel"; -export type RealmsSettings = "settings_screen" | "generic_section" | "generic_section_wrapper" | "generic_section_wrapper/generic_section" | "checkbox_image" | "checkbox_unchecked_state" | "checkbox_checked_state" | "checkbox_unchecked_hover_state" | "checkbox_checked_hover_state" | "checkbox_unchecked_locked_state" | "checkbox_checked_locked_state" | "player_count_label" | "realm_duration_label" | "realm_subscription_origin_label" | "realm_consumable_to_subscription_info_label" | "manage_subscriptions_button" | "delete_realm_button" | "open_realm_button" | "close_realm_button" | "subscriptions_section" | "subscriptions_section/loading_view" | "subscriptions_section/loading_failed_view" | "subscriptions_section/loaded_view" | "subscriptions_section/loaded_view/player_count_label" | "subscriptions_section/loaded_view/realm_duration_label" | "subscriptions_section/loaded_view/possible_store_mismatch" | "subscriptions_section/loaded_view/realm_subscription_origin_label" | "subscriptions_section/loaded_view/realm_consumable_to_subscription_info_label" | "subscriptions_section/loaded_view/_0" | "subscriptions_section/loaded_view/delete_realm_button" | "subscriptions_section/loaded_view/open_realm_button" | "subscriptions_section/loaded_view/close_realm_button" | "subscriptions_section/loaded_view/_1" | "subscriptions_section/loaded_view/manage_subscriptions_button" | "invite_link_item_content" | "invite_link_item_content/invite_link_item_name_and_expiry_text" | "invite_link_item_content/invite_link_item_name_and_expiry_text/name_text" | "invite_link_item_content/invite_link_item_name_and_expiry_text/spacing_gap" | "invite_link_item_content/invite_link_item_name_and_expiry_text/expiry_text" | "invite_link_item_content/invite_link_item_state_text" | "invite_link_item_content/invite_link_item_state_text/state_text" | "invite_link_item_content/spacing_gap" | "invite_link_item_template" | "invite_link_item_template/invite_link_item_button" | "invite_links_section" | "invite_links_section/loading_view" | "invite_links_section/loading_failed_view" | "invite_links_section/loaded_view" | "invite_links_section/loaded_view/spacing_gap_0" | "invite_links_section/loaded_view/invite_links_info" | "invite_links_section/loaded_view/invite_links_grid" | "invite_links_section/loaded_view/spacing_gap_1" | "invite_links_section/loaded_view/add_invite_link_button" | "advanced_section" | "advanced_section/loading_view" | "advanced_section/loading_failed_view" | "advanced_section/loaded_view" | "advanced_section/loaded_view/spacing_gap_0" | "advanced_section/loaded_view/server_preference" | "advanced_section/loaded_view/set_region_content" | "advanced_section/loaded_view/changes_not_applied_panel" | "advanced_section/loaded_view/changes_not_applied_panel/changes_not_applied_label" | "advanced_section/loaded_view/spacing_gap_1" | "advanced_section/loaded_view/region_help_button" | "set_region_dropdown" | "region_dropdown_content" | "region_dropdown_radio" | "region_help_button_content" | "region_help_button_content/external_link_icon" | "region_help_button_content/spacing_gap_1" | "region_help_button_content/help_text" | "tts_focus_border" | "saves_section" | "saves_section/padding_saves_section_top" | "saves_section/loaded_view" | "saves_section/loaded_view/storage_bar_header_panel" | "saves_section/loaded_view/storage_bar_header_panel/storage_bar_with_header" | "saves_section/loaded_view/storage_bar_header_panel/focus_border" | "saves_section/loaded_view/padding3" | "saves_section/loaded_view/save_active_world_button" | "saves_section/loaded_view/padding4" | "saves_section/loaded_view/active_world_info" | "saves_section/loaded_view/padding5" | "saves_section/loaded_view/storage_warning" | "saves_section/loaded_view/storage_warning/warning_text_panel" | "saves_section/loaded_view/storage_warning/focus_border" | "saves_section/loaded_view/padding6" | "saves_section/loaded_view/save_list_container" | "saves_section/loaded_view/save_list_container/tab_buttons" | "saves_section/loaded_view/save_list_container/tab_content_panel" | "saves_section/loaded_view/padding_loaded_view_bottom" | "saves_section/loaded_view/restore_info" | "saves_section/loaded_view/saves_help_panel" | "saves_section/loading_indicator" | "saves_section/loading_indicator/restore_info" | "saves_section/loading_indicator/loading_text_panel" | "saves_section/loading_indicator/loading_text_panel/loading_text" | "saves_section/loading_indicator/loading_text_panel/loading_text_padding" | "saves_section/loading_indicator/loading_bars" | "saves_section/loading_indicator/loading_bars/progress_loading_bars" | "saves_section/loading_failed_panel" | "saves_section/loading_failed_panel/restore_info" | "saves_section/loading_failed_panel/saves_help_panel" | "saves_section/loading_failed_panel/loading_failed_message" | "saves_help_panel" | "saves_help_panel/padding_help_button_top" | "saves_help_panel/saves_help_button" | "saves_help_panel/padding_help_button_bottom" | "saves_help_button_content" | "saves_help_button_content/external_link_icon" | "saves_help_button_content/spacing_gap_1" | "saves_help_button_content/help_text" | "storage_bar_label_stack_panel" | "storage_bar_label_stack_panel/text_left" | "storage_bar_label_stack_panel/padding" | "storage_bar_label_stack_panel/text_right" | "storage_bar_panel_with_header" | "storage_bar_panel_with_header/label_panel" | "storage_bar_panel_with_header/label_panel/heading_label" | "storage_bar_panel_with_header/padding2" | "storage_bar_panel_with_header/storage_bar_panel" | "realm_storage_heading_label" | "storage_bar_panel" | "storage_bar_panel/storage_bar_label" | "storage_bar_panel/padding" | "storage_bar_panel/storage_bar" | "storage_bar_panel_with_tts_focus_border" | "storage_bar_panel_with_tts_focus_border/storage_bar_panel" | "storage_bar_panel_with_tts_focus_border/focus_border" | "storage_bar" | "storage_bar/empty_progress_bar_beveled" | "storage_bar/storage_fill" | "storage_bar/storage_bar_beveled_overlay" | "active_world_info_panel" | "active_world_info_panel/active_world_info_label_stack_panel" | "active_world_info_panel/active_world_info_label_stack_panel/active_world_name_label" | "active_world_info_panel/active_world_info_label_stack_panel/active_world_size_label" | "active_world_info_panel/focus_border" | "warning_text_panel" | "warning_text_panel/warning_panel" | "warning_text_panel/warning_panel/padding1" | "warning_text_panel/warning_panel/warning_image" | "warning_text_panel/warning_panel/padding2" | "warning_text_panel/padding1" | "warning_text_panel/text_label" | "popup_dialog_background" | "popup_dialog_label" | "delete_selected_saves_button" | "cancel_popup_button" | "free_up_space_popup_content" | "free_up_space_popup_content/common_panel" | "free_up_space_popup_content/title_label" | "free_up_space_popup_content/panel_indent" | "free_up_space_popup_content/panel_indent/inside_header_panel" | "free_up_space_popup_content/button_panel" | "free_up_space_popup_content/button_panel/left_button_panel" | "free_up_space_popup_content/button_panel/pad" | "free_up_space_popup_content/button_panel/right_button_panel" | "free_up_space_popup_scrolling_panel" | "free_up_space_text_description" | "free_up_space_popup_content_stack_panel" | "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel" | "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/free_up_space_storage_bar_panel" | "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/focus_border" | "free_up_space_popup_content_stack_panel/padding_1" | "free_up_space_popup_content_stack_panel/free_up_space_manual_save_list_stack_panel" | "popup_dialog__free_up_space" | "popup_dialog__free_up_space/free_up_space_popup_background" | "popup_dialog__free_up_space/free_up_space_popup_content" | "top_tab" | "tab_content" | "tab_content/text" | "manual_navigation_tab" | "automatic_navigation_tab" | "tab_navigation_panel_layout" | "tab_navigation_panel_layout/content" | "button_tabs_container" | "button_tabs_container/manual_navigation_tab" | "button_tabs_container/automatic_navigation_tab" | "tab_content_panel" | "tab_content_panel/background" | "tab_content_panel/background/manual_save_list" | "tab_content_panel/background/automatic_save_list" | "save_list_panel" | "save_list_panel/save_list" | "manual_save_list_panel" | "manual_tab_info_panel" | "manual_tab_info_panel/info_label" | "manual_save_list_stack_panel" | "manual_save_list_stack_panel/padding1" | "manual_save_list_stack_panel/save_tab_info_label" | "manual_save_list_stack_panel/padding2" | "manual_save_list_stack_panel/stack_panel" | "manual_save_list_stack_panel/padding3" | "automatic_save_list_panel" | "automatic_tab_info_panel" | "automatic_tab_info_panel/info_label" | "automatic_save_list_stack_panel" | "automatic_save_list_stack_panel/padding1" | "automatic_save_list_stack_panel/save_tab_info_label" | "automatic_save_list_stack_panel/padding2" | "automatic_save_list_stack_panel/stack_panel" | "automatic_save_list_stack_panel/padding3" | "options_icon" | "saves_info_accordian" | "saves_info_accordian/main_content_panel" | "saves_info_accordian/main_content_panel/checkbox_button" | "saves_info_accordian/main_content_panel/main_item_toggle" | "saves_info_accordian/main_content_panel/options_button" | "saves_info_accordian/sub_content_panel" | "saves_info_accordian/sub_content_panel/saves_content" | "saves_info_accordion_checkbox" | "saves_info_accordion_checkbox/unchecked_control" | "saves_info_accordion_checkbox/checked_control" | "saves_info_accordion_checkbox/unchecked_hover_control" | "saves_info_accordion_checkbox/checked__hover_control" | "main_item_content" | "main_item_content/date_and_name" | "main_item_content/date_and_name/date_saved_label" | "main_item_content/date_and_name/world_name_label" | "main_item_content/time_and_size" | "main_item_content/time_and_size/save_data_time_label" | "main_item_content/time_and_size/save_data_size_label" | "main_item_content/padding_left_down_icon" | "main_item_content/down_icon" | "main_item_content/down_icon/options_icon" | "main_item_content/padding_right_down_icon" | "option_saves_info_label" | "saves_info_container" | "saves_info_container/saves_info_content" | "saves_info_content" | "saves_info_content/version_panel" | "saves_info_content/pack_header_panel" | "saves_info_content/world_packs_label" | "version_panel" | "version_panel/left_content" | "version_panel/left_content/save_version_label" | "pack_header_panel" | "pack_header_panel/left_content" | "pack_header_panel/left_content/packs_label" | "label_text" | "branch_grid_item_content" | "branch_grid_item_content/branch_text" | "branch_grid_item_content/commit_text" | "matching_item_button_content" | "matching_item_button_content/branch_text" | "matching_item_button_content/commit_text" | "branch_item_template" | "branch_item_template/branch_item_button" | "branches_grid" | "branch_set_panel" | "branch_set_panel/set_branch_id_label" | "version_filter_text_box" | "branch_page_panel" | "branch_page_panel/prev_button" | "branch_page_panel/page_text" | "branch_page_panel/next_button" | "branches_panel" | "branches_panel/branch_label" | "branches_panel/spacing_gap_1" | "branches_panel/set_branch_version_label" | "branches_panel/branch_set_panel" | "branches_panel/spacing_gap_2" | "branches_panel/matching_version_label" | "branches_panel/matching_item_button" | "branches_panel/spacing_gap_3" | "branches_panel/all_commits_label" | "branches_panel/version_filter_text_box" | "branches_panel/branches_grid" | "branches_panel/spacing_gap" | "branches_panel/branch_page_panel" | "branch_section" | "branch_section/branches_panel" | "popup_dialog__backups" | "popup_dialog__backups/transparent_close_button" | "popup_dialog__backups/backup_restore_popup_content" | "backup_restore_popup_content" | "backup_restore_popup_content/popup_dialog_bg" | "backup_restore_popup_content/backup_restore_popup_dialog_header" | "backup_restore_popup_content/backup_restore_popup_dialog_body" | "backup_restore_popup_dialog_header" | "backup_restore_popup_dialog_header/backup_restore_popup_dialog_header_text" | "backup_restore_popup_dialog_header_text" | "backup_restore_popup_dialog_body" | "backup_restore_popup_dialog_body/backup_restore_loading_panel" | "backup_restore_loading_panel" | "backup_restore_loading_panel/backup_restore_loading_stack_panel" | "backup_restore_loading_stack_panel" | "backup_restore_loading_stack_panel/padding" | "backup_restore_loading_stack_panel/backup_restore_text_panel" | "backup_restore_loading_stack_panel/backup_restore_loading_bar_panel" | "backup_restore_loading_stack_panel/padding2" | "backup_restore_text_panel" | "backup_restore_text_panel/loading_text" | "backup_restore_loading_bar_panel" | "backup_restore_loading_bar_panel/progress_loading_bars" | "backup_replace_icon" | "backup_download_icon" | "backup_grid_item_content" | "backup_grid_item_content/backup_grid_item_icon_panel" | "backup_grid_item_content/backup_grid_item_name_and_time_since" | "backup_grid_item_content/backup_grid_item_date_and_time" | "backup_grid_item_content/spacing_gap" | "backup_grid_item_name_and_time_since" | "backup_grid_item_name_and_time_since/date_text" | "backup_grid_item_name_and_time_since/spacing_gap" | "backup_grid_item_name_and_time_since/version_text" | "backup_grid_item_date_and_time" | "backup_grid_item_date_and_time/time_text" | "backup_grid_item_date_and_time/spacing_gap" | "backup_grid_item_date_and_time/size_text" | "backup_grid_item_icon_panel" | "backup_grid_item_icon_panel/backup_replace_icon" | "backup_item_template" | "backup_item_template/backup_item_button" | "backup_item_template/download_backup_panel" | "backup_item_template/download_backup_panel/download_backup_button" | "download_backup_button" | "backup_grid" | "backup_section" | "backup_section/backup_panel" | "backup_info_label" | "backup_network_error_label" | "backup_panel" | "backup_panel/spacing_gap" | "backup_panel/backup_info_label" | "backup_panel/spacing_gap2" | "backup_panel/progress_panel" | "backup_panel/progress_panel/progress_loading_bars" | "backup_panel/backup_grid" | "backup_panel/backup_network_error_label" | "test_content" | "test_content/realms_allowlist_content_panel" | "test_content/gamepad_helpers" | "selector_panel" | "selector_panel/play_button" | "selector_panel/disabled_play_button" | "selector_panel/expired_play_button" | "selector_panel/padding" | "selector_panel/selector_group_label" | "selector_panel/world_button" | "selector_panel/members_button" | "selector_panel/saves_button" | "selector_panel/subscription_button" | "selector_panel/backup_button" | "selector_panel/dev_options_button" | "selector_panel/invite_links_button" | "selector_panel/advanced_button" | "section_content_panels" | "section_content_panels/world_section" | "section_content_panels/players_section" | "section_content_panels/subscription_section" | "section_content_panels/invite_links_section" | "section_content_panels/advanced_section" | "section_content_panels/dev_options_section" | "section_content_panels/backup_section" | "section_content_panels/saves_section" | "popup_dialog__save_options" | "save_options_popup_content" | "save_options_popup_content/restore_button" | "save_options_popup_content/spacing_1" | "save_options_popup_content/download_button" | "save_options_popup_content/spacing_2" | "save_options_popup_content/save_button_container" | "save_options_popup_content/save_button_container/save_button" | "save_options_popup_content/save_button_container/spacing_3" | "save_options_popup_content/delete_button_container" | "save_options_popup_content/delete_button_container/delete_button" | "standalone_dialog_title" | "standalone_dialog_title/left_padding" | "standalone_dialog_title/dialog_title_label" | "standalone_dialog_title/right_padding" | "standalone_dialog_content" | "standalone_dialog_content/dialog_title" | "standalone_dialog_content/content_area" | "standalone_content_area" | "standalone_content_area/control" | "standalone_content_area/control/scrolling_panel" | "realms_settings_screen_base_no_selector_area" | "screen_realm_hub_manage_members" | "screen_realm_hub_invite_links"; -export type RealmsAllowlist = "spacing_gap" | "friends_containing_panel" | "friends_containing_panel/friends_panel" | "friends_panel" | "friends_panel/add_friends_and_invite_link_panel" | "friends_panel/option_dropdown_permissions" | "friends_panel/player_filter_label" | "friends_panel/player_filter_text_box" | "friends_panel/spacing_gap_members_top" | "friends_panel/lists" | "friends_panel/lists/members_label" | "friends_panel/lists/members_stack" | "friends_panel/lists/spacing_gap_members_bottom" | "friends_panel/lists/members_page_panel" | "friends_panel/lists/invited_friends_label" | "friends_panel/lists/invited_stack" | "friends_panel/lists/spacing_gap_invited_friends" | "friends_panel/lists/invited_friends_page_panel" | "friends_panel/lists/uninvited_friends_label" | "friends_panel/lists/uninvited_stack" | "friends_panel/lists/spacing_gap_uninvited_friends" | "friends_panel/lists/uninvited_friends_page_panel" | "friends_panel/lists/blocked_players_label" | "friends_panel/lists/blocked_players_stack" | "friends_panel/lists/spacing_gap_blocked_players" | "friends_panel/lists/blocked_players_page_panel" | "friends_panel/lists/no_invites_label" | "friends_panel/loading_friends" | "add_friends_and_invite_link_panel" | "add_friends_and_invite_link_panel/allowlist_stack_panel" | "add_friends_and_invite_link_panel/allowlist_stack_panel/find_friends_button_panel" | "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_1" | "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel" | "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel/invite_links_button" | "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_2" | "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel" | "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel/clear_members_button" | "options_icon" | "account_link_image" | "account_link_icon" | "account_link_icon/space_01" | "account_link_icon/account_link_image" | "account_link_icon/space_03" | "find_friends_button_panel" | "find_friends_button_panel/find_friends_button" | "invited_friends_label" | "invited_friends_label/friend_title" | "player_filter_label" | "player_filter_label/player_filter_title" | "members_label" | "members_label/friend_title" | "members_label/padding_panel" | "members_label/loading_text" | "blocked_players_label" | "blocked_players_label/friend_title" | "uninvited_friends_label" | "uninvited_friends_label/friend_title" | "no_invites_label" | "loading_friends" | "blocked_grid_item" | "blocked_grid_item/blocked_panel" | "factory_stack" | "member_factory_xbl_profile" | "member_factory_linked_account" | "invited_factory_xbl_profile" | "invited_factory_linked_account" | "uninvited_factory_xbl_profile" | "uninvited_factory_linked_account" | "blocked_factory_xbl_profile" | "blocked_factory_linked_account" | "xbl_profile_panel_factory" | "xbl_profile_blocked_panel_factory" | "linked_account_panel_factory" | "linked_account_blocked_panel_factory" | "xbl_profile_panel" | "xbl_profile_panel/player_status_panel" | "xbl_profile_panel/xbl_user_panel" | "xbl_profile_panel/right_controls_panel" | "xbl_profile_panel/progress" | "factory_gap_template" | "factory_gap_template/gapped_control" | "factory_gap_template/spacing1" | "gapped_xbl_profile_panel" | "gapped_linked_account_panel" | "gapped_blocked_xbl_profile_panel" | "gapped_blocked_linked_account_panel" | "blocked_panel" | "blocked_panel/xbl_user_panel" | "blocked_panel/unblock_button" | "linked_account_panel" | "linked_account_panel/linked_account_positioning_panel" | "linked_account_panel/right_controls_panel" | "linked_account_panel/progress" | "linked_account_blocked_panel" | "linked_account_blocked_panel/linked_account_positioning_panel" | "linked_account_blocked_panel/unblock_button" | "linked_account_blocked_panel/progress" | "xbl_user_panel" | "xbl_user_panel/spacing1" | "xbl_user_panel/platform_icon_positioner" | "xbl_user_panel/gamerpic_panel" | "xbl_user_panel/spacing2" | "xbl_user_panel/gamertag_label_panel" | "third_party_user_panel" | "third_party_user_panel/spacing1" | "third_party_user_panel/profile_picture" | "third_party_user_panel/spacing2" | "third_party_user_panel/third_party_profile_label" | "linked_profile_pictures_panel" | "linked_profile_pictures_panel/pp2" | "linked_profile_pictures_panel/account_link" | "linked_profile_pictures_panel/pp1" | "platform_profile_names" | "platform_profile_names/friend_grid_third_party_tag" | "platform_profile_names/spacer_02" | "platform_profile_names/friend_grid_xbl_gamertag" | "platform_profile_names/spacer_03" | "linked_user_stack_panel" | "linked_user_stack_panel/allow_offset_control" | "linked_user_stack_panel/allow_offset_control/player_status_panel" | "linked_user_stack_panel/platform_icon_positioner" | "linked_user_stack_panel/platform_icon_positioner/platform_icon" | "linked_user_stack_panel/spacing1" | "linked_user_stack_panel/profile_picture" | "linked_user_stack_panel/spacing2" | "linked_user_stack_panel/platform_names_label" | "linked_user_stack_panel/spacing3" | "horizontal_indent" | "vertical_indent" | "gamerpic_panel" | "gamerpic_panel/black_border" | "gamerpic_panel/gamer_pic" | "third_party_profile_pic_panel" | "third_party_profile_pic_panel/black_border" | "third_party_profile_pic_panel/third_party_profile_picture" | "gamertag_label_panel" | "gamertag_label_panel/gamertag_label" | "gamertag_label_panel/real_name_label" | "third_party_profile_label" | "third_party_profile_label/profile_name_label" | "panel_text" | "gamertag_label" | "third_party_profile_name_label" | "real_name_label" | "right_settings_panel" | "right_settings_panel/member_settings" | "member_settings" | "member_settings/minus_button" | "member_settings/horizontal_space" | "member_settings/member_permissions" | "member_settings/op_deop_button" | "right_controls_panel" | "right_controls_panel/right_settings_panel" | "right_controls_panel/uninvited_friends_invite_button" | "player_status_panel" | "player_status_panel/player_online_icon" | "player_status_panel/player_offline_icon" | "permissions_dropdown" | "permissions_dropdown/vertical_space" | "permissions_dropdown/option_dropdown_permissions" | "invite_button" | "minus_button" | "unblock_label" | "unblock_button" | "op_deop_button" | "find_friends_button" | "black_border" | "gamer_pic" | "third_party_profile_picture" | "player_online_icon" | "player_offline_icon" | "plus_icon" | "more_icon" | "share_icon" | "minus_icon" | "op_icon" | "deop_icon" | "player_filter_text_box" | "page_panel" | "page_panel/prev_button" | "page_panel/page_text" | "page_panel/next_button" | "realms_allowlist_panel_content" | "realms_allowlist_content_panel" | "realms_allowlist_content_panel_children" | "realms_allowlist_content_panel_children/realms_allowlist_panel_content" | "realms_allowlist_content_panel_children/done_button" | "realms_allowlist_screen" | "realms_allowlist_content" | "realms_allowlist_content/root_panel" | "realms_allowlist_content/root_panel/realms_allowlist_content_panel" | "transparent_close_button"; -export type RealmsInviteLinkSettings = "generic_section_wrapper" | "generic_section_wrapper/generic_section" | "link_banner" | "clipboard_icon" | "description_wrap" | "description_wrap/description" | "invite_link_url" | "link_panel" | "link_panel/invite_link_url_wrapper" | "link_panel/link_copy_container" | "link_panel/link_copy_container/link_copy" | "general_content" | "general_content/spacing_gap_0" | "general_content/invite_link_title" | "general_content/invite_link_description" | "general_content/spacing_gap_1" | "general_content/link_panel" | "general_content/spacing_gap_2" | "general_content/activate_link_toggle" | "general_content/activate_link_description" | "general_content/spacing_gap_3" | "general_content/infinite_link_toggle" | "general_content/spacing_gap_4" | "general_content/share_link_title" | "general_content/share_link_description" | "general_content/spacing_gap_5" | "general_content/share_link_button" | "general_content/spacing_gap_6" | "general_content/remove_link_title" | "general_content/remove_invite_link_button" | "invite_link_expiration" | "advanced_content" | "advanced_content/spacing_gap_0" | "advanced_content/expiry_title" | "advanced_content/spacing_gap_1" | "advanced_content/expiration_description" | "advanced_content/spacing_gap_2" | "advanced_content/expiration_panel" | "advanced_content/expiration_panel/invite_link_expiration_wrapper" | "advanced_content/expiration_dropdown" | "expiration_dropdown_content" | "selector_panel" | "selector_panel/spacing_gap_0" | "selector_panel/general_button" | "selector_panel/advanced_button" | "section_content_panels" | "section_content_panels/general_section" | "section_content_panels/advanced_section"; -export type RealmsPlusEnded = "subscription_ended_screen" | "subscription_ended_screen_content" | "subscription_ended_screen_content/root_panel" | "subscription_ended_screen_content/root_panel/gamepad_helpers" | "subscription_ended_screen_content/root_panel/main_panel" | "main_panel" | "main_panel/dialog" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "content_stack_panel" | "content_stack_panel/pad_0" | "content_stack_panel/main_content" | "content_stack_panel/pad_1" | "content_stack_panel/button_center_panel" | "content_stack_panel/button_center_panel/buttons" | "content_stack_panel/pad_2" | "main_content_panel" | "main_content_panel/main_content_stack_panel" | "main_content_panel/main_content_stack_panel/image_panel" | "main_content_panel/main_content_stack_panel/pad" | "main_content_panel/main_content_stack_panel/text_panel" | "main_content_panel/main_content_stack_panel/text_panel/text" | "buttons_panel" | "buttons_panel/more_info_button" | "buttons_panel/pad" | "buttons_panel/renew_subscription_button"; -export type RealmsPlus = "realms_plus_pdp_screen" | "realms_plus_upgrade_notice_screen" | "purple_background" | "purple_background/bottom_left_particles" | "purple_background/top_right_particles" | "main_background" | "main_background/dark_blue" | "main_background/grey_gradient" | "dark_blue_background" | "gradient_image_stack" | "gradient_image_stack/solid_pink" | "gradient_image_stack/gradient" | "gradient_content_panel" | "gradient_content_panel/gradient" | "gradient_content_panel/content_panel" | "realmsPlus_screen_main_panel" | "realmsPlus_main_panel" | "realmsPlus_main_panel/root_panel" | "realmsPlus_main_panel/root_panel/main_panel" | "realmsPlus_main_panel/popup_dialog_factory" | "dialog_content" | "dialog_content/selector_area" | "dialog_content/content_area" | "dialog_content/left_right_pane_divider" | "selector_area" | "selector_area/scrolling_panel" | "scrollable_selector_area_content" | "scrollable_selector_area_content/realmsPlus_toggle" | "scrollable_selector_area_content/content_toggle" | "scrollable_selector_area_content/faq_toggle" | "scrollable_selector_area_content/toggle_section_divider" | "scrollable_selector_area_content/buy_now_toggle" | "scrollable_selector_area_content/xbl_btn_panel" | "scrollable_selector_area_content/xbl_btn_panel/xbl_btn" | "scrollable_selector_area_content/focus_reset_input_panel" | "section_toggle_base" | "tab_button_text" | "toggle_base" | "toggle_base/toggle" | "toggle_base/padding" | "realmsPlus_toggle" | "content_toggle" | "faq_toggle" | "buy_now_toggle" | "left_right_pane_divider" | "content_area" | "content_area/control" | "content_area/control/scrolling_panel" | "section_content_panels" | "content_section_top_padding" | "section_base" | "buy_now_content_section" | "buy_now_content_section/content_section_top_padding" | "buy_now_content_section/content" | "markdown_background_animated" | "markdown_background_animated/realms_banner" | "markdown_background_animated/realms_plus_normal" | "markdown_background_animated/realms_plus_hover" | "markdown_background" | "markdown_background/banner_panel" | "markdown_background/banner_panel/banner" | "markdown_background/banner_panel/banner/banner_stack_panel" | "markdown_background/banner_panel/banner/banner_stack_panel/0" | "markdown_background/triangle_panel" | "markdown_background/triangle_panel/triangle" | "empty_label" | "full_width_section_divider"; -export type RealmsPlusContent = "realmsPlus_content_section" | "realmsPlus_content_section/content_section_top_padding" | "realmsPlus_content_section/content_sections" | "realmsPlus_content_section/content_section_bottom_padding" | "content_pack_types_section" | "content_pack_types_section/includes_marketplace_pass_wrapper" | "content_pack_types_section/padding_contentSub" | "content_pack_types_section/pack_types_wrapper" | "content_packs_included_section" | "content_packs_included_section/popular_packs" | "content_packs_included_section/section_divider" | "persona_row" | "persona_row/persona" | "worlds_row" | "pack_types" | "pack_types/middle_row" | "pack_types/middle_row/worlds_contentSub" | "pack_types/middle_row/textures" | "pack_types/bottom_row" | "pack_types/bottom_row/skins_persona_contentSub" | "pack_types/bottom_row/mashups" | "pack_types/bottom_contentSub" | "skins" | "friends_get_access" | "pack_type_row_panel" | "pack_type_description" | "pack_type_description/image_nesting_panel" | "pack_type_description/image_nesting_panel/texture" | "pack_type_description/padding_0" | "pack_type_description/description_nesting_panel" | "pack_type_description/description_nesting_panel/description_label" | "popular_packs" | "popular_packs/padding_0" | "popular_packs/pack_grid" | "popular_packs/view_all_packs_panel" | "popular_packs/view_all_packs_panel/view_all_packs_button" | "popular_packs/padding_1" | "popular_packs/view_character_creator_items_button" | "popular_packs/padding_2" | "popular_packs_label" | "includes_marketplace_pass" | "includes_marketplace_pass_label" | "packs_collection" | "packs_collection/row_1" | "packs_collection/row_1/pack_image_grid_item_0" | "packs_collection/row_1/padding" | "packs_collection/row_1/pack_image_grid_item_1" | "packs_collection/padding_1" | "packs_collection/row_2" | "packs_collection/row_2/pack_image_grid_item_0" | "packs_collection/row_2/padding" | "packs_collection/row_2/pack_image_grid_item_1" | "packs_collection/padding_2" | "pack_image_grid_item" | "pack_image_grid_item/bg" | "pack_image_grid_item/bg/featured_key_art" | "pack_image_grid_item/bg/progress_loading" | "pack_image_grid_item/offer_button" | "pack_image_grid_item/offer_button/default" | "pack_image_grid_item/offer_button/hover" | "pack_image_grid_item/offer_button/pressed"; -export type RealmsPlusFaq = "faq_image_section" | "faq_image_local" | "faq_image_type" | "faq_image_type/0" | "faq_text_section_body" | "faq_text_question" | "faq_text_section" | "faq_text_section/faq_text_question" | "faq_text_section/faq_text_answer" | "faq_price_bound_text_section" | "faq_price_bound_text_section/faq_text_question" | "faq_price_bound_text_section/faq_text_answer" | "faq_question_body" | "faq_question_body/0" | "faq_question_body_stack" | "faq_question_body_horz_padding" | "image_left_faq_question_body" | "image_right_faq_question_body" | "image_left_faq_question_body_flip" | "image_left_faq_question_body_flip/faq_question_left" | "image_right_faq_question_body_flip" | "image_right_faq_question_body_flip/faq_question_right" | "image_left_faq_price_bound" | "faq_section_header_space" | "faq_section_divider" | "faq_content_section" | "faq_content_section/content_section_top_padding_1" | "faq_content_section/faq_header" | "faq_content_section/content_section_top_padding_2" | "faq_content_section/faq_question_1" | "faq_content_section/faq_question_1_divider" | "faq_content_section/faq_question_2" | "faq_content_section/faq_question_2_divider" | "faq_content_section/faq_question_3" | "faq_content_section/faq_question_3_divider" | "faq_content_section/faq_question_4" | "faq_content_section/faq_question_4_divider" | "faq_content_section/faq_question_5" | "faq_content_section/faq_question_5_divider" | "faq_content_section/faq_question_6" | "faq_content_section/faq_question_6_divider" | "faq_content_section/faq_question_7" | "faq_content_section/faq_question_7_divider" | "faq_content_section/faq_question_8" | "faq_content_section/faq_question_8_divider" | "faq_content_section/faq_question_9" | "faq_content_section/faq_question_9_divider" | "faq_content_section/faq_question_10" | "faq_content_section/faq_question_10_divider" | "faq_content_section/faq_question_11" | "faq_content_section/content_section_top_padding_3"; -export type RealmsPlusLanding = "landing_content_section" | "landing_content_section/landing_content" | "landing_content_section/landing_content/title_stack" | "landing_content_section/landing_content/vertical_small_spacer_0" | "landing_content_section/landing_content/divider_panel" | "landing_content_section/landing_content/divider_panel/section_divider" | "landing_content_section/landing_content/vertical_small_spacer_1" | "landing_content_section/landing_content/info_stack" | "landing_content_section/landing_content/vertical_small_spacer_2" | "horizontal_small_spacer" | "vertical_small_spacer" | "vertical_med_spacer" | "vertical_large_spacer" | "title_stack" | "title_stack/title_image_panel" | "title_stack/gradient_panel" | "title_stack/gradient_panel/label_with_gradient_wrapper" | "title_stack/vertical_space" | "title_stack/action_button" | "title_stack/sign_in_button" | "title_stack/vertical_space2" | "label_with_gradient" | "free_trial_text" | "title_image_panel" | "title_image_panel/title_image_container" | "title_image_panel/title_image_container/title_image" | "title_image_panel/title_image_container/title_art_image" | "title_image_panel/title_image_pre_release_container" | "title_image_panel/title_image_pre_release_container/title_image_pre_release" | "info_stack" | "info_stack/info_stack" | "info_stack/info_stack/info_description_stack_retail" | "info_stack/info_stack/info_description_stack_preview" | "info_description_stack_retail" | "info_description_stack_retail/info_section_stack_1" | "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer" | "info_description_stack_retail/info_section_stack_1/info_section_text_1_wrapper" | "info_description_stack_retail/vertical_med_spacer0" | "info_description_stack_retail/divider_centering_panel" | "info_description_stack_retail/divider_centering_panel/divider" | "info_description_stack_retail/vertical_med_spacer1" | "info_description_stack_retail/info_section_stack_recently_added" | "info_description_stack_retail/info_section_stack_recently_added/horizontal_small_spacer" | "info_description_stack_retail/info_section_stack_recently_added/info_section_text_recently_added_wrapper" | "info_description_stack_retail/vertical_med_spacer2" | "info_description_stack_retail/divider_centering_panel2" | "info_description_stack_retail/divider_centering_panel2/divider2" | "info_description_stack_retail/vertical_med_spacer3" | "info_description_stack_retail/info_section_stack_2" | "info_description_stack_retail/info_section_stack_2/horizontal_small_spacer" | "info_description_stack_retail/info_section_stack_2/info_section_text_2_wrapper" | "info_description_stack_prerelease" | "info_description_stack_prerelease/info_section_stack" | "info_description_stack_prerelease/info_section_stack/horizontal_large_spacer" | "info_description_stack_prerelease/info_section_stack/info_section_text_3_wrapper" | "info_section_stack" | "info_section_text_1" | "info_section_text_1/info_text_bullet_1" | "info_section_text_1/vertical_small_spacer_0" | "info_section_text_1/info_text_bullet_2" | "info_section_text_1/vertical_small_spacer_1" | "info_section_text_1/info_text_bullet_3" | "info_section_text_recently_added" | "info_section_text_recently_added/recently_added_header" | "info_section_text_recently_added/info_text_bullet_contentSub" | "info_section_text_recently_added/info_text_bullet_contentSub/vertical_small_spacer_0" | "info_section_text_recently_added/info_text_bullet_contentSub/info_text_bullet_0" | "info_section_text_recently_added/vertical_small_spacer_1" | "info_section_text_recently_added/info_text_bullet_1" | "info_section_text_recently_added/vertical_small_spacer_2" | "info_section_text_recently_added/info_text_bullet_2" | "info_section_text_2" | "info_section_text_2/info_text_bullet_2" | "info_section_text_2/vertical_small_spacer_0" | "info_section_text_2/info_text_bullet_3" | "info_section_text_2/vertical_small_spacer_1" | "info_section_text_2/info_text_bullet_4" | "info_section_text_2/info_text_bullet_notFreeTrial" | "info_section_text_2/info_text_bullet_notFreeTrial/vertical_small_spacer" | "info_section_text_2/info_text_bullet_notFreeTrial/info_text_bullet_4" | "info_section_text_3" | "info_section_text_3/info_text_unbulletted_1" | "info_section_text_3/vertical_large_spacer_0" | "info_section_text_3/info_text_unbulletted_2" | "info_section_text_3/vertical_large_spacer_1" | "info_section_text_3/info_text_unbulletted_3" | "info_section_text_3/vertical_large_spacer_2" | "info_section_text_3/info_text_unbulletted_4" | "info_section_text" | "info_text_bullet" | "info_text_bullet/info_text_bullet_bullet" | "info_text_bullet/info_text_bullet_body" | "info_text_unbulletted" | "info_text_unbulletted/info_text_bullet_body"; -export type RealmsPlusBuy = "buy_now_content" | "buy_now_content/description_stack" | "buy_now_content/realm_name" | "buy_now_content/terms_and_conditions" | "buy_now_content/padding_2" | "buy_now_content/buy_button" | "buy_now_content/padding_3" | "buy_now_content/platform_terms_factory" | "content_text_section" | "content_text_section/text_description_wrapper" | "content_text_section/padding" | "content_description" | "content_description/content_description_label" | "trial_image_and_description" | "trial_image_and_description/realms_image" | "trial_image_and_description/padding" | "trial_image_and_description/description_text_wrapper" | "description_text" | "title_text" | "title_with_gradient" | "description_stack" | "description_stack/title_with_gradient_wrapper" | "description_stack/padding" | "description_stack/image_and_description" | "realm_name_stack" | "realm_name_stack/realm_name_label" | "realm_name_stack/padding_0" | "realm_name_stack/realm_name_text_box" | "terms_and_conditions" | "terms_and_conditions/terms_panel" | "terms_and_conditions_panel" | "terms_and_conditions_panel/name_label" | "terms_and_conditions_panel/terms_string_panel" | "terms_and_conditions_panel/terms_string_panel/banner_fill" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button" | "button_text" | "view_terms_button" | "privacy_policy_button" | "buy_button_panel" | "buy_button_panel/buy_button" | "buy_button_content" | "buy_button_content/button_chevron_panel" | "buy_button_content/button_chevron_panel/buy_button_chevron" | "buy_button_content/button_text"; -export type RealmsPlusPacks = "view_all_packs_screen" | "view_packs_screen_content" | "view_packs_screen_content/main_panel" | "realmsPlus_view_packs_screen_main_panel" | "main_panel" | "main_panel/offers" | "main_panel/progress_loading" | "scrolling_content_stack" | "scrolling_content_stack/padding_0" | "scrolling_content_stack/store_factory"; -export type RealmsPlusPurchaseWarning = "realmsPlus_purchase_warning_screen" | "purchase_warning_screen_content" | "purchase_warning_screen_content/main_panel" | "warning_modal_main_panel" | "warning_modal_main_panel/art_panel" | "warning_modal_main_panel/art_panel/art" | "warning_modal_main_panel/padding" | "warning_modal_main_panel/text_panel" | "warning_modal_main_panel/text_panel/description_panel" | "warning_modal_main_panel/text_panel/description_panel/description_text" | "warning_modal_main_panel/text_panel/padding" | "warning_modal_main_panel/text_panel/checkbox_with_label_panel" | "warning_modal_main_panel/text_panel/checkbox_with_label_panel/checkbox_panel" | "warning_modal_main_panel/text_panel/checkbox_with_label_panel/padding" | "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel" | "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel/label_text" | "warning_modal_button_panel" | "warning_modal_button_panel/back_button" | "warning_modal_button_panel/padding" | "warning_modal_button_panel/continue_button"; -export type RealmsStoriesTransition = "realms_stories_transition_screen"; -export type Redstone = "item_dropper_label" | "dispenser_label" | "crafter_label" | "dropper_label" | "hopper_label" | "redstone_input_grid" | "redstone_panel_top_half" | "redstone_panel_top_half/redstone_input_grid" | "panel" | "panel/container_gamepad_helpers" | "panel/selected_item_details_factory" | "panel/item_lock_notification_factory" | "panel/root_panel" | "panel/root_panel/common_panel" | "panel/root_panel/redstone_screen_inventory" | "panel/root_panel/redstone_screen_inventory/red_panel" | "panel/root_panel/redstone_screen_inventory/red_bottom_half" | "panel/root_panel/redstone_screen_inventory/hotbar_grid" | "panel/root_panel/redstone_screen_inventory/red_hold_icon" | "panel/root_panel/red_icon" | "panel/root_panel/gamepad_cursor" | "panel/flying_item_renderer" | "crafter_input_grid" | "cell_image" | "crafter_highlight_slot" | "crafter_container_slot_button_prototype" | "crafter_highlight_slot_panel" | "crafter_highlight_slot_panel/highlight" | "crafter_highlight_slot_panel/highlight/hover_text" | "crafter_highlight_slot_panel/white_border" | "crafter_enabled_slot_template" | "crafter_disabled_slot" | "crafter_disabled_slot/default" | "crafter_disabled_slot/hover" | "crafter_disabled_slot/pressed" | "output_slot_hover_info" | "output_slot_hover_info/hover" | "output_slot_hover_info/output_slot" | "output_slot_hover_info/output_slot_border" | "output_slot_hover_info/output_count" | "panel_crafter" | "panel_crafter/container_gamepad_helpers" | "panel_crafter/selected_item_details_factory" | "panel_crafter/item_lock_notification_factory" | "panel_crafter/root_panel" | "panel_crafter/root_panel/common_panel" | "panel_crafter/root_panel/disabled_slot_0_button" | "panel_crafter/root_panel/disabled_slot_1_button" | "panel_crafter/root_panel/disabled_slot_2_button" | "panel_crafter/root_panel/disabled_slot_3_button" | "panel_crafter/root_panel/disabled_slot_4_button" | "panel_crafter/root_panel/disabled_slot_5_button" | "panel_crafter/root_panel/disabled_slot_6_button" | "panel_crafter/root_panel/disabled_slot_7_button" | "panel_crafter/root_panel/disabled_slot_8_button" | "panel_crafter/root_panel/redstone_screen_inventory" | "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid" | "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid" | "panel_crafter/root_panel/redstone_screen_inventory/red_bottom_half" | "panel_crafter/root_panel/redstone_screen_inventory/hotbar_grid" | "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon" | "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line" | "panel_crafter/root_panel/redstone_screen_inventory/crafter_output" | "panel_crafter/root_panel/red_icon" | "panel_crafter/root_panel/gamepad_cursor" | "panel_crafter/flying_item_renderer" | "hopper_screen" | "dispenser_screen" | "crafter_screen" | "dropper_screen"; -export type ResourcePacks = "black_image" | "gray_image" | "yellow_image" | "white_image" | "white_image/border" | "icon_image" | "resource_packs_toggle_button_control" | "resource_packs_toggle_button_control/icon_border" | "resource_packs_toggle_button_control/cycling_icon" | "resource_packs_toggle_button_control/tab_button_text" | "resource_packs_section_toggle_base" | "selected_icon_image" | "available_icon_image" | "realms_icon_image" | "unowned_icon_image" | "invalid_icon_image" | "minus_image" | "plus_image" | "minus_text" | "plus_text" | "store_text" | "error_image" | "error_image_hover" | "error_image_panel" | "error_image_panel/default" | "error_image_panel/hover" | "warning_image" | "warning_image_hover" | "warning_panel" | "warning_panel/default" | "warning_panel/hover" | "no_error_image" | "no_error_image_hover" | "no_error_panel" | "no_error_panel/default" | "no_error_panel/hover" | "up_arrow_image" | "down_arrow_image" | "up_arrow_image_hover" | "down_arrow_image_hover" | "up_arrow_panel" | "up_arrow_panel/default" | "up_arrow_panel/hover" | "up_arrow_wrapper" | "up_arrow_wrapper/down_arrow" | "up_arrow_wrapper/divider_right" | "down_arrow_panel" | "down_arrow_panel/default" | "down_arrow_panel/hover" | "down_arrow_wrapper" | "down_arrow_wrapper/down_arrow" | "down_arrow_wrapper/divider_right" | "progress_loading_bars" | "warning_image_wrapper" | "warning_image_wrapper/error_image" | "warning_image_wrapper/warning_image" | "warning_image_wrapper/no_error_panel" | "warning_image_wrapper/progress_loading_bars" | "tooltip_image_wrapper" | "tooltip_image_wrapper/error_image" | "tooltip_image_wrapper/warning_image" | "options_image" | "options_image_hover" | "options_image_panel" | "options_image_panel/default" | "options_image_panel/hover" | "options_image_panel/hover/image" | "options_image_panel/hover/border" | "options_wrapper" | "options_wrapper/options" | "options_wrapper/divider_right" | "common_pack_button" | "available_text_panel" | "available_text_panel/name_panel" | "available_text_panel/name_panel/available_pack_name_label" | "available_text_panel/name_panel/available_file_size_label" | "available_text_panel/full_panel" | "available_text_panel/full_panel/description_panel" | "available_text_panel/full_panel/description_panel/available_pack_description_label" | "realms_text_panel" | "realms_text_panel/name_panel" | "realms_text_panel/name_panel/realms_pack_name_label" | "realms_text_panel/name_panel/realms_file_size_label" | "realms_text_panel/description_panel" | "realms_text_panel/description_panel/realms_pack_description_label" | "unowned_text_panel" | "unowned_text_panel/name_panel" | "unowned_text_panel/name_panel/unowned_pack_name_label" | "unowned_text_panel/name_panel/unowned_file_size_label" | "unowned_text_panel/description_panel" | "unowned_text_panel/description_panel/unowned_pack_description_label" | "selected_text_panel" | "selected_text_panel/name_panel" | "selected_text_panel/name_panel/selected_pack_name_label" | "selected_text_panel/name_panel/selected_file_size_label" | "selected_text_panel/name_panel/active_dot_panel" | "selected_text_panel/name_panel/active_dot_panel/active_dot" | "selected_text_panel/full_panel" | "selected_text_panel/full_panel/warning_line" | "selected_text_panel/full_panel/warning_line/warning_text" | "selected_text_panel/full_panel/warning_line/warning_number" | "selected_text_panel/full_panel/error_line" | "selected_text_panel/full_panel/error_line/error_text" | "selected_text_panel/full_panel/error_line/error_number" | "selected_text_panel/full_panel/expired_line" | "selected_text_panel/full_panel/expired_line/expired_text" | "selected_text_panel/full_panel/description_panel" | "selected_text_panel/full_panel/description_panel/selected_pack_description_label" | "invalid_text_panel" | "invalid_text_panel/full_panel" | "invalid_text_panel/full_panel/error_line" | "invalid_text_panel/full_panel/error_line/error_text" | "invalid_text_panel/full_panel/error_line/error_number" | "available_pack_button_layout" | "available_pack_button_layout/available_icon_image" | "available_pack_button_layout/text_panel_small" | "available_pack_button_layout/text_panel_full" | "available_pack_button_layout/read_more_button_panel" | "available_pack_button_layout/read_less_button_panel" | "available_pack_button_layout_hover" | "available_pack_button_layout_hover/hover_small" | "available_pack_button_layout_hover/available_icon_image" | "available_pack_button_layout_hover/text_panel_small" | "available_pack_button_layout_hover/text_panel_full_hover" | "available_pack_button_layout_hover/text_panel_full_hover/text_panel_full" | "available_pack_button_layout_hover/read_more_button_panel" | "available_pack_button_layout_hover/read_less_button_panel" | "available_pack_button" | "available_pack_button/default" | "available_pack_button/pressed" | "available_pack_button/hover" | "realms_pack_button_layout" | "realms_pack_button_layout/realms_icon_image" | "realms_pack_button_layout/text_panel_small" | "realms_pack_button_layout/text_panel_full" | "realms_pack_button_layout/read_more_button_panel" | "realms_pack_button_layout/read_less_button_panel" | "realms_pack_button_layout_hover" | "realms_pack_button_layout_hover/hover_small" | "realms_pack_button_layout_hover/realms_icon_image" | "realms_pack_button_layout_hover/text_panel_small" | "realms_pack_button_layout_hover/text_panel_full_hover" | "realms_pack_button_layout_hover/text_panel_full_hover/text_panel_full" | "realms_pack_button_layout_hover/read_more_button_panel" | "realms_pack_button_layout_hover/read_less_button_panel" | "realms_pack_button" | "realms_pack_button/default" | "realms_pack_button/pressed" | "realms_pack_button/hover" | "unowned_pack_button_layout" | "unowned_pack_button_layout/unowned_icon_image" | "unowned_pack_button_layout/text_panel_small" | "unowned_pack_button_layout/text_panel_full" | "unowned_pack_button_layout/read_more_button_panel" | "unowned_pack_button_layout/read_less_button_panel" | "unowned_pack_button_layout_hover" | "unowned_pack_button_layout_hover/hover_small" | "unowned_pack_button_layout_hover/unowned_icon_image" | "unowned_pack_button_layout_hover/text_panel_small" | "unowned_pack_button_layout_hover/text_panel_full_hover" | "unowned_pack_button_layout_hover/text_panel_full_hover/text_panel_full" | "unowned_pack_button_layout_hover/read_more_button_panel" | "unowned_pack_button_layout_hover/read_less_button_panel" | "unowned_pack_button" | "unowned_pack_button/default" | "unowned_pack_button/pressed" | "unowned_pack_button/hover" | "invalid_pack_button_layout" | "invalid_pack_button_layout/invalid_icon_image" | "invalid_pack_button_layout/text_panel" | "invalid_pack_button_layout_hover" | "invalid_pack_button_layout_hover/hover_small" | "invalid_pack_button_layout_hover/invalid_icon_image" | "invalid_pack_button_layout_hover/text_panel_full_hover" | "invalid_pack_button_layout_hover/text_panel_full_hover/text_panel" | "invalid_pack_button" | "invalid_pack_button/default" | "invalid_pack_button/pressed" | "invalid_pack_button/hover" | "empty_resource_pack_button" | "resource_pack_button_padding" | "input_button_panel" | "input_button_panel/border_image" | "input_button_panel/border_image/button_panel" | "input_button_panel/border_image/button_panel/padding_0" | "input_button_panel/border_image/button_panel/padding_1" | "input_button_panel/border_image/button_panel/padding_2" | "input_button_panel/border_image/button_panel/padding_3" | "input_button_panel/border_image/button_panel/padding_4" | "input_button_panel/background" | "selected_pack_button_layout" | "selected_pack_button_layout/selected_icon_image" | "selected_pack_button_layout/text_panel_small" | "selected_pack_button_layout/text_panel_full" | "selected_pack_button_layout/read_more_button_panel" | "selected_pack_button_layout/read_less_button_panel" | "selected_pack_button_layout_hover" | "selected_pack_button_layout_hover/hover_small" | "selected_pack_button_layout_hover/selected_icon_image" | "selected_pack_button_layout_hover/text_panel_small" | "selected_pack_button_layout_hover/text_panel_full_hover" | "selected_pack_button_layout_hover/text_panel_full_hover/text_panel_full" | "selected_pack_button_layout_hover/read_more_button_panel" | "selected_pack_button_layout_hover/read_less_button_panel" | "selected_pack_button" | "selected_pack_button/default" | "selected_pack_button/pressed" | "selected_pack_button/hover" | "selected_pack_movement_button" | "selected_pack_transparent_movement_button" | "selected_pack_minus_button" | "selected_pack_plus_button" | "selected_pack_store_button" | "selected_pack_store_button_fill" | "selected_pack_up_button" | "selected_pack_down_button" | "selected_pack_warning_button" | "selected_pack_options_button" | "white_label" | "gray_label" | "suggested_content_offers_title_label" | "available_packs_title_content" | "realms_packs_title_content" | "unowned_packs_title_content" | "selected_packs_title_content" | "selected_packs_title_content/selected_packs_title_label" | "selected_packs_title_content/fill_pad" | "selected_packs_title_content/icon_panel" | "selected_packs_title_content/icon_panel/block_icon" | "selected_packs_title_content/pad_0" | "selected_packs_title_content/count" | "selected_packs_title_content/pad_1" | "selected_packs_title_content/plus_panel" | "selected_packs_title_content/plus_panel/plus" | "selected_packs_title_content/minus_panel" | "selected_packs_title_content/minus_panel/minus" | "available_packs_title_button" | "realms_packs_title_button" | "unowned_packs_title_button" | "selected_packs_title_button" | "name_label" | "size_label" | "description_label" | "pack_label" | "selected_pack_description_label" | "available_pack_description_label" | "realms_pack_description_label" | "unowned_pack_description_label" | "selected_pack_name_label" | "selected_file_size_label" | "available_pack_name_label" | "available_file_size_label" | "realms_pack_name_label" | "realms_file_size_label" | "unowned_pack_name_label" | "unowned_file_size_label" | "invalid_pack_name_label" | "invalid_pack_description_label" | "available_panel" | "available_panel/selected_packs" | "checkbox_visuals" | "header_control" | "header_control/header_description_stack_panel" | "header_control/header_description_stack_panel/checkbox_visuals" | "header_control/header_description_stack_panel/buffer_panel" | "header_control/header_description_stack_panel/buffer_panel/label" | "addon_header_control" | "addon_header_control/header_description_stack_panel" | "addon_header_control/header_description_stack_panel/padding_0" | "addon_header_control/header_description_stack_panel/description_center_panel" | "addon_header_control/header_description_stack_panel/description_center_panel/label" | "addon_header_control/header_description_stack_panel/padding_1" | "addon_header_control/header_description_stack_panel/link_center_panel" | "addon_header_control/header_description_stack_panel/link_center_panel/addon_link_button" | "addon_header_control/header_description_stack_panel/padding_2" | "panel_bg" | "panel_bg/black_background" | "panel_bg/gray" | "addon_panel_bg" | "addon_panel_bg/black_background" | "addon_panel_bg/yellow" | "error_panel" | "error_panel/black_background" | "error_panel/black_background/gray" | "error_panel/black_background/gray/panel" | "error_panel/black_background/gray/panel/error_label" | "selected_stack_panel" | "selected_stack_panel/world_template_option_lock_panel" | "selected_stack_panel/world_template_option_lock_panel/option_info_label" | "selected_stack_panel/top_panel" | "selected_stack_panel/top_panel/panel_bg" | "selected_stack_panel/top_panel/header_control" | "selected_stack_panel/offset_0" | "selected_stack_panel/addon_stacking_warning_panel" | "selected_stack_panel/addon_stacking_warning_panel/addon_panel_bg" | "selected_stack_panel/addon_stacking_warning_panel/header_control" | "selected_stack_panel/offset_1" | "selected_stack_panel/selected_packs_title_panel" | "selected_stack_panel/selected_packs_title_panel/selected_packs_title_button" | "selected_stack_panel/selected_packs_title_panel/tooltip" | "selected_stack_panel/selected_packs_title_panel/tooltip/button" | "selected_stack_panel/selected_pack_section" | "selected_stack_panel/selected_pack_section/offset" | "selected_stack_panel/selected_pack_section/selected_pack_grid" | "selected_stack_panel/selected_pack_section/default_item" | "selected_stack_panel/selected_pack_section/default_item/icon_image" | "selected_stack_panel/selected_pack_section/default_item/name_panel" | "selected_stack_panel/selected_pack_section/default_item/name_panel/white_label" | "selected_stack_panel/selected_pack_section/default_item/description_panel" | "selected_stack_panel/selected_pack_section/default_item/description_panel/white_label" | "selected_stack_panel/selected_pack_section/filler_panel" | "selected_stack_panel/selected_pack_section/filler_panel/description_label" | "selected_stack_panel/offset_2" | "selected_stack_panel/available_packs_title_panel" | "selected_stack_panel/available_packs_title_panel/available_packs_title_button" | "selected_stack_panel/available_packs_title_panel/tooltip" | "selected_stack_panel/available_packs_title_panel/tooltip/button" | "selected_stack_panel/available_packs_section" | "selected_stack_panel/available_packs_section/offset" | "selected_stack_panel/available_packs_section/empty_panel" | "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel" | "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel/no_packs_text" | "selected_stack_panel/available_packs_section/empty_panel/to_store_button" | "selected_stack_panel/available_packs_section/available_pack_grid" | "selected_stack_panel/available_packs_section/invalid_pack_grid" | "selected_stack_panel/offset_3" | "selected_stack_panel/realms_packs_title_button" | "selected_stack_panel/realms_packs_section" | "selected_stack_panel/realms_packs_section/offset" | "selected_stack_panel/realms_packs_section/realms_pack_grid" | "selected_stack_panel/realms_packs_section/offset_4" | "selected_stack_panel/offset_4" | "selected_stack_panel/unowned_packs_title_button" | "selected_stack_panel/unowned_packs_section" | "selected_stack_panel/unowned_packs_section/offset" | "selected_stack_panel/unowned_packs_section/unowned_pack_grid" | "selected_stack_panel/unowned_packs_section/to_store_button" | "selected_stack_panel/unowned_packs_section/offset_4" | "available_stack_panel" | "available_stack_panel/available_packs_title_button" | "available_stack_panel/available_pack_grid" | "pack_background" | "pack_background/white_image" | "pack_background/gray_image" | "selected_pack_panel" | "selected_pack_panel/selected_pack_button" | "selected_pack_panel/pad_0" | "selected_pack_panel/center_panel" | "selected_pack_panel/center_panel/visibility_panel" | "selected_pack_panel/center_panel/visibility_panel/selected_pack_direction_buttons" | "selected_pack_panel/divider" | "selected_pack_panel/pad_1" | "available_pack_panel" | "available_pack_panel/available_pack_button" | "available_pack_panel/pad_0" | "available_pack_panel/center_panel" | "available_pack_panel/center_panel/available_pack_direction_buttons" | "available_pack_panel/divider" | "available_pack_panel/pad_1" | "realms_pack_panel" | "realms_pack_panel/realms_pack_button" | "realms_pack_panel/pad_0" | "realms_pack_panel/center_panel" | "realms_pack_panel/center_panel/realms_pack_direction_buttons" | "realms_pack_panel/divider" | "realms_pack_panel/pad_1" | "unowned_pack_panel" | "unowned_pack_panel/unowned_pack_button" | "unowned_pack_panel/pad_0" | "unowned_pack_panel/center_panel" | "unowned_pack_panel/center_panel/realms_pack_direction_buttons" | "unowned_pack_panel/divider" | "unowned_pack_panel/pad_1" | "invalid_pack_panel" | "invalid_pack_panel/invalid_pack_button" | "invalid_pack_panel/pad_0" | "invalid_pack_panel/divider" | "invalid_pack_panel/pad_1" | "selected_pack_grid" | "available_pack_grid" | "realms_pack_grid" | "unowned_pack_grid" | "invalid_pack_grid"; -export type SafeZone = "corner_image_common" | "corner_bl" | "corner_br" | "corner_tr" | "corner_tl" | "confirm_button" | "title_text" | "instructions_text" | "instructions_text/inner_label" | "label_button" | "label_button_hover" | "label_button_hover/hover" | "label_button_hover/hover/button_hover_text" | "content_panel" | "content_panel/safe_zone_slider_all" | "content_panel/safe_zone_slider_x" | "content_panel/safe_zone_slider_y" | "content_panel/screen_position_slider_x" | "content_panel/screen_position_slider_y" | "content_panel/instruction_text_button" | "content_panel/instruction_text_button/default" | "content_panel/instruction_text_button/pressed" | "content_panel/instruction_text_button/hover" | "safe_zone_screen" | "safe_zone_screen/safe_zone_bounds_markers" | "safe_zone_screen/safe_zone_bounds_markers/top_left_marker" | "safe_zone_screen/safe_zone_bounds_markers/top_right_marker" | "safe_zone_screen/safe_zone_bounds_markers/bottom_left_marker" | "safe_zone_screen/safe_zone_bounds_markers/bottom_right_marker" | "safe_zone_screen/main_content_panel" | "safe_zone_screen/main_content_panel/common_panel" | "safe_zone_screen/main_content_panel/title_text" | "safe_zone_screen/main_content_panel/scrolling_panel" | "safe_zone_screen/main_content_panel/confirm_button"; -export type StorageMigrationCommon = "progress_panel" | "progress_panel/common_panel" | "progress_panel/base_content" | "progress_panel/base_content/progress_title_text" | "progress_panel/base_content/progress_bar_text" | "progress_panel/inside_content" | "progress_panel/inside_content/size_label" | "progress_panel/inside_content/padding_1" | "progress_panel/inside_content/loading_bar_panel" | "progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars" | "progress_panel/inside_content/loading_bar_panel/progress_loading_bars" | "progress_panel/inside_content/padding_3" | "label" | "base_button" | "retry_button" | "go_to_faq_button" | "next_button" | "get_started_button" | "start_transfer_button" | "finished_main_menu_button" | "start_transfer_out_of_space_button" | "continue_out_of_space_button" | "resume_transfer_button" | "exit_button" | "retry_help_button_panel" | "retry_help_button_panel/retry" | "retry_help_button_panel/padding" | "retry_help_button_panel/help" | "modal_no_buttons" | "modal_one_button" | "modal_two_buttons" | "base_child_control" | "base_child_control/scrolling_panel" | "file_size_description" | "file_size_description/description" | "file_size_description/padding" | "file_size_description/size_stack" | "file_size_description/size_stack/file_text" | "file_size_description/size_stack/padding_1" | "file_size_description/size_stack/file_size_total" | "file_size_description/size_stack/padding_2" | "file_size_description/size_stack/file_size_available" | "file_size_description/file_location" | "error_icon_and_description" | "error_icon_and_description/error_image" | "error_icon_and_description/description" | "file_size_description_with_error" | "file_size_description_with_error/file_size" | "file_size_description_with_error/padding" | "file_size_description_with_error/error_icon_and_description" | "start_transfer" | "start_transfer_content" | "resume_transfer" | "resume_transfer_content" | "resume_transfer_content/file_size" | "transfer_error_out_of_space" | "transfer_error_out_of_space_content"; -export type StorageMigrationGeneric = "storage_migration_generic_screen" | "modal_screen_content" | "modal_screen_content/modal_progress_panel_no_cancel" | "modal_screen_content/popup_dialog_factory" | "start_transfer" | "start_transfer_out_of_space" | "start_transfer_out_of_space_content" | "start_transfer_out_of_space_content/base_start_content" | "start_transfer_out_of_space_content/padding" | "start_transfer_out_of_space_content/error_icon_and_description" | "finished" | "finished_content" | "finished_content/description" | "resume_transfer_out_of_space" | "resume_transfer_out_of_space_content" | "transfer_error" | "transfer_error_content" | "transfer_error_content/description" | "transfer_error_out_of_space"; -export type Scoreboard = "scoreboard_sidebar_score" | "scoreboard_sidebar_player" | "scoreboard_sidebar" | "scoreboard_sidebar/main" | "scoreboard_sidebar/main/displayed_objective" | "scoreboard_sidebar/main/lists" | "scoreboard_sidebar/main/lists/players" | "scoreboard_sidebar/main/lists/horizontal_padding" | "scoreboard_sidebar/main/lists/scores" | "scoreboard_sidebar/displayed_objective_background" | "scoreboard_player_list" | "scoreboard_player_list/vertical_padding_0" | "scoreboard_player_list/social_buttons_panel" | "scoreboard_player_list/vertical_padding_1" | "scoreboard_player_list/permissions_button" | "scoreboard_player_list/vertical_padding_2" | "scoreboard_player_list/players_label" | "scoreboard_player_list/vertical_padding_3" | "scoreboard_player_list/scored_players_grid_panel" | "scoreboard_player_list/vertical_padding_4" | "scoreboard_player_list/unscored_players_grid_panel" | "scoreboard_player_list/vertical_padding_5" | "scoreboard_player_list/invite_players_button_panel" | "scoreboard_player_list/vertical_padding_6" | "scoreboard_player_list/disconnected_from_multiplayer_label_panel" | "scoreboard_player_list/vertical_padding_7" | "list_objective_label" | "player_rank_panel" | "player_rank_panel/player_rank_bg" | "player_rank_panel/player_rank_bg/player_rank" | "player_icon_panel" | "player_icon_panel/player_icon" | "player_icon_panel/player_icon/player_panel_black_border" | "player_icon_panel/permission_icon" | "player_name" | "player_score" | "player_details" | "player_details/name_panel" | "player_details/name_panel/name" | "player_details/score_panel" | "player_details/score_panel/score" | "player_content" | "player_content/icon" | "player_content/padding" | "player_content/details" | "base_player_button" | "player_panel" | "player_panel/rank_base" | "player_panel/rank_base/player_rank" | "player_panel/player_button" | "players_grid_list" | "players_unscored_grid_list" | "players_scored_grid_list"; -export type Screenshot = "screenshot_flash_image" | "screenshot_screen" | "screenshot_screen_content" | "screenshot_screen_content/transparent_background" | "screenshot_screen_content/screenshot_flash"; -export type SelectWorld = "popup_dialog__add_on_common" | "popup_dialog__add_on_common_no_buttons" | "popup_dialog__add_on_common_no_buttons/popup_dialog_bg" | "popup_dialog__add_on_common_no_buttons/popup_dialog_message" | "popup_dialog__add_on_common_no_buttons/close_button" | "popup_dialog__add_on_common_no_buttons/add_on_popup_content_panel" | "popup_dialog__add_on_common_two_buttons" | "popup_dialog__add_on_common_two_buttons/popup_dialog_bg" | "popup_dialog__add_on_common_two_buttons/popup_dialog_message" | "popup_dialog__add_on_common_two_buttons/close_button" | "popup_dialog__add_on_common_two_buttons/add_on_popup_content_panel" | "popup_dialog__add_on_common_two_buttons/button_copy" | "popup_dialog__add_on_common_two_buttons/button_continue" | "add_on_button_copy" | "add_on_button_continue" | "add_on_popup_content_panel" | "add_on_popup_content_panel/popup_content" | "popup_dialog__activate_add_on" | "popup_dialog__activate_add_on_select_world" | "popup_dialog__copy_local_world" | "popup_dialog__copy_realms_world" | "copy_local_world_panel" | "copy_local_world_panel/padding_top" | "copy_local_world_panel/text_box" | "copy_local_world_panel/padding_middle" | "copy_local_world_panel/text_box2" | "copy_realms_world_panel" | "copy_realms_world_panel/padding_top" | "copy_realms_world_panel/text_box" | "copy_realms_world_panel/padding_middle" | "copy_realms_world_panel/text_box2" | "new_or_existing_world_panel" | "new_or_existing_world_panel/padding_left" | "new_or_existing_world_panel/world_icon_existing" | "new_or_existing_world_panel/padding_middle" | "new_or_existing_world_panel/world_icon_new" | "new_or_existing_world_panel/padding_right" | "world_icon_with_button" | "world_icon_with_button/padding_top" | "world_icon_with_button/world_icon" | "world_icon_with_button/button" | "world_icon_with_button/padding_bottom" | "world_icon_new" | "world_icon_new/plus_button" | "world_icon_existing" | "select_world_panel" | "select_world_list" | "select_world_list/realms_world_label" | "select_world_list/realms_world_list" | "select_world_list/padding_middle" | "select_world_list/local_world_label" | "select_world_list/local_world_list" | "select_world_list/padding_end" | "local_world_item_button" | "realms_world_item_button" | "select_world_screen_content" | "select_world_screen_content/popup_dialog_factory" | "select_world_popup_screen"; -export type ServerForm = "third_party_server_screen" | "main_screen_content" | "main_screen_content/server_form_factory" | "long_form" | "long_form_panel" | "long_form_panel/scrolling_panel" | "long_form_scrolling_content" | "long_form_scrolling_content/label_offset_panel" | "long_form_scrolling_content/label_offset_panel/main_label" | "long_form_scrolling_content/padding" | "long_form_scrolling_content/wrapping_panel" | "long_form_scrolling_content/wrapping_panel/long_form_dynamic_buttons_panel" | "long_form_dynamic_buttons_panel" | "dynamic_button" | "dynamic_button/panel_name" | "dynamic_button/panel_name/image" | "dynamic_button/panel_name/progress" | "dynamic_button/form_button" | "dynamic_label" | "dynamic_header" | "custom_form" | "custom_form_panel" | "generated_contents" | "custom_form_scrolling_content" | "custom_form_scrolling_content/generated_form" | "custom_form_scrolling_content/submit_button" | "custom_label" | "custom_header" | "custom_toggle" | "custom_slider" | "custom_step_slider" | "custom_dropdown" | "custom_dropdown/dropdown" | "custom_dropdown_content" | "custom_dropdown_radio" | "custom_input"; -export type Settings = "settings_screen_base" | "screen_world_create" | "screen_template_create" | "screen_world_edit" | "screen_controls_and_settings" | "screen_world_controls_and_settings" | "screen_realm_controls_and_settings" | "screen_realm_member_controls_and_settings" | "screen_realm_settings" | "screen_world_slot_edit" | "screen_realm_manage" | "screen_realm_invite_link_settings" | "selector_stack_panel" | "selector_stack_panel/spacer_0" | "selector_stack_panel/accessibility_button" | "selector_stack_panel/spacer_1" | "selector_stack_panel/how_to_play_button" | "selector_stack_panel/spacer_01" | "selector_stack_panel/world_selector_pane" | "selector_stack_panel/realm_selector_pane" | "selector_stack_panel/controls_and_settings_selector_pane" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_1" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_1_no_spatial" | "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_1" | "selector_stack_panel/controls_and_settings_selector_pane/keyboard_and_mouse_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_01" | "selector_stack_panel/controls_and_settings_selector_pane/controller_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_02" | "selector_stack_panel/controls_and_settings_selector_pane/switch_controller_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_03" | "selector_stack_panel/controls_and_settings_selector_pane/touch_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_04" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_04_no_spatial" | "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_2" | "selector_stack_panel/controls_and_settings_selector_pane/party_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_05" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_05_no_spatial" | "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_3" | "selector_stack_panel/controls_and_settings_selector_pane/general_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_06" | "selector_stack_panel/controls_and_settings_selector_pane/video_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_07" | "selector_stack_panel/controls_and_settings_selector_pane/sound_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_08" | "selector_stack_panel/controls_and_settings_selector_pane/account_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_09" | "selector_stack_panel/controls_and_settings_selector_pane/view_subscriptions_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_10" | "selector_stack_panel/controls_and_settings_selector_pane/global_texture_pack_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_11" | "selector_stack_panel/controls_and_settings_selector_pane/storage_management_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_12" | "selector_stack_panel/controls_and_settings_selector_pane/edu_cloud_storage_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_13" | "selector_stack_panel/controls_and_settings_selector_pane/language_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_14" | "selector_stack_panel/controls_and_settings_selector_pane/creator_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_15" | "selector_stack_panel/controls_and_settings_selector_pane/preview_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_4" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_4_no_spatial" | "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_4" | "selector_stack_panel/controls_and_settings_selector_pane/debug_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_16" | "selector_stack_panel/controls_and_settings_selector_pane/discovery_debug_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_17" | "selector_stack_panel/controls_and_settings_selector_pane/ui_debug_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_18" | "selector_stack_panel/controls_and_settings_selector_pane/edu_debug_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_19" | "selector_stack_panel/controls_and_settings_selector_pane/marketplace_debug_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_20" | "selector_stack_panel/controls_and_settings_selector_pane/gatherings_debug_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_21" | "selector_stack_panel/controls_and_settings_selector_pane/flighting_debug_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_22" | "selector_stack_panel/controls_and_settings_selector_pane/realms_debug_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_23" | "selector_stack_panel/controls_and_settings_selector_pane/automation_button" | "selector_stack_panel/spacer_24" | "selector_stack_panel/addons_selector_panel" | "selector_stack_panel/realms_invite_link_settings_pane" | "section_content_panels" | "section_content_panels/realm_invite_link_settings_content_panels" | "section_content_panels/world_sections" | "section_content_panels/world_sections/game_section" | "section_content_panels/world_sections/classroom_section_panel" | "section_content_panels/world_sections/classroom_section_panel/classroom_section" | "section_content_panels/world_sections/server_section" | "section_content_panels/world_sections/multiplayer_section" | "section_content_panels/world_sections/edu_cloud_section" | "section_content_panels/world_sections/debug_section" | "section_content_panels/packs_sections" | "section_content_panels/packs_sections/level_texture_pack_section" | "section_content_panels/packs_sections/addon_section" | "section_content_panels/section_content_panels" | "section_content_panels/general_and_controls_sections" | "section_content_panels/general_and_controls_sections/accessibility_section" | "section_content_panels/general_and_controls_sections/accessibility_section_ore_ui" | "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section" | "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section_ore_ui" | "section_content_panels/general_and_controls_sections/controller_section" | "section_content_panels/general_and_controls_sections/touch_section" | "section_content_panels/general_and_controls_sections/party_section" | "section_content_panels/general_and_controls_sections/general_tab_section" | "section_content_panels/general_and_controls_sections/general_tab_section_ore_ui" | "section_content_panels/general_and_controls_sections/account_section" | "section_content_panels/general_and_controls_sections/account_section_ore_ui" | "section_content_panels/general_and_controls_sections/global_texture_pack_section" | "section_content_panels/general_and_controls_sections/storage_management_header" | "section_content_panels/general_and_controls_sections/storage_management_section" | "section_content_panels/general_and_controls_sections/edu_cloud_storage_section" | "section_content_panels/general_and_controls_sections/creator_section" | "section_content_panels/general_and_controls_sections/video_section" | "section_content_panels/general_and_controls_sections/video_section_ore_ui" | "section_content_panels/general_and_controls_sections/view_subscriptions_prerelease_section" | "section_content_panels/general_and_controls_sections/view_subscriptions_section" | "section_content_panels/general_and_controls_sections/sound_section" | "section_content_panels/general_and_controls_sections/sound_section_ore_ui" | "section_content_panels/general_and_controls_sections/language_section" | "section_content_panels/general_and_controls_sections/language_section_ore_ui" | "section_content_panels/general_and_controls_sections/preview_section" | "section_content_panels/general_and_controls_sections/debug_section" | "section_content_panels/general_and_controls_sections/ui_debug_section" | "section_content_panels/general_and_controls_sections/edu_debug_section" | "section_content_panels/general_and_controls_sections/marketplace_debug_section" | "section_content_panels/general_and_controls_sections/gatherings_debug_section" | "section_content_panels/general_and_controls_sections/flighting_debug_section" | "section_content_panels/general_and_controls_sections/realms_debug_section" | "section_content_panels/general_and_controls_sections/automation_section" | "section_content_panels/general_and_controls_sections/discovery_debug_section" | "section_content_panels/general_and_controls_sections/how_to_play_section" | "section_header_panels" | "section_header_panels/world_sections" | "section_header_panels/general_and_controls_sections" | "section_footer_panels" | "section_footer_panels/world_sections" | "section_footer_panels/general_and_controls_sections" | "section_footer_panels/general_and_controls_sections/storage_management_footer"; -export type ControlsSection = "binding_button" | "binding_button_content" | "binding_button_content/default_label" | "image_binding_button" | "image_binding_button_content" | "image_binding_button_content/base_icon_image" | "image_binding_button_content/default_label" | "arrow_reset" | "reset_binding_button" | "keymapping_item_parent" | "keymapping_item_parent/keymapping_row" | "keymapping_item" | "keymapping_item/option_info_label_control" | "keymapping_item/option_info_label_control/keymapping_label_control" | "keymapping_item/keymapping_button_0" | "keymapping_item/keymapping_button_1" | "keymapping_grid" | "full_keymapping_grid" | "gamepad_mapping_item" | "gamepad_mapping_item/option_info_label_control" | "gamepad_mapping_item/option_info_label_control/keymapping_label_control" | "gamepad_mapping_item/keymapping_button_0" | "gamepad_mapping_item/keymapping_button_1" | "gamepad_mapping_grid" | "keyboard_and_mouse_button" | "keyboard_and_mouse_section_ore_ui" | "keyboard_and_mouse_section_ore_ui/spacer_0" | "keyboard_and_mouse_section_ore_ui/generic_label" | "keyboard_and_mouse_section_ore_ui/spacer_1" | "keyboard_and_mouse_section_ore_ui/gamepad_helper_label" | "keyboard_and_mouse_section" | "keyboard_and_mouse_section/option_slider_0" | "keyboard_and_mouse_section/option_slider_damen" | "keyboard_and_mouse_section/option_toggle_0" | "keyboard_and_mouse_section/option_toggle_1" | "keyboard_and_mouse_section/option_toggle_2" | "keyboard_and_mouse_section/option_toggle_full_keyboard_gameplay" | "keyboard_and_mouse_section/option_toggle_show_keyboard_prompts" | "keyboard_and_mouse_section/option_toggle_show_learning_prompts" | "keyboard_and_mouse_section/keyboard_section" | "keyboard_and_mouse_section/keyboard_section/option_group_label" | "keyboard_and_mouse_section/keyboard_section/keyboard_keymapping_grid" | "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section" | "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/option_group_label" | "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/control_alt_chord_keymapping_grid" | "keyboard_and_mouse_section/full_keyboard_section" | "keyboard_and_mouse_section/full_keyboard_section/option_slider_smooth_rotation_speed" | "keyboard_and_mouse_section/full_keyboard_section/full_keyboard_label" | "keyboard_and_mouse_section/full_keyboard_section/keyboard_full_keymapping_grid" | "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section" | "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/option_group_label" | "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/control_alt_chord_keymapping_grid" | "keyboard_and_mouse_section/reset_button" | "controller_button" | "controller_section" | "controller_section/option_slider_0" | "controller_section/option_slider_damen" | "controller_section/option_toggle_0" | "controller_section/option_toggle_1" | "controller_section/option_toggle9" | "controller_section/option_toggle10" | "controller_section/option_toggle_11" | "controller_section/gamepad_swap_ab" | "controller_section/gamepad_swap_xy" | "controller_section/gamepad_cursor_sensitivity_option_slider" | "controller_section/option_toggle_3" | "controller_section/option_toggle_4" | "controller_section/option_toggle_5" | "controller_section/option_group_label" | "controller_section/gamepad_keymapping_grid" | "controller_section/reset_button" | "touch_button" | "touch_section" | "touch_section/common_touch_settings" | "touch_section/common_touch_settings/option_enable_new_touch_control_schemes_button" | "touch_section/common_touch_settings/control_scheme_section" | "touch_section/common_touch_settings/control_scheme_section/section_label" | "touch_section/common_touch_settings/control_scheme_section/padding_0" | "touch_section/common_touch_settings/control_scheme_section/image_and_button" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/images" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/touch_image" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/crosshair_image" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/classic_image" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/padding" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_label" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_control" | "touch_section/common_touch_settings/control_scheme_section/padding_1" | "touch_section/common_touch_settings/control_scheme_section/select_control_mode" | "touch_section/common_touch_settings/control_scheme_section/padding_2" | "touch_section/common_touch_settings/modify_control_layout_section" | "touch_section/common_touch_settings/modify_control_layout_section/modify_control_layout_button" | "touch_section/common_touch_settings/modify_control_layout_section/customize_tooltip_option" | "touch_section/common_touch_settings/modify_control_layout_section/padding" | "touch_section/common_touch_settings/option_slider_0" | "touch_section/common_touch_settings/option_slider_damen" | "touch_section/common_touch_settings/option_show_action_button" | "touch_section/common_touch_settings/option_show_block_select_button" | "touch_section/common_touch_settings/option_toggle_left_handed" | "touch_section/common_touch_settings/option_toggle_auto_jump" | "touch_section/common_touch_settings/option_bool_sprint_on_movement" | "touch_section/common_touch_settings/option_show_toggle_camera_perspective_button" | "touch_section/common_touch_settings/joystick_visibility_dropdown" | "touch_section/common_touch_settings/top_button_scale" | "touch_section/common_touch_settings/sneak_dropdown" | "touch_section/common_touch_settings/option_toggle_destroy_vibration" | "touch_section/common_touch_settings/option_toggle_split_vibration" | "touch_section/common_touch_settings/option_creative_delayed_block_breaking" | "touch_section/common_touch_settings/option_toggle_invert_y" | "touch_section/common_touch_settings/option_always_highlight_hovering_box_in_crosshair" | "touch_section/common_touch_settings/option_toggle_use_touchpad" | "touch_section/common_touch_settings/option_toggle_swap_jump_and_sneak" | "touch_section/common_touch_settings/hotbar_only_touch_toggle" | "touch_section/reset_button" | "joystick_visibility_dropdown_content" | "top_button_scale_dropdown_content" | "sneak_dropdown_content" | "customize_tooltip_option_image" | "customize_tooltip_option_popup" | "customize_tooltip_option" | "customize_tooltip_option/customize_tooltip_option_image" | "customize_tooltip_option/customize_tooltip_option_image/hover_detection_input_panel" | "customize_tooltip_option/customize_tooltip_option_popup"; -export type GeneralSection = "general_button" | "general_tab_section_ore_ui" | "general_tab_section_ore_ui/spacer_0" | "general_tab_section_ore_ui/generic_label" | "general_tab_section_ore_ui/spacer_1" | "general_tab_section_ore_ui/gamepad_helper_label" | "general_tab_section" | "general_tab_section/option_toggle_fail_realms_purchase_fulfillment" | "general_tab_section/network_label_header" | "general_tab_section/paddingCrossPlatform" | "general_tab_section/cross_platform_enabled_toggle" | "general_tab_section/paddingCellularData" | "general_tab_section/mobile_data_option_toggle" | "general_tab_section/paddingWebSockets" | "general_tab_section/websockets_enabled_toggle" | "general_tab_section/websocket_encryption_toggle" | "general_tab_section/paddingAutoUpdate" | "general_tab_section/auto_update_mode_dropdown" | "general_tab_section/paddingAutoUpdateToggle" | "general_tab_section/auto_update_enabled_toggle" | "general_tab_section/paddingGameTipsFeature" | "general_tab_section/tutorial_toggle" | "general_tab_section/tutorial_animation_toggle" | "general_tab_section/tutorial_restart_button" | "general_tab_section/paddingTrustedSkins" | "general_tab_section/only_allow_trusted_skins_toggle" | "general_tab_section/paddingFilterProfanity" | "general_tab_section/filter_profanity_toggle" | "general_tab_section/filter_profanity_toggle/option_generic_core" | "general_tab_section/pause_label_header" | "general_tab_section/paddingPauseFeature" | "general_tab_section/pause_toggle" | "general_tab_section/paddingLinkEduSupport" | "general_tab_section/link_button" | "general_tab_section/paddingDividerSustainability" | "general_tab_section/ecomode_label_header" | "general_tab_section/paddingEcoMode" | "general_tab_section/ecomode_enabled_toggle" | "general_tab_section/paddingDividerTermsCreditsAttribution" | "general_tab_section/dividerTermsCreditsAttribution" | "general_tab_section/dividerTermsCreditsAttribution/section_divider" | "general_tab_section/paddingDividerTermsCreditsAttributionAfter" | "general_tab_section/paddingTermsNConditions" | "general_tab_section/terms_and_conditions_link_button" | "general_tab_section/paddingCreditsButton" | "general_tab_section/credits_button" | "general_tab_section/paddingAttribution" | "general_tab_section/attribution_link_button" | "general_tab_section/paddingfeedback" | "general_tab_section/feedback_link_button" | "general_tab_section/paddingLicenses" | "general_tab_section/dividerLicenses" | "general_tab_section/dividerLicenses/section_divider" | "general_tab_section/paddingLicensesAfter" | "general_tab_section/paddingLicensesHeader" | "general_tab_section/licenses_label_header" | "general_tab_section/paddingLicensedContent" | "general_tab_section/licensed_content_link_button" | "general_tab_section/paddingFontLicense" | "general_tab_section/font_license_popup_button" | "general_tab_section/third_party_copyright_info_label_panel" | "general_tab_section/third_party_copyright_info_label_panel/spacer_0" | "general_tab_section/third_party_copyright_info_label_panel/copyright_label" | "general_tab_section/third_party_copyright_info_label_panel/spacer_1" | "general_tab_section/third_party_copyright_info_label_panel/copyright_icon" | "general_tab_section/paddingSectionDividerContentLog" | "general_tab_section/build_info_label_panel" | "general_tab_section/build_info_label_panel/build_info_label" | "general_tab_section/paddingSectionDividerBuildInfo" | "general_tab_section/treatment_ids_label" | "account_section_ore_ui" | "account_section_ore_ui/spacer_0" | "account_section_ore_ui/generic_label" | "account_section_ore_ui/spacer_1" | "account_section_ore_ui/gamepad_helper_label" | "account_button" | "view_account_errors_button_content" | "switch_accounts_button_content" | "switch_accounts_button_content/padded_icon" | "switch_accounts_button_content/padded_icon/icon" | "switch_accounts_button_content/padded_label" | "switch_accounts_button_content/padded_label/label" | "sign_out_button_content" | "sign_out_button_content/padded_label" | "sign_out_button_content/padded_label/label" | "switch_accounts_panel" | "switch_accounts_panel/name_label" | "switch_accounts_panel/paddingSwitchAccounts" | "switch_accounts_panel/switch_accounts" | "sign_out_panel" | "sign_out_panel/sign_out" | "sign_out_fail_popup" | "sign_out_fail_body_panel" | "sign_out_fail_body_content_stack" | "sign_out_fail_body_content_stack/body_text_centering_panel1" | "sign_out_fail_body_content_stack/body_text_centering_panel1/body_text1" | "sign_out_fail_body_content_stack/body_text_centering_panel2" | "sign_out_fail_body_content_stack/body_text_centering_panel2/body_text2" | "sign_out_fail_body_content_stack/padding1" | "sign_out_fail_body_content_stack/learn_more_button" | "sign_out_fail_body_content_stack/padding2" | "sign_out_fail_body_content_stack/close_button" | "account_section" | "account_section/use_edu_remember_me" | "account_section/paddingUseSSO" | "account_section/switch_accounts" | "account_section/sign_out" | "account_section/paddingNameControls" | "account_section/name_controls" | "account_section/paddingSignInControls" | "account_section/signin_controls" | "account_section/paddingGamerTagControls" | "account_section/gamertag_controls" | "account_section/paddingClearMSAToken" | "account_section/clear_msa_token" | "account_section/clear_msa_token/clear_msa_token_button" | "account_section/paddingUnlinkMSAAccount" | "account_section/unlink_msa_account" | "account_section/unlink_msa_account_nx" | "account_section/paddingDeleteAccount" | "account_section/delete_account" | "account_section/paddingUseRemoteConnect" | "account_section/remote_connect_toggle" | "account_section/paddingInfoLabels" | "account_section/account_info_buttom" | "account_section/account_info_buttom/account_info_label" | "name_controls" | "name_controls/option_text_edit_control" | "signin_controls" | "signin_controls/sign_in" | "signin_controls/sign_in/action_button" | "signin_subscription" | "signin_subscription/sign_in" | "signin_subscription/sign_in/please_signin_label" | "gamertag_controls" | "gamertag_controls/gamertag_label" | "gamertag_controls/gamertag_label/panel_descriptor" | "gamertag_controls/gamertag_label/panel_descriptor/label_descriptor" | "gamertag_controls/gamertag_label/spacer" | "gamertag_controls/gamertag_label/gamerpic" | "gamertag_controls/gamertag_label/spacer_2" | "gamertag_controls/gamertag_label/panel_gamertag" | "gamertag_controls/gamertag_label/panel_gamertag/gamertag_label" | "gamertag_controls/paddingXboxAccountButtons" | "gamertag_controls/xboxlive_deep_link_buttons" | "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button" | "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button_mobile" | "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button" | "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button_mobile" | "gamertag_controls/xboxlive_deep_link_buttons/paddingXboxSettingsPrivacyControl" | "gamertag_controls/xboxlive_deep_link_buttons/link_button" | "gamertag_controls/paddingSignOut" | "gamertag_controls/realms_invites" | "gamertag_controls/realms_invites/check_realms_invites_button" | "gamertag_controls/sign_out" | "gamertag_controls/sign_out/action_button" | "gamertag_controls/offline_token_authorization" | "gamertag_controls/offline_token_authorization/request_psn_authorization_button" | "auto_update_mode_dropdown_content" | "global_texture_pack_button" | "global_texture_pack_section" | "storage_management_button" | "storage_management_section" | "storage_management_header" | "storage_management_footer" | "edu_cloud_storage_button" | "edu_cloud_storage_section" | "edu_cloud_storage_section/spacing1" | "edu_cloud_storage_section/edu_cloud_backup_toggle" | "edu_cloud_storage_section/spacing2" | "edu_cloud_storage_section/body_wrapper_panel" | "edu_cloud_storage_section/body_wrapper_panel/tts_border" | "edu_cloud_storage_section/body_wrapper_panel/edu_cloud_storage_body_label" | "edu_cloud_storage_section/spacing3" | "edu_cloud_storage_section/edu_cloud_onedrive_button" | "edu_cloud_storage_section/spacing4" | "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel" | "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/learn_more_button" | "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon" | "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon/icon" | "edu_cloud_onedrive_button_content" | "edu_cloud_onedrive_button_content/padded_label" | "edu_cloud_onedrive_button_content/padded_label/label" | "edu_cloud_onedrive_button_content/padded_icon" | "edu_cloud_onedrive_button_content/padded_icon/icon" | "edu_cloud_onedrive_error_popup" | "edu_cloud_onedrive_error_content" | "edu_cloud_onedrive_error_content/body_text_centering_panel2" | "edu_cloud_onedrive_error_content/body_text_centering_panel2/body_text2" | "edu_cloud_onedrive_error_content/padding2" | "edu_cloud_onedrive_error_content/learn_more_button" | "edu_cloud_onedrive_error_content/padding3" | "edu_cloud_onedrive_error_content/ok_button" | "creator_button" | "editor_toggle_panel" | "editor_toggle_panel/editor_confirmation_panel" | "editor_toggle_panel/editor_confirmation_panel/editor_active_label" | "editor_toggle_panel/editor_confirmation_panel/toggle_spacer" | "editor_toggle_panel/editor_confirmation_panel/editor_confirmation_section_label" | "editor_toggle_panel/editor_toggle_spacer" | "editor_toggle_panel/editor_image_panel" | "editor_toggle_panel/editor_image_panel/editor_icon" | "creator_toggles_panel" | "creator_toggles_panel/section_panel_1" | "creator_toggles_panel/section_panel_1/section_divider" | "creator_toggles_panel/copy_coordinate_section_stack_panel" | "creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label" | "creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label_spacer" | "creator_toggles_panel/copy_coordinate_section_stack_panel/option_content_file_log" | "creator_toggles_panel/creator_setting_button" | "creator_toggles_panel/creator_setting_button/go_to_keybinds" | "creator_toggles_panel/creator_setting_button/creator_settings_section_label_spacer" | "debugger_toggles_panel" | "debugger_toggles_panel/section_panel_1" | "debugger_toggles_panel/section_panel_1/section_divider" | "debugger_toggles_panel/primary_panel" | "debugger_toggles_panel/primary_panel/heading" | "debugger_toggles_panel/primary_panel/spacer" | "debugger_toggles_panel/primary_panel/passcode_required_toggle" | "debugger_toggles_panel/primary_panel/passcode_input" | "debugger_toggles_panel/primary_panel/auto_attach_toggle" | "debugger_toggles_panel/primary_panel/all_options_panel" | "debugger_toggles_panel/primary_panel/all_options_panel/attach_mode_option" | "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel" | "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/host_input" | "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/spacer" | "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/port_input" | "debugger_toggles_panel/primary_panel/all_options_panel/auto_attach_timeout_slider" | "diagnostics_toggles_panel" | "diagnostics_toggles_panel/section_panel_1" | "diagnostics_toggles_panel/section_panel_1/section_divider" | "diagnostics_toggles_panel/primary_panel" | "diagnostics_toggles_panel/primary_panel/heading" | "diagnostics_toggles_panel/primary_panel/spacer" | "diagnostics_toggles_panel/primary_panel/serverbound_client_diagnostics_toggle" | "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons" | "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons/clear_diagnostics_capture_files" | "watchdog_toggles_panel" | "watchdog_toggles_panel/section_panel_1" | "watchdog_toggles_panel/section_panel_1/section_divider" | "watchdog_toggles_panel/primary_panel" | "watchdog_toggles_panel/primary_panel/heading" | "watchdog_toggles_panel/primary_panel/spacer" | "watchdog_toggles_panel/primary_panel/hang_threshold_slider" | "watchdog_toggles_panel/primary_panel/spike_warning_toggle" | "watchdog_toggles_panel/primary_panel/spike_threshold_slider" | "watchdog_toggles_panel/primary_panel/slow_warning_toggle" | "watchdog_toggles_panel/primary_panel/slow_threshold_slider" | "device_info_toggles_panel" | "device_info_toggles_panel/section_panel_1" | "device_info_toggles_panel/section_panel_1/section_divider" | "device_info_toggles_panel/primary_panel" | "device_info_toggles_panel/primary_panel/heading" | "device_info_toggles_panel/primary_panel/spacer" | "device_info_toggles_panel/primary_panel/device_info_memory_tier_use_override_toggle" | "device_info_toggles_panel/device_info_memory_tier_dropdown" | "content_memory_tier_dropdown_content" | "content_log_gui_level_content" | "content_log_panel" | "content_log_panel/section_panel_1" | "content_log_panel/section_panel_1/section_divider" | "content_log_panel/content_log_section_label" | "content_log_panel/content_log_section_label_spacer" | "content_log_panel/option_content_file_log" | "content_log_panel/option_content_gui_log" | "content_log_panel/option_content_gui_log_show_on_errors" | "content_log_panel/option_content_log_gui_level" | "content_log_panel/content_log_buttons" | "content_log_panel/content_log_buttons/open_content_log_history" | "content_log_panel/content_log_buttons/content_log_section_label_spacer" | "content_log_panel/content_log_buttons/clear_content_log_files" | "content_log_panel/content_log_section_label_spacer_2" | "content_log_panel/content_log_location_label_header" | "content_log_panel/content_log_location_label" | "creator_section" | "creator_section/editor_toggle" | "creator_section/creator_toggles" | "creator_section/debugger_toggles_panel" | "creator_section/diagnostics_toggle_panel" | "creator_section/watchdog_toggles_panel" | "creator_section/device_info_toggles_panel" | "creator_section/content_log_panel" | "video_button" | "advanced_video_options_toggle" | "video_section_ore_ui" | "video_section_ore_ui/spacer_0" | "video_section_ore_ui/generic_label" | "video_section_ore_ui/spacer_1" | "video_section_ore_ui/gamepad_helper_label" | "video_menu_slider_step_progress" | "video_menu_slider_progress" | "video_menu_slider_bar_default" | "video_menu_customization_slider_control" | "video_menu_customization_slider_control/slider" | "video_menu_customization_slider_control/slider/slider_box" | "video_menu_customization_slider_control/slider/slider_bar_default" | "video_menu_customization_slider_control/slider/slider_bar_hover" | "video_menu_customization_option_slider" | "video_section" | "video_section/advanced_graphics_options_panel" | "video_section/advanced_graphics_options_panel/graphics_mode" | "video_section/advanced_graphics_options_panel/graphics_quality_preset_mode_dropdown_content" | "video_section/advanced_graphics_options_panel/spacer_0" | "video_section/advanced_graphics_options_panel/advanced_graphics_options_button" | "video_section/advanced_graphics_options_panel/advanced_graphics_options_section" | "video_section/spacer_1" | "video_section/graphics_api_dropdown" | "video_section/raytracing_render_distance_slider" | "video_section/raytracing_render_distance_slider/option_generic_core" | "video_section/deferred_render_distance_slider" | "video_section/deferred_render_distance_slider/option_generic_core" | "video_section/render_distance_slider" | "video_section/render_distance_slider/render_distance_warning" | "video_section/render_distance_slider/option_generic_core" | "video_section/render_distance_warning_text" | "video_section/render_distance_warning_text/render_distance_popup" | "video_section/spacer_2" | "video_section/brightness_slider" | "video_section/spacer_3" | "video_section/perspective_dropdown" | "video_section/spacer_4" | "video_section/fullscreen_toggle" | "video_section/spacer_5" | "video_section/option_toggle_hidehand" | "video_section/spacer_6" | "video_section/hide_paperdoll_toggle" | "video_section/spacer_7" | "video_section/option_toggle_hidehud" | "video_section/spacer_8" | "video_section/option_toggle_screen_animations" | "video_section/spacer_9" | "video_section/hud_opacity_slider" | "video_section/spacer_10" | "video_section/splitscreen_hud_opacity_slider" | "video_section/spacer_11" | "video_section/setup_safe_zone" | "video_section/setup_safe_zone/action_button" | "video_section/spacer_12" | "video_section/fov_slider" | "video_section/spacer_13" | "video_section/split_screen_dropdown" | "video_section/spacer_14" | "video_section/auto_save_icon_toggle" | "video_section/spacer_15" | "video_section/outline_selection_toggle" | "video_section/spacer_16" | "video_section/player_names_toggle" | "video_section/spacer_17" | "video_section/splitscreen_player_names_toggle" | "video_section/spacer_18" | "video_section/view_bobbing_toggle" | "video_section/spacer_19" | "video_section/camera_shake_toggle" | "video_section/spacer_20" | "video_section/fancy_leaves_toggle" | "video_section/spacer_21" | "video_section/fancy_bubbles_toggle" | "video_section/spacer_22" | "video_section/render_clouds_toggle" | "video_section/spacer_23" | "video_section/fancy_clouds_toggle" | "video_section/spacer_24" | "video_section/smooth_lighting_toggle" | "video_section/spacer_25" | "video_section/rendering_profile_option_slider" | "video_section/field_of_view_toggle" | "video_section/spacer_26" | "video_section/damage_bob_option_slider" | "video_section/spacer_26.5" | "video_section/super_fancy_panel" | "video_section/super_fancy_panel/super_fancy_section" | "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents" | "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/atmospherics_toggle" | "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/edge_highlight_toggle" | "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/bloom_toggle" | "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/terrain_shadows_toggle" | "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/super_fancy_water_toggle" | "video_section/ui_profile_dropdown" | "video_section/spacer_27" | "video_section/gui_scale_slider" | "video_section/gui_scale_slider/option_generic_core" | "video_section/spacer_28" | "video_section/gui_accessibility_scaling_toggle" | "video_section/gui_accessibility_scaling_toggle/option_generic_core" | "video_section/spacer_29" | "video_section/option_toggle_improved_input_response" | "video_section/option_toggle_improved_input_response/option_generic_core" | "video_section/spacer_30" | "video_section/frame_pacing_toggle" | "video_section/frame_pacing_toggle/option_generic_core" | "video_section/spacer_31" | "video_section/graphics_mode_switch_toggle" | "video_section/spacer_32" | "video_section/upscaling_toggle" | "video_section/spacer_33" | "video_section/max_framerate_slider" | "video_section/spacer_34" | "video_section/msaa_slider" | "video_section/spacer_35" | "video_section/texel_anti_aliasing_toggle" | "video_section/spacer_36" | "video_section/reset_button" | "max_framerate_slider" | "max_framerate_slider/option_generic_core" | "msaa_slider" | "upscaling_toggle" | "upscaling_toggle/option_generic_core" | "render_distance_warning_image" | "render_distance_warning" | "render_distance_warning/render_distance_warning_image" | "ui_profile_dropdown_content" | "split_screen_dropdown_content" | "third_person_dropdown_content" | "toast_notification_duration_dropdown_content" | "chat_message_duration_dropdown_content" | "file_storage_location_content" | "background" | "background/fill" | "background/border" | "left_button_label" | "right_button_label" | "realms_button_panel" | "realms_button_panel/pad_0" | "realms_button_panel/left_button_panel" | "realms_button_panel/left_button_panel/left_button" | "realms_button_panel/left_button_panel/left_button_loading" | "realms_button_panel/pad_1" | "realms_button_panel/right_button" | "realms_button_panel/pad_2" | "consumable_not_extendable" | "consumable_not_extendable/panel_content" | "consumable_not_extendable/panel_content/padded_icon_0" | "consumable_not_extendable/panel_content/limited_status_image" | "consumable_not_extendable/panel_content/padded_icon_1" | "consumable_not_extendable/panel_content/label_panel" | "consumable_not_extendable/panel_content/label_panel/name_label2" | "possible_store_mismatch" | "possible_store_mismatch/panel_content" | "possible_store_mismatch/panel_content/padded_icon_0" | "possible_store_mismatch/panel_content/limited_status_image" | "possible_store_mismatch/panel_content/padded_icon_1" | "possible_store_mismatch/panel_content/label_panel" | "possible_store_mismatch/panel_content/label_panel/name_label2" | "realms_subscription_stack" | "realms_subscription_stack/image_panel" | "realms_subscription_stack/image_panel/0" | "realms_subscription_stack/pad" | "realms_subscription_stack/info" | "realms_subscription_stack/info/realm_name" | "realms_subscription_stack/info/realms_desc_label" | "realms_subscription_stack/info/bottom_pad" | "realms_subscription_main" | "realms_subscription_main/black_background" | "realms_subscription_main/realms_plus_subscription_stack" | "realms_subscription_main/realms_plus_subscription_stack/realms_plus_subscription_top_stack" | "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack" | "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/top_pad" | "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/realms_plus_bottom_button_panel" | "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/bottom_pad" | "realms_subscription_panel" | "realms_subscription_panel/top_panel" | "realms_subscription_panel/pad_1" | "realms_subscription_panel/middle_panel" | "realms_subscription_panel/middle_panel/black_background" | "realms_subscription_panel/middle_panel/renews_text" | "realms_subscription_panel/pad_2" | "realms_subscription_panel/lower_panel" | "realms_subscription_panel/lower_panel/black_background" | "realms_subscription_panel/lower_panel/consumable_not_extendable" | "realms_subscription_panel/pad_3" | "realms_subscription_panel/platform_mismatch_container" | "realms_subscription_panel/platform_mismatch_container/black_background" | "realms_subscription_panel/platform_mismatch_container/possible_store_mismatch" | "realms_subscription_panel/pad_4" | "realms_plus_subscription_panel" | "additional_subscription_panel" | "view_subscriptions_button" | "view_subscriptions_prerelease_section" | "view_subscriptions_prerelease_section/black_background" | "view_subscriptions_prerelease_section/renews_text" | "view_subscriptions_section" | "view_subscriptions_section/sunsetting_label" | "view_subscriptions_section/failed_loading_subscriptions_label" | "view_subscriptions_section/loading_subscriptions_label" | "view_subscriptions_section/no_active_subscriptions_panel" | "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions" | "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions/text" | "view_subscriptions_section/no_active_subscriptions_panel/background_panel" | "view_subscriptions_section/realms_plus_header_my_subscriptions" | "view_subscriptions_section/realms_plus_header_my_subscriptions/text" | "view_subscriptions_section/realms_plus_subscriptions_grid" | "view_subscriptions_section/csb_purchased_with_cancel" | "view_subscriptions_section/csb_purchased_with_buy" | "view_subscriptions_section/csb_purchased_padding" | "view_subscriptions_section/platform_mismatch_container" | "view_subscriptions_section/platform_mismatch_container/black_background" | "view_subscriptions_section/platform_mismatch_container/possible_store_mismatch" | "view_subscriptions_section/csb_expiration_container" | "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container" | "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration_text_padding" | "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration" | "view_subscriptions_section/csb_expiration_container/background_panel" | "view_subscriptions_section/csb_expiration_and_platform_mismatch_padding" | "view_subscriptions_section/additional_realms_subscriptions_grid" | "view_subscriptions_section/settings_additional_subscription_offers_section" | "view_subscriptions_section/pad_3" | "settings_additional_subscription_offers_section" | "settings_additional_subscription_offers_section/active_available_divider" | "settings_additional_subscription_offers_section/realms_plus_header_label" | "settings_additional_subscription_offers_section/pad_0" | "settings_additional_subscription_offers_section/additional_realms_buy_offer" | "settings_additional_subscription_offers_section/pad_8" | "settings_additional_subscription_offers_section/csb_buy_panel" | "accessibility_button" | "toast_notification_duration_label" | "toast_notification_duration_info_label" | "toast_notification_duration_info_edu_label" | "chat_message_duration_label" | "chat_message_duration_info_label" | "accessibility_section" | "accessibility_section/option_toggle0" | "accessibility_section/option_toggle1" | "accessibility_section/option_toggle2" | "accessibility_section/option_slider_0" | "accessibility_section/option_toggle3" | "accessibility_section/hud_text_background_opacity_slider" | "accessibility_section/chat_opacity_slider" | "accessibility_section/actionbar_text_background_opacity_slider" | "accessibility_section/camera_shake_toggle" | "accessibility_section/hide_endflash_toggle" | "accessibility_section/enable_dithering_blocks_toggle" | "accessibility_section/enable_dithering_mobs_toggle" | "accessibility_section/darkness_slider" | "accessibility_section/glint_strength_slider" | "accessibility_section/glint_speed_slider" | "accessibility_section/toast_notification_duration_options_panel" | "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_label_wrapper" | "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_wrapper" | "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_edu_wrapper" | "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown_spacer_pre" | "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown" | "accessibility_section/chat_message_duration_options_panel" | "accessibility_section/chat_message_duration_options_panel/chat_message_duration_label_wrapper" | "accessibility_section/chat_message_duration_options_panel/chat_message_duration_info_label_wrapper" | "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown_spacer_pre" | "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown" | "accessibility_section/gui_scale_slider" | "accessibility_section/gui_scale_slider/option_generic_core" | "accessibility_section/gui_accessibility_scaling_toggle" | "accessibility_section/gui_accessibility_scaling_toggle/option_generic_core" | "accessibility_section/reset_button" | "accessibility_section_ore_ui" | "accessibility_section_ore_ui/spacer_0" | "accessibility_section_ore_ui/generic_label" | "accessibility_section_ore_ui/spacer_1" | "accessibility_section_ore_ui/gamepad_helper_label" | "accessibility_section_ore_ui/accessibility_button" | "sound_button" | "sound_section_ore_ui" | "sound_section_ore_ui/spacer_0" | "sound_section_ore_ui/generic_label" | "sound_section_ore_ui/spacer_1" | "sound_section_ore_ui/gamepad_helper_label" | "sound_section" | "sound_section/paddingMainVolume" | "sound_section/option_slider_0" | "sound_section/paddingDividerAudioSettings" | "sound_section/dividerAudioSettings" | "sound_section/dividerAudioSettings/section_divider" | "sound_section/paddingMusic" | "sound_section/option_slider_1" | "sound_section/paddingSound" | "sound_section/option_slider_2" | "sound_section/paddingAmbient" | "sound_section/option_slider_3" | "sound_section/paddingBlockVolume" | "sound_section/option_slider_4" | "sound_section/paddingHostile" | "sound_section/option_slider_5" | "sound_section/paddingNeutralVolume" | "sound_section/option_slider_6" | "sound_section/paddingPlayervolume" | "sound_section/option_slider_7" | "sound_section/paddingRecordVolume" | "sound_section/option_slider_8" | "sound_section/paddingWeatherVolume" | "sound_section/option_slider_9" | "sound_section/paddingTTSVolume" | "sound_section/option_slider_10" | "sound_section/paddingResetVolumes" | "sound_section/reset_button" | "sound_section/paddingEndOfList" | "language_button" | "language_grid_item" | "language_section" | "language_section/language_list_grid" | "language_section_ore_ui" | "language_section_ore_ui/spacer_0" | "language_section_ore_ui/generic_label" | "language_section_ore_ui/spacer_1" | "language_section_ore_ui/gamepad_helper_label" | "preview_button" | "preview_section" | "preview_section/spacer_0" | "preview_section/generic_label" | "preview_section/preview_store_launch_app1_button" | "preview_section/preview_store_launch_app2_button" | "override_date_panel" | "override_date_panel/year_text_box" | "override_date_panel/year_month_slash" | "override_date_panel/month_text_box" | "override_date_panel/month_day_slash" | "override_date_panel/day_text_box" | "override_date_panel/day_hour_slash" | "override_date_panel/hour_text_box" | "override_date_panel/hour_minute_slash" | "override_date_panel/minute_text_box" | "timezonetype_dropdown_content" | "date_options_panel" | "date_options_panel/padding0" | "date_options_panel/display_override_datetime_option_toggle" | "date_options_panel/option_toggle_date_override" | "date_options_panel/override_date_options_panel" | "override_date_options_panel" | "override_date_options_panel/override_date_options_background_panel" | "override_date_options_panel/override_date_options_background_panel/load_override_date_option_toggle" | "override_date_options_panel/override_date_options_background_panel/select_dropdown" | "override_date_options_panel/override_date_options_background_panel/override_date_panel" | "override_date_options_panel/override_date_options_background_panel/padding1" | "override_date_options_panel/override_date_options_background_panel/override_time_scale_option" | "override_date_options_panel/override_date_options_background_panel/reset_time_button" | "override_date_options_panel/override_date_options_background_panel/padding2" | "debug_display_logged_error_panel" | "debug_display_logged_error_panel/debug_display_logged_error_panel_background" | "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_marketplace" | "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_ui" | "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_osi" | "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_other" | "debug_display_logged_error_panel/debug_display_logged_error_panel_background/spacer_0" | "xbox_sandbox_panel" | "xbox_sandbox_panel/padding0" | "xbox_sandbox_panel/display_override_xbox_sandbox_toggle_windows" | "xbox_sandbox_panel/display_override_xbox_sandbox_toggle" | "xbox_sandbox_panel/override_xbox_options_panel" | "override_xbox_options_panel" | "override_xbox_options_panel/override_xbox_options" | "override_xbox_options_panel/override_xbox_options/option_dropdown_xbox" | "override_version_options_panel" | "override_version_options_panel/override_version_panel" | "override_version_options_panel/override_version_button_panel" | "override_version_options_panel/override_version_button_panel/update_override_version_button" | "override_version_options_panel/override_date_panel_bottom_padding" | "override_version_panel" | "override_version_panel/major_version_text_box" | "override_version_panel/first_dot" | "override_version_panel/minor_version_text_box" | "override_version_panel/second_dot" | "override_version_panel/patch_version_text_box" | "dot_label" | "debug_override_treatments_panel" | "debug_override_treatments_panel/override_treatments_panel_background" | "debug_override_treatments_panel/override_treatments_panel_background/option_toggle_treatment_override" | "debug_override_treatments_panel/override_treatments_panel_background/spacer_0" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/apply_treatments_button" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/text_edit_treatment" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel/add_button" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/reset_to_default" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/clear_treatments" | "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel" | "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel/treatments_label" | "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1" | "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1/progress_loading_spinner_1" | "debug_override_treatments_panel/override_treatments_panel_background/treatment_grid" | "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel" | "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel/treatments_label" | "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2" | "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2/progress_loading_spinner_2" | "debug_override_treatments_panel/override_treatments_panel_background/unused_treatment_grid" | "debug_override_treatments_panel/override_treatments_panel_background/spacer_1" | "debug_override_configurations_panel" | "debug_override_configurations_panel/override_configurations_panel_background" | "debug_override_configurations_panel/override_configurations_panel_background/option_toggle_configuration_override" | "debug_override_configurations_panel/override_configurations_panel_background/spacer_0" | "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel" | "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel" | "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/text_edit_configuration" | "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel" | "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel/add_button" | "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel" | "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/reset_to_default" | "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/clear_configurations" | "debug_override_configurations_panel/override_configurations_panel_background/configuration_grid" | "debug_override_realms_features_panel" | "debug_override_realms_features_panel/override_realms_features_panel_background" | "debug_override_realms_features_panel/override_realms_features_panel_background/option_toggle_realms_feature_override" | "debug_override_realms_features_panel/override_realms_features_panel_background/spacer_0" | "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel" | "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel" | "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/text_edit_realms_features" | "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/add_button_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" | "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel" | "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/reset_to_default" | "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/clear_realms_features" | "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel" | "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel/realms_features_label" | "debug_override_realms_features_panel/override_realms_features_panel_background/realms_features_grid" | "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel" | "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel/realms_features_label" | "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_grid" | "configuration_grid_item" | "configuration_grid_item/configuration_id_panel" | "configuration_grid_item/configuration_id_panel/configuration_id" | "configuration_grid_item/remove_button" | "remove_configuration_icon" | "realms_feature_grid_item" | "realms_feature_grid_item/realms_feature_id_panel" | "realms_feature_grid_item/realms_feature_id_panel/realms_feature_id" | "realms_feature_grid_item/disable_button" | "disable_realms_feature_icon" | "unused_realms_feature_grid_item" | "unused_realms_feature_grid_item/unused_realms_feature_id_panel" | "unused_realms_feature_grid_item/unused_realms_feature_id_panel/unused_realms_feature_id" | "unused_realms_feature_grid_item/enable_button" | "enable_realms_feature_icon" | "treatment_grid_item" | "treatment_grid_item/treatment_id_panel" | "treatment_grid_item/treatment_id_panel/treatment_id" | "treatment_grid_item/remove_button" | "remove_treatment_icon" | "unused_treatment_grid_item" | "unused_treatment_grid_item/unused_treatment_id_panel" | "unused_treatment_grid_item/unused_treatment_id_panel/unused_treatment_id" | "unused_treatment_grid_item/add_button" | "add_treatment_icon" | "debug_select_windows_store_panel" | "debug_select_windows_store_panel/select_store_dropdown" | "debug_select_windows_store_panel/stores_label" | "debug_select_windows_store_panel/sandbox_label" | "windows_store_dropdown_content" | "mock_http_panel" | "mock_http_panel/display_mock_http_panel_toggle" | "mock_http_panel/mock_http_panel_content" | "mock_http_panel_content" | "mock_http_panel_content/mock_http_panel_background" | "mock_http_panel_content/mock_http_panel_background/add_mock_rules_button" | "mock_http_panel_content/mock_http_panel_background/remove_all_mock_rules_button" | "mock_http_panel_content/mock_http_panel_background/active_rules_label" | "mock_http_panel_content/mock_http_panel_background/rule_list" | "mock_http_panel_content/mock_http_panel_background/divider" | "mock_http_rule_list" | "mock_http_rule" | "mock_http_rule/rule_details_label" | "mock_http_rule/rule_spacer" | "automation_button" | "automation_section" | "automation_section/automation_tab_label" | "automation_section/padding" | "automation_section/automation_test_asset_sas_text_box" | "automation_section/automation_functional_test_tags_text_box" | "automation_section/automation_server_test_tags_text_box" | "automation_section/automation_unit_test_tags_text_box" | "automation_section/automation_broken_functional_test_tags_text_box" | "automation_section/automation_broken_server_test_tags_text_box" | "automation_section/automation_broken_unit_test_tags_text_box" | "automation_section/automation_repeat_count_text_box" | "automation_section/automation_soak_test_duration_minutes_text_box" | "automation_section/automation_repeat_failures_only_toggle" | "automation_section/automation_run_entire_server_test_group" | "automation_section/automation_testbuild_id_text_box" | "automation_section/automation_functional_test_block_input_toggle" | "automation_section/automation_server_test_assert_on_level_diff_toggle" | "discovery_debug_button" | "discovery_debug_section" | "discovery_debug_section/option_discovery_environment" | "discovery_debug_section/debug_override_discovery_panel" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/option_toggle_discovery_override" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/spacer_0" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_name" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_type" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_branch" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_custom" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/reset_endpoint_override" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/apply_endpoint_override" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_1" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/active_service_overrides_label" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_2" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/reset_all_endpoint_overrides_button" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/discovery_overrides_do_not_save_label" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_3" | "debug_button" | "feature_toggle" | "debug_section" | "debug_section/options_for_qa_convenience" | "debug_section/options_for_qa_convenience_spacer" | "debug_section/option_toggle_dev_console_button_0" | "debug_section/option_toggle_assertions_debug_break" | "debug_section/option_toggle_assertions_show_dialog" | "debug_section/option_dev_show_display_logged_error" | "debug_section/display_logged_error_panel" | "debug_section/option_dev_force_trial_mode" | "debug_section/option_dev_force_trial_mode_spacer" | "debug_section/debug_overlay_pages_label" | "debug_section/debug_overlay_button_panel" | "debug_section/debug_overlay_button_panel/debug_overlay_previous_button" | "debug_section/debug_overlay_button_panel/debug_overlay_next_button" | "debug_section/pre_feature_toggles_label_spacer" | "debug_section/feature_toggles_label" | "debug_section/feature_toggles_label_spacer" | "debug_section/feature_toggles" | "debug_section/end_of_feature_toggles_label_spacer" | "debug_section/option_toggle_dev_disable_lan_signaling" | "debug_section/option_dropdown_nethernet_logging_verbosity" | "debug_section/option_dropdown_http_logging_verbosity" | "debug_section/option_dropdown_xsapi_logging_verbosity" | "debug_section/option_toggle_remote_imgui" | "debug_section/option_dropdown_0" | "debug_section/option_toggle_extra_debug_hud_info" | "debug_section/option_toggle_0_1" | "debug_section/option_toggle_0_2" | "debug_section/option_slider_0" | "debug_section/option_toggle_3" | "debug_section/option_toggle_4" | "debug_section/option_toggle_5" | "debug_section/option_toggle_6" | "debug_section/option_dropdown_server_chunk_map" | "debug_section/option_toggle_9" | "debug_section/option_toggle_disable_render_terrain" | "debug_section/option_toggle_disable_render_entities" | "debug_section/option_toggle_disable_render_blockentities" | "debug_section/option_toggle_disable_render_particles" | "debug_section/option_toggle_disable_render_sky" | "debug_section/option_toggle_disable_render_weather" | "debug_section/option_toggle_disable_render_hud" | "debug_section/option_toggle_disable_render_item_in_hand" | "debug_section/option_toggle_disable_render_main_menu_cubemap" | "debug_section/option_toggle_disable_render_main_menu_paperdoll_animation" | "debug_section/leak_memory" | "debug_section/log_area" | "debug_section/log_priority" | "debug_section/option_toggle_build_info" | "debug_section/option_perf_turtle" | "debug_section/option_default_profiling_option" | "debug_section/option_toggle_7" | "debug_section/option_toggle_8" | "debug_section/option_toggle_game_tip" | "debug_section/option_toggle_10" | "debug_section/dev_disable_client_blob_cache_toggle" | "debug_section/dev_force_client_blob_cache_toggle" | "debug_section/devquality_dropdown" | "debug_section/dev_add_http_delay_seconds" | "debug_section/dev_show_latency_graph_toggle" | "debug_section/xbox_sandbox_panel" | "debug_section/multithreaded_rendering_toggle" | "debug_section/filewatcher_rendering_toggle" | "debug_section/enable_texture_hot_reloader_toggle" | "debug_section/mock_http_panel" | "debug_section/vsync_dropdown" | "debug_section/sunsetting_use_overrides_toggle" | "debug_section/padding_sunsetting" | "debug_section/sunseting_state_toggle" | "debug_section/sunsetting_tier_dropdown" | "debug_section/padding_sunsetting_2" | "debug_section/padding1" | "debug_section/copy_internal_settings_folder_to_external" | "debug_section/padding_reset_day_one" | "debug_section/reset_new_player_flow" | "debug_section/reset_day_one_experience" | "debug_section/option_text_edit_1" | "debug_section/option_text_edit_2" | "debug_section/option_text_edit_3" | "debug_section/reset_report_timer_option" | "debug_section/reset_online_safety_option" | "debug_section/reset_ip_safety_option" | "debug_section/padding_graphics_options" | "debug_section/option_shadersdk_service_ip" | "debug_section/option_shadersdk_service_port" | "debug_section/option_shadersdk_target_port" | "debug_section/padding_graphics_buttons" | "debug_section/trigger_graphics_device_loss" | "debug_section/allocate_texture_handles" | "debug_section/padding_deferred_debug" | "debug_section/deferred_platform_override" | "realms_debug_button" | "realms_debug_section" | "realms_debug_section/realms_menu_title" | "realms_debug_section/realms_title_spacer" | "realms_debug_section/feature_toggles_label" | "realms_debug_section/feature_toggles_label_spacer" | "realms_debug_section/feature_toggles" | "realms_debug_section/end_of_feature_toggles_label_spacer" | "realms_debug_section/realms_dev_toggles_title" | "realms_debug_section/realms_dev_toggle_spacer" | "realms_debug_section/realms_without_purchase_toggle" | "realms_debug_section/realms_debug_options_title" | "realms_debug_section/realms_debug_options_spacer" | "realms_debug_section/option_dropdown_1" | "realms_debug_section/option_dropdown_2" | "realms_debug_section/option_text_edit_0" | "realms_debug_section/realms_features_override_panel" | "realms_debug_section/realms_features_override_panel/option_toggle_realms_features_override" | "realms_debug_section/realms_features_override_panel/override_realms_features_panel" | "realms_debug_section/realms_debug_options_spacer_2" | "realms_feature_toggle" | "marketplace_debug_button" | "marketplace_debug_section" | "marketplace_debug_section/marketplace_feature_toggles_label" | "marketplace_debug_section/marketplace_feature_toggles_label_spacer" | "marketplace_debug_section/marketplace_feature_toggles" | "marketplace_debug_section/playfab_token_refresh_threshold" | "marketplace_debug_section/option_dropdown_skin_rotation_speed" | "marketplace_debug_section/option_toggle_all_skins_rotate" | "marketplace_debug_section/option_toggle_display_marketplace_document_id" | "marketplace_debug_section/option_toggle_display_platform_offer_check" | "marketplace_debug_section/version_options_panel" | "marketplace_debug_section/version_options_panel/option_version_override" | "marketplace_debug_section/version_options_panel/override_version_options_panel" | "marketplace_debug_section/select_windows_store_panel" | "marketplace_debug_section/date_options_panel" | "marketplace_debug_section/option_clear_store_cache_button" | "marketplace_debug_section/option_clear_all_cache_button" | "marketplace_debug_section/option_delete_all_personas_button" | "marketplace_debug_section/option_delete_legacy_personas_button" | "marketplace_debug_section/padding2" | "marketplace_debug_section/enable_coin_debug_switch_toggle" | "marketplace_debug_section/add_500_coins" | "marketplace_debug_section/add_100000_coins" | "marketplace_debug_section/padding3" | "marketplace_debug_section/reset_entitlements" | "marketplace_debug_section/reset_wallet" | "marketplace_feature_toggle" | "gatherings_debug_button" | "gatherings_debug_section" | "gatherings_debug_section/refresh_gatherings_button" | "gatherings_debug_section/spacer_1" | "gatherings_debug_section/clear_system_service_pack_cache_button" | "gatherings_debug_section/spacer_2" | "gatherings_debug_section/active_gathering_label" | "gatherings_debug_section/spacer_3" | "gatherings_debug_section/text_edit_filter_gatherings" | "gatherings_debug_section/spacer_4" | "gatherings_debug_section/available_gatherings_section" | "gathering_grid_item_content" | "gathering_grid_item_content/gathering_name" | "gathering_grid_item_content/gathering_uuid" | "gathering_item_template" | "gathering_item_template/gathering_item_button" | "available_gatherings_grid" | "available_gatherings_panel" | "available_gatherings_panel/available_label" | "available_gatherings_panel/gatherings_grid" | "available_gatherings_panel/spacing_gap" | "available_gatherings_section" | "available_gatherings_section/available_gatherings_panel" | "ui_debug_button" | "ui_feature_toggle" | "edu_debug_button" | "edu_feature_toggle" | "new_create_world_grid_item" | "new_edu_create_world_screen_grid_item" | "new_play_screen_grid_item" | "new_edit_world_screen_grid_item" | "new_player_permissions_screen_grid_item" | "new_send_invites_screen_grid_item" | "new_death_grid_item" | "new_bed_grid_item" | "ore_ui_gameplay_ui_grid_item" | "new_settings_screen_grid_item" | "ui_debug_section" | "ui_debug_section/ui_feature_toggles_label" | "ui_debug_section/ui_feature_toggles_info_label" | "ui_debug_section/ui_feature_toggles_label_spacer" | "ui_debug_section/ui_feature_toggles" | "ui_debug_section/end_of_ui_feature_toggles_label_divider" | "ui_debug_section/end_of_ui_feature_toggles_label_divider/section_divider" | "ui_debug_section/end_of_ui_feature_toggles_label_divider_spacer" | "ui_debug_section/end_of_ui_feature_toggles_label_spacer" | "ui_debug_section/screen_override_label" | "ui_debug_section/screen_override_info_label" | "ui_debug_section/screen_override_label_spacer" | "ui_debug_section/new_edu_create_world_screen_radio_label" | "ui_debug_section/new_edu_create_world_screen_radio_label_spacer" | "ui_debug_section/new_edu_create_world_screen_radio_button" | "ui_debug_section/new_edu_create_world_screen_radio_button_spacer" | "ui_debug_section/new_play_screen_radio_label" | "ui_debug_section/new_play_screen_radio_label_spacer" | "ui_debug_section/new_play_screen_radio_button" | "ui_debug_section/new_play_screen_radio_button_spacer" | "ui_debug_section/new_edit_world_screen_radio_label" | "ui_debug_section/new_edit_world_screen_radio_label_spacer" | "ui_debug_section/new_edit_world_screen_radio_button" | "ui_debug_section/new_edit_world_screen_radio_button_spacer" | "ui_debug_section/new_send_invites_radio_label" | "ui_debug_section/new_send_invites_screen_radio_label_spacer" | "ui_debug_section/new_send_invites_screen_radio_button" | "ui_debug_section/new_send_invites_screen_radio_button_spacer" | "ui_debug_section/new_death_screen_radio_label" | "ui_debug_section/new_death_screen_radio_label_spacer" | "ui_debug_section/new_death_screen_radio_button" | "ui_debug_section/new_death_screen_radio_button_spacer" | "ui_debug_section/new_bed_screen_radio_label" | "ui_debug_section/new_bed_screen_radio_label_spacer" | "ui_debug_section/new_bed_screen_radio_button" | "ui_debug_section/new_bed_screen_radio_button_spacer" | "ui_debug_section/ore_ui_gameplay_ui_radio_label" | "ui_debug_section/ore_ui_gameplay_ui_radio_label_spacer" | "ui_debug_section/ore_ui_gameplay_ui_radio_button" | "ui_debug_section/ore_ui_gameplay_ui_radio_button_spacer" | "ui_debug_section/end_of_ui_screen_override_divider" | "ui_debug_section/end_of_ui_screen_override_divider/section_divider" | "ui_debug_section/end_of_ui_sceen_override_divider_spacer" | "ui_debug_section/new_settings_screen_radio_label" | "ui_debug_section/new_settings_screen_radio_label_spacer" | "ui_debug_section/new_settings_screen_radio_button" | "ui_debug_section/new_settings_screen_radio_button_spacer" | "ui_debug_section/screen_opt_in_options_label" | "ui_debug_section/screen_opt_in_info_label" | "ui_debug_section/screen_opt_in_options_label_spacer" | "ui_debug_section/end_of_ui_screen_opt_in_divider" | "ui_debug_section/end_of_ui_screen_opt_in_divider/section_divider" | "ui_debug_section/end_of_ui_sceen_opt_in_divider_spacer" | "ui_debug_section/other_ui_options_label" | "ui_debug_section/other_ui_options_label_spacer" | "ui_debug_section/option_toggle_default_font_override" | "ui_debug_section/option_toggle_dev_show_tcui_replacement" | "ui_debug_section/option_toggle_use_mobile_data_blocked_modal" | "ui_debug_section/ui_feature_toggles_spacer" | "ui_debug_section/option_show_touch_control_selection_screen" | "ui_debug_section/option_reset_on_start" | "ui_debug_section/option_slider_drag_dwell" | "ui_debug_section/option_slider_stack_splitting" | "ui_debug_section/reset_render_distance_warning_modal_label" | "ui_debug_section/reset_render_distance_warning_modal_label_spacer" | "ui_debug_section/reset_render_distance_warning_modal" | "ui_debug_section/reset_render_distance_warning_modal_spacer" | "ui_debug_section/ore_ui_developer_pages_divider" | "ui_debug_section/ore_ui_developer_pages_divider/section_divider" | "ui_debug_section/ore_ui_developer_pages_spacer" | "ui_debug_section/open_ore_ui_label" | "ui_debug_section/open_ore_ui_info_label" | "ui_debug_section/open_ore_ui_label_spacer" | "ui_debug_section/open_ore_ui_docs" | "ui_debug_section/open_ore_ui_tests" | "ui_debug_section/open_ore_ui_perf" | "ui_debug_section/open_ore_ui_test_modal" | "ui_debug_section/open_ore_ui_tests_spacer" | "edu_debug_section" | "edu_debug_section/edu_feature_toggles_label" | "edu_debug_section/edu_feature_toggles_label_spacer" | "edu_debug_section/edu_demo" | "edu_debug_section/edu_ad_debug_panel" | "edu_debug_section/edu_ad_token_refresh_threshold" | "edu_debug_section/edu_ad_max_signin_token_refresh" | "edu_debug_section/edu_ad_max_graph_token_refresh" | "edu_debug_section/edu_environment_divider" | "edu_debug_section/edu_environment_divider/section_divider" | "edu_debug_section/edu_environment_spacer" | "edu_debug_section/edu_env_dropdown" | "flighting_debug_button" | "flighting_debug_section" | "flighting_debug_section/treatment_override_panel" | "flighting_debug_section/treatment_override_panel/option_toggle_treatment_override" | "flighting_debug_section/treatment_override_panel/override_treatments_panel" | "flighting_debug_section/configuration_override_panel" | "flighting_debug_section/configuration_override_panel/option_toggle_configuration_override" | "flighting_debug_section/configuration_override_panel/override_configurations_panel" | "how_to_play_button" | "how_to_play_section" | "how_to_play_section/spacer_0" | "how_to_play_section/generic_label" | "how_to_play_section/spacer_1" | "how_to_play_section/gamepad_helper_label" | "dev_xbox_environment_dropdown_content" | "dev_discovery_environment_dropdown_content" | "dev_service_override_type_dropdown_content" | "dev_realms_environment_dropdown_content" | "dev_realms_sku_dropdown_content" | "default_profiling_group_dropdown_content" | "dev_nethernet_logging_verbosity_dropdown_content" | "dev_http_logging_verbosity_dropdown_content" | "dev_xsapi_logging_verbosity_dropdown_content" | "dev_debug_speed_multiplier_options" | "dev_debug_hud_dropdown_content" | "dev_chunkMapMode_content" | "dev_quality_dropdown_content" | "vysnc_dropdown_content" | "deferred_platform_override_dropdown_content" | "dev_education_environment_dropdown_content" | "dev_sunsetting_tier_dropdown_content" | "graphics_api_dropdown_content" | "graphics_mode_dropdown_content" | "upscaling_mode_dropdown_content" | "advanced_graphics_options_button_content" | "advanced_graphics_options_button_content/advanced_graphics_options_label" | "advanced_graphics_options_button_content/fill_pad" | "advanced_graphics_options_button_content/plus_panel" | "advanced_graphics_options_button_content/plus_panel/plus" | "advanced_graphics_options_button_content/minus_panel" | "advanced_graphics_options_button_content/minus_panel/minus" | "advanced_graphics_options_section" | "advanced_graphics_options_section/spacer_0" | "advanced_graphics_options_section/gamma_calibration" | "advanced_graphics_options_section/spacer_1" | "advanced_graphics_options_section/max_framerate_slider" | "advanced_graphics_options_section/spacer_2" | "advanced_graphics_options_section/msaa_slider" | "advanced_graphics_options_section/spacer_3" | "advanced_graphics_options_section/shadow_quality_slider" | "advanced_graphics_options_section/spacer_4" | "advanced_graphics_options_section/point_light_shadow_quality_slider" | "advanced_graphics_options_section/spacer_5" | "advanced_graphics_options_section/point_light_loding_quality_slider" | "advanced_graphics_options_section/spacer_6" | "advanced_graphics_options_section/cloud_quality_slider" | "advanced_graphics_options_section/spacer_7" | "advanced_graphics_options_section/volumetric_fog_quality_slider" | "advanced_graphics_options_section/spacer_8" | "advanced_graphics_options_section/reflections_quality_slider" | "advanced_graphics_options_section/spacer_9" | "advanced_graphics_options_section/bloom_strength" | "advanced_graphics_options_section/spacer_10" | "advanced_graphics_options_section/upscaling_toggle" | "advanced_graphics_options_section/spacer_11" | "advanced_graphics_options_section/upscaling_mode" | "advanced_graphics_options_section/spacer_12" | "advanced_graphics_options_section/upscaling_percentage" | "advanced_graphics_options_section/fancy_clouds_toggle" | "advanced_graphics_options_section/spacer_13" | "advanced_graphics_options_section/smooth_lighting_toggle"; -export type RealmsWorldSection = "realm_name_edit" | "world_name_edit" | "realm_description_edit" | "download_world_button" | "upload_world_button" | "reset_world_button" | "manage_feed_button" | "club_info_label" | "difficulty_dropdown" | "game_mode_dropdown" | "panel_content" | "panel_content/new_edit_world_opt_in_panel" | "panel_content/new_edit_world_opt_in_panel/panel_title" | "panel_content/new_edit_world_opt_in_panel/panel_text" | "panel_content/new_edit_world_opt_in_panel/opt_in_button" | "panel_content/new_edit_world_opt_in_divider" | "panel_content/new_edit_world_opt_in_divider/section_divider" | "panel_content/option_info_label" | "panel_content/hardcore_info_label" | "panel_content/realm_name_edit" | "panel_content/world_name_edit" | "panel_content/realm_description_edit" | "panel_content/difficulty_dropdown" | "panel_content/game_mode_dropdown" | "panel_content/is_hardcore_toggle" | "panel_content/world_options_label" | "panel_content/pvp_toggle" | "panel_content/show_coordinates_toggle" | "panel_content/locator_bar_toggle" | "panel_content/show_days_played_toggle" | "panel_content/fire_spreads_toggle" | "panel_content/recipes_unlock_toggle" | "panel_content/tnt_explodes_toggle" | "panel_content/respawn_blocks_explode_toggle" | "panel_content/mob_loot_toggle" | "panel_content/natural_regeneration_toggle" | "panel_content/tile_drops_toggle" | "panel_content/player_sleep_toggle" | "panel_content/player_sleep_percentage_slider" | "panel_content/immediate_respawn_toggle" | "panel_content/respawn_radius" | "panel_content/world_cheats_label" | "panel_content/allow_cheats_toggle" | "panel_content/daylight_cycle_toggle" | "panel_content/keep_inventory_toggle" | "panel_content/mob_spawn_toggle" | "panel_content/mob_griefing_toggle" | "panel_content/entities_drop_loot_toggle" | "panel_content/weather_cycle_toggle" | "panel_content/command_blocks_enabled_toggle" | "panel_content/random_tick_speed" | "panel_content/download_world_button" | "panel_content/padding_0" | "panel_content/upload_world_button" | "panel_content/padding_1" | "panel_content/reset_world_button" | "panel_content/padding_2" | "panel_content/club_info_label" | "panel_content/manage_feed_button"; -export type SettingsCommon = "arrow_image" | "subsection_title" | "subsection_title/spacer_0" | "subsection_title/sizer_0" | "subsection_title/sizer_0/title" | "subsection_title/spacer_1" | "subsection_title/sizer_1" | "subsection_title/sizer_1/section_divider" | "action_button" | "action_button_dark_text" | "link_button" | "option_group_label" | "option_group_label/text" | "option_group_header" | "option_group_header/text" | "option_group_spaced_label" | "option_group_spaced_label/text" | "option_group_spaced_header" | "option_group_spaced_header/text" | "option_group_section_divider" | "option_group_section_divider/background" | "option_generic" | "option_generic/option_generic_core" | "white_label" | "option_generic_core" | "option_generic_core/two_line_layout" | "option_generic_core/two_line_layout/option_label_panel" | "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01" | "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01/option_label" | "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02" | "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02/option_label" | "option_generic_core/two_line_layout/option_label_panel/option_tooltip" | "option_generic_core/two_line_layout/spacer" | "option_generic_core/two_line_layout/option_descriptive_text_0" | "option_generic_core/two_line_layout/spacer2" | "option_generic_core/one_line_layout" | "option_generic_core/one_line_layout/option_label_subpanel_01" | "option_generic_core/one_line_layout/option_label_subpanel_01/option_label" | "option_generic_core/one_line_layout/option_label_subpanel_02" | "option_generic_core/one_line_layout/option_label_subpanel_02/option_label" | "option_generic_core/one_line_layout/option_descriptive_text" | "option_generic_core/one_line_layout/option_tooltip" | "option_generic_core/spacer" | "option_generic_core_label" | "option_generic_tooltip_image" | "option_generic_tooltip_top_popup" | "option_generic_tooltip_bottom_popup" | "option_generic_tooltip" | "option_generic_tooltip/focus_detection_input_panel_two_line_layout" | "option_generic_tooltip/hover_detection_input_panel" | "option_generic_tooltip/hover_detection_input_panel/option_generic_tooltip_image" | "option_generic_tooltip/option_generic_tooltip_top_popup" | "option_generic_tooltip/option_generic_tooltip_bottom_popup" | "option_text_edit_control" | "option_text_edit_control_with_button" | "option_text_edit_control_with_button/text_box" | "option_text_edit_control_with_button/button" | "option_text_edit_control_with_text_button" | "option_text_edit_control_with_text_button/text_box" | "option_text_edit_control_with_text_button/button" | "option_toggle_state_template" | "option_toggle_on" | "option_toggle_off" | "option_toggle_on_hover" | "option_toggle_off_hover" | "option_toggle_on_locked" | "option_toggle_off_locked" | "option_toggle_control" | "checkbox_visuals_unchecked" | "checkbox_visuals_checked" | "checkbox_visuals_unchecked_locked" | "checkbox_visuals_checked_locked" | "checkbox_visuals_unchecked_hover" | "checkbox_visuals_checked_hover" | "checkbox_visuals" | "checkbox_visuals/checkbox_image" | "checkbox_visuals/checkbox_label" | "checkbox_visuals/accessibility_selection_highlight" | "checkbox_with_highlight_and_label" | "radio_visuals_unchecked" | "radio_visuals_checked" | "radio_visuals_unchecked_locked" | "radio_visuals_checked_locked" | "radio_visuals_unchecked_hover" | "radio_visuals_checked_hover" | "radio_visuals" | "radio_visuals/radio_image" | "radio_visuals/radio_label" | "radio_visuals/accessibility_selection_highlight" | "radio_with_label_core" | "option_radio_group_control" | "option_radio_group_control/0" | "radio_with_label" | "radio_with_label/radio_with_label_core" | "radio_with_label_and_icon" | "radio_with_label_and_icon/radio_with_label_core" | "radio_with_label_and_icon/radio_with_label_icon" | "radio_with_label_and_content_unchecked" | "radio_with_label_and_content_checked" | "radio_with_label_and_content_unchecked_locked" | "radio_with_label_and_content_checked_locked" | "radio_with_label_and_content_unchecked_hover" | "radio_with_label_and_content_checked_hover" | "radio_with_label_and_content_stack_item" | "radio_with_label_and_content" | "radio_with_label_and_content/radio_background" | "radio_with_label_and_content/radio_item_with_description_stack" | "radio_with_label_and_content/radio_item_with_description_stack/radio_icon_and_label" | "radio_with_label_and_content/radio_item_with_description_stack/radio_description" | "radio_item_with_label_and_content_stack" | "radio_item_with_label_and_content_stack/initial_padding" | "radio_item_with_label_and_content_stack/radio_image_panel" | "radio_item_with_label_and_content_stack/radio_image_panel/image" | "radio_item_with_label_and_content_stack/radio_to_content_padding" | "radio_item_with_label_and_content_stack/radio_content_panel" | "radio_item_with_label_and_content_stack/radio_content_panel/radio_image" | "radio_item_with_label_and_content_stack/content_to_label_padding" | "radio_item_with_label_and_content_stack/radio_label_panel" | "radio_item_with_label_and_content_stack/radio_label_panel/radio_label" | "radio_description_panel" | "radio_description_panel/description" | "radio_description" | "radio_item_with_label_and_content" | "radio_item_with_label_and_content/radio_with_label_core" | "option_slider_control" | "option_slider_control/slider" | "default_options_dropdown_toggle_button_state_content" | "default_options_dropdown_toggle_button_state_content/left_padding" | "default_options_dropdown_toggle_button_state_content/option_content" | "default_options_dropdown_toggle_button_state_content/option_content_padding" | "default_options_dropdown_toggle_button_state_content/label_panel" | "default_options_dropdown_toggle_button_state_content/label_panel/label" | "default_options_dropdown_toggle_button_state_content/arrow_panel" | "default_options_dropdown_toggle_button_state_content/arrow_panel/dropdown_chevron_image" | "default_options_dropdown_toggle_button_state_content/right_padding" | "options_dropdown_toggle_control" | "options_dropdown_dark_toggle_control" | "option_dropdown_control" | "option_dropdown_control/dropdown" | "option_dropdown_control_no_scroll" | "option_info_label_with_icon" | "option_info_label_with_icon/control" | "option_info_label_with_icon/icon_panel" | "option_info_label_with_icon/icon_panel/icon_image" | "option_info_label_with_icon/icon_panel/padding2" | "option_info_label_icon" | "option_icon_label" | "option_info_label_with_bulb" | "option_info_label_with_bulb/stack_panel" | "option_info_label_with_bulb/stack_panel/padding1" | "option_info_label_with_bulb/stack_panel/bulb_panel" | "option_info_label_with_bulb/stack_panel/bulb_panel/padding1" | "option_info_label_with_bulb/stack_panel/bulb_panel/bulb_image" | "option_info_label_with_bulb/stack_panel/bulb_panel/padding2" | "option_info_label_with_bulb/stack_panel/padding2" | "option_info_label_with_bulb/stack_panel/label_panel" | "option_info_label_with_bulb/stack_panel/label_panel/info_label1" | "option_info_label_with_bulb/stack_panel/label_panel/padding2" | "option_info_label_with_bulb/stack_panel/label_panel/info_label2" | "option_info_label_with_bulb/stack_panel/padding3" | "option_info_label_with_image" | "option_info_label_with_image/control" | "option_info_label_image" | "option_toggle" | "option_radio_group" | "option_radio_dropdown_group" | "option_radio_dropdown_group/radio_control_group" | "option_text_edit" | "option_text_edit_with_button" | "option_text_edit_with_text_button" | "option_slider" | "option_dropdown" | "option_dropdown_no_scroll" | "option_custom_control" | "option_info_label" | "dynamic_dialog_screen" | "settings_content" | "settings_content/background" | "settings_content/stack_panel" | "settings_content/stack_panel/content_panel" | "settings_content/stack_panel/content_panel/common_panel" | "settings_content/stack_panel/content_panel/container" | "settings_content/popup_dialog_factory" | "toggle_button_control" | "toggle_button_control/glyph" | "toggle_button_control/glyph_color" | "toggle_button_control/progress_loading_bars" | "toggle_button_control/tab_button_text" | "section_toggle_base" | "section_title_label" | "dialog_title_label" | "dialog_titles" | "dialog_titles/left_padding" | "dialog_titles/dialog_title_label" | "dialog_titles/center_padding" | "dialog_titles/section_title_label" | "dialog_titles/right_padding_is_always_right" | "dialog_content" | "dialog_content/dialog_titles" | "dialog_content/selector_area" | "dialog_content/content_area" | "dialog_content/section_divider" | "selector_group_label" | "scrollable_selector_area_content" | "selector_area" | "selector_area/scrolling_panel" | "content_area" | "content_area/control" | "content_area/control/header_panel" | "content_area/control/header_panel/content" | "content_area/control/scrolling_panel" | "content_area/control/footer_panel" | "content_area/control/footer_panel/content" | "section_divider" | "screen_base"; -export type WorldSection = "selector_pane_content" | "selector_pane_content/world_snapshot_image" | "selector_pane_content/world_snapshot_image/thumbnail" | "selector_pane_content/world_snapshot_image/thumbnail/border" | "selector_pane_content/play_or_create_panel" | "selector_pane_content/play_or_host_panel" | "selector_pane_content/spacer" | "selector_pane_content/server_settings_visibility_panel" | "selector_pane_content/server_settings_visibility_panel/selector_group_label_0" | "selector_pane_content/server_settings_visibility_panel/server_settings_button" | "selector_pane_content/server_settings_visibility_panel/server_spacer" | "selector_pane_content/selector_group_label_1" | "selector_pane_content/game_button" | "selector_pane_content/spacer_01" | "selector_pane_content/classroom_button" | "selector_pane_content/spacer_02" | "selector_pane_content/switch_game_button" | "selector_pane_content/spacer_03" | "selector_pane_content/multiplayer_button" | "selector_pane_content/spacer_04" | "selector_pane_content/edu_cloud_button" | "selector_pane_content/spacer_05" | "selector_pane_content/debug_button" | "launch_world_button_stack_def" | "play_or_create_stack_bedrock" | "play_or_create_stack_bedrock/create_or_play_button" | "play_or_create_stack_bedrock/play_on_realm_button" | "edu_play_host_button" | "play_or_host_stack_edu" | "play_or_host_stack_edu/edu_play_button" | "play_or_host_stack_edu/edu_host_button" | "addons_selector_panel" | "addons_selector_panel/spacer_01" | "addons_selector_panel/selector_group_label_2" | "addons_selector_panel/level_texture_pack_button" | "addons_selector_panel/spacer_02" | "addons_selector_panel/addon_button" | "server_settings_button" | "server_section" | "game_button" | "export_world_button" | "delete_world_button" | "export_template_button" | "copy_world_button" | "edit_world_manipulation_buttons" | "edit_world_manipulation_buttons/export" | "edit_world_manipulation_buttons/padding" | "edit_world_manipulation_buttons/delete" | "game_section" | "game_section/new_edit_world_opt_in_panel" | "game_section/new_edit_world_opt_in_panel/panel_title" | "game_section/new_edit_world_opt_in_panel/panel_text" | "game_section/new_edit_world_opt_in_panel/opt_in_button" | "game_section/new_edit_world_opt_in_divider" | "game_section/new_edit_world_opt_in_divider/section_divider" | "game_section/unlock_template_options_panel" | "game_section/unlock_template_options_panel/option_info_label" | "game_section/unlock_template_options_panel/unlock_template_options_button" | "game_section/option_info_label" | "game_section/hardcore_info_label" | "game_section/world_settings_label" | "game_section/option_text_edit_0" | "game_section/project_section_divider_1" | "game_section/project_header_label" | "game_section/project_section_divider_2" | "game_section/project_spacer" | "game_section/option_text_edit_1" | "game_section/export_settings_section_divider_1" | "game_section/export_settings_header_label" | "game_section/export_settings_header_description" | "game_section/export_settings_section_divider_2" | "game_section/export_settings_spacer" | "game_section/option_dropdown_0" | "game_section/option_dropdown_1" | "game_section/is_hardcore_toggle" | "game_section/option_dropdown_2" | "game_section/world_preferences_label" | "game_section/starting_map_toggle" | "game_section/bonus_chest_toggle" | "game_section/option_dropdown_permissions" | "game_section/option_dropdown_3" | "game_section/level_seed_selector_edu" | "game_section/level_seed_selector" | "game_section/level_seed_selector_trial" | "game_section/server_sim_distance_slider" | "game_section/world_options_label" | "game_section/pvp_toggle" | "game_section/show_coordinates_toggle" | "game_section/locator_bar_toggle" | "game_section/show_days_played_toggle" | "game_section/fire_spreads_toggle" | "game_section/recipes_unlock_toggle" | "game_section/tnt_explodes_toggle" | "game_section/respawn_blocks_explode_toggle" | "game_section/mob_loot_toggle" | "game_section/natural_regeneration_toggle" | "game_section/tile_drops_toggle" | "game_section/player_sleep_toggle" | "game_section/player_sleep_percentage_slider" | "game_section/immediate_respawn_toggle" | "game_section/respawn_radius" | "game_section/experimental_toggles_label" | "game_section/experimental_toggles_label_info" | "game_section/experimental_toggles" | "game_section/world_cheats_label" | "game_section/allow_cheats_toggle" | "game_section/education_toggle" | "game_section/always_day_toggle" | "game_section/daylight_cycle_toggle" | "game_section/keep_inventory_toggle" | "game_section/mob_spawn_toggle" | "game_section/mob_griefing_toggle" | "game_section/entities_drop_loot_toggle" | "game_section/weather_cycle_toggle" | "game_section/command_blocks_enabled_toggle" | "game_section/random_tick_speed" | "game_section/world_management_label" | "game_section/convert_to_infinite_panel" | "game_section/convert_to_infinite_panel/convert_to_infinite_button" | "game_section/delete_button" | "game_section/button_panel" | "game_section/button_panel/manipulation_controls" | "game_section/export_template_panel" | "game_section/export_template_panel/padding" | "game_section/export_template_panel/template_version" | "game_section/export_template_panel/template_buttons" | "game_section/export_template_panel/template_buttons/template_image_picker_button" | "game_section/export_template_panel/template_buttons/padding" | "game_section/export_template_panel/template_buttons/template_localization_picker_button" | "game_section/export_template_panel/export_template" | "game_section/clear_player_data_panel" | "game_section/clear_player_data_panel/padding" | "game_section/clear_player_data_panel/clear_player_data_button" | "game_section/copy_world_panel" | "game_section/copy_world_panel/copy_world" | "game_section/upload_download_slot_panel" | "game_section/upload_download_slot_panel/upload_download_slot_button" | "game_section/replace_slot_panel" | "game_section/replace_slot_panel/replace_slot_button" | "level_texture_pack_button" | "level_texture_pack_section" | "addon_button" | "addon_section" | "world_game_mode_dropdown_content" | "xbl_broadcast_dropdown_content" | "platform_broadcast_dropdown_content" | "player_game_mode_dropdown_content" | "world_type_dropdown_content" | "world_difficulty_dropdown_content" | "multiplayer_button" | "cross_platform_warning_label" | "multiplayer_section" | "multiplayer_section/multiplayer_game_toggle" | "multiplayer_section/platform_settings_dropdown" | "multiplayer_section/xbl_settings_dropdown" | "multiplayer_section/server_visible_toggle" | "multiplayer_section/general_multiplayer_warning_label" | "multiplayer_section/open_uri_button" | "multiplayer_section/platform_multiplayer_warning_label" | "multiplayer_section/xbl_multiplayer_warning_label" | "option_text_edit_mock_with_button" | "option_text_edit_mock_control_with_button" | "option_text_edit_mock_control_with_button/trial_text_box_button" | "option_text_edit_mock_control_with_button/seed_arrow_button" | "experimental_toggle" | "open_account_setting_button" | "edu_cloud_button" | "edu_cloud_section" | "edu_cloud_section/edu_cloud_label" | "edu_cloud_section/cloud_file_name" | "edu_cloud_section/cloud_file_last_changed" | "edu_cloud_section/cloud_upload_toggle" | "edu_cloud_section/cloud_help_wrapper_panel" | "edu_cloud_section/cloud_help_wrapper_panel/cloud_help_button" | "edu_cloud_section/cloud_help_wrapper_panel/padded_icon" | "edu_cloud_section/cloud_help_wrapper_panel/padded_icon/icon" | "debug_button" | "debug_section" | "debug_section/flat_nether_toggle" | "debug_section/game_version_override_toggle" | "debug_section/game_version_override_textbox" | "debug_section/spawn_dimension_dropdown" | "debug_section/spawn_biome_dropdown" | "debug_section/biome_override_dropdown" | "debug_section/base_game_version_debug_text" | "debug_spawn_dimension_dropdown_content" | "debug_spawn_biome_dropdown_content" | "debug_biome_override_dropdown_content" | "editor_edit_world_manipulation_buttons_content" | "editor_edit_world_manipulation_buttons_content/export_as_project" | "editor_edit_world_manipulation_buttons_content/padding" | "editor_edit_world_manipulation_buttons_content/export_as_world_buttons" | "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_world" | "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/padding" | "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_template" | "editor_edit_world_manipulation_buttons_content/padding_2" | "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons" | "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/copy_project" | "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/padding" | "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/delete_project" | "editor_edit_world_manipulation_buttons"; -export type SocialSection = "party_button" | "party_section" | "party_section/party_invite_filter_dropdown" | "party_section/party_invite_reset_default_padding" | "party_section/party_invite_send_privileges_dropdown" | "party_section/party_privacy_default_padding" | "party_section/party_privacy_dropdown" | "party_section/party_privacy_label_wrapper" | "party_section/party_settings_reset_default_button_default_padding" | "party_section/party_settings_reset_default_button" | "party_section/microsoft_account_settings_divider" | "party_section/microsoft_account_settings_divider/section_divider" | "party_section/microsoft_account_settings_header" | "party_section/microsoft_account_settings_padding" | "party_section/microsoft_account_settings_label_wrapper" | "party_section/privacy_and_online_safety_button_padding" | "party_section/privacy_and_online_safety_button" | "party_section/microsoft_account_settings_ending_padding" | "party_privacy_label" | "microsoft_account_settings_label" | "platform_settings_label" | "party_invite_filter_dropdown_content" | "party_privacy_dropdown_content" | "party_invite_send_privileges_dropdown_content"; -export type SidebarNavigation = "empty_panel" | "empty_fill_x_panel" | "empty_default_panel" | "vertical_padding_panel" | "sidebar_bg" | "sidebar_divider" | "sidebar_divider_panel" | "sidebar_divider_panel/sidebar_divider" | "toggle_content" | "toggle_content/toggle_content" | "sidebar_section_scroll_panel" | "sidebar_bg_content_panel" | "sidebar_bg_content_panel/sidebar_bg_content" | "sidebar_nav_toggle_image" | "sidebar_nav_toggle_image_panel" | "sidebar_nav_toggle_image_panel/sidebar_nav_toggle_image" | "sidebar_nav_toggle_image_panel/gamepad_helper_icon" | "gamepad_helper_icon_start_toggle" | "verbose_view_toggle_content" | "verbose_view_toggle_content/left_padding" | "verbose_view_toggle_content/sidebar_nav_toggle_image" | "sidebar_toggle_bg" | "sidebar_toggle" | "sidebar_option_toggle" | "simple_sidebar_toggle" | "verbose_toggle" | "verbose_sidebar_option" | "verbose_expand_option" | "verbose_dropdown_option" | "verbose_dropdown_expanded_option" | "verbose_sidebar_expand_section_bg" | "verbose_sidebar_expand_section_panel" | "verbose_expand_section_panel" | "verbose_view_toggle" | "sidebar_option_factory" | "sidebar_option_factory_panel" | "sidebar_option_factory_panel/sidebar_option_factory" | "verbose_button_content" | "verbose_button_content/button_label" | "verbose_button" | "verbose_nav_button_panel" | "verbose_nav_button_panel/verbose_nav_button" | "verbose_screen_nav_button" | "verbose_screen_nav_option_panel" | "verbose_screen_nav_option_panel/verbose_nav_button" | "sidebar_option_factory_scroll_panel" | "sidebar_screen_nav_option_factory_panel" | "sidebar_screen_nav_option_factory_panel/fill_panel" | "sidebar_screen_nav_option_factory_panel/button" | "sidebar_screen_nav_option_factory_panel/padding" | "sidebar_screen_nav_option_factory_panel/platform_icon_padding" | "root_section_content_panel" | "root_section_content_panel/sidebar_option_factory" | "root_section_content_panel/verbose_sidebar_screen_Nav" | "edge_bar" | "verbose_view_stack_panel" | "verbose_view_stack_panel/verbose_view_toggle" | "sidebar_section" | "sidebar_section/left_edge_bar" | "sidebar_section/verbose_view_stack_panel" | "sidebar_section/right_edge_bar" | "root_section" | "verbose_root_section" | "simple_root_section" | "simple_root_section/verbose_view_toggle" | "simple_root_section/root_section" | "sidebar_section_factory_panel" | "sidebar_section_factory_panel/sidebar_section_factory" | "sidebar_view_content_panel" | "sidebar_view_content_panel/view_stack_panel" | "sidebar_view_content_panel/view_stack_panel/sidebar_view" | "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel" | "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button" | "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/default" | "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/hover" | "sidebar_view_content_panel/verbose_view_exit" | "verbose_sidebar_view_modal" | "sidebar_views" | "sidebar_views/sidebar_view_conent" | "sidebar_views/sidebar_view_conent/simple_sidebar_view" | "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal" | "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal/verbose_sidebar_view" | "sidebar_empty_panel" | "content_view" | "content_view/content_view_stack" | "content_view/content_view_stack/sidebar_view_stack" | "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel" | "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel" | "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button" | "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/default" | "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/hover" | "content_view/content_view_stack/sidebar_view_stack/divider" | "content_view/content_view_stack/main_view_content" | "content_view/content_view_stack/main_view_content/screen_content" | "sidebar_view" | "sidebar_view/sidebar_content" | "sidebar_view/content_view" | "sidebar_view/progress_loading" | "platform_store_icon_spacing"; -export type Sign = "sign_background" | "hanging_sign_background" | "base_sign_text_multiline" | "regular_sign_text_multiline" | "hanging_sign_text_multiline" | "sign_screen_content" | "sign_screen_content/input_eating_panel" | "sign_screen_content/input_eating_panel/text_edit" | "sign_screen_content/invisible_exit_background" | "sign_screen"; -export type SimpleInprogress = "title_text" | "main_panel" | "main_panel/common_panel" | "main_panel/title" | "main_panel/main_content" | "main_panel/progress_loading_bars" | "simple_inprogress_screen" | "simple_inprogress_screen_content" | "simple_inprogress_screen_content/root_panel" | "simple_inprogress_screen_content/root_panel/main_panel"; -export type SkinPackPurchase = "cycle_pack_left_button" | "cycle_pack_right_button" | "skin_model" | "skin_model/paper_doll" | "skin_lock" | "skin_focus_border" | "skin_focus_border/equip" | "skin_button_panel_gamepad" | "skin_button_panel_gamepad/skin_button" | "skin_button_panel_gamepad/skin_button/hover" | "skin_button_panel_gamepad/skin_button/pressed" | "skin_button_panel_not_gamepad" | "skin_button_panel_not_gamepad/skin_button" | "skin_button_panel_not_gamepad/skin_button/hover" | "skin_button_panel_not_gamepad/skin_button/pressed" | "skin_button_panel_not_gamepad/equip_button" | "skin_button_panel" | "skin_button_panel/gamepad" | "skin_button_panel/not_gamepad" | "equip_button_state_panel" | "equip_button_state_panel/button_panel" | "equip_button_text" | "equip_button_text/text" | "skins_grid_item" | "skins_grid_item/model" | "skins_grid_item/lock" | "skins_grid_item/button" | "skins_grid" | "skins_panel" | "skins_panel/bg" | "skins_panel/bg/left" | "skins_panel/bg/sg" | "skins_panel/bg/right" | "skins_panel/bg/progress_loading_panel" | "skins_panel/bg/progress_loading_panel/progress_loading" | "skins_panel/bg/progress_loading_panel/progress_loading_outline" | "skins_panel/bg/progress_loading_panel/progress_loading_outline/hover" | "screen_root" | "skin_pack_purchase_upsell_screen" | "skin_pack_purchase_upsell_screen_content" | "skin_pack_purchase_upsell_dialog_content" | "skin_pack_purchase_upsell_dialog_content/container" | "skin_pack_purchase_standard" | "skin_pack_purchase_standard_content" | "skin_pack_purchase_dialog_content" | "skin_pack_purchase_dialog_content/container"; -export type SkinPicker = "banner_fill" | "title_label" | "label" | "chevron_image" | "bumper_image" | "undo_image" | "plus_icon" | "direction_button_panel" | "direction_button_panel/chevron_image" | "direction_button_panel/bumper_image" | "cycle_pack_button" | "cycle_pack_left_button" | "cycle_pack_right_button" | "skin_button" | "skin_button/hover" | "skin_button/pressed" | "skin_rotation_arrows" | "skin_viewer_panel" | "skin_viewer_panel/custom_skin_button" | "skin_viewer_panel/skin_model_panel" | "skin_viewer_panel/skin_model_panel/skin_model" | "skin_viewer_panel/lock" | "undo_skin_button" | "accept_skin_button" | "stack_item" | "accept_skin_panel" | "accept_skin_panel/stack_item_0" | "accept_skin_panel/stack_item_0/undo_btn" | "accept_skin_panel/stack_item_1" | "accept_skin_panel/stack_item_1/accept_button" | "appearance_status_image_panel" | "appearance_status_image_panel/limited_status_image" | "appearance_status_image_panel/no_restrictions_status_image" | "appearance_status_content" | "appearance_status_content/appearance_status_image_panel" | "appearance_status_content/padding" | "appearance_status_content/appearance_status_label_panel" | "appearance_status_content/appearance_status_label_panel/appearance_status_label" | "preview_skin_panel" | "preview_skin_panel/preview" | "preview_skin_panel/button_frame" | "preview_skin_panel/button_frame/stack_item_0" | "preview_skin_panel/button_frame/stack_item_0/rotation" | "preview_skin_panel/button_frame/padding" | "preview_skin_panel/button_frame/notification_and_accept_input_panel" | "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack" | "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/skin_status_notification_section" | "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/skin_status_notification_section/appearance_status_notification_panel" | "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1" | "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1/accept" | "skin_model" | "premium_skin_button" | "skin_lock" | "new_pack_icon" | "new_pack_icon/icon" | "pack_lock" | "pack_lock/locked" | "pack_lock/unlocked" | "skin_input_panel" | "skin_input_panel/sg" | "skins_grid_item" | "skins_grid_item/clip" | "skins_grid_item/clip/model" | "skins_grid_item/lock" | "skins_grid_item/button" | "skins_grid" | "pack_name" | "pack_grid_item" | "pack_grid_item/header" | "pack_grid_item/header/padding" | "pack_grid_item/header/pack_lock" | "pack_grid_item/header/pack_name" | "pack_grid_item/header/padding_2" | "pack_grid_item/header/new_pack_icon" | "pack_grid_item/header/padding_3" | "pack_grid_item/bg" | "pack_grid_item/bg/skin_input_panel" | "pack_grid_item/bg/expand_view_button" | "pack_grid_item/bg/progress_loading_no_connection" | "pack_grid_item/bg/progress_loading" | "premium_packs_grid" | "standard_skin_button" | "default_skins_grid_item" | "default_skins_grid_item/model" | "default_skins_grid_item/button" | "default_skins_grid" | "recent_skins_grid_item" | "recent_skins_grid_item/clip" | "recent_skins_grid_item/clip/model" | "recent_skins_grid_item/button" | "recent_skins_grid" | "standard_frame" | "standard_header" | "standard_fill" | "standard_panel" | "standard_panel/default_skins" | "standard_panel/default_skins/header" | "standard_panel/default_skins/fill" | "standard_panel/default_skins/fill/default_skins_grid" | "standard_panel/recent_skins" | "standard_panel/recent_skins/header" | "standard_panel/recent_skins/fill" | "standard_panel/recent_skins/fill/recent_skins_grid" | "standard_panel/recent_skins/fill/recent_skins_loading_panel" | "scrolling_content_stack" | "scrolling_content_stack/standard_panel" | "scrolling_content_stack/premium_packs_grid" | "all_skins_content" | "all_skins_content/scrolling_frame" | "all_skins_content/scrolling_frame/change_skin_scroll" | "all_skins_content/scrolling_frame/progress_loading" | "all_skins_frame" | "all_skins_frame/all_skins_content" | "title_bar" | "title_bar/padding_0" | "title_bar/fill_panel" | "title_bar/fill_panel/title_holder" | "title_bar/fill_panel/title_holder/change_skin_title" | "title_bar/padding_1" | "title_bar/skin_name_holder" | "title_bar/skin_name_holder/preview_skin_name" | "title_bar/padding_2" | "popup_dialog_skin_model" | "popup_dialog_skin_model/paper_doll" | "popup_dialog_choose_skin_type_button" | "popup_dialog_choose_skin_type_button/hover" | "popup_dialog_choose_skin_type_button/pressed" | "popup_dialog_choose_skin_type_panel" | "popup_dialog_choose_skin_type_panel/model" | "popup_dialog_choose_skin_type_panel/button_highlight" | "popup_dialog__invalid_custom_skin" | "popup_dialog__invalid_custom_skin/popup_dialog_bg" | "popup_dialog__invalid_custom_skin/popup_dialog_message" | "popup_dialog__invalid_custom_skin/popup_dialog_middle_button" | "popup_dialog__upsell_without_store" | "popup_dialog__choose_skin_type" | "popup_dialog__choose_skin_type/popup_dialog_bg" | "popup_dialog__choose_skin_type/popup_dialog_message" | "popup_dialog__choose_skin_type/left" | "popup_dialog__choose_skin_type/right" | "content" | "content/title" | "content/selector_area" | "content/content_area" | "content/section_divider" | "skin_picker_screen" | "skin_picker_screen_content" | "skin_picker_screen_content/bg" | "skin_picker_screen_content/container" | "skin_picker_screen_content/container/content" | "skin_picker_screen_content/popup_dialog_factory" | "scrollable_selector_area_content" | "selector_area" | "selector_area/all_skins" | "selector_area/inactive_modal_pane_fade" | "content_area" | "content_area/preview_skin" | "content_area/inactive_modal_pane_fade" | "section_divider"; -export type SmithingTable = "smithing_image" | "ingot_image" | "smithing_icon" | "upgrade_label" | "icon_and_text_panel" | "icon_and_text_panel/smithing_icon_panel" | "icon_and_text_panel/upgrade_label" | "smithing_icon_panel" | "smithing_icon_panel/smithing_icon" | "plus_sign_icon" | "arrow_icon" | "cross_out_icon" | "smithing_table_output_slot_button" | "smithing_table_item_slot" | "smithing_table_item_slot/container_item" | "recipe_grid" | "recipe_grid/input_item_slot" | "recipe_grid/plus" | "recipe_grid/plus/plus_sign_icon" | "recipe_grid/material_item_slot" | "recipe_grid/yields" | "recipe_grid/yields/arrow_icon" | "recipe_grid/yields/cross_out_icon" | "recipe_grid/result_item_slot" | "recipe_panel" | "recipe_panel/recipe_grid" | "top_half_panel" | "top_half_panel/icon_and_text_panel" | "top_half_panel/recipe_panel" | "smithing_table_panel" | "smithing_table_panel/container_gamepad_helpers" | "smithing_table_panel/selected_item_details_factory" | "smithing_table_panel/item_lock_notification_factory" | "smithing_table_panel/root_panel" | "smithing_table_panel/root_panel/common_panel" | "smithing_table_panel/root_panel/smithing_table_screen_inventory" | "smithing_table_panel/root_panel/smithing_table_screen_inventory/top_half_panel" | "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label" | "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid" | "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button" | "smithing_table_panel/root_panel/inventory_selected_icon_button" | "smithing_table_panel/root_panel/gamepad_cursor" | "smithing_table_panel/flying_item_renderer" | "smithing_table_screen"; -export type SmithingTable2 = "smithing_icon" | "upgrade_label" | "icon_and_text_panel" | "icon_and_text_panel/smithing_icon_panel" | "icon_and_text_panel/upgrade_label" | "smithing_icon_panel" | "smithing_icon_panel/smithing_icon" | "smithing_image" | "smithing_material_image_ingot" | "arrow_icon" | "cross_out_icon_image" | "cross_out_icon_button" | "cross_out_icon_button/default" | "cross_out_icon_button/hover" | "smithing_input_image_templates" | "smithing_input_image_armors" | "smithing_input_image_armors_and_tools" | "smithing_material_image_all" | "template_overlay_image" | "template_overlay_image/templates" | "input_overlay_image" | "input_overlay_image/armors_and_tools" | "input_overlay_image/armors" | "material_overlay_image" | "material_overlay_image/all_materials" | "material_overlay_image/ingot" | "smithing_table_output_slot_button" | "smithing_table_item_slot" | "smithing_table_item_slot/container_item" | "recipe_grid" | "recipe_grid/template_item_slot" | "recipe_grid/input_item_slot" | "recipe_grid/material_item_slot" | "recipe_grid/yields" | "recipe_grid/yields/arrow_icon" | "recipe_grid/yields/cross_out_icon" | "recipe_grid/result_item_slot" | "recipe_grid/result_item_preview" | "recipe_panel" | "recipe_panel/recipe_grid" | "result_item_preview" | "result_item_preview/inner" | "result_item_preview_inner" | "result_item_preview_inner/smithing_preview_renderer" | "toolbar_background" | "help_button" | "toolbar_panel" | "toolbar_panel/toolbar_background" | "toolbar_panel/toolbar_background/toolbar_stack_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1" | "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2" | "toolbar_anchor" | "toolbar_anchor/toolbar_panel" | "top_half_panel" | "top_half_panel/icon_and_text_panel" | "top_half_panel/recipe_panel" | "smithing_table_panel" | "smithing_table_panel/container_gamepad_helpers" | "smithing_table_panel/selected_item_details_factory" | "smithing_table_panel/item_lock_notification_factory" | "smithing_table_panel/root_panel" | "smithing_table_panel/root_panel/common_panel" | "smithing_table_panel/root_panel/smithing_table_screen_inventory" | "smithing_table_panel/root_panel/smithing_table_screen_inventory/top_half_panel" | "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label" | "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid" | "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button" | "smithing_table_panel/root_panel/inventory_selected_icon_button" | "smithing_table_panel/root_panel/toolbar_anchor" | "smithing_table_panel/root_panel/gamepad_cursor" | "smithing_table_panel/flying_item_renderer"; -export type SmithingTablePocket = "ingot_image" | "background_image" | "arrow_icon" | "smithing_icon" | "upgrade_label" | "smithing_icon_panel" | "smithing_icon_panel/smithing_icon" | "smithing_table_title_and_text_panel" | "smithing_table_title_and_text_panel/smithing_icon_panel" | "smithing_table_title_and_text_panel/upgrade_label" | "slots_panel" | "slots_panel/input_slot" | "slots_panel/material_slot" | "slots_panel/result_slot" | "slots_panel/plus_sign" | "slots_panel/arrow" | "slots_panel/arrow/cross_out" | "smithing_table_contents_panel" | "smithing_table_contents_panel/smithing_table_title_and_text_panel" | "smithing_table_contents_panel/slots_panel" | "inventory_grid" | "inventory_content" | "inventory_content/scrolling_panel" | "inventory_and_smithing_table_panel" | "inventory_and_smithing_table_panel/inventory_half_screen" | "inventory_and_smithing_table_panel/inventory_half_screen/inventory_content" | "inventory_and_smithing_table_panel/smithing_half_screen" | "inventory_and_smithing_table_panel/smithing_half_screen/smithing_table_content" | "header" | "header/header_background" | "header/close_button" | "header/panel" | "header/panel/title_label" | "header_and_content_stack_panel" | "header_and_content_stack_panel/header" | "header_and_content_stack_panel/inventory_and_smithing_table_panel" | "smithing_table_panel" | "smithing_table_panel/bg" | "smithing_table_panel/root_panel" | "smithing_table_panel/header_and_content_stack_panel" | "smithing_table_panel/container_gamepad_helpers" | "smithing_table_panel/inventory_selected_icon_button" | "smithing_table_panel/hold_icon" | "smithing_table_panel/selected_item_details_factory" | "smithing_table_panel/item_lock_notification_factory" | "smithing_table_panel/flying_item_renderer"; -export type SmithingTable2Pocket = "smithing_table_item_renderer" | "smithing_image" | "smithing_material_image_ingot" | "background_image" | "smithing_input_image_templates" | "smithing_material_image_all" | "smithing_input_image_armors" | "smithing_input_image_armors_and_tools" | "template_overlay_image" | "template_overlay_image/templates" | "input_overlay_image" | "input_overlay_image/armors_and_tools" | "input_overlay_image/armors" | "material_overlay_image" | "material_overlay_image/ingot" | "material_overlay_image/all_materials" | "arrow_icon" | "smithing_icon" | "upgrade_label" | "slot_grid_item" | "slot_grid_item/slot" | "template_slot" | "input_slot" | "material_slot" | "inputs_stack" | "inputs_stack/template_slot" | "inputs_stack/padding1" | "inputs_stack/input_slot" | "inputs_stack/padding2" | "inputs_stack/material_slot" | "inputs_panel" | "inputs_panel/inputs_stack" | "result_slot" | "cross_out_image" | "cross_out_icon" | "cross_out_icon/default" | "cross_out_icon/hover" | "crafting_arrow" | "crafting_arrow/cross_out" | "crafting_arrow_grid_item" | "crafting_arrow_grid_item/crafting_arrow" | "result_item_preview" | "result_item_preview/smithing_preview_renderer" | "result_item_preview_grid_item" | "result_item_preview_grid_item/result_preview" | "smithing_table_contents_panel" | "smithing_table_contents_panel/label_holder" | "smithing_table_contents_panel/label_holder/title_label" | "smithing_table_contents_panel/inputs" | "smithing_table_contents_panel/result_slot" | "smithing_table_contents_panel/crafting_arrow" | "smithing_table_contents_panel/result_item_preview" | "chest_item_renderer" | "left_tab_inventory" | "left_navigation_tabs" | "left_navigation_tabs/left_tab_inventory" | "inventory_scroll_panel" | "left_panel" | "left_panel/gamepad_helpers_and_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs" | "left_panel/content" | "left_panel/content/bg" | "left_panel/content/inventory_scroll_panel" | "right_tab_smithing_table" | "right_navigation_tabs" | "right_navigation_tabs/pocket_tab_close_and_help_button" | "right_navigation_tabs/fill" | "right_navigation_tabs/right_tab_smithing_table" | "right_panel" | "right_panel/content" | "right_panel/content/bg" | "right_panel/content/smithing_content_stack_panel" | "right_panel/navigation_tabs_holder" | "right_panel/navigation_tabs_holder/right_navigation_tabs" | "pocket_hotbar_and_content_panels" | "smithing_table_panel" | "smithing_table_panel/pocket_hotbar_and_content_panels" | "smithing_table_panel/container_gamepad_helpers" | "smithing_table_panel/selected_item_details_factory" | "smithing_table_panel/item_lock_notification_factory" | "smithing_table_panel/inventory_selected_icon_button" | "smithing_table_panel/inventory_take_progress_icon_button" | "smithing_table_panel/flying_item_renderer"; -export type Smoker = "smoker_screen"; -export type Start = "achievements_icon" | "inbox_bell_animated_icon" | "inbox_icon" | "unread_notification_icon" | "feedback_icon" | "feedback_icon_edu" | "Xbox_icon" | "change_skin_icon" | "manage_accounts_icon" | "new_offers_icon" | "edu_ai_lesson_crafter_button_content" | "edu_ai_lesson_crafter_button_content/padded_label" | "edu_ai_lesson_crafter_button_content/padded_label/label" | "edu_ai_lesson_crafter_button_content/padded_icon" | "edu_ai_lesson_crafter_button_content/padded_icon/icon" | "preview_tag" | "preview_tag/preview_label" | "update_prompt_icon" | "marketplace_error_icon" | "sale_ribbon_icon" | "alex_icon" | "gamerpic" | "copyright" | "copyright/label" | "copyright/label_background" | "development_version" | "development_version/label" | "development_version/label_background" | "version" | "version/label" | "version/label_background" | "trial_info" | "trial_info/trial_label" | "trial_info/label_background" | "text_panel" | "text_panel/copyright" | "text_panel/development_version" | "text_panel/version" | "skin_or_profile_panel" | "skin_or_profile_panel/change_skin" | "skin_or_profile_panel/change_skin_button_demo" | "skin_or_profile_panel/dressing_room_button" | "skin_or_profile_panel/switch_accounts" | "skin_or_profile_panel/profile_button" | "change_skin_button" | "change_skin_button_demo" | "switch_accounts_button" | "dressing_room_button" | "profile_button_content" | "profile_button_content/gamerpic_offset_wrapper" | "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border" | "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic" | "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon" | "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black" | "profile_button_content/padding_middle" | "profile_button_content/vertically_central_text" | "profile_button_content/vertically_central_text/top_padding" | "profile_button_content/vertically_central_text/profile_button_label" | "profile_button_content/padding_right" | "profile_button" | "skin_viewer_panel" | "skin_viewer_panel/paper_doll_panel" | "skin_viewer_panel/paper_doll_panel/paper_doll" | "skin_viewer_panel/paper_doll_panel/appearacne_loading_panel" | "skin_viewer_panel/paper_doll_name_tag" | "skin_panel" | "skin_panel/change_profile_or_skin" | "skin_panel/viewer_panel" | "friendsdrawer_button_panel" | "friendsdrawer_button_panel/friendsdrawer_button" | "gathering_button" | "badge_and_caption_animated" | "badge_and_caption_animated/caption_and_padding" | "badge_and_caption_animated/caption_and_padding/pad" | "badge_and_caption_animated/caption_and_padding/caption" | "badge_and_caption_animated/badge_and_padding" | "badge_and_caption_animated/badge_and_padding/badge" | "badge_and_caption_animated/badge_and_padding/fill" | "gathering_badge" | "badge_and_caption" | "badge_and_caption/caption_and_padding" | "badge_and_caption/caption_and_padding/pad" | "badge_and_caption/caption_and_padding/caption" | "badge_and_caption/badge_and_padding" | "badge_and_caption/badge_and_padding/badge" | "badge_and_caption/badge_and_padding/fill" | "gathering_caption" | "gathering_caption/countdown_text" | "gathering_panel" | "gathering_panel/horizontal_panel" | "gathering_panel/horizontal_panel/pad" | "gathering_panel/horizontal_panel/inner_panel" | "gathering_panel/horizontal_panel/inner_panel/badge_and_caption" | "gathering_panel/horizontal_panel/inner_panel/badge_and_caption_animated" | "gathering_panel/horizontal_panel/inner_panel/gathering_button" | "gathering_panel/bottom_pad" | "edu_feedback_button" | "release_feedback_button" | "pre_release_feedback_button" | "feedback_button" | "feedback_button/edu_feedback_button" | "feedback_button/release_feedback_button" | "feedback_button/pre_release_feedback_button" | "achievements_button" | "achievements_icon_button" | "achievements_icon_button/achievements_button" | "inbox_button" | "inbox_button_unread_panel" | "inbox_button_unread_panel/background" | "inbox_icon_button" | "inbox_icon_button/inbox_button" | "inbox_icon_button/inbox_button_unread_panel" | "xbl_signin_button" | "platform_signin_button" | "column_frame" | "educator_resources_button" | "upper_online_buttons_panel" | "upper_online_buttons_panel/top_pad" | "upper_online_buttons_panel/stacked_column" | "upper_online_buttons_panel/stacked_column/xbl_btn_padding" | "upper_online_buttons_panel/stacked_column/xbl_btn" | "upper_online_buttons_panel/stacked_column/xbl_btn/xbl_signin_button" | "upper_online_buttons_panel/stacked_column/platform_signin_btn" | "upper_online_buttons_panel/stacked_column/platform_signin_btn/platform_signin_button" | "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label" | "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border" | "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/gamerpic" | "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/border_white" | "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/spacer" | "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel" | "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel/gamertag_label" | "upper_online_buttons_panel/bottom_pad" | "lower_online_buttons_panel" | "lower_online_buttons_panel/stacked_column" | "lower_online_buttons_panel/stacked_column/feedback_padding" | "lower_online_buttons_panel/stacked_column/feedback_btn" | "lower_online_buttons_panel/stacked_column/feedback_btn/feedback_button" | "lower_online_buttons_panel/stacked_column/signingin" | "lower_online_buttons_panel/stacked_column/achievements_padding" | "lower_online_buttons_panel/stacked_column/achievements_btn" | "lower_online_buttons_panel/stacked_column/achievements_btn/achievements_icon_button" | "lower_online_buttons_panel/stacked_column/inbox_padding" | "lower_online_buttons_panel/stacked_column/inbox_btn" | "lower_online_buttons_panel/stacked_column/inbox_btn/inbox_icon_button" | "lower_online_buttons_panel/stacked_column/profile_btn_padding" | "lower_online_buttons_panel/stacked_column/profile_btn" | "lower_online_buttons_panel/stacked_column/profile_btn/profile_button" | "main_button" | "main_button_dark" | "main_content_button" | "main_button_gif" | "main_button_banner" | "main_button_banner/banner_label" | "play_button" | "play_button_art" | "play_button_art/default_background" | "play_button_art/hover_background" | "play_button_art/label" | "play_button_art/default_foreground" | "play_button_art/hover_foreground" | "play_button_stack" | "play_button_stack/play_button" | "play_button_stack/play_button_art" | "play_button_stack/play_button_banner" | "get_started_button" | "main_menu_button" | "featured_world_button" | "unlock_full_game_button" | "launch_editions_button" | "ai_lesson_crafter_button" | "settings_button" | "realms_button" | "servers_button" | "store_button" | "error_store_button" | "store_button_sale_banner" | "store_button_sale_banner/banner_label_padding" | "store_button_sale_banner/banner_label_padding/banner_label" | "store_button_content" | "store_button_content/button_label" | "store_button_content/sales_banner" | "store_error_image" | "store_error_content" | "store_error_content/marketplace_button_label" | "store_sale_label" | "store_button_art" | "store_button_art/default_background" | "store_button_art/hover_background" | "store_button_art/label" | "store_button_art/default_foreground" | "store_button_art/hover_foreground" | "store_button_stack" | "store_button_stack/store_button" | "store_button_stack/store_button_art" | "store_button_stack/store_button_banner" | "store_button_stack/update_icon" | "store_button_stack/new_offers_icon" | "buy_game_button" | "stacked_row" | "main_buttons_stack_panel" | "main_buttons_stack_panel/title_offset_padding" | "main_buttons_stack_panel/title_panel_content" | "main_buttons_stack_panel/padding_fill_1" | "main_buttons_stack_panel/main_buttons_panel" | "main_buttons_stack_panel/main_buttons_panel/main_buttons_panel" | "main_buttons_stack_panel/main_buttons_panel_new_player_flow" | "main_buttons_stack_panel/main_buttons_panel_new_player_flow/main_buttons_panel_new_player_flow" | "main_buttons_stack_panel/padding_fill_2" | "main_buttons_stack_panel/padding_fill_2/gamepad_helpers" | "main_buttons_stack_panel/padding_3" | "main_buttons_panel_new_player_flow" | "main_buttons_panel_new_player_flow/stacked_rows" | "main_buttons_panel_new_player_flow/stacked_rows/test_label_row" | "main_buttons_panel_new_player_flow/stacked_rows/test_label_row/trial_info" | "main_buttons_panel_new_player_flow/stacked_rows/spacer" | "main_buttons_panel_new_player_flow/stacked_rows/get_started_row" | "main_buttons_panel_new_player_flow/stacked_rows/get_started_row/get_started_button" | "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row" | "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row/main_menu_button" | "main_buttons_panel" | "main_buttons_panel/stacked_rows" | "main_buttons_panel/stacked_rows/play" | "main_buttons_panel/stacked_rows/featured_world" | "main_buttons_panel/stacked_rows/featured_world/featured_world_button" | "main_buttons_panel/stacked_rows/stacked_row_2" | "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns" | "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0" | "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0/settings_button" | "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1" | "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/store_button" | "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/update_icon" | "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/new_offers_icon" | "main_buttons_panel/stacked_rows/ai_lesson_crafter_row" | "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/ai_lesson_crafter_button" | "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/lesson_crafter_preview_overlay" | "main_buttons_panel/stacked_rows/edu_featured_button" | "main_buttons_panel/stacked_rows/edu_featured_button/new_and_featured_button" | "main_buttons_panel/stacked_rows/settings_and_editions_panel" | "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions" | "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel" | "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel/settings_button" | "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel" | "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel/launch_editions_button" | "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel" | "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel/settings_button" | "main_buttons_panel/stacked_rows/settings" | "main_buttons_panel/stacked_rows/settings/settings_button" | "main_buttons_panel/stacked_rows/realms" | "main_buttons_panel/stacked_rows/realms/realms_button" | "main_buttons_panel/stacked_rows/unlock_full_game_row" | "main_buttons_panel/stacked_rows/unlock_full_game_row/unlock_full_game" | "main_buttons_panel/stacked_rows/store" | "main_buttons_panel/stacked_rows/buy_game" | "main_buttons_panel/stacked_rows/buy_game/buy_game_button" | "main_buttons_panel/stacked_rows/launch_editions" | "main_buttons_panel/stacked_rows/launch_editions/launch_editions_button" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "gamepad_helpers/gamepad_helper_b_and_padding" | "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b" | "gamepad_helpers/gamepad_helper_y_and_padding" | "gamepad_helpers/gamepad_helper_y_and_padding/gamepad_helper_y" | "gamepad_helpers/gamepad_helper_x_and_padding" | "gamepad_helpers/gamepad_helper_x_and_padding/gamepad_helper_x" | "invite_notification_icon" | "invite_notification_button" | "notification_button_text" | "notification_button_text_background" | "notification_button_text_panel" | "notification_button_text_panel/text" | "notification_button_text_panel/text/background" | "start_screen" | "start_screen_content" | "start_screen_content/main_buttons_and_title_panel" | "start_screen_content/online_button_stack" | "start_screen_content/online_button_stack/gathering_panel" | "start_screen_content/online_button_stack/upper_online_buttons_panel" | "start_screen_content/online_button_stack/lower_online_buttons_panel" | "start_screen_content/skin_panel" | "start_screen_content/text_panel" | "start_screen_content/friendsdrawer_button_panel"; -export type Stonecutter = "stonecutter_label" | "arrow_icon" | "stone_cell_image" | "container_cell_image" | "toolbar_background" | "highlight_slot_panel" | "highlight_slot_panel/hover_text" | "highlight_slot_panel/highlight" | "highlight_slot_panel/white_border" | "stone_slot_button" | "stone_slot_button/hover" | "item_panel" | "item_panel/item_renderer" | "item_panel/item_renderer/stack_count_label" | "stone_button" | "stone_button/banner_pattern" | "stone_button/item_button_ref" | "scroll_grid" | "scroll_grid_panel" | "scroll_grid_panel/grid" | "scroll_panel" | "stone_book_panel" | "stone_book_panel/bg" | "stone_book_panel/scroll_panel" | "result_slot_button" | "input_item_slot" | "result_item_slot" | "input_slots_stack_panel" | "input_slots_stack_panel/input_item_slot" | "top_half_stack_panel" | "top_half_stack_panel/input_slots_holder" | "top_half_stack_panel/input_slots_holder/input_slots_stack_panel" | "top_half_stack_panel/padding_1" | "top_half_stack_panel/arrow_holder" | "top_half_stack_panel/arrow_holder/arrow_icon" | "top_half_stack_panel/padding_2" | "top_half_stack_panel/result_item_slot_holder" | "top_half_stack_panel/result_item_slot_holder/result_item_slot" | "top_half_panel" | "top_half_panel/top_half_stack_panel" | "right_panel" | "right_panel/common_panel" | "right_panel/stonecutter_screen_inventory" | "right_panel/stonecutter_screen_inventory/stonecutter_label" | "right_panel/stonecutter_screen_inventory/top_half_panel" | "right_panel/stonecutter_screen_inventory/inventory_panel_bottom_half_with_label" | "right_panel/stonecutter_screen_inventory/hotbar_grid" | "toolbar_panel" | "toolbar_panel/toolbar_background" | "toolbar_panel/toolbar_background/toolbar_stack_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2" | "toolbar_anchor" | "toolbar_anchor/toolbar_panel" | "center_fold" | "center_fold/center_bg" | "screen_stack_panel" | "screen_stack_panel/stone_book_panel" | "screen_stack_panel/center_fold" | "screen_stack_panel/right_panel" | "screen_stack_panel/toolbar_anchor" | "stonecutter_panel" | "stonecutter_panel/screen_stack_panel" | "stonecutter_panel/container_gamepad_helpers" | "stonecutter_panel/selected_item_details_factory" | "stonecutter_panel/item_lock_notification_factory" | "stonecutter_panel/inventory_selected_icon_button" | "stonecutter_panel/inventory_take_progress_icon_button" | "stonecutter_panel/flying_item_renderer" | "stonecutter_screen"; -export type StonecutterPocket = "vertical_arrow_icon" | "chest_item_renderer" | "stonecutter_item_renderer" | "input_item_slot" | "result_item_slot" | "right_panel" | "right_panel/content" | "right_panel/content/bg" | "right_panel/content/stonecutter_content_stack_panel" | "right_panel/navigation_tabs_holder" | "right_panel/navigation_tabs_holder/right_navigation_tabs" | "right_tab_stonecutter" | "right_navigation_tabs" | "right_navigation_tabs/close" | "right_navigation_tabs/close/nodrop_zone" | "right_navigation_tabs/close/close_button" | "right_navigation_tabs/fill" | "right_navigation_tabs/right_tab_stonecutter" | "input_slots_stack_panel" | "input_slots_stack_panel/input_item_slot" | "stonecutter_content_stack_panel" | "stonecutter_content_stack_panel/label_holder" | "stonecutter_content_stack_panel/label_holder/stonecutter_label" | "stonecutter_content_stack_panel/padding_1" | "stonecutter_content_stack_panel/panel" | "stonecutter_content_stack_panel/panel/stack_panel" | "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder" | "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder/input_slots_stack_panel" | "stonecutter_content_stack_panel/panel/stack_panel/padding_3" | "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder" | "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder/vertical_arrow_icon" | "stonecutter_content_stack_panel/panel/stack_panel/padding_4" | "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder" | "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder/result_item_slot" | "stonecutter_content_stack_panel/panel/stack_panel/padding_5" | "inventory_panel" | "inventory_panel/inventory_title_label_centerer" | "inventory_panel/inventory_title_label_centerer/inventory_title_label" | "inventory_panel/inventory_scroll_panel" | "inventory_scroll_panel" | "pattern_button" | "pattern_scroll_panel" | "left_panel" | "left_panel/gamepad_helpers_and_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs" | "left_panel/content" | "left_panel/content/bg" | "left_panel/content/inventory_panel" | "left_panel/content/pattern_scroll_panel" | "left_tab_stones" | "left_tab_inventory" | "left_navigation_tabs" | "left_navigation_tabs/left_tab_stones" | "left_navigation_tabs/padding" | "left_navigation_tabs/left_tab_inventory" | "pocket_hotbar_and_content_panels" | "stonecutter_panel" | "stonecutter_panel/pocket_hotbar_and_content_panels" | "stonecutter_panel/container_gamepad_helpers" | "stonecutter_panel/selected_item_details_factory" | "stonecutter_panel/item_lock_notification_factory" | "stonecutter_panel/inventory_selected_icon_button" | "stonecutter_panel/inventory_take_progress_icon_button" | "stonecutter_panel/flying_item_renderer"; -export type StorageManagement = "lock_icon" | "storage_header_panel" | "storage_header_panel/header_panel" | "storage_header_panel/header_panel/file_storage_dropdown" | "storage_header_panel/header_panel/file_storage_dropdown_edu" | "storage_header_panel/header_panel/clear_cache_button_panel" | "storage_header_panel/header_panel/clear_cache_button_panel/clear_cache_button" | "storage_header_panel/header_panel/clear_download_cache_button_panel" | "storage_header_panel/header_panel/clear_download_cache_button_panel/clear_download_button" | "storage_header_panel/header_panel/clear_screenshots_cache_button_panel" | "storage_header_panel/header_panel/clear_screenshots_cache_button_panel/clear_screenshots_cache_button" | "storage_header_panel/header_panel/delete_local_screenshots_button_panel" | "storage_header_panel/header_panel/delete_local_screenshots_button_panel/delete_local_screenshots_button" | "storage_header_panel/header_panel/panel" | "storage_header_panel/header_panel/panel/multiselect_button" | "x_button_image" | "storage_main_panel" | "storage_main_panel/scroll_content" | "storage_footer_panel" | "storage_footer_panel/visibleContent" | "storage_footer_panel/visibleContent/delete_button" | "storage_footer_panel/visibleContent/share_button" | "delete_checkbox" | "delete_checkbox/selected_checkbox_image" | "generic_button" | "generic_button/picture" | "generic_button/text" | "common_scroll_pane" | "common_label" | "main_content_panel" | "main_content_panel/panel" | "main_content_panel/panel/spacing" | "main_content_panel/panel/delete_checkbox" | "main_content_panel/panel/image_panel" | "main_content_panel/panel/image_panel/image_border" | "main_content_panel/panel/image_panel/image_border/image" | "main_content_panel/panel/text_panel_offset" | "main_content_panel/panel/text_panel_offset/text_panel" | "main_content_panel/panel/text_panel_offset/text_panel/0" | "common_main_button" | "common_main_button/background" | "common_main_button/border" | "common_main_button/main_content_panel" | "base_glyph" | "base_glyph/image" | "base_glyph/padding" | "main_item_text" | "grey_button" | "icon_item_text" | "world_item_text" | "storage_main_item_toggle" | "storage_main_item_toggle/main_item_toggle" | "storage_main_item_toggle/contentPanel" | "storage_main_item_toggle/padding" | "storage_scroll_pane" | "storage_scroll_pane/category_stack_panel" | "storage_scroll_pane/category_stack_panel/stack_panel" | "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel" | "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel/legacy_world_controls" | "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel" | "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel/retailtopreview_world_controls" | "storage_scroll_pane/multiselect_padding" | "world_controls" | "world_template_controls" | "resource_controls" | "behavior_controls" | "skin_controls" | "cached_controls" | "resource_sub_item" | "resource_sub_item/dummy_panel" | "resource_sub_item/main_panel" | "resource_sub_item/main_panel/content" | "resource_toggle" | "resource_toggle/content_toggle" | "resource_toggle/content_toggle/default" | "resource_toggle/content_toggle/hover" | "resource_toggle/content_toggle/unchecked" | "resource_toggle/content_toggle/unchecked_hover" | "resource_toggle/item_button_panel" | "resource_toggle/item_button_panel/y_sizing_panel" | "resource_toggle/item_button_panel/y_sizing_panel/border" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_0" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/blank" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/generate_texture_list_button" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_1" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/delete_button" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_2" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/blank" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/share_button" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_3" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank_3" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_4" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/blank" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/dependency_button" | "sub_item_tray_button" | "glyph_sub_icon" | "sub_item_blank_button" | "texture_icon_text" | "texture_icon_sub_item" | "version_sub_item" | "pack_description_sub_item" | "world_sub_text" | "world_template_sub_text" | "basic_sub_item" | "dropdown_button" | "dropdown_button_content" | "dropdown_button_content/image_panel" | "dropdown_button_content/image_panel/icon" | "dropdown_button_content/text_panel" | "dropdown_button_content/text_panel/main_label" | "filter_options" | "filter_options/0" | "light_assets" | "button_add" | "sort_panel" | "sort_panel/default" | "sort_toggle" | "storage_scroll_panel" | "storage_main_item_legacy_world_toggle" | "storage_main_item_legacy_world_toggle/main_item_toggle" | "storage_main_item_legacy_world_toggle/contentPanel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/dummy_panel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/sync_legacy_world_button" | "storage_main_item_legacy_world_toggle/contentPanel/dummy_panel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/dummy_panel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/sync_legacy_world_description" | "storage_main_item_legacy_world_toggle/contentPanel/itemsPanel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel_dummy_panel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/dummy_panel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/sync_legacy_world_conversion_description" | "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel" | "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/loading_legacy_worlds_label" | "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/padding" | "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/progress_loading_bars" | "storage_main_item_legacy_world_toggle/padding" | "legacy_world_main_item_text" | "storage_main_item_retailtopreview_world_toggle" | "storage_main_item_retailtopreview_world_toggle/main_item_toggle" | "storage_main_item_retailtopreview_world_toggle/contentPanel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/dummy_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/sync_retailtopreview_world_button" | "storage_main_item_retailtopreview_world_toggle/contentPanel/dummy_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/dummy_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/sync_retailtopreview_world_description" | "storage_main_item_retailtopreview_world_toggle/contentPanel/itemsPanel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel_dummy_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/dummy_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/sync_retailtopreview_world_conversion_description" | "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/loading_retailtopreview_worlds_label" | "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/padding" | "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/progress_loading_bars" | "storage_main_item_retailtopreview_world_toggle/padding" | "retailtopreview_world_main_item_text"; -export type StorageManagementPopup = "storage_dependency_modal" | "storage_dependency_modal/base" | "storage_dependency_modal/base/background_with_buttons" | "storage_dependency_modal/base/title" | "storage_dependency_modal/base/dependencies" | "storage_dependency_modal/base/two_buttons" | "storage_dependency_modal/base/two_buttons/disabled_left" | "storage_dependency_modal/base/two_buttons/left" | "storage_dependency_modal/base/two_buttons/right" | "storage_dependency_panel" | "storage_dependency_panel/scroll" | "storage_dependency_scroll_panel" | "dependency_item_content" | "dependency_item_content/content" | "dependency_scroll_pane" | "dependency_scroll_pane/main_label" | "dependency_scroll_pane/contentPanel" | "dependency_item" | "dependency_item_small" | "dependency_resource_item" | "dependency_resource_item_small" | "dependency_sub_item" | "dependency_sub_item/border" | "dependency_sub_item/border/stack" | "dependency_sub_item/border/stack/padding_0" | "dependency_sub_item/border/stack/wrapper" | "dependency_sub_item/border/stack/wrapper/dependency_item" | "dependency_sub_item/border/stack/panel_0" | "dependency_sub_item/border/stack/panel_0/main_label" | "dependency_sub_item/border/stack/contentPanel" | "dependency_sub_item/border/stack/panel_1" | "dependency_sub_item/border/stack/panel_1/remove_pack_button" | "dependency_sub_item/border/stack/padding_1" | "dependency_sub_item/padding" | "sharing_popup_content"; -export type CommonStore = "store_base_screen" | "label" | "offer_image_panel" | "banner_fill" | "store_description_background" | "store_description_background_dark" | "text_style_label" | "text_style_label/text_label" | "sdl_texture" | "store_offer_grid_button" | "store_offer_grid_button/hover" | "store_offer_grid_button/hover/key_art_size_panel" | "store_offer_grid_button/hover/key_art_size_panel/key_art_frame" | "store_offer_grid_button/pressed" | "store_offer_grid_button/pressed/key_art_size_panel" | "store_offer_grid_button/pressed/key_art_size_panel/key_art_frame" | "store_offer_grid_button/icon_overlay_panel" | "ribbon_bar_text_background" | "ribbon_bar_red_hover_text_background" | "store_background" | "coin_icon" | "tag" | "tag/new_offer_label" | "marketplace_error_icon" | "new_offer_icon" | "status_new_offer_icon" | "update_balloon_icon" | "icon_overlay_panel" | "icon_overlay_panel/icon_overlay_position_factory" | "icon_overlay_position_factory" | "top_left_icon_factory" | "top_middle_icon_factory" | "top_right_icon_factory" | "left_middle_icon_factory" | "center_icon_factory" | "right_middle_icon_factory" | "bottom_left_icon_factory" | "bottom_middle_icon_factory" | "bottom_right_icon_factory" | "icon_factory" | "new_offer_icon_panel" | "new_offer_icon_panel/new_icon" | "update_offer_icon_panel" | "update_offer_icon_panel/update_icon" | "icon_overlay_image_panel" | "icon_overlay_image_panel/image_stack_panel" | "icon_overlay_image_panel/image_stack_panel/icon" | "icon_overlay_image_panel/image_stack_panel/padding" | "icon_overlay_sdl_padding" | "status_icon_overlay" | "status_icon_overlay/icon_overlay_label_panel" | "status_icon_overlay/icon_overlay_label_panel/left_margin_padding" | "status_icon_overlay/icon_overlay_label_panel/left_padding_1" | "status_icon_overlay/icon_overlay_label_panel/left_padding_2" | "status_icon_overlay/icon_overlay_label_panel/icon_panel" | "status_icon_overlay/icon_overlay_label_panel/icon_panel/icon_overlay_label" | "status_icon_overlay/icon_overlay_label_panel/right_padding_1" | "status_icon_overlay/icon_overlay_label_panel/right_padding_2" | "status_icon_overlay/icon_overlay_label_panel/right_margin_padding" | "status_icon_panel" | "status_icon_panel/new_offer_icon" | "status_icon_panel/update_icon" | "prompt_icon" | "up_arrow_icon" | "plus_icon" | "bang_icon" | "user_icon_small" | "user_icon_hover" | "gamepad_store_helper" | "purchase_coins_panel" | "purchase_coins_panel/plus_button" | "inventory_panel" | "inventory_panel/inventory_button" | "progress_loading_bars" | "progress_loading_spinner" | "progress_loading" | "progress_loading/centerer" | "progress_loading/centerer/progress_loading_spinner" | "progress_loading/progress_loading_outline" | "progress_loading/stack_panel" | "progress_loading/stack_panel/top_panel" | "progress_loading/stack_panel/top_panel/error_glyph_panel" | "progress_loading/stack_panel/top_panel/error_glyph_panel/error_image" | "progress_loading/stack_panel/top_panel/padding" | "progress_loading/stack_panel/top_panel/store_failure_text" | "progress_loading/stack_panel/padding" | "progress_loading/stack_panel/image" | "progress_loading/store_failure_code" | "store_empty_progress_bar_icon" | "store_full_progress_bar_icon" | "store_progress_bar_nub" | "store_progress_bar_icon" | "store_progress_bar_icon/empty_progress_bar_icon" | "store_progress_bar_icon/progress_percent_panel" | "store_progress_bar_icon/progress_percent_panel/full_progress_bar_icon" | "store_progress_bar_icon/progress_percent_panel/progress_bar_nub" | "screen_contents_with_gamepad_helpers" | "screen_contents_with_gamepad_helpers/dialog_panel" | "screen_contents_with_gamepad_helpers/dialog_panel/dialog" | "screen_contents_with_gamepad_helpers/padding" | "screen_contents_with_gamepad_helpers/gamepad_helpers_panel" | "screen_contents_with_gamepad_helpers/gamepad_helpers_panel/gamepad_helpers_a_and_b" | "text_strike_through" | "markdown_banner" | "markdown_triangle" | "timer_panel" | "timer_panel/timer" | "store_offer_type_icon" | "addon_pack_icon" | "addon_pack_small_icon" | "realms_plus_icon" | "resource_pack_icon" | "resource_pack_small_icon" | "skinpack_icon" | "skinpack_small_icon" | "world_icon" | "world_small_icon" | "mashup_icon" | "mashup_small_icon" | "persona_icon" | "persona_small_icon" | "small_padding_panel" | "resource_pack_small_icon_with_buffer" | "resource_pack_small_icon_with_buffer/resource_pack_small_icon" | "resource_pack_small_icon_with_buffer/small_padding_panel" | "addon_pack_small_icon_with_buffer" | "addon_pack_small_icon_with_buffer/addon_pack_small_icon" | "addon_pack_small_icon_with_buffer/small_padding_panel" | "skinpack_small_icon_with_buffer" | "skinpack_small_icon_with_buffer/skinpack_small_icon" | "skinpack_small_icon_with_buffer/small_padding_panel" | "world_small_icon_with_buffer" | "world_small_icon_with_buffer/world_small_icon" | "world_small_icon_with_buffer/small_padding_panel" | "mashup_small_icon_with_buffer" | "mashup_small_icon_with_buffer/mashup_small_icon" | "mashup_small_icon_with_buffer/small_padding_panel" | "persona_small_icon_with_buffer" | "persona_small_icon_with_buffer/persona_small_icon" | "persona_small_icon_with_buffer/small_padding_panel" | "realms_icon" | "realms_banner_icon" | "csb_banner_icon" | "csb_expiration" | "csb_expiration/background" | "csb_expiration/contents" | "csb_expiration/contents/csb_icon" | "csb_expiration/contents/pad_0" | "csb_expiration/contents/text_panel" | "csb_expiration/contents/text_panel/text" | "pack_icon_stack" | "pack_icon_stack/pack_icon_stack_factory" | "pack_icon_stack_factory" | "markdown_background" | "markdown_background/banner_panel" | "markdown_background/banner_panel/banner" | "markdown_background/banner_panel/banner/banner_content_stack_panel" | "markdown_background/banner_panel/banner/banner_content_stack_panel/timer_panel" | "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel" | "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel/pack_icon_stack" | "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel" | "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel/markdown_label" | "markdown_background/triangle_panel" | "markdown_background/triangle_panel/triangle" | "store_top_bar" | "store_top_bar_filler" | "direction_button_panel" | "direction_button_panel/chevron_image" | "cycle_pack_button" | "cycle_pack_left_button" | "cycle_pack_right_button" | "restore_purchases" | "back_content_panel" | "back_content_panel/back_button" | "unlock_with_coins_button_stack_panel" | "unlock_with_coins_button_stack_panel/coin_panel" | "unlock_with_coins_button_stack_panel/coin_panel/coin" | "unlock_with_coins_button_stack_panel/padding_1" | "unlock_with_coins_button_stack_panel/unlock_text" | "store_dialog_with_coin_header" | "store_coins_title_label" | "search_header_stack" | "search_header_stack/gamepad_helper_y_alignment_hack" | "search_header_stack/gamepad_helper_y_alignment_hack/gamepad_helper_y" | "search_header_stack/search_header_text_box_panel" | "search_header_stack/search_header_text_box_panel/search_header_text_box" | "search_header_stack/search_header_text_box_panel/clear_button" | "search_header_stack/store_layout_search_button" | "search_header_stack/padding0" | "sdl_store_header_with_coins" | "sdl_store_header_with_coins/sdl_store_header_with_coins_content" | "top_bar_with_coins_panel" | "top_bar_with_coins_panel/top_bar" | "top_bar_with_coins_panel/top_bar/title_stack_panel" | "top_bar_with_coins_panel/top_bar/title_stack_panel/padding1" | "top_bar_with_coins_panel/top_bar/title_stack_panel/back_button_content_panel" | "top_bar_with_coins_panel/top_bar/title_stack_panel/padding2" | "top_bar_with_coins_panel/top_bar/title_stack_panel/header_title_panel" | "top_bar_with_coins_panel/top_bar/title_stack_panel/padding3" | "top_bar_with_coins_panel/top_bar/title_stack_panel/padding4" | "top_bar_with_coins_panel/top_bar/title_stack_panel/status_and_coins" | "top_bar_with_coins_panel/top_bar/title_stack_panel/padding5" | "top_bar_with_coins_panel/top_bar/title_stack_panel/search_header_stack" | "sdl_store_header_with_coins_content" | "sdl_store_header_with_coins_content/top_bar_coins" | "store_header_with_coins" | "store_header_with_coins/top_bar_coins" | "store_header_with_coins/child_control" | "status_with_coins" | "status_with_coins/inventory_panel" | "status_with_coins/inventory_panel/inventory_button" | "status_with_coins/padding0" | "status_with_coins/coin_balance_panel" | "status_with_coins/coin_balance_panel/coin_balance_panel" | "status_with_coins/padding1" | "coins_with_title" | "coins_with_title/coin_balance_panel" | "coins_with_title/title_panel" | "wallet_button_panel" | "wallet_button_panel/purchase_coin_panel_alignment_hack" | "wallet_button_panel/purchase_coin_panel_alignment_hack/purchase_coin_panel" | "wallet_button_panel/plus_image" | "wallet_button_panel/gamepad_helper_x_alignment_hack" | "wallet_button_panel/gamepad_helper_x_alignment_hack/gamepad_helper_x" | "coin_balance_panel" | "coin_balance_panel/coin_purchase_in_progress_panel" | "coin_balance_panel/coin_purchase_in_progress_panel/coin_purchase_in_progress" | "coin_balance_panel/horizontal_coin_stack" | "coin_balance_panel/horizontal_coin_stack/padding" | "coin_balance_panel/horizontal_coin_stack/coin_icon" | "coin_balance_panel/horizontal_coin_stack/small_filler" | "coin_balance_panel/horizontal_coin_stack/coin_text_holder" | "coin_balance_panel/horizontal_coin_stack/coin_text_holder/coin_balance_text" | "my_account_button_content" | "my_account_button_content/my_account_content" | "my_account_button_content/my_account_content/user_icon" | "my_account_button_content/my_account_content/my_account_label_panel" | "my_account_button_content/my_account_content/my_account_label_panel/padding" | "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label" | "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label/my_account_label" | "inventory_button_panel" | "inventory_button_panel/inventory_button" | "inventory_button_panel/inventory_button/status_panel" | "inventory_button" | "inventory_button/my_content_button" | "inventory_button/my_content_button/library_icon" | "inventory_button/my_content_button/library_icon_bevel" | "inventory_button/updates_with_bevel" | "inventory_button/updates_with_bevel/update_glyph" | "inventory_button/updates_with_bevel/updates_bevel" | "inventory_button/label_alignment_pannel" | "inventory_button/label_alignment_pannel/label_panel" | "inventory_button/label_alignment_pannel/label_panel/inventory_label" | "xbl_button_content" | "xbl_button_content/xbl_icon" | "xbl_button_content/padding_0" | "xbl_button_content/disconnected_label" | "xbl_button_content/padding_1" | "xbl_button_content/error_icon_panel" | "xbl_button_content/error_icon_panel/error_icon" | "disclaimer_panel" | "disclaimer_panel/legal_text_label" | "grey_bar_panel" | "grey_bar_panel/color_panel" | "grey_bar_panel/color_panel/grey_bar" | "grey_bar_panel/color_panel/green_bar" | "grey_bar_panel/pad" | "tab_name_panel" | "tab_name_panel/bar_panel" | "tab_name_panel/bar_panel/green_bar" | "tab_name_panel/button_panel" | "tab_name_panel/button_panel/tab_name_button_grey" | "tab_name_panel/button_panel/tab_name_button_white" | "tab_name_panel/pad_1" | "store_offer_item_title_panel" | "store_offer_item_title_panel/offer_title" | "store_offer_item_creator_panel" | "store_offer_item_creator_panel/pack_icon_panel" | "store_offer_item_creator_panel/pack_icon_panel/pack_icon_stack" | "store_offer_item_creator_panel/creator_label" | "store_offer_ratings" | "store_offer_ratings/rating_text_panel" | "vertical_store_offer_price_info_panel" | "vertical_store_offer_price_info_panel/sales_banner" | "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels" | "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/markdown_panel" | "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/padding_markdown_panel_right" | "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel" | "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel/offer_status_text" | "vertical_store_offer_price_info_panel/sales_banner/padding_to_right" | "store_offer_price_info_panel" | "store_offer_price_info_panel/sales_banner" | "store_offer_price_info_panel/sales_banner/sales_markdown_percentage_panel" | "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown" | "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/fill_markdown_panel_left" | "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/markdown_panel" | "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/padding_markdown_panel_right" | "store_offer_price_info_panel/sales_banner/coin_panel" | "store_offer_price_info_panel/sales_banner/coin_panel/offer_coin_icon" | "store_offer_price_info_panel/sales_banner/padding_3" | "store_offer_price_info_panel/sales_banner/offer_prompt_panel" | "store_offer_sales_markdown_percentage_panel" | "store_offer_sales_markdown_percentage_panel/markdown_background" | "store_offer_prompt_panel" | "store_offer_prompt_panel/offer_status_text" | "featured_key_art" | "featured_key_art/bg" | "featured_key_art/bg/featured_key_art" | "featured_key_art/bg/progress_loading" | "featured_key_art/bg/new_offer_icon" | "featured_key_art/focus_border" | "price_panel" | "price_panel/featured_icon_panel" | "price_panel/featured_icon_panel/featured_offer_coin_icon" | "price_panel/price_label_panel" | "price_panel/price_label_panel/price" | "price_panel/padding" | "vertical_padding_4" | "vertical_padding_2" | "sdl_vertical_padding_fill" | "footer" | "footer/restore_purchases" | "store_section_panel" | "store_section_panel/store_section_panel_outline" | "store_section_panel/section_panel" | "store_section_panel/section_panel/header" | "store_section_panel/section_panel/section_panel" | "store_section_panel/section_panel/section_panel/background" | "store_section_factory" | "store_static_section_factory" | "rtx_label" | "rtx_label/banner" | "rtx_label/banner/icon" | "subscription_chevron" | "subscription_chevron/subscription_chevron_panel" | "subscription_chevron/subscription_chevron_panel/csb_chevron" | "subscription_chevron/subscription_chevron_panel/sales_banner_background" | "csb_banner" | "csb_banner/banner" | "pagination_content_panel" | "pagination_content_panel/padding_left" | "pagination_content_panel/first_page_button" | "pagination_content_panel/pagination_middle_buttons_panel" | "pagination_content_panel/padding_right_fill" | "pagination_content_panel/go_to_top_button" | "pagination_panel" | "pagination_panel/top_padding" | "pagination_panel/pagination_content" | "pagination_panel/bottom_padding" | "store_offer_grid_panel_content" | "store_offer_grid_panel_content/header_centerer_panel" | "store_offer_grid_panel_content/store_offer_grid_factory" | "store_offer_grid_panel_content/pagination_centerer" | "store_offer_grid_panel_content/divider" | "store_offer_grid_panel" | "pagination_top_button_panel" | "pagination_top_button_panel/top_button_image" | "pagination_middle_buttons_panel" | "pagination_middle_buttons_panel/previous_page_button" | "pagination_middle_buttons_panel/current_page_number_panel" | "pagination_middle_buttons_panel/current_page_number_panel/current_page_number" | "pagination_middle_buttons_panel/next_page_button" | "vertical_store_offer_grid_panel" | "vertical_store_offer_grid_panel/header" | "vertical_store_offer_grid_panel/centering_panel" | "vertical_store_offer_grid_panel/centering_panel/vertical_store_offer_grid_content" | "vertical_store_offer_grid_panel/padding_0" | "vertical_store_offer_grid_panel/divider" | "carousel_row_panel" | "carousel_row_panel/top_panel" | "carousel_row_panel/top_panel/pad_0" | "carousel_row_panel/top_panel/tab_names_factory_panel" | "carousel_row_panel/top_padding" | "carousel_row_panel/middle_panel" | "carousel_row_panel/middle_panel/left_button_panel" | "carousel_row_panel/middle_panel/left_button_panel/left_button" | "carousel_row_panel/middle_panel/left_button_panel/left_bumper" | "carousel_row_panel/middle_panel/main_panel_factory" | "carousel_row_panel/middle_panel/right_button_panel" | "carousel_row_panel/middle_panel/right_button_panel/right_button" | "carousel_row_panel/middle_panel/right_button_panel/right_bumper" | "carousel_row_panel/bottom_panel" | "carousel_row_panel/bottom_panel/grey_bar_factory_panel" | "carousel_row_panel/bottom_padding" | "carousel_row_panel/divider_panel" | "carousel_row_panel/divider_panel/divider" | "carousel_factory" | "hero_row_l2_panel" | "hero_row_l2_panel/header" | "hero_row_l2_panel/centering_panel" | "hero_row_l2_panel/centering_panel/l2_featured_stack" | "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_0" | "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_1" | "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_1" | "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_2" | "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_2" | "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_3" | "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_3" | "hero_row_l2_panel/padding_0" | "hero_row_l2_panel/divider" | "blade_row_key_art" | "blade_row_key_art/blade_row_key_art_image" | "blade_row_key_art/blade_row_key_art_image/key_art_border" | "one_key_art_screenshot" | "one_key_art_screenshot_panel" | "one_key_art_screenshot_panel/blade_offer_frame" | "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot" | "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot/one_key_art_frame" | "screenshots_grid" | "screenshots_grid/screenshot_1" | "screenshots_grid/screenshot_2" | "screenshots_grid/screenshot_3" | "screenshots_grid/screenshot_4" | "blade_offer_details_title" | "blade_offer_sale_markdown" | "blade_offer_description_details" | "blade_offer_description_details/blade_title_stack" | "blade_offer_description_details/blade_title_stack/blade_title" | "blade_offer_description_details/blade_offer_creator_label" | "blade_offer_description_details/blade_offer_description_padding_2" | "blade_offer_description_details/ratings_and_coins" | "blade_offer_description_details/ratings_and_coins/subscription_panel" | "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel" | "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel/blade_markdown_background" | "blade_offer_description_details/ratings_and_coins/ratings_panel" | "blade_offer_description_details/ratings_and_coins/ratings_panel/blade_ratings" | "blade_offer_description_details/ratings_and_coins/blade_rating_count_panel" | "blade_offer_description_details/ratings_and_coins/fill_padding" | "blade_offer_description_details/ratings_and_coins/blade_offer_price_markdown_panel" | "blade_offer_description_details/ratings_and_coins/price_panel" | "blade_offer_description_details/ratings_and_coins/price_panel/price" | "blade_offer_description_details/ratings_and_coins/price_panel_padding_right" | "blade_offer_description_details/blade_offer_description_padding_3" | "screenshots_and_offer_details_panel" | "screenshots_and_offer_details_panel/blade_offer_screenshots_grid" | "screenshots_and_offer_details_panel/blade_offer_description_area" | "screenshots_and_offer_details_panel/blade_offer_description_area/blade_offer_description_border" | "screenshots_and_offer_details_panel/blade_offer_description_area/hero_blade_offer_description_details" | "blade_row_featured_panel" | "blade_row_featured_panel/blade_row_featured_key_art" | "blade_row_featured_panel/blade_offer_screenshots_and_details_panel" | "transparent_content_button" | "hero_blade_row_panel" | "hero_blade_row_panel/blade_row_transparent_button" | "hero_row_panel" | "hero_row_panel/header" | "hero_row_panel/centering_panel" | "hero_row_panel/centering_panel/featured_stack" | "hero_row_panel/centering_panel/featured_stack/hero_offer" | "hero_row_panel/centering_panel/featured_stack/padding_0" | "hero_row_panel/centering_panel/featured_stack/hero_offer_grid" | "hero_row_panel/padding_0" | "hero_row_panel/divider" | "hero_offer" | "hero_offer/featured_key_art" | "hero_offer/rtx_label" | "hero_offer/offer_description_area" | "hero_offer/offer_description_area/hero_offer_description_details" | "hero_offer_details_title" | "hero_offer_description_details" | "hero_offer_description_details/hero_title_stack" | "hero_offer_description_details/hero_title_stack/title" | "hero_offer_description_details/padding_5" | "hero_offer_description_details/progress" | "hero_offer_description_details/creator_label" | "hero_offer_description_details/padding_0" | "hero_offer_description_details/durable_offer_info_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/subscription_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel/ratings" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/rating_count_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/fill_padding" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/offer_price_markdown_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel/price" | "hero_offer_description_details/padding_1" | "hero_offer_download_progress" | "hero_offer_download_progress/label" | "hero_offer_download_progress/bar" | "rating_text_panel" | "rating_text_panel/left_padding" | "rating_text_panel/star_panel" | "rating_text_panel/star_panel/rating_star" | "rating_text_panel/middle_padding" | "rating_text_panel/rating_label" | "ratings_description" | "ratings_description/rating_text_panel" | "store_rating_count_panel" | "store_rating_count_panel/rating_count_text" | "hero_offer_grid" | "hero_offer_grid/row_1" | "hero_offer_grid/row_1/offer_1" | "hero_offer_grid/row_1/padding_0" | "hero_offer_grid/row_1/offer_2" | "hero_offer_grid/padding_0" | "hero_offer_grid/row_2" | "hero_offer_grid/row_2/offer_1" | "hero_offer_grid/row_2/padding_0" | "hero_offer_grid/row_2/offer_2" | "offer_download_progress" | "offer_download_progress/label" | "offer_download_progress/bar" | "banner_button" | "sdl_text_aligned_panel" | "sdl_text_minecraftTen_aligned_panel" | "sdl_content_aligned_panel" | "sdl_content_aligned_panel/left__padding_panel" | "sdl_content_aligned_panel/control" | "sdl_content_aligned_panel/right_padding_panel" | "sdl_aligned_text" | "sdl_aligned_minecraftTen_text" | "content_offer_key_art" | "vertical_content_offer_header" | "vertical_content_offer_header/header" | "vertical_content_offer_panel" | "vertical_offer_grid_panel" | "offer_content" | "offer_content/offer_item" | "vertical_offer_content" | "vertical_offer_content/offer_item" | "vertical_coin_offer_content" | "vertical_coin_offer_content/offer_item" | "store_offer_key_art" | "store_offer_grid_show_more" | "store_offer_grid_show_more/frame" | "store_offer_grid_show_more/frame/title" | "store_offer_grid_show_more/offer_button" | "store_offer_grid_show_more/offer_button/hover" | "store_offer_grid_show_more/offer_button/hover/key_art_size_panel" | "store_offer_grid_show_more/offer_button/pressed" | "store_offer_grid_show_more/offer_button/pressed/key_art_size_panel" | "persona_grid_show_more" | "row_offer_sale_markdown" | "discount_label" | "discount_label/label_panel" | "discount_label/label_panel/label" | "discount_label/icon_panel" | "discount_label/icon_panel/icon" | "hero_offer_sale_markdown" | "offer_price_markdown_panel" | "offer_price_markdown_panel/offer_price" | "offer_price_markdown_panel/offer_price/text_strike_through" | "store_offer_title" | "store_offer_key_art_frame" | "store_offer_key_art_frame/key_art" | "store_offer_key_art_frame/key_art/key_art_frame" | "store_offer_key_art_frame/key_art/csb_expiration_banner" | "store_offer_key_art_frame/progress_loading" | "vertical_store_offer_grid_item" | "vertical_store_offer_grid_item/frame" | "vertical_store_offer_grid_item/frame/horizontal_stack_panel" | "vertical_store_offer_grid_item/frame/offer_button" | "vertical_store_offer_grid_item/dark_frame" | "vertical_store_offer_grid_item/dark_frame/horizontal_stack_panel" | "vertical_store_offer_grid_item/dark_frame/offer_button" | "vertical_store_offer_grid_inside_frame" | "vertical_store_offer_grid_inside_frame/key_art_size_panel" | "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art_frame" | "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding/title" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding/creator_label" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/ratings" | "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" | "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" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/right_side_padding" | "vertical_store_coin_offer_grid_item" | "vertical_store_coin_offer_grid_item/frame" | "vertical_store_coin_offer_grid_item/frame/horizontal_stack_panel" | "vertical_store_coin_offer_grid_item/dark_frame" | "vertical_store_coin_offer_grid_item/dark_frame/horizontal_stack_panel" | "vertical_store_coin_offer_grid_item/dark_frame/offer_button" | "vertical_coin_offer_grid_inside_frame" | "vertical_coin_offer_grid_inside_frame/key_art_size_panel" | "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art_frame" | "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art" | "vertical_coin_offer_grid_inside_frame/padding" | "vertical_coin_offer_grid_inside_frame/coin_panel" | "vertical_coin_offer_grid_inside_frame/coin_panel/offer_coin_icon" | "vertical_coin_offer_grid_inside_frame/Minecoins_panel" | "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel" | "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding" | "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel" | "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel/minecoins_offer_status_text" | "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding" | "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding/title" | "offer_prompt_panel" | "offer_prompt_panel/coin_panel" | "offer_prompt_panel/coin_panel/offer_coin_icon" | "offer_prompt_panel/padding_3" | "offer_prompt_panel/offer_status_text_panel" | "offer_prompt_panel/offer_status_text_panel/offer_status_text" | "store_offer_grid_item" | "store_offer_grid_item/frame" | "store_offer_grid_item/frame/key_art" | "store_offer_grid_item/frame/key_art/key_art_frame" | "store_offer_grid_item/frame/key_art/csb_plus_expiration_banner" | "store_offer_grid_item/frame/progress_loading" | "store_offer_grid_item/frame/progress" | "store_offer_grid_item/frame/durable_offer_info_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack" | "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/title" | "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/creator_label" | "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/offer_price_info_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/no_durable_status_padding" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel/markdown_banner" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/ratings" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rating_count_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel/sale_timer" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_2" | "store_offer_grid_item/frame/offer_button" | "thumbnail_only_offer" | "thumbnail_only_offer/frame" | "thumbnail_only_offer/frame/key_art" | "thumbnail_only_offer/frame/key_art/key_art_frame" | "thumbnail_only_offer/frame/key_art/offer_coin_icon" | "thumbnail_only_offer/frame/offer_button" | "store_section_header_label" | "persona_store_row_offer" | "persona_store_row_offer/persona_offer" | "thumnail_only_row_offer" | "thumnail_only_row_offer/generic_store_offer" | "generic_store_row_offer_panel" | "generic_store_row_offer_panel/generic_store_offer" | "store_row_show_more_button_panel" | "store_row_show_more_button_panel/show_more_button" | "persona_show_more_button_panel" | "persona_show_more_button_panel/show_more_button" | "persona_grid_panel_stack" | "persona_grid_panel_stack/default_piece_button" | "persona_grid_panel_stack/persona_grid_panel" | "persona_grid_panel" | "persona_grid_panel/persona_offer_grid" | "store_offer_grid_factory" | "non_collection_item_horizontal_padding" | "horizontal_store_offer_row_factory" | "recently_viewed_row_panel" | "static_offer_row_panel" | "static_offer_row_panel/store_row_dropdown_panel" | "static_offer_row_panel/store_row_dropdown_panel/store_row_section_panel" | "store_row_panel" | "store_row_panel/store_row_dropdown_panel" | "store_row_panel/store_row_dropdown_panel/store_row_section_panel" | "vertical_store_row_panel" | "style_header" | "style_header/background" | "style_header/style_header" | "style_header_panel" | "style_header_panel/row_header" | "style_header_panel/row_header/label_panel" | "style_header_panel/row_header/label_panel/indent" | "style_header_panel/row_header/label_panel/row_header_label_centering_panel" | "style_header_panel/row_header/label_panel/row_header_label_centering_panel/row_header_label" | "style_header_panel/row_header/label_panel/on_sale_banner" | "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel" | "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label" | "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/triangle" | "style_header_panel/row_header/label_panel/time_remaining_label" | "style_header_panel/row_carousel_padding" | "store_row_cycle_button_panel" | "store_row_cycle_button_panel/cycle_button_panel" | "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel" | "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel/page_indicator" | "store_row" | "store_row/carousel_panel" | "store_row/carousel_panel/progress_loading" | "store_row/carousel_panel/cycle_pack_horizontal_stack" | "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_left_button_panel" | "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel" | "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel/offer_grid" | "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_right_button_panel" | "store_row/divider" | "page_indicator_panel" | "page_indicator_panel/first_of_three" | "page_indicator_panel/second_of_three" | "page_indicator_panel/third_of_three" | "page_indicator_panel/first_of_two" | "page_indicator_panel/second_of_two" | "page_indicator" | "popup_dialog__no_store_connection" | "popup_dialog__no_store_connection/popup_dialog_bg" | "popup_dialog__no_store_connection/popup_dialog_message" | "popup_dialog__no_store_connection/popup_dialog_middle_button" | "popup_dialog__restore_popup" | "popup_dialog__restore_popup/popup_dialog_bg" | "popup_dialog__restore_popup/popup_dialog_message" | "popup_dialog__restore_failed" | "popup_dialog__restore_failed/popup_dialog_bg" | "popup_dialog__restore_failed/popup_dialog_message" | "popup_dialog__restore_failed/popup_dialog_middle_button" | "suggested_content_offers_grid_item" | "suggested_content_offers_grid_item/frame" | "suggested_content_offers_grid_item/frame/key_art" | "suggested_content_offers_grid_item/frame/key_art/key_art_frame" | "suggested_content_offers_grid_item/frame/progress_loading" | "suggested_content_offers_grid_item/frame/progress" | "suggested_content_offers_grid_item/frame/title_label_panel" | "suggested_content_offers_grid_item/frame/title_label_panel/title" | "suggested_content_offers_grid_item/frame/title_label_panel/offer_type" | "suggested_content_offers_grid_item/frame/offer_button" | "suggested_content_offers_grid_item/frame/offer_button/hover" | "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel" | "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame" | "suggested_content_offers_grid_item/frame/offer_button/pressed" | "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel" | "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame" | "suggested_content_offers_grid" | "more_suggested_content_offers_button" | "suggested_content_offers_panel_base" | "suggested_content_offers_panel_base/content" | "suggested_content_offers_panel_base/content/suggested_content_offers_grid" | "suggested_content_offers_panel_base/content/more_suggested_content_offers_button" | "suggested_content_offers_panel_base/progress_loading" | "suggested_content_offers_panel_3x1" | "suggested_content_offers_panel_4x1" | "search_text_box_panel" | "search_text_box_panel/search_text_box" | "search_text_box_panel/clear_button" | "search_text_box_panel/loading_spinner" | "search_label_panel" | "search_label_panel/offset_panel" | "search_label_panel/offset_panel/label" | "error_text_panel" | "error_text_panel/error_text_content" | "error_text_panel/error_text_content/top_padding" | "error_text_panel/error_text_content/label_panel" | "error_text_panel/error_text_content/bottom_padding" | "results_text_panel" | "results_text_panel/results_panel" | "results_text_panel/results_panel/top_padding" | "results_text_panel/results_panel/results_content" | "results_text_panel/results_panel/results_content/label_panel" | "results_text_panel/results_panel/results_content/mid_padding" | "results_text_panel/results_panel/results_content/results_close_centering_panel" | "results_text_panel/results_panel/results_content/results_close_centering_panel/results_close_button" | "results_text_panel/results_panel/results_content/right_padding" | "results_text_panel/results_panel/bottom_padding" | "filter_logo_content_panel" | "filter_logo_content_panel/filter_logo_image" | "filter_logo_content_panel/filter_count_label" | "filter_sort_toggle" | "filter_sort_submenu_scrolling_panel_section" | "filter_sort_submenu_scrolling_panel_section/submenu_scrolling_panel" | "filter_sort_grid_panel" | "filter_sort_grid_panel/filter_sort_grid" | "sort_button_content_panel" | "search_panel_filter" | "search_panel_filter/search_text_box" | "search_panel_filter/filter_button" | "search_panel_filter/sort_button" | "search_results_and_error_stack" | "search_results_and_error_stack/mid_padding_1" | "search_results_and_error_stack/error_text_panel" | "search_results_and_error_stack/mid_padding_2" | "search_results_and_error_stack/results_text_panel" | "search_panel" | "search_panel/search_panel_content" | "search_panel/search_panel_content/search_text_box" | "search_panel/search_panel_content/search_results_and_error_panel" | "search_panel/search_panel_content/bottom_padding" | "search_and_offer_content" | "search_and_offer_content/search_and_offer_panel" | "search_and_offer_content/search_and_offer_panel/search_and_offer_content" | "search_and_offer_content/search_and_offer_panel/search_and_offer_content/top_padding" | "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel" | "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel/upper_section" | "search_and_offer_content/search_and_offer_panel/search_and_offer_content/search_panel" | "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel" | "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel/offer_content" | "search_and_offer_content/search_and_offer_panel/search_and_offer_content/bottom_padding" | "search_object" | "search_object/search_object_content" | "sort_and_filter_menu_modal_panel" | "sort_and_filter_menu_modal_panel/filter_menu" | "sort_and_filter_menu_modals" | "sort_and_filter_menu_modals/filter_menu_modal" | "sort_and_filter_menu_modals/sort_menu_panel" | "search_filter_sort_background" | "search_filter_background_panel" | "search_filter_background_panel/search_filter_sort_background" | "close_bg_button" | "close_bg_button/default" | "close_bg_button/hover" | "close_bg_button/pressed" | "close_bg_panel" | "close_bg_panel/header_close_button" | "close_bg_panel/main_close_button" | "vertical_line_divider_row" | "vertical_line_divider_row/vert_line_divider_row_top_buffer" | "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding" | "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_left_buffer" | "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vertical_line_divider_row_line" | "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_right_buffer" | "vertical_line_divider_row/vert_line_divider_row_bottom_buffer" | "sdl_dropdown_header_row_button" | "sdl_subcategory_button" | "sdl_dropdown_header_row" | "sdl_dropdown_header_row/drowdown_header_row_content" | "sdl_dropdown_header_row/drowdown_header_row_content/button_aspects" | "sdl_dropdown_data_row" | "sdl_dropdown_data_row/row_background" | "sdl_dropdown_data_row/button_aspects"; -export type StoreLayout = "sdl_scrolling_content_panel" | "sdl_scrolling_content_panel/sdl_scrolling_content_stack" | "sdl_scrolling_content_stack" | "sdl_scrolling_content_stack/padding_0" | "sdl_scrolling_content_stack/store_screen_layout_factory" | "sdl_scrolling_content_stack/footer" | "sdl_scrolling_section_panel" | "sdl_scrolling_section_panel/padding0" | "sdl_scrolling_section_panel/top_static_sdl_section" | "sdl_scrolling_section_panel/padding1" | "sdl_scrolling_section_panel/sdl_scrolling_section" | "sdl_scrolling_section" | "character_creator_sdl_scroll_section" | "character_creator_sdl_section" | "character_creator_sdl_section/sdl_section" | "character_creator_panel" | "character_creator_panel/left_main_panel_padding" | "character_creator_panel/character_creator_sdl_portion" | "character_creator_panel/middle_main_panel_padding" | "character_creator_panel/right_main_panel" | "character_creator_panel/right_main_panel_padding" | "character_creator_screen_layout" | "character_creator_screen_layout/character_creator_panel" | "main_panel" | "main_panel/background" | "main_panel/main_panel_content" | "main_panel/main_panel_content/sdl_screen_content" | "main_panel/progress_loading" | "nav_button_content" | "nav_button_content/image_panel" | "nav_button_content/small_padding" | "nav_button_content/label_panel" | "default_nav_label_panel" | "default_nav_label_panel/button_text_label" | "styled_nav_label_panel" | "styled_nav_label_panel/button_text_label" | "styled_nav_label_panel_minecraftTen" | "styled_nav_label_panel_minecraftTen/button_text_label" | "default_styled_button_text_label" | "nav_image_panel" | "nav_image_panel/button_image_panel" | "nav_image_panel/button_animated_panel" | "nav_button_image_panel" | "nav_button_image_panel/button_image" | "nav_button_image" | "nav_button_animation" | "nav_button_fill" | "nav_button_fill_styled" | "nav_button_fill_styled_mc10" | "nav_button_standard_styled" | "nav_button_standard_styled_mc10" | "nav_button_standard" | "nav_button_standard/nav_button" | "nav_button_grid_panel" | "nav_button_grid_panel/nav_button_grid" | "store_layout_ribbon_search_button" | "store_layout_ribbon_search_button_content" | "store_layout_ribbon_search_button_content/button_image" | "store_data_driven_screen_base" | "store_screen_modal_panel" | "store_screen_modal_panel/one_button_dialog" | "store_screen_modal_panel/popup_dialog_factory" | "dialog_button" | "store_screen_main_panel" | "store_screen_main_panel/main_content_view" | "store_screen_main_panel/sort_and_filter_modals" | "store_full_screen_content" | "store_full_screen_content/mouse_input_focus_panel" | "store_full_screen_content/screen_content" | "store_full_screen_content/screen_content/top_bar_section" | "store_full_screen_content/screen_content/main_panel" | "store_full_screen_content/screen_content/main_panel/main_panel_content" | "store_full_screen_content/popup_dialog_factory" | "store_full_screen_content/character_selector_dialog_factory" | "store_full_screen_content/custom_skin_dialog_factory" | "sdl_base_screen" | "character_creator_base_screen" | "store_data_driven_screen" | "character_creator_screen" | "dressing_room_color_picker_screen" | "expanded_appearance_view_screen" | "non_scrollable_sdl_screen" | "skin_selector_screen" | "store_data_driven_modal_one_button_screen"; -export type FilterMenu = "filter_clear_button_panel" | "filter_clear_button_panel/clear_button" | "chevron_icon_panel" | "chevron_icon_panel/chevron_icon" | "filter_variables_panel" | "filter_option_button_content" | "filter_option_button_content/left_chevron_icon_panel" | "filter_option_button_content/filter_type_and_selected_panel" | "filter_option_button_content/filter_type_and_selected_panel/top_padding" | "filter_option_button_content/filter_type_and_selected_panel/filter_type_label" | "filter_option_button_content/filter_type_and_selected_panel/middle_padding" | "filter_option_button_content/filter_type_and_selected_panel/selected_label" | "filter_option_button_content/filter_type_and_selected_panel/bottom_padding" | "filter_option_button_content/right_chevron_icon_panel" | "filter_options_button_panel" | "filter_options_button_panel/filter_variables_panel" | "filter_options_button_panel/filter_variables_panel/filter_options_button" | "filter_main_menu_options_button_panel" | "filter_title_bar_content" | "filter_title_bar_content/filter_logo_and_count_panel" | "filter_title_bar_content/centered_filter_title_label" | "filter_title_bar_content/centered_filter_title_label/filter_title_label" | "filter_title_bar_content/filter_title_padding_close_button" | "filter_title_bar_content/centered_x" | "filter_title_bar_content/centered_x/close_x_image" | "filter_title_bar" | "filter_checkbox_toggle" | "filter_checkbox_no_icon_toggle" | "filter_checkbox_no_icon_toggle/filter_checkbox_no_icon_toggle" | "pack_type_sub_menu_panel" | "pack_type_sub_menu_panel/pack_type_sub_menu" | "pack_type_sub_menu_panel/pack_type_sub_menu/addon_packs_filter" | "pack_type_sub_menu_panel/pack_type_sub_menu/skin_packs_filter" | "pack_type_sub_menu_panel/pack_type_sub_menu/texture_packs_filter" | "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel" | "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/worlds_template_filter" | "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/world_template_type_filters" | "pack_type_sub_menu_panel/pack_type_sub_menu/mashup_packs_filter" | "offer_type_sub_menu_panel" | "offer_type_sub_menu_panel/bundles_filter" | "offer_type_sub_menu_panel/realms_plus_filter" | "offer_type_sub_menu_panel/csb_filter" | "realms_plus_filter" | "realms_plus_filter/realms_plus_filter" | "csb_filter" | "csb_filter/csb_filter" | "realms_plus_gradient_content_panel" | "realms_plus_gradient_content_panel/gradient" | "realms_plus_gradient_content_panel/particles" | "realms_plus_gradient_content_panel/content_panel" | "csb_gradient_content_panel" | "csb_gradient_content_panel/gradient" | "csb_gradient_content_panel/particles" | "csb_gradient_content_panel/content_panel" | "filter_section_content" | "filter_section_content/section_title_button" | "filter_section_content/clear_button" | "filter_section_content/section_sub_menu" | "filter_section_content_dynamic" | "filter_section_content_dynamic/filter_section_content" | "filter_main_menu_content" | "filter_main_menu_content/filter_title_bar_panel" | "filter_main_menu_content/offer_type_button" | "filter_main_menu_content/pack_type_button" | "filter_main_menu_content/minecoin_button" | "filter_main_menu_content/rating_button" | "filter_main_menu_content/creator_button" | "filter_main_menu_content/graphics_button" | "filter_main_menu_content/installed_state_button" | "filter_main_menu_content/filter_main_menu_filter_toggles_section" | "filter_main_menu_content/filter_main_menu_filter_toggles_section/filter_main_menu_filter_toggle_grid_panel" | "filter_main_menu_content/clear_button_panel" | "filter_main_menu_content_persona" | "filter_main_menu_content_persona/filter_title_bar_panel" | "filter_main_menu_content_persona/persona_body_button" | "filter_main_menu_content_persona/persona_style_button" | "filter_main_menu_content_persona/emote_filter_section" | "filter_main_menu_content_persona/emote_filter_section/filter_emote_toggle_grid_panel" | "filter_main_menu_content_persona/minecoin_button" | "filter_main_menu_content_persona/clear_button_panel" | "filter_section_content_panel" | "filter_section_content_panel/filter_menu_screen" | "filter_main_menu_section" | "filter_main_menu_section_persona" | "filter_pack_type_section" | "filter_offer_type_section" | "filter_type_section" | "filter_menu_content" | "filter_menu_content/filter_main_menu_screen" | "filter_menu_content/filter_offer_type_screen" | "filter_menu_content/filter_pack_type_screen" | "filter_menu_content/filter_minecoin_section" | "filter_menu_content/filter_rating_section" | "filter_menu_content/filter_creator_section" | "filter_menu_content/filter_graphics_section" | "filter_menu_content/filter_installed_state_section" | "filter_menu_content_persona" | "filter_menu_content_persona/filter_main_menu_screen" | "filter_menu_content_persona/filter_style_section" | "filter_menu_content_persona/filter_body_section" | "filter_menu_content_persona/filter_minecoin_section" | "filter_menu_panel" | "filter_menu_panel/top_padding" | "filter_menu_panel/alignment_panel" | "filter_menu_panel/alignment_panel/left_padding" | "filter_menu_panel/alignment_panel/filter_menu_content_scroll" | "filter_menu_panel/alignment_panel/right_padding" | "filter_menu_screen_content" | "filter_menu_screen_content/filter_main_panel" | "filter_menu_screen_content/filter_main_panel_persona" | "filter_menu_screen_content/filter_menu_close_background_button"; -export type StoreInventory = "sign_in_button" | "no_xbl_and_local_content_warning_panel" | "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel" | "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel" | "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack" | "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/top_padding" | "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" | "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" | "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" | "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" | "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" | "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" | "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" | "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" | "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" | "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" | "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" | "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding" | "no_xbl_and_local_content_warning_panel/bottom_padding" | "no_xbl_and_no_local_conent_warning_panel" | "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel" | "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel" | "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/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/top_padding" | "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" | "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" | "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" | "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" | "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" | "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" | "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" | "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" | "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" | "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" | "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" | "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding" | "no_xbl_and_no_local_conent_warning_panel/bottom_padding" | "inventory_sign_in_panel" | "inventory_sign_in_panel/no_xbl_and_local_content_warning_panel" | "inventory_sign_in_panel/no_xbl_and_no_local_conent_warning_panel" | "divider_panel" | "divider_panel/top_pad" | "divider_panel/divider" | "divider_panel/bottom_pad" | "right_image" | "down_image" | "section_toggle_base" | "owned_toggle" | "current_toggle" | "removed_toggle" | "subscriptions_toggle" | "inventory_left_panel" | "inventory_left_panel/top_pad" | "inventory_left_panel/owned_toggle" | "inventory_left_panel/owned_dropdown_box_panel" | "inventory_left_panel/owned_dropdown_box_panel/owned_dropdown_box" | "inventory_left_panel/divider_0" | "inventory_left_panel/csub_panel" | "inventory_left_panel/csub_panel/csub_stack_panel" | "inventory_left_panel/divider_1" | "inventory_left_panel/subscriptions_toggle" | "csub_stack_panel" | "csub_stack_panel/padding_title_vertical" | "csub_stack_panel/section_title" | "csub_stack_panel/section_title/padding_title_horizontal" | "csub_stack_panel/section_title/testTitle" | "csub_stack_panel/dropdown_panel" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2" | "subscriptions_text_panel" | "subscriptions_text_panel/subscriptions_text" | "realms_plus_stack_panel" | "realms_plus_stack_panel/section_title" | "realms_plus_stack_panel/section_title/border" | "realms_plus_stack_panel/section_title/section_title_label" | "realms_plus_stack_panel/section_title/particles" | "realms_plus_stack_panel/dropdown_panel" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_0" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2" | "dropdown_button_content" | "dropdown_button_content/title_label" | "dropdown_button_content/pad_0_fill" | "dropdown_button_content/pad_0" | "dropdown_button_content/icon_panel" | "dropdown_button_content/icon_panel/block_icon" | "dropdown_button_content/pad_1" | "dropdown_button_content/pad_2" | "dropdown_button_content/count_panel" | "dropdown_button_content/count_panel/count" | "dropdown_button_content/pad_3" | "dropdown_button_content/right_carrot" | "dropdown_button_content/right_carrot/right" | "dropdown_button_content/down_carrot" | "dropdown_button_content/down_carrot/down" | "owned_dropdown_content" | "current_dropdown_content" | "removed_dropdown_content" | "dropdown_box" | "dropdown_box/top_pad" | "dropdown_box/all" | "dropdown_box/divider_0" | "dropdown_box/addons" | "dropdown_box/divider_1" | "dropdown_box/skins" | "dropdown_box/divider_2" | "dropdown_box/worlds" | "dropdown_box/divider_3" | "dropdown_box/textures" | "dropdown_box/divider_4" | "dropdown_box/mashups" | "dropdown_box/bottom_pad" | "category_panel_button" | "category_panel_button/default" | "category_panel_button/hover" | "category_panel_button/pressed" | "category_stack_panel" | "category_stack_panel/text" | "category_stack_panel/fill_pad" | "category_stack_panel/icon" | "category_stack_panel/pad_1" | "category_stack_panel/number" | "search_object" | "list_panel" | "list_panel/list_panel_content" | "list_panel/list_panel_content/search_and_offers_grid_scroll_panel" | "list_panel/progress_loading" | "items_content_section" | "subscriptions_content_section" | "subscriptions_content_section/left_pad" | "subscriptions_content_section/search_and_offers_grid_scroll_panel" | "right_pane_factory" | "content_area" | "content_area/control" | "content_area/control/right_pane_factory" | "main_panel" | "main_panel/inventory_left_panel" | "main_panel/inventory_left_panel/inventory_left_image" | "main_panel/inventory_left_panel/left_scrolling_panel" | "main_panel/divider_panel" | "main_panel/divider_panel/main_divider" | "main_panel/inventory_right_panel" | "main_panel/inventory_right_panel/right_panel_background_image" | "main_panel/inventory_right_panel/content_right_panel" | "store_inventory_screen_main_panel" | "store_inventory_screen_main_panel/main_content_view" | "store_inventory_screen_main_panel/sort_and_filter_modals" | "store_search_screen_content" | "store_search_screen_content/main_panel" | "store_search_screen_content/popup_dialog_factory" | "store_inventory_screen" | "signin_text_section_body" | "signin_text" | "signin_text_02" | "signin_text_section" | "signin_text_section/signin_text" | "signin_text_section/line_1_padding_line_2" | "signin_text_section/signin_text_02" | "sign_in_panel_text_body"; -export type StoreItemList = "store_offer_key_art" | "main_panel" | "main_panel/search_object" | "main_panel/progress_loading" | "scrolling_content_stack" | "scrolling_content_stack/search_panel" | "store_offer_grid" | "persona_offer_grid" | "vertical_store_offer_grid" | "store_offer_title" | "store_offer_grid_item" | "store_offer_grid_item/frame" | "store_offer_grid_item/frame/key_art" | "store_offer_grid_item/frame/key_art/key_art_frame" | "store_offer_grid_item/frame/key_art/csb_expiration_banner" | "store_offer_grid_item/frame/progress" | "store_offer_grid_item/frame/title_label_panel" | "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label" | "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/title" | "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/creator_label" | "store_offer_grid_item/frame/durable_offer_info_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6" | "store_offer_grid_item/frame/offer_button" | "store_offer_grid_item/frame/offer_button/hover" | "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel" | "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame" | "store_offer_grid_item/frame/offer_button/pressed" | "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel" | "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame" | "store_offer_grid_item/frame/offer_button/offer_status_icon" | "store_screen_content" | "store_screen_content/main_panel" | "store_screen_content/popup_dialog_factory"; -export type StoreProgress = "store_progress_screen" | "screen_content" | "screen_content/title_image" | "screen_content/progress_dialog" | "dialog_content" | "dialog_content/tooltip_panel" | "dialog_content/tooltip_panel/tooltip_text" | "dialog_content/padding" | "dialog_content/progress_panel" | "dialog_content/progress_panel/empty_progress_bar" | "dialog_content/progress_panel/progress_percent_panel" | "dialog_content/progress_panel/progress_percent_panel/full_progress_bar" | "dialog_content/progress_panel/progress_percent_panel/progress_bar_nub" | "screen_background"; -export type PromoTimeline = "promo_banner_factory" | "promo_banner_button_content" | "promo_banner_button_content/promo_banner_button" | "promo_banner_button_content/progress_loading_spinner" | "promo_banner_image" | "promo_banner_panel_content" | "promo_banner_panel_content/banner_image" | "promo_banner_panel_content/banner_text_panel" | "promo_banner_panel_content/banner_text_panel/padding_0" | "promo_banner_panel_content/banner_text_panel/title_stack_panel" | "promo_banner_panel_content/banner_text_panel/title_stack_panel/banner_title" | "promo_banner_panel_content/banner_text_panel/description" | "promo_banner_panel_content/button_stack_panel" | "promo_banner_panel_content/button_stack_panel/left_offset" | "promo_banner_panel_content/button_stack_panel/banner_button" | "promo_banner_panel_content/button_stack_panel/right_offset" | "promo_banner_holiday_panel" | "promo_banner_holiday_panel/banner_full_button" | "promo_banner_holiday_panel/banner_full_button/default" | "promo_banner_holiday_panel/banner_full_button/hover" | "promo_banner_holiday_panel/banner_full_button/pressed" | "image_message_panel" | "image_message_panel/image_message_row_content" | "image_message_panel/padding_0" | "image_message_row_content" | "image_message_row_content/gray_background" | "image_message_row_content/gray_background/message_text" | "image_message_row_content/gray_background/row_image" | "image_message_row_content/row_button" | "promo_image_panel" | "promo_image_panel/button_image_panel" | "promo_image_panel/button_animated_panel" | "promo_button_image_panel" | "promo_button_image_panel/button_image" | "promo_button_image" | "promo_button_animation" | "banner_button" | "sdl_text_aligned_panel" | "sdl_text_minecraftTen_aligned_panel" | "sdl_content_aligned_panel" | "sdl_content_aligned_panel/left__padding_panel" | "sdl_content_aligned_panel/control" | "sdl_content_aligned_panel/right_padding_panel" | "sdl_aligned_text" | "sdl_aligned_minecraftTen_text" | "colored_direction_button_panel" | "colored_direction_button_panel/chevron_image" | "left_corner_art" | "right_corner_art" | "promo_landing_panel" | "promo_landing_panel/promo_landing_panel_content" | "promo_landing_panel/promo_landing_panel_content/promo_top" | "promo_landing_panel/promo_landing_panel_content/pad_0" | "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel" | "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom" | "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel" | "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/left_button_panel" | "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/left_button_panel/left_button" | "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/offer_grid" | "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel" | "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel/right_button" | "promo_landing_panel/promo_landing_panel_content/pad_1" | "promo_landing_panel/left_corner_art" | "promo_landing_panel/right_corner_art" | "promotion_screen_top_section" | "promotion_screen_top_section/main_panel" | "promotion_top_main_panel" | "promotion_top_main_panel/promotion_top_main_stack" | "promotion_top_main_panel/promotion_top_main_stack/main_panel_title" | "promotion_top_main_panel/promotion_top_main_stack/promo_single_top" | "promotion_top_main_panel/promotion_top_main_stack/promo_single_top/single_item_view" | "promotion_top_main_panel/promotion_top_main_stack/promo_multi_item" | "main_panel_title" | "main_panel_title/padding_0" | "main_panel_title/header_stack" | "main_panel_title/header_stack/padding_0" | "main_panel_title/header_stack/back_button_centering_panel" | "main_panel_title/header_stack/back_button_centering_panel/button" | "main_panel_title/header_stack/padding_1" | "main_panel_title/header_stack/header_panel" | "main_panel_title/header_stack/header_panel/title_and_description" | "main_panel_title/header_stack/padding_2" | "main_panel_title/header_stack/claim_all_button_panel" | "main_panel_title/header_stack/claim_all_button_panel/claim_all_button" | "main_panel_title/padding_1" | "main_panel_title/divdier_centering_panel" | "main_panel_title/divdier_centering_panel/divider" | "main_panel_title/padding_2" | "promo_multi_item_grid" | "promo_button" | "promo_button/default" | "promo_button/default/key_art_size_panel" | "promo_button/default/key_art_size_panel/key_art_frame" | "promo_button/default/key_art_size_panel/key_art_frame/sizing_panel" | "promo_button/default/key_art_size_panel/key_art_frame/platform_restricted_warning_image" | "promo_button/default/key_art_size_panel/button_frame" | "promo_button/hover" | "promo_button/hover/key_art_size_panel" | "promo_button/hover/key_art_size_panel/key_art_frame" | "promo_button/hover/key_art_size_panel/key_art_frame/sizing_panel" | "promo_button/hover/key_art_size_panel/button_frame" | "promo_button/pressed" | "promo_button/pressed/key_art_frame" | "promo_button/pressed/key_art_frame/sizing_panel" | "promo_button/pressed/button_frame" | "promo_grid_item" | "promo_grid_item/background_image" | "promo_grid_item/background_image/promo_content" | "promo_grid_item/promo_button" | "promo_grid_item/platform_restricted_error_multi_item" | "platform_restricted_error" | "platform_restricted_error/platform_restricted_error_button" | "platform_restricted_error/platform_restricted_error_button/default" | "platform_restricted_error/platform_restricted_error_button/hover" | "platform_restricted_error/platform_restricted_error_button/pressed" | "platform_restricted_error/platform_restricted_error_button/white_overlay_to_gray_out" | "promo_grid_item_content" | "promo_grid_item_content/thumbnail_image" | "promo_grid_item_content/persona_key_art_frame" | "promo_grid_item_content/persona_key_art_frame/persona_image_panel" | "promo_grid_item_content/persona_key_art_frame/background" | "promo_grid_item_content/persona_key_art_frame/rarity_bar_panel" | "promo_grid_item_content/padding_0" | "promo_grid_item_content/title_tooltip" | "promo_grid_item_content/title_tooltip/promo_title" | "promo_grid_item_content/title_tooltip/tooltip" | "promotion_period_grid_panel" | "promotion_period_grid_panel/promotion_offer_grid_image" | "promotion_period_grid_panel/promotion_offer_grid_image/item_selected_bg" | "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel" | "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel" | "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel/day_label" | "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/pad" | "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel" | "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel" | "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel/item_button" | "promotion_period_offer_panel" | "promotion_period_offer_panel/period_1" | "promotion_period_offer_panel/padding_0" | "promotion_period_offer_panel/period_2" | "promotion_period_offer_panel/padding_1" | "promotion_period_offer_panel/period_3" | "promotion_period_offer_panel/padding_2" | "promotion_period_offer_panel/period_4" | "promotion_period_offer_panel/padding_3" | "promotion_period_offer_panel/period_5" | "promotion_period_offer_panel/padding_4" | "promotion_period_offer_panel/period_6" | "promotion_period_offer_panel/padding_5" | "promotion_period_offer_panel/period_7" | "toggle_button_control" | "toggle_button_control/green_check" | "toggle_button_control/key_art_image_panel" | "toggle_button_control/key_art_image_panel/image_loading_panel" | "toggle_button_control/key_art_image_panel/key_art_image" | "checked_border" | "promotion_period_grid_item" | "promotion_period_grid_item/frame" | "promotion_period_grid_item/frame/offer_button" | "promotion_period_grid_item/frame/offer_button/offer_toggle_button" | "vertical_padding_2px" | "timer_icon_tooltip_panel" | "timer_icon_tooltip_panel/limited_status_image" | "timer_tooltip_panel_right_extending" | "timer_tooltip_panel_right_extending/default" | "timer_tooltip_panel_right_extending/hover" | "timer_tooltip_panel_right_extending/pressed" | "timer_tooltip_panel_left_extending" | "timer_tooltip_panel_left_extending/default" | "timer_tooltip_panel_left_extending/hover" | "timer_tooltip_panel_left_extending/pressed" | "no_timer_tooltip_panel" | "no_timer_tooltip_panel/default" | "no_timer_tooltip_panel/hover" | "no_timer_tooltip_panel/pressed" | "promo_timer_panel" | "promo_timer_panel/timer_icon_and_tooltip_panel" | "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_right_extending" | "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_left_extending" | "promo_timer_panel/timer_icon_and_tooltip_panel/notooltip_button" | "promo_timer_panel/timer_icon_and_tooltip_panel/timer_icon" | "promo_timer_panel/padding" | "promo_timer_panel/timer_text" | "offer_title_panel" | "offer_title_panel/offer_title_label" | "title_and_author_panel" | "title_and_author_panel/author_button_panel" | "title_and_author_panel/author_button_panel/summary_author_button" | "glyph_panel" | "glyph_panel/item_glyph_count_panel" | "glyph_panel/item_glyph_count_panel/glyph_icon_panel" | "glyph_panel/item_glyph_count_panel/glyph_icon_panel/glyph_icon" | "glyph_panel/item_glyph_count_panel/center_item_glyph_padding" | "glyph_panel/item_glyph_count_panel/item_glyph_count_panel_label" | "glyph_panel/item_glyph_count_panel/item_glyph_panel_padding" | "vertical_glyph_section_content" | "vertical_glyph_section_content/glyph_content" | "vertical_glyph_section_content/bottom_glyph_content_padding" | "glyph_section_panel" | "glyph_section_panel/glyphs" | "glyph_section_panel/glyphs/skin_glyph_section" | "glyph_section_panel/glyphs/world_glyph_section" | "glyph_section_panel/glyphs/resource_pack_glyph_section" | "vertical_glyph_section_panel" | "image_glyphs_panel" | "image_glyphs_panel/world_panel" | "image_glyphs_panel/world_panel/border" | "image_glyphs_panel/world_panel/world_key_image" | "image_glyphs_panel/persona_panel" | "image_glyphs_panel/persona_panel/border" | "image_glyphs_panel/persona_panel/persona_image" | "image_glyphs_panel/persona_panel/background" | "image_glyphs_panel/persona_panel/rarity_bar_panel" | "image_glyphs_panel/divider" | "image_glyphs_panel/info" | "image_glyphs_panel/info/summary_title_and_author_panel" | "image_glyphs_panel/info/glyph_section" | "image_glyphs_panel/info/glyph_section/glyph_section_panel" | "promo_lower_button_content" | "promo_lower_button_content/promo_banner_button" | "promo_lower_button_content/progress_loading_spinner" | "free_discount_label" | "promo_upper_button_content" | "promo_upper_button_content/markdown" | "promo_upper_button_content/markdown/sales_banner_offset_panel" | "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel" | "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel/markdown_banner" | "promo_upper_button_content/markdown/price_markdown_panel" | "promo_upper_button_content/markdown/price_markdown_panel/offer_price" | "promo_upper_button_content/markdown/price_markdown_panel/offer_price/text_strike_through" | "promo_upper_button_content/promo_item_action_text_panel" | "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel" | "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/platform_restricted_warning_image" | "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/padding" | "promo_upper_button_content/promo_item_action_text_panel/promo_item_action_text" | "promo_upper_button_content/download_progress_bar" | "description_section_panel" | "description_section_panel/contents_description" | "offset_title_offer" | "offset_title_offer/pad_0" | "offset_title_offer/title_panel" | "offset_promo_timer" | "offset_promo_timer/pad_0" | "offset_promo_timer/promo_timer" | "offset_image_glyphs_panel" | "offset_image_glyphs_panel/pad_0" | "offset_image_glyphs_panel/smaller_panel" | "offset_image_glyphs_panel/smaller_panel/details" | "offset_image_glyphs_panel/smaller_panel/description" | "promo_pack_detail_panel" | "promo_pack_detail_panel/offset_title_panel" | "promo_pack_detail_panel/offsetted_promo_timer" | "promo_pack_detail_panel/pad_0" | "promo_pack_detail_panel/offsetted_details" | "promo_pack_detail_panel/pad_1" | "promo_left_inner_top_scrolling_content" | "promo_left_inner_top_scrolling_content/details" | "promo_left_inner_top" | "promo_left_inner_top/top" | "promo_left_inner_top/padding2" | "promo_left_inner_bottom" | "promo_left_inner_bottom/banner_button_top_panel" | "promo_left_inner_bottom/banner_button_top_panel/banner_button_top" | "promo_left_inner_bottom/banner_button_top_panel/platform_restricted_error_single_item" | "promo_left_inner_bottom/banner_button_bottom" | "promo_left_panel" | "promo_left_panel/top" | "promo_left_panel/bottom_buttons_padded" | "promo_left_panel/bottom_buttons_padded/pad_0" | "promo_left_panel/bottom_buttons_padded/bottom" | "promo_left_panel/padding" | "promo_world_image_panel" | "promo_world_image_panel/image" | "promo_world_image_panel/image/key_image" | "promo_world_image_panel/image/key_image/border" | "promo_grey_bar_panel" | "promo_grey_bar_panel/grey_bar" | "promo_grey_bar_panel/green_bar" | "promo_grey_bar_panel/padding" | "promo_world_button_panel" | "promo_world_button_panel/pan_left_button" | "promo_world_button_panel/navigation_bar" | "promo_world_button_panel/navigation_bar/grey_bar" | "promo_world_button_panel/navigation_bar/grey_bar/grey_bar_factory_panel" | "promo_world_button_panel/pan_right_button" | "promo_world_panel" | "promo_world_panel/image" | "promo_world_panel/padding1" | "promo_world_panel/buttons" | "promo_world_panel/padding_3" | "promo_skin_panel" | "promo_skin_panel/size_control" | "promo_skin_panel/size_control/background" | "promo_skin_panel/size_control/skin_button" | "promo_skin_panel/size_control/skin_button/default" | "promo_skin_panel/size_control/skin_button/hover" | "promo_skin_panel/size_control/skin_button/pressed" | "promo_skin_panel/size_control/skin_button/content_panel" | "promo_skin_panel/size_control/skin_button/content_panel/paper_doll" | "promo_skin_grid_panel" | "promo_skin_grid_panel/promo_skin_pack_grid" | "promo_right_panel_scroll_content" | "promo_right_panel_scroll_content/world_screenshots_panel" | "promo_right_panel_scroll_content/world_screenshots_panel/world_panel" | "promo_right_panel_scroll_content/skin_image_panel" | "promo_right_panel_scroll_content/skin_image_panel/skin_panel" | "promo_right_panel_scroll_content/persona_preview" | "skin_scroll_panel" | "persona_classic_skin_grid_panel" | "persona_classic_skin_grid_panel/persona_skin_pack_category_grid" | "promo_right_panel" | "promo_detail_panel" | "promo_detail_panel/detail" | "promo_detail_panel/center_spacing" | "promo_detail_panel/right" | "promotion_skin_viewer_panel" | "promotion_skin_viewer_panel/popup_dialog_factory" | "promotion_skin_viewer_panel/character_loading_panel" | "promotion_skin_viewer_panel/skin_model_panel" | "promotion_skin_viewer_panel/skin_model_panel/skin_model" | "promotion_skin_viewer_panel/skin_model_panel/arrow_panel" | "promotion_skin_viewer_panel/skin_model_panel/arrow_panel/rotate_arrows" | "promo_popup_toast"; -export type StoreSaleItemList = "banner_header" | "banner_header/label_panel" | "banner_header/label_panel/on_sale_banner" | "banner_header/label_panel/on_sale_banner/padding_panel" | "banner_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label" | "banner_header/label_panel/on_sale_banner/padding_panel/triangle" | "banner_header/label_panel/time_remaining_label" | "sales_offer_content" | "sales_offer_content/top_padding" | "sales_offer_content/sales_panel" | "sales_offer_content/sales_panel/sales_banner_panel" | "sales_offer_content/sales_panel/top_sales_grid_padding" | "sales_offer_content/sales_panel/sales_grid_panel" | "sales_offer_content/sales_panel/sales_grid_panel/sales_offer_grid" | "all_offer_content" | "all_offer_content/store_offer_grid_panel"; -export type StoreSearch = "store_offer_grid_item" | "trending_row_content" | "trending_row_content/trending_row_panel" | "trending_row_content/trending_row_panel/trending_row_label_panel" | "trending_row_content/trending_row_panel/trending_row_label_panel/trending_row_label" | "trending_row_content/trending_row_panel/mid_padding" | "trending_row_content/trending_row_panel/trending_offers_grid" | "trending_row_content/trending_row_panel/bottom_padding" | "trending_rows_grid" | "search_offer_content" | "search_offer_content/trending_grid" | "search_offer_content/item_list_panel" | "search_offer_content/item_list_panel/item_list_grid" | "main_panel" | "main_panel/seach_object" | "main_panel/progress_loading" | "store_search_screen_content" | "store_search_screen_content/main_panel" | "store_search_screen_content/popup_dialog_factory" | "store_search_screen"; -export type SortMenu = "sort_menu_toggle_panel" | "sort_menu_toggle_panel/sort_menu_toggle_panel" | "sort_menu_toggle_panel/sort_menu_toggle_panel/sort_menu_toggle" | "sort_menu_first_button_content_panel" | "sort_menu_first_button_content_panel/left_padding" | "sort_menu_first_button_content_panel/centered_sort_logo_icon" | "sort_menu_first_button_content_panel/centered_sort_logo_icon/sort_logo_icon" | "sort_menu_first_button_content_panel/logo_padding_labels" | "sort_menu_first_button_content_panel/labels_stack_panel" | "sort_menu_first_button_content_panel/labels_stack_panel/top_padding" | "sort_menu_first_button_content_panel/labels_stack_panel/sort_const_word_top" | "sort_menu_first_button_content_panel/labels_stack_panel/middle_padding" | "sort_menu_first_button_content_panel/labels_stack_panel/current_sort_value_label_bottom" | "sort_menu_first_button_content_panel/labels_stack_panel/bottom_padding" | "sort_menu_first_button_content_panel/labels_padding_x_image" | "sort_menu_first_button_content_panel/x_image_panel" | "sort_menu_first_button_content_panel/x_image_panel/x_image" | "sort_menu_toggles" | "sort_menu_toggles/relevance_toggle_panel" | "sort_menu_toggles/relevance_toggle_panel/relevance_toggle" | "sort_menu_toggles/sort_toggle_grid" | "sort_menu_show" | "sort_menu_show/1st_button_centering_panel" | "sort_menu_show/1st_button_centering_panel/first_button_main" | "sort_menu_show/sort_scrolling_content_panel" | "sort_menu_panel" | "sort_menu_panel/top_padding" | "sort_menu_panel/alignment_panel" | "sort_menu_panel/alignment_panel/left_padding" | "sort_menu_panel/alignment_panel/sort_menu_show" | "sort_menu_panel/alignment_panel/right_padding" | "sort_menu_screen_content" | "sort_menu_screen_content/sort_menu_main" | "sort_menu_screen_content/sort_menu_main_persona" | "sort_menu_screen_content/sort_menu_background"; -export type StructureEditor = "small_padding" | "help_icon" | "common_text_label" | "text_edit_control" | "axis_selection_panel" | "axis_selection_panel/label" | "axis_selection_panel/edit_box" | "grid_axis_selection_panel" | "grid_axis_selection_panel/label_container" | "grid_axis_selection_panel/label_container/label" | "grid_axis_selection_panel/axis_grid" | "grid_axis_selection_panel/axis_grid/X" | "grid_axis_selection_panel/axis_grid/Y" | "grid_axis_selection_panel/axis_grid/Z" | "3d_export_button" | "save_button" | "export_button" | "load_button" | "detect_button" | "import_button" | "reset_button" | "help_button" | "toggle_option_panel" | "toggle_option_panel/toggle" | "toggle_option_panel/offset_0" | "toggle_option_panel/first_label_wrapper" | "toggle_option_panel/first_label_wrapper/first_label" | "toggle_option_panel/second_label_wrapper" | "toggle_option_panel/second_label_wrapper/second_label" | "include_entities_panel" | "include_entities_panel/label" | "include_entities_panel/toggle_wrapper" | "include_entities_panel/toggle_wrapper/toggle" | "waterlogging_panel" | "waterlogging_panel/label" | "waterlogging_panel/toggle_wrapper" | "waterlogging_panel/toggle_wrapper/toggle" | "show_bounding_box_panel" | "show_bounding_box_panel/label" | "show_bounding_box_panel/toggle_wrapper" | "show_bounding_box_panel/toggle_wrapper/toggle" | "include_player_panel" | "include_player_panel/label" | "include_player_panel/toggle_wrapper" | "include_player_panel/toggle_wrapper/toggle" | "remove_blocks_panel" | "remove_blocks_panel/label" | "remove_blocks_panel/toggle_wrapper" | "remove_blocks_panel/toggle_wrapper/toggle" | "3d_export_mode_panel" | "3d_export_mode_panel/size_offset_panel" | "3d_export_mode_panel/size_offset_panel/size_panel" | "3d_export_mode_panel/size_offset_panel/offset_panel" | "3d_export_mode_panel/offset_0" | "3d_export_mode_panel/offset_2" | "3d_export_mode_panel/remove_blocks" | "save_mode_panel" | "save_mode_panel/structure_name" | "save_mode_panel/size_offset_panel" | "save_mode_panel/size_offset_panel/size_panel" | "save_mode_panel/size_offset_panel/offset_panel" | "save_mode_panel/detect_offset" | "save_mode_panel/detect" | "save_mode_panel/include_entities_offset" | "save_mode_panel/include_entities" | "save_mode_panel/remove_blocks_offset" | "save_mode_panel/remove_blocks" | "save_mode_panel/redstone_save_offset" | "save_mode_panel/redstone_save_mode" | "save_mode_panel/trailing_offset" | "mirror_checkbox" | "mirror_checkbox/label" | "mirror_checkbox/padding" | "mirror_checkbox/check_box" | "mirror_checkboxes" | "mirror_checkboxes/mirror_checkbox_x" | "mirror_checkboxes/padding" | "mirror_checkboxes/mirror_checkbox_z" | "load_mode_panel" | "load_mode_panel/structure_name" | "load_mode_panel/offset_panel" | "load_mode_panel/include_entities_offset" | "load_mode_panel/include_entities" | "load_mode_panel/remove_blocks_offset" | "load_mode_panel/waterlog_blocks" | "load_mode_panel/waterlog_blocks_offset" | "load_mode_panel/remove_blocks" | "load_mode_panel/integrity_offset" | "load_mode_panel/integrity_label" | "load_mode_panel/integrity_field" | "load_mode_panel/offset_1" | "load_mode_panel/seed_label" | "load_mode_panel/seed_field" | "load_mode_panel/offset_2" | "load_mode_panel/rotation_slider" | "load_mode_panel/mirror_label" | "load_mode_panel/mirror_checkboxes_centerer" | "load_mode_panel/mirror_checkboxes_centerer/mirror_checkboxes" | "load_mode_panel/checkbox_offset" | "load_mode_panel/animation_mode" | "load_mode_panel/animation_time_label" | "load_mode_panel/animation_time_field" | "data_mode_panel" | "data_mode_panel/top_offset" | "data_mode_panel/data_label" | "data_mode_panel/data_label_offset" | "data_mode_panel/data_field" | "data_mode_panel/data_field_offset" | "corner_mode_panel" | "corner_mode_panel/structure_name" | "help_button_panel" | "help_button_panel/help" | "help_button_panel/help_divider" | "save_button_panel" | "save_button_panel/divider" | "save_button_panel/save" | "save_button_panel/save_divider" | "save_button_panel/export" | "save_button_panel/export_divider" | "save_button_panel/import_divider" | "save_button_panel/reset" | "save_button_panel/reset_divider" | "save_button_panel_no_export" | "save_button_panel_no_export/divider" | "save_button_panel_no_export/save" | "save_button_panel_no_export/save_divider" | "save_button_panel_no_export/reset" | "save_button_panel_no_export/reset_divider" | "load_button_panel" | "load_button_panel/divider" | "load_button_panel/load" | "load_button_panel/load_divider" | "load_button_panel/export_divider" | "load_button_panel/import" | "load_button_panel/import_divider" | "load_button_panel/reset" | "load_button_panel/reset_divider" | "load_button_panel_no_export" | "load_button_panel_no_export/divider" | "load_button_panel_no_export/load" | "load_button_panel_no_export/load_divider" | "load_button_panel_no_export/reset" | "load_button_panel_no_export/reset_divider" | "3d_export_button_panel" | "3d_export_button_panel/divider" | "3d_export_button_panel/3d_export" | "3d_export_button_panel/3d_export_divider" | "3d_export_button_panel/import" | "3d_export_button_panel/import_divider" | "3d_export_button_panel/reset" | "3d_export_button_panel/reset_divider" | "data_button_panel" | "data_button_panel/divider" | "data_button_panel/reset" | "data_button_panel/reset_divider" | "corner_button_panel" | "corner_button_panel/reset_divider" | "button_panel_wrapper" | "button_panel_wrapper/panel" | "button_panel_wrapper/panel/divider" | "button_panel_wrapper/panel/save_panel" | "button_panel_wrapper/panel/save_panel_no_export" | "button_panel_wrapper/panel/corner_panel" | "button_panel_wrapper/panel/load_panel_no_export" | "button_panel_wrapper/panel/load_panel" | "button_panel_wrapper/panel/3d_export_panel" | "button_panel_wrapper/panel/data_panel" | "button_panel_wrapper/panel/how_to_play_button" | "button_panel_wrapper/panel/end_divider" | "redstone_dropdown_content" | "redstone_save_mode_panel" | "animation_mode_dropdown_content" | "animation_mode_dropdown" | "structure_name_wrapper" | "structure_name_wrapper/structure_name" | "structure_name_wrapper/structure_name_offset" | "detect_button_wrapper" | "detect_button_wrapper/detect" | "detect_button_wrapper/detect_offset" | "mode_dropdown_content" | "mode_panel" | "scrolling_panel_wrapper" | "scrolling_panel_wrapper/scrolling_panel" | "scrolling_panel" | "scroll_panel_content" | "scroll_panel_content/content_stack_panel" | "scroll_panel_content/content_stack_panel/base_offset" | "scroll_panel_content/content_stack_panel/mode_panel" | "scroll_panel_content/content_stack_panel/mode_panel_offset" | "scroll_panel_content/content_stack_panel/3d_export_mode_panel" | "scroll_panel_content/content_stack_panel/save_mode_panel" | "scroll_panel_content/content_stack_panel/load_mode_panel" | "scroll_panel_content/content_stack_panel/data_mode_panel" | "scroll_panel_content/content_stack_panel/corner_mode_panel" | "scroll_panel_content/content_stack_panel/base_mode_offset" | "scroll_panel_content/content_stack_panel/show_bounding_box" | "scroll_panel_content/content_stack_panel/show_bounding_box_offset" | "scroll_panel_content/content_stack_panel/offset_2" | "left_divider_content" | "left_divider_content/scrolling_panel" | "save_message_text" | "save_message_text/save_message_label" | "import_message_text" | "import_message_text/save_message_label" | "import_failed_message_text" | "import_failed_message_text/save_message_label" | "export_disabled_label" | "image_panel_wrapper" | "image_panel_wrapper/image_panel" | "image_panel_wrapper/save_message_factory" | "image_panel_wrapper/import_message_factory" | "image_panel_wrapper/import_failed_message_factory" | "image_panel_wrapper/export_disabled" | "corner_text" | "corner_text/image_panel" | "image_panel" | "image_panel/border_indent" | "image_panel/border_indent/background_gradient" | "image_panel/border_indent/image_outline" | "image_panel/border_indent/structure_renderer" | "image_panel/border_indent/text_corner" | "image_panel/border_indent/progress_panel" | "image_panel/border_indent/rotate_arrows" | "progress_panel" | "progress_panel/stack_panel" | "progress_panel/stack_panel/label_wrapper" | "progress_panel/stack_panel/label_wrapper/progress_label" | "progress_panel/stack_panel/progress_bar" | "background_gradient" | "corner_text_panel" | "corner_text_panel/paragraph_1_corner" | "corner_text_panel/padding_1" | "corner_text_panel/paragraph_2_corner" | "structure_renderer" | "structure_renderer/renderer" | "black_border" | "rotation_arrows" | "right_divider_content" | "right_divider_content/base_offset" | "right_divider_content/preview" | "right_divider_content/image_offset" | "right_divider_content/button_wrapper" | "right_divider_content/button_wrapper/buttons" | "divider_content" | "divider_content/left_side" | "divider_content/right_side" | "structure_editor_content" | "structure_editor_content/background_panel" | "structure_editor_content/title" | "structure_editor_content/content" | "structure_editor_screen"; -export type SubmitFeedback = "send_feedback_button" | "write_feedback_panel" | "write_feedback_panel/pad_1" | "write_feedback_panel/write_feedback_label" | "write_feedback_panel/pad_2" | "write_feedback_panel/feedback_textbox" | "write_feedback_panel/remaining_characters_panel" | "write_feedback_panel/remaining_characters_panel/remaining_characters_count_label" | "scroll_panel" | "scroll_panel/write_feedback_panel" | "main_panel" | "main_panel/scrolling_panel" | "submit_feedback_screen" | "submit_feedback_content" | "submit_feedback_content/submit_feedback_main_panel" | "submit_feedback_content/progress_loading"; -export type TabbedUpsell = "padding_horizontal" | "padding_vertical" | "text_horizontal_padding" | "tabbed_upsell_buy_now_button" | "tabbed_buy_now_label" | "tabbed_buy_now_label/button_label" | "label_panel" | "label_panel/label_text" | "text_panel" | "text_panel/tab_content_title_panel" | "text_panel/tab_content_description_panel" | "text_panel/tab_content_description_panel_second" | "dialog_image" | "dialog_image_with_border" | "dialog_image_with_border/dialog_image" | "content_image_panel" | "content_image_panel/minecraft_dialog_image_with_border" | "content_image_panel/horizontal_padding_01" | "content_image_panel/scrolling_panel" | "scroll_text" | "image_panel" | "image_panel/dialog_image_with_border" | "image_panel/focus_image" | "top_tab" | "tab_navigation_panel_layout" | "tab_navigation_panel_layout/navigation_tabs" | "tab_navigation_panel_layout/navigation_tabs/content" | "common_tab_navigation_panel_layout" | "tabbed_tab_navigation_panel_layout" | "tabbed_tab_navigation_panel_layout/minecraft_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_01" | "tabbed_tab_navigation_panel_layout/xbl_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_02" | "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3" | "tabbed_tab_navigation_panel_layout/nav_padding_03" | "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4" | "tabbed_tab_navigation_panel_layout/nav_padding_04" | "tabbed_tab_navigation_panel_layout/server_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_05" | "tabbed_tab_navigation_panel_layout/store_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_06" | "tabbed_tab_navigation_panel_layout/creative_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_07" | "tabbed_tab_navigation_panel_layout/packs_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_08" | "tabbed_tab_navigation_panel_layout/seeds_navigation_tab" | "tabbed_tab_content_panel_layout" | "tabbed_tab_content_panel_layout/minecraft_tab_content" | "tabbed_tab_content_panel_layout/xbl_tab_content2" | "tabbed_tab_content_panel_layout/achievements_tab_content3" | "tabbed_tab_content_panel_layout/multiplayer_tab_content4" | "tabbed_tab_content_panel_layout/server_tab_content5" | "tabbed_tab_content_panel_layout/store_tab_content6" | "tabbed_tab_content_panel_layout/creative_tab_content7" | "tabbed_tab_content_panel_layout/packs_tab_content8" | "tabbed_tab_content_panel_layout/seeds_tab_content9" | "common_tab_content_panel" | "common_tab_content_panel/content" | "minecraft_tab_content_panel" | "xbl_tab_content_panel" | "achievements_tab_content_panel" | "multiplayer_tab_content_panel" | "server_tab_content_panel" | "store_tab_content_panel" | "creative_tab_content_panel" | "packs_tab_content_panel" | "seeds_tab_content_panel" | "common_tab_screen_panel" | "common_tab_screen_panel/tab_navigation_panel" | "common_tab_screen_panel/padding_01" | "common_tab_screen_panel/tab_content_panel" | "tabbed_screen_panel" | "button_panel" | "button_panel/padding_5" | "button_panel/buy_now_button" | "button_panel/padding_6" | "tab_panel" | "tab_panel/padding_3" | "tab_panel/main_control" | "tab_panel/padding_4" | "tabbed_upsell_content" | "tabbed_upsell_content/padding_0" | "tabbed_upsell_content/tab_panel" | "tabbed_upsell_content/padding_1" | "tabbed_upsell_content/button_panel" | "tabbed_upsell_content/padding_2" | "tabbed_upsell_screen" | "tabbed_upsell_screen_panel" | "tabbed_upsell_screen_panel/tabbed_upsell_screen_content" | "tabbed_upsell_screen_panel/background"; -export type ThanksForTesting = "padding_horizontal" | "padding_vertical" | "text_horizontal_padding" | "tabbed_upsell_buy_now_button" | "tabbed_buy_now_label" | "tabbed_buy_now_label/button_label" | "label_panel" | "label_panel/label_text" | "text_panel" | "text_panel/tab_content_title_panel" | "text_panel/tab_content_description_panel" | "text_panel/tab_content_description_panel_second" | "dialog_image" | "dialog_image_with_border" | "dialog_image_with_border/dialog_image" | "content_image_panel" | "content_image_panel/minecraft_dialog_image_with_border" | "content_image_panel/horizontal_padding_01" | "content_image_panel/scrolling_panel" | "scroll_text" | "image_panel" | "image_panel/dialog_image_with_border" | "image_panel/focus_image" | "top_tab" | "tab_navigation_panel_layout" | "tab_navigation_panel_layout/navigation_tabs" | "tab_navigation_panel_layout/navigation_tabs/content" | "common_tab_navigation_panel_layout" | "tabbed_tab_navigation_panel_layout" | "tabbed_tab_navigation_panel_layout/minecraft_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_01" | "tabbed_tab_navigation_panel_layout/xbl_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_02" | "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3" | "tabbed_tab_navigation_panel_layout/nav_padding_03" | "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4" | "tabbed_tab_navigation_panel_layout/nav_padding_04" | "tabbed_tab_navigation_panel_layout/server_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_05" | "tabbed_tab_navigation_panel_layout/store_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_06" | "tabbed_tab_navigation_panel_layout/creative_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_07" | "tabbed_tab_navigation_panel_layout/packs_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_08" | "tabbed_tab_navigation_panel_layout/seeds_navigation_tab" | "tabbed_tab_content_panel_layout" | "tabbed_tab_content_panel_layout/minecraft_tab_content" | "tabbed_tab_content_panel_layout/xbl_tab_content2" | "tabbed_tab_content_panel_layout/achievements_tab_content3" | "tabbed_tab_content_panel_layout/multiplayer_tab_content4" | "tabbed_tab_content_panel_layout/server_tab_content5" | "tabbed_tab_content_panel_layout/store_tab_content6" | "tabbed_tab_content_panel_layout/creative_tab_content7" | "tabbed_tab_content_panel_layout/packs_tab_content8" | "tabbed_tab_content_panel_layout/seeds_tab_content9" | "common_tab_content_panel" | "common_tab_content_panel/content" | "minecraft_tab_content_panel" | "xbl_tab_content_panel" | "achievements_tab_content_panel" | "multiplayer_tab_content_panel" | "server_tab_content_panel" | "store_tab_content_panel" | "creative_tab_content_panel" | "packs_tab_content_panel" | "seeds_tab_content_panel" | "common_tab_screen_panel" | "common_tab_screen_panel/tab_navigation_panel" | "common_tab_screen_panel/padding_01" | "common_tab_screen_panel/tab_content_panel" | "tabbed_screen_panel" | "button_panel" | "button_panel/padding_5" | "button_panel/buy_now_button" | "button_panel/padding_6" | "tab_panel" | "tab_panel/padding_3" | "tab_panel/main_control" | "tab_panel/padding_4" | "tabbed_upsell_content" | "tabbed_upsell_content/padding_0" | "tabbed_upsell_content/tab_panel" | "tabbed_upsell_content/padding_1" | "tabbed_upsell_content/button_panel" | "tabbed_upsell_content/padding_2" | "thanks_for_testing_screen" | "tabbed_upsell_screen_panel" | "tabbed_upsell_screen_panel/tabbed_upsell_screen_content" | "tabbed_upsell_screen_panel/background"; -export type ThirdPartyStore = "third_party_store_screen"; -export type ToastScreen = "toast_image" | "toast_icon" | "toast_icon/toast_icon" | "xbox_icon" | "third_party_invite_icon" | "third_party_achievement_icon" | "persona_icon" | "persona_icon/item" | "resource_pack_icon" | "resource_pack_icon/resource_pack_image" | "key_art_image" | "gamer_score_icon" | "toast_label" | "static_button_state_panel" | "static_button" | "static_button/default" | "static_button/hover" | "static_button/pressed" | "static_button/locked" | "popup" | "popup/background" | "popup/popup_content" | "popup/popup_content/icon_padding" | "popup/popup_content/text_padding" | "popup/popup_content/text_panel" | "popup/popup_content/text_panel/text_stack_panel" | "popup/popup_content/button_panel" | "popup/popup_content/button_panel/visual_button" | "item_renderer" | "game_tip_label" | "toast_progress_bar" | "toast_progress_bar/toast_duration_progress_bar" | "recipe_unlocked_icon" | "recipe_unlocked_icon/padding_vertical" | "recipe_unlocked_icon/item_renderer" | "recipe_unlocked_popup" | "recipe_unlocked_popup/input_panel" | "recipe_unlocked_popup/input_panel/label_panel" | "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_1" | "recipe_unlocked_popup/input_panel/label_panel/recipe_unlocked_icon" | "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_2" | "recipe_unlocked_popup/input_panel/label_panel/label_panel" | "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_1" | "recipe_unlocked_popup/input_panel/label_panel/label_panel/label" | "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_2" | "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_3" | "recipe_unlocked_pocket_popup" | "recipe_unlocked_pocket_popup/input_panel" | "recipe_unlocked_pocket_popup/input_panel/label_panel" | "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_1" | "recipe_unlocked_pocket_popup/input_panel/label_panel/recipe_unlocked_icon" | "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_2" | "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel" | "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical" | "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/label" | "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical_1" | "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_3" | "text_stack_panel" | "text_stack_panel/title" | "text_stack_panel/subtitle" | "text_stack_panel/subtitle/icon_padding" | "text_stack_panel/subtitle/icon_padding/gamer_score_icon" | "text_stack_panel/subtitle/subtext_offset" | "text_stack_panel/subtitle/subtext_offset/subtext" | "join_button_icon" | "chat_popup" | "splitscreen_join_popup" | "splitscreen_join_popup/join_button_icon" | "splitscreen_join_popup/join_prompt_text_panel" | "splitscreen_join_popup/join_prompt_text_panel/join_prompt_text" | "formfitting_alpha_toast" | "formfitting_alpha_toast/bg" | "formfitting_alpha_toast/bg/label" | "snackbar" | "snackbar/body" | "snackbar/body/background" | "snackbar/body/background/content" | "snackbar/body/background/content/left_padding" | "snackbar/body/background/content/vertically_central_text" | "snackbar/body/background/content/vertically_central_text/top_padding" | "snackbar/body/background/content/vertically_central_text/text" | "snackbar/body/background/content/right_padding" | "snackbar/body/background/right_shadow" | "progress_button_content" | "progress_button_content/gamepad_icon_glyph" | "progress_button_content/spacer" | "progress_button_content/progress_button_label" | "progress_popup" | "progress_popup/background" | "progress_popup/popup_content" | "progress_popup/popup_content/progress_toast_image" | "progress_popup/popup_content/profilepicture" | "progress_popup/popup_content/text_padding" | "progress_popup/popup_content/progress_content_vertical_panel" | "progress_popup/popup_content/progress_content_vertical_panel/title_text_label" | "progress_popup/popup_content/progress_content_vertical_panel/subtext" | "progress_popup/popup_content/progress_content_vertical_panel/stacked_progress_bar" | "progress_popup/popup_content/progress_content_vertical_panel/end_progress_padding" | "progress_popup/popup_content/divider_padding" | "progress_popup/popup_content/divider_image" | "progress_popup/popup_content/popup_decline_button" | "progress_popup/popup_content/end_padding" | "party_invite_popup" | "party_invite_popup/background" | "party_invite_popup/party_invite_content" | "party_invite_popup/party_invite_content/profilepicture" | "party_invite_popup/party_invite_content/text_padding" | "party_invite_popup/party_invite_content/party_invite_content_vertical_panel" | "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/title_text_label" | "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/subtext" | "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/end_padding" | "party_invite_popup/party_invite_content/divider_padding" | "party_invite_popup/party_invite_content/divider_image" | "party_invite_popup/party_invite_content/party_invite_button" | "party_invite_popup/party_invite_content/end_padding" | "party_travel_popup" | "toast_screen" | "toast_screen_content" | "toast_screen_content/content_log_panel" | "toast_screen_content/perf_turtle_panel"; -export type TokenFaq = "main_panel" | "main_panel/faq_question_1" | "main_panel/faq_question_1_divider" | "main_panel/faq_question_2" | "main_panel/faq_question_2_divider" | "main_panel/faq_question_3" | "main_panel/faq_question_3_divider" | "main_panel/faq_question_4" | "main_panel/faq_question_4_divider" | "main_panel/faq_question_5" | "scrolling_panel" | "token_faq_screen_content" | "token_faq_screen_content/dialog" | "background" | "token_faq_screen" | "token_content_panel" | "token_content_panel/token_info_text" | "token_popup_content" | "token_popup_content/dialog" | "token_faq_button_panel" | "back_button_panel" | "token_popup"; -export type Trade = "cycle_recipe_button" | "cycle_recipe_left_button" | "cycle_recipe_right_button" | "arrow_image" | "cross_out_icon" | "highlight_slot_panel" | "highlight_slot_panel/hover_text" | "recipe_button" | "recipe_button/hover" | "recipe_item_panel" | "recipe_item_panel/item_renderer" | "recipe_item_panel/item_renderer/stack_count_label" | "recipe_item_panel/recipe_button" | "trade_item_slot" | "trade_item_slot/container_item" | "trade_item_slotB" | "trade_item_slot_result_button" | "trade_item_slot_result" | "arrow" | "arrow/arrow_image" | "arrow/cross_out_icon" | "arrow/recipe_button" | "purchase_grid_item" | "purchase_grid_item/top_item" | "purchase_grid_item/padding" | "purchase_grid_item/bottom_item" | "purchase_grid" | "purchase_grid/grid_slot1" | "purchase_grid/grid_slot2" | "purchase_grid/arrow" | "purchase_grid/result_item_slot" | "greyed_item_panel" | "greyed_item_panel/item_renderer" | "cycle_panel_keyboard" | "cycle_panel_keyboard/left" | "cycle_panel_keyboard/right" | "cycle_panel_gamepad" | "cycle_panel_gamepad/left" | "cycle_panel_gamepad/right" | "cycle_panel" | "cycle_panel/keyboard" | "cycle_panel/gamepad" | "merchant_purchase_panel" | "merchant_purchase_panel/purchase_grid" | "top_half_panel" | "top_half_panel/villager_name_label" | "top_half_panel/cycle_panel" | "top_half_panel/merchant_purchase_panel" | "trade_panel" | "trade_panel/gamepad_helpers" | "trade_panel/selected_item_details_factory" | "trade_panel/item_lock_notification_factory" | "trade_panel/root_panel" | "trade_panel/root_panel/common_panel" | "trade_panel/root_panel/trade_inventory" | "trade_panel/root_panel/trade_inventory/top_half_panel" | "trade_panel/root_panel/trade_inventory/inventory_panel_bottom_half_with_label" | "trade_panel/root_panel/trade_inventory/hotbar_grid_template" | "trade_panel/root_panel/trade_inventory/inventory_selected_icon_button" | "trade_panel/root_panel/trade_inventory/gamepad_cursor" | "trade_panel/flying_item_renderer" | "trade_screen"; -export type TradePocket = "background_image" | "recipe_item_panel" | "recipe_item_panel/item_renderer" | "recipe_item_panel/item_renderer/stack_count_label" | "result_item_panel" | "result_item_panel/output_item_name" | "result_item_panel/recipe_item_panel" | "trade_item_slot" | "trade_item_slot/container_item" | "trade_item_slotB" | "trade_item_slot_result_button" | "trade_item_slot_result" | "purchase_grid" | "purchase_grid/grid_slot1" | "purchase_grid/grid_slot2" | "purchase_grid/arrow" | "purchase_grid/result_item_slot" | "merchant_purchase_panel" | "merchant_purchase_panel/left" | "merchant_purchase_panel/purchase_grid" | "merchant_purchase_panel/right" | "merchant_panel" | "merchant_panel/merchant_purchase_panel" | "inventory_grid" | "inventory_content" | "inventory_content/scrolling_panel" | "half_screen" | "inventory_half_screen" | "inventory_half_screen/inventory_content" | "merchant_half_screen" | "merchant_half_screen/merchant_panel" | "header" | "header/header_background" | "header/close_button" | "header/villager_name_label" | "trade_panel" | "trade_panel/bg" | "trade_panel/root_panel" | "trade_panel/header" | "trade_panel/inventory" | "trade_panel/merchant_half_screen" | "trade_panel/gamepad_helpers" | "trade_panel/container_gamepad_helpers" | "trade_panel/inventory_selected_icon_button" | "trade_panel/selected_item_details_factory" | "trade_panel/item_lock_notification_factory" | "trade_panel/flying_item_renderer"; -export type Trade2 = "toolbar_background" | "arrow_left_image" | "arrow_right_image" | "trade_cell_image" | "cross_out_image" | "lock_image" | "scroll_background_image" | "red_slash" | "blue_progress_bar" | "white_progress_bar" | "empty_progress_bar" | "progress_bar_nub" | "hover_button" | "hover_button/hover_text" | "stack_count_label" | "changed_item_count_label" | "changed_item_count_label/stack_count_label" | "changed_item_count_label/stack_count_label/red_slash" | "changed_item_count_label/stack_count_label/red_slash_double" | "changed_item_count_label/padding" | "changed_item_count_label/second_stack_count_label" | "single_item_grid" | "single_item_grid/item_with_count" | "single_item_grid/item_with_count/item_renderer" | "single_item_grid/item_with_count/item_renderer/stack_count_label" | "single_item_grid/item_with_count/item_renderer/changed_item_count_label" | "single_item_grid/item_with_count/item_renderer/hover_button" | "trade_item_1" | "trade_item_2" | "sell_item" | "arrow_holder" | "arrow_holder/arrow_image" | "arrow_holder/cross_out_image" | "arrow_holder/lock_image" | "toggle_content" | "toggle_content/padding_1" | "toggle_content/trade_item_1" | "toggle_content/padding_2" | "toggle_content/padding_2_extra" | "toggle_content/trade_item_2" | "toggle_content/padding_3" | "toggle_content/padding_3_extra" | "toggle_content/arrow_holder" | "toggle_content/padding_4" | "toggle_content/sell_item_holder" | "toggle_content/sell_item_holder/sell_item" | "toggle_content/sell_item_holder_with_less_padding" | "toggle_content/sell_item_holder_with_less_padding/sell_item" | "toggle_content/padding_5" | "toggle_content_holder" | "toggle_content_holder/toggle_content" | "trade_toggle_unchecked" | "trade_toggle_unchecked/toggle_checked_normal" | "trade_toggle_unchecked/toggle_checked_red" | "trade_toggle_checked" | "trade_toggle_checked/toggle_checked_normal" | "trade_toggle_checked/toggle_checked_red" | "trade_toggle_locked" | "trade_actual_toggle" | "trade_toggle" | "trade_toggle_holder" | "trade_toggle_holder/trade_toggle" | "trade_toggle_stack_panel" | "tier_label" | "tier_label_locked" | "tier_stack_panel" | "tier_stack_panel/padding" | "tier_stack_panel/tier_label_holder" | "tier_stack_panel/tier_label_holder/tier_label" | "tier_stack_panel/tier_label_holder/tier_label_locked" | "tier_stack_panel/trade_toggle_stack_panel" | "trade_selector_stack_panel" | "scroll_inner_input_panel" | "scroll_inner_input_panel/trade_selector_stack_panel" | "trade_scroll_panel" | "left_panel" | "left_panel/bg" | "left_panel/trade_scroll_panel" | "exp_progress_bar" | "exp_progress_bar/empty_progress_bar" | "exp_progress_bar/empty_progress_bar/progress_bar_nub" | "exp_progress_bar/empty_progress_bar/blue_progress_bar" | "exp_progress_bar/empty_progress_bar/white_progress_bar" | "trade_details" | "trade_details/item_panel_image" | "trade_details/item_panel_image/item_text_label" | "trade_details_factory" | "trade_details_factory_holder" | "trade_details_button" | "trade_details_1_button" | "trade_details_2_button" | "enchantment_details_button" | "trade_result_item_slot_button" | "red_cell_image" | "container_cell_image" | "container_cell_image/cell_image" | "container_cell_image/red_cell_image" | "item_slot" | "ingredient_1_item_slot" | "ingredient_2_item_slot" | "result_item_slot" | "item_slot_holder" | "item_slot_holder/ingredient_1_item_slot" | "item_slot_holder/trade_details_1_button" | "item_slot_holder/trade_details_1_factory_holder" | "item_slots_stack_panel" | "item_slots_stack_panel/ingredient_item_1_holder" | "item_slots_stack_panel/ingredient_item_2_holder" | "item_slots_stack_panel/pointing_right_arrow_holder" | "item_slots_stack_panel/pointing_right_arrow_holder/arrow_right_image" | "item_slots_stack_panel/pointing_left_arrow_holder" | "item_slots_stack_panel/pointing_left_arrow_holder/arrow_left_image" | "item_slots_stack_panel/result_item_slot_holder" | "trade_button" | "how_to_play_button" | "top_half_stack_panel" | "top_half_stack_panel/item_slots_holder" | "top_half_stack_panel/item_slots_holder/item_slots_stack_panel" | "top_half_stack_panel/padding_1" | "top_half_stack_panel/trade_button_holder" | "top_half_stack_panel/trade_button_holder/trade_button" | "top_half_stack_panel/how_to_play_button_holder" | "top_half_stack_panel/how_to_play_button_holder/how_to_play_button" | "top_half_panel" | "top_half_panel/top_half_stack_panel" | "villager_name_label" | "right_panel" | "right_panel/common_panel" | "right_panel/trade_screen_inventory" | "right_panel/trade_screen_inventory/villager_name_label" | "right_panel/trade_screen_inventory/exp_progress_bar" | "right_panel/trade_screen_inventory/top_half_panel" | "right_panel/trade_screen_inventory/inventory_panel_bottom_half_with_label" | "right_panel/trade_screen_inventory/hotbar_grid" | "toolbar_panel" | "toolbar_panel/toolbar_background" | "toolbar_panel/toolbar_background/toolbar_stack_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2" | "toolbar_anchor" | "toolbar_anchor/toolbar_panel" | "center_fold" | "center_fold/center_bg" | "screen_stack_panel" | "screen_stack_panel/left_panel" | "screen_stack_panel/center_fold" | "screen_stack_panel/right_panel" | "screen_stack_panel/toolbar_anchor" | "gamepad_helper_x" | "gamepad_helper_y" | "screen_panel" | "screen_panel/screen_stack_panel" | "screen_panel/container_gamepad_helpers" | "screen_panel/selected_item_details_factory" | "screen_panel/item_lock_notification_factory" | "screen_panel/inventory_selected_icon_button" | "screen_panel/inventory_take_progress_icon_button" | "screen_panel/flying_item_renderer" | "trade_screen"; -export type Trade2Pocket = "chest_item_renderer" | "trade_icon" | "arrow_right_image" | "right_navigation_tabs" | "right_navigation_tabs/pocket_tab_close_button" | "right_navigation_tabs/fill" | "trade_slots_panel" | "trade_slots_panel/item_slots_stack_panel" | "trade_and_help_buttons" | "trade_and_help_buttons/trade_button_holder" | "trade_and_help_buttons/trade_button_holder/trade_button" | "trade_and_help_buttons/how_to_play_button_holder" | "trade_and_help_buttons/how_to_play_button_holder/how_to_play_button" | "name_and_trade_slots_stack_panel" | "name_and_trade_slots_stack_panel/padding_1" | "name_and_trade_slots_stack_panel/villager_name_label_holder" | "name_and_trade_slots_stack_panel/villager_name_label_holder/villager_name_label" | "name_and_trade_slots_stack_panel/padding_2" | "name_and_trade_slots_stack_panel/exp_progress_bar_holder" | "name_and_trade_slots_stack_panel/exp_progress_bar_holder/exp_progress_bar" | "name_and_trade_slots_stack_panel/padding_3" | "name_and_trade_slots_stack_panel/trade_slots_panel" | "name_and_trade_slots_stack_panel/padding_4" | "name_and_trade_slots_stack_panel/trade_and_help_buttons" | "right_panel" | "right_panel/content" | "right_panel/content/bg" | "right_panel/content/name_and_trade_slots_stack_panel" | "right_panel/navigation_tabs_holder" | "right_panel/navigation_tabs_holder/right_navigation_tabs" | "left_tab_trade" | "left_tab_inventory" | "left_navigation_tabs" | "left_navigation_tabs/left_tab_trades" | "left_navigation_tabs/padding" | "left_navigation_tabs/left_tab_inventory" | "arrow_holder" | "arrow_holder/arrow_image" | "arrow_holder/cross_out_image" | "arrow_holder/lock_image" | "inventory_scroll_panel" | "toggle_content" | "toggle_content/padding_1" | "toggle_content/trade_item_holder" | "toggle_content/trade_item_holder/padding_left" | "toggle_content/trade_item_holder/trade_item_1" | "toggle_content/trade_item_holder/padding_middle" | "toggle_content/trade_item_holder/trade_item_2" | "toggle_content/trade_item_holder/padding_right" | "toggle_content/padding_2" | "toggle_content/arrow_holder" | "toggle_content/padding_3" | "toggle_content/sell_item_holder" | "toggle_content/sell_item_holder/sell_item" | "toggle_content/padding_4" | "left_panel" | "left_panel/gamepad_helpers_and_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs" | "left_panel/content" | "left_panel/content/bg" | "left_panel/content/inventory_scroll_panel" | "left_panel/content/trade_scroll_panel" | "pocket_hotbar_and_content_panels" | "screen_panel" | "screen_panel/pocket_hotbar_and_content_panels" | "screen_panel/container_gamepad_helpers" | "screen_panel/selected_item_details_factory" | "screen_panel/item_lock_notification_factory" | "screen_panel/inventory_selected_icon_button" | "screen_panel/inventory_take_progress_icon_button" | "screen_panel/flying_item_renderer"; -export type TrialUpsell = "normal_stroke_button" | "normal_description_label" | "trialTime" | "trial_label" | "trial_description_panel" | "trial_description_panel/description_text" | "trial_expired_description_panel" | "trial_expired_description_panel/vertical_padding_0" | "trial_expired_description_panel/line1" | "trial_expired_description_panel/vertical_padding_1" | "trial_expired_description_panel/line2" | "trial_expired_description_panel/line3" | "trial_expired_description_panel/line4" | "trial_expired_description_panel/line5" | "continue_button" | "buy_button" | "root_panel" | "trial_upsell_screen_dialog" | "trial_upsell_expired_screen_dialog" | "button_content_panel" | "button_content_panel/buy" | "button_content_panel/continue" | "trial_upsell_screen" | "trial_upsell_screen_content" | "trial_upsell_screen_content/trialTime" | "trial_upsell_screen_content/root_panel" | "trial_upsell_screen_content/root_panel/trial_upsell_screen_dialog" | "trial_upsell_expired_screen" | "trial_upsell_expired_screen_content" | "trial_upsell_expired_screen_content/trialTime" | "trial_upsell_expired_screen_content/root_panel" | "trial_upsell_expired_screen_content/root_panel/trial_upsell_expired_screen_dialog" | "content_description_panel" | "content_description_panel/scrolling_panel"; -export type UgcViewer = "padding" | "world_label" | "world_image" | "button_content" | "button_content/stack_panel" | "button_content/stack_panel/world_label" | "button_content/stack_panel/world_panel" | "button_content/stack_panel/world_panel/background" | "button_content/stack_panel/world_panel/background/world_image" | "grid_item" | "grid_item/button" | "place_holder_control" | "place_holder_control/search_icon" | "place_holder_control/place_holder_text" | "search_box" | "grid_content" | "scrolling_content" | "scrolling_content/grid_content" | "main_panel" | "main_panel/padding_0" | "main_panel/centerer_panel_0" | "main_panel/centerer_panel_0/search_box" | "main_panel/padding_1" | "main_panel/centerer_panel_1" | "main_panel/centerer_panel_1/scrolling_panel" | "main_panel/padding_2" | "ugc_viewer_screen" | "screen_content" | "screen_content/main_panel"; -export type CommonArt = "title_image" | "title_image_edu" | "splash_text" | "title_panel_pocket" | "title_panel_pocket/title_image" | "title_panel_pocket/splash_text" | "title_panel_win10" | "title_panel_win10/title_image" | "title_panel_win10/splash_text" | "title_panel_osx" | "title_panel_osx/title_image" | "title_panel_osx/splash_text" | "title_panel_edu_desktop" | "title_panel_edu_desktop/banner_control" | "title_panel_edu_desktop/banner_control/banner" | "title_panel_edu_desktop/banner_control/drop_shadow" | "title_panel_edu_desktop/title_control" | "title_panel_edu_desktop/title_control/title_image_edu" | "title_panel_edu_desktop/title_control/splash_text" | "title_panel_edu_mobile" | "title_panel_edu_mobile/title_control" | "title_panel_edu_mobile/title_control/title_image_edu" | "title_panel_edu_mobile/title_control/splash_text" | "title_panel_content" | "start_title_panel_content" | "pause_logo_panel" | "pause_logo_panel/logo"; -export type Common = "empty_panel" | "vertical_padding_8px" | "horizontal_padding_2px" | "empty_image" | "horizontal_stack_panel" | "vertical_stack_panel" | "vert_stack_centering_panel" | "vert_stack_centering_panel/stack_content" | "button" | "screen_header_title_panel" | "screen_header_title_panel/store_header_title" | "back_button" | "back_title_button" | "back_title_button/panel1" | "back_title_button/panel1/button" | "back_title_button/padding1" | "back_title_button/panel2" | "back_title_button/panel2/label" | "chevron_image" | "back_button_content" | "back_button_content/chevron_panel" | "back_button_content/chevron_panel/left_chevron" | "back_button_content/padding1" | "back_button_content/label_panel" | "back_button_content/label_panel/label" | "label_hover" | "label_hover/hover" | "tts_activate_sibling" | "tts_activate_sibling/default" | "tts_activate_sibling/pressed" | "tts_activate_sibling/hover" | "back_title_button_content" | "back_title_button_content/padding1" | "back_title_button_content/chevron_panel" | "back_title_button_content/chevron_panel/left_chevron" | "back_title_button_content/padding2" | "toggle_visuals" | "toggle_visuals/unchecked" | "toggle_visuals/checked" | "toggle_visuals/unchecked_hover" | "toggle_visuals/checked_hover" | "toggle_visuals/unchecked_locked" | "toggle_visuals/checked_locked" | "toggle_visuals/unchecked_locked_hover" | "toggle_visuals/checked_locked_hover" | "toggle" | "radio_toggle" | "checkbox" | "checkbox_image" | "checked_image" | "unchecked_image" | "checked_hover_image" | "unchecked_hover_image" | "rotating_text" | "button_text" | "toggle_state_template" | "new_button_label" | "checkbox_checked_state" | "checkbox_unchecked_state" | "checkbox_checked_hover_state" | "checkbox_unchecked_hover_state" | "checkbox_checked_locked_state" | "checkbox_unchecked_locked_state" | "radio_toggle_checked_state" | "radio_toggle_unchecked_state" | "radio_toggle_checked_hover_state" | "radio_toggle_unchecked_hover_state" | "radio_toggle_checked_locked_state" | "radio_toggle_unchecked_locked_state" | "slider_button_state" | "slider_button_layout" | "slider_button_hover_layout" | "slider_button_locked_layout" | "slider_button_indent_layout" | "slider_box" | "slider_box/default" | "slider_box/hover" | "slider_box/indent" | "slider_box/locked" | "slider_box/locked/transparent_grey" | "slider_background" | "slider_background_hover" | "slider_progress" | "slider_progress_hover" | "slider_border" | "slider_bar_default" | "slider_bar_default/sizing_panel" | "slider_bar_default/transparent_grey" | "slider_bar_hover" | "slider_step" | "slider_step_hover" | "slider_step_progress" | "slider_step_progress_hover" | "slider" | "slider/slider_box" | "slider/slider_bar_default" | "slider/slider_bar_hover" | "dropdown_background" | "dropdown" | "dropdown/dropdown_content" | "dropdown/dropdown_content/0" | "dropdown_no_scrollpanel" | "square_image_border_white" | "focus_border_white" | "focus_border_yellow" | "focus_border_black" | "non_interact_focus_border" | "non_interact_focus_border_button" | "non_interact_focus_border_button/default" | "non_interact_focus_border_button/hover" | "non_interact_focus_border_button/pressed" | "non_interact_focus_border_button/content" | "tts_label_focus_wrapper" | "tts_label_focus_wrapper/label" | "tts_label_focus_wrapper/focus_border" | "default_indent" | "edit_box_indent" | "edit_box_indent_hover" | "transparent_edit_box_indent" | "transparent_edit_box_indent_hover" | "text_edit_box_label" | "text_edit_box_place_holder_label" | "text_magnifying_glass_image" | "text_close_X_button_image" | "text_close_X_button_image_hover" | "clear_text_button" | "clear_text_button/default" | "clear_text_button/hover" | "clear_text_button/pressed" | "text_edit_box" | "text_edit_box/centering_panel" | "text_edit_box/centering_panel/clipper_panel" | "text_edit_box/centering_panel/clipper_panel/magnifying_glass" | "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel" | "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel/clear_text_button" | "text_edit_box/centering_panel/clipper_panel/visibility_panel" | "text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control" | "text_edit_box/locked" | "text_edit_box/locked/edit_box_indent" | "text_edit_box/default" | "text_edit_box/hover" | "text_edit_box/pressed" | "text_edit_box_scrolling_content" | "scrollable_text_edit_box" | "scrollable_text_edit_box/centering_panel" | "scrollable_text_edit_box/centering_panel/clipper_panel" | "scrollable_text_edit_box/centering_panel/clipper_panel/text_edit_text_control" | "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel" | "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control" | "scrollable_text_edit_box/locked" | "scrollable_text_edit_box/locked/edit_box_indent" | "scrollable_text_edit_box/default" | "scrollable_text_edit_box/hover" | "scrollable_text_edit_box/pressed" | "transparent_text_edit_box" | "transparent_text_edit_box/clipper_panel" | "transparent_text_edit_box/clipper_panel/visibility_panel" | "transparent_text_edit_box/clipper_panel/visibility_panel/place_holder_control" | "transparent_text_edit_box/locked" | "transparent_text_edit_box/locked/edit_box_indent" | "transparent_text_edit_box/default" | "transparent_text_edit_box/hover" | "transparent_text_edit_box/pressed" | "multiline_text_edit_box" | "scrollable_multiline_text_edit_box" | "dirt_background" | "portal_background" | "empty_progress_bar" | "filled_progress_bar" | "empty_progress_bar_beveled" | "progress_bar_beveled_overlay" | "filled_progress_bar_for_collections" | "progress_bar" | "progress_bar/empty_progress_bar" | "progress_bar/filled_progress_bar" | "progress_bar_for_collections" | "progress_bar_for_collections/empty_progress_bar" | "progress_bar_for_collections/filled_progress_bar_for_collections" | "horizontal_divider" | "horizontal_divider/divider_image" | "vertical_divider" | "vertical_divider/divider_image" | "underline" | "single_line_label" | "single_line_label/label_panel" | "single_line_label/label_panel/0" | "gamepad_helper_icon_description" | "gamepad_helper_icon_image" | "keyboard_helper_icon_image" | "gamepad_helper" | "gamepad_helper/icon_panel" | "gamepad_helper/description_panel" | "gamepad_helper/description_panel/desc" | "gamepad_helpers" | "gamepad_helpers_a_and_b" | "gamepad_helpers_a_and_b/gamepad_helper_a" | "gamepad_helpers_a_and_b/control" | "gamepad_helpers_a_and_b/gamepad_helper_b" | "container_gamepad_helpers" | "container_gamepad_helpers/fill_panel" | "container_gamepad_helpers/buttons" | "container_gamepad_helpers/buttons/gamepad_helper_x" | "container_gamepad_helpers/buttons/gamepad_helper_a" | "container_gamepad_helpers/buttons/gamepad_helper_y" | "container_gamepad_helpers/buttons/gamepad_helper_b" | "container_gamepad_helpers/buffer_panel_right" | "tabs_left_gamepad_helpers" | "tabs_left_gamepad_helpers/gamepad_helper_left_bumper" | "tabs_left_gamepad_helpers/gamepad_helper_left_trigger" | "tabs_right_gamepad_helpers" | "tabs_right_gamepad_helpers/gamepad_helper_right_bumper" | "tabs_right_gamepad_helpers/gamepad_helper_right_trigger" | "keyboard_helper_description" | "keyboard_helper" | "keyboard_helper/image_centerer" | "keyboard_helper/image_centerer/image" | "keyboard_helper/image_centerer/image/keyboard_character" | "keyboard_helper/centerer" | "keyboard_helper/centerer/desc" | "keyboard_helpers" | "gamepad_icon_button" | "gamepad_helper_start" | "gamepad_helper_a" | "gamepad_helper_a_14" | "gamepad_helper_b" | "gamepad_helper_b_14" | "gamepad_helper_x" | "gamepad_helper_x_14" | "gamepad_helper_y" | "gamepad_helper_y_14" | "keyboard_helper_keys" | "gamepad_helper_left_trigger" | "gamepad_helper_right_trigger" | "keyboard_left_trigger" | "keyboard_right_trigger" | "gamepad_icon_dpad" | "gamepad_helper_dpad" | "gamepad_helper_dpad_down" | "gamepad_helper_dpad_left" | "gamepad_helper_dpad_right" | "gamepad_helper_dpad_up" | "gamepad_icon_thumbstick" | "gamepad_helper_thumbstick" | "gamepad_helper_thumbstick_right" | "gamepad_helper_thumbstick_left" | "gamepad_helper_left_bumper" | "gamepad_helper_right_bumper" | "dialog_background_common" | "dialog_background_hollow_common" | "dialog_background_hollow_common/control" | "dialog_background_opaque" | "dialog_background_hollow_1" | "dialog_background_hollow_2" | "dialog_background_hollow_3" | "dialog_background_hollow_4" | "dialog_background_hollow_4_thin" | "dialog_background_hollow_5" | "dialog_background_hollow_6" | "dialog_background_hollow_7" | "dialog_background_hollow_8" | "dialog_divider" | "normal_button" | "normal_stroke_button" | "section_heading_label" | "section_divider" | "section_divider/padding1" | "section_divider/divider_parent" | "section_divider/divider_parent/divider" | "section_divider/padding2" | "minecraftTenLabel" | "close_button_image" | "close_button_panel" | "close_button_panel/close_button_image" | "close_button" | "close_button/default" | "close_button/hover" | "close_button/pressed" | "close_button_grey_bg" | "close_button_grey_bg/default" | "close_button_grey_bg/hover" | "close_button_grey_bg/pressed" | "close_button_high_contrast" | "close_button_high_contrast/background" | "close_button_high_contrast/default" | "close_button_high_contrast/hover" | "close_button_high_contrast/pressed" | "compact_close_button" | "compact_close_button/default" | "compact_close_button/hover" | "compact_close_button/pressed" | "light_close_button" | "light_close_button/default" | "light_close_button/hover" | "light_close_button/pressed" | "help_button" | "help_button/default" | "help_button/hover" | "help_button/pressed" | "cell_image" | "cell_image_selected" | "cell_image_panel" | "cell_image_panel/cell_image" | "cell_image_panel/cell_image_selected" | "cell_overlay" | "highlight_slot" | "white_border_slot" | "progressive_select_progress_bar" | "progressive_select_progress_bar/stack_progress_bar_down" | "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_progress_bar" | "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_text" | "stack_splitting_overlay" | "stack_splitting_overlay/classic_stack_splitting_overlay" | "stack_splitting_overlay/classic_stack_splitting_overlay/stack_splitting_bar" | "stack_splitting_overlay/pocket_stack_splitting_overlay" | "stack_splitting_overlay/pocket_stack_splitting_overlay/stack_splitting_bar" | "inventory_hold_icon_holding" | "inventory_hold_icon_holding/progressive_down" | "inventory_hold_icon_holding/progressive_up" | "inventory_hold_icon_holding/progressive_left_side" | "inventory_hold_icon_holding/progressive_right_side" | "inventory_hold_icon_release" | "highlight_slot_panel" | "highlight_slot_panel/highlight" | "highlight_slot_panel/highlight/hover_text" | "highlight_slot_panel/white_border" | "pocket_ui_highlight_slot" | "hover_text" | "screen_background" | "stack_count_label" | "durability_bar" | "durability_bar_grabbed" | "storage_bar" | "storage_bar_grabbed" | "item_renderer" | "filtered_item_renderer" | "flying_item_renderer" | "selected_item_details" | "selected_item_details/item_panel_image" | "item_panel_image" | "item_panel_image/item_text_label" | "item_text_label" | "selected_item_details_factory" | "item_lock_notification" | "item_lock_notification/notification_background_image" | "item_lock_notification/notification_background_image/notification_text_label" | "item_lock_notification_factory" | "empty_panel_size_y_0" | "scroll_background_and_viewport" | "scroll_background_and_viewport/background" | "scroll_background_and_viewport/scrolling_view_port" | "scroll_background_and_viewport/scrolling_view_port/scrolling_content" | "scroll_bar_and_track" | "scroll_bar_and_track/stack_panel" | "scroll_bar_and_track/stack_panel/empty_panel_0" | "scroll_bar_and_track/stack_panel/panel" | "scroll_bar_and_track/stack_panel/panel/centered_panel" | "scroll_bar_and_track/stack_panel/panel/centered_panel/track" | "scroll_bar_and_track/stack_panel/panel/centered_panel/scroll_box" | "scroll_bar_and_track/stack_panel/empty_panel_1" | "scroll_view_control" | "scroll_view_control/stack_panel" | "scroll_view_control/stack_panel/background_and_viewport" | "scroll_view_control/stack_panel/bar_and_track" | "scroll_view_control/panel" | "scroll_view_control/panel/background_and_viewport" | "scroll_view_control/panel/bar_and_track" | "scrollbar_track" | "scrollbar_track/bar_indent" | "scroll_box" | "scroll_box/box" | "scroll_box/box/mouse_box" | "scroll_box/box/touch_box" | "scroll_box_indent" | "scrollbar_box_image" | "touch_scrollbar_box_image" | "new_touch_scrollbar_box_image" | "container_touch_scrollbar_box_image" | "scroll_indent_image" | "scrolling_panel_base" | "scrolling_panel" | "scrolling_panel/scroll_touch" | "scrolling_panel/scroll_mouse" | "scrolling_panel_with_offset" | "container_slot_button_prototype" | "container_slot_button_prototype/hover" | "no_coalesce_container_slot_button" | "pocket_ui_container_slot" | "pocket_ui_container_slot/hover" | "pocket_ui_container_slot/hover/highlight_square" | "slot_selected" | "slot_selected/progress_bar_release" | "container_item" | "container_item/item_cell" | "container_item/item_cell/item" | "container_item/item_cell/item/stack_count_label" | "container_item/item_cell/durability_bar" | "container_item/item_cell/storage_bar" | "container_item/item_cell_overlay_ref" | "container_item/item_selected_image" | "container_item/item_button_ref" | "container_item/container_item_lock_overlay" | "container_item/item_lock_cell_image" | "container_item/bundle_slot_panel" | "pocket_ui_container_item" | "pocket_ui_large_container_item" | "container_item_lock_yellow" | "container_item_lock_red" | "container_item_lock_overlay" | "container_item_lock_overlay/container_item_lock_yellow" | "container_item_lock_overlay/container_item_lock_red" | "item_lock_cell_image" | "container_grid" | "pocket_container_grid" | "container_scroll_box_image" | "container_scroll_bar_side_rails" | "container_scrollbar_track" | "container_scrollbar_track/rails" | "container_scroll_background_image" | "container_scroll_panel" | "pocket_ui_highlight_selected_slot" | "pocket_hotbar_panel" | "pocket_hotbar_panel/bg" | "pocket_hotbar_panel/hotbar_grid" | "drop_item_panel" | "pocket_hotbar_and_content_panels" | "pocket_hotbar_and_content_panels/pocket_content_panels" | "pocket_hotbar_and_content_panels/hotbar_drop_item_panel" | "pocket_hotbar_and_content_panels/hotbar_drop_item_panel/pocket_hotbar_panel" | "blank_pocket_content_panel" | "pocket_content_panels" | "pocket_content_panels/left_panel" | "pocket_content_panels/offset_panel" | "pocket_content_panels/offset_panel/center_bg" | "pocket_content_panels/right_panel" | "inventory_selected_icon" | "inventory_selected_stack_size_text" | "inventory_hold_icon" | "inventory_selected_item_lock_overlay" | "inventory_selected_item_lock_overlay/container_item_lock_yellow" | "inventory_selected_item_lock_overlay/container_item_lock_red" | "inventory_icon_panel" | "inventory_icon_panel/selected_item_icon" | "inventory_icon_panel/selected_stack_size_text" | "inventory_icon_panel/selected_item_lock_overlay" | "inventory_icon_panel/hover_text" | "inventory_selected_icon_button" | "inventory_selected_icon_button/default" | "inventory_selected_icon_button/pressed" | "inventory_selected_icon_button/hover" | "inventory_selected_icon_button/durability_bar_grabbed" | "inventory_selected_icon_button/storage_bar_grabbed" | "inventory_take_progress_icon_button" | "inventory_take_progress_icon_button/default" | "inventory_take_progress_icon_button/pressed" | "inventory_take_progress_icon_button/hover" | "gamepad_cursor_image" | "gamepad_cursor_button" | "gamepad_cursor_button/default" | "gamepad_cursor_button/pressed" | "gamepad_cursor_button/hover" | "grid_item_for_inventory" | "grid_item_for_hotbar" | "hotbar_grid_template" | "inventory_panel" | "inventory_panel/inventory_grid" | "inventory_panel_bottom_half" | "inventory_panel_bottom_half/inventory_panel" | "inventory_panel_bottom_half_with_label" | "inventory_panel_bottom_half_with_label/inventory_panel" | "inventory_panel_bottom_half_with_label/inventory_label" | "common_panel" | "common_panel/bg_image" | "common_panel/dialog_divider" | "common_panel/close_button_holder" | "common_panel/close_button_holder/close" | "common_panel/close_button_holder/compact_close" | "root_panel" | "input_panel" | "base_screen" | "base_screen/variables_button_mappings_and_controls" | "base_screen/variables_button_mappings_and_controls/bg_no_safezone_screen_panel" | "base_screen/variables_button_mappings_and_controls/safezone_screen_matrix" | "base_screen/variables_button_mappings_and_controls/screen_background" | "base_screen/loading_bars_background" | "base_screen/loading_bars_background/loading_bars" | "render_below_base_screen" | "safezone_buffer" | "top_safezone_vertical_buffer" | "bottom_safezone_vertical_buffer" | "left_safezone_horizontal_buffer" | "right_safezone_horizontal_buffer" | "safe_zone_stack" | "safe_zone_stack/top_outer_control" | "safe_zone_stack/top_inner_control" | "safe_zone_stack/header_bar" | "safezone_inner_matrix" | "safezone_inner_matrix/outer_top" | "safezone_inner_matrix/outer_top/top_side_control" | "safezone_inner_matrix/inner_top" | "safezone_inner_matrix/inner_top/top_side_control" | "safezone_inner_matrix/safezone_screen_panel" | "safezone_inner_matrix/inner_bottom" | "safezone_inner_matrix/outer_bottom" | "safezone_outer_matrix" | "safezone_outer_matrix/outer_left" | "safezone_outer_matrix/outer_left/outer_left_safe_zone_stack" | "safezone_outer_matrix/inner_left" | "safezone_outer_matrix/inner_left/inner_left_safe_zone_stack" | "safezone_outer_matrix/inner_matrix" | "safezone_outer_matrix/inner_right" | "safezone_outer_matrix/inner_right/inner_right_safe_zone_stack" | "safezone_outer_matrix/outer_right" | "safezone_outer_matrix/outer_right/outer_right_safe_zone_stack" | "bundle_tooltip_wrapper" | "bundle_tooltip_wrapper/bundle_tooltip_factory_wrapper" | "bundle_tooltip_wrapper/bundle_touch_tooltip" | "screen_panel" | "screen_panel/root_screen_panel" | "screen_panel/additional_screen_content" | "screen_panel/popup_dialog_factory" | "screen_panel/bundle_hover_tooltip" | "base_screen_empty_panel" | "modal_screen" | "realms_error_modal_screen" | "modal_area_panel_base" | "inactive_modal_pane_fade" | "inventory_screen_common" | "fullscreen_header" | "fullscreen_header/top_bar" | "fullscreen_header/top_bar/title_stack_panel" | "fullscreen_header/top_bar/title_stack_panel/padding1" | "fullscreen_header/top_bar/title_stack_panel/back_button_content_panel" | "fullscreen_header/top_bar/title_stack_panel/padding2" | "fullscreen_header/child_control" | "back_content_panel" | "back_content_panel/back_button" | "top_bar" | "tooltip_background" | "tooltip_button_content" | "tooltip_button_content/tooltip_panel_content" | "static_tooltip_popup_with_image_and_text" | "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel" | "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel" | "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel" | "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel/0" | "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding" | "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text" | "static_tooltip_popup_with_image_and_text/tooltip_chevron" | "dynamic_tooltip_popup_with_custom_content" | "dynamic_tooltip_popup_with_custom_content/tooltip_content" | "dynamic_tooltip_popup_with_custom_content/tooltip_chevron" | "dynamic_tooltip_popup_with_image_and_text" | "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel" | "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel" | "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel" | "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel/0" | "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding" | "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text" | "dynamic_tooltip_popup_with_image_and_text/tooltip_chevron" | "dynamic_tooltip_left" | "dynamic_tooltip_below" | "dynamic_custom_tooltip_below" | "dynamic_tooltip" | "dynamic_tooltip/above" | "dynamic_tooltip/above/content" | "dynamic_tooltip/below" | "dynamic_tooltip/below/content" | "legacy_pocket_close_button_default" | "legacy_pocket_close_button_pressed" | "legacy_pocket_close_button" | "legacy_pocket_close_button/default" | "legacy_pocket_close_button/hover" | "legacy_pocket_close_button/pressed" | "info_icon" | "error_glyph" | "service_repo_image_panel" | "service_repo_image_panel/service_repo_image" | "service_repo_image_panel/progress_loading" | "common_cycler" | "image_cycler" | "text_cycler" | "squaring_panel" | "squaring_panel/squaring_panel" | "squaring_panel/squaring_panel/squaring_panel_content"; -export type CommonClassic = "button" | "button_state_default" | "button_state_hover" | "button_state_pressed" | "toggle" | "toggle_checked_state" | "toggle_unchecked_state" | "toggle_checked_hovered_state" | "toggle_checked_hovered_state/toggle_checked_state" | "toggle_checked_hovered_state/hover" | "toggle_unchecked_hovered_state" | "toggle_unchecked_hovered_state/toggle_unchecked_state" | "toggle_unchecked_hovered_state/hover"; -export type EduCommon = "light_label" | "dark_label" | "readable_label" | "slider_toggle" | "trash_default" | "trash_hover" | "trash_pressed" | "photo_trash_button" | "photo_trash_button/default" | "photo_trash_button/hover" | "photo_trash_button/pressed" | "download_progress_modal_panel" | "download_progress_modal_panel/downloading" | "loading_progress_modal_panel" | "loading_progress_modal_panel/loading" | "modal_cancel_button" | "modal_progress_panel_with_cancel" | "modal_progress_panel_with_cancel/common_panel" | "modal_progress_panel_with_cancel/title" | "modal_progress_panel_with_cancel/content" | "modal_progress_panel_with_cancel/content/title_panel" | "modal_progress_panel_with_cancel/content/label" | "modal_progress_panel_with_cancel/content/progress_loading_bars" | "modal_progress_panel_with_cancel/cancel_button" | "modal_progress_panel_no_button" | "modal_progress_panel_no_button/common_panel" | "modal_progress_panel_no_button/content" | "modal_progress_panel_no_button/content/progress_title_text" | "modal_progress_panel_no_button/content/progress_loading_bars" | "apple_animation" | "book_animation" | "edu_loading_animation" | "horizontal_stack_item" | "vertical_stack_item" | "back_button_padded" | "back_button_padded/back_button_padding_before" | "back_button_padded/back_button" | "home_button_content" | "home_button" | "underline_text" | "underline_text/label_hover" | "underline_button" | "underline_button/default" | "underline_button/hover" | "underline_button/pressed" | "edu_screen_header" | "edu_screen_header/title_controls" | "edu_screen_header/title_controls/back_item" | "edu_screen_header/title_controls/back_item/back_button" | "edu_screen_header/title_controls/back_item/gamepad" | "edu_screen_header/title_controls/image_item" | "edu_screen_header/title_controls/image_item/image" | "edu_screen_header/title_controls/image_item_template" | "edu_screen_header/title_controls/image_item_template/image" | "edu_screen_header/title_controls/image_item_template/image/image_color" | "edu_screen_header/title_controls/title_text_padding" | "edu_screen_header/title_controls/title_item" | "edu_screen_header/title_controls/title_item/title" | "share_dialog_title" | "share_header_panel" | "share_header_panel/title" | "share_header_panel/close_button" | "teams_advanced_share_header_panel" | "add_resource_share_header_panel" | "body_panel" | "body_panel/body_stack" | "teams_body_panel" | "teams_body_resource_panel" | "teams_simple_body_resource_panel" | "joincode_body_panel" | "add_resource_body_panel" | "icon_section" | "icon_section/icon_stack_panel" | "icon_section/icon_padding" | "add_resources_section" | "add_resources_section/divider" | "add_resources_section/add_resource_label" | "add_resources_section/teams_padding_middle" | "add_resources_section/resource_button" | "edit_resource_uri_glyph" | "edit_resources_section" | "edit_resources_section/divider" | "edit_resources_section/resource_label_text" | "edit_resources_section/teams_padding_middle" | "edit_resources_section/edit_resource_body_button_stack" | "edit_resources_section/edit_resource_body_button_stack/resource_button" | "edit_resources_section/edit_resource_body_button_stack/padding_middle" | "edit_resources_section/edit_resource_body_button_stack/edit_resource_uri_button" | "body_content_stack" | "body_content_stack/body_text_centering_panel" | "body_content_stack/body_text_centering_panel/body_text" | "body_content_stack/padding_middle" | "body_content_stack/icons" | "body_content_stack/copy_link_centering_panel" | "body_content_stack/copy_link_centering_panel/copy_link_panel" | "body_content_stack/add_resources" | "body_content_stack/edit_resources" | "teams_simple_body_content_stack" | "teams_body_content_stack" | "teams_body_resource_content_stack" | "joincode_body_content_stack" | "add_resource_body_content_stack" | "add_resource_body_content_stack/label_one_centering_panel" | "add_resource_body_content_stack/label_one_centering_panel/teams_share_label" | "add_resource_body_content_stack/label_padding_middle" | "add_resource_body_content_stack/label_two_centering_panel" | "add_resource_body_content_stack/label_two_centering_panel/teams_share_label" | "add_resource_body_content_stack/learn_more_padding_middle" | "add_resource_body_content_stack/link1" | "add_resource_body_content_stack/url_padding_middle" | "add_resource_body_content_stack/url_label" | "add_resource_body_content_stack/url_textbox" | "add_resource_body_content_stack/inline_notification" | "add_resource_body_content_stack/inline_notification_spacer" | "add_resource_body_content_stack/button_name_label" | "add_resource_body_content_stack/button_middle_spacer" | "add_resource_body_content_stack/button_name_textbox" | "add_resource_body_content_stack/button_name_textbox_next_disabled" | "add_edit_resource_body_content_stack" | "add_edit_resource_body_content_stack/scroll_content" | "add_edit_resource_body_content_stack/scroll_content/scrolling_panel" | "resource_popup_buttons" | "resource_popup_buttons/done_button" | "resource_popup_buttons/button_padding" | "resource_popup_buttons/back_button_panel" | "resource_popup_buttons/back_button_panel/back_button_enabled" | "resource_popup_buttons/back_button_panel/back_button_disabled" | "add_resource_popup_lower_button_panel" | "add_resource_popup_lower_button_panel/edit_resource_popup_buttons" | "add_resource_popup_lower_button_panel/add_resource_popup_buttons" | "share_dialog_body_text" | "share_dialog_body_text/tts_border" | "share_dialog_body_text/text" | "share_icon" | "share_label" | "share_label/share_image_offset_panel" | "share_label/share_image_offset_panel/link_share" | "copy_link_stack_panel" | "copy_link_stack_panel/link_box" | "copy_link_stack_panel/copy_button" | "icon_stack_panel" | "icon_stack_panel/padding_left" | "icon_stack_panel/teams_button" | "icon_stack_panel/teams_mail_padding" | "icon_stack_panel/mail_button" | "icon_stack_panel/mail_classrooms_padding" | "icon_stack_panel/classrooms_button" | "icon_stack_panel/padding_right" | "default_share_button_contents" | "default_share_button_contents/background" | "default_share_button_contents/image" | "default_share_button" | "default_share_button/default" | "default_share_button/hover" | "default_share_button/pressed" | "vertical_divider" | "vertical_divider/divider" | "horizontal_divider" | "horizontal_divider/divider" | "stack_panel_grid_slot" | "stack_panel_grid_slot/stack_panel_grid_item_panel" | "stack_panel_grid_slot/stack_panel_grid_item_panel/stack_panel_grid_item" | "stack_panel_grid_row" | "stack_panel_grid_row/stack_panel_grid_row_item" | "stack_panel_grid_row/stack_panel_grid_row_item/row" | "stack_panel_grid_row/divider" | "stack_panel_grid_row/divider/line" | "stack_panel_grid" | "border" | "description_panel" | "description_panel/border" | "description_panel/description" | "edu_share_text_popup" | "teams_edu_share_text_popup" | "teams_edu_share_resource_popup" | "teams_edu_simple_share_resource_popup" | "joincode_edu_popup" | "add_resource_dialog" | "share_popup_dialog_factory" | "inline_notification" | "inline_notification/stack" | "inline_notification/stack/icon" | "inline_notification/stack/spacer" | "inline_notification/stack/warning_text" | "search_button_content" | "search_bar_and_home_button" | "search_bar_and_home_button/search_bar" | "search_bar_and_home_button/search_bar/search_bar" | "search_bar_and_home_button/search_button" | "search_bar_and_home_button/search_pad" | "search_bar_and_home_button/home_button" | "search_bar_and_home_button/end_pad" | "hotbar_hint" | "hotbar_hint/inactive_slot_dimmer" | "hotbar_hint/bound_key_glyph_background" | "hotbar_hint/bound_key_glyph_background/bound_key_glyph_text" | "view_toggle_content" | "view_toggle_content/button_image_templates" | "view_toggle_content/button_image_templates/image_color_templates" | "view_toggle_content/button_image_worlds" | "view_toggle_content/button_label_wrapper" | "view_toggle_content/button_label_wrapper/button_label" | "view_toggle_content/left_edge_text_padding" | "worlds_and_templates_search_bar" | "worlds_and_templates_search_bar/stack_panel" | "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper" | "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper/search_bar" | "worlds_and_templates_search_bar/stack_panel/temp_padding" | "worlds_and_templates_search_bar/stack_panel/view_toggle_background" | "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel" | "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/left_edge_padding" | "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/view_toggle_button" | "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/right_edge_padding" | "edu_cloud_conflict_resolution_popup_dialog_factory" | "edu_cloud_conflict_resolution_popup" | "edu_cloud_conflict_resolution_content" | "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper" | "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/tts_border" | "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/conflict_resolution_description" | "edu_cloud_conflict_resolution_content/padding1" | "edu_cloud_conflict_resolution_content/world_info_wrapper" | "edu_cloud_conflict_resolution_content/world_info_wrapper/tts_border" | "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack" | "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_name_label" | "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_last_changed_label" | "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_name_label" | "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_last_changed_label" | "edu_cloud_conflict_resolution_content/padding2" | "edu_cloud_conflict_resolution_content/keep_local_button" | "edu_cloud_conflict_resolution_content/keep_cloud_button" | "edu_cloud_conflict_resolution_content/keep_both_button" | "nested_buttons_base_definition"; -export type PurchaseCommon = "banner_fill" | "banner_empty" | "screenshots_grid_item" | "screenshots_grid_item/frame" | "screenshots_grid_item/frame/screenshot_image" | "screenshots_grid_item/frame/progress_loading" | "screenshots_grid_item/frame/screenshot_button" | "screenshots_grid_item/frame/screenshot_button/hover" | "screenshots_grid_item/frame/screenshot_button/pressed" | "screenshots_grid" | "key_image_frame" | "key_image_frame/zoomed" | "offer_grid_item" | "offer_grid_item/frame" | "offer_grid_item/frame/offer_key_art" | "offer_grid_item/frame/offer_button" | "offer_grid_item/frame/offer_button/hover" | "offer_grid_item/frame/offer_button/pressed" | "offer_grid" | "key_art_and_text" | "key_art_and_text/key_image_panel" | "key_art_and_text/key_image_panel/key_image" | "key_art_and_text/padding" | "key_art_and_text/description_scroll" | "pack_description"; -export type CommonButtons = "button_image" | "background_button_image" | "locked_button_image" | "light_button_assets" | "dark_button_assets" | "focus_border" | "new_ui_button_panel" | "new_ui_button_panel/button_content" | "new_ui_button_panel/border" | "new_ui_form_fitting_button_panel" | "new_ui_form_fitting_button_panel/border" | "new_ui_width_fitting_button_panel" | "new_ui_width_fitting_button_panel/border" | "new_ui_height_fitting_button_panel" | "new_ui_height_fitting_button_panel/border" | "borderless_form_fitting_button_panel" | "light_text_button" | "light_text_button/default" | "light_text_button/hover" | "light_text_button/pressed" | "light_text_button/locked" | "dark_text_button" | "dark_text_button/default" | "dark_text_button/hover" | "dark_text_button/pressed" | "dark_text_button/locked" | "new_ui_binding_button_label" | "underline_button" | "underline_button/default" | "underline_button/default/label_default" | "underline_button/hover" | "underline_button/hover/label_hover" | "underline_button/pressed" | "underline_button/pressed/label_hover" | "read_button" | "read_button/read_button_inner" | "light_content_form_fitting_button" | "dark_content_form_fitting_button" | "light_text_form_fitting_button" | "dark_text_form_fitting_button" | "transparent_content_button" | "single_image_with_border_button" | "light_content_button" | "light_content_button/default" | "light_content_button/hover" | "light_content_button/pressed" | "light_content_button/locked" | "light_content_button_control_content" | "light_content_button_control_content/default" | "light_content_button_control_content/hover" | "light_content_button_control_content/pressed" | "light_content_button_control_content/locked" | "deactivated_light_content_button" | "dark_content_button" | "dark_content_button/default" | "dark_content_button/hover" | "dark_content_button/pressed" | "dark_content_button/locked" | "no_background_content_button" | "no_background_content_button/default" | "no_background_content_button/hover" | "no_background_content_button/pressed" | "no_background_content_button/locked" | "button_content_panel" | "button_content_panel/content" | "form_fitting_button_content_panel" | "form_fitting_button_content_panel/content" | "horizontal_form_fitting" | "horizontal_form_fitting/content" | "width_fitting_button_content_panel" | "width_fitting_button_content_panel/content" | "height_fitting_button_content_panel" | "height_fitting_button_content_panel/content" | "light_glyph_button" | "light_glyph_button/default" | "light_glyph_button/hover" | "light_glyph_button/pressed" | "light_glyph_button/locked" | "dark_glyph_button_default" | "dark_glyph_button_hover" | "dark_glyph_button_pressed" | "dark_glyph_button_locked" | "dark_glyph_button" | "dark_glyph_button/default" | "dark_glyph_button/hover" | "dark_glyph_button/pressed" | "dark_glyph_button/locked" | "dark_glyph_button_with_custom_control" | "dark_glyph_button_with_custom_control/custom_control" | "dark_glyph_button_with_custom_control/default" | "dark_glyph_button_with_custom_control/hover" | "dark_glyph_button_with_custom_control/pressed" | "dark_glyph_button_with_custom_control/locked" | "glyph_content_panel" | "glyph_content_panel/glyph_button_content" | "hyperlink_button" | "hyperlink_content_button" | "nested_button_assets" | "nested_overlay_assets" | "nested_label_content_background_assets" | "nested_label_background_assets" | "nested_transparent_label_content_background_assets" | "nested_transparent_label_content_background_assets/assets" | "nested_base_label" | "nested_centered_label_control" | "nested_centered_label_control/label" | "nested_label_with_image_control" | "nested_label_with_image_control/image" | "nested_label_with_image_control/image_to_label_padding" | "nested_label_with_image_control/label_panel" | "nested_label_with_image_control/label_panel/label" | "nested_six_part_empty_definition" | "nested_six_part_label_control" | "nested_six_part_label_control/left_top_label" | "nested_six_part_label_control/left_middle_label" | "nested_six_part_label_control/left_bottom_label" | "nested_six_part_label_control/right_top_label" | "nested_six_part_label_control/right_middle_label" | "nested_six_part_label_control/right_bottom_label" | "nested_dark_button_assets" | "nested_content_background_assets" | "nested_content_overlay_assets" | "nested_dark_control_with_image" | "nested_dark_control_with_image/background" | "nested_dark_control_with_image/image_panel" | "nested_dark_control_with_image/image_panel/image" | "nestable_button" | "nestable_button/nested_controls_panel" | "nestable_button/nested_controls_panel/locked_overlay" | "nestable_button/nested_controls_panel/nested_controls" | "nestable_button/base_button" | "nestable_button/base_button/default" | "nestable_button/base_button/hover" | "nestable_button/base_button/pressed" | "nestable_button/base_button/locked" | "nested_button_base" | "nested_button_base/button_overlay" | "nested_button_base/button_control" | "nested_button_base/button_control/control_area" | "nested_button_base/button_control/control_area/background" | "nested_button_base/button_control/control_area/control" | "nested_button_base/button_control/control_area/overlay" | "nested_button_base/button_control/button_stack_padding" | "nested_button_base/button_control/label_area" | "nested_button_base/button_control/label_area/background" | "nested_button_base/button_control/label_area/control_background" | "nested_button_base/button_control/label_area/control" | "dark_nestable_button" | "transparent_label_nestable_button" | "static_tooltip_notification_panel" | "static_tooltip_notification_panel/default" | "static_tooltip_notification_panel/pressed" | "static_tooltip_notification_panel/hover" | "static_tooltip_notification_panel/locked" | "static_tooltip_notification_panel/static_tooltip_popup_panel" | "dynamic_tooltip_notification_panel" | "dynamic_tooltip_notification_panel/default" | "dynamic_tooltip_notification_panel/pressed" | "dynamic_tooltip_notification_panel/hover" | "dynamic_tooltip_notification_panel/locked" | "dynamic_tooltip_notification_panel/dyanmic_tooltip_popup_panel" | "text_body_focus_border_for_controller_button" | "text_body_focus_border_for_controller_button/default" | "text_body_focus_border_for_controller_button/hover" | "text_body_focus_border_for_controller_button/hover/focus_border" | "text_body_focus_border_for_controller_button/text_control"; -export type CommonDialogs = "standard_title_label" | "title_label" | "title_label/common_dialogs_0" | "title_label/common_dialogs_1" | "main_panel_three_buttons" | "main_panel_three_buttons/common_panel" | "main_panel_three_buttons/title_label" | "main_panel_three_buttons/panel_indent" | "main_panel_three_buttons/panel_indent/inside_header_panel" | "main_panel_three_buttons/top_button_panel" | "main_panel_three_buttons/middle_button_panel" | "main_panel_three_buttons/bottom_button_panel" | "main_panel_two_buttons" | "main_panel_two_buttons/common_panel" | "main_panel_two_buttons/title_label" | "main_panel_two_buttons/panel_indent" | "main_panel_two_buttons/panel_indent/inside_header_panel" | "main_panel_two_buttons/top_button_panel" | "main_panel_two_buttons/bottom_button_panel" | "main_panel_one_button" | "main_panel_one_button/common_panel" | "main_panel_one_button/title_label" | "main_panel_one_button/panel_indent" | "main_panel_one_button/panel_indent/inside_header_panel" | "main_panel_one_button/bottom_button_panel" | "main_panel_no_buttons" | "main_panel_no_buttons/common_panel" | "main_panel_no_buttons/title_label" | "main_panel_no_buttons/panel_indent" | "main_panel_no_buttons/panel_indent/inside_header_panel" | "main_panel_no_title_no_buttons" | "main_panel_no_title_no_buttons/common_panel" | "main_panel_no_title_no_buttons/panel_indent" | "main_panel_no_title_no_buttons/panel_indent/inside_header_panel" | "main_panel_small_title_one_button" | "main_panel_small_title_one_button/common_panel" | "main_panel_small_title_one_button/title_label" | "main_panel_small_title_one_button/panel_indent" | "main_panel_small_title_one_button/panel_indent/inside_header_panel" | "main_panel_small_title_one_button/bottom_button_panel" | "main_panel" | "main_panel/modal_background_image" | "main_panel/panel_indent" | "main_panel/panel_indent/inside_header_panel" | "form_fitting_main_panel_no_buttons" | "form_fitting_main_panel_no_buttons/common_panel" | "common_panel" | "common_panel/bg_image" | "dialog_background_common" | "dialog_background_thin" | "flat_solid_background" | "dialog_background_hollow_common" | "dialog_background_hollow_common/control" | "dialog_background_hollow_common/control/inside_header_panel" | "dialog_background_hollow_common/control/close_button_holder" | "dialog_background_hollow_common/control/title_label" | "common_close_button_holder" | "common_close_button_holder/close" | "common_close_button_holder/compact_close" | "dialog_background_opaque" | "dialog_background_opaque_with_child" | "dialog_background_hollow_1" | "dialog_background_hollow_2" | "dialog_background_hollow_3" | "dialog_background_hollow_4" | "dialog_background_hollow_6" | "full_screen_background" | "full_screen_background/background" | "background_image"; -export type CommonTabs = "empty_tab_content" | "tab_image" | "tab_panel" | "tab_panel/tab_image" | "tab_panel/tab_content_sizer" | "tab_panel/tab_content_sizer/tab_content" | "base_tab" | "tab_top" | "tab_left" | "tab_right" | "pocket_tab_left" | "pocket_tab_right" | "pocket_tab_close_button" | "pocket_tab_close_button/close_button" | "pocket_tab_help_button" | "pocket_tab_help_button/help_button" | "pocket_tab_close_and_help_button" | "pocket_tab_close_and_help_button/close_button" | "pocket_tab_close_and_help_button/help_button" | "tab_close_and_help_button" | "tab_close_and_help_button/close_button" | "tab_close_and_help_button/help_button"; -export type CommonToggles = "content_toggle_image_panel" | "content_toggle_image_panel/icon" | "content_toggle_label_panel" | "content_toggle_label_panel/toggle_label" | "content_toggle_icon_panel" | "content_toggle_icon_panel/content_toggle_image" | "toggle_content_panel" | "toggle_content_panel/toggle_image_panel" | "toggle_content_panel/toggle_image_padding_label" | "toggle_content_panel/toggle_label_panel" | "toggle_content_panel/toggle_label_padding_toggle_icon" | "toggle_content_panel/toggle_icon" | "vertical_form_fitting_toggle_content" | "vertical_form_fitting_toggle_content/toggle_image_panel" | "vertical_form_fitting_toggle_content/toggle_image_padding_label" | "vertical_form_fitting_toggle_content/toggle_label_panel" | "vertical_form_fitting_toggle_content/toggle_label_padding_toggle_icon" | "vertical_form_fitting_toggle_content/toggle_icon" | "light_text_toggle" | "light_image_toggle" | "light_content_toggle" | "dark_ui_toggle" | "dark_text_toggle" | "dark_image_toggle" | "dark_content_toggle" | "dark_vertical_template_toggle" | "dark_vertical_form_fitting_content_toggle" | "dark_vertical_form_fitting_content_toggle/dark_content_toggle" | "dark_template_toggle" | "light_template_toggle" | "light_ui_toggle" | "switch_toggle" | "light_text_toggle_collection" | "light_image_toggle_collection" | "dark_text_toggle_collection" | "dark_image_toggle_collection" | "dark_ui_toggle_collection" | "light_ui_toggle_collection" | "switch_toggle_collection" | "toggle_state_panel" | "toggle_state_panel/button_panel" | "toggle_unchecked" | "toggle_checked" | "toggle_unchecked_hover" | "toggle_checked_hover" | "toggle_locked" | "toggle_unchecked_locked" | "toggle_checked_locked" | "toggle_unchecked_hover_with_chevron" | "toggle_checked_hover_with_chevron" | "toggle_image" | "toggle_image/image" | "radio_off_icon" | "radio_off_hover_icon" | "radio_on_icon" | "radio_on_hover_icon" | "check_box_button_toggle_image" | "checkbox_button_checked_state" | "checkbox_button_unchecked_state" | "checkbox_button_checked_hover_state" | "checkbox_button_unchecked_hover_state" | "checkbox_button_checked_locked_state" | "checkbox_button_unchecked_locked_state" | "toggle_checkbox_unchecked" | "toggle_checkbox_checked" | "toggle_checkbox_unchecked_hover" | "toggle_checkbox_checked_hover" | "toggle_checkbox_unchecked_locked" | "toggle_checkbox_checked_locked" | "check_box_button_ui_panel" | "check_box_button_ui_panel/toggle_image" | "check_box_button_ui_panel/toggle_image/button_content" | "check_box_button_ui_panel/toggle_image/border" | "check_box_button_ui_panel/toggle_image/checkbox_image" | "check_box_button_ui_panel/toggle_image/checkbox_image/image" | "button_and_checkbox_template" | "button_with_checkbox_toggle"; -export type Friendsbutton = "friendsdrawer_animated_icon" | "profilepicture" | "persona_icon_with_border" | "persona_icon_with_border/profile_icon" | "persona_icon_with_border/border_black" | "friendsdrawer_persona_icons" | "social_button_stackpanel" | "social_button_stackpanel/image_panel" | "social_button_stackpanel/image_panel/social_icon" | "social_button_hover_stackpanel" | "self_persona_stackpanel" | "self_persona_stackpanel/self_icon" | "single_friend_persona_stackpanel" | "single_friend_persona_stackpanel/self_icon" | "single_friend_persona_stackpanel/friend_one_icon" | "many_friend_persona_stackpanel" | "many_friend_persona_stackpanel/self_icon" | "many_friend_persona_stackpanel/extra_friends_text_panel" | "many_friend_persona_stackpanel/extra_friends_text_panel/background" | "many_friend_persona_stackpanel/extra_friends_text_panel/extra_members_label" | "many_friend_persona_stackpanel/extra_friends_text_panel/border_black" | "button" | "button/default" | "button/hover" | "button/pressed" | "button/locked" | "social_factory_stackpanel_default" | "social_factory_stackpanel_hovered" | "friendsdrawer_button_content" | "friendsdrawer_button_content/social_factory_stackpanel" | "friendsdrawer_button_content/padding_middle" | "friendsdrawer_button_content/vertically_centered_text" | "friendsdrawer_button_content/vertically_centered_text/top_padding" | "friendsdrawer_button_content/vertically_centered_text/profile_button_label" | "friendsdrawer_button_content/padding_right" | "friendsdrawer_hover_button_content" | "friends_drawer_popup"; -export type Iconbutton = "iconbutton_animated_icon" | "button" | "iconbutton_button_content" | "iconbutton_button_content/icon_wrapper" | "iconbutton_button_content/icon_wrapper/icon_with_border" | "iconbutton_button_content/icon_wrapper/icon_with_border/iconbutton_animated_icon" | "iconbutton_button_content/icon_wrapper/icon_with_border/border_black" | "iconbutton_button_content/padding_middle" | "iconbutton_button_content/vertically_centered_text" | "iconbutton_button_content/vertically_centered_text/top_padding" | "iconbutton_button_content/vertically_centered_text/profile_button_label"; -export type UpdateDimensions = "update_dimensions_update_and_play_button" | "update_dimensions_description" | "update_dimensions_label_panel" | "make_backup_checkbox" | "make_backup_checkbox/header_description_stack_panel" | "make_backup_checkbox/header_description_stack_panel/checkbox_visuals" | "make_backup_checkbox/header_description_stack_panel/buffer_panel" | "make_backup_checkbox/header_description_stack_panel/buffer_panel/label" | "make_backup_checkbox/header_description_stack_panel/another_panel" | "world_upgrade" | "update_dimensions_dialog" | "update_dimensions_dialog/common_panel" | "update_dimensions_dialog/title_label" | "update_dimensions_dialog/panel_indent" | "update_dimensions_dialog/panel_indent/inside_header_panel" | "update_dimensions_dialog/top_button_panel" | "update_dimensions_dialog/bottom_button_panel" | "update_dimensions_dialog/world_upgrade_image" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "update_dimensions_screen" | "update_dimensions_screen_content" | "update_dimensions_screen_content/update_dimensions_dialog" | "update_dimensions_screen_content/gamepad_helpers"; -export type UpdateVersion = "update_version_screen" | "update_version_popup" | "background" | "update_version_content" | "update_version_content/top_of_version_panel" | "update_version_content/spacer_1px" | "update_version_content/update_body_text" | "update_version_content/spacer_1px_2" | "patch_notes_panel" | "patch_notes_panel/patch_notes_text" | "picture_and_patch_notes" | "picture_and_patch_notes/patch_notes_image_outline" | "picture_and_patch_notes/patch_notes_image_outline/patch_notes_image" | "picture_and_patch_notes/patch_notes_panel" | "patch_notes" | "patch_notes/patch_notes_text" | "update_body_text" | "update_button"; -export type WorldRecovery = "world_recovery_screen" | "world_recovery_screen_content" | "world_recovery_screen_content/dialog" | "description_panel" | "scrolling_panel" | "description_label" | "button_panel" | "background"; -export type WorldTemplates = "horizontal_padding" | "world_icon" | "realms_icon" | "label_background" | "lock_icon" | "realms_plus_icon" | "new_world_toggle" | "new_realm_toggle" | "world_button_content" | "world_button_content/horizontal_padding_0" | "world_button_content/icon_panel" | "world_button_content/horizontal_padding_1" | "world_button_content/world_button_label_panel" | "world_button_content/world_button_label_panel/world_button_label" | "world_button_content/horizontal_padding_2" | "world_button_label" | "common_button_template" | "generate_random" | "help_button" | "grid_button_content_template" | "grid_button_content_template/content" | "label_content_template" | "label_content_template/label_panel" | "label_content_template/label_panel/label_panel_layout" | "label_content_template/label_panel/label_panel_layout/label" | "my_templates_label" | "realms_plus_templates_label" | "custom_templates_label" | "generate_random_button" | "realms_templates_info" | "realms_templates_info/info_label" | "world_list_text" | "world_template_screenshot" | "world_template_screenshot/picture" | "world_template_name" | "world_template_description" | "world_template_version" | "template_download_text" | "world_template_text_panel" | "world_template_text_panel/text_indent" | "world_template_text_panel/text_indent/top_side" | "world_template_text_panel/text_indent/top_side/world_template_name" | "world_template_text_panel/text_indent/top_side/download_text_label" | "world_template_text_panel/text_indent/bottom_side" | "world_template_text_panel/text_indent/bottom_side/csb_icon" | "world_template_text_panel/text_indent/bottom_side/pad" | "world_template_text_panel/text_indent/bottom_side/world_template_description" | "world_template_text_panel/text_indent/bottom_side/world_template_version" | "csb_banner" | "csb_banner/banner" | "world_template_content_panel" | "world_template_content_panel/world_template_screenshot" | "world_template_content_panel/world_template_text_panel" | "world_template_content_panel/lock_panel" | "world_template_content_panel/lock_panel/lock_icon" | "world_template_item_button" | "realms_plus_template_item_button" | "world_template_item" | "world_template_item/world_template_item_button" | "realms_plus_template_item" | "realms_plus_template_item/realms_plus_template_item_button" | "world_template_item_grid" | "see_more_templates_button" | "suggested_see_more_button" | "realms_plus_see_more_button" | "world_template_inventory_see_more_button" | "custom_world_template_see_more_button" | "world_template_section_factory" | "suggested_template_section_factory" | "realms_plus_template_section_factory" | "world_template_inventory_section_factory" | "custom_world_template_section_factory" | "custom_world_template_item_grid" | "no_owned_templates_text_label" | "no_owned_templates_text" | "no_template_content_owned" | "no_template_content_owned/no_template_content_owned_text_panel" | "common_scrolling_panel" | "common_content" | "scrolling_offsets" | "template_scroll_content" | "template_scroll_content/scrolling_panel" | "common_scroll_pane" | "template_scroll_panel" | "template_scroll_panel/world_template_screen_content_stack_panel" | "world_list_grids_stack" | "world_list_grids_stack/template_list_panel" | "world_list_grids_stack/template_list_panel/my_templates_label_panel" | "world_list_grids_stack/template_list_panel/world_template_inventory_section_factory" | "world_list_grids_stack/template_list_panel/template_bottom_padding" | "world_list_grids_stack/store_panel" | "world_list_grids_stack/store_panel/loading_panel" | "world_list_grids_stack/store_panel/store_grids" | "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel" | "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_label_panel" | "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_section_factory" | "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_bottom_padding" | "world_list_grids_stack/store_panel/store_grids/suggested_content_panel" | "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_content_offers_title_label" | "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_section_factory" | "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_bottom_padding" | "world_list_grids_stack/custom_template_panel" | "world_list_grids_stack/custom_template_panel/custom_templates_label_panel" | "world_list_grids_stack/custom_template_panel/custom_world_template_section_factory" | "world_list_grids_stack/custom_template_panel/custom_template_list_bottom_padding" | "world_list_grids_stack/realms_info_panel" | "world_list_grids_stack/realms_info_panel/padding" | "world_list_grids_stack/realms_info_panel/realms_templates_info" | "world_list_grids_stack/realms_info_panel/open_uri_button" | "world_list_grid_content" | "world_list_grid_content/world_list_grids_stack" | "world_template_screen_content_stack_panel" | "world_template_screen_content_stack_panel/padding_0" | "world_template_screen_content_stack_panel/crossplatform_disabled_panel" | "world_template_screen_content_stack_panel/crossplatform_disabled_panel/disable_text" | "world_template_screen_content_stack_panel/crossplatform_disable_spacer" | "world_template_screen_content_stack_panel/generate_random_panel" | "world_template_screen_content_stack_panel/generate_random_button_bottom_padding" | "world_template_screen_content_stack_panel/world_list_grid_content" | "open_account_setting_button" | "world_templates_screen" | "world_templates_picker_content" | "world_templates_picker_content/background"; -export type XblConsoleQrSignin = "banner_fill" | "main_panel_qr" | "main_panel_qr/left_panel" | "main_panel_qr/divider" | "main_panel_qr/right_panel" | "main_panel_qr/right_panel/scrolling_panel_sizer" | "main_panel_qr/right_panel/scrolling_panel_sizer/right_scroll_panel" | "common_scrolling_panel" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_b" | "xbl_console_qr_signin" | "xbl_console_qr_signin_screen_content" | "xbl_console_qr_signin_screen_content/gamepad_helpers" | "xbl_console_qr_signin_screen_content/dialog" | "dialog" | "scroll_content_focus_border" | "left_panel" | "left_panel/left_header" | "left_panel/padding_1" | "left_panel/left_body" | "left_panel/padding_2" | "left_panel/qr_panel" | "left_panel/qr_panel/qr_border" | "left_panel/qr_panel/qr_code" | "left_panel/qr_panel/bee_overlay" | "input_panel_wrapper" | "input_panel_wrapper/r_scroll_panel" | "right_scroll_panel" | "right_scroll_panel/right_header" | "right_scroll_panel/padding_1" | "right_scroll_panel/website_message_label" | "right_scroll_panel/padding_2" | "right_scroll_panel/wrapper_panel_1" | "right_scroll_panel/wrapper_panel_1/banner_1" | "right_scroll_panel/wrapper_panel_1/banner_1/url_label" | "right_scroll_panel/padding_3" | "right_scroll_panel/code_message_label" | "right_scroll_panel/padding_4" | "right_scroll_panel/wrapper_panel_2" | "right_scroll_panel/wrapper_panel_2/banner_2" | "right_scroll_panel/wrapper_panel_2/banner_2/code_label" | "right_scroll_panel/padding_5" | "right_scroll_panel/code_message_body1" | "right_scroll_panel/padding_6" | "right_scroll_panel/code_message_body2" | "right_scroll_panel/padding_7" | "right_scroll_panel/warning_messages" | "ps4_warning_message_panel" | "ps4_warning_message_panel/sign_in_account_message" | "ps4_warning_message_panel/padding_1" | "ps4_warning_message_panel/permanent_linking_message"; -export type XblConsoleSignin = "banner_fill" | "main_panel" | "main_panel/padding_0" | "main_panel/message_label_panel" | "main_panel/message_label_panel/message_label" | "main_panel/padding_1" | "main_panel/website_message_label" | "main_panel/banner_1" | "main_panel/banner_1/url_label" | "main_panel/padding_2" | "main_panel/code_message_label" | "main_panel/banner_2" | "main_panel/banner_2/code_label" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_b" | "xbl_console_signin" | "xbl_console_signin_screen_content" | "xbl_console_signin_screen_content/gamepad_helpers" | "xbl_console_signin_screen_content/dialog" | "dialog"; -export type XblConsoleSigninSucceeded = "banner_fill" | "gamer_score_icon" | "profile_pic" | "gamertag_label" | "gamer_score_label" | "gamer_score_panel" | "gamer_score_panel/gamer_score_icon" | "gamer_score_panel/padding_0" | "gamer_score_panel/gamer_score_panel" | "gamer_score_panel/gamer_score_panel/gamer_score" | "button_panel" | "button_panel/play" | "text_panel" | "text_panel/new_account_text" | "third_party_platform_legal_text" | "new_account_text_panel" | "gamer_profile_panel" | "gamer_profile_panel/picture_panel" | "gamer_profile_panel/picture_panel/banner" | "gamer_profile_panel/picture_panel/banner/profile_pic" | "gamer_profile_panel/padding_1" | "gamer_profile_panel/info_panel" | "gamer_profile_panel/info_panel/profile_info_panel" | "gamer_profile_panel/info_panel/profile_info_panel/gamertag_label" | "gamer_profile_panel/info_panel/profile_info_panel/padding_0" | "gamer_profile_panel/info_panel/profile_info_panel/gamer_score_panel" | "main_panel" | "main_panel/profile" | "main_panel/padding_0" | "main_panel/third_party_legal_text_panel" | "main_panel/padding_1" | "main_panel/new_account_text_panel" | "main_panel/padding_2" | "main_panel/button_panel" | "xbl_console_signin_succeeded" | "xbl_console_signin_succeeded_screen_content" | "xbl_console_signin_succeeded_screen_content/dialog" | "dialog"; -export type XblImmediateSignin = "xbl_immediate_signin_screen" | "xbl_immediate_signin_screen_content" | "xbl_immediate_signin_screen_content/root_panel"; -export type Win10TrialConversion = "padding_horizontal" | "padding_vertical" | "padding_vertical_3" | "background_image" | "title_image" | "focus_border" | "pack_image" | "pack_image_panel" | "pack_image_panel/pack_image" | "title_image_border" | "title_image_border/image" | "pack_image_with_border" | "pack_image_with_border/image" | "label_panel" | "button_panel" | "button_panel/padding_5" | "button_panel/buy_now_button" | "button_panel/padding_6" | "buy_now_button" | "buy_now_label" | "buy_now_label/button_label" | "is_focused" | "filler_panel" | "focus_border_button" | "focus_border_button/default" | "focus_border_button/hover" | "focus_border_button/pressed" | "grid_item" | "grid_item/padding_1" | "grid_item/pack_image_pane" | "grid_item/padding_2" | "grid_item/pack_panel" | "grid_item/padding_3" | "grid_item_vertical" | "grid_item_vertical/grid_item_horizontal" | "grid_item_vertical/pack_grid" | "pack_panel" | "pack_panel/packtitle" | "pack_panel/padding_2" | "pack_panel/packdesc" | "collection_main_panel" | "collection_main_panel/padding_1" | "collection_main_panel/title_panel" | "collection_main_panel/padding_2" | "collection_main_panel/title_image_panel" | "collection_main_panel/title_image_panel/border_image" | "collection_main_panel/padding_3" | "collection_main_panel/offer_panel" | "collection_main_panel/offer_panel/padding_1" | "collection_main_panel/offer_panel/label_panel" | "collection_main_panel/offer_panel/label_panel/offer_label" | "collection_main_panel/offer_panel/padding_2" | "collection_main_panel/padding_4" | "collection_main_panel/button_panel" | "collection_main_panel/padding_5" | "collection_main_panel/include_panel" | "collection_main_panel/include_panel/padding_1" | "collection_main_panel/include_panel/include_label" | "collection_main_panel/padding_6" | "collection_main_panel/pack_list_grid" | "background_image_with_border" | "background_image_with_border/main_panel_no_buttons" | "win10_trial_conversion_main_panel" | "win10_trial_conversion_main_panel/scrolling_panel" | "vertical_main_panel" | "vertical_main_panel/padding_1" | "vertical_main_panel/panel" | "vertical_main_panel/padding_2" | "horizontal_main_panel" | "horizontal_main_panel/padding_1" | "horizontal_main_panel/starter_collection" | "horizontal_main_panel/padding_2" | "horizontal_main_panel/master_collection" | "win10_trial_conversion_screen" | "win10_trial_conversion_panel"; \ No newline at end of file diff --git a/src/types/vanilla/index.ts b/src/types/vanilla/index.ts index 1a82b2b..43888c7 100644 --- a/src/types/vanilla/index.ts +++ b/src/types/vanilla/index.ts @@ -1,2 +1 @@ -export * from "./elements.js" export * from "./intellisense.js" diff --git a/src/types/vanilla/intellisense.ts b/src/types/vanilla/intellisense.ts index 9508817..7924b1c 100644 --- a/src/types/vanilla/intellisense.ts +++ b/src/types/vanilla/intellisense.ts @@ -1,212 +1,19857 @@ -import * as mc from "./elements.js" +import { Type as T } from "../enums/Type.js" + +export type Namespace = keyof IntelliSense +export type Element = Extract +export type VanillaType> = IntelliSense[T][K] export type IntelliSense = { - achievement: mc.Achievement - add_external_server: mc.AddExternalServer - adhoc_inprogress: mc.AdhocInprogress - adhoc: mc.Adhoc - anvil: mc.Anvil - anvil_pocket: mc.AnvilPocket - authentication_modals: mc.AuthenticationModals - authentication: mc.Authentication - auto_save_info: mc.AutoSaveInfo - beacon: mc.Beacon - beacon_pocket: mc.BeaconPocket - blast_furnace: mc.BlastFurnace - book: mc.Book - brewing_stand: mc.BrewingStand - brewing_stand_pocket: mc.BrewingStandPocket - bundle_purchase_warning: mc.BundlePurchaseWarning - cartography: mc.Cartography - cartography_pocket: mc.CartographyPocket - chalkboard: mc.Chalkboard - chat: mc.Chat - chat_settings: mc.ChatSettings - chest: mc.Chest - choose_realm: mc.ChooseRealm - coin_purchase: mc.CoinPurchase - command_block: mc.CommandBlock - confirm_delete_account: mc.ConfirmDeleteAccount - content_log: mc.ContentLog - content_log_history: mc.ContentLogHistory - crafter_pocket: mc.CrafterPocket - create_world_upsell: mc.CreateWorldUpsell - credits: mc.Credits - csb_purchase_error: mc.CsbPurchaseError - csb: mc.Csb - csb_content: mc.CsbContent - csb_banner: mc.CsbBanner - csb_buy: mc.CsbBuy - common_csb: mc.CommonCsb - csb_purchase_amazondevicewarning: mc.CsbPurchaseAmazondevicewarning - csb_purchase_warning: mc.CsbPurchaseWarning - csb_subscription_panel: mc.CsbSubscriptionPanel - csb_upsell: mc.CsbUpsell - csb_packs: mc.CsbPacks - csb_welcome: mc.CsbWelcome - csb_faq: mc.CsbFaq - csb_landing: mc.CsbLanding - custom_templates: mc.CustomTemplates - world_conversion_complete: mc.WorldConversionComplete - day_one_experience_intro: mc.DayOneExperienceIntro - day_one_experience: mc.DayOneExperience - death: mc.Death - debug_screen: mc.DebugScreen - dev_console: mc.DevConsole - disconnect: mc.Disconnect - display_logged_error: mc.DisplayLoggedError - discovery_dialog: mc.DiscoveryDialog - edu_featured: mc.EduFeatured - edu_quit_button: mc.EduQuitButton - persona_emote: mc.PersonaEmote - enchanting: mc.Enchanting - enchanting_pocket: mc.EnchantingPocket - encyclopedia: mc.Encyclopedia - expanded_skin_pack: mc.ExpandedSkinPack - feed_common: mc.FeedCommon - file_upload: mc.FileUpload - furnace: mc.Furnace - furnace_pocket: mc.FurnacePocket - game_tip: mc.GameTip - gamepad_disconnected: mc.GamepadDisconnected - gameplay: mc.Gameplay - gathering_info: mc.GatheringInfo - globalpause: mc.Globalpause - grindstone: mc.Grindstone - grindstone_pocket: mc.GrindstonePocket - gamma_calibration: mc.GammaCalibration - horse: mc.Horse - horse_pocket: mc.HorsePocket - how_to_play_common: mc.HowToPlayCommon - how_to_play: mc.HowToPlay - hud: mc.Hud - host_options: mc.HostOptions - bed: mc.Bed - im_reader: mc.ImReader - crafting: mc.Crafting - crafting_pocket: mc.CraftingPocket - invite: mc.Invite - jigsaw_editor: mc.JigsawEditor - late_join: mc.LateJoin - library_modal: mc.LibraryModal - local_world_picker: mc.LocalWorldPicker - loom: mc.Loom - loom_pocket: mc.LoomPocket - manage_feed: mc.ManageFeed - manifest_validation: mc.ManifestValidation - sdl_label: mc.SdlLabel - sdl_dropdowns: mc.SdlDropdowns - sdl_image_row: mc.SdlImageRow - sdl_text_row: mc.SdlTextRow - mob_effect: mc.MobEffect - non_xbl_user_management: mc.NonXblUserManagement - npc_interact: mc.NpcInteract - online_safety: mc.OnlineSafety - pack_settings: mc.PackSettings - panorama: mc.Panorama - patch_notes: mc.PatchNotes - pause: mc.Pause - pdp: mc.Pdp - pdp_screenshots: mc.PdpScreenshots - permissions: mc.Permissions - persona_cast_character_screen: mc.PersonaCastCharacterScreen - persona_common: mc.PersonaCommon - persona_popups: mc.PersonaPopups - play: mc.Play - perf_turtle: mc.PerfTurtle - pocket_containers: mc.PocketContainers - popup_dialog: mc.PopupDialog - portfolio: mc.Portfolio - progress: mc.Progress - rating_prompt: mc.RatingPrompt - realms_common: mc.RealmsCommon - realms_create: mc.RealmsCreate - realms_pending_invitations: mc.RealmsPendingInvitations - realms_slots: mc.RealmsSlots - realms_settings: mc.RealmsSettings - realms_allowlist: mc.RealmsAllowlist - realms_invite_link_settings: mc.RealmsInviteLinkSettings - realms_plus_ended: mc.RealmsPlusEnded - realmsPlus: mc.RealmsPlus - realmsPlus_content: mc.RealmsPlusContent - realmsPlus_faq: mc.RealmsPlusFaq - realmsPlus_landing: mc.RealmsPlusLanding - realmsPlus_buy: mc.RealmsPlusBuy - realmsPlus_packs: mc.RealmsPlusPacks - realmsPlus_purchase_warning: mc.RealmsPlusPurchaseWarning - realms_stories_transition: mc.RealmsStoriesTransition - redstone: mc.Redstone - resource_packs: mc.ResourcePacks - safe_zone: mc.SafeZone - storage_migration_common: mc.StorageMigrationCommon - storage_migration_generic: mc.StorageMigrationGeneric - scoreboard: mc.Scoreboard - screenshot: mc.Screenshot - select_world: mc.SelectWorld - server_form: mc.ServerForm - settings: mc.Settings - controls_section: mc.ControlsSection - general_section: mc.GeneralSection - realms_world_section: mc.RealmsWorldSection - settings_common: mc.SettingsCommon - world_section: mc.WorldSection - social_section: mc.SocialSection - sidebar_navigation: mc.SidebarNavigation - sign: mc.Sign - simple_inprogress: mc.SimpleInprogress - skin_pack_purchase: mc.SkinPackPurchase - skin_picker: mc.SkinPicker - smithing_table: mc.SmithingTable - smithing_table_2: mc.SmithingTable2 - smithing_table_pocket: mc.SmithingTablePocket - smithing_table_2_pocket: mc.SmithingTable2Pocket - smoker: mc.Smoker - start: mc.Start - stonecutter: mc.Stonecutter - stonecutter_pocket: mc.StonecutterPocket - storage_management: mc.StorageManagement - storage_management_popup: mc.StorageManagementPopup - common_store: mc.CommonStore - store_layout: mc.StoreLayout - filter_menu: mc.FilterMenu - store_inventory: mc.StoreInventory - store_item_list: mc.StoreItemList - store_progress: mc.StoreProgress - promo_timeline: mc.PromoTimeline - store_sale_item_list: mc.StoreSaleItemList - store_search: mc.StoreSearch - sort_menu: mc.SortMenu - structure_editor: mc.StructureEditor - submit_feedback: mc.SubmitFeedback - tabbed_upsell: mc.TabbedUpsell - thanks_for_testing: mc.ThanksForTesting - third_party_store: mc.ThirdPartyStore - toast_screen: mc.ToastScreen - token_faq: mc.TokenFaq - trade: mc.Trade - trade_pocket: mc.TradePocket - trade2: mc.Trade2 - trade2_pocket: mc.Trade2Pocket - trialUpsell: mc.TrialUpsell - ugc_viewer: mc.UgcViewer - common_art: mc.CommonArt - common: mc.Common - "common-classic": mc.CommonClassic - edu_common: mc.EduCommon - purchase_common: mc.PurchaseCommon - common_buttons: mc.CommonButtons - common_dialogs: mc.CommonDialogs - common_tabs: mc.CommonTabs - common_toggles: mc.CommonToggles - friendsbutton: mc.Friendsbutton - iconbutton: mc.Iconbutton - update_dimensions: mc.UpdateDimensions - update_version: mc.UpdateVersion - world_recovery: mc.WorldRecovery - world_templates: mc.WorldTemplates - xbl_console_qr_signin: mc.XblConsoleQrSignin - xbl_console_signin: mc.XblConsoleSignin - xbl_console_signin_succeeded: mc.XblConsoleSigninSucceeded - xbl_immediate_signin: mc.XblImmediateSignin - win10_trial_conversion: mc.Win10TrialConversion + achievement: AchievementType + add_external_server: AddExternalServerType + adhoc_inprogress: AdhocInprogressType + adhoc: AdhocType + anvil: AnvilType + anvil_pocket: AnvilPocketType + authentication_modals: AuthenticationModalsType + authentication: AuthenticationType + auto_save_info: AutoSaveInfoType + beacon: BeaconType + beacon_pocket: BeaconPocketType + blast_furnace: BlastFurnaceType + book: BookType + brewing_stand: BrewingStandType + brewing_stand_pocket: BrewingStandPocketType + bundle_purchase_warning: BundlePurchaseWarningType + cartography: CartographyType + cartography_pocket: CartographyPocketType + chalkboard: ChalkboardType + chat: ChatType + chat_settings: ChatSettingsType + chest: ChestType + choose_realm: ChooseRealmType + coin_purchase: CoinPurchaseType + command_block: CommandBlockType + confirm_delete_account: ConfirmDeleteAccountType + content_log: ContentLogType + content_log_history: ContentLogHistoryType + crafter_pocket: CrafterPocketType + create_world_upsell: CreateWorldUpsellType + credits: CreditsType + csb_purchase_error: CsbPurchaseErrorType + csb: CsbType + csb_content: CsbContentType + csb_banner: CsbBannerType + csb_buy: CsbBuyType + common_csb: CommonCsbType + csb_purchase_amazondevicewarning: CsbPurchaseAmazondevicewarningType + csb_purchase_warning: CsbPurchaseWarningType + csb_subscription_panel: CsbSubscriptionPanelType + csb_upsell: CsbUpsellType + csb_packs: CsbPacksType + csb_welcome: CsbWelcomeType + csb_faq: CsbFaqType + csb_landing: CsbLandingType + custom_templates: CustomTemplatesType + world_conversion_complete: WorldConversionCompleteType + day_one_experience_intro: DayOneExperienceIntroType + day_one_experience: DayOneExperienceType + death: DeathType + debug_screen: DebugScreenType + dev_console: DevConsoleType + disconnect: DisconnectType + display_logged_error: DisplayLoggedErrorType + discovery_dialog: DiscoveryDialogType + edu_featured: EduFeaturedType + edu_quit_button: EduQuitButtonType + persona_emote: PersonaEmoteType + enchanting: EnchantingType + enchanting_pocket: EnchantingPocketType + encyclopedia: EncyclopediaType + expanded_skin_pack: ExpandedSkinPackType + feed_common: FeedCommonType + file_upload: FileUploadType + furnace: FurnaceType + furnace_pocket: FurnacePocketType + game_tip: GameTipType + gamepad_disconnected: GamepadDisconnectedType + gameplay: GameplayType + gathering_info: GatheringInfoType + globalpause: GlobalpauseType + grindstone: GrindstoneType + grindstone_pocket: GrindstonePocketType + gamma_calibration: GammaCalibrationType + horse: HorseType + horse_pocket: HorsePocketType + how_to_play_common: HowToPlayCommonType + how_to_play: HowToPlayType + hud: HudType + host_options: HostOptionsType + bed: BedType + im_reader: ImReaderType + crafting: CraftingType + crafting_pocket: CraftingPocketType + invite: InviteType + jigsaw_editor: JigsawEditorType + late_join: LateJoinType + library_modal: LibraryModalType + local_world_picker: LocalWorldPickerType + loom: LoomType + loom_pocket: LoomPocketType + manage_feed: ManageFeedType + manifest_validation: ManifestValidationType + sdl_label: SdlLabelType + sdl_dropdowns: SdlDropdownsType + sdl_image_row: SdlImageRowType + sdl_text_row: SdlTextRowType + mob_effect: MobEffectType + non_xbl_user_management: NonXblUserManagementType + npc_interact: NpcInteractType + online_safety: OnlineSafetyType + pack_settings: PackSettingsType + panorama: PanoramaType + patch_notes: PatchNotesType + pause: PauseType + pdp: PdpType + pdp_screenshots: PdpScreenshotsType + permissions: PermissionsType + persona_cast_character_screen: PersonaCastCharacterScreenType + persona_common: PersonaCommonType + persona_popups: PersonaPopupsType + play: PlayType + perf_turtle: PerfTurtleType + pocket_containers: PocketContainersType + popup_dialog: PopupDialogType + portfolio: PortfolioType + progress: ProgressType + rating_prompt: RatingPromptType + realms_common: RealmsCommonType + realms_create: RealmsCreateType + realms_pending_invitations: RealmsPendingInvitationsType + realms_slots: RealmsSlotsType + realms_settings: RealmsSettingsType + realms_allowlist: RealmsAllowlistType + realms_invite_link_settings: RealmsInviteLinkSettingsType + realms_plus_ended: RealmsPlusEndedType + realmsPlus: RealmsPlusType + realmsPlus_content: RealmsPlusContentType + realmsPlus_faq: RealmsPlusFaqType + realmsPlus_landing: RealmsPlusLandingType + realmsPlus_buy: RealmsPlusBuyType + realmsPlus_packs: RealmsPlusPacksType + realmsPlus_purchase_warning: RealmsPlusPurchaseWarningType + realms_stories_transition: RealmsStoriesTransitionType + redstone: RedstoneType + resource_packs: ResourcePacksType + safe_zone: SafeZoneType + storage_migration_common: StorageMigrationCommonType + storage_migration_generic: StorageMigrationGenericType + scoreboard: ScoreboardType + screenshot: ScreenshotType + select_world: SelectWorldType + server_form: ServerFormType + settings: SettingsType + controls_section: ControlsSectionType + general_section: GeneralSectionType + realms_world_section: RealmsWorldSectionType + settings_common: SettingsCommonType + world_section: WorldSectionType + social_section: SocialSectionType + sidebar_navigation: SidebarNavigationType + sign: SignType + simple_inprogress: SimpleInprogressType + skin_pack_purchase: SkinPackPurchaseType + skin_picker: SkinPickerType + smithing_table: SmithingTableType + smithing_table_2: SmithingTable2Type + smithing_table_pocket: SmithingTablePocketType + smithing_table_2_pocket: SmithingTable2PocketType + smoker: SmokerType + start: StartType + stonecutter: StonecutterType + stonecutter_pocket: StonecutterPocketType + storage_management: StorageManagementType + storage_management_popup: StorageManagementPopupType + common_store: CommonStoreType + store_layout: StoreLayoutType + filter_menu: FilterMenuType + store_inventory: StoreInventoryType + store_item_list: StoreItemListType + store_progress: StoreProgressType + promo_timeline: PromoTimelineType + store_sale_item_list: StoreSaleItemListType + store_search: StoreSearchType + sort_menu: SortMenuType + structure_editor: StructureEditorType + submit_feedback: SubmitFeedbackType + tabbed_upsell: TabbedUpsellType + thanks_for_testing: ThanksForTestingType + third_party_store: ThirdPartyStoreType + toast_screen: ToastScreenType + token_faq: TokenFaqType + trade: TradeType + trade_pocket: TradePocketType + trade2: Trade2Type + trade2_pocket: Trade2PocketType + trialUpsell: TrialUpsellType + ugc_viewer: UgcViewerType + common_art: CommonArtType + common: CommonType + "common-classic": CommonClassicType + edu_common: EduCommonType + purchase_common: PurchaseCommonType + common_buttons: CommonButtonsType + common_dialogs: CommonDialogsType + common_tabs: CommonTabsType + common_toggles: CommonTogglesType + friendsbutton: FriendsbuttonType + iconbutton: IconbuttonType + update_dimensions: UpdateDimensionsType + update_version: UpdateVersionType + world_recovery: WorldRecoveryType + world_templates: WorldTemplatesType + xbl_console_qr_signin: XblConsoleQrSigninType + xbl_console_signin: XblConsoleSigninType + xbl_console_signin_succeeded: XblConsoleSigninSucceededType + xbl_immediate_signin: XblImmediateSigninType + win10_trial_conversion: Win10TrialConversionType +} + +export type AchievementType = { + empty_progress_bar_icon: T.IMAGE + full_progress_bar_icon_base: T.IMAGE +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +export type BlastFurnaceType = { + blast_furnace_screen: T.SCREEN +} + +export type BookType = { + screenshot: T.IMAGE + screenshot_frame: T.IMAGE + "screenshot_frame/caption_edit": T.EDIT_BOX + photo_corner: T.IMAGE + photo_corner_bl: T.IMAGE + photo_corner_br: T.IMAGE + photo_corner_tr: T.IMAGE + photo_corner_tl: T.IMAGE + page_caption: T.EDIT_BOX + page_photo: T.PANEL + "page_photo/screenshot": T.IMAGE + "page_photo/screenshot_frame": T.IMAGE + "page_photo/photo_corner_bl": T.IMAGE + "page_photo/photo_corner_br": T.IMAGE + "page_photo/photo_corner_tl": T.IMAGE + "page_photo/photo_corner_tr": T.IMAGE + pick_item: T.PANEL + "pick_item/photo": T.PANEL + "pick_item/button": T.BUTTON + pick_item_inventory: T.PANEL + "pick_item_inventory/photo": T.PANEL + "pick_item_inventory/button": T.BUTTON + header: T.LABEL + text_centering_panel_inventory: T.PANEL + "text_centering_panel_inventory/inventory_header": T.LABEL + text_centering_panel_portfolio: T.PANEL + "text_centering_panel_portfolio/portfolio_header": T.LABEL + pick_scrolling_content: T.STACK_PANEL + "pick_scrolling_content/inventory_header": T.PANEL + "pick_scrolling_content/inventory_grid": T.STACK_PANEL + "pick_scrolling_content/portfolio_header": T.PANEL + "pick_scrolling_content/portfolio_grid": T.STACK_PANEL + pick_panel: T.IMAGE + "pick_panel/scroll": T.PANEL + "pick_panel/close_button": T.BUTTON + blank: T.IMAGE + book_background: T.IMAGE + book_spine_image: T.IMAGE + page_crease_left_image: T.IMAGE + page_crease_right_image: T.IMAGE + page_edge_left_image: T.IMAGE + page_edge_right_image: T.IMAGE + text_edit_hover_image: T.IMAGE + base_button: T.BUTTON + "base_button/default": T.IMAGE + "base_button/hover": T.IMAGE + "base_button/pressed": T.IMAGE + book_buttons_panel: T.PANEL + "book_buttons_panel/sign_export_buttons": T.STACK_PANEL + "book_buttons_panel/sign_export_buttons/left_spacer": T.PANEL + "book_buttons_panel/sign_export_buttons/sign_button": T.BUTTON + "book_buttons_panel/sign_export_buttons/export_button": T.BUTTON + "book_buttons_panel/sign_export_buttons/right_spacer": T.PANEL + "book_buttons_panel/im_content_button": T.BUTTON + cover_buttons_stack_panel_holder: T.PANEL + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel": T.STACK_PANEL + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/finalize_button": T.BUTTON + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/padding_1": T.PANEL + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/cancel_sign_button": T.BUTTON + close_button_default: T.IMAGE + close_button_hover: T.IMAGE + close_button_pressed: T.IMAGE + close_button: T.BUTTON + "close_button/default": T.IMAGE + "close_button/hover": T.IMAGE + "close_button/pressed": T.IMAGE + page_text_edit: T.EDIT_BOX + page_text: T.EDIT_BOX + page_number_label: T.LABEL + padded_button: T.PANEL + "padded_button/button": T.BUTTON + page_buttons_panel: T.STACK_PANEL + "page_buttons_panel/swap_page_left": T.PANEL + "page_buttons_panel/insert_text_page": T.PANEL + "page_buttons_panel/insert_photo_page": T.PANEL + "page_buttons_panel/delete_page": T.PANEL + "page_buttons_panel/swap_page_right": T.PANEL + page_content_panel: T.PANEL + "page_content_panel/page_text": T.EDIT_BOX + "page_content_panel/page_photo": T.PANEL + "page_content_panel/page_number_label": T.LABEL + "page_content_panel/page_buttons_panel": T.STACK_PANEL + "page_content_panel/edit_page": T.BUTTON + title_label: T.LABEL + title_text_box: T.EDIT_BOX + author_label: T.LABEL + author_text_box: T.EDIT_BOX + author_stack_panel: T.STACK_PANEL + "author_stack_panel/author_label_panel": T.PANEL + "author_stack_panel/author_label_panel/author_label": T.LABEL + "author_stack_panel/author_text_panel": T.PANEL + "author_stack_panel/author_text_panel/author_text_box": T.EDIT_BOX + warning_label: T.LABEL + cover_content_panel: T.PANEL + "cover_content_panel/title_label": T.LABEL + "cover_content_panel/title_text_box": T.EDIT_BOX + "cover_content_panel/author_stack_panel": T.STACK_PANEL + "cover_content_panel/warning_label": T.LABEL + cover_and_buttons_panel: T.PANEL + "cover_and_buttons_panel/cover_panel": T.PANEL + "cover_and_buttons_panel/cover_panel/cover_content_panel": T.PANEL + "cover_and_buttons_panel/cover_panel/book_background": T.IMAGE + "cover_and_buttons_panel/cover_panel/close_button": T.BUTTON + "cover_and_buttons_panel/cover_buttons_stack_panel_holder": T.PANEL + page_panel: T.PANEL + "page_panel/page_content_panel": T.PANEL + book_grid: T.GRID + "book_grid/page_panel_left": T.PANEL + "book_grid/page_panel_right": T.PANEL + book_and_buttons_panel: T.PANEL + "book_and_buttons_panel/book_panel": T.PANEL + "book_and_buttons_panel/book_panel/book_grid": T.GRID + "book_and_buttons_panel/book_panel/book_background": T.IMAGE + "book_and_buttons_panel/book_panel/book_spine_image": T.IMAGE + "book_and_buttons_panel/book_panel/close_button": T.BUTTON + "book_and_buttons_panel/book_panel/prev_button": T.BUTTON + "book_and_buttons_panel/book_panel/next_button": T.BUTTON + "book_and_buttons_panel/book_buttons_panel": T.PANEL + root_panel: T.PANEL + book_screen: T.SCREEN + book_screen_content: T.PANEL + "book_screen_content/root_panel": T.PANEL + "book_screen_content/root_panel/book_and_buttons_panel": T.PANEL + "book_screen_content/root_panel/cover_and_buttons_panel": T.PANEL + "book_screen_content/root_panel/pick_panel": T.IMAGE + "book_screen_content/root_panel/export_progress": T.PANEL + "book_screen_content/root_panel/gamepad_helper_a": T.STACK_PANEL + "book_screen_content/root_panel/gamepad_helper_b": T.STACK_PANEL +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +export type EduFeaturedType = { + featured_button_content: T.PANEL + "featured_button_content/button_label": T.LABEL + featured_button: T.BUTTON +} + +export type EduQuitButtonType = { + quit_button: T.BUTTON +} + +export type PersonaEmoteType = { + emote_wheel_screen: T.SCREEN + emote_wheel_touch_zone: T.BUTTON + emote_wheel_screen_content: T.STACK_PANEL + "emote_wheel_screen_content/top_padding": T.PANEL + "emote_wheel_screen_content/root_panel": T.PANEL + "emote_wheel_screen_content/root_panel/emotes_panel": T.PANEL + "emote_wheel_screen_content/instruction_padding": T.PANEL + "emote_wheel_screen_content/instruction_panel": T.PANEL + "emote_wheel_screen_content/instruction_panel/instruction_background": T.IMAGE + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack": T.STACK_PANEL + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/instruction_label_gamepad": T.LABEL + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers": T.PANEL + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack": T.STACK_PANEL + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_start": T.STACK_PANEL + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel": T.PANEL + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel/gamepad_exit": T.LABEL + "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_keyboard": T.LABEL + "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_touch": T.LABEL + "emote_wheel_screen_content/dressing_room_button_panel": T.PANEL + "emote_wheel_screen_content/dressing_room_button_panel/dressing_room_button": T.BUTTON + "emote_wheel_screen_content/bottom_padding": T.PANEL + swap_emote_button: T.BUTTON +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +export type SdlLabelType = { + sdl_label_factory: T.STACK_PANEL + sdl_label: T.LABEL + sdl_mc_ten_label: T.LABEL +} + +export type SdlDropdownsType = { + sdl_dropdown_rows: T.PANEL + "sdl_dropdown_rows/container_panel": T.STACK_PANEL + "sdl_dropdown_rows/container_panel/toggle": T.PANEL + "sdl_dropdown_rows/container_panel/pad": T.PANEL + sdl_rows_toggle: T.PANEL +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +export type RealmsStoriesTransitionType = { + realms_stories_transition_screen: T.SCREEN +} + +export type RedstoneType = { + item_dropper_label: T.LABEL + dispenser_label: T.LABEL + crafter_label: T.LABEL + dropper_label: T.LABEL + hopper_label: T.LABEL + redstone_input_grid: T.GRID + redstone_panel_top_half: T.PANEL + "redstone_panel_top_half/redstone_input_grid": T.GRID + panel: T.PANEL + "panel/container_gamepad_helpers": T.STACK_PANEL + "panel/selected_item_details_factory": T.FACTORY + "panel/item_lock_notification_factory": T.FACTORY + "panel/root_panel": T.INPUT_PANEL + "panel/root_panel/common_panel": T.PANEL + "panel/root_panel/redstone_screen_inventory": T.PANEL + "panel/root_panel/redstone_screen_inventory/red_panel": T.PANEL + "panel/root_panel/redstone_screen_inventory/red_bottom_half": T.PANEL + "panel/root_panel/redstone_screen_inventory/hotbar_grid": T.GRID + "panel/root_panel/redstone_screen_inventory/red_hold_icon": T.BUTTON + "panel/root_panel/red_icon": T.BUTTON + "panel/root_panel/gamepad_cursor": T.BUTTON + "panel/flying_item_renderer": T.CUSTOM + crafter_input_grid: T.GRID + cell_image: T.IMAGE + crafter_highlight_slot: T.IMAGE + crafter_container_slot_button_prototype: T.BUTTON + crafter_highlight_slot_panel: T.PANEL + "crafter_highlight_slot_panel/highlight": T.IMAGE + "crafter_highlight_slot_panel/highlight/hover_text": T.CUSTOM + "crafter_highlight_slot_panel/white_border": T.IMAGE + crafter_enabled_slot_template: T.INPUT_PANEL + crafter_disabled_slot: T.BUTTON + "crafter_disabled_slot/default": T.IMAGE + "crafter_disabled_slot/hover": T.IMAGE + "crafter_disabled_slot/pressed": T.IMAGE + output_slot_hover_info: T.BUTTON + "output_slot_hover_info/hover": T.CUSTOM + "output_slot_hover_info/output_slot": T.CUSTOM + "output_slot_hover_info/output_slot_border": T.IMAGE + "output_slot_hover_info/output_count": T.LABEL + panel_crafter: T.PANEL + "panel_crafter/container_gamepad_helpers": T.STACK_PANEL + "panel_crafter/selected_item_details_factory": T.FACTORY + "panel_crafter/item_lock_notification_factory": T.FACTORY + "panel_crafter/root_panel": T.INPUT_PANEL + "panel_crafter/root_panel/common_panel": T.PANEL + "panel_crafter/root_panel/disabled_slot_0_button": T.BUTTON + "panel_crafter/root_panel/disabled_slot_1_button": T.BUTTON + "panel_crafter/root_panel/disabled_slot_2_button": T.BUTTON + "panel_crafter/root_panel/disabled_slot_3_button": T.BUTTON + "panel_crafter/root_panel/disabled_slot_4_button": T.BUTTON + "panel_crafter/root_panel/disabled_slot_5_button": T.BUTTON + "panel_crafter/root_panel/disabled_slot_6_button": T.BUTTON + "panel_crafter/root_panel/disabled_slot_7_button": T.BUTTON + "panel_crafter/root_panel/disabled_slot_8_button": T.BUTTON + "panel_crafter/root_panel/redstone_screen_inventory": T.PANEL + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid": T.PANEL + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid": T.GRID + "panel_crafter/root_panel/redstone_screen_inventory/red_bottom_half": T.PANEL + "panel_crafter/root_panel/redstone_screen_inventory/hotbar_grid": T.GRID + "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon": T.BUTTON + "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line": T.IMAGE + "panel_crafter/root_panel/redstone_screen_inventory/crafter_output": T.BUTTON + "panel_crafter/root_panel/red_icon": T.BUTTON + "panel_crafter/root_panel/gamepad_cursor": T.BUTTON + "panel_crafter/flying_item_renderer": T.CUSTOM + hopper_screen: T.SCREEN + dispenser_screen: T.SCREEN + crafter_screen: T.SCREEN + dropper_screen: T.SCREEN +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +export type SmokerType = { + smoker_screen: T.SCREEN +} + +export type StartType = { + achievements_icon: T.IMAGE + inbox_bell_animated_icon: T.IMAGE + inbox_icon: T.IMAGE + unread_notification_icon: T.IMAGE + feedback_icon: T.IMAGE + feedback_icon_edu: T.IMAGE + Xbox_icon: T.IMAGE + change_skin_icon: T.IMAGE + manage_accounts_icon: T.IMAGE + new_offers_icon: T.IMAGE + edu_ai_lesson_crafter_button_content: T.STACK_PANEL + "edu_ai_lesson_crafter_button_content/padded_label": T.PANEL + "edu_ai_lesson_crafter_button_content/padded_label/label": T.LABEL + "edu_ai_lesson_crafter_button_content/padded_icon": T.PANEL + "edu_ai_lesson_crafter_button_content/padded_icon/icon": T.IMAGE + preview_tag: T.IMAGE + "preview_tag/preview_label": T.LABEL + update_prompt_icon: T.IMAGE + marketplace_error_icon: T.IMAGE + sale_ribbon_icon: T.IMAGE + alex_icon: T.IMAGE + gamerpic: T.CUSTOM + copyright: T.PANEL + "copyright/label": T.LABEL + "copyright/label_background": T.IMAGE + development_version: T.PANEL + "development_version/label": T.LABEL + "development_version/label_background": T.IMAGE + version: T.PANEL + "version/label": T.LABEL + "version/label_background": T.IMAGE + trial_info: T.PANEL + "trial_info/trial_label": T.LABEL + "trial_info/label_background": T.IMAGE + text_panel: T.PANEL + "text_panel/copyright": T.PANEL + "text_panel/development_version": T.PANEL + "text_panel/version": T.PANEL + skin_or_profile_panel: T.PANEL + "skin_or_profile_panel/change_skin": T.BUTTON + "skin_or_profile_panel/change_skin_button_demo": T.BUTTON + "skin_or_profile_panel/dressing_room_button": T.BUTTON + "skin_or_profile_panel/switch_accounts": T.BUTTON + "skin_or_profile_panel/profile_button": T.BUTTON + change_skin_button: T.BUTTON + change_skin_button_demo: T.BUTTON + switch_accounts_button: T.BUTTON + dressing_room_button: T.BUTTON + profile_button_content: T.STACK_PANEL + "profile_button_content/gamerpic_offset_wrapper": T.PANEL + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border": T.PANEL + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic": T.CUSTOM + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon": T.IMAGE + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black": T.IMAGE + "profile_button_content/padding_middle": T.PANEL + "profile_button_content/vertically_central_text": T.STACK_PANEL + "profile_button_content/vertically_central_text/top_padding": T.PANEL + "profile_button_content/vertically_central_text/profile_button_label": T.LABEL + "profile_button_content/padding_right": T.PANEL + profile_button: T.BUTTON + skin_viewer_panel: T.INPUT_PANEL + "skin_viewer_panel/paper_doll_panel": T.PANEL + "skin_viewer_panel/paper_doll_panel/paper_doll": T.CUSTOM + "skin_viewer_panel/paper_doll_panel/appearacne_loading_panel": T.PANEL + "skin_viewer_panel/paper_doll_name_tag": T.CUSTOM + skin_panel: T.PANEL + "skin_panel/change_profile_or_skin": T.PANEL + "skin_panel/viewer_panel": T.INPUT_PANEL + friendsdrawer_button_panel: T.PANEL + "friendsdrawer_button_panel/friendsdrawer_button": T.BUTTON + gathering_button: T.BUTTON + badge_and_caption_animated: T.STACK_PANEL + "badge_and_caption_animated/caption_and_padding": T.STACK_PANEL + "badge_and_caption_animated/caption_and_padding/pad": T.PANEL + "badge_and_caption_animated/caption_and_padding/caption": T.IMAGE + "badge_and_caption_animated/badge_and_padding": T.STACK_PANEL + "badge_and_caption_animated/badge_and_padding/badge": T.IMAGE + "badge_and_caption_animated/badge_and_padding/fill": T.PANEL + gathering_badge: T.IMAGE + badge_and_caption: T.STACK_PANEL + "badge_and_caption/caption_and_padding": T.STACK_PANEL + "badge_and_caption/caption_and_padding/pad": T.PANEL + "badge_and_caption/caption_and_padding/caption": T.IMAGE + "badge_and_caption/badge_and_padding": T.STACK_PANEL + "badge_and_caption/badge_and_padding/badge": T.IMAGE + "badge_and_caption/badge_and_padding/fill": T.PANEL + gathering_caption: T.IMAGE + "gathering_caption/countdown_text": T.LABEL + gathering_panel: T.STACK_PANEL + "gathering_panel/horizontal_panel": T.STACK_PANEL + "gathering_panel/horizontal_panel/pad": T.PANEL + "gathering_panel/horizontal_panel/inner_panel": T.STACK_PANEL + "gathering_panel/horizontal_panel/inner_panel/badge_and_caption": T.STACK_PANEL + "gathering_panel/horizontal_panel/inner_panel/badge_and_caption_animated": T.STACK_PANEL + "gathering_panel/horizontal_panel/inner_panel/gathering_button": T.BUTTON + "gathering_panel/bottom_pad": T.PANEL + edu_feedback_button: T.BUTTON + release_feedback_button: T.BUTTON + pre_release_feedback_button: T.BUTTON + feedback_button: T.PANEL + "feedback_button/edu_feedback_button": T.BUTTON + "feedback_button/release_feedback_button": T.BUTTON + "feedback_button/pre_release_feedback_button": T.BUTTON + achievements_button: T.BUTTON + achievements_icon_button: T.PANEL + "achievements_icon_button/achievements_button": T.BUTTON + inbox_button: T.BUTTON + inbox_button_unread_panel: T.PANEL + "inbox_button_unread_panel/background": T.IMAGE + inbox_icon_button: T.PANEL + "inbox_icon_button/inbox_button": T.BUTTON + "inbox_icon_button/inbox_button_unread_panel": T.PANEL + xbl_signin_button: T.BUTTON + platform_signin_button: T.BUTTON + column_frame: T.PANEL + educator_resources_button: T.BUTTON + upper_online_buttons_panel: T.STACK_PANEL + "upper_online_buttons_panel/top_pad": T.PANEL + "upper_online_buttons_panel/stacked_column": T.STACK_PANEL + "upper_online_buttons_panel/stacked_column/xbl_btn_padding": T.PANEL + "upper_online_buttons_panel/stacked_column/xbl_btn": T.PANEL + "upper_online_buttons_panel/stacked_column/xbl_btn/xbl_signin_button": T.BUTTON + "upper_online_buttons_panel/stacked_column/platform_signin_btn": T.PANEL + "upper_online_buttons_panel/stacked_column/platform_signin_btn/platform_signin_button": T.BUTTON + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label": T.STACK_PANEL + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border": T.PANEL + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/gamerpic": T.CUSTOM + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/border_white": T.IMAGE + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/spacer": T.PANEL + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel": T.PANEL + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel/gamertag_label": T.LABEL + "upper_online_buttons_panel/bottom_pad": T.PANEL + lower_online_buttons_panel: T.STACK_PANEL + "lower_online_buttons_panel/stacked_column": T.STACK_PANEL + "lower_online_buttons_panel/stacked_column/feedback_padding": T.PANEL + "lower_online_buttons_panel/stacked_column/feedback_btn": T.PANEL + "lower_online_buttons_panel/stacked_column/feedback_btn/feedback_button": T.PANEL + "lower_online_buttons_panel/stacked_column/signingin": T.LABEL + "lower_online_buttons_panel/stacked_column/achievements_padding": T.PANEL + "lower_online_buttons_panel/stacked_column/achievements_btn": T.PANEL + "lower_online_buttons_panel/stacked_column/achievements_btn/achievements_icon_button": T.PANEL + "lower_online_buttons_panel/stacked_column/inbox_padding": T.PANEL + "lower_online_buttons_panel/stacked_column/inbox_btn": T.PANEL + "lower_online_buttons_panel/stacked_column/inbox_btn/inbox_icon_button": T.PANEL + "lower_online_buttons_panel/stacked_column/profile_btn_padding": T.PANEL + "lower_online_buttons_panel/stacked_column/profile_btn": T.PANEL + "lower_online_buttons_panel/stacked_column/profile_btn/profile_button": T.BUTTON + main_button: T.BUTTON + main_button_dark: T.BUTTON + main_content_button: T.BUTTON + main_button_gif: T.CUSTOM + main_button_banner: T.IMAGE + "main_button_banner/banner_label": T.LABEL + play_button: T.BUTTON + play_button_art: T.PANEL + "play_button_art/default_background": T.CUSTOM + "play_button_art/hover_background": T.CUSTOM + "play_button_art/label": T.LABEL + "play_button_art/default_foreground": T.CUSTOM + "play_button_art/hover_foreground": T.CUSTOM + play_button_stack: T.PANEL + "play_button_stack/play_button": T.BUTTON + "play_button_stack/play_button_art": T.PANEL + "play_button_stack/play_button_banner": T.IMAGE + get_started_button: T.BUTTON + main_menu_button: T.BUTTON + featured_world_button: T.BUTTON + unlock_full_game_button: T.BUTTON + launch_editions_button: T.BUTTON + ai_lesson_crafter_button: T.BUTTON + settings_button: T.BUTTON + realms_button: T.BUTTON + servers_button: T.BUTTON + store_button: T.BUTTON + error_store_button: T.BUTTON + store_button_sale_banner: T.IMAGE + "store_button_sale_banner/banner_label_padding": T.PANEL + "store_button_sale_banner/banner_label_padding/banner_label": T.LABEL + store_button_content: T.PANEL + "store_button_content/button_label": T.LABEL + "store_button_content/sales_banner": T.IMAGE + store_error_image: T.IMAGE + store_error_content: T.IMAGE + "store_error_content/marketplace_button_label": T.LABEL + store_sale_label: T.LABEL + store_button_art: T.PANEL + "store_button_art/default_background": T.CUSTOM + "store_button_art/hover_background": T.CUSTOM + "store_button_art/label": T.LABEL + "store_button_art/default_foreground": T.CUSTOM + "store_button_art/hover_foreground": T.CUSTOM + store_button_stack: T.PANEL + "store_button_stack/store_button": T.BUTTON + "store_button_stack/store_button_art": T.PANEL + "store_button_stack/store_button_banner": T.IMAGE + "store_button_stack/update_icon": T.IMAGE + "store_button_stack/new_offers_icon": T.IMAGE + buy_game_button: T.BUTTON + stacked_row: T.PANEL + main_buttons_stack_panel: T.STACK_PANEL + "main_buttons_stack_panel/title_offset_padding": T.PANEL + "main_buttons_stack_panel/title_panel_content": T.PANEL + "main_buttons_stack_panel/padding_fill_1": T.PANEL + "main_buttons_stack_panel/main_buttons_panel": T.PANEL + "main_buttons_stack_panel/main_buttons_panel/main_buttons_panel": T.PANEL + "main_buttons_stack_panel/main_buttons_panel_new_player_flow": T.PANEL + "main_buttons_stack_panel/main_buttons_panel_new_player_flow/main_buttons_panel_new_player_flow": T.PANEL + "main_buttons_stack_panel/padding_fill_2": T.PANEL + "main_buttons_stack_panel/padding_fill_2/gamepad_helpers": T.STACK_PANEL + "main_buttons_stack_panel/padding_3": T.PANEL + main_buttons_panel_new_player_flow: T.PANEL + "main_buttons_panel_new_player_flow/stacked_rows": T.STACK_PANEL + "main_buttons_panel_new_player_flow/stacked_rows/test_label_row": T.PANEL + "main_buttons_panel_new_player_flow/stacked_rows/test_label_row/trial_info": T.PANEL + "main_buttons_panel_new_player_flow/stacked_rows/spacer": T.PANEL + "main_buttons_panel_new_player_flow/stacked_rows/get_started_row": T.PANEL + "main_buttons_panel_new_player_flow/stacked_rows/get_started_row/get_started_button": T.BUTTON + "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row": T.PANEL + "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row/main_menu_button": T.BUTTON + main_buttons_panel: T.PANEL + "main_buttons_panel/stacked_rows": T.STACK_PANEL + "main_buttons_panel/stacked_rows/play": T.PANEL + "main_buttons_panel/stacked_rows/featured_world": T.PANEL + "main_buttons_panel/stacked_rows/featured_world/featured_world_button": T.BUTTON + "main_buttons_panel/stacked_rows/stacked_row_2": T.PANEL + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns": T.STACK_PANEL + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0": T.PANEL + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0/settings_button": T.BUTTON + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1": T.PANEL + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/store_button": T.BUTTON + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/update_icon": T.IMAGE + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/new_offers_icon": T.IMAGE + "main_buttons_panel/stacked_rows/ai_lesson_crafter_row": T.PANEL + "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/ai_lesson_crafter_button": T.BUTTON + "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/lesson_crafter_preview_overlay": T.IMAGE + "main_buttons_panel/stacked_rows/edu_featured_button": T.PANEL + "main_buttons_panel/stacked_rows/edu_featured_button/new_and_featured_button": T.BUTTON + "main_buttons_panel/stacked_rows/settings_and_editions_panel": T.PANEL + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions": T.STACK_PANEL + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel": T.PANEL + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel/settings_button": T.BUTTON + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel": T.PANEL + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel/launch_editions_button": T.BUTTON + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel": T.PANEL + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel/settings_button": T.BUTTON + "main_buttons_panel/stacked_rows/settings": T.PANEL + "main_buttons_panel/stacked_rows/settings/settings_button": T.BUTTON + "main_buttons_panel/stacked_rows/realms": T.PANEL + "main_buttons_panel/stacked_rows/realms/realms_button": T.BUTTON + "main_buttons_panel/stacked_rows/unlock_full_game_row": T.PANEL + "main_buttons_panel/stacked_rows/unlock_full_game_row/unlock_full_game": T.BUTTON + "main_buttons_panel/stacked_rows/store": T.PANEL + "main_buttons_panel/stacked_rows/buy_game": T.PANEL + "main_buttons_panel/stacked_rows/buy_game/buy_game_button": T.BUTTON + "main_buttons_panel/stacked_rows/launch_editions": T.PANEL + "main_buttons_panel/stacked_rows/launch_editions/launch_editions_button": T.BUTTON + gamepad_helpers: T.STACK_PANEL + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL + "gamepad_helpers/gamepad_helper_b_and_padding": T.PANEL + "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b": T.STACK_PANEL + "gamepad_helpers/gamepad_helper_y_and_padding": T.PANEL + "gamepad_helpers/gamepad_helper_y_and_padding/gamepad_helper_y": T.STACK_PANEL + "gamepad_helpers/gamepad_helper_x_and_padding": T.PANEL + "gamepad_helpers/gamepad_helper_x_and_padding/gamepad_helper_x": T.STACK_PANEL + invite_notification_icon: T.IMAGE + invite_notification_button: T.BUTTON + notification_button_text: T.LABEL + notification_button_text_background: T.IMAGE + notification_button_text_panel: T.PANEL + "notification_button_text_panel/text": T.LABEL + "notification_button_text_panel/text/background": T.IMAGE + start_screen: T.SCREEN + start_screen_content: T.PANEL + "start_screen_content/main_buttons_and_title_panel": T.STACK_PANEL + "start_screen_content/online_button_stack": T.STACK_PANEL + "start_screen_content/online_button_stack/gathering_panel": T.STACK_PANEL + "start_screen_content/online_button_stack/upper_online_buttons_panel": T.STACK_PANEL + "start_screen_content/online_button_stack/lower_online_buttons_panel": T.STACK_PANEL + "start_screen_content/skin_panel": T.PANEL + "start_screen_content/text_panel": T.PANEL + "start_screen_content/friendsdrawer_button_panel": T.PANEL +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +export type ThirdPartyStoreType = { + third_party_store_screen: T.SCREEN +} + +export type ToastScreenType = { + toast_image: T.IMAGE + toast_icon: T.PANEL + "toast_icon/toast_icon": T.IMAGE + xbox_icon: T.PANEL + third_party_invite_icon: T.PANEL + third_party_achievement_icon: T.PANEL + persona_icon: T.PANEL + "persona_icon/item": T.PANEL + resource_pack_icon: T.PANEL + "resource_pack_icon/resource_pack_image": T.IMAGE + key_art_image: T.PANEL + gamer_score_icon: T.IMAGE + toast_label: T.LABEL + static_button_state_panel: T.PANEL + static_button: T.BUTTON + "static_button/default": T.PANEL + "static_button/hover": T.PANEL + "static_button/pressed": T.PANEL + "static_button/locked": T.PANEL + popup: T.INPUT_PANEL + "popup/background": T.IMAGE + "popup/popup_content": T.STACK_PANEL + "popup/popup_content/icon_padding": T.STACK_PANEL + "popup/popup_content/text_padding": T.PANEL + "popup/popup_content/text_panel": T.PANEL + "popup/popup_content/text_panel/text_stack_panel": T.STACK_PANEL + "popup/popup_content/button_panel": T.PANEL + "popup/popup_content/button_panel/visual_button": T.BUTTON + item_renderer: T.CUSTOM + game_tip_label: T.LABEL + toast_progress_bar: T.PANEL + "toast_progress_bar/toast_duration_progress_bar": T.CUSTOM + recipe_unlocked_icon: T.STACK_PANEL + "recipe_unlocked_icon/padding_vertical": T.PANEL + "recipe_unlocked_icon/item_renderer": T.CUSTOM + recipe_unlocked_popup: T.IMAGE + "recipe_unlocked_popup/input_panel": T.INPUT_PANEL + "recipe_unlocked_popup/input_panel/label_panel": T.STACK_PANEL + "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_1": T.PANEL + "recipe_unlocked_popup/input_panel/label_panel/recipe_unlocked_icon": T.STACK_PANEL + "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_2": T.PANEL + "recipe_unlocked_popup/input_panel/label_panel/label_panel": T.STACK_PANEL + "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_1": T.PANEL + "recipe_unlocked_popup/input_panel/label_panel/label_panel/label": T.LABEL + "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_2": T.PANEL + "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_3": T.PANEL + recipe_unlocked_pocket_popup: T.IMAGE + "recipe_unlocked_pocket_popup/input_panel": T.INPUT_PANEL + "recipe_unlocked_pocket_popup/input_panel/label_panel": T.STACK_PANEL + "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_1": T.PANEL + "recipe_unlocked_pocket_popup/input_panel/label_panel/recipe_unlocked_icon": T.STACK_PANEL + "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_2": T.PANEL + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel": T.STACK_PANEL + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical": T.PANEL + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/label": T.LABEL + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical_1": T.PANEL + "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_3": T.PANEL + text_stack_panel: T.STACK_PANEL + "text_stack_panel/title": T.LABEL + "text_stack_panel/subtitle": T.STACK_PANEL + "text_stack_panel/subtitle/icon_padding": T.PANEL + "text_stack_panel/subtitle/icon_padding/gamer_score_icon": T.IMAGE + "text_stack_panel/subtitle/subtext_offset": T.PANEL + "text_stack_panel/subtitle/subtext_offset/subtext": T.LABEL + join_button_icon: T.IMAGE + chat_popup: T.INPUT_PANEL + splitscreen_join_popup: T.STACK_PANEL + "splitscreen_join_popup/join_button_icon": T.IMAGE + "splitscreen_join_popup/join_prompt_text_panel": T.PANEL + "splitscreen_join_popup/join_prompt_text_panel/join_prompt_text": T.LABEL + formfitting_alpha_toast: T.PANEL + "formfitting_alpha_toast/bg": T.IMAGE + "formfitting_alpha_toast/bg/label": T.LABEL + snackbar: T.PANEL + "snackbar/body": T.IMAGE + "snackbar/body/background": T.IMAGE + "snackbar/body/background/content": T.STACK_PANEL + "snackbar/body/background/content/left_padding": T.PANEL + "snackbar/body/background/content/vertically_central_text": T.STACK_PANEL + "snackbar/body/background/content/vertically_central_text/top_padding": T.PANEL + "snackbar/body/background/content/vertically_central_text/text": T.LABEL + "snackbar/body/background/content/right_padding": T.PANEL + "snackbar/body/background/right_shadow": T.IMAGE + progress_button_content: T.STACK_PANEL + "progress_button_content/gamepad_icon_glyph": T.LABEL + "progress_button_content/spacer": T.PANEL + "progress_button_content/progress_button_label": T.LABEL + progress_popup: T.INPUT_PANEL + "progress_popup/background": T.IMAGE + "progress_popup/popup_content": T.STACK_PANEL + "progress_popup/popup_content/progress_toast_image": T.IMAGE + "progress_popup/popup_content/profilepicture": T.CUSTOM + "progress_popup/popup_content/text_padding": T.PANEL + "progress_popup/popup_content/progress_content_vertical_panel": T.STACK_PANEL + "progress_popup/popup_content/progress_content_vertical_panel/title_text_label": T.LABEL + "progress_popup/popup_content/progress_content_vertical_panel/subtext": T.LABEL + "progress_popup/popup_content/progress_content_vertical_panel/stacked_progress_bar": T.PANEL + "progress_popup/popup_content/progress_content_vertical_panel/end_progress_padding": T.PANEL + "progress_popup/popup_content/divider_padding": T.PANEL + "progress_popup/popup_content/divider_image": T.IMAGE + "progress_popup/popup_content/popup_decline_button": T.BUTTON + "progress_popup/popup_content/end_padding": T.PANEL + party_invite_popup: T.INPUT_PANEL + "party_invite_popup/background": T.IMAGE + "party_invite_popup/party_invite_content": T.STACK_PANEL + "party_invite_popup/party_invite_content/profilepicture": T.CUSTOM + "party_invite_popup/party_invite_content/text_padding": T.PANEL + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel": T.STACK_PANEL + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/title_text_label": T.LABEL + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/subtext": T.LABEL + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/end_padding": T.PANEL + "party_invite_popup/party_invite_content/divider_padding": T.PANEL + "party_invite_popup/party_invite_content/divider_image": T.IMAGE + "party_invite_popup/party_invite_content/party_invite_button": T.BUTTON + "party_invite_popup/party_invite_content/end_padding": T.PANEL + party_travel_popup: T.INPUT_PANEL + toast_screen: T.SCREEN + toast_screen_content: T.PANEL + "toast_screen_content/content_log_panel": T.PANEL + "toast_screen_content/perf_turtle_panel": T.PANEL +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 } diff --git a/src/types/vanilla/paths.ts b/src/types/vanilla/paths.ts new file mode 100644 index 0000000..e99e4bf --- /dev/null +++ b/src/types/vanilla/paths.ts @@ -0,0 +1,19435 @@ +export const paths = { + "achievement": { + "empty_progress_bar_icon": "ui/achievement_screen.json", + "full_progress_bar_icon_base": "ui/achievement_screen.json", + }, + "add_external_server": { + "play_button": "ui/add_external_server_screen.json", + "play_disabled_button": "ui/add_external_server_screen.json", + "remove_button": "ui/add_external_server_screen.json", + "save_button": "ui/add_external_server_screen.json", + "save_disabled_button": "ui/add_external_server_screen.json", + "text_edit_group": "ui/add_external_server_screen.json", + "text_edit_group/name_label": "ui/add_external_server_screen.json", + "text_edit_group/edit_box": "ui/add_external_server_screen.json", + "title_text": "ui/add_external_server_screen.json", + "content_panel": "ui/add_external_server_screen.json", + "content_panel/name_edit": "ui/add_external_server_screen.json", + "content_panel/ip_edit": "ui/add_external_server_screen.json", + "content_panel/port_edit": "ui/add_external_server_screen.json", + "main_panel": "ui/add_external_server_screen.json", + "main_panel/common_panel": "ui/add_external_server_screen.json", + "main_panel/title": "ui/add_external_server_screen.json", + "main_panel/main_content": "ui/add_external_server_screen.json", + "main_panel/play": "ui/add_external_server_screen.json", + "main_panel/play_disabled": "ui/add_external_server_screen.json", + "main_panel/remove": "ui/add_external_server_screen.json", + "main_panel/save": "ui/add_external_server_screen.json", + "main_panel/save_disabled": "ui/add_external_server_screen.json", + "gamepad_helpers": "ui/add_external_server_screen.json", + "gamepad_helpers/gamepad_helper_a": "ui/add_external_server_screen.json", + "add_external_server_screen_new": "ui/add_external_server_screen.json", + "add_external_server_screen_edit": "ui/add_external_server_screen.json", + "add_external_server_screen": "ui/add_external_server_screen.json", + "add_external_server_screen_content": "ui/add_external_server_screen.json", + "add_external_server_screen_content/root_panel": "ui/add_external_server_screen.json", + "add_external_server_screen_content/root_panel/gamepad_helpers": "ui/add_external_server_screen.json", + "add_external_server_screen_content/root_panel/main_panel": "ui/add_external_server_screen.json", + }, + "adhoc_inprogress": { + "title_text": "ui/adhoc_inprogess_screen.json", + "main_panel": "ui/adhoc_inprogess_screen.json", + "main_panel/common_panel": "ui/adhoc_inprogess_screen.json", + "main_panel/title": "ui/adhoc_inprogess_screen.json", + "main_panel/main_content": "ui/adhoc_inprogess_screen.json", + "main_panel/progress_loading_bars": "ui/adhoc_inprogess_screen.json", + "adhoc_inprogress_screen": "ui/adhoc_inprogess_screen.json", + "adhoc_inprogress_screen_content": "ui/adhoc_inprogess_screen.json", + "adhoc_inprogress_screen_content/root_panel": "ui/adhoc_inprogess_screen.json", + "adhoc_inprogress_screen_content/root_panel/main_panel": "ui/adhoc_inprogess_screen.json", + }, + "adhoc": { + "online_button": "ui/adhoc_screen.json", + "local_button": "ui/adhoc_screen.json", + "title_text": "ui/adhoc_screen.json", + "content_panel": "ui/adhoc_screen.json", + "content_panel/title_text": "ui/adhoc_screen.json", + "main_panel": "ui/adhoc_screen.json", + "main_panel/common_panel": "ui/adhoc_screen.json", + "main_panel/title": "ui/adhoc_screen.json", + "main_panel/main_content": "ui/adhoc_screen.json", + "main_panel/online": "ui/adhoc_screen.json", + "main_panel/local": "ui/adhoc_screen.json", + "gamepad_helpers": "ui/adhoc_screen.json", + "gamepad_helpers/gamepad_helper_a": "ui/adhoc_screen.json", + "adhoc_screen": "ui/adhoc_screen.json", + "adhoc_screen_content": "ui/adhoc_screen.json", + "adhoc_screen_content/root_panel": "ui/adhoc_screen.json", + "adhoc_screen_content/root_panel/gamepad_helpers": "ui/adhoc_screen.json", + "adhoc_screen_content/root_panel/main_panel": "ui/adhoc_screen.json", + }, + "anvil": { + "generic_label": "ui/anvil_screen.json", + "anvil_icon": "ui/anvil_screen.json", + "title_label": "ui/anvil_screen.json", + "anvil_icon_panel": "ui/anvil_screen.json", + "anvil_icon_panel/anvil_icon": "ui/anvil_screen.json", + "text_edit_control": "ui/anvil_screen.json", + "icon_and_text_panel": "ui/anvil_screen.json", + "icon_and_text_panel/anvil_icon_panel": "ui/anvil_screen.json", + "icon_and_text_panel/anvil_title_and_text_panel": "ui/anvil_screen.json", + "title_panel": "ui/anvil_screen.json", + "title_panel/title_label": "ui/anvil_screen.json", + "text_edit_panel": "ui/anvil_screen.json", + "text_edit_panel/text_edit_control": "ui/anvil_screen.json", + "anvil_title_and_text_panel": "ui/anvil_screen.json", + "anvil_title_and_text_panel/title_panel": "ui/anvil_screen.json", + "anvil_title_and_text_panel/text_edit_panel": "ui/anvil_screen.json", + "plus_sign_icon": "ui/anvil_screen.json", + "arrow_icon": "ui/anvil_screen.json", + "cross_out_icon": "ui/anvil_screen.json", + "anvil_output_slot_button": "ui/anvil_screen.json", + "anvil_item_slot": "ui/anvil_screen.json", + "anvil_item_slot/container_item": "ui/anvil_screen.json", + "recipe_grid": "ui/anvil_screen.json", + "recipe_grid/input_item_slot": "ui/anvil_screen.json", + "recipe_grid/plus": "ui/anvil_screen.json", + "recipe_grid/plus/plus_sign_icon": "ui/anvil_screen.json", + "recipe_grid/material_item_slot": "ui/anvil_screen.json", + "recipe_grid/yields": "ui/anvil_screen.json", + "recipe_grid/yields/arrow_icon": "ui/anvil_screen.json", + "recipe_grid/yields/cross_out_icon": "ui/anvil_screen.json", + "recipe_grid/result_item_slot": "ui/anvil_screen.json", + "cost_label": "ui/anvil_screen.json", + "cost_label/gray": "ui/anvil_screen.json", + "recipe_panel": "ui/anvil_screen.json", + "recipe_panel/recipe_grid": "ui/anvil_screen.json", + "recipe_panel/cost_label_0": "ui/anvil_screen.json", + "recipe_panel/cost_label_1": "ui/anvil_screen.json", + "top_half_panel": "ui/anvil_screen.json", + "top_half_panel/icon_and_text_panel": "ui/anvil_screen.json", + "top_half_panel/recipe_panel": "ui/anvil_screen.json", + "anvil_panel": "ui/anvil_screen.json", + "anvil_panel/container_gamepad_helpers": "ui/anvil_screen.json", + "anvil_panel/selected_item_details_factory": "ui/anvil_screen.json", + "anvil_panel/item_lock_notification_factory": "ui/anvil_screen.json", + "anvil_panel/root_panel": "ui/anvil_screen.json", + "anvil_panel/root_panel/common_panel": "ui/anvil_screen.json", + "anvil_panel/root_panel/anvil_screen_inventory": "ui/anvil_screen.json", + "anvil_panel/root_panel/anvil_screen_inventory/top_half_panel": "ui/anvil_screen.json", + "anvil_panel/root_panel/anvil_screen_inventory/inventory_panel_bottom_half_with_label": "ui/anvil_screen.json", + "anvil_panel/root_panel/anvil_screen_inventory/hotbar_grid": "ui/anvil_screen.json", + "anvil_panel/root_panel/anvil_screen_inventory/inventory_take_progress_icon_button": "ui/anvil_screen.json", + "anvil_panel/root_panel/inventory_selected_icon_button": "ui/anvil_screen.json", + "anvil_panel/root_panel/gamepad_cursor": "ui/anvil_screen.json", + "anvil_panel/flying_item_renderer": "ui/anvil_screen.json", + "anvil_screen": "ui/anvil_screen.json", + }, + "anvil_pocket": { + "generic_label": "ui/anvil_screen_pocket.json", + "background_image": "ui/anvil_screen_pocket.json", + "arrow_icon": "ui/anvil_screen_pocket.json", + "cost_label": "ui/anvil_screen_pocket.json", + "cost_label/gray": "ui/anvil_screen_pocket.json", + "title_label": "ui/anvil_screen_pocket.json", + "text_edit_control": "ui/anvil_screen_pocket.json", + "anvil_title_and_text_panel": "ui/anvil_screen_pocket.json", + "anvil_title_and_text_panel/title_label": "ui/anvil_screen_pocket.json", + "anvil_title_and_text_panel/text_edit_control": "ui/anvil_screen_pocket.json", + "slots_panel": "ui/anvil_screen_pocket.json", + "slots_panel/input_slot": "ui/anvil_screen_pocket.json", + "slots_panel/material_slot": "ui/anvil_screen_pocket.json", + "slots_panel/result_slot": "ui/anvil_screen_pocket.json", + "slots_panel/plus_sign": "ui/anvil_screen_pocket.json", + "slots_panel/arrow": "ui/anvil_screen_pocket.json", + "slots_panel/arrow/cross_out": "ui/anvil_screen_pocket.json", + "anvil_contents_panel": "ui/anvil_screen_pocket.json", + "anvil_contents_panel/red_cost": "ui/anvil_screen_pocket.json", + "anvil_contents_panel/green_cost": "ui/anvil_screen_pocket.json", + "anvil_contents_panel/slots_panel": "ui/anvil_screen_pocket.json", + "anvil_contents_panel/anvil_title_and_text_panel": "ui/anvil_screen_pocket.json", + "inventory_grid": "ui/anvil_screen_pocket.json", + "inventory_content": "ui/anvil_screen_pocket.json", + "inventory_content/scrolling_panel": "ui/anvil_screen_pocket.json", + "inventory_and_anvil_panel": "ui/anvil_screen_pocket.json", + "inventory_and_anvil_panel/inventory_half_screen": "ui/anvil_screen_pocket.json", + "inventory_and_anvil_panel/inventory_half_screen/inventory_content": "ui/anvil_screen_pocket.json", + "inventory_and_anvil_panel/anvil_half_screen": "ui/anvil_screen_pocket.json", + "inventory_and_anvil_panel/anvil_half_screen/anvil_contents_panel": "ui/anvil_screen_pocket.json", + "header": "ui/anvil_screen_pocket.json", + "header/header_background": "ui/anvil_screen_pocket.json", + "header/legacy_pocket_close_button": "ui/anvil_screen_pocket.json", + "header/panel": "ui/anvil_screen_pocket.json", + "header/panel/title_label": "ui/anvil_screen_pocket.json", + "header_and_content_stack_panel": "ui/anvil_screen_pocket.json", + "header_and_content_stack_panel/header": "ui/anvil_screen_pocket.json", + "header_and_content_stack_panel/inventory_and_anvil_panel": "ui/anvil_screen_pocket.json", + "anvil_panel": "ui/anvil_screen_pocket.json", + "anvil_panel/bg": "ui/anvil_screen_pocket.json", + "anvil_panel/root_panel": "ui/anvil_screen_pocket.json", + "anvil_panel/header_and_content_stack_panel": "ui/anvil_screen_pocket.json", + "anvil_panel/container_gamepad_helpers": "ui/anvil_screen_pocket.json", + "anvil_panel/inventory_selected_icon_button": "ui/anvil_screen_pocket.json", + "anvil_panel/hold_icon": "ui/anvil_screen_pocket.json", + "anvil_panel/selected_item_details_factory": "ui/anvil_screen_pocket.json", + "anvil_panel/item_lock_notification_factory": "ui/anvil_screen_pocket.json", + "anvil_panel/flying_item_renderer": "ui/anvil_screen_pocket.json", + }, + "authentication_modals": { + "modal_dialog_label": "ui/authentication_modals.json", + "modal_dialog_content": "ui/authentication_modals.json", + "modal_dialog_content/body_text": "ui/authentication_modals.json", + "modal_dialog_content/button_wrapper": "ui/authentication_modals.json", + "modal_dialog_content/button_wrapper/buttons": "ui/authentication_modals.json", + "modal_dialog_content/button_wrapper/buttons/left": "ui/authentication_modals.json", + "modal_dialog_content/button_wrapper/buttons/padding": "ui/authentication_modals.json", + "modal_dialog_content/button_wrapper/buttons/right": "ui/authentication_modals.json", + "modal_dialog_frame": "ui/authentication_modals.json", + "modal_dialog_frame/title": "ui/authentication_modals.json", + "modal_dialog_frame/close": "ui/authentication_modals.json", + "modal_dialog_frame/black_tint_image": "ui/authentication_modals.json", + "modal_dialog_frame/black_tint_image/content": "ui/authentication_modals.json", + "ad_modal_dialog": "ui/authentication_modals.json", + }, + "authentication": { + "nothing": "ui/authentication_screen.json", + "tts_control": "ui/authentication_screen.json", + "split_button_panel": "ui/authentication_screen.json", + "split_button_panel/buttons": "ui/authentication_screen.json", + "split_button_panel/buttons/a": "ui/authentication_screen.json", + "split_button_panel/buttons/paddding": "ui/authentication_screen.json", + "split_button_panel/buttons/b": "ui/authentication_screen.json", + "vertical_split_button_panel": "ui/authentication_screen.json", + "fixed_width_wrapper": "ui/authentication_screen.json", + "fixed_width_wrapper/content": "ui/authentication_screen.json", + "sign_in_button": "ui/authentication_screen.json", + "download_button": "ui/authentication_screen.json", + "smooth_label": "ui/authentication_screen.json", + "smooth_bound_label": "ui/authentication_screen.json", + "title_label": "ui/authentication_screen.json", + "eula_hyperlink": "ui/authentication_screen.json", + "accept_eula_button": "ui/authentication_screen.json", + "eula_content": "ui/authentication_screen.json", + "eula_content/prompt_wrapper": "ui/authentication_screen.json", + "eula_content/prompt_wrapper/border": "ui/authentication_screen.json", + "eula_content/prompt_wrapper/prompt_text": "ui/authentication_screen.json", + "eula_content/padding": "ui/authentication_screen.json", + "eula_content/buttons": "ui/authentication_screen.json", + "eula": "ui/authentication_screen.json", + "version": "ui/authentication_screen.json", + "version/label": "ui/authentication_screen.json", + "version/label_background": "ui/authentication_screen.json", + "view_terms_button": "ui/authentication_screen.json", + "privacy_policy_button": "ui/authentication_screen.json", + "agree_panel": "ui/authentication_screen.json", + "agree_panel/checkbox_control": "ui/authentication_screen.json", + "agree_panel/i_agree_label": "ui/authentication_screen.json", + "term_item": "ui/authentication_screen.json", + "term_item/item": "ui/authentication_screen.json", + "terms_and_conditions_panel": "ui/authentication_screen.json", + "terms_and_conditions_panel/terms_string_panel": "ui/authentication_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": "ui/authentication_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree": "ui/authentication_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": "ui/authentication_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": "ui/authentication_screen.json", + "confirmation_panel": "ui/authentication_screen.json", + "confirmation_panel/confirm_button": "ui/authentication_screen.json", + "scroll_stack_panel": "ui/authentication_screen.json", + "scroll_stack_panel/border": "ui/authentication_screen.json", + "scroll_stack_panel/terms": "ui/authentication_screen.json", + "purchase_confirm_content": "ui/authentication_screen.json", + "purchase_confirm_content/header_padding": "ui/authentication_screen.json", + "purchase_confirm_content/panel_wrap": "ui/authentication_screen.json", + "purchase_confirm_content/panel_wrap/scrolling_panel": "ui/authentication_screen.json", + "purchase_confirm_content/terms_and_conditions_panel": "ui/authentication_screen.json", + "purchase_confirm_content/button_padding": "ui/authentication_screen.json", + "purchase_confirm_content/confirmation_panel": "ui/authentication_screen.json", + "purchase_confirm_content/padding": "ui/authentication_screen.json", + "purchase_prompt_content": "ui/authentication_screen.json", + "purchase_prompt_content/prompt_wrap": "ui/authentication_screen.json", + "purchase_prompt_content/prompt_wrap/border": "ui/authentication_screen.json", + "purchase_prompt_content/prompt_wrap/prompt": "ui/authentication_screen.json", + "purchase_prompt_content/purchase_wrap_centering_container": "ui/authentication_screen.json", + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap": "ui/authentication_screen.json", + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/purchase": "ui/authentication_screen.json", + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/padding_middle": "ui/authentication_screen.json", + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/signout": "ui/authentication_screen.json", + "purchase_prompt": "ui/authentication_screen.json", + "purchase_confirm": "ui/authentication_screen.json", + "purchase_panel": "ui/authentication_screen.json", + "purchase_panel/prompt": "ui/authentication_screen.json", + "purchase_panel/confirm": "ui/authentication_screen.json", + "title_panel": "ui/authentication_screen.json", + "title_panel/title_label_wrapper": "ui/authentication_screen.json", + "hyperlink_panel": "ui/authentication_screen.json", + "hyperlink_panel/link_stack": "ui/authentication_screen.json", + "hyperlink_panel/link_stack/link1": "ui/authentication_screen.json", + "hyperlink_panel/link_stack/link2": "ui/authentication_screen.json", + "hyperlink_panel/link_stack/padding": "ui/authentication_screen.json", + "auth_screen": "ui/authentication_screen.json", + "sign_in_content": "ui/authentication_screen.json", + "sign_in_content/body_text": "ui/authentication_screen.json", + "sign_in_content/body_hyperlink": "ui/authentication_screen.json", + "sign_in_content/sign_in_wrapper": "ui/authentication_screen.json", + "sign_in_content/sign_in_wrapper/button": "ui/authentication_screen.json", + "sign_in_content/download_wrapper": "ui/authentication_screen.json", + "sign_in_content/download_wrapper/button": "ui/authentication_screen.json", + "authentication_screen_content": "ui/authentication_screen.json", + "authentication_screen_content/debug": "ui/authentication_screen.json", + "authentication_screen_content/client_version": "ui/authentication_screen.json", + "authentication_screen_content/client_version/version": "ui/authentication_screen.json", + "authentication_screen_content/sign_in": "ui/authentication_screen.json", + "authentication_screen_content/sign_in_ios": "ui/authentication_screen.json", + "authentication_screen_content/pack_progress": "ui/authentication_screen.json", + "authentication_screen_content/welcome": "ui/authentication_screen.json", + "authentication_screen_content/demo": "ui/authentication_screen.json", + "authentication_screen_content/eula": "ui/authentication_screen.json", + "authentication_screen_content/purchase_panel": "ui/authentication_screen.json", + "authentication_screen_content/popup_dialog_factory": "ui/authentication_screen.json", + "popup_content_base": "ui/authentication_screen.json", + "popup_content_base/message": "ui/authentication_screen.json", + "popup_content_base/message/border": "ui/authentication_screen.json", + "popup_content_base/message/text": "ui/authentication_screen.json", + "popup_content_base/content": "ui/authentication_screen.json", + "popup_content_base/footer_padding": "ui/authentication_screen.json", + "popup_dialog": "ui/authentication_screen.json", + "popup_dialog/dialog": "ui/authentication_screen.json", + "trial_info_ios_additional_content": "ui/authentication_screen.json", + "trial_info_ios_additional_content/dismiss": "ui/authentication_screen.json", + "popup_dialog_trial_info_ios": "ui/authentication_screen.json", + "student_message_panel": "ui/authentication_screen.json", + "trial_info_additional_content": "ui/authentication_screen.json", + "trial_info_additional_content/buttons": "ui/authentication_screen.json", + "generic_welcome_additional_content": "ui/authentication_screen.json", + "generic_welcome_additional_content/button_wrapper": "ui/authentication_screen.json", + "generic_welcome_additional_content/button_wrapper/buttons": "ui/authentication_screen.json", + "popup_dialog_trial_info": "ui/authentication_screen.json", + "popup_dialog_generic_welcome": "ui/authentication_screen.json", + "popup_message": "ui/authentication_screen.json", + "popup_message/main_message": "ui/authentication_screen.json", + "popup_message/extra_message": "ui/authentication_screen.json", + "popup_message/padding": "ui/authentication_screen.json", + "popup_message_student": "ui/authentication_screen.json", + "popup_hyperlink": "ui/authentication_screen.json", + "popup_purchase_link": "ui/authentication_screen.json", + "popup_dismiss_button": "ui/authentication_screen.json", + "pack_progress_content": "ui/authentication_screen.json", + "pack_progress_content/top_padding": "ui/authentication_screen.json", + "pack_progress_content/loading_text_panel": "ui/authentication_screen.json", + "pack_progress_content/loading_text_panel/loading_text": "ui/authentication_screen.json", + "pack_progress_content/loading_bar_panel": "ui/authentication_screen.json", + "pack_progress_content/loading_bar_panel/loading_bar": "ui/authentication_screen.json", + "pack_progress_content/loading_padding": "ui/authentication_screen.json", + "pack_progress_content/skip_panel": "ui/authentication_screen.json", + "pack_progress_content/skip_panel/skip_button": "ui/authentication_screen.json", + "pack_progress_content/bottom_padding": "ui/authentication_screen.json", + "sign_in_ios_content": "ui/authentication_screen.json", + "sign_in_ios_content/body_text": "ui/authentication_screen.json", + "sign_in_ios_content/body_hyperlink": "ui/authentication_screen.json", + "sign_in_ios_content/signin_ios_button_panel": "ui/authentication_screen.json", + "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap": "ui/authentication_screen.json", + "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap/prompt": "ui/authentication_screen.json", + "sign_in_ios_content/signin_ios_button_panel/buttons": "ui/authentication_screen.json", + "sign_in_ios_content/signin_ios_button_panel/pad_footer": "ui/authentication_screen.json", + "sign_in_ios_content/error_sign_in_panel": "ui/authentication_screen.json", + "sign_in_ios_content/error_sign_in_panel/button": "ui/authentication_screen.json", + "sign_in_ios_content/error_download_panel": "ui/authentication_screen.json", + "sign_in_ios_content/error_download_panel/button": "ui/authentication_screen.json", + "sign_in_ios_button": "ui/authentication_screen.json", + "to_app_store": "ui/authentication_screen.json", + "debug_panel": "ui/authentication_screen.json", + "debug_panel/state_label": "ui/authentication_screen.json", + "debug_panel/state_text_box": "ui/authentication_screen.json", + "debug_panel/open_popup": "ui/authentication_screen.json", + "debug_panel/refresh_popup": "ui/authentication_screen.json", + "debug_panel/reset": "ui/authentication_screen.json", + "debug_panel/toggle_ios": "ui/authentication_screen.json", + "authentication_popup_link_button": "ui/authentication_screen.json", + "authentication_popup_link_button/top_padding": "ui/authentication_screen.json", + "authentication_popup_link_button/link_button": "ui/authentication_screen.json", + "authentication_popup_contents": "ui/authentication_screen.json", + "authentication_popup_contents/initial_padding": "ui/authentication_screen.json", + "authentication_popup_contents/body": "ui/authentication_screen.json", + "authentication_popup_contents/learn_more_link": "ui/authentication_screen.json", + "authentication_popup_contents/link2": "ui/authentication_screen.json", + "authentication_popup_contents/end_padding": "ui/authentication_screen.json", + "resizeable_scrolling_panel": "ui/authentication_screen.json", + "authentication_popup_content_panel": "ui/authentication_screen.json", + "authentication_popup_button": "ui/authentication_screen.json", + "authentication_popup_one_button": "ui/authentication_screen.json", + "authentication_popup_one_button/button": "ui/authentication_screen.json", + "authentication_popup_two_buttons": "ui/authentication_screen.json", + "authentication_popup_two_buttons/first_button": "ui/authentication_screen.json", + "authentication_popup_two_buttons/button_padding": "ui/authentication_screen.json", + "authentication_popup_two_buttons/second_button": "ui/authentication_screen.json", + "authentication_popup_lower_button_panel": "ui/authentication_screen.json", + "authentication_popup_lower_button_panel/one_button": "ui/authentication_screen.json", + "authentication_popup_lower_button_panel/two_buttons": "ui/authentication_screen.json", + "authentication_popup": "ui/authentication_screen.json", + }, + "auto_save_info": { + "auto_save": "ui/auto_save_info_screen.json", + "accept_label": "ui/auto_save_info_screen.json", + "accept_label/button_label": "ui/auto_save_info_screen.json", + "accept_button": "ui/auto_save_info_screen.json", + "main_panel": "ui/auto_save_info_screen.json", + "main_panel/common_panel": "ui/auto_save_info_screen.json", + "main_panel/title_label": "ui/auto_save_info_screen.json", + "main_panel/message_label": "ui/auto_save_info_screen.json", + "main_panel/save_icon": "ui/auto_save_info_screen.json", + "main_panel/a": "ui/auto_save_info_screen.json", + "main_panel/gamepad_helpers": "ui/auto_save_info_screen.json", + "gamepad_helpers": "ui/auto_save_info_screen.json", + "gamepad_helpers/gamepad_helper_a": "ui/auto_save_info_screen.json", + "auto_save_info_screen": "ui/auto_save_info_screen.json", + "auto_save_info_screen_content": "ui/auto_save_info_screen.json", + "auto_save_info_screen_content/root_panel": "ui/auto_save_info_screen.json", + "auto_save_info_screen_content/root_panel/main_panel": "ui/auto_save_info_screen.json", + }, + "beacon": { + "selected_item_details": "ui/beacon_screen.json", + "beacon_panel": "ui/beacon_screen.json", + "beacon_panel/container_gamepad_helpers": "ui/beacon_screen.json", + "beacon_panel/selected_item_details_factory": "ui/beacon_screen.json", + "beacon_panel/item_lock_notification_factory": "ui/beacon_screen.json", + "beacon_panel/root_panel": "ui/beacon_screen.json", + "beacon_panel/root_panel/common_panel": "ui/beacon_screen.json", + "beacon_panel/root_panel/beacon_inventory": "ui/beacon_screen.json", + "beacon_panel/root_panel/beacon_inventory/beacon_inner_panel": "ui/beacon_screen.json", + "beacon_panel/root_panel/beacon_inventory/payment_panel": "ui/beacon_screen.json", + "beacon_panel/root_panel/beacon_inventory/inventory_panel_bottom_half": "ui/beacon_screen.json", + "beacon_panel/root_panel/beacon_inventory/hotbar_grid_template": "ui/beacon_screen.json", + "beacon_panel/root_panel/beacon_inventory/inventory_selected_icon_button": "ui/beacon_screen.json", + "beacon_panel/root_panel/beacon_inventory/gamepad_cursor": "ui/beacon_screen.json", + "beacon_panel/flying_item_renderer": "ui/beacon_screen.json", + "inventory_slot_button": "ui/beacon_screen.json", + "hotbar_slot_button": "ui/beacon_screen.json", + "image_atlas": "ui/beacon_screen.json", + "pyramid_image": "ui/beacon_screen.json", + "pyramid_panel": "ui/beacon_screen.json", + "pyramid_panel/level1": "ui/beacon_screen.json", + "pyramid_panel/level2": "ui/beacon_screen.json", + "pyramid_panel/level3": "ui/beacon_screen.json", + "pyramid_panel/level4": "ui/beacon_screen.json", + "item_seperator": "ui/beacon_screen.json", + "item_renderer": "ui/beacon_screen.json", + "usable_items_panel": "ui/beacon_screen.json", + "usable_items_panel/netherite": "ui/beacon_screen.json", + "usable_items_panel/item_seperator_0": "ui/beacon_screen.json", + "usable_items_panel/emerald": "ui/beacon_screen.json", + "usable_items_panel/item_seperator_1": "ui/beacon_screen.json", + "usable_items_panel/diamond": "ui/beacon_screen.json", + "usable_items_panel/item_seperator_2": "ui/beacon_screen.json", + "usable_items_panel/gold": "ui/beacon_screen.json", + "usable_items_panel/item_seperator_3": "ui/beacon_screen.json", + "usable_items_panel/iron": "ui/beacon_screen.json", + "base_image": "ui/beacon_screen.json", + "hover_text": "ui/beacon_screen.json", + "hover_state": "ui/beacon_screen.json", + "hover_state/hover_text": "ui/beacon_screen.json", + "button_unchecked_default": "ui/beacon_screen.json", + "button_unchecked_hover": "ui/beacon_screen.json", + "button_unchecked_hover/hover_text": "ui/beacon_screen.json", + "button_checked_hover": "ui/beacon_screen.json", + "button_checked_hover/hover_text": "ui/beacon_screen.json", + "button_locked": "ui/beacon_screen.json", + "button_locked_hover": "ui/beacon_screen.json", + "button_locked_hover/hover_text": "ui/beacon_screen.json", + "button_checked": "ui/beacon_screen.json", + "toggle_button": "ui/beacon_screen.json", + "base_button": "ui/beacon_screen.json", + "base_button/default": "ui/beacon_screen.json", + "base_button/hover": "ui/beacon_screen.json", + "base_button/pressed": "ui/beacon_screen.json", + "active_button": "ui/beacon_screen.json", + "inactive_button": "ui/beacon_screen.json", + "inactive_button/default": "ui/beacon_screen.json", + "inactive_button/hover": "ui/beacon_screen.json", + "selected_button": "ui/beacon_screen.json", + "selected_button/default": "ui/beacon_screen.json", + "selected_button/hover": "ui/beacon_screen.json", + "secondary_effect_base": "ui/beacon_screen.json", + "speed_secondary": "ui/beacon_screen.json", + "haste_secondary": "ui/beacon_screen.json", + "resist_secondary": "ui/beacon_screen.json", + "jump_secondary": "ui/beacon_screen.json", + "strength_secondary": "ui/beacon_screen.json", + "image_template": "ui/beacon_screen.json", + "image_template/base_image": "ui/beacon_screen.json", + "secondary_effect_images": "ui/beacon_screen.json", + "secondary_effect_images/speed_secondary": "ui/beacon_screen.json", + "secondary_effect_images/haste_secondary": "ui/beacon_screen.json", + "secondary_effect_images/resist_secondary": "ui/beacon_screen.json", + "secondary_effect_images/jump_secondary": "ui/beacon_screen.json", + "secondary_effect_images/strength_secondary": "ui/beacon_screen.json", + "toggle_template": "ui/beacon_screen.json", + "toggle_template/toggle_button": "ui/beacon_screen.json", + "button_template": "ui/beacon_screen.json", + "button_template/active_button": "ui/beacon_screen.json", + "button_template/inactive_button": "ui/beacon_screen.json", + "button_template/image_template": "ui/beacon_screen.json", + "panel_template": "ui/beacon_screen.json", + "button_panel": "ui/beacon_screen.json", + "button_panel/speed_panel": "ui/beacon_screen.json", + "button_panel/speed_panel/toggle_template": "ui/beacon_screen.json", + "button_panel/haste_panel": "ui/beacon_screen.json", + "button_panel/resist_panel": "ui/beacon_screen.json", + "button_panel/jump_panel": "ui/beacon_screen.json", + "button_panel/strength_panel": "ui/beacon_screen.json", + "button_panel/regen_panel": "ui/beacon_screen.json", + "button_panel/extra_panel": "ui/beacon_screen.json", + "payment_panel": "ui/beacon_screen.json", + "payment_panel/confirm_panel": "ui/beacon_screen.json", + "payment_panel/cancel_panel": "ui/beacon_screen.json", + "payment_panel/ingredient_item": "ui/beacon_screen.json", + "payment_panel/usable_items_panel": "ui/beacon_screen.json", + "beacon_label": "ui/beacon_screen.json", + "beacon_inner_panel": "ui/beacon_screen.json", + "beacon_inner_panel/button_panel": "ui/beacon_screen.json", + "beacon_inner_panel/pyramid_panel": "ui/beacon_screen.json", + "beacon_inner_panel/middle_strip": "ui/beacon_screen.json", + "beacon_inner_panel/primary_power_label": "ui/beacon_screen.json", + "beacon_inner_panel/secondary_power_label": "ui/beacon_screen.json", + "beacon_screen": "ui/beacon_screen.json", + }, + "beacon_pocket": { + "generic_label": "ui/beacon_screen_pocket.json", + "panel_outline": "ui/beacon_screen_pocket.json", + "dark_bg": "ui/beacon_screen_pocket.json", + "background_image": "ui/beacon_screen_pocket.json", + "item_seperator": "ui/beacon_screen_pocket.json", + "item_renderer": "ui/beacon_screen_pocket.json", + "usable_items_panel": "ui/beacon_screen_pocket.json", + "usable_items_panel/netherite": "ui/beacon_screen_pocket.json", + "usable_items_panel/item_seperator_0": "ui/beacon_screen_pocket.json", + "usable_items_panel/emerald": "ui/beacon_screen_pocket.json", + "usable_items_panel/item_seperator_1": "ui/beacon_screen_pocket.json", + "usable_items_panel/diamond": "ui/beacon_screen_pocket.json", + "usable_items_panel/item_seperator_2": "ui/beacon_screen_pocket.json", + "usable_items_panel/gold": "ui/beacon_screen_pocket.json", + "usable_items_panel/item_seperator_3": "ui/beacon_screen_pocket.json", + "usable_items_panel/iron": "ui/beacon_screen_pocket.json", + "pyramid_image": "ui/beacon_screen_pocket.json", + "pyramid_panel": "ui/beacon_screen_pocket.json", + "pyramid_panel/pyramid_image": "ui/beacon_screen_pocket.json", + "background_panel": "ui/beacon_screen_pocket.json", + "beacon_background": "ui/beacon_screen_pocket.json", + "beacon_background/middle_strip": "ui/beacon_screen_pocket.json", + "inventory_grid": "ui/beacon_screen_pocket.json", + "inventory_content": "ui/beacon_screen_pocket.json", + "inventory_content/scrolling_panel": "ui/beacon_screen_pocket.json", + "highlight_hover_square": "ui/beacon_screen_pocket.json", + "highlight_hover_square/highlight_square": "ui/beacon_screen_pocket.json", + "button_unchecked_default": "ui/beacon_screen_pocket.json", + "button_unchecked_hover": "ui/beacon_screen_pocket.json", + "button_unchecked_hover/highlight_hover_square": "ui/beacon_screen_pocket.json", + "button_checked": "ui/beacon_screen_pocket.json", + "button_checked_hover": "ui/beacon_screen_pocket.json", + "button_checked_hover/highlight_hover_square": "ui/beacon_screen_pocket.json", + "button_locked": "ui/beacon_screen_pocket.json", + "button_locked_hover": "ui/beacon_screen_pocket.json", + "button_locked_hover/highlight_hover_square": "ui/beacon_screen_pocket.json", + "toggle_button": "ui/beacon_screen_pocket.json", + "base_button": "ui/beacon_screen_pocket.json", + "base_button/default": "ui/beacon_screen_pocket.json", + "base_button/hover": "ui/beacon_screen_pocket.json", + "base_button/hover/highlight_hover_square": "ui/beacon_screen_pocket.json", + "base_button/pressed": "ui/beacon_screen_pocket.json", + "active_button": "ui/beacon_screen_pocket.json", + "inactive_button_image": "ui/beacon_screen_pocket.json", + "inactive_button": "ui/beacon_screen_pocket.json", + "inactive_button/default": "ui/beacon_screen_pocket.json", + "inactive_button/hover": "ui/beacon_screen_pocket.json", + "inactive_button/hover/highlight_hover_square": "ui/beacon_screen_pocket.json", + "selected_button_image": "ui/beacon_screen_pocket.json", + "selected_button": "ui/beacon_screen_pocket.json", + "selected_button/default": "ui/beacon_screen_pocket.json", + "selected_button/hover": "ui/beacon_screen_pocket.json", + "selected_button/hover/highlight_hover_square": "ui/beacon_screen_pocket.json", + "secondary_effect_base": "ui/beacon_screen_pocket.json", + "speed_secondary": "ui/beacon_screen_pocket.json", + "haste_secondary": "ui/beacon_screen_pocket.json", + "resist_secondary": "ui/beacon_screen_pocket.json", + "jump_secondary": "ui/beacon_screen_pocket.json", + "strength_secondary": "ui/beacon_screen_pocket.json", + "secondary_effect_images": "ui/beacon_screen_pocket.json", + "secondary_effect_images/speed_secondary": "ui/beacon_screen_pocket.json", + "secondary_effect_images/haste_secondary": "ui/beacon_screen_pocket.json", + "secondary_effect_images/resist_secondary": "ui/beacon_screen_pocket.json", + "secondary_effect_images/jump_secondary": "ui/beacon_screen_pocket.json", + "secondary_effect_images/strength_secondary": "ui/beacon_screen_pocket.json", + "base_image": "ui/beacon_screen_pocket.json", + "image_template": "ui/beacon_screen_pocket.json", + "image_template/base_image": "ui/beacon_screen_pocket.json", + "toggle_template": "ui/beacon_screen_pocket.json", + "toggle_template/toggle_button": "ui/beacon_screen_pocket.json", + "button_template": "ui/beacon_screen_pocket.json", + "button_template/active_button": "ui/beacon_screen_pocket.json", + "button_template/inactive_button": "ui/beacon_screen_pocket.json", + "button_template/image_template": "ui/beacon_screen_pocket.json", + "panel_template": "ui/beacon_screen_pocket.json", + "beacon_power_label": "ui/beacon_screen_pocket.json", + "beacon_power_label/label": "ui/beacon_screen_pocket.json", + "beacon_sub_panel": "ui/beacon_screen_pocket.json", + "beacon_button_left_panel": "ui/beacon_screen_pocket.json", + "beacon_button_left_panel/primary_power_label": "ui/beacon_screen_pocket.json", + "beacon_button_left_panel/panel": "ui/beacon_screen_pocket.json", + "beacon_button_left_panel/panel/pyramids_and_buttons": "ui/beacon_screen_pocket.json", + "beacon_button_left_panel/panel/pyramids_and_buttons/level1": "ui/beacon_screen_pocket.json", + "beacon_button_left_panel/panel/pyramids_and_buttons/speed_panel": "ui/beacon_screen_pocket.json", + "beacon_button_left_panel/panel/pyramids_and_buttons/haste_panel": "ui/beacon_screen_pocket.json", + "beacon_button_left_panel/panel/pyramids_and_buttons/level2": "ui/beacon_screen_pocket.json", + "beacon_button_left_panel/panel/pyramids_and_buttons/resist_panel": "ui/beacon_screen_pocket.json", + "beacon_button_left_panel/panel/pyramids_and_buttons/jump_panel": "ui/beacon_screen_pocket.json", + "beacon_button_left_panel/panel/pyramids_and_buttons/level3": "ui/beacon_screen_pocket.json", + "beacon_button_left_panel/panel/pyramids_and_buttons/strength_panel": "ui/beacon_screen_pocket.json", + "beacon_button_right_panel": "ui/beacon_screen_pocket.json", + "beacon_button_right_panel/secondary_power_label": "ui/beacon_screen_pocket.json", + "beacon_button_right_panel/panel": "ui/beacon_screen_pocket.json", + "beacon_button_right_panel/panel/buttons_and_pyramid": "ui/beacon_screen_pocket.json", + "beacon_button_right_panel/panel/buttons_and_pyramid/level4": "ui/beacon_screen_pocket.json", + "beacon_button_right_panel/panel/buttons_and_pyramid/regen_panel": "ui/beacon_screen_pocket.json", + "beacon_button_right_panel/panel/buttons_and_pyramid/extra_panel": "ui/beacon_screen_pocket.json", + "beacon_buttons_panel": "ui/beacon_screen_pocket.json", + "beacon_buttons_panel/beacon_background": "ui/beacon_screen_pocket.json", + "beacon_buttons_panel/left_panel": "ui/beacon_screen_pocket.json", + "beacon_buttons_panel/right_panel": "ui/beacon_screen_pocket.json", + "confirm_panel": "ui/beacon_screen_pocket.json", + "confirm_panel/ingredient_item": "ui/beacon_screen_pocket.json", + "confirm_panel/confirm_panel": "ui/beacon_screen_pocket.json", + "confirm_panel/cancel_panel": "ui/beacon_screen_pocket.json", + "beacon_payment_panel": "ui/beacon_screen_pocket.json", + "beacon_payment_panel/usable_items_panel": "ui/beacon_screen_pocket.json", + "beacon_payment_panel/pad": "ui/beacon_screen_pocket.json", + "beacon_payment_panel/confirm_panel": "ui/beacon_screen_pocket.json", + "beacon_contents_panel": "ui/beacon_screen_pocket.json", + "beacon_contents_panel/fill1": "ui/beacon_screen_pocket.json", + "beacon_contents_panel/beacon_buttons_panel": "ui/beacon_screen_pocket.json", + "beacon_contents_panel/pad1": "ui/beacon_screen_pocket.json", + "beacon_contents_panel/beacon_payment_panel": "ui/beacon_screen_pocket.json", + "beacon_contents_panel/fill2": "ui/beacon_screen_pocket.json", + "header": "ui/beacon_screen_pocket.json", + "header/header_background": "ui/beacon_screen_pocket.json", + "header/legacy_pocket_close_button": "ui/beacon_screen_pocket.json", + "header/panel": "ui/beacon_screen_pocket.json", + "header/panel/title_label": "ui/beacon_screen_pocket.json", + "inventory_and_beacon_panel": "ui/beacon_screen_pocket.json", + "inventory_and_beacon_panel/inventory_half_screen": "ui/beacon_screen_pocket.json", + "inventory_and_beacon_panel/inventory_half_screen/inventory_content": "ui/beacon_screen_pocket.json", + "inventory_and_beacon_panel/beacon_half_screen": "ui/beacon_screen_pocket.json", + "inventory_and_beacon_panel/beacon_half_screen/beacon_content": "ui/beacon_screen_pocket.json", + "header_and_content_stack_panel": "ui/beacon_screen_pocket.json", + "header_and_content_stack_panel/header": "ui/beacon_screen_pocket.json", + "header_and_content_stack_panel/inventory_and_beacon_panel": "ui/beacon_screen_pocket.json", + "beacon_panel": "ui/beacon_screen_pocket.json", + "beacon_panel/bg": "ui/beacon_screen_pocket.json", + "beacon_panel/root_panel": "ui/beacon_screen_pocket.json", + "beacon_panel/header_and_content_stack_panel": "ui/beacon_screen_pocket.json", + "beacon_panel/container_gamepad_helpers": "ui/beacon_screen_pocket.json", + "beacon_panel/inventory_selected_icon_button": "ui/beacon_screen_pocket.json", + "beacon_panel/hold_icon": "ui/beacon_screen_pocket.json", + "beacon_panel/selected_item_details_factory": "ui/beacon_screen_pocket.json", + "beacon_panel/item_lock_notification_factory": "ui/beacon_screen_pocket.json", + "beacon_panel/flying_item_renderer": "ui/beacon_screen_pocket.json", + }, + "blast_furnace": { + "blast_furnace_screen": "ui/blast_furnace_screen.json", + }, + "book": { + "screenshot": "ui/book_screen.json", + "screenshot_frame": "ui/book_screen.json", + "screenshot_frame/caption_edit": "ui/book_screen.json", + "photo_corner": "ui/book_screen.json", + "photo_corner_bl": "ui/book_screen.json", + "photo_corner_br": "ui/book_screen.json", + "photo_corner_tr": "ui/book_screen.json", + "photo_corner_tl": "ui/book_screen.json", + "page_caption": "ui/book_screen.json", + "page_photo": "ui/book_screen.json", + "page_photo/screenshot": "ui/book_screen.json", + "page_photo/screenshot_frame": "ui/book_screen.json", + "page_photo/photo_corner_bl": "ui/book_screen.json", + "page_photo/photo_corner_br": "ui/book_screen.json", + "page_photo/photo_corner_tl": "ui/book_screen.json", + "page_photo/photo_corner_tr": "ui/book_screen.json", + "pick_item": "ui/book_screen.json", + "pick_item/photo": "ui/book_screen.json", + "pick_item/button": "ui/book_screen.json", + "pick_item_inventory": "ui/book_screen.json", + "pick_item_inventory/photo": "ui/book_screen.json", + "pick_item_inventory/button": "ui/book_screen.json", + "header": "ui/book_screen.json", + "text_centering_panel_inventory": "ui/book_screen.json", + "text_centering_panel_inventory/inventory_header": "ui/book_screen.json", + "text_centering_panel_portfolio": "ui/book_screen.json", + "text_centering_panel_portfolio/portfolio_header": "ui/book_screen.json", + "pick_scrolling_content": "ui/book_screen.json", + "pick_scrolling_content/inventory_header": "ui/book_screen.json", + "pick_scrolling_content/inventory_grid": "ui/book_screen.json", + "pick_scrolling_content/portfolio_header": "ui/book_screen.json", + "pick_scrolling_content/portfolio_grid": "ui/book_screen.json", + "pick_panel": "ui/book_screen.json", + "pick_panel/scroll": "ui/book_screen.json", + "pick_panel/close_button": "ui/book_screen.json", + "blank": "ui/book_screen.json", + "book_background": "ui/book_screen.json", + "book_spine_image": "ui/book_screen.json", + "page_crease_left_image": "ui/book_screen.json", + "page_crease_right_image": "ui/book_screen.json", + "page_edge_left_image": "ui/book_screen.json", + "page_edge_right_image": "ui/book_screen.json", + "text_edit_hover_image": "ui/book_screen.json", + "base_button": "ui/book_screen.json", + "base_button/default": "ui/book_screen.json", + "base_button/hover": "ui/book_screen.json", + "base_button/pressed": "ui/book_screen.json", + "book_buttons_panel": "ui/book_screen.json", + "book_buttons_panel/sign_export_buttons": "ui/book_screen.json", + "book_buttons_panel/sign_export_buttons/left_spacer": "ui/book_screen.json", + "book_buttons_panel/sign_export_buttons/sign_button": "ui/book_screen.json", + "book_buttons_panel/sign_export_buttons/export_button": "ui/book_screen.json", + "book_buttons_panel/sign_export_buttons/right_spacer": "ui/book_screen.json", + "book_buttons_panel/im_content_button": "ui/book_screen.json", + "cover_buttons_stack_panel_holder": "ui/book_screen.json", + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel": "ui/book_screen.json", + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/finalize_button": "ui/book_screen.json", + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/padding_1": "ui/book_screen.json", + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/cancel_sign_button": "ui/book_screen.json", + "close_button_default": "ui/book_screen.json", + "close_button_hover": "ui/book_screen.json", + "close_button_pressed": "ui/book_screen.json", + "close_button": "ui/book_screen.json", + "close_button/default": "ui/book_screen.json", + "close_button/hover": "ui/book_screen.json", + "close_button/pressed": "ui/book_screen.json", + "page_text_edit": "ui/book_screen.json", + "page_text": "ui/book_screen.json", + "page_number_label": "ui/book_screen.json", + "padded_button": "ui/book_screen.json", + "padded_button/button": "ui/book_screen.json", + "page_buttons_panel": "ui/book_screen.json", + "page_buttons_panel/swap_page_left": "ui/book_screen.json", + "page_buttons_panel/insert_text_page": "ui/book_screen.json", + "page_buttons_panel/insert_photo_page": "ui/book_screen.json", + "page_buttons_panel/delete_page": "ui/book_screen.json", + "page_buttons_panel/swap_page_right": "ui/book_screen.json", + "page_content_panel": "ui/book_screen.json", + "page_content_panel/page_text": "ui/book_screen.json", + "page_content_panel/page_photo": "ui/book_screen.json", + "page_content_panel/page_number_label": "ui/book_screen.json", + "page_content_panel/page_buttons_panel": "ui/book_screen.json", + "page_content_panel/edit_page": "ui/book_screen.json", + "title_label": "ui/book_screen.json", + "title_text_box": "ui/book_screen.json", + "author_label": "ui/book_screen.json", + "author_text_box": "ui/book_screen.json", + "author_stack_panel": "ui/book_screen.json", + "author_stack_panel/author_label_panel": "ui/book_screen.json", + "author_stack_panel/author_label_panel/author_label": "ui/book_screen.json", + "author_stack_panel/author_text_panel": "ui/book_screen.json", + "author_stack_panel/author_text_panel/author_text_box": "ui/book_screen.json", + "warning_label": "ui/book_screen.json", + "cover_content_panel": "ui/book_screen.json", + "cover_content_panel/title_label": "ui/book_screen.json", + "cover_content_panel/title_text_box": "ui/book_screen.json", + "cover_content_panel/author_stack_panel": "ui/book_screen.json", + "cover_content_panel/warning_label": "ui/book_screen.json", + "cover_and_buttons_panel": "ui/book_screen.json", + "cover_and_buttons_panel/cover_panel": "ui/book_screen.json", + "cover_and_buttons_panel/cover_panel/cover_content_panel": "ui/book_screen.json", + "cover_and_buttons_panel/cover_panel/book_background": "ui/book_screen.json", + "cover_and_buttons_panel/cover_panel/close_button": "ui/book_screen.json", + "cover_and_buttons_panel/cover_buttons_stack_panel_holder": "ui/book_screen.json", + "page_panel": "ui/book_screen.json", + "page_panel/page_content_panel": "ui/book_screen.json", + "book_grid": "ui/book_screen.json", + "book_grid/page_panel_left": "ui/book_screen.json", + "book_grid/page_panel_right": "ui/book_screen.json", + "book_and_buttons_panel": "ui/book_screen.json", + "book_and_buttons_panel/book_panel": "ui/book_screen.json", + "book_and_buttons_panel/book_panel/book_grid": "ui/book_screen.json", + "book_and_buttons_panel/book_panel/book_background": "ui/book_screen.json", + "book_and_buttons_panel/book_panel/book_spine_image": "ui/book_screen.json", + "book_and_buttons_panel/book_panel/close_button": "ui/book_screen.json", + "book_and_buttons_panel/book_panel/prev_button": "ui/book_screen.json", + "book_and_buttons_panel/book_panel/next_button": "ui/book_screen.json", + "book_and_buttons_panel/book_buttons_panel": "ui/book_screen.json", + "root_panel": "ui/book_screen.json", + "book_screen": "ui/book_screen.json", + "book_screen_content": "ui/book_screen.json", + "book_screen_content/root_panel": "ui/book_screen.json", + "book_screen_content/root_panel/book_and_buttons_panel": "ui/book_screen.json", + "book_screen_content/root_panel/cover_and_buttons_panel": "ui/book_screen.json", + "book_screen_content/root_panel/pick_panel": "ui/book_screen.json", + "book_screen_content/root_panel/export_progress": "ui/book_screen.json", + "book_screen_content/root_panel/gamepad_helper_a": "ui/book_screen.json", + "book_screen_content/root_panel/gamepad_helper_b": "ui/book_screen.json", + }, + "brewing_stand": { + "brewing_pipes": "ui/brewing_stand_screen.json", + "brewing_fuel_pipes": "ui/brewing_stand_screen.json", + "bottle_empty_image": "ui/brewing_stand_screen.json", + "fuel_empty_image": "ui/brewing_stand_screen.json", + "bubbles_empty_image": "ui/brewing_stand_screen.json", + "bubbles_full_image": "ui/brewing_stand_screen.json", + "brewing_arrow_empty_image": "ui/brewing_stand_screen.json", + "brewing_arrow_full_image": "ui/brewing_stand_screen.json", + "brewing_fuel_bar_empty_image": "ui/brewing_stand_screen.json", + "brewing_fuel_bar_full_image": "ui/brewing_stand_screen.json", + "brewing_label": "ui/brewing_stand_screen.json", + "brewingstand_output_item": "ui/brewing_stand_screen.json", + "brewing_output_slots": "ui/brewing_stand_screen.json", + "brewing_output_slots/left_offset": "ui/brewing_stand_screen.json", + "brewing_output_slots/left_offset/output_grid_item1": "ui/brewing_stand_screen.json", + "brewing_output_slots/output_grid_item2": "ui/brewing_stand_screen.json", + "brewing_output_slots/right_offset": "ui/brewing_stand_screen.json", + "brewing_output_slots/right_offset/output_grid_item3": "ui/brewing_stand_screen.json", + "brewing_input_slot": "ui/brewing_stand_screen.json", + "brewing_input_slot/input_grid_item": "ui/brewing_stand_screen.json", + "brewing_fuel_slot": "ui/brewing_stand_screen.json", + "brewing_fuel_slot/fuel_grid_item": "ui/brewing_stand_screen.json", + "brewing_panel_top_half": "ui/brewing_stand_screen.json", + "brewing_panel_top_half/brewing_label": "ui/brewing_stand_screen.json", + "brewing_panel_top_half/brewing_stand_pictogram": "ui/brewing_stand_screen.json", + "brewing_stand_pictogram": "ui/brewing_stand_screen.json", + "brewing_stand_pictogram/brewing_input_slot": "ui/brewing_stand_screen.json", + "brewing_stand_pictogram/brewing_output_slots": "ui/brewing_stand_screen.json", + "brewing_stand_pictogram/brewing_fuel_slot": "ui/brewing_stand_screen.json", + "brewing_stand_pictogram/brewing_arrow_empty_image": "ui/brewing_stand_screen.json", + "brewing_stand_pictogram/brewing_arrow_full_image": "ui/brewing_stand_screen.json", + "brewing_stand_pictogram/brewing_fuel_bar_empty_image": "ui/brewing_stand_screen.json", + "brewing_stand_pictogram/brewing_fuel_bar_full_image": "ui/brewing_stand_screen.json", + "brewing_stand_pictogram/bubbles_empty_image": "ui/brewing_stand_screen.json", + "brewing_stand_pictogram/bubbles_full_image": "ui/brewing_stand_screen.json", + "brewing_stand_pictogram/brewing_fuel_pipes": "ui/brewing_stand_screen.json", + "brewing_stand_pictogram/brewing_pipes": "ui/brewing_stand_screen.json", + "brewing_stand_panel": "ui/brewing_stand_screen.json", + "brewing_stand_panel/container_gamepad_helpers": "ui/brewing_stand_screen.json", + "brewing_stand_panel/selected_item_details_factory": "ui/brewing_stand_screen.json", + "brewing_stand_panel/item_lock_notification_factory": "ui/brewing_stand_screen.json", + "brewing_stand_panel/root_panel": "ui/brewing_stand_screen.json", + "brewing_stand_panel/root_panel/common_panel": "ui/brewing_stand_screen.json", + "brewing_stand_panel/root_panel/furnace_screen_inventory": "ui/brewing_stand_screen.json", + "brewing_stand_panel/root_panel/furnace_screen_inventory/brewing_panel_top_half": "ui/brewing_stand_screen.json", + "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label": "ui/brewing_stand_screen.json", + "brewing_stand_panel/root_panel/furnace_screen_inventory/hotbar_grid": "ui/brewing_stand_screen.json", + "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button": "ui/brewing_stand_screen.json", + "brewing_stand_panel/root_panel/inventory_selected_icon_button": "ui/brewing_stand_screen.json", + "brewing_stand_panel/root_panel/gamepad_cursor": "ui/brewing_stand_screen.json", + "brewing_stand_panel/flying_item_renderer": "ui/brewing_stand_screen.json", + "brewing_stand_screen": "ui/brewing_stand_screen.json", + }, + "brewing_stand_pocket": { + "generic_label": "ui/brewing_stand_screen_pocket.json", + "brewing_fuel_pipes": "ui/brewing_stand_screen_pocket.json", + "bubbles_empty_image": "ui/brewing_stand_screen_pocket.json", + "bubbles_full_image": "ui/brewing_stand_screen_pocket.json", + "bottle_empty_image": "ui/brewing_stand_screen_pocket.json", + "background_image": "ui/brewing_stand_screen_pocket.json", + "output_slot": "ui/brewing_stand_screen_pocket.json", + "brewing_input_slot": "ui/brewing_stand_screen_pocket.json", + "brewing_input_slot/input_slot": "ui/brewing_stand_screen_pocket.json", + "brewing_fuel_slot": "ui/brewing_stand_screen_pocket.json", + "brewing_fuel_slot/fuel_slot": "ui/brewing_stand_screen_pocket.json", + "brewing_out_slots": "ui/brewing_stand_screen_pocket.json", + "brewing_out_slots/left_offset": "ui/brewing_stand_screen_pocket.json", + "brewing_out_slots/left_offset/output_slot1": "ui/brewing_stand_screen_pocket.json", + "brewing_out_slots/middle": "ui/brewing_stand_screen_pocket.json", + "brewing_out_slots/middle/output_slot2": "ui/brewing_stand_screen_pocket.json", + "brewing_out_slots/right_offset": "ui/brewing_stand_screen_pocket.json", + "brewing_out_slots/right_offset/output_slot3": "ui/brewing_stand_screen_pocket.json", + "slots_panel": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_input_slot": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_fuel_slot": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_out_slots": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_arrow_panel": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_arrow_panel/brewing_arrow_empty_image": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_arrow_panel/brewing_arrow_full_image": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_bubbles_panel": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_bubbles_panel/bubbles_empty_image": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_bubbles_panel/bubbles_full_image": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_fuel_bar_panel": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_empty_image": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_full_image": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_fuel_pipes": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_pipes": "ui/brewing_stand_screen_pocket.json", + "inventory_grid": "ui/brewing_stand_screen_pocket.json", + "inventory_content": "ui/brewing_stand_screen_pocket.json", + "inventory_content/scrolling_panel": "ui/brewing_stand_screen_pocket.json", + "brewing_stand_contents_panel": "ui/brewing_stand_screen_pocket.json", + "brewing_stand_contents_panel/slots_panel": "ui/brewing_stand_screen_pocket.json", + "header": "ui/brewing_stand_screen_pocket.json", + "header/header_background": "ui/brewing_stand_screen_pocket.json", + "header/legacy_pocket_close_button": "ui/brewing_stand_screen_pocket.json", + "header/panel": "ui/brewing_stand_screen_pocket.json", + "header/panel/title_label": "ui/brewing_stand_screen_pocket.json", + "inventory_and_brewing_panel": "ui/brewing_stand_screen_pocket.json", + "inventory_and_brewing_panel/inventory_half_screen": "ui/brewing_stand_screen_pocket.json", + "inventory_and_brewing_panel/inventory_half_screen/inventory_content": "ui/brewing_stand_screen_pocket.json", + "inventory_and_brewing_panel/brewing_half_screen": "ui/brewing_stand_screen_pocket.json", + "inventory_and_brewing_panel/brewing_half_screen/brewing_stand_contents_panel": "ui/brewing_stand_screen_pocket.json", + "header_and_content_stack_panel": "ui/brewing_stand_screen_pocket.json", + "header_and_content_stack_panel/header": "ui/brewing_stand_screen_pocket.json", + "header_and_content_stack_panel/inventory_and_brewing_panel": "ui/brewing_stand_screen_pocket.json", + "brewing_stand_panel": "ui/brewing_stand_screen_pocket.json", + "brewing_stand_panel/bg": "ui/brewing_stand_screen_pocket.json", + "brewing_stand_panel/root_panel": "ui/brewing_stand_screen_pocket.json", + "brewing_stand_panel/header_and_content_stack_panel": "ui/brewing_stand_screen_pocket.json", + "brewing_stand_panel/container_gamepad_helpers": "ui/brewing_stand_screen_pocket.json", + "brewing_stand_panel/inventory_selected_icon_button": "ui/brewing_stand_screen_pocket.json", + "brewing_stand_panel/hold_icon": "ui/brewing_stand_screen_pocket.json", + "brewing_stand_panel/selected_item_details_factory": "ui/brewing_stand_screen_pocket.json", + "brewing_stand_panel/item_lock_notification_factory": "ui/brewing_stand_screen_pocket.json", + "brewing_stand_panel/flying_item_renderer": "ui/brewing_stand_screen_pocket.json", + }, + "bundle_purchase_warning": { + "x_padding": "ui/bundle_purchase_warning_screen.json", + "y_padding": "ui/bundle_purchase_warning_screen.json", + "bundle_grid_item": "ui/bundle_purchase_warning_screen.json", + "bundle_grid_item/banner_image": "ui/bundle_purchase_warning_screen.json", + "bundle_grid_item/content": "ui/bundle_purchase_warning_screen.json", + "bundle_grid_item/game_pad_focus_border": "ui/bundle_purchase_warning_screen.json", + "is_focused": "ui/bundle_purchase_warning_screen.json", + "is_focused/image_border": "ui/bundle_purchase_warning_screen.json", + "is_focused/banner_border": "ui/bundle_purchase_warning_screen.json", + "focus_border": "ui/bundle_purchase_warning_screen.json", + "focus_border_button": "ui/bundle_purchase_warning_screen.json", + "focus_border_button/default": "ui/bundle_purchase_warning_screen.json", + "focus_border_button/hover": "ui/bundle_purchase_warning_screen.json", + "focus_border_button/pressed": "ui/bundle_purchase_warning_screen.json", + "grid_item_content": "ui/bundle_purchase_warning_screen.json", + "grid_item_content/image_border": "ui/bundle_purchase_warning_screen.json", + "grid_item_content/image_border/bundle_thumbnail": "ui/bundle_purchase_warning_screen.json", + "grid_item_content/padding_0": "ui/bundle_purchase_warning_screen.json", + "grid_item_content/bundle_title_panel": "ui/bundle_purchase_warning_screen.json", + "grid_item_content/bundle_title_panel/bundle_title": "ui/bundle_purchase_warning_screen.json", + "bundle_grid": "ui/bundle_purchase_warning_screen.json", + "side_contents": "ui/bundle_purchase_warning_screen.json", + "side_contents/title_alignment_hack": "ui/bundle_purchase_warning_screen.json", + "side_contents/title_alignment_hack/side_section_title": "ui/bundle_purchase_warning_screen.json", + "side_contents/padding_y_0": "ui/bundle_purchase_warning_screen.json", + "side_contents/grid_input_panel": "ui/bundle_purchase_warning_screen.json", + "side_contents/grid_input_panel/grid_scroll": "ui/bundle_purchase_warning_screen.json", + "dialog_content": "ui/bundle_purchase_warning_screen.json", + "dialog_content/grid_stack": "ui/bundle_purchase_warning_screen.json", + "dialog_content/grid_stack/left_grid_scroll": "ui/bundle_purchase_warning_screen.json", + "dialog_content/grid_stack/padding_x_divider": "ui/bundle_purchase_warning_screen.json", + "dialog_content/grid_stack/right_grid_scroll": "ui/bundle_purchase_warning_screen.json", + "purchase_button_panel": "ui/bundle_purchase_warning_screen.json", + "screen_dialog": "ui/bundle_purchase_warning_screen.json", + "bundle_purchase_warning_screen_content": "ui/bundle_purchase_warning_screen.json", + "bundle_purchase_warning_screen_content/dialog": "ui/bundle_purchase_warning_screen.json", + "background": "ui/bundle_purchase_warning_screen.json", + "bundle_purchase_warning_screen": "ui/bundle_purchase_warning_screen.json", + }, + "cartography": { + "title_label": "ui/cartography_screen.json", + "arrow_icon": "ui/cartography_screen.json", + "plus_sign_icon": "ui/cartography_screen.json", + "text_edit_control": "ui/cartography_screen.json", + "cartography_output_slot_button": "ui/cartography_screen.json", + "cartography_item_slot": "ui/cartography_screen.json", + "cartography_item_slot/container_item": "ui/cartography_screen.json", + "map_image": "ui/cartography_screen.json", + "map_image_panel": "ui/cartography_screen.json", + "map_image_panel/none_map": "ui/cartography_screen.json", + "map_image_panel/copy_map": "ui/cartography_screen.json", + "map_image_panel/rename_map": "ui/cartography_screen.json", + "map_image_panel/map": "ui/cartography_screen.json", + "map_image_panel/locator_map": "ui/cartography_screen.json", + "map_image_panel/zoom_map": "ui/cartography_screen.json", + "map_image_panel/lock_map": "ui/cartography_screen.json", + "text_box_panel": "ui/cartography_screen.json", + "text_box_panel/map_name_label": "ui/cartography_screen.json", + "text_box_panel/text_edit_control": "ui/cartography_screen.json", + "input_slots": "ui/cartography_screen.json", + "input_slots/input_item_slot": "ui/cartography_screen.json", + "input_slots/plus_centerer": "ui/cartography_screen.json", + "input_slots/plus_centerer/plus_sign_icon": "ui/cartography_screen.json", + "input_slots/additional_item_slot": "ui/cartography_screen.json", + "output_description_label": "ui/cartography_screen.json", + "main_panel": "ui/cartography_screen.json", + "main_panel/input_slots": "ui/cartography_screen.json", + "main_panel/arrow_icon": "ui/cartography_screen.json", + "main_panel/map_image_panel": "ui/cartography_screen.json", + "main_panel/arrow_icon2": "ui/cartography_screen.json", + "main_panel/result_item_slot": "ui/cartography_screen.json", + "top_half_panel": "ui/cartography_screen.json", + "top_half_panel/padding1": "ui/cartography_screen.json", + "top_half_panel/title_panel": "ui/cartography_screen.json", + "top_half_panel/title_panel/title_label": "ui/cartography_screen.json", + "top_half_panel/padding2": "ui/cartography_screen.json", + "top_half_panel/text_box_panel": "ui/cartography_screen.json", + "top_half_panel/padding3": "ui/cartography_screen.json", + "top_half_panel/padding4": "ui/cartography_screen.json", + "top_half_panel/main_panel_wrap": "ui/cartography_screen.json", + "top_half_panel/main_panel_wrap/main_panel": "ui/cartography_screen.json", + "top_half_panel/output_description_label": "ui/cartography_screen.json", + "top_half_panel/padding5": "ui/cartography_screen.json", + "cartography_panel": "ui/cartography_screen.json", + "cartography_panel/container_gamepad_helpers": "ui/cartography_screen.json", + "cartography_panel/selected_item_details_factory": "ui/cartography_screen.json", + "cartography_panel/item_lock_notification_factory": "ui/cartography_screen.json", + "cartography_panel/root_panel": "ui/cartography_screen.json", + "cartography_panel/root_panel/common_panel": "ui/cartography_screen.json", + "cartography_panel/root_panel/cartography_screen_inventory": "ui/cartography_screen.json", + "cartography_panel/root_panel/cartography_screen_inventory/top_half_panel": "ui/cartography_screen.json", + "cartography_panel/root_panel/cartography_screen_inventory/inventory_panel_bottom_half_with_label": "ui/cartography_screen.json", + "cartography_panel/root_panel/cartography_screen_inventory/hotbar_grid": "ui/cartography_screen.json", + "cartography_panel/root_panel/cartography_screen_inventory/inventory_take_progress_icon_button": "ui/cartography_screen.json", + "cartography_panel/root_panel/inventory_selected_icon_button": "ui/cartography_screen.json", + "cartography_panel/root_panel/gamepad_cursor": "ui/cartography_screen.json", + "cartography_panel/root_panel/tab_close_and_help_button": "ui/cartography_screen.json", + "cartography_panel/flying_item_renderer": "ui/cartography_screen.json", + "cartography_screen": "ui/cartography_screen.json", + }, + "cartography_pocket": { + "vertical_arrow_icon": "ui/cartography_screen_pocket.json", + "chest_item_renderer": "ui/cartography_screen_pocket.json", + "cartography_item_renderer": "ui/cartography_screen_pocket.json", + "input_item_slot": "ui/cartography_screen_pocket.json", + "additional_item_slot": "ui/cartography_screen_pocket.json", + "result_item_slot": "ui/cartography_screen_pocket.json", + "right_panel": "ui/cartography_screen_pocket.json", + "right_panel/content": "ui/cartography_screen_pocket.json", + "right_panel/content/bg": "ui/cartography_screen_pocket.json", + "right_panel/content/cartography_content_stack_panel": "ui/cartography_screen_pocket.json", + "right_panel/navigation_tabs_holder": "ui/cartography_screen_pocket.json", + "right_panel/navigation_tabs_holder/right_navigation_tabs": "ui/cartography_screen_pocket.json", + "right_tab_cartography": "ui/cartography_screen_pocket.json", + "right_navigation_tabs": "ui/cartography_screen_pocket.json", + "right_navigation_tabs/pocket_tab_close_and_help_button": "ui/cartography_screen_pocket.json", + "right_navigation_tabs/fill": "ui/cartography_screen_pocket.json", + "right_navigation_tabs/right_tab_cartography": "ui/cartography_screen_pocket.json", + "input_slots_stack_panel": "ui/cartography_screen_pocket.json", + "input_slots_stack_panel/input_item_slot": "ui/cartography_screen_pocket.json", + "input_slots": "ui/cartography_screen_pocket.json", + "input_slots/input_item_slot": "ui/cartography_screen_pocket.json", + "input_slots/plus_centerer": "ui/cartography_screen_pocket.json", + "input_slots/plus_centerer/plus_sign_icon": "ui/cartography_screen_pocket.json", + "input_slots/additional_item_slot": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/label_holder": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/label_holder/cartography_label": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/padding_1": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/panel": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/panel/input_slots": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/padding_2": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/map_centerer": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/map_centerer/map_image_panel": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/description_centerer": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/description_centerer/output_description_label": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/padding_3": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/arrow_centerer": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/arrow_centerer/vertical_arrow_icon": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/padding_4": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/result_centerer": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/result_centerer/result_item_slot": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/filling_panel": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/text_box_panel": "ui/cartography_screen_pocket.json", + "inventory_panel": "ui/cartography_screen_pocket.json", + "inventory_panel/inventory_title_label_centerer": "ui/cartography_screen_pocket.json", + "inventory_panel/inventory_title_label_centerer/inventory_title_label": "ui/cartography_screen_pocket.json", + "inventory_panel/inventory_scroll_panel": "ui/cartography_screen_pocket.json", + "inventory_scroll_panel": "ui/cartography_screen_pocket.json", + "pattern_button": "ui/cartography_screen_pocket.json", + "pattern_scroll_panel": "ui/cartography_screen_pocket.json", + "left_panel": "ui/cartography_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder": "ui/cartography_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": "ui/cartography_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": "ui/cartography_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": "ui/cartography_screen_pocket.json", + "left_panel/content": "ui/cartography_screen_pocket.json", + "left_panel/content/bg": "ui/cartography_screen_pocket.json", + "left_panel/content/inventory_panel": "ui/cartography_screen_pocket.json", + "left_tab_inventory": "ui/cartography_screen_pocket.json", + "left_navigation_tabs": "ui/cartography_screen_pocket.json", + "left_navigation_tabs/padding": "ui/cartography_screen_pocket.json", + "left_navigation_tabs/left_tab_inventory": "ui/cartography_screen_pocket.json", + "pocket_hotbar_and_content_panels": "ui/cartography_screen_pocket.json", + "cartography_panel": "ui/cartography_screen_pocket.json", + "cartography_panel/pocket_hotbar_and_content_panels": "ui/cartography_screen_pocket.json", + "cartography_panel/container_gamepad_helpers": "ui/cartography_screen_pocket.json", + "cartography_panel/selected_item_details_factory": "ui/cartography_screen_pocket.json", + "cartography_panel/item_lock_notification_factory": "ui/cartography_screen_pocket.json", + "cartography_panel/inventory_selected_icon_button": "ui/cartography_screen_pocket.json", + "cartography_panel/inventory_take_progress_icon_button": "ui/cartography_screen_pocket.json", + "cartography_panel/flying_item_renderer": "ui/cartography_screen_pocket.json", + }, + "chalkboard": { + "text_edit_control": "ui/chalkboard_screen.json", + "locked_toggle": "ui/chalkboard_screen.json", + "locked_label": "ui/chalkboard_screen.json", + "lock_control": "ui/chalkboard_screen.json", + "lock_control/toggle": "ui/chalkboard_screen.json", + "lock_control/pad_wrap": "ui/chalkboard_screen.json", + "lock_control/pad_wrap/label": "ui/chalkboard_screen.json", + "gamepad_helpers": "ui/chalkboard_screen.json", + "gamepad_helpers/gamepad_helper_a": "ui/chalkboard_screen.json", + "chalkboard_screen": "ui/chalkboard_screen.json", + "chalkboard_root": "ui/chalkboard_screen.json", + "chalkboard_content": "ui/chalkboard_screen.json", + "chalkboard_content/gamepad_helpers": "ui/chalkboard_screen.json", + "chalkboard_content/edit_box": "ui/chalkboard_screen.json", + "chalkboard_content/locked_toggle": "ui/chalkboard_screen.json", + }, + "chat": { + "down_arrow_image": "ui/chat_screen.json", + "keyboard_image": "ui/chat_screen.json", + "copy_image": "ui/chat_screen.json", + "paste_image": "ui/chat_screen.json", + "gear_image": "ui/chat_screen.json", + "send_image": "ui/chat_screen.json", + "send_panel": "ui/chat_screen.json", + "send_panel/send_image_panel": "ui/chat_screen.json", + "send_panel/send_image_panel/send_image": "ui/chat_screen.json", + "send_panel/gamepad_x_button": "ui/chat_screen.json", + "send_panel/gamepad_x_button/side_padding": "ui/chat_screen.json", + "send_panel/gamepad_x_button/gamepad_x_button_image": "ui/chat_screen.json", + "send_panel/gamepad_x_button/gamepad_x_button_image/icon": "ui/chat_screen.json", + "keyboard_image_panel": "ui/chat_screen.json", + "keyboard_image_panel/keyboard_image": "ui/chat_screen.json", + "keyboard_image_panel/down_arrow_image": "ui/chat_screen.json", + "small_button": "ui/chat_screen.json", + "keyboard_button": "ui/chat_screen.json", + "chat_settings_button": "ui/chat_screen.json", + "send_button": "ui/chat_screen.json", + "messages_text": "ui/chat_screen.json", + "messages_text/text": "ui/chat_screen.json", + "message_tts_wrapper": "ui/chat_screen.json", + "messages_stack_panel": "ui/chat_screen.json", + "messages_scrolling_panel": "ui/chat_screen.json", + "text_edit_box": "ui/chat_screen.json", + "commands_background": "ui/chat_screen.json", + "click_autocomplete_is_focused": "ui/chat_screen.json", + "auto_complete_panel_contents_with_item": "ui/chat_screen.json", + "auto_complete_panel_contents_with_item/auto_complete_item_renderer": "ui/chat_screen.json", + "auto_complete_panel_contents_with_item/text": "ui/chat_screen.json", + "auto_complete_panel_contents_with_item/autocomplete_button": "ui/chat_screen.json", + "auto_complete_panel_contents_with_item/autocomplete_button/default": "ui/chat_screen.json", + "auto_complete_panel_contents_with_item/autocomplete_button/hover": "ui/chat_screen.json", + "auto_complete_panel_contents_with_item/autocomplete_button/pressed": "ui/chat_screen.json", + "auto_complete_panel": "ui/chat_screen.json", + "auto_complete_panel/panel": "ui/chat_screen.json", + "auto_complete_panel/panel/auto_complete_grid": "ui/chat_screen.json", + "commands_panel": "ui/chat_screen.json", + "commands_panel/auto_complete_panel": "ui/chat_screen.json", + "chat_bottom_panel": "ui/chat_screen.json", + "chat_bottom_panel/keyboard_button": "ui/chat_screen.json", + "chat_bottom_panel/host_main_button": "ui/chat_screen.json", + "chat_bottom_panel/chat_settings": "ui/chat_screen.json", + "chat_bottom_panel/text_box": "ui/chat_screen.json", + "chat_bottom_panel/send_button": "ui/chat_screen.json", + "title_text": "ui/chat_screen.json", + "title_text/title_panel": "ui/chat_screen.json", + "back_content_panel": "ui/chat_screen.json", + "back_content_panel/back_button": "ui/chat_screen.json", + "back_content_panel/gamepad_back_helper": "ui/chat_screen.json", + "back_content_panel/gamepad_back_helper/gamepad_helper_button": "ui/chat_screen.json", + "coordinate_dropdown_content": "ui/chat_screen.json", + "coordinate_dropdown_content/top_padding": "ui/chat_screen.json", + "coordinate_dropdown_content/my_position": "ui/chat_screen.json", + "coordinate_dropdown_content/block_position": "ui/chat_screen.json", + "coordinate_dropdown_content/bottom_padding": "ui/chat_screen.json", + "coordinate_dropdown": "ui/chat_screen.json", + "popup_toast": "ui/chat_screen.json", + "copy_coordinate_button": "ui/chat_screen.json", + "paste_button": "ui/chat_screen.json", + "chat_header": "ui/chat_screen.json", + "chat_header/title_panel": "ui/chat_screen.json", + "chat_header/title_panel/back_button_content_panel": "ui/chat_screen.json", + "chat_header/title_panel/title": "ui/chat_screen.json", + "chat_header/title_panel/popup_dialog_factory": "ui/chat_screen.json", + "chat_header/title_panel/chat_header_content_area": "ui/chat_screen.json", + "chat_header/title_panel/chat_header_content_area/coordinate_dropdown": "ui/chat_screen.json", + "chat_header/title_panel/chat_header_content_area/coordinates_panel": "ui/chat_screen.json", + "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image": "ui/chat_screen.json", + "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image/coordinates_text": "ui/chat_screen.json", + "chat_header/title_panel/chat_header_content_area/copy_coordinate_button": "ui/chat_screen.json", + "chat_header/title_panel/chat_header_content_area/icon": "ui/chat_screen.json", + "chat_header/title_panel/chat_header_content_area/paste_button": "ui/chat_screen.json", + "chat_screen": "ui/chat_screen.json", + "chat_screen_content": "ui/chat_screen.json", + "chat_screen_content/messages_panel": "ui/chat_screen.json", + "chat_screen_content/chat_bottom_panel": "ui/chat_screen.json", + "chat_screen_content/chat_top_panel": "ui/chat_screen.json", + "chat_screen_content/autocomplete_commands_panel": "ui/chat_screen.json", + "chat_screen_content/host_main_panel": "ui/chat_screen.json", + "chat_screen_content/popup_factory": "ui/chat_screen.json", + "chat_background": "ui/chat_screen.json", + }, + "chat_settings": { + "mute_all_toggle": "ui/chat_settings_menu_screen.json", + "mute_emote_chat_toggle": "ui/chat_settings_menu_screen.json", + "chat_tts_toggle": "ui/chat_settings_menu_screen.json", + "reset_button": "ui/chat_settings_menu_screen.json", + "typeface_dropdown_content": "ui/chat_settings_menu_screen.json", + "typeface_dropdown_content/top_padding": "ui/chat_settings_menu_screen.json", + "typeface_dropdown_content/mojangles": "ui/chat_settings_menu_screen.json", + "typeface_dropdown_content/noto_sans": "ui/chat_settings_menu_screen.json", + "typeface_dropdown_content/bottom_padding": "ui/chat_settings_menu_screen.json", + "typeface_dropdown": "ui/chat_settings_menu_screen.json", + "chat_color_dropdown_content": "ui/chat_settings_menu_screen.json", + "chat_color_dropdown_content/top_padding": "ui/chat_settings_menu_screen.json", + "chat_color_dropdown_content/0": "ui/chat_settings_menu_screen.json", + "chat_color_dropdown_content/1": "ui/chat_settings_menu_screen.json", + "chat_color_dropdown_content/2": "ui/chat_settings_menu_screen.json", + "chat_color_dropdown_content/3": "ui/chat_settings_menu_screen.json", + "chat_color_dropdown_content/4": "ui/chat_settings_menu_screen.json", + "chat_color_dropdown_content/5": "ui/chat_settings_menu_screen.json", + "chat_color_dropdown_content/6": "ui/chat_settings_menu_screen.json", + "chat_color_dropdown_content/bottom_padding": "ui/chat_settings_menu_screen.json", + "colors_dropdown_base": "ui/chat_settings_menu_screen.json", + "chat_color_dropdown": "ui/chat_settings_menu_screen.json", + "mentions_color_dropdown": "ui/chat_settings_menu_screen.json", + "font_size_slider": "ui/chat_settings_menu_screen.json", + "line_spacing_slider": "ui/chat_settings_menu_screen.json", + "colored_icon_panel": "ui/chat_settings_menu_screen.json", + "colored_icon_panel/icon": "ui/chat_settings_menu_screen.json", + "colored_icon_panel/icon_overlay": "ui/chat_settings_menu_screen.json", + "paintbrush": "ui/chat_settings_menu_screen.json", + "line_break": "ui/chat_settings_menu_screen.json", + "line_break/line_break_image": "ui/chat_settings_menu_screen.json", + "chat_settings_scrolling_content": "ui/chat_settings_menu_screen.json", + "chat_settings_scrolling_content/chat_settings_content_area": "ui/chat_settings_menu_screen.json", + "chat_settings_scrolling_content/chat_settings_content_area/mute_all_toggle": "ui/chat_settings_menu_screen.json", + "chat_settings_scrolling_content/chat_settings_content_area/mute_emote_chat_toggle": "ui/chat_settings_menu_screen.json", + "chat_settings_scrolling_content/chat_settings_content_area/chat_tts_toggle": "ui/chat_settings_menu_screen.json", + "chat_settings_scrolling_content/chat_settings_content_area/toggles_to_font_shape": "ui/chat_settings_menu_screen.json", + "chat_settings_scrolling_content/chat_settings_content_area/typeface_dropdown": "ui/chat_settings_menu_screen.json", + "chat_settings_scrolling_content/chat_settings_content_area/font_size": "ui/chat_settings_menu_screen.json", + "chat_settings_scrolling_content/chat_settings_content_area/line_spacing": "ui/chat_settings_menu_screen.json", + "chat_settings_scrolling_content/chat_settings_content_area/font_shape_to_font_colors": "ui/chat_settings_menu_screen.json", + "chat_settings_scrolling_content/chat_settings_content_area/chat_color": "ui/chat_settings_menu_screen.json", + "chat_settings_scrolling_content/chat_settings_content_area/mentions_color": "ui/chat_settings_menu_screen.json", + "chat_settings_scrolling_content/chat_settings_content_area/reset_button": "ui/chat_settings_menu_screen.json", + "chat_setting_scrolling_panel": "ui/chat_settings_menu_screen.json", + "chat_settings_popup": "ui/chat_settings_menu_screen.json", + "popup_factory": "ui/chat_settings_menu_screen.json", + }, + "chest": { + "chest_label": "ui/chest_screen.json", + "chest_grid_item": "ui/chest_screen.json", + "small_chest_grid": "ui/chest_screen.json", + "large_chest_grid": "ui/chest_screen.json", + "small_chest_panel_top_half": "ui/chest_screen.json", + "small_chest_panel_top_half/chest_label": "ui/chest_screen.json", + "small_chest_panel_top_half/small_chest_grid": "ui/chest_screen.json", + "large_chest_panel_top_half": "ui/chest_screen.json", + "large_chest_panel_top_half/chest_label": "ui/chest_screen.json", + "large_chest_panel_top_half/large_chest_grid": "ui/chest_screen.json", + "small_chest_panel": "ui/chest_screen.json", + "small_chest_panel/container_gamepad_helpers": "ui/chest_screen.json", + "small_chest_panel/selected_item_details_factory": "ui/chest_screen.json", + "small_chest_panel/item_lock_notification_factory": "ui/chest_screen.json", + "small_chest_panel/root_panel": "ui/chest_screen.json", + "small_chest_panel/root_panel/common_panel": "ui/chest_screen.json", + "small_chest_panel/root_panel/chest_panel": "ui/chest_screen.json", + "small_chest_panel/root_panel/chest_panel/small_chest_panel_top_half": "ui/chest_screen.json", + "small_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label": "ui/chest_screen.json", + "small_chest_panel/root_panel/chest_panel/hotbar_grid": "ui/chest_screen.json", + "small_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button": "ui/chest_screen.json", + "small_chest_panel/root_panel/chest_panel/flying_item_renderer": "ui/chest_screen.json", + "small_chest_panel/root_panel/inventory_selected_icon_button": "ui/chest_screen.json", + "small_chest_panel/root_panel/gamepad_cursor": "ui/chest_screen.json", + "selected_item_details": "ui/chest_screen.json", + "large_chest_panel": "ui/chest_screen.json", + "large_chest_panel/container_gamepad_helpers": "ui/chest_screen.json", + "large_chest_panel/selected_item_details_factory": "ui/chest_screen.json", + "large_chest_panel/item_lock_notification_factory": "ui/chest_screen.json", + "large_chest_panel/root_panel": "ui/chest_screen.json", + "large_chest_panel/root_panel/common_panel": "ui/chest_screen.json", + "large_chest_panel/root_panel/chest_panel": "ui/chest_screen.json", + "large_chest_panel/root_panel/chest_panel/large_chest_panel_top_half": "ui/chest_screen.json", + "large_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label": "ui/chest_screen.json", + "large_chest_panel/root_panel/chest_panel/hotbar_grid": "ui/chest_screen.json", + "large_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button": "ui/chest_screen.json", + "large_chest_panel/root_panel/chest_panel/flying_item_renderer": "ui/chest_screen.json", + "large_chest_panel/root_panel/inventory_selected_icon_button": "ui/chest_screen.json", + "large_chest_panel/root_panel/gamepad_cursor": "ui/chest_screen.json", + "ender_chest_panel": "ui/chest_screen.json", + "shulker_box_panel": "ui/chest_screen.json", + "barrel_panel": "ui/chest_screen.json", + "small_chest_screen": "ui/chest_screen.json", + "large_chest_screen": "ui/chest_screen.json", + "ender_chest_screen": "ui/chest_screen.json", + "shulker_box_screen": "ui/chest_screen.json", + "barrel_screen": "ui/chest_screen.json", + }, + "choose_realm": { + "realm_screenshot": "ui/choose_realm_screen.json", + "realm_screenshot/picture": "ui/choose_realm_screen.json", + "realms_scroll_content": "ui/choose_realm_screen.json", + "realms_scroll_content/scrolling_panel": "ui/choose_realm_screen.json", + "realms_scroll_panel": "ui/choose_realm_screen.json", + "realms_scroll_panel/realms_stack_panel": "ui/choose_realm_screen.json", + "realms_scroll_panel/realms_stack_panel/realms_world_item_grid": "ui/choose_realm_screen.json", + "realms_scroll_panel/realms_stack_panel/padding_0": "ui/choose_realm_screen.json", + "realms_scroll_panel/realms_stack_panel/add_realm_button": "ui/choose_realm_screen.json", + "realms_scroll_panel/realms_stack_panel/ten_player_button": "ui/choose_realm_screen.json", + "realms_scroll_panel/realms_stack_panel/padding_1": "ui/choose_realm_screen.json", + "realms_scroll_panel/realms_stack_panel/two_player_button": "ui/choose_realm_screen.json", + "realms_world_item_grid": "ui/choose_realm_screen.json", + "realms_world_item": "ui/choose_realm_screen.json", + "realms_world_item/realms_world_item_button": "ui/choose_realm_screen.json", + "realms_world_item_button": "ui/choose_realm_screen.json", + "add_realm_button": "ui/choose_realm_screen.json", + "ten_player_button": "ui/choose_realm_screen.json", + "two_player_button": "ui/choose_realm_screen.json", + "realms_world_content_panel": "ui/choose_realm_screen.json", + "realms_world_content_panel/realm_screenshot": "ui/choose_realm_screen.json", + "realms_world_content_panel/padding": "ui/choose_realm_screen.json", + "realms_world_content_panel/realms_world_content_text_area_panel": "ui/choose_realm_screen.json", + "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel": "ui/choose_realm_screen.json", + "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel/realms_world_header": "ui/choose_realm_screen.json", + "realms_world_content_panel/realms_world_content_status_area_panel": "ui/choose_realm_screen.json", + "realms_world_content_panel/realms_world_content_status_area_panel/world_player_count_text_panel": "ui/choose_realm_screen.json", + "realms_world_content_panel/realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count": "ui/choose_realm_screen.json", + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon": "ui/choose_realm_screen.json", + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_online_icon": "ui/choose_realm_screen.json", + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_unavailable_icon": "ui/choose_realm_screen.json", + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_offline_icon": "ui/choose_realm_screen.json", + "main_panel": "ui/choose_realm_screen.json", + "main_panel/progress_loading_bars": "ui/choose_realm_screen.json", + "main_panel/realms_scroll_content": "ui/choose_realm_screen.json", + "slots_scroll_panel": "ui/choose_realm_screen.json", + "slots_scroll_panel/slots_stack_panel": "ui/choose_realm_screen.json", + "slots_scroll_panel/slots_stack_panel/padding_0": "ui/choose_realm_screen.json", + "slots_scroll_panel/slots_stack_panel/choose_slot_text": "ui/choose_realm_screen.json", + "slots_scroll_panel/slots_stack_panel/padding_1": "ui/choose_realm_screen.json", + "slots_scroll_panel/slots_stack_panel/slots_grid": "ui/choose_realm_screen.json", + "slots_grid": "ui/choose_realm_screen.json", + "slots_grid/slot_1": "ui/choose_realm_screen.json", + "slots_grid/padding_0": "ui/choose_realm_screen.json", + "slots_grid/slot_2": "ui/choose_realm_screen.json", + "slots_grid/padding_1": "ui/choose_realm_screen.json", + "slots_grid/slot_3": "ui/choose_realm_screen.json", + "slot_content_panel": "ui/choose_realm_screen.json", + "slot_content_panel/world_slot_top": "ui/choose_realm_screen.json", + "slot_content_panel/world_slot_top/plus_image": "ui/choose_realm_screen.json", + "slot_content_panel/world_slot_top/world_thumbnail": "ui/choose_realm_screen.json", + "slot_content_panel/world_slot_bottom": "ui/choose_realm_screen.json", + "slot_content_panel/world_slot_bottom/white_line_hover": "ui/choose_realm_screen.json", + "slot_content_panel/world_slot_bottom/world_text_panel": "ui/choose_realm_screen.json", + "slot_content_panel/world_slot_bottom/world_text_panel/background_grey": "ui/choose_realm_screen.json", + "slot_content_panel/world_slot_bottom/world_text_panel/background_green": "ui/choose_realm_screen.json", + "slot_content_panel/world_slot_bottom/world_text_panel/world_text": "ui/choose_realm_screen.json", + "slot_panel": "ui/choose_realm_screen.json", + "slot_panel/slots_scroll_content": "ui/choose_realm_screen.json", + "slot_panel/slots_scroll_content/scrolling_panel": "ui/choose_realm_screen.json", + "choose_realm_screen": "ui/choose_realm_screen.json", + "choose_realm_screen_content": "ui/choose_realm_screen.json", + "choose_realm_screen_content/realm_dialog": "ui/choose_realm_screen.json", + "choose_realm_screen_content/slot_dialog": "ui/choose_realm_screen.json", + "background": "ui/choose_realm_screen.json", + }, + "coin_purchase": { + "black_image": "ui/coin_purchase_screen.json", + "banner_fill": "ui/coin_purchase_screen.json", + "coins_stack_panel": "ui/coin_purchase_screen.json", + "coins_stack_panel/coin": "ui/coin_purchase_screen.json", + "coins_stack_panel/coin_padding": "ui/coin_purchase_screen.json", + "coins_stack_panel/text_padding": "ui/coin_purchase_screen.json", + "coins_stack_panel/text_padding/coins_without_bonus": "ui/coin_purchase_screen.json", + "call_out_coins_stack_panel": "ui/coin_purchase_screen.json", + "call_out_coins_stack_panel/coin": "ui/coin_purchase_screen.json", + "call_out_coins_stack_panel/coin_padding": "ui/coin_purchase_screen.json", + "call_out_coins_stack_panel/text_padding": "ui/coin_purchase_screen.json", + "call_out_coins_stack_panel/text_padding/coins_without_bonus": "ui/coin_purchase_screen.json", + "button_content": "ui/coin_purchase_screen.json", + "button_content/bonus_coins_stack": "ui/coin_purchase_screen.json", + "button_content/call_out_background": "ui/coin_purchase_screen.json", + "button_content/call_out_background/bevel": "ui/coin_purchase_screen.json", + "call_out_button_content": "ui/coin_purchase_screen.json", + "call_out_button_content/call_out_header": "ui/coin_purchase_screen.json", + "call_out_button_content/call_out_bonus_coins_stack": "ui/coin_purchase_screen.json", + "call_out_button_content/call_out_background": "ui/coin_purchase_screen.json", + "call_out_button_content/call_out_background/call_out_border": "ui/coin_purchase_screen.json", + "call_out_header": "ui/coin_purchase_screen.json", + "call_out_header/call_out_banner": "ui/coin_purchase_screen.json", + "call_out_header/call_out_label": "ui/coin_purchase_screen.json", + "bonus_coins_stack": "ui/coin_purchase_screen.json", + "bonus_coins_stack/image_padding": "ui/coin_purchase_screen.json", + "bonus_coins_stack/image_panel": "ui/coin_purchase_screen.json", + "bonus_coins_stack/image_panel/image": "ui/coin_purchase_screen.json", + "bonus_coins_stack/non_bonus_padding_0": "ui/coin_purchase_screen.json", + "bonus_coins_stack/price_panel": "ui/coin_purchase_screen.json", + "bonus_coins_stack/price_panel/coins_stack_panel": "ui/coin_purchase_screen.json", + "bonus_coins_stack/plus_label": "ui/coin_purchase_screen.json", + "bonus_coins_stack/plus_label/plus_label": "ui/coin_purchase_screen.json", + "bonus_coins_stack/non_bonus_padding_1": "ui/coin_purchase_screen.json", + "bonus_coins_stack/bonus_label_panel": "ui/coin_purchase_screen.json", + "bonus_coins_stack/bonus_label_panel/bonus_label": "ui/coin_purchase_screen.json", + "bonus_coins_stack/padding_0": "ui/coin_purchase_screen.json", + "bonus_coins_stack/bonus_price_panel": "ui/coin_purchase_screen.json", + "bonus_coins_stack/bonus_price_panel/coins_stack_panel": "ui/coin_purchase_screen.json", + "bonus_coins_stack/padding_1": "ui/coin_purchase_screen.json", + "bonus_coins_stack/currency_panel": "ui/coin_purchase_screen.json", + "bonus_coins_stack/currency_panel/currency_price_panel": "ui/coin_purchase_screen.json", + "bonus_coins_stack/currency_panel/currency_price_panel/price": "ui/coin_purchase_screen.json", + "bonus_coins_stack/currency_panel/currency_price_panel/debug_price": "ui/coin_purchase_screen.json", + "bonus_coins_stack/padding_2": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/image_padding": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/image_panel": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/image_panel/image": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/non_bonus_padding_0": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/price_panel": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/price_panel/call_out_coins_stack_panel": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/plus_label": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/plus_label/plus_label": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/non_bonus_padding": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/bonus_label_panel": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/bonus_label_panel/bonus_label": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/padding_0": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/bonus_coin_panel": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_0": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel/coin": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/bonus_coin_panel/coin_padding": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel/bonus_coins": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_1": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/padding_1": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/currency_panel": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/currency_panel/currency_price_panel": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/currency_panel/currency_price_panel/price": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/currency_panel/currency_price_panel/debug_price": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/padding_2": "ui/coin_purchase_screen.json", + "price": "ui/coin_purchase_screen.json", + "offer_panel": "ui/coin_purchase_screen.json", + "call_out_offer_panel": "ui/coin_purchase_screen.json", + "offer_item": "ui/coin_purchase_screen.json", + "offer_item/offer_panel": "ui/coin_purchase_screen.json", + "offer_item/call_out_offer_panel": "ui/coin_purchase_screen.json", + "offer_grid_item": "ui/coin_purchase_screen.json", + "offer_grid_item/offer_item": "ui/coin_purchase_screen.json", + "not_enough_coins": "ui/coin_purchase_screen.json", + "faq_button": "ui/coin_purchase_screen.json", + "divider_panel": "ui/coin_purchase_screen.json", + "divider_panel/divider": "ui/coin_purchase_screen.json", + "coin_purchase_panel": "ui/coin_purchase_screen.json", + "coin_purchase_panel/padding_0": "ui/coin_purchase_screen.json", + "coin_purchase_panel/not_enough_coins_panel": "ui/coin_purchase_screen.json", + "coin_purchase_panel/not_enough_coins_panel/not_enough_coins": "ui/coin_purchase_screen.json", + "coin_purchase_panel/padding_1": "ui/coin_purchase_screen.json", + "coin_purchase_panel/coin_purchase_grid": "ui/coin_purchase_screen.json", + "coin_purchase_panel/divider_panel": "ui/coin_purchase_screen.json", + "coin_purchase_panel/faq_button": "ui/coin_purchase_screen.json", + "main_panel": "ui/coin_purchase_screen.json", + "main_panel/coin_purchase_panel": "ui/coin_purchase_screen.json", + "main_panel/loading_background": "ui/coin_purchase_screen.json", + "main_panel/progress_loading_spinner": "ui/coin_purchase_screen.json", + "main_panel/no_offers_panel": "ui/coin_purchase_screen.json", + "background": "ui/coin_purchase_screen.json", + "bundle_description": "ui/coin_purchase_screen.json", + "bundle_description_left": "ui/coin_purchase_screen.json", + "bundle_description_center": "ui/coin_purchase_screen.json", + "bundle_description_right": "ui/coin_purchase_screen.json", + "bundle_coins_stack": "ui/coin_purchase_screen.json", + "bundle_coins_stack/content_panel": "ui/coin_purchase_screen.json", + "bundle_coins_stack/content_panel/text_stack": "ui/coin_purchase_screen.json", + "bundle_coins_stack/content_panel/text_stack/title_label": "ui/coin_purchase_screen.json", + "bundle_coins_stack/content_panel/text_stack/padding_1": "ui/coin_purchase_screen.json", + "bundle_coins_stack/content_panel/text_stack/description_section_factory": "ui/coin_purchase_screen.json", + "bundle_coins_stack/content_panel/thumbnail_panel": "ui/coin_purchase_screen.json", + "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail": "ui/coin_purchase_screen.json", + "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail/coin_image": "ui/coin_purchase_screen.json", + "bundle_coins_stack/content_panel/padding_0": "ui/coin_purchase_screen.json", + "bundle_coins_stack/padding_0": "ui/coin_purchase_screen.json", + "bundle_coins_stack/currency_panel": "ui/coin_purchase_screen.json", + "bundle_coins_stack/currency_panel/currency_price_panel": "ui/coin_purchase_screen.json", + "bundle_coins_stack/currency_panel/currency_price_panel/price": "ui/coin_purchase_screen.json", + "bundle_coins_stack/currency_panel/currency_price_panel/debug_price": "ui/coin_purchase_screen.json", + "bundle_coins_stack/padding_2": "ui/coin_purchase_screen.json", + "bundle_button_content": "ui/coin_purchase_screen.json", + "bundle_button_content/bundle_coins_stack": "ui/coin_purchase_screen.json", + "bundle_button_content/call_out_background": "ui/coin_purchase_screen.json", + "bundle_button_content/call_out_background/bevel": "ui/coin_purchase_screen.json", + "bundle_offer_panel": "ui/coin_purchase_screen.json", + "bundle_offer_item": "ui/coin_purchase_screen.json", + "bundle_offer_item/offer_panel": "ui/coin_purchase_screen.json", + "bundle_offer_grid_item": "ui/coin_purchase_screen.json", + "bundle_offer_grid_item/offer_item": "ui/coin_purchase_screen.json", + "bundle_stack_factory": "ui/coin_purchase_screen.json", + "bundle_factory_panel": "ui/coin_purchase_screen.json", + "bundle_factory_panel/bundle_stack_factory": "ui/coin_purchase_screen.json", + "bundle_panel": "ui/coin_purchase_screen.json", + "bundle_panel/progress_loading_spinner": "ui/coin_purchase_screen.json", + "bundle_panel/loading_background": "ui/coin_purchase_screen.json", + "bundle_panel/bundle_stack_factory": "ui/coin_purchase_screen.json", + }, + "command_block": { + "plus_icon": "ui/command_block_screen.json", + "paste_icon": "ui/command_block_screen.json", + "plus_button": "ui/command_block_screen.json", + "paste_button": "ui/command_block_screen.json", + "icon_dropdown_toggle_button_state_content": "ui/command_block_screen.json", + "icon_dropdown_toggle_button_state_content/icon_panel": "ui/command_block_screen.json", + "icon_dropdown_toggle_button_state_content/icon_panel/dropdown_contents_icon": "ui/command_block_screen.json", + "icon_dropdown_toggle_button_state_content/spacer": "ui/command_block_screen.json", + "icon_dropdown_toggle_button_state_content/label_panel": "ui/command_block_screen.json", + "icon_dropdown_toggle_button_state_content/label_panel/label": "ui/command_block_screen.json", + "icon_dropdown_toggle_button_state_content/arrow_panel": "ui/command_block_screen.json", + "icon_dropdown_toggle_button_state_content/arrow_panel/arrow": "ui/command_block_screen.json", + "command_block_multiline_text_edit_box": "ui/command_block_screen.json", + "command_block_text_edit_box": "ui/command_block_screen.json", + "command_block_helper_stack": "ui/command_block_screen.json", + "command_block_helper_stack/offset": "ui/command_block_screen.json", + "command_block_helper_stack/text_": "ui/command_block_screen.json", + "previous_command_block_info_stack": "ui/command_block_screen.json", + "previous_command_block_info_stack/offset": "ui/command_block_screen.json", + "previous_command_block_info_stack/start_label": "ui/command_block_screen.json", + "previous_command_block_info_stack/offset1": "ui/command_block_screen.json", + "previous_command_block_info_stack/start_label_dynamic_text": "ui/command_block_screen.json", + "cancel_button": "ui/command_block_screen.json", + "blocktype_dropdown_content": "ui/command_block_screen.json", + "block_type_panel": "ui/command_block_screen.json", + "condition_dropdown_content": "ui/command_block_screen.json", + "condition_mode_panel": "ui/command_block_screen.json", + "redstone_dropdown_content": "ui/command_block_screen.json", + "redstone_mode_panel": "ui/command_block_screen.json", + "left_scrolling_panel": "ui/command_block_screen.json", + "left_scroll_panel_content": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/offset1": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/offset2": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/offset2/hover_note_text": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/offset3": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/block_type_mode_panel": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/offset4": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/condition_mode_panel": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/offset5": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/redstone_mode_panel": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/offset_execute_on_first_tick": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/option_label_execute_on_first_tick": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/execute_on_first_tick_toggle": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/offset_tick_delay": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/option_label_tick_delay": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/tick_delay_text": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/offset7": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/cancel": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/offset8": "ui/command_block_screen.json", + "left_divider_content": "ui/command_block_screen.json", + "left_divider_content/left_scrolling_panel": "ui/command_block_screen.json", + "right_scrolling_panel": "ui/command_block_screen.json", + "right_scroll_panel_content": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_commands_panel": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_commands_panel/spacer1": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_commands_panel/centering_panel": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_commands_panel/centering_panel/option_label": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_commands_panel/spacer2": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_commands_panel/centering_panel1": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset/command_block_commands_text": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/paste_button": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/plus_button": "ui/command_block_screen.json", + "right_scroll_panel_content/switch_warning_panel": "ui/command_block_screen.json", + "right_scroll_panel_content/switch_warning_panel/switch_warning_label": "ui/command_block_screen.json", + "right_scroll_panel_content/self_label": "ui/command_block_screen.json", + "right_scroll_panel_content/self_label_offset": "ui/command_block_screen.json", + "right_scroll_panel_content/nearest_player_label": "ui/command_block_screen.json", + "right_scroll_panel_content/nearest_player_label_offset": "ui/command_block_screen.json", + "right_scroll_panel_content/random_player_label": "ui/command_block_screen.json", + "right_scroll_panel_content/random_player_label_offset": "ui/command_block_screen.json", + "right_scroll_panel_content/all_players_label": "ui/command_block_screen.json", + "right_scroll_panel_content/all_players_label_offset": "ui/command_block_screen.json", + "right_scroll_panel_content/all_entities_label": "ui/command_block_screen.json", + "right_scroll_panel_content/all_entities_label_offset": "ui/command_block_screen.json", + "right_scroll_panel_content/nearest_label": "ui/command_block_screen.json", + "right_scroll_panel_content/nearest_label_offset": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_previous_output_panel": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/show_output_toggle": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/option_label": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_previous_output_panel/spacer": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel/command_output_text": "ui/command_block_screen.json", + "right_scroll_panel_content/previous_block_type_text": "ui/command_block_screen.json", + "right_scroll_panel_content/offset4": "ui/command_block_screen.json", + "right_scroll_panel_content/previous_conditional_mode_text": "ui/command_block_screen.json", + "right_scroll_panel_content/offset5": "ui/command_block_screen.json", + "right_scroll_panel_content/previous_redstone_mode_text": "ui/command_block_screen.json", + "divider_content": "ui/command_block_screen.json", + "divider_content/left_side": "ui/command_block_screen.json", + "divider_content/right_side": "ui/command_block_screen.json", + "command_block_screen_content": "ui/command_block_screen.json", + "command_block_screen_content/background_divider": "ui/command_block_screen.json", + "command_block_screen_content/background_divider/bg_image": "ui/command_block_screen.json", + "command_block_screen_content/background_divider/dialog_divider": "ui/command_block_screen.json", + "command_block_screen_content/background_divider/header_buttons_stack_panel": "ui/command_block_screen.json", + "command_block_screen_content/background_divider/header_buttons_stack_panel/paste_button": "ui/command_block_screen.json", + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder": "ui/command_block_screen.json", + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/close": "ui/command_block_screen.json", + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize": "ui/command_block_screen.json", + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/default": "ui/command_block_screen.json", + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/hover": "ui/command_block_screen.json", + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/pressed": "ui/command_block_screen.json", + "command_block_screen_content/title": "ui/command_block_screen.json", + "command_block_screen_content/content": "ui/command_block_screen.json", + "command_block_screen_content/maximized_command_block_text": "ui/command_block_screen.json", + "right_divider_content": "ui/command_block_screen.json", + "right_divider_content/right_scrolling_panel": "ui/command_block_screen.json", + "command_block_screen": "ui/command_block_screen.json", + }, + "confirm_delete_account": { + "horizontal_divider": "ui/confirm_delete_account_screen.json", + "image_panel": "ui/confirm_delete_account_screen.json", + "image_panel/image": "ui/confirm_delete_account_screen.json", + "header_panel": "ui/confirm_delete_account_screen.json", + "header_panel/image_panel": "ui/confirm_delete_account_screen.json", + "header_panel/padding": "ui/confirm_delete_account_screen.json", + "header_panel/text_panel": "ui/confirm_delete_account_screen.json", + "header_panel/text_panel/header_text": "ui/confirm_delete_account_screen.json", + "header_panel/text_panel/padding_2": "ui/confirm_delete_account_screen.json", + "header_panel/text_panel/header_text_2": "ui/confirm_delete_account_screen.json", + "dialog_content": "ui/confirm_delete_account_screen.json", + "dialog_content/body_content": "ui/confirm_delete_account_screen.json", + "dialog_content/padding": "ui/confirm_delete_account_screen.json", + "dialog_content/button_panel": "ui/confirm_delete_account_screen.json", + "dialog_content/button_panel/confirm_delete_account_button": "ui/confirm_delete_account_screen.json", + "dialog_content/button_panel/padding": "ui/confirm_delete_account_screen.json", + "dialog_content/button_panel/cancel_delete_account_button": "ui/confirm_delete_account_screen.json", + "confirm_checkbox": "ui/confirm_delete_account_screen.json", + "confirm_checkbox/check_box_wrapper": "ui/confirm_delete_account_screen.json", + "confirm_checkbox/check_box_wrapper/check_box": "ui/confirm_delete_account_screen.json", + "confirm_checkbox/padding": "ui/confirm_delete_account_screen.json", + "confirm_checkbox/label_wrapper": "ui/confirm_delete_account_screen.json", + "confirm_checkbox/label_wrapper/label": "ui/confirm_delete_account_screen.json", + "scrolling_panel": "ui/confirm_delete_account_screen.json", + "description_label_panel": "ui/confirm_delete_account_screen.json", + "description_label_panel/header_label_wrapper": "ui/confirm_delete_account_screen.json", + "description_label_panel/padding": "ui/confirm_delete_account_screen.json", + "description_label_panel/divider_0": "ui/confirm_delete_account_screen.json", + "description_label_panel/confirm_0": "ui/confirm_delete_account_screen.json", + "description_label_panel/divider_1": "ui/confirm_delete_account_screen.json", + "description_label_panel/confirm_1": "ui/confirm_delete_account_screen.json", + "description_label_panel/divider_2": "ui/confirm_delete_account_screen.json", + "description_label_panel/confirm_2": "ui/confirm_delete_account_screen.json", + "description_label_panel/divider_3": "ui/confirm_delete_account_screen.json", + "description_label_panel/confirm_3": "ui/confirm_delete_account_screen.json", + "confirm_delete_account_screen": "ui/confirm_delete_account_screen.json", + "confirm_delete_account_screen_content": "ui/confirm_delete_account_screen.json", + "confirm_delete_account_screen_content/root_panel": "ui/confirm_delete_account_screen.json", + "confirm_delete_account_screen_content/root_panel/dialog": "ui/confirm_delete_account_screen.json", + "screen_dialog": "ui/confirm_delete_account_screen.json", + "background": "ui/confirm_delete_account_screen.json", + }, + "content_log": { + "content_log_label": "ui/content_log.json", + "content_log_grid_item": "ui/content_log.json", + "content_log_grid_item/content_log_background": "ui/content_log.json", + "content_log_grid_item/content_log_background/content_log_text": "ui/content_log.json", + "content_log_panel": "ui/content_log.json", + "content_log_panel/stack_panel": "ui/content_log.json", + }, + "content_log_history": { + "clipboard_icon": "ui/content_log_history_screen.json", + "clipboard_icon_wrapper": "ui/content_log_history_screen.json", + "clipboard_icon_wrapper/stack_panel": "ui/content_log_history_screen.json", + "clipboard_icon_wrapper/stack_panel/icon_panel": "ui/content_log_history_screen.json", + "clipboard_icon_wrapper/stack_panel/icon_panel/icon": "ui/content_log_history_screen.json", + "clipboard_icon_wrapper/stack_panel/offset": "ui/content_log_history_screen.json", + "clipboard_icon_wrapper/stack_panel/label_panel": "ui/content_log_history_screen.json", + "clipboard_icon_wrapper/stack_panel/label_panel/label": "ui/content_log_history_screen.json", + "clipboard_button": "ui/content_log_history_screen.json", + "clear_icon": "ui/content_log_history_screen.json", + "clear_icon_wrapper": "ui/content_log_history_screen.json", + "clear_icon_wrapper/stack_panel": "ui/content_log_history_screen.json", + "clear_icon_wrapper/stack_panel/icon_panel": "ui/content_log_history_screen.json", + "clear_icon_wrapper/stack_panel/icon_panel/icon": "ui/content_log_history_screen.json", + "clear_icon_wrapper/stack_panel/offset": "ui/content_log_history_screen.json", + "clear_icon_wrapper/stack_panel/label_panel": "ui/content_log_history_screen.json", + "clear_icon_wrapper/stack_panel/label_panel/label": "ui/content_log_history_screen.json", + "clear_button": "ui/content_log_history_screen.json", + "horizontal_button_stack_panel": "ui/content_log_history_screen.json", + "horizontal_button_stack_panel/clipboard_button": "ui/content_log_history_screen.json", + "horizontal_button_stack_panel/clear_button": "ui/content_log_history_screen.json", + "content_log_message": "ui/content_log_history_screen.json", + "content_log_message_panel": "ui/content_log_history_screen.json", + "content_log_message_panel/content_log_message": "ui/content_log_history_screen.json", + "content_log_message_panel_panel": "ui/content_log_history_screen.json", + "content_log_message_panel_panel/content_log_message_panel": "ui/content_log_history_screen.json", + "messages_stack_panel": "ui/content_log_history_screen.json", + "messages_scrolling_panel": "ui/content_log_history_screen.json", + "main_stack_panel": "ui/content_log_history_screen.json", + "main_stack_panel/messages_scrolling_panel": "ui/content_log_history_screen.json", + "content_log_history_panel": "ui/content_log_history_screen.json", + "content_log_history_panel/content_log_history_dialog": "ui/content_log_history_screen.json", + "content_log_history_screen": "ui/content_log_history_screen.json", + }, + "crafter_pocket": { + "generic_label": "ui/crafter_screen_pocket.json", + "header_panel": "ui/crafter_screen_pocket.json", + "header_panel/header_background": "ui/crafter_screen_pocket.json", + "header_panel/title_label": "ui/crafter_screen_pocket.json", + "header_area": "ui/crafter_screen_pocket.json", + "header_area/x": "ui/crafter_screen_pocket.json", + "header_area/inventory_header": "ui/crafter_screen_pocket.json", + "header_area/container_header": "ui/crafter_screen_pocket.json", + "dark_bg": "ui/crafter_screen_pocket.json", + "panel_outline": "ui/crafter_screen_pocket.json", + "background_panel": "ui/crafter_screen_pocket.json", + "inventory_panel": "ui/crafter_screen_pocket.json", + "inventory_panel/scrolling_panel": "ui/crafter_screen_pocket.json", + "left_screen": "ui/crafter_screen_pocket.json", + "left_screen/inventory_panel": "ui/crafter_screen_pocket.json", + "crafter_input_grid": "ui/crafter_screen_pocket.json", + "crafter_disabled_slot": "ui/crafter_screen_pocket.json", + "crafter_disabled_slot/default": "ui/crafter_screen_pocket.json", + "crafter_disabled_slot/hover": "ui/crafter_screen_pocket.json", + "crafter_disabled_slot/pressed": "ui/crafter_screen_pocket.json", + "cell_image": "ui/crafter_screen_pocket.json", + "crafter_highlight_slot": "ui/crafter_screen_pocket.json", + "crafter_container_slot_button_prototype": "ui/crafter_screen_pocket.json", + "crafter_highlight_slot_panel": "ui/crafter_screen_pocket.json", + "crafter_highlight_slot_panel/highlight": "ui/crafter_screen_pocket.json", + "crafter_highlight_slot_panel/highlight/hover_text": "ui/crafter_screen_pocket.json", + "crafter_highlight_slot_panel/white_border": "ui/crafter_screen_pocket.json", + "crafter_enabled_slot_template": "ui/crafter_screen_pocket.json", + "output_slot_hover_info": "ui/crafter_screen_pocket.json", + "output_slot_hover_info/hover": "ui/crafter_screen_pocket.json", + "output_slot_hover_info/output_slot": "ui/crafter_screen_pocket.json", + "output_slot_hover_info/output_slot_border": "ui/crafter_screen_pocket.json", + "output_slot_hover_info/output_count": "ui/crafter_screen_pocket.json", + "panel_crafter": "ui/crafter_screen_pocket.json", + "panel_crafter/item_lock_notification_factory": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/disabled_slot_0_button": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/disabled_slot_1_button": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/disabled_slot_2_button": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/disabled_slot_3_button": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/disabled_slot_4_button": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/disabled_slot_5_button": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/disabled_slot_6_button": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/disabled_slot_7_button": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/disabled_slot_8_button": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/redstone_screen_inventory": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/redstone_screen_inventory/crafter_output": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/red_icon": "ui/crafter_screen_pocket.json", + "right_screen_background": "ui/crafter_screen_pocket.json", + "right_screen": "ui/crafter_screen_pocket.json", + "right_screen/right_screen_bg": "ui/crafter_screen_pocket.json", + "right_screen/right_screen_bg/inventory_panel": "ui/crafter_screen_pocket.json", + "panel": "ui/crafter_screen_pocket.json", + "panel/container_gamepad_helpers": "ui/crafter_screen_pocket.json", + "panel/header": "ui/crafter_screen_pocket.json", + "panel/bg": "ui/crafter_screen_pocket.json", + "panel/inventory": "ui/crafter_screen_pocket.json", + "panel/container": "ui/crafter_screen_pocket.json", + "panel/selected_item_details_factory": "ui/crafter_screen_pocket.json", + "panel/item_lock_notification_factory": "ui/crafter_screen_pocket.json", + "panel/gamepad_cursor": "ui/crafter_screen_pocket.json", + "panel/flying_item_renderer": "ui/crafter_screen_pocket.json", + "crafter": "ui/crafter_screen_pocket.json", + }, + "create_world_upsell": { + "world_icon": "ui/create_world_upsell_screen.json", + "realms_icon": "ui/create_world_upsell_screen.json", + "dark_banner": "ui/create_world_upsell_screen.json", + "grey_banner": "ui/create_world_upsell_screen.json", + "checkmark": "ui/create_world_upsell_screen.json", + "largex": "ui/create_world_upsell_screen.json", + "realms_art_icon": "ui/create_world_upsell_screen.json", + "new_world_button": "ui/create_world_upsell_screen.json", + "new_realm_button": "ui/create_world_upsell_screen.json", + "remove_trial_button": "ui/create_world_upsell_screen.json", + "button_content": "ui/create_world_upsell_screen.json", + "button_content/padding_0": "ui/create_world_upsell_screen.json", + "button_content/icon_panel": "ui/create_world_upsell_screen.json", + "button_content/padding_1": "ui/create_world_upsell_screen.json", + "button_content/label_panel": "ui/create_world_upsell_screen.json", + "realm_button_content": "ui/create_world_upsell_screen.json", + "world_button_content": "ui/create_world_upsell_screen.json", + "realms_button_text_panel": "ui/create_world_upsell_screen.json", + "realms_button_text_panel/new_realm_label": "ui/create_world_upsell_screen.json", + "realms_button_text_panel/new_realm_trial_label": "ui/create_world_upsell_screen.json", + "price_label": "ui/create_world_upsell_screen.json", + "new_realm_label": "ui/create_world_upsell_screen.json", + "new_realm_trial_label": "ui/create_world_upsell_screen.json", + "new_world_label": "ui/create_world_upsell_screen.json", + "button_and_price_panel": "ui/create_world_upsell_screen.json", + "button_and_price_panel/padding": "ui/create_world_upsell_screen.json", + "button_and_price_panel/price_label_panel": "ui/create_world_upsell_screen.json", + "button_and_price_panel/price_label_panel/price": "ui/create_world_upsell_screen.json", + "border_shell": "ui/create_world_upsell_screen.json", + "head_banner_panel": "ui/create_world_upsell_screen.json", + "create_new_realm_content": "ui/create_world_upsell_screen.json", + "create_new_realm_content/head_banner_panel": "ui/create_world_upsell_screen.json", + "create_new_realm_content/head_banner_panel/realm_button_price": "ui/create_world_upsell_screen.json", + "create_new_realm_content/realm_grid": "ui/create_world_upsell_screen.json", + "create_world_upsell_grid_item": "ui/create_world_upsell_screen.json", + "create_world_upsell_grid_item/db": "ui/create_world_upsell_screen.json", + "create_world_upsell_grid_item/gb": "ui/create_world_upsell_screen.json", + "create_world_upsell_grid_item/gp": "ui/create_world_upsell_screen.json", + "grid_panel": "ui/create_world_upsell_screen.json", + "grid_panel/padding": "ui/create_world_upsell_screen.json", + "grid_panel/upsell_text_panel": "ui/create_world_upsell_screen.json", + "grid_panel/upsell_text_panel/upsell_label": "ui/create_world_upsell_screen.json", + "create_new_world_content": "ui/create_world_upsell_screen.json", + "create_new_world_content/head_banner_panel": "ui/create_world_upsell_screen.json", + "create_new_world_content/head_banner_panel/world_button_price": "ui/create_world_upsell_screen.json", + "create_new_world_content/world_grid": "ui/create_world_upsell_screen.json", + "new_world_or_realm_scroll": "ui/create_world_upsell_screen.json", + "create_new_world_or_realm_content": "ui/create_world_upsell_screen.json", + "create_new_world_or_realm_content/world": "ui/create_world_upsell_screen.json", + "create_new_world_or_realm_content/padding": "ui/create_world_upsell_screen.json", + "create_new_world_or_realm_content/realm_content": "ui/create_world_upsell_screen.json", + "new_realm_scroll": "ui/create_world_upsell_screen.json", + "new_realm_content_panel": "ui/create_world_upsell_screen.json", + "new_realm_content_panel/key_art_panel": "ui/create_world_upsell_screen.json", + "new_realm_content_panel/key_art_panel/realms_art_icon": "ui/create_world_upsell_screen.json", + "new_realm_content_panel/padding_hack": "ui/create_world_upsell_screen.json", + "new_realm_content_panel/padding_0": "ui/create_world_upsell_screen.json", + "new_realm_content_panel/new_realm_scroll": "ui/create_world_upsell_screen.json", + "new_realm_content_panel/padding_1": "ui/create_world_upsell_screen.json", + "create_realm_upsell_content": "ui/create_world_upsell_screen.json", + "create_realm_upsell_content/realm_content": "ui/create_world_upsell_screen.json", + "create_realm_upsell_content/padding_0": "ui/create_world_upsell_screen.json", + "create_realm_upsell_content/remove_trial_button": "ui/create_world_upsell_screen.json", + "create_realm_upsell_content/padding_1": "ui/create_world_upsell_screen.json", + "realm_content": "ui/create_world_upsell_screen.json", + "create_world_upsell": "ui/create_world_upsell_screen.json", + "create_world_upsell_realms": "ui/create_world_upsell_screen.json", + "main_panel": "ui/create_world_upsell_screen.json", + "variable_screen_size_panel": "ui/create_world_upsell_screen.json", + "variable_screen_size_panel/dialog_0": "ui/create_world_upsell_screen.json", + "variable_screen_size_panel/dialog_1": "ui/create_world_upsell_screen.json", + "main_panel_realms_only": "ui/create_world_upsell_screen.json", + }, + "credits": { + "fade_in_image": "ui/credits_screen.json", + "fade_out_image": "ui/credits_screen.json", + "skip_panel": "ui/credits_screen.json", + "skip_panel/skip_button": "ui/credits_screen.json", + "skip_panel/exit_credits_input_panel": "ui/credits_screen.json", + "credits_renderer": "ui/credits_screen.json", + "credits_screen_content": "ui/credits_screen.json", + "credits_screen_content/credits_renderer": "ui/credits_screen.json", + "credits_screen_content/vignette_renderer": "ui/credits_screen.json", + "credits_screen_content/fade_in_image": "ui/credits_screen.json", + "credits_screen_content/credits_factory": "ui/credits_screen.json", + "credits_screen_content/whole_screen_input_panel": "ui/credits_screen.json", + "background": "ui/credits_screen.json", + "credits_screen": "ui/credits_screen.json", + }, + "csb_purchase_error": { + "csb_purchase_error_screen": "ui/csb_purchase_error_screen.json", + "purchase_error_screen_content": "ui/csb_purchase_error_screen.json", + "purchase_error_screen_content/main_panel": "ui/csb_purchase_error_screen.json", + "purchase_error_modal_main_panel": "ui/csb_purchase_error_screen.json", + "purchase_error_modal_main_panel/text_panel": "ui/csb_purchase_error_screen.json", + "purchase_error_modal_main_panel/text_panel/text": "ui/csb_purchase_error_screen.json", + "purchase_error_modal_main_panel/padding_1": "ui/csb_purchase_error_screen.json", + "purchase_error_modal_main_panel/art_panel": "ui/csb_purchase_error_screen.json", + "purchase_error_modal_main_panel/art_panel/art": "ui/csb_purchase_error_screen.json", + "purchase_error_modal_main_panel/padding_2": "ui/csb_purchase_error_screen.json", + "purchase_error_modal_main_panel/error_panel": "ui/csb_purchase_error_screen.json", + "purchase_error_modal_main_panel/error_panel/error_code": "ui/csb_purchase_error_screen.json", + "purchase_error_modal_main_panel/error_panel/correlation_id": "ui/csb_purchase_error_screen.json", + "purchase_error_modal_back_button": "ui/csb_purchase_error_screen.json", + }, + "csb": { + "csb_pdp_screen": "ui/csb_screen.json", + "csb_upgrade_notice_screen": "ui/csb_screen.json", + "csb_background": "ui/csb_screen.json", + "gradient_image_stack": "ui/csb_screen.json", + "gradient_image_stack/gradient": "ui/csb_screen.json", + "gradient_content_panel": "ui/csb_screen.json", + "gradient_content_panel/gradient": "ui/csb_screen.json", + "gradient_content_panel/particles": "ui/csb_screen.json", + "gradient_content_panel/content_panel": "ui/csb_screen.json", + "csb_screen_main_panel": "ui/csb_screen.json", + "csb_main_panel": "ui/csb_screen.json", + "csb_main_panel/root_panel": "ui/csb_screen.json", + "csb_main_panel/root_panel/main_panel": "ui/csb_screen.json", + "dialog_content": "ui/csb_screen.json", + "dialog_content/selector_area": "ui/csb_screen.json", + "dialog_content/padding_1": "ui/csb_screen.json", + "dialog_content/allow_divider_offset_panel": "ui/csb_screen.json", + "dialog_content/allow_divider_offset_panel/left_right_pane_divider": "ui/csb_screen.json", + "dialog_content/padding_2": "ui/csb_screen.json", + "dialog_content/content_area": "ui/csb_screen.json", + "dialog_content/padding_3": "ui/csb_screen.json", + "selector_area": "ui/csb_screen.json", + "selector_area/scrolling_panel": "ui/csb_screen.json", + "scrollable_selector_area_content": "ui/csb_screen.json", + "scrollable_selector_area_content/focus_reset_input_panel": "ui/csb_screen.json", + "scrollable_selector_area_content/csb_toggle": "ui/csb_screen.json", + "scrollable_selector_area_content/content_toggle": "ui/csb_screen.json", + "scrollable_selector_area_content/faq_toggle": "ui/csb_screen.json", + "scrollable_selector_area_content/toggle_section_divider": "ui/csb_screen.json", + "scrollable_selector_area_content/buy_now_toggle": "ui/csb_screen.json", + "scrollable_selector_area_content/xbl_btn_panel": "ui/csb_screen.json", + "scrollable_selector_area_content/xbl_btn_panel/xbl_btn": "ui/csb_screen.json", + "section_toggle_base": "ui/csb_screen.json", + "tab_button_text": "ui/csb_screen.json", + "toggle_base": "ui/csb_screen.json", + "toggle_base/toggle": "ui/csb_screen.json", + "toggle_base/padding": "ui/csb_screen.json", + "csb_toggle": "ui/csb_screen.json", + "content_toggle": "ui/csb_screen.json", + "faq_toggle": "ui/csb_screen.json", + "buy_now_toggle": "ui/csb_screen.json", + "left_right_pane_divider": "ui/csb_screen.json", + "content_area": "ui/csb_screen.json", + "content_area/control": "ui/csb_screen.json", + "content_area/control/scrolling_panel_csb": "ui/csb_screen.json", + "section_content_panels": "ui/csb_screen.json", + "vertical_padding_4px": "ui/csb_screen.json", + "section_base": "ui/csb_screen.json", + "buy_now_content_section": "ui/csb_screen.json", + "buy_now_content_section/vertical_padding": "ui/csb_screen.json", + "buy_now_content_section/content": "ui/csb_screen.json", + "markdown_background_animated": "ui/csb_screen.json", + "markdown_background_animated/csb_chevron": "ui/csb_screen.json", + "markdown_background": "ui/csb_screen.json", + "markdown_background/banner_panel": "ui/csb_screen.json", + "markdown_background/banner_panel/banner": "ui/csb_screen.json", + "markdown_background/banner_panel/banner/banner_stack_panel": "ui/csb_screen.json", + "markdown_background/banner_panel/banner/banner_stack_panel/0": "ui/csb_screen.json", + "markdown_background/triangle_panel": "ui/csb_screen.json", + "markdown_background/triangle_panel/triangle": "ui/csb_screen.json", + "empty_label": "ui/csb_screen.json", + "full_width_section_divider": "ui/csb_screen.json", + }, + "csb_content": { + "csb_content_section": "ui/csb_sections/content_section.json", + "csb_content_section/content_section_vertical_padding_1": "ui/csb_sections/content_section.json", + "csb_content_section/popular_packs_label_panel": "ui/csb_sections/content_section.json", + "csb_content_section/popular_packs_label_panel/label_with_gradient": "ui/csb_sections/content_section.json", + "csb_content_section/popular_packs_label_panel/tts_border": "ui/csb_sections/content_section.json", + "csb_content_section/content_section_vertical_padding_2": "ui/csb_sections/content_section.json", + "csb_content_section/content_pack_types": "ui/csb_sections/content_section.json", + "csb_content_section/content_packs_included": "ui/csb_sections/content_section.json", + "csb_content_section/content_section_vertical_padding_3": "ui/csb_sections/content_section.json", + "content_pack_types_section": "ui/csb_sections/content_section.json", + "content_pack_types_section/pack_types": "ui/csb_sections/content_section.json", + "content_pack_types_section/padding": "ui/csb_sections/content_section.json", + "content_packs_included_section": "ui/csb_sections/content_section.json", + "content_packs_included_section/popular_packs": "ui/csb_sections/content_section.json", + "content_packs_included_section/section_divider": "ui/csb_sections/content_section.json", + "pack_types": "ui/csb_sections/content_section.json", + "pack_types/padding_01": "ui/csb_sections/content_section.json", + "pack_types/pack_types_1": "ui/csb_sections/content_section.json", + "pack_types/padding_02": "ui/csb_sections/content_section.json", + "pack_types/pack_types_2": "ui/csb_sections/content_section.json", + "pack_types/padding_03": "ui/csb_sections/content_section.json", + "pack_types_1": "ui/csb_sections/content_section.json", + "pack_types_1/worlds": "ui/csb_sections/content_section.json", + "pack_types_1/padding_01": "ui/csb_sections/content_section.json", + "pack_types_1/textures": "ui/csb_sections/content_section.json", + "pack_types_1/padding_02": "ui/csb_sections/content_section.json", + "pack_types_1/persona": "ui/csb_sections/content_section.json", + "pack_types_2": "ui/csb_sections/content_section.json", + "pack_types_2/padding_1": "ui/csb_sections/content_section.json", + "pack_types_2/skins": "ui/csb_sections/content_section.json", + "pack_types_2/padding_2": "ui/csb_sections/content_section.json", + "pack_types_2/mashups": "ui/csb_sections/content_section.json", + "pack_types_2/padding_3": "ui/csb_sections/content_section.json", + "pack_type_description": "ui/csb_sections/content_section.json", + "pack_type_description/image_nesting_panel": "ui/csb_sections/content_section.json", + "pack_type_description/image_nesting_panel/texture": "ui/csb_sections/content_section.json", + "pack_type_description/padding_0": "ui/csb_sections/content_section.json", + "pack_type_description/description_nesting_panel": "ui/csb_sections/content_section.json", + "pack_type_description/description_nesting_panel/description_label": "ui/csb_sections/content_section.json", + "pack_type_description/description_nesting_panel/tts_border": "ui/csb_sections/content_section.json", + "pack_type_description/padding_1": "ui/csb_sections/content_section.json", + "popular_packs": "ui/csb_sections/content_section.json", + "popular_packs/padding_0": "ui/csb_sections/content_section.json", + "popular_packs/pack_grid": "ui/csb_sections/content_section.json", + "popular_packs/view_all_packs_panel": "ui/csb_sections/content_section.json", + "popular_packs/view_all_packs_panel/view_all_packs_button": "ui/csb_sections/content_section.json", + "popular_packs/view_all_packs_panel/padding": "ui/csb_sections/content_section.json", + "popular_packs/view_all_packs_panel/view_character_creator_items": "ui/csb_sections/content_section.json", + "popular_packs/padding_1": "ui/csb_sections/content_section.json", + "popular_packs_label": "ui/csb_sections/content_section.json", + "packs_collection": "ui/csb_sections/content_section.json", + "packs_collection/row_1": "ui/csb_sections/content_section.json", + "packs_collection/row_1/pack_image_grid_item_0": "ui/csb_sections/content_section.json", + "packs_collection/row_1/padding": "ui/csb_sections/content_section.json", + "packs_collection/row_1/pack_image_grid_item_1": "ui/csb_sections/content_section.json", + "packs_collection/padding_1": "ui/csb_sections/content_section.json", + "packs_collection/row_2": "ui/csb_sections/content_section.json", + "packs_collection/row_2/pack_image_grid_item_0": "ui/csb_sections/content_section.json", + "packs_collection/row_2/padding": "ui/csb_sections/content_section.json", + "packs_collection/row_2/pack_image_grid_item_1": "ui/csb_sections/content_section.json", + "packs_collection/padding_2": "ui/csb_sections/content_section.json", + "pack_image_grid_item": "ui/csb_sections/content_section.json", + "pack_image_grid_item/bg": "ui/csb_sections/content_section.json", + "pack_image_grid_item/bg/featured_key_art": "ui/csb_sections/content_section.json", + "pack_image_grid_item/bg/progress_loading": "ui/csb_sections/content_section.json", + "pack_image_grid_item/offer_button": "ui/csb_sections/content_section.json", + "pack_image_grid_item/offer_button/default": "ui/csb_sections/content_section.json", + "pack_image_grid_item/offer_button/hover": "ui/csb_sections/content_section.json", + "pack_image_grid_item/offer_button/pressed": "ui/csb_sections/content_section.json", + }, + "csb_banner": { + "csb_banner": "ui/csb_sections/csb_banner.json", + "csb_banner/static_button": "ui/csb_sections/csb_banner.json", + "csb_banner/animated_button": "ui/csb_sections/csb_banner.json", + "csb_banner_slim": "ui/csb_sections/csb_banner.json", + "csb_banner_slim/banner_button": "ui/csb_sections/csb_banner.json", + "csb_banner_portal": "ui/csb_sections/csb_banner.json", + "csb_banner_portal/banner_button": "ui/csb_sections/csb_banner.json", + "promo_banner_csb_button": "ui/csb_sections/csb_banner.json", + "promo_banner_csb_button/default": "ui/csb_sections/csb_banner.json", + "promo_banner_csb_button/hover": "ui/csb_sections/csb_banner.json", + "csb_banner_slim_content": "ui/csb_sections/csb_banner.json", + "csb_banner_slim_content/banner_content": "ui/csb_sections/csb_banner.json", + "csb_banner_portal_content": "ui/csb_sections/csb_banner.json", + "csb_banner_portal_content/banner_content": "ui/csb_sections/csb_banner.json", + "slim_logo_panel": "ui/csb_sections/csb_banner.json", + "slim_logo_panel/mpp_logo": "ui/csb_sections/csb_banner.json", + "portal_logo_panel": "ui/csb_sections/csb_banner.json", + "portal_logo_panel/mpp_logo": "ui/csb_sections/csb_banner.json", + "csb_banner_new_content": "ui/csb_sections/csb_banner.json", + "csb_banner_new_content/text": "ui/csb_sections/csb_banner.json", + "csb_banner_new_content/text/logo_panel": "ui/csb_sections/csb_banner.json", + "csb_banner_new_content/text/offer_panel": "ui/csb_sections/csb_banner.json", + "csb_banner_new_content/text/offer_panel/upsell_text": "ui/csb_sections/csb_banner.json", + "csb_banner_new_content/text/pixel_art": "ui/csb_sections/csb_banner.json", + "sdl_upsell_text_component_factory": "ui/csb_sections/csb_banner.json", + "csb_banner_content": "ui/csb_sections/csb_banner.json", + "csb_banner_content/banner": "ui/csb_sections/csb_banner.json", + "csb_banner_content/text": "ui/csb_sections/csb_banner.json", + "csb_banner_content/text/logo_panel": "ui/csb_sections/csb_banner.json", + "csb_banner_content/text/logo_panel/logo": "ui/csb_sections/csb_banner.json", + "csb_banner_content/text/offer_panel": "ui/csb_sections/csb_banner.json", + "csb_banner_content/text/offer_panel/offer": "ui/csb_sections/csb_banner.json", + "csb_banner_content/text/learn_more_panel": "ui/csb_sections/csb_banner.json", + "csb_banner_content/text/learn_more_panel/learn_more": "ui/csb_sections/csb_banner.json", + "csb_banner_content/text/learn_more_panel/learn_more/more": "ui/csb_sections/csb_banner.json", + "csb_banner_content/text/learn_more_panel/learn_more/more_chevron": "ui/csb_sections/csb_banner.json", + "animated_promo_banner_csb_button": "ui/csb_sections/csb_banner.json", + "animated_promo_banner_csb_button/default": "ui/csb_sections/csb_banner.json", + "animated_promo_banner_csb_button/hover": "ui/csb_sections/csb_banner.json", + "animated_csb_banner_content": "ui/csb_sections/csb_banner.json", + "animated_csb_banner_content/banner": "ui/csb_sections/csb_banner.json", + "animated_csb_banner_content/text": "ui/csb_sections/csb_banner.json", + "animated_csb_banner_content/text/logo_panel": "ui/csb_sections/csb_banner.json", + "animated_csb_banner_content/text/logo_panel/logo": "ui/csb_sections/csb_banner.json", + "animated_csb_banner_content/text/offer_panel": "ui/csb_sections/csb_banner.json", + "animated_csb_banner_content/text/offer_panel/offer": "ui/csb_sections/csb_banner.json", + "animated_csb_banner_content/text/learn_more_panel": "ui/csb_sections/csb_banner.json", + "animated_csb_banner_content/text/learn_more_panel/learn_more": "ui/csb_sections/csb_banner.json", + "animated_csb_banner_content/text/learn_more_panel/learn_more/more": "ui/csb_sections/csb_banner.json", + "animated_csb_banner_content/text/learn_more_panel/learn_more/more_chevron": "ui/csb_sections/csb_banner.json", + "still_pixel_art_panel": "ui/csb_sections/csb_banner.json", + "still_pixel_art_panel/banner": "ui/csb_sections/csb_banner.json", + "animated_pixel_art_panel": "ui/csb_sections/csb_banner.json", + "animated_pixel_art_panel/mygif": "ui/csb_sections/csb_banner.json", + "image_component_factory": "ui/csb_sections/csb_banner.json", + "image_asset_factory": "ui/csb_sections/csb_banner.json", + }, + "csb_buy": { + "buy_now_content": "ui/csb_sections/csb_buy_now_screen.json", + "buy_now_content/description_stack": "ui/csb_sections/csb_buy_now_screen.json", + "buy_now_content/terms_and_conditions": "ui/csb_sections/csb_buy_now_screen.json", + "buy_now_content/padding_2": "ui/csb_sections/csb_buy_now_screen.json", + "buy_now_content/button_panel": "ui/csb_sections/csb_buy_now_screen.json", + "buy_now_content/button_panel/buy_button": "ui/csb_sections/csb_buy_now_screen.json", + "buy_now_content/button_panel/icon_panel": "ui/csb_sections/csb_buy_now_screen.json", + "buy_now_content/padding_3": "ui/csb_sections/csb_buy_now_screen.json", + "buy_now_content/terms": "ui/csb_sections/csb_buy_now_screen.json", + "content_text_section": "ui/csb_sections/csb_buy_now_screen.json", + "content_text_section/text_description": "ui/csb_sections/csb_buy_now_screen.json", + "content_text_section/padding": "ui/csb_sections/csb_buy_now_screen.json", + "content_description": "ui/csb_sections/csb_buy_now_screen.json", + "content_description/content_description_label": "ui/csb_sections/csb_buy_now_screen.json", + "content_description/tts_hover": "ui/csb_sections/csb_buy_now_screen.json", + "trial_image_and_description": "ui/csb_sections/csb_buy_now_screen.json", + "trial_image_and_description/image_border": "ui/csb_sections/csb_buy_now_screen.json", + "trial_image_and_description/padding": "ui/csb_sections/csb_buy_now_screen.json", + "trial_image_and_description/description_text": "ui/csb_sections/csb_buy_now_screen.json", + "trial_image_and_description/description_text/descriptions_label": "ui/csb_sections/csb_buy_now_screen.json", + "trial_image_and_description/description_text/tts_hover": "ui/csb_sections/csb_buy_now_screen.json", + "title_text": "ui/csb_sections/csb_buy_now_screen.json", + "title_text/inner_text": "ui/csb_sections/csb_buy_now_screen.json", + "title_text/tts_hover": "ui/csb_sections/csb_buy_now_screen.json", + "description_stack": "ui/csb_sections/csb_buy_now_screen.json", + "description_stack/title_with_gradient": "ui/csb_sections/csb_buy_now_screen.json", + "description_stack/padding": "ui/csb_sections/csb_buy_now_screen.json", + "description_stack/image_and_description": "ui/csb_sections/csb_buy_now_screen.json", + "terms_and_conditions": "ui/csb_sections/csb_buy_now_screen.json", + "terms_and_conditions/terms_panel": "ui/csb_sections/csb_buy_now_screen.json", + "terms_and_conditions_panel": "ui/csb_sections/csb_buy_now_screen.json", + "terms_and_conditions_panel/name_label": "ui/csb_sections/csb_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel": "ui/csb_sections/csb_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel/banner_fill": "ui/csb_sections/csb_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": "ui/csb_sections/csb_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": "ui/csb_sections/csb_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": "ui/csb_sections/csb_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": "ui/csb_sections/csb_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": "ui/csb_sections/csb_buy_now_screen.json", + "button_text": "ui/csb_sections/csb_buy_now_screen.json", + "mcten_text_centering_panel": "ui/csb_sections/csb_buy_now_screen.json", + "mcten_text_centering_panel/button_text": "ui/csb_sections/csb_buy_now_screen.json", + "view_terms_button": "ui/csb_sections/csb_buy_now_screen.json", + "privacy_policy_button": "ui/csb_sections/csb_buy_now_screen.json", + "buy_button_panel": "ui/csb_sections/csb_buy_now_screen.json", + "buy_button_panel/buy_button": "ui/csb_sections/csb_buy_now_screen.json", + "tool_tip_icon_panel": "ui/csb_sections/csb_buy_now_screen.json", + "tool_tip_icon_panel/issue_icon": "ui/csb_sections/csb_buy_now_screen.json", + "tool_tip_icon_panel/issue_icon/info_icon": "ui/csb_sections/csb_buy_now_screen.json", + "tool_tip_icon_panel/issue_icon/default": "ui/csb_sections/csb_buy_now_screen.json", + "tool_tip_icon_panel/issue_icon/hover": "ui/csb_sections/csb_buy_now_screen.json", + "tool_tip_icon_panel/issue_icon/pressed": "ui/csb_sections/csb_buy_now_screen.json", + "buy_button_content": "ui/csb_sections/csb_buy_now_screen.json", + "buy_button_content/button_chevron_panel": "ui/csb_sections/csb_buy_now_screen.json", + "buy_button_content/button_chevron_panel/buy_button_chevron": "ui/csb_sections/csb_buy_now_screen.json", + "buy_button_content/button_text_centering_panel": "ui/csb_sections/csb_buy_now_screen.json", + "info_icon": "ui/csb_sections/csb_buy_now_screen.json", + "info_icon/panel_icon": "ui/csb_sections/csb_buy_now_screen.json", + }, + "common_csb": { + "csb_expiration_banner": "ui/csb_sections/csb_common.json", + "csb_expiration_banner/background": "ui/csb_sections/csb_common.json", + "csb_expiration_banner/icon": "ui/csb_sections/csb_common.json", + "csb_expiration_banner/text": "ui/csb_sections/csb_common.json", + "csb_icon_large": "ui/csb_sections/csb_common.json", + "csb_header": "ui/csb_sections/csb_common.json", + "csb_header/label_a_text_csb": "ui/csb_sections/csb_common.json", + "csb_header/label_space_text_csb": "ui/csb_sections/csb_common.json", + "csb_header/label_b_text_pass": "ui/csb_sections/csb_common.json", + "csb_header_two_lines": "ui/csb_sections/csb_common.json", + "csb_header_two_lines/top_header": "ui/csb_sections/csb_common.json", + "csb_header_two_lines/panel_centre_second_line": "ui/csb_sections/csb_common.json", + "csb_header_two_lines/panel_centre_second_line/sub_header": "ui/csb_sections/csb_common.json", + "csb_gold_button": "ui/csb_sections/csb_common.json", + "csb_gold_text_button": "ui/csb_sections/csb_common.json", + }, + "csb_purchase_amazondevicewarning": { + "csb_purchase_amazondevicewarning_screen": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "screen_content": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "screen_content/main_panel": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "main_panel": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "main_panel/text_panel_1": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "main_panel/text_panel_1/text": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "main_panel/art_panel": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "main_panel/art_panel/art": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "main_panel/padding": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "main_panel/text_panel_2": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "main_panel/text_panel_2/text": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "back_button": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + }, + "csb_purchase_warning": { + "csb_purchase_warning_screen": "ui/csb_sections/csb_purchase_warning_screen.json", + "purchase_warning_screen_content": "ui/csb_sections/csb_purchase_warning_screen.json", + "purchase_warning_screen_content/main_panel": "ui/csb_sections/csb_purchase_warning_screen.json", + "warning_modal_main_panel": "ui/csb_sections/csb_purchase_warning_screen.json", + "warning_modal_main_panel/text_panel_1": "ui/csb_sections/csb_purchase_warning_screen.json", + "warning_modal_main_panel/text_panel_1/text": "ui/csb_sections/csb_purchase_warning_screen.json", + "warning_modal_main_panel/padding_1": "ui/csb_sections/csb_purchase_warning_screen.json", + "warning_modal_main_panel/art_panel": "ui/csb_sections/csb_purchase_warning_screen.json", + "warning_modal_main_panel/art_panel/art": "ui/csb_sections/csb_purchase_warning_screen.json", + "warning_modal_main_panel/padding_2": "ui/csb_sections/csb_purchase_warning_screen.json", + "warning_modal_main_panel/text_panel_2": "ui/csb_sections/csb_purchase_warning_screen.json", + "warning_modal_main_panel/text_panel_2/text": "ui/csb_sections/csb_purchase_warning_screen.json", + "warning_modal_back_button": "ui/csb_sections/csb_purchase_warning_screen.json", + }, + "csb_subscription_panel": { + "csb_container": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/fill": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/border": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/content_container": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/content_container/side_image_stack_left": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/content_container/side_image_stack_left/csb_image": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/content_container/padding_02": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/content_container/side_stack_right": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/panel_label": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding_01": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_01_container": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_02_container": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_03_container": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding02": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/button_panel_spacer": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/csb_buttons": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/csb_buttons/button_panel_padding": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/csb_buttons/padding_01": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/csb_buttons/csb_info_button": "ui/csb_sections/csb_subscription_panel.json", + "csb_marketplace_benefit": "ui/csb_sections/csb_subscription_panel.json", + "csb_marketplace_benefit/bullet_holder_01": "ui/csb_sections/csb_subscription_panel.json", + "csb_marketplace_benefit/bullet_holder_01/bullet_spacer": "ui/csb_sections/csb_subscription_panel.json", + "csb_marketplace_benefit/bullet_holder_01/bullet_01": "ui/csb_sections/csb_subscription_panel.json", + "csb_marketplace_benefit/panel_details_ln1": "ui/csb_sections/csb_subscription_panel.json", + "csb_buy_container": "ui/csb_sections/csb_subscription_panel.json", + "csb_buy_container/csb_buy_button": "ui/csb_sections/csb_subscription_panel.json", + "csb_buy_button_text": "ui/csb_sections/csb_subscription_panel.json", + "csb_cancel_button": "ui/csb_sections/csb_subscription_panel.json", + }, + "csb_upsell": { + "csb_upsell_screen": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_compare_dialog": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_compare_dialog/csb_upsell_compare_main_screen": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels/border_panel_left": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels/border_panel_left/border": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels/border_panel_left/background_panel": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels/border_panel_left/left_side_panel": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering/learn_more_left": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels/middle_spacer": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels/border_panel_right": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels/border_panel_right/border": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels/border_panel_right/background_panel": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels/border_panel_right/right_side_panel": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering/learn_more_right": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel/upper_half": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel/upper_half/header_panel": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel/upper_half/header_panel/blank_space": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel/upper_half/header_panel/top_header": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel/upper_half/header_panel/price_amount": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel/middle_spacer": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel/bottom_half": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel/bottom_half/padding_b": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel/bottom_half/bullet_one": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel/bottom_half/padding_0": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel/bottom_half/bullet_two": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel/bottom_half/padding_1": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel/bottom_half/bullet_three": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/upper_half": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/upper_half/marketing_banner": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/upper_half/marketing_banner/background_color": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/upper_half/marketing_banner/marketing_banner_label": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/upper_half/header_panel": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/upper_half/header_panel/top_header": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/upper_half/header_panel/price_amount": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/middle_spacer": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/bottom_half": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/bottom_half/padding_b": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/bottom_half/bullet_one": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/bottom_half/padding_1": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/bottom_half/bullet_two": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/bottom_half/padding_0": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/bottom_half/bullet_three": "ui/csb_sections/csb_upsell_dialog.json", + "csb_big_padding": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_padding": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_padding/desktop": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_padding/pocket": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_desktop_padding": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_pocket_padding": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet/padding_icon_left": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet/padding_icon_vertical": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet/padding_icon_vertical/padding_vertical": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet/padding_icon_vertical/label_icon": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet/padding_icon_right": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_point": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_point/bullet_icon": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_point/label_text": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_split_point": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_split_point/bullet_icon": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_split_point/label_text": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_split_point/space": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_split_point/space/label_text_csb": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_split_point/csb_name": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_split_point/csb_name/csb_name_string": "ui/csb_sections/csb_upsell_dialog.json", + "csb_price": "ui/csb_sections/csb_upsell_dialog.json", + "csb_price/price_details": "ui/csb_sections/csb_upsell_dialog.json", + "csb_price_details": "ui/csb_sections/csb_upsell_dialog.json", + "csb_price_details/price_panel_1": "ui/csb_sections/csb_upsell_dialog.json", + "csb_price_details/price_panel_1/amount": "ui/csb_sections/csb_upsell_dialog.json", + "csb_price_details/price_panel_first_period": "ui/csb_sections/csb_upsell_dialog.json", + "csb_price_details/price_panel_first_period/second_line": "ui/csb_sections/csb_upsell_dialog.json", + "csb_learn_more": "ui/csb_sections/csb_upsell_dialog.json", + "csb_learn_more/learn_more": "ui/csb_sections/csb_upsell_dialog.json", + }, + "csb_packs": { + "view_all_packs_screen": "ui/csb_sections/csb_view_packs_screen.json", + "view_packs_screen_content": "ui/csb_sections/csb_view_packs_screen.json", + "view_packs_screen_content/main_panel": "ui/csb_sections/csb_view_packs_screen.json", + "csb_view_packs_screen_main_panel": "ui/csb_sections/csb_view_packs_screen.json", + "main_panel": "ui/csb_sections/csb_view_packs_screen.json", + "main_panel/offers": "ui/csb_sections/csb_view_packs_screen.json", + "main_panel/progress_loading": "ui/csb_sections/csb_view_packs_screen.json", + "scrolling_content_stack": "ui/csb_sections/csb_view_packs_screen.json", + "scrolling_content_stack/padding_0": "ui/csb_sections/csb_view_packs_screen.json", + "scrolling_content_stack/store_factory": "ui/csb_sections/csb_view_packs_screen.json", + }, + "csb_welcome": { + "csb_welcome_screen": "ui/csb_sections/csb_welcome_screen.json", + "welcome_screen_content": "ui/csb_sections/csb_welcome_screen.json", + "welcome_screen_content/main_panel": "ui/csb_sections/csb_welcome_screen.json", + "welcome_modal_main_panel": "ui/csb_sections/csb_welcome_screen.json", + "welcome_modal_main_panel/art_panel": "ui/csb_sections/csb_welcome_screen.json", + "welcome_modal_main_panel/art_panel/art": "ui/csb_sections/csb_welcome_screen.json", + "welcome_modal_main_panel/padding": "ui/csb_sections/csb_welcome_screen.json", + "welcome_modal_main_panel/text_panel": "ui/csb_sections/csb_welcome_screen.json", + "welcome_modal_main_panel/text_panel/text": "ui/csb_sections/csb_welcome_screen.json", + "welcome_modal_continue_button": "ui/csb_sections/csb_welcome_screen.json", + }, + "csb_faq": { + "faq_bottom_button": "ui/csb_sections/faq_section.json", + "faq_image_section": "ui/csb_sections/faq_section.json", + "faq_image_section/faq_image": "ui/csb_sections/faq_section.json", + "faq_text_section_body": "ui/csb_sections/faq_section.json", + "faq_text_question": "ui/csb_sections/faq_section.json", + "faq_text_section": "ui/csb_sections/faq_section.json", + "faq_text_section/faq_text_question": "ui/csb_sections/faq_section.json", + "faq_text_section/faq_text_answer": "ui/csb_sections/faq_section.json", + "faq_price_bound_text_section": "ui/csb_sections/faq_section.json", + "faq_price_bound_text_section/faq_text_question": "ui/csb_sections/faq_section.json", + "faq_price_bound_text_section/faq_text_answer": "ui/csb_sections/faq_section.json", + "faq_question_body": "ui/csb_sections/faq_section.json", + "faq_question_body/0": "ui/csb_sections/faq_section.json", + "faq_question_body_stack": "ui/csb_sections/faq_section.json", + "faq_question_body_horz_padding": "ui/csb_sections/faq_section.json", + "image_left_faq_question_body": "ui/csb_sections/faq_section.json", + "image_right_faq_question_body": "ui/csb_sections/faq_section.json", + "image_left_faq_price_bound": "ui/csb_sections/faq_section.json", + "image_right_faq_price_bound": "ui/csb_sections/faq_section.json", + "faq_section_header_space": "ui/csb_sections/faq_section.json", + "faq_section_divider": "ui/csb_sections/faq_section.json", + "faq_content_section": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_section_vertical_padding_1": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_header": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_section_vertical_padding_2": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_1": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_1_divider": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_2": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_2_divider": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_3": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_3_divider": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_4": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_4_divider": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_5": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_5_divider": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_6": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_6_divider": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_7": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_7_divider": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_8": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_8_divider": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_9": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_9_divider": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_10": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_10_divider": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_button": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_bottom_padding": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_bottom_padding/bottom_left_particles": "ui/csb_sections/faq_section.json", + }, + "csb_landing": { + "landing_content_section": "ui/csb_sections/landing_section.json", + "landing_content_section/landing_section_vertical_padding": "ui/csb_sections/landing_section.json", + "landing_content_section/landing_content": "ui/csb_sections/landing_section.json", + "landing_content_section/landing_content/title_stack": "ui/csb_sections/landing_section.json", + "landing_content_section/landing_content/vertical_small_spacer_0": "ui/csb_sections/landing_section.json", + "landing_content_section/landing_content/vertical_small_spacer_1": "ui/csb_sections/landing_section.json", + "landing_content_section/landing_content/info_stack": "ui/csb_sections/landing_section.json", + "landing_content_section/landing_content/vertical_small_spacer_2": "ui/csb_sections/landing_section.json", + "horizontal_small_spacer": "ui/csb_sections/landing_section.json", + "vertical_small_spacer": "ui/csb_sections/landing_section.json", + "vertical_large_spacer": "ui/csb_sections/landing_section.json", + "title_stack": "ui/csb_sections/landing_section.json", + "title_stack/title_image_panel": "ui/csb_sections/landing_section.json", + "title_stack/title_space": "ui/csb_sections/landing_section.json", + "title_stack/action_button": "ui/csb_sections/landing_section.json", + "title_stack/sign_in_button": "ui/csb_sections/landing_section.json", + "title_stack/vertical_space2": "ui/csb_sections/landing_section.json", + "title_stack/gradient_panel": "ui/csb_sections/landing_section.json", + "title_stack/gradient_panel/label_with_gradient": "ui/csb_sections/landing_section.json", + "title_stack/gradient_panel/tts_hover": "ui/csb_sections/landing_section.json", + "title_stack/gradient_panel2": "ui/csb_sections/landing_section.json", + "title_stack/gradient_panel2/label_with_gradient2": "ui/csb_sections/landing_section.json", + "title_stack/gradient_panel2/tts_hover": "ui/csb_sections/landing_section.json", + "subscription_includes_text": "ui/csb_sections/landing_section.json", + "free_trial_text": "ui/csb_sections/landing_section.json", + "title_space": "ui/csb_sections/landing_section.json", + "title_image_panel": "ui/csb_sections/landing_section.json", + "title_image_panel/vertical_small_spacer_1": "ui/csb_sections/landing_section.json", + "title_image_panel/title_image_container": "ui/csb_sections/landing_section.json", + "title_image_panel/title_image_container/title_image": "ui/csb_sections/landing_section.json", + "title_image_panel/vertical_small_spacer_2": "ui/csb_sections/landing_section.json", + "info_stack": "ui/csb_sections/landing_section.json", + "info_stack/info_section_image": "ui/csb_sections/landing_section.json", + "info_stack/info_description_stack_retail": "ui/csb_sections/landing_section.json", + "info_description_stack_retail": "ui/csb_sections/landing_section.json", + "info_description_stack_retail/info_section_stack_1": "ui/csb_sections/landing_section.json", + "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer": "ui/csb_sections/landing_section.json", + "info_description_stack_retail/info_section_stack_1/info_section_text_1": "ui/csb_sections/landing_section.json", + "info_section_stack": "ui/csb_sections/landing_section.json", + "info_section_image_with_border": "ui/csb_sections/landing_section.json", + "info_section_text_1": "ui/csb_sections/landing_section.json", + "info_section_text_1/info_section_text": "ui/csb_sections/landing_section.json", + "info_section_text_1/vertical_small_spacer_0": "ui/csb_sections/landing_section.json", + "info_section_text_1/info_text_bullet_1": "ui/csb_sections/landing_section.json", + "info_section_text_1/vertical_small_spacer_1": "ui/csb_sections/landing_section.json", + "info_section_text_1/info_text_bullet_2": "ui/csb_sections/landing_section.json", + "info_section_text_1/vertical_small_spacer_2": "ui/csb_sections/landing_section.json", + "info_section_text_1/info_text_bullet_3": "ui/csb_sections/landing_section.json", + "info_section_text_1/vertical_small_spacer_3": "ui/csb_sections/landing_section.json", + "info_section_text_1/info_text_bullet_4": "ui/csb_sections/landing_section.json", + "info_section_text_1/vertical_small_spacer_4": "ui/csb_sections/landing_section.json", + "info_section_text_1/info_text_bullet_5": "ui/csb_sections/landing_section.json", + "info_section_text_1/vertical_small_spacer_5": "ui/csb_sections/landing_section.json", + "info_section_text_1/info_text_bullet_6": "ui/csb_sections/landing_section.json", + "info_section_text_1/vertical_large_spacer_6": "ui/csb_sections/landing_section.json", + "info_section_text_2": "ui/csb_sections/landing_section.json", + "info_section_text_2/info_text_bullet_1": "ui/csb_sections/landing_section.json", + "info_section_text_2/vertical_small_spacer_0": "ui/csb_sections/landing_section.json", + "info_section_text_2/info_text_bullet_2": "ui/csb_sections/landing_section.json", + "info_section_text_2/vertical_small_spacer_1": "ui/csb_sections/landing_section.json", + "info_section_text_2/info_text_bullet_4": "ui/csb_sections/landing_section.json", + "info_section_text_2/vertical_small_spacer_3": "ui/csb_sections/landing_section.json", + "info_section_text_2/info_text_bullet_5": "ui/csb_sections/landing_section.json", + "info_section_text": "ui/csb_sections/landing_section.json", + "info_text_bullet": "ui/csb_sections/landing_section.json", + "info_text_bullet/info_text_bullet_bullet": "ui/csb_sections/landing_section.json", + "info_text_bullet/bullet_spacer": "ui/csb_sections/landing_section.json", + "info_text_bullet/info_text_bullet_body": "ui/csb_sections/landing_section.json", + "info_text_bullet/bullet_spacer_end": "ui/csb_sections/landing_section.json", + "info_text_unbulletted": "ui/csb_sections/landing_section.json", + "info_text_unbulletted/info_text_bullet_body": "ui/csb_sections/landing_section.json", + "info_text_body": "ui/csb_sections/landing_section.json", + "info_text_body/text_body": "ui/csb_sections/landing_section.json", + "info_text_body/tts_border": "ui/csb_sections/landing_section.json", + }, + "custom_templates": { + "lock_icon": "ui/custom_templates_screen.json", + "templates_scroll_content": "ui/custom_templates_screen.json", + "templates_scroll_content/scrolling_panel": "ui/custom_templates_screen.json", + "templates_scroll_panel": "ui/custom_templates_screen.json", + "templates_scroll_panel/templates_stack_panel": "ui/custom_templates_screen.json", + "templates_scroll_panel/templates_stack_panel/templates_item_grid": "ui/custom_templates_screen.json", + "templates_item_grid": "ui/custom_templates_screen.json", + "templates_item": "ui/custom_templates_screen.json", + "templates_item/template_item_button": "ui/custom_templates_screen.json", + "template_item_button": "ui/custom_templates_screen.json", + "template_content_panel": "ui/custom_templates_screen.json", + "template_content_panel/template_screenshot": "ui/custom_templates_screen.json", + "template_content_panel/template_text_panel": "ui/custom_templates_screen.json", + "template_content_panel/lock_panel": "ui/custom_templates_screen.json", + "template_content_panel/lock_panel/lock_icon": "ui/custom_templates_screen.json", + "template_screenshot": "ui/custom_templates_screen.json", + "template_screenshot/picture": "ui/custom_templates_screen.json", + "template_text_panel": "ui/custom_templates_screen.json", + "template_text_panel/text_indent": "ui/custom_templates_screen.json", + "template_text_panel/text_indent/top_side": "ui/custom_templates_screen.json", + "template_text_panel/text_indent/top_side/template_name": "ui/custom_templates_screen.json", + "template_text_panel/text_indent/top_side/download_text_label": "ui/custom_templates_screen.json", + "template_text_panel/text_indent/bottom_side": "ui/custom_templates_screen.json", + "template_text_panel/text_indent/bottom_side/template_description": "ui/custom_templates_screen.json", + "template_text_panel/text_indent/bottom_side/template_version": "ui/custom_templates_screen.json", + "template_name": "ui/custom_templates_screen.json", + "template_download_text": "ui/custom_templates_screen.json", + "template_list_text": "ui/custom_templates_screen.json", + "template_description": "ui/custom_templates_screen.json", + "template_version": "ui/custom_templates_screen.json", + "main_panel": "ui/custom_templates_screen.json", + "main_panel/templates_scroll_content": "ui/custom_templates_screen.json", + "custom_templates_screen": "ui/custom_templates_screen.json", + "custom_templates_screen_content": "ui/custom_templates_screen.json", + "custom_templates_screen_content/dialog": "ui/custom_templates_screen.json", + "background": "ui/custom_templates_screen.json", + }, + "world_conversion_complete": { + "background": "ui/world_conversion_complete_screen.json", + "prompt_text": "ui/world_conversion_complete_screen.json", + "prompt_text/message": "ui/world_conversion_complete_screen.json", + "converted_world_preview_name": "ui/world_conversion_complete_screen.json", + "converted_world_preview_date": "ui/world_conversion_complete_screen.json", + "converted_world_preview_game_mode": "ui/world_conversion_complete_screen.json", + "converted_world_preview_filesize": "ui/world_conversion_complete_screen.json", + "converted_world_preview_text_panel": "ui/world_conversion_complete_screen.json", + "converted_world_preview_text_panel/text_indent": "ui/world_conversion_complete_screen.json", + "converted_world_preview_text_panel/text_indent/top_side": "ui/world_conversion_complete_screen.json", + "converted_world_preview_text_panel/text_indent/top_side/converted_world_name": "ui/world_conversion_complete_screen.json", + "converted_world_preview_text_panel/text_indent/top_side/converted_world_date": "ui/world_conversion_complete_screen.json", + "converted_world_preview_text_panel/text_indent/bottom_side": "ui/world_conversion_complete_screen.json", + "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_game_mode": "ui/world_conversion_complete_screen.json", + "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_filesize": "ui/world_conversion_complete_screen.json", + "converted_world_preview_panel": "ui/world_conversion_complete_screen.json", + "converted_world_preview_panel/world_preview_content": "ui/world_conversion_complete_screen.json", + "converted_world_preview_panel/world_preview_content/converted_world_screenshot": "ui/world_conversion_complete_screen.json", + "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content": "ui/world_conversion_complete_screen.json", + "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content/picture": "ui/world_conversion_complete_screen.json", + "converted_world_preview_panel/world_preview_content/converted_world_text_panel": "ui/world_conversion_complete_screen.json", + "main_panel": "ui/world_conversion_complete_screen.json", + "main_panel/padding_0": "ui/world_conversion_complete_screen.json", + "main_panel/prompt_1": "ui/world_conversion_complete_screen.json", + "main_panel/world_entry_container": "ui/world_conversion_complete_screen.json", + "main_panel/world_entry_container/world_entry_sizer": "ui/world_conversion_complete_screen.json", + "main_panel/world_entry_container/world_entry_sizer/world_entry": "ui/world_conversion_complete_screen.json", + "main_panel/buttons_panel_sizer": "ui/world_conversion_complete_screen.json", + "main_panel/buttons_panel_sizer/buttons_panel": "ui/world_conversion_complete_screen.json", + "main_panel/buttons_panel_sizer/buttons_panel/load_game_button": "ui/world_conversion_complete_screen.json", + "main_panel/buttons_panel_sizer/buttons_panel/padding": "ui/world_conversion_complete_screen.json", + "main_panel/buttons_panel_sizer/buttons_panel/return_button": "ui/world_conversion_complete_screen.json", + "world_conversion_complete_screen_content": "ui/world_conversion_complete_screen.json", + "world_conversion_complete_screen_content/dialog": "ui/world_conversion_complete_screen.json", + "world_conversion_complete_screen": "ui/world_conversion_complete_screen.json", + }, + "day_one_experience_intro": { + "padding_horizontal": "ui/day_one_experience_intro_screen.json", + "padding_vertical": "ui/day_one_experience_intro_screen.json", + "label_panel": "ui/day_one_experience_intro_screen.json", + "label_panel/label_text": "ui/day_one_experience_intro_screen.json", + "text_panel": "ui/day_one_experience_intro_screen.json", + "text_panel/padding_00": "ui/day_one_experience_intro_screen.json", + "text_panel/tab_content_description_panel": "ui/day_one_experience_intro_screen.json", + "text_panel/padding_01": "ui/day_one_experience_intro_screen.json", + "dialog_image": "ui/day_one_experience_intro_screen.json", + "image_panel": "ui/day_one_experience_intro_screen.json", + "image_panel/dialog_image_with_border": "ui/day_one_experience_intro_screen.json", + "image_panel/focus_image": "ui/day_one_experience_intro_screen.json", + "top_tab": "ui/day_one_experience_intro_screen.json", + "common_tab_navigation_panel_layout": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_01": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper/gamepad_helper_left_bumper": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_02": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/welcome_navigation_tab": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_03": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/marketplace_navigation_tab": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_04": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/cross_platform_navigation_tab": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_05": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/realms_navigation_tab": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_06": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/villagers_navigation_tab": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_07": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper/gamepad_helper_right_bumper": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_08": "ui/day_one_experience_intro_screen.json", + "tab_header_image_panel": "ui/day_one_experience_intro_screen.json", + "tab_header_image_panel/welcome_tab_content": "ui/day_one_experience_intro_screen.json", + "tab_header_image_panel/marketplace_tab_content": "ui/day_one_experience_intro_screen.json", + "tab_header_image_panel/cross_platform_tab_content": "ui/day_one_experience_intro_screen.json", + "tab_header_image_panel/realms_tab_content": "ui/day_one_experience_intro_screen.json", + "tab_header_image_panel/villager_tab_content": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_content_panel_layout": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_content_panel_layout/welcome_tab_content": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_content_panel_layout/marketplace_tab_content": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_content_panel_layout/cross_platform_tab_content": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_content_panel_layout/realms_tab_content": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_content_panel_layout/villager_tab_content": "ui/day_one_experience_intro_screen.json", + "common_tab_header_image_panel": "ui/day_one_experience_intro_screen.json", + "common_tab_header_image_panel/header_image": "ui/day_one_experience_intro_screen.json", + "common_tab_content_panel": "ui/day_one_experience_intro_screen.json", + "common_tab_content_panel/content": "ui/day_one_experience_intro_screen.json", + "welcome_tab_header_image_panel": "ui/day_one_experience_intro_screen.json", + "welcome_tab_content_panel": "ui/day_one_experience_intro_screen.json", + "marketplace_tab_header_image_panel": "ui/day_one_experience_intro_screen.json", + "marketplace_tab_content_panel": "ui/day_one_experience_intro_screen.json", + "cross_platform_tab_header_image_panel": "ui/day_one_experience_intro_screen.json", + "cross_platform_tab_content_panel": "ui/day_one_experience_intro_screen.json", + "realms_tab_header_image_panel": "ui/day_one_experience_intro_screen.json", + "realms_tab_content_panel": "ui/day_one_experience_intro_screen.json", + "villager_tab_header_image_panel": "ui/day_one_experience_intro_screen.json", + "villager_tab_content_panel": "ui/day_one_experience_intro_screen.json", + "tab_panel": "ui/day_one_experience_intro_screen.json", + "tab_panel/tab_header_image": "ui/day_one_experience_intro_screen.json", + "tab_panel/padding_00": "ui/day_one_experience_intro_screen.json", + "tab_panel/tab_navigation_panel": "ui/day_one_experience_intro_screen.json", + "tab_panel/tab_content_panel": "ui/day_one_experience_intro_screen.json", + "tab_panel/padding_4": "ui/day_one_experience_intro_screen.json", + "tab_panel/continue_button_panel": "ui/day_one_experience_intro_screen.json", + "tab_panel/continue_button_panel/continue_button": "ui/day_one_experience_intro_screen.json", + "day_one_experience_intro_screen": "ui/day_one_experience_intro_screen.json", + "day_one_experience_intro_screen_content": "ui/day_one_experience_intro_screen.json", + "day_one_experience_intro_screen_content/welcome_dialog": "ui/day_one_experience_intro_screen.json", + }, + "day_one_experience": { + "alpha_scroll_background": "ui/day_one_experience_screen.json", + "tip_text": "ui/day_one_experience_screen.json", + "tip_arrow_base": "ui/day_one_experience_screen.json", + "tip_arrow_left": "ui/day_one_experience_screen.json", + "tip_arrow_right": "ui/day_one_experience_screen.json", + "import_time": "ui/day_one_experience_screen.json", + "skins_tip_image": "ui/day_one_experience_screen.json", + "skins_tip_image/arrows": "ui/day_one_experience_screen.json", + "skins_tip_image/arrows/right_arrow": "ui/day_one_experience_screen.json", + "skins_tip_image/arrows/padding": "ui/day_one_experience_screen.json", + "skins_tip_image/arrows/left_arrow": "ui/day_one_experience_screen.json", + "skins_tip_top_text": "ui/day_one_experience_screen.json", + "skins_tip_panel": "ui/day_one_experience_screen.json", + "skins_tip_panel/top_text_sizer": "ui/day_one_experience_screen.json", + "skins_tip_panel/top_text_sizer/settings_and_skin_text": "ui/day_one_experience_screen.json", + "skins_tip_panel/top_text_sizer/settings_text": "ui/day_one_experience_screen.json", + "skins_tip_panel/image_sizer": "ui/day_one_experience_screen.json", + "skins_tip_panel/image_sizer/image_section": "ui/day_one_experience_screen.json", + "skins_tip_panel/bottom_text_sizer": "ui/day_one_experience_screen.json", + "skins_tip_panel/bottom_text_sizer/bottom_text": "ui/day_one_experience_screen.json", + "skin_viewer_panel_text": "ui/day_one_experience_screen.json", + "skin_viewer_panel": "ui/day_one_experience_screen.json", + "skin_viewer_panel/paper_doll_container": "ui/day_one_experience_screen.json", + "skin_viewer_panel/paper_doll_container/paper_doll": "ui/day_one_experience_screen.json", + "skin_viewer_panel/legacy_skin_loading_panel": "ui/day_one_experience_screen.json", + "skin_viewer_panel/bottom_skin_text": "ui/day_one_experience_screen.json", + "skin_viewer_panel/bottom_skin_text/current_skin_text": "ui/day_one_experience_screen.json", + "skin_viewer_panel/bottom_skin_text/default_skin_text": "ui/day_one_experience_screen.json", + "skin_tip_screen": "ui/day_one_experience_screen.json", + "skin_tip_screen/primary_content": "ui/day_one_experience_screen.json", + "skin_tip_screen/primary_content/skin_viewer_panel": "ui/day_one_experience_screen.json", + "skin_tip_screen/primary_content/skin_viewer_panel/skin_viewer": "ui/day_one_experience_screen.json", + "skin_tip_screen/primary_content/padding": "ui/day_one_experience_screen.json", + "skin_tip_screen/primary_content/skins_tip_panel_container": "ui/day_one_experience_screen.json", + "skin_tip_screen/primary_content/skins_tip_panel_container/background": "ui/day_one_experience_screen.json", + "skin_tip_screen/primary_content/skins_tip_panel_container/skins_tip_panel": "ui/day_one_experience_screen.json", + "skin_tip_screen/no_network_message": "ui/day_one_experience_screen.json", + "legacy_world_item": "ui/day_one_experience_screen.json", + "legacy_world_item/header_button_panel": "ui/day_one_experience_screen.json", + "legacy_world_item_grid": "ui/day_one_experience_screen.json", + "world_picker_scrolling_content": "ui/day_one_experience_screen.json", + "world_picker_scrolling_content/padding_0": "ui/day_one_experience_screen.json", + "world_picker_scrolling_content/skip_button": "ui/day_one_experience_screen.json", + "world_picker_scrolling_content/padding_1": "ui/day_one_experience_screen.json", + "world_picker_scrolling_content/loading_legacy_worlds_panel": "ui/day_one_experience_screen.json", + "world_picker_scrolling_content/loading_legacy_worlds_panel/loading_legacy_worlds_label": "ui/day_one_experience_screen.json", + "world_picker_scrolling_content/loading_legacy_worlds_panel/padding": "ui/day_one_experience_screen.json", + "world_picker_scrolling_content/loading_legacy_worlds_panel/progress_loading_bars": "ui/day_one_experience_screen.json", + "world_picker_scrolling_content/padding_2": "ui/day_one_experience_screen.json", + "world_picker_scrolling_content/world_item_grid": "ui/day_one_experience_screen.json", + "world_picker_content": "ui/day_one_experience_screen.json", + "world_picker_content/scrolling_panel": "ui/day_one_experience_screen.json", + "advanced_worlds_screen": "ui/day_one_experience_screen.json", + "advanced_worlds_screen/world_picker": "ui/day_one_experience_screen.json", + "advanced_worlds_screen/padding_1": "ui/day_one_experience_screen.json", + "advanced_worlds_screen/import_time_container": "ui/day_one_experience_screen.json", + "advanced_worlds_screen/import_time_container/import_time_label": "ui/day_one_experience_screen.json", + "next_screen_button_content": "ui/day_one_experience_screen.json", + "next_screen_button_content/arrow_panel": "ui/day_one_experience_screen.json", + "next_screen_button_content/arrow_panel/label_panel": "ui/day_one_experience_screen.json", + "next_screen_button_content/arrow_panel/label_panel/label": "ui/day_one_experience_screen.json", + "next_screen_button_content/arrow_panel/image": "ui/day_one_experience_screen.json", + "next_screen_button_content/loading_panel": "ui/day_one_experience_screen.json", + "next_screen_button": "ui/day_one_experience_screen.json", + "next_panel": "ui/day_one_experience_screen.json", + "next_panel/next_button": "ui/day_one_experience_screen.json", + "common_scrolling_panel": "ui/day_one_experience_screen.json", + "skin_tip_scroll_panel": "ui/day_one_experience_screen.json", + "skin_tip_scroll_panel/skin_tip_screen": "ui/day_one_experience_screen.json", + "worlds_import_scroll_panel": "ui/day_one_experience_screen.json", + "worlds_import_scroll_panel/advanced_screen": "ui/day_one_experience_screen.json", + "common_content": "ui/day_one_experience_screen.json", + "skin_tip_scroll_content": "ui/day_one_experience_screen.json", + "skin_tip_scroll_content/scrolling_panel": "ui/day_one_experience_screen.json", + "world_import_scroll_content": "ui/day_one_experience_screen.json", + "world_import_scroll_content/scrolling_panel": "ui/day_one_experience_screen.json", + "default_tab_content_panel_layout": "ui/day_one_experience_screen.json", + "default_tab_content_panel_layout/skin_tip_tab_content": "ui/day_one_experience_screen.json", + "default_tab_content_panel_layout/world_import_tab_content": "ui/day_one_experience_screen.json", + "default_wizard_screen": "ui/day_one_experience_screen.json", + "default_wizard_screen/tab_content_panel": "ui/day_one_experience_screen.json", + "wizard_screen": "ui/day_one_experience_screen.json", + "wizard_screen_content": "ui/day_one_experience_screen.json", + "wizard_screen_content/main_control": "ui/day_one_experience_screen.json", + "wizard_screen_content/next_button": "ui/day_one_experience_screen.json", + }, + "death": { + "a_button_panel": "ui/death_screen.json", + "a_button_panel/gamepad_helper_a": "ui/death_screen.json", + "you_died_panel": "ui/death_screen.json", + "you_died_panel/you_died_label": "ui/death_screen.json", + "death_reason_panel": "ui/death_screen.json", + "death_reason_panel/death_reason_label": "ui/death_screen.json", + "labels_panel": "ui/death_screen.json", + "labels_panel/fill_1": "ui/death_screen.json", + "labels_panel/you_died": "ui/death_screen.json", + "labels_panel/padd_1": "ui/death_screen.json", + "labels_panel/death_reason": "ui/death_screen.json", + "labels_panel/padd_2": "ui/death_screen.json", + "buttons_panel": "ui/death_screen.json", + "buttons_panel/padd_0": "ui/death_screen.json", + "buttons_panel/respawn_button": "ui/death_screen.json", + "buttons_panel/padd_1": "ui/death_screen.json", + "buttons_panel/main_menu_button": "ui/death_screen.json", + "buttons_panel/fill_2": "ui/death_screen.json", + "buttons_panel/select_button": "ui/death_screen.json", + "death_screen_content": "ui/death_screen.json", + "death_screen_content/death_screen_buttons_and_stuff": "ui/death_screen.json", + "death_screen_content/death_screen_buttons_and_stuff/labels_panel": "ui/death_screen.json", + "death_screen_content/death_screen_buttons_and_stuff/buttons_panel": "ui/death_screen.json", + "death_screen_content/loading_label": "ui/death_screen.json", + "background_gradient": "ui/death_screen.json", + "death_screen": "ui/death_screen.json", + }, + "debug_screen": { + "access_button": "ui/debug_screen.json", + "special_render": "ui/debug_screen.json", + "content_panel": "ui/debug_screen.json", + "content_panel/access_button": "ui/debug_screen.json", + "content_panel/special_render": "ui/debug_screen.json", + "debug_screen": "ui/debug_screen.json", + }, + "dev_console": { + "keyboard_button_content": "ui/dev_console_screen.json", + "keyboard_button_content/keyboard_image": "ui/dev_console_screen.json", + "keyboard_button": "ui/dev_console_screen.json", + "button_content": "ui/dev_console_screen.json", + "button_content/image": "ui/dev_console_screen.json", + "up_arrow": "ui/dev_console_screen.json", + "down_arrow": "ui/dev_console_screen.json", + "send_button": "ui/dev_console_screen.json", + "sent_message_up_button": "ui/dev_console_screen.json", + "sent_message_down_button": "ui/dev_console_screen.json", + "chat_stack_panel": "ui/dev_console_screen.json", + "chat_stack_panel/text_box": "ui/dev_console_screen.json", + "chat_stack_panel/send_button": "ui/dev_console_screen.json", + "chat_stack_panel/sent_message_up_button": "ui/dev_console_screen.json", + "chat_stack_panel/sent_message_down_button": "ui/dev_console_screen.json", + "main_stack_panel": "ui/dev_console_screen.json", + "main_stack_panel/messages_scrolling_panel": "ui/dev_console_screen.json", + "main_stack_panel/chat_stack_panel": "ui/dev_console_screen.json", + "main_with_intellisense": "ui/dev_console_screen.json", + "main_with_intellisense/main_stack": "ui/dev_console_screen.json", + "main_with_intellisense/commands_panel": "ui/dev_console_screen.json", + "dev_console_dialog": "ui/dev_console_screen.json", + "dev_console_screen": "ui/dev_console_screen.json", + }, + "disconnect": { + "disconnect_screen_text": "ui/disconnect_screen.json", + "disconnect_text": "ui/disconnect_screen.json", + "disconnect_title_text": "ui/disconnect_screen.json", + "title_panel": "ui/disconnect_screen.json", + "title_panel/disconnect_title_text": "ui/disconnect_screen.json", + "title_panel/disconnect_text": "ui/disconnect_screen.json", + "menu_button_template": "ui/disconnect_screen.json", + "continue_button": "ui/disconnect_screen.json", + "check_store_button": "ui/disconnect_screen.json", + "exit_button": "ui/disconnect_screen.json", + "ok_button": "ui/disconnect_screen.json", + "open_uri_button": "ui/disconnect_screen.json", + "cancel_button": "ui/disconnect_screen.json", + "button_panel": "ui/disconnect_screen.json", + "button_panel/open_uri_button_panel": "ui/disconnect_screen.json", + "button_panel/open_uri_button_panel/open_uri_button": "ui/disconnect_screen.json", + "button_panel/open_button_panel": "ui/disconnect_screen.json", + "button_panel/open_button_panel/ok_button": "ui/disconnect_screen.json", + "gamepad_helpers": "ui/disconnect_screen.json", + "gamepad_helpers/gamepad_helper_a": "ui/disconnect_screen.json", + "disconnect_screen": "ui/disconnect_screen.json", + "disconnect_screen_content": "ui/disconnect_screen.json", + "disconnect_screen_content/title_panel": "ui/disconnect_screen.json", + "disconnect_screen_content/gamepad_helpers": "ui/disconnect_screen.json", + "spacing_gap": "ui/disconnect_screen.json", + "realms_disconnect_screen": "ui/disconnect_screen.json", + "realms_disconnect_button_panel": "ui/disconnect_screen.json", + "realms_disconnect_button_panel/open_uri_button_panel": "ui/disconnect_screen.json", + "realms_disconnect_button_panel/open_uri_button_panel/open_uri_button": "ui/disconnect_screen.json", + "realms_disconnect_button_panel/realm_buttons_panel": "ui/disconnect_screen.json", + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons": "ui/disconnect_screen.json", + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/check_store_button": "ui/disconnect_screen.json", + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/spacing_gap": "ui/disconnect_screen.json", + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/exit_button": "ui/disconnect_screen.json", + "realms_warning_screen": "ui/disconnect_screen.json", + "realms_warning_button_panel": "ui/disconnect_screen.json", + "realms_warning_button_panel/continue_button_panel": "ui/disconnect_screen.json", + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel": "ui/disconnect_screen.json", + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/check_store_button": "ui/disconnect_screen.json", + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/spacing_gap": "ui/disconnect_screen.json", + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/continue_button": "ui/disconnect_screen.json", + "realms_warning_button_panel/realms_warning_button_gap": "ui/disconnect_screen.json", + "realms_warning_button_panel/cancel_button_panel": "ui/disconnect_screen.json", + "realms_warning_button_panel/cancel_button_panel/cancel_button": "ui/disconnect_screen.json", + "open_account_setting_button": "ui/disconnect_screen.json", + }, + "display_logged_error": { + "display_logged_error_screen": "ui/display_logged_error_screen.json", + "factory_panel": "ui/display_logged_error_screen.json", + "factory_panel/error_dialog_factory": "ui/display_logged_error_screen.json", + "display_logged_error_modal": "ui/display_logged_error_screen.json", + "error_message_stack": "ui/display_logged_error_screen.json", + "error_message_stack/error_message": "ui/display_logged_error_screen.json", + "error_message_stack/error_count": "ui/display_logged_error_screen.json", + "input_blocking_button_base": "ui/display_logged_error_screen.json", + "details_button": "ui/display_logged_error_screen.json", + "dismiss_button": "ui/display_logged_error_screen.json", + "error_details_modal": "ui/display_logged_error_screen.json", + "copy_path_button": "ui/display_logged_error_screen.json", + "hide_error_details_button": "ui/display_logged_error_screen.json", + "error_stack_scrolling_panel": "ui/display_logged_error_screen.json", + "error_stack": "ui/display_logged_error_screen.json", + "error_controller_panel": "ui/display_logged_error_screen.json", + "error_controller_panel/error_message": "ui/display_logged_error_screen.json", + "error_controller_panel/controller_button": "ui/display_logged_error_screen.json", + "error_controller_panel/controller_button/hover": "ui/display_logged_error_screen.json", + "error_controller_panel/controller_button/pressed": "ui/display_logged_error_screen.json", + "error_base": "ui/display_logged_error_screen.json", + "error_base/error_message": "ui/display_logged_error_screen.json", + "error_base/expand_button": "ui/display_logged_error_screen.json", + "error_short": "ui/display_logged_error_screen.json", + "error_expanded": "ui/display_logged_error_screen.json", + }, + "discovery_dialog": { + "service_body_label": "ui/edu_discovery_dialog.json", + "service_button": "ui/edu_discovery_dialog.json", + "service_buttons": "ui/edu_discovery_dialog.json", + "content": "ui/edu_discovery_dialog.json", + "content/body_text": "ui/edu_discovery_dialog.json", + "content/text_to_button_padding": "ui/edu_discovery_dialog.json", + "content/buttons": "ui/edu_discovery_dialog.json", + "service_dialog": "ui/edu_discovery_dialog.json", + "discovery_dialog_factory": "ui/edu_discovery_dialog.json", + }, + "edu_featured": { + "featured_button_content": "ui/edu_featured.json", + "featured_button_content/button_label": "ui/edu_featured.json", + "featured_button": "ui/edu_featured.json", + }, + "edu_quit_button": { + "quit_button": "ui/edu_pause_screen_pause_button.json", + }, + "persona_emote": { + "emote_wheel_screen": "ui/emote_wheel_screen.json", + "emote_wheel_touch_zone": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/top_padding": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/root_panel": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/root_panel/emotes_panel": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/instruction_padding": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/instruction_panel": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/instruction_panel/instruction_background": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/instruction_label_gamepad": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_start": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel/gamepad_exit": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_keyboard": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_touch": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/dressing_room_button_panel": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/dressing_room_button_panel/dressing_room_button": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/bottom_padding": "ui/emote_wheel_screen.json", + "swap_emote_button": "ui/emote_wheel_screen.json", + }, + "enchanting": { + "enchanting_image": "ui/enchanting_screen.json", + "lapis_image": "ui/enchanting_screen.json", + "dust_image": "ui/enchanting_screen.json", + "dust_image_selectable": "ui/enchanting_screen.json", + "dust_image_unselectable": "ui/enchanting_screen.json", + "dust_template": "ui/enchanting_screen.json", + "dust_template/dust_image_selectable": "ui/enchanting_screen.json", + "dust_template/dust_image_unselectable": "ui/enchanting_screen.json", + "dust_panel": "ui/enchanting_screen.json", + "dust_panel/a": "ui/enchanting_screen.json", + "dust_panel/b": "ui/enchanting_screen.json", + "dust_panel/c": "ui/enchanting_screen.json", + "background_with_hover_text": "ui/enchanting_screen.json", + "background_with_hover_text/hover_text": "ui/enchanting_screen.json", + "dark_background": "ui/enchanting_screen.json", + "dark_background_with_hover_text": "ui/enchanting_screen.json", + "active_background": "ui/enchanting_screen.json", + "active_background_with_hover_text": "ui/enchanting_screen.json", + "enchant_runes": "ui/enchanting_screen.json", + "enchant_cost": "ui/enchanting_screen.json", + "success_runes": "ui/enchanting_screen.json", + "fail_runes": "ui/enchanting_screen.json", + "success_cost": "ui/enchanting_screen.json", + "fail_cost": "ui/enchanting_screen.json", + "enchanting_label": "ui/enchanting_screen.json", + "base_button": "ui/enchanting_screen.json", + "unselectable_button": "ui/enchanting_screen.json", + "unselectable_button/default": "ui/enchanting_screen.json", + "unselectable_button/hover": "ui/enchanting_screen.json", + "unselectable_button/pressed": "ui/enchanting_screen.json", + "unselectable_button/rune_text": "ui/enchanting_screen.json", + "unselectable_button/enchant_cost": "ui/enchanting_screen.json", + "selectable_button": "ui/enchanting_screen.json", + "selectable_button/default": "ui/enchanting_screen.json", + "selectable_button/hover": "ui/enchanting_screen.json", + "selectable_button/pressed": "ui/enchanting_screen.json", + "selectable_button/rune_text": "ui/enchanting_screen.json", + "selectable_button/enchant_cost": "ui/enchanting_screen.json", + "enchant_button_panel": "ui/enchanting_screen.json", + "enchant_button_panel/dark_background": "ui/enchanting_screen.json", + "enchant_button_panel/unselectable_button": "ui/enchanting_screen.json", + "enchant_button_panel/selectable_button": "ui/enchanting_screen.json", + "enchanting_panel_top_half": "ui/enchanting_screen.json", + "enchanting_panel_top_half/enchanting_label": "ui/enchanting_screen.json", + "enchanting_panel_top_half/enchanting_book_panel": "ui/enchanting_screen.json", + "enchanting_panel_top_half/enchanting_book_panel/enchanting_book": "ui/enchanting_screen.json", + "enchanting_panel_top_half/item_grid": "ui/enchanting_screen.json", + "enchanting_panel_top_half/item_grid/item_slot": "ui/enchanting_screen.json", + "enchanting_panel_top_half/lapis_grid": "ui/enchanting_screen.json", + "enchanting_panel_top_half/lapis_grid/lapis": "ui/enchanting_screen.json", + "enchanting_panel_top_half/grid_panel": "ui/enchanting_screen.json", + "enchanting_panel_top_half/grid_panel/indent": "ui/enchanting_screen.json", + "enchanting_panel_top_half/grid_panel/dust_panel": "ui/enchanting_screen.json", + "enchanting_panel_top_half/grid_panel/enchantments_grid": "ui/enchanting_screen.json", + "enchanting_panel": "ui/enchanting_screen.json", + "enchanting_panel/container_gamepad_helpers": "ui/enchanting_screen.json", + "enchanting_panel/selected_item_details_factory": "ui/enchanting_screen.json", + "enchanting_panel/item_lock_notification_factory": "ui/enchanting_screen.json", + "enchanting_panel/root_panel": "ui/enchanting_screen.json", + "enchanting_panel/root_panel/common_panel": "ui/enchanting_screen.json", + "enchanting_panel/root_panel/enchanting_screen_inventory": "ui/enchanting_screen.json", + "enchanting_panel/root_panel/enchanting_screen_inventory/enchanting_panel_top_half": "ui/enchanting_screen.json", + "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_panel_bottom_half_with_label": "ui/enchanting_screen.json", + "enchanting_panel/root_panel/enchanting_screen_inventory/hotbar_grid": "ui/enchanting_screen.json", + "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_take_progress_icon_button": "ui/enchanting_screen.json", + "enchanting_panel/root_panel/inventory_selected_icon_button": "ui/enchanting_screen.json", + "enchanting_panel/root_panel/gamepad_cursor": "ui/enchanting_screen.json", + "enchanting_panel/flying_item_renderer": "ui/enchanting_screen.json", + "enchanting_screen": "ui/enchanting_screen.json", + }, + "enchanting_pocket": { + "generic_label": "ui/enchanting_screen_pocket.json", + "background_image": "ui/enchanting_screen_pocket.json", + "inventory_grid": "ui/enchanting_screen_pocket.json", + "inventory_content": "ui/enchanting_screen_pocket.json", + "inventory_content/scrolling_panel": "ui/enchanting_screen_pocket.json", + "lapis_image": "ui/enchanting_screen_pocket.json", + "enchanting_slots_panel": "ui/enchanting_screen_pocket.json", + "enchanting_slots_panel/input_slot": "ui/enchanting_screen_pocket.json", + "enchanting_slots_panel/lapis_slot": "ui/enchanting_screen_pocket.json", + "enchant_text_runes": "ui/enchanting_screen_pocket.json", + "show_highlighted_slot_control": "ui/enchanting_screen_pocket.json", + "show_highlighted_hover_slot_control": "ui/enchanting_screen_pocket.json", + "inactive_background": "ui/enchanting_screen_pocket.json", + "unselectable_button": "ui/enchanting_screen_pocket.json", + "unselectable_button/default": "ui/enchanting_screen_pocket.json", + "unselectable_button/hover": "ui/enchanting_screen_pocket.json", + "unselectable_button/pressed": "ui/enchanting_screen_pocket.json", + "unselectable_button/enchant_cost": "ui/enchanting_screen_pocket.json", + "selectable_button": "ui/enchanting_screen_pocket.json", + "selectable_button/default": "ui/enchanting_screen_pocket.json", + "selectable_button/hover": "ui/enchanting_screen_pocket.json", + "selectable_button/pressed": "ui/enchanting_screen_pocket.json", + "selectable_button/enchant_cost": "ui/enchanting_screen_pocket.json", + "enchant_button_panel": "ui/enchanting_screen_pocket.json", + "enchant_button_panel/inactive_background": "ui/enchanting_screen_pocket.json", + "enchant_button_panel/unselectable_button": "ui/enchanting_screen_pocket.json", + "enchant_button_panel/selectable_button": "ui/enchanting_screen_pocket.json", + "enchant_button_panel/dust": "ui/enchanting_screen_pocket.json", + "enchant_button_panel/rune_text": "ui/enchanting_screen_pocket.json", + "enchant_button_panel/highlight": "ui/enchanting_screen_pocket.json", + "enchant_selection_panel": "ui/enchanting_screen_pocket.json", + "enchant_selection_panel/grid": "ui/enchanting_screen_pocket.json", + "enchant_selection_panel/grid/button1": "ui/enchanting_screen_pocket.json", + "enchant_selection_panel/grid/button2": "ui/enchanting_screen_pocket.json", + "enchant_selection_panel/grid/button3": "ui/enchanting_screen_pocket.json", + "item_renderer": "ui/enchanting_screen_pocket.json", + "confirm_default_control": "ui/enchanting_screen_pocket.json", + "enchanting_confirm_button": "ui/enchanting_screen_pocket.json", + "enchanting_confirm_button/default": "ui/enchanting_screen_pocket.json", + "enchanting_confirm_button/hover": "ui/enchanting_screen_pocket.json", + "enchanting_confirm_button/pressed": "ui/enchanting_screen_pocket.json", + "enchanting_confirm_button/arrow_active": "ui/enchanting_screen_pocket.json", + "enchanting_confirm_button/arrow_inactive": "ui/enchanting_screen_pocket.json", + "enchanting_confirm_button/input_item_renderer": "ui/enchanting_screen_pocket.json", + "enchanting_confirm_button/output_item_renderer": "ui/enchanting_screen_pocket.json", + "enchanting_confirm_panel": "ui/enchanting_screen_pocket.json", + "enchanting_confirm_panel/confirm": "ui/enchanting_screen_pocket.json", + "enchanting_confirm_panel/enchantment_hint_text": "ui/enchanting_screen_pocket.json", + "enchanting_book_contents_panel": "ui/enchanting_screen_pocket.json", + "enchanting_book_contents_panel/enchanting_book": "ui/enchanting_screen_pocket.json", + "enchanting_book_contents_panel/player_level_label": "ui/enchanting_screen_pocket.json", + "enchanting_book_contents_panel/level_label": "ui/enchanting_screen_pocket.json", + "enchanting_book_panel": "ui/enchanting_screen_pocket.json", + "enchanting_book_panel/enchanting_slots_panel": "ui/enchanting_screen_pocket.json", + "enchanting_slots_and_selection": "ui/enchanting_screen_pocket.json", + "enchanting_slots_and_selection/enchanting_slots_panel": "ui/enchanting_screen_pocket.json", + "enchanting_slots_and_selection/pad1": "ui/enchanting_screen_pocket.json", + "enchanting_slots_and_selection/enchant_selection_panel": "ui/enchanting_screen_pocket.json", + "enchanting_contents_panel": "ui/enchanting_screen_pocket.json", + "enchanting_contents_panel/fill1": "ui/enchanting_screen_pocket.json", + "enchanting_contents_panel/enchanting_book_panel": "ui/enchanting_screen_pocket.json", + "enchanting_contents_panel/pad1": "ui/enchanting_screen_pocket.json", + "enchanting_contents_panel/enchanting_slots_and_selection": "ui/enchanting_screen_pocket.json", + "enchanting_contents_panel/pad2": "ui/enchanting_screen_pocket.json", + "enchanting_contents_panel/enchanting_confirm_panel": "ui/enchanting_screen_pocket.json", + "enchanting_contents_panel/fill2": "ui/enchanting_screen_pocket.json", + "header": "ui/enchanting_screen_pocket.json", + "header/header_background": "ui/enchanting_screen_pocket.json", + "header/legacy_pocket_close_button": "ui/enchanting_screen_pocket.json", + "header/panel": "ui/enchanting_screen_pocket.json", + "header/panel/title_label": "ui/enchanting_screen_pocket.json", + "inventory_and_enchanting_panel": "ui/enchanting_screen_pocket.json", + "inventory_and_enchanting_panel/inventory_half_screen": "ui/enchanting_screen_pocket.json", + "inventory_and_enchanting_panel/inventory_half_screen/inventory_content": "ui/enchanting_screen_pocket.json", + "inventory_and_enchanting_panel/enchanting_half_screen": "ui/enchanting_screen_pocket.json", + "inventory_and_enchanting_panel/enchanting_half_screen/enchanting_content": "ui/enchanting_screen_pocket.json", + "header_and_content_stack_panel": "ui/enchanting_screen_pocket.json", + "header_and_content_stack_panel/header": "ui/enchanting_screen_pocket.json", + "header_and_content_stack_panel/inventory_and_enchanting_panel": "ui/enchanting_screen_pocket.json", + "error_text_panel": "ui/enchanting_screen_pocket.json", + "error_text_panel/item_text_label": "ui/enchanting_screen_pocket.json", + "enchanting_panel": "ui/enchanting_screen_pocket.json", + "enchanting_panel/bg": "ui/enchanting_screen_pocket.json", + "enchanting_panel/root_panel": "ui/enchanting_screen_pocket.json", + "enchanting_panel/header_and_content_stack_panel": "ui/enchanting_screen_pocket.json", + "enchanting_panel/container_gamepad_helpers": "ui/enchanting_screen_pocket.json", + "enchanting_panel/inventory_selected_icon_button": "ui/enchanting_screen_pocket.json", + "enchanting_panel/hold_icon": "ui/enchanting_screen_pocket.json", + "enchanting_panel/selected_item_details_factory": "ui/enchanting_screen_pocket.json", + "enchanting_panel/item_lock_notification_factory": "ui/enchanting_screen_pocket.json", + "enchanting_panel/flying_item_renderer": "ui/enchanting_screen_pocket.json", + }, + "encyclopedia": { + "encyclopedia_screen": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/overworld_category": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_stand_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/banners_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beacons_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beds_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/blocks_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/book_and_quill_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/chests_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/conduits_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dyes_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/farming_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fireworks_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fishing_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jigsaw_blocks_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mounts_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/navigation_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/nether_portals_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/pets_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/raids_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/ranching_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/scaffolding_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/structure_blocks_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/tools_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/transportation_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/trading_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/weapons_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/stands_and_tables_category": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/anvil_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/brewing_stand_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/cauldron_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/crafting_table_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/enchanting_table_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/furnace_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/loom_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/smithing_table_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_engineering_category": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/droppers_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dispensers_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/hoppers_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jukebox_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_dimension_category": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/eye_of_ender_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/end_cities_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/elytra_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/shulker_boxes_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/options_and_cheats_category": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/game_settings_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/difficulty_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/adventure_mode_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/creative_mode_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/commands_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/host_and_player_options_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/command_blocks_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_category": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_stories_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/marketplace_category": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/minecoins_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/addons_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/worlds_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/textures_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/skins_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mashups_button": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/section_contents_header": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/armor_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/armor_stand_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/banners_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/beacons_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/beds_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/blocks_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/book_and_quill_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/chests_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/conduits_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/dyes_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/farming_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/fireworks_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/fishing_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/jigsaw": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/mounts_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/navigation_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/nether_portals_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/pets_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/raids_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/ranching_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/scaffolding_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/structure_blocks_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/tools_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/transportation_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/trading_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/weapons_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/anvil_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/brewing_stand_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/cauldron_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/crafting_table_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/enchanting_table_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/furnace_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/loom_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/smithing_table_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/droppers_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/dispensers_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/hoppers_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/jukebox_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/redstone_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/the_end_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/eye_of_ender_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/end_cities_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/elytra_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/shulker_boxes_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/game_settings_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/difficulty_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/adventure_mode_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/creative_mode_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/commands_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/host_and_player_options_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/command_blocks_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/realms_stories_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/minecoins_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/addons_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/worlds_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/textures_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/skins_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/mashups_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/section_contents_footer": "ui/encyclopedia_screen.json", + "adventure_mode_button": "ui/encyclopedia_screen.json", + "adventure_mode_section": "ui/encyclopedia_screen.json", + "adventure_mode_section/paragraph_1": "ui/encyclopedia_screen.json", + "adventure_mode_section/padding_1": "ui/encyclopedia_screen.json", + "adventure_mode_section/paragraph_2": "ui/encyclopedia_screen.json", + "anvil_button": "ui/encyclopedia_screen.json", + "anvil_section": "ui/encyclopedia_screen.json", + "anvil_section/paragraph_1": "ui/encyclopedia_screen.json", + "anvil_section/padding_1": "ui/encyclopedia_screen.json", + "anvil_section/header_1": "ui/encyclopedia_screen.json", + "anvil_section/paragraph_2": "ui/encyclopedia_screen.json", + "anvil_section/padding_2": "ui/encyclopedia_screen.json", + "anvil_section/header_2": "ui/encyclopedia_screen.json", + "anvil_section/paragraph_3": "ui/encyclopedia_screen.json", + "anvil_section/padding_3": "ui/encyclopedia_screen.json", + "anvil_section/paragraph_4": "ui/encyclopedia_screen.json", + "anvil_section/padding_4": "ui/encyclopedia_screen.json", + "anvil_section/paragraph_5": "ui/encyclopedia_screen.json", + "armor_button": "ui/encyclopedia_screen.json", + "armor_section": "ui/encyclopedia_screen.json", + "armor_section/paragraph_1": "ui/encyclopedia_screen.json", + "armor_section/padding_1": "ui/encyclopedia_screen.json", + "armor_section/header_1": "ui/encyclopedia_screen.json", + "armor_section/paragraph_2": "ui/encyclopedia_screen.json", + "armor_section/padding_2": "ui/encyclopedia_screen.json", + "armor_section/paragraph_3": "ui/encyclopedia_screen.json", + "armor_section/padding_3": "ui/encyclopedia_screen.json", + "armor_section/paragraph_4": "ui/encyclopedia_screen.json", + "armor_section/padding_4": "ui/encyclopedia_screen.json", + "armor_section/header_2": "ui/encyclopedia_screen.json", + "armor_section/paragraph_5_keyboard": "ui/encyclopedia_screen.json", + "armor_section/paragraph_5_gamepad": "ui/encyclopedia_screen.json", + "armor_section/paragraph_5a_touch": "ui/encyclopedia_screen.json", + "armor_section/padding_5a_touch": "ui/encyclopedia_screen.json", + "armor_section/paragraph_5b_touch": "ui/encyclopedia_screen.json", + "armor_section/padding_5b_touch": "ui/encyclopedia_screen.json", + "armor_section/paragraph_5c_touch": "ui/encyclopedia_screen.json", + "armor_section/padding_5": "ui/encyclopedia_screen.json", + "armor_section/paragraph_6": "ui/encyclopedia_screen.json", + "armor_section/padding_6": "ui/encyclopedia_screen.json", + "armor_section/header_3": "ui/encyclopedia_screen.json", + "armor_section/paragraph_7": "ui/encyclopedia_screen.json", + "armor_stand_button": "ui/encyclopedia_screen.json", + "armor_stand_section": "ui/encyclopedia_screen.json", + "armor_stand_section/paragraph_1": "ui/encyclopedia_screen.json", + "armor_stand_section/padding_1": "ui/encyclopedia_screen.json", + "armor_stand_section/header_1": "ui/encyclopedia_screen.json", + "armor_stand_section/paragraph_2_keyboard": "ui/encyclopedia_screen.json", + "armor_stand_section/paragraph_2_gamepad": "ui/encyclopedia_screen.json", + "armor_stand_section/paragraph_2_touch": "ui/encyclopedia_screen.json", + "armor_stand_section/padding_2": "ui/encyclopedia_screen.json", + "armor_stand_section/paragraph_3_keyboard": "ui/encyclopedia_screen.json", + "armor_stand_section/paragraph_3_gamepad": "ui/encyclopedia_screen.json", + "armor_stand_section/paragraph_3_touch": "ui/encyclopedia_screen.json", + "armor_stand_section/padding_3": "ui/encyclopedia_screen.json", + "armor_stand_section/header_2": "ui/encyclopedia_screen.json", + "armor_stand_section/paragraph_4_keyboard": "ui/encyclopedia_screen.json", + "armor_stand_section/paragraph_4_gamepad": "ui/encyclopedia_screen.json", + "armor_stand_section/paragraph_4_touch": "ui/encyclopedia_screen.json", + "armor_stand_section/padding_4": "ui/encyclopedia_screen.json", + "armor_stand_section/header_3": "ui/encyclopedia_screen.json", + "armor_stand_section/paragraph_5": "ui/encyclopedia_screen.json", + "banners_button": "ui/encyclopedia_screen.json", + "banners_section": "ui/encyclopedia_screen.json", + "banners_section/paragraph_1": "ui/encyclopedia_screen.json", + "banners_section/padding_1": "ui/encyclopedia_screen.json", + "banners_section/paragraph_2": "ui/encyclopedia_screen.json", + "banners_section/padding_2": "ui/encyclopedia_screen.json", + "banners_section/header_1": "ui/encyclopedia_screen.json", + "banners_section/paragraph_3": "ui/encyclopedia_screen.json", + "banners_section/padding_3": "ui/encyclopedia_screen.json", + "banners_section/paragraph_4": "ui/encyclopedia_screen.json", + "banners_section/padding_4": "ui/encyclopedia_screen.json", + "banners_section/paragraph_5": "ui/encyclopedia_screen.json", + "banners_section/padding_5": "ui/encyclopedia_screen.json", + "banners_section/paragraph_6": "ui/encyclopedia_screen.json", + "banners_section/padding_6": "ui/encyclopedia_screen.json", + "banners_section/paragraph_7": "ui/encyclopedia_screen.json", + "banners_section/padding_7": "ui/encyclopedia_screen.json", + "banners_section/header_2": "ui/encyclopedia_screen.json", + "banners_section/paragraph_8": "ui/encyclopedia_screen.json", + "banners_section/padding_8": "ui/encyclopedia_screen.json", + "banners_section/header_3": "ui/encyclopedia_screen.json", + "banners_section/paragraph_9": "ui/encyclopedia_screen.json", + "beacons_button": "ui/encyclopedia_screen.json", + "beacons_section": "ui/encyclopedia_screen.json", + "beacons_section/paragraph_1": "ui/encyclopedia_screen.json", + "beacons_section/padding_1": "ui/encyclopedia_screen.json", + "beacons_section/paragraph_2": "ui/encyclopedia_screen.json", + "beacons_section/padding_2": "ui/encyclopedia_screen.json", + "beacons_section/header_1": "ui/encyclopedia_screen.json", + "beacons_section/paragraph_3": "ui/encyclopedia_screen.json", + "beacons_section/padding_3": "ui/encyclopedia_screen.json", + "beacons_section/paragraph_4": "ui/encyclopedia_screen.json", + "beacons_section/padding_4": "ui/encyclopedia_screen.json", + "beacons_section/header_2": "ui/encyclopedia_screen.json", + "beacons_section/paragraph_5": "ui/encyclopedia_screen.json", + "beacons_section/padding_5": "ui/encyclopedia_screen.json", + "beacons_section/paragraph_6": "ui/encyclopedia_screen.json", + "beacons_section/padding_6": "ui/encyclopedia_screen.json", + "beacons_section/paragraph_7": "ui/encyclopedia_screen.json", + "beacons_section/padding_7": "ui/encyclopedia_screen.json", + "beacons_section/paragraph_8": "ui/encyclopedia_screen.json", + "conduits_button": "ui/encyclopedia_screen.json", + "conduits_section": "ui/encyclopedia_screen.json", + "conduits_section/paragraph_1": "ui/encyclopedia_screen.json", + "conduits_section/padding_1": "ui/encyclopedia_screen.json", + "conduits_section/paragraph_2": "ui/encyclopedia_screen.json", + "conduits_section/padding_2": "ui/encyclopedia_screen.json", + "conduits_section/header_1": "ui/encyclopedia_screen.json", + "conduits_section/paragraph_3": "ui/encyclopedia_screen.json", + "conduits_section/padding_3": "ui/encyclopedia_screen.json", + "conduits_section/paragraph_4": "ui/encyclopedia_screen.json", + "beds_button": "ui/encyclopedia_screen.json", + "beds_section": "ui/encyclopedia_screen.json", + "beds_section/paragraph_1": "ui/encyclopedia_screen.json", + "beds_section/padding_1": "ui/encyclopedia_screen.json", + "beds_section/paragraph_2_keyboard": "ui/encyclopedia_screen.json", + "beds_section/paragraph_2_gamepad": "ui/encyclopedia_screen.json", + "beds_section/paragraph_2_touch": "ui/encyclopedia_screen.json", + "beds_section/padding_2": "ui/encyclopedia_screen.json", + "beds_section/paragraph_3": "ui/encyclopedia_screen.json", + "beds_section/padding_3": "ui/encyclopedia_screen.json", + "beds_section/paragraph_4": "ui/encyclopedia_screen.json", + "beds_section/padding_4": "ui/encyclopedia_screen.json", + "beds_section/paragraph_5": "ui/encyclopedia_screen.json", + "blocks_button": "ui/encyclopedia_screen.json", + "blocks_section": "ui/encyclopedia_screen.json", + "blocks_section/paragraph_1": "ui/encyclopedia_screen.json", + "blocks_section/padding_1": "ui/encyclopedia_screen.json", + "blocks_section/paragraph_2": "ui/encyclopedia_screen.json", + "blocks_section/padding_2": "ui/encyclopedia_screen.json", + "blocks_section/header_1": "ui/encyclopedia_screen.json", + "blocks_section/paragraph_3": "ui/encyclopedia_screen.json", + "blocks_section/padding_3": "ui/encyclopedia_screen.json", + "blocks_section/header_2": "ui/encyclopedia_screen.json", + "blocks_section/paragraph_4": "ui/encyclopedia_screen.json", + "blocks_section/padding_4": "ui/encyclopedia_screen.json", + "blocks_section/paragraph_5": "ui/encyclopedia_screen.json", + "blocks_section/padding_5": "ui/encyclopedia_screen.json", + "blocks_section/paragraph_6": "ui/encyclopedia_screen.json", + "blocks_section/padding_6": "ui/encyclopedia_screen.json", + "blocks_section/paragraph_7": "ui/encyclopedia_screen.json", + "blocks_section/padding_7": "ui/encyclopedia_screen.json", + "blocks_section/paragraph_8": "ui/encyclopedia_screen.json", + "blocks_section/padding_8": "ui/encyclopedia_screen.json", + "blocks_section/paragraph_9": "ui/encyclopedia_screen.json", + "book_and_quill_button": "ui/encyclopedia_screen.json", + "book_and_quill_section": "ui/encyclopedia_screen.json", + "book_and_quill_section/paragraph_1": "ui/encyclopedia_screen.json", + "brewing_stand_button": "ui/encyclopedia_screen.json", + "brewing_stand_section": "ui/encyclopedia_screen.json", + "brewing_stand_section/paragraph_1": "ui/encyclopedia_screen.json", + "brewing_stand_section/padding_1": "ui/encyclopedia_screen.json", + "brewing_stand_section/header_1": "ui/encyclopedia_screen.json", + "brewing_stand_section/paragraph_2": "ui/encyclopedia_screen.json", + "brewing_stand_section/padding_2": "ui/encyclopedia_screen.json", + "brewing_stand_section/header_2": "ui/encyclopedia_screen.json", + "brewing_stand_section/paragraph_3": "ui/encyclopedia_screen.json", + "brewing_stand_section/padding_3": "ui/encyclopedia_screen.json", + "brewing_stand_section/paragraph_4": "ui/encyclopedia_screen.json", + "cauldron_button": "ui/encyclopedia_screen.json", + "cauldron_section": "ui/encyclopedia_screen.json", + "cauldron_section/paragraph_1": "ui/encyclopedia_screen.json", + "cauldron_section/padding_1": "ui/encyclopedia_screen.json", + "cauldron_section/header_1": "ui/encyclopedia_screen.json", + "cauldron_section/paragraph_2_keyboard": "ui/encyclopedia_screen.json", + "cauldron_section/paragraph_2_gamepad": "ui/encyclopedia_screen.json", + "cauldron_section/paragraph_2_touch": "ui/encyclopedia_screen.json", + "cauldron_section/padding_2": "ui/encyclopedia_screen.json", + "cauldron_section/paragraph_3": "ui/encyclopedia_screen.json", + "cauldron_section/padding_3": "ui/encyclopedia_screen.json", + "cauldron_section/header_2": "ui/encyclopedia_screen.json", + "cauldron_section/paragraph_4_keyboard": "ui/encyclopedia_screen.json", + "cauldron_section/paragraph_4_gamepad": "ui/encyclopedia_screen.json", + "cauldron_section/paragraph_4_touch": "ui/encyclopedia_screen.json", + "cauldron_section/padding_4": "ui/encyclopedia_screen.json", + "cauldron_section/header_3": "ui/encyclopedia_screen.json", + "cauldron_section/paragraph_5_keyboard": "ui/encyclopedia_screen.json", + "cauldron_section/paragraph_5_gamepad": "ui/encyclopedia_screen.json", + "cauldron_section/paragraph_5_touch": "ui/encyclopedia_screen.json", + "cauldron_section/padding_5": "ui/encyclopedia_screen.json", + "cauldron_section/paragraph_6": "ui/encyclopedia_screen.json", + "chests_button": "ui/encyclopedia_screen.json", + "chests_section": "ui/encyclopedia_screen.json", + "chests_section/paragraph_1_keyboard": "ui/encyclopedia_screen.json", + "chests_section/paragraph_1_gamepad": "ui/encyclopedia_screen.json", + "chests_section/paragraph_1_touch": "ui/encyclopedia_screen.json", + "chests_section/padding_1": "ui/encyclopedia_screen.json", + "chests_section/paragraph_2": "ui/encyclopedia_screen.json", + "chests_section/padding_2": "ui/encyclopedia_screen.json", + "chests_section/paragraph_3": "ui/encyclopedia_screen.json", + "command_blocks_button": "ui/encyclopedia_screen.json", + "command_blocks_section": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_1": "ui/encyclopedia_screen.json", + "command_blocks_section/padding_1": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_2": "ui/encyclopedia_screen.json", + "command_blocks_section/padding_2": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_3": "ui/encyclopedia_screen.json", + "command_blocks_section/padding_3": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_4": "ui/encyclopedia_screen.json", + "command_blocks_section/padding_4": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_5": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_5_1": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_5_2": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_5_3": "ui/encyclopedia_screen.json", + "command_blocks_section/padding_5": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_6": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_6_1": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_6_2": "ui/encyclopedia_screen.json", + "command_blocks_section/padding_6": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_7": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_7_1": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_7_2": "ui/encyclopedia_screen.json", + "command_blocks_section/padding_7": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_8": "ui/encyclopedia_screen.json", + "commands_button": "ui/encyclopedia_screen.json", + "commands_section": "ui/encyclopedia_screen.json", + "commands_section/paragraph_1": "ui/encyclopedia_screen.json", + "commands_section/padding_1": "ui/encyclopedia_screen.json", + "commands_section/paragraph_2": "ui/encyclopedia_screen.json", + "crafting_table_button": "ui/encyclopedia_screen.json", + "crafting_table_section": "ui/encyclopedia_screen.json", + "crafting_table_section/paragraph_1": "ui/encyclopedia_screen.json", + "crafting_table_section/padding_1": "ui/encyclopedia_screen.json", + "crafting_table_section/paragraph_2_keyboard": "ui/encyclopedia_screen.json", + "crafting_table_section/paragraph_2_gamepad": "ui/encyclopedia_screen.json", + "crafting_table_section/paragraph_2_touch": "ui/encyclopedia_screen.json", + "creative_mode_button": "ui/encyclopedia_screen.json", + "creative_mode_section": "ui/encyclopedia_screen.json", + "creative_mode_section/paragraph_1": "ui/encyclopedia_screen.json", + "creative_mode_section/padding_1": "ui/encyclopedia_screen.json", + "creative_mode_section/header_1": "ui/encyclopedia_screen.json", + "creative_mode_section/paragraph_2": "ui/encyclopedia_screen.json", + "creative_mode_section/padding_2": "ui/encyclopedia_screen.json", + "creative_mode_section/paragraph_3": "ui/encyclopedia_screen.json", + "creative_mode_section/padding_3": "ui/encyclopedia_screen.json", + "creative_mode_section/header_2": "ui/encyclopedia_screen.json", + "creative_mode_section/paragraph_4_keyboard": "ui/encyclopedia_screen.json", + "creative_mode_section/paragraph_4_gamepad": "ui/encyclopedia_screen.json", + "creative_mode_section/paragraph_4a_touch_joystick_tap": "ui/encyclopedia_screen.json", + "creative_mode_section/paragraph_4a_touch_classic_dpad": "ui/encyclopedia_screen.json", + "creative_mode_section/paragraph_4a_touch_joystick_crosshair": "ui/encyclopedia_screen.json", + "creative_mode_section/padding_4a_touch": "ui/encyclopedia_screen.json", + "creative_mode_section/paragraph_4b_touch_joystick_tap": "ui/encyclopedia_screen.json", + "creative_mode_section/paragraph_4b_touch_classic_dpad": "ui/encyclopedia_screen.json", + "creative_mode_section/paragraph_4b_touch_joystick_crosshair": "ui/encyclopedia_screen.json", + "difficulty_button": "ui/encyclopedia_screen.json", + "difficulty_section": "ui/encyclopedia_screen.json", + "difficulty_section/paragraph_1": "ui/encyclopedia_screen.json", + "difficulty_section/padding_1": "ui/encyclopedia_screen.json", + "difficulty_section/header_1": "ui/encyclopedia_screen.json", + "difficulty_section/paragraph_2": "ui/encyclopedia_screen.json", + "difficulty_section/padding_2": "ui/encyclopedia_screen.json", + "difficulty_section/header_2": "ui/encyclopedia_screen.json", + "difficulty_section/paragraph_3": "ui/encyclopedia_screen.json", + "difficulty_section/padding_3": "ui/encyclopedia_screen.json", + "difficulty_section/header_3": "ui/encyclopedia_screen.json", + "difficulty_section/paragraph_4": "ui/encyclopedia_screen.json", + "difficulty_section/padding_4": "ui/encyclopedia_screen.json", + "difficulty_section/header_4": "ui/encyclopedia_screen.json", + "difficulty_section/paragraph_5": "ui/encyclopedia_screen.json", + "dispensers_button": "ui/encyclopedia_screen.json", + "dispensers_section": "ui/encyclopedia_screen.json", + "dispensers_section/paragraph_1": "ui/encyclopedia_screen.json", + "dispensers_section/padding_1": "ui/encyclopedia_screen.json", + "dispensers_section/paragraph_2_keyboard": "ui/encyclopedia_screen.json", + "dispensers_section/paragraph_2_gamepad": "ui/encyclopedia_screen.json", + "dispensers_section/paragraph_2_touch": "ui/encyclopedia_screen.json", + "dispensers_section/padding_2": "ui/encyclopedia_screen.json", + "dispensers_section/header_1": "ui/encyclopedia_screen.json", + "dispensers_section/paragraph_3": "ui/encyclopedia_screen.json", + "dispensers_section/padding_3": "ui/encyclopedia_screen.json", + "dispensers_section/paragraph_4": "ui/encyclopedia_screen.json", + "droppers_button": "ui/encyclopedia_screen.json", + "droppers_section": "ui/encyclopedia_screen.json", + "droppers_section/paragraph_1_keyboard": "ui/encyclopedia_screen.json", + "droppers_section/paragraph_1_gamepad": "ui/encyclopedia_screen.json", + "droppers_section/paragraph_1_touch": "ui/encyclopedia_screen.json", + "droppers_section/padding_1": "ui/encyclopedia_screen.json", + "droppers_section/header_1": "ui/encyclopedia_screen.json", + "droppers_section/paragraph_2": "ui/encyclopedia_screen.json", + "dyes_button": "ui/encyclopedia_screen.json", + "dyes_section": "ui/encyclopedia_screen.json", + "dyes_section/paragraph_1": "ui/encyclopedia_screen.json", + "dyes_section/padding_1": "ui/encyclopedia_screen.json", + "dyes_section/paragraph_2": "ui/encyclopedia_screen.json", + "dyes_section/padding_2": "ui/encyclopedia_screen.json", + "dyes_section/paragraph_3": "ui/encyclopedia_screen.json", + "dyes_section/padding_3": "ui/encyclopedia_screen.json", + "dyes_section/paragraph_4": "ui/encyclopedia_screen.json", + "dyes_section/padding_4": "ui/encyclopedia_screen.json", + "dyes_section/paragraph_5": "ui/encyclopedia_screen.json", + "dyes_section/padding_5": "ui/encyclopedia_screen.json", + "dyes_section/paragraph_6": "ui/encyclopedia_screen.json", + "dyes_section/padding_6": "ui/encyclopedia_screen.json", + "dyes_section/paragraph_7": "ui/encyclopedia_screen.json", + "elytra_button": "ui/encyclopedia_screen.json", + "elytra_section": "ui/encyclopedia_screen.json", + "elytra_section/paragraph_1": "ui/encyclopedia_screen.json", + "elytra_section/padding_1": "ui/encyclopedia_screen.json", + "elytra_section/paragraph_2": "ui/encyclopedia_screen.json", + "elytra_section/padding_2": "ui/encyclopedia_screen.json", + "elytra_section/header_1": "ui/encyclopedia_screen.json", + "elytra_section/paragraph_3_keyboard": "ui/encyclopedia_screen.json", + "elytra_section/paragraph_3_gamepad": "ui/encyclopedia_screen.json", + "elytra_section/paragraph_3_touch": "ui/encyclopedia_screen.json", + "elytra_section/padding_3": "ui/encyclopedia_screen.json", + "elytra_section/paragraph_4": "ui/encyclopedia_screen.json", + "elytra_section/paragraph_4_touch": "ui/encyclopedia_screen.json", + "elytra_section/padding_4": "ui/encyclopedia_screen.json", + "elytra_section/paragraph_5": "ui/encyclopedia_screen.json", + "elytra_section/padding_5": "ui/encyclopedia_screen.json", + "elytra_section/header_2": "ui/encyclopedia_screen.json", + "elytra_section/paragraph_6": "ui/encyclopedia_screen.json", + "enchanting_table_button": "ui/encyclopedia_screen.json", + "enchanting_table_section": "ui/encyclopedia_screen.json", + "enchanting_table_section/paragraph_1": "ui/encyclopedia_screen.json", + "enchanting_table_section/padding_1": "ui/encyclopedia_screen.json", + "enchanting_table_section/header_1": "ui/encyclopedia_screen.json", + "enchanting_table_section/paragraph_2": "ui/encyclopedia_screen.json", + "enchanting_table_section/padding_2": "ui/encyclopedia_screen.json", + "enchanting_table_section/paragraph_3": "ui/encyclopedia_screen.json", + "enchanting_table_section/padding_3": "ui/encyclopedia_screen.json", + "enchanting_table_section/header_2": "ui/encyclopedia_screen.json", + "enchanting_table_section/paragraph_4": "ui/encyclopedia_screen.json", + "enchanting_table_section/padding_4": "ui/encyclopedia_screen.json", + "enchanting_table_section/header_3": "ui/encyclopedia_screen.json", + "enchanting_table_section/paragraph_5": "ui/encyclopedia_screen.json", + "end_cities_button": "ui/encyclopedia_screen.json", + "end_cities_section": "ui/encyclopedia_screen.json", + "end_cities_section/paragraph_1": "ui/encyclopedia_screen.json", + "end_cities_section/padding_1": "ui/encyclopedia_screen.json", + "end_cities_section/paragraph_2": "ui/encyclopedia_screen.json", + "eye_of_ender_button": "ui/encyclopedia_screen.json", + "eye_of_ender_section": "ui/encyclopedia_screen.json", + "eye_of_ender_section/paragraph_1": "ui/encyclopedia_screen.json", + "eye_of_ender_section/padding_1": "ui/encyclopedia_screen.json", + "eye_of_ender_section/paragraph_2": "ui/encyclopedia_screen.json", + "farming_button": "ui/encyclopedia_screen.json", + "farming_section": "ui/encyclopedia_screen.json", + "farming_section/paragraph_1": "ui/encyclopedia_screen.json", + "farming_section/padding_1": "ui/encyclopedia_screen.json", + "farming_section/header_1": "ui/encyclopedia_screen.json", + "farming_section/paragraph_2": "ui/encyclopedia_screen.json", + "farming_section/padding_2": "ui/encyclopedia_screen.json", + "farming_section/paragraph_3": "ui/encyclopedia_screen.json", + "farming_section/padding_3": "ui/encyclopedia_screen.json", + "farming_section/header_2": "ui/encyclopedia_screen.json", + "farming_section/paragraph_4": "ui/encyclopedia_screen.json", + "farming_section/padding_4": "ui/encyclopedia_screen.json", + "farming_section/paragraph_5": "ui/encyclopedia_screen.json", + "farming_section/padding_5": "ui/encyclopedia_screen.json", + "farming_section/paragraph_6": "ui/encyclopedia_screen.json", + "farming_section/padding_6": "ui/encyclopedia_screen.json", + "farming_section/paragraph_7": "ui/encyclopedia_screen.json", + "fireworks_button": "ui/encyclopedia_screen.json", + "fireworks_section": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_1": "ui/encyclopedia_screen.json", + "fireworks_section/padding_1": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_2": "ui/encyclopedia_screen.json", + "fireworks_section/padding_2": "ui/encyclopedia_screen.json", + "fireworks_section/header_1": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_3_keyboard": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_3_gamepad": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_3_touch": "ui/encyclopedia_screen.json", + "fireworks_section/padding_3": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_4": "ui/encyclopedia_screen.json", + "fireworks_section/padding_4": "ui/encyclopedia_screen.json", + "fireworks_section/header_2": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_5": "ui/encyclopedia_screen.json", + "fireworks_section/padding_5": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_6": "ui/encyclopedia_screen.json", + "fireworks_section/padding_5a": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_6_1": "ui/encyclopedia_screen.json", + "fireworks_section/padding_5b": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_6_2": "ui/encyclopedia_screen.json", + "fireworks_section/padding_5c": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_6_3": "ui/encyclopedia_screen.json", + "fireworks_section/padding_5d": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_6_4": "ui/encyclopedia_screen.json", + "fireworks_section/padding_5e": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_6_5": "ui/encyclopedia_screen.json", + "fireworks_section/padding_5f": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_6_6": "ui/encyclopedia_screen.json", + "fireworks_section/padding_6": "ui/encyclopedia_screen.json", + "fireworks_section/header_3": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_7": "ui/encyclopedia_screen.json", + "jigsaw_blocks_button": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/paragraph_1": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/padding_1": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/header_1": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/paragraph_2": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/padding_2": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/header_2": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/paragraph_3": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/padding_3": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/paragraph_4": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/padding_4": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/paragraph_5": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/padding_5": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/paragraph_6": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/padding_6": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/paragraph_7": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/padding_7": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/paragraph_8": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/padding_8": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/paragraph_9": "ui/encyclopedia_screen.json", + "fishing_button": "ui/encyclopedia_screen.json", + "fishing_section": "ui/encyclopedia_screen.json", + "fishing_section/paragraph_1": "ui/encyclopedia_screen.json", + "fishing_section/padding_1": "ui/encyclopedia_screen.json", + "fishing_section/header_1": "ui/encyclopedia_screen.json", + "fishing_section/paragraph_2_keyboard": "ui/encyclopedia_screen.json", + "fishing_section/paragraph_2_gamepad": "ui/encyclopedia_screen.json", + "fishing_section/paragraph_2_touch": "ui/encyclopedia_screen.json", + "fishing_section/padding_2": "ui/encyclopedia_screen.json", + "fishing_section/header_2": "ui/encyclopedia_screen.json", + "fishing_section/paragraph_3": "ui/encyclopedia_screen.json", + "fishing_section/padding_3": "ui/encyclopedia_screen.json", + "fishing_section/paragraph_4_keyboard": "ui/encyclopedia_screen.json", + "fishing_section/paragraph_4_gamepad": "ui/encyclopedia_screen.json", + "fishing_section/paragraph_4_touch": "ui/encyclopedia_screen.json", + "furnace_button": "ui/encyclopedia_screen.json", + "furnace_section": "ui/encyclopedia_screen.json", + "furnace_section/paragraph_1": "ui/encyclopedia_screen.json", + "furnace_section/padding_1": "ui/encyclopedia_screen.json", + "furnace_section/paragraph_2_keyboard": "ui/encyclopedia_screen.json", + "furnace_section/paragraph_2_gamepad": "ui/encyclopedia_screen.json", + "furnace_section/paragraph_2_touch": "ui/encyclopedia_screen.json", + "furnace_section/padding_2": "ui/encyclopedia_screen.json", + "furnace_section/paragraph_3": "ui/encyclopedia_screen.json", + "game_settings_button": "ui/encyclopedia_screen.json", + "game_settings_section": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_1": "ui/encyclopedia_screen.json", + "game_settings_section/padding_1": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_2": "ui/encyclopedia_screen.json", + "game_settings_section/padding_2": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_3": "ui/encyclopedia_screen.json", + "game_settings_section/padding_3": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_4": "ui/encyclopedia_screen.json", + "game_settings_section/padding_4": "ui/encyclopedia_screen.json", + "game_settings_section/header_1": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_5": "ui/encyclopedia_screen.json", + "game_settings_section/padding_5": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_6": "ui/encyclopedia_screen.json", + "game_settings_section/padding_6": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_7": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_7_1": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_7_2": "ui/encyclopedia_screen.json", + "game_settings_section/padding_7": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_8": "ui/encyclopedia_screen.json", + "game_settings_section/padding_8": "ui/encyclopedia_screen.json", + "game_settings_section/header_2": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_9": "ui/encyclopedia_screen.json", + "game_settings_section/padding_9": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_10": "ui/encyclopedia_screen.json", + "game_settings_section/padding_10": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_11": "ui/encyclopedia_screen.json", + "game_settings_section/padding_11": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_12": "ui/encyclopedia_screen.json", + "game_settings_section/padding_12": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_13": "ui/encyclopedia_screen.json", + "game_settings_section/padding_13": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_14": "ui/encyclopedia_screen.json", + "game_settings_section/padding_14": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_15": "ui/encyclopedia_screen.json", + "game_settings_section/padding_15": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_16": "ui/encyclopedia_screen.json", + "game_settings_section/padding_16": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_17": "ui/encyclopedia_screen.json", + "hoppers_button": "ui/encyclopedia_screen.json", + "hoppers_section": "ui/encyclopedia_screen.json", + "hoppers_section/paragraph_1": "ui/encyclopedia_screen.json", + "hoppers_section/padding_1": "ui/encyclopedia_screen.json", + "hoppers_section/paragraph_2": "ui/encyclopedia_screen.json", + "hoppers_section/padding_2": "ui/encyclopedia_screen.json", + "hoppers_section/header_1": "ui/encyclopedia_screen.json", + "hoppers_section/paragraph_3": "ui/encyclopedia_screen.json", + "hoppers_section/padding_3": "ui/encyclopedia_screen.json", + "hoppers_section/paragraph_4": "ui/encyclopedia_screen.json", + "host_and_player_options_button": "ui/encyclopedia_screen.json", + "host_and_player_options_section": "ui/encyclopedia_screen.json", + "host_and_player_options_section/paragraph_1_not_touch": "ui/encyclopedia_screen.json", + "host_and_player_options_section/paragraph_1_touch": "ui/encyclopedia_screen.json", + "jukebox_button": "ui/encyclopedia_screen.json", + "jukebox_section": "ui/encyclopedia_screen.json", + "jukebox_section/paragraph_1": "ui/encyclopedia_screen.json", + "jukebox_section/padding_1": "ui/encyclopedia_screen.json", + "jukebox_section/header_1": "ui/encyclopedia_screen.json", + "jukebox_section/paragraph_2_not_touch": "ui/encyclopedia_screen.json", + "jukebox_section/paragraph_2_touch": "ui/encyclopedia_screen.json", + "jukebox_section/padding_2": "ui/encyclopedia_screen.json", + "jukebox_section/header_2": "ui/encyclopedia_screen.json", + "jukebox_section/paragraph_3": "ui/encyclopedia_screen.json", + "jukebox_section/padding_3": "ui/encyclopedia_screen.json", + "jukebox_section/paragraph_4": "ui/encyclopedia_screen.json", + "jukebox_section/padding_4": "ui/encyclopedia_screen.json", + "jukebox_section/paragraph_5": "ui/encyclopedia_screen.json", + "jukebox_section/padding_5": "ui/encyclopedia_screen.json", + "jukebox_section/paragraph_6": "ui/encyclopedia_screen.json", + "jukebox_section/padding_6": "ui/encyclopedia_screen.json", + "jukebox_section/header_3": "ui/encyclopedia_screen.json", + "jukebox_section/paragraph_7": "ui/encyclopedia_screen.json", + "jukebox_section/padding_7": "ui/encyclopedia_screen.json", + "jukebox_section/paragraph_8": "ui/encyclopedia_screen.json", + "loom_button": "ui/encyclopedia_screen.json", + "loom_section": "ui/encyclopedia_screen.json", + "loom_section/paragraph_1": "ui/encyclopedia_screen.json", + "loom_section/padding_1": "ui/encyclopedia_screen.json", + "loom_section/header_1": "ui/encyclopedia_screen.json", + "loom_section/paragraph_2": "ui/encyclopedia_screen.json", + "loom_section/padding_2": "ui/encyclopedia_screen.json", + "loom_section/paragraph_3": "ui/encyclopedia_screen.json", + "loom_section/padding_3": "ui/encyclopedia_screen.json", + "loom_section/header_2": "ui/encyclopedia_screen.json", + "loom_section/paragraph_4": "ui/encyclopedia_screen.json", + "realms_stories_button": "ui/encyclopedia_screen.json", + "realms_stories_section": "ui/encyclopedia_screen.json", + "realms_stories_section/paragraph_1": "ui/encyclopedia_screen.json", + "realms_stories_section/padding_1": "ui/encyclopedia_screen.json", + "realms_stories_section/header_1": "ui/encyclopedia_screen.json", + "realms_stories_section/paragraph_2": "ui/encyclopedia_screen.json", + "realms_stories_section/padding_2": "ui/encyclopedia_screen.json", + "realms_stories_section/header_2": "ui/encyclopedia_screen.json", + "realms_stories_section/paragraph_3": "ui/encyclopedia_screen.json", + "realms_stories_section/padding_3": "ui/encyclopedia_screen.json", + "realms_stories_section/header_3": "ui/encyclopedia_screen.json", + "realms_stories_section/paragraph_4": "ui/encyclopedia_screen.json", + "realms_stories_section/padding_4": "ui/encyclopedia_screen.json", + "realms_stories_section/header_4": "ui/encyclopedia_screen.json", + "realms_stories_section/paragraph_5": "ui/encyclopedia_screen.json", + "realms_stories_section/padding_5": "ui/encyclopedia_screen.json", + "realms_stories_section/header_5": "ui/encyclopedia_screen.json", + "realms_stories_section/paragraph_6": "ui/encyclopedia_screen.json", + "smithing_table_button": "ui/encyclopedia_screen.json", + "smithing_table_section": "ui/encyclopedia_screen.json", + "smithing_table_section/paragraph_1": "ui/encyclopedia_screen.json", + "smithing_table_section/padding_1": "ui/encyclopedia_screen.json", + "smithing_table_section/paragraph_2": "ui/encyclopedia_screen.json", + "smithing_table_section/padding_2": "ui/encyclopedia_screen.json", + "smithing_table_section/header_1": "ui/encyclopedia_screen.json", + "smithing_table_section/paragraph_3": "ui/encyclopedia_screen.json", + "smithing_table_section/padding_3": "ui/encyclopedia_screen.json", + "smithing_table_section/paragraph_4": "ui/encyclopedia_screen.json", + "smithing_table_section/padding_4": "ui/encyclopedia_screen.json", + "smithing_table_section/paragraph_5": "ui/encyclopedia_screen.json", + "smithing_table_section/padding_5": "ui/encyclopedia_screen.json", + "smithing_table_section/paragraph_6": "ui/encyclopedia_screen.json", + "smithing_table_section/padding_6": "ui/encyclopedia_screen.json", + "smithing_table_section/header_2": "ui/encyclopedia_screen.json", + "smithing_table_section/paragraph_7": "ui/encyclopedia_screen.json", + "smithing_table_section/padding_7": "ui/encyclopedia_screen.json", + "smithing_table_section/paragraph_8": "ui/encyclopedia_screen.json", + "smithing_table_section/padding_8": "ui/encyclopedia_screen.json", + "smithing_table_section/paragraph_9": "ui/encyclopedia_screen.json", + "mounts_button": "ui/encyclopedia_screen.json", + "mounts_section": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_1": "ui/encyclopedia_screen.json", + "mounts_section/padding_1": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_2": "ui/encyclopedia_screen.json", + "mounts_section/padding_2": "ui/encyclopedia_screen.json", + "mounts_section/header_1": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_3_not_touch": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_3_touch": "ui/encyclopedia_screen.json", + "mounts_section/padding_3": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_4": "ui/encyclopedia_screen.json", + "mounts_section/padding_4": "ui/encyclopedia_screen.json", + "mounts_section/header_2": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_5": "ui/encyclopedia_screen.json", + "mounts_section/padding_5": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_6": "ui/encyclopedia_screen.json", + "mounts_section/padding_6": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_6b": "ui/encyclopedia_screen.json", + "mounts_section/padding_6b": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_7": "ui/encyclopedia_screen.json", + "mounts_section/padding_7": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_8": "ui/encyclopedia_screen.json", + "mounts_section/padding_8": "ui/encyclopedia_screen.json", + "mounts_section/header_3": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_9": "ui/encyclopedia_screen.json", + "mounts_section/padding_9": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_10": "ui/encyclopedia_screen.json", + "mounts_section/padding_10": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_11": "ui/encyclopedia_screen.json", + "mounts_section/padding_11": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_12": "ui/encyclopedia_screen.json", + "mounts_section/padding_12": "ui/encyclopedia_screen.json", + "mounts_section/header_4": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_13": "ui/encyclopedia_screen.json", + "mounts_section/padding_13": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_14": "ui/encyclopedia_screen.json", + "mounts_section/padding_14": "ui/encyclopedia_screen.json", + "mounts_section/header_5": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_15_not_touch": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_15a_touch": "ui/encyclopedia_screen.json", + "mounts_section/padding_15": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_15b_touch": "ui/encyclopedia_screen.json", + "navigation_button": "ui/encyclopedia_screen.json", + "navigation_section": "ui/encyclopedia_screen.json", + "navigation_section/paragraph_1": "ui/encyclopedia_screen.json", + "navigation_section/padding_1": "ui/encyclopedia_screen.json", + "navigation_section/paragraph_2": "ui/encyclopedia_screen.json", + "navigation_section/padding_2": "ui/encyclopedia_screen.json", + "navigation_section/header_1": "ui/encyclopedia_screen.json", + "navigation_section/paragraph_3": "ui/encyclopedia_screen.json", + "navigation_section/padding_3": "ui/encyclopedia_screen.json", + "navigation_section/paragraph_4": "ui/encyclopedia_screen.json", + "navigation_section/padding_4": "ui/encyclopedia_screen.json", + "navigation_section/paragraph_5": "ui/encyclopedia_screen.json", + "navigation_section/padding_5": "ui/encyclopedia_screen.json", + "navigation_section/paragraph_6": "ui/encyclopedia_screen.json", + "navigation_section/padding_6": "ui/encyclopedia_screen.json", + "navigation_section/paragraph_7": "ui/encyclopedia_screen.json", + "navigation_section/padding_7": "ui/encyclopedia_screen.json", + "navigation_section/header_2": "ui/encyclopedia_screen.json", + "navigation_section/paragraph_8": "ui/encyclopedia_screen.json", + "navigation_section/padding_8": "ui/encyclopedia_screen.json", + "navigation_section/paragraph_9": "ui/encyclopedia_screen.json", + "navigation_section/padding_9": "ui/encyclopedia_screen.json", + "navigation_section/header_3": "ui/encyclopedia_screen.json", + "navigation_section/paragraph_10": "ui/encyclopedia_screen.json", + "nether_portals_button": "ui/encyclopedia_screen.json", + "nether_portals_section": "ui/encyclopedia_screen.json", + "nether_portals_section/paragraph_1": "ui/encyclopedia_screen.json", + "nether_portals_section/padding_1": "ui/encyclopedia_screen.json", + "nether_portals_section/paragraph_2": "ui/encyclopedia_screen.json", + "nether_portals_section/padding_2": "ui/encyclopedia_screen.json", + "nether_portals_section/paragraph_3": "ui/encyclopedia_screen.json", + "nether_portals_section/padding_3": "ui/encyclopedia_screen.json", + "nether_portals_section/image_1": "ui/encyclopedia_screen.json", + "pets_button": "ui/encyclopedia_screen.json", + "pets_section": "ui/encyclopedia_screen.json", + "pets_section/header_1": "ui/encyclopedia_screen.json", + "pets_section/paragraph_1_not_touch": "ui/encyclopedia_screen.json", + "pets_section/paragraph_1_touch": "ui/encyclopedia_screen.json", + "pets_section/padding_1": "ui/encyclopedia_screen.json", + "pets_section/header_2": "ui/encyclopedia_screen.json", + "pets_section/paragraph_2": "ui/encyclopedia_screen.json", + "pets_section/padding_2": "ui/encyclopedia_screen.json", + "pets_section/header_3": "ui/encyclopedia_screen.json", + "pets_section/paragraph_3": "ui/encyclopedia_screen.json", + "pets_section/padding_3": "ui/encyclopedia_screen.json", + "pets_section/header_4": "ui/encyclopedia_screen.json", + "pets_section/paragraph_4": "ui/encyclopedia_screen.json", + "raids_button": "ui/encyclopedia_screen.json", + "raids_section": "ui/encyclopedia_screen.json", + "raids_section/paragraph_1": "ui/encyclopedia_screen.json", + "raids_section/padding_1": "ui/encyclopedia_screen.json", + "raids_section/paragraph_2": "ui/encyclopedia_screen.json", + "raids_section/padding_2": "ui/encyclopedia_screen.json", + "raids_section/header_1": "ui/encyclopedia_screen.json", + "raids_section/paragraph_3": "ui/encyclopedia_screen.json", + "ranching_button": "ui/encyclopedia_screen.json", + "ranching_section": "ui/encyclopedia_screen.json", + "ranching_section/paragraph_1": "ui/encyclopedia_screen.json", + "ranching_section/padding_1": "ui/encyclopedia_screen.json", + "ranching_section/header_1": "ui/encyclopedia_screen.json", + "ranching_section/paragraph_2": "ui/encyclopedia_screen.json", + "ranching_section/padding_2": "ui/encyclopedia_screen.json", + "ranching_section/paragraph_3": "ui/encyclopedia_screen.json", + "ranching_section/padding_3": "ui/encyclopedia_screen.json", + "ranching_section/header_2": "ui/encyclopedia_screen.json", + "ranching_section/paragraph_4": "ui/encyclopedia_screen.json", + "ranching_section/padding_4": "ui/encyclopedia_screen.json", + "ranching_section/paragraph_5": "ui/encyclopedia_screen.json", + "redstone_button": "ui/encyclopedia_screen.json", + "redstone_section": "ui/encyclopedia_screen.json", + "redstone_section/paragraph_1": "ui/encyclopedia_screen.json", + "redstone_section/padding_1": "ui/encyclopedia_screen.json", + "redstone_section/header_1": "ui/encyclopedia_screen.json", + "redstone_section/paragraph_2": "ui/encyclopedia_screen.json", + "redstone_section/padding_2": "ui/encyclopedia_screen.json", + "redstone_section/paragraph_3": "ui/encyclopedia_screen.json", + "redstone_section/padding_3": "ui/encyclopedia_screen.json", + "redstone_section/paragraph_4": "ui/encyclopedia_screen.json", + "redstone_section/padding_4": "ui/encyclopedia_screen.json", + "redstone_section/paragraph_5": "ui/encyclopedia_screen.json", + "scaffolding_button": "ui/encyclopedia_screen.json", + "scaffolding_section": "ui/encyclopedia_screen.json", + "scaffolding_section/header_1": "ui/encyclopedia_screen.json", + "scaffolding_section/paragraph_1_keyboard": "ui/encyclopedia_screen.json", + "scaffolding_section/paragraph_1_gamepad": "ui/encyclopedia_screen.json", + "scaffolding_section/paragraph_1a_touch": "ui/encyclopedia_screen.json", + "scaffolding_section/padding_1a_touch": "ui/encyclopedia_screen.json", + "scaffolding_section/paragraph_1b_touch": "ui/encyclopedia_screen.json", + "scaffolding_section/padding_1b_touch": "ui/encyclopedia_screen.json", + "scaffolding_section/paragraph_1c_touch": "ui/encyclopedia_screen.json", + "scaffolding_section/padding_1": "ui/encyclopedia_screen.json", + "scaffolding_section/header_2": "ui/encyclopedia_screen.json", + "scaffolding_section/paragraph_2": "ui/encyclopedia_screen.json", + "scaffolding_section/image_1": "ui/encyclopedia_screen.json", + "scaffolding_section/padding_2": "ui/encyclopedia_screen.json", + "scaffolding_section/header_3": "ui/encyclopedia_screen.json", + "scaffolding_section/paragraph_3": "ui/encyclopedia_screen.json", + "scaffolding_section/padding_3": "ui/encyclopedia_screen.json", + "structure_blocks_button": "ui/encyclopedia_screen.json", + "structure_blocks_section": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_1": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_1": "ui/encyclopedia_screen.json", + "structure_blocks_section/header_1": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_2": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_2": "ui/encyclopedia_screen.json", + "structure_blocks_section/header_2": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_3": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_3": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_4": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_4": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_5": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_5": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_6": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_6": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_7": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_7": "ui/encyclopedia_screen.json", + "structure_blocks_section/header_3": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_8": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_8": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_9_keyboard": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_9_gamepad": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_9_touch": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_9": "ui/encyclopedia_screen.json", + "structure_blocks_section/header_4": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_10": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_10": "ui/encyclopedia_screen.json", + "structure_blocks_section/header_5": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_11": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_11": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_12": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_12": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_13": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_13": "ui/encyclopedia_screen.json", + "structure_blocks_section/header_6": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_14": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_14": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_15": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_15": "ui/encyclopedia_screen.json", + "structure_blocks_section/header_7": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_16": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_16": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_17": "ui/encyclopedia_screen.json", + "shulker_boxes_button": "ui/encyclopedia_screen.json", + "shulker_boxes_section": "ui/encyclopedia_screen.json", + "shulker_boxes_section/paragraph_1": "ui/encyclopedia_screen.json", + "the_end_button": "ui/encyclopedia_screen.json", + "the_end_section": "ui/encyclopedia_screen.json", + "the_end_section/paragraph_1": "ui/encyclopedia_screen.json", + "the_end_section/padding_1": "ui/encyclopedia_screen.json", + "the_end_section/paragraph_2": "ui/encyclopedia_screen.json", + "the_end_section/padding_2": "ui/encyclopedia_screen.json", + "the_end_section/header_1": "ui/encyclopedia_screen.json", + "the_end_section/paragraph_3": "ui/encyclopedia_screen.json", + "the_end_section/padding_3": "ui/encyclopedia_screen.json", + "the_end_section/paragraph_4": "ui/encyclopedia_screen.json", + "the_end_section/padding_4": "ui/encyclopedia_screen.json", + "the_end_section/paragraph_5": "ui/encyclopedia_screen.json", + "tools_button": "ui/encyclopedia_screen.json", + "tools_section": "ui/encyclopedia_screen.json", + "tools_section/paragraph_1": "ui/encyclopedia_screen.json", + "tools_section/padding_1": "ui/encyclopedia_screen.json", + "tools_section/paragraph_2": "ui/encyclopedia_screen.json", + "tools_section/padding_2": "ui/encyclopedia_screen.json", + "tools_section/header_1": "ui/encyclopedia_screen.json", + "tools_section/paragraph_3": "ui/encyclopedia_screen.json", + "tools_section/padding_3": "ui/encyclopedia_screen.json", + "tools_section/paragraph_4": "ui/encyclopedia_screen.json", + "tools_section/padding_4": "ui/encyclopedia_screen.json", + "tools_section/paragraph_5_not_touch": "ui/encyclopedia_screen.json", + "tools_section/paragraph_5_touch": "ui/encyclopedia_screen.json", + "tools_section/padding_5": "ui/encyclopedia_screen.json", + "tools_section/paragraph_6_not_touch": "ui/encyclopedia_screen.json", + "tools_section/paragraph_6_touch": "ui/encyclopedia_screen.json", + "tools_section/padding_6": "ui/encyclopedia_screen.json", + "tools_section/paragraph_7": "ui/encyclopedia_screen.json", + "tools_section/padding_7": "ui/encyclopedia_screen.json", + "tools_section/header_2": "ui/encyclopedia_screen.json", + "tools_section/paragraph_8": "ui/encyclopedia_screen.json", + "tools_section/padding_8": "ui/encyclopedia_screen.json", + "tools_section/paragraph_9": "ui/encyclopedia_screen.json", + "tools_section/padding_9": "ui/encyclopedia_screen.json", + "tools_section/paragraph_10": "ui/encyclopedia_screen.json", + "tools_section/padding_10": "ui/encyclopedia_screen.json", + "tools_section/paragraph_11": "ui/encyclopedia_screen.json", + "tools_section/padding_11": "ui/encyclopedia_screen.json", + "tools_section/paragraph_12": "ui/encyclopedia_screen.json", + "trading_button": "ui/encyclopedia_screen.json", + "trading_section": "ui/encyclopedia_screen.json", + "trading_section/paragraph_1": "ui/encyclopedia_screen.json", + "trading_section/padding_1": "ui/encyclopedia_screen.json", + "trading_section/header_1": "ui/encyclopedia_screen.json", + "trading_section/paragraph_2": "ui/encyclopedia_screen.json", + "trading_section/padding_2": "ui/encyclopedia_screen.json", + "trading_section/paragraph_3": "ui/encyclopedia_screen.json", + "trading_section/padding_3": "ui/encyclopedia_screen.json", + "trading_section/paragraph_4": "ui/encyclopedia_screen.json", + "transportation_button": "ui/encyclopedia_screen.json", + "transportation_section": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_1": "ui/encyclopedia_screen.json", + "transportation_section/padding_1": "ui/encyclopedia_screen.json", + "transportation_section/header_1": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_2": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_2_touch": "ui/encyclopedia_screen.json", + "transportation_section/padding_2": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_3_keyboard": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_3_gamepad": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_3a_touch": "ui/encyclopedia_screen.json", + "transportation_section/padding_3a": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_3b_touch": "ui/encyclopedia_screen.json", + "transportation_section/padding_3b": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_3c_touch": "ui/encyclopedia_screen.json", + "transportation_section/padding_3": "ui/encyclopedia_screen.json", + "transportation_section/header_2": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_4": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_4_touch": "ui/encyclopedia_screen.json", + "transportation_section/padding_4": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_5_keyboard": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_5_gamepad": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_5a_touch": "ui/encyclopedia_screen.json", + "transportation_section/padding_5a": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_5b_touch": "ui/encyclopedia_screen.json", + "transportation_section/padding_5b": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_5c_touch": "ui/encyclopedia_screen.json", + "weapons_button": "ui/encyclopedia_screen.json", + "weapons_section": "ui/encyclopedia_screen.json", + "weapons_section/header_1": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_1": "ui/encyclopedia_screen.json", + "weapons_section/padding_1": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_2_not_touch": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_2_touch": "ui/encyclopedia_screen.json", + "weapons_section/padding_2": "ui/encyclopedia_screen.json", + "weapons_section/header_2": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_3_not_touch": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_3_touch": "ui/encyclopedia_screen.json", + "weapons_section/padding_3": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_4": "ui/encyclopedia_screen.json", + "weapons_section/padding_5": "ui/encyclopedia_screen.json", + "weapons_section/header_3": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_5_not_touch": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_5a_touch": "ui/encyclopedia_screen.json", + "weapons_section/padding_5a_touch": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_5b_touch": "ui/encyclopedia_screen.json", + "weapons_section/padding_5b_touch": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_5c_touch": "ui/encyclopedia_screen.json", + "weapons_section/padding_5c_touch": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_5d_touch": "ui/encyclopedia_screen.json", + "weapons_section/padding_6": "ui/encyclopedia_screen.json", + "weapons_section/header_4": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_6_not_touch": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_6_touch": "ui/encyclopedia_screen.json", + "weapons_section/padding_7": "ui/encyclopedia_screen.json", + "weapons_section/header_5": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_7": "ui/encyclopedia_screen.json", + "minecoins_button": "ui/encyclopedia_screen.json", + "minecoins_section": "ui/encyclopedia_screen.json", + "minecoins_section/paragraph_1": "ui/encyclopedia_screen.json", + "minecoins_section/padding_1": "ui/encyclopedia_screen.json", + "minecoins_section/paragraph_2": "ui/encyclopedia_screen.json", + "minecoins_section/padding_2": "ui/encyclopedia_screen.json", + "minecoins_section/get_minecoins_button": "ui/encyclopedia_screen.json", + "minecoins_section/padding_3": "ui/encyclopedia_screen.json", + "minecoins_section/header_1": "ui/encyclopedia_screen.json", + "minecoins_section/paragraph_3": "ui/encyclopedia_screen.json", + "addons_button": "ui/encyclopedia_screen.json", + "addons_section": "ui/encyclopedia_screen.json", + "addons_section/paragraph_1": "ui/encyclopedia_screen.json", + "addons_section/padding_1": "ui/encyclopedia_screen.json", + "addons_section/paragraph_2": "ui/encyclopedia_screen.json", + "addons_section/padding_2": "ui/encyclopedia_screen.json", + "addons_section/header_1": "ui/encyclopedia_screen.json", + "addons_section/paragraph_3": "ui/encyclopedia_screen.json", + "addons_section/padding_3": "ui/encyclopedia_screen.json", + "addons_section/paragraph_4": "ui/encyclopedia_screen.json", + "addons_section/padding_4": "ui/encyclopedia_screen.json", + "addons_section/paragraph_5": "ui/encyclopedia_screen.json", + "addons_section/addons_faq_button": "ui/encyclopedia_screen.json", + "worlds_button": "ui/encyclopedia_screen.json", + "worlds_section": "ui/encyclopedia_screen.json", + "worlds_section/paragraph_1": "ui/encyclopedia_screen.json", + "worlds_section/padding_1": "ui/encyclopedia_screen.json", + "worlds_section/paragraph_2": "ui/encyclopedia_screen.json", + "worlds_section/padding_2": "ui/encyclopedia_screen.json", + "worlds_section/paragraph_3": "ui/encyclopedia_screen.json", + "worlds_section/padding_3": "ui/encyclopedia_screen.json", + "worlds_section/paragraph_4": "ui/encyclopedia_screen.json", + "worlds_section/padding_4": "ui/encyclopedia_screen.json", + "worlds_section/header_1": "ui/encyclopedia_screen.json", + "worlds_section/paragraph_5": "ui/encyclopedia_screen.json", + "worlds_section/padding_5": "ui/encyclopedia_screen.json", + "worlds_section/paragraph_6": "ui/encyclopedia_screen.json", + "worlds_section/padding_6": "ui/encyclopedia_screen.json", + "worlds_section/header_2": "ui/encyclopedia_screen.json", + "worlds_section/paragraph_7": "ui/encyclopedia_screen.json", + "worlds_section/padding_7": "ui/encyclopedia_screen.json", + "worlds_section/paragraph_8": "ui/encyclopedia_screen.json", + "worlds_section/padding_8": "ui/encyclopedia_screen.json", + "worlds_section/header_3": "ui/encyclopedia_screen.json", + "worlds_section/paragraph_9": "ui/encyclopedia_screen.json", + "worlds_section/padding_9": "ui/encyclopedia_screen.json", + "worlds_section/paragraph_10": "ui/encyclopedia_screen.json", + "worlds_section/padding_10": "ui/encyclopedia_screen.json", + "worlds_section/header_4": "ui/encyclopedia_screen.json", + "worlds_section/paragraph_11": "ui/encyclopedia_screen.json", + "worlds_section/padding_11": "ui/encyclopedia_screen.json", + "worlds_section/paragraph_12": "ui/encyclopedia_screen.json", + "worlds_section/padding_12": "ui/encyclopedia_screen.json", + "textures_button": "ui/encyclopedia_screen.json", + "textures_section": "ui/encyclopedia_screen.json", + "textures_section/paragraph_1": "ui/encyclopedia_screen.json", + "skins_button": "ui/encyclopedia_screen.json", + "skins_section": "ui/encyclopedia_screen.json", + "skins_section/paragraph_1": "ui/encyclopedia_screen.json", + "mashups_button": "ui/encyclopedia_screen.json", + "mashups_section": "ui/encyclopedia_screen.json", + "mashups_section/paragraph_1": "ui/encyclopedia_screen.json", + }, + "expanded_skin_pack": { + "banner_fill": "ui/expanded_skin_pack_screen.json", + "title_label": "ui/expanded_skin_pack_screen.json", + "label": "ui/expanded_skin_pack_screen.json", + "undo_image": "ui/expanded_skin_pack_screen.json", + "lock_icon": "ui/expanded_skin_pack_screen.json", + "skin_button": "ui/expanded_skin_pack_screen.json", + "skin_button/hover": "ui/expanded_skin_pack_screen.json", + "skin_button/pressed": "ui/expanded_skin_pack_screen.json", + "skin_rotation_arrows": "ui/expanded_skin_pack_screen.json", + "skin_viewer_panel": "ui/expanded_skin_pack_screen.json", + "skin_viewer_panel/skin_model_panel": "ui/expanded_skin_pack_screen.json", + "skin_viewer_panel/skin_model_panel/skin_model": "ui/expanded_skin_pack_screen.json", + "skin_viewer_panel/lock": "ui/expanded_skin_pack_screen.json", + "undo_skin_button": "ui/expanded_skin_pack_screen.json", + "confirm_skin_button": "ui/expanded_skin_pack_screen.json", + "stack_item": "ui/expanded_skin_pack_screen.json", + "accept_skin_panel": "ui/expanded_skin_pack_screen.json", + "accept_skin_panel/stack_item_0": "ui/expanded_skin_pack_screen.json", + "accept_skin_panel/stack_item_0/undo_btn": "ui/expanded_skin_pack_screen.json", + "accept_skin_panel/stack_item_1": "ui/expanded_skin_pack_screen.json", + "accept_skin_panel/stack_item_1/confirm_button": "ui/expanded_skin_pack_screen.json", + "preview_skin_panel": "ui/expanded_skin_pack_screen.json", + "preview_skin_panel/preview": "ui/expanded_skin_pack_screen.json", + "preview_skin_panel/button_frame": "ui/expanded_skin_pack_screen.json", + "preview_skin_panel/button_frame/stack_item_0": "ui/expanded_skin_pack_screen.json", + "preview_skin_panel/button_frame/stack_item_0/rotation": "ui/expanded_skin_pack_screen.json", + "preview_skin_panel/button_frame/stack_item_1": "ui/expanded_skin_pack_screen.json", + "preview_skin_panel/button_frame/stack_item_1/accept": "ui/expanded_skin_pack_screen.json", + "skin_model": "ui/expanded_skin_pack_screen.json", + "scrolling_content": "ui/expanded_skin_pack_screen.json", + "scrolling_content/padding_0": "ui/expanded_skin_pack_screen.json", + "scrolling_content/pack_info_panel": "ui/expanded_skin_pack_screen.json", + "scrolling_content/pack_info_panel/pack_info_panel": "ui/expanded_skin_pack_screen.json", + "scrolling_content/skin_grid_panel": "ui/expanded_skin_pack_screen.json", + "scrolling_content/skin_grid_panel/skins_grid": "ui/expanded_skin_pack_screen.json", + "pack_info_panel": "ui/expanded_skin_pack_screen.json", + "pack_info_panel/lock_icon_panel": "ui/expanded_skin_pack_screen.json", + "pack_info_panel/lock_icon_panel/lock_icon": "ui/expanded_skin_pack_screen.json", + "pack_info_panel/pack_info_panel": "ui/expanded_skin_pack_screen.json", + "pack_info_panel/pack_info_panel/pack_name": "ui/expanded_skin_pack_screen.json", + "pack_info_panel/pack_info_panel/creator_name": "ui/expanded_skin_pack_screen.json", + "skins_grid_item": "ui/expanded_skin_pack_screen.json", + "skins_grid_item/clip": "ui/expanded_skin_pack_screen.json", + "skins_grid_item/clip/model": "ui/expanded_skin_pack_screen.json", + "skins_grid_item/lock": "ui/expanded_skin_pack_screen.json", + "skins_grid_item/button": "ui/expanded_skin_pack_screen.json", + "skins_grid": "ui/expanded_skin_pack_screen.json", + "select_skin_button": "ui/expanded_skin_pack_screen.json", + "select_skin_button/default": "ui/expanded_skin_pack_screen.json", + "select_skin_button/hover": "ui/expanded_skin_pack_screen.json", + "select_skin_button/pressed": "ui/expanded_skin_pack_screen.json", + "all_skins_content": "ui/expanded_skin_pack_screen.json", + "all_skins_content/scrolling_frame": "ui/expanded_skin_pack_screen.json", + "all_skins_content/scrolling_frame/change_skin_scroll": "ui/expanded_skin_pack_screen.json", + "all_skins_frame": "ui/expanded_skin_pack_screen.json", + "all_skins_frame/all_skins_content": "ui/expanded_skin_pack_screen.json", + "title_bar": "ui/expanded_skin_pack_screen.json", + "title_bar/padding_0": "ui/expanded_skin_pack_screen.json", + "title_bar/fill_panel": "ui/expanded_skin_pack_screen.json", + "title_bar/fill_panel/title_holder": "ui/expanded_skin_pack_screen.json", + "title_bar/fill_panel/title_holder/change_skin_title": "ui/expanded_skin_pack_screen.json", + "title_bar/padding_1": "ui/expanded_skin_pack_screen.json", + "title_bar/skin_name_holder": "ui/expanded_skin_pack_screen.json", + "title_bar/skin_name_holder/preview_skin_name": "ui/expanded_skin_pack_screen.json", + "title_bar/padding_2": "ui/expanded_skin_pack_screen.json", + "content": "ui/expanded_skin_pack_screen.json", + "content/title": "ui/expanded_skin_pack_screen.json", + "content/selector_area": "ui/expanded_skin_pack_screen.json", + "content/content_area": "ui/expanded_skin_pack_screen.json", + "content/section_divider": "ui/expanded_skin_pack_screen.json", + "expanded_skin_pack_screen": "ui/expanded_skin_pack_screen.json", + "skin_picker_screen_content": "ui/expanded_skin_pack_screen.json", + "skin_picker_screen_content/bg": "ui/expanded_skin_pack_screen.json", + "skin_picker_screen_content/container": "ui/expanded_skin_pack_screen.json", + "skin_picker_screen_content/container/content": "ui/expanded_skin_pack_screen.json", + "scrollable_selector_area_content": "ui/expanded_skin_pack_screen.json", + "selector_area": "ui/expanded_skin_pack_screen.json", + "selector_area/all_skins": "ui/expanded_skin_pack_screen.json", + "selector_area/inactive_modal_pane_fade": "ui/expanded_skin_pack_screen.json", + "content_area": "ui/expanded_skin_pack_screen.json", + "content_area/preview_skin": "ui/expanded_skin_pack_screen.json", + "content_area/inactive_modal_pane_fade": "ui/expanded_skin_pack_screen.json", + "section_divider": "ui/expanded_skin_pack_screen.json", + }, + "feed_common": { + "top_bar_gradient": "ui/feed_common.json", + "label": "ui/feed_common.json", + "smooth_label": "ui/feed_common.json", + "share_label": "ui/feed_common.json", + "title_label": "ui/feed_common.json", + "feed_label": "ui/feed_common.json", + "item_label": "ui/feed_common.json", + "return_label": "ui/feed_common.json", + "prev_label": "ui/feed_common.json", + "next_label": "ui/feed_common.json", + "delete_label": "ui/feed_common.json", + "report_to_club_label": "ui/feed_common.json", + "report_to_xbox_label": "ui/feed_common.json", + "new_post_header_text": "ui/feed_common.json", + "feed_button": "ui/feed_common.json", + "return_button": "ui/feed_common.json", + "prev_button": "ui/feed_common.json", + "prev_panel": "ui/feed_common.json", + "prev_panel/padding_1": "ui/feed_common.json", + "prev_panel/lab_panel": "ui/feed_common.json", + "prev_panel/lab_panel/vert_pad": "ui/feed_common.json", + "prev_panel/lab_panel/prevlab": "ui/feed_common.json", + "next_button": "ui/feed_common.json", + "next_panel": "ui/feed_common.json", + "next_panel/lab_panel2": "ui/feed_common.json", + "next_panel/lab_panel2/vert_pad2": "ui/feed_common.json", + "next_panel/lab_panel2/nextlab": "ui/feed_common.json", + "next_panel/padding_2": "ui/feed_common.json", + "like_button": "ui/feed_common.json", + "delete_button": "ui/feed_common.json", + "report_to_xbox_button": "ui/feed_common.json", + "report_to_club_button": "ui/feed_common.json", + "options_button": "ui/feed_common.json", + "options_close_button_high_contrast": "ui/feed_common.json", + "options_close_button_high_contrast/background": "ui/feed_common.json", + "options_close_button_high_contrast/default": "ui/feed_common.json", + "options_close_button_high_contrast/hover": "ui/feed_common.json", + "options_close_button_high_contrast/pressed": "ui/feed_common.json", + "share_button": "ui/feed_common.json", + "spacing_gap": "ui/feed_common.json", + "platform_icon": "ui/feed_common.json", + "platform_icon_panel": "ui/feed_common.json", + "platform_icon_panel/platform_icon": "ui/feed_common.json", + "account_link_image": "ui/feed_common.json", + "account_link_icon": "ui/feed_common.json", + "account_link_icon/space_01": "ui/feed_common.json", + "account_link_icon/account_link_image": "ui/feed_common.json", + "account_link_icon/space_02": "ui/feed_common.json", + "player_pic_bevel": "ui/feed_common.json", + "no_feed_item_content": "ui/feed_common.json", + "gamepad_helpers": "ui/feed_common.json", + "share_text_box": "ui/feed_common.json", + "progress_loading_bars": "ui/feed_common.json", + "popup_dialog_bg": "ui/feed_common.json", + "pagination_panel": "ui/feed_common.json", + "pagination_panel/prev_button": "ui/feed_common.json", + "pagination_panel/page_text": "ui/feed_common.json", + "pagination_panel/next_button": "ui/feed_common.json", + "pagination_panel_gamepad": "ui/feed_common.json", + "pagination_panel_gamepad/prev_panel": "ui/feed_common.json", + "pagination_panel_gamepad/page_text": "ui/feed_common.json", + "pagination_panel_gamepad/next_panel": "ui/feed_common.json", + "like_image": "ui/feed_common.json", + "like_image_default": "ui/feed_common.json", + "like_image_panel": "ui/feed_common.json", + "like_image_panel/like_image_instance": "ui/feed_common.json", + "like_image_panel/like_image_default": "ui/feed_common.json", + "feed_like_content_panel": "ui/feed_common.json", + "feed_like_content_panel/like_image_panel": "ui/feed_common.json", + "feed_like_content_panel/like_label": "ui/feed_common.json", + "white_banner": "ui/feed_common.json", + "page_text": "ui/feed_common.json", + "options_icon": "ui/feed_common.json", + "transparent_background": "ui/feed_common.json", + "black_arrow": "ui/feed_common.json", + "faded_background_image": "ui/feed_common.json", + "unviewed_post_badge": "ui/feed_common.json", + "unviewed_post_badge/unviewed_post_text": "ui/feed_common.json", + }, + "file_upload": { + "empty_progress_bar_icon": "ui/file_upload_screen.json", + "full_progress_bar_icon": "ui/file_upload_screen.json", + "progress_bar_nub": "ui/file_upload_screen.json", + "progress_bar_icon": "ui/file_upload_screen.json", + "progress_bar_icon/empty_progress_bar_icon": "ui/file_upload_screen.json", + "progress_bar_icon/progress_percent_panel": "ui/file_upload_screen.json", + "progress_bar_icon/progress_percent_panel/full_progress_bar_icon": "ui/file_upload_screen.json", + "progress_bar_icon/progress_percent_panel/progress_bar_nub": "ui/file_upload_screen.json", + "common_label": "ui/file_upload_screen.json", + "progress_text_panel": "ui/file_upload_screen.json", + "progress_text_panel/progress": "ui/file_upload_screen.json", + "progress_text_panel/total": "ui/file_upload_screen.json", + "message_text_panel": "ui/file_upload_screen.json", + "message_text_panel/message_text": "ui/file_upload_screen.json", + "button_common": "ui/file_upload_screen.json", + "lets_go_button": "ui/file_upload_screen.json", + "cancel_button": "ui/file_upload_screen.json", + "continue_button": "ui/file_upload_screen.json", + "continue_or_cancel_button": "ui/file_upload_screen.json", + "continue_or_cancel_button/continue": "ui/file_upload_screen.json", + "continue_or_cancel_button/cancel": "ui/file_upload_screen.json", + "single_title_panel": "ui/file_upload_screen.json", + "single_title_panel/center": "ui/file_upload_screen.json", + "dual_title_panel": "ui/file_upload_screen.json", + "dual_title_panel/left": "ui/file_upload_screen.json", + "dual_title_panel/right": "ui/file_upload_screen.json", + "upload_title_panel": "ui/file_upload_screen.json", + "upload_title_panel/single_label": "ui/file_upload_screen.json", + "upload_title_panel/dual_label": "ui/file_upload_screen.json", + "content_panel": "ui/file_upload_screen.json", + "content_panel/stack_panel_0": "ui/file_upload_screen.json", + "content_panel/stack_panel_1": "ui/file_upload_screen.json", + "content_stack_panel": "ui/file_upload_screen.json", + "content_stack_panel/message": "ui/file_upload_screen.json", + "content_stack_panel/description": "ui/file_upload_screen.json", + "content_stack_panel/progress": "ui/file_upload_screen.json", + "warning_content_panel": "ui/file_upload_screen.json", + "warning_content_panel/message": "ui/file_upload_screen.json", + "button_panel": "ui/file_upload_screen.json", + "button_panel/play": "ui/file_upload_screen.json", + "button_panel/cancel": "ui/file_upload_screen.json", + "button_panel/continue_cancel": "ui/file_upload_screen.json", + "file_upload_content": "ui/file_upload_screen.json", + "file_upload_content/title_panel_content": "ui/file_upload_screen.json", + "file_upload_content/content": "ui/file_upload_screen.json", + "file_upload_content/content/background": "ui/file_upload_screen.json", + "file_upload_content/content/title": "ui/file_upload_screen.json", + "file_upload_content/content/content": "ui/file_upload_screen.json", + "file_upload_content/content/buttons": "ui/file_upload_screen.json", + "file_transmission_screen": "ui/file_upload_screen.json", + }, + "furnace": { + "flame_panel": "ui/furnace_screen.json", + "flame_panel/flame_empty_image": "ui/furnace_screen.json", + "flame_panel/flame_full_image": "ui/furnace_screen.json", + "furnace_arrow_empty_image": "ui/furnace_screen.json", + "furnace_arrow_full_image": "ui/furnace_screen.json", + "flame_empty_image": "ui/furnace_screen.json", + "flame_full_image": "ui/furnace_screen.json", + "furnace_label": "ui/furnace_screen.json", + "furnace_input_panel": "ui/furnace_screen.json", + "furnace_input_panel/panel": "ui/furnace_screen.json", + "furnace_input_panel/panel/furnace_ingredient_panel": "ui/furnace_screen.json", + "furnace_input_panel/panel/flame_panel": "ui/furnace_screen.json", + "furnace_input_panel/panel/furnace_fuel_panel": "ui/furnace_screen.json", + "furnace_ingredient_panel": "ui/furnace_screen.json", + "furnace_ingredient_panel/ingredient_item": "ui/furnace_screen.json", + "furnace_fuel_panel": "ui/furnace_screen.json", + "furnace_fuel_panel/fuel_item": "ui/furnace_screen.json", + "furnace_output_panel": "ui/furnace_screen.json", + "furnace_output_panel/output_item": "ui/furnace_screen.json", + "furnace_panel_top_half": "ui/furnace_screen.json", + "furnace_panel_top_half/furnace_label": "ui/furnace_screen.json", + "furnace_panel_top_half/input": "ui/furnace_screen.json", + "furnace_panel_top_half/furnace_arrow_empty_image": "ui/furnace_screen.json", + "furnace_panel_top_half/furnace_arrow_full_image": "ui/furnace_screen.json", + "furnace_panel_top_half/output": "ui/furnace_screen.json", + "furnace_panel": "ui/furnace_screen.json", + "furnace_panel/container_gamepad_helpers": "ui/furnace_screen.json", + "furnace_panel/selected_item_details_factory": "ui/furnace_screen.json", + "furnace_panel/item_lock_notification_factory": "ui/furnace_screen.json", + "furnace_panel/root_panel": "ui/furnace_screen.json", + "furnace_panel/root_panel/common_panel": "ui/furnace_screen.json", + "furnace_panel/root_panel/furnace_screen_inventory": "ui/furnace_screen.json", + "furnace_panel/root_panel/furnace_screen_inventory/furnace_panel_top_half": "ui/furnace_screen.json", + "furnace_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label": "ui/furnace_screen.json", + "furnace_panel/root_panel/furnace_screen_inventory/hotbar_grid": "ui/furnace_screen.json", + "furnace_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button": "ui/furnace_screen.json", + "furnace_panel/root_panel/inventory_selected_icon_button": "ui/furnace_screen.json", + "furnace_panel/root_panel/gamepad_cursor": "ui/furnace_screen.json", + "furnace_panel/flying_item_renderer": "ui/furnace_screen.json", + "furnace_screen": "ui/furnace_screen.json", + }, + "furnace_pocket": { + "generic_label": "ui/furnace_screen_pocket.json", + "background_image": "ui/furnace_screen_pocket.json", + "empty_arrow": "ui/furnace_screen_pocket.json", + "full_arrow": "ui/furnace_screen_pocket.json", + "flame_empty": "ui/furnace_screen_pocket.json", + "flame_full": "ui/furnace_screen_pocket.json", + "input_label": "ui/furnace_screen_pocket.json", + "fuel_label": "ui/furnace_screen_pocket.json", + "result_label": "ui/furnace_screen_pocket.json", + "result_name_label": "ui/furnace_screen_pocket.json", + "furnace_content": "ui/furnace_screen_pocket.json", + "furnace_content/input_panel": "ui/furnace_screen_pocket.json", + "furnace_content/input_panel/input_label": "ui/furnace_screen_pocket.json", + "furnace_content/input_panel/ingredient_item": "ui/furnace_screen_pocket.json", + "furnace_content/flame_empty": "ui/furnace_screen_pocket.json", + "furnace_content/flame_full": "ui/furnace_screen_pocket.json", + "furnace_content/fuel_panel": "ui/furnace_screen_pocket.json", + "furnace_content/fuel_panel/fuel_label": "ui/furnace_screen_pocket.json", + "furnace_content/fuel_panel/fuel_item": "ui/furnace_screen_pocket.json", + "furnace_content/empty_arrow": "ui/furnace_screen_pocket.json", + "furnace_content/full_arrow": "ui/furnace_screen_pocket.json", + "furnace_content/output_panel": "ui/furnace_screen_pocket.json", + "furnace_content/output_panel/result_label": "ui/furnace_screen_pocket.json", + "furnace_content/output_panel/result_name_label": "ui/furnace_screen_pocket.json", + "furnace_content/output_panel/output_item": "ui/furnace_screen_pocket.json", + "inventory_grid": "ui/furnace_screen_pocket.json", + "inventory_content": "ui/furnace_screen_pocket.json", + "inventory_content/scrolling_panel": "ui/furnace_screen_pocket.json", + "header": "ui/furnace_screen_pocket.json", + "header/header_background": "ui/furnace_screen_pocket.json", + "header/close_button": "ui/furnace_screen_pocket.json", + "header/panel": "ui/furnace_screen_pocket.json", + "header/panel/title_label": "ui/furnace_screen_pocket.json", + "inventory_and_furnace_panel": "ui/furnace_screen_pocket.json", + "inventory_and_furnace_panel/inventory_half_screen": "ui/furnace_screen_pocket.json", + "inventory_and_furnace_panel/inventory_half_screen/inventory_content": "ui/furnace_screen_pocket.json", + "inventory_and_furnace_panel/furnace_half_screen": "ui/furnace_screen_pocket.json", + "inventory_and_furnace_panel/furnace_half_screen/furnace_content": "ui/furnace_screen_pocket.json", + "header_and_content_stack_panel": "ui/furnace_screen_pocket.json", + "header_and_content_stack_panel/header": "ui/furnace_screen_pocket.json", + "header_and_content_stack_panel/inventory_and_furnace_panel": "ui/furnace_screen_pocket.json", + "furnace_panel": "ui/furnace_screen_pocket.json", + "furnace_panel/bg": "ui/furnace_screen_pocket.json", + "furnace_panel/root_panel": "ui/furnace_screen_pocket.json", + "furnace_panel/header_and_content_stack_panel": "ui/furnace_screen_pocket.json", + "furnace_panel/container_gamepad_helpers": "ui/furnace_screen_pocket.json", + "furnace_panel/inventory_selected_icon_button": "ui/furnace_screen_pocket.json", + "furnace_panel/hold_icon": "ui/furnace_screen_pocket.json", + "furnace_panel/selected_item_details_factory": "ui/furnace_screen_pocket.json", + "furnace_panel/item_lock_notification_factory": "ui/furnace_screen_pocket.json", + "furnace_panel/flying_item_renderer": "ui/furnace_screen_pocket.json", + }, + "game_tip": { + "game_tip_animation": "ui/game_tip_screen.json", + "game_tip_animation_panel": "ui/game_tip_screen.json", + "game_tip_animation_panel/animated_icon": "ui/game_tip_screen.json", + "game_tip_label": "ui/game_tip_screen.json", + "game_tip_text_panel": "ui/game_tip_screen.json", + "game_tip_text_panel/upper_padding": "ui/game_tip_screen.json", + "game_tip_text_panel/label": "ui/game_tip_screen.json", + "game_tip_text_panel/lower_padding": "ui/game_tip_screen.json", + "game_tip_arrow_image": "ui/game_tip_screen.json", + "game_tip_arrow_panel": "ui/game_tip_screen.json", + "game_tip_arrow_panel/tip_arrow": "ui/game_tip_screen.json", + "game_tip_panel": "ui/game_tip_screen.json", + "game_tip_panel/animated_panel": "ui/game_tip_screen.json", + "game_tip_panel/middle_padding": "ui/game_tip_screen.json", + "game_tip_panel/label": "ui/game_tip_screen.json", + "game_tip_panel/right_padding": "ui/game_tip_screen.json", + "game_tip_item_background": "ui/game_tip_screen.json", + "game_tip_item_background/horizontal_container": "ui/game_tip_screen.json", + "game_tip_item_background/arrow_panel": "ui/game_tip_screen.json", + "chat_stack_game_tip_panel": "ui/game_tip_screen.json", + "chat_stack_game_tip_panel/top_padding": "ui/game_tip_screen.json", + "chat_stack_game_tip_panel/game_tip_background": "ui/game_tip_screen.json", + "game_tip_factory": "ui/game_tip_screen.json", + "game_tip_chat_stack_factory": "ui/game_tip_screen.json", + }, + "gamepad_disconnected": { + "gamepad_disconnected_modal": "ui/gamepad_disconnected.json", + "gamepad_disconnected_modal/dialog_background_hollow_3": "ui/gamepad_disconnected.json", + "gamepad_disconnected_modal/dialog_background_hollow_3/control": "ui/gamepad_disconnected.json", + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel": "ui/gamepad_disconnected.json", + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_0": "ui/gamepad_disconnected.json", + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/title": "ui/gamepad_disconnected.json", + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_1": "ui/gamepad_disconnected.json", + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/description": "ui/gamepad_disconnected.json", + "gamepad_disconnected_screen": "ui/gamepad_disconnected.json", + }, + "gameplay": { + "bundle_selected_item_icon": "ui/gameplay_common.json", + "bundle_open_icon_back": "ui/gameplay_common.json", + "bundle_open_icon_front": "ui/gameplay_common.json", + "bundle_selected_item_background": "ui/gameplay_common.json", + "bundle_selected_item_background/bundle_selected_item_background_colour_green": "ui/gameplay_common.json", + "bundle_selected_item_background/bundle_selected_item_background_colour": "ui/gameplay_common.json", + "bundle_selected_item_background/bundle_selected_item_frame": "ui/gameplay_common.json", + "bundle_selected_item_panel": "ui/gameplay_common.json", + "bundle_selected_item_panel/bundle_selected_item_background": "ui/gameplay_common.json", + "bundle_selected_item_panel/bundle_open_icon_back": "ui/gameplay_common.json", + "bundle_selected_item_panel/bundle_selected_item_icon": "ui/gameplay_common.json", + "bundle_selected_item_panel/bundle_open_icon_front": "ui/gameplay_common.json", + "bundle_selected_item_panel/storage_bar": "ui/gameplay_common.json", + "bundle_slot_panel": "ui/gameplay_common.json", + "bundle_slot_panel/bundle_selected_item_panel": "ui/gameplay_common.json", + "bundle_cell_image": "ui/gameplay_common.json", + "bundle_cell_image/background_panel": "ui/gameplay_common.json", + "bundle_cell_image/background_panel/item_background": "ui/gameplay_common.json", + "bundle_cell_image/highlight_panel": "ui/gameplay_common.json", + "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_green": "ui/gameplay_common.json", + "bundle_cell_image/highlight_panel/bundle_selected_item_background_border_white": "ui/gameplay_common.json", + "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_blue": "ui/gameplay_common.json", + "bundle_tooltip_slot_button": "ui/gameplay_common.json", + "bundle_tooltip_slot_pocket": "ui/gameplay_common.json", + "bundle_tooltip_slot_pocket/item_in_bundle_tooltip_pocket": "ui/gameplay_common.json", + "bundle_tooltip_slot_pocket/more_hidden_items_label": "ui/gameplay_common.json", + "bundle_tooltip_slot_classic": "ui/gameplay_common.json", + "bundle_tooltip_slot_classic/item_in_bundle_tooltip_pocket": "ui/gameplay_common.json", + "bundle_tooltip_slot_classic/more_hidden_items_label": "ui/gameplay_common.json", + "bundle_tooltip": "ui/gameplay_common.json", + "bundle_tooltip/background": "ui/gameplay_common.json", + "bundle_tooltip/background/empty_button": "ui/gameplay_common.json", + "bundle_tooltip/background/empty_button/default": "ui/gameplay_common.json", + "bundle_tooltip/background/empty_button/hover": "ui/gameplay_common.json", + "bundle_tooltip/background/empty_button/pressed": "ui/gameplay_common.json", + "bundle_tooltip/background/selected_item_tooltip": "ui/gameplay_common.json", + "bundle_tooltip/background/selected_item_tooltip/item_text_label": "ui/gameplay_common.json", + "bundle_tooltip/header_stack": "ui/gameplay_common.json", + "bundle_tooltip/header_stack/bundle_label": "ui/gameplay_common.json", + "bundle_tooltip/header_stack/close_button": "ui/gameplay_common.json", + "bundle_tooltip/header_stack/close_button/default": "ui/gameplay_common.json", + "bundle_tooltip/header_stack/close_button/hover": "ui/gameplay_common.json", + "bundle_tooltip/header_stack/close_button/pressed": "ui/gameplay_common.json", + "bundle_tooltip/wrapper": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack/header_padding": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/left_padding": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/item_grid": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/info_message": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/empty_message": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_fill": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full/full_label": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_border": "ui/gameplay_common.json", + "bundle_touch_tooltip": "ui/gameplay_common.json", + "bundle_tooltip_factory_wrapper": "ui/gameplay_common.json", + "bundle_tooltip_factory_wrapper/bundle_cursor_tooltip": "ui/gameplay_common.json", + "bundle_cursor_tooltip": "ui/gameplay_common.json", + "bundle_cursor_tooltip/tooltip": "ui/gameplay_common.json", + }, + "gathering_info": { + "gathering_info_screen": "ui/gathering_info_screen.json", + "info_content": "ui/gathering_info_screen.json", + "info_content/header": "ui/gathering_info_screen.json", + "info_content/left_panel": "ui/gathering_info_screen.json", + "info_content/left_panel/stack": "ui/gathering_info_screen.json", + "info_content/left_panel/stack/event_image": "ui/gathering_info_screen.json", + "info_content/left_panel/stack/pad_2": "ui/gathering_info_screen.json", + "info_content/left_panel/stack/button_and_caption": "ui/gathering_info_screen.json", + "info_content/left_panel/stack/button_and_caption/caption": "ui/gathering_info_screen.json", + "info_content/left_panel/stack/button_and_caption/action_button": "ui/gathering_info_screen.json", + "info_content/left_panel/stack/pad_3": "ui/gathering_info_screen.json", + "info_content/left_panel/stack/info_button": "ui/gathering_info_screen.json", + "info_content/left_panel/stack/pad_4": "ui/gathering_info_screen.json", + "info_content/left_panel/stack/gamepad_helper_panel": "ui/gathering_info_screen.json", + "info_content/left_panel/stack/gamepad_helper_panel/gamepad_helpers": "ui/gathering_info_screen.json", + "info_content/left_panel/stack/pad_fill": "ui/gathering_info_screen.json", + "info_content/left_panel/stack/gathering_id_label": "ui/gathering_info_screen.json", + "info_content/left_panel/stack/pad_5": "ui/gathering_info_screen.json", + "info_content/section_divider": "ui/gathering_info_screen.json", + "info_content/right_panel": "ui/gathering_info_screen.json", + "info_content/right_panel/scroll": "ui/gathering_info_screen.json", + "right_panel_content": "ui/gathering_info_screen.json", + "right_panel_content/pad": "ui/gathering_info_screen.json", + "right_panel_content/sign_in_panel": "ui/gathering_info_screen.json", + "right_panel_content/sign_in_panel/sign_in_image": "ui/gathering_info_screen.json", + "right_panel_content/sign_in_panel/horizontal_pad": "ui/gathering_info_screen.json", + "right_panel_content/sign_in_panel/text_stack": "ui/gathering_info_screen.json", + "right_panel_content/sign_in_panel/text_stack/sign_in_title": "ui/gathering_info_screen.json", + "right_panel_content/sign_in_panel/text_stack/text_pad": "ui/gathering_info_screen.json", + "right_panel_content/sign_in_panel/text_stack/sign_in_body": "ui/gathering_info_screen.json", + "right_panel_content/sign_in_pad": "ui/gathering_info_screen.json", + "right_panel_content/qr_panel": "ui/gathering_info_screen.json", + "right_panel_content/qr_panel/qr_background": "ui/gathering_info_screen.json", + "right_panel_content/qr_panel/qr_background/qr_image": "ui/gathering_info_screen.json", + "right_panel_content/qr_panel/horizontal_pad": "ui/gathering_info_screen.json", + "right_panel_content/qr_panel/text_stack": "ui/gathering_info_screen.json", + "right_panel_content/qr_panel/text_stack/qr_title": "ui/gathering_info_screen.json", + "right_panel_content/qr_panel/text_stack/text_pad": "ui/gathering_info_screen.json", + "right_panel_content/qr_panel/text_stack/qr_body": "ui/gathering_info_screen.json", + "right_panel_content/qr_pad": "ui/gathering_info_screen.json", + "right_panel_content/title": "ui/gathering_info_screen.json", + "right_panel_content/pad_1": "ui/gathering_info_screen.json", + "right_panel_content/body": "ui/gathering_info_screen.json", + "right_panel_content/pad_2": "ui/gathering_info_screen.json", + "right_panel_content/body_image": "ui/gathering_info_screen.json", + "right_panel_content/footer": "ui/gathering_info_screen.json", + "tts_label": "ui/gathering_info_screen.json", + "tts_label_title": "ui/gathering_info_screen.json", + "sign_in_title": "ui/gathering_info_screen.json", + "sign_in_body": "ui/gathering_info_screen.json", + "qr_title": "ui/gathering_info_screen.json", + "qr_body": "ui/gathering_info_screen.json", + "title_panel": "ui/gathering_info_screen.json", + "body_panel": "ui/gathering_info_screen.json", + "section_divider": "ui/gathering_info_screen.json", + "gamepad_helpers": "ui/gathering_info_screen.json", + "gamepad_helpers/gamepad_helper_a": "ui/gathering_info_screen.json", + "gamepad_helpers/gamepad_helper_b": "ui/gathering_info_screen.json", + }, + "globalpause": { + "message": "ui/global_pause_screen.json", + "quit_button": "ui/global_pause_screen.json", + "globalpause_screen": "ui/global_pause_screen.json", + "pause_screen_content": "ui/global_pause_screen.json", + "pause_screen_content/transparentFill": "ui/global_pause_screen.json", + "pause_screen_content/message": "ui/global_pause_screen.json", + "pause_screen_content/quit_button": "ui/global_pause_screen.json", + }, + "grindstone": { + "title_label": "ui/grindstone_screen.json", + "arrow_icon": "ui/grindstone_screen.json", + "cross_out_icon": "ui/grindstone_screen.json", + "grindstone_output_slot_button": "ui/grindstone_screen.json", + "grindstone_item_slot": "ui/grindstone_screen.json", + "grindstone_item_slot/container_item": "ui/grindstone_screen.json", + "grindstone_middle_panel": "ui/grindstone_screen.json", + "grindstone_middle_panel/input_item_slot": "ui/grindstone_screen.json", + "grindstone_middle_panel/additional_item_slot": "ui/grindstone_screen.json", + "grindstone_slots_panel": "ui/grindstone_screen.json", + "grindstone_slots_panel/grindstone_middle_panel": "ui/grindstone_screen.json", + "grindstone_slots_panel/yields": "ui/grindstone_screen.json", + "grindstone_slots_panel/yields/arrow_icon": "ui/grindstone_screen.json", + "grindstone_slots_panel/yields/cross_out_icon": "ui/grindstone_screen.json", + "grindstone_slots_panel/result_item_slot": "ui/grindstone_screen.json", + "top_half_panel": "ui/grindstone_screen.json", + "top_half_panel/title_label": "ui/grindstone_screen.json", + "top_half_panel/grindstone_slots_panel": "ui/grindstone_screen.json", + "grindstone_panel": "ui/grindstone_screen.json", + "grindstone_panel/container_gamepad_helpers": "ui/grindstone_screen.json", + "grindstone_panel/selected_item_details_factory": "ui/grindstone_screen.json", + "grindstone_panel/item_lock_notification_factory": "ui/grindstone_screen.json", + "grindstone_panel/root_panel": "ui/grindstone_screen.json", + "grindstone_panel/root_panel/common_panel": "ui/grindstone_screen.json", + "grindstone_panel/root_panel/grindstone_screen_inventory": "ui/grindstone_screen.json", + "grindstone_panel/root_panel/grindstone_screen_inventory/top_half_panel": "ui/grindstone_screen.json", + "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_panel_bottom_half_with_label": "ui/grindstone_screen.json", + "grindstone_panel/root_panel/grindstone_screen_inventory/hotbar_grid": "ui/grindstone_screen.json", + "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_take_progress_icon_button": "ui/grindstone_screen.json", + "grindstone_panel/root_panel/inventory_selected_icon_button": "ui/grindstone_screen.json", + "grindstone_panel/root_panel/gamepad_cursor": "ui/grindstone_screen.json", + "grindstone_panel/flying_item_renderer": "ui/grindstone_screen.json", + "grindstone_screen": "ui/grindstone_screen.json", + }, + "grindstone_pocket": { + "background_image": "ui/grindstone_screen_pocket.json", + "repair_title_label": "ui/grindstone_screen_pocket.json", + "grindstone_middle_panel": "ui/grindstone_screen_pocket.json", + "grindstone_middle_panel/input_slot": "ui/grindstone_screen_pocket.json", + "grindstone_middle_panel/additional_slot": "ui/grindstone_screen_pocket.json", + "slots_panel": "ui/grindstone_screen_pocket.json", + "slots_panel/grindstone_middle_panel": "ui/grindstone_screen_pocket.json", + "slots_panel/arrow": "ui/grindstone_screen_pocket.json", + "slots_panel/arrow/cross_out": "ui/grindstone_screen_pocket.json", + "slots_panel/result_slot": "ui/grindstone_screen_pocket.json", + "grindstone_contents_panel": "ui/grindstone_screen_pocket.json", + "grindstone_contents_panel/repair_title_label": "ui/grindstone_screen_pocket.json", + "grindstone_contents_panel/slots_panel": "ui/grindstone_screen_pocket.json", + "inventory_grid": "ui/grindstone_screen_pocket.json", + "inventory_content": "ui/grindstone_screen_pocket.json", + "inventory_content/scrolling_panel": "ui/grindstone_screen_pocket.json", + "header": "ui/grindstone_screen_pocket.json", + "header/header_background": "ui/grindstone_screen_pocket.json", + "header/legacy_pocket_close_button": "ui/grindstone_screen_pocket.json", + "header/panel": "ui/grindstone_screen_pocket.json", + "header/panel/title_label": "ui/grindstone_screen_pocket.json", + "inventory_and_grindstone_panel": "ui/grindstone_screen_pocket.json", + "inventory_and_grindstone_panel/inventory_half_screen": "ui/grindstone_screen_pocket.json", + "inventory_and_grindstone_panel/inventory_half_screen/inventory_content": "ui/grindstone_screen_pocket.json", + "inventory_and_grindstone_panel/grindstone_half_screen": "ui/grindstone_screen_pocket.json", + "inventory_and_grindstone_panel/grindstone_half_screen/grindstone_content": "ui/grindstone_screen_pocket.json", + "header_and_content_stack_panel": "ui/grindstone_screen_pocket.json", + "header_and_content_stack_panel/header": "ui/grindstone_screen_pocket.json", + "header_and_content_stack_panel/inventory_and_grindstone_panel": "ui/grindstone_screen_pocket.json", + "grindstone_panel": "ui/grindstone_screen_pocket.json", + "grindstone_panel/bg": "ui/grindstone_screen_pocket.json", + "grindstone_panel/root_panel": "ui/grindstone_screen_pocket.json", + "grindstone_panel/header_and_content_stack_panel": "ui/grindstone_screen_pocket.json", + "grindstone_panel/container_gamepad_helpers": "ui/grindstone_screen_pocket.json", + "grindstone_panel/inventory_selected_icon_button": "ui/grindstone_screen_pocket.json", + "grindstone_panel/hold_icon": "ui/grindstone_screen_pocket.json", + "grindstone_panel/selected_item_details_factory": "ui/grindstone_screen_pocket.json", + "grindstone_panel/item_lock_notification_factory": "ui/grindstone_screen_pocket.json", + "grindstone_panel/flying_item_renderer": "ui/grindstone_screen_pocket.json", + }, + "gamma_calibration": { + "stack_panel_centering_panel": "ui/gamma_calibration_screen.json", + "stack_panel_centering_panel/child": "ui/gamma_calibration_screen.json", + "stack_panel_align_left_panel": "ui/gamma_calibration_screen.json", + "stack_panel_align_left_panel/child": "ui/gamma_calibration_screen.json", + "stack_panel_align_right_panel": "ui/gamma_calibration_screen.json", + "stack_panel_align_right_panel/child": "ui/gamma_calibration_screen.json", + "image_panel": "ui/gamma_calibration_screen.json", + "image_panel/padding": "ui/gamma_calibration_screen.json", + "image_panel/image": "ui/gamma_calibration_screen.json", + "horizontal_padding": "ui/gamma_calibration_screen.json", + "image_stack": "ui/gamma_calibration_screen.json", + "image_stack/not_visible_image": "ui/gamma_calibration_screen.json", + "image_stack/padding_0": "ui/gamma_calibration_screen.json", + "image_stack/barely_visible_image": "ui/gamma_calibration_screen.json", + "image_stack/padding_1": "ui/gamma_calibration_screen.json", + "image_stack/easily_visible_image": "ui/gamma_calibration_screen.json", + "button_stack": "ui/gamma_calibration_screen.json", + "button_stack/continue_button_panel": "ui/gamma_calibration_screen.json", + "button_stack/padding": "ui/gamma_calibration_screen.json", + "button_stack/reset_button_panel": "ui/gamma_calibration_screen.json", + "message_panel": "ui/gamma_calibration_screen.json", + "message_panel/message_label": "ui/gamma_calibration_screen.json", + "calibration_slider": "ui/gamma_calibration_screen.json", + "calibration_slider/slider": "ui/gamma_calibration_screen.json", + "continue_button": "ui/gamma_calibration_screen.json", + "reset_button": "ui/gamma_calibration_screen.json", + "main_panel": "ui/gamma_calibration_screen.json", + "main_panel/hdr_message_panel": "ui/gamma_calibration_screen.json", + "main_panel/image_stack_panel": "ui/gamma_calibration_screen.json", + "main_panel/padding_0": "ui/gamma_calibration_screen.json", + "main_panel/slider_panel": "ui/gamma_calibration_screen.json", + "main_panel/padding_1": "ui/gamma_calibration_screen.json", + "main_panel/button_stack_panel": "ui/gamma_calibration_screen.json", + "gamma_calibration_screen": "ui/gamma_calibration_screen.json", + }, + "horse": { + "renderer_bg": "ui/horse_screen.json", + "overlay_image": "ui/horse_screen.json", + "saddle_image": "ui/horse_screen.json", + "horse_armor_image": "ui/horse_screen.json", + "carpet_image": "ui/horse_screen.json", + "nautilus_armor_image": "ui/horse_screen.json", + "horse_label": "ui/horse_screen.json", + "equip_grid": "ui/horse_screen.json", + "inv_grid": "ui/horse_screen.json", + "inv_bg_panel": "ui/horse_screen.json", + "inv_bg_panel/cell_image": "ui/horse_screen.json", + "equip_panel": "ui/horse_screen.json", + "equip_panel/equip_grid": "ui/horse_screen.json", + "equip_panel/saddle": "ui/horse_screen.json", + "equip_panel/horse_armor_0": "ui/horse_screen.json", + "equip_panel/carpet_0": "ui/horse_screen.json", + "equip_panel/nautilus_armor_0": "ui/horse_screen.json", + "equip_panel/horse_armor_1": "ui/horse_screen.json", + "equip_panel/carpet_1": "ui/horse_screen.json", + "equip_panel/nautilus_armor_1": "ui/horse_screen.json", + "inv_panel": "ui/horse_screen.json", + "inv_panel/inv_bg_panel": "ui/horse_screen.json", + "inv_panel/inv_grid": "ui/horse_screen.json", + "horse_renderer": "ui/horse_screen.json", + "horse_renderer/renderer_bg": "ui/horse_screen.json", + "horse_renderer/horse_custom_panel": "ui/horse_screen.json", + "horse_renderer/horse_custom_panel/horse_custom": "ui/horse_screen.json", + "horse_panel": "ui/horse_screen.json", + "horse_panel/container_gamepad_helpers": "ui/horse_screen.json", + "horse_panel/selected_item_details_factory": "ui/horse_screen.json", + "horse_panel/item_lock_notification_factory": "ui/horse_screen.json", + "horse_panel/root_panel": "ui/horse_screen.json", + "horse_panel/root_panel/common_panel": "ui/horse_screen.json", + "horse_panel/root_panel/horse_section_label": "ui/horse_screen.json", + "horse_panel/root_panel/inv_panel": "ui/horse_screen.json", + "horse_panel/root_panel/equipment": "ui/horse_screen.json", + "horse_panel/root_panel/renderer": "ui/horse_screen.json", + "horse_panel/root_panel/inventory_panel_bottom_half_with_label": "ui/horse_screen.json", + "horse_panel/root_panel/hotbar_grid_template": "ui/horse_screen.json", + "horse_panel/root_panel/inventory_selected_icon_button": "ui/horse_screen.json", + "horse_panel/root_panel/gamepad_cursor": "ui/horse_screen.json", + "horse_panel/flying_item_renderer": "ui/horse_screen.json", + "horse_screen": "ui/horse_screen.json", + }, + "horse_pocket": { + "horse_panel": "ui/horse_screen_pocket.json", + "horse_panel/gamepad_helpers": "ui/horse_screen_pocket.json", + "horse_panel/inventory_selected_icon_button": "ui/horse_screen_pocket.json", + "horse_panel/gamepad_cursor": "ui/horse_screen_pocket.json", + "horse_panel/selected_item_details_factory": "ui/horse_screen_pocket.json", + "horse_panel/item_lock_notification_factory": "ui/horse_screen_pocket.json", + "horse_panel/base_panel": "ui/horse_screen_pocket.json", + "horse_panel/base_panel/root_panel": "ui/horse_screen_pocket.json", + "horse_panel/base_panel/hold_icon": "ui/horse_screen_pocket.json", + "horse_panel/base_panel/bg": "ui/horse_screen_pocket.json", + "horse_panel/base_panel/interactive_tabs": "ui/horse_screen_pocket.json", + "horse_panel/base_panel/close_button": "ui/horse_screen_pocket.json", + "horse_panel/base_panel/inventory": "ui/horse_screen_pocket.json", + "horse_panel/base_panel/equipment": "ui/horse_screen_pocket.json", + "horse_panel/base_panel/chest_tab": "ui/horse_screen_pocket.json", + "horse_panel/base_panel/chest_tab/visual_tabs_chest": "ui/horse_screen_pocket.json", + "horse_panel/base_panel/chest_tab/chest": "ui/horse_screen_pocket.json", + "horse_panel/base_panel/renderer_tab": "ui/horse_screen_pocket.json", + "horse_panel/base_panel/renderer_tab/visual_tabs_equip": "ui/horse_screen_pocket.json", + "horse_panel/base_panel/renderer_tab/renderer": "ui/horse_screen_pocket.json", + "horse_panel/flying_item_renderer": "ui/horse_screen_pocket.json", + "background_image": "ui/horse_screen_pocket.json", + "dark_bg": "ui/horse_screen_pocket.json", + "renderer_bg": "ui/horse_screen_pocket.json", + "saddle_image": "ui/horse_screen_pocket.json", + "horse_armor_image": "ui/horse_screen_pocket.json", + "carpet_image": "ui/horse_screen_pocket.json", + "nautilus_armor_image": "ui/horse_screen_pocket.json", + "panel_outline": "ui/horse_screen_pocket.json", + "close_button_default": "ui/horse_screen_pocket.json", + "close_button_pressed": "ui/horse_screen_pocket.json", + "close_button": "ui/horse_screen_pocket.json", + "close_button/default": "ui/horse_screen_pocket.json", + "close_button/hover": "ui/horse_screen_pocket.json", + "close_button/pressed": "ui/horse_screen_pocket.json", + "base_grid": "ui/horse_screen_pocket.json", + "inventory_grid": "ui/horse_screen_pocket.json", + "chest_grid": "ui/horse_screen_pocket.json", + "base_grid_panel": "ui/horse_screen_pocket.json", + "base_grid_panel/panel_outline": "ui/horse_screen_pocket.json", + "base_grid_panel/dark_bg": "ui/horse_screen_pocket.json", + "base_grid_panel/scrolling_panel": "ui/horse_screen_pocket.json", + "inventory_panel": "ui/horse_screen_pocket.json", + "chest_panel": "ui/horse_screen_pocket.json", + "half_screen": "ui/horse_screen_pocket.json", + "middle_screen": "ui/horse_screen_pocket.json", + "half_screen_inventory": "ui/horse_screen_pocket.json", + "half_screen_inventory/inventory_panel": "ui/horse_screen_pocket.json", + "half_screen_chest": "ui/horse_screen_pocket.json", + "half_screen_chest/chest_panel": "ui/horse_screen_pocket.json", + "horse_renderer": "ui/horse_screen_pocket.json", + "horse_renderer/horse_custom": "ui/horse_screen_pocket.json", + "half_screen_renderer": "ui/horse_screen_pocket.json", + "half_screen_renderer/renderer_bg": "ui/horse_screen_pocket.json", + "half_screen_renderer/horse_custom_panel": "ui/horse_screen_pocket.json", + "half_screen_renderer/camel_custom_panel": "ui/horse_screen_pocket.json", + "equip_item_panel": "ui/horse_screen_pocket.json", + "equip_item_panel/equip_container_item": "ui/horse_screen_pocket.json", + "equip_grid": "ui/horse_screen_pocket.json", + "equip_middle_screen": "ui/horse_screen_pocket.json", + "equip_middle_screen/equip_grid_panel": "ui/horse_screen_pocket.json", + "equip_middle_screen/equip_grid_panel/equip_grid": "ui/horse_screen_pocket.json", + "equip_middle_screen/equip_grid_panel/centered_0": "ui/horse_screen_pocket.json", + "equip_middle_screen/equip_grid_panel/offset": "ui/horse_screen_pocket.json", + "equip_middle_screen/equip_grid_panel/centered_1": "ui/horse_screen_pocket.json", + "equip_middle_screen/equip_grid_panel/centered_2": "ui/horse_screen_pocket.json", + "equip_middle_screen/equip_grid_panel/horse_armor_image": "ui/horse_screen_pocket.json", + "equip_middle_screen/equip_grid_panel/carpet_image": "ui/horse_screen_pocket.json", + "horse_screen_tab_toggle": "ui/horse_screen_pocket.json", + "interactive_tabs": "ui/horse_screen_pocket.json", + "interactive_tabs/renderer_tab_interactive": "ui/horse_screen_pocket.json", + "interactive_tabs/chest_tab_interactive": "ui/horse_screen_pocket.json", + "tab_front": "ui/horse_screen_pocket.json", + "tab_back": "ui/horse_screen_pocket.json", + "close_tab": "ui/horse_screen_pocket.json", + "item_icon_renderer": "ui/horse_screen_pocket.json", + "saddle_icon_front": "ui/horse_screen_pocket.json", + "chest_icon_front": "ui/horse_screen_pocket.json", + "visual_tabs_equip": "ui/horse_screen_pocket.json", + "visual_tabs_equip/close_tab": "ui/horse_screen_pocket.json", + "visual_tabs_equip/close_tab/nodrop_zone": "ui/horse_screen_pocket.json", + "visual_tabs_equip/chest": "ui/horse_screen_pocket.json", + "visual_tabs_equip/chest/chest_icon": "ui/horse_screen_pocket.json", + "visual_tabs_equip/equip": "ui/horse_screen_pocket.json", + "visual_tabs_equip/equip/equip_icon": "ui/horse_screen_pocket.json", + "visual_tabs_chest": "ui/horse_screen_pocket.json", + "visual_tabs_chest/close_tab": "ui/horse_screen_pocket.json", + "visual_tabs_chest/chest": "ui/horse_screen_pocket.json", + "visual_tabs_chest/chest/chest_icon": "ui/horse_screen_pocket.json", + "visual_tabs_chest/equip": "ui/horse_screen_pocket.json", + "visual_tabs_chest/equip/equip_icon": "ui/horse_screen_pocket.json", + }, + "how_to_play_common": { + "dynamic_dialog_screen": "ui/how_to_play_common.json", + "screen_background": "ui/how_to_play_common.json", + "top_bar": "ui/how_to_play_common.json", + "button_panel": "ui/how_to_play_common.json", + "light_text_button": "ui/how_to_play_common.json", + "action_button": "ui/how_to_play_common.json", + "topic_category": "ui/how_to_play_common.json", + "topic_category/top_padding": "ui/how_to_play_common.json", + "topic_category/category_text": "ui/how_to_play_common.json", + "toggle_button_control": "ui/how_to_play_common.json", + "toggle_button_control/tab_button_text": "ui/how_to_play_common.json", + "glyph_button_control": "ui/how_to_play_common.json", + "glyph_button_control/tab_button_text": "ui/how_to_play_common.json", + "glyph_button_control/glyph": "ui/how_to_play_common.json", + "section_toggle_button": "ui/how_to_play_common.json", + "section_toggle_button/section_toggle_button": "ui/how_to_play_common.json", + "edu_section_toggle_button": "ui/how_to_play_common.json", + "padding": "ui/how_to_play_common.json", + "touch_padding": "ui/how_to_play_common.json", + "small_padding": "ui/how_to_play_common.json", + "large_padding": "ui/how_to_play_common.json", + "section_contents_header": "ui/how_to_play_common.json", + "section_contents_footer": "ui/how_to_play_common.json", + "main_sections": "ui/how_to_play_common.json", + "splitscreen_only_content": "ui/how_to_play_common.json", + "splitscreen_only_content/0": "ui/how_to_play_common.json", + "tts_focus_border": "ui/how_to_play_common.json", + "header_tts_focus_border": "ui/how_to_play_common.json", + "header_background": "ui/how_to_play_common.json", + "header_background/header_label": "ui/how_to_play_common.json", + "header_background/focus_border": "ui/how_to_play_common.json", + "header": "ui/how_to_play_common.json", + "header/header": "ui/how_to_play_common.json", + "paragraph_panel": "ui/how_to_play_common.json", + "paragraph_label": "ui/how_to_play_common.json", + "paragraph_tts_focus_border": "ui/how_to_play_common.json", + "paragraph": "ui/how_to_play_common.json", + "paragraph/label": "ui/how_to_play_common.json", + "paragraph/focus_border": "ui/how_to_play_common.json", + "paragraph_with_icons": "ui/how_to_play_common.json", + "paragraph_with_icons/label": "ui/how_to_play_common.json", + "paragraph_with_icons/focus_border": "ui/how_to_play_common.json", + "input_conditional_paragraph": "ui/how_to_play_common.json", + "input_conditional_paragraph_with_icons": "ui/how_to_play_common.json", + "paragraph_keyboard": "ui/how_to_play_common.json", + "paragraph_gamepad": "ui/how_to_play_common.json", + "paragraph_gamepad_no_icons": "ui/how_to_play_common.json", + "paragraph_touch": "ui/how_to_play_common.json", + "paragraph_touch_classic_dpad_spacing": "ui/how_to_play_common.json", + "paragraph_touch_no_icons": "ui/how_to_play_common.json", + "paragraph_touch_joystick_tap": "ui/how_to_play_common.json", + "paragraph_touch_classic_dpad": "ui/how_to_play_common.json", + "paragraph_touch_joystick_crosshair": "ui/how_to_play_common.json", + "paragraph_not_touch": "ui/how_to_play_common.json", + "image": "ui/how_to_play_common.json", + "how_to_play_header": "ui/how_to_play_common.json", + "how_to_play_header/top_bar": "ui/how_to_play_common.json", + "how_to_play_header/top_bar/back_button": "ui/how_to_play_common.json", + "how_to_play_header/top_bar/how_to_play_title": "ui/how_to_play_common.json", + "how_to_play_header/top_bar/gamepad_bumper_helpers": "ui/how_to_play_common.json", + "how_to_play_content": "ui/how_to_play_common.json", + "how_to_play_content/header": "ui/how_to_play_common.json", + "how_to_play_content/container": "ui/how_to_play_common.json", + "dialog_content": "ui/how_to_play_common.json", + "dialog_content/selector_area": "ui/how_to_play_common.json", + "dialog_content/content_area": "ui/how_to_play_common.json", + "dialog_content/section_divider": "ui/how_to_play_common.json", + "scrollable_selector_area_content": "ui/how_to_play_common.json", + "selector_area": "ui/how_to_play_common.json", + "selector_area/scrolling_panel": "ui/how_to_play_common.json", + "section_divider": "ui/how_to_play_common.json", + "content_area_wrapper": "ui/how_to_play_common.json", + "content_area_wrapper/content_area": "ui/how_to_play_common.json", + "content_area": "ui/how_to_play_common.json", + "content_area/control": "ui/how_to_play_common.json", + "content_area/control/scrolling_panel": "ui/how_to_play_common.json", + "screen_base": "ui/how_to_play_common.json", + "gamepad_bumper_helper_description": "ui/how_to_play_common.json", + "gamepad_bumper_helpers": "ui/how_to_play_common.json", + "gamepad_bumper_helpers/gamepad_helper_left_bumper": "ui/how_to_play_common.json", + "gamepad_bumper_helpers/padding": "ui/how_to_play_common.json", + "gamepad_bumper_helpers/gamepad_helper_right_bumper": "ui/how_to_play_common.json", + }, + "how_to_play": { + "how_to_play_screen": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_started_category": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/moving_around_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/gathering_resources_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/selecting_items_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/placing_blocks_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/inventory_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/preparing_for_the_night_category": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/your_first_craft_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/recipe_book_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/the_crafting_table_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/crafting_a_tool_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/mining_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/surviving_the_first_night_category": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/nightfall_new_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/building_a_shelter_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/death_and_respawn_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_settled_category": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/food_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/beds_new_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/improved_tools_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/education_category": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/world_builder_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/permission_blocks_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/chalkboard_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/chemistry_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/npc_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/camera_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/portfolio_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/classroom_mode_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/code_builder_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/padding_1": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/playing_together_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/encyclopedia_button": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/section_contents_header": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/moving_around_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/gathering_resources_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/selecting_items_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/placing_blocks_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/inventory_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/your_first_craft_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/recipe_book_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/the_crafting_table_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/crafting_a_tool_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/mining_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/nightfall_new_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/building_a_shelter_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/death_and_respawn_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/food_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/beds_new_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/improved_tools_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/world_builder_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/permission_blocks_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/chalkboard_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/chemistry_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/npc_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/camera_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/portfolio_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/classroom_mode_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/code_builder_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/playing_together_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/encyclopedia_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/section_contents_footer": "ui/how_to_play_screen.json", + "moving_around_button": "ui/how_to_play_screen.json", + "moving_around_section": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_1": "ui/how_to_play_screen.json", + "moving_around_section/padding_1": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_touch_joystick_tap": "ui/how_to_play_screen.json", + "moving_around_section/padding_2": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_3a_keyboard": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_3b_keyboard": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_3a_gamepad": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_3b_gamepad": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_3_touch_joystick_tap": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_3a_touch_classic_dpad": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_3b_touch_classic_dpad": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_3c_touch_classic_dpad": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_3d_touch_classic_dpad": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_3e_touch_classic_dpad": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_3_touch_joystick_crosshair": "ui/how_to_play_screen.json", + "moving_around_section/image_1": "ui/how_to_play_screen.json", + "gathering_resources_button": "ui/how_to_play_screen.json", + "gathering_resources_section": "ui/how_to_play_screen.json", + "gathering_resources_section/paragraph_1": "ui/how_to_play_screen.json", + "gathering_resources_section/padding_1": "ui/how_to_play_screen.json", + "gathering_resources_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", + "gathering_resources_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", + "gathering_resources_section/paragraph_2_touch_joystick_tap": "ui/how_to_play_screen.json", + "gathering_resources_section/paragraph_2_touch_classic_dpad": "ui/how_to_play_screen.json", + "gathering_resources_section/paragraph_2_touch_joystick_crosshair": "ui/how_to_play_screen.json", + "gathering_resources_section/padding_2": "ui/how_to_play_screen.json", + "gathering_resources_section/paragraph_3": "ui/how_to_play_screen.json", + "selecting_items_button": "ui/how_to_play_screen.json", + "selecting_items_section": "ui/how_to_play_screen.json", + "selecting_items_section/paragraph_1": "ui/how_to_play_screen.json", + "selecting_items_section/padding_1": "ui/how_to_play_screen.json", + "selecting_items_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", + "selecting_items_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", + "selecting_items_section/paragraph_touch_joystick_tap": "ui/how_to_play_screen.json", + "selecting_items_section/padding_2": "ui/how_to_play_screen.json", + "selecting_items_section/paragraph_3_keyboard": "ui/how_to_play_screen.json", + "selecting_items_section/paragraph_3_gamepad": "ui/how_to_play_screen.json", + "selecting_items_section/paragraph_3_touch_joystick_tap": "ui/how_to_play_screen.json", + "selecting_items_section/paragraph_3_touch_classic_dpad": "ui/how_to_play_screen.json", + "selecting_items_section/paragraph_3_touch_joystick_crosshair": "ui/how_to_play_screen.json", + "selecting_items_section/padding_3": "ui/how_to_play_screen.json", + "selecting_items_section/header_1": "ui/how_to_play_screen.json", + "selecting_items_section/image_1_not_touch": "ui/how_to_play_screen.json", + "selecting_items_section/image_1_touch": "ui/how_to_play_screen.json", + "placing_blocks_button": "ui/how_to_play_screen.json", + "placing_blocks_section": "ui/how_to_play_screen.json", + "placing_blocks_section/paragraph_1": "ui/how_to_play_screen.json", + "placing_blocks_section/padding_1": "ui/how_to_play_screen.json", + "placing_blocks_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", + "placing_blocks_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", + "placing_blocks_section/paragraph_2_touch_joystick_tap": "ui/how_to_play_screen.json", + "placing_blocks_section/paragraph_2_touch_classic_dpad": "ui/how_to_play_screen.json", + "placing_blocks_section/paragraph_2_touch_joystick_crosshair": "ui/how_to_play_screen.json", + "placing_blocks_section/padding_2": "ui/how_to_play_screen.json", + "placing_blocks_section/paragraph_3": "ui/how_to_play_screen.json", + "inventory_button": "ui/how_to_play_screen.json", + "inventory_section": "ui/how_to_play_screen.json", + "inventory_section/image_1_not_touch": "ui/how_to_play_screen.json", + "inventory_section/image_1_touch": "ui/how_to_play_screen.json", + "inventory_section/header_1": "ui/how_to_play_screen.json", + "inventory_section/paragraph_1_keyboard": "ui/how_to_play_screen.json", + "inventory_section/paragraph_1_gamepad": "ui/how_to_play_screen.json", + "inventory_section/paragraph_1_touch": "ui/how_to_play_screen.json", + "inventory_section/padding_2": "ui/how_to_play_screen.json", + "inventory_section/header_2": "ui/how_to_play_screen.json", + "inventory_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", + "inventory_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", + "inventory_section/paragraph_2_touch": "ui/how_to_play_screen.json", + "your_first_craft_button": "ui/how_to_play_screen.json", + "your_first_craft_section": "ui/how_to_play_screen.json", + "your_first_craft_section/image_1_not_touch": "ui/how_to_play_screen.json", + "your_first_craft_section/image_1_touch": "ui/how_to_play_screen.json", + "your_first_craft_section/header_1": "ui/how_to_play_screen.json", + "your_first_craft_section/paragraph_1": "ui/how_to_play_screen.json", + "your_first_craft_section/padding_2": "ui/how_to_play_screen.json", + "your_first_craft_section/paragraph_2": "ui/how_to_play_screen.json", + "your_first_craft_section/padding_3": "ui/how_to_play_screen.json", + "your_first_craft_section/paragraph_3_touch": "ui/how_to_play_screen.json", + "your_first_craft_section/paragraph_3_keyboard": "ui/how_to_play_screen.json", + "your_first_craft_section/paragraph_3_gamepad": "ui/how_to_play_screen.json", + "your_first_craft_section/padding_4": "ui/how_to_play_screen.json", + "your_first_craft_section/header_2": "ui/how_to_play_screen.json", + "your_first_craft_section/paragraph_4": "ui/how_to_play_screen.json", + "your_first_craft_section/padding_5": "ui/how_to_play_screen.json", + "your_first_craft_section/paragraph_5": "ui/how_to_play_screen.json", + "recipe_book_button": "ui/how_to_play_screen.json", + "recipe_book_section": "ui/how_to_play_screen.json", + "recipe_book_section/paragraph_1_keyboard": "ui/how_to_play_screen.json", + "recipe_book_section/paragraph_1_gamepad": "ui/how_to_play_screen.json", + "recipe_book_section/paragraph_1_touch": "ui/how_to_play_screen.json", + "recipe_book_section/padding_1": "ui/how_to_play_screen.json", + "recipe_book_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", + "recipe_book_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", + "recipe_book_section/paragraph_2_touch": "ui/how_to_play_screen.json", + "the_crafting_table_button": "ui/how_to_play_screen.json", + "the_crafting_table_section": "ui/how_to_play_screen.json", + "the_crafting_table_section/image_1": "ui/how_to_play_screen.json", + "the_crafting_table_section/paragraph_1": "ui/how_to_play_screen.json", + "the_crafting_table_section/padding_2": "ui/how_to_play_screen.json", + "the_crafting_table_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", + "the_crafting_table_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", + "the_crafting_table_section/paragraph_2_touch": "ui/how_to_play_screen.json", + "crafting_a_tool_button": "ui/how_to_play_screen.json", + "crafting_a_tool_section": "ui/how_to_play_screen.json", + "crafting_a_tool_section/paragraph_1": "ui/how_to_play_screen.json", + "crafting_a_tool_section/padding_1": "ui/how_to_play_screen.json", + "crafting_a_tool_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", + "crafting_a_tool_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", + "crafting_a_tool_section/paragraph_2_touch": "ui/how_to_play_screen.json", + "mining_button": "ui/how_to_play_screen.json", + "mining_section": "ui/how_to_play_screen.json", + "mining_section/image_1": "ui/how_to_play_screen.json", + "mining_section/paragraph_1": "ui/how_to_play_screen.json", + "mining_section/padding_2": "ui/how_to_play_screen.json", + "mining_section/paragraph_2": "ui/how_to_play_screen.json", + "mining_section/padding_3": "ui/how_to_play_screen.json", + "mining_section/paragraph_3": "ui/how_to_play_screen.json", + "nightfall_new_button": "ui/how_to_play_screen.json", + "nightfall_new_section": "ui/how_to_play_screen.json", + "nightfall_new_section/paragraph_1": "ui/how_to_play_screen.json", + "nightfall_new_section/padding_1": "ui/how_to_play_screen.json", + "nightfall_new_section/paragraph_2": "ui/how_to_play_screen.json", + "nightfall_new_section/padding_2": "ui/how_to_play_screen.json", + "nightfall_new_section/paragraph_3": "ui/how_to_play_screen.json", + "nightfall_new_section/padding_3": "ui/how_to_play_screen.json", + "nightfall_new_section/paragraph_4_keyboard": "ui/how_to_play_screen.json", + "nightfall_new_section/paragraph_4_gamepad": "ui/how_to_play_screen.json", + "nightfall_new_section/paragraph_4_touch_joystick_tap": "ui/how_to_play_screen.json", + "nightfall_new_section/paragraph_4_touch_classic_dpad": "ui/how_to_play_screen.json", + "nightfall_new_section/paragraph_4_touch_joystick_crosshair": "ui/how_to_play_screen.json", + "building_a_shelter_button": "ui/how_to_play_screen.json", + "building_a_shelter_section": "ui/how_to_play_screen.json", + "building_a_shelter_section/image_1": "ui/how_to_play_screen.json", + "building_a_shelter_section/paragraph_1": "ui/how_to_play_screen.json", + "building_a_shelter_section/padding_2": "ui/how_to_play_screen.json", + "building_a_shelter_section/paragraph_2": "ui/how_to_play_screen.json", + "building_a_shelter_section/padding_3": "ui/how_to_play_screen.json", + "building_a_shelter_section/paragraph_3": "ui/how_to_play_screen.json", + "death_and_respawn_button": "ui/how_to_play_screen.json", + "death_and_respawn_section": "ui/how_to_play_screen.json", + "death_and_respawn_section/paragraph_1": "ui/how_to_play_screen.json", + "death_and_respawn_section/padding_1": "ui/how_to_play_screen.json", + "death_and_respawn_section/paragraph_2": "ui/how_to_play_screen.json", + "food_button": "ui/how_to_play_screen.json", + "food_section": "ui/how_to_play_screen.json", + "food_section/paragraph_1": "ui/how_to_play_screen.json", + "food_section/padding_1": "ui/how_to_play_screen.json", + "food_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", + "food_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", + "food_section/paragraph_2_touch": "ui/how_to_play_screen.json", + "food_section/padding_2": "ui/how_to_play_screen.json", + "food_section/paragraph_3": "ui/how_to_play_screen.json", + "beds_new_button": "ui/how_to_play_screen.json", + "beds_new_section": "ui/how_to_play_screen.json", + "beds_new_section/paragraph_1": "ui/how_to_play_screen.json", + "beds_new_section/padding_1": "ui/how_to_play_screen.json", + "beds_new_section/paragraph_2": "ui/how_to_play_screen.json", + "beds_new_section/padding_2": "ui/how_to_play_screen.json", + "beds_new_section/paragraph_3": "ui/how_to_play_screen.json", + "improved_tools_button": "ui/how_to_play_screen.json", + "improved_tools_section": "ui/how_to_play_screen.json", + "improved_tools_section/paragraph_1": "ui/how_to_play_screen.json", + "improved_tools_section/padding_1": "ui/how_to_play_screen.json", + "improved_tools_section/paragraph_2": "ui/how_to_play_screen.json", + "world_builder_button": "ui/how_to_play_screen.json", + "world_builder_section": "ui/how_to_play_screen.json", + "world_builder_section/paragraph_1": "ui/how_to_play_screen.json", + "world_builder_section/padding_1": "ui/how_to_play_screen.json", + "world_builder_section/paragraph_2": "ui/how_to_play_screen.json", + "world_builder_section/padding_2": "ui/how_to_play_screen.json", + "world_builder_section/paragraph_3": "ui/how_to_play_screen.json", + "world_builder_section/padding_3": "ui/how_to_play_screen.json", + "world_builder_section/paragraph_4": "ui/how_to_play_screen.json", + "world_builder_section/padding_4": "ui/how_to_play_screen.json", + "world_builder_section/paragraph_5": "ui/how_to_play_screen.json", + "world_builder_section/padding_5": "ui/how_to_play_screen.json", + "world_builder_section/paragraph_6": "ui/how_to_play_screen.json", + "world_builder_section/paragraph_7": "ui/how_to_play_screen.json", + "world_builder_section/padding_7": "ui/how_to_play_screen.json", + "world_builder_section/paragraph_8": "ui/how_to_play_screen.json", + "world_builder_section/padding_8": "ui/how_to_play_screen.json", + "world_builder_section/paragraph_9": "ui/how_to_play_screen.json", + "permission_blocks_button": "ui/how_to_play_screen.json", + "permission_blocks_section": "ui/how_to_play_screen.json", + "permission_blocks_section/paragraph_1": "ui/how_to_play_screen.json", + "permission_blocks_section/padding_1": "ui/how_to_play_screen.json", + "permission_blocks_section/header_1": "ui/how_to_play_screen.json", + "permission_blocks_section/paragraph_2": "ui/how_to_play_screen.json", + "permission_blocks_section/padding_3": "ui/how_to_play_screen.json", + "permission_blocks_section/paragraph_3": "ui/how_to_play_screen.json", + "permission_blocks_section/padding_4": "ui/how_to_play_screen.json", + "permission_blocks_section/paragraph_4": "ui/how_to_play_screen.json", + "permission_blocks_section/padding_5": "ui/how_to_play_screen.json", + "permission_blocks_section/paragraph_5": "ui/how_to_play_screen.json", + "permission_blocks_section/padding_7": "ui/how_to_play_screen.json", + "permission_blocks_section/header_2": "ui/how_to_play_screen.json", + "permission_blocks_section/paragraph_6": "ui/how_to_play_screen.json", + "chalkboard_button": "ui/how_to_play_screen.json", + "chalkboard_section": "ui/how_to_play_screen.json", + "chalkboard_section/paragraph_1_keyboard": "ui/how_to_play_screen.json", + "chalkboard_section/paragraph_1_gamepad": "ui/how_to_play_screen.json", + "chalkboard_section/paragraph_1_touch": "ui/how_to_play_screen.json", + "chemistry_button": "ui/how_to_play_screen.json", + "chemistry_section": "ui/how_to_play_screen.json", + "chemistry_section/paragraph_1": "ui/how_to_play_screen.json", + "chemistry_section/padding_1": "ui/how_to_play_screen.json", + "chemistry_section/paragraph_2": "ui/how_to_play_screen.json", + "npc_button": "ui/how_to_play_screen.json", + "npc_section": "ui/how_to_play_screen.json", + "npc_section/paragraph_1": "ui/how_to_play_screen.json", + "npc_section/padding_1": "ui/how_to_play_screen.json", + "npc_section/paragraph_2": "ui/how_to_play_screen.json", + "npc_section/padding_2": "ui/how_to_play_screen.json", + "npc_section/paragraph_3": "ui/how_to_play_screen.json", + "camera_button": "ui/how_to_play_screen.json", + "camera_section": "ui/how_to_play_screen.json", + "camera_section/paragraph_1": "ui/how_to_play_screen.json", + "camera_section/padding_1": "ui/how_to_play_screen.json", + "camera_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", + "camera_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", + "camera_section/paragraph_2_touch": "ui/how_to_play_screen.json", + "camera_section/padding_2": "ui/how_to_play_screen.json", + "camera_section/paragraph_3_keyboard": "ui/how_to_play_screen.json", + "camera_section/paragraph_3_gamepad": "ui/how_to_play_screen.json", + "camera_section/paragraph_3_touch": "ui/how_to_play_screen.json", + "camera_section/padding_3": "ui/how_to_play_screen.json", + "camera_section/paragraph_4": "ui/how_to_play_screen.json", + "portfolio_button": "ui/how_to_play_screen.json", + "portfolio_section": "ui/how_to_play_screen.json", + "portfolio_section/paragraph_1_keyboard": "ui/how_to_play_screen.json", + "portfolio_section/paragraph_1_gamepad": "ui/how_to_play_screen.json", + "portfolio_section/paragraph_1_touch": "ui/how_to_play_screen.json", + "classroom_mode_button": "ui/how_to_play_screen.json", + "classroom_mode_section": "ui/how_to_play_screen.json", + "classroom_mode_section/paragraph_1": "ui/how_to_play_screen.json", + "classroom_mode_section/padding_1": "ui/how_to_play_screen.json", + "classroom_mode_section/paragraph_2": "ui/how_to_play_screen.json", + "code_builder_button": "ui/how_to_play_screen.json", + "code_builder_section": "ui/how_to_play_screen.json", + "code_builder_section/paragraph_1": "ui/how_to_play_screen.json", + "code_builder_section/padding_1": "ui/how_to_play_screen.json", + "code_builder_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", + "code_builder_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", + "code_builder_section/paragraph_2_touch": "ui/how_to_play_screen.json", + "playing_together_button": "ui/how_to_play_screen.json", + "playing_together_section": "ui/how_to_play_screen.json", + "playing_together_section/paragraph_1": "ui/how_to_play_screen.json", + "playing_together_section/padding_1": "ui/how_to_play_screen.json", + "playing_together_section/header_1": "ui/how_to_play_screen.json", + "playing_together_section/paragraph_2": "ui/how_to_play_screen.json", + "playing_together_section/padding_2": "ui/how_to_play_screen.json", + "playing_together_section/header_2": "ui/how_to_play_screen.json", + "playing_together_section/paragraph_3": "ui/how_to_play_screen.json", + "playing_together_section/padding_3": "ui/how_to_play_screen.json", + "playing_together_section/paragraph_4": "ui/how_to_play_screen.json", + "playing_together_section/padding_4": "ui/how_to_play_screen.json", + "playing_together_section/paragraph_5": "ui/how_to_play_screen.json", + "playing_together_section/padding_5": "ui/how_to_play_screen.json", + "playing_together_section/header_3": "ui/how_to_play_screen.json", + "playing_together_section/paragraph_6": "ui/how_to_play_screen.json", + "playing_together_section/padding_6": "ui/how_to_play_screen.json", + "playing_together_section/paragraph_7": "ui/how_to_play_screen.json", + "playing_together_section/padding_7": "ui/how_to_play_screen.json", + "playing_together_section/paragraph_8": "ui/how_to_play_screen.json", + "playing_together_section/realms_button": "ui/how_to_play_screen.json", + "playing_together_section/sign_in_button": "ui/how_to_play_screen.json", + "playing_together_section/padding_8": "ui/how_to_play_screen.json", + "playing_together_section/header_4": "ui/how_to_play_screen.json", + "playing_together_section/paragraph_9": "ui/how_to_play_screen.json", + "playing_together_section/padding_9": "ui/how_to_play_screen.json", + "playing_together_section/paragraph_10": "ui/how_to_play_screen.json", + "try_realms_action_button": "ui/how_to_play_screen.json", + "encyclopedia_button": "ui/how_to_play_screen.json", + "encyclopedia_section": "ui/how_to_play_screen.json", + "encyclopedia_section/paragraph_1": "ui/how_to_play_screen.json", + }, + "hud": { + "hud_player_renderer": "ui/hud_screen.json", + "hud_player_renderer/hud_player": "ui/hud_screen.json", + "hotbar_renderer": "ui/hud_screen.json", + "hotbar_renderer/hotbar_slot_image": "ui/hud_screen.json", + "cooldown_renderer": "ui/hud_screen.json", + "heart_renderer": "ui/hud_screen.json", + "horse_heart_renderer": "ui/hud_screen.json", + "armor_renderer": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend/dash_rend": "ui/hud_screen.json", + "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": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/progress_text_label": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend/hotbar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/hotbar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/size_without_hotbar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/horse_jump_rend": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/dash_rend": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/locator_bar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/progress_text_label": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/item_text_factory": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/progress_text_label": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/locator_bar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/progress_text_label": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket/hotbar_panel": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket/item_text": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket/item_text/item_text_factory": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket/horse_jump_rend": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket/dash_rend": "ui/hud_screen.json", + "full_progress_bar": "ui/hud_screen.json", + "empty_progress_bar": "ui/hud_screen.json", + "progress_bar_nub": "ui/hud_screen.json", + "progress_text_label": "ui/hud_screen.json", + "horse_jump_renderer": "ui/hud_screen.json", + "dash_renderer": "ui/hud_screen.json", + "locator_bar": "ui/hud_screen.json", + "hunger_renderer": "ui/hud_screen.json", + "bubbles_renderer": "ui/hud_screen.json", + "mob_effects_renderer": "ui/hud_screen.json", + "vignette_renderer": "ui/hud_screen.json", + "editor_gizmo_renderer": "ui/hud_screen.json", + "cursor_renderer": "ui/hud_screen.json", + "progress_indicator_renderer": "ui/hud_screen.json", + "camera_renderer": "ui/hud_screen.json", + "editor_volume_highlight_renderer": "ui/hud_screen.json", + "editor_compass_renderer": "ui/hud_screen.json", + "hotbar_hud_item_icon": "ui/hud_screen.json", + "elipses_image": "ui/hud_screen.json", + "bound_button_label": "ui/hud_screen.json", + "default_borderless_button_layout": "ui/hud_screen.json", + "hover_borderless_button_layout": "ui/hud_screen.json", + "pressed_borderless_button_layout": "ui/hud_screen.json", + "borderless_button": "ui/hud_screen.json", + "borderless_button/default": "ui/hud_screen.json", + "borderless_button/hover": "ui/hud_screen.json", + "borderless_button/pressed": "ui/hud_screen.json", + "borderless_button/elipses": "ui/hud_screen.json", + "hotbar_elipses_button": "ui/hud_screen.json", + "start_cap_image": "ui/hud_screen.json", + "end_cap_image": "ui/hud_screen.json", + "hotbar_start_cap": "ui/hud_screen.json", + "hotbar_start_cap/start_cap_image": "ui/hud_screen.json", + "hotbar_end_cap": "ui/hud_screen.json", + "hotbar_end_cap/end_cap_image": "ui/hud_screen.json", + "heart_image": "ui/hud_screen.json", + "hotbar_slot_image": "ui/hud_screen.json", + "hotbar_slot_selected_image": "ui/hud_screen.json", + "gui_hotbar_slot_button_prototype": "ui/hud_screen.json", + "player_position": "ui/hud_screen.json", + "player_position/player_position_text": "ui/hud_screen.json", + "number_of_days_played": "ui/hud_screen.json", + "number_of_days_played/number_of_days_played_text": "ui/hud_screen.json", + "chat_label": "ui/hud_screen.json", + "chat_grid_item": "ui/hud_screen.json", + "chat_grid_item/chat_background": "ui/hud_screen.json", + "chat_grid_item/chat_background/chat_text": "ui/hud_screen.json", + "chat_panel": "ui/hud_screen.json", + "chat_panel/stack_panel": "ui/hud_screen.json", + "item_durability": "ui/hud_screen.json", + "item_storage": "ui/hud_screen.json", + "container_item_lock_overlay": "ui/hud_screen.json", + "item_lock_cell_image": "ui/hud_screen.json", + "gui_hotbar_grid_item": "ui/hud_screen.json", + "gui_hotbar_grid_item/hotbar_slot_selected_image": "ui/hud_screen.json", + "gui_hotbar_grid_item/hotbar_renderer": "ui/hud_screen.json", + "gui_hotbar_grid_item/hotbar_parent": "ui/hud_screen.json", + "gui_hotbar_grid_item/hotbar_parent/item_icon": "ui/hud_screen.json", + "gui_hotbar_grid_item/hotbar_parent/item_count": "ui/hud_screen.json", + "gui_hotbar_grid_item/hotbar_parent/hotbar_hint": "ui/hud_screen.json", + "gui_hotbar_grid_item/hotbar_parent/item_dura": "ui/hud_screen.json", + "gui_hotbar_grid_item/hotbar_parent/item_store": "ui/hud_screen.json", + "gui_hotbar_grid_item/hotbar_parent/container_item_lock_overlay": "ui/hud_screen.json", + "gui_hotbar_grid_item/cooldown_renderer": "ui/hud_screen.json", + "gui_hotbar_grid_item/hotbar_slot_button": "ui/hud_screen.json", + "gui_hotbar_grid_item_pocket": "ui/hud_screen.json", + "gui_hotbar_grid_item_pocket/hotbar_slot_selected_image": "ui/hud_screen.json", + "gui_hotbar_grid_item_pocket/hotbar_renderer": "ui/hud_screen.json", + "gui_hotbar_grid_item_pocket/hotbar_parent": "ui/hud_screen.json", + "gui_hotbar_grid_item_pocket/hotbar_parent/item_icon": "ui/hud_screen.json", + "gui_hotbar_grid_item_pocket/hotbar_parent/item_count": "ui/hud_screen.json", + "gui_hotbar_grid_item_pocket/hotbar_parent/item_dura": "ui/hud_screen.json", + "gui_hotbar_grid_item_pocket/hotbar_parent/item_store": "ui/hud_screen.json", + "gui_hotbar_grid_item_pocket/hotbar_parent/container_item_lock_overlay": "ui/hud_screen.json", + "gui_hotbar_grid_item_pocket/cooldown_renderer": "ui/hud_screen.json", + "gui_hotbar_grid_item_pocket/hotbar_slot_button": "ui/hud_screen.json", + "centered_gui_elements": "ui/hud_screen.json", + "centered_gui_elements/hud_player_rend_desktop": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle/heart_rend": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle/horse_heart_rend_0": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle/horse_heart_rend_1": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle/armor_rend": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle/hunger_rend": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle/bubbles_rend_0": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle/bubbles_rend_1": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle/exp_rend": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle_touch": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle_touch/heart_rend": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_0": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_1": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle_touch/armor_rend": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle_touch/hunger_rend": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_0": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_1": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle_touch/exp_rend": "ui/hud_screen.json", + "not_centered_gui_elements": "ui/hud_screen.json", + "not_centered_gui_elements/heart_rend": "ui/hud_screen.json", + "not_centered_gui_elements/horse_heart_rend": "ui/hud_screen.json", + "not_centered_gui_elements/hunger_rend": "ui/hud_screen.json", + "not_centered_gui_elements/armor_rend": "ui/hud_screen.json", + "not_centered_gui_elements/hud_player_rend_pocket": "ui/hud_screen.json", + "not_centered_gui_elements/bubbles_rend_0": "ui/hud_screen.json", + "not_centered_gui_elements/bubbles_rend_1": "ui/hud_screen.json", + "hotbar_chooser": "ui/hud_screen.json", + "hotbar_chooser/desktop_hotbar": "ui/hud_screen.json", + "hotbar_chooser/pocket_hotbar": "ui/hud_screen.json", + "hotbar_elipses_panel_right_content": "ui/hud_screen.json", + "hotbar_elipses_panel_right_content/elipses_content": "ui/hud_screen.json", + "hotbar_elipses_panel_right_art": "ui/hud_screen.json", + "hotbar_elipses_panel_right_art/slot": "ui/hud_screen.json", + "hotbar_elipses_panel_right_art/button": "ui/hud_screen.json", + "hotbar_elipses_panel_left_content": "ui/hud_screen.json", + "hotbar_elipses_panel_left_content/button": "ui/hud_screen.json", + "hotbar_elipses_panel_left_art": "ui/hud_screen.json", + "hotbar_elipses_panel_left_art/slot": "ui/hud_screen.json", + "hotbar_elipses_panel_left_art/button": "ui/hud_screen.json", + "hotbar_panel": "ui/hud_screen.json", + "hotbar_panel/hotbar_start_cap": "ui/hud_screen.json", + "hotbar_panel/hotbar_elipses_panel_left": "ui/hud_screen.json", + "hotbar_panel/hotbar_grid": "ui/hud_screen.json", + "hotbar_panel/hotbar_elipses_panel_right": "ui/hud_screen.json", + "hotbar_panel/hotbar_end_cap": "ui/hud_screen.json", + "hotbar_panel_pocket": "ui/hud_screen.json", + "hotbar_panel_pocket/hotbar_start_cap_frame": "ui/hud_screen.json", + "hotbar_panel_pocket/hotbar_start_cap_frame/hotbar_start_cap": "ui/hud_screen.json", + "hotbar_panel_pocket/hotbar_elipses_panel_left": "ui/hud_screen.json", + "hotbar_panel_pocket/hotbar_elipses_panel_left/hotbar_elipses_panel_left": "ui/hud_screen.json", + "hotbar_panel_pocket/hotbar_grid": "ui/hud_screen.json", + "hotbar_panel_pocket/hotbar_elipses_panel_right": "ui/hud_screen.json", + "hotbar_panel_pocket/hotbar_elipses_panel_right/hotbar_elipses_panel_right": "ui/hud_screen.json", + "hotbar_panel_pocket/hotbar_end_cap_frame": "ui/hud_screen.json", + "hotbar_panel_pocket/hotbar_end_cap_frame/hotbar_end_cap": "ui/hud_screen.json", + "hotbar_grid": "ui/hud_screen.json", + "edu_hotbar_grid": "ui/hud_screen.json", + "item_name_text_root": "ui/hud_screen.json", + "item_name_text_root/item_text_aligner": "ui/hud_screen.json", + "item_name_text_root/item_text_aligner/item_text_control": "ui/hud_screen.json", + "item_name_text_root/item_text_aligner/item_text_control/item_text_background": "ui/hud_screen.json", + "item_name_text_root/item_text_aligner/item_text_control/item_text_label": "ui/hud_screen.json", + "item_name_text_root/item_text_aligner/interact_padding": "ui/hud_screen.json", + "item_name_text_root/item_text_aligner/survival_buffer": "ui/hud_screen.json", + "item_name_text": "ui/hud_screen.json", + "jukebox_popup_text": "ui/hud_screen.json", + "hud_tip_text": "ui/hud_screen.json", + "hud_tip_text/item_text_label": "ui/hud_screen.json", + "auto_save": "ui/hud_screen.json", + "hud_actionbar_text": "ui/hud_screen.json", + "hud_actionbar_text/actionbar_message": "ui/hud_screen.json", + "hud_title_text": "ui/hud_screen.json", + "hud_title_text/title_frame": "ui/hud_screen.json", + "hud_title_text/title_frame/title_background": "ui/hud_screen.json", + "hud_title_text/title_frame/title": "ui/hud_screen.json", + "hud_title_text/subtitle_frame": "ui/hud_screen.json", + "hud_title_text/subtitle_frame/subtitle_background": "ui/hud_screen.json", + "hud_title_text/subtitle_frame/subtitle": "ui/hud_screen.json", + "boss_name_panel": "ui/hud_screen.json", + "boss_name_panel/boss_name": "ui/hud_screen.json", + "tooltip_helper_icon_description": "ui/hud_screen.json", + "tooltip_helper_icon_description/label_background": "ui/hud_screen.json", + "tooltip_helper": "ui/hud_screen.json", + "tooltip_helper/icon": "ui/hud_screen.json", + "tooltip_helper/padding": "ui/hud_screen.json", + "tooltip_helper/centerer": "ui/hud_screen.json", + "tooltip_helper/centerer/desc": "ui/hud_screen.json", + "tooltip_helper_form_fitting": "ui/hud_screen.json", + "tooltip_helper_form_fitting/icon": "ui/hud_screen.json", + "tooltip_helper_form_fitting/padding": "ui/hud_screen.json", + "tooltip_helper_form_fitting/centerer": "ui/hud_screen.json", + "tooltip_helper_form_fitting/centerer/desc": "ui/hud_screen.json", + "keyboard_tooltip_helper": "ui/hud_screen.json", + "keyboard_tooltip_helper_form_fitting": "ui/hud_screen.json", + "mixed_tooltip_helper": "ui/hud_screen.json", + "mixed_tooltip_helper/gamepad_tooltip": "ui/hud_screen.json", + "mixed_tooltip_helper/keyboard_tooltip": "ui/hud_screen.json", + "mixed_tooltip_helper_form_fitting": "ui/hud_screen.json", + "mixed_tooltip_helper_form_fitting/gamepad_tooltip": "ui/hud_screen.json", + "mixed_tooltip_helper_form_fitting/keyboard_tooltip": "ui/hud_screen.json", + "base_icon_image": "ui/hud_screen.json", + "base_icon_image/icon": "ui/hud_screen.json", + "base_icon_image/postfix_label_wrapper": "ui/hud_screen.json", + "base_icon_image/postfix_label_wrapper/label": "ui/hud_screen.json", + "base_keyboard_icon": "ui/hud_screen.json", + "base_keyboard_icon/icon": "ui/hud_screen.json", + "base_keyboard_icon/icon/key_backing": "ui/hud_screen.json", + "base_keyboard_icon/icon/key_backing/key_label": "ui/hud_screen.json", + "base_keyboard_icon/icon/mouse_buttons": "ui/hud_screen.json", + "left_helpers_edu": "ui/hud_screen.json", + "left_helpers_edu/tip_window": "ui/hud_screen.json", + "left_helpers_edu/tip_window/stack_panel": "ui/hud_screen.json", + "left_helpers_edu/tip_paddding": "ui/hud_screen.json", + "left_helpers_edu/controls_toggle_label": "ui/hud_screen.json", + "left_helpers_edu/controls_toggle_label/tip": "ui/hud_screen.json", + "left_helpers_edu/controls_inventory_label": "ui/hud_screen.json", + "left_helpers_edu/controls_inventory_label/tip": "ui/hud_screen.json", + "left_helpers_edu/controls_menu_label": "ui/hud_screen.json", + "left_helpers_edu/controls_menu_label/tip": "ui/hud_screen.json", + "left_helpers": "ui/hud_screen.json", + "left_helpers/stack_panel": "ui/hud_screen.json", + "emote_label_background": "ui/hud_screen.json", + "emote_tip": "ui/hud_screen.json", + "emote_tip/emote_keyboard_centerer": "ui/hud_screen.json", + "emote_tip/emote_keyboard_centerer/emote_keyboard_helper": "ui/hud_screen.json", + "emote_tip/emote_gamepad_helper": "ui/hud_screen.json", + "emote_expediate_helpers": "ui/hud_screen.json", + "emote_expediate_helpers/stack_panel": "ui/hud_screen.json", + "emote_expediate_helpers/stack_panel/emote_tip_0": "ui/hud_screen.json", + "emote_expediate_helpers/stack_panel/emote_tip_1": "ui/hud_screen.json", + "emote_expediate_helpers/stack_panel/emote_tip_2": "ui/hud_screen.json", + "emote_expediate_helpers/stack_panel/emote_tip_3": "ui/hud_screen.json", + "right_helpers": "ui/hud_screen.json", + "right_helpers/stack_panel": "ui/hud_screen.json", + "boss_health_panel": "ui/hud_screen.json", + "boss_health_panel/boss_name": "ui/hud_screen.json", + "boss_health_panel/progress_bar_for_collections": "ui/hud_screen.json", + "boss_health_grid": "ui/hud_screen.json", + "wysiwyg_reset_modal_ok": "ui/hud_screen.json", + "wysiwyg_reset_modal_cancel": "ui/hud_screen.json", + "wysiwyg_close_without_saving_modal_ok": "ui/hud_screen.json", + "wysiwyg_close_without_saving_modal_cancel": "ui/hud_screen.json", + "root_panel": "ui/hud_screen.json", + "root_panel/layout_customization_reset": "ui/hud_screen.json", + "root_panel/layout_customization_reset/layout_customization_reset_modal": "ui/hud_screen.json", + "root_panel/layout_customization_close_without_saving": "ui/hud_screen.json", + "root_panel/layout_customization_close_without_saving/layout_customization_close_without_saving_modal": "ui/hud_screen.json", + "root_panel/layout_customization_main_panel": "ui/hud_screen.json", + "root_panel/layout_customization_sub_panel": "ui/hud_screen.json", + "root_panel/layout_customization_hint_drag_frame": "ui/hud_screen.json", + "root_panel/layout_customization_hint_drag_frame/layout_customization_hint_drag": "ui/hud_screen.json", + "root_panel/layout_customization_hint_deselect_frame": "ui/hud_screen.json", + "root_panel/layout_customization_hint_deselect_frame/layout_customization_hint_deselect": "ui/hud_screen.json", + "root_panel/layout_customization_hint_saved": "ui/hud_screen.json", + "root_panel/layout_customization_hint_saved/layout_customization_hint_saved": "ui/hud_screen.json", + "root_panel/left_helpers": "ui/hud_screen.json", + "root_panel/right_helpers": "ui/hud_screen.json", + "root_panel/emote_expediate_helpers": "ui/hud_screen.json", + "root_panel/centered_gui_elements": "ui/hud_screen.json", + "root_panel/centered_gui_elements_at_bottom_middle": "ui/hud_screen.json", + "root_panel/centered_gui_elements_at_bottom_middle_touch": "ui/hud_screen.json", + "root_panel/not_centered_gui_elements": "ui/hud_screen.json", + "root_panel/gamertag_label_for_splitscreen": "ui/hud_screen.json", + "root_panel/exp_rend": "ui/hud_screen.json", + "root_panel/exp_rend_resizable": "ui/hud_screen.json", + "root_panel/hud_tip_text_factory": "ui/hud_screen.json", + "root_panel/hud_actionbar_text_area": "ui/hud_screen.json", + "root_panel/hud_title_text_area": "ui/hud_screen.json", + "root_panel/mob_effects_renderer": "ui/hud_screen.json", + "root_panel/vignette_rend": "ui/hud_screen.json", + "root_panel/curor_rend": "ui/hud_screen.json", + "root_panel/game_tip": "ui/hud_screen.json", + "root_panel/sidebar": "ui/hud_screen.json", + "root_panel/progress_rend": "ui/hud_screen.json", + "root_panel/chat_stack": "ui/hud_screen.json", + "root_panel/chat_stack/paper_doll_padding": "ui/hud_screen.json", + "root_panel/chat_stack/non_centered_gui_padding": "ui/hud_screen.json", + "root_panel/chat_stack/player_position": "ui/hud_screen.json", + "root_panel/chat_stack/number_of_days_played": "ui/hud_screen.json", + "root_panel/chat_stack/game_tip": "ui/hud_screen.json", + "root_panel/chat_stack/chat_panel": "ui/hud_screen.json", + "root_panel/boss_health_panel": "ui/hud_screen.json", + "root_panel/boss_health_panel/boss_hud_padding": "ui/hud_screen.json", + "root_panel/boss_health_panel/boss_hud_touch_padding": "ui/hud_screen.json", + "root_panel/boss_health_panel/boss_hud_panel": "ui/hud_screen.json", + "root_panel/boss_health_panel/boss_hud_panel/boss_health_grid": "ui/hud_screen.json", + "root_panel/save_icon": "ui/hud_screen.json", + "hud_screen": "ui/hud_screen.json", + "hud_content": "ui/hud_screen.json", + "hud_content/root_panel": "ui/hud_screen.json", + "hud_content/editor_gizmo_renderer": "ui/hud_screen.json", + "hud_content/editor_compass_renderer": "ui/hud_screen.json", + "hud_content/editor_volume_highlight_renderer": "ui/hud_screen.json", + "hud_content/camera_renderer": "ui/hud_screen.json", + "layout_customization_main_panel_button": "ui/hud_screen.json", + "layout_customization_main_panel_button/button": "ui/hud_screen.json", + "layout_customization_main_panel": "ui/hud_screen.json", + "layout_customization_main_panel/main_panel_frame": "ui/hud_screen.json", + "layout_customization_main_panel/main_panel_frame/main_panel_content": "ui/hud_screen.json", + "layout_customization_main_panel/main_panel_frame/main_panel_content/reset_button": "ui/hud_screen.json", + "layout_customization_main_panel/main_panel_frame/main_panel_content/exit_button": "ui/hud_screen.json", + "layout_customization_main_panel/main_panel_frame/main_panel_content/opacity_button": "ui/hud_screen.json", + "layout_customization_main_panel/main_panel_frame/main_panel_content/size_button": "ui/hud_screen.json", + "layout_customization_option_slider": "ui/hud_screen.json", + "layout_customization_option_slider/slider": "ui/hud_screen.json", + "layout_customization_option_slider/reset": "ui/hud_screen.json", + "layout_customization_option_slider/reset/reset_button": "ui/hud_screen.json", + "layout_customization_option_slider/reset/reset_button/default": "ui/hud_screen.json", + "layout_customization_option_slider/reset/reset_button/hover": "ui/hud_screen.json", + "layout_customization_option_slider/reset/reset_button/pressed": "ui/hud_screen.json", + "layout_customization_option_content": "ui/hud_screen.json", + "layout_customization_option_content/scale_option": "ui/hud_screen.json", + "layout_customization_option_content/opacity_option": "ui/hud_screen.json", + "layout_customization_option_content/apply_to_all_toggle": "ui/hud_screen.json", + "layout_customization_option_content/apply_to_all_toggle/checkbox_frame": "ui/hud_screen.json", + "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_unchecked": "ui/hud_screen.json", + "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_checked": "ui/hud_screen.json", + "layout_customization_option_content/apply_to_all_toggle/caption_frame": "ui/hud_screen.json", + "layout_customization_option_content/apply_to_all_toggle/caption_frame/caption": "ui/hud_screen.json", + "layout_customization_option": "ui/hud_screen.json", + "layout_customization_option/content": "ui/hud_screen.json", + "layout_customization_sub_panel": "ui/hud_screen.json", + "layout_customization_sub_panel/background": "ui/hud_screen.json", + "layout_customization_sub_panel/background/sub_panel_content": "ui/hud_screen.json", + }, + "host_options": { + "button_label": "ui/host_options_screen.json", + "host_image_panel": "ui/host_options_screen.json", + "host_image_panel/host_image": "ui/host_options_screen.json", + "host_glyph_panel": "ui/host_options_screen.json", + "scrollable_selector_area": "ui/host_options_screen.json", + "host_main_button": "ui/host_options_screen.json", + "scrolling_panel": "ui/host_options_screen.json", + "scrolling_panel/background": "ui/host_options_screen.json", + "scrolling_panel/scrollable_tab": "ui/host_options_screen.json", + "button_content": "ui/host_options_screen.json", + "button_content/button_label": "ui/host_options_screen.json", + "button_content/image": "ui/host_options_screen.json", + "main_light_button": "ui/host_options_screen.json", + "main_dark_button": "ui/host_options_screen.json", + "host_grid": "ui/host_options_screen.json", + "host_sub_command_grid_item": "ui/host_options_screen.json", + "host_sub_command_grid_item/host_option_banner": "ui/host_options_screen.json", + "return_from_sub_command_button": "ui/host_options_screen.json", + "platform_icon_panel": "ui/host_options_screen.json", + "gamertag_wrapper": "ui/host_options_screen.json", + "player_pic_panel": "ui/host_options_screen.json", + "player_pic_panel/player_gamer_pic": "ui/host_options_screen.json", + "player_pic_panel/player_local_icon": "ui/host_options_screen.json", + "player_button_content": "ui/host_options_screen.json", + "player_button_content/player_pic_panel": "ui/host_options_screen.json", + "player_button_content/player_gamertag": "ui/host_options_screen.json", + "player_button_content/platform_icon": "ui/host_options_screen.json", + "player_grid_item": "ui/host_options_screen.json", + "player_grid_item/player_banner": "ui/host_options_screen.json", + "host_friends_tab": "ui/host_options_screen.json", + "host_friends_tab/players_grid": "ui/host_options_screen.json", + "host_teleport_grid_item": "ui/host_options_screen.json", + "host_teleport_grid_item/host_option_toggle": "ui/host_options_screen.json", + "host_teleport_grid_item/host_option_button": "ui/host_options_screen.json", + "host_teleport_buttons": "ui/host_options_screen.json", + "host_teleport_buttons/return": "ui/host_options_screen.json", + "host_teleport_buttons/sub_tab": "ui/host_options_screen.json", + "host_teleport_buttons/sub_tab/host_main_grid": "ui/host_options_screen.json", + "host_teleport_player_list_buttons": "ui/host_options_screen.json", + "host_teleport_player_list_buttons/toggle": "ui/host_options_screen.json", + "host_teleport_player_list_buttons/toggle/host_time_panel": "ui/host_options_screen.json", + "host_teleport_player_buttons": "ui/host_options_screen.json", + "host_time_buttons": "ui/host_options_screen.json", + "host_time_buttons/return": "ui/host_options_screen.json", + "host_time_buttons/sub_tab": "ui/host_options_screen.json", + "host_time_buttons/sub_tab/scrolli_scrolli_ravioli": "ui/host_options_screen.json", + "host_weather_buttons": "ui/host_options_screen.json", + "host_weather_buttons/return": "ui/host_options_screen.json", + "host_weather_buttons/sub_tab": "ui/host_options_screen.json", + "host_weather_buttons/sub_tab/host_main_grid": "ui/host_options_screen.json", + "host_menu_grid_item": "ui/host_options_screen.json", + "host_menu_grid_item/host_option_banner": "ui/host_options_screen.json", + "host_main_buttons": "ui/host_options_screen.json", + "host_main_buttons/host_main_grid": "ui/host_options_screen.json", + "host_panel": "ui/host_options_screen.json", + "host_panel/host_main_panel": "ui/host_options_screen.json", + "host_panel/host_teleport_panel": "ui/host_options_screen.json", + "host_panel/host_teleport_player_panel": "ui/host_options_screen.json", + "host_panel/host_time_panel": "ui/host_options_screen.json", + "host_panel/host_weather_panel": "ui/host_options_screen.json", + }, + "bed": { + "in_bed_screen": "ui/in_bed_screen.json", + "in_bed_screen_content": "ui/in_bed_screen.json", + "in_bed_screen_content/wake_up_button_panel": "ui/in_bed_screen.json", + "in_bed_screen_content/wake_up_button_panel/wake_up_button": "ui/in_bed_screen.json", + "in_bed_screen_content/wake_up_button_panel/spacer": "ui/in_bed_screen.json", + "in_bed_screen_content/wake_up_button_panel/chat_button": "ui/in_bed_screen.json", + "in_bed_screen_content/wake_up_label_panel": "ui/in_bed_screen.json", + "in_bed_screen_content/select_button": "ui/in_bed_screen.json", + "background": "ui/in_bed_screen.json", + }, + "im_reader": { + "reader_button_contents": "ui/immersive_reader.json", + "reader_button": "ui/immersive_reader.json", + "webview": "ui/immersive_reader.json", + "loading": "ui/immersive_reader.json", + "loading/animation_item": "ui/immersive_reader.json", + "loading/animation_item/animation": "ui/immersive_reader.json", + "loading/loading_text_item": "ui/immersive_reader.json", + "loading/loading_text_item/loading_text": "ui/immersive_reader.json", + "loading/bottom_padding": "ui/immersive_reader.json", + "loading/cancel_button": "ui/immersive_reader.json", + "no_retry_error_button": "ui/immersive_reader.json", + "retry_error_buttons": "ui/immersive_reader.json", + "retry_error_buttons/try_again": "ui/immersive_reader.json", + "retry_error_buttons/middle_padding": "ui/immersive_reader.json", + "retry_error_buttons/cancel": "ui/immersive_reader.json", + "error": "ui/immersive_reader.json", + "error/error_text": "ui/immersive_reader.json", + "error/error_buttons": "ui/immersive_reader.json", + "error/error_buttons/retry": "ui/immersive_reader.json", + "error/error_buttons/no_retry": "ui/immersive_reader.json", + "loading_and_error_panel": "ui/immersive_reader.json", + "loading_and_error_panel/loading": "ui/immersive_reader.json", + "loading_and_error_panel/error": "ui/immersive_reader.json", + "immersive_reader_screen_content": "ui/immersive_reader.json", + "immersive_reader_screen_content/loading_and_error": "ui/immersive_reader.json", + "immersive_reader_screen_content/webview": "ui/immersive_reader.json", + "immersive_reader_screen": "ui/immersive_reader.json", + }, + "crafting": { + "inventory_x_gamepad_helper": "ui/inventory_screen.json", + "inventory_y_gamepad_helper": "ui/inventory_screen.json", + "inventory_a_gamepad_helper": "ui/inventory_screen.json", + "inventory_b_gamepad_helper": "ui/inventory_screen.json", + "gamepad_helper_bumpers": "ui/inventory_screen.json", + "gamepad_helper_bumpers/gamepad_helper_left_bumper": "ui/inventory_screen.json", + "gamepad_helper_bumpers/gamepad_helper_right_bumper": "ui/inventory_screen.json", + "gamepad_helper_left_trigger": "ui/inventory_screen.json", + "gamepad_helper_right_trigger": "ui/inventory_screen.json", + "container_gamepad_helpers_second_row": "ui/inventory_screen.json", + "container_gamepad_helpers_second_row/buffer_panel_left": "ui/inventory_screen.json", + "container_gamepad_helpers_second_row/left_thumbstick_visibility": "ui/inventory_screen.json", + "container_gamepad_helpers_second_row/left_thumbstick_visibility/gamepad_helper_thumbstick_left": "ui/inventory_screen.json", + "container_gamepad_helpers_second_row/fill_panel": "ui/inventory_screen.json", + "container_gamepad_helpers_second_row/right_thumbstick_visibility": "ui/inventory_screen.json", + "container_gamepad_helpers_second_row/right_thumbstick_visibility/gamepad_helper_thumbstick_right": "ui/inventory_screen.json", + "container_gamepad_helpers_second_row/buffer_panel_right": "ui/inventory_screen.json", + "crafting_root_panel": "ui/inventory_screen.json", + "drop_item_panel": "ui/inventory_screen.json", + "inventory_container_slot_button": "ui/inventory_screen.json", + "creative_hotbar_container_slot_button": "ui/inventory_screen.json", + "no_coalesce_container_slot_button": "ui/inventory_screen.json", + "creative_no_coalesce_container_slot_button": "ui/inventory_screen.json", + "output_no_coalesce_container_slot_button": "ui/inventory_screen.json", + "tab_image": "ui/inventory_screen.json", + "item_renderer": "ui/inventory_screen.json", + "inventory_icon": "ui/inventory_screen.json", + "recipe_book_icon": "ui/inventory_screen.json", + "creative_icon": "ui/inventory_screen.json", + "icon_image": "ui/inventory_screen.json", + "tab_front": "ui/inventory_screen.json", + "tab_back": "ui/inventory_screen.json", + "equipment_icon": "ui/inventory_screen.json", + "construction_icon": "ui/inventory_screen.json", + "nature_icon": "ui/inventory_screen.json", + "search_icon": "ui/inventory_screen.json", + "miscellaneous_icon": "ui/inventory_screen.json", + "empty_tab_panel": "ui/inventory_screen.json", + "empty_tab_panel/img": "ui/inventory_screen.json", + "top_tab": "ui/inventory_screen.json", + "search_tab": "ui/inventory_screen.json", + "construction_tab": "ui/inventory_screen.json", + "equipment_tab": "ui/inventory_screen.json", + "nature_tab": "ui/inventory_screen.json", + "items_tab": "ui/inventory_screen.json", + "tab_navigation_panel_layout": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel/construction_tab_factory": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel/equipment_tab_factory": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel/items_tab_factory": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel/nature_tab_factory": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content/fill_panel_0": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_end_creative": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_creative": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_survival": "ui/inventory_screen.json", + "tab_content_padding": "ui/inventory_screen.json", + "tab_content": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/vertical_padding_1": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_1": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/creative_label": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_2": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder/filter_toggle": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/vertical_padding_2": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/search_and_filter_panel": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/text_edit_control": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/padding_1": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder/filter_toggle": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/vertical_padding_3": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/scroll_pane": "ui/inventory_screen.json", + "tab_content/nodrop_zone": "ui/inventory_screen.json", + "armor_overlay": "ui/inventory_screen.json", + "offhand_overlay": "ui/inventory_screen.json", + "armor_overlay_helmet": "ui/inventory_screen.json", + "armor_overlay_chest": "ui/inventory_screen.json", + "armor_overlay_legs": "ui/inventory_screen.json", + "armor_image_feet": "ui/inventory_screen.json", + "armor_overlay_shield": "ui/inventory_screen.json", + "player_armor_panel": "ui/inventory_screen.json", + "player_armor_panel/player_bg": "ui/inventory_screen.json", + "player_armor_panel/player_bg/player_renderer_panel": "ui/inventory_screen.json", + "player_armor_panel/player_bg/player_renderer_panel/player_renderer": "ui/inventory_screen.json", + "player_armor_panel/player_preview_border": "ui/inventory_screen.json", + "player_armor_panel/armor_grid": "ui/inventory_screen.json", + "player_armor_panel/armor_grid/head_grid_item": "ui/inventory_screen.json", + "player_armor_panel/armor_grid/chest_grid_item": "ui/inventory_screen.json", + "player_armor_panel/armor_grid/legs_grid_item": "ui/inventory_screen.json", + "player_armor_panel/armor_grid/feet_grid_item": "ui/inventory_screen.json", + "player_armor_panel/offhand_grid": "ui/inventory_screen.json", + "player_armor_panel/offhand_grid/offhand_grid_item": "ui/inventory_screen.json", + "crafting_label": "ui/inventory_screen.json", + "inventory_label": "ui/inventory_screen.json", + "crafting_arrow": "ui/inventory_screen.json", + "crafting_arrow_large": "ui/inventory_screen.json", + "crafting_input_grid_item": "ui/inventory_screen.json", + "crafting_grid_3x3": "ui/inventory_screen.json", + "crafting_grid_3x3/crafting_input_item_top_left": "ui/inventory_screen.json", + "crafting_grid_3x3/crafting_input_item_top_mid": "ui/inventory_screen.json", + "crafting_grid_3x3/crafting_input_item_top_right": "ui/inventory_screen.json", + "crafting_grid_3x3/crafting_input_item_mid_left": "ui/inventory_screen.json", + "crafting_grid_3x3/crafting_input_item_middle": "ui/inventory_screen.json", + "crafting_grid_3x3/crafting_input_item_mid_right": "ui/inventory_screen.json", + "crafting_grid_3x3/crafting_input_item_bot_left": "ui/inventory_screen.json", + "crafting_grid_3x3/crafting_input_item_bot_mid": "ui/inventory_screen.json", + "crafting_grid_3x3/crafting_input_item_bot_right": "ui/inventory_screen.json", + "crafting_grid_2x2": "ui/inventory_screen.json", + "crafting_grid_2x2/crafting_input_item_top_left": "ui/inventory_screen.json", + "crafting_grid_2x2/crafting_input_item_top_right": "ui/inventory_screen.json", + "crafting_grid_2x2/crafting_input_item_bot_left": "ui/inventory_screen.json", + "crafting_grid_2x2/crafting_input_item_bot_right": "ui/inventory_screen.json", + "output_grid_3x3": "ui/inventory_screen.json", + "output_grid_3x3/work_bench_output": "ui/inventory_screen.json", + "output_grid_2x2": "ui/inventory_screen.json", + "output_grid_2x2/work_bench_output": "ui/inventory_screen.json", + "work_bench_panel_3x3": "ui/inventory_screen.json", + "work_bench_panel_3x3/inventory_label": "ui/inventory_screen.json", + "work_bench_panel_3x3/crafting_arrow_large": "ui/inventory_screen.json", + "work_bench_panel_3x3/crafting_grid_3x3_with_label_0": "ui/inventory_screen.json", + "work_bench_panel_3x3/work_bench_output_grid": "ui/inventory_screen.json", + "crafting_grid_3x3_with_label": "ui/inventory_screen.json", + "crafting_grid_3x3_with_label/crafting_label": "ui/inventory_screen.json", + "crafting_grid_3x3_with_label/crafting_grid_3x3": "ui/inventory_screen.json", + "crafting_grid_2x2_with_label": "ui/inventory_screen.json", + "crafting_grid_2x2_with_label/crafting_label": "ui/inventory_screen.json", + "crafting_grid_2x2_with_label/crafting_grid_2x2": "ui/inventory_screen.json", + "crafting_panel_2x2": "ui/inventory_screen.json", + "crafting_panel_2x2/crafting_arrow": "ui/inventory_screen.json", + "crafting_panel_2x2/crafting_table": "ui/inventory_screen.json", + "crafting_panel_2x2/crafting_grid_2x2": "ui/inventory_screen.json", + "crafting_panel_2x2/survival_crafting_output_grid": "ui/inventory_screen.json", + "survival_panel_top_half": "ui/inventory_screen.json", + "survival_panel_top_half/player_armor_panel": "ui/inventory_screen.json", + "survival_panel_top_half/crafting_panel": "ui/inventory_screen.json", + "crafting_panel_top_half": "ui/inventory_screen.json", + "crafting_panel_top_half/crafting_panel": "ui/inventory_screen.json", + "recipe_container_cell_images": "ui/inventory_screen.json", + "cell_image_recipe_default": "ui/inventory_screen.json", + "cell_image_recipe_group_head_collapsed": "ui/inventory_screen.json", + "cell_image_recipe_group_head_expanded": "ui/inventory_screen.json", + "cell_image_recipe_group_item": "ui/inventory_screen.json", + "cell_image_recipe_selected": "ui/inventory_screen.json", + "cell_image_recipe_default_red": "ui/inventory_screen.json", + "container_cell_images": "ui/inventory_screen.json", + "container_cell_images/cell_classic": "ui/inventory_screen.json", + "container_cell_images/cell_normal": "ui/inventory_screen.json", + "container_cell_images/cell_invert": "ui/inventory_screen.json", + "container_cell_images/cell_red": "ui/inventory_screen.json", + "container_cell_images/cell_selected": "ui/inventory_screen.json", + "container_cell_images/cell_darkgrey": "ui/inventory_screen.json", + "crafting_container_cell_images": "ui/inventory_screen.json", + "cell_image": "ui/inventory_screen.json", + "cell_image_classic": "ui/inventory_screen.json", + "cell_image_normal": "ui/inventory_screen.json", + "cell_image_invert": "ui/inventory_screen.json", + "cell_image_red": "ui/inventory_screen.json", + "cell_image_selected": "ui/inventory_screen.json", + "cell_image_darkgrey": "ui/inventory_screen.json", + "container_overlay_images": "ui/inventory_screen.json", + "container_overlay_images/expand": "ui/inventory_screen.json", + "container_overlay_images/contract": "ui/inventory_screen.json", + "item_overlay_image": "ui/inventory_screen.json", + "item_overlay_contract": "ui/inventory_screen.json", + "item_overlay_expand": "ui/inventory_screen.json", + "inventory_container_item": "ui/inventory_screen.json", + "inventory_container_item/item_cell": "ui/inventory_screen.json", + "inventory_container_item/item_cell/item": "ui/inventory_screen.json", + "inventory_container_item/item_cell/item/stack_count_label": "ui/inventory_screen.json", + "inventory_container_item/item_cell/durability_bar": "ui/inventory_screen.json", + "inventory_container_item/item_cell/storage_bar": "ui/inventory_screen.json", + "inventory_container_item/item_cell_overlay_ref": "ui/inventory_screen.json", + "inventory_container_item/item_selected_image": "ui/inventory_screen.json", + "inventory_container_item/item_button_ref": "ui/inventory_screen.json", + "inventory_container_item/container_item_lock_overlay": "ui/inventory_screen.json", + "inventory_container_item/item_lock_cell_image": "ui/inventory_screen.json", + "inventory_container_item/bundle_slot_panel": "ui/inventory_screen.json", + "grid_item_for_recipe_book": "ui/inventory_screen.json", + "scroll_grid_panel": "ui/inventory_screen.json", + "scroll_grid_panel/grid": "ui/inventory_screen.json", + "scroll_grid": "ui/inventory_screen.json", + "scroll_panel": "ui/inventory_screen.json", + "recipe_book_scroll_panel": "ui/inventory_screen.json", + "creative_label": "ui/inventory_screen.json", + "filter_toggle": "ui/inventory_screen.json", + "toolbar_background": "ui/inventory_screen.json", + "layout_toggle_content": "ui/inventory_screen.json", + "layout_toggle_content/image": "ui/inventory_screen.json", + "layout_toggle_content/icon": "ui/inventory_screen.json", + "layout_template_toggle": "ui/inventory_screen.json", + "layout_toggle": "ui/inventory_screen.json", + "creative_layout_toggle": "ui/inventory_screen.json", + "recipe_book_layout_toggle": "ui/inventory_screen.json", + "survival_layout_toggle": "ui/inventory_screen.json", + "help_button": "ui/inventory_screen.json", + "help_button/default": "ui/inventory_screen.json", + "help_button/hover": "ui/inventory_screen.json", + "help_button/pressed": "ui/inventory_screen.json", + "player_inventory": "ui/inventory_screen.json", + "player_inventory/common_panel": "ui/inventory_screen.json", + "player_inventory/inventory_panel_top_half": "ui/inventory_screen.json", + "player_inventory/inventory_panel_bottom_half": "ui/inventory_screen.json", + "player_inventory/hotbar_grid": "ui/inventory_screen.json", + "recipe_book": "ui/inventory_screen.json", + "recipe_book/gamepad_helper_bumpers": "ui/inventory_screen.json", + "recipe_book/tab_navigation_panel": "ui/inventory_screen.json", + "recipe_book/bg": "ui/inventory_screen.json", + "recipe_book/tab_content_panel": "ui/inventory_screen.json", + "recipe_book/creative_hotbar_panel": "ui/inventory_screen.json", + "creative_hotbar_panel": "ui/inventory_screen.json", + "creative_hotbar_panel/creative_hotbar_background": "ui/inventory_screen.json", + "creative_hotbar_panel/creative_hotbar_background/hotbar_grid": "ui/inventory_screen.json", + "center_fold": "ui/inventory_screen.json", + "center_fold/center_bg": "ui/inventory_screen.json", + "toolbar_panel": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor/gamepad_helper_left_trigger": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_0": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel/creative_layout_toggle": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival/recipe_book_layout_toggle": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative/recipe_book_layout_toggle": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel/survival_layout_toggle": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_3": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_4": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor/gamepad_helper_right_trigger": "ui/inventory_screen.json", + "inventory_screen_base": "ui/inventory_screen.json", + "crafting_screen": "ui/inventory_screen.json", + "inventory_screen": "ui/inventory_screen.json", + "recipe_book_toggle_image": "ui/inventory_screen.json", + "recipe_inventory_screen_content": "ui/inventory_screen.json", + "recipe_inventory_screen_content/content_stack_panel": "ui/inventory_screen.json", + "recipe_inventory_screen_content/content_stack_panel/recipe_book": "ui/inventory_screen.json", + "recipe_inventory_screen_content/content_stack_panel/center_fold": "ui/inventory_screen.json", + "recipe_inventory_screen_content/content_stack_panel/survival_padding": "ui/inventory_screen.json", + "recipe_inventory_screen_content/content_stack_panel/player_inventory": "ui/inventory_screen.json", + "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor": "ui/inventory_screen.json", + "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor/toolbar_panel": "ui/inventory_screen.json", + "recipe_inventory_screen_content/inventory_take_progress_icon_button": "ui/inventory_screen.json", + "recipe_inventory_screen_content/inventory_selected_icon_button": "ui/inventory_screen.json", + "recipe_inventory_screen_content/hold_icon": "ui/inventory_screen.json", + "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel": "ui/inventory_screen.json", + "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers_second_row": "ui/inventory_screen.json", + "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers": "ui/inventory_screen.json", + "recipe_inventory_screen_content/selected_item_details_factory": "ui/inventory_screen.json", + "recipe_inventory_screen_content/item_lock_notification_factory": "ui/inventory_screen.json", + "recipe_inventory_screen_content/flying_item_renderer": "ui/inventory_screen.json", + }, + "crafting_pocket": { + "survival_icon": "ui/inventory_screen_pocket.json", + "full_screen_icon": "ui/inventory_screen_pocket.json", + "crafting_icon": "ui/inventory_screen_pocket.json", + "armor_icon": "ui/inventory_screen_pocket.json", + "crafting_arrow_down": "ui/inventory_screen_pocket.json", + "empty_tab_panel": "ui/inventory_screen_pocket.json", + "left_tab": "ui/inventory_screen_pocket.json", + "right_tab": "ui/inventory_screen_pocket.json", + "full_screen_tab": "ui/inventory_screen_pocket.json", + "crafting_tab": "ui/inventory_screen_pocket.json", + "armor_tab": "ui/inventory_screen_pocket.json", + "search_tab": "ui/inventory_screen_pocket.json", + "construction_tab": "ui/inventory_screen_pocket.json", + "equipment_tab": "ui/inventory_screen_pocket.json", + "items_tab": "ui/inventory_screen_pocket.json", + "nature_tab": "ui/inventory_screen_pocket.json", + "inventory_tab": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket/content": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket/content/search_tab_panel": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket/content/search_tab_panel/search_tab": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket/content/construction_tab_panel": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket/content/construction_tab_panel/construction_tab_factory": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket/content/equipment_tab_panel": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket/content/equipment_tab_panel/equipment_tab_factory": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket/content/items_tab_panel": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket/content/items_tab_panel/items_tab_factory": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket/content/nature_tab_panel": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket/content/nature_tab_panel/nature_tab_factory": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket/content/fill": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket/content/inventory_tab": "ui/inventory_screen_pocket.json", + "right_tab_navigation_panel_pocket": "ui/inventory_screen_pocket.json", + "right_tab_navigation_panel_pocket/content": "ui/inventory_screen_pocket.json", + "right_tab_navigation_panel_pocket/content/close": "ui/inventory_screen_pocket.json", + "right_tab_navigation_panel_pocket/content/close/nodrop_zone": "ui/inventory_screen_pocket.json", + "right_tab_navigation_panel_pocket/content/close/close_button": "ui/inventory_screen_pocket.json", + "right_tab_navigation_panel_pocket/content/fill": "ui/inventory_screen_pocket.json", + "right_tab_navigation_panel_pocket/content/full_screen_tab": "ui/inventory_screen_pocket.json", + "right_tab_navigation_panel_pocket/content/crafting_tab": "ui/inventory_screen_pocket.json", + "right_tab_navigation_panel_pocket/content/armor_tab": "ui/inventory_screen_pocket.json", + "recipe_book_tab_content": "ui/inventory_screen_pocket.json", + "inventory_tab_content": "ui/inventory_screen_pocket.json", + "right_tab_content": "ui/inventory_screen_pocket.json", + "right_tab_content/bg": "ui/inventory_screen_pocket.json", + "right_tab_content/content": "ui/inventory_screen_pocket.json", + "crafting_input_grid_item": "ui/inventory_screen_pocket.json", + "crafting_grid_3x3": "ui/inventory_screen_pocket.json", + "crafting_grid_2x2": "ui/inventory_screen_pocket.json", + "output_grid_and_label": "ui/inventory_screen_pocket.json", + "output_grid_and_label/recipe_item_label": "ui/inventory_screen_pocket.json", + "output_grid_and_label/output_grid": "ui/inventory_screen_pocket.json", + "output_grid": "ui/inventory_screen_pocket.json", + "output_grid/work_bench_output": "ui/inventory_screen_pocket.json", + "crafting_grid_3x3_with_label": "ui/inventory_screen_pocket.json", + "crafting_grid_3x3_with_label/crafting_label": "ui/inventory_screen_pocket.json", + "crafting_grid_3x3_with_label/crafting_grid_3x3": "ui/inventory_screen_pocket.json", + "crafting_grid_2x2_with_label": "ui/inventory_screen_pocket.json", + "crafting_grid_2x2_with_label/crafting_label": "ui/inventory_screen_pocket.json", + "crafting_grid_2x2_with_label/crafting_grid_2x2": "ui/inventory_screen_pocket.json", + "scroll_background_image": "ui/inventory_screen_pocket.json", + "grid_item_for_inventory": "ui/inventory_screen_pocket.json", + "survival_inventory_grid": "ui/inventory_screen_pocket.json", + "scroll_panel_pocket": "ui/inventory_screen_pocket.json", + "recipe_book_scroll_panel_pocket": "ui/inventory_screen_pocket.json", + "survival_scroll_panel": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/label_and_renderer": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/label_and_renderer/label_panel": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/label_and_renderer/label_panel/armor_label": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/label_and_renderer/renderer_panel": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/label_and_renderer/renderer_panel/armor_renderer": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/equipment": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/head_grid_item": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/chest_grid_item": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/legs_grid_item": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/feet_grid_item": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid/offhand_grid_item": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/armor_panel": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg/player_renderer_panel": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg/player_renderer_panel/player_renderer": "ui/inventory_screen_pocket.json", + "hotbar_panel": "ui/inventory_screen_pocket.json", + "hotbar_panel/bg": "ui/inventory_screen_pocket.json", + "hotbar_panel/hotbar_grid": "ui/inventory_screen_pocket.json", + "hotbar_grid_item": "ui/inventory_screen_pocket.json", + "survival_panel_pocket": "ui/inventory_screen_pocket.json", + "survival_panel_pocket/crafting_panel": "ui/inventory_screen_pocket.json", + "survival_panel_pocket/crafting_arrow_down": "ui/inventory_screen_pocket.json", + "survival_panel_pocket/crafting_table": "ui/inventory_screen_pocket.json", + "survival_panel_pocket/output": "ui/inventory_screen_pocket.json", + "survival_panel_crafting_pocket": "ui/inventory_screen_pocket.json", + "survival_panel_crafting_pocket/crafting_panel": "ui/inventory_screen_pocket.json", + "survival_panel_crafting_pocket/crafting_arrow_down": "ui/inventory_screen_pocket.json", + "survival_panel_crafting_pocket/output": "ui/inventory_screen_pocket.json", + "inventory_screen_pocket_base": "ui/inventory_screen_pocket.json", + "crafting_screen_pocket": "ui/inventory_screen_pocket.json", + "inventory_screen_pocket": "ui/inventory_screen_pocket.json", + "left_panel": "ui/inventory_screen_pocket.json", + "left_panel/left_background": "ui/inventory_screen_pocket.json", + "left_panel/recipe_book_tab_content": "ui/inventory_screen_pocket.json", + "left_panel/inventory_tab_content": "ui/inventory_screen_pocket.json", + "right_panel": "ui/inventory_screen_pocket.json", + "right_panel/right_background": "ui/inventory_screen_pocket.json", + "right_panel/help_button": "ui/inventory_screen_pocket.json", + "right_panel/crafting_tab_content": "ui/inventory_screen_pocket.json", + "right_panel/armor_tab_content": "ui/inventory_screen_pocket.json", + "both_panels": "ui/inventory_screen_pocket.json", + "both_panels/left_tab_navigation_panel_pocket": "ui/inventory_screen_pocket.json", + "both_panels/left_panel": "ui/inventory_screen_pocket.json", + "both_panels/offset_panel": "ui/inventory_screen_pocket.json", + "both_panels/offset_panel/center_bg": "ui/inventory_screen_pocket.json", + "both_panels/right_panel": "ui/inventory_screen_pocket.json", + "both_panels/right_tab_navigation_panel_pocket": "ui/inventory_screen_pocket.json", + "gamepad_helper_border": "ui/inventory_screen_pocket.json", + "gamepad_helper_border/left_gamepad_panel": "ui/inventory_screen_pocket.json", + "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_bumper": "ui/inventory_screen_pocket.json", + "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_trigger": "ui/inventory_screen_pocket.json", + "gamepad_helper_border/both_panels": "ui/inventory_screen_pocket.json", + "gamepad_helper_border/right_gamepad_panel": "ui/inventory_screen_pocket.json", + "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper_creative": "ui/inventory_screen_pocket.json", + "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper": "ui/inventory_screen_pocket.json", + "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_trigger": "ui/inventory_screen_pocket.json", + "hotbar_and_panels": "ui/inventory_screen_pocket.json", + "hotbar_and_panels/padding_1": "ui/inventory_screen_pocket.json", + "hotbar_and_panels/gamepad_helper_border": "ui/inventory_screen_pocket.json", + "hotbar_and_panels/hotbar_section_panel": "ui/inventory_screen_pocket.json", + "hotbar_and_panels/hotbar_section_panel/hotbar": "ui/inventory_screen_pocket.json", + "recipe_inventory_screen_content_pocket": "ui/inventory_screen_pocket.json", + "recipe_inventory_screen_content_pocket/container_gamepad_helpers_pocket": "ui/inventory_screen_pocket.json", + "recipe_inventory_screen_content_pocket/toast_screen_content": "ui/inventory_screen_pocket.json", + "recipe_inventory_screen_content_pocket/selected_item_details_factory": "ui/inventory_screen_pocket.json", + "recipe_inventory_screen_content_pocket/item_lock_notification_factory": "ui/inventory_screen_pocket.json", + "recipe_inventory_screen_content_pocket/base_panel": "ui/inventory_screen_pocket.json", + "recipe_inventory_screen_content_pocket/base_panel/root_panel": "ui/inventory_screen_pocket.json", + "recipe_inventory_screen_content_pocket/base_panel/inventory_selected_icon_button": "ui/inventory_screen_pocket.json", + "recipe_inventory_screen_content_pocket/base_panel/gamepad_cursor": "ui/inventory_screen_pocket.json", + "recipe_inventory_screen_content_pocket/base_panel/hold_icon": "ui/inventory_screen_pocket.json", + "recipe_inventory_screen_content_pocket/base_panel/hotbar_and_panels": "ui/inventory_screen_pocket.json", + "recipe_inventory_screen_content_pocket/flying_item_renderer": "ui/inventory_screen_pocket.json", + }, + "invite": { + "black_border": "ui/invite_screen.json", + "black_border_hover": "ui/invite_screen.json", + "platform_icon": "ui/invite_screen.json", + "grey_borderless_locked": "ui/invite_screen.json", + "checked_locked_image": "ui/invite_screen.json", + "unchecked_locked_image": "ui/invite_screen.json", + "left_arrow_image": "ui/invite_screen.json", + "right_arrow_image": "ui/invite_screen.json", + "account_link_image": "ui/invite_screen.json", + "panel_text": "ui/invite_screen.json", + "loading_friends": "ui/invite_screen.json", + "account_link_icon": "ui/invite_screen.json", + "account_link_icon/space_01": "ui/invite_screen.json", + "account_link_icon/account_link_image": "ui/invite_screen.json", + "account_link_icon/space_03": "ui/invite_screen.json", + "gamerpic": "ui/invite_screen.json", + "third_party_profile_pic": "ui/invite_screen.json", + "gamerpic_panel": "ui/invite_screen.json", + "gamerpic_panel/black_border": "ui/invite_screen.json", + "gamerpic_panel/gamerpic": "ui/invite_screen.json", + "gamerpic_panel/online_indication_positioner": "ui/invite_screen.json", + "gamerpic_panel/online_indication_positioner/indicator_images": "ui/invite_screen.json", + "third_party_profile_pic_panel": "ui/invite_screen.json", + "third_party_profile_pic_panel/black_border": "ui/invite_screen.json", + "third_party_profile_pic_panel/third_party_profile_pic": "ui/invite_screen.json", + "platform_icon_panel": "ui/invite_screen.json", + "platform_icon_panel/platform_icon": "ui/invite_screen.json", + "status_image": "ui/invite_screen.json", + "online_image": "ui/invite_screen.json", + "offline_image": "ui/invite_screen.json", + "online_indicator": "ui/invite_screen.json", + "online_indicator/online_image": "ui/invite_screen.json", + "checkbox_panel": "ui/invite_screen.json", + "checked_panel": "ui/invite_screen.json", + "checked_panel/checked_image": "ui/invite_screen.json", + "unchecked_panel": "ui/invite_screen.json", + "unchecked_panel/unchecked_image": "ui/invite_screen.json", + "checked_locked_panel": "ui/invite_screen.json", + "checked_locked_panel/checked_image": "ui/invite_screen.json", + "unchecked_locked_panel": "ui/invite_screen.json", + "unchecked_locked_panel/unchecked_image": "ui/invite_screen.json", + "checked_hover_panel": "ui/invite_screen.json", + "checked_hover_panel/checked_hover_image": "ui/invite_screen.json", + "unchecked_hover_panel": "ui/invite_screen.json", + "unchecked_hover_panel/unchecked_hover_image": "ui/invite_screen.json", + "friend_label": "ui/invite_screen.json", + "friend_grid_xbl_gamertag": "ui/invite_screen.json", + "friend_grid_current_game_label": "ui/invite_screen.json", + "friend_grid_third_party_tag": "ui/invite_screen.json", + "friend_background": "ui/invite_screen.json", + "friend_background_hover": "ui/invite_screen.json", + "friend_background_borderless": "ui/invite_screen.json", + "hover_friend_button": "ui/invite_screen.json", + "hover_friend_button/friend_button_layout": "ui/invite_screen.json", + "hover_friend_button/hover_text": "ui/invite_screen.json", + "linked_hover_friend_button": "ui/invite_screen.json", + "linked_hover_friend_button/hover_text": "ui/invite_screen.json", + "msa_friend_button_layout": "ui/invite_screen.json", + "msa_friend_button_layout/spacer01": "ui/invite_screen.json", + "msa_friend_button_layout/platform_icon_spacer": "ui/invite_screen.json", + "msa_friend_button_layout/spacer_02": "ui/invite_screen.json", + "msa_friend_button_layout/friend_grid_label_layout": "ui/invite_screen.json", + "msa_friend_button_layout/friend_grid_label_layout/spacer_01": "ui/invite_screen.json", + "msa_friend_button_layout/friend_grid_label_layout/friend_grid_xbl_gamertag": "ui/invite_screen.json", + "msa_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label": "ui/invite_screen.json", + "platform_friend_button_layout": "ui/invite_screen.json", + "platform_friend_button_layout/spacer01": "ui/invite_screen.json", + "platform_friend_button_layout/platform_icon_spacer": "ui/invite_screen.json", + "platform_friend_button_layout/third_party_pic_panel_positioner": "ui/invite_screen.json", + "platform_friend_button_layout/third_party_pic_panel_positioner/pp": "ui/invite_screen.json", + "platform_friend_button_layout/spacer_02": "ui/invite_screen.json", + "platform_friend_button_layout/friend_grid_label_layout": "ui/invite_screen.json", + "platform_friend_button_layout/friend_grid_label_layout/spacer_01": "ui/invite_screen.json", + "platform_friend_button_layout/friend_grid_label_layout/friend_grid_third_party_tag": "ui/invite_screen.json", + "platform_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label": "ui/invite_screen.json", + "platform_friend_button_layout/platform_icon_positioner": "ui/invite_screen.json", + "platform_friend_button_layout/platform_icon_positioner/platform_icon": "ui/invite_screen.json", + "platform_friend_button_layout/online_indication_positioner": "ui/invite_screen.json", + "platform_friend_button_layout/online_indication_positioner/indicator_images": "ui/invite_screen.json", + "linked_friend_button_layout": "ui/invite_screen.json", + "linked_friend_button_layout/spacer01": "ui/invite_screen.json", + "linked_friend_button_layout/platform_icon_positioner": "ui/invite_screen.json", + "linked_friend_button_layout/platform_icon_positioner/platform_icon": "ui/invite_screen.json", + "linked_friend_button_layout/spacer02": "ui/invite_screen.json", + "linked_friend_button_layout/platform_profile_pictures": "ui/invite_screen.json", + "linked_friend_button_layout/platform_profile_pictures/spacer_01": "ui/invite_screen.json", + "linked_friend_button_layout/platform_profile_pictures/pp2": "ui/invite_screen.json", + "linked_friend_button_layout/platform_profile_pictures/account_link": "ui/invite_screen.json", + "linked_friend_button_layout/platform_profile_pictures/pp1": "ui/invite_screen.json", + "linked_friend_button_layout/platform_profile_pictures/spacer_03": "ui/invite_screen.json", + "linked_friend_button_layout/spacer03": "ui/invite_screen.json", + "linked_friend_button_layout/platform_profile_names": "ui/invite_screen.json", + "linked_friend_button_layout/platform_profile_names/spacer_01": "ui/invite_screen.json", + "linked_friend_button_layout/platform_profile_names/friend_grid_third_party_tag": "ui/invite_screen.json", + "linked_friend_button_layout/platform_profile_names/spacer_02": "ui/invite_screen.json", + "linked_friend_button_layout/platform_profile_names/friend_grid_xbl_gamertag": "ui/invite_screen.json", + "linked_friend_button_layout/platform_profile_names/friend_grid_current_game_label": "ui/invite_screen.json", + "linked_friend_button_layout/online_indication_positioner": "ui/invite_screen.json", + "linked_friend_button_layout/online_indication_positioner/indicator_images": "ui/invite_screen.json", + "template_msa_friend_button_layout": "ui/invite_screen.json", + "template_msa_friend_button_layout/friend_background": "ui/invite_screen.json", + "template_msa_friend_button_layout/friend_button_layout": "ui/invite_screen.json", + "template_msa_friend_button_layout/unchecked": "ui/invite_screen.json", + "template_platform_friend_button_layout": "ui/invite_screen.json", + "template_platform_friend_button_layout/friend_background": "ui/invite_screen.json", + "template_platform_friend_button_layout/friend_button_layout": "ui/invite_screen.json", + "template_platform_friend_button_layout/unchecked": "ui/invite_screen.json", + "template_linked_friend_button_layout": "ui/invite_screen.json", + "template_linked_friend_button_layout/friend_background": "ui/invite_screen.json", + "template_linked_friend_button_layout/horizontal_spacer_panel": "ui/invite_screen.json", + "template_linked_friend_button_layout/horizontal_spacer_panel/unchecked_locked": "ui/invite_screen.json", + "template_linked_friend_button_layout/horizontal_spacer_panel/friend_button_layout": "ui/invite_screen.json", + "msa_friend_button": "ui/invite_screen.json", + "msa_friend_button/checked": "ui/invite_screen.json", + "msa_friend_button/unchecked": "ui/invite_screen.json", + "msa_friend_button/checked_hover": "ui/invite_screen.json", + "msa_friend_button/unchecked_hover": "ui/invite_screen.json", + "msa_friend_button/checked_locked": "ui/invite_screen.json", + "msa_friend_button/unchecked_locked": "ui/invite_screen.json", + "msa_friend_button/checked_locked_hover": "ui/invite_screen.json", + "msa_friend_button/unchecked_locked_hover": "ui/invite_screen.json", + "platform_friend_button": "ui/invite_screen.json", + "platform_friend_button/checked": "ui/invite_screen.json", + "platform_friend_button/unchecked": "ui/invite_screen.json", + "platform_friend_button/checked_hover": "ui/invite_screen.json", + "platform_friend_button/unchecked_hover": "ui/invite_screen.json", + "platform_friend_button/checked_locked": "ui/invite_screen.json", + "platform_friend_button/unchecked_locked": "ui/invite_screen.json", + "platform_friend_button/checked_locked_hover": "ui/invite_screen.json", + "platform_friend_button/unchecked_locked_hover": "ui/invite_screen.json", + "linked_friend_button": "ui/invite_screen.json", + "linked_friend_button/checked": "ui/invite_screen.json", + "linked_friend_button/unchecked": "ui/invite_screen.json", + "linked_friend_button/checked_hover": "ui/invite_screen.json", + "linked_friend_button/unchecked_hover": "ui/invite_screen.json", + "linked_friend_button/checked_locked": "ui/invite_screen.json", + "linked_friend_button/unchecked_locked": "ui/invite_screen.json", + "linked_friend_button/checked_locked_hover": "ui/invite_screen.json", + "linked_friend_button/unchecked_locked_hover": "ui/invite_screen.json", + "msa_friend_grid_item_template": "ui/invite_screen.json", + "msa_friend_grid_item_template/friend_button_Panel": "ui/invite_screen.json", + "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner": "ui/invite_screen.json", + "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner/pp": "ui/invite_screen.json", + "msa_friend_grid_item_template/friend_button_Panel/friend_button": "ui/invite_screen.json", + "msa_friend_grid_item_template/profile_button_pannel": "ui/invite_screen.json", + "msa_friend_grid_item_template/profile_button_pannel/view_profile_button": "ui/invite_screen.json", + "msa_friend_grid_item_template/spacer_03": "ui/invite_screen.json", + "platform_friend_grid_item_template": "ui/invite_screen.json", + "platform_friend_grid_item_template/friend_button": "ui/invite_screen.json", + "friend_linked_account_grid_item_template": "ui/invite_screen.json", + "friend_linked_account_grid_item_template/friend_button": "ui/invite_screen.json", + "online_xbox_live_friend_grid_item": "ui/invite_screen.json", + "offline_xbox_live_friend_grid_item": "ui/invite_screen.json", + "online_linked_account_friend_grid_item": "ui/invite_screen.json", + "offline_linked_account_friend_grid_item": "ui/invite_screen.json", + "online_platform_friend_grid_item": "ui/invite_screen.json", + "offline_platform_friend_grid_item": "ui/invite_screen.json", + "online_xbox_live_friend_list_grid": "ui/invite_screen.json", + "offline_xbox_live_friend_list_grid": "ui/invite_screen.json", + "online_platform_friend_list_grid": "ui/invite_screen.json", + "offline_platform_friend_list_grid": "ui/invite_screen.json", + "online_linked_account_friend_list_grid": "ui/invite_screen.json", + "offline_linked_account_friend_list_grid": "ui/invite_screen.json", + "friends_pagination_controls": "ui/invite_screen.json", + "friends_pagination_controls/previous_button": "ui/invite_screen.json", + "friends_pagination_controls/center_panel": "ui/invite_screen.json", + "friends_pagination_controls/center_panel/page_counter": "ui/invite_screen.json", + "friends_pagination_controls/next_button": "ui/invite_screen.json", + "friends_category": "ui/invite_screen.json", + "friends_category/friends_grid": "ui/invite_screen.json", + "friends_category/pagination_stack_panel": "ui/invite_screen.json", + "friends_category/pagination_stack_panel/padding_1": "ui/invite_screen.json", + "friends_category/pagination_stack_panel/pagination_controls": "ui/invite_screen.json", + "friends_category/pagination_stack_panel/padding_2": "ui/invite_screen.json", + "friends_category/pagination_stack_panel/divider": "ui/invite_screen.json", + "friends_category/padding": "ui/invite_screen.json", + "frame_label": "ui/invite_screen.json", + "friend_panel": "ui/invite_screen.json", + "scrolling_content_stack": "ui/invite_screen.json", + "scrolling_content_stack/message": "ui/invite_screen.json", + "scrolling_content_stack/message/frame_label": "ui/invite_screen.json", + "scrolling_content_stack/online_platform": "ui/invite_screen.json", + "scrolling_content_stack/online_platform/frame_label": "ui/invite_screen.json", + "scrolling_content_stack/vertical_padding_0": "ui/invite_screen.json", + "scrolling_content_stack/online_platform_friend_list_category": "ui/invite_screen.json", + "scrolling_content_stack/crossplatform_disabled_panel": "ui/invite_screen.json", + "scrolling_content_stack/crossplatform_disabled_panel/disable_text": "ui/invite_screen.json", + "scrolling_content_stack/crossplatform_disable_spacer": "ui/invite_screen.json", + "scrolling_content_stack/online_cross_platform": "ui/invite_screen.json", + "scrolling_content_stack/online_cross_platform/frame_label": "ui/invite_screen.json", + "scrolling_content_stack/vertical_padding_1": "ui/invite_screen.json", + "scrolling_content_stack/online_linked_account_friend_list_category": "ui/invite_screen.json", + "scrolling_content_stack/online_xbox_live_friend_list_category": "ui/invite_screen.json", + "scrolling_content_stack/offline_platform": "ui/invite_screen.json", + "scrolling_content_stack/offline_platform/frame_label": "ui/invite_screen.json", + "scrolling_content_stack/vertical_padding_2": "ui/invite_screen.json", + "scrolling_content_stack/offline_platform_friend_list_category": "ui/invite_screen.json", + "scrolling_content_stack/no_platform_friends": "ui/invite_screen.json", + "scrolling_content_stack/no_platform_friends/no_friends_tts_wrapper": "ui/invite_screen.json", + "scrolling_content_stack/offline_cross_platform": "ui/invite_screen.json", + "scrolling_content_stack/offline_cross_platform/frame_label": "ui/invite_screen.json", + "scrolling_content_stack/vertical_padding_3": "ui/invite_screen.json", + "scrolling_content_stack/offline_linked_account_friend_list_category": "ui/invite_screen.json", + "scrolling_content_stack/offline_xbox_live_friend_list_category": "ui/invite_screen.json", + "scrolling_content_stack/no_xbox_live_friends": "ui/invite_screen.json", + "scrolling_content_stack/no_xbox_live_friends/no_friends_tts_wrapper": "ui/invite_screen.json", + "progress_bar_and_scrolling_content_panel": "ui/invite_screen.json", + "progress_bar_and_scrolling_content_panel/progress_loading_bars": "ui/invite_screen.json", + "progress_bar_and_scrolling_content_panel/invite_scrolling_area": "ui/invite_screen.json", + "no_xbox_live_friends_frame_label": "ui/invite_screen.json", + "no_platform_friends_frame_label": "ui/invite_screen.json", + "horizontal_invite_panel": "ui/invite_screen.json", + "vertical_invite_panel": "ui/invite_screen.json", + "scrolling_area": "ui/invite_screen.json", + "invite_button_content": "ui/invite_screen.json", + "invite_button_content/gameplay_helper": "ui/invite_screen.json", + "invite_button_content/button_label": "ui/invite_screen.json", + "invite_button_content_hover": "ui/invite_screen.json", + "invite_button_content_pressed": "ui/invite_screen.json", + "invite_button_content_locked": "ui/invite_screen.json", + "add_friend_button": "ui/invite_screen.json", + "profile_button_content": "ui/invite_screen.json", + "profile_button_content/button_label": "ui/invite_screen.json", + "profile_button_content_hover": "ui/invite_screen.json", + "profile_button_content_pressed": "ui/invite_screen.json", + "profile_button_content_locked": "ui/invite_screen.json", + "add_member_button": "ui/invite_screen.json", + "send_button": "ui/invite_screen.json", + "profile_button": "ui/invite_screen.json", + "horizontal_button_stack_panel": "ui/invite_screen.json", + "horizontal_button_stack_panel/add_friend_button": "ui/invite_screen.json", + "horizontal_button_stack_panel/add_member_button": "ui/invite_screen.json", + "horizontal_button_stack_panel/padding": "ui/invite_screen.json", + "horizontal_button_stack_panel/send_button": "ui/invite_screen.json", + "vertical_buttons_top_panel": "ui/invite_screen.json", + "vertical_buttons_top_panel/add_friend_button": "ui/invite_screen.json", + "vertical_buttons_top_panel/add_member_button": "ui/invite_screen.json", + "vertical_buttons_bottom_panel": "ui/invite_screen.json", + "vertical_buttons_bottom_panel/send_button": "ui/invite_screen.json", + "gamepad_helpers": "ui/invite_screen.json", + "gamepad_helpers/gamepad_helper_a": "ui/invite_screen.json", + "invite_screen": "ui/invite_screen.json", + "invite_screen_content": "ui/invite_screen.json", + "invite_screen_content/gamepad_helpers": "ui/invite_screen.json", + "invite_screen_content/invite_panel": "ui/invite_screen.json", + }, + "jigsaw_editor": { + "horizontal_buffer": "ui/jigsaw_editor_screen.json", + "vertical_buffer": "ui/jigsaw_editor_screen.json", + "common_text_label": "ui/jigsaw_editor_screen.json", + "text_edit_box": "ui/jigsaw_editor_screen.json", + "help_icon": "ui/jigsaw_editor_screen.json", + "toggle_with_label": "ui/jigsaw_editor_screen.json", + "toggle_with_label/toggle": "ui/jigsaw_editor_screen.json", + "toggle_with_label/toggle_label_padding": "ui/jigsaw_editor_screen.json", + "toggle_with_label/toggle_label_wrapper": "ui/jigsaw_editor_screen.json", + "toggle_with_label/toggle_label_wrapper/toggle_label": "ui/jigsaw_editor_screen.json", + "toggle_with_label/toggle_label_wrapper/toggle_label_disabled": "ui/jigsaw_editor_screen.json", + "data_item_title_and_edit": "ui/jigsaw_editor_screen.json", + "data_item_title_and_edit/data_title": "ui/jigsaw_editor_screen.json", + "data_item_title_and_edit/data_text_edit": "ui/jigsaw_editor_screen.json", + "data_item_title_and_edit_fill": "ui/jigsaw_editor_screen.json", + "data_item_title_and_toggle": "ui/jigsaw_editor_screen.json", + "data_item_title_and_toggle/data_title": "ui/jigsaw_editor_screen.json", + "data_item_title_and_toggle/toggle": "ui/jigsaw_editor_screen.json", + "exit_buttons": "ui/jigsaw_editor_screen.json", + "exit_buttons/done_button": "ui/jigsaw_editor_screen.json", + "exit_buttons/buffer": "ui/jigsaw_editor_screen.json", + "exit_buttons/help_button": "ui/jigsaw_editor_screen.json", + "scrolling_panel_wrapper": "ui/jigsaw_editor_screen.json", + "scrolling_panel_wrapper/scrolling_panel": "ui/jigsaw_editor_screen.json", + "scrolling_panel": "ui/jigsaw_editor_screen.json", + "scroll_panel_content": "ui/jigsaw_editor_screen.json", + "scroll_panel_content/target_pool_title_and_edit": "ui/jigsaw_editor_screen.json", + "scroll_panel_content/buffer_1": "ui/jigsaw_editor_screen.json", + "scroll_panel_content/name_title_and_edit": "ui/jigsaw_editor_screen.json", + "scroll_panel_content/buffer_2": "ui/jigsaw_editor_screen.json", + "scroll_panel_content/target_title_and_edit": "ui/jigsaw_editor_screen.json", + "scroll_panel_content/buffer_3": "ui/jigsaw_editor_screen.json", + "scroll_panel_content/final_block_title_and_edit": "ui/jigsaw_editor_screen.json", + "scroll_panel_content/buffer_4": "ui/jigsaw_editor_screen.json", + "scroll_panel_content/selection_and_placement_priority": "ui/jigsaw_editor_screen.json", + "scroll_panel_content/buffer_5": "ui/jigsaw_editor_screen.json", + "scroll_panel_content/joint_type_title_and_toggle": "ui/jigsaw_editor_screen.json", + "scroll_panel_content/buffer_6": "ui/jigsaw_editor_screen.json", + "selection_and_placement_priority": "ui/jigsaw_editor_screen.json", + "selection_and_placement_priority/selection_priority_title_and_edit": "ui/jigsaw_editor_screen.json", + "selection_and_placement_priority/buffer_1": "ui/jigsaw_editor_screen.json", + "selection_and_placement_priority/placement_priority_title_and_edit": "ui/jigsaw_editor_screen.json", + "button_panel_wrapper": "ui/jigsaw_editor_screen.json", + "button_panel_wrapper/exit_buttons": "ui/jigsaw_editor_screen.json", + "jigsaw_editor_panel": "ui/jigsaw_editor_screen.json", + "jigsaw_editor_panel/scrolling_panel": "ui/jigsaw_editor_screen.json", + "jigsaw_editor_panel/button_wrapper": "ui/jigsaw_editor_screen.json", + "jigsaw_editor_panel/button_wrapper/buttons": "ui/jigsaw_editor_screen.json", + "jigsaw_editor_content": "ui/jigsaw_editor_screen.json", + "jigsaw_editor_content/background_panel": "ui/jigsaw_editor_screen.json", + "jigsaw_editor_content/title": "ui/jigsaw_editor_screen.json", + "jigsaw_editor_content/jigsaw_editor_panel": "ui/jigsaw_editor_screen.json", + "jigsaw_editor_screen": "ui/jigsaw_editor_screen.json", + }, + "late_join": { + "animation_panel": "ui/late_join_pregame_screen.json", + "animation_panel/stacked_column": "ui/late_join_pregame_screen.json", + "animation_panel/stacked_column/waiting_animating_text": "ui/late_join_pregame_screen.json", + "gamepad_helpers": "ui/late_join_pregame_screen.json", + "gamepad_helpers/gamepad_helper_b_and_padding": "ui/late_join_pregame_screen.json", + "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b": "ui/late_join_pregame_screen.json", + "late_join_pregame_screen": "ui/late_join_pregame_screen.json", + "late_join_screen_content": "ui/late_join_pregame_screen.json", + "late_join_screen_content/animation_panel": "ui/late_join_pregame_screen.json", + "late_join_screen_content/gamepad_helpers": "ui/late_join_pregame_screen.json", + }, + "library_modal": { + "modal_button": "ui/library_modal_screen.json", + "modal_text_content": "ui/library_modal_screen.json", + "modal_ok": "ui/library_modal_screen.json", + "modal_cancel": "ui/library_modal_screen.json", + "in_game_prompt": "ui/library_modal_screen.json", + "fetch_error": "ui/library_modal_screen.json", + "content": "ui/library_modal_screen.json", + "content/fetch": "ui/library_modal_screen.json", + "content/ingame": "ui/library_modal_screen.json", + "content_wrapper": "ui/library_modal_screen.json", + "content_wrapper/content": "ui/library_modal_screen.json", + "background": "ui/library_modal_screen.json", + "library_modal_screen": "ui/library_modal_screen.json", + "text_panel": "ui/library_modal_screen.json", + "edu_icon": "ui/library_modal_screen.json", + "continue_button": "ui/library_modal_screen.json", + "paragraph": "ui/library_modal_screen.json", + "welcome_text_panel": "ui/library_modal_screen.json", + "welcome_text_panel/padding_1": "ui/library_modal_screen.json", + "welcome_text_panel/paragraph_1_wrapper": "ui/library_modal_screen.json", + "welcome_text_panel/paragraph_1_wrapper/edu_icon": "ui/library_modal_screen.json", + "welcome_text_panel/paragraph_1_wrapper/stack_buffer1": "ui/library_modal_screen.json", + "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel": "ui/library_modal_screen.json", + "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel/paragraph_1": "ui/library_modal_screen.json", + "welcome_text_panel/padding_2": "ui/library_modal_screen.json", + "welcome_text_panel/paragraph_two": "ui/library_modal_screen.json", + "welcome_text_panel/padding_3": "ui/library_modal_screen.json", + "welcome_text_panel/paragraph_three": "ui/library_modal_screen.json", + "welcome_scrolling_panel": "ui/library_modal_screen.json", + "welcome_panel_content": "ui/library_modal_screen.json", + "welcome_panel_content/background_panel": "ui/library_modal_screen.json", + "welcome_panel_content/welcome_scrolling_panel": "ui/library_modal_screen.json", + "welcome_panel_content/continue_button": "ui/library_modal_screen.json", + "welcome_panel": "ui/library_modal_screen.json", + "welcome_panel/welcome": "ui/library_modal_screen.json", + }, + "local_world_picker": { + "local_world_picker_screen": "ui/local_world_picker_screen.json", + "local_world_picker_content": "ui/local_world_picker_screen.json", + "local_world_picker_content/background": "ui/local_world_picker_screen.json", + "local_world_picker_content/panel_label": "ui/local_world_picker_screen.json", + "local_world_picker_content/content": "ui/local_world_picker_screen.json", + }, + "loom": { + "loom_label": "ui/loom_screen.json", + "arrow_icon": "ui/loom_screen.json", + "pattern_cell_image": "ui/loom_screen.json", + "container_cell_image": "ui/loom_screen.json", + "banner_outline": "ui/loom_screen.json", + "item_empty_image": "ui/loom_screen.json", + "banner_empty_image": "ui/loom_screen.json", + "dye_empty_image": "ui/loom_screen.json", + "pattern_item_empty_image": "ui/loom_screen.json", + "toolbar_background": "ui/loom_screen.json", + "highlight_slot_panel": "ui/loom_screen.json", + "highlight_slot_panel/highlight": "ui/loom_screen.json", + "highlight_slot_panel/white_border": "ui/loom_screen.json", + "pattern_slot_button": "ui/loom_screen.json", + "pattern_slot_button/hover": "ui/loom_screen.json", + "banner_pattern": "ui/loom_screen.json", + "pattern_button": "ui/loom_screen.json", + "pattern_button/banner_pattern": "ui/loom_screen.json", + "pattern_button/item_button_ref": "ui/loom_screen.json", + "scroll_grid": "ui/loom_screen.json", + "scroll_grid_panel": "ui/loom_screen.json", + "scroll_grid_panel/grid": "ui/loom_screen.json", + "scroll_panel": "ui/loom_screen.json", + "pattern_book_panel": "ui/loom_screen.json", + "pattern_book_panel/bg": "ui/loom_screen.json", + "pattern_book_panel/scroll_panel": "ui/loom_screen.json", + "result_slot_button": "ui/loom_screen.json", + "input_item_slot": "ui/loom_screen.json", + "dye_item_slot": "ui/loom_screen.json", + "material_item_slot": "ui/loom_screen.json", + "result_item_slot": "ui/loom_screen.json", + "input_slots_stack_panel": "ui/loom_screen.json", + "input_slots_stack_panel/input_item_slot": "ui/loom_screen.json", + "input_slots_stack_panel/padding_1": "ui/loom_screen.json", + "input_slots_stack_panel/dye_item_slot": "ui/loom_screen.json", + "input_slots_stack_panel/padding_2": "ui/loom_screen.json", + "input_slots_stack_panel/material_item_slot": "ui/loom_screen.json", + "result_banner_renderer": "ui/loom_screen.json", + "top_half_stack_panel": "ui/loom_screen.json", + "top_half_stack_panel/input_slots_holder": "ui/loom_screen.json", + "top_half_stack_panel/input_slots_holder/input_slots_stack_panel": "ui/loom_screen.json", + "top_half_stack_panel/padding_1": "ui/loom_screen.json", + "top_half_stack_panel/arrow_holder": "ui/loom_screen.json", + "top_half_stack_panel/arrow_holder/arrow_icon": "ui/loom_screen.json", + "top_half_stack_panel/padding_2": "ui/loom_screen.json", + "top_half_stack_panel/result_item_slot_holder": "ui/loom_screen.json", + "top_half_stack_panel/result_item_slot_holder/result_item_slot": "ui/loom_screen.json", + "top_half_stack_panel/padding_3": "ui/loom_screen.json", + "top_half_stack_panel/result_banner_outline": "ui/loom_screen.json", + "top_half_stack_panel/result_banner_outline/result_banner_renderer": "ui/loom_screen.json", + "top_half_panel": "ui/loom_screen.json", + "top_half_panel/top_half_stack_panel": "ui/loom_screen.json", + "right_panel": "ui/loom_screen.json", + "right_panel/common_panel": "ui/loom_screen.json", + "right_panel/loom_screen_inventory": "ui/loom_screen.json", + "right_panel/loom_screen_inventory/loom_label": "ui/loom_screen.json", + "right_panel/loom_screen_inventory/top_half_panel": "ui/loom_screen.json", + "right_panel/loom_screen_inventory/inventory_panel_bottom_half_with_label": "ui/loom_screen.json", + "right_panel/loom_screen_inventory/hotbar_grid": "ui/loom_screen.json", + "help_button": "ui/loom_screen.json", + "toolbar_panel": "ui/loom_screen.json", + "toolbar_panel/toolbar_background": "ui/loom_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel": "ui/loom_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": "ui/loom_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": "ui/loom_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": "ui/loom_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": "ui/loom_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": "ui/loom_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": "ui/loom_screen.json", + "toolbar_anchor": "ui/loom_screen.json", + "toolbar_anchor/toolbar_panel": "ui/loom_screen.json", + "center_fold": "ui/loom_screen.json", + "center_fold/center_bg": "ui/loom_screen.json", + "screen_stack_panel": "ui/loom_screen.json", + "screen_stack_panel/pattern_book_panel": "ui/loom_screen.json", + "screen_stack_panel/center_fold": "ui/loom_screen.json", + "screen_stack_panel/right_panel": "ui/loom_screen.json", + "screen_stack_panel/toolbar_anchor": "ui/loom_screen.json", + "loom_panel": "ui/loom_screen.json", + "loom_panel/screen_stack_panel": "ui/loom_screen.json", + "loom_panel/container_gamepad_helpers": "ui/loom_screen.json", + "loom_panel/selected_item_details_factory": "ui/loom_screen.json", + "loom_panel/item_lock_notification_factory": "ui/loom_screen.json", + "loom_panel/inventory_selected_icon_button": "ui/loom_screen.json", + "loom_panel/inventory_take_progress_icon_button": "ui/loom_screen.json", + "loom_panel/flying_item_renderer": "ui/loom_screen.json", + "loom_screen": "ui/loom_screen.json", + }, + "loom_pocket": { + "vertical_arrow_icon": "ui/loom_screen_pocket.json", + "banner_empty_image": "ui/loom_screen_pocket.json", + "dye_empty_image": "ui/loom_screen_pocket.json", + "pattern_item_empty_image": "ui/loom_screen_pocket.json", + "chest_item_renderer": "ui/loom_screen_pocket.json", + "banner_item_renderer": "ui/loom_screen_pocket.json", + "loom_item_renderer": "ui/loom_screen_pocket.json", + "input_item_slot": "ui/loom_screen_pocket.json", + "dye_item_slot": "ui/loom_screen_pocket.json", + "material_item_slot": "ui/loom_screen_pocket.json", + "result_item_slot": "ui/loom_screen_pocket.json", + "right_panel": "ui/loom_screen_pocket.json", + "right_panel/content": "ui/loom_screen_pocket.json", + "right_panel/content/bg": "ui/loom_screen_pocket.json", + "right_panel/content/loom_content_stack_panel": "ui/loom_screen_pocket.json", + "right_panel/navigation_tabs_holder": "ui/loom_screen_pocket.json", + "right_panel/navigation_tabs_holder/right_navigation_tabs": "ui/loom_screen_pocket.json", + "right_tab_loom": "ui/loom_screen_pocket.json", + "right_navigation_tabs": "ui/loom_screen_pocket.json", + "right_navigation_tabs/pocket_tab_close_and_help_button": "ui/loom_screen_pocket.json", + "right_navigation_tabs/fill": "ui/loom_screen_pocket.json", + "right_navigation_tabs/right_tab_loom": "ui/loom_screen_pocket.json", + "input_slots_stack_panel": "ui/loom_screen_pocket.json", + "input_slots_stack_panel/input_item_slot": "ui/loom_screen_pocket.json", + "input_slots_stack_panel/padding_1": "ui/loom_screen_pocket.json", + "input_slots_stack_panel/dye_item_slot": "ui/loom_screen_pocket.json", + "input_slots_stack_panel/padding_2": "ui/loom_screen_pocket.json", + "input_slots_stack_panel/material_item_slot": "ui/loom_screen_pocket.json", + "result_banner_outline": "ui/loom_screen_pocket.json", + "result_banner_outline/result_banner_renderer": "ui/loom_screen_pocket.json", + "loom_content_stack_panel": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/label_holder": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/label_holder/loom_label": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/padding_1": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/input_slots_holder": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/input_slots_holder/input_slots_stack_panel": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/padding_2": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/banner_pattern_holder": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/banner_pattern_holder/result_banner_outline": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/padding_3": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/arrow_holder": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/arrow_holder/vertical_arrow_icon": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/padding_4": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/result_item_slot_holder": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/result_item_slot_holder/result_item_slot": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/padding_5": "ui/loom_screen_pocket.json", + "inventory_scroll_panel": "ui/loom_screen_pocket.json", + "pattern_button": "ui/loom_screen_pocket.json", + "banner_pattern": "ui/loom_screen_pocket.json", + "pattern_scroll_panel": "ui/loom_screen_pocket.json", + "left_panel": "ui/loom_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder": "ui/loom_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": "ui/loom_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": "ui/loom_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": "ui/loom_screen_pocket.json", + "left_panel/content": "ui/loom_screen_pocket.json", + "left_panel/content/bg": "ui/loom_screen_pocket.json", + "left_panel/content/inventory_scroll_panel": "ui/loom_screen_pocket.json", + "left_panel/content/pattern_scroll_panel": "ui/loom_screen_pocket.json", + "left_tab_patterns": "ui/loom_screen_pocket.json", + "left_tab_inventory": "ui/loom_screen_pocket.json", + "left_navigation_tabs": "ui/loom_screen_pocket.json", + "left_navigation_tabs/left_tab_patterns": "ui/loom_screen_pocket.json", + "left_navigation_tabs/padding": "ui/loom_screen_pocket.json", + "left_navigation_tabs/left_tab_inventory": "ui/loom_screen_pocket.json", + "pocket_hotbar_and_content_panels": "ui/loom_screen_pocket.json", + "loom_panel": "ui/loom_screen_pocket.json", + "loom_panel/pocket_hotbar_and_content_panels": "ui/loom_screen_pocket.json", + "loom_panel/container_gamepad_helpers": "ui/loom_screen_pocket.json", + "loom_panel/selected_item_details_factory": "ui/loom_screen_pocket.json", + "loom_panel/item_lock_notification_factory": "ui/loom_screen_pocket.json", + "loom_panel/inventory_selected_icon_button": "ui/loom_screen_pocket.json", + "loom_panel/inventory_take_progress_icon_button": "ui/loom_screen_pocket.json", + "loom_panel/flying_item_renderer": "ui/loom_screen_pocket.json", + }, + "manage_feed": { + "manage_feed_item_scrolling_panel": "ui/manage_feed_screen.json", + "manage_feed_item_scrolling_panel/manage_feed_item_scrolling_panel_content": "ui/manage_feed_screen.json", + "manage_feed_item_scrolling_panel_content": "ui/manage_feed_screen.json", + "grid_panel": "ui/manage_feed_screen.json", + "grid_panel/top_spacing_gap": "ui/manage_feed_screen.json", + "grid_panel/manage_feed_loading_grid_item": "ui/manage_feed_screen.json", + "grid_panel/manage_feed_grid": "ui/manage_feed_screen.json", + "grid_panel/spacing_gap2": "ui/manage_feed_screen.json", + "grid_panel/pagination_panel": "ui/manage_feed_screen.json", + "pagination_panel": "ui/manage_feed_screen.json", + "manage_feed_grid": "ui/manage_feed_screen.json", + "manage_feed_grid_item": "ui/manage_feed_screen.json", + "manage_feed_grid_item/image_panel_instance": "ui/manage_feed_screen.json", + "manage_feed_grid_item/manage_feed_buttons_panel": "ui/manage_feed_screen.json", + "manage_feed_grid_item/manage_feed_text_instance": "ui/manage_feed_screen.json", + "manage_feed_grid_item/feed_timesince_instance": "ui/manage_feed_screen.json", + "manage_feed_grid_item/nr_of_reports": "ui/manage_feed_screen.json", + "manage_feed_grid_item/manage_player_pic_panel": "ui/manage_feed_screen.json", + "manage_feed_grid_item/manage_feed_gamertag_instance": "ui/manage_feed_screen.json", + "manage_feed_buttons_panel": "ui/manage_feed_screen.json", + "manage_feed_buttons_panel/ignore_button": "ui/manage_feed_screen.json", + "manage_feed_buttons_panel/delete_button": "ui/manage_feed_screen.json", + "manage_feed_loading_grid_item": "ui/manage_feed_screen.json", + "manage_feed_loading_grid_item/loading_image_panel": "ui/manage_feed_screen.json", + "feed_buttons_panel_loading": "ui/manage_feed_screen.json", + "feed_buttons_panel_loading/like_button_loading": "ui/manage_feed_screen.json", + "feed_buttons_panel_loading/spacing_gap1": "ui/manage_feed_screen.json", + "feed_buttons_panel_loading/comment_button_loading": "ui/manage_feed_screen.json", + "feed_buttons_panel_loading/spacing_gap2": "ui/manage_feed_screen.json", + "feed_buttons_panel_loading/options_button_loading": "ui/manage_feed_screen.json", + "like_button_loading": "ui/manage_feed_screen.json", + "comment_button_loading": "ui/manage_feed_screen.json", + "options_button_loading": "ui/manage_feed_screen.json", + "player_pic_panel_loading": "ui/manage_feed_screen.json", + "player_pic_panel_loading/player_gamer_pic_loading": "ui/manage_feed_screen.json", + "player_gamer_pic_loading": "ui/manage_feed_screen.json", + "loading_image_panel": "ui/manage_feed_screen.json", + "loading_image_panel/progress_loading_bars": "ui/manage_feed_screen.json", + "loading_image_panel/manage_feed_image_loading": "ui/manage_feed_screen.json", + "loading_image_panel/no_feed_item_content": "ui/manage_feed_screen.json", + "manage_feed_image_loading": "ui/manage_feed_screen.json", + "ignore_button": "ui/manage_feed_screen.json", + "ignore_content_panel": "ui/manage_feed_screen.json", + "ignore_content_panel/ignore_label": "ui/manage_feed_screen.json", + "delete_button": "ui/manage_feed_screen.json", + "delete_content_panel": "ui/manage_feed_screen.json", + "delete_content_panel/delete_label": "ui/manage_feed_screen.json", + "manage_feed_image": "ui/manage_feed_screen.json", + "manage_feed_image_content_panel": "ui/manage_feed_screen.json", + "manage_feed_image_content_panel/manage_feed_image": "ui/manage_feed_screen.json", + "manage_feed_image_content_panel/textpost_content": "ui/manage_feed_screen.json", + "textpost_content": "ui/manage_feed_screen.json", + "image_panel": "ui/manage_feed_screen.json", + "image_panel/manage_feed_image_content_panel": "ui/manage_feed_screen.json", + "manage_player_pic_panel": "ui/manage_feed_screen.json", + "manage_player_pic_panel/manage_player_gamer_pic": "ui/manage_feed_screen.json", + "manage_player_gamer_pic": "ui/manage_feed_screen.json", + "content": "ui/manage_feed_screen.json", + "content/top_bar_gradient": "ui/manage_feed_screen.json", + "content/gamepad_helpers": "ui/manage_feed_screen.json", + "content/return_button": "ui/manage_feed_screen.json", + "content/reported_items_label": "ui/manage_feed_screen.json", + "content/manage_feed_item_scrolling_panel_instance": "ui/manage_feed_screen.json", + "manage_feed_screen": "ui/manage_feed_screen.json", + "manage_feed_screen_content": "ui/manage_feed_screen.json", + "manage_feed_screen_content/transparent_background": "ui/manage_feed_screen.json", + "manage_feed_screen_content/container": "ui/manage_feed_screen.json", + "manage_feed_screen_content/container/content": "ui/manage_feed_screen.json", + }, + "manifest_validation": { + "clipboard_icon": "ui/manifest_validation_screen.json", + "clipboard_icon_wrapper": "ui/manifest_validation_screen.json", + "clipboard_icon_wrapper/icon": "ui/manifest_validation_screen.json", + "trash_icon": "ui/manifest_validation_screen.json", + "trash_icon_wrapper": "ui/manifest_validation_screen.json", + "trash_icon_wrapper/icon": "ui/manifest_validation_screen.json", + "trash_icon_wrapper/progress_loading_bars": "ui/manifest_validation_screen.json", + "refresh_icon": "ui/manifest_validation_screen.json", + "refresh_icon_wrapper": "ui/manifest_validation_screen.json", + "refresh_icon_wrapper/icon": "ui/manifest_validation_screen.json", + "refresh_icon_wrapper/progress_loading_bars": "ui/manifest_validation_screen.json", + "section_divider": "ui/manifest_validation_screen.json", + "section_divider/divider_image": "ui/manifest_validation_screen.json", + "text_label": "ui/manifest_validation_screen.json", + "icon_image": "ui/manifest_validation_screen.json", + "progress_loading_bars": "ui/manifest_validation_screen.json", + "background": "ui/manifest_validation_screen.json", + "black_background_fill": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background/icon": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/title": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/padding": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/pack_size": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/description": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/padding": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/top_pad": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh/button": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/pad": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete/button": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/pad": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_0": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/title_text": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/space": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset/title": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_0": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_1": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/version_text": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/space": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset/version": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_1": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_2": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/path_text": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/space": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset/description": "ui/manifest_validation_screen.json", + "error_pack_content_layout": "ui/manifest_validation_screen.json", + "error_pack_content_layout/black": "ui/manifest_validation_screen.json", + "error_pack_content_layout/black/error_panel": "ui/manifest_validation_screen.json", + "error_pack_content_layout/black/error_panel/error_header_panel": "ui/manifest_validation_screen.json", + "error_pack_content_layout/black/error_panel/error_header_panel/error_type_panel": "ui/manifest_validation_screen.json", + "error_pack_content_layout/black/error_panel/error_header_panel/button": "ui/manifest_validation_screen.json", + "error_pack_content_layout/black/error_panel/padding_0": "ui/manifest_validation_screen.json", + "error_pack_content_layout/black/error_panel/error_text_panel": "ui/manifest_validation_screen.json", + "error_pack_content_layout/black/error_panel/error_text_panel/error_text": "ui/manifest_validation_screen.json", + "error_pack_content_layout/black/error_panel/error_text_panel/space": "ui/manifest_validation_screen.json", + "error_pack_content_layout/black/error_panel/error_text_panel/offset": "ui/manifest_validation_screen.json", + "error_pack_content_layout/black/error_panel/error_text_panel/offset/error_label": "ui/manifest_validation_screen.json", + "delete_button": "ui/manifest_validation_screen.json", + "delete_text_button": "ui/manifest_validation_screen.json", + "clipboard_button": "ui/manifest_validation_screen.json", + "refresh_button": "ui/manifest_validation_screen.json", + "refresh_text_button": "ui/manifest_validation_screen.json", + "pack_secondary_info": "ui/manifest_validation_screen.json", + "pack_secondary_info/layout": "ui/manifest_validation_screen.json", + "error_content_grid": "ui/manifest_validation_screen.json", + "pack_error_item": "ui/manifest_validation_screen.json", + "pack_error_item/secondary": "ui/manifest_validation_screen.json", + "pack_error_item/error_header": "ui/manifest_validation_screen.json", + "pack_error_item/error_header/error_text": "ui/manifest_validation_screen.json", + "pack_error_item/error": "ui/manifest_validation_screen.json", + "pack_error_group": "ui/manifest_validation_screen.json", + "pack_error_group/top_padding": "ui/manifest_validation_screen.json", + "pack_error_group/errors": "ui/manifest_validation_screen.json", + "pack_error_group/padding": "ui/manifest_validation_screen.json", + "common_scrolling_panel": "ui/manifest_validation_screen.json", + "common_content": "ui/manifest_validation_screen.json", + "scrolling_offsets": "ui/manifest_validation_screen.json", + "manifest_validation_scroll_content": "ui/manifest_validation_screen.json", + "manifest_validation_scroll_content/scrolling_panel": "ui/manifest_validation_screen.json", + "common_scroll_panel": "ui/manifest_validation_screen.json", + "manifest_validation_scroll_panel": "ui/manifest_validation_screen.json", + "manifest_validation_scroll_panel/pack_error_group": "ui/manifest_validation_screen.json", + "manifest_validation_screen": "ui/manifest_validation_screen.json", + "manifest_validation_screen_content": "ui/manifest_validation_screen.json", + "manifest_validation_screen_content/background": "ui/manifest_validation_screen.json", + }, + "sdl_label": { + "sdl_label_factory": "ui/marketplace_sdl/sdl_label.json", + "sdl_label": "ui/marketplace_sdl/sdl_label.json", + "sdl_mc_ten_label": "ui/marketplace_sdl/sdl_label.json", + }, + "sdl_dropdowns": { + "sdl_dropdown_rows": "ui/marketplace_sdl/sdl_dropdowns.json", + "sdl_dropdown_rows/container_panel": "ui/marketplace_sdl/sdl_dropdowns.json", + "sdl_dropdown_rows/container_panel/toggle": "ui/marketplace_sdl/sdl_dropdowns.json", + "sdl_dropdown_rows/container_panel/pad": "ui/marketplace_sdl/sdl_dropdowns.json", + "sdl_rows_toggle": "ui/marketplace_sdl/sdl_dropdowns.json", + }, + "sdl_image_row": { + "image_row_factory": "ui/marketplace_sdl/sdl_image_row.json", + "buffer_panel": "ui/marketplace_sdl/sdl_image_row.json", + "single_image": "ui/marketplace_sdl/sdl_image_row.json", + "single_image/image_with_border": "ui/marketplace_sdl/sdl_image_row.json", + "single_image/image_with_border/screenshot_image": "ui/marketplace_sdl/sdl_image_row.json", + "single_image/image_with_border/dark_border": "ui/marketplace_sdl/sdl_image_row.json", + "single_image/image_with_border/progress_loading": "ui/marketplace_sdl/sdl_image_row.json", + "single_image/image_selector": "ui/marketplace_sdl/sdl_image_row.json", + "double_image": "ui/marketplace_sdl/sdl_image_row.json", + "triple_image_with_buffer": "ui/marketplace_sdl/sdl_image_row.json", + "triple_image_with_buffer/buffer_panel_in_1": "ui/marketplace_sdl/sdl_image_row.json", + "triple_image_with_buffer/buffer_panel_in_2": "ui/marketplace_sdl/sdl_image_row.json", + "triple_image_with_buffer/triple_image": "ui/marketplace_sdl/sdl_image_row.json", + "triple_image_with_buffer/buffer_panel_out_1": "ui/marketplace_sdl/sdl_image_row.json", + "triple_image_with_buffer/buffer_panel_out_2": "ui/marketplace_sdl/sdl_image_row.json", + }, + "sdl_text_row": { + "sdl_text_row_factory": "ui/marketplace_sdl/sdl_text_row.json", + "sdl_header_component_factory": "ui/marketplace_sdl/sdl_text_row.json", + "label_button": "ui/marketplace_sdl/sdl_text_row.json", + "sdl_header_component_panel": "ui/marketplace_sdl/sdl_text_row.json", + "sdl_header_component_panel/header_background": "ui/marketplace_sdl/sdl_text_row.json", + "sdl_header_component_panel/header_internals": "ui/marketplace_sdl/sdl_text_row.json", + "sdl_header_component_panel/header_highlight": "ui/marketplace_sdl/sdl_text_row.json", + "sdl_header_component_panel/text_row_header_text": "ui/marketplace_sdl/sdl_text_row.json", + "sdl_text_row_component_panel": "ui/marketplace_sdl/sdl_text_row.json", + "sdl_text_row_component_panel/text_background": "ui/marketplace_sdl/sdl_text_row.json", + "sdl_text_row_component_panel/text_row_selector": "ui/marketplace_sdl/sdl_text_row.json", + "sdl_text_row_component_panel/text_row_background": "ui/marketplace_sdl/sdl_text_row.json", + "sdl_text_row_component_panel/text_row_component_text": "ui/marketplace_sdl/sdl_text_row.json", + "solo_text_row": "ui/marketplace_sdl/sdl_text_row.json", + "solo_text_row/buffer_panel_front": "ui/marketplace_sdl/sdl_text_row.json", + "solo_text_row/headercomp_and_textcomp_panel": "ui/marketplace_sdl/sdl_text_row.json", + "solo_text_row/headercomp_and_textcomp_panel/text_row_header_text_panel": "ui/marketplace_sdl/sdl_text_row.json", + "solo_text_row/headercomp_and_textcomp_panel/text_row_text_panel": "ui/marketplace_sdl/sdl_text_row.json", + "solo_text_row/buffer_panel_back": "ui/marketplace_sdl/sdl_text_row.json", + }, + "mob_effect": { + "effect_background": "ui/mob_effect_screen.json", + "main_background": "ui/mob_effect_screen.json", + "button_background": "ui/mob_effect_screen.json", + "effect_name": "ui/mob_effect_screen.json", + "effect_timer": "ui/mob_effect_screen.json", + "effect_icon": "ui/mob_effect_screen.json", + "mob_effect_grid_panel": "ui/mob_effect_screen.json", + "mob_effect_grid_panel/mob_effect_grid": "ui/mob_effect_screen.json", + "mob_effect_grid": "ui/mob_effect_screen.json", + "mob_effect_grid_item": "ui/mob_effect_screen.json", + "mob_effect_grid_item/bg": "ui/mob_effect_screen.json", + "mob_effect_grid_item/name": "ui/mob_effect_screen.json", + "mob_effect_grid_item/timer": "ui/mob_effect_screen.json", + "mob_effect_grid_item/icon": "ui/mob_effect_screen.json", + "mob_effect_list_content_panel": "ui/mob_effect_screen.json", + "mob_effect_list_content_panel/scrolling_panel": "ui/mob_effect_screen.json", + "mob_effect_screen_close_button": "ui/mob_effect_screen.json", + "close_button_panel": "ui/mob_effect_screen.json", + "close_button_panel/bg": "ui/mob_effect_screen.json", + "close_button_panel/close_button": "ui/mob_effect_screen.json", + "mob_effect_content": "ui/mob_effect_screen.json", + "mob_effect_content/bg": "ui/mob_effect_screen.json", + "mob_effect_content/close_panel": "ui/mob_effect_screen.json", + "mob_effect_content/content_panel": "ui/mob_effect_screen.json", + "main_screen": "ui/mob_effect_screen.json", + "main_screen/main_screen": "ui/mob_effect_screen.json", + "mob_effect_screen": "ui/mob_effect_screen.json", + }, + "non_xbl_user_management": { + "black_tint_image": "ui/non_xbl_user_management_screen.json", + "modal_title_text": "ui/non_xbl_user_management_screen.json", + "modal_label_text": "ui/non_xbl_user_management_screen.json", + "modal_label_text/padding": "ui/non_xbl_user_management_screen.json", + "modal_label_text/text": "ui/non_xbl_user_management_screen.json", + "modal_label_panel": "ui/non_xbl_user_management_screen.json", + "modal_left_button": "ui/non_xbl_user_management_screen.json", + "modal_middle_button": "ui/non_xbl_user_management_screen.json", + "modal_rightcancel_button": "ui/non_xbl_user_management_screen.json", + "three_buttons_panel": "ui/non_xbl_user_management_screen.json", + "three_buttons_panel/left": "ui/non_xbl_user_management_screen.json", + "three_buttons_panel/middle": "ui/non_xbl_user_management_screen.json", + "three_buttons_panel/right": "ui/non_xbl_user_management_screen.json", + "two_buttons_panel": "ui/non_xbl_user_management_screen.json", + "two_buttons_panel/left": "ui/non_xbl_user_management_screen.json", + "two_buttons_panel/right": "ui/non_xbl_user_management_screen.json", + "single_button_panel": "ui/non_xbl_user_management_screen.json", + "single_button_panel/left": "ui/non_xbl_user_management_screen.json", + "modal_dialog_with_buttons": "ui/non_xbl_user_management_screen.json", + "modal_dialog_with_buttons/background_with_buttons": "ui/non_xbl_user_management_screen.json", + "modal_dialog_with_buttons/title": "ui/non_xbl_user_management_screen.json", + "modal_dialog_with_buttons/text_with_buttons": "ui/non_xbl_user_management_screen.json", + "modal_dialog_with_buttons/button_panel": "ui/non_xbl_user_management_screen.json", + "modal_input_panel": "ui/non_xbl_user_management_screen.json", + "modal_input_panel/black_tint_image": "ui/non_xbl_user_management_screen.json", + "user_confirm_dialog_screen_content": "ui/non_xbl_user_management_screen.json", + "user_confirm_dialog_screen_content/modal_input": "ui/non_xbl_user_management_screen.json", + "user_confirm_dialog_screen_content/modal_input/modal_bg_buttons": "ui/non_xbl_user_management_screen.json", + "user_confirm_dialog_screen": "ui/non_xbl_user_management_screen.json", + }, + "npc_interact": { + "multiline_text_edit_control": "ui/npc_interact_screen.json", + "text_edit_control": "ui/npc_interact_screen.json", + "label_padding": "ui/npc_interact_screen.json", + "main_stack_panel": "ui/npc_interact_screen.json", + "skin_button": "ui/npc_interact_screen.json", + "skin_model": "ui/npc_interact_screen.json", + "skin_model_clipper": "ui/npc_interact_screen.json", + "skins_grid_item": "ui/npc_interact_screen.json", + "skins_grid_item/clip": "ui/npc_interact_screen.json", + "skins_grid_item/clip/model": "ui/npc_interact_screen.json", + "skins_grid_item/button": "ui/npc_interact_screen.json", + "skins_grid_item/selectFrame": "ui/npc_interact_screen.json", + "skins_grid": "ui/npc_interact_screen.json", + "cycle_pack_button": "ui/npc_interact_screen.json", + "cycle_pack_left_button": "ui/npc_interact_screen.json", + "cycle_pack_right_button": "ui/npc_interact_screen.json", + "banner_fill": "ui/npc_interact_screen.json", + "skin_picker": "ui/npc_interact_screen.json", + "skin_picker/left": "ui/npc_interact_screen.json", + "skin_picker/sg": "ui/npc_interact_screen.json", + "skin_picker/right": "ui/npc_interact_screen.json", + "name_edit": "ui/npc_interact_screen.json", + "advanced_button": "ui/npc_interact_screen.json", + "advanced_button/button": "ui/npc_interact_screen.json", + "dialog_button": "ui/npc_interact_screen.json", + "dialog_button/button": "ui/npc_interact_screen.json", + "basic_stack_panel": "ui/npc_interact_screen.json", + "basic_stack_panel/top_pad": "ui/npc_interact_screen.json", + "basic_stack_panel/name_label": "ui/npc_interact_screen.json", + "basic_stack_panel/name_padding": "ui/npc_interact_screen.json", + "basic_stack_panel/name_edit": "ui/npc_interact_screen.json", + "basic_stack_panel/dialog_pre_padding": "ui/npc_interact_screen.json", + "basic_stack_panel/dialog_label": "ui/npc_interact_screen.json", + "basic_stack_panel/dialog_post_padding": "ui/npc_interact_screen.json", + "basic_stack_panel/dialog__padding": "ui/npc_interact_screen.json", + "basic_stack_panel/dialog_button": "ui/npc_interact_screen.json", + "basic_stack_panel/appearance_pre_padding": "ui/npc_interact_screen.json", + "basic_stack_panel/appearance_label": "ui/npc_interact_screen.json", + "basic_stack_panel/appearance_post_padding": "ui/npc_interact_screen.json", + "basic_stack_panel/skins": "ui/npc_interact_screen.json", + "basic_stack_panel/advanced_button": "ui/npc_interact_screen.json", + "basic_content": "ui/npc_interact_screen.json", + "basic_content/basic": "ui/npc_interact_screen.json", + "advanced_stack_panel": "ui/npc_interact_screen.json", + "advanced_stack_panel/top_pad": "ui/npc_interact_screen.json", + "advanced_stack_panel/add_help_text": "ui/npc_interact_screen.json", + "advanced_stack_panel/middle_pad": "ui/npc_interact_screen.json", + "advanced_stack_panel/actions": "ui/npc_interact_screen.json", + "advanced_stack_panel/add_buttons": "ui/npc_interact_screen.json", + "advanced_stack_panel/bottom_pad": "ui/npc_interact_screen.json", + "action_title": "ui/npc_interact_screen.json", + "plus_icon": "ui/npc_interact_screen.json", + "plus_button": "ui/npc_interact_screen.json", + "action_text_edit": "ui/npc_interact_screen.json", + "maximized_action_edit": "ui/npc_interact_screen.json", + "action_edit": "ui/npc_interact_screen.json", + "action_edit/text_edit": "ui/npc_interact_screen.json", + "action_edit/expand": "ui/npc_interact_screen.json", + "button_name_edit": "ui/npc_interact_screen.json", + "command_toggle": "ui/npc_interact_screen.json", + "command_toggle_panel": "ui/npc_interact_screen.json", + "command_toggle_panel/command_toggle": "ui/npc_interact_screen.json", + "command_toggle_panel/toggle_label": "ui/npc_interact_screen.json", + "action_mode": "ui/npc_interact_screen.json", + "action_mode/button_mode_toggle_panel": "ui/npc_interact_screen.json", + "action_mode/on_enter_toggle_panel": "ui/npc_interact_screen.json", + "action_mode/on_exit_toggle_panel": "ui/npc_interact_screen.json", + "button_name_label": "ui/npc_interact_screen.json", + "url_notifications": "ui/npc_interact_screen.json", + "url_notifications/empty_uri_warning": "ui/npc_interact_screen.json", + "url_notifications/invalid_uri_warning": "ui/npc_interact_screen.json", + "action_template": "ui/npc_interact_screen.json", + "action_template/title": "ui/npc_interact_screen.json", + "action_template/label_pad": "ui/npc_interact_screen.json", + "action_template/edit": "ui/npc_interact_screen.json", + "action_template/edit_pad": "ui/npc_interact_screen.json", + "action_template/url_warning": "ui/npc_interact_screen.json", + "action_template/url_pad": "ui/npc_interact_screen.json", + "action_template/action_mode": "ui/npc_interact_screen.json", + "action_template/mode_pad": "ui/npc_interact_screen.json", + "action_template/button_name_label": "ui/npc_interact_screen.json", + "action_template/button_name": "ui/npc_interact_screen.json", + "action_command": "ui/npc_interact_screen.json", + "action_url": "ui/npc_interact_screen.json", + "padded_action": "ui/npc_interact_screen.json", + "padded_action/action": "ui/npc_interact_screen.json", + "padded_action/padding": "ui/npc_interact_screen.json", + "action": "ui/npc_interact_screen.json", + "action/trash": "ui/npc_interact_screen.json", + "action/command": "ui/npc_interact_screen.json", + "action/url": "ui/npc_interact_screen.json", + "action_panel": "ui/npc_interact_screen.json", + "add_button": "ui/npc_interact_screen.json", + "help_label": "ui/npc_interact_screen.json", + "add_help_section": "ui/npc_interact_screen.json", + "add_help_section/text_url": "ui/npc_interact_screen.json", + "add_help_section/text_url/tts_border": "ui/npc_interact_screen.json", + "add_help_section/text_url/wrapper_panel_url": "ui/npc_interact_screen.json", + "add_help_section/text_url/wrapper_panel_url/text_url_a": "ui/npc_interact_screen.json", + "add_help_section/text_url/wrapper_panel_url/padding": "ui/npc_interact_screen.json", + "add_help_section/text_url/wrapper_panel_url/text_url_b": "ui/npc_interact_screen.json", + "add_help_section/padding": "ui/npc_interact_screen.json", + "add_help_section/text_command": "ui/npc_interact_screen.json", + "add_help_section/text_command/tts_border": "ui/npc_interact_screen.json", + "add_help_section/text_command/wrapper_panel_command": "ui/npc_interact_screen.json", + "add_help_section/text_command/wrapper_panel_command/text_command_a": "ui/npc_interact_screen.json", + "add_help_section/text_command/wrapper_panel_command/padding": "ui/npc_interact_screen.json", + "add_help_section/text_command/wrapper_panel_command/text_command_b": "ui/npc_interact_screen.json", + "add_help_text": "ui/npc_interact_screen.json", + "add_buttons": "ui/npc_interact_screen.json", + "add_buttons/add_url": "ui/npc_interact_screen.json", + "add_buttons/padding": "ui/npc_interact_screen.json", + "add_buttons/add_command": "ui/npc_interact_screen.json", + "advanced_scrolling_panel": "ui/npc_interact_screen.json", + "advanced_scrolling_content": "ui/npc_interact_screen.json", + "advanced_scrolling_content/advanced": "ui/npc_interact_screen.json", + "message_model": "ui/npc_interact_screen.json", + "message_model/model": "ui/npc_interact_screen.json", + "clipped_message_model": "ui/npc_interact_screen.json", + "clipped_message_model/model": "ui/npc_interact_screen.json", + "message_model_window": "ui/npc_interact_screen.json", + "message_model_window/model": "ui/npc_interact_screen.json", + "message_model_window/immersive_reader_button": "ui/npc_interact_screen.json", + "edit_box_background": "ui/npc_interact_screen.json", + "npc_message": "ui/npc_interact_screen.json", + "npc_message/label": "ui/npc_interact_screen.json", + "npc_message/visibility_panel": "ui/npc_interact_screen.json", + "npc_message/visibility_panel/place_holder": "ui/npc_interact_screen.json", + "npc_message/background": "ui/npc_interact_screen.json", + "text_scroll": "ui/npc_interact_screen.json", + "student_message_bubble": "ui/npc_interact_screen.json", + "student_message_bubble/dialog_panel": "ui/npc_interact_screen.json", + "student_message_bubble/dialog_panel/text_scroll": "ui/npc_interact_screen.json", + "bubble_point": "ui/npc_interact_screen.json", + "student_message_section": "ui/npc_interact_screen.json", + "student_message_section/model": "ui/npc_interact_screen.json", + "student_message_section/point": "ui/npc_interact_screen.json", + "student_message_section/message": "ui/npc_interact_screen.json", + "student_button_label": "ui/npc_interact_screen.json", + "student_button_label_panel": "ui/npc_interact_screen.json", + "student_button_label_panel/url": "ui/npc_interact_screen.json", + "student_button_label_panel/command": "ui/npc_interact_screen.json", + "student_button": "ui/npc_interact_screen.json", + "student_button/button": "ui/npc_interact_screen.json", + "student_buttons": "ui/npc_interact_screen.json", + "student_buttons/buttons": "ui/npc_interact_screen.json", + "student_buttons/buttons/actions": "ui/npc_interact_screen.json", + "student_stack_panel": "ui/npc_interact_screen.json", + "student_stack_panel/top_pad": "ui/npc_interact_screen.json", + "student_stack_panel/message": "ui/npc_interact_screen.json", + "student_stack_panel/message_pad": "ui/npc_interact_screen.json", + "student_stack_panel/buttons": "ui/npc_interact_screen.json", + "student_view_content": "ui/npc_interact_screen.json", + "student_view_content/student": "ui/npc_interact_screen.json", + "student_view_content/close": "ui/npc_interact_screen.json", + "close_button_base": "ui/npc_interact_screen.json", + "close_button_base/default": "ui/npc_interact_screen.json", + "close_button_base/hover": "ui/npc_interact_screen.json", + "close_button_base/pressed": "ui/npc_interact_screen.json", + "x_close_button": "ui/npc_interact_screen.json", + "ignorable_x_close_button": "ui/npc_interact_screen.json", + "ignorable_x_close_button/button": "ui/npc_interact_screen.json", + "close_button_holder": "ui/npc_interact_screen.json", + "close_button_holder/close_basic": "ui/npc_interact_screen.json", + "close_button_holder/close_student_edit": "ui/npc_interact_screen.json", + "close_button_holder/close_student": "ui/npc_interact_screen.json", + "close_button_holder/close_maximized_action_edit": "ui/npc_interact_screen.json", + "close_button_holder/close_advanced": "ui/npc_interact_screen.json", + "main_content": "ui/npc_interact_screen.json", + "main_content/basic": "ui/npc_interact_screen.json", + "main_content/advanced": "ui/npc_interact_screen.json", + "main_content/maximized_action_edit": "ui/npc_interact_screen.json", + "main_content/close": "ui/npc_interact_screen.json", + "root_panel": "ui/npc_interact_screen.json", + "gamepad_helper_exit_text": "ui/npc_interact_screen.json", + "close_text": "ui/npc_interact_screen.json", + "npc_screen_contents": "ui/npc_interact_screen.json", + "npc_screen_contents/teacher": "ui/npc_interact_screen.json", + "npc_screen_contents/student": "ui/npc_interact_screen.json", + "npc_screen_contents/npc_screen_close": "ui/npc_interact_screen.json", + "npc_screen": "ui/npc_interact_screen.json", + }, + "online_safety": { + "online_safety_proceed_button": "ui/online_safety_screen.json", + "online_safety_back_button": "ui/online_safety_screen.json", + "online_safety_description": "ui/online_safety_screen.json", + "ip_safety_description": "ui/online_safety_screen.json", + "online_safety_label_panel": "ui/online_safety_screen.json", + "ip_safety_label_panel": "ui/online_safety_screen.json", + "do_not_show_checkbox": "ui/online_safety_screen.json", + "do_not_show_checkbox/header_description_stack_panel": "ui/online_safety_screen.json", + "do_not_show_checkbox/header_description_stack_panel/checkbox_visuals": "ui/online_safety_screen.json", + "do_not_show_checkbox/header_description_stack_panel/buffer_panel": "ui/online_safety_screen.json", + "do_not_show_checkbox/header_description_stack_panel/buffer_panel/label": "ui/online_safety_screen.json", + "do_not_show_checkbox/header_description_stack_panel/another_panel": "ui/online_safety_screen.json", + "online_safety_dialog": "ui/online_safety_screen.json", + "ip_safety_dialog": "ui/online_safety_screen.json", + "gamepad_helpers": "ui/online_safety_screen.json", + "gamepad_helpers/gamepad_helper_a": "ui/online_safety_screen.json", + "online_safety_screen": "ui/online_safety_screen.json", + "online_safety_screen_content": "ui/online_safety_screen.json", + "online_safety_screen_content/online_safety_dialog": "ui/online_safety_screen.json", + "online_safety_screen_content/gamepad_helpers": "ui/online_safety_screen.json", + "ip_safety_screen": "ui/online_safety_screen.json", + "ip_safety_screen_content": "ui/online_safety_screen.json", + "ip_safety_screen_content/ip_safety_dialog": "ui/online_safety_screen.json", + "ip_safety_screen_content/gamepad_helpers": "ui/online_safety_screen.json", + }, + "pack_settings": { + "background": "ui/pack_settings_screen.json", + "screen": "ui/pack_settings_screen.json", + "main_screen_content": "ui/pack_settings_screen.json", + "pack_scroll_panel": "ui/pack_settings_screen.json", + "scrolling_content": "ui/pack_settings_screen.json", + "scrolling_content/content_tiering_panel": "ui/pack_settings_screen.json", + "scrolling_content/generated_form": "ui/pack_settings_screen.json", + "content_tiering_panel": "ui/pack_settings_screen.json", + "content_tiering_panel/label_panel": "ui/pack_settings_screen.json", + "content_tiering_panel/label_panel/content_tier_label": "ui/pack_settings_screen.json", + "content_tiering_panel/label_panel/unsupported_content_tier_label": "ui/pack_settings_screen.json", + "content_tiering_panel/slider_panel": "ui/pack_settings_screen.json", + "content_tiering_panel/slider_panel/content_tier_slider": "ui/pack_settings_screen.json", + "content_tiering_panel/incompatible_label_panel": "ui/pack_settings_screen.json", + "content_tiering_panel/incompatible_label_panel/label": "ui/pack_settings_screen.json", + }, + "panorama": { + "panorama_view": "ui/panorama_screen.json", + "panorama_view/pan_left": "ui/panorama_screen.json", + "panorama_view/screenshot": "ui/panorama_screen.json", + "panorama_view/pan_right": "ui/panorama_screen.json", + "panorama_input_panel": "ui/panorama_screen.json", + "panorama_input_panel/image_border": "ui/panorama_screen.json", + "panorama_input_panel/image_border/panorama_key_art": "ui/panorama_screen.json", + "panorama_input_panel/image_border/progress_loading": "ui/panorama_screen.json", + "pan_left_button": "ui/panorama_screen.json", + "pan_right_button": "ui/panorama_screen.json", + }, + "patch_notes": { + "solid_texture": "ui/patch_notes_screen.json", + "image_with_background": "ui/patch_notes_screen.json", + "image_with_background/image": "ui/patch_notes_screen.json", + "image_with_background/image/loading_animation": "ui/patch_notes_screen.json", + "white_image": "ui/patch_notes_screen.json", + "patch_main_image": "ui/patch_notes_screen.json", + "store_image": "ui/patch_notes_screen.json", + "patch_notes_header_background": "ui/patch_notes_screen.json", + "patch_notes_header_background/black_background": "ui/patch_notes_screen.json", + "patch_notes_header_background/black_background/content": "ui/patch_notes_screen.json", + "button_label_panel": "ui/patch_notes_screen.json", + "button_label_panel/text_label": "ui/patch_notes_screen.json", + "button_content": "ui/patch_notes_screen.json", + "button_content/button_label2": "ui/patch_notes_screen.json", + "patch_image": "ui/patch_notes_screen.json", + "patch_notes_header_content_without_offer": "ui/patch_notes_screen.json", + "patch_notes_header_content_without_offer/patch_image": "ui/patch_notes_screen.json", + "patch_notes_header_content_with_offer": "ui/patch_notes_screen.json", + "patch_notes_header_content_with_offer/patch_image": "ui/patch_notes_screen.json", + "patch_notes_header_content_with_offer/padding": "ui/patch_notes_screen.json", + "patch_notes_header_content_with_offer/store_item_section": "ui/patch_notes_screen.json", + "patch_notes_header_content_with_offer/store_item_section/store_image": "ui/patch_notes_screen.json", + "patch_notes_header_content_with_offer/store_item_section/padding": "ui/patch_notes_screen.json", + "patch_notes_header_content_with_offer/store_item_section/store_button": "ui/patch_notes_screen.json", + "store_button": "ui/patch_notes_screen.json", + "store_button/store_button": "ui/patch_notes_screen.json", + "store_button/loading_animation": "ui/patch_notes_screen.json", + "patch_notes_header": "ui/patch_notes_screen.json", + "patch_notes_header/patch_notes_background": "ui/patch_notes_screen.json", + "scroll_content": "ui/patch_notes_screen.json", + "scroll_content/padding_0": "ui/patch_notes_screen.json", + "scroll_content/patch_notes_header": "ui/patch_notes_screen.json", + "scroll_content/padding_1": "ui/patch_notes_screen.json", + "scroll_content/tts_label_wrapper": "ui/patch_notes_screen.json", + "patch_notes_panel": "ui/patch_notes_screen.json", + "patch_notes_panel/patch_notes_text": "ui/patch_notes_screen.json", + "patch_notes_panel/patch_notes_text/loading_animation": "ui/patch_notes_screen.json", + "patch_notes_content": "ui/patch_notes_screen.json", + "patch_notes_content/scrolling_panel": "ui/patch_notes_screen.json", + "continue_button": "ui/patch_notes_screen.json", + "patch_notes_dialog": "ui/patch_notes_screen.json", + "patch_notes_screen": "ui/patch_notes_screen.json", + "sunsetting_button_panel": "ui/patch_notes_screen.json", + "sunsetting_button_panel/padding_0": "ui/patch_notes_screen.json", + "sunsetting_button_panel/more_info_button": "ui/patch_notes_screen.json", + "sunsetting_button_panel/padding_1": "ui/patch_notes_screen.json", + "sunsetting_button_panel/continue_button": "ui/patch_notes_screen.json", + "sunsetting_button_panel/padding_2": "ui/patch_notes_screen.json", + "sunsetting_button_panel/sunsetting_toggle_panel": "ui/patch_notes_screen.json", + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel": "ui/patch_notes_screen.json", + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/checkbox_visuals": "ui/patch_notes_screen.json", + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel": "ui/patch_notes_screen.json", + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel/label": "ui/patch_notes_screen.json", + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/another_panel": "ui/patch_notes_screen.json", + "sunsetting_content": "ui/patch_notes_screen.json", + "sunsetting_content/scrolling_panel": "ui/patch_notes_screen.json", + "sunsetting_dialog": "ui/patch_notes_screen.json", + "sunsetting_screen": "ui/patch_notes_screen.json", + }, + "pause": { + "pause_icon": "ui/pause_screen.json", + "feedback_icon": "ui/pause_screen.json", + "change_skin_icon": "ui/pause_screen.json", + "take_screenshot_icon": "ui/pause_screen.json", + "settings_icon": "ui/pause_screen.json", + "achievements_icon": "ui/pause_screen.json", + "alex_icon": "ui/pause_screen.json", + "profile_gamerpic": "ui/pause_screen.json", + "button_x": "ui/pause_screen.json", + "dressing_room_controller_button_content": "ui/pause_screen.json", + "dressing_room_controller_button_content/button_x": "ui/pause_screen.json", + "dressing_room_controller_button_content/button_label_panel": "ui/pause_screen.json", + "dressing_room_controller_button_content/button_label_panel/button_label_text_left": "ui/pause_screen.json", + "controller_button_label": "ui/pause_screen.json", + "column_frame": "ui/pause_screen.json", + "dressing_room_button_gamepad": "ui/pause_screen.json", + "dressing_room_button": "ui/pause_screen.json", + "profile_button_content": "ui/pause_screen.json", + "profile_button_content/button_offset_wrapper": "ui/pause_screen.json", + "profile_button_content/button_offset_wrapper/button_x": "ui/pause_screen.json", + "profile_button_content/gamerpic_offset_wrapper": "ui/pause_screen.json", + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border": "ui/pause_screen.json", + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic": "ui/pause_screen.json", + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon": "ui/pause_screen.json", + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black": "ui/pause_screen.json", + "profile_button_content/padding_middle": "ui/pause_screen.json", + "profile_button_content/vertically_central_text": "ui/pause_screen.json", + "profile_button_content/vertically_central_text/top_padding": "ui/pause_screen.json", + "profile_button_content/vertically_central_text/profile_button_label": "ui/pause_screen.json", + "profile_button_content/padding_right": "ui/pause_screen.json", + "profile_button": "ui/pause_screen.json", + "skin_viewer_panel": "ui/pause_screen.json", + "skin_viewer_panel/paper_doll_panel": "ui/pause_screen.json", + "skin_viewer_panel/paper_doll_panel/paper_doll": "ui/pause_screen.json", + "skin_viewer_panel/paper_doll_name_tag": "ui/pause_screen.json", + "skin_panel": "ui/pause_screen.json", + "skin_panel/interior": "ui/pause_screen.json", + "skin_panel_interior": "ui/pause_screen.json", + "skin_panel_interior/offset_panel": "ui/pause_screen.json", + "skin_panel_interior/offset_panel/viewer_panel": "ui/pause_screen.json", + "skin_panel_interior/fill_1": "ui/pause_screen.json", + "skin_panel_interior/change_profile_panel": "ui/pause_screen.json", + "skin_panel_interior/change_profile_panel/centering_panel_1": "ui/pause_screen.json", + "skin_panel_interior/change_profile_panel/centering_panel_1/dressing_room_button": "ui/pause_screen.json", + "skin_panel_interior/change_profile_panel/centering_panel_2": "ui/pause_screen.json", + "skin_panel_interior/change_profile_panel/centering_panel_2/dressing_room_button_gamepad": "ui/pause_screen.json", + "skin_panel_interior/change_profile_panel/centering_panel_3": "ui/pause_screen.json", + "skin_panel_interior/change_profile_panel/centering_panel_3/profile_button": "ui/pause_screen.json", + "pause_button_template": "ui/pause_screen.json", + "grid_button_template": "ui/pause_screen.json", + "return_to_game_button": "ui/pause_screen.json", + "realms_stories_button_panel": "ui/pause_screen.json", + "realms_stories_button_panel/realms_stories_button": "ui/pause_screen.json", + "realms_stories_button_panel/unread_story_count_panel": "ui/pause_screen.json", + "realms_stories_button": "ui/pause_screen.json", + "unread_story_count_panel": "ui/pause_screen.json", + "unread_story_count_panel/text": "ui/pause_screen.json", + "unread_story_count_panel/text/background": "ui/pause_screen.json", + "store_button_panel": "ui/pause_screen.json", + "store_button_panel/store_button": "ui/pause_screen.json", + "store_button_panel/store_error_button": "ui/pause_screen.json", + "store_button": "ui/pause_screen.json", + "store_error_button": "ui/pause_screen.json", + "store_error_button_content": "ui/pause_screen.json", + "store_error_button_content/marketplace_button_label": "ui/pause_screen.json", + "settings_button": "ui/pause_screen.json", + "how_to_play_button": "ui/pause_screen.json", + "invite_players_button": "ui/pause_screen.json", + "buy_button": "ui/pause_screen.json", + "quit_button": "ui/pause_screen.json", + "feedback_button": "ui/pause_screen.json", + "feedback_icon_button": "ui/pause_screen.json", + "feedback_icon_button/feedback_button": "ui/pause_screen.json", + "take_screenshot_gamepad_button_content": "ui/pause_screen.json", + "take_screenshot_gamepad_button_content/button_y": "ui/pause_screen.json", + "take_screenshot_gamepad_button_content/take_screenshot_icon": "ui/pause_screen.json", + "take_screenshot_gamepad_button": "ui/pause_screen.json", + "achievements_button_small": "ui/pause_screen.json", + "settings_button_small": "ui/pause_screen.json", + "take_screenshot_button": "ui/pause_screen.json", + "pause_screen": "ui/pause_screen.json", + "pause_screen_content": "ui/pause_screen.json", + "pause_screen_content/pause_screen_main_panels": "ui/pause_screen.json", + "pause_screen_content/skin_panel": "ui/pause_screen.json", + "pause_screen_content/friendsdrawer_button_panel": "ui/pause_screen.json", + "pause_screen_content/gamepad_helpers": "ui/pause_screen.json", + "pause_screen_content/keyboard_helpers": "ui/pause_screen.json", + "friendsdrawer_button_panel": "ui/pause_screen.json", + "friendsdrawer_button_panel/friendsdrawer_container_stack_panel": "ui/pause_screen.json", + "friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friendsdrawer_button": "ui/pause_screen.json", + "friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friends_drawer_ftue_popup": "ui/pause_screen.json", + "pause_screen_main_panels": "ui/pause_screen.json", + "pause_screen_main_panels/menu": "ui/pause_screen.json", + "left_buttons_panel": "ui/pause_screen.json", + "left_buttons_panel/filler": "ui/pause_screen.json", + "left_buttons_panel/trialTime": "ui/pause_screen.json", + "left_buttons_panel/the_rest_panel": "ui/pause_screen.json", + "smaller_buttons_panel": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column/fill_1": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column/side_padding": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column/small_settings_button": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column/small_settings_button/small_settings_btn": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column/small_settings_padding": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column/small_achievements_button": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column/small_achievements_button/small_achievements_btn": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column/small_achievements_padding": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column/take_screenshot_btn": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_button": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_gamepad_button": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column/screenshot_padding": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column/fill_3": "ui/pause_screen.json", + "smaller_buttons_panel/padding_bottom": "ui/pause_screen.json", + "social_buttons_panel": "ui/pause_screen.json", + "social_buttons_panel/friendsbutton_panel": "ui/pause_screen.json", + "social_buttons_panel/friendsbutton_panel/friendsdrawer_button": "ui/pause_screen.json", + "social_buttons_panel/friendsbutton_panel/friends_drawer__ftue_popup": "ui/pause_screen.json", + "social_buttons_panel/invitebutton_panel": "ui/pause_screen.json", + "social_buttons_panel/invitebutton_panel/invite_button": "ui/pause_screen.json", + "social_buttons_panel/invitebutton_panel/vertical_padding_2": "ui/pause_screen.json", + "the_rest_panel": "ui/pause_screen.json", + "the_rest_panel/fill_1": "ui/pause_screen.json", + "the_rest_panel/pause_menu": "ui/pause_screen.json", + "the_rest_panel/fill_3": "ui/pause_screen.json", + "paused_text": "ui/pause_screen.json", + "green_tag": "ui/pause_screen.json", + "paused_text_panel": "ui/pause_screen.json", + "paused_text_panel/pause": "ui/pause_screen.json", + "paused_text_panel/horizontal_stack": "ui/pause_screen.json", + "paused_text_panel/horizontal_stack/pause_icon": "ui/pause_screen.json", + "paused_text_panel/horizontal_stack/fill_1": "ui/pause_screen.json", + "paused_text_panel/horizontal_stack/pause": "ui/pause_screen.json", + "transparent_background": "ui/pause_screen.json", + "non_transparent_background": "ui/pause_screen.json", + "menu_the_rest_panel": "ui/pause_screen.json", + "menu_the_rest_panel/menu_button_control": "ui/pause_screen.json", + "menu_button_control": "ui/pause_screen.json", + "menu_button_control/menu_background": "ui/pause_screen.json", + "pause_announcement_panel_type": "ui/pause_screen.json", + "pause_announcement_panel_type/horizontal_stack": "ui/pause_screen.json", + "pause_announcement_panel_type/horizontal_stack/fill_1": "ui/pause_screen.json", + "pause_announcement_panel_type/horizontal_stack/pause_text": "ui/pause_screen.json", + "pause_announcement_panel_type/horizontal_stack/fill_2": "ui/pause_screen.json", + "menu_background": "ui/pause_screen.json", + "menu_background/button_panel": "ui/pause_screen.json", + "menu_background/button_panel/title_image": "ui/pause_screen.json", + "menu_background/button_panel/title_image/image": "ui/pause_screen.json", + "menu_background/button_panel/fill_1": "ui/pause_screen.json", + "menu_background/button_panel/return_to_game_button": "ui/pause_screen.json", + "menu_background/button_panel/return": "ui/pause_screen.json", + "menu_background/button_panel/realms_stories_button_panel": "ui/pause_screen.json", + "menu_background/button_panel/realms_stories": "ui/pause_screen.json", + "menu_background/button_panel/buy_button": "ui/pause_screen.json", + "menu_background/button_panel/buy": "ui/pause_screen.json", + "menu_background/button_panel/store_button_panel": "ui/pause_screen.json", + "menu_background/button_panel/store_button_panel_padding": "ui/pause_screen.json", + "menu_background/button_panel/quit_button": "ui/pause_screen.json", + "menu_background/button_panel/smaller_buttons": "ui/pause_screen.json", + "menu_background/button_panel/pause_panel": "ui/pause_screen.json", + "info_panel_content_list": "ui/pause_screen.json", + "info_panel_content_list/player_list_scrolling_panel": "ui/pause_screen.json", + "info_panel_content_list/vertical_padding": "ui/pause_screen.json", + "info_panel_background": "ui/pause_screen.json", + "info_panel": "ui/pause_screen.json", + "info_panel/info_panel_background": "ui/pause_screen.json", + "info_panel/info_panel_list": "ui/pause_screen.json", + "player_panel_background": "ui/pause_screen.json", + "player_panel_background/player_list_scrolling_panel": "ui/pause_screen.json", + "player_list": "ui/pause_screen.json", + "player_list/vertical_padding_0": "ui/pause_screen.json", + "player_list/social_buttons_panel": "ui/pause_screen.json", + "player_list/players_label": "ui/pause_screen.json", + "player_list/vertical_padding_4": "ui/pause_screen.json", + "player_list/players_grid_panel": "ui/pause_screen.json", + "player_list/vertical_padding_5": "ui/pause_screen.json", + "player_list/invite_players_button_panel": "ui/pause_screen.json", + "player_list/vertical_padding_6": "ui/pause_screen.json", + "player_list/disconnected_from_multiplayer_label_panel": "ui/pause_screen.json", + "player_list/vertical_padding_7": "ui/pause_screen.json", + "player_lists": "ui/pause_screen.json", + "player_lists/normal_list": "ui/pause_screen.json", + "player_lists/scoreboard_list": "ui/pause_screen.json", + "player_list_scrolling_panel": "ui/pause_screen.json", + "disconnected_label": "ui/pause_screen.json", + "disconnected_from_multiplayer_label_panel": "ui/pause_screen.json", + "disconnected_from_multiplayer_label_panel/disconnected_from_xbox_live_label": "ui/pause_screen.json", + "disconnected_from_multiplayer_label_panel/disconnected_from_third_party_label": "ui/pause_screen.json", + "disconnected_from_multiplayer_label_panel/disconnected_from_adhoc_label": "ui/pause_screen.json", + "disconnected_from_multiplayer_label_panel/disconnected_from_crossplatform_multiplayer": "ui/pause_screen.json", + "disconnected_from_multiplayer_label_panel/disconnected_from_multiplayer": "ui/pause_screen.json", + "invite_players_button_panel": "ui/pause_screen.json", + "invite_players_button_panel/invite_players_button": "ui/pause_screen.json", + "ip_label": "ui/pause_screen.json", + "players_label": "ui/pause_screen.json", + "players_grid": "ui/pause_screen.json", + "player_grid_item": "ui/pause_screen.json", + "player_grid_item/player_grid_item_content": "ui/pause_screen.json", + "player_grid_item_content": "ui/pause_screen.json", + "player_grid_item_content/player_button_panel": "ui/pause_screen.json", + "player_grid_item_content/player_button_panel/player_button_banner": "ui/pause_screen.json", + "player_grid_item_content/player_button_panel/player_button_banner/player_button": "ui/pause_screen.json", + "player_grid_item_content/player_button_panel/player_button_banner/player_banner": "ui/pause_screen.json", + "player_grid_item_content/player_button_panel/player_permission_button_padding": "ui/pause_screen.json", + "player_grid_item_content/player_permission_button_panel": "ui/pause_screen.json", + "player_grid_item_content/player_permission_button_panel/player_permission_button": "ui/pause_screen.json", + "player_permission_button": "ui/pause_screen.json", + "player_permission_button_content": "ui/pause_screen.json", + "player_permission_button_content/permission_icon_image": "ui/pause_screen.json", + "vertical_padding": "ui/pause_screen.json", + "horizontal_padding": "ui/pause_screen.json", + "player_button_content": "ui/pause_screen.json", + "player_button_content/player_pic_panel": "ui/pause_screen.json", + "player_button_content/player_gamertag": "ui/pause_screen.json", + "player_button_content/platform_icon": "ui/pause_screen.json", + "player_button": "ui/pause_screen.json", + "player_banner": "ui/pause_screen.json", + "player_pic_panel": "ui/pause_screen.json", + "player_pic_panel/player_gamer_pic": "ui/pause_screen.json", + "player_pic_panel/player_local_icon": "ui/pause_screen.json", + "player_local_icon": "ui/pause_screen.json", + "player_gamer_pic": "ui/pause_screen.json", + "player_gamer_pic/player_panel_black_border": "ui/pause_screen.json", + "gametag_wrapper": "ui/pause_screen.json", + "gametag_wrapper/gamertag": "ui/pause_screen.json", + "platform_icon_panel": "ui/pause_screen.json", + "platform_icon_panel/platform_icon": "ui/pause_screen.json", + "player_gamertag": "ui/pause_screen.json", + "platform_icon": "ui/pause_screen.json", + "player_grid_banner_no_focus": "ui/pause_screen.json", + "player_grid_banner": "ui/pause_screen.json", + "player_grid_banner/player_grid_banner_no_focus": "ui/pause_screen.json", + "player_grid_banner/player_grid_banner_no_focus/player_button_content": "ui/pause_screen.json", + "player_grid_banner/focus_border_button": "ui/pause_screen.json", + "focus_border_button": "ui/pause_screen.json", + "focus_border_button/default": "ui/pause_screen.json", + "focus_border_button/hover": "ui/pause_screen.json", + "focus_border_button/pressed": "ui/pause_screen.json", + "focus_border": "ui/pause_screen.json", + "pause_screen_border": "ui/pause_screen.json", + "filler_panel": "ui/pause_screen.json", + "gamepad_helpers": "ui/pause_screen.json", + "gamepad_helpers/gamepad_helper_y": "ui/pause_screen.json", + "keyboard_helpers": "ui/pause_screen.json", + "keyboard_helpers/keyboard_helper_keys": "ui/pause_screen.json", + }, + "pdp": { + "download_progress": "ui/pdp_screen.json", + "download_progress/stacker": "ui/pdp_screen.json", + "download_progress/stacker/sizer_text": "ui/pdp_screen.json", + "download_progress/stacker/sizer_text/download_progress_text": "ui/pdp_screen.json", + "download_progress/stacker/sizer_bar": "ui/pdp_screen.json", + "download_progress/stacker/sizer_bar/download_progress_bar": "ui/pdp_screen.json", + "summary_box_button_panel": "ui/pdp_screen.json", + "summary_box_button_panel/buttons_panel": "ui/pdp_screen.json", + "summary_box_button_panel/download_buttons_panel": "ui/pdp_screen.json", + "summary_box_button_panel/focus_border": "ui/pdp_screen.json", + "interaction_button_content": "ui/pdp_screen.json", + "interaction_button_content/line1_panel": "ui/pdp_screen.json", + "interaction_button_content/line1_panel/upsell_text": "ui/pdp_screen.json", + "interaction_button_panel": "ui/pdp_screen.json", + "interaction_button_panel/content_action_button": "ui/pdp_screen.json", + "interaction_button_panel/progress_bar": "ui/pdp_screen.json", + "interaction_button_panel/focus_border": "ui/pdp_screen.json", + "download_progress_small": "ui/pdp_screen.json", + "download_progress_small/stacker": "ui/pdp_screen.json", + "download_progress_small/stacker/sizer_text": "ui/pdp_screen.json", + "download_progress_small/stacker/sizer_text/download_progress_text": "ui/pdp_screen.json", + "download_progress_small/stacker/sizer_bar": "ui/pdp_screen.json", + "download_progress_small/stacker/sizer_bar/download_progress_bar": "ui/pdp_screen.json", + "progress_loading_anim": "ui/pdp_screen.json", + "focus_border": "ui/pdp_screen.json", + "focus_border/default": "ui/pdp_screen.json", + "focus_border/default/loading_anim": "ui/pdp_screen.json", + "focus_border/hover": "ui/pdp_screen.json", + "focus_border/hover/loading_anim": "ui/pdp_screen.json", + "focus_border/pressed": "ui/pdp_screen.json", + "focus_border/pressed/loading_anim": "ui/pdp_screen.json", + "purchase_button_base": "ui/pdp_screen.json", + "deactivated_purchase_button_base": "ui/pdp_screen.json", + "download_buttons_panel": "ui/pdp_screen.json", + "download_buttons_panel/progress_panel": "ui/pdp_screen.json", + "download_buttons_panel/progress_panel/progress_bar": "ui/pdp_screen.json", + "smooth_purchase_buttons_panel": "ui/pdp_screen.json", + "smooth_purchase_buttons_panel/activated_purchase_buttons_panel": "ui/pdp_screen.json", + "smooth_purchase_buttons_panel/deactivated_purchase_buttons_panel": "ui/pdp_screen.json", + "smooth_buttons_panel": "ui/pdp_screen.json", + "smooth_buttons_panel/purchase_buttons_panel": "ui/pdp_screen.json", + "smooth_buttons_panel/interact_filling_button": "ui/pdp_screen.json", + "smooth_buttons_panel/interact_exit_world_filling_button": "ui/pdp_screen.json", + "disabled_interact_label_formfitting": "ui/pdp_screen.json", + "disabled_interact_label_formfitting/info_icon": "ui/pdp_screen.json", + "disabled_interact_label_formfitting/info_icon_pad": "ui/pdp_screen.json", + "disabled_interact_label_formfitting/interact_label_panel": "ui/pdp_screen.json", + "disabled_interact_label_formfitting/interact_label_panel/interact_label_text_left": "ui/pdp_screen.json", + "disabled_interact_label_formfitting/pad": "ui/pdp_screen.json", + "interact_label_text": "ui/pdp_screen.json", + "activated_smooth_purchase_buttons_panel": "ui/pdp_screen.json", + "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel": "ui/pdp_screen.json", + "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel/smooth_purchase_with_coins_button": "ui/pdp_screen.json", + "activated_smooth_purchase_buttons_panel/pad_h1": "ui/pdp_screen.json", + "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel": "ui/pdp_screen.json", + "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel/purchase_with_currency_button": "ui/pdp_screen.json", + "deactivated_purchase_hover_popup": "ui/pdp_screen.json", + "deactivated_smooth_purchase_buttons_panel": "ui/pdp_screen.json", + "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button": "ui/pdp_screen.json", + "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/deactivated_purchase_hover_popup": "ui/pdp_screen.json", + "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/content": "ui/pdp_screen.json", + "deactivated_smooth_purchase_buttons_panel/pad_h1": "ui/pdp_screen.json", + "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel": "ui/pdp_screen.json", + "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel/deactivated_purchase_with_currency_button": "ui/pdp_screen.json", + "smooth_save_share_button_panel": "ui/pdp_screen.json", + "smooth_save_share_button_panel/pad_0": "ui/pdp_screen.json", + "smooth_save_share_button_panel/share_button": "ui/pdp_screen.json", + "smooth_save_share_button_panel/pad_1": "ui/pdp_screen.json", + "smooth_save_share_button_panel/save_button": "ui/pdp_screen.json", + "currency_purchase_label": "ui/pdp_screen.json", + "currency_purchase_label/currency_purchase_label_text": "ui/pdp_screen.json", + "coin_image": "ui/pdp_screen.json", + "smooth_currency_purchase_label": "ui/pdp_screen.json", + "smooth_currency_purchase_label/currency_purchase_label_text": "ui/pdp_screen.json", + "discount_label": "ui/pdp_screen.json", + "discount_label/label_panel": "ui/pdp_screen.json", + "discount_label/label_panel/label": "ui/pdp_screen.json", + "discount_label/icon_panel": "ui/pdp_screen.json", + "discount_label/icon_panel/icon": "ui/pdp_screen.json", + "coin_purchase_label_text": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/markdown_panel": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/fill_pad_left": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/pad": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/fill_pad_right": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/markdown_panel": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/fill_pad_left": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel/info_bulb": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/info_icon_pad": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/pad": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/fill_pad_right": "ui/pdp_screen.json", + "share_icon": "ui/pdp_screen.json", + "share_label": "ui/pdp_screen.json", + "share_label/share_image_offset_panel": "ui/pdp_screen.json", + "share_label/share_image_offset_panel/link_share": "ui/pdp_screen.json", + "save_label_panel": "ui/pdp_screen.json", + "save_label_panel/heart_image": "ui/pdp_screen.json", + "save_label_panel/progress_loading": "ui/pdp_screen.json", + "save_label": "ui/pdp_screen.json", + "save_label/save_image_offset_panel": "ui/pdp_screen.json", + "save_label/save_image_offset_panel/full_heart": "ui/pdp_screen.json", + "save_label/save_image_offset_panel/empty_heart": "ui/pdp_screen.json", + "large_button_coin_purchase_label": "ui/pdp_screen.json", + "large_button_coin_purchase_label/markdown_banner_filler_panel": "ui/pdp_screen.json", + "large_button_coin_purchase_label/center_markdown_panel": "ui/pdp_screen.json", + "large_button_coin_purchase_label/center_markdown_panel/markdown_banner": "ui/pdp_screen.json", + "large_button_coin_purchase_label/sales_padding_0": "ui/pdp_screen.json", + "large_button_coin_purchase_label/price_markdown_panel": "ui/pdp_screen.json", + "large_button_coin_purchase_label/price_markdown_panel/price_markdown_label": "ui/pdp_screen.json", + "large_button_coin_purchase_label/sales_padding_1": "ui/pdp_screen.json", + "large_button_coin_purchase_label/left_coin_image_offset_panel": "ui/pdp_screen.json", + "large_button_coin_purchase_label/left_coin_image_offset_panel/coin": "ui/pdp_screen.json", + "large_button_coin_purchase_label/coin_purchase_label_panel": "ui/pdp_screen.json", + "large_button_coin_purchase_label/coin_purchase_label_panel/coin_purchase_label_text": "ui/pdp_screen.json", + "large_button_coin_purchase_label/right_coin_image_offset_panel": "ui/pdp_screen.json", + "large_button_coin_purchase_label/right_coin_image_offset_panel/coin": "ui/pdp_screen.json", + "large_button_coin_purchase_label/fill_padding_1": "ui/pdp_screen.json", + "price_markdown_panel": "ui/pdp_screen.json", + "price_markdown_panel/offer_price": "ui/pdp_screen.json", + "price_markdown_panel/offer_price/text_strike_through": "ui/pdp_screen.json", + "vertical_padding_2px": "ui/pdp_screen.json", + "vertical_padding_4px": "ui/pdp_screen.json", + "vertical_padding_fill": "ui/pdp_screen.json", + "horizontal_padding_2px": "ui/pdp_screen.json", + "horizontal_padding_4px": "ui/pdp_screen.json", + "horizontal_padding_8px": "ui/pdp_screen.json", + "horizontal_padding_fill": "ui/pdp_screen.json", + "empty_content_panel": "ui/pdp_screen.json", + "section_header": "ui/pdp_screen.json", + "section_header/header_label": "ui/pdp_screen.json", + "content_section_bg": "ui/pdp_screen.json", + "content_section_bg/pad": "ui/pdp_screen.json", + "content_section_bg/section_header": "ui/pdp_screen.json", + "content_section_bg/bg_and_content": "ui/pdp_screen.json", + "content_section_bg/bg_and_content/bg": "ui/pdp_screen.json", + "content_section_boarder_bg": "ui/pdp_screen.json", + "content_section_boarder_bg/pad": "ui/pdp_screen.json", + "content_section_boarder_bg/bg_and_content": "ui/pdp_screen.json", + "content_section_boarder_bg/bg_and_content/bg": "ui/pdp_screen.json", + "content_section_boarder_bg/bg_and_content/bg/inner": "ui/pdp_screen.json", + "content_section_boarder_bg/pad_3": "ui/pdp_screen.json", + "content_section_boarder_bg/divider_3": "ui/pdp_screen.json", + "summary_factory_object": "ui/pdp_screen.json", + "summary_factory_object/summary": "ui/pdp_screen.json", + "summary_factory_object/navigation_tab_section": "ui/pdp_screen.json", + "summary_factory_object/update_notification_section": "ui/pdp_screen.json", + "screenshot_carousel_factory_object": "ui/pdp_screen.json", + "screenshot_carousel_factory_object/resource_pack_content_panel": "ui/pdp_screen.json", + "screenshot_carousel_factory_object/pad_3": "ui/pdp_screen.json", + "screenshot_carousel_factory_object/divider_3": "ui/pdp_screen.json", + "image_gallery_factory_object": "ui/pdp_screen.json", + "image_gallery_factory_object/resource_pack_content_panel": "ui/pdp_screen.json", + "left_text_right_image_factory_object": "ui/pdp_screen.json", + "left_text_right_image_factory_object/resource_pack_content_panel": "ui/pdp_screen.json", + "right_text_left_image_factory_object": "ui/pdp_screen.json", + "right_text_left_image_factory_object/resource_pack_content_panel": "ui/pdp_screen.json", + "skin_pack_section_factory_object": "ui/pdp_screen.json", + "skin_pack_section_factory_object/skin_pack_section_factory_content": "ui/pdp_screen.json", + "skin_pack_section_factory_object/skin_pack_section_factory_content/skin_pack_content_panel": "ui/pdp_screen.json", + "skin_pack_section_factory_object/skin_pack_section_factory_content/pad_3": "ui/pdp_screen.json", + "skin_pack_section_factory_object/skin_pack_section_factory_content/divider_3": "ui/pdp_screen.json", + "panorama_view_factory_object": "ui/pdp_screen.json", + "panorama_view_factory_object/panorama_view_content_panel": "ui/pdp_screen.json", + "panorama_view_factory_object/pad_3": "ui/pdp_screen.json", + "panorama_view_factory_object/divider_3": "ui/pdp_screen.json", + "ratings_factory_object": "ui/pdp_screen.json", + "ratings_factory_object/rating_factory_object_content": "ui/pdp_screen.json", + "focus_container_button": "ui/pdp_screen.json", + "focus_container_button/default": "ui/pdp_screen.json", + "bundle_summary_factory_object": "ui/pdp_screen.json", + "bundle_summary_factory_object/bundle_summary_factory_object_content": "ui/pdp_screen.json", + "pdp_cycle_offer_row_content": "ui/pdp_screen.json", + "pdp_cycle_offer_row_content/store_row_panel": "ui/pdp_screen.json", + "pdp_cycle_offer_row_content/pad_3": "ui/pdp_screen.json", + "pdp_cycle_offer_row_content/divider_3": "ui/pdp_screen.json", + "pdp_cycle_offer_row_section": "ui/pdp_screen.json", + "recently_viewed_viewed_factory_object": "ui/pdp_screen.json", + "scrolling_content_stack": "ui/pdp_screen.json", + "warning_image": "ui/pdp_screen.json", + "scaling_rating": "ui/pdp_screen.json", + "scaling_rating/empty_rating": "ui/pdp_screen.json", + "scaling_rating/empty_rating/full_rating": "ui/pdp_screen.json", + "scaling_rating_new": "ui/pdp_screen.json", + "scaling_rating_new/empty_rating": "ui/pdp_screen.json", + "scaling_rating_new/empty_rating/full_rating": "ui/pdp_screen.json", + "chart_section": "ui/pdp_screen.json", + "chart_section/stack": "ui/pdp_screen.json", + "chart_section/stack/star_number_panel": "ui/pdp_screen.json", + "chart_section/stack/star_number_panel/star_number": "ui/pdp_screen.json", + "chart_section/stack/star_panel": "ui/pdp_screen.json", + "chart_section/stack/star_panel/star_img": "ui/pdp_screen.json", + "chart_section/stack/pad_0": "ui/pdp_screen.json", + "chart_section/stack/bar_panel": "ui/pdp_screen.json", + "chart_section/stack/bar_panel/bar": "ui/pdp_screen.json", + "chart_section/stack/bar_panel/bar/full_bar": "ui/pdp_screen.json", + "chart_section/stack/pad_1": "ui/pdp_screen.json", + "chart_section/stack/percent": "ui/pdp_screen.json", + "ratings_chart": "ui/pdp_screen.json", + "ratings_chart/5_star": "ui/pdp_screen.json", + "ratings_chart/4_star": "ui/pdp_screen.json", + "ratings_chart/3_star": "ui/pdp_screen.json", + "ratings_chart/2_star": "ui/pdp_screen.json", + "ratings_chart/1_star": "ui/pdp_screen.json", + "ratings_chart_panel": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/pad_0": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/title": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/title/title_text": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/pad_1": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/rating_panel": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/rating_panel/rating": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/rating_panel/rating/rating_bar": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/rating_panel/rating/pad": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/rating_text_panel": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/rating_text_panel/rating_text": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/count_panel": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/count_panel/count": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/pad_2": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/chart": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/pad_3": "ui/pdp_screen.json", + "ratings_box": "ui/pdp_screen.json", + "ratings_box/ratings_panel_focus_point": "ui/pdp_screen.json", + "ratings_box/ratings_full_panel": "ui/pdp_screen.json", + "ratings_box/ratings_full_panel/ratings_chart_and_button": "ui/pdp_screen.json", + "ratings_box/ratings_full_panel/ratings_chart_and_button/chart": "ui/pdp_screen.json", + "ratings_box/ratings_full_panel/ratings_chart_and_button/pad_1": "ui/pdp_screen.json", + "ratings_box/divider": "ui/pdp_screen.json", + "user_rating_star_button": "ui/pdp_screen.json", + "user_rating_star_button/default": "ui/pdp_screen.json", + "user_rating_star_button/default/default_user_rating_star": "ui/pdp_screen.json", + "user_rating_star_button/hover": "ui/pdp_screen.json", + "user_rating_star_button/hover/hover_user_rating_star": "ui/pdp_screen.json", + "user_rating_star_list_grid": "ui/pdp_screen.json", + "ratings_interact_panel": "ui/pdp_screen.json", + "ratings_interact_panel/title_text": "ui/pdp_screen.json", + "ratings_interact_panel/pad_vertical_4px": "ui/pdp_screen.json", + "ratings_interact_panel/rating_stars_and_button_panel": "ui/pdp_screen.json", + "ratings_interact_panel/rating_stars_and_button_panel/fill_stars": "ui/pdp_screen.json", + "ratings_interact_panel/rating_stars_and_button_panel/fill_stars/rating_buttons": "ui/pdp_screen.json", + "ratings_interact_panel/rating_stars_and_button_panel/pad_3_percent": "ui/pdp_screen.json", + "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel": "ui/pdp_screen.json", + "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel/submit": "ui/pdp_screen.json", + "ratings_interact_panel/pad_vertical_8px": "ui/pdp_screen.json", + "ratings_interact_panel/fill_pad": "ui/pdp_screen.json", + "ratings_interact_panel/fill_pad/text": "ui/pdp_screen.json", + "ratings_interact_panel/send_feedback_button": "ui/pdp_screen.json", + "ratings_interact_panel/pad_1": "ui/pdp_screen.json", + "ratings_info_panel": "ui/pdp_screen.json", + "ratings_info_panel/ratings": "ui/pdp_screen.json", + "ratings_info_panel/ratings_right": "ui/pdp_screen.json", + "ratings_info_panel/ratings_right/ratings_interact_panel": "ui/pdp_screen.json", + "ratings_content_panel": "ui/pdp_screen.json", + "panorama_view_content": "ui/pdp_screen.json", + "panorama_view_content/panorama_panel": "ui/pdp_screen.json", + "panorama_view_content/panorama_panel/panorama_content": "ui/pdp_screen.json", + "skins": "ui/pdp_screen.json", + "skin_pack_content_panel": "ui/pdp_screen.json", + "resource_pack_content": "ui/pdp_screen.json", + "resource_pack_content/screenshots": "ui/pdp_screen.json", + "image_row_left_text_content": "ui/pdp_screen.json", + "image_row_left_text_content/buffer_panel_front": "ui/pdp_screen.json", + "image_row_left_text_content/text_section": "ui/pdp_screen.json", + "image_row_left_text_content/text_section/left_header": "ui/pdp_screen.json", + "image_row_left_text_content/text_section/left_text": "ui/pdp_screen.json", + "image_row_left_text_content/text_section/buffer_panel_bottom": "ui/pdp_screen.json", + "image_row_left_text_content/buffer_panel_mid": "ui/pdp_screen.json", + "image_row_left_text_content/screenshots_single": "ui/pdp_screen.json", + "image_row_left_text_content/buffer_panel_back": "ui/pdp_screen.json", + "image_row_right_text_content": "ui/pdp_screen.json", + "image_row_right_text_content/buffer_panel_front": "ui/pdp_screen.json", + "image_row_right_text_content/screenshots_single": "ui/pdp_screen.json", + "image_row_right_text_content/buffer_panel_mid": "ui/pdp_screen.json", + "image_row_right_text_content/text_section": "ui/pdp_screen.json", + "image_row_right_text_content/text_section/right_header": "ui/pdp_screen.json", + "image_row_right_text_content/text_section/right_text": "ui/pdp_screen.json", + "image_row_right_text_content/text_section/buffer_panel_bottom": "ui/pdp_screen.json", + "image_row_right_text_content/buffer_panel_back": "ui/pdp_screen.json", + "image_row_content": "ui/pdp_screen.json", + "image_row_content/screenshots_triple": "ui/pdp_screen.json", + "play_button": "ui/pdp_screen.json", + "csb_expiration": "ui/pdp_screen.json", + "csb_expiration/background": "ui/pdp_screen.json", + "csb_expiration/background/content_stack_panel": "ui/pdp_screen.json", + "csb_expiration/background/content_stack_panel/icon_wrapper": "ui/pdp_screen.json", + "csb_expiration/background/content_stack_panel/icon_wrapper/icon": "ui/pdp_screen.json", + "csb_expiration/background/content_stack_panel/text_wrapper": "ui/pdp_screen.json", + "csb_expiration/background/content_stack_panel/text_wrapper/text": "ui/pdp_screen.json", + "summary_content_left_side": "ui/pdp_screen.json", + "summary_content_left_side/pad_left": "ui/pdp_screen.json", + "summary_content_left_side/full_content": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/image": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/image/key_image": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/image/key_image/border": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/image/key_image/csb_expiration_banner": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/mask": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/default": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/hover": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/image/key_image/rtx_label": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/divider": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/summary_title_and_author_panel": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/pad_fill": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/glyph_section": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/glyph_section/glyph_section_panel": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/ratings_summary": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel/rating": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/summary_rating_button": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/vibrant_visuals_badge_and_hover": "ui/pdp_screen.json", + "summary_content_left_side/full_content/bottom": "ui/pdp_screen.json", + "offer_title_label": "ui/pdp_screen.json", + "title_and_author_panel": "ui/pdp_screen.json", + "title_and_author_panel/title_panel": "ui/pdp_screen.json", + "title_and_author_panel/author_button_panel": "ui/pdp_screen.json", + "title_and_author_panel/author_button_panel/summary_author_button": "ui/pdp_screen.json", + "description_label": "ui/pdp_screen.json", + "warning_stack_panel": "ui/pdp_screen.json", + "warning_stack_panel/warning_icon": "ui/pdp_screen.json", + "warning_stack_panel/pad_0": "ui/pdp_screen.json", + "warning_stack_panel/warning_text_panel": "ui/pdp_screen.json", + "warning_stack_panel/warning_text_panel/warning_text": "ui/pdp_screen.json", + "warning_panel": "ui/pdp_screen.json", + "warning_panel/background": "ui/pdp_screen.json", + "warning_panel/content_stack_panel": "ui/pdp_screen.json", + "description_toggle_show_button_panel": "ui/pdp_screen.json", + "description_toggle_show_button_panel/description_bottom_right_button_border": "ui/pdp_screen.json", + "description_toggle_show_button_panel/description_toggle_show_button": "ui/pdp_screen.json", + "description_toggle_show_button_panel/warning_icon": "ui/pdp_screen.json", + "vibrant_visuals_underline_button": "ui/pdp_screen.json", + "vibrant_visuals_hover_popup": "ui/pdp_screen.json", + "vibrant_visuals_badge_display": "ui/pdp_screen.json", + "vibrant_visuals_badge_display/vibrant_visuals_underline_button": "ui/pdp_screen.json", + "vibrant_visuals_badge_and_hover": "ui/pdp_screen.json", + "vibrant_visuals_badge_and_hover/vibrant_visuals_hover_popup": "ui/pdp_screen.json", + "vibrant_visuals_badge_and_hover/vibrant_visuals_badge_display": "ui/pdp_screen.json", + "glyph_icon": "ui/pdp_screen.json", + "glyph_count_label": "ui/pdp_screen.json", + "glyph_count_underline_button": "ui/pdp_screen.json", + "glyph_count_hover_underline_button_panel": "ui/pdp_screen.json", + "glyph_count_hover_underline_button_panel/glyph_hover_popup": "ui/pdp_screen.json", + "glyph_count_hover_underline_button_panel/glyph_count_underline_button": "ui/pdp_screen.json", + "glyph_icon_with_count": "ui/pdp_screen.json", + "glyph_icon_with_count/glyph_icon": "ui/pdp_screen.json", + "glyph_icon_with_count/horizontal_padding": "ui/pdp_screen.json", + "glyph_icon_with_count/item_glyph_count_panel_label": "ui/pdp_screen.json", + "glyph_panel_hover_popup": "ui/pdp_screen.json", + "glyph_panel_mashup_hover_popup": "ui/pdp_screen.json", + "mashup_glyph_tooltip_content": "ui/pdp_screen.json", + "mashup_glyph_tooltip_content/mashup_text_row": "ui/pdp_screen.json", + "mashup_glyph_tooltip_content/mashup_text_row/info_icon": "ui/pdp_screen.json", + "mashup_glyph_tooltip_content/mashup_text_row/mashup_line_one": "ui/pdp_screen.json", + "mashup_glyph_tooltip_content/mashup_line_two": "ui/pdp_screen.json", + "mashup_glyph_tooltip_content/offset_panel": "ui/pdp_screen.json", + "mashup_glyph_tooltip_content/offset_panel/basic_vertical_glyph_section_panel": "ui/pdp_screen.json", + "glyph_section_mashup": "ui/pdp_screen.json", + "glyph_section_skin": "ui/pdp_screen.json", + "glyph_section_resource_pack": "ui/pdp_screen.json", + "glyph_section_world": "ui/pdp_screen.json", + "glyph_section_addon": "ui/pdp_screen.json", + "basic_vertical_glyph_section_panel": "ui/pdp_screen.json", + "basic_vertical_glyph_section_panel/glyph_section_skin": "ui/pdp_screen.json", + "basic_vertical_glyph_section_panel/glyph_section_world": "ui/pdp_screen.json", + "basic_vertical_glyph_section_panel/glyph_section_resource_pack": "ui/pdp_screen.json", + "basic_vertical_glyph_section_panel/glyph_section_addon": "ui/pdp_screen.json", + "vertical_glyph_section_panel": "ui/pdp_screen.json", + "vertical_glyph_section_panel/glyph_section_mashup": "ui/pdp_screen.json", + "vertical_glyph_section_panel/basic_vertical_glyph_section_panel": "ui/pdp_screen.json", + "summary_text_panel": "ui/pdp_screen.json", + "summary_text_panel/top_interact_button_stack": "ui/pdp_screen.json", + "summary_text_panel/top_interact_button_stack/top_interact": "ui/pdp_screen.json", + "summary_text_panel/apply_to_realm_panel": "ui/pdp_screen.json", + "summary_text_panel/apply_to_realm_panel/apply_to_realm_button": "ui/pdp_screen.json", + "summary_text_panel/in_csb_panel": "ui/pdp_screen.json", + "summary_text_panel/in_csb_panel/in_csb_button": "ui/pdp_screen.json", + "summary_text_panel/progress_loading_anim_panel": "ui/pdp_screen.json", + "summary_text_panel/progress_loading_anim_panel/progress_loading_anim": "ui/pdp_screen.json", + "summary_text_panel/pad_0": "ui/pdp_screen.json", + "summary_text_panel/disclaimer_panel": "ui/pdp_screen.json", + "summary_text_panel/pad_1": "ui/pdp_screen.json", + "summary_text_panel/save_share_button_panel": "ui/pdp_screen.json", + "summary_text_panel/pad_2": "ui/pdp_screen.json", + "info_bulb_image": "ui/pdp_screen.json", + "info_bulb_image_small": "ui/pdp_screen.json", + "info_bulb_image_small_centered": "ui/pdp_screen.json", + "info_bulb_image_small_centered/top_filler": "ui/pdp_screen.json", + "info_bulb_image_small_centered/middle_panel": "ui/pdp_screen.json", + "info_bulb_image_small_centered/middle_panel/front_filler": "ui/pdp_screen.json", + "info_bulb_image_small_centered/middle_panel/info_bulb": "ui/pdp_screen.json", + "info_bulb_image_small_centered/middle_panel/bottom_filler": "ui/pdp_screen.json", + "info_bulb_image_small_centered/bottom_filler": "ui/pdp_screen.json", + "realms_incompatable_content": "ui/pdp_screen.json", + "realms_incompatable_content/realms_content_stack_panel": "ui/pdp_screen.json", + "realms_incompatable_content/realms_content_stack_panel/info_bulb_image": "ui/pdp_screen.json", + "realms_incompatable_content/realms_content_stack_panel/padding": "ui/pdp_screen.json", + "realms_incompatable_content/realms_content_stack_panel/realms_incompatable_button_label": "ui/pdp_screen.json", + "apply_to_realm_button": "ui/pdp_screen.json", + "in_csb_button": "ui/pdp_screen.json", + "read_more_button": "ui/pdp_screen.json", + "read_more_button/default": "ui/pdp_screen.json", + "read_more_button/hover": "ui/pdp_screen.json", + "read_more_button/pressed": "ui/pdp_screen.json", + "summary_content_right_side": "ui/pdp_screen.json", + "summary_content_right_side/pad_middle": "ui/pdp_screen.json", + "summary_content_right_side/text": "ui/pdp_screen.json", + "summary_content_right_side/entitlements_progress_panel": "ui/pdp_screen.json", + "summary_content_right_side/entitlements_progress_panel/progress_loading": "ui/pdp_screen.json", + "summary_content_right_side/pad_right": "ui/pdp_screen.json", + "summary_content_whole_stack_panel": "ui/pdp_screen.json", + "summary_content_whole_stack_panel/left_side": "ui/pdp_screen.json", + "summary_content_whole_stack_panel/divider_panel": "ui/pdp_screen.json", + "summary_content_whole_stack_panel/right_side": "ui/pdp_screen.json", + "summary_content_panel": "ui/pdp_screen.json", + "summary_content_panel/pad_top": "ui/pdp_screen.json", + "summary_content_panel/summary_content_whole_stack": "ui/pdp_screen.json", + "summary_content_panel/pad_3": "ui/pdp_screen.json", + "summary_content_panel/divider_3": "ui/pdp_screen.json", + "appearance_status_image_panel": "ui/pdp_screen.json", + "appearance_status_image_panel/limited_status_image": "ui/pdp_screen.json", + "appearance_status_image_panel/no_restrictions_status_image": "ui/pdp_screen.json", + "appearance_status_content": "ui/pdp_screen.json", + "appearance_status_content/appearance_status_image_panel": "ui/pdp_screen.json", + "appearance_status_content/last_update_panel": "ui/pdp_screen.json", + "appearance_status_content/last_update_panel/last_update_label": "ui/pdp_screen.json", + "dynamic_tooltip_notification_panel": "ui/pdp_screen.json", + "dynamic_tooltip_notification_panel/default": "ui/pdp_screen.json", + "dynamic_tooltip_notification_panel/hover": "ui/pdp_screen.json", + "dynamic_tooltip_notification_panel/pressed": "ui/pdp_screen.json", + "update_notification_content": "ui/pdp_screen.json", + "update_notification_content/dynamic_tooltip_notification_panel": "ui/pdp_screen.json", + "update_notification_content/status": "ui/pdp_screen.json", + "update_notification_stack_panel": "ui/pdp_screen.json", + "update_notification_stack_panel/pad_0": "ui/pdp_screen.json", + "update_notification_stack_panel/content": "ui/pdp_screen.json", + "update_notification_stack_panel/pad_1": "ui/pdp_screen.json", + "tag_base": "ui/pdp_screen.json", + "tag_button_panel": "ui/pdp_screen.json", + "tag_button_panel/button": "ui/pdp_screen.json", + "tag_button_panel/button/default": "ui/pdp_screen.json", + "tag_button_panel/button/hover": "ui/pdp_screen.json", + "tag_button_panel/button/pressed": "ui/pdp_screen.json", + "tag_button_panel/button/label": "ui/pdp_screen.json", + "tag_row_factory": "ui/pdp_screen.json", + "player_count_button_panel": "ui/pdp_screen.json", + "player_count_button_panel/player_count_button": "ui/pdp_screen.json", + "player_count_button_panel/comma": "ui/pdp_screen.json", + "player_count_factory": "ui/pdp_screen.json", + "language_button_panel": "ui/pdp_screen.json", + "language_button_panel/language_button": "ui/pdp_screen.json", + "language_button_panel/comma": "ui/pdp_screen.json", + "language_row_factory": "ui/pdp_screen.json", + "description_inner_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/pad_0": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/title_stack_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_label_icon": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/pad_0": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel/title_label": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/title_stack_panel/pad_0": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel/divider": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/title_stack_panel/pad_1": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/description_text_panel_full": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/description_label": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/pad_0": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/warning_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/description_text_panel_full/button_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/description_text_panel_collapsed": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/description_text_panel_collapsed/description_text_collapsed": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/description_text_panel_collapsed/collapsed_show_more_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/pad_1": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/divider_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/divider_panel/divider": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/pad_2": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/tags_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/tags_panel/label_text_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/tags_panel/label_text_panel/label_text": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/tags_panel/pad": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory_with_rows": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/genre_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/genre_panel/label_text": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/genre_panel/pad": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/genre_panel/text_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/genre_button": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/pad_0": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/slash_divider": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/subgenre_button": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/players_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/players_panel/label_text": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/players_panel/pad": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/players_panel/text_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_button_factory": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/pad": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_range_panel": "ui/pdp_screen.json", + "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": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/note_text": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/languages_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/languages_panel/label_text_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/languages_panel/label_text_panel/label_text": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/languages_panel/pad": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/languages_panel/languages_factory": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/pad_3": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/show_less_button_panel": "ui/pdp_screen.json", + "description_section": "ui/pdp_screen.json", + "changelog_section": "ui/pdp_screen.json", + "bundle_thumbnail": "ui/pdp_screen.json", + "bundle_thumbnail_section_content": "ui/pdp_screen.json", + "bundle_thumbnail_section_content/bundle_thumbnail_grid": "ui/pdp_screen.json", + "bundle_thumbnail_section": "ui/pdp_screen.json", + "price_panel": "ui/pdp_screen.json", + "price_panel/coin_non_sale_price_label": "ui/pdp_screen.json", + "price_panel/price_padding": "ui/pdp_screen.json", + "price_panel/offer_prompt_panel": "ui/pdp_screen.json", + "price_panel/offer_prompt_panel/offer_status_text": "ui/pdp_screen.json", + "price_panel/padding_3": "ui/pdp_screen.json", + "price_panel/coin_panel": "ui/pdp_screen.json", + "price_panel/coin_panel/offer_coin_icon": "ui/pdp_screen.json", + "rating_and_coins_panel": "ui/pdp_screen.json", + "rating_and_coins_panel/rating_panel": "ui/pdp_screen.json", + "rating_and_coins_panel/rating_padding_coin": "ui/pdp_screen.json", + "rating_and_coins_panel/price_panel": "ui/pdp_screen.json", + "bundle_offer_texture": "ui/pdp_screen.json", + "bundle_offer_texture/texture": "ui/pdp_screen.json", + "bundle_offer_texture/texture/border": "ui/pdp_screen.json", + "bundle_offer_info": "ui/pdp_screen.json", + "bundle_offer_info/top_padding": "ui/pdp_screen.json", + "bundle_offer_info/offer_title_and_author_panel": "ui/pdp_screen.json", + "bundle_offer_info/glyph_section": "ui/pdp_screen.json", + "bundle_offer_info/glyph_description_padding": "ui/pdp_screen.json", + "bundle_offer_info/description_panel": "ui/pdp_screen.json", + "bundle_offer_info/description_padding": "ui/pdp_screen.json", + "bundle_offer_info/description_padding_bottom": "ui/pdp_screen.json", + "bundle_offer_info/rating_and_price_panel": "ui/pdp_screen.json", + "bundle_offer_info/bottom_padding": "ui/pdp_screen.json", + "bundle_offer_summary_grid_item_content": "ui/pdp_screen.json", + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel": "ui/pdp_screen.json", + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/focus_border": "ui/pdp_screen.json", + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel": "ui/pdp_screen.json", + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/key_art": "ui/pdp_screen.json", + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/mid_padding": "ui/pdp_screen.json", + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/info": "ui/pdp_screen.json", + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/right_padding": "ui/pdp_screen.json", + "bundle_offer_summary_grid_item": "ui/pdp_screen.json", + "bundle_offer_summary_grid_item/bundle_offer_summary_button": "ui/pdp_screen.json", + "bundle_offer_content_section": "ui/pdp_screen.json", + "bundle_offer_content_section/bundle_grid": "ui/pdp_screen.json", + "bundle_summary_section_panel": "ui/pdp_screen.json", + "bundle_summary_section_panel/bundle_summary_section": "ui/pdp_screen.json", + "bundle_summary_section_panel/bundle_summary_section/bundle_header_and_thumnails_section": "ui/pdp_screen.json", + "bundle_summary_section_panel/bundle_summary_section/mid_padding": "ui/pdp_screen.json", + "bundle_summary_section_panel/bundle_summary_section/bundle_offers_info_section": "ui/pdp_screen.json", + "bundle_summary_section_panel/bundle_summary_section/mid_padding_2": "ui/pdp_screen.json", + "bundle_summary_section_panel/bundle_summary_section/interact_panel": "ui/pdp_screen.json", + "bundle_summary_section_panel/bundle_summary_section/interact_panel/bundle_interact": "ui/pdp_screen.json", + "bundle_summary_section_panel/divider_3": "ui/pdp_screen.json", + "pdp_screen": "ui/pdp_screen.json", + "mashup_screen_content": "ui/pdp_screen.json", + "mashup_screen_content/header": "ui/pdp_screen.json", + "mashup_screen_content/popup_dialog_factory": "ui/pdp_screen.json", + "mashup_screen_main": "ui/pdp_screen.json", + "mashup_screen_main/pack_content": "ui/pdp_screen.json", + "mashup_screen_main/progress_loading": "ui/pdp_screen.json", + }, + "pdp_screenshots": { + "banner_empty": "ui/pdp_screenshots_section.json", + "screenshot_carousel": "ui/pdp_screenshots_section.json", + "screenshot_carousel/screenshot_carousel_content": "ui/pdp_screenshots_section.json", + "screenshot_carousel/screenshot_carousel_content/cycle_pack_left_button": "ui/pdp_screenshots_section.json", + "screenshot_carousel/screenshot_carousel_content/screenshots_grid": "ui/pdp_screenshots_section.json", + "screenshot_carousel/screenshot_carousel_content/cycle_pack_right_button": "ui/pdp_screenshots_section.json", + "screenshots_grid": "ui/pdp_screenshots_section.json", + "screenshots_grid/left_image_panel": "ui/pdp_screenshots_section.json", + "screenshots_grid/middle_image_panel": "ui/pdp_screenshots_section.json", + "screenshots_grid/right_image_panel": "ui/pdp_screenshots_section.json", + "screenshots_grid_item": "ui/pdp_screenshots_section.json", + "screenshots_grid_item/frame": "ui/pdp_screenshots_section.json", + "screenshots_grid_item/frame/screenshot_button": "ui/pdp_screenshots_section.json", + "screenshots_grid_item/frame/screenshot_button/hover": "ui/pdp_screenshots_section.json", + "screenshots_grid_item/frame/screenshot_button/pressed": "ui/pdp_screenshots_section.json", + "screenshots_grid_item/screenshot_image": "ui/pdp_screenshots_section.json", + "screenshots_grid_item/progress_loading": "ui/pdp_screenshots_section.json", + }, + "permissions": { + "permissions_screen": "ui/permissions_screen.json", + "permissions_screen_content": "ui/permissions_screen.json", + "permissions_screen_content/top_bar_panel": "ui/permissions_screen.json", + "permissions_screen_content/content_panel": "ui/permissions_screen.json", + "top_bar_panel": "ui/permissions_screen.json", + "top_bar_panel/top_bar": "ui/permissions_screen.json", + "top_bar_panel/back_button": "ui/permissions_screen.json", + "top_bar_panel/gamepad_helper_b": "ui/permissions_screen.json", + "top_bar_panel/title_label": "ui/permissions_screen.json", + "content_panel": "ui/permissions_screen.json", + "content_panel/content_stack_panel": "ui/permissions_screen.json", + "content_panel/content_stack_panel/content_padding_1": "ui/permissions_screen.json", + "content_panel/content_stack_panel/ip_label": "ui/permissions_screen.json", + "content_panel/content_stack_panel/world_label": "ui/permissions_screen.json", + "content_panel/content_stack_panel/content_padding_2": "ui/permissions_screen.json", + "content_panel/content_stack_panel/player_and_permissions_panel": "ui/permissions_screen.json", + "player_and_permissions_panel": "ui/permissions_screen.json", + "player_and_permissions_panel/selector_area": "ui/permissions_screen.json", + "player_and_permissions_panel/content_area": "ui/permissions_screen.json", + "selector_area": "ui/permissions_screen.json", + "selector_area/player_scrolling_panel": "ui/permissions_screen.json", + "content_area": "ui/permissions_screen.json", + "content_area/permissions_options_background": "ui/permissions_screen.json", + "content_area/permissions_options_background/permissions_options_background_image": "ui/permissions_screen.json", + "content_area/permissions_options_background/permissions_options_background_image/permissions_options_scrolling_panel": "ui/permissions_screen.json", + "content_area/inactive_modal_pane_fade": "ui/permissions_screen.json", + "kick_button": "ui/permissions_screen.json", + "ban_button": "ui/permissions_screen.json", + "players_grid_panel": "ui/permissions_screen.json", + "players_grid_panel/players_grid": "ui/permissions_screen.json", + "players_grid": "ui/permissions_screen.json", + "player_grid_item": "ui/permissions_screen.json", + "player_grid_item/player_toggle": "ui/permissions_screen.json", + "player_grid_item/inactive_modal_pane_fade": "ui/permissions_screen.json", + "permissions_options_scrolling_panel": "ui/permissions_screen.json", + "permissions_options_panel": "ui/permissions_screen.json", + "permissions_options_panel/inner_permissions_options_panel": "ui/permissions_screen.json", + "permissions_options_panel/inner_permissions_options_panel/permissions_options_stack_panel": "ui/permissions_screen.json", + "permissions_options_stack_panel": "ui/permissions_screen.json", + "permissions_options_stack_panel/permissions_padding_0": "ui/permissions_screen.json", + "permissions_options_stack_panel/world_template_option_lock_panel": "ui/permissions_screen.json", + "permissions_options_stack_panel/world_template_option_lock_panel/option_info_label": "ui/permissions_screen.json", + "permissions_options_stack_panel/permissions_padding_1": "ui/permissions_screen.json", + "permissions_options_stack_panel/permission_level_dropdown": "ui/permissions_screen.json", + "permissions_options_stack_panel/permissions_padding_2": "ui/permissions_screen.json", + "permissions_options_stack_panel/permissions_options_grid": "ui/permissions_screen.json", + "permissions_options_stack_panel/permissions_padding_3": "ui/permissions_screen.json", + "permissions_options_stack_panel/permissions_kick_button_panel": "ui/permissions_screen.json", + "permissions_options_stack_panel/permissions_padding_4": "ui/permissions_screen.json", + "permissions_options_stack_panel/permissions_ban_button_panel": "ui/permissions_screen.json", + "permissions_options_stack_panel/permissions_padding_5": "ui/permissions_screen.json", + "permissions_options_grid": "ui/permissions_screen.json", + "permissions_options_grid_item": "ui/permissions_screen.json", + "permissions_options_grid_item/option_label_panel": "ui/permissions_screen.json", + "permissions_options_grid_item/option_label_panel/option_label": "ui/permissions_screen.json", + "permissions_options_grid_item/option_state_label_panel": "ui/permissions_screen.json", + "permissions_options_grid_item/option_state_label_panel/option_state_label": "ui/permissions_screen.json", + "permissions_options_grid_item/option_toggle": "ui/permissions_screen.json", + "permissions_kick_button_panel": "ui/permissions_screen.json", + "permissions_kick_button_panel/kick_button": "ui/permissions_screen.json", + "permissions_ban_button_panel": "ui/permissions_screen.json", + "permissions_ban_button_panel/ban_button": "ui/permissions_screen.json", + "title_label": "ui/permissions_screen.json", + "ip_label": "ui/permissions_screen.json", + "world_label": "ui/permissions_screen.json", + "gamertag_label": "ui/permissions_screen.json", + "option_state_label": "ui/permissions_screen.json", + "option_label": "ui/permissions_screen.json", + "top_bar": "ui/permissions_screen.json", + "banner_background": "ui/permissions_screen.json", + "player_local_icon": "ui/permissions_screen.json", + "player_gamer_pic": "ui/permissions_screen.json", + "player_gamer_pic/player_panel_black_border": "ui/permissions_screen.json", + "back_button": "ui/permissions_screen.json", + "back_button_content": "ui/permissions_screen.json", + "back_button_content/chevron_panel": "ui/permissions_screen.json", + "back_button_content/chevron_panel/left_chevron": "ui/permissions_screen.json", + "back_button_content/back_button_padding": "ui/permissions_screen.json", + "back_button_content/label_panel": "ui/permissions_screen.json", + "back_button_content/label_panel/label": "ui/permissions_screen.json", + "player_toggle": "ui/permissions_screen.json", + "player_button_content": "ui/permissions_screen.json", + "player_button_content/player_pic_panel": "ui/permissions_screen.json", + "player_button_content/player_button_padding_1": "ui/permissions_screen.json", + "player_button_content/gamertag_panel": "ui/permissions_screen.json", + "player_button_content/gamertag_panel/gamertag_label": "ui/permissions_screen.json", + "player_button_content/icon_panel": "ui/permissions_screen.json", + "player_button_content/icon_panel/dropdown_icon_image": "ui/permissions_screen.json", + "player_button_content/player_button_padding_2": "ui/permissions_screen.json", + "player_pic_panel": "ui/permissions_screen.json", + "player_pic_panel/player_gamer_pic": "ui/permissions_screen.json", + "player_pic_panel/player_local_icon": "ui/permissions_screen.json", + "option_toggle": "ui/permissions_screen.json", + "permission_level_dropdown": "ui/permissions_screen.json", + "radio_title_and_icon": "ui/permissions_screen.json", + "radio_title_and_icon/radio_icon": "ui/permissions_screen.json", + "radio_title_and_icon/radio_title": "ui/permissions_screen.json", + "radio_content_with_title_bar": "ui/permissions_screen.json", + "radio_content_with_title_bar/title_and_icon": "ui/permissions_screen.json", + "radio_content_with_title_bar/helper_text": "ui/permissions_screen.json", + "radio_content_with_title_bar/bottom_padding": "ui/permissions_screen.json", + "radio_visuals_with_title": "ui/permissions_screen.json", + "radio_visuals_with_title/radio_content": "ui/permissions_screen.json", + "radio_visuals_with_title_hover": "ui/permissions_screen.json", + "radio_visuals_with_title_hover/radio_content": "ui/permissions_screen.json", + "permissions_visitor_visuals_with_title_normal": "ui/permissions_screen.json", + "permissions_visitor_visuals_with_title_hover": "ui/permissions_screen.json", + "permissions_member_visuals_with_title_normal": "ui/permissions_screen.json", + "permissions_member_visuals_with_title_hover": "ui/permissions_screen.json", + "permissions_op_visuals_with_title_normal": "ui/permissions_screen.json", + "permissions_op_visuals_with_title_hover": "ui/permissions_screen.json", + "permissions_visitor_radio_visuals_normal": "ui/permissions_screen.json", + "permissions_visitor_radio_visuals_hover": "ui/permissions_screen.json", + "permissions_member_radio_visuals_normal": "ui/permissions_screen.json", + "permissions_member_radio_visuals_hover": "ui/permissions_screen.json", + "permissions_op_radio_visuals_normal": "ui/permissions_screen.json", + "permissions_op_radio_visuals_hover": "ui/permissions_screen.json", + "permissions_custom_radio_visuals_normal": "ui/permissions_screen.json", + "permissions_custom_radio_visuals_hover": "ui/permissions_screen.json", + "permission_level_radio": "ui/permissions_screen.json", + "permission_level_radio/radio_with_label_core": "ui/permissions_screen.json", + "permission_level_dropdown_content": "ui/permissions_screen.json", + "permission_level_dropdown_state_content": "ui/permissions_screen.json", + "permission_level_dropdown_state_content/icon_panel": "ui/permissions_screen.json", + "permission_level_dropdown_state_content/icon_panel/dropdown_icon_image": "ui/permissions_screen.json", + "permission_level_dropdown_state_content/dropdown_label_padding": "ui/permissions_screen.json", + "permission_level_dropdown_state_content/label_panel": "ui/permissions_screen.json", + "permission_level_dropdown_state_content/label_panel/label": "ui/permissions_screen.json", + "permission_level_dropdown_state_content/arrow_panel": "ui/permissions_screen.json", + "permission_level_dropdown_state_content/arrow_panel/arrow_image": "ui/permissions_screen.json", + }, + "persona_cast_character_screen": { + "cast_modal_bottom_bar": "ui/persona_cast_character_screen.json", + "cast_modal_bottom_bar/0": "ui/persona_cast_character_screen.json", + "cast_common_dialog_background": "ui/persona_cast_character_screen.json", + "cast_common_dialog_background/top_bar": "ui/persona_cast_character_screen.json", + "cast_common_dialog_background/popup_inner_contents": "ui/persona_cast_character_screen.json", + "cast_common_dialog_background/cast_modal_bottom_bar": "ui/persona_cast_character_screen.json", + "cast_modal_panel": "ui/persona_cast_character_screen.json", + "cast_modal_panel/cast_preview_modal_content": "ui/persona_cast_character_screen.json", + "popup_dialog__cast_character_select": "ui/persona_cast_character_screen.json", + "popup_dialog__cast_character_select/background": "ui/persona_cast_character_screen.json", + "popup_dialog__cast_character_select/popup_background": "ui/persona_cast_character_screen.json", + "common_dcast_popup_framework": "ui/persona_cast_character_screen.json", + "common_cast_modal_top_bar": "ui/persona_cast_character_screen.json", + "common_cast_modal_top_bar/title_panel": "ui/persona_cast_character_screen.json", + "common_cast_modal_top_bar/close_button_holder": "ui/persona_cast_character_screen.json", + "cast_character_select_main": "ui/persona_cast_character_screen.json", + "cast_character_select_main/modal_inner_background": "ui/persona_cast_character_screen.json", + "cast_character_select_main/main_content_horizontal_stack": "ui/persona_cast_character_screen.json", + "cast_character_select_main/main_content_horizontal_stack/cast_grid": "ui/persona_cast_character_screen.json", + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer": "ui/persona_cast_character_screen.json", + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/top_fill": "ui/persona_cast_character_screen.json", + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/skin_viewer_panel": "ui/persona_cast_character_screen.json", + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_fill": "ui/persona_cast_character_screen.json", + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_padding": "ui/persona_cast_character_screen.json", + "cast_scroll_view_panel": "ui/persona_cast_character_screen.json", + "cast_grid_with_buttons": "ui/persona_cast_character_screen.json", + "cast_grid_with_buttons/top_spacing": "ui/persona_cast_character_screen.json", + "cast_grid_with_buttons/cast_grid": "ui/persona_cast_character_screen.json", + "cast_grid_with_buttons/bottom_spacing": "ui/persona_cast_character_screen.json", + "cast_grid_panel": "ui/persona_cast_character_screen.json", + "cast_grid_panel/cast_grid": "ui/persona_cast_character_screen.json", + "cast_single_character_button_panel": "ui/persona_cast_character_screen.json", + "cast_single_character_button_panel/cast_character_button": "ui/persona_cast_character_screen.json", + "cast_single_character_button_panel/cast_character_button/background_image": "ui/persona_cast_character_screen.json", + "cast_single_character_button_panel/cast_character_button/selected": "ui/persona_cast_character_screen.json", + "cast_single_character_button_panel/cast_character_button/default": "ui/persona_cast_character_screen.json", + "cast_single_character_button_panel/cast_character_button/hover": "ui/persona_cast_character_screen.json", + "cast_single_character_button_panel/cast_character_button/pressed": "ui/persona_cast_character_screen.json", + "cast_single_character_button_panel/cast_character_button/button_outline": "ui/persona_cast_character_screen.json", + "cast_single_character_button_panel/cast_character_button/button_outline/cast_character_content": "ui/persona_cast_character_screen.json", + "cast_character_button_content_panel": "ui/persona_cast_character_screen.json", + "cast_character_button_content_panel/cast_single_character_content_visible_panel": "ui/persona_cast_character_screen.json", + "cast_character_button_content_panel/cast_single_character_content_visible_panel/cast_single_character_button_content": "ui/persona_cast_character_screen.json", + "in_use_grid_item": "ui/persona_cast_character_screen.json", + "persona_cast_paper_doll_panel": "ui/persona_cast_character_screen.json", + "persona_cast_paper_doll_panel/preset_input_panel": "ui/persona_cast_character_screen.json", + "character_loading_anim": "ui/persona_cast_character_screen.json", + "character_loading_anim_panel": "ui/persona_cast_character_screen.json", + "character_loading_anim_panel/character_loading_anim": "ui/persona_cast_character_screen.json", + "skin_viewer_panel_skin_model": "ui/persona_cast_character_screen.json", + "skin_viewer_panel_skin_model/skin_model": "ui/persona_cast_character_screen.json", + "cast_character_screen_right_side_model": "ui/persona_cast_character_screen.json", + "cast_character_screen_right_side_model/skin_model_panel": "ui/persona_cast_character_screen.json", + "cast_character_screen_right_side_model/skin_model_loading_anim": "ui/persona_cast_character_screen.json", + "cast_character_screen_right_side_model/skin_model_label": "ui/persona_cast_character_screen.json", + "common_background_blocker": "ui/persona_cast_character_screen.json", + "common_background_blocker/modal_background_button": "ui/persona_cast_character_screen.json", + "common_preview_page_framework": "ui/persona_cast_character_screen.json", + "common_preview_page_framework/background": "ui/persona_cast_character_screen.json", + "common_preview_page_framework/cast_preview_modal": "ui/persona_cast_character_screen.json", + "cast_preview_page_one": "ui/persona_cast_character_screen.json", + "cast_preview_page_two": "ui/persona_cast_character_screen.json", + "cast_preview_page_one_inner_section": "ui/persona_cast_character_screen.json", + "cast_preview_page_one_inner_section/modal_inner_background": "ui/persona_cast_character_screen.json", + "cast_preview_page_one_inner_section/cast_content": "ui/persona_cast_character_screen.json", + "cast_preview_page_one_inner_section/cast_content/cast_image_cycler": "ui/persona_cast_character_screen.json", + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel": "ui/persona_cast_character_screen.json", + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel": "ui/persona_cast_character_screen.json", + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel/text_cycler": "ui/persona_cast_character_screen.json", + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/buffer_panel": "ui/persona_cast_character_screen.json", + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_shoulder_button_display_panel": "ui/persona_cast_character_screen.json", + "chevron_image_panel": "ui/persona_cast_character_screen.json", + "chevron_image_panel/chevron_image": "ui/persona_cast_character_screen.json", + "chevron_button": "ui/persona_cast_character_screen.json", + "shift_page_panel": "ui/persona_cast_character_screen.json", + "shift_page_panel/centering_panel": "ui/persona_cast_character_screen.json", + "shift_page_panel/centering_panel/0": "ui/persona_cast_character_screen.json", + "shift_page_left_panel": "ui/persona_cast_character_screen.json", + "shift_page_right_panel": "ui/persona_cast_character_screen.json", + "horizontal_8px_padding": "ui/persona_cast_character_screen.json", + "horizontal_20px_padding": "ui/persona_cast_character_screen.json", + "ftue_subpage_indicator_panel": "ui/persona_cast_character_screen.json", + "ftue_subpage_indicator_panel/controls_shoulder_button_display": "ui/persona_cast_character_screen.json", + "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_padding": "ui/persona_cast_character_screen.json", + "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_panel": "ui/persona_cast_character_screen.json", + "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_padding": "ui/persona_cast_character_screen.json", + "ftue_subpage_indicator_panel/controls_shoulder_button_display/page_indicator_grid": "ui/persona_cast_character_screen.json", + "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_padding": "ui/persona_cast_character_screen.json", + "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_panel": "ui/persona_cast_character_screen.json", + "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_padding": "ui/persona_cast_character_screen.json", + "individaul_cast_page_indicator": "ui/persona_cast_character_screen.json", + "individaul_cast_page_indicator/panel_when_current_page": "ui/persona_cast_character_screen.json", + "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding": "ui/persona_cast_character_screen.json", + "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding/cast_dot": "ui/persona_cast_character_screen.json", + "individaul_cast_page_indicator/panel_when_not_current_page": "ui/persona_cast_character_screen.json", + "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding": "ui/persona_cast_character_screen.json", + "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding/cast_dot": "ui/persona_cast_character_screen.json", + "how_to_section": "ui/persona_cast_character_screen.json", + "how_to_section/how_to_image": "ui/persona_cast_character_screen.json", + "how_to_section/how_to_label_section": "ui/persona_cast_character_screen.json", + "how_to_section/how_to_label_section/how_to_label": "ui/persona_cast_character_screen.json", + "cast_preview_page_two_inner_section": "ui/persona_cast_character_screen.json", + "cast_preview_page_two_inner_section/how_to_section_stack": "ui/persona_cast_character_screen.json", + "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_left": "ui/persona_cast_character_screen.json", + "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel": "ui/persona_cast_character_screen.json", + "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel/divider": "ui/persona_cast_character_screen.json", + "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_right": "ui/persona_cast_character_screen.json", + }, + "persona_common": { + "icon_image": "ui/persona_common.json", + "mashup_world": "ui/persona_common.json", + "mashup_hangar": "ui/persona_common.json", + "mashup_paintbrush": "ui/persona_common.json", + "info_bulb_icon": "ui/persona_common.json", + "green_checkmark_icon": "ui/persona_common.json", + "persona_screen_background_content": "ui/persona_common.json", + "loading_icon": "ui/persona_common.json", + "focus_border": "ui/persona_common.json", + "selected_border": "ui/persona_common.json", + "equipped_border": "ui/persona_common.json", + "progress_loading": "ui/persona_common.json", + "progress_loading/progress_loading": "ui/persona_common.json", + "title_rarity_positionable_title": "ui/persona_common.json", + "generic_title_panel": "ui/persona_common.json", + "generic_title_panel/title_label": "ui/persona_common.json", + "rarity_bar": "ui/persona_common.json", + "item_rarity_color_background": "ui/persona_common.json", + "piece_item_display": "ui/persona_common.json", + "piece_item_display/item_renderer": "ui/persona_common.json", + "piece_item_display/item_renderer/background": "ui/persona_common.json", + "piece_item_display/item_renderer/item_image": "ui/persona_common.json", + "piece_item_display/item_renderer/rarity_bar_panel": "ui/persona_common.json", + "piece_item_display/item_renderer/extra_control": "ui/persona_common.json", + "piece_item_display/item_renderer/extra_control/control_instance": "ui/persona_common.json", + "piece_item_display/loading_progress_spinner": "ui/persona_common.json", + "wheel_state": "ui/persona_common.json", + "emote_label": "ui/persona_common.json", + "touch_name_label": "ui/persona_common.json", + "emote_image": "ui/persona_common.json", + "emote_image/empty": "ui/persona_common.json", + "emote_image/emote_preview": "ui/persona_common.json", + "emote_image/emote_preview/valid": "ui/persona_common.json", + "emote_image/emote_preview/valid_no_image": "ui/persona_common.json", + "emote_image/emote_preview/valid_no_image/valid_text": "ui/persona_common.json", + "keyboard_hotkey_helpers": "ui/persona_common.json", + "keyboard_hotkey_helpers/keyboard_1": "ui/persona_common.json", + "keyboard_hotkey_helpers/keyboard_2": "ui/persona_common.json", + "keyboard_hotkey_helpers/keyboard_3": "ui/persona_common.json", + "keyboard_hotkey_helpers/keyboard_4": "ui/persona_common.json", + "gamepad_hotkey_helpers": "ui/persona_common.json", + "gamepad_hotkey_helpers/quick_select_gamepad_helpers": "ui/persona_common.json", + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_y": "ui/persona_common.json", + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_b": "ui/persona_common.json", + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_a": "ui/persona_common.json", + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_x": "ui/persona_common.json", + "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel": "ui/persona_common.json", + "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel/analog_select_gamepad_helper": "ui/persona_common.json", + "emote_wheel_slot_content": "ui/persona_common.json", + "emote_wheel_slot_content/image_0": "ui/persona_common.json", + "emote_wheel_slot_content/touch_label_0": "ui/persona_common.json", + "selection_wheel": "ui/persona_common.json", + "emote_selection_wheel": "ui/persona_common.json", + "emote_selection_wheel/default_state": "ui/persona_common.json", + "emote_selection_wheel/emote_slot_0_content": "ui/persona_common.json", + "emote_selection_wheel/emote_slot_1_content": "ui/persona_common.json", + "emote_selection_wheel/emote_slot_2_content": "ui/persona_common.json", + "emote_selection_wheel/emote_slot_3_content": "ui/persona_common.json", + "emote_wheel_panel": "ui/persona_common.json", + "emote_wheel_panel/emote_name": "ui/persona_common.json", + "emote_wheel_panel/emote_wheel_content_panel": "ui/persona_common.json", + "emote_wheel_panel/emote_wheel_content_panel/gamepad_helpers": "ui/persona_common.json", + "emote_wheel_panel/emote_wheel_content_panel/keyboard_helpers": "ui/persona_common.json", + "emote_wheel_panel/emote_wheel_content_panel/emote_wheel": "ui/persona_common.json", + }, + "persona_popups": { + "no_content_panel": "ui/persona_popups.json", + "common_image": "ui/persona_popups.json", + "common_icon": "ui/persona_popups.json", + "create_persona_choice_checked_image": "ui/persona_popups.json", + "create_persona_choice_unchecked_image": "ui/persona_popups.json", + "modal_window_input_blocker": "ui/persona_popups.json", + "modal_popup_background": "ui/persona_popups.json", + "general_text_field": "ui/persona_popups.json", + "title_text": "ui/persona_popups.json", + "popup_title": "ui/persona_popups.json", + "popup_content": "ui/persona_popups.json", + "popup_ok_button": "ui/persona_popups.json", + "popup_frame": "ui/persona_popups.json", + "popup_frame/title_label": "ui/persona_popups.json", + "popup_frame/close_button": "ui/persona_popups.json", + "popup_frame/content": "ui/persona_popups.json", + "popup_frame/ok_button": "ui/persona_popups.json", + "popup_info_panel": "ui/persona_popups.json", + "popup_info_panel/background": "ui/persona_popups.json", + "popup_info_panel/frame": "ui/persona_popups.json", + "common_dialog": "ui/persona_popups.json", + "common_dialog/background": "ui/persona_popups.json", + "common_dialog/panel": "ui/persona_popups.json", + "popup_dialog_bg": "ui/persona_popups.json", + "popup_dialog_bg/background_image": "ui/persona_popups.json", + "popup_dialog_bg/title_panel": "ui/persona_popups.json", + "popup_dialog_bg/title_panel/title": "ui/persona_popups.json", + "popup_dialog_bg/popup_content": "ui/persona_popups.json", + "icon_title_bar": "ui/persona_popups.json", + "icon_title_bar/icon": "ui/persona_popups.json", + "icon_title_bar/padding": "ui/persona_popups.json", + "icon_title_bar/text_title_panel": "ui/persona_popups.json", + "popup_common": "ui/persona_popups.json", + "popup_common/background": "ui/persona_popups.json", + "popup_common/background/text_stack_panel": "ui/persona_popups.json", + "popup_dialog__difference_information": "ui/persona_popups.json", + "differences_left_details": "ui/persona_popups.json", + "differences_left_section": "ui/persona_popups.json", + "differences_left_section/title_bar": "ui/persona_popups.json", + "differences_left_section/padding_1": "ui/persona_popups.json", + "differences_left_section/details": "ui/persona_popups.json", + "differences_detail_image": "ui/persona_popups.json", + "differences_title_card_display": "ui/persona_popups.json", + "differences_title_card_display/left": "ui/persona_popups.json", + "differences_title_card_display/padding_1": "ui/persona_popups.json", + "differences_title_card_display/right": "ui/persona_popups.json", + "differences_persona_detail_section": "ui/persona_popups.json", + "differences_classic_skin_detail_section": "ui/persona_popups.json", + "different_info_panel_contents": "ui/persona_popups.json", + "different_info_panel_contents/character_display": "ui/persona_popups.json", + "different_info_panel_contents/item_1_padding": "ui/persona_popups.json", + "different_info_panel_contents/divider": "ui/persona_popups.json", + "different_info_panel_contents/item_2_padding": "ui/persona_popups.json", + "different_info_panel_contents/classic_skin_display": "ui/persona_popups.json", + "popup_dialog__preview_difference_information": "ui/persona_popups.json", + "popup_dialog__delete_persona": "ui/persona_popups.json", + "popup_dialog__delete_persona/popup_dialog_bg": "ui/persona_popups.json", + "popup_dialog_delete_persona_content": "ui/persona_popups.json", + "popup_dialog_delete_persona_content/image": "ui/persona_popups.json", + "popup_dialog_delete_persona_content/message": "ui/persona_popups.json", + "popup_dialog_delete_persona_content/buttons": "ui/persona_popups.json", + "alex_warning": "ui/persona_popups.json", + "delete_popup_dialog_message": "ui/persona_popups.json", + "delete_persona_button_stack": "ui/persona_popups.json", + "delete_persona_button_stack/left_button": "ui/persona_popups.json", + "delete_persona_button_stack/padding": "ui/persona_popups.json", + "delete_persona_button_stack/right_button": "ui/persona_popups.json", + "delete_persona_left_button": "ui/persona_popups.json", + "delete_persona_right_button": "ui/persona_popups.json", + "popup_dialog__create_persona": "ui/persona_popups.json", + "create_persona_display": "ui/persona_popups.json", + "create_persona_display/vertical_padding_2px": "ui/persona_popups.json", + "create_persona_display/stack_content": "ui/persona_popups.json", + "create_persona_choice_stack": "ui/persona_popups.json", + "create_persona_choice_stack/background1": "ui/persona_popups.json", + "create_persona_choice_stack/background2": "ui/persona_popups.json", + "create_persona_choice_character": "ui/persona_popups.json", + "create_persona_choice_character/create_persona_choice_character": "ui/persona_popups.json", + "select_default_character_button_vertical_panel": "ui/persona_popups.json", + "select_default_character_button_vertical_panel/padding": "ui/persona_popups.json", + "select_default_character_button_vertical_panel/select_default_character_button_panel": "ui/persona_popups.json", + "select_default_character_button_vertical_panel/select_default_character_button_panel/select_default_character_button": "ui/persona_popups.json", + "select_default_character_button": "ui/persona_popups.json", + "create_persona_choice_classic_skin": "ui/persona_popups.json", + "create_persona_choice_button": "ui/persona_popups.json", + "create_persona_choice_button/choice_toggle": "ui/persona_popups.json", + "create_persona_choice_background": "ui/persona_popups.json", + "create_persona_choice_background/choice_title_bar": "ui/persona_popups.json", + "create_persona_choice_background/choice_details_body": "ui/persona_popups.json", + "create_persona_choice_background/choice_bottom_content": "ui/persona_popups.json", + "create_persona_choice_title_bar": "ui/persona_popups.json", + "create_persona_choice_title_bar/checkbox": "ui/persona_popups.json", + "create_persona_choice_title_bar/spacing": "ui/persona_popups.json", + "create_persona_choice_title_bar/icon_title": "ui/persona_popups.json", + "create_persona_choice_check_positioning": "ui/persona_popups.json", + "create_persona_choice_check_positioning/toggle_image": "ui/persona_popups.json", + "create_persona_choice_icon_title": "ui/persona_popups.json", + "create_persona_choice_detail_panel": "ui/persona_popups.json", + "create_persona_choice_detail_panel/spacing": "ui/persona_popups.json", + "create_persona_choice_detail_panel/choice_details_body": "ui/persona_popups.json", + "create_persona_choice_detail": "ui/persona_popups.json", + "popup_dialog__invalid_custom_skin": "ui/persona_popups.json", + "popup_dialog__invalid_custom_skin/popup_dialog_bg": "ui/persona_popups.json", + "popup_dialog_invalid_custom_skin_content": "ui/persona_popups.json", + "popup_dialog_invalid_custom_skin_content/popup_dialog_message": "ui/persona_popups.json", + "popup_dialog_invalid_custom_skin_content/popup_dialog_middle_button": "ui/persona_popups.json", + "popup_dialog__upsell_without_store": "ui/persona_popups.json", + "popup_dialog__choose_skin_type": "ui/persona_popups.json", + "popup_dialog__choose_skin_type/popup_dialog_bg": "ui/persona_popups.json", + "popup_dialog_choose_skin_type_content": "ui/persona_popups.json", + "popup_dialog_choose_skin_type_content/popup_dialog_message": "ui/persona_popups.json", + "popup_dialog_choose_skin_type_content/left": "ui/persona_popups.json", + "popup_dialog_choose_skin_type_content/right": "ui/persona_popups.json", + "popup_dialog_choose_skin_type_panel": "ui/persona_popups.json", + "popup_dialog_choose_skin_type_panel/choose_skin_type_button": "ui/persona_popups.json", + "popup_dialog_skin_model": "ui/persona_popups.json", + "popup_dialog_skin_model/paper_doll": "ui/persona_popups.json", + "popup_dialog__custom_skin_info": "ui/persona_popups.json", + "popup_dialog__custom_skin_info/background_image": "ui/persona_popups.json", + "popup_dialog__custom_skin_info/popup_dialog_bg": "ui/persona_popups.json", + "custom_skin_info_panel_text": "ui/persona_popups.json", + "custom_skin_info_panel": "ui/persona_popups.json", + "custom_skin_info_panel/message": "ui/persona_popups.json", + "custom_skin_info_panel/button_group": "ui/persona_popups.json", + "custom_skin_info_button_collection": "ui/persona_popups.json", + "custom_skin_info_button_collection/settings": "ui/persona_popups.json", + "custom_skin_info_button_collection/vertical_4_padding": "ui/persona_popups.json", + "custom_skin_info_button_collection/close": "ui/persona_popups.json", + "popup_dialog_close_button": "ui/persona_popups.json", + "usage_limited_settings_profile_button": "ui/persona_popups.json", + "custom_skin_popup_dialog_bg": "ui/persona_popups.json", + "custom_skin_popup_dialog_bg/background_image": "ui/persona_popups.json", + "custom_skin_popup_dialog_bg/vertical_align_title": "ui/persona_popups.json", + "custom_skin_popup_dialog_bg/vertical_align_title/title": "ui/persona_popups.json", + "custom_skin_popup_dialog_bg/popup_content": "ui/persona_popups.json", + "popup_dialog__emote_equip_slot_editor": "ui/persona_popups.json", + "popup_dialog__emote_equip_slot_editor/background_image": "ui/persona_popups.json", + "popup_dialog__emote_equip_slot_editor/popup_emote_wheel_dialog": "ui/persona_popups.json", + "popup_emote_wheel_dialog": "ui/persona_popups.json", + "popup_emote_wheel_dialog/popup_background": "ui/persona_popups.json", + "emote_equip_slot_content": "ui/persona_popups.json", + "emote_equip_slot_content/close": "ui/persona_popups.json", + "emote_equip_slot_content/emote_wheel_content_panel": "ui/persona_popups.json", + "emote_equip_slot_content/emote_wheel_content_panel/cancel": "ui/persona_popups.json", + "emote_equip_slot_content/emote_wheel_content_panel/emote_wheel_prompt_content": "ui/persona_popups.json", + "close_emote_popup_controller": "ui/persona_popups.json", + "close_emote_popup_controller/close_ui": "ui/persona_popups.json", + "emote_wheel_content": "ui/persona_popups.json", + "popup_dialog__realms_plus_extra_info": "ui/persona_popups.json", + "popup_dialog__realms_plus_extra_info/background_image": "ui/persona_popups.json", + "popup_dialog__realms_plus_extra_info/dialog_bg": "ui/persona_popups.json", + "realms_plus_extra_info_popup_dialog_bg": "ui/persona_popups.json", + "realms_plus_extra_info_popup_dialog_bg/background_image": "ui/persona_popups.json", + "realms_plus_extra_info_popup_dialog_bg/title": "ui/persona_popups.json", + "realms_plus_extra_info_popup_dialog_bg/popup_content": "ui/persona_popups.json", + "realms_extra_info_panel_text": "ui/persona_popups.json", + "realms_extra_info_panel": "ui/persona_popups.json", + "realms_extra_info_panel/realms_extra": "ui/persona_popups.json", + "realms_extra_info_panel/button_group": "ui/persona_popups.json", + "realms_extra_info_button_collection": "ui/persona_popups.json", + "realms_extra_info_button_collection/close": "ui/persona_popups.json", + "realms_extra_info_content": "ui/persona_popups.json", + "realms_extra_info_content/the_spread": "ui/persona_popups.json", + "realms_extra_info_content/the_spread/pack_image": "ui/persona_popups.json", + "realms_extra_info_content/the_spread/horizontal_6_padding": "ui/persona_popups.json", + "realms_extra_info_content/the_spread/the_info_stack": "ui/persona_popups.json", + "realms_extra_info_content/the_spread/the_info_stack/skins_and_world": "ui/persona_popups.json", + "realms_extra_info_content/the_spread/the_info_stack/padding": "ui/persona_popups.json", + "realms_extra_info_content/the_spread/the_info_stack/textures_and_usage": "ui/persona_popups.json", + "pack_information_textures_and_usage_tooltip": "ui/persona_popups.json", + "pack_information_textures_and_usage_tooltip/textures": "ui/persona_popups.json", + "pack_information_textures_and_usage_tooltip/mid_padding": "ui/persona_popups.json", + "pack_information_textures_and_usage_tooltip/appearance_status": "ui/persona_popups.json", + "roamable_status_notification_panel": "ui/persona_popups.json", + "roamable_status_notification_panel/appearance_status_notification": "ui/persona_popups.json", + "roamable_status_notification_panel/roamable_status": "ui/persona_popups.json", + "appearance_status_image_panel": "ui/persona_popups.json", + "appearance_status_image_panel/usage_limited": "ui/persona_popups.json", + "appearance_status_image_panel/usage_not_limited": "ui/persona_popups.json", + "pack_information_skins_and_world": "ui/persona_popups.json", + "pack_information_skins_and_world/skins": "ui/persona_popups.json", + "pack_information_skins_and_world/mid_padding": "ui/persona_popups.json", + "pack_information_skins_and_world/worlds": "ui/persona_popups.json", + "skin_info_label_and_image": "ui/persona_popups.json", + "skin_info_label_and_image/content_stack": "ui/persona_popups.json", + "skin_info_image_panel": "ui/persona_popups.json", + "skin_info_image_panel/image": "ui/persona_popups.json", + "skin_info_label_panel_label": "ui/persona_popups.json", + "skin_info_label_panel": "ui/persona_popups.json", + "skin_info_label_panel/label": "ui/persona_popups.json", + "skin_info_content_stack": "ui/persona_popups.json", + "skin_info_content_stack/image_panel": "ui/persona_popups.json", + "skin_info_content_stack/horizontal_2_padding": "ui/persona_popups.json", + "skin_info_content_stack/label_panel": "ui/persona_popups.json", + "realms_extra_info_pack_info": "ui/persona_popups.json", + "popup_toast": "ui/persona_popups.json", + }, + "play": { + "label_background": "ui/play_screen.json", + "dark_label_background": "ui/play_screen.json", + "world_screenshot_base": "ui/play_screen.json", + "collection_world_screenshot": "ui/play_screen.json", + "collection_world_screenshot/screenshot_picture": "ui/play_screen.json", + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel": "ui/play_screen.json", + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/gradient_image_realmsplus_expired": "ui/play_screen.json", + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired": "ui/play_screen.json", + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired/exclamationmark": "ui/play_screen.json", + "world_item_grid_base": "ui/play_screen.json", + "edit_icon": "ui/play_screen.json", + "realms_stories_icon": "ui/play_screen.json", + "realms_stories_icon_animated": "ui/play_screen.json", + "realms_slots_edit_icon": "ui/play_screen.json", + "worlds_icon": "ui/play_screen.json", + "realms_icon": "ui/play_screen.json", + "realms_chevron": "ui/play_screen.json", + "friends_icon_1": "ui/play_screen.json", + "friends_icon_2": "ui/play_screen.json", + "bell_icon": "ui/play_screen.json", + "invite_icon": "ui/play_screen.json", + "delete_icon": "ui/play_screen.json", + "world_download_icon": "ui/play_screen.json", + "third_party_servers_icon": "ui/play_screen.json", + "lan_icon": "ui/play_screen.json", + "friends_server_icon": "ui/play_screen.json", + "cross_platform_friends_server_icon": "ui/play_screen.json", + "realms_remove_icon": "ui/play_screen.json", + "game_online_icon": "ui/play_screen.json", + "game_offline_icon": "ui/play_screen.json", + "game_unavailable_icon": "ui/play_screen.json", + "import_icon": "ui/play_screen.json", + "add_server_icon": "ui/play_screen.json", + "server_tab_icon": "ui/play_screen.json", + "realms_art_icon": "ui/play_screen.json", + "realms_text_background": "ui/play_screen.json", + "connected_storage": "ui/play_screen.json", + "feedback_icon": "ui/play_screen.json", + "local_only_storage": "ui/play_screen.json", + "local_and_cloud_storage": "ui/play_screen.json", + "cloud_only_storage": "ui/play_screen.json", + "left_arrow_icon": "ui/play_screen.json", + "right_arrow_icon": "ui/play_screen.json", + "small_progress_panel": "ui/play_screen.json", + "sign_in_realms_image": "ui/play_screen.json", + "sign_in_realms_image/chevron": "ui/play_screen.json", + "sign_in_realms_image/portal": "ui/play_screen.json", + "realms_sign_in_prompt_label": "ui/play_screen.json", + "realms_sign_in_prompt": "ui/play_screen.json", + "realms_sign_in_prompt/realms_sign_in_prompt_label": "ui/play_screen.json", + "realms_sign_in_prompt_friends": "ui/play_screen.json", + "realms_sign_in_prompt_friends/realms_sign_in_prompt_label_friends": "ui/play_screen.json", + "sign_in_to_view_realms_content_panel": "ui/play_screen.json", + "sign_in_to_view_realms_content_panel/sign_in_realms_image": "ui/play_screen.json", + "sign_in_to_view_realms_content_panel/realms_sign_in_prompt": "ui/play_screen.json", + "sign_in_to_view_realms_content_panel_friends": "ui/play_screen.json", + "sign_in_to_view_realms_button": "ui/play_screen.json", + "sign_in_to_view_realms_button_friends": "ui/play_screen.json", + "realms_list_text": "ui/play_screen.json", + "realms_world_header": "ui/play_screen.json", + "realms_world_details": "ui/play_screen.json", + "realms_world_type": "ui/play_screen.json", + "realms_world_player_count": "ui/play_screen.json", + "realms_world_game_status_icon": "ui/play_screen.json", + "realms_world_game_status_icon/game_online_icon": "ui/play_screen.json", + "realms_world_game_status_icon/game_unavailable_icon": "ui/play_screen.json", + "realms_world_game_status_icon/game_offline_icon": "ui/play_screen.json", + "realms_world_text_panel": "ui/play_screen.json", + "realms_world_text_panel/realms_world_header": "ui/play_screen.json", + "realms_world_text_panel/realms_world_details": "ui/play_screen.json", + "realms_world_trial_text_panel": "ui/play_screen.json", + "realms_world_trial_text_panel/realms_world_header_text": "ui/play_screen.json", + "realms_world_trial_text_panel/realms_world_details": "ui/play_screen.json", + "realms_world_content_text_area_panel": "ui/play_screen.json", + "realms_world_content_text_area_panel/realms_world_text_panel": "ui/play_screen.json", + "realms_trial_content_text_area_panel": "ui/play_screen.json", + "realms_trial_content_text_area_panel/realms_world_trial_text_panel": "ui/play_screen.json", + "realms_world_content_status_area_panel": "ui/play_screen.json", + "realms_world_content_status_area_panel/world_player_count_text_panel": "ui/play_screen.json", + "realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count": "ui/play_screen.json", + "realms_world_content_status_area_panel/padding": "ui/play_screen.json", + "realms_world_content_status_area_panel/realms_world_game_status_icon": "ui/play_screen.json", + "realms_world_content_status_area_panel_container": "ui/play_screen.json", + "realms_world_content_status_area_panel_container/realms_world_status_panel": "ui/play_screen.json", + "realms_world_content_status_area_panel_container/realms_world_status_panel/realms_world_content_status_area_panel": "ui/play_screen.json", + "realms_world_content_status_area_panel_container/realms_world_type": "ui/play_screen.json", + "realms_world_content_panel": "ui/play_screen.json", + "realms_world_content_panel/realm_screenshot": "ui/play_screen.json", + "realms_world_content_panel/padding": "ui/play_screen.json", + "realms_world_content_panel/realms_world_content_text_area_panel": "ui/play_screen.json", + "realms_world_content_panel/realms_world_content_status_area_panel": "ui/play_screen.json", + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_content_status_area_panel_container": "ui/play_screen.json", + "realms_trial_content_panel": "ui/play_screen.json", + "realms_trial_content_panel/realm_screenshot": "ui/play_screen.json", + "realms_trial_content_panel/padding": "ui/play_screen.json", + "realms_trial_content_panel/realms_trial_content_text_area_panel": "ui/play_screen.json", + "realms_world_item_button": "ui/play_screen.json", + "realms_world_edit_button": "ui/play_screen.json", + "realms_feed_button_content": "ui/play_screen.json", + "realms_feed_button_content/default_icon": "ui/play_screen.json", + "realms_feed_button_content/unread_icon_active": "ui/play_screen.json", + "persistent_realms_feed_button_control": "ui/play_screen.json", + "realms_feed_button": "ui/play_screen.json", + "leave_friends_realm_button": "ui/play_screen.json", + "unread_story_count_text": "ui/play_screen.json", + "unread_story_count_text_background": "ui/play_screen.json", + "unread_story_count_panel": "ui/play_screen.json", + "unread_story_count_panel/text": "ui/play_screen.json", + "unread_story_count_panel/text/background": "ui/play_screen.json", + "realms_world_item": "ui/play_screen.json", + "realms_world_item/realms_button_panel": "ui/play_screen.json", + "realms_world_item/realms_button_panel/realms_world_item_button": "ui/play_screen.json", + "realms_world_item/realms_button_panel/tts_border": "ui/play_screen.json", + "realms_world_item/edit_panel": "ui/play_screen.json", + "realms_world_item/edit_panel/realms_world_edit_button": "ui/play_screen.json", + "realms_world_item/edit_panel/realms_world_expiry_notification_image": "ui/play_screen.json", + "realms_world_item/feed_panel_with_unread_count": "ui/play_screen.json", + "realms_world_item/feed_panel_with_unread_count/feed_panel": "ui/play_screen.json", + "realms_world_item/feed_panel_with_unread_count/feed_panel/realms_feed_button": "ui/play_screen.json", + "realms_world_item/feed_panel_with_unread_count/unread_story_count": "ui/play_screen.json", + "realms_world_item/leave_realm_panel": "ui/play_screen.json", + "realms_world_item/leave_realm_panel/leave_friends_realm_button": "ui/play_screen.json", + "realms_world_item_grid": "ui/play_screen.json", + "network_world_header": "ui/play_screen.json", + "network_world_header/network_world_header_icon": "ui/play_screen.json", + "network_world_header/spacer": "ui/play_screen.json", + "network_world_header/header_panel": "ui/play_screen.json", + "network_world_header/header_panel/network_world_header_text": "ui/play_screen.json", + "network_world_details": "ui/play_screen.json", + "network_world_player_count": "ui/play_screen.json", + "network_world_player_count/count": "ui/play_screen.json", + "network_world_game_status_icon": "ui/play_screen.json", + "network_world_game_status_icon/game_online_icon": "ui/play_screen.json", + "network_world_game_status_icon/game_unavailable_icon": "ui/play_screen.json", + "network_world_game_status_icon/game_offline_icon": "ui/play_screen.json", + "network_world_text_panel": "ui/play_screen.json", + "network_world_text_panel/network_world_header": "ui/play_screen.json", + "network_world_text_panel/network_world_details": "ui/play_screen.json", + "network_world_content_text_area_panel": "ui/play_screen.json", + "network_world_content_text_area_panel/network_world_text_panel": "ui/play_screen.json", + "network_world_content_status_area_panel": "ui/play_screen.json", + "network_world_content_status_area_panel/network_player_count_text_panel": "ui/play_screen.json", + "network_world_content_status_area_panel/network_player_count_text_panel/network_world_player_count": "ui/play_screen.json", + "network_world_content_status_area_panel/padding": "ui/play_screen.json", + "network_world_content_status_area_panel/network_world_game_status_icon": "ui/play_screen.json", + "network_world_content_status_area_panel_container": "ui/play_screen.json", + "network_world_content_status_area_panel_container/network_world_status_panel": "ui/play_screen.json", + "network_world_content_status_area_panel_container/network_world_status_panel/network_world_content_status_area_panel": "ui/play_screen.json", + "network_world_content_status_area_panel_container/network_world_type": "ui/play_screen.json", + "network_world_type": "ui/play_screen.json", + "network_world_type/type": "ui/play_screen.json", + "network_world_item_button_content": "ui/play_screen.json", + "network_world_item_button_content/network_world_content_text_area_panel": "ui/play_screen.json", + "network_world_item_button_content/network_status_area_panel": "ui/play_screen.json", + "network_world_item_button_content/network_status_area_panel/network_world_content_status_area_panel_container": "ui/play_screen.json", + "network_world_item_button_content/network_world_type_icon": "ui/play_screen.json", + "network_world_item_button_content/network_world_type_icon/padding": "ui/play_screen.json", + "network_world_item_button": "ui/play_screen.json", + "network_server_world_edit_button": "ui/play_screen.json", + "network_world_item": "ui/play_screen.json", + "network_world_item/network_world_item_button": "ui/play_screen.json", + "network_world_item/tts_border": "ui/play_screen.json", + "network_world_item_grid": "ui/play_screen.json", + "network_world_item_ignore_crossplay": "ui/play_screen.json", + "network_world_item_ignore_crossplay/network_world_item_button": "ui/play_screen.json", + "label_content_template": "ui/play_screen.json", + "label_content_template/label_panel": "ui/play_screen.json", + "label_content_template/label_panel/label_panel_layout": "ui/play_screen.json", + "label_content_template/label_panel/label_panel_layout/label": "ui/play_screen.json", + "label_content_template/content": "ui/play_screen.json", + "information_panel": "ui/play_screen.json", + "information_panel/background": "ui/play_screen.json", + "information_panel/background/label_panel_layout": "ui/play_screen.json", + "information_panel/background/label_panel_layout/label": "ui/play_screen.json", + "information_panel/focus_button": "ui/play_screen.json", + "blocked_multiplayer_privileges_panel": "ui/play_screen.json", + "blocked_multiplayer_privileges_panel/background": "ui/play_screen.json", + "blocked_multiplayer_privileges_panel/background/label_panel_layout": "ui/play_screen.json", + "blocked_multiplayer_privileges_panel/background/label_panel_layout/label": "ui/play_screen.json", + "more_servers_grid": "ui/play_screen.json", + "additional_server_toggle_content": "ui/play_screen.json", + "additional_server_toggle_content/network_world_content_text_area_panel": "ui/play_screen.json", + "more_servers_label_panel": "ui/play_screen.json", + "more_servers_label_panel/list_label": "ui/play_screen.json", + "more_servers_world_item": "ui/play_screen.json", + "more_servers_world_item/additional_server_toggle_base": "ui/play_screen.json", + "more_servers_world_item/network_server_world_edit_button": "ui/play_screen.json", + "additional_server_info_panel": "ui/play_screen.json", + "additional_server_info_panel/server_info_stack_panel": "ui/play_screen.json", + "additional_server_info_panel/server_info_stack_panel/padding_1": "ui/play_screen.json", + "additional_server_info_panel/server_info_stack_panel/server_name": "ui/play_screen.json", + "additional_server_info_panel/server_info_stack_panel/padding_2": "ui/play_screen.json", + "additional_server_info_panel/server_info_stack_panel/player_count": "ui/play_screen.json", + "additional_server_info_panel/server_info_stack_panel/padding_3": "ui/play_screen.json", + "additional_server_info_panel/server_info_stack_panel/ping": "ui/play_screen.json", + "additional_server_info_panel/server_info_stack_panel/padding_4": "ui/play_screen.json", + "additional_server_info_panel/server_info_stack_panel/join_server_button": "ui/play_screen.json", + "ping_rate_icon": "ui/play_screen.json", + "ping_rate_panel": "ui/play_screen.json", + "ping_rate_panel/concurrency_stack": "ui/play_screen.json", + "ping_rate_panel/concurrency_stack/player_count": "ui/play_screen.json", + "ping_rate_panel/concurrency_stack/padding_0": "ui/play_screen.json", + "ping_rate_panel/concurrency_stack/ping_rate_icon": "ui/play_screen.json", + "add_server_info_panel": "ui/play_screen.json", + "add_server_info_panel/server_info_stack_panel": "ui/play_screen.json", + "add_server_info_panel/server_info_stack_panel/padding_0": "ui/play_screen.json", + "add_server_info_panel/server_info_stack_panel/add_server_title": "ui/play_screen.json", + "add_server_info_panel/server_info_stack_panel/padding_1": "ui/play_screen.json", + "add_server_info_panel/server_info_stack_panel/add_server_description": "ui/play_screen.json", + "third_party_featured_server_grid": "ui/play_screen.json", + "featured_server_world_item": "ui/play_screen.json", + "featured_server_world_item/server_button": "ui/play_screen.json", + "server_button_content_panel": "ui/play_screen.json", + "server_button_content_panel/top_panel": "ui/play_screen.json", + "server_button_content_panel/top_panel/third_party_server_screenshot": "ui/play_screen.json", + "server_button_content_panel/top_panel/padding_0": "ui/play_screen.json", + "server_button_content_panel/top_panel/title_panel": "ui/play_screen.json", + "server_button_content_panel/top_panel/title_panel/third_party_server_name": "ui/play_screen.json", + "server_button_content_panel/top_panel/title_panel/progress": "ui/play_screen.json", + "server_button_content_panel/padding": "ui/play_screen.json", + "server_button_content_panel/bottom_panel": "ui/play_screen.json", + "server_button_content_panel/bottom_panel/third_party_server_message": "ui/play_screen.json", + "third_party_server_content_panel": "ui/play_screen.json", + "third_party_server_content_panel/ping_rate_panel": "ui/play_screen.json", + "loading_featured_servers_panel": "ui/play_screen.json", + "loading_featured_servers_panel/load_bars": "ui/play_screen.json", + "loading_featured_servers_panel/load_bars/progress_loading_bars": "ui/play_screen.json", + "third_party_server_screenshot": "ui/play_screen.json", + "third_party_server_screenshot/picture": "ui/play_screen.json", + "third_party_server_info_panel": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/padding_0": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/server_screenshot": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/padding_1": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/server_name": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/padding_2": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/player_count": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/padding_3": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/ping": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/padding_4": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/join_server_button": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/view_offers_button": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/padding_5": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/screenshots_section": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/description_section": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/games_section": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/news_section": "ui/play_screen.json", + "third_party_server_info_panel/progress": "ui/play_screen.json", + "text_icon_number_panel": "ui/play_screen.json", + "text_icon_number_panel/text": "ui/play_screen.json", + "text_icon_number_panel/padding_0": "ui/play_screen.json", + "text_icon_number_panel/stack_panel": "ui/play_screen.json", + "text_icon_number_panel/stack_panel/icon_panel": "ui/play_screen.json", + "text_icon_number_panel/stack_panel/icon_panel/icon": "ui/play_screen.json", + "text_icon_number_panel/stack_panel/padding_1": "ui/play_screen.json", + "text_icon_number_panel/stack_panel/number": "ui/play_screen.json", + "grey_bar_panel": "ui/play_screen.json", + "grey_bar_panel/grey_bar": "ui/play_screen.json", + "grey_bar_panel/green_bar": "ui/play_screen.json", + "grey_bar_panel/padding": "ui/play_screen.json", + "screenshots_section_panel": "ui/play_screen.json", + "screenshots_section_panel/divider_0": "ui/play_screen.json", + "screenshots_section_panel/padding_0": "ui/play_screen.json", + "screenshots_section_panel/screenshots_label": "ui/play_screen.json", + "screenshots_section_panel/padding_1": "ui/play_screen.json", + "screenshots_section_panel/screenshots": "ui/play_screen.json", + "screenshots_section_panel/padding_2": "ui/play_screen.json", + "screenshots_section_panel/navigation_panel": "ui/play_screen.json", + "screenshots_section_panel/navigation_panel/left_arrow_button": "ui/play_screen.json", + "screenshots_section_panel/navigation_panel/padding_0": "ui/play_screen.json", + "screenshots_section_panel/navigation_panel/navigation_bar": "ui/play_screen.json", + "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar": "ui/play_screen.json", + "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar/grey_bar_factory_panel": "ui/play_screen.json", + "screenshots_section_panel/navigation_panel/padding_1": "ui/play_screen.json", + "screenshots_section_panel/navigation_panel/right_arrow_button": "ui/play_screen.json", + "screenshots_section_panel/padding_3": "ui/play_screen.json", + "description_text_panel": "ui/play_screen.json", + "description_text_panel/contents_description": "ui/play_screen.json", + "description_section_panel": "ui/play_screen.json", + "description_section_panel/divider_0": "ui/play_screen.json", + "description_section_panel/padding_0": "ui/play_screen.json", + "description_section_panel/description_label": "ui/play_screen.json", + "description_section_panel/padding_1": "ui/play_screen.json", + "description_section_panel/read_more_panel": "ui/play_screen.json", + "description_section_panel/read_more_panel/description_text_small": "ui/play_screen.json", + "description_section_panel/read_more_panel/description_text_full": "ui/play_screen.json", + "description_section_panel/read_more_panel/description_read_more_button_panel": "ui/play_screen.json", + "description_section_panel/read_more_panel/description_read_less_button_panel": "ui/play_screen.json", + "description_section_panel/padding_3": "ui/play_screen.json", + "games_factory_object": "ui/play_screen.json", + "games_factory_object/games_factory_panel": "ui/play_screen.json", + "games_factory_object/games_factory_panel/top_panel": "ui/play_screen.json", + "games_factory_object/games_factory_panel/top_panel/game_image_panel": "ui/play_screen.json", + "games_factory_object/games_factory_panel/top_panel/game_image_panel/game_image": "ui/play_screen.json", + "games_factory_object/games_factory_panel/top_panel/padding": "ui/play_screen.json", + "games_factory_object/games_factory_panel/top_panel/game_title_panel": "ui/play_screen.json", + "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_title": "ui/play_screen.json", + "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_subtitle": "ui/play_screen.json", + "games_factory_object/games_factory_panel/bottom_panel": "ui/play_screen.json", + "games_factory_object/games_factory_panel/bottom_panel/bottom_panel": "ui/play_screen.json", + "games_factory_object/padding": "ui/play_screen.json", + "games_section_panel": "ui/play_screen.json", + "games_section_panel/divider_0": "ui/play_screen.json", + "games_section_panel/padding_0": "ui/play_screen.json", + "games_section_panel/description_label": "ui/play_screen.json", + "games_section_panel/padding_1": "ui/play_screen.json", + "games_section_panel/games_factory_panel": "ui/play_screen.json", + "games_section_panel/padding_3": "ui/play_screen.json", + "news_text_panel": "ui/play_screen.json", + "news_text_panel/contents_news": "ui/play_screen.json", + "news_section_panel": "ui/play_screen.json", + "news_section_panel/divider_0": "ui/play_screen.json", + "news_section_panel/padding_0": "ui/play_screen.json", + "news_section_panel/news_label": "ui/play_screen.json", + "news_section_panel/padding_1": "ui/play_screen.json", + "news_section_panel/read_more_panel": "ui/play_screen.json", + "news_section_panel/read_more_panel/text_stack_panel": "ui/play_screen.json", + "news_section_panel/read_more_panel/text_stack_panel/news_title_text": "ui/play_screen.json", + "news_section_panel/read_more_panel/text_stack_panel/divider_panel": "ui/play_screen.json", + "news_section_panel/read_more_panel/text_stack_panel/divider_panel/divider_0": "ui/play_screen.json", + "news_section_panel/read_more_panel/text_stack_panel/news_text_small": "ui/play_screen.json", + "news_section_panel/read_more_panel/text_stack_panel/news_text_full": "ui/play_screen.json", + "news_section_panel/read_more_panel/news_read_more_button_panel": "ui/play_screen.json", + "news_section_panel/read_more_panel/news_read_less_button_panel": "ui/play_screen.json", + "news_section_panel/padding_3": "ui/play_screen.json", + "divider": "ui/play_screen.json", + "blue_diskspace_bar": "ui/play_screen.json", + "green_diskspace_bar": "ui/play_screen.json", + "empty_diskspace_bar": "ui/play_screen.json", + "legacy_world_content_status_area_panel": "ui/play_screen.json", + "legacy_world_content_status_area_panel/world_storage_content_panel": "ui/play_screen.json", + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_separator": "ui/play_screen.json", + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information": "ui/play_screen.json", + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_label": "ui/play_screen.json", + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/padding": "ui/play_screen.json", + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar": "ui/play_screen.json", + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/local_diskspace_bar": "ui/play_screen.json", + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/legacy_diskspace_bar": "ui/play_screen.json", + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/empty_diskspace_bar": "ui/play_screen.json", + "world_list_text": "ui/play_screen.json", + "realm_screenshot": "ui/play_screen.json", + "realm_screenshot/picture": "ui/play_screen.json", + "local_world_name": "ui/play_screen.json", + "legacy_world_name": "ui/play_screen.json", + "world_lock": "ui/play_screen.json", + "local_world_game_mode": "ui/play_screen.json", + "legacy_world_game_mode": "ui/play_screen.json", + "local_world_date": "ui/play_screen.json", + "legacy_world_date": "ui/play_screen.json", + "local_world_filesize": "ui/play_screen.json", + "legacy_world_filesize": "ui/play_screen.json", + "local_world_connected_storage": "ui/play_screen.json", + "local_world_connected_storage/local_and_cloud": "ui/play_screen.json", + "local_world_connected_storage/local_only": "ui/play_screen.json", + "local_world_connected_storage/cloud_only": "ui/play_screen.json", + "local_world_lock_panel": "ui/play_screen.json", + "local_world_lock_panel/lock": "ui/play_screen.json", + "realms_plus_banner": "ui/play_screen.json", + "realms_plus_banner/realms_banner": "ui/play_screen.json", + "local_world_text_panel": "ui/play_screen.json", + "local_world_text_panel/text_indent": "ui/play_screen.json", + "local_world_text_panel/text_indent/top_side": "ui/play_screen.json", + "local_world_text_panel/text_indent/top_side/local_world_name": "ui/play_screen.json", + "local_world_text_panel/text_indent/top_side/lock_1": "ui/play_screen.json", + "local_world_text_panel/text_indent/top_side/local_world_date": "ui/play_screen.json", + "local_world_text_panel/text_indent/bottom_side": "ui/play_screen.json", + "local_world_text_panel/text_indent/bottom_side/realms_plus_icon": "ui/play_screen.json", + "local_world_text_panel/text_indent/bottom_side/pad": "ui/play_screen.json", + "local_world_text_panel/text_indent/bottom_side/local_world_game_mode": "ui/play_screen.json", + "local_world_text_panel/text_indent/bottom_side/local_world_connected_storage": "ui/play_screen.json", + "local_world_text_panel/text_indent/bottom_side/local_world_filesize": "ui/play_screen.json", + "legacy_world_text_panel": "ui/play_screen.json", + "legacy_world_text_panel/text_indent": "ui/play_screen.json", + "legacy_world_text_panel/text_indent/top_side": "ui/play_screen.json", + "legacy_world_text_panel/text_indent/top_side/legacy_world_name": "ui/play_screen.json", + "legacy_world_text_panel/text_indent/top_side/legacy_world_date": "ui/play_screen.json", + "legacy_world_text_panel/text_indent/bottom_side": "ui/play_screen.json", + "legacy_world_text_panel/text_indent/bottom_side/legacy_world_game_mode": "ui/play_screen.json", + "legacy_world_text_panel/text_indent/bottom_side/legacy_world_filesize": "ui/play_screen.json", + "beta_retail_world_text_panel": "ui/play_screen.json", + "beta_retail_world_text_panel/text_indent": "ui/play_screen.json", + "beta_retail_world_text_panel/text_indent/top_side": "ui/play_screen.json", + "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_name": "ui/play_screen.json", + "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_date": "ui/play_screen.json", + "beta_retail_world_text_panel/text_indent/bottom_side": "ui/play_screen.json", + "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_game_mode": "ui/play_screen.json", + "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_filesize": "ui/play_screen.json", + "world_content_panel": "ui/play_screen.json", + "world_content_panel/world_screenshot": "ui/play_screen.json", + "world_content_panel/world_text_panel": "ui/play_screen.json", + "ownership_verification_in_progress_content": "ui/play_screen.json", + "ownership_verification_in_progress_content/top_padding": "ui/play_screen.json", + "ownership_verification_in_progress_content/loading_bar_panel": "ui/play_screen.json", + "ownership_verification_in_progress_content/loading_bar_panel/loading_bar_animation": "ui/play_screen.json", + "ownership_verification_in_progress_content/mid_padding": "ui/play_screen.json", + "ownership_verification_in_progress_content/loading_label": "ui/play_screen.json", + "ownership_verification_in_progress_content/bottom_padding": "ui/play_screen.json", + "ownership_verification_in_progress_panel": "ui/play_screen.json", + "ownership_verification_in_progress_panel/ownership_verification_in_progress_content": "ui/play_screen.json", + "local_world_item_button": "ui/play_screen.json", + "legacy_world_item_button": "ui/play_screen.json", + "beta_retail_world_item_button": "ui/play_screen.json", + "local_world_edit_button": "ui/play_screen.json", + "legacy_world_delete_button": "ui/play_screen.json", + "legacy_world_migrate_button": "ui/play_screen.json", + "local_world_item": "ui/play_screen.json", + "local_world_item/header_button_panel": "ui/play_screen.json", + "local_world_item/signin_in_progress_panel": "ui/play_screen.json", + "legacy_world_item": "ui/play_screen.json", + "legacy_world_item/header_button_panel_with_delete": "ui/play_screen.json", + "legacy_world_item/header_button_panel_with_migrate": "ui/play_screen.json", + "legacy_world_item/header_button_panel_no_delete": "ui/play_screen.json", + "beta_retail_world_item": "ui/play_screen.json", + "local_world_item_grid": "ui/play_screen.json", + "legacy_world_item_grid": "ui/play_screen.json", + "beta_retail_local_world_item_grid": "ui/play_screen.json", + "beta_retail_legacy_world_item_grid": "ui/play_screen.json", + "common_button_template": "ui/play_screen.json", + "common_button_text": "ui/play_screen.json", + "add_friend_and_invite_panel": "ui/play_screen.json", + "add_friend_and_invite_panel/add_friend_button": "ui/play_screen.json", + "add_friend_and_invite_panel/padding_1": "ui/play_screen.json", + "add_friend_and_invite_panel/join_by_code_button": "ui/play_screen.json", + "add_friend_and_invite_panel/padding_2": "ui/play_screen.json", + "add_friend_and_invite_panel/notification_button_panel": "ui/play_screen.json", + "add_friend_and_invite_panel/notification_button_panel/notification_button": "ui/play_screen.json", + "add_friend_button": "ui/play_screen.json", + "join_by_code_button": "ui/play_screen.json", + "add_server_toggle_button": "ui/play_screen.json", + "server_toggle_base": "ui/play_screen.json", + "quick_play_button": "ui/play_screen.json", + "create_new_world_button": "ui/play_screen.json", + "create_on_realms_button_panel": "ui/play_screen.json", + "create_on_realms_button_panel/create_on_realms_button": "ui/play_screen.json", + "import_world_button": "ui/play_screen.json", + "sync_legacy_worlds_button": "ui/play_screen.json", + "notification_button_text_layout": "ui/play_screen.json", + "notification_button_text_layout/image1": "ui/play_screen.json", + "notification_button_text_layout/image2": "ui/play_screen.json", + "notification_button_text_layout/count": "ui/play_screen.json", + "notification_button_label_panel": "ui/play_screen.json", + "notification_button_label_panel/notification_button_label": "ui/play_screen.json", + "notification_content": "ui/play_screen.json", + "notification_button": "ui/play_screen.json", + "header_button_panel": "ui/play_screen.json", + "header_button_panel/buttons": "ui/play_screen.json", + "header_button_panel/buttons/primary_panel": "ui/play_screen.json", + "header_button_panel/buttons/primary_panel/primary": "ui/play_screen.json", + "header_button_panel/buttons/secondary": "ui/play_screen.json", + "header_button_panel_opt_in": "ui/play_screen.json", + "header_button_panel_opt_in/buttons": "ui/play_screen.json", + "header_button_panel_opt_in/buttons/primary_panel": "ui/play_screen.json", + "header_button_panel_opt_in/buttons/primary_panel/primary": "ui/play_screen.json", + "header_button_panel_opt_in/buttons/secondary": "ui/play_screen.json", + "header_button_panel_opt_in/buttons/ternary": "ui/play_screen.json", + "header_single_button_panel": "ui/play_screen.json", + "header_single_button_panel/buttons": "ui/play_screen.json", + "header_single_button_panel/buttons/primary": "ui/play_screen.json", + "open_account_setting_button_gamecore": "ui/play_screen.json", + "common_scroll_pane": "ui/play_screen.json", + "worlds_scroll_panel": "ui/play_screen.json", + "worlds_scroll_panel/worlds_list_stack_panel": "ui/play_screen.json", + "game_tip_item_panel": "ui/play_screen.json", + "game_tip_item_panel/info_bulb": "ui/play_screen.json", + "game_tip_item_panel/padding_1": "ui/play_screen.json", + "game_tip_item_panel/label_panel": "ui/play_screen.json", + "game_tip_item_panel/label_panel/padding_vertical": "ui/play_screen.json", + "game_tip_item_panel/label_panel/realms_warning_text": "ui/play_screen.json", + "game_tip_item_panel/label_panel/padding_vertical_1": "ui/play_screen.json", + "game_tip_item_panel/more_info_button": "ui/play_screen.json", + "realm_warning_tip": "ui/play_screen.json", + "realm_warning_tip/padding_vertical": "ui/play_screen.json", + "realm_warning_tip/info_panel": "ui/play_screen.json", + "new_ui_switch_button_options_panel": "ui/play_screen.json", + "new_ui_switch_button_options_panel/unlock_template_options_button": "ui/play_screen.json", + "new_ui_servers_switch_button_options_panel": "ui/play_screen.json", + "new_ui_servers_switch_button_options_panel/unlock_template_options_button": "ui/play_screen.json", + "new_ui_servers_switch_button_options_panel/padding_0": "ui/play_screen.json", + "worlds_stack_panel": "ui/play_screen.json", + "worlds_stack_panel/padding_0": "ui/play_screen.json", + "worlds_stack_panel/play_screen_warning": "ui/play_screen.json", + "worlds_stack_panel/header_button": "ui/play_screen.json", + "worlds_stack_panel/header_button/quick_play": "ui/play_screen.json", + "worlds_stack_panel/header_button/buttons": "ui/play_screen.json", + "worlds_stack_panel/worlds_crossplatform_disabled_panel": "ui/play_screen.json", + "worlds_stack_panel/worlds_crossplatform_disable_spacer": "ui/play_screen.json", + "worlds_stack_panel/realms_panel": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/realms_label": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/sign_in_to_view_realms_button": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/realms_previews_panel": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/realms_previews_panel/new_offers_icon": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/realms_previews_panel/realms_world_item_button": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/create_on_realms_button_panel": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/personal_realms": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/placeholder_loading_personal_realms": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/loading_friends_realms_label": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/padding": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/progress_loading_bars": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/realms_trial_panel": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/realms_trial_panel/realms_world_item_button": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel/realms_world_item_button": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/padding_1": "ui/play_screen.json", + "worlds_stack_panel/realms_multiplayer_blocked_panel": "ui/play_screen.json", + "worlds_stack_panel/realms_multiplayer_blocked_panel/text_panel": "ui/play_screen.json", + "worlds_stack_panel/realms_multiplayer_blocked_panel/open_uri_button": "ui/play_screen.json", + "worlds_stack_panel/realms_multiplayer_blocked_panel/open_account_setting_button_gamecore": "ui/play_screen.json", + "worlds_stack_panel/worlds_label": "ui/play_screen.json", + "worlds_stack_panel/grid": "ui/play_screen.json", + "worlds_stack_panel/no_local_worlds_label": "ui/play_screen.json", + "worlds_stack_panel/no_local_worlds_switch_setting": "ui/play_screen.json", + "worlds_stack_panel/beta_retail_local_padding": "ui/play_screen.json", + "worlds_stack_panel/beta_retail_local_worlds_label": "ui/play_screen.json", + "worlds_stack_panel/beta_retail_local_grid": "ui/play_screen.json", + "worlds_stack_panel/loading_legacy_worlds_panel_padding": "ui/play_screen.json", + "worlds_stack_panel/legacy_worlds_button": "ui/play_screen.json", + "worlds_stack_panel/legacy_worlds_button/legacy_worlds_label": "ui/play_screen.json", + "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel": "ui/play_screen.json", + "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel/button": "ui/play_screen.json", + "worlds_stack_panel/loading_legacy_worlds_panel": "ui/play_screen.json", + "worlds_stack_panel/loading_legacy_worlds_panel/loading_legacy_worlds_label": "ui/play_screen.json", + "worlds_stack_panel/loading_legacy_worlds_panel/padding": "ui/play_screen.json", + "worlds_stack_panel/loading_legacy_worlds_panel/progress_loading_bars": "ui/play_screen.json", + "worlds_stack_panel/padding_2": "ui/play_screen.json", + "worlds_stack_panel/upgrade_legacy_worlds_label": "ui/play_screen.json", + "worlds_stack_panel/legacy_world_item_grid": "ui/play_screen.json", + "worlds_stack_panel/beta_retail_legacy_padding": "ui/play_screen.json", + "worlds_stack_panel/beta_retail_legacy_worlds_label": "ui/play_screen.json", + "worlds_stack_panel/beta_retail_legacy_grid": "ui/play_screen.json", + "worlds_stack_panel/pad_hack_panel": "ui/play_screen.json", + "no_local_worlds_switch_setting": "ui/play_screen.json", + "no_local_worlds_switch_setting/bg": "ui/play_screen.json", + "no_local_worlds_switch_setting/bg/no_local_worlds_switch_setting": "ui/play_screen.json", + "no_local_worlds_switch_setting/bg/no_local_worlds_get_help": "ui/play_screen.json", + "no_local_worlds_launch_help": "ui/play_screen.json", + "storage_location_dropdown_panel": "ui/play_screen.json", + "storage_location_dropdown_panel/padding1": "ui/play_screen.json", + "storage_location_dropdown_panel/storage_location_dropdown": "ui/play_screen.json", + "storage_location_dropdown": "ui/play_screen.json", + "switch_storage_type_content": "ui/play_screen.json", + "light_centered_loading_label": "ui/play_screen.json", + "light_loading_label": "ui/play_screen.json", + "loading_label": "ui/play_screen.json", + "progress_loading_bars": "ui/play_screen.json", + "world_list_label_panel": "ui/play_screen.json", + "world_list_label_panel/list_label": "ui/play_screen.json", + "world_list_label_with_color_panel": "ui/play_screen.json", + "world_list_label_with_color_panel/colored_square_sizer": "ui/play_screen.json", + "world_list_label_with_color_panel/colored_square_sizer/colored_square": "ui/play_screen.json", + "world_list_label_with_color_panel/padding": "ui/play_screen.json", + "world_list_label_with_color_panel/list_label": "ui/play_screen.json", + "empty_panel": "ui/play_screen.json", + "empty_grid": "ui/play_screen.json", + "lan_servers_scroll_content": "ui/play_screen.json", + "friends_scroll_panel": "ui/play_screen.json", + "friends_scroll_panel/stack_panel": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/padding_0": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/friends_screen_warning": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/header_button": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/header_button/add_friend_and_invite_panel": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/friends_crossplatform_disabled_panel": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/friends_crossplatform_disable_spacer": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms_label": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/sign_in_to_view_realms_button_friends": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/placeholder_loading_friends_realms": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/loading_friends_realms_label": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/padding": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/progress_loading_bars": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel/message_label": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel/link_image": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/hover": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/pressed": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/no_realms_grid": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/padding_1": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/friends_grid": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/pad_hack_panel": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/no_friends_grid_message": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/switch_find_cross_platform_friend_button": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/add_friend_button_padding": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/cross_platform_friends_grid": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/no_cross_platform_friends_grid_message": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/general_no_multiplayer_grid_message": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/lan_grid": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/open_account_setting_button_gamecore": "ui/play_screen.json", + "manually_added_servers_scrolling_content": "ui/play_screen.json", + "manually_added_servers_scrolling_content/padding_0": "ui/play_screen.json", + "manually_added_servers_scrolling_content/more_servers_label": "ui/play_screen.json", + "manually_added_servers_scrolling_content/padding_1": "ui/play_screen.json", + "manually_added_servers_scrolling_content/more_servers_grid": "ui/play_screen.json", + "manually_added_servers_scrolling_content/padding_3": "ui/play_screen.json", + "servers_content_panel": "ui/play_screen.json", + "servers_content_panel/new_ui_servers_switch_button_options_panel": "ui/play_screen.json", + "servers_content_panel/featured_servers_panel": "ui/play_screen.json", + "servers_content_panel/featured_servers_panel/loading_featured_panel": "ui/play_screen.json", + "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_friends_realms_label": "ui/play_screen.json", + "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_featured_servers_panel": "ui/play_screen.json", + "servers_content_panel/featured_servers_panel/padding_1": "ui/play_screen.json", + "servers_content_panel/featured_servers_panel/featured_servers_label": "ui/play_screen.json", + "servers_content_panel/featured_servers_panel/padding_2": "ui/play_screen.json", + "servers_content_panel/featured_servers_panel/third_party_featured_grid": "ui/play_screen.json", + "servers_content_panel/featured_servers_panel/padding_3": "ui/play_screen.json", + "servers_content_panel/more_servers_divider": "ui/play_screen.json", + "servers_content_panel/more_servers_panel": "ui/play_screen.json", + "server_scroll_panel": "ui/play_screen.json", + "server_scroll_panel/stack_panel": "ui/play_screen.json", + "server_scroll_panel/stack_panel/padding_0": "ui/play_screen.json", + "server_scroll_panel/stack_panel/servers_crossplatform_disabled_panel": "ui/play_screen.json", + "server_scroll_panel/stack_panel/no_featured_server_connection": "ui/play_screen.json", + "server_scroll_panel/stack_panel/more_servers_blocked_panel": "ui/play_screen.json", + "server_scroll_panel/stack_panel/more_servers_blocked_panel/server_multiplayer_privileges_blocked": "ui/play_screen.json", + "server_scroll_panel/stack_panel/more_servers_blocked_panel/open_uri_button": "ui/play_screen.json", + "server_scroll_panel/stack_panel/padding_1": "ui/play_screen.json", + "server_scroll_panel/stack_panel/server_content": "ui/play_screen.json", + "server_scroll_panel/stack_panel/add_server_button": "ui/play_screen.json", + "crossplatform_disabled_panel": "ui/play_screen.json", + "crossplatform_disable_spacer": "ui/play_screen.json", + "common_scrolling_panel": "ui/play_screen.json", + "common_content": "ui/play_screen.json", + "scrolling_offsets": "ui/play_screen.json", + "worlds_scroll_content": "ui/play_screen.json", + "worlds_scroll_content/worlds_stack_panel": "ui/play_screen.json", + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer": "ui/play_screen.json", + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer/scrolling_panel": "ui/play_screen.json", + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer": "ui/play_screen.json", + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer/scrolling_panel": "ui/play_screen.json", + "friends_scroll_content": "ui/play_screen.json", + "friends_scroll_content/scrolling_panel": "ui/play_screen.json", + "show_servers_panel": "ui/play_screen.json", + "show_servers_panel/left_panel": "ui/play_screen.json", + "show_servers_panel/left_panel/scrolling_panel": "ui/play_screen.json", + "show_servers_panel/divider_panel": "ui/play_screen.json", + "show_servers_panel/divider_panel/main_divider": "ui/play_screen.json", + "show_servers_panel/right_panel": "ui/play_screen.json", + "server_scroll_content": "ui/play_screen.json", + "server_scroll_content/severs_panel": "ui/play_screen.json", + "server_scroll_content/severs_panel/offset_panel": "ui/play_screen.json", + "server_scroll_content/severs_panel/offset_panel/servers_sunsetting_warning": "ui/play_screen.json", + "server_scroll_content/severs_panel/show_servers_panel": "ui/play_screen.json", + "server_scroll_content/feature_server_message_panel": "ui/play_screen.json", + "server_scroll_content/feature_server_message_panel/featured_servers_label": "ui/play_screen.json", + "server_scroll_content/feature_server_message_panel/pad": "ui/play_screen.json", + "server_scroll_content/feature_server_message_panel/feature_server_message_panel": "ui/play_screen.json", + "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout": "ui/play_screen.json", + "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout/label": "ui/play_screen.json", + "server_scroll_content/feature_server_message_panel/open_account_setting_button_gamecore": "ui/play_screen.json", + "server_content_area": "ui/play_screen.json", + "server_content_area/third_party_scrolling_panel": "ui/play_screen.json", + "server_content_area/additional_server_scrolling_panel": "ui/play_screen.json", + "server_content_area/add_server_pane": "ui/play_screen.json", + "tab_front": "ui/play_screen.json", + "tab_front_middle": "ui/play_screen.json", + "tab_back": "ui/play_screen.json", + "X_tab_back": "ui/play_screen.json", + "tab_text_stack_panel": "ui/play_screen.json", + "tab_text_stack_panel/padding": "ui/play_screen.json", + "tab_text_stack_panel/text_section": "ui/play_screen.json", + "tab_text_stack_panel/text_section/text": "ui/play_screen.json", + "tab_text_stack_panel/count_section": "ui/play_screen.json", + "tab_text_stack_panel/count_section/count_background_image": "ui/play_screen.json", + "tab_text_stack_panel/count_section/count_background_image/count": "ui/play_screen.json", + "common_navigation_tab_content": "ui/play_screen.json", + "common_navigation_tab_content/padding_0": "ui/play_screen.json", + "common_navigation_tab_content/icon_section": "ui/play_screen.json", + "common_navigation_tab_content/icon_section/icon": "ui/play_screen.json", + "common_navigation_tab_content/padding_1": "ui/play_screen.json", + "common_navigation_tab_content/count_text": "ui/play_screen.json", + "friends_navigation_tab_content": "ui/play_screen.json", + "friends_navigation_tab_content/padding": "ui/play_screen.json", + "friends_navigation_tab_content/icon_section": "ui/play_screen.json", + "friends_navigation_tab_content/icon_section/icon": "ui/play_screen.json", + "friends_navigation_tab_content/icon_section_2": "ui/play_screen.json", + "friends_navigation_tab_content/icon_section_2/icon": "ui/play_screen.json", + "friends_navigation_tab_content/icon_section_nobounce": "ui/play_screen.json", + "friends_navigation_tab_content/icon_section_nobounce/icon": "ui/play_screen.json", + "friends_navigation_tab_content/icon_section_nobounce_2": "ui/play_screen.json", + "friends_navigation_tab_content/icon_section_nobounce_2/icon": "ui/play_screen.json", + "friends_navigation_tab_content/icon_section_notification": "ui/play_screen.json", + "friends_navigation_tab_content/icon_section_notification/icon1": "ui/play_screen.json", + "friends_navigation_tab_content/icon_section_notification/icon2": "ui/play_screen.json", + "friends_navigation_tab_content/count_text": "ui/play_screen.json", + "top_tab": "ui/play_screen.json", + "world_navigation_tab": "ui/play_screen.json", + "friends_navigation_tab": "ui/play_screen.json", + "server_navigation_tab": "ui/play_screen.json", + "close_navigation_tab": "ui/play_screen.json", + "close_navigation_tab/background": "ui/play_screen.json", + "close_navigation_tab/x_image": "ui/play_screen.json", + "common_tab_content_panel": "ui/play_screen.json", + "common_tab_content_panel/background": "ui/play_screen.json", + "common_tab_content_panel/content": "ui/play_screen.json", + "worlds_tab_content_panel": "ui/play_screen.json", + "friends_tab_content_panel": "ui/play_screen.json", + "server_tab_content_panel": "ui/play_screen.json", + "common_tab_content_panel_type": "ui/play_screen.json", + "edu_tab_content_panel_layout": "ui/play_screen.json", + "edu_tab_content_panel_layout/worlds_tab_content": "ui/play_screen.json", + "edu_tab_content_panel_layout/friends_tab_content": "ui/play_screen.json", + "edu_tab_content_panel_layout/server_tab_content_panel": "ui/play_screen.json", + "trial_tab_content_panel_layout": "ui/play_screen.json", + "trial_tab_content_panel_layout/worlds_tab_content": "ui/play_screen.json", + "default_tab_content_panel_layout": "ui/play_screen.json", + "default_tab_content_panel_layout/worlds_tab_content": "ui/play_screen.json", + "default_tab_content_panel_layout/friends_tab_content": "ui/play_screen.json", + "default_tab_content_panel_layout/server_tab_content_panel": "ui/play_screen.json", + "tab_navigation_panel_layout": "ui/play_screen.json", + "tab_navigation_panel_layout/navigation_tabs": "ui/play_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content": "ui/play_screen.json", + "tab_navigation_panel_layout/close_navigation_tab": "ui/play_screen.json", + "tab_navigation_panel_layout/close_navigation_tab/close_button": "ui/play_screen.json", + "common_tab_navigation_panel_layout": "ui/play_screen.json", + "edu_tab_navigation_panel_layout": "ui/play_screen.json", + "edu_tab_navigation_panel_layout/world_navigation_tab": "ui/play_screen.json", + "edu_tab_navigation_panel_layout/friends_navigation_tab": "ui/play_screen.json", + "edu_tab_navigation_panel_layout/server_navigation_tab": "ui/play_screen.json", + "trial_tab_navigation_panel_layout": "ui/play_screen.json", + "trial_tab_navigation_panel_layout/world_navigation_tab": "ui/play_screen.json", + "default_tab_navigation_panel_layout": "ui/play_screen.json", + "default_tab_navigation_panel_layout/world_navigation_tab": "ui/play_screen.json", + "default_tab_navigation_panel_layout/friends_navigation_tab": "ui/play_screen.json", + "default_tab_navigation_panel_layout/server_navigation_tab": "ui/play_screen.json", + "common_play_screen_panel": "ui/play_screen.json", + "play_screen_panel": "ui/play_screen.json", + "play_screen_panel/tab_navigation_panel": "ui/play_screen.json", + "play_screen_panel/tab_content_panel": "ui/play_screen.json", + "play_screen_panel/gamepad_helper_left_bumper": "ui/play_screen.json", + "play_screen_panel/gamepad_helper_right_bumper": "ui/play_screen.json", + "play_screen_panel/keyboard_helper_left_bracket": "ui/play_screen.json", + "play_screen_panel/keyboard_helper_right_bracket": "ui/play_screen.json", + "default_play_screen_panel": "ui/play_screen.json", + "trial_play_screen_panel": "ui/play_screen.json", + "edu_play_screen_panel": "ui/play_screen.json", + "play_screen": "ui/play_screen.json", + "play_screen_content": "ui/play_screen.json", + "play_screen_content/main_control": "ui/play_screen.json", + "play_screen_content/editor_text_panel": "ui/play_screen.json", + "play_screen_content/popup_dialog_factory": "ui/play_screen.json", + "popup_dialog_join_by_code": "ui/play_screen.json", + "popup_dialog_join_by_code/join_by_code_popup_background": "ui/play_screen.json", + "popup_dialog_join_by_code/join_by_code_popup_content": "ui/play_screen.json", + "popup_dialog_join_by_code/gamepad_helpers": "ui/play_screen.json", + "join_by_code_popup_background": "ui/play_screen.json", + "join_by_code_popup_content": "ui/play_screen.json", + "join_by_code_popup_content/popup_dialog_bg": "ui/play_screen.json", + "join_by_code_popup_content/popup_stack_panel": "ui/play_screen.json", + "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_header": "ui/play_screen.json", + "join_by_code_popup_content/popup_stack_panel/spacing_1": "ui/play_screen.json", + "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_upper_body": "ui/play_screen.json", + "join_by_code_popup_content/popup_stack_panel/spacing_2": "ui/play_screen.json", + "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_lower_body": "ui/play_screen.json", + "join_by_code_popup_dialog_header": "ui/play_screen.json", + "join_by_code_popup_dialog_header/join_by_code_popup_header_text": "ui/play_screen.json", + "join_by_code_popup_dialog_header/close_button": "ui/play_screen.json", + "join_by_code_popup_header_text": "ui/play_screen.json", + "join_by_code_popup_dialog_upper_body": "ui/play_screen.json", + "join_by_code_popup_dialog_upper_body/margin1": "ui/play_screen.json", + "join_by_code_popup_dialog_upper_body/join_by_code_popup_code_text_field": "ui/play_screen.json", + "join_by_code_popup_dialog_upper_body/spacing": "ui/play_screen.json", + "join_by_code_popup_dialog_upper_body/join_by_code_popup_join_button": "ui/play_screen.json", + "join_by_code_popup_dialog_upper_body/margin2": "ui/play_screen.json", + "join_by_code_popup_code_text_field": "ui/play_screen.json", + "join_by_code_popup_join_button": "ui/play_screen.json", + "join_by_code_popup_help_text": "ui/play_screen.json", + "lower_body_default_content": "ui/play_screen.json", + "lower_body_default_content/info_text": "ui/play_screen.json", + "join_by_code_popup_dialog_lower_body": "ui/play_screen.json", + "join_by_code_popup_dialog_lower_body/default": "ui/play_screen.json", + "open_account_setting_button": "ui/play_screen.json", + "popup_dialog_high_ping": "ui/play_screen.json", + "popup_dialog_high_ping/high_ping_popup_background": "ui/play_screen.json", + "popup_dialog_high_ping/high_ping_popup_content": "ui/play_screen.json", + "popup_dialog_high_ping/gamepad_helpers": "ui/play_screen.json", + "popup_two_buttons": "ui/play_screen.json", + "popup_two_buttons/common_panel": "ui/play_screen.json", + "popup_two_buttons/title_label": "ui/play_screen.json", + "popup_two_buttons/panel_indent": "ui/play_screen.json", + "popup_two_buttons/panel_indent/inside_header_panel": "ui/play_screen.json", + "popup_two_buttons/button_panel": "ui/play_screen.json", + "popup_two_buttons/button_panel/left_button_panel": "ui/play_screen.json", + "popup_two_buttons/button_panel/pad": "ui/play_screen.json", + "popup_two_buttons/button_panel/right_button_panel": "ui/play_screen.json", + "high_ping_popup_content_stack_panel": "ui/play_screen.json", + "high_ping_popup_content_stack_panel/pad_0": "ui/play_screen.json", + "high_ping_popup_content_stack_panel/ping_images_panel": "ui/play_screen.json", + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel": "ui/play_screen.json", + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/medium_connection": "ui/play_screen.json", + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/pad": "ui/play_screen.json", + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/low_connection": "ui/play_screen.json", + "high_ping_popup_content_stack_panel/pad_1": "ui/play_screen.json", + "high_ping_popup_content_stack_panel/text_line_1": "ui/play_screen.json", + "high_ping_popup_content_stack_panel/pad_2": "ui/play_screen.json", + "high_ping_popup_content_stack_panel/text_line_2": "ui/play_screen.json", + "high_ping_popup_content_stack_panel/pad_3": "ui/play_screen.json", + "high_ping_popup_join_button": "ui/play_screen.json", + "high_ping_popup_cancel_button": "ui/play_screen.json", + "copyright": "ui/play_screen.json", + "development_version": "ui/play_screen.json", + "version": "ui/play_screen.json", + "editor_text_panel": "ui/play_screen.json", + "editor_text_panel/copyright": "ui/play_screen.json", + "editor_text_panel/development_version": "ui/play_screen.json", + "editor_text_panel/version": "ui/play_screen.json", + "editor_settings_image_content": "ui/play_screen.json", + "editor_settings_menu_button": "ui/play_screen.json", + "editor_server_content_panel": "ui/play_screen.json", + "editor_server_content_panel/more_servers_panel": "ui/play_screen.json", + "editor_tab_content_panel_layout": "ui/play_screen.json", + "editor_tab_content_panel_layout/worlds_tab_content": "ui/play_screen.json", + "editor_tab_content_panel_layout/friends_tab_content": "ui/play_screen.json", + "editor_tab_content_panel_layout/server_tab_content_panel": "ui/play_screen.json", + "editor_play_screen_panel": "ui/play_screen.json", + }, + "perf_turtle": { + "perf_turtle_panel": "ui/perf_turtle.json", + "perf_turtle_panel/perf_turtle_background": "ui/perf_turtle.json", + "perf_turtle_panel/stack_panel": "ui/perf_turtle.json", + "perf_turtle_panel/stack_panel/turtle": "ui/perf_turtle.json", + "perf_turtle_panel/stack_panel/turtle_text": "ui/perf_turtle.json", + }, + "pocket_containers": { + "generic_label": "ui/pocket_containers.json", + "header_panel": "ui/pocket_containers.json", + "header_panel/header_background": "ui/pocket_containers.json", + "header_panel/title_label": "ui/pocket_containers.json", + "header_area": "ui/pocket_containers.json", + "header_area/x": "ui/pocket_containers.json", + "header_area/inventory_header": "ui/pocket_containers.json", + "header_area/container_header": "ui/pocket_containers.json", + "dark_bg": "ui/pocket_containers.json", + "panel_outline": "ui/pocket_containers.json", + "background_panel": "ui/pocket_containers.json", + "inventory_grid": "ui/pocket_containers.json", + "inventory_panel": "ui/pocket_containers.json", + "inventory_panel/scrolling_panel": "ui/pocket_containers.json", + "half_screen": "ui/pocket_containers.json", + "half_screen/inventory_panel": "ui/pocket_containers.json", + "panel": "ui/pocket_containers.json", + "panel/container_gamepad_helpers": "ui/pocket_containers.json", + "panel/header": "ui/pocket_containers.json", + "panel/bg": "ui/pocket_containers.json", + "panel/inventory": "ui/pocket_containers.json", + "panel/container": "ui/pocket_containers.json", + "panel/selected_item_details_factory": "ui/pocket_containers.json", + "panel/item_lock_notification_factory": "ui/pocket_containers.json", + "panel/gamepad_cursor": "ui/pocket_containers.json", + "panel/inventory_selected_icon_button": "ui/pocket_containers.json", + "panel/hold_icon": "ui/pocket_containers.json", + "panel/flying_item_renderer": "ui/pocket_containers.json", + "small_chest_panel": "ui/pocket_containers.json", + "large_chest_panel": "ui/pocket_containers.json", + "hopper_panel": "ui/pocket_containers.json", + "dispenser_panel": "ui/pocket_containers.json", + "dropper_panel": "ui/pocket_containers.json", + "ender_chest_panel": "ui/pocket_containers.json", + "shulker_box_panel": "ui/pocket_containers.json", + "barrel_panel": "ui/pocket_containers.json", + }, + "popup_dialog": { + "popup_dialog_bg": "ui/popup_dialog.json", + "popup_dialog_message": "ui/popup_dialog.json", + "popup_dialog_button": "ui/popup_dialog.json", + "popup_dialog_button_with_binding": "ui/popup_dialog.json", + "popup_dialog_left_button": "ui/popup_dialog.json", + "popup_dialog_middle_button": "ui/popup_dialog.json", + "popup_dialog_right_button": "ui/popup_dialog.json", + "popup_dialog": "ui/popup_dialog.json", + "modal_background_image": "ui/popup_dialog.json", + "black_tint_image": "ui/popup_dialog.json", + "modal_title_text": "ui/popup_dialog.json", + "modal_label_text": "ui/popup_dialog.json", + "modal_label_text/padding": "ui/popup_dialog.json", + "modal_label_text/text": "ui/popup_dialog.json", + "modal_checkbox_button": "ui/popup_dialog.json", + "modal_checkbox_button/header_description_stack_panel": "ui/popup_dialog.json", + "modal_checkbox_button/header_description_stack_panel/checkbox_visuals": "ui/popup_dialog.json", + "modal_checkbox_button/header_description_stack_panel/buffer_panel": "ui/popup_dialog.json", + "modal_checkbox_button/header_description_stack_panel/buffer_panel/label": "ui/popup_dialog.json", + "modal_checkbox_button/header_description_stack_panel/padding_panel": "ui/popup_dialog.json", + "dialog_text_wrapper": "ui/popup_dialog.json", + "modal_label_panel": "ui/popup_dialog.json", + "modal_left_button": "ui/popup_dialog.json", + "modal_middle_button": "ui/popup_dialog.json", + "modal_rightcancel_button": "ui/popup_dialog.json", + "three_buttons_panel": "ui/popup_dialog.json", + "three_buttons_panel/left": "ui/popup_dialog.json", + "three_buttons_panel/middle": "ui/popup_dialog.json", + "three_buttons_panel/right": "ui/popup_dialog.json", + "two_buttons_checkbox_panel": "ui/popup_dialog.json", + "two_buttons_checkbox_panel/left": "ui/popup_dialog.json", + "two_buttons_checkbox_panel/middle": "ui/popup_dialog.json", + "two_buttons_checkbox_panel/checkbox": "ui/popup_dialog.json", + "destructive_three_buttons_panel": "ui/popup_dialog.json", + "destructive_three_buttons_panel/left": "ui/popup_dialog.json", + "destructive_three_buttons_panel/middle": "ui/popup_dialog.json", + "destructive_three_buttons_panel/right": "ui/popup_dialog.json", + "two_buttons_panel": "ui/popup_dialog.json", + "two_buttons_panel/left": "ui/popup_dialog.json", + "two_buttons_panel/right": "ui/popup_dialog.json", + "destructive_two_buttons_panel": "ui/popup_dialog.json", + "destructive_two_buttons_panel/left": "ui/popup_dialog.json", + "destructive_two_buttons_panel/right": "ui/popup_dialog.json", + "single_button_panel": "ui/popup_dialog.json", + "single_button_panel/left": "ui/popup_dialog.json", + "single_button_checkbox_panel": "ui/popup_dialog.json", + "single_button_checkbox_panel/left": "ui/popup_dialog.json", + "single_button_checkbox_panel/checkbox": "ui/popup_dialog.json", + "modal_dialog_base": "ui/popup_dialog.json", + "modal_dialog_with_buttons": "ui/popup_dialog.json", + "modal_dialog_with_buttons/background_with_buttons": "ui/popup_dialog.json", + "modal_dialog_with_buttons/title": "ui/popup_dialog.json", + "modal_dialog_with_buttons/text": "ui/popup_dialog.json", + "modal_dialog_with_buttons/button_panel": "ui/popup_dialog.json", + "modal_input_panel": "ui/popup_dialog.json", + "modal_input_panel/black_tint_image": "ui/popup_dialog.json", + "modal_dialog_popup": "ui/popup_dialog.json", + "modal_dialog_popup/modal_input": "ui/popup_dialog.json", + "modal_dialog_popup/modal_input/modal_bg_buttons": "ui/popup_dialog.json", + "modal_dialog_popup/modal_input/black_background": "ui/popup_dialog.json", + "hollow_2_bottom_button_panel": "ui/popup_dialog.json", + "hollow_2_bottom_button_panel/lower_button_controls": "ui/popup_dialog.json", + "form_fit_screen_with_title_and_close_and_bottom_buttons": "ui/popup_dialog.json", + "form_fit_screen_with_title_and_close": "ui/popup_dialog.json", + "form_fit_screen_with_title_and_close/panel_background": "ui/popup_dialog.json", + "form_fit_screen_with_title_and_close/panel_content": "ui/popup_dialog.json", + "form_fit_screen_with_title_and_close/panel_content/header": "ui/popup_dialog.json", + "form_fit_screen_with_title_and_close/panel_content/header/header_content": "ui/popup_dialog.json", + "form_fit_screen_with_title_and_close/panel_content/close_button_panel": "ui/popup_dialog.json", + "form_fit_screen_with_title_and_close/panel_content/close_button_panel/close": "ui/popup_dialog.json", + "form_fit_screen_with_title_and_close/panel_content/contents": "ui/popup_dialog.json", + "form_fit_screen_with_title_and_close/panel_content/contents/contents": "ui/popup_dialog.json", + "form_fit_screen_with_title_and_close/panel_content/contents/content_padding": "ui/popup_dialog.json", + "form_fit_screen_with_title_and_close/panel_content/lower_contents": "ui/popup_dialog.json", + "form_fit_screen_with_title_and_close/panel_content/lower_contents/contents": "ui/popup_dialog.json", + "form_fit_modal_dialog_popup": "ui/popup_dialog.json", + "form_fit_modal_dialog_popup/background": "ui/popup_dialog.json", + "form_fit_modal_dialog_popup/content": "ui/popup_dialog.json", + "progress_dialog_popup": "ui/popup_dialog.json", + "progress_dialog_popup/background": "ui/popup_dialog.json", + "progress_dialog_popup/title": "ui/popup_dialog.json", + "progress_dialog_popup/progress_content": "ui/popup_dialog.json", + "progress_dialog_popup/button": "ui/popup_dialog.json", + "progress_content": "ui/popup_dialog.json", + "progress_content/progress_titles": "ui/popup_dialog.json", + "progress_content/progress_titles/current_progress_label": "ui/popup_dialog.json", + "progress_content/progress_titles/total_progress_label": "ui/popup_dialog.json", + "progress_content/progress_bar": "ui/popup_dialog.json", + "progress_label": "ui/popup_dialog.json", + "current_progress_label": "ui/popup_dialog.json", + "total_progress_label": "ui/popup_dialog.json", + "progress_bar_icon": "ui/popup_dialog.json", + "progress_bar_icon/full_progress_bar_icon": "ui/popup_dialog.json", + "progress_bar_icon/empty_progress_bar_icon": "ui/popup_dialog.json", + "progress_bar_icon/progress_bar_nub": "ui/popup_dialog.json", + "empty_progress_bar_icon": "ui/popup_dialog.json", + "full_progress_bar_icon": "ui/popup_dialog.json", + "progress_bar_nub": "ui/popup_dialog.json", + }, + "portfolio": { + "screenshot": "ui/portfolio_screen.json", + "screenshot_frame": "ui/portfolio_screen.json", + "trash_default": "ui/portfolio_screen.json", + "trash_hover": "ui/portfolio_screen.json", + "trash_pressed": "ui/portfolio_screen.json", + "photo_trash_button_left": "ui/portfolio_screen.json", + "photo_trash_button_left/default": "ui/portfolio_screen.json", + "photo_trash_button_left/hover": "ui/portfolio_screen.json", + "photo_trash_button_left/pressed": "ui/portfolio_screen.json", + "photo_trash_button_right": "ui/portfolio_screen.json", + "photo_trash_button_right/default": "ui/portfolio_screen.json", + "photo_trash_button_right/hover": "ui/portfolio_screen.json", + "photo_trash_button_right/pressed": "ui/portfolio_screen.json", + "photo_number": "ui/portfolio_screen.json", + "photo_number_left": "ui/portfolio_screen.json", + "photo_number_right": "ui/portfolio_screen.json", + "photo_corner_bl": "ui/portfolio_screen.json", + "photo_corner_br": "ui/portfolio_screen.json", + "photo_corner_tr": "ui/portfolio_screen.json", + "photo_corner_tl": "ui/portfolio_screen.json", + "page_photo": "ui/portfolio_screen.json", + "page_photo/screenshot": "ui/portfolio_screen.json", + "page_photo/screenshot_frame": "ui/portfolio_screen.json", + "page_photo/photo_corner_bl": "ui/portfolio_screen.json", + "page_photo/photo_corner_br": "ui/portfolio_screen.json", + "page_photo/photo_corner_tl": "ui/portfolio_screen.json", + "page_photo/photo_corner_tr": "ui/portfolio_screen.json", + "pick_item": "ui/portfolio_screen.json", + "pick_item/photo": "ui/portfolio_screen.json", + "pick_item/button": "ui/portfolio_screen.json", + "header": "ui/portfolio_screen.json", + "screenshot_grid": "ui/portfolio_screen.json", + "text_centering_panel": "ui/portfolio_screen.json", + "text_centering_panel/header": "ui/portfolio_screen.json", + "pick_scrolling_content": "ui/portfolio_screen.json", + "pick_scrolling_content/header": "ui/portfolio_screen.json", + "pick_scrolling_content/portfolio_grid": "ui/portfolio_screen.json", + "no_pick_photos_alert_label": "ui/portfolio_screen.json", + "pick_panel": "ui/portfolio_screen.json", + "pick_panel/scroll": "ui/portfolio_screen.json", + "pick_panel/close_button": "ui/portfolio_screen.json", + "pick_panel/no_pick_photos_alert_label": "ui/portfolio_screen.json", + "text_edit_box_default_indent": "ui/portfolio_screen.json", + "text_edit_box_hover_indent": "ui/portfolio_screen.json", + "text_edit_box_hover_indent/focus_border_white": "ui/portfolio_screen.json", + "text_edit_control": "ui/portfolio_screen.json", + "text_edit_control/clipper_panel": "ui/portfolio_screen.json", + "text_edit_control/clipper_panel/display_text": "ui/portfolio_screen.json", + "text_edit_control/clipper_panel/place_holder_control": "ui/portfolio_screen.json", + "text_edit_control/locked": "ui/portfolio_screen.json", + "text_edit_control/locked/edit_box_indent": "ui/portfolio_screen.json", + "text_edit_control/default": "ui/portfolio_screen.json", + "text_edit_control/hover": "ui/portfolio_screen.json", + "text_edit_control/pressed": "ui/portfolio_screen.json", + "photo_item": "ui/portfolio_screen.json", + "photo_item/screenshot": "ui/portfolio_screen.json", + "photo_item/screenshot_frame": "ui/portfolio_screen.json", + "photo_item/text_edit_control": "ui/portfolio_screen.json", + "photo_item/photo_corner_bl": "ui/portfolio_screen.json", + "photo_item/photo_corner_br": "ui/portfolio_screen.json", + "photo_item/photo_corner_tl": "ui/portfolio_screen.json", + "photo_item/photo_corner_tr": "ui/portfolio_screen.json", + "photo_grid_item": "ui/portfolio_screen.json", + "photo_grid_item/photo_item": "ui/portfolio_screen.json", + "photo_list_grid": "ui/portfolio_screen.json", + "prev_button_default": "ui/portfolio_screen.json", + "prev_button_hover": "ui/portfolio_screen.json", + "prev_button_pressed": "ui/portfolio_screen.json", + "photo_page_prev_button": "ui/portfolio_screen.json", + "photo_page_prev_button/default": "ui/portfolio_screen.json", + "photo_page_prev_button/hover": "ui/portfolio_screen.json", + "photo_page_prev_button/pressed": "ui/portfolio_screen.json", + "next_button_default": "ui/portfolio_screen.json", + "next_button_hover": "ui/portfolio_screen.json", + "next_button_pressed": "ui/portfolio_screen.json", + "photo_page_next_button": "ui/portfolio_screen.json", + "photo_page_next_button/default": "ui/portfolio_screen.json", + "photo_page_next_button/hover": "ui/portfolio_screen.json", + "photo_page_next_button/pressed": "ui/portfolio_screen.json", + "convert_button_default": "ui/portfolio_screen.json", + "convert_button_hover": "ui/portfolio_screen.json", + "convert_button_pressed": "ui/portfolio_screen.json", + "photo_convert_left_button": "ui/portfolio_screen.json", + "photo_convert_left_button/default": "ui/portfolio_screen.json", + "photo_convert_left_button/hover": "ui/portfolio_screen.json", + "photo_convert_left_button/pressed": "ui/portfolio_screen.json", + "photo_convert_right_button": "ui/portfolio_screen.json", + "photo_convert_right_button/default": "ui/portfolio_screen.json", + "photo_convert_right_button/hover": "ui/portfolio_screen.json", + "photo_convert_right_button/pressed": "ui/portfolio_screen.json", + "bottom_button_panel": "ui/portfolio_screen.json", + "bottom_button_panel/export_button": "ui/portfolio_screen.json", + "bottom_button_panel/im_content_button": "ui/portfolio_screen.json", + "bottom_button_panel/add_photo_button": "ui/portfolio_screen.json", + "im_content_button": "ui/portfolio_screen.json", + "export_button": "ui/portfolio_screen.json", + "add_photo_button": "ui/portfolio_screen.json", + "book_binding": "ui/portfolio_screen.json", + "book_spine": "ui/portfolio_screen.json", + "book_background": "ui/portfolio_screen.json", + "book_background/book_binding": "ui/portfolio_screen.json", + "book_background/top_spine": "ui/portfolio_screen.json", + "book_background/bottom_spine": "ui/portfolio_screen.json", + "header_panel": "ui/portfolio_screen.json", + "header_panel/header_background": "ui/portfolio_screen.json", + "close_button_default": "ui/portfolio_screen.json", + "close_button_hover": "ui/portfolio_screen.json", + "close_button_pressed": "ui/portfolio_screen.json", + "close_button": "ui/portfolio_screen.json", + "close_button/default": "ui/portfolio_screen.json", + "close_button/hover": "ui/portfolio_screen.json", + "close_button/pressed": "ui/portfolio_screen.json", + "no_photos_alert_label": "ui/portfolio_screen.json", + "book_and_buttons_panel": "ui/portfolio_screen.json", + "book_and_buttons_panel/book_panel": "ui/portfolio_screen.json", + "book_and_buttons_panel/book_panel/book_background": "ui/portfolio_screen.json", + "book_and_buttons_panel/book_panel/close_button": "ui/portfolio_screen.json", + "book_and_buttons_panel/book_panel/photo_list_grid": "ui/portfolio_screen.json", + "book_and_buttons_panel/book_panel/photo_number_left": "ui/portfolio_screen.json", + "book_and_buttons_panel/book_panel/photo_number_right": "ui/portfolio_screen.json", + "book_and_buttons_panel/book_panel/photo_trash_button_left": "ui/portfolio_screen.json", + "book_and_buttons_panel/book_panel/photo_trash_button_right": "ui/portfolio_screen.json", + "book_and_buttons_panel/book_panel/photo_page_prev_button": "ui/portfolio_screen.json", + "book_and_buttons_panel/book_panel/photo_page_next_button": "ui/portfolio_screen.json", + "book_and_buttons_panel/book_panel/photo_convert_left_button": "ui/portfolio_screen.json", + "book_and_buttons_panel/book_panel/photo_convert_right_button": "ui/portfolio_screen.json", + "book_and_buttons_panel/book_panel/no_photos_alert_label": "ui/portfolio_screen.json", + "book_and_buttons_panel/bottom_button_panel": "ui/portfolio_screen.json", + "root_panel": "ui/portfolio_screen.json", + "portfolio_screen": "ui/portfolio_screen.json", + "portfolio_screen_content": "ui/portfolio_screen.json", + "portfolio_screen_content/root_panel": "ui/portfolio_screen.json", + "portfolio_screen_content/root_panel/book_and_buttons_panel": "ui/portfolio_screen.json", + "portfolio_screen_content/root_panel/pick_panel": "ui/portfolio_screen.json", + }, + "progress": { + "popup_dialog_base": "ui/progress_screen.json", + "popup_dialog_base/background": "ui/progress_screen.json", + "popup_dialog_base/scrolling_panel": "ui/progress_screen.json", + "popup_dialog_base/totalSelected": "ui/progress_screen.json", + "popup_dialog_base/totalSelectedSize": "ui/progress_screen.json", + "popup_dialog_base/left": "ui/progress_screen.json", + "popup_dialog_base/right": "ui/progress_screen.json", + "checkbox_visual": "ui/progress_screen.json", + "checkbox_visual/control": "ui/progress_screen.json", + "checkbox_visuals_unchecked": "ui/progress_screen.json", + "checkbox_visuals_checked": "ui/progress_screen.json", + "checkbox_visuals_unchecked_locked": "ui/progress_screen.json", + "checkbox_visuals_checked_locked": "ui/progress_screen.json", + "checkbox_visuals_unchecked_hover": "ui/progress_screen.json", + "checkbox_visuals_checked_hover": "ui/progress_screen.json", + "checkbox_with_label_core": "ui/progress_screen.json", + "checkbox_with_label": "ui/progress_screen.json", + "checkbox_with_label/checkbox_with_label_core": "ui/progress_screen.json", + "resource_pack_grid_item": "ui/progress_screen.json", + "resource_pack_section": "ui/progress_screen.json", + "resource_pack_section/required_resource_pack_list_grid": "ui/progress_screen.json", + "resource_pack_section/optional_resource_pack_list_grid": "ui/progress_screen.json", + "simple_popup_dialog_base": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_0": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/title": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_1": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_2": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description2": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_3": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/top_optional_button": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_4": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/middle_button": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_5": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/bottom_button": "ui/progress_screen.json", + "resource_pack_download_popup_base": "ui/progress_screen.json", + "resource_pack_download_server_required": "ui/progress_screen.json", + "resource_pack_download_optional_and_required": "ui/progress_screen.json", + "resource_pack_download_optional": "ui/progress_screen.json", + "resource_pack_download_required": "ui/progress_screen.json", + "normal_stroke_button": "ui/progress_screen.json", + "progress_screen_text": "ui/progress_screen.json", + "progress_title_text": "ui/progress_screen.json", + "progress_bar_text": "ui/progress_screen.json", + "code_text": "ui/progress_screen.json", + "code_number": "ui/progress_screen.json", + "progress_loading_bars": "ui/progress_screen.json", + "progress_loading_spinner": "ui/progress_screen.json", + "fancy_progress_loading_bars": "ui/progress_screen.json", + "fancy_progress_loading_bars/full_progress_bar_icon": "ui/progress_screen.json", + "fancy_progress_loading_bars/empty_progress_bar_icon": "ui/progress_screen.json", + "fancy_progress_loading_bars/progress_bar_nub": "ui/progress_screen.json", + "progress_bar": "ui/progress_screen.json", + "progress_bar_nub": "ui/progress_screen.json", + "thick_progress_bar_icon_base": "ui/progress_screen.json", + "thick_progress_bar_icon_empty": "ui/progress_screen.json", + "thick_progress_bar": "ui/progress_screen.json", + "thick_progress_bar/full_progress_bar_icon": "ui/progress_screen.json", + "thick_progress_bar/empty_progress_bar_icon": "ui/progress_screen.json", + "edu_cloud_upload_progress_bar": "ui/progress_screen.json", + "edu_cloud_upload_progress_bar/waveform_loading_bar": "ui/progress_screen.json", + "edu_cloud_upload_progress_bar/determinate_loading_bar": "ui/progress_screen.json", + "cancel_button": "ui/progress_screen.json", + "retry_button": "ui/progress_screen.json", + "abort_button": "ui/progress_screen.json", + "ok_button": "ui/progress_screen.json", + "title_panel": "ui/progress_screen.json", + "title_panel/progress_title_text": "ui/progress_screen.json", + "title_panel/progress_bar_text": "ui/progress_screen.json", + "title_panel/progress_bar": "ui/progress_screen.json", + "button_panel": "ui/progress_screen.json", + "button_panel/cancel_button": "ui/progress_screen.json", + "modal_button_panel": "ui/progress_screen.json", + "modal_button_panel/cancel_button": "ui/progress_screen.json", + "modal_button_panel_with_retry": "ui/progress_screen.json", + "modal_button_panel_with_retry/abort_button": "ui/progress_screen.json", + "modal_button_panel_with_retry/cancel_button": "ui/progress_screen.json", + "modal_button_panel_with_retry/retry_button": "ui/progress_screen.json", + "modal_ok_button_panel": "ui/progress_screen.json", + "modal_ok_button_panel/ok_button": "ui/progress_screen.json", + "gamepad_helpers": "ui/progress_screen.json", + "gamepad_helpers/gamepad_helper_a": "ui/progress_screen.json", + "world_image": "ui/progress_screen.json", + "cloud_image": "ui/progress_screen.json", + "server_image": "ui/progress_screen.json", + "edu_cloud_upload_image": "ui/progress_screen.json", + "edu_cloud_upload_image/world_image_wrapper": "ui/progress_screen.json", + "edu_cloud_upload_image/world_image_wrapper/fetch_world_image": "ui/progress_screen.json", + "edu_cloud_upload_image/arrow_image_wrapper": "ui/progress_screen.json", + "edu_cloud_upload_image/arrow_image_wrapper/arrow_image": "ui/progress_screen.json", + "edu_cloud_upload_image/cloud_image_wrapper": "ui/progress_screen.json", + "edu_cloud_upload_image/cloud_image_wrapper/upload_cloud_image": "ui/progress_screen.json", + "edu_cloud_fetch_image": "ui/progress_screen.json", + "edu_cloud_fetch_image/cloud_image_wrapper": "ui/progress_screen.json", + "edu_cloud_fetch_image/cloud_image_wrapper/fetch_cloud_image": "ui/progress_screen.json", + "edu_cloud_fetch_image/spyglass_image_wrapper": "ui/progress_screen.json", + "edu_cloud_fetch_image/spyglass_image_wrapper/spyglass_image": "ui/progress_screen.json", + "edu_cloud_fetch_image/world_image_wrapper": "ui/progress_screen.json", + "edu_cloud_fetch_image/world_image_wrapper/fetch_world_image": "ui/progress_screen.json", + "edu_cloud_download_image": "ui/progress_screen.json", + "edu_cloud_download_image/cloud_image_wrapper": "ui/progress_screen.json", + "edu_cloud_download_image/cloud_image_wrapper/download_cloud_image": "ui/progress_screen.json", + "edu_cloud_download_image/arrow_image_wrapper": "ui/progress_screen.json", + "edu_cloud_download_image/arrow_image_wrapper/arrow_image": "ui/progress_screen.json", + "edu_cloud_download_image/world_image_wrapper": "ui/progress_screen.json", + "edu_cloud_download_image/world_image_wrapper/download_world_image": "ui/progress_screen.json", + "edu_server_fetch_image": "ui/progress_screen.json", + "edu_server_fetch_image/server_image_wrapper_left": "ui/progress_screen.json", + "edu_server_fetch_image/server_image_wrapper_left/server_image": "ui/progress_screen.json", + "edu_server_fetch_image/spyglass_image_wrapper": "ui/progress_screen.json", + "edu_server_fetch_image/spyglass_image_wrapper/spyglass_image": "ui/progress_screen.json", + "edu_server_fetch_image/server_image_wrapper_right": "ui/progress_screen.json", + "edu_server_fetch_image/server_image_wrapper_right/server_image": "ui/progress_screen.json", + "modal_progress_panel_no_cancel": "ui/progress_screen.json", + "modal_progress_panel_no_cancel/common_panel": "ui/progress_screen.json", + "modal_progress_panel_no_cancel/content": "ui/progress_screen.json", + "modal_progress_panel_no_cancel/content/title_panel": "ui/progress_screen.json", + "modal_progress_panel_no_cancel/content/progress_loading_bars": "ui/progress_screen.json", + "modal_progress_panel_with_cancel": "ui/progress_screen.json", + "modal_progress_panel_with_cancel/common_panel": "ui/progress_screen.json", + "modal_progress_panel_with_cancel/content": "ui/progress_screen.json", + "modal_progress_panel_with_cancel/content/title_panel": "ui/progress_screen.json", + "modal_progress_panel_with_cancel/content/progress_loading_bars": "ui/progress_screen.json", + "modal_progress_panel_with_cancel/modal_button_panel": "ui/progress_screen.json", + "progress_panel": "ui/progress_screen.json", + "progress_panel/progress_loading_bars": "ui/progress_screen.json", + "progress_panel/title_panel": "ui/progress_screen.json", + "progress_panel/button_panel": "ui/progress_screen.json", + "modal_progress_screen": "ui/progress_screen.json", + "delete_progress_screen": "ui/progress_screen.json", + "realms_loading_background": "ui/progress_screen.json", + "realms_loading_background/solid_blue": "ui/progress_screen.json", + "realms_loading_background/solid_blue/gradient": "ui/progress_screen.json", + "realms_stories_loading_progress_screen": "ui/progress_screen.json", + "world_loading_progress_screen": "ui/progress_screen.json", + "world_loading_screen_background": "ui/progress_screen.json", + "overworld_loading_background": "ui/progress_screen.json", + "overworld_loading_background/background_gradient": "ui/progress_screen.json", + "overworld_loading_progress_screen": "ui/progress_screen.json", + "nether_loading_background": "ui/progress_screen.json", + "nether_loading_background/background_gradient": "ui/progress_screen.json", + "nether_loading_progress_screen": "ui/progress_screen.json", + "theend_loading_background": "ui/progress_screen.json", + "theend_loading_background/background_gradient": "ui/progress_screen.json", + "theend_loading_progress_screen": "ui/progress_screen.json", + "world_saving_progress_screen": "ui/progress_screen.json", + "fetching_edu_cloud_worlds": "ui/progress_screen.json", + "edu_cloud_download_progress_screen": "ui/progress_screen.json", + "fetching_edu_servers": "ui/progress_screen.json", + "world_convert_modal_progress_screen": "ui/progress_screen.json", + "progress_screen": "ui/progress_screen.json", + "popup_dialog_factory": "ui/progress_screen.json", + "progress_screen_content": "ui/progress_screen.json", + "progress_screen_content/progress_content_panel": "ui/progress_screen.json", + "progress_screen_content/popup_dialog_factory": "ui/progress_screen.json", + "progress_content_panel": "ui/progress_screen.json", + "progress_content_panel/progress_panel": "ui/progress_screen.json", + "progress_content_panel/gamepad_helpers": "ui/progress_screen.json", + "modal_screen_content": "ui/progress_screen.json", + "modal_screen_content/modal_progress_panel": "ui/progress_screen.json", + "world_modal_progress_panel": "ui/progress_screen.json", + "world_modal_progress_panel/common_panel": "ui/progress_screen.json", + "world_modal_progress_panel/base_content": "ui/progress_screen.json", + "world_modal_progress_panel/base_content/progress_title_text": "ui/progress_screen.json", + "world_modal_progress_panel/base_content/progress_bar_text": "ui/progress_screen.json", + "world_modal_progress_panel/inside_content": "ui/progress_screen.json", + "world_modal_progress_panel/inside_content/loading_bar_panel": "ui/progress_screen.json", + "world_modal_progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": "ui/progress_screen.json", + "world_modal_progress_panel/inside_content/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json", + "world_modal_progress_panel/inside_content/vertical_padding": "ui/progress_screen.json", + "world_modal_progress_panel/inside_content/modal_button_panel": "ui/progress_screen.json", + "world_modal_progress_panel/inside_content/vertical_padding_2": "ui/progress_screen.json", + "cloud_upload_panel": "ui/progress_screen.json", + "cloud_upload_panel/common_panel": "ui/progress_screen.json", + "cloud_upload_panel/base_content": "ui/progress_screen.json", + "cloud_upload_panel/base_content/progress_title_text": "ui/progress_screen.json", + "cloud_upload_panel/base_content/progress_text": "ui/progress_screen.json", + "cloud_upload_panel/base_content/edu_cloud_upload_image": "ui/progress_screen.json", + "cloud_upload_panel/base_content/loading_bar_panel": "ui/progress_screen.json", + "cloud_upload_panel/base_content/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json", + "cloud_error_panel": "ui/progress_screen.json", + "cloud_error_panel/common_panel": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/title_wrapper": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/title_wrapper/progress_title_text": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_text_tts_wrapper": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/tts_border": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/edu_cloud_error_text": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_text": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_number": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding_2": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/cloud_support_hypertext": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon/icon": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/button_content": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/button_content/modal_button_panel": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_button_content": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_button_content/download_ok_button": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_button_content/download_cancel_button": "ui/progress_screen.json", + "cloud_fetch_panel": "ui/progress_screen.json", + "cloud_fetch_panel/common_panel": "ui/progress_screen.json", + "cloud_fetch_panel/base_content": "ui/progress_screen.json", + "cloud_fetch_panel/base_content/progress_title_text": "ui/progress_screen.json", + "cloud_fetch_panel/base_content/progress_text": "ui/progress_screen.json", + "cloud_fetch_panel/base_content/edu_cloud_fetch_image": "ui/progress_screen.json", + "cloud_fetch_panel/base_content/loading_bar_panel": "ui/progress_screen.json", + "cloud_fetch_panel/base_content/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json", + "server_fetch_panel": "ui/progress_screen.json", + "server_fetch_panel/common_panel": "ui/progress_screen.json", + "server_fetch_panel/base_content": "ui/progress_screen.json", + "server_fetch_panel/base_content/progress_title_text": "ui/progress_screen.json", + "server_fetch_panel/base_content/progress_text": "ui/progress_screen.json", + "server_fetch_panel/base_content/edu_server_fetch_image": "ui/progress_screen.json", + "server_fetch_panel/base_content/loading_bar_panel": "ui/progress_screen.json", + "server_fetch_panel/base_content/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json", + "cloud_download_panel": "ui/progress_screen.json", + "cloud_download_panel/common_panel": "ui/progress_screen.json", + "cloud_download_panel/base_content": "ui/progress_screen.json", + "cloud_download_panel/base_content/progress_title_text": "ui/progress_screen.json", + "cloud_download_panel/base_content/progress_bar_text": "ui/progress_screen.json", + "cloud_download_panel/base_content/edu_cloud_download_image": "ui/progress_screen.json", + "cloud_download_panel/loading_bar_panel": "ui/progress_screen.json", + "cloud_download_panel/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json", + "world_convert_modal_progress_screen_content": "ui/progress_screen.json", + "world_convert_modal_progress_screen_content/mobile_data_icon": "ui/progress_screen.json", + "world_convert_modal_progress_screen_content/title_panel_content": "ui/progress_screen.json", + "world_convert_modal_progress_screen_content/world_modal_progress_panel": "ui/progress_screen.json", + "world_convert_modal_progress_screen_content/popup_dialog_factory": "ui/progress_screen.json", + "realms_loading_world_modal_progress_screen_content": "ui/progress_screen.json", + "realms_loading_world_modal_progress_screen_content/mobile_data_icon": "ui/progress_screen.json", + "realms_loading_world_modal_progress_screen_content/realms_title_image": "ui/progress_screen.json", + "realms_loading_world_modal_progress_screen_content/world_modal_progress_panel": "ui/progress_screen.json", + "realms_loading_world_modal_progress_screen_content/popup_dialog_factory": "ui/progress_screen.json", + "realms_loading_world_modal_progress_screen_content/server_region_connected": "ui/progress_screen.json", + "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_label": "ui/progress_screen.json", + "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_connected_text": "ui/progress_screen.json", + "realms_loading_world_modal_progress_screen_content/server_region_connected/padding": "ui/progress_screen.json", + "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_ping_icon": "ui/progress_screen.json", + "world_save_modal_progress_screen_content": "ui/progress_screen.json", + "world_save_modal_progress_screen_content/title_panel_content": "ui/progress_screen.json", + "world_save_modal_progress_screen_content/world_modal_progress_panel": "ui/progress_screen.json", + "world_save_modal_progress_screen_content/save_icon": "ui/progress_screen.json", + "world_save_modal_progress_screen_content/popup_dialog_factory": "ui/progress_screen.json", + "cloud_upload_screen_content": "ui/progress_screen.json", + "cloud_upload_screen_content/title_panel_content": "ui/progress_screen.json", + "cloud_upload_screen_content/cloud_upload_panel": "ui/progress_screen.json", + "cloud_upload_screen_content/cloud_upload_error_panel": "ui/progress_screen.json", + "cloud_upload_screen_content/popup_dialog_factory": "ui/progress_screen.json", + "cloud_upload_screen_content/cloud_conflict_resolution_popup_factory": "ui/progress_screen.json", + "edu_cloud_fetch_screen_content": "ui/progress_screen.json", + "edu_cloud_fetch_screen_content/cloud_fetch_panel": "ui/progress_screen.json", + "edu_cloud_fetch_screen_content/popup_dialog_factory": "ui/progress_screen.json", + "edu_server_fetch_screen_content": "ui/progress_screen.json", + "edu_server_fetch_screen_content/server_fetch_panel": "ui/progress_screen.json", + "edu_server_fetch_screen_content/popup_dialog_factory": "ui/progress_screen.json", + "cloud_download_screen_content": "ui/progress_screen.json", + "cloud_download_screen_content/background": "ui/progress_screen.json", + "cloud_download_screen_content/cloud_download_panel": "ui/progress_screen.json", + "cloud_download_screen_content/cloud_download_error_panel": "ui/progress_screen.json", + "cloud_download_screen_content/popup_dialog_factory": "ui/progress_screen.json", + "auto_save": "ui/progress_screen.json", + "mobile_data_ios_icon": "ui/progress_screen.json", + "mobile_data_android_icon": "ui/progress_screen.json", + "mobile_data_icon_text": "ui/progress_screen.json", + "mobile_data_icon": "ui/progress_screen.json", + "mobile_data_icon/icon_android": "ui/progress_screen.json", + "mobile_data_icon/icon_ios": "ui/progress_screen.json", + "mobile_data_icon/text": "ui/progress_screen.json", + }, + "rating_prompt": { + "padding_horizontal": "ui/rating_prompt.json", + "padding_vertical": "ui/rating_prompt.json", + "rating_prompt_yes_label": "ui/rating_prompt.json", + "rating_prompt_yes_label/button_label": "ui/rating_prompt.json", + "rating_prompt_no_label": "ui/rating_prompt.json", + "rating_prompt_no_label/button_label": "ui/rating_prompt.json", + "rating_prompt_yes_button": "ui/rating_prompt.json", + "rating_prompt_no_button": "ui/rating_prompt.json", + "dialog_image": "ui/rating_prompt.json", + "dialog_image_with_border": "ui/rating_prompt.json", + "dialog_image_with_border/dialog_image": "ui/rating_prompt.json", + "button_panel": "ui/rating_prompt.json", + "button_panel/padding_3": "ui/rating_prompt.json", + "button_panel/yes_button": "ui/rating_prompt.json", + "button_panel/no_button": "ui/rating_prompt.json", + "image_panel": "ui/rating_prompt.json", + "image_panel/padding_2": "ui/rating_prompt.json", + "image_panel/dialog_image_with_border": "ui/rating_prompt.json", + "main_panel": "ui/rating_prompt.json", + "main_panel/padding_0": "ui/rating_prompt.json", + "main_panel/image_panel": "ui/rating_prompt.json", + "main_panel/padding_1": "ui/rating_prompt.json", + "main_panel/button_panel": "ui/rating_prompt.json", + "rating_prompt_screen": "ui/rating_prompt.json", + "rating_prompt_screen_content": "ui/rating_prompt.json", + }, + "realms_common": { + "pending_invites_icon": "ui/realms_common.json", + "dark_banner": "ui/realms_common.json", + "dark_banner_hover": "ui/realms_common.json", + "legacy_banner": "ui/realms_common.json", + "main_banner": "ui/realms_common.json", + "hollow_banner": "ui/realms_common.json", + "popup_dialog_bg": "ui/realms_common.json", + "popup_dialog__play_on_realm": "ui/realms_common.json", + "popup_dialog__play_on_realm/play_on_realm_popup_background": "ui/realms_common.json", + "popup_dialog__play_on_realm/gamepad_helpers": "ui/realms_common.json", + "popup_dialog__play_on_realm/play_on_realm_popup_content": "ui/realms_common.json", + "play_on_realm_popup_background": "ui/realms_common.json", + "play_on_realm_popup_content": "ui/realms_common.json", + "play_on_realm_popup_content/popup_dialog_bg": "ui/realms_common.json", + "play_on_realm_popup_content/play_on_realm_popup_dialog_header": "ui/realms_common.json", + "play_on_realm_popup_content/play_on_realm_popup_dialog_upper_body": "ui/realms_common.json", + "play_on_realm_popup_content/play_on_realm_popup_dialog_lower_body": "ui/realms_common.json", + "play_on_realm_popup_dialog_header": "ui/realms_common.json", + "play_on_realm_popup_dialog_header/play_on_realm_popup_dialog_header_text": "ui/realms_common.json", + "play_on_realm_popup_dialog_header/close_button": "ui/realms_common.json", + "play_on_realm_popup_dialog_header_text": "ui/realms_common.json", + "play_on_realm_popup_dialog_upper_body": "ui/realms_common.json", + "play_on_realm_popup_dialog_upper_body/play_on_realm_banner": "ui/realms_common.json", + "play_on_realm_popup_dialog_upper_body/play_on_realm_panel": "ui/realms_common.json", + "play_on_realm_popup_dialog_upper_body/background_panel": "ui/realms_common.json", + "play_on_realm_popup_dialog_upper_body/background_panel/black_background": "ui/realms_common.json", + "play_on_realm_panel": "ui/realms_common.json", + "play_on_realm_panel/play_on_realm_content_panel": "ui/realms_common.json", + "play_on_realm_panel/play_on_realm_content_panel/play_image_panel": "ui/realms_common.json", + "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/spacing_gap_image": "ui/realms_common.json", + "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/realms_image": "ui/realms_common.json", + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel": "ui/realms_common.json", + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_1": "ui/realms_common.json", + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_1": "ui/realms_common.json", + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_2": "ui/realms_common.json", + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_2": "ui/realms_common.json", + "play_on_realm_popup_dialog_lower_body": "ui/realms_common.json", + "play_on_realm_popup_dialog_lower_body/button_panel": "ui/realms_common.json", + "play_on_realm_popup_dialog_lower_body/button_panel/play_with_friends_button": "ui/realms_common.json", + "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap1": "ui/realms_common.json", + "play_on_realm_popup_dialog_lower_body/button_panel/play_solo_button": "ui/realms_common.json", + "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap2": "ui/realms_common.json", + "play_on_realm_popup_dialog_lower_body/button_panel/go_back_button": "ui/realms_common.json", + }, + "realms_create": { + "title_label": "ui/realms_create.json", + "label": "ui/realms_create.json", + "enter_name_panel": "ui/realms_create.json", + "enter_name_panel/name_label_0": "ui/realms_create.json", + "enter_name_panel/name_edit": "ui/realms_create.json", + "selected_option_checkbox": "ui/realms_create.json", + "selected_option_checkbox_empty": "ui/realms_create.json", + "selected_option_checkbox_filled": "ui/realms_create.json", + "checkbox_panel": "ui/realms_create.json", + "checkbox_panel/selected_option_checkbox_empty": "ui/realms_create.json", + "checkbox_panel/selected_option_checkbox_filled": "ui/realms_create.json", + "checkbox_panel/button_label": "ui/realms_create.json", + "realms_option_button": "ui/realms_create.json", + "choose_duration_panel": "ui/realms_create.json", + "choose_duration_panel/name_label": "ui/realms_create.json", + "choose_duration_panel/choose_duration_stack_panel": "ui/realms_create.json", + "choose_duration_panel/choose_duration_stack_panel/short": "ui/realms_create.json", + "choose_duration_panel/choose_duration_stack_panel/long": "ui/realms_create.json", + "choose_tier_panel": "ui/realms_create.json", + "choose_tier_panel/name_label": "ui/realms_create.json", + "choose_tier_panel/choose_tier_stack_panel": "ui/realms_create.json", + "choose_tier_panel/choose_tier_stack_panel/player_count_2": "ui/realms_create.json", + "view_terms_button": "ui/realms_create.json", + "privacy_policy_button": "ui/realms_create.json", + "terms_and_conditions_panel": "ui/realms_create.json", + "terms_and_conditions_panel/name_label": "ui/realms_create.json", + "terms_and_conditions_panel/terms_string_panel": "ui/realms_create.json", + "terms_and_conditions_panel/terms_string_panel/banner_fill": "ui/realms_create.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": "ui/realms_create.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": "ui/realms_create.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": "ui/realms_create.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": "ui/realms_create.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": "ui/realms_create.json", + "confirmation_panel": "ui/realms_create.json", + "confirmation_panel/create_realms_button": "ui/realms_create.json", + "create_realms_stack_panel": "ui/realms_create.json", + "create_realms_stack_panel/padding_0": "ui/realms_create.json", + "create_realms_stack_panel/create_realms_text_panel": "ui/realms_create.json", + "create_realms_text_panel": "ui/realms_create.json", + "create_realms_text_panel/create": "ui/realms_create.json", + "stack_item": "ui/realms_create.json", + "scroll_stack_panel": "ui/realms_create.json", + "scroll_stack_panel/name": "ui/realms_create.json", + "scroll_stack_panel/name/enter_name_panel": "ui/realms_create.json", + "scroll_stack_panel/padding_0": "ui/realms_create.json", + "scroll_stack_panel/duration": "ui/realms_create.json", + "scroll_stack_panel/duration/choose_duration_panel": "ui/realms_create.json", + "scroll_stack_panel/tier": "ui/realms_create.json", + "scroll_stack_panel/tier/choose_tier_panel": "ui/realms_create.json", + "scroll_stack_panel/toc": "ui/realms_create.json", + "scroll_stack_panel/toc/terms_and_conditions_panel": "ui/realms_create.json", + "scroll_stack_panel/padding_1": "ui/realms_create.json", + "scroll_stack_panel/realms_terms_info": "ui/realms_create.json", + "scroll_stack_panel/realms_terms_info/label_panel": "ui/realms_create.json", + "scroll_stack_panel/realms_terms_info/label_panel/padding_1": "ui/realms_create.json", + "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper": "ui/realms_create.json", + "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper_extra": "ui/realms_create.json", + "scroll_stack_panel/realms_terms_info/label_panel/padding_2": "ui/realms_create.json", + "scroll_stack_panel/realms_switch_nso_info": "ui/realms_create.json", + "terms_section": "ui/realms_create.json", + "terms_section/terms_section_label": "ui/realms_create.json", + "terms_section_extra": "ui/realms_create.json", + "terms_section_extra/terms_section_label": "ui/realms_create.json", + "main_panel": "ui/realms_create.json", + "main_panel/scrolling_panel": "ui/realms_create.json", + "main_panel/padding_0": "ui/realms_create.json", + "main_panel/confirmation_panel": "ui/realms_create.json", + "main_panel/padding_1": "ui/realms_create.json", + "content": "ui/realms_create.json", + "content/main_panel": "ui/realms_create.json", + "realms_create_screen": "ui/realms_create.json", + "realms_create_content_and_factory": "ui/realms_create.json", + "realms_create_content_and_factory/realms_create_content": "ui/realms_create.json", + "realms_create_content_and_factory/popup_dialog_factory": "ui/realms_create.json", + }, + "realms_pending_invitations": { + "panel_text": "ui/realms_pending_invitations.json", + "banner_panel_base": "ui/realms_pending_invitations.json", + "banner_panel_base/background": "ui/realms_pending_invitations.json", + "banner_panel_base/indent_panel": "ui/realms_pending_invitations.json", + "banner_panel_base/indent_panel/content": "ui/realms_pending_invitations.json", + "banner_panel": "ui/realms_pending_invitations.json", + "banner_panel_hover": "ui/realms_pending_invitations.json", + "realm_invite_button": "ui/realms_pending_invitations.json", + "realm_name_label": "ui/realms_pending_invitations.json", + "realm_owner_label": "ui/realms_pending_invitations.json", + "tts_gamertag_item_info_wrapper": "ui/realms_pending_invitations.json", + "gamertag_item_info": "ui/realms_pending_invitations.json", + "gamertag_item_info/rnl": "ui/realms_pending_invitations.json", + "gamertag_item_info/rol": "ui/realms_pending_invitations.json", + "accept_button_content": "ui/realms_pending_invitations.json", + "decline_button_content": "ui/realms_pending_invitations.json", + "realm_accept_button": "ui/realms_pending_invitations.json", + "realm_decline_button": "ui/realms_pending_invitations.json", + "realm_accepted_panel": "ui/realms_pending_invitations.json", + "gamertag_item_content": "ui/realms_pending_invitations.json", + "gamertag_item_content/lb": "ui/realms_pending_invitations.json", + "gamertag_item_content/a": "ui/realms_pending_invitations.json", + "gamertag_item_content/d": "ui/realms_pending_invitations.json", + "gamertag_item_content/ap": "ui/realms_pending_invitations.json", + "gamertag_item": "ui/realms_pending_invitations.json", + "gamertag_item_grid": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_state_content": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_state_content/checkbox_holding_panel": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_state_content/checkbox_holding_panel/hide_invites": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_state_content/hide_invites_text_panel": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_state_content/hide_invites_text_panel/hide_invites_text": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_on_state_content": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_on_state": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_off_state_content": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_off_state": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_on_hover_state_content": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_on_hover_state": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_off_hover_state_content": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_off_hover_state": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_on_locked_state_content": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_on_locked_state": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_off_locked_state_content": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_off_locked_state": "ui/realms_pending_invitations.json", + "show_friends_only_toggle": "ui/realms_pending_invitations.json", + "gamepad_helpers": "ui/realms_pending_invitations.json", + "gamepad_helpers/a": "ui/realms_pending_invitations.json", + "gamepad_helpers/b": "ui/realms_pending_invitations.json", + "no_invites_label_wrapper": "ui/realms_pending_invitations.json", + "no_invites_label": "ui/realms_pending_invitations.json", + "no_invites_label/label": "ui/realms_pending_invitations.json", + "realms_pending_invitation_list": "ui/realms_pending_invitations.json", + "realms_pending_invitation_list/upper_padding": "ui/realms_pending_invitations.json", + "realms_pending_invitation_list/sfop": "ui/realms_pending_invitations.json", + "realms_pending_invitation_list/gig": "ui/realms_pending_invitations.json", + "realms_pending_invitation_list/lower_padding": "ui/realms_pending_invitations.json", + "realms_pending_invitation_list/nil": "ui/realms_pending_invitations.json", + "content_panel": "ui/realms_pending_invitations.json", + "realms_pending_invitations_screen": "ui/realms_pending_invitations.json", + "realms_invitation_screen_content": "ui/realms_pending_invitations.json", + "realms_invitation_screen_content/root_panel": "ui/realms_pending_invitations.json", + "realms_invitation_screen_content/root_panel/main_panel": "ui/realms_pending_invitations.json", + "realms_invitation_screen_content/root_panel/sgh": "ui/realms_pending_invitations.json", + }, + "realms_slots": { + "vertical_padding": "ui/realms_slots_screen.json", + "horizontal_padding": "ui/realms_slots_screen.json", + "horizontal_padding_sibling_height": "ui/realms_slots_screen.json", + "realms_background": "ui/realms_slots_screen.json", + "realms_background/gradient": "ui/realms_slots_screen.json", + "realms_background/particle_1": "ui/realms_slots_screen.json", + "realms_background/particle_2": "ui/realms_slots_screen.json", + "plus": "ui/realms_slots_screen.json", + "check": "ui/realms_slots_screen.json", + "world_thumbnail": "ui/realms_slots_screen.json", + "realms_stories_icon_glyph": "ui/realms_slots_screen.json", + "realms_stories_icon_glyph/realms_stories_icon": "ui/realms_slots_screen.json", + "play_button": "ui/realms_slots_screen.json", + "edit_realm_button": "ui/realms_slots_screen.json", + "realms_feed_button": "ui/realms_slots_screen.json", + "unread_story_count_text": "ui/realms_slots_screen.json", + "unread_story_count_text_background": "ui/realms_slots_screen.json", + "unread_story_count_panel": "ui/realms_slots_screen.json", + "unread_story_count_panel/text": "ui/realms_slots_screen.json", + "unread_story_count_panel/text/background": "ui/realms_slots_screen.json", + "edit_world_button_panel": "ui/realms_slots_screen.json", + "edit_world_button_panel/edit_world_button": "ui/realms_slots_screen.json", + "edit_world_button_panel/padding": "ui/realms_slots_screen.json", + "edit_world_button_panel/activate_world_button": "ui/realms_slots_screen.json", + "world_slot_button": "ui/realms_slots_screen.json", + "world_slot_button_content": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_top": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_top/background": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_top/add_world_image_panel": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_top/add_world_image_panel/plus_image": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_top/world_thumbnail_image_panel": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_top/world_thumbnail_image_panel/world_thumbnail": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_top/edit_world_button_panel": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_top/foreground": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_top/check_image": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_bottom": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_bottom/divider_line_black": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_bottom/divider_line_white": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_bottom/add_world_text_panel": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_grey": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_green": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_bottom/add_world_text_panel/add_world_text": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_bottom/world_info_panel": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_bottom/world_info_panel/background": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_bottom/world_info_panel/background_green": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_bottom/world_info_panel/world_info_stack_panel": "ui/realms_slots_screen.json", + "world_info_stack_panel": "ui/realms_slots_screen.json", + "world_info_stack_panel/world_name_panel": "ui/realms_slots_screen.json", + "world_info_stack_panel/world_name_panel/world_name": "ui/realms_slots_screen.json", + "world_info_stack_panel/world_type_panel": "ui/realms_slots_screen.json", + "world_info_stack_panel/world_type_panel/world_type": "ui/realms_slots_screen.json", + "world_info_stack_panel/bottom_padding": "ui/realms_slots_screen.json", + "main_stack_panel": "ui/realms_slots_screen.json", + "main_stack_panel/padding_0": "ui/realms_slots_screen.json", + "main_stack_panel/button_panel": "ui/realms_slots_screen.json", + "main_stack_panel/button_panel/play_button": "ui/realms_slots_screen.json", + "main_stack_panel/button_panel/left_padding": "ui/realms_slots_screen.json", + "main_stack_panel/button_panel/edit_realm_button": "ui/realms_slots_screen.json", + "main_stack_panel/button_panel/right_padding": "ui/realms_slots_screen.json", + "main_stack_panel/button_panel/feed_panel_with_unread_count": "ui/realms_slots_screen.json", + "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel": "ui/realms_slots_screen.json", + "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel/realms_feed_button": "ui/realms_slots_screen.json", + "main_stack_panel/button_panel/feed_panel_with_unread_count/unread_story_count": "ui/realms_slots_screen.json", + "main_stack_panel/padding_1": "ui/realms_slots_screen.json", + "main_stack_panel/text_panel_0": "ui/realms_slots_screen.json", + "main_stack_panel/text_panel_0/text": "ui/realms_slots_screen.json", + "main_stack_panel/padding_2": "ui/realms_slots_screen.json", + "main_stack_panel/worlds_panel": "ui/realms_slots_screen.json", + "main_stack_panel/worlds_panel/world_slot_1": "ui/realms_slots_screen.json", + "main_stack_panel/worlds_panel/padding_0": "ui/realms_slots_screen.json", + "main_stack_panel/worlds_panel/world_slot_2": "ui/realms_slots_screen.json", + "main_stack_panel/worlds_panel/padding_1": "ui/realms_slots_screen.json", + "main_stack_panel/worlds_panel/world_slot_3": "ui/realms_slots_screen.json", + "main_stack_panel/padding_3": "ui/realms_slots_screen.json", + "main_stack_panel/text_panel_1": "ui/realms_slots_screen.json", + "main_stack_panel/text_panel_1/text": "ui/realms_slots_screen.json", + "realms_slots_screen": "ui/realms_slots_screen.json", + "realms_slots_screen_content": "ui/realms_slots_screen.json", + "realms_slots_screen_content/background": "ui/realms_slots_screen.json", + "realms_slots_screen_content_panel": "ui/realms_slots_screen.json", + "realms_slots_screen_content_panel/main_scroll_panel": "ui/realms_slots_screen.json", + }, + "realms_settings": { + "settings_screen": "ui/realms_settings_screen.json", + "generic_section": "ui/realms_settings_screen.json", + "generic_section_wrapper": "ui/realms_settings_screen.json", + "generic_section_wrapper/generic_section": "ui/realms_settings_screen.json", + "checkbox_image": "ui/realms_settings_screen.json", + "checkbox_unchecked_state": "ui/realms_settings_screen.json", + "checkbox_checked_state": "ui/realms_settings_screen.json", + "checkbox_unchecked_hover_state": "ui/realms_settings_screen.json", + "checkbox_checked_hover_state": "ui/realms_settings_screen.json", + "checkbox_unchecked_locked_state": "ui/realms_settings_screen.json", + "checkbox_checked_locked_state": "ui/realms_settings_screen.json", + "player_count_label": "ui/realms_settings_screen.json", + "realm_duration_label": "ui/realms_settings_screen.json", + "realm_subscription_origin_label": "ui/realms_settings_screen.json", + "realm_consumable_to_subscription_info_label": "ui/realms_settings_screen.json", + "manage_subscriptions_button": "ui/realms_settings_screen.json", + "delete_realm_button": "ui/realms_settings_screen.json", + "open_realm_button": "ui/realms_settings_screen.json", + "close_realm_button": "ui/realms_settings_screen.json", + "subscriptions_section": "ui/realms_settings_screen.json", + "subscriptions_section/loading_view": "ui/realms_settings_screen.json", + "subscriptions_section/loading_failed_view": "ui/realms_settings_screen.json", + "subscriptions_section/loaded_view": "ui/realms_settings_screen.json", + "subscriptions_section/loaded_view/player_count_label": "ui/realms_settings_screen.json", + "subscriptions_section/loaded_view/realm_duration_label": "ui/realms_settings_screen.json", + "subscriptions_section/loaded_view/possible_store_mismatch": "ui/realms_settings_screen.json", + "subscriptions_section/loaded_view/realm_subscription_origin_label": "ui/realms_settings_screen.json", + "subscriptions_section/loaded_view/realm_consumable_to_subscription_info_label": "ui/realms_settings_screen.json", + "subscriptions_section/loaded_view/_0": "ui/realms_settings_screen.json", + "subscriptions_section/loaded_view/delete_realm_button": "ui/realms_settings_screen.json", + "subscriptions_section/loaded_view/open_realm_button": "ui/realms_settings_screen.json", + "subscriptions_section/loaded_view/close_realm_button": "ui/realms_settings_screen.json", + "subscriptions_section/loaded_view/_1": "ui/realms_settings_screen.json", + "subscriptions_section/loaded_view/manage_subscriptions_button": "ui/realms_settings_screen.json", + "invite_link_item_content": "ui/realms_settings_screen.json", + "invite_link_item_content/invite_link_item_name_and_expiry_text": "ui/realms_settings_screen.json", + "invite_link_item_content/invite_link_item_name_and_expiry_text/name_text": "ui/realms_settings_screen.json", + "invite_link_item_content/invite_link_item_name_and_expiry_text/spacing_gap": "ui/realms_settings_screen.json", + "invite_link_item_content/invite_link_item_name_and_expiry_text/expiry_text": "ui/realms_settings_screen.json", + "invite_link_item_content/invite_link_item_state_text": "ui/realms_settings_screen.json", + "invite_link_item_content/invite_link_item_state_text/state_text": "ui/realms_settings_screen.json", + "invite_link_item_content/spacing_gap": "ui/realms_settings_screen.json", + "invite_link_item_template": "ui/realms_settings_screen.json", + "invite_link_item_template/invite_link_item_button": "ui/realms_settings_screen.json", + "invite_links_section": "ui/realms_settings_screen.json", + "invite_links_section/loading_view": "ui/realms_settings_screen.json", + "invite_links_section/loading_failed_view": "ui/realms_settings_screen.json", + "invite_links_section/loaded_view": "ui/realms_settings_screen.json", + "invite_links_section/loaded_view/spacing_gap_0": "ui/realms_settings_screen.json", + "invite_links_section/loaded_view/invite_links_info": "ui/realms_settings_screen.json", + "invite_links_section/loaded_view/invite_links_grid": "ui/realms_settings_screen.json", + "invite_links_section/loaded_view/spacing_gap_1": "ui/realms_settings_screen.json", + "invite_links_section/loaded_view/add_invite_link_button": "ui/realms_settings_screen.json", + "advanced_section": "ui/realms_settings_screen.json", + "advanced_section/loading_view": "ui/realms_settings_screen.json", + "advanced_section/loading_failed_view": "ui/realms_settings_screen.json", + "advanced_section/loaded_view": "ui/realms_settings_screen.json", + "advanced_section/loaded_view/spacing_gap_0": "ui/realms_settings_screen.json", + "advanced_section/loaded_view/server_preference": "ui/realms_settings_screen.json", + "advanced_section/loaded_view/set_region_content": "ui/realms_settings_screen.json", + "advanced_section/loaded_view/changes_not_applied_panel": "ui/realms_settings_screen.json", + "advanced_section/loaded_view/changes_not_applied_panel/changes_not_applied_label": "ui/realms_settings_screen.json", + "advanced_section/loaded_view/spacing_gap_1": "ui/realms_settings_screen.json", + "advanced_section/loaded_view/region_help_button": "ui/realms_settings_screen.json", + "set_region_dropdown": "ui/realms_settings_screen.json", + "region_dropdown_content": "ui/realms_settings_screen.json", + "region_dropdown_radio": "ui/realms_settings_screen.json", + "region_help_button_content": "ui/realms_settings_screen.json", + "region_help_button_content/external_link_icon": "ui/realms_settings_screen.json", + "region_help_button_content/spacing_gap_1": "ui/realms_settings_screen.json", + "region_help_button_content/help_text": "ui/realms_settings_screen.json", + "tts_focus_border": "ui/realms_settings_screen.json", + "saves_section": "ui/realms_settings_screen.json", + "saves_section/padding_saves_section_top": "ui/realms_settings_screen.json", + "saves_section/loaded_view": "ui/realms_settings_screen.json", + "saves_section/loaded_view/storage_bar_header_panel": "ui/realms_settings_screen.json", + "saves_section/loaded_view/storage_bar_header_panel/storage_bar_with_header": "ui/realms_settings_screen.json", + "saves_section/loaded_view/storage_bar_header_panel/focus_border": "ui/realms_settings_screen.json", + "saves_section/loaded_view/padding3": "ui/realms_settings_screen.json", + "saves_section/loaded_view/save_active_world_button": "ui/realms_settings_screen.json", + "saves_section/loaded_view/padding4": "ui/realms_settings_screen.json", + "saves_section/loaded_view/active_world_info": "ui/realms_settings_screen.json", + "saves_section/loaded_view/padding5": "ui/realms_settings_screen.json", + "saves_section/loaded_view/storage_warning": "ui/realms_settings_screen.json", + "saves_section/loaded_view/storage_warning/warning_text_panel": "ui/realms_settings_screen.json", + "saves_section/loaded_view/storage_warning/focus_border": "ui/realms_settings_screen.json", + "saves_section/loaded_view/padding6": "ui/realms_settings_screen.json", + "saves_section/loaded_view/save_list_container": "ui/realms_settings_screen.json", + "saves_section/loaded_view/save_list_container/tab_buttons": "ui/realms_settings_screen.json", + "saves_section/loaded_view/save_list_container/tab_content_panel": "ui/realms_settings_screen.json", + "saves_section/loaded_view/padding_loaded_view_bottom": "ui/realms_settings_screen.json", + "saves_section/loaded_view/restore_info": "ui/realms_settings_screen.json", + "saves_section/loaded_view/saves_help_panel": "ui/realms_settings_screen.json", + "saves_section/loading_indicator": "ui/realms_settings_screen.json", + "saves_section/loading_indicator/restore_info": "ui/realms_settings_screen.json", + "saves_section/loading_indicator/loading_text_panel": "ui/realms_settings_screen.json", + "saves_section/loading_indicator/loading_text_panel/loading_text": "ui/realms_settings_screen.json", + "saves_section/loading_indicator/loading_text_panel/loading_text_padding": "ui/realms_settings_screen.json", + "saves_section/loading_indicator/loading_bars": "ui/realms_settings_screen.json", + "saves_section/loading_indicator/loading_bars/progress_loading_bars": "ui/realms_settings_screen.json", + "saves_section/loading_failed_panel": "ui/realms_settings_screen.json", + "saves_section/loading_failed_panel/restore_info": "ui/realms_settings_screen.json", + "saves_section/loading_failed_panel/saves_help_panel": "ui/realms_settings_screen.json", + "saves_section/loading_failed_panel/loading_failed_message": "ui/realms_settings_screen.json", + "saves_help_panel": "ui/realms_settings_screen.json", + "saves_help_panel/padding_help_button_top": "ui/realms_settings_screen.json", + "saves_help_panel/saves_help_button": "ui/realms_settings_screen.json", + "saves_help_panel/padding_help_button_bottom": "ui/realms_settings_screen.json", + "saves_help_button_content": "ui/realms_settings_screen.json", + "saves_help_button_content/external_link_icon": "ui/realms_settings_screen.json", + "saves_help_button_content/spacing_gap_1": "ui/realms_settings_screen.json", + "saves_help_button_content/help_text": "ui/realms_settings_screen.json", + "storage_bar_label_stack_panel": "ui/realms_settings_screen.json", + "storage_bar_label_stack_panel/text_left": "ui/realms_settings_screen.json", + "storage_bar_label_stack_panel/padding": "ui/realms_settings_screen.json", + "storage_bar_label_stack_panel/text_right": "ui/realms_settings_screen.json", + "storage_bar_panel_with_header": "ui/realms_settings_screen.json", + "storage_bar_panel_with_header/label_panel": "ui/realms_settings_screen.json", + "storage_bar_panel_with_header/label_panel/heading_label": "ui/realms_settings_screen.json", + "storage_bar_panel_with_header/padding2": "ui/realms_settings_screen.json", + "storage_bar_panel_with_header/storage_bar_panel": "ui/realms_settings_screen.json", + "realm_storage_heading_label": "ui/realms_settings_screen.json", + "storage_bar_panel": "ui/realms_settings_screen.json", + "storage_bar_panel/storage_bar_label": "ui/realms_settings_screen.json", + "storage_bar_panel/padding": "ui/realms_settings_screen.json", + "storage_bar_panel/storage_bar": "ui/realms_settings_screen.json", + "storage_bar_panel_with_tts_focus_border": "ui/realms_settings_screen.json", + "storage_bar_panel_with_tts_focus_border/storage_bar_panel": "ui/realms_settings_screen.json", + "storage_bar_panel_with_tts_focus_border/focus_border": "ui/realms_settings_screen.json", + "storage_bar": "ui/realms_settings_screen.json", + "storage_bar/empty_progress_bar_beveled": "ui/realms_settings_screen.json", + "storage_bar/storage_fill": "ui/realms_settings_screen.json", + "storage_bar/storage_bar_beveled_overlay": "ui/realms_settings_screen.json", + "active_world_info_panel": "ui/realms_settings_screen.json", + "active_world_info_panel/active_world_info_label_stack_panel": "ui/realms_settings_screen.json", + "active_world_info_panel/active_world_info_label_stack_panel/active_world_name_label": "ui/realms_settings_screen.json", + "active_world_info_panel/active_world_info_label_stack_panel/active_world_size_label": "ui/realms_settings_screen.json", + "active_world_info_panel/focus_border": "ui/realms_settings_screen.json", + "warning_text_panel": "ui/realms_settings_screen.json", + "warning_text_panel/warning_panel": "ui/realms_settings_screen.json", + "warning_text_panel/warning_panel/padding1": "ui/realms_settings_screen.json", + "warning_text_panel/warning_panel/warning_image": "ui/realms_settings_screen.json", + "warning_text_panel/warning_panel/padding2": "ui/realms_settings_screen.json", + "warning_text_panel/padding1": "ui/realms_settings_screen.json", + "warning_text_panel/text_label": "ui/realms_settings_screen.json", + "popup_dialog_background": "ui/realms_settings_screen.json", + "popup_dialog_label": "ui/realms_settings_screen.json", + "delete_selected_saves_button": "ui/realms_settings_screen.json", + "cancel_popup_button": "ui/realms_settings_screen.json", + "free_up_space_popup_content": "ui/realms_settings_screen.json", + "free_up_space_popup_content/common_panel": "ui/realms_settings_screen.json", + "free_up_space_popup_content/title_label": "ui/realms_settings_screen.json", + "free_up_space_popup_content/panel_indent": "ui/realms_settings_screen.json", + "free_up_space_popup_content/panel_indent/inside_header_panel": "ui/realms_settings_screen.json", + "free_up_space_popup_content/button_panel": "ui/realms_settings_screen.json", + "free_up_space_popup_content/button_panel/left_button_panel": "ui/realms_settings_screen.json", + "free_up_space_popup_content/button_panel/pad": "ui/realms_settings_screen.json", + "free_up_space_popup_content/button_panel/right_button_panel": "ui/realms_settings_screen.json", + "free_up_space_popup_scrolling_panel": "ui/realms_settings_screen.json", + "free_up_space_text_description": "ui/realms_settings_screen.json", + "free_up_space_popup_content_stack_panel": "ui/realms_settings_screen.json", + "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel": "ui/realms_settings_screen.json", + "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/free_up_space_storage_bar_panel": "ui/realms_settings_screen.json", + "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/focus_border": "ui/realms_settings_screen.json", + "free_up_space_popup_content_stack_panel/padding_1": "ui/realms_settings_screen.json", + "free_up_space_popup_content_stack_panel/free_up_space_manual_save_list_stack_panel": "ui/realms_settings_screen.json", + "popup_dialog__free_up_space": "ui/realms_settings_screen.json", + "popup_dialog__free_up_space/free_up_space_popup_background": "ui/realms_settings_screen.json", + "popup_dialog__free_up_space/free_up_space_popup_content": "ui/realms_settings_screen.json", + "top_tab": "ui/realms_settings_screen.json", + "tab_content": "ui/realms_settings_screen.json", + "tab_content/text": "ui/realms_settings_screen.json", + "manual_navigation_tab": "ui/realms_settings_screen.json", + "automatic_navigation_tab": "ui/realms_settings_screen.json", + "tab_navigation_panel_layout": "ui/realms_settings_screen.json", + "tab_navigation_panel_layout/content": "ui/realms_settings_screen.json", + "button_tabs_container": "ui/realms_settings_screen.json", + "button_tabs_container/manual_navigation_tab": "ui/realms_settings_screen.json", + "button_tabs_container/automatic_navigation_tab": "ui/realms_settings_screen.json", + "tab_content_panel": "ui/realms_settings_screen.json", + "tab_content_panel/background": "ui/realms_settings_screen.json", + "tab_content_panel/background/manual_save_list": "ui/realms_settings_screen.json", + "tab_content_panel/background/automatic_save_list": "ui/realms_settings_screen.json", + "save_list_panel": "ui/realms_settings_screen.json", + "save_list_panel/save_list": "ui/realms_settings_screen.json", + "manual_save_list_panel": "ui/realms_settings_screen.json", + "manual_tab_info_panel": "ui/realms_settings_screen.json", + "manual_tab_info_panel/info_label": "ui/realms_settings_screen.json", + "manual_save_list_stack_panel": "ui/realms_settings_screen.json", + "manual_save_list_stack_panel/padding1": "ui/realms_settings_screen.json", + "manual_save_list_stack_panel/save_tab_info_label": "ui/realms_settings_screen.json", + "manual_save_list_stack_panel/padding2": "ui/realms_settings_screen.json", + "manual_save_list_stack_panel/stack_panel": "ui/realms_settings_screen.json", + "manual_save_list_stack_panel/padding3": "ui/realms_settings_screen.json", + "automatic_save_list_panel": "ui/realms_settings_screen.json", + "automatic_tab_info_panel": "ui/realms_settings_screen.json", + "automatic_tab_info_panel/info_label": "ui/realms_settings_screen.json", + "automatic_save_list_stack_panel": "ui/realms_settings_screen.json", + "automatic_save_list_stack_panel/padding1": "ui/realms_settings_screen.json", + "automatic_save_list_stack_panel/save_tab_info_label": "ui/realms_settings_screen.json", + "automatic_save_list_stack_panel/padding2": "ui/realms_settings_screen.json", + "automatic_save_list_stack_panel/stack_panel": "ui/realms_settings_screen.json", + "automatic_save_list_stack_panel/padding3": "ui/realms_settings_screen.json", + "options_icon": "ui/realms_settings_screen.json", + "saves_info_accordian": "ui/realms_settings_screen.json", + "saves_info_accordian/main_content_panel": "ui/realms_settings_screen.json", + "saves_info_accordian/main_content_panel/checkbox_button": "ui/realms_settings_screen.json", + "saves_info_accordian/main_content_panel/main_item_toggle": "ui/realms_settings_screen.json", + "saves_info_accordian/main_content_panel/options_button": "ui/realms_settings_screen.json", + "saves_info_accordian/sub_content_panel": "ui/realms_settings_screen.json", + "saves_info_accordian/sub_content_panel/saves_content": "ui/realms_settings_screen.json", + "saves_info_accordion_checkbox": "ui/realms_settings_screen.json", + "saves_info_accordion_checkbox/unchecked_control": "ui/realms_settings_screen.json", + "saves_info_accordion_checkbox/checked_control": "ui/realms_settings_screen.json", + "saves_info_accordion_checkbox/unchecked_hover_control": "ui/realms_settings_screen.json", + "saves_info_accordion_checkbox/checked__hover_control": "ui/realms_settings_screen.json", + "main_item_content": "ui/realms_settings_screen.json", + "main_item_content/date_and_name": "ui/realms_settings_screen.json", + "main_item_content/date_and_name/date_saved_label": "ui/realms_settings_screen.json", + "main_item_content/date_and_name/world_name_label": "ui/realms_settings_screen.json", + "main_item_content/time_and_size": "ui/realms_settings_screen.json", + "main_item_content/time_and_size/save_data_time_label": "ui/realms_settings_screen.json", + "main_item_content/time_and_size/save_data_size_label": "ui/realms_settings_screen.json", + "main_item_content/padding_left_down_icon": "ui/realms_settings_screen.json", + "main_item_content/down_icon": "ui/realms_settings_screen.json", + "main_item_content/down_icon/options_icon": "ui/realms_settings_screen.json", + "main_item_content/padding_right_down_icon": "ui/realms_settings_screen.json", + "option_saves_info_label": "ui/realms_settings_screen.json", + "saves_info_container": "ui/realms_settings_screen.json", + "saves_info_container/saves_info_content": "ui/realms_settings_screen.json", + "saves_info_content": "ui/realms_settings_screen.json", + "saves_info_content/version_panel": "ui/realms_settings_screen.json", + "saves_info_content/pack_header_panel": "ui/realms_settings_screen.json", + "saves_info_content/world_packs_label": "ui/realms_settings_screen.json", + "version_panel": "ui/realms_settings_screen.json", + "version_panel/left_content": "ui/realms_settings_screen.json", + "version_panel/left_content/save_version_label": "ui/realms_settings_screen.json", + "pack_header_panel": "ui/realms_settings_screen.json", + "pack_header_panel/left_content": "ui/realms_settings_screen.json", + "pack_header_panel/left_content/packs_label": "ui/realms_settings_screen.json", + "label_text": "ui/realms_settings_screen.json", + "branch_grid_item_content": "ui/realms_settings_screen.json", + "branch_grid_item_content/branch_text": "ui/realms_settings_screen.json", + "branch_grid_item_content/commit_text": "ui/realms_settings_screen.json", + "matching_item_button_content": "ui/realms_settings_screen.json", + "matching_item_button_content/branch_text": "ui/realms_settings_screen.json", + "matching_item_button_content/commit_text": "ui/realms_settings_screen.json", + "branch_item_template": "ui/realms_settings_screen.json", + "branch_item_template/branch_item_button": "ui/realms_settings_screen.json", + "branches_grid": "ui/realms_settings_screen.json", + "branch_set_panel": "ui/realms_settings_screen.json", + "branch_set_panel/set_branch_id_label": "ui/realms_settings_screen.json", + "version_filter_text_box": "ui/realms_settings_screen.json", + "branch_page_panel": "ui/realms_settings_screen.json", + "branch_page_panel/prev_button": "ui/realms_settings_screen.json", + "branch_page_panel/page_text": "ui/realms_settings_screen.json", + "branch_page_panel/next_button": "ui/realms_settings_screen.json", + "branches_panel": "ui/realms_settings_screen.json", + "branches_panel/branch_label": "ui/realms_settings_screen.json", + "branches_panel/spacing_gap_1": "ui/realms_settings_screen.json", + "branches_panel/set_branch_version_label": "ui/realms_settings_screen.json", + "branches_panel/branch_set_panel": "ui/realms_settings_screen.json", + "branches_panel/spacing_gap_2": "ui/realms_settings_screen.json", + "branches_panel/matching_version_label": "ui/realms_settings_screen.json", + "branches_panel/matching_item_button": "ui/realms_settings_screen.json", + "branches_panel/spacing_gap_3": "ui/realms_settings_screen.json", + "branches_panel/all_commits_label": "ui/realms_settings_screen.json", + "branches_panel/version_filter_text_box": "ui/realms_settings_screen.json", + "branches_panel/branches_grid": "ui/realms_settings_screen.json", + "branches_panel/spacing_gap": "ui/realms_settings_screen.json", + "branches_panel/branch_page_panel": "ui/realms_settings_screen.json", + "branch_section": "ui/realms_settings_screen.json", + "branch_section/branches_panel": "ui/realms_settings_screen.json", + "popup_dialog__backups": "ui/realms_settings_screen.json", + "popup_dialog__backups/transparent_close_button": "ui/realms_settings_screen.json", + "popup_dialog__backups/backup_restore_popup_content": "ui/realms_settings_screen.json", + "backup_restore_popup_content": "ui/realms_settings_screen.json", + "backup_restore_popup_content/popup_dialog_bg": "ui/realms_settings_screen.json", + "backup_restore_popup_content/backup_restore_popup_dialog_header": "ui/realms_settings_screen.json", + "backup_restore_popup_content/backup_restore_popup_dialog_body": "ui/realms_settings_screen.json", + "backup_restore_popup_dialog_header": "ui/realms_settings_screen.json", + "backup_restore_popup_dialog_header/backup_restore_popup_dialog_header_text": "ui/realms_settings_screen.json", + "backup_restore_popup_dialog_header_text": "ui/realms_settings_screen.json", + "backup_restore_popup_dialog_body": "ui/realms_settings_screen.json", + "backup_restore_popup_dialog_body/backup_restore_loading_panel": "ui/realms_settings_screen.json", + "backup_restore_loading_panel": "ui/realms_settings_screen.json", + "backup_restore_loading_panel/backup_restore_loading_stack_panel": "ui/realms_settings_screen.json", + "backup_restore_loading_stack_panel": "ui/realms_settings_screen.json", + "backup_restore_loading_stack_panel/padding": "ui/realms_settings_screen.json", + "backup_restore_loading_stack_panel/backup_restore_text_panel": "ui/realms_settings_screen.json", + "backup_restore_loading_stack_panel/backup_restore_loading_bar_panel": "ui/realms_settings_screen.json", + "backup_restore_loading_stack_panel/padding2": "ui/realms_settings_screen.json", + "backup_restore_text_panel": "ui/realms_settings_screen.json", + "backup_restore_text_panel/loading_text": "ui/realms_settings_screen.json", + "backup_restore_loading_bar_panel": "ui/realms_settings_screen.json", + "backup_restore_loading_bar_panel/progress_loading_bars": "ui/realms_settings_screen.json", + "backup_replace_icon": "ui/realms_settings_screen.json", + "backup_download_icon": "ui/realms_settings_screen.json", + "backup_grid_item_content": "ui/realms_settings_screen.json", + "backup_grid_item_content/backup_grid_item_icon_panel": "ui/realms_settings_screen.json", + "backup_grid_item_content/backup_grid_item_name_and_time_since": "ui/realms_settings_screen.json", + "backup_grid_item_content/backup_grid_item_date_and_time": "ui/realms_settings_screen.json", + "backup_grid_item_content/spacing_gap": "ui/realms_settings_screen.json", + "backup_grid_item_name_and_time_since": "ui/realms_settings_screen.json", + "backup_grid_item_name_and_time_since/date_text": "ui/realms_settings_screen.json", + "backup_grid_item_name_and_time_since/spacing_gap": "ui/realms_settings_screen.json", + "backup_grid_item_name_and_time_since/version_text": "ui/realms_settings_screen.json", + "backup_grid_item_date_and_time": "ui/realms_settings_screen.json", + "backup_grid_item_date_and_time/time_text": "ui/realms_settings_screen.json", + "backup_grid_item_date_and_time/spacing_gap": "ui/realms_settings_screen.json", + "backup_grid_item_date_and_time/size_text": "ui/realms_settings_screen.json", + "backup_grid_item_icon_panel": "ui/realms_settings_screen.json", + "backup_grid_item_icon_panel/backup_replace_icon": "ui/realms_settings_screen.json", + "backup_item_template": "ui/realms_settings_screen.json", + "backup_item_template/backup_item_button": "ui/realms_settings_screen.json", + "backup_item_template/download_backup_panel": "ui/realms_settings_screen.json", + "backup_item_template/download_backup_panel/download_backup_button": "ui/realms_settings_screen.json", + "download_backup_button": "ui/realms_settings_screen.json", + "backup_grid": "ui/realms_settings_screen.json", + "backup_section": "ui/realms_settings_screen.json", + "backup_section/backup_panel": "ui/realms_settings_screen.json", + "backup_info_label": "ui/realms_settings_screen.json", + "backup_network_error_label": "ui/realms_settings_screen.json", + "backup_panel": "ui/realms_settings_screen.json", + "backup_panel/spacing_gap": "ui/realms_settings_screen.json", + "backup_panel/backup_info_label": "ui/realms_settings_screen.json", + "backup_panel/spacing_gap2": "ui/realms_settings_screen.json", + "backup_panel/progress_panel": "ui/realms_settings_screen.json", + "backup_panel/progress_panel/progress_loading_bars": "ui/realms_settings_screen.json", + "backup_panel/backup_grid": "ui/realms_settings_screen.json", + "backup_panel/backup_network_error_label": "ui/realms_settings_screen.json", + "test_content": "ui/realms_settings_screen.json", + "test_content/realms_allowlist_content_panel": "ui/realms_settings_screen.json", + "test_content/gamepad_helpers": "ui/realms_settings_screen.json", + "selector_panel": "ui/realms_settings_screen.json", + "selector_panel/play_button": "ui/realms_settings_screen.json", + "selector_panel/disabled_play_button": "ui/realms_settings_screen.json", + "selector_panel/expired_play_button": "ui/realms_settings_screen.json", + "selector_panel/padding": "ui/realms_settings_screen.json", + "selector_panel/selector_group_label": "ui/realms_settings_screen.json", + "selector_panel/world_button": "ui/realms_settings_screen.json", + "selector_panel/members_button": "ui/realms_settings_screen.json", + "selector_panel/saves_button": "ui/realms_settings_screen.json", + "selector_panel/subscription_button": "ui/realms_settings_screen.json", + "selector_panel/backup_button": "ui/realms_settings_screen.json", + "selector_panel/dev_options_button": "ui/realms_settings_screen.json", + "selector_panel/invite_links_button": "ui/realms_settings_screen.json", + "selector_panel/advanced_button": "ui/realms_settings_screen.json", + "section_content_panels": "ui/realms_settings_screen.json", + "section_content_panels/world_section": "ui/realms_settings_screen.json", + "section_content_panels/players_section": "ui/realms_settings_screen.json", + "section_content_panels/subscription_section": "ui/realms_settings_screen.json", + "section_content_panels/invite_links_section": "ui/realms_settings_screen.json", + "section_content_panels/advanced_section": "ui/realms_settings_screen.json", + "section_content_panels/dev_options_section": "ui/realms_settings_screen.json", + "section_content_panels/backup_section": "ui/realms_settings_screen.json", + "section_content_panels/saves_section": "ui/realms_settings_screen.json", + "popup_dialog__save_options": "ui/realms_settings_screen.json", + "save_options_popup_content": "ui/realms_settings_screen.json", + "save_options_popup_content/restore_button": "ui/realms_settings_screen.json", + "save_options_popup_content/spacing_1": "ui/realms_settings_screen.json", + "save_options_popup_content/download_button": "ui/realms_settings_screen.json", + "save_options_popup_content/spacing_2": "ui/realms_settings_screen.json", + "save_options_popup_content/save_button_container": "ui/realms_settings_screen.json", + "save_options_popup_content/save_button_container/save_button": "ui/realms_settings_screen.json", + "save_options_popup_content/save_button_container/spacing_3": "ui/realms_settings_screen.json", + "save_options_popup_content/delete_button_container": "ui/realms_settings_screen.json", + "save_options_popup_content/delete_button_container/delete_button": "ui/realms_settings_screen.json", + "standalone_dialog_title": "ui/realms_settings_screen.json", + "standalone_dialog_title/left_padding": "ui/realms_settings_screen.json", + "standalone_dialog_title/dialog_title_label": "ui/realms_settings_screen.json", + "standalone_dialog_title/right_padding": "ui/realms_settings_screen.json", + "standalone_dialog_content": "ui/realms_settings_screen.json", + "standalone_dialog_content/dialog_title": "ui/realms_settings_screen.json", + "standalone_dialog_content/content_area": "ui/realms_settings_screen.json", + "standalone_content_area": "ui/realms_settings_screen.json", + "standalone_content_area/control": "ui/realms_settings_screen.json", + "standalone_content_area/control/scrolling_panel": "ui/realms_settings_screen.json", + "realms_settings_screen_base_no_selector_area": "ui/realms_settings_screen.json", + "screen_realm_hub_manage_members": "ui/realms_settings_screen.json", + "screen_realm_hub_invite_links": "ui/realms_settings_screen.json", + }, + "realms_allowlist": { + "spacing_gap": "ui/realms_allowlist.json", + "friends_containing_panel": "ui/realms_allowlist.json", + "friends_containing_panel/friends_panel": "ui/realms_allowlist.json", + "friends_panel": "ui/realms_allowlist.json", + "friends_panel/add_friends_and_invite_link_panel": "ui/realms_allowlist.json", + "friends_panel/option_dropdown_permissions": "ui/realms_allowlist.json", + "friends_panel/player_filter_label": "ui/realms_allowlist.json", + "friends_panel/player_filter_text_box": "ui/realms_allowlist.json", + "friends_panel/spacing_gap_members_top": "ui/realms_allowlist.json", + "friends_panel/lists": "ui/realms_allowlist.json", + "friends_panel/lists/members_label": "ui/realms_allowlist.json", + "friends_panel/lists/members_stack": "ui/realms_allowlist.json", + "friends_panel/lists/spacing_gap_members_bottom": "ui/realms_allowlist.json", + "friends_panel/lists/members_page_panel": "ui/realms_allowlist.json", + "friends_panel/lists/invited_friends_label": "ui/realms_allowlist.json", + "friends_panel/lists/invited_stack": "ui/realms_allowlist.json", + "friends_panel/lists/spacing_gap_invited_friends": "ui/realms_allowlist.json", + "friends_panel/lists/invited_friends_page_panel": "ui/realms_allowlist.json", + "friends_panel/lists/uninvited_friends_label": "ui/realms_allowlist.json", + "friends_panel/lists/uninvited_stack": "ui/realms_allowlist.json", + "friends_panel/lists/spacing_gap_uninvited_friends": "ui/realms_allowlist.json", + "friends_panel/lists/uninvited_friends_page_panel": "ui/realms_allowlist.json", + "friends_panel/lists/blocked_players_label": "ui/realms_allowlist.json", + "friends_panel/lists/blocked_players_stack": "ui/realms_allowlist.json", + "friends_panel/lists/spacing_gap_blocked_players": "ui/realms_allowlist.json", + "friends_panel/lists/blocked_players_page_panel": "ui/realms_allowlist.json", + "friends_panel/lists/no_invites_label": "ui/realms_allowlist.json", + "friends_panel/loading_friends": "ui/realms_allowlist.json", + "add_friends_and_invite_link_panel": "ui/realms_allowlist.json", + "add_friends_and_invite_link_panel/allowlist_stack_panel": "ui/realms_allowlist.json", + "add_friends_and_invite_link_panel/allowlist_stack_panel/find_friends_button_panel": "ui/realms_allowlist.json", + "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_1": "ui/realms_allowlist.json", + "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel": "ui/realms_allowlist.json", + "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel/invite_links_button": "ui/realms_allowlist.json", + "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_2": "ui/realms_allowlist.json", + "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel": "ui/realms_allowlist.json", + "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel/clear_members_button": "ui/realms_allowlist.json", + "options_icon": "ui/realms_allowlist.json", + "account_link_image": "ui/realms_allowlist.json", + "account_link_icon": "ui/realms_allowlist.json", + "account_link_icon/space_01": "ui/realms_allowlist.json", + "account_link_icon/account_link_image": "ui/realms_allowlist.json", + "account_link_icon/space_03": "ui/realms_allowlist.json", + "find_friends_button_panel": "ui/realms_allowlist.json", + "find_friends_button_panel/find_friends_button": "ui/realms_allowlist.json", + "invited_friends_label": "ui/realms_allowlist.json", + "invited_friends_label/friend_title": "ui/realms_allowlist.json", + "player_filter_label": "ui/realms_allowlist.json", + "player_filter_label/player_filter_title": "ui/realms_allowlist.json", + "members_label": "ui/realms_allowlist.json", + "members_label/friend_title": "ui/realms_allowlist.json", + "members_label/padding_panel": "ui/realms_allowlist.json", + "members_label/loading_text": "ui/realms_allowlist.json", + "blocked_players_label": "ui/realms_allowlist.json", + "blocked_players_label/friend_title": "ui/realms_allowlist.json", + "uninvited_friends_label": "ui/realms_allowlist.json", + "uninvited_friends_label/friend_title": "ui/realms_allowlist.json", + "no_invites_label": "ui/realms_allowlist.json", + "loading_friends": "ui/realms_allowlist.json", + "blocked_grid_item": "ui/realms_allowlist.json", + "blocked_grid_item/blocked_panel": "ui/realms_allowlist.json", + "factory_stack": "ui/realms_allowlist.json", + "member_factory_xbl_profile": "ui/realms_allowlist.json", + "member_factory_linked_account": "ui/realms_allowlist.json", + "invited_factory_xbl_profile": "ui/realms_allowlist.json", + "invited_factory_linked_account": "ui/realms_allowlist.json", + "uninvited_factory_xbl_profile": "ui/realms_allowlist.json", + "uninvited_factory_linked_account": "ui/realms_allowlist.json", + "blocked_factory_xbl_profile": "ui/realms_allowlist.json", + "blocked_factory_linked_account": "ui/realms_allowlist.json", + "xbl_profile_panel_factory": "ui/realms_allowlist.json", + "xbl_profile_blocked_panel_factory": "ui/realms_allowlist.json", + "linked_account_panel_factory": "ui/realms_allowlist.json", + "linked_account_blocked_panel_factory": "ui/realms_allowlist.json", + "xbl_profile_panel": "ui/realms_allowlist.json", + "xbl_profile_panel/player_status_panel": "ui/realms_allowlist.json", + "xbl_profile_panel/xbl_user_panel": "ui/realms_allowlist.json", + "xbl_profile_panel/right_controls_panel": "ui/realms_allowlist.json", + "xbl_profile_panel/progress": "ui/realms_allowlist.json", + "factory_gap_template": "ui/realms_allowlist.json", + "factory_gap_template/gapped_control": "ui/realms_allowlist.json", + "factory_gap_template/spacing1": "ui/realms_allowlist.json", + "gapped_xbl_profile_panel": "ui/realms_allowlist.json", + "gapped_linked_account_panel": "ui/realms_allowlist.json", + "gapped_blocked_xbl_profile_panel": "ui/realms_allowlist.json", + "gapped_blocked_linked_account_panel": "ui/realms_allowlist.json", + "blocked_panel": "ui/realms_allowlist.json", + "blocked_panel/xbl_user_panel": "ui/realms_allowlist.json", + "blocked_panel/unblock_button": "ui/realms_allowlist.json", + "linked_account_panel": "ui/realms_allowlist.json", + "linked_account_panel/linked_account_positioning_panel": "ui/realms_allowlist.json", + "linked_account_panel/right_controls_panel": "ui/realms_allowlist.json", + "linked_account_panel/progress": "ui/realms_allowlist.json", + "linked_account_blocked_panel": "ui/realms_allowlist.json", + "linked_account_blocked_panel/linked_account_positioning_panel": "ui/realms_allowlist.json", + "linked_account_blocked_panel/unblock_button": "ui/realms_allowlist.json", + "linked_account_blocked_panel/progress": "ui/realms_allowlist.json", + "xbl_user_panel": "ui/realms_allowlist.json", + "xbl_user_panel/spacing1": "ui/realms_allowlist.json", + "xbl_user_panel/platform_icon_positioner": "ui/realms_allowlist.json", + "xbl_user_panel/gamerpic_panel": "ui/realms_allowlist.json", + "xbl_user_panel/spacing2": "ui/realms_allowlist.json", + "xbl_user_panel/gamertag_label_panel": "ui/realms_allowlist.json", + "third_party_user_panel": "ui/realms_allowlist.json", + "third_party_user_panel/spacing1": "ui/realms_allowlist.json", + "third_party_user_panel/profile_picture": "ui/realms_allowlist.json", + "third_party_user_panel/spacing2": "ui/realms_allowlist.json", + "third_party_user_panel/third_party_profile_label": "ui/realms_allowlist.json", + "linked_profile_pictures_panel": "ui/realms_allowlist.json", + "linked_profile_pictures_panel/pp2": "ui/realms_allowlist.json", + "linked_profile_pictures_panel/account_link": "ui/realms_allowlist.json", + "linked_profile_pictures_panel/pp1": "ui/realms_allowlist.json", + "platform_profile_names": "ui/realms_allowlist.json", + "platform_profile_names/friend_grid_third_party_tag": "ui/realms_allowlist.json", + "platform_profile_names/spacer_02": "ui/realms_allowlist.json", + "platform_profile_names/friend_grid_xbl_gamertag": "ui/realms_allowlist.json", + "platform_profile_names/spacer_03": "ui/realms_allowlist.json", + "linked_user_stack_panel": "ui/realms_allowlist.json", + "linked_user_stack_panel/allow_offset_control": "ui/realms_allowlist.json", + "linked_user_stack_panel/allow_offset_control/player_status_panel": "ui/realms_allowlist.json", + "linked_user_stack_panel/platform_icon_positioner": "ui/realms_allowlist.json", + "linked_user_stack_panel/platform_icon_positioner/platform_icon": "ui/realms_allowlist.json", + "linked_user_stack_panel/spacing1": "ui/realms_allowlist.json", + "linked_user_stack_panel/profile_picture": "ui/realms_allowlist.json", + "linked_user_stack_panel/spacing2": "ui/realms_allowlist.json", + "linked_user_stack_panel/platform_names_label": "ui/realms_allowlist.json", + "linked_user_stack_panel/spacing3": "ui/realms_allowlist.json", + "horizontal_indent": "ui/realms_allowlist.json", + "vertical_indent": "ui/realms_allowlist.json", + "gamerpic_panel": "ui/realms_allowlist.json", + "gamerpic_panel/black_border": "ui/realms_allowlist.json", + "gamerpic_panel/gamer_pic": "ui/realms_allowlist.json", + "third_party_profile_pic_panel": "ui/realms_allowlist.json", + "third_party_profile_pic_panel/black_border": "ui/realms_allowlist.json", + "third_party_profile_pic_panel/third_party_profile_picture": "ui/realms_allowlist.json", + "gamertag_label_panel": "ui/realms_allowlist.json", + "gamertag_label_panel/gamertag_label": "ui/realms_allowlist.json", + "gamertag_label_panel/real_name_label": "ui/realms_allowlist.json", + "third_party_profile_label": "ui/realms_allowlist.json", + "third_party_profile_label/profile_name_label": "ui/realms_allowlist.json", + "panel_text": "ui/realms_allowlist.json", + "gamertag_label": "ui/realms_allowlist.json", + "third_party_profile_name_label": "ui/realms_allowlist.json", + "real_name_label": "ui/realms_allowlist.json", + "right_settings_panel": "ui/realms_allowlist.json", + "right_settings_panel/member_settings": "ui/realms_allowlist.json", + "member_settings": "ui/realms_allowlist.json", + "member_settings/minus_button": "ui/realms_allowlist.json", + "member_settings/horizontal_space": "ui/realms_allowlist.json", + "member_settings/member_permissions": "ui/realms_allowlist.json", + "member_settings/op_deop_button": "ui/realms_allowlist.json", + "right_controls_panel": "ui/realms_allowlist.json", + "right_controls_panel/right_settings_panel": "ui/realms_allowlist.json", + "right_controls_panel/uninvited_friends_invite_button": "ui/realms_allowlist.json", + "player_status_panel": "ui/realms_allowlist.json", + "player_status_panel/player_online_icon": "ui/realms_allowlist.json", + "player_status_panel/player_offline_icon": "ui/realms_allowlist.json", + "permissions_dropdown": "ui/realms_allowlist.json", + "permissions_dropdown/vertical_space": "ui/realms_allowlist.json", + "permissions_dropdown/option_dropdown_permissions": "ui/realms_allowlist.json", + "invite_button": "ui/realms_allowlist.json", + "minus_button": "ui/realms_allowlist.json", + "unblock_label": "ui/realms_allowlist.json", + "unblock_button": "ui/realms_allowlist.json", + "op_deop_button": "ui/realms_allowlist.json", + "find_friends_button": "ui/realms_allowlist.json", + "black_border": "ui/realms_allowlist.json", + "gamer_pic": "ui/realms_allowlist.json", + "third_party_profile_picture": "ui/realms_allowlist.json", + "player_online_icon": "ui/realms_allowlist.json", + "player_offline_icon": "ui/realms_allowlist.json", + "plus_icon": "ui/realms_allowlist.json", + "more_icon": "ui/realms_allowlist.json", + "share_icon": "ui/realms_allowlist.json", + "minus_icon": "ui/realms_allowlist.json", + "op_icon": "ui/realms_allowlist.json", + "deop_icon": "ui/realms_allowlist.json", + "player_filter_text_box": "ui/realms_allowlist.json", + "page_panel": "ui/realms_allowlist.json", + "page_panel/prev_button": "ui/realms_allowlist.json", + "page_panel/page_text": "ui/realms_allowlist.json", + "page_panel/next_button": "ui/realms_allowlist.json", + "realms_allowlist_panel_content": "ui/realms_allowlist.json", + "realms_allowlist_content_panel": "ui/realms_allowlist.json", + "realms_allowlist_content_panel_children": "ui/realms_allowlist.json", + "realms_allowlist_content_panel_children/realms_allowlist_panel_content": "ui/realms_allowlist.json", + "realms_allowlist_content_panel_children/done_button": "ui/realms_allowlist.json", + "realms_allowlist_screen": "ui/realms_allowlist.json", + "realms_allowlist_content": "ui/realms_allowlist.json", + "realms_allowlist_content/root_panel": "ui/realms_allowlist.json", + "realms_allowlist_content/root_panel/realms_allowlist_content_panel": "ui/realms_allowlist.json", + "transparent_close_button": "ui/realms_allowlist.json", + }, + "realms_invite_link_settings": { + "generic_section_wrapper": "ui/realms_invite_link_settings_screen.json", + "generic_section_wrapper/generic_section": "ui/realms_invite_link_settings_screen.json", + "link_banner": "ui/realms_invite_link_settings_screen.json", + "clipboard_icon": "ui/realms_invite_link_settings_screen.json", + "description_wrap": "ui/realms_invite_link_settings_screen.json", + "description_wrap/description": "ui/realms_invite_link_settings_screen.json", + "invite_link_url": "ui/realms_invite_link_settings_screen.json", + "link_panel": "ui/realms_invite_link_settings_screen.json", + "link_panel/invite_link_url_wrapper": "ui/realms_invite_link_settings_screen.json", + "link_panel/link_copy_container": "ui/realms_invite_link_settings_screen.json", + "link_panel/link_copy_container/link_copy": "ui/realms_invite_link_settings_screen.json", + "general_content": "ui/realms_invite_link_settings_screen.json", + "general_content/spacing_gap_0": "ui/realms_invite_link_settings_screen.json", + "general_content/invite_link_title": "ui/realms_invite_link_settings_screen.json", + "general_content/invite_link_description": "ui/realms_invite_link_settings_screen.json", + "general_content/spacing_gap_1": "ui/realms_invite_link_settings_screen.json", + "general_content/link_panel": "ui/realms_invite_link_settings_screen.json", + "general_content/spacing_gap_2": "ui/realms_invite_link_settings_screen.json", + "general_content/activate_link_toggle": "ui/realms_invite_link_settings_screen.json", + "general_content/activate_link_description": "ui/realms_invite_link_settings_screen.json", + "general_content/spacing_gap_3": "ui/realms_invite_link_settings_screen.json", + "general_content/infinite_link_toggle": "ui/realms_invite_link_settings_screen.json", + "general_content/spacing_gap_4": "ui/realms_invite_link_settings_screen.json", + "general_content/share_link_title": "ui/realms_invite_link_settings_screen.json", + "general_content/share_link_description": "ui/realms_invite_link_settings_screen.json", + "general_content/spacing_gap_5": "ui/realms_invite_link_settings_screen.json", + "general_content/share_link_button": "ui/realms_invite_link_settings_screen.json", + "general_content/spacing_gap_6": "ui/realms_invite_link_settings_screen.json", + "general_content/remove_link_title": "ui/realms_invite_link_settings_screen.json", + "general_content/remove_invite_link_button": "ui/realms_invite_link_settings_screen.json", + "invite_link_expiration": "ui/realms_invite_link_settings_screen.json", + "advanced_content": "ui/realms_invite_link_settings_screen.json", + "advanced_content/spacing_gap_0": "ui/realms_invite_link_settings_screen.json", + "advanced_content/expiry_title": "ui/realms_invite_link_settings_screen.json", + "advanced_content/spacing_gap_1": "ui/realms_invite_link_settings_screen.json", + "advanced_content/expiration_description": "ui/realms_invite_link_settings_screen.json", + "advanced_content/spacing_gap_2": "ui/realms_invite_link_settings_screen.json", + "advanced_content/expiration_panel": "ui/realms_invite_link_settings_screen.json", + "advanced_content/expiration_panel/invite_link_expiration_wrapper": "ui/realms_invite_link_settings_screen.json", + "advanced_content/expiration_dropdown": "ui/realms_invite_link_settings_screen.json", + "expiration_dropdown_content": "ui/realms_invite_link_settings_screen.json", + "selector_panel": "ui/realms_invite_link_settings_screen.json", + "selector_panel/spacing_gap_0": "ui/realms_invite_link_settings_screen.json", + "selector_panel/general_button": "ui/realms_invite_link_settings_screen.json", + "selector_panel/advanced_button": "ui/realms_invite_link_settings_screen.json", + "section_content_panels": "ui/realms_invite_link_settings_screen.json", + "section_content_panels/general_section": "ui/realms_invite_link_settings_screen.json", + "section_content_panels/advanced_section": "ui/realms_invite_link_settings_screen.json", + }, + "realms_plus_ended": { + "subscription_ended_screen": "ui/realms_plus_ended_screen.json", + "subscription_ended_screen_content": "ui/realms_plus_ended_screen.json", + "subscription_ended_screen_content/root_panel": "ui/realms_plus_ended_screen.json", + "subscription_ended_screen_content/root_panel/gamepad_helpers": "ui/realms_plus_ended_screen.json", + "subscription_ended_screen_content/root_panel/main_panel": "ui/realms_plus_ended_screen.json", + "main_panel": "ui/realms_plus_ended_screen.json", + "main_panel/dialog": "ui/realms_plus_ended_screen.json", + "gamepad_helpers": "ui/realms_plus_ended_screen.json", + "gamepad_helpers/gamepad_helper_a": "ui/realms_plus_ended_screen.json", + "content_stack_panel": "ui/realms_plus_ended_screen.json", + "content_stack_panel/pad_0": "ui/realms_plus_ended_screen.json", + "content_stack_panel/main_content": "ui/realms_plus_ended_screen.json", + "content_stack_panel/pad_1": "ui/realms_plus_ended_screen.json", + "content_stack_panel/button_center_panel": "ui/realms_plus_ended_screen.json", + "content_stack_panel/button_center_panel/buttons": "ui/realms_plus_ended_screen.json", + "content_stack_panel/pad_2": "ui/realms_plus_ended_screen.json", + "main_content_panel": "ui/realms_plus_ended_screen.json", + "main_content_panel/main_content_stack_panel": "ui/realms_plus_ended_screen.json", + "main_content_panel/main_content_stack_panel/image_panel": "ui/realms_plus_ended_screen.json", + "main_content_panel/main_content_stack_panel/pad": "ui/realms_plus_ended_screen.json", + "main_content_panel/main_content_stack_panel/text_panel": "ui/realms_plus_ended_screen.json", + "main_content_panel/main_content_stack_panel/text_panel/text": "ui/realms_plus_ended_screen.json", + "buttons_panel": "ui/realms_plus_ended_screen.json", + "buttons_panel/more_info_button": "ui/realms_plus_ended_screen.json", + "buttons_panel/pad": "ui/realms_plus_ended_screen.json", + "buttons_panel/renew_subscription_button": "ui/realms_plus_ended_screen.json", + }, + "realmsPlus": { + "realms_plus_pdp_screen": "ui/realmsPlus_screen.json", + "realms_plus_upgrade_notice_screen": "ui/realmsPlus_screen.json", + "purple_background": "ui/realmsPlus_screen.json", + "purple_background/bottom_left_particles": "ui/realmsPlus_screen.json", + "purple_background/top_right_particles": "ui/realmsPlus_screen.json", + "main_background": "ui/realmsPlus_screen.json", + "main_background/dark_blue": "ui/realmsPlus_screen.json", + "main_background/grey_gradient": "ui/realmsPlus_screen.json", + "dark_blue_background": "ui/realmsPlus_screen.json", + "gradient_image_stack": "ui/realmsPlus_screen.json", + "gradient_image_stack/solid_pink": "ui/realmsPlus_screen.json", + "gradient_image_stack/gradient": "ui/realmsPlus_screen.json", + "gradient_content_panel": "ui/realmsPlus_screen.json", + "gradient_content_panel/gradient": "ui/realmsPlus_screen.json", + "gradient_content_panel/content_panel": "ui/realmsPlus_screen.json", + "realmsPlus_screen_main_panel": "ui/realmsPlus_screen.json", + "realmsPlus_main_panel": "ui/realmsPlus_screen.json", + "realmsPlus_main_panel/root_panel": "ui/realmsPlus_screen.json", + "realmsPlus_main_panel/root_panel/main_panel": "ui/realmsPlus_screen.json", + "realmsPlus_main_panel/popup_dialog_factory": "ui/realmsPlus_screen.json", + "dialog_content": "ui/realmsPlus_screen.json", + "dialog_content/selector_area": "ui/realmsPlus_screen.json", + "dialog_content/content_area": "ui/realmsPlus_screen.json", + "dialog_content/left_right_pane_divider": "ui/realmsPlus_screen.json", + "selector_area": "ui/realmsPlus_screen.json", + "selector_area/scrolling_panel": "ui/realmsPlus_screen.json", + "scrollable_selector_area_content": "ui/realmsPlus_screen.json", + "scrollable_selector_area_content/realmsPlus_toggle": "ui/realmsPlus_screen.json", + "scrollable_selector_area_content/content_toggle": "ui/realmsPlus_screen.json", + "scrollable_selector_area_content/faq_toggle": "ui/realmsPlus_screen.json", + "scrollable_selector_area_content/toggle_section_divider": "ui/realmsPlus_screen.json", + "scrollable_selector_area_content/buy_now_toggle": "ui/realmsPlus_screen.json", + "scrollable_selector_area_content/xbl_btn_panel": "ui/realmsPlus_screen.json", + "scrollable_selector_area_content/xbl_btn_panel/xbl_btn": "ui/realmsPlus_screen.json", + "scrollable_selector_area_content/focus_reset_input_panel": "ui/realmsPlus_screen.json", + "section_toggle_base": "ui/realmsPlus_screen.json", + "tab_button_text": "ui/realmsPlus_screen.json", + "toggle_base": "ui/realmsPlus_screen.json", + "toggle_base/toggle": "ui/realmsPlus_screen.json", + "toggle_base/padding": "ui/realmsPlus_screen.json", + "realmsPlus_toggle": "ui/realmsPlus_screen.json", + "content_toggle": "ui/realmsPlus_screen.json", + "faq_toggle": "ui/realmsPlus_screen.json", + "buy_now_toggle": "ui/realmsPlus_screen.json", + "left_right_pane_divider": "ui/realmsPlus_screen.json", + "content_area": "ui/realmsPlus_screen.json", + "content_area/control": "ui/realmsPlus_screen.json", + "content_area/control/scrolling_panel": "ui/realmsPlus_screen.json", + "section_content_panels": "ui/realmsPlus_screen.json", + "content_section_top_padding": "ui/realmsPlus_screen.json", + "section_base": "ui/realmsPlus_screen.json", + "buy_now_content_section": "ui/realmsPlus_screen.json", + "buy_now_content_section/content_section_top_padding": "ui/realmsPlus_screen.json", + "buy_now_content_section/content": "ui/realmsPlus_screen.json", + "markdown_background_animated": "ui/realmsPlus_screen.json", + "markdown_background_animated/realms_banner": "ui/realmsPlus_screen.json", + "markdown_background_animated/realms_plus_normal": "ui/realmsPlus_screen.json", + "markdown_background_animated/realms_plus_hover": "ui/realmsPlus_screen.json", + "markdown_background": "ui/realmsPlus_screen.json", + "markdown_background/banner_panel": "ui/realmsPlus_screen.json", + "markdown_background/banner_panel/banner": "ui/realmsPlus_screen.json", + "markdown_background/banner_panel/banner/banner_stack_panel": "ui/realmsPlus_screen.json", + "markdown_background/banner_panel/banner/banner_stack_panel/0": "ui/realmsPlus_screen.json", + "markdown_background/triangle_panel": "ui/realmsPlus_screen.json", + "markdown_background/triangle_panel/triangle": "ui/realmsPlus_screen.json", + "empty_label": "ui/realmsPlus_screen.json", + "full_width_section_divider": "ui/realmsPlus_screen.json", + }, + "realmsPlus_content": { + "realmsPlus_content_section": "ui/realmsPlus_sections/content_section.json", + "realmsPlus_content_section/content_section_top_padding": "ui/realmsPlus_sections/content_section.json", + "realmsPlus_content_section/content_sections": "ui/realmsPlus_sections/content_section.json", + "realmsPlus_content_section/content_section_bottom_padding": "ui/realmsPlus_sections/content_section.json", + "content_pack_types_section": "ui/realmsPlus_sections/content_section.json", + "content_pack_types_section/includes_marketplace_pass_wrapper": "ui/realmsPlus_sections/content_section.json", + "content_pack_types_section/padding_contentSub": "ui/realmsPlus_sections/content_section.json", + "content_pack_types_section/pack_types_wrapper": "ui/realmsPlus_sections/content_section.json", + "content_packs_included_section": "ui/realmsPlus_sections/content_section.json", + "content_packs_included_section/popular_packs": "ui/realmsPlus_sections/content_section.json", + "content_packs_included_section/section_divider": "ui/realmsPlus_sections/content_section.json", + "persona_row": "ui/realmsPlus_sections/content_section.json", + "persona_row/persona": "ui/realmsPlus_sections/content_section.json", + "worlds_row": "ui/realmsPlus_sections/content_section.json", + "pack_types": "ui/realmsPlus_sections/content_section.json", + "pack_types/middle_row": "ui/realmsPlus_sections/content_section.json", + "pack_types/middle_row/worlds_contentSub": "ui/realmsPlus_sections/content_section.json", + "pack_types/middle_row/textures": "ui/realmsPlus_sections/content_section.json", + "pack_types/bottom_row": "ui/realmsPlus_sections/content_section.json", + "pack_types/bottom_row/skins_persona_contentSub": "ui/realmsPlus_sections/content_section.json", + "pack_types/bottom_row/mashups": "ui/realmsPlus_sections/content_section.json", + "pack_types/bottom_contentSub": "ui/realmsPlus_sections/content_section.json", + "skins": "ui/realmsPlus_sections/content_section.json", + "friends_get_access": "ui/realmsPlus_sections/content_section.json", + "pack_type_row_panel": "ui/realmsPlus_sections/content_section.json", + "pack_type_description": "ui/realmsPlus_sections/content_section.json", + "pack_type_description/image_nesting_panel": "ui/realmsPlus_sections/content_section.json", + "pack_type_description/image_nesting_panel/texture": "ui/realmsPlus_sections/content_section.json", + "pack_type_description/padding_0": "ui/realmsPlus_sections/content_section.json", + "pack_type_description/description_nesting_panel": "ui/realmsPlus_sections/content_section.json", + "pack_type_description/description_nesting_panel/description_label": "ui/realmsPlus_sections/content_section.json", + "popular_packs": "ui/realmsPlus_sections/content_section.json", + "popular_packs/padding_0": "ui/realmsPlus_sections/content_section.json", + "popular_packs/pack_grid": "ui/realmsPlus_sections/content_section.json", + "popular_packs/view_all_packs_panel": "ui/realmsPlus_sections/content_section.json", + "popular_packs/view_all_packs_panel/view_all_packs_button": "ui/realmsPlus_sections/content_section.json", + "popular_packs/padding_1": "ui/realmsPlus_sections/content_section.json", + "popular_packs/view_character_creator_items_button": "ui/realmsPlus_sections/content_section.json", + "popular_packs/padding_2": "ui/realmsPlus_sections/content_section.json", + "popular_packs_label": "ui/realmsPlus_sections/content_section.json", + "includes_marketplace_pass": "ui/realmsPlus_sections/content_section.json", + "includes_marketplace_pass_label": "ui/realmsPlus_sections/content_section.json", + "packs_collection": "ui/realmsPlus_sections/content_section.json", + "packs_collection/row_1": "ui/realmsPlus_sections/content_section.json", + "packs_collection/row_1/pack_image_grid_item_0": "ui/realmsPlus_sections/content_section.json", + "packs_collection/row_1/padding": "ui/realmsPlus_sections/content_section.json", + "packs_collection/row_1/pack_image_grid_item_1": "ui/realmsPlus_sections/content_section.json", + "packs_collection/padding_1": "ui/realmsPlus_sections/content_section.json", + "packs_collection/row_2": "ui/realmsPlus_sections/content_section.json", + "packs_collection/row_2/pack_image_grid_item_0": "ui/realmsPlus_sections/content_section.json", + "packs_collection/row_2/padding": "ui/realmsPlus_sections/content_section.json", + "packs_collection/row_2/pack_image_grid_item_1": "ui/realmsPlus_sections/content_section.json", + "packs_collection/padding_2": "ui/realmsPlus_sections/content_section.json", + "pack_image_grid_item": "ui/realmsPlus_sections/content_section.json", + "pack_image_grid_item/bg": "ui/realmsPlus_sections/content_section.json", + "pack_image_grid_item/bg/featured_key_art": "ui/realmsPlus_sections/content_section.json", + "pack_image_grid_item/bg/progress_loading": "ui/realmsPlus_sections/content_section.json", + "pack_image_grid_item/offer_button": "ui/realmsPlus_sections/content_section.json", + "pack_image_grid_item/offer_button/default": "ui/realmsPlus_sections/content_section.json", + "pack_image_grid_item/offer_button/hover": "ui/realmsPlus_sections/content_section.json", + "pack_image_grid_item/offer_button/pressed": "ui/realmsPlus_sections/content_section.json", + }, + "realmsPlus_faq": { + "faq_image_section": "ui/realmsPlus_sections/faq_section.json", + "faq_image_local": "ui/realmsPlus_sections/faq_section.json", + "faq_image_type": "ui/realmsPlus_sections/faq_section.json", + "faq_image_type/0": "ui/realmsPlus_sections/faq_section.json", + "faq_text_section_body": "ui/realmsPlus_sections/faq_section.json", + "faq_text_question": "ui/realmsPlus_sections/faq_section.json", + "faq_text_section": "ui/realmsPlus_sections/faq_section.json", + "faq_text_section/faq_text_question": "ui/realmsPlus_sections/faq_section.json", + "faq_text_section/faq_text_answer": "ui/realmsPlus_sections/faq_section.json", + "faq_price_bound_text_section": "ui/realmsPlus_sections/faq_section.json", + "faq_price_bound_text_section/faq_text_question": "ui/realmsPlus_sections/faq_section.json", + "faq_price_bound_text_section/faq_text_answer": "ui/realmsPlus_sections/faq_section.json", + "faq_question_body": "ui/realmsPlus_sections/faq_section.json", + "faq_question_body/0": "ui/realmsPlus_sections/faq_section.json", + "faq_question_body_stack": "ui/realmsPlus_sections/faq_section.json", + "faq_question_body_horz_padding": "ui/realmsPlus_sections/faq_section.json", + "image_left_faq_question_body": "ui/realmsPlus_sections/faq_section.json", + "image_right_faq_question_body": "ui/realmsPlus_sections/faq_section.json", + "image_left_faq_question_body_flip": "ui/realmsPlus_sections/faq_section.json", + "image_left_faq_question_body_flip/faq_question_left": "ui/realmsPlus_sections/faq_section.json", + "image_right_faq_question_body_flip": "ui/realmsPlus_sections/faq_section.json", + "image_right_faq_question_body_flip/faq_question_right": "ui/realmsPlus_sections/faq_section.json", + "image_left_faq_price_bound": "ui/realmsPlus_sections/faq_section.json", + "faq_section_header_space": "ui/realmsPlus_sections/faq_section.json", + "faq_section_divider": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/content_section_top_padding_1": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_header": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/content_section_top_padding_2": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_1": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_1_divider": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_2": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_2_divider": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_3": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_3_divider": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_4": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_4_divider": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_5": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_5_divider": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_6": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_6_divider": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_7": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_7_divider": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_8": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_8_divider": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_9": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_9_divider": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_10": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_10_divider": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_11": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/content_section_top_padding_3": "ui/realmsPlus_sections/faq_section.json", + }, + "realmsPlus_landing": { + "landing_content_section": "ui/realmsPlus_sections/landing_section.json", + "landing_content_section/landing_content": "ui/realmsPlus_sections/landing_section.json", + "landing_content_section/landing_content/title_stack": "ui/realmsPlus_sections/landing_section.json", + "landing_content_section/landing_content/vertical_small_spacer_0": "ui/realmsPlus_sections/landing_section.json", + "landing_content_section/landing_content/divider_panel": "ui/realmsPlus_sections/landing_section.json", + "landing_content_section/landing_content/divider_panel/section_divider": "ui/realmsPlus_sections/landing_section.json", + "landing_content_section/landing_content/vertical_small_spacer_1": "ui/realmsPlus_sections/landing_section.json", + "landing_content_section/landing_content/info_stack": "ui/realmsPlus_sections/landing_section.json", + "landing_content_section/landing_content/vertical_small_spacer_2": "ui/realmsPlus_sections/landing_section.json", + "horizontal_small_spacer": "ui/realmsPlus_sections/landing_section.json", + "vertical_small_spacer": "ui/realmsPlus_sections/landing_section.json", + "vertical_med_spacer": "ui/realmsPlus_sections/landing_section.json", + "vertical_large_spacer": "ui/realmsPlus_sections/landing_section.json", + "title_stack": "ui/realmsPlus_sections/landing_section.json", + "title_stack/title_image_panel": "ui/realmsPlus_sections/landing_section.json", + "title_stack/gradient_panel": "ui/realmsPlus_sections/landing_section.json", + "title_stack/gradient_panel/label_with_gradient_wrapper": "ui/realmsPlus_sections/landing_section.json", + "title_stack/vertical_space": "ui/realmsPlus_sections/landing_section.json", + "title_stack/action_button": "ui/realmsPlus_sections/landing_section.json", + "title_stack/sign_in_button": "ui/realmsPlus_sections/landing_section.json", + "title_stack/vertical_space2": "ui/realmsPlus_sections/landing_section.json", + "label_with_gradient": "ui/realmsPlus_sections/landing_section.json", + "free_trial_text": "ui/realmsPlus_sections/landing_section.json", + "title_image_panel": "ui/realmsPlus_sections/landing_section.json", + "title_image_panel/title_image_container": "ui/realmsPlus_sections/landing_section.json", + "title_image_panel/title_image_container/title_image": "ui/realmsPlus_sections/landing_section.json", + "title_image_panel/title_image_container/title_art_image": "ui/realmsPlus_sections/landing_section.json", + "title_image_panel/title_image_pre_release_container": "ui/realmsPlus_sections/landing_section.json", + "title_image_panel/title_image_pre_release_container/title_image_pre_release": "ui/realmsPlus_sections/landing_section.json", + "info_stack": "ui/realmsPlus_sections/landing_section.json", + "info_stack/info_stack": "ui/realmsPlus_sections/landing_section.json", + "info_stack/info_stack/info_description_stack_retail": "ui/realmsPlus_sections/landing_section.json", + "info_stack/info_stack/info_description_stack_preview": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/info_section_stack_1": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/info_section_stack_1/info_section_text_1_wrapper": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/vertical_med_spacer0": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/divider_centering_panel": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/divider_centering_panel/divider": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/vertical_med_spacer1": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/info_section_stack_recently_added": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/info_section_stack_recently_added/horizontal_small_spacer": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/info_section_stack_recently_added/info_section_text_recently_added_wrapper": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/vertical_med_spacer2": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/divider_centering_panel2": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/divider_centering_panel2/divider2": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/vertical_med_spacer3": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/info_section_stack_2": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/info_section_stack_2/horizontal_small_spacer": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/info_section_stack_2/info_section_text_2_wrapper": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_prerelease": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_prerelease/info_section_stack": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_prerelease/info_section_stack/horizontal_large_spacer": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_prerelease/info_section_stack/info_section_text_3_wrapper": "ui/realmsPlus_sections/landing_section.json", + "info_section_stack": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_1": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_1/info_text_bullet_1": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_1/vertical_small_spacer_0": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_1/info_text_bullet_2": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_1/vertical_small_spacer_1": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_1/info_text_bullet_3": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_recently_added": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_recently_added/recently_added_header": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_recently_added/info_text_bullet_contentSub": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_recently_added/info_text_bullet_contentSub/vertical_small_spacer_0": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_recently_added/info_text_bullet_contentSub/info_text_bullet_0": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_recently_added/vertical_small_spacer_1": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_recently_added/info_text_bullet_1": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_recently_added/vertical_small_spacer_2": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_recently_added/info_text_bullet_2": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_2": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_2/info_text_bullet_2": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_2/vertical_small_spacer_0": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_2/info_text_bullet_3": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_2/vertical_small_spacer_1": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_2/info_text_bullet_4": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_2/info_text_bullet_notFreeTrial": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_2/info_text_bullet_notFreeTrial/vertical_small_spacer": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_2/info_text_bullet_notFreeTrial/info_text_bullet_4": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_3": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_3/info_text_unbulletted_1": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_3/vertical_large_spacer_0": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_3/info_text_unbulletted_2": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_3/vertical_large_spacer_1": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_3/info_text_unbulletted_3": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_3/vertical_large_spacer_2": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_3/info_text_unbulletted_4": "ui/realmsPlus_sections/landing_section.json", + "info_section_text": "ui/realmsPlus_sections/landing_section.json", + "info_text_bullet": "ui/realmsPlus_sections/landing_section.json", + "info_text_bullet/info_text_bullet_bullet": "ui/realmsPlus_sections/landing_section.json", + "info_text_bullet/info_text_bullet_body": "ui/realmsPlus_sections/landing_section.json", + "info_text_unbulletted": "ui/realmsPlus_sections/landing_section.json", + "info_text_unbulletted/info_text_bullet_body": "ui/realmsPlus_sections/landing_section.json", + }, + "realmsPlus_buy": { + "buy_now_content": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "buy_now_content/description_stack": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "buy_now_content/realm_name": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "buy_now_content/terms_and_conditions": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "buy_now_content/padding_2": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "buy_now_content/buy_button": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "buy_now_content/padding_3": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "buy_now_content/platform_terms_factory": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "content_text_section": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "content_text_section/text_description_wrapper": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "content_text_section/padding": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "content_description": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "content_description/content_description_label": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "trial_image_and_description": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "trial_image_and_description/realms_image": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "trial_image_and_description/padding": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "trial_image_and_description/description_text_wrapper": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "description_text": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "title_text": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "title_with_gradient": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "description_stack": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "description_stack/title_with_gradient_wrapper": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "description_stack/padding": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "description_stack/image_and_description": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "realm_name_stack": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "realm_name_stack/realm_name_label": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "realm_name_stack/padding_0": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "realm_name_stack/realm_name_text_box": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "terms_and_conditions": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "terms_and_conditions/terms_panel": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "terms_and_conditions_panel": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "terms_and_conditions_panel/name_label": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel/banner_fill": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "button_text": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "view_terms_button": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "privacy_policy_button": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "buy_button_panel": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "buy_button_panel/buy_button": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "buy_button_content": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "buy_button_content/button_chevron_panel": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "buy_button_content/button_chevron_panel/buy_button_chevron": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "buy_button_content/button_text": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + }, + "realmsPlus_packs": { + "view_all_packs_screen": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "view_packs_screen_content": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "view_packs_screen_content/main_panel": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "realmsPlus_view_packs_screen_main_panel": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "main_panel": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "main_panel/offers": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "main_panel/progress_loading": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "scrolling_content_stack": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "scrolling_content_stack/padding_0": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "scrolling_content_stack/store_factory": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + }, + "realmsPlus_purchase_warning": { + "realmsPlus_purchase_warning_screen": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "purchase_warning_screen_content": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "purchase_warning_screen_content/main_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_main_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_main_panel/art_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_main_panel/art_panel/art": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_main_panel/padding": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_main_panel/text_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_main_panel/text_panel/description_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_main_panel/text_panel/description_panel/description_text": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_main_panel/text_panel/padding": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_main_panel/text_panel/checkbox_with_label_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/checkbox_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/padding": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel/label_text": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_button_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_button_panel/back_button": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_button_panel/padding": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_button_panel/continue_button": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + }, + "realms_stories_transition": { + "realms_stories_transition_screen": "ui/realms_stories_transition_screen.json", + }, + "redstone": { + "item_dropper_label": "ui/redstone_screen.json", + "dispenser_label": "ui/redstone_screen.json", + "crafter_label": "ui/redstone_screen.json", + "dropper_label": "ui/redstone_screen.json", + "hopper_label": "ui/redstone_screen.json", + "redstone_input_grid": "ui/redstone_screen.json", + "redstone_panel_top_half": "ui/redstone_screen.json", + "redstone_panel_top_half/redstone_input_grid": "ui/redstone_screen.json", + "panel": "ui/redstone_screen.json", + "panel/container_gamepad_helpers": "ui/redstone_screen.json", + "panel/selected_item_details_factory": "ui/redstone_screen.json", + "panel/item_lock_notification_factory": "ui/redstone_screen.json", + "panel/root_panel": "ui/redstone_screen.json", + "panel/root_panel/common_panel": "ui/redstone_screen.json", + "panel/root_panel/redstone_screen_inventory": "ui/redstone_screen.json", + "panel/root_panel/redstone_screen_inventory/red_panel": "ui/redstone_screen.json", + "panel/root_panel/redstone_screen_inventory/red_bottom_half": "ui/redstone_screen.json", + "panel/root_panel/redstone_screen_inventory/hotbar_grid": "ui/redstone_screen.json", + "panel/root_panel/redstone_screen_inventory/red_hold_icon": "ui/redstone_screen.json", + "panel/root_panel/red_icon": "ui/redstone_screen.json", + "panel/root_panel/gamepad_cursor": "ui/redstone_screen.json", + "panel/flying_item_renderer": "ui/redstone_screen.json", + "crafter_input_grid": "ui/redstone_screen.json", + "cell_image": "ui/redstone_screen.json", + "crafter_highlight_slot": "ui/redstone_screen.json", + "crafter_container_slot_button_prototype": "ui/redstone_screen.json", + "crafter_highlight_slot_panel": "ui/redstone_screen.json", + "crafter_highlight_slot_panel/highlight": "ui/redstone_screen.json", + "crafter_highlight_slot_panel/highlight/hover_text": "ui/redstone_screen.json", + "crafter_highlight_slot_panel/white_border": "ui/redstone_screen.json", + "crafter_enabled_slot_template": "ui/redstone_screen.json", + "crafter_disabled_slot": "ui/redstone_screen.json", + "crafter_disabled_slot/default": "ui/redstone_screen.json", + "crafter_disabled_slot/hover": "ui/redstone_screen.json", + "crafter_disabled_slot/pressed": "ui/redstone_screen.json", + "output_slot_hover_info": "ui/redstone_screen.json", + "output_slot_hover_info/hover": "ui/redstone_screen.json", + "output_slot_hover_info/output_slot": "ui/redstone_screen.json", + "output_slot_hover_info/output_slot_border": "ui/redstone_screen.json", + "output_slot_hover_info/output_count": "ui/redstone_screen.json", + "panel_crafter": "ui/redstone_screen.json", + "panel_crafter/container_gamepad_helpers": "ui/redstone_screen.json", + "panel_crafter/selected_item_details_factory": "ui/redstone_screen.json", + "panel_crafter/item_lock_notification_factory": "ui/redstone_screen.json", + "panel_crafter/root_panel": "ui/redstone_screen.json", + "panel_crafter/root_panel/common_panel": "ui/redstone_screen.json", + "panel_crafter/root_panel/disabled_slot_0_button": "ui/redstone_screen.json", + "panel_crafter/root_panel/disabled_slot_1_button": "ui/redstone_screen.json", + "panel_crafter/root_panel/disabled_slot_2_button": "ui/redstone_screen.json", + "panel_crafter/root_panel/disabled_slot_3_button": "ui/redstone_screen.json", + "panel_crafter/root_panel/disabled_slot_4_button": "ui/redstone_screen.json", + "panel_crafter/root_panel/disabled_slot_5_button": "ui/redstone_screen.json", + "panel_crafter/root_panel/disabled_slot_6_button": "ui/redstone_screen.json", + "panel_crafter/root_panel/disabled_slot_7_button": "ui/redstone_screen.json", + "panel_crafter/root_panel/disabled_slot_8_button": "ui/redstone_screen.json", + "panel_crafter/root_panel/redstone_screen_inventory": "ui/redstone_screen.json", + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid": "ui/redstone_screen.json", + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid": "ui/redstone_screen.json", + "panel_crafter/root_panel/redstone_screen_inventory/red_bottom_half": "ui/redstone_screen.json", + "panel_crafter/root_panel/redstone_screen_inventory/hotbar_grid": "ui/redstone_screen.json", + "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon": "ui/redstone_screen.json", + "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line": "ui/redstone_screen.json", + "panel_crafter/root_panel/redstone_screen_inventory/crafter_output": "ui/redstone_screen.json", + "panel_crafter/root_panel/red_icon": "ui/redstone_screen.json", + "panel_crafter/root_panel/gamepad_cursor": "ui/redstone_screen.json", + "panel_crafter/flying_item_renderer": "ui/redstone_screen.json", + "hopper_screen": "ui/redstone_screen.json", + "dispenser_screen": "ui/redstone_screen.json", + "crafter_screen": "ui/redstone_screen.json", + "dropper_screen": "ui/redstone_screen.json", + }, + "resource_packs": { + "black_image": "ui/resource_packs_screen.json", + "gray_image": "ui/resource_packs_screen.json", + "yellow_image": "ui/resource_packs_screen.json", + "white_image": "ui/resource_packs_screen.json", + "white_image/border": "ui/resource_packs_screen.json", + "icon_image": "ui/resource_packs_screen.json", + "resource_packs_toggle_button_control": "ui/resource_packs_screen.json", + "resource_packs_toggle_button_control/icon_border": "ui/resource_packs_screen.json", + "resource_packs_toggle_button_control/cycling_icon": "ui/resource_packs_screen.json", + "resource_packs_toggle_button_control/tab_button_text": "ui/resource_packs_screen.json", + "resource_packs_section_toggle_base": "ui/resource_packs_screen.json", + "selected_icon_image": "ui/resource_packs_screen.json", + "available_icon_image": "ui/resource_packs_screen.json", + "realms_icon_image": "ui/resource_packs_screen.json", + "unowned_icon_image": "ui/resource_packs_screen.json", + "invalid_icon_image": "ui/resource_packs_screen.json", + "minus_image": "ui/resource_packs_screen.json", + "plus_image": "ui/resource_packs_screen.json", + "minus_text": "ui/resource_packs_screen.json", + "plus_text": "ui/resource_packs_screen.json", + "store_text": "ui/resource_packs_screen.json", + "error_image": "ui/resource_packs_screen.json", + "error_image_hover": "ui/resource_packs_screen.json", + "error_image_panel": "ui/resource_packs_screen.json", + "error_image_panel/default": "ui/resource_packs_screen.json", + "error_image_panel/hover": "ui/resource_packs_screen.json", + "warning_image": "ui/resource_packs_screen.json", + "warning_image_hover": "ui/resource_packs_screen.json", + "warning_panel": "ui/resource_packs_screen.json", + "warning_panel/default": "ui/resource_packs_screen.json", + "warning_panel/hover": "ui/resource_packs_screen.json", + "no_error_image": "ui/resource_packs_screen.json", + "no_error_image_hover": "ui/resource_packs_screen.json", + "no_error_panel": "ui/resource_packs_screen.json", + "no_error_panel/default": "ui/resource_packs_screen.json", + "no_error_panel/hover": "ui/resource_packs_screen.json", + "up_arrow_image": "ui/resource_packs_screen.json", + "down_arrow_image": "ui/resource_packs_screen.json", + "up_arrow_image_hover": "ui/resource_packs_screen.json", + "down_arrow_image_hover": "ui/resource_packs_screen.json", + "up_arrow_panel": "ui/resource_packs_screen.json", + "up_arrow_panel/default": "ui/resource_packs_screen.json", + "up_arrow_panel/hover": "ui/resource_packs_screen.json", + "up_arrow_wrapper": "ui/resource_packs_screen.json", + "up_arrow_wrapper/down_arrow": "ui/resource_packs_screen.json", + "up_arrow_wrapper/divider_right": "ui/resource_packs_screen.json", + "down_arrow_panel": "ui/resource_packs_screen.json", + "down_arrow_panel/default": "ui/resource_packs_screen.json", + "down_arrow_panel/hover": "ui/resource_packs_screen.json", + "down_arrow_wrapper": "ui/resource_packs_screen.json", + "down_arrow_wrapper/down_arrow": "ui/resource_packs_screen.json", + "down_arrow_wrapper/divider_right": "ui/resource_packs_screen.json", + "progress_loading_bars": "ui/resource_packs_screen.json", + "warning_image_wrapper": "ui/resource_packs_screen.json", + "warning_image_wrapper/error_image": "ui/resource_packs_screen.json", + "warning_image_wrapper/warning_image": "ui/resource_packs_screen.json", + "warning_image_wrapper/no_error_panel": "ui/resource_packs_screen.json", + "warning_image_wrapper/progress_loading_bars": "ui/resource_packs_screen.json", + "tooltip_image_wrapper": "ui/resource_packs_screen.json", + "tooltip_image_wrapper/error_image": "ui/resource_packs_screen.json", + "tooltip_image_wrapper/warning_image": "ui/resource_packs_screen.json", + "options_image": "ui/resource_packs_screen.json", + "options_image_hover": "ui/resource_packs_screen.json", + "options_image_panel": "ui/resource_packs_screen.json", + "options_image_panel/default": "ui/resource_packs_screen.json", + "options_image_panel/hover": "ui/resource_packs_screen.json", + "options_image_panel/hover/image": "ui/resource_packs_screen.json", + "options_image_panel/hover/border": "ui/resource_packs_screen.json", + "options_wrapper": "ui/resource_packs_screen.json", + "options_wrapper/options": "ui/resource_packs_screen.json", + "options_wrapper/divider_right": "ui/resource_packs_screen.json", + "common_pack_button": "ui/resource_packs_screen.json", + "available_text_panel": "ui/resource_packs_screen.json", + "available_text_panel/name_panel": "ui/resource_packs_screen.json", + "available_text_panel/name_panel/available_pack_name_label": "ui/resource_packs_screen.json", + "available_text_panel/name_panel/available_file_size_label": "ui/resource_packs_screen.json", + "available_text_panel/full_panel": "ui/resource_packs_screen.json", + "available_text_panel/full_panel/description_panel": "ui/resource_packs_screen.json", + "available_text_panel/full_panel/description_panel/available_pack_description_label": "ui/resource_packs_screen.json", + "realms_text_panel": "ui/resource_packs_screen.json", + "realms_text_panel/name_panel": "ui/resource_packs_screen.json", + "realms_text_panel/name_panel/realms_pack_name_label": "ui/resource_packs_screen.json", + "realms_text_panel/name_panel/realms_file_size_label": "ui/resource_packs_screen.json", + "realms_text_panel/description_panel": "ui/resource_packs_screen.json", + "realms_text_panel/description_panel/realms_pack_description_label": "ui/resource_packs_screen.json", + "unowned_text_panel": "ui/resource_packs_screen.json", + "unowned_text_panel/name_panel": "ui/resource_packs_screen.json", + "unowned_text_panel/name_panel/unowned_pack_name_label": "ui/resource_packs_screen.json", + "unowned_text_panel/name_panel/unowned_file_size_label": "ui/resource_packs_screen.json", + "unowned_text_panel/description_panel": "ui/resource_packs_screen.json", + "unowned_text_panel/description_panel/unowned_pack_description_label": "ui/resource_packs_screen.json", + "selected_text_panel": "ui/resource_packs_screen.json", + "selected_text_panel/name_panel": "ui/resource_packs_screen.json", + "selected_text_panel/name_panel/selected_pack_name_label": "ui/resource_packs_screen.json", + "selected_text_panel/name_panel/selected_file_size_label": "ui/resource_packs_screen.json", + "selected_text_panel/name_panel/active_dot_panel": "ui/resource_packs_screen.json", + "selected_text_panel/name_panel/active_dot_panel/active_dot": "ui/resource_packs_screen.json", + "selected_text_panel/full_panel": "ui/resource_packs_screen.json", + "selected_text_panel/full_panel/warning_line": "ui/resource_packs_screen.json", + "selected_text_panel/full_panel/warning_line/warning_text": "ui/resource_packs_screen.json", + "selected_text_panel/full_panel/warning_line/warning_number": "ui/resource_packs_screen.json", + "selected_text_panel/full_panel/error_line": "ui/resource_packs_screen.json", + "selected_text_panel/full_panel/error_line/error_text": "ui/resource_packs_screen.json", + "selected_text_panel/full_panel/error_line/error_number": "ui/resource_packs_screen.json", + "selected_text_panel/full_panel/expired_line": "ui/resource_packs_screen.json", + "selected_text_panel/full_panel/expired_line/expired_text": "ui/resource_packs_screen.json", + "selected_text_panel/full_panel/description_panel": "ui/resource_packs_screen.json", + "selected_text_panel/full_panel/description_panel/selected_pack_description_label": "ui/resource_packs_screen.json", + "invalid_text_panel": "ui/resource_packs_screen.json", + "invalid_text_panel/full_panel": "ui/resource_packs_screen.json", + "invalid_text_panel/full_panel/error_line": "ui/resource_packs_screen.json", + "invalid_text_panel/full_panel/error_line/error_text": "ui/resource_packs_screen.json", + "invalid_text_panel/full_panel/error_line/error_number": "ui/resource_packs_screen.json", + "available_pack_button_layout": "ui/resource_packs_screen.json", + "available_pack_button_layout/available_icon_image": "ui/resource_packs_screen.json", + "available_pack_button_layout/text_panel_small": "ui/resource_packs_screen.json", + "available_pack_button_layout/text_panel_full": "ui/resource_packs_screen.json", + "available_pack_button_layout/read_more_button_panel": "ui/resource_packs_screen.json", + "available_pack_button_layout/read_less_button_panel": "ui/resource_packs_screen.json", + "available_pack_button_layout_hover": "ui/resource_packs_screen.json", + "available_pack_button_layout_hover/hover_small": "ui/resource_packs_screen.json", + "available_pack_button_layout_hover/available_icon_image": "ui/resource_packs_screen.json", + "available_pack_button_layout_hover/text_panel_small": "ui/resource_packs_screen.json", + "available_pack_button_layout_hover/text_panel_full_hover": "ui/resource_packs_screen.json", + "available_pack_button_layout_hover/text_panel_full_hover/text_panel_full": "ui/resource_packs_screen.json", + "available_pack_button_layout_hover/read_more_button_panel": "ui/resource_packs_screen.json", + "available_pack_button_layout_hover/read_less_button_panel": "ui/resource_packs_screen.json", + "available_pack_button": "ui/resource_packs_screen.json", + "available_pack_button/default": "ui/resource_packs_screen.json", + "available_pack_button/pressed": "ui/resource_packs_screen.json", + "available_pack_button/hover": "ui/resource_packs_screen.json", + "realms_pack_button_layout": "ui/resource_packs_screen.json", + "realms_pack_button_layout/realms_icon_image": "ui/resource_packs_screen.json", + "realms_pack_button_layout/text_panel_small": "ui/resource_packs_screen.json", + "realms_pack_button_layout/text_panel_full": "ui/resource_packs_screen.json", + "realms_pack_button_layout/read_more_button_panel": "ui/resource_packs_screen.json", + "realms_pack_button_layout/read_less_button_panel": "ui/resource_packs_screen.json", + "realms_pack_button_layout_hover": "ui/resource_packs_screen.json", + "realms_pack_button_layout_hover/hover_small": "ui/resource_packs_screen.json", + "realms_pack_button_layout_hover/realms_icon_image": "ui/resource_packs_screen.json", + "realms_pack_button_layout_hover/text_panel_small": "ui/resource_packs_screen.json", + "realms_pack_button_layout_hover/text_panel_full_hover": "ui/resource_packs_screen.json", + "realms_pack_button_layout_hover/text_panel_full_hover/text_panel_full": "ui/resource_packs_screen.json", + "realms_pack_button_layout_hover/read_more_button_panel": "ui/resource_packs_screen.json", + "realms_pack_button_layout_hover/read_less_button_panel": "ui/resource_packs_screen.json", + "realms_pack_button": "ui/resource_packs_screen.json", + "realms_pack_button/default": "ui/resource_packs_screen.json", + "realms_pack_button/pressed": "ui/resource_packs_screen.json", + "realms_pack_button/hover": "ui/resource_packs_screen.json", + "unowned_pack_button_layout": "ui/resource_packs_screen.json", + "unowned_pack_button_layout/unowned_icon_image": "ui/resource_packs_screen.json", + "unowned_pack_button_layout/text_panel_small": "ui/resource_packs_screen.json", + "unowned_pack_button_layout/text_panel_full": "ui/resource_packs_screen.json", + "unowned_pack_button_layout/read_more_button_panel": "ui/resource_packs_screen.json", + "unowned_pack_button_layout/read_less_button_panel": "ui/resource_packs_screen.json", + "unowned_pack_button_layout_hover": "ui/resource_packs_screen.json", + "unowned_pack_button_layout_hover/hover_small": "ui/resource_packs_screen.json", + "unowned_pack_button_layout_hover/unowned_icon_image": "ui/resource_packs_screen.json", + "unowned_pack_button_layout_hover/text_panel_small": "ui/resource_packs_screen.json", + "unowned_pack_button_layout_hover/text_panel_full_hover": "ui/resource_packs_screen.json", + "unowned_pack_button_layout_hover/text_panel_full_hover/text_panel_full": "ui/resource_packs_screen.json", + "unowned_pack_button_layout_hover/read_more_button_panel": "ui/resource_packs_screen.json", + "unowned_pack_button_layout_hover/read_less_button_panel": "ui/resource_packs_screen.json", + "unowned_pack_button": "ui/resource_packs_screen.json", + "unowned_pack_button/default": "ui/resource_packs_screen.json", + "unowned_pack_button/pressed": "ui/resource_packs_screen.json", + "unowned_pack_button/hover": "ui/resource_packs_screen.json", + "invalid_pack_button_layout": "ui/resource_packs_screen.json", + "invalid_pack_button_layout/invalid_icon_image": "ui/resource_packs_screen.json", + "invalid_pack_button_layout/text_panel": "ui/resource_packs_screen.json", + "invalid_pack_button_layout_hover": "ui/resource_packs_screen.json", + "invalid_pack_button_layout_hover/hover_small": "ui/resource_packs_screen.json", + "invalid_pack_button_layout_hover/invalid_icon_image": "ui/resource_packs_screen.json", + "invalid_pack_button_layout_hover/text_panel_full_hover": "ui/resource_packs_screen.json", + "invalid_pack_button_layout_hover/text_panel_full_hover/text_panel": "ui/resource_packs_screen.json", + "invalid_pack_button": "ui/resource_packs_screen.json", + "invalid_pack_button/default": "ui/resource_packs_screen.json", + "invalid_pack_button/pressed": "ui/resource_packs_screen.json", + "invalid_pack_button/hover": "ui/resource_packs_screen.json", + "empty_resource_pack_button": "ui/resource_packs_screen.json", + "resource_pack_button_padding": "ui/resource_packs_screen.json", + "input_button_panel": "ui/resource_packs_screen.json", + "input_button_panel/border_image": "ui/resource_packs_screen.json", + "input_button_panel/border_image/button_panel": "ui/resource_packs_screen.json", + "input_button_panel/border_image/button_panel/padding_0": "ui/resource_packs_screen.json", + "input_button_panel/border_image/button_panel/padding_1": "ui/resource_packs_screen.json", + "input_button_panel/border_image/button_panel/padding_2": "ui/resource_packs_screen.json", + "input_button_panel/border_image/button_panel/padding_3": "ui/resource_packs_screen.json", + "input_button_panel/border_image/button_panel/padding_4": "ui/resource_packs_screen.json", + "input_button_panel/background": "ui/resource_packs_screen.json", + "selected_pack_button_layout": "ui/resource_packs_screen.json", + "selected_pack_button_layout/selected_icon_image": "ui/resource_packs_screen.json", + "selected_pack_button_layout/text_panel_small": "ui/resource_packs_screen.json", + "selected_pack_button_layout/text_panel_full": "ui/resource_packs_screen.json", + "selected_pack_button_layout/read_more_button_panel": "ui/resource_packs_screen.json", + "selected_pack_button_layout/read_less_button_panel": "ui/resource_packs_screen.json", + "selected_pack_button_layout_hover": "ui/resource_packs_screen.json", + "selected_pack_button_layout_hover/hover_small": "ui/resource_packs_screen.json", + "selected_pack_button_layout_hover/selected_icon_image": "ui/resource_packs_screen.json", + "selected_pack_button_layout_hover/text_panel_small": "ui/resource_packs_screen.json", + "selected_pack_button_layout_hover/text_panel_full_hover": "ui/resource_packs_screen.json", + "selected_pack_button_layout_hover/text_panel_full_hover/text_panel_full": "ui/resource_packs_screen.json", + "selected_pack_button_layout_hover/read_more_button_panel": "ui/resource_packs_screen.json", + "selected_pack_button_layout_hover/read_less_button_panel": "ui/resource_packs_screen.json", + "selected_pack_button": "ui/resource_packs_screen.json", + "selected_pack_button/default": "ui/resource_packs_screen.json", + "selected_pack_button/pressed": "ui/resource_packs_screen.json", + "selected_pack_button/hover": "ui/resource_packs_screen.json", + "selected_pack_movement_button": "ui/resource_packs_screen.json", + "selected_pack_transparent_movement_button": "ui/resource_packs_screen.json", + "selected_pack_minus_button": "ui/resource_packs_screen.json", + "selected_pack_plus_button": "ui/resource_packs_screen.json", + "selected_pack_store_button": "ui/resource_packs_screen.json", + "selected_pack_store_button_fill": "ui/resource_packs_screen.json", + "selected_pack_up_button": "ui/resource_packs_screen.json", + "selected_pack_down_button": "ui/resource_packs_screen.json", + "selected_pack_warning_button": "ui/resource_packs_screen.json", + "selected_pack_options_button": "ui/resource_packs_screen.json", + "white_label": "ui/resource_packs_screen.json", + "gray_label": "ui/resource_packs_screen.json", + "suggested_content_offers_title_label": "ui/resource_packs_screen.json", + "available_packs_title_content": "ui/resource_packs_screen.json", + "realms_packs_title_content": "ui/resource_packs_screen.json", + "unowned_packs_title_content": "ui/resource_packs_screen.json", + "selected_packs_title_content": "ui/resource_packs_screen.json", + "selected_packs_title_content/selected_packs_title_label": "ui/resource_packs_screen.json", + "selected_packs_title_content/fill_pad": "ui/resource_packs_screen.json", + "selected_packs_title_content/icon_panel": "ui/resource_packs_screen.json", + "selected_packs_title_content/icon_panel/block_icon": "ui/resource_packs_screen.json", + "selected_packs_title_content/pad_0": "ui/resource_packs_screen.json", + "selected_packs_title_content/count": "ui/resource_packs_screen.json", + "selected_packs_title_content/pad_1": "ui/resource_packs_screen.json", + "selected_packs_title_content/plus_panel": "ui/resource_packs_screen.json", + "selected_packs_title_content/plus_panel/plus": "ui/resource_packs_screen.json", + "selected_packs_title_content/minus_panel": "ui/resource_packs_screen.json", + "selected_packs_title_content/minus_panel/minus": "ui/resource_packs_screen.json", + "available_packs_title_button": "ui/resource_packs_screen.json", + "realms_packs_title_button": "ui/resource_packs_screen.json", + "unowned_packs_title_button": "ui/resource_packs_screen.json", + "selected_packs_title_button": "ui/resource_packs_screen.json", + "name_label": "ui/resource_packs_screen.json", + "size_label": "ui/resource_packs_screen.json", + "description_label": "ui/resource_packs_screen.json", + "pack_label": "ui/resource_packs_screen.json", + "selected_pack_description_label": "ui/resource_packs_screen.json", + "available_pack_description_label": "ui/resource_packs_screen.json", + "realms_pack_description_label": "ui/resource_packs_screen.json", + "unowned_pack_description_label": "ui/resource_packs_screen.json", + "selected_pack_name_label": "ui/resource_packs_screen.json", + "selected_file_size_label": "ui/resource_packs_screen.json", + "available_pack_name_label": "ui/resource_packs_screen.json", + "available_file_size_label": "ui/resource_packs_screen.json", + "realms_pack_name_label": "ui/resource_packs_screen.json", + "realms_file_size_label": "ui/resource_packs_screen.json", + "unowned_pack_name_label": "ui/resource_packs_screen.json", + "unowned_file_size_label": "ui/resource_packs_screen.json", + "invalid_pack_name_label": "ui/resource_packs_screen.json", + "invalid_pack_description_label": "ui/resource_packs_screen.json", + "available_panel": "ui/resource_packs_screen.json", + "available_panel/selected_packs": "ui/resource_packs_screen.json", + "checkbox_visuals": "ui/resource_packs_screen.json", + "header_control": "ui/resource_packs_screen.json", + "header_control/header_description_stack_panel": "ui/resource_packs_screen.json", + "header_control/header_description_stack_panel/checkbox_visuals": "ui/resource_packs_screen.json", + "header_control/header_description_stack_panel/buffer_panel": "ui/resource_packs_screen.json", + "header_control/header_description_stack_panel/buffer_panel/label": "ui/resource_packs_screen.json", + "addon_header_control": "ui/resource_packs_screen.json", + "addon_header_control/header_description_stack_panel": "ui/resource_packs_screen.json", + "addon_header_control/header_description_stack_panel/padding_0": "ui/resource_packs_screen.json", + "addon_header_control/header_description_stack_panel/description_center_panel": "ui/resource_packs_screen.json", + "addon_header_control/header_description_stack_panel/description_center_panel/label": "ui/resource_packs_screen.json", + "addon_header_control/header_description_stack_panel/padding_1": "ui/resource_packs_screen.json", + "addon_header_control/header_description_stack_panel/link_center_panel": "ui/resource_packs_screen.json", + "addon_header_control/header_description_stack_panel/link_center_panel/addon_link_button": "ui/resource_packs_screen.json", + "addon_header_control/header_description_stack_panel/padding_2": "ui/resource_packs_screen.json", + "panel_bg": "ui/resource_packs_screen.json", + "panel_bg/black_background": "ui/resource_packs_screen.json", + "panel_bg/gray": "ui/resource_packs_screen.json", + "addon_panel_bg": "ui/resource_packs_screen.json", + "addon_panel_bg/black_background": "ui/resource_packs_screen.json", + "addon_panel_bg/yellow": "ui/resource_packs_screen.json", + "error_panel": "ui/resource_packs_screen.json", + "error_panel/black_background": "ui/resource_packs_screen.json", + "error_panel/black_background/gray": "ui/resource_packs_screen.json", + "error_panel/black_background/gray/panel": "ui/resource_packs_screen.json", + "error_panel/black_background/gray/panel/error_label": "ui/resource_packs_screen.json", + "selected_stack_panel": "ui/resource_packs_screen.json", + "selected_stack_panel/world_template_option_lock_panel": "ui/resource_packs_screen.json", + "selected_stack_panel/world_template_option_lock_panel/option_info_label": "ui/resource_packs_screen.json", + "selected_stack_panel/top_panel": "ui/resource_packs_screen.json", + "selected_stack_panel/top_panel/panel_bg": "ui/resource_packs_screen.json", + "selected_stack_panel/top_panel/header_control": "ui/resource_packs_screen.json", + "selected_stack_panel/offset_0": "ui/resource_packs_screen.json", + "selected_stack_panel/addon_stacking_warning_panel": "ui/resource_packs_screen.json", + "selected_stack_panel/addon_stacking_warning_panel/addon_panel_bg": "ui/resource_packs_screen.json", + "selected_stack_panel/addon_stacking_warning_panel/header_control": "ui/resource_packs_screen.json", + "selected_stack_panel/offset_1": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_packs_title_panel": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_packs_title_panel/selected_packs_title_button": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_packs_title_panel/tooltip": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_packs_title_panel/tooltip/button": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_pack_section": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_pack_section/offset": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_pack_section/selected_pack_grid": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_pack_section/default_item": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_pack_section/default_item/icon_image": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_pack_section/default_item/name_panel": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_pack_section/default_item/name_panel/white_label": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_pack_section/default_item/description_panel": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_pack_section/default_item/description_panel/white_label": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_pack_section/filler_panel": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_pack_section/filler_panel/description_label": "ui/resource_packs_screen.json", + "selected_stack_panel/offset_2": "ui/resource_packs_screen.json", + "selected_stack_panel/available_packs_title_panel": "ui/resource_packs_screen.json", + "selected_stack_panel/available_packs_title_panel/available_packs_title_button": "ui/resource_packs_screen.json", + "selected_stack_panel/available_packs_title_panel/tooltip": "ui/resource_packs_screen.json", + "selected_stack_panel/available_packs_title_panel/tooltip/button": "ui/resource_packs_screen.json", + "selected_stack_panel/available_packs_section": "ui/resource_packs_screen.json", + "selected_stack_panel/available_packs_section/offset": "ui/resource_packs_screen.json", + "selected_stack_panel/available_packs_section/empty_panel": "ui/resource_packs_screen.json", + "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel": "ui/resource_packs_screen.json", + "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel/no_packs_text": "ui/resource_packs_screen.json", + "selected_stack_panel/available_packs_section/empty_panel/to_store_button": "ui/resource_packs_screen.json", + "selected_stack_panel/available_packs_section/available_pack_grid": "ui/resource_packs_screen.json", + "selected_stack_panel/available_packs_section/invalid_pack_grid": "ui/resource_packs_screen.json", + "selected_stack_panel/offset_3": "ui/resource_packs_screen.json", + "selected_stack_panel/realms_packs_title_button": "ui/resource_packs_screen.json", + "selected_stack_panel/realms_packs_section": "ui/resource_packs_screen.json", + "selected_stack_panel/realms_packs_section/offset": "ui/resource_packs_screen.json", + "selected_stack_panel/realms_packs_section/realms_pack_grid": "ui/resource_packs_screen.json", + "selected_stack_panel/realms_packs_section/offset_4": "ui/resource_packs_screen.json", + "selected_stack_panel/offset_4": "ui/resource_packs_screen.json", + "selected_stack_panel/unowned_packs_title_button": "ui/resource_packs_screen.json", + "selected_stack_panel/unowned_packs_section": "ui/resource_packs_screen.json", + "selected_stack_panel/unowned_packs_section/offset": "ui/resource_packs_screen.json", + "selected_stack_panel/unowned_packs_section/unowned_pack_grid": "ui/resource_packs_screen.json", + "selected_stack_panel/unowned_packs_section/to_store_button": "ui/resource_packs_screen.json", + "selected_stack_panel/unowned_packs_section/offset_4": "ui/resource_packs_screen.json", + "available_stack_panel": "ui/resource_packs_screen.json", + "available_stack_panel/available_packs_title_button": "ui/resource_packs_screen.json", + "available_stack_panel/available_pack_grid": "ui/resource_packs_screen.json", + "pack_background": "ui/resource_packs_screen.json", + "pack_background/white_image": "ui/resource_packs_screen.json", + "pack_background/gray_image": "ui/resource_packs_screen.json", + "selected_pack_panel": "ui/resource_packs_screen.json", + "selected_pack_panel/selected_pack_button": "ui/resource_packs_screen.json", + "selected_pack_panel/pad_0": "ui/resource_packs_screen.json", + "selected_pack_panel/center_panel": "ui/resource_packs_screen.json", + "selected_pack_panel/center_panel/visibility_panel": "ui/resource_packs_screen.json", + "selected_pack_panel/center_panel/visibility_panel/selected_pack_direction_buttons": "ui/resource_packs_screen.json", + "selected_pack_panel/divider": "ui/resource_packs_screen.json", + "selected_pack_panel/pad_1": "ui/resource_packs_screen.json", + "available_pack_panel": "ui/resource_packs_screen.json", + "available_pack_panel/available_pack_button": "ui/resource_packs_screen.json", + "available_pack_panel/pad_0": "ui/resource_packs_screen.json", + "available_pack_panel/center_panel": "ui/resource_packs_screen.json", + "available_pack_panel/center_panel/available_pack_direction_buttons": "ui/resource_packs_screen.json", + "available_pack_panel/divider": "ui/resource_packs_screen.json", + "available_pack_panel/pad_1": "ui/resource_packs_screen.json", + "realms_pack_panel": "ui/resource_packs_screen.json", + "realms_pack_panel/realms_pack_button": "ui/resource_packs_screen.json", + "realms_pack_panel/pad_0": "ui/resource_packs_screen.json", + "realms_pack_panel/center_panel": "ui/resource_packs_screen.json", + "realms_pack_panel/center_panel/realms_pack_direction_buttons": "ui/resource_packs_screen.json", + "realms_pack_panel/divider": "ui/resource_packs_screen.json", + "realms_pack_panel/pad_1": "ui/resource_packs_screen.json", + "unowned_pack_panel": "ui/resource_packs_screen.json", + "unowned_pack_panel/unowned_pack_button": "ui/resource_packs_screen.json", + "unowned_pack_panel/pad_0": "ui/resource_packs_screen.json", + "unowned_pack_panel/center_panel": "ui/resource_packs_screen.json", + "unowned_pack_panel/center_panel/realms_pack_direction_buttons": "ui/resource_packs_screen.json", + "unowned_pack_panel/divider": "ui/resource_packs_screen.json", + "unowned_pack_panel/pad_1": "ui/resource_packs_screen.json", + "invalid_pack_panel": "ui/resource_packs_screen.json", + "invalid_pack_panel/invalid_pack_button": "ui/resource_packs_screen.json", + "invalid_pack_panel/pad_0": "ui/resource_packs_screen.json", + "invalid_pack_panel/divider": "ui/resource_packs_screen.json", + "invalid_pack_panel/pad_1": "ui/resource_packs_screen.json", + "selected_pack_grid": "ui/resource_packs_screen.json", + "available_pack_grid": "ui/resource_packs_screen.json", + "realms_pack_grid": "ui/resource_packs_screen.json", + "unowned_pack_grid": "ui/resource_packs_screen.json", + "invalid_pack_grid": "ui/resource_packs_screen.json", + }, + "safe_zone": { + "corner_image_common": "ui/safe_zone_screen.json", + "corner_bl": "ui/safe_zone_screen.json", + "corner_br": "ui/safe_zone_screen.json", + "corner_tr": "ui/safe_zone_screen.json", + "corner_tl": "ui/safe_zone_screen.json", + "confirm_button": "ui/safe_zone_screen.json", + "title_text": "ui/safe_zone_screen.json", + "instructions_text": "ui/safe_zone_screen.json", + "instructions_text/inner_label": "ui/safe_zone_screen.json", + "label_button": "ui/safe_zone_screen.json", + "label_button_hover": "ui/safe_zone_screen.json", + "label_button_hover/hover": "ui/safe_zone_screen.json", + "label_button_hover/hover/button_hover_text": "ui/safe_zone_screen.json", + "content_panel": "ui/safe_zone_screen.json", + "content_panel/safe_zone_slider_all": "ui/safe_zone_screen.json", + "content_panel/safe_zone_slider_x": "ui/safe_zone_screen.json", + "content_panel/safe_zone_slider_y": "ui/safe_zone_screen.json", + "content_panel/screen_position_slider_x": "ui/safe_zone_screen.json", + "content_panel/screen_position_slider_y": "ui/safe_zone_screen.json", + "content_panel/instruction_text_button": "ui/safe_zone_screen.json", + "content_panel/instruction_text_button/default": "ui/safe_zone_screen.json", + "content_panel/instruction_text_button/pressed": "ui/safe_zone_screen.json", + "content_panel/instruction_text_button/hover": "ui/safe_zone_screen.json", + "safe_zone_screen": "ui/safe_zone_screen.json", + "safe_zone_screen/safe_zone_bounds_markers": "ui/safe_zone_screen.json", + "safe_zone_screen/safe_zone_bounds_markers/top_left_marker": "ui/safe_zone_screen.json", + "safe_zone_screen/safe_zone_bounds_markers/top_right_marker": "ui/safe_zone_screen.json", + "safe_zone_screen/safe_zone_bounds_markers/bottom_left_marker": "ui/safe_zone_screen.json", + "safe_zone_screen/safe_zone_bounds_markers/bottom_right_marker": "ui/safe_zone_screen.json", + "safe_zone_screen/main_content_panel": "ui/safe_zone_screen.json", + "safe_zone_screen/main_content_panel/common_panel": "ui/safe_zone_screen.json", + "safe_zone_screen/main_content_panel/title_text": "ui/safe_zone_screen.json", + "safe_zone_screen/main_content_panel/scrolling_panel": "ui/safe_zone_screen.json", + "safe_zone_screen/main_content_panel/confirm_button": "ui/safe_zone_screen.json", + }, + "storage_migration_common": { + "progress_panel": "ui/storage_migration_common.json", + "progress_panel/common_panel": "ui/storage_migration_common.json", + "progress_panel/base_content": "ui/storage_migration_common.json", + "progress_panel/base_content/progress_title_text": "ui/storage_migration_common.json", + "progress_panel/base_content/progress_bar_text": "ui/storage_migration_common.json", + "progress_panel/inside_content": "ui/storage_migration_common.json", + "progress_panel/inside_content/size_label": "ui/storage_migration_common.json", + "progress_panel/inside_content/padding_1": "ui/storage_migration_common.json", + "progress_panel/inside_content/loading_bar_panel": "ui/storage_migration_common.json", + "progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": "ui/storage_migration_common.json", + "progress_panel/inside_content/loading_bar_panel/progress_loading_bars": "ui/storage_migration_common.json", + "progress_panel/inside_content/padding_3": "ui/storage_migration_common.json", + "label": "ui/storage_migration_common.json", + "base_button": "ui/storage_migration_common.json", + "retry_button": "ui/storage_migration_common.json", + "go_to_faq_button": "ui/storage_migration_common.json", + "next_button": "ui/storage_migration_common.json", + "get_started_button": "ui/storage_migration_common.json", + "start_transfer_button": "ui/storage_migration_common.json", + "finished_main_menu_button": "ui/storage_migration_common.json", + "start_transfer_out_of_space_button": "ui/storage_migration_common.json", + "continue_out_of_space_button": "ui/storage_migration_common.json", + "resume_transfer_button": "ui/storage_migration_common.json", + "exit_button": "ui/storage_migration_common.json", + "retry_help_button_panel": "ui/storage_migration_common.json", + "retry_help_button_panel/retry": "ui/storage_migration_common.json", + "retry_help_button_panel/padding": "ui/storage_migration_common.json", + "retry_help_button_panel/help": "ui/storage_migration_common.json", + "modal_no_buttons": "ui/storage_migration_common.json", + "modal_one_button": "ui/storage_migration_common.json", + "modal_two_buttons": "ui/storage_migration_common.json", + "base_child_control": "ui/storage_migration_common.json", + "base_child_control/scrolling_panel": "ui/storage_migration_common.json", + "file_size_description": "ui/storage_migration_common.json", + "file_size_description/description": "ui/storage_migration_common.json", + "file_size_description/padding": "ui/storage_migration_common.json", + "file_size_description/size_stack": "ui/storage_migration_common.json", + "file_size_description/size_stack/file_text": "ui/storage_migration_common.json", + "file_size_description/size_stack/padding_1": "ui/storage_migration_common.json", + "file_size_description/size_stack/file_size_total": "ui/storage_migration_common.json", + "file_size_description/size_stack/padding_2": "ui/storage_migration_common.json", + "file_size_description/size_stack/file_size_available": "ui/storage_migration_common.json", + "file_size_description/file_location": "ui/storage_migration_common.json", + "error_icon_and_description": "ui/storage_migration_common.json", + "error_icon_and_description/error_image": "ui/storage_migration_common.json", + "error_icon_and_description/description": "ui/storage_migration_common.json", + "file_size_description_with_error": "ui/storage_migration_common.json", + "file_size_description_with_error/file_size": "ui/storage_migration_common.json", + "file_size_description_with_error/padding": "ui/storage_migration_common.json", + "file_size_description_with_error/error_icon_and_description": "ui/storage_migration_common.json", + "start_transfer": "ui/storage_migration_common.json", + "start_transfer_content": "ui/storage_migration_common.json", + "resume_transfer": "ui/storage_migration_common.json", + "resume_transfer_content": "ui/storage_migration_common.json", + "resume_transfer_content/file_size": "ui/storage_migration_common.json", + "transfer_error_out_of_space": "ui/storage_migration_common.json", + "transfer_error_out_of_space_content": "ui/storage_migration_common.json", + }, + "storage_migration_generic": { + "storage_migration_generic_screen": "ui/storage_migration_generic_screen.json", + "modal_screen_content": "ui/storage_migration_generic_screen.json", + "modal_screen_content/modal_progress_panel_no_cancel": "ui/storage_migration_generic_screen.json", + "modal_screen_content/popup_dialog_factory": "ui/storage_migration_generic_screen.json", + "start_transfer": "ui/storage_migration_generic_screen.json", + "start_transfer_out_of_space": "ui/storage_migration_generic_screen.json", + "start_transfer_out_of_space_content": "ui/storage_migration_generic_screen.json", + "start_transfer_out_of_space_content/base_start_content": "ui/storage_migration_generic_screen.json", + "start_transfer_out_of_space_content/padding": "ui/storage_migration_generic_screen.json", + "start_transfer_out_of_space_content/error_icon_and_description": "ui/storage_migration_generic_screen.json", + "finished": "ui/storage_migration_generic_screen.json", + "finished_content": "ui/storage_migration_generic_screen.json", + "finished_content/description": "ui/storage_migration_generic_screen.json", + "resume_transfer_out_of_space": "ui/storage_migration_generic_screen.json", + "resume_transfer_out_of_space_content": "ui/storage_migration_generic_screen.json", + "transfer_error": "ui/storage_migration_generic_screen.json", + "transfer_error_content": "ui/storage_migration_generic_screen.json", + "transfer_error_content/description": "ui/storage_migration_generic_screen.json", + "transfer_error_out_of_space": "ui/storage_migration_generic_screen.json", + }, + "scoreboard": { + "scoreboard_sidebar_score": "ui/scoreboards.json", + "scoreboard_sidebar_player": "ui/scoreboards.json", + "scoreboard_sidebar": "ui/scoreboards.json", + "scoreboard_sidebar/main": "ui/scoreboards.json", + "scoreboard_sidebar/main/displayed_objective": "ui/scoreboards.json", + "scoreboard_sidebar/main/lists": "ui/scoreboards.json", + "scoreboard_sidebar/main/lists/players": "ui/scoreboards.json", + "scoreboard_sidebar/main/lists/horizontal_padding": "ui/scoreboards.json", + "scoreboard_sidebar/main/lists/scores": "ui/scoreboards.json", + "scoreboard_sidebar/displayed_objective_background": "ui/scoreboards.json", + "scoreboard_player_list": "ui/scoreboards.json", + "scoreboard_player_list/vertical_padding_0": "ui/scoreboards.json", + "scoreboard_player_list/social_buttons_panel": "ui/scoreboards.json", + "scoreboard_player_list/vertical_padding_1": "ui/scoreboards.json", + "scoreboard_player_list/permissions_button": "ui/scoreboards.json", + "scoreboard_player_list/vertical_padding_2": "ui/scoreboards.json", + "scoreboard_player_list/players_label": "ui/scoreboards.json", + "scoreboard_player_list/vertical_padding_3": "ui/scoreboards.json", + "scoreboard_player_list/scored_players_grid_panel": "ui/scoreboards.json", + "scoreboard_player_list/vertical_padding_4": "ui/scoreboards.json", + "scoreboard_player_list/unscored_players_grid_panel": "ui/scoreboards.json", + "scoreboard_player_list/vertical_padding_5": "ui/scoreboards.json", + "scoreboard_player_list/invite_players_button_panel": "ui/scoreboards.json", + "scoreboard_player_list/vertical_padding_6": "ui/scoreboards.json", + "scoreboard_player_list/disconnected_from_multiplayer_label_panel": "ui/scoreboards.json", + "scoreboard_player_list/vertical_padding_7": "ui/scoreboards.json", + "list_objective_label": "ui/scoreboards.json", + "player_rank_panel": "ui/scoreboards.json", + "player_rank_panel/player_rank_bg": "ui/scoreboards.json", + "player_rank_panel/player_rank_bg/player_rank": "ui/scoreboards.json", + "player_icon_panel": "ui/scoreboards.json", + "player_icon_panel/player_icon": "ui/scoreboards.json", + "player_icon_panel/player_icon/player_panel_black_border": "ui/scoreboards.json", + "player_icon_panel/permission_icon": "ui/scoreboards.json", + "player_name": "ui/scoreboards.json", + "player_score": "ui/scoreboards.json", + "player_details": "ui/scoreboards.json", + "player_details/name_panel": "ui/scoreboards.json", + "player_details/name_panel/name": "ui/scoreboards.json", + "player_details/score_panel": "ui/scoreboards.json", + "player_details/score_panel/score": "ui/scoreboards.json", + "player_content": "ui/scoreboards.json", + "player_content/icon": "ui/scoreboards.json", + "player_content/padding": "ui/scoreboards.json", + "player_content/details": "ui/scoreboards.json", + "base_player_button": "ui/scoreboards.json", + "player_panel": "ui/scoreboards.json", + "player_panel/rank_base": "ui/scoreboards.json", + "player_panel/rank_base/player_rank": "ui/scoreboards.json", + "player_panel/player_button": "ui/scoreboards.json", + "players_grid_list": "ui/scoreboards.json", + "players_unscored_grid_list": "ui/scoreboards.json", + "players_scored_grid_list": "ui/scoreboards.json", + }, + "screenshot": { + "screenshot_flash_image": "ui/screenshot_screen.json", + "screenshot_screen": "ui/screenshot_screen.json", + "screenshot_screen_content": "ui/screenshot_screen.json", + "screenshot_screen_content/transparent_background": "ui/screenshot_screen.json", + "screenshot_screen_content/screenshot_flash": "ui/screenshot_screen.json", + }, + "select_world": { + "popup_dialog__add_on_common": "ui/select_world_screen.json", + "popup_dialog__add_on_common_no_buttons": "ui/select_world_screen.json", + "popup_dialog__add_on_common_no_buttons/popup_dialog_bg": "ui/select_world_screen.json", + "popup_dialog__add_on_common_no_buttons/popup_dialog_message": "ui/select_world_screen.json", + "popup_dialog__add_on_common_no_buttons/close_button": "ui/select_world_screen.json", + "popup_dialog__add_on_common_no_buttons/add_on_popup_content_panel": "ui/select_world_screen.json", + "popup_dialog__add_on_common_two_buttons": "ui/select_world_screen.json", + "popup_dialog__add_on_common_two_buttons/popup_dialog_bg": "ui/select_world_screen.json", + "popup_dialog__add_on_common_two_buttons/popup_dialog_message": "ui/select_world_screen.json", + "popup_dialog__add_on_common_two_buttons/close_button": "ui/select_world_screen.json", + "popup_dialog__add_on_common_two_buttons/add_on_popup_content_panel": "ui/select_world_screen.json", + "popup_dialog__add_on_common_two_buttons/button_copy": "ui/select_world_screen.json", + "popup_dialog__add_on_common_two_buttons/button_continue": "ui/select_world_screen.json", + "add_on_button_copy": "ui/select_world_screen.json", + "add_on_button_continue": "ui/select_world_screen.json", + "add_on_popup_content_panel": "ui/select_world_screen.json", + "add_on_popup_content_panel/popup_content": "ui/select_world_screen.json", + "popup_dialog__activate_add_on": "ui/select_world_screen.json", + "popup_dialog__activate_add_on_select_world": "ui/select_world_screen.json", + "popup_dialog__copy_local_world": "ui/select_world_screen.json", + "popup_dialog__copy_realms_world": "ui/select_world_screen.json", + "copy_local_world_panel": "ui/select_world_screen.json", + "copy_local_world_panel/padding_top": "ui/select_world_screen.json", + "copy_local_world_panel/text_box": "ui/select_world_screen.json", + "copy_local_world_panel/padding_middle": "ui/select_world_screen.json", + "copy_local_world_panel/text_box2": "ui/select_world_screen.json", + "copy_realms_world_panel": "ui/select_world_screen.json", + "copy_realms_world_panel/padding_top": "ui/select_world_screen.json", + "copy_realms_world_panel/text_box": "ui/select_world_screen.json", + "copy_realms_world_panel/padding_middle": "ui/select_world_screen.json", + "copy_realms_world_panel/text_box2": "ui/select_world_screen.json", + "new_or_existing_world_panel": "ui/select_world_screen.json", + "new_or_existing_world_panel/padding_left": "ui/select_world_screen.json", + "new_or_existing_world_panel/world_icon_existing": "ui/select_world_screen.json", + "new_or_existing_world_panel/padding_middle": "ui/select_world_screen.json", + "new_or_existing_world_panel/world_icon_new": "ui/select_world_screen.json", + "new_or_existing_world_panel/padding_right": "ui/select_world_screen.json", + "world_icon_with_button": "ui/select_world_screen.json", + "world_icon_with_button/padding_top": "ui/select_world_screen.json", + "world_icon_with_button/world_icon": "ui/select_world_screen.json", + "world_icon_with_button/button": "ui/select_world_screen.json", + "world_icon_with_button/padding_bottom": "ui/select_world_screen.json", + "world_icon_new": "ui/select_world_screen.json", + "world_icon_new/plus_button": "ui/select_world_screen.json", + "world_icon_existing": "ui/select_world_screen.json", + "select_world_panel": "ui/select_world_screen.json", + "select_world_list": "ui/select_world_screen.json", + "select_world_list/realms_world_label": "ui/select_world_screen.json", + "select_world_list/realms_world_list": "ui/select_world_screen.json", + "select_world_list/padding_middle": "ui/select_world_screen.json", + "select_world_list/local_world_label": "ui/select_world_screen.json", + "select_world_list/local_world_list": "ui/select_world_screen.json", + "select_world_list/padding_end": "ui/select_world_screen.json", + "local_world_item_button": "ui/select_world_screen.json", + "realms_world_item_button": "ui/select_world_screen.json", + "select_world_screen_content": "ui/select_world_screen.json", + "select_world_screen_content/popup_dialog_factory": "ui/select_world_screen.json", + "select_world_popup_screen": "ui/select_world_screen.json", + }, + "server_form": { + "third_party_server_screen": "ui/server_form.json", + "main_screen_content": "ui/server_form.json", + "main_screen_content/server_form_factory": "ui/server_form.json", + "long_form": "ui/server_form.json", + "long_form_panel": "ui/server_form.json", + "long_form_panel/scrolling_panel": "ui/server_form.json", + "long_form_scrolling_content": "ui/server_form.json", + "long_form_scrolling_content/label_offset_panel": "ui/server_form.json", + "long_form_scrolling_content/label_offset_panel/main_label": "ui/server_form.json", + "long_form_scrolling_content/padding": "ui/server_form.json", + "long_form_scrolling_content/wrapping_panel": "ui/server_form.json", + "long_form_scrolling_content/wrapping_panel/long_form_dynamic_buttons_panel": "ui/server_form.json", + "long_form_dynamic_buttons_panel": "ui/server_form.json", + "dynamic_button": "ui/server_form.json", + "dynamic_button/panel_name": "ui/server_form.json", + "dynamic_button/panel_name/image": "ui/server_form.json", + "dynamic_button/panel_name/progress": "ui/server_form.json", + "dynamic_button/form_button": "ui/server_form.json", + "dynamic_label": "ui/server_form.json", + "dynamic_header": "ui/server_form.json", + "custom_form": "ui/server_form.json", + "custom_form_panel": "ui/server_form.json", + "generated_contents": "ui/server_form.json", + "custom_form_scrolling_content": "ui/server_form.json", + "custom_form_scrolling_content/generated_form": "ui/server_form.json", + "custom_form_scrolling_content/submit_button": "ui/server_form.json", + "custom_label": "ui/server_form.json", + "custom_header": "ui/server_form.json", + "custom_toggle": "ui/server_form.json", + "custom_slider": "ui/server_form.json", + "custom_step_slider": "ui/server_form.json", + "custom_dropdown": "ui/server_form.json", + "custom_dropdown/dropdown": "ui/server_form.json", + "custom_dropdown_content": "ui/server_form.json", + "custom_dropdown_radio": "ui/server_form.json", + "custom_input": "ui/server_form.json", + }, + "settings": { + "settings_screen_base": "ui/settings_screen.json", + "screen_world_create": "ui/settings_screen.json", + "screen_template_create": "ui/settings_screen.json", + "screen_world_edit": "ui/settings_screen.json", + "screen_controls_and_settings": "ui/settings_screen.json", + "screen_world_controls_and_settings": "ui/settings_screen.json", + "screen_realm_controls_and_settings": "ui/settings_screen.json", + "screen_realm_member_controls_and_settings": "ui/settings_screen.json", + "screen_realm_settings": "ui/settings_screen.json", + "screen_world_slot_edit": "ui/settings_screen.json", + "screen_realm_manage": "ui/settings_screen.json", + "screen_realm_invite_link_settings": "ui/settings_screen.json", + "selector_stack_panel": "ui/settings_screen.json", + "selector_stack_panel/spacer_0": "ui/settings_screen.json", + "selector_stack_panel/accessibility_button": "ui/settings_screen.json", + "selector_stack_panel/spacer_1": "ui/settings_screen.json", + "selector_stack_panel/how_to_play_button": "ui/settings_screen.json", + "selector_stack_panel/spacer_01": "ui/settings_screen.json", + "selector_stack_panel/world_selector_pane": "ui/settings_screen.json", + "selector_stack_panel/realm_selector_pane": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_1": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_1_no_spatial": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_1": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/keyboard_and_mouse_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_01": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/controller_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_02": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/switch_controller_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_03": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/touch_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_04": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_04_no_spatial": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_2": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/party_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_05": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_05_no_spatial": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_3": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/general_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_06": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/video_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_07": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/sound_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_08": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/account_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_09": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/view_subscriptions_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_10": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/global_texture_pack_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_11": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/storage_management_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_12": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/edu_cloud_storage_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_13": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/language_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_14": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/creator_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_15": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/preview_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_4": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_4_no_spatial": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_4": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/debug_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_16": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/discovery_debug_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_17": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/ui_debug_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_18": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/edu_debug_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_19": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/marketplace_debug_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_20": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/gatherings_debug_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_21": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/flighting_debug_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_22": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/realms_debug_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_23": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/automation_button": "ui/settings_screen.json", + "selector_stack_panel/spacer_24": "ui/settings_screen.json", + "selector_stack_panel/addons_selector_panel": "ui/settings_screen.json", + "selector_stack_panel/realms_invite_link_settings_pane": "ui/settings_screen.json", + "section_content_panels": "ui/settings_screen.json", + "section_content_panels/realm_invite_link_settings_content_panels": "ui/settings_screen.json", + "section_content_panels/world_sections": "ui/settings_screen.json", + "section_content_panels/world_sections/game_section": "ui/settings_screen.json", + "section_content_panels/world_sections/classroom_section_panel": "ui/settings_screen.json", + "section_content_panels/world_sections/classroom_section_panel/classroom_section": "ui/settings_screen.json", + "section_content_panels/world_sections/server_section": "ui/settings_screen.json", + "section_content_panels/world_sections/multiplayer_section": "ui/settings_screen.json", + "section_content_panels/world_sections/edu_cloud_section": "ui/settings_screen.json", + "section_content_panels/world_sections/debug_section": "ui/settings_screen.json", + "section_content_panels/packs_sections": "ui/settings_screen.json", + "section_content_panels/packs_sections/level_texture_pack_section": "ui/settings_screen.json", + "section_content_panels/packs_sections/addon_section": "ui/settings_screen.json", + "section_content_panels/section_content_panels": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/accessibility_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/accessibility_section_ore_ui": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section_ore_ui": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/controller_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/touch_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/party_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/general_tab_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/general_tab_section_ore_ui": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/account_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/account_section_ore_ui": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/global_texture_pack_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/storage_management_header": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/storage_management_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/edu_cloud_storage_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/creator_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/video_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/video_section_ore_ui": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/view_subscriptions_prerelease_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/view_subscriptions_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/sound_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/sound_section_ore_ui": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/language_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/language_section_ore_ui": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/preview_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/debug_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/ui_debug_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/edu_debug_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/marketplace_debug_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/gatherings_debug_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/flighting_debug_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/realms_debug_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/automation_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/discovery_debug_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/how_to_play_section": "ui/settings_screen.json", + "section_header_panels": "ui/settings_screen.json", + "section_header_panels/world_sections": "ui/settings_screen.json", + "section_header_panels/general_and_controls_sections": "ui/settings_screen.json", + "section_footer_panels": "ui/settings_screen.json", + "section_footer_panels/world_sections": "ui/settings_screen.json", + "section_footer_panels/general_and_controls_sections": "ui/settings_screen.json", + "section_footer_panels/general_and_controls_sections/storage_management_footer": "ui/settings_screen.json", + }, + "controls_section": { + "binding_button": "ui/settings_sections/controls_section.json", + "binding_button_content": "ui/settings_sections/controls_section.json", + "binding_button_content/default_label": "ui/settings_sections/controls_section.json", + "image_binding_button": "ui/settings_sections/controls_section.json", + "image_binding_button_content": "ui/settings_sections/controls_section.json", + "image_binding_button_content/base_icon_image": "ui/settings_sections/controls_section.json", + "image_binding_button_content/default_label": "ui/settings_sections/controls_section.json", + "arrow_reset": "ui/settings_sections/controls_section.json", + "reset_binding_button": "ui/settings_sections/controls_section.json", + "keymapping_item_parent": "ui/settings_sections/controls_section.json", + "keymapping_item_parent/keymapping_row": "ui/settings_sections/controls_section.json", + "keymapping_item": "ui/settings_sections/controls_section.json", + "keymapping_item/option_info_label_control": "ui/settings_sections/controls_section.json", + "keymapping_item/option_info_label_control/keymapping_label_control": "ui/settings_sections/controls_section.json", + "keymapping_item/keymapping_button_0": "ui/settings_sections/controls_section.json", + "keymapping_item/keymapping_button_1": "ui/settings_sections/controls_section.json", + "keymapping_grid": "ui/settings_sections/controls_section.json", + "full_keymapping_grid": "ui/settings_sections/controls_section.json", + "gamepad_mapping_item": "ui/settings_sections/controls_section.json", + "gamepad_mapping_item/option_info_label_control": "ui/settings_sections/controls_section.json", + "gamepad_mapping_item/option_info_label_control/keymapping_label_control": "ui/settings_sections/controls_section.json", + "gamepad_mapping_item/keymapping_button_0": "ui/settings_sections/controls_section.json", + "gamepad_mapping_item/keymapping_button_1": "ui/settings_sections/controls_section.json", + "gamepad_mapping_grid": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_button": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section_ore_ui": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section_ore_ui/spacer_0": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section_ore_ui/generic_label": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section_ore_ui/spacer_1": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section_ore_ui/gamepad_helper_label": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/option_slider_0": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/option_slider_damen": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/option_toggle_0": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/option_toggle_1": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/option_toggle_2": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/option_toggle_full_keyboard_gameplay": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/option_toggle_show_keyboard_prompts": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/option_toggle_show_learning_prompts": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/keyboard_section": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/keyboard_section/option_group_label": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/keyboard_section/keyboard_keymapping_grid": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/option_group_label": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/control_alt_chord_keymapping_grid": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/full_keyboard_section": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/full_keyboard_section/option_slider_smooth_rotation_speed": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/full_keyboard_section/full_keyboard_label": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/full_keyboard_section/keyboard_full_keymapping_grid": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/option_group_label": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/control_alt_chord_keymapping_grid": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/reset_button": "ui/settings_sections/controls_section.json", + "controller_button": "ui/settings_sections/controls_section.json", + "controller_section": "ui/settings_sections/controls_section.json", + "controller_section/option_slider_0": "ui/settings_sections/controls_section.json", + "controller_section/option_slider_damen": "ui/settings_sections/controls_section.json", + "controller_section/option_toggle_0": "ui/settings_sections/controls_section.json", + "controller_section/option_toggle_1": "ui/settings_sections/controls_section.json", + "controller_section/option_toggle9": "ui/settings_sections/controls_section.json", + "controller_section/option_toggle10": "ui/settings_sections/controls_section.json", + "controller_section/option_toggle_11": "ui/settings_sections/controls_section.json", + "controller_section/gamepad_swap_ab": "ui/settings_sections/controls_section.json", + "controller_section/gamepad_swap_xy": "ui/settings_sections/controls_section.json", + "controller_section/gamepad_cursor_sensitivity_option_slider": "ui/settings_sections/controls_section.json", + "controller_section/option_toggle_3": "ui/settings_sections/controls_section.json", + "controller_section/option_toggle_4": "ui/settings_sections/controls_section.json", + "controller_section/option_toggle_5": "ui/settings_sections/controls_section.json", + "controller_section/option_group_label": "ui/settings_sections/controls_section.json", + "controller_section/gamepad_keymapping_grid": "ui/settings_sections/controls_section.json", + "controller_section/reset_button": "ui/settings_sections/controls_section.json", + "touch_button": "ui/settings_sections/controls_section.json", + "touch_section": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_enable_new_touch_control_schemes_button": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/section_label": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/padding_0": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/image_and_button": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/touch_image": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/crosshair_image": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/classic_image": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/image_and_button/padding": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_label": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_control": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/padding_1": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/select_control_mode": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/padding_2": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/modify_control_layout_section": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/modify_control_layout_section/modify_control_layout_button": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/modify_control_layout_section/customize_tooltip_option": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/modify_control_layout_section/padding": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_slider_0": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_slider_damen": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_show_action_button": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_show_block_select_button": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_toggle_left_handed": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_toggle_auto_jump": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_bool_sprint_on_movement": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_show_toggle_camera_perspective_button": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/joystick_visibility_dropdown": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/top_button_scale": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/sneak_dropdown": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_toggle_destroy_vibration": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_toggle_split_vibration": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_creative_delayed_block_breaking": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_toggle_invert_y": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_always_highlight_hovering_box_in_crosshair": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_toggle_use_touchpad": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_toggle_swap_jump_and_sneak": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/hotbar_only_touch_toggle": "ui/settings_sections/controls_section.json", + "touch_section/reset_button": "ui/settings_sections/controls_section.json", + "joystick_visibility_dropdown_content": "ui/settings_sections/controls_section.json", + "top_button_scale_dropdown_content": "ui/settings_sections/controls_section.json", + "sneak_dropdown_content": "ui/settings_sections/controls_section.json", + "customize_tooltip_option_image": "ui/settings_sections/controls_section.json", + "customize_tooltip_option_popup": "ui/settings_sections/controls_section.json", + "customize_tooltip_option": "ui/settings_sections/controls_section.json", + "customize_tooltip_option/customize_tooltip_option_image": "ui/settings_sections/controls_section.json", + "customize_tooltip_option/customize_tooltip_option_image/hover_detection_input_panel": "ui/settings_sections/controls_section.json", + "customize_tooltip_option/customize_tooltip_option_popup": "ui/settings_sections/controls_section.json", + }, + "general_section": { + "general_button": "ui/settings_sections/general_section.json", + "general_tab_section_ore_ui": "ui/settings_sections/general_section.json", + "general_tab_section_ore_ui/spacer_0": "ui/settings_sections/general_section.json", + "general_tab_section_ore_ui/generic_label": "ui/settings_sections/general_section.json", + "general_tab_section_ore_ui/spacer_1": "ui/settings_sections/general_section.json", + "general_tab_section_ore_ui/gamepad_helper_label": "ui/settings_sections/general_section.json", + "general_tab_section": "ui/settings_sections/general_section.json", + "general_tab_section/option_toggle_fail_realms_purchase_fulfillment": "ui/settings_sections/general_section.json", + "general_tab_section/network_label_header": "ui/settings_sections/general_section.json", + "general_tab_section/paddingCrossPlatform": "ui/settings_sections/general_section.json", + "general_tab_section/cross_platform_enabled_toggle": "ui/settings_sections/general_section.json", + "general_tab_section/paddingCellularData": "ui/settings_sections/general_section.json", + "general_tab_section/mobile_data_option_toggle": "ui/settings_sections/general_section.json", + "general_tab_section/paddingWebSockets": "ui/settings_sections/general_section.json", + "general_tab_section/websockets_enabled_toggle": "ui/settings_sections/general_section.json", + "general_tab_section/websocket_encryption_toggle": "ui/settings_sections/general_section.json", + "general_tab_section/paddingAutoUpdate": "ui/settings_sections/general_section.json", + "general_tab_section/auto_update_mode_dropdown": "ui/settings_sections/general_section.json", + "general_tab_section/paddingAutoUpdateToggle": "ui/settings_sections/general_section.json", + "general_tab_section/auto_update_enabled_toggle": "ui/settings_sections/general_section.json", + "general_tab_section/paddingGameTipsFeature": "ui/settings_sections/general_section.json", + "general_tab_section/tutorial_toggle": "ui/settings_sections/general_section.json", + "general_tab_section/tutorial_animation_toggle": "ui/settings_sections/general_section.json", + "general_tab_section/tutorial_restart_button": "ui/settings_sections/general_section.json", + "general_tab_section/paddingTrustedSkins": "ui/settings_sections/general_section.json", + "general_tab_section/only_allow_trusted_skins_toggle": "ui/settings_sections/general_section.json", + "general_tab_section/paddingFilterProfanity": "ui/settings_sections/general_section.json", + "general_tab_section/filter_profanity_toggle": "ui/settings_sections/general_section.json", + "general_tab_section/filter_profanity_toggle/option_generic_core": "ui/settings_sections/general_section.json", + "general_tab_section/pause_label_header": "ui/settings_sections/general_section.json", + "general_tab_section/paddingPauseFeature": "ui/settings_sections/general_section.json", + "general_tab_section/pause_toggle": "ui/settings_sections/general_section.json", + "general_tab_section/paddingLinkEduSupport": "ui/settings_sections/general_section.json", + "general_tab_section/link_button": "ui/settings_sections/general_section.json", + "general_tab_section/paddingDividerSustainability": "ui/settings_sections/general_section.json", + "general_tab_section/ecomode_label_header": "ui/settings_sections/general_section.json", + "general_tab_section/paddingEcoMode": "ui/settings_sections/general_section.json", + "general_tab_section/ecomode_enabled_toggle": "ui/settings_sections/general_section.json", + "general_tab_section/paddingDividerTermsCreditsAttribution": "ui/settings_sections/general_section.json", + "general_tab_section/dividerTermsCreditsAttribution": "ui/settings_sections/general_section.json", + "general_tab_section/dividerTermsCreditsAttribution/section_divider": "ui/settings_sections/general_section.json", + "general_tab_section/paddingDividerTermsCreditsAttributionAfter": "ui/settings_sections/general_section.json", + "general_tab_section/paddingTermsNConditions": "ui/settings_sections/general_section.json", + "general_tab_section/terms_and_conditions_link_button": "ui/settings_sections/general_section.json", + "general_tab_section/paddingCreditsButton": "ui/settings_sections/general_section.json", + "general_tab_section/credits_button": "ui/settings_sections/general_section.json", + "general_tab_section/paddingAttribution": "ui/settings_sections/general_section.json", + "general_tab_section/attribution_link_button": "ui/settings_sections/general_section.json", + "general_tab_section/paddingfeedback": "ui/settings_sections/general_section.json", + "general_tab_section/feedback_link_button": "ui/settings_sections/general_section.json", + "general_tab_section/paddingLicenses": "ui/settings_sections/general_section.json", + "general_tab_section/dividerLicenses": "ui/settings_sections/general_section.json", + "general_tab_section/dividerLicenses/section_divider": "ui/settings_sections/general_section.json", + "general_tab_section/paddingLicensesAfter": "ui/settings_sections/general_section.json", + "general_tab_section/paddingLicensesHeader": "ui/settings_sections/general_section.json", + "general_tab_section/licenses_label_header": "ui/settings_sections/general_section.json", + "general_tab_section/paddingLicensedContent": "ui/settings_sections/general_section.json", + "general_tab_section/licensed_content_link_button": "ui/settings_sections/general_section.json", + "general_tab_section/paddingFontLicense": "ui/settings_sections/general_section.json", + "general_tab_section/font_license_popup_button": "ui/settings_sections/general_section.json", + "general_tab_section/third_party_copyright_info_label_panel": "ui/settings_sections/general_section.json", + "general_tab_section/third_party_copyright_info_label_panel/spacer_0": "ui/settings_sections/general_section.json", + "general_tab_section/third_party_copyright_info_label_panel/copyright_label": "ui/settings_sections/general_section.json", + "general_tab_section/third_party_copyright_info_label_panel/spacer_1": "ui/settings_sections/general_section.json", + "general_tab_section/third_party_copyright_info_label_panel/copyright_icon": "ui/settings_sections/general_section.json", + "general_tab_section/paddingSectionDividerContentLog": "ui/settings_sections/general_section.json", + "general_tab_section/build_info_label_panel": "ui/settings_sections/general_section.json", + "general_tab_section/build_info_label_panel/build_info_label": "ui/settings_sections/general_section.json", + "general_tab_section/paddingSectionDividerBuildInfo": "ui/settings_sections/general_section.json", + "general_tab_section/treatment_ids_label": "ui/settings_sections/general_section.json", + "account_section_ore_ui": "ui/settings_sections/general_section.json", + "account_section_ore_ui/spacer_0": "ui/settings_sections/general_section.json", + "account_section_ore_ui/generic_label": "ui/settings_sections/general_section.json", + "account_section_ore_ui/spacer_1": "ui/settings_sections/general_section.json", + "account_section_ore_ui/gamepad_helper_label": "ui/settings_sections/general_section.json", + "account_button": "ui/settings_sections/general_section.json", + "view_account_errors_button_content": "ui/settings_sections/general_section.json", + "switch_accounts_button_content": "ui/settings_sections/general_section.json", + "switch_accounts_button_content/padded_icon": "ui/settings_sections/general_section.json", + "switch_accounts_button_content/padded_icon/icon": "ui/settings_sections/general_section.json", + "switch_accounts_button_content/padded_label": "ui/settings_sections/general_section.json", + "switch_accounts_button_content/padded_label/label": "ui/settings_sections/general_section.json", + "sign_out_button_content": "ui/settings_sections/general_section.json", + "sign_out_button_content/padded_label": "ui/settings_sections/general_section.json", + "sign_out_button_content/padded_label/label": "ui/settings_sections/general_section.json", + "switch_accounts_panel": "ui/settings_sections/general_section.json", + "switch_accounts_panel/name_label": "ui/settings_sections/general_section.json", + "switch_accounts_panel/paddingSwitchAccounts": "ui/settings_sections/general_section.json", + "switch_accounts_panel/switch_accounts": "ui/settings_sections/general_section.json", + "sign_out_panel": "ui/settings_sections/general_section.json", + "sign_out_panel/sign_out": "ui/settings_sections/general_section.json", + "sign_out_fail_popup": "ui/settings_sections/general_section.json", + "sign_out_fail_body_panel": "ui/settings_sections/general_section.json", + "sign_out_fail_body_content_stack": "ui/settings_sections/general_section.json", + "sign_out_fail_body_content_stack/body_text_centering_panel1": "ui/settings_sections/general_section.json", + "sign_out_fail_body_content_stack/body_text_centering_panel1/body_text1": "ui/settings_sections/general_section.json", + "sign_out_fail_body_content_stack/body_text_centering_panel2": "ui/settings_sections/general_section.json", + "sign_out_fail_body_content_stack/body_text_centering_panel2/body_text2": "ui/settings_sections/general_section.json", + "sign_out_fail_body_content_stack/padding1": "ui/settings_sections/general_section.json", + "sign_out_fail_body_content_stack/learn_more_button": "ui/settings_sections/general_section.json", + "sign_out_fail_body_content_stack/padding2": "ui/settings_sections/general_section.json", + "sign_out_fail_body_content_stack/close_button": "ui/settings_sections/general_section.json", + "account_section": "ui/settings_sections/general_section.json", + "account_section/use_edu_remember_me": "ui/settings_sections/general_section.json", + "account_section/paddingUseSSO": "ui/settings_sections/general_section.json", + "account_section/switch_accounts": "ui/settings_sections/general_section.json", + "account_section/sign_out": "ui/settings_sections/general_section.json", + "account_section/paddingNameControls": "ui/settings_sections/general_section.json", + "account_section/name_controls": "ui/settings_sections/general_section.json", + "account_section/paddingSignInControls": "ui/settings_sections/general_section.json", + "account_section/signin_controls": "ui/settings_sections/general_section.json", + "account_section/paddingGamerTagControls": "ui/settings_sections/general_section.json", + "account_section/gamertag_controls": "ui/settings_sections/general_section.json", + "account_section/paddingClearMSAToken": "ui/settings_sections/general_section.json", + "account_section/clear_msa_token": "ui/settings_sections/general_section.json", + "account_section/clear_msa_token/clear_msa_token_button": "ui/settings_sections/general_section.json", + "account_section/paddingUnlinkMSAAccount": "ui/settings_sections/general_section.json", + "account_section/unlink_msa_account": "ui/settings_sections/general_section.json", + "account_section/unlink_msa_account_nx": "ui/settings_sections/general_section.json", + "account_section/paddingDeleteAccount": "ui/settings_sections/general_section.json", + "account_section/delete_account": "ui/settings_sections/general_section.json", + "account_section/paddingUseRemoteConnect": "ui/settings_sections/general_section.json", + "account_section/remote_connect_toggle": "ui/settings_sections/general_section.json", + "account_section/paddingInfoLabels": "ui/settings_sections/general_section.json", + "account_section/account_info_buttom": "ui/settings_sections/general_section.json", + "account_section/account_info_buttom/account_info_label": "ui/settings_sections/general_section.json", + "name_controls": "ui/settings_sections/general_section.json", + "name_controls/option_text_edit_control": "ui/settings_sections/general_section.json", + "signin_controls": "ui/settings_sections/general_section.json", + "signin_controls/sign_in": "ui/settings_sections/general_section.json", + "signin_controls/sign_in/action_button": "ui/settings_sections/general_section.json", + "signin_subscription": "ui/settings_sections/general_section.json", + "signin_subscription/sign_in": "ui/settings_sections/general_section.json", + "signin_subscription/sign_in/please_signin_label": "ui/settings_sections/general_section.json", + "gamertag_controls": "ui/settings_sections/general_section.json", + "gamertag_controls/gamertag_label": "ui/settings_sections/general_section.json", + "gamertag_controls/gamertag_label/panel_descriptor": "ui/settings_sections/general_section.json", + "gamertag_controls/gamertag_label/panel_descriptor/label_descriptor": "ui/settings_sections/general_section.json", + "gamertag_controls/gamertag_label/spacer": "ui/settings_sections/general_section.json", + "gamertag_controls/gamertag_label/gamerpic": "ui/settings_sections/general_section.json", + "gamertag_controls/gamertag_label/spacer_2": "ui/settings_sections/general_section.json", + "gamertag_controls/gamertag_label/panel_gamertag": "ui/settings_sections/general_section.json", + "gamertag_controls/gamertag_label/panel_gamertag/gamertag_label": "ui/settings_sections/general_section.json", + "gamertag_controls/paddingXboxAccountButtons": "ui/settings_sections/general_section.json", + "gamertag_controls/xboxlive_deep_link_buttons": "ui/settings_sections/general_section.json", + "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button": "ui/settings_sections/general_section.json", + "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button_mobile": "ui/settings_sections/general_section.json", + "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button": "ui/settings_sections/general_section.json", + "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button_mobile": "ui/settings_sections/general_section.json", + "gamertag_controls/xboxlive_deep_link_buttons/paddingXboxSettingsPrivacyControl": "ui/settings_sections/general_section.json", + "gamertag_controls/xboxlive_deep_link_buttons/link_button": "ui/settings_sections/general_section.json", + "gamertag_controls/paddingSignOut": "ui/settings_sections/general_section.json", + "gamertag_controls/realms_invites": "ui/settings_sections/general_section.json", + "gamertag_controls/realms_invites/check_realms_invites_button": "ui/settings_sections/general_section.json", + "gamertag_controls/sign_out": "ui/settings_sections/general_section.json", + "gamertag_controls/sign_out/action_button": "ui/settings_sections/general_section.json", + "gamertag_controls/offline_token_authorization": "ui/settings_sections/general_section.json", + "gamertag_controls/offline_token_authorization/request_psn_authorization_button": "ui/settings_sections/general_section.json", + "auto_update_mode_dropdown_content": "ui/settings_sections/general_section.json", + "global_texture_pack_button": "ui/settings_sections/general_section.json", + "global_texture_pack_section": "ui/settings_sections/general_section.json", + "storage_management_button": "ui/settings_sections/general_section.json", + "storage_management_section": "ui/settings_sections/general_section.json", + "storage_management_header": "ui/settings_sections/general_section.json", + "storage_management_footer": "ui/settings_sections/general_section.json", + "edu_cloud_storage_button": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section/spacing1": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section/edu_cloud_backup_toggle": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section/spacing2": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section/body_wrapper_panel": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section/body_wrapper_panel/tts_border": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section/body_wrapper_panel/edu_cloud_storage_body_label": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section/spacing3": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section/edu_cloud_onedrive_button": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section/spacing4": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/learn_more_button": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon/icon": "ui/settings_sections/general_section.json", + "edu_cloud_onedrive_button_content": "ui/settings_sections/general_section.json", + "edu_cloud_onedrive_button_content/padded_label": "ui/settings_sections/general_section.json", + "edu_cloud_onedrive_button_content/padded_label/label": "ui/settings_sections/general_section.json", + "edu_cloud_onedrive_button_content/padded_icon": "ui/settings_sections/general_section.json", + "edu_cloud_onedrive_button_content/padded_icon/icon": "ui/settings_sections/general_section.json", + "edu_cloud_onedrive_error_popup": "ui/settings_sections/general_section.json", + "edu_cloud_onedrive_error_content": "ui/settings_sections/general_section.json", + "edu_cloud_onedrive_error_content/body_text_centering_panel2": "ui/settings_sections/general_section.json", + "edu_cloud_onedrive_error_content/body_text_centering_panel2/body_text2": "ui/settings_sections/general_section.json", + "edu_cloud_onedrive_error_content/padding2": "ui/settings_sections/general_section.json", + "edu_cloud_onedrive_error_content/learn_more_button": "ui/settings_sections/general_section.json", + "edu_cloud_onedrive_error_content/padding3": "ui/settings_sections/general_section.json", + "edu_cloud_onedrive_error_content/ok_button": "ui/settings_sections/general_section.json", + "creator_button": "ui/settings_sections/general_section.json", + "editor_toggle_panel": "ui/settings_sections/general_section.json", + "editor_toggle_panel/editor_confirmation_panel": "ui/settings_sections/general_section.json", + "editor_toggle_panel/editor_confirmation_panel/editor_active_label": "ui/settings_sections/general_section.json", + "editor_toggle_panel/editor_confirmation_panel/toggle_spacer": "ui/settings_sections/general_section.json", + "editor_toggle_panel/editor_confirmation_panel/editor_confirmation_section_label": "ui/settings_sections/general_section.json", + "editor_toggle_panel/editor_toggle_spacer": "ui/settings_sections/general_section.json", + "editor_toggle_panel/editor_image_panel": "ui/settings_sections/general_section.json", + "editor_toggle_panel/editor_image_panel/editor_icon": "ui/settings_sections/general_section.json", + "creator_toggles_panel": "ui/settings_sections/general_section.json", + "creator_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json", + "creator_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json", + "creator_toggles_panel/copy_coordinate_section_stack_panel": "ui/settings_sections/general_section.json", + "creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label": "ui/settings_sections/general_section.json", + "creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label_spacer": "ui/settings_sections/general_section.json", + "creator_toggles_panel/copy_coordinate_section_stack_panel/option_content_file_log": "ui/settings_sections/general_section.json", + "creator_toggles_panel/creator_setting_button": "ui/settings_sections/general_section.json", + "creator_toggles_panel/creator_setting_button/go_to_keybinds": "ui/settings_sections/general_section.json", + "creator_toggles_panel/creator_setting_button/creator_settings_section_label_spacer": "ui/settings_sections/general_section.json", + "debugger_toggles_panel": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/primary_panel": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/primary_panel/heading": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/primary_panel/spacer": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/primary_panel/passcode_required_toggle": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/primary_panel/passcode_input": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/primary_panel/auto_attach_toggle": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/primary_panel/all_options_panel": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/primary_panel/all_options_panel/attach_mode_option": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/host_input": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/spacer": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/port_input": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/primary_panel/all_options_panel/auto_attach_timeout_slider": "ui/settings_sections/general_section.json", + "diagnostics_toggles_panel": "ui/settings_sections/general_section.json", + "diagnostics_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json", + "diagnostics_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json", + "diagnostics_toggles_panel/primary_panel": "ui/settings_sections/general_section.json", + "diagnostics_toggles_panel/primary_panel/heading": "ui/settings_sections/general_section.json", + "diagnostics_toggles_panel/primary_panel/spacer": "ui/settings_sections/general_section.json", + "diagnostics_toggles_panel/primary_panel/serverbound_client_diagnostics_toggle": "ui/settings_sections/general_section.json", + "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons": "ui/settings_sections/general_section.json", + "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons/clear_diagnostics_capture_files": "ui/settings_sections/general_section.json", + "watchdog_toggles_panel": "ui/settings_sections/general_section.json", + "watchdog_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json", + "watchdog_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json", + "watchdog_toggles_panel/primary_panel": "ui/settings_sections/general_section.json", + "watchdog_toggles_panel/primary_panel/heading": "ui/settings_sections/general_section.json", + "watchdog_toggles_panel/primary_panel/spacer": "ui/settings_sections/general_section.json", + "watchdog_toggles_panel/primary_panel/hang_threshold_slider": "ui/settings_sections/general_section.json", + "watchdog_toggles_panel/primary_panel/spike_warning_toggle": "ui/settings_sections/general_section.json", + "watchdog_toggles_panel/primary_panel/spike_threshold_slider": "ui/settings_sections/general_section.json", + "watchdog_toggles_panel/primary_panel/slow_warning_toggle": "ui/settings_sections/general_section.json", + "watchdog_toggles_panel/primary_panel/slow_threshold_slider": "ui/settings_sections/general_section.json", + "device_info_toggles_panel": "ui/settings_sections/general_section.json", + "device_info_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json", + "device_info_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json", + "device_info_toggles_panel/primary_panel": "ui/settings_sections/general_section.json", + "device_info_toggles_panel/primary_panel/heading": "ui/settings_sections/general_section.json", + "device_info_toggles_panel/primary_panel/spacer": "ui/settings_sections/general_section.json", + "device_info_toggles_panel/primary_panel/device_info_memory_tier_use_override_toggle": "ui/settings_sections/general_section.json", + "device_info_toggles_panel/device_info_memory_tier_dropdown": "ui/settings_sections/general_section.json", + "content_memory_tier_dropdown_content": "ui/settings_sections/general_section.json", + "content_log_gui_level_content": "ui/settings_sections/general_section.json", + "content_log_panel": "ui/settings_sections/general_section.json", + "content_log_panel/section_panel_1": "ui/settings_sections/general_section.json", + "content_log_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json", + "content_log_panel/content_log_section_label": "ui/settings_sections/general_section.json", + "content_log_panel/content_log_section_label_spacer": "ui/settings_sections/general_section.json", + "content_log_panel/option_content_file_log": "ui/settings_sections/general_section.json", + "content_log_panel/option_content_gui_log": "ui/settings_sections/general_section.json", + "content_log_panel/option_content_gui_log_show_on_errors": "ui/settings_sections/general_section.json", + "content_log_panel/option_content_log_gui_level": "ui/settings_sections/general_section.json", + "content_log_panel/content_log_buttons": "ui/settings_sections/general_section.json", + "content_log_panel/content_log_buttons/open_content_log_history": "ui/settings_sections/general_section.json", + "content_log_panel/content_log_buttons/content_log_section_label_spacer": "ui/settings_sections/general_section.json", + "content_log_panel/content_log_buttons/clear_content_log_files": "ui/settings_sections/general_section.json", + "content_log_panel/content_log_section_label_spacer_2": "ui/settings_sections/general_section.json", + "content_log_panel/content_log_location_label_header": "ui/settings_sections/general_section.json", + "content_log_panel/content_log_location_label": "ui/settings_sections/general_section.json", + "creator_section": "ui/settings_sections/general_section.json", + "creator_section/editor_toggle": "ui/settings_sections/general_section.json", + "creator_section/creator_toggles": "ui/settings_sections/general_section.json", + "creator_section/debugger_toggles_panel": "ui/settings_sections/general_section.json", + "creator_section/diagnostics_toggle_panel": "ui/settings_sections/general_section.json", + "creator_section/watchdog_toggles_panel": "ui/settings_sections/general_section.json", + "creator_section/device_info_toggles_panel": "ui/settings_sections/general_section.json", + "creator_section/content_log_panel": "ui/settings_sections/general_section.json", + "video_button": "ui/settings_sections/general_section.json", + "advanced_video_options_toggle": "ui/settings_sections/general_section.json", + "video_section_ore_ui": "ui/settings_sections/general_section.json", + "video_section_ore_ui/spacer_0": "ui/settings_sections/general_section.json", + "video_section_ore_ui/generic_label": "ui/settings_sections/general_section.json", + "video_section_ore_ui/spacer_1": "ui/settings_sections/general_section.json", + "video_section_ore_ui/gamepad_helper_label": "ui/settings_sections/general_section.json", + "video_menu_slider_step_progress": "ui/settings_sections/general_section.json", + "video_menu_slider_progress": "ui/settings_sections/general_section.json", + "video_menu_slider_bar_default": "ui/settings_sections/general_section.json", + "video_menu_customization_slider_control": "ui/settings_sections/general_section.json", + "video_menu_customization_slider_control/slider": "ui/settings_sections/general_section.json", + "video_menu_customization_slider_control/slider/slider_box": "ui/settings_sections/general_section.json", + "video_menu_customization_slider_control/slider/slider_bar_default": "ui/settings_sections/general_section.json", + "video_menu_customization_slider_control/slider/slider_bar_hover": "ui/settings_sections/general_section.json", + "video_menu_customization_option_slider": "ui/settings_sections/general_section.json", + "video_section": "ui/settings_sections/general_section.json", + "video_section/advanced_graphics_options_panel": "ui/settings_sections/general_section.json", + "video_section/advanced_graphics_options_panel/graphics_mode": "ui/settings_sections/general_section.json", + "video_section/advanced_graphics_options_panel/graphics_quality_preset_mode_dropdown_content": "ui/settings_sections/general_section.json", + "video_section/advanced_graphics_options_panel/spacer_0": "ui/settings_sections/general_section.json", + "video_section/advanced_graphics_options_panel/advanced_graphics_options_button": "ui/settings_sections/general_section.json", + "video_section/advanced_graphics_options_panel/advanced_graphics_options_section": "ui/settings_sections/general_section.json", + "video_section/spacer_1": "ui/settings_sections/general_section.json", + "video_section/graphics_api_dropdown": "ui/settings_sections/general_section.json", + "video_section/raytracing_render_distance_slider": "ui/settings_sections/general_section.json", + "video_section/raytracing_render_distance_slider/option_generic_core": "ui/settings_sections/general_section.json", + "video_section/deferred_render_distance_slider": "ui/settings_sections/general_section.json", + "video_section/deferred_render_distance_slider/option_generic_core": "ui/settings_sections/general_section.json", + "video_section/render_distance_slider": "ui/settings_sections/general_section.json", + "video_section/render_distance_slider/render_distance_warning": "ui/settings_sections/general_section.json", + "video_section/render_distance_slider/option_generic_core": "ui/settings_sections/general_section.json", + "video_section/render_distance_warning_text": "ui/settings_sections/general_section.json", + "video_section/render_distance_warning_text/render_distance_popup": "ui/settings_sections/general_section.json", + "video_section/spacer_2": "ui/settings_sections/general_section.json", + "video_section/brightness_slider": "ui/settings_sections/general_section.json", + "video_section/spacer_3": "ui/settings_sections/general_section.json", + "video_section/perspective_dropdown": "ui/settings_sections/general_section.json", + "video_section/spacer_4": "ui/settings_sections/general_section.json", + "video_section/fullscreen_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_5": "ui/settings_sections/general_section.json", + "video_section/option_toggle_hidehand": "ui/settings_sections/general_section.json", + "video_section/spacer_6": "ui/settings_sections/general_section.json", + "video_section/hide_paperdoll_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_7": "ui/settings_sections/general_section.json", + "video_section/option_toggle_hidehud": "ui/settings_sections/general_section.json", + "video_section/spacer_8": "ui/settings_sections/general_section.json", + "video_section/option_toggle_screen_animations": "ui/settings_sections/general_section.json", + "video_section/spacer_9": "ui/settings_sections/general_section.json", + "video_section/hud_opacity_slider": "ui/settings_sections/general_section.json", + "video_section/spacer_10": "ui/settings_sections/general_section.json", + "video_section/splitscreen_hud_opacity_slider": "ui/settings_sections/general_section.json", + "video_section/spacer_11": "ui/settings_sections/general_section.json", + "video_section/setup_safe_zone": "ui/settings_sections/general_section.json", + "video_section/setup_safe_zone/action_button": "ui/settings_sections/general_section.json", + "video_section/spacer_12": "ui/settings_sections/general_section.json", + "video_section/fov_slider": "ui/settings_sections/general_section.json", + "video_section/spacer_13": "ui/settings_sections/general_section.json", + "video_section/split_screen_dropdown": "ui/settings_sections/general_section.json", + "video_section/spacer_14": "ui/settings_sections/general_section.json", + "video_section/auto_save_icon_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_15": "ui/settings_sections/general_section.json", + "video_section/outline_selection_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_16": "ui/settings_sections/general_section.json", + "video_section/player_names_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_17": "ui/settings_sections/general_section.json", + "video_section/splitscreen_player_names_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_18": "ui/settings_sections/general_section.json", + "video_section/view_bobbing_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_19": "ui/settings_sections/general_section.json", + "video_section/camera_shake_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_20": "ui/settings_sections/general_section.json", + "video_section/fancy_leaves_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_21": "ui/settings_sections/general_section.json", + "video_section/fancy_bubbles_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_22": "ui/settings_sections/general_section.json", + "video_section/render_clouds_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_23": "ui/settings_sections/general_section.json", + "video_section/fancy_clouds_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_24": "ui/settings_sections/general_section.json", + "video_section/smooth_lighting_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_25": "ui/settings_sections/general_section.json", + "video_section/rendering_profile_option_slider": "ui/settings_sections/general_section.json", + "video_section/field_of_view_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_26": "ui/settings_sections/general_section.json", + "video_section/damage_bob_option_slider": "ui/settings_sections/general_section.json", + "video_section/spacer_26.5": "ui/settings_sections/general_section.json", + "video_section/super_fancy_panel": "ui/settings_sections/general_section.json", + "video_section/super_fancy_panel/super_fancy_section": "ui/settings_sections/general_section.json", + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents": "ui/settings_sections/general_section.json", + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/atmospherics_toggle": "ui/settings_sections/general_section.json", + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/edge_highlight_toggle": "ui/settings_sections/general_section.json", + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/bloom_toggle": "ui/settings_sections/general_section.json", + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/terrain_shadows_toggle": "ui/settings_sections/general_section.json", + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/super_fancy_water_toggle": "ui/settings_sections/general_section.json", + "video_section/ui_profile_dropdown": "ui/settings_sections/general_section.json", + "video_section/spacer_27": "ui/settings_sections/general_section.json", + "video_section/gui_scale_slider": "ui/settings_sections/general_section.json", + "video_section/gui_scale_slider/option_generic_core": "ui/settings_sections/general_section.json", + "video_section/spacer_28": "ui/settings_sections/general_section.json", + "video_section/gui_accessibility_scaling_toggle": "ui/settings_sections/general_section.json", + "video_section/gui_accessibility_scaling_toggle/option_generic_core": "ui/settings_sections/general_section.json", + "video_section/spacer_29": "ui/settings_sections/general_section.json", + "video_section/option_toggle_improved_input_response": "ui/settings_sections/general_section.json", + "video_section/option_toggle_improved_input_response/option_generic_core": "ui/settings_sections/general_section.json", + "video_section/spacer_30": "ui/settings_sections/general_section.json", + "video_section/frame_pacing_toggle": "ui/settings_sections/general_section.json", + "video_section/frame_pacing_toggle/option_generic_core": "ui/settings_sections/general_section.json", + "video_section/spacer_31": "ui/settings_sections/general_section.json", + "video_section/graphics_mode_switch_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_32": "ui/settings_sections/general_section.json", + "video_section/upscaling_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_33": "ui/settings_sections/general_section.json", + "video_section/max_framerate_slider": "ui/settings_sections/general_section.json", + "video_section/spacer_34": "ui/settings_sections/general_section.json", + "video_section/msaa_slider": "ui/settings_sections/general_section.json", + "video_section/spacer_35": "ui/settings_sections/general_section.json", + "video_section/texel_anti_aliasing_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_36": "ui/settings_sections/general_section.json", + "video_section/reset_button": "ui/settings_sections/general_section.json", + "max_framerate_slider": "ui/settings_sections/general_section.json", + "max_framerate_slider/option_generic_core": "ui/settings_sections/general_section.json", + "msaa_slider": "ui/settings_sections/general_section.json", + "upscaling_toggle": "ui/settings_sections/general_section.json", + "upscaling_toggle/option_generic_core": "ui/settings_sections/general_section.json", + "render_distance_warning_image": "ui/settings_sections/general_section.json", + "render_distance_warning": "ui/settings_sections/general_section.json", + "render_distance_warning/render_distance_warning_image": "ui/settings_sections/general_section.json", + "ui_profile_dropdown_content": "ui/settings_sections/general_section.json", + "split_screen_dropdown_content": "ui/settings_sections/general_section.json", + "third_person_dropdown_content": "ui/settings_sections/general_section.json", + "toast_notification_duration_dropdown_content": "ui/settings_sections/general_section.json", + "chat_message_duration_dropdown_content": "ui/settings_sections/general_section.json", + "file_storage_location_content": "ui/settings_sections/general_section.json", + "background": "ui/settings_sections/general_section.json", + "background/fill": "ui/settings_sections/general_section.json", + "background/border": "ui/settings_sections/general_section.json", + "left_button_label": "ui/settings_sections/general_section.json", + "right_button_label": "ui/settings_sections/general_section.json", + "realms_button_panel": "ui/settings_sections/general_section.json", + "realms_button_panel/pad_0": "ui/settings_sections/general_section.json", + "realms_button_panel/left_button_panel": "ui/settings_sections/general_section.json", + "realms_button_panel/left_button_panel/left_button": "ui/settings_sections/general_section.json", + "realms_button_panel/left_button_panel/left_button_loading": "ui/settings_sections/general_section.json", + "realms_button_panel/pad_1": "ui/settings_sections/general_section.json", + "realms_button_panel/right_button": "ui/settings_sections/general_section.json", + "realms_button_panel/pad_2": "ui/settings_sections/general_section.json", + "consumable_not_extendable": "ui/settings_sections/general_section.json", + "consumable_not_extendable/panel_content": "ui/settings_sections/general_section.json", + "consumable_not_extendable/panel_content/padded_icon_0": "ui/settings_sections/general_section.json", + "consumable_not_extendable/panel_content/limited_status_image": "ui/settings_sections/general_section.json", + "consumable_not_extendable/panel_content/padded_icon_1": "ui/settings_sections/general_section.json", + "consumable_not_extendable/panel_content/label_panel": "ui/settings_sections/general_section.json", + "consumable_not_extendable/panel_content/label_panel/name_label2": "ui/settings_sections/general_section.json", + "possible_store_mismatch": "ui/settings_sections/general_section.json", + "possible_store_mismatch/panel_content": "ui/settings_sections/general_section.json", + "possible_store_mismatch/panel_content/padded_icon_0": "ui/settings_sections/general_section.json", + "possible_store_mismatch/panel_content/limited_status_image": "ui/settings_sections/general_section.json", + "possible_store_mismatch/panel_content/padded_icon_1": "ui/settings_sections/general_section.json", + "possible_store_mismatch/panel_content/label_panel": "ui/settings_sections/general_section.json", + "possible_store_mismatch/panel_content/label_panel/name_label2": "ui/settings_sections/general_section.json", + "realms_subscription_stack": "ui/settings_sections/general_section.json", + "realms_subscription_stack/image_panel": "ui/settings_sections/general_section.json", + "realms_subscription_stack/image_panel/0": "ui/settings_sections/general_section.json", + "realms_subscription_stack/pad": "ui/settings_sections/general_section.json", + "realms_subscription_stack/info": "ui/settings_sections/general_section.json", + "realms_subscription_stack/info/realm_name": "ui/settings_sections/general_section.json", + "realms_subscription_stack/info/realms_desc_label": "ui/settings_sections/general_section.json", + "realms_subscription_stack/info/bottom_pad": "ui/settings_sections/general_section.json", + "realms_subscription_main": "ui/settings_sections/general_section.json", + "realms_subscription_main/black_background": "ui/settings_sections/general_section.json", + "realms_subscription_main/realms_plus_subscription_stack": "ui/settings_sections/general_section.json", + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_subscription_top_stack": "ui/settings_sections/general_section.json", + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack": "ui/settings_sections/general_section.json", + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/top_pad": "ui/settings_sections/general_section.json", + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/realms_plus_bottom_button_panel": "ui/settings_sections/general_section.json", + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/bottom_pad": "ui/settings_sections/general_section.json", + "realms_subscription_panel": "ui/settings_sections/general_section.json", + "realms_subscription_panel/top_panel": "ui/settings_sections/general_section.json", + "realms_subscription_panel/pad_1": "ui/settings_sections/general_section.json", + "realms_subscription_panel/middle_panel": "ui/settings_sections/general_section.json", + "realms_subscription_panel/middle_panel/black_background": "ui/settings_sections/general_section.json", + "realms_subscription_panel/middle_panel/renews_text": "ui/settings_sections/general_section.json", + "realms_subscription_panel/pad_2": "ui/settings_sections/general_section.json", + "realms_subscription_panel/lower_panel": "ui/settings_sections/general_section.json", + "realms_subscription_panel/lower_panel/black_background": "ui/settings_sections/general_section.json", + "realms_subscription_panel/lower_panel/consumable_not_extendable": "ui/settings_sections/general_section.json", + "realms_subscription_panel/pad_3": "ui/settings_sections/general_section.json", + "realms_subscription_panel/platform_mismatch_container": "ui/settings_sections/general_section.json", + "realms_subscription_panel/platform_mismatch_container/black_background": "ui/settings_sections/general_section.json", + "realms_subscription_panel/platform_mismatch_container/possible_store_mismatch": "ui/settings_sections/general_section.json", + "realms_subscription_panel/pad_4": "ui/settings_sections/general_section.json", + "realms_plus_subscription_panel": "ui/settings_sections/general_section.json", + "additional_subscription_panel": "ui/settings_sections/general_section.json", + "view_subscriptions_button": "ui/settings_sections/general_section.json", + "view_subscriptions_prerelease_section": "ui/settings_sections/general_section.json", + "view_subscriptions_prerelease_section/black_background": "ui/settings_sections/general_section.json", + "view_subscriptions_prerelease_section/renews_text": "ui/settings_sections/general_section.json", + "view_subscriptions_section": "ui/settings_sections/general_section.json", + "view_subscriptions_section/sunsetting_label": "ui/settings_sections/general_section.json", + "view_subscriptions_section/failed_loading_subscriptions_label": "ui/settings_sections/general_section.json", + "view_subscriptions_section/loading_subscriptions_label": "ui/settings_sections/general_section.json", + "view_subscriptions_section/no_active_subscriptions_panel": "ui/settings_sections/general_section.json", + "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions": "ui/settings_sections/general_section.json", + "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions/text": "ui/settings_sections/general_section.json", + "view_subscriptions_section/no_active_subscriptions_panel/background_panel": "ui/settings_sections/general_section.json", + "view_subscriptions_section/realms_plus_header_my_subscriptions": "ui/settings_sections/general_section.json", + "view_subscriptions_section/realms_plus_header_my_subscriptions/text": "ui/settings_sections/general_section.json", + "view_subscriptions_section/realms_plus_subscriptions_grid": "ui/settings_sections/general_section.json", + "view_subscriptions_section/csb_purchased_with_cancel": "ui/settings_sections/general_section.json", + "view_subscriptions_section/csb_purchased_with_buy": "ui/settings_sections/general_section.json", + "view_subscriptions_section/csb_purchased_padding": "ui/settings_sections/general_section.json", + "view_subscriptions_section/platform_mismatch_container": "ui/settings_sections/general_section.json", + "view_subscriptions_section/platform_mismatch_container/black_background": "ui/settings_sections/general_section.json", + "view_subscriptions_section/platform_mismatch_container/possible_store_mismatch": "ui/settings_sections/general_section.json", + "view_subscriptions_section/csb_expiration_container": "ui/settings_sections/general_section.json", + "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container": "ui/settings_sections/general_section.json", + "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration_text_padding": "ui/settings_sections/general_section.json", + "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration": "ui/settings_sections/general_section.json", + "view_subscriptions_section/csb_expiration_container/background_panel": "ui/settings_sections/general_section.json", + "view_subscriptions_section/csb_expiration_and_platform_mismatch_padding": "ui/settings_sections/general_section.json", + "view_subscriptions_section/additional_realms_subscriptions_grid": "ui/settings_sections/general_section.json", + "view_subscriptions_section/settings_additional_subscription_offers_section": "ui/settings_sections/general_section.json", + "view_subscriptions_section/pad_3": "ui/settings_sections/general_section.json", + "settings_additional_subscription_offers_section": "ui/settings_sections/general_section.json", + "settings_additional_subscription_offers_section/active_available_divider": "ui/settings_sections/general_section.json", + "settings_additional_subscription_offers_section/realms_plus_header_label": "ui/settings_sections/general_section.json", + "settings_additional_subscription_offers_section/pad_0": "ui/settings_sections/general_section.json", + "settings_additional_subscription_offers_section/additional_realms_buy_offer": "ui/settings_sections/general_section.json", + "settings_additional_subscription_offers_section/pad_8": "ui/settings_sections/general_section.json", + "settings_additional_subscription_offers_section/csb_buy_panel": "ui/settings_sections/general_section.json", + "accessibility_button": "ui/settings_sections/general_section.json", + "toast_notification_duration_label": "ui/settings_sections/general_section.json", + "toast_notification_duration_info_label": "ui/settings_sections/general_section.json", + "toast_notification_duration_info_edu_label": "ui/settings_sections/general_section.json", + "chat_message_duration_label": "ui/settings_sections/general_section.json", + "chat_message_duration_info_label": "ui/settings_sections/general_section.json", + "accessibility_section": "ui/settings_sections/general_section.json", + "accessibility_section/option_toggle0": "ui/settings_sections/general_section.json", + "accessibility_section/option_toggle1": "ui/settings_sections/general_section.json", + "accessibility_section/option_toggle2": "ui/settings_sections/general_section.json", + "accessibility_section/option_slider_0": "ui/settings_sections/general_section.json", + "accessibility_section/option_toggle3": "ui/settings_sections/general_section.json", + "accessibility_section/hud_text_background_opacity_slider": "ui/settings_sections/general_section.json", + "accessibility_section/chat_opacity_slider": "ui/settings_sections/general_section.json", + "accessibility_section/actionbar_text_background_opacity_slider": "ui/settings_sections/general_section.json", + "accessibility_section/camera_shake_toggle": "ui/settings_sections/general_section.json", + "accessibility_section/hide_endflash_toggle": "ui/settings_sections/general_section.json", + "accessibility_section/enable_dithering_blocks_toggle": "ui/settings_sections/general_section.json", + "accessibility_section/enable_dithering_mobs_toggle": "ui/settings_sections/general_section.json", + "accessibility_section/darkness_slider": "ui/settings_sections/general_section.json", + "accessibility_section/glint_strength_slider": "ui/settings_sections/general_section.json", + "accessibility_section/glint_speed_slider": "ui/settings_sections/general_section.json", + "accessibility_section/toast_notification_duration_options_panel": "ui/settings_sections/general_section.json", + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_label_wrapper": "ui/settings_sections/general_section.json", + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_wrapper": "ui/settings_sections/general_section.json", + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_edu_wrapper": "ui/settings_sections/general_section.json", + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown_spacer_pre": "ui/settings_sections/general_section.json", + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown": "ui/settings_sections/general_section.json", + "accessibility_section/chat_message_duration_options_panel": "ui/settings_sections/general_section.json", + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_label_wrapper": "ui/settings_sections/general_section.json", + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_info_label_wrapper": "ui/settings_sections/general_section.json", + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown_spacer_pre": "ui/settings_sections/general_section.json", + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown": "ui/settings_sections/general_section.json", + "accessibility_section/gui_scale_slider": "ui/settings_sections/general_section.json", + "accessibility_section/gui_scale_slider/option_generic_core": "ui/settings_sections/general_section.json", + "accessibility_section/gui_accessibility_scaling_toggle": "ui/settings_sections/general_section.json", + "accessibility_section/gui_accessibility_scaling_toggle/option_generic_core": "ui/settings_sections/general_section.json", + "accessibility_section/reset_button": "ui/settings_sections/general_section.json", + "accessibility_section_ore_ui": "ui/settings_sections/general_section.json", + "accessibility_section_ore_ui/spacer_0": "ui/settings_sections/general_section.json", + "accessibility_section_ore_ui/generic_label": "ui/settings_sections/general_section.json", + "accessibility_section_ore_ui/spacer_1": "ui/settings_sections/general_section.json", + "accessibility_section_ore_ui/gamepad_helper_label": "ui/settings_sections/general_section.json", + "accessibility_section_ore_ui/accessibility_button": "ui/settings_sections/general_section.json", + "sound_button": "ui/settings_sections/general_section.json", + "sound_section_ore_ui": "ui/settings_sections/general_section.json", + "sound_section_ore_ui/spacer_0": "ui/settings_sections/general_section.json", + "sound_section_ore_ui/generic_label": "ui/settings_sections/general_section.json", + "sound_section_ore_ui/spacer_1": "ui/settings_sections/general_section.json", + "sound_section_ore_ui/gamepad_helper_label": "ui/settings_sections/general_section.json", + "sound_section": "ui/settings_sections/general_section.json", + "sound_section/paddingMainVolume": "ui/settings_sections/general_section.json", + "sound_section/option_slider_0": "ui/settings_sections/general_section.json", + "sound_section/paddingDividerAudioSettings": "ui/settings_sections/general_section.json", + "sound_section/dividerAudioSettings": "ui/settings_sections/general_section.json", + "sound_section/dividerAudioSettings/section_divider": "ui/settings_sections/general_section.json", + "sound_section/paddingMusic": "ui/settings_sections/general_section.json", + "sound_section/option_slider_1": "ui/settings_sections/general_section.json", + "sound_section/paddingSound": "ui/settings_sections/general_section.json", + "sound_section/option_slider_2": "ui/settings_sections/general_section.json", + "sound_section/paddingAmbient": "ui/settings_sections/general_section.json", + "sound_section/option_slider_3": "ui/settings_sections/general_section.json", + "sound_section/paddingBlockVolume": "ui/settings_sections/general_section.json", + "sound_section/option_slider_4": "ui/settings_sections/general_section.json", + "sound_section/paddingHostile": "ui/settings_sections/general_section.json", + "sound_section/option_slider_5": "ui/settings_sections/general_section.json", + "sound_section/paddingNeutralVolume": "ui/settings_sections/general_section.json", + "sound_section/option_slider_6": "ui/settings_sections/general_section.json", + "sound_section/paddingPlayervolume": "ui/settings_sections/general_section.json", + "sound_section/option_slider_7": "ui/settings_sections/general_section.json", + "sound_section/paddingRecordVolume": "ui/settings_sections/general_section.json", + "sound_section/option_slider_8": "ui/settings_sections/general_section.json", + "sound_section/paddingWeatherVolume": "ui/settings_sections/general_section.json", + "sound_section/option_slider_9": "ui/settings_sections/general_section.json", + "sound_section/paddingTTSVolume": "ui/settings_sections/general_section.json", + "sound_section/option_slider_10": "ui/settings_sections/general_section.json", + "sound_section/paddingResetVolumes": "ui/settings_sections/general_section.json", + "sound_section/reset_button": "ui/settings_sections/general_section.json", + "sound_section/paddingEndOfList": "ui/settings_sections/general_section.json", + "language_button": "ui/settings_sections/general_section.json", + "language_grid_item": "ui/settings_sections/general_section.json", + "language_section": "ui/settings_sections/general_section.json", + "language_section/language_list_grid": "ui/settings_sections/general_section.json", + "language_section_ore_ui": "ui/settings_sections/general_section.json", + "language_section_ore_ui/spacer_0": "ui/settings_sections/general_section.json", + "language_section_ore_ui/generic_label": "ui/settings_sections/general_section.json", + "language_section_ore_ui/spacer_1": "ui/settings_sections/general_section.json", + "language_section_ore_ui/gamepad_helper_label": "ui/settings_sections/general_section.json", + "preview_button": "ui/settings_sections/general_section.json", + "preview_section": "ui/settings_sections/general_section.json", + "preview_section/spacer_0": "ui/settings_sections/general_section.json", + "preview_section/generic_label": "ui/settings_sections/general_section.json", + "preview_section/preview_store_launch_app1_button": "ui/settings_sections/general_section.json", + "preview_section/preview_store_launch_app2_button": "ui/settings_sections/general_section.json", + "override_date_panel": "ui/settings_sections/general_section.json", + "override_date_panel/year_text_box": "ui/settings_sections/general_section.json", + "override_date_panel/year_month_slash": "ui/settings_sections/general_section.json", + "override_date_panel/month_text_box": "ui/settings_sections/general_section.json", + "override_date_panel/month_day_slash": "ui/settings_sections/general_section.json", + "override_date_panel/day_text_box": "ui/settings_sections/general_section.json", + "override_date_panel/day_hour_slash": "ui/settings_sections/general_section.json", + "override_date_panel/hour_text_box": "ui/settings_sections/general_section.json", + "override_date_panel/hour_minute_slash": "ui/settings_sections/general_section.json", + "override_date_panel/minute_text_box": "ui/settings_sections/general_section.json", + "timezonetype_dropdown_content": "ui/settings_sections/general_section.json", + "date_options_panel": "ui/settings_sections/general_section.json", + "date_options_panel/padding0": "ui/settings_sections/general_section.json", + "date_options_panel/display_override_datetime_option_toggle": "ui/settings_sections/general_section.json", + "date_options_panel/option_toggle_date_override": "ui/settings_sections/general_section.json", + "date_options_panel/override_date_options_panel": "ui/settings_sections/general_section.json", + "override_date_options_panel": "ui/settings_sections/general_section.json", + "override_date_options_panel/override_date_options_background_panel": "ui/settings_sections/general_section.json", + "override_date_options_panel/override_date_options_background_panel/load_override_date_option_toggle": "ui/settings_sections/general_section.json", + "override_date_options_panel/override_date_options_background_panel/select_dropdown": "ui/settings_sections/general_section.json", + "override_date_options_panel/override_date_options_background_panel/override_date_panel": "ui/settings_sections/general_section.json", + "override_date_options_panel/override_date_options_background_panel/padding1": "ui/settings_sections/general_section.json", + "override_date_options_panel/override_date_options_background_panel/override_time_scale_option": "ui/settings_sections/general_section.json", + "override_date_options_panel/override_date_options_background_panel/reset_time_button": "ui/settings_sections/general_section.json", + "override_date_options_panel/override_date_options_background_panel/padding2": "ui/settings_sections/general_section.json", + "debug_display_logged_error_panel": "ui/settings_sections/general_section.json", + "debug_display_logged_error_panel/debug_display_logged_error_panel_background": "ui/settings_sections/general_section.json", + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_marketplace": "ui/settings_sections/general_section.json", + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_ui": "ui/settings_sections/general_section.json", + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_osi": "ui/settings_sections/general_section.json", + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_other": "ui/settings_sections/general_section.json", + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/spacer_0": "ui/settings_sections/general_section.json", + "xbox_sandbox_panel": "ui/settings_sections/general_section.json", + "xbox_sandbox_panel/padding0": "ui/settings_sections/general_section.json", + "xbox_sandbox_panel/display_override_xbox_sandbox_toggle_windows": "ui/settings_sections/general_section.json", + "xbox_sandbox_panel/display_override_xbox_sandbox_toggle": "ui/settings_sections/general_section.json", + "xbox_sandbox_panel/override_xbox_options_panel": "ui/settings_sections/general_section.json", + "override_xbox_options_panel": "ui/settings_sections/general_section.json", + "override_xbox_options_panel/override_xbox_options": "ui/settings_sections/general_section.json", + "override_xbox_options_panel/override_xbox_options/option_dropdown_xbox": "ui/settings_sections/general_section.json", + "override_version_options_panel": "ui/settings_sections/general_section.json", + "override_version_options_panel/override_version_panel": "ui/settings_sections/general_section.json", + "override_version_options_panel/override_version_button_panel": "ui/settings_sections/general_section.json", + "override_version_options_panel/override_version_button_panel/update_override_version_button": "ui/settings_sections/general_section.json", + "override_version_options_panel/override_date_panel_bottom_padding": "ui/settings_sections/general_section.json", + "override_version_panel": "ui/settings_sections/general_section.json", + "override_version_panel/major_version_text_box": "ui/settings_sections/general_section.json", + "override_version_panel/first_dot": "ui/settings_sections/general_section.json", + "override_version_panel/minor_version_text_box": "ui/settings_sections/general_section.json", + "override_version_panel/second_dot": "ui/settings_sections/general_section.json", + "override_version_panel/patch_version_text_box": "ui/settings_sections/general_section.json", + "dot_label": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/option_toggle_treatment_override": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/spacer_0": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/apply_treatments_button": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/text_edit_treatment": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel/add_button": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/reset_to_default": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/clear_treatments": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel/treatments_label": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1/progress_loading_spinner_1": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/treatment_grid": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel/treatments_label": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2/progress_loading_spinner_2": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/unused_treatment_grid": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/spacer_1": "ui/settings_sections/general_section.json", + "debug_override_configurations_panel": "ui/settings_sections/general_section.json", + "debug_override_configurations_panel/override_configurations_panel_background": "ui/settings_sections/general_section.json", + "debug_override_configurations_panel/override_configurations_panel_background/option_toggle_configuration_override": "ui/settings_sections/general_section.json", + "debug_override_configurations_panel/override_configurations_panel_background/spacer_0": "ui/settings_sections/general_section.json", + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel": "ui/settings_sections/general_section.json", + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel": "ui/settings_sections/general_section.json", + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/text_edit_configuration": "ui/settings_sections/general_section.json", + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel": "ui/settings_sections/general_section.json", + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel/add_button": "ui/settings_sections/general_section.json", + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel": "ui/settings_sections/general_section.json", + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/reset_to_default": "ui/settings_sections/general_section.json", + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/clear_configurations": "ui/settings_sections/general_section.json", + "debug_override_configurations_panel/override_configurations_panel_background/configuration_grid": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/option_toggle_realms_feature_override": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/spacer_0": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/text_edit_realms_features": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/add_button_panel": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/add_button_panel/add_button": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/reset_to_default": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/clear_realms_features": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel/realms_features_label": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/realms_features_grid": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel/realms_features_label": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_grid": "ui/settings_sections/general_section.json", + "configuration_grid_item": "ui/settings_sections/general_section.json", + "configuration_grid_item/configuration_id_panel": "ui/settings_sections/general_section.json", + "configuration_grid_item/configuration_id_panel/configuration_id": "ui/settings_sections/general_section.json", + "configuration_grid_item/remove_button": "ui/settings_sections/general_section.json", + "remove_configuration_icon": "ui/settings_sections/general_section.json", + "realms_feature_grid_item": "ui/settings_sections/general_section.json", + "realms_feature_grid_item/realms_feature_id_panel": "ui/settings_sections/general_section.json", + "realms_feature_grid_item/realms_feature_id_panel/realms_feature_id": "ui/settings_sections/general_section.json", + "realms_feature_grid_item/disable_button": "ui/settings_sections/general_section.json", + "disable_realms_feature_icon": "ui/settings_sections/general_section.json", + "unused_realms_feature_grid_item": "ui/settings_sections/general_section.json", + "unused_realms_feature_grid_item/unused_realms_feature_id_panel": "ui/settings_sections/general_section.json", + "unused_realms_feature_grid_item/unused_realms_feature_id_panel/unused_realms_feature_id": "ui/settings_sections/general_section.json", + "unused_realms_feature_grid_item/enable_button": "ui/settings_sections/general_section.json", + "enable_realms_feature_icon": "ui/settings_sections/general_section.json", + "treatment_grid_item": "ui/settings_sections/general_section.json", + "treatment_grid_item/treatment_id_panel": "ui/settings_sections/general_section.json", + "treatment_grid_item/treatment_id_panel/treatment_id": "ui/settings_sections/general_section.json", + "treatment_grid_item/remove_button": "ui/settings_sections/general_section.json", + "remove_treatment_icon": "ui/settings_sections/general_section.json", + "unused_treatment_grid_item": "ui/settings_sections/general_section.json", + "unused_treatment_grid_item/unused_treatment_id_panel": "ui/settings_sections/general_section.json", + "unused_treatment_grid_item/unused_treatment_id_panel/unused_treatment_id": "ui/settings_sections/general_section.json", + "unused_treatment_grid_item/add_button": "ui/settings_sections/general_section.json", + "add_treatment_icon": "ui/settings_sections/general_section.json", + "debug_select_windows_store_panel": "ui/settings_sections/general_section.json", + "debug_select_windows_store_panel/select_store_dropdown": "ui/settings_sections/general_section.json", + "debug_select_windows_store_panel/stores_label": "ui/settings_sections/general_section.json", + "debug_select_windows_store_panel/sandbox_label": "ui/settings_sections/general_section.json", + "windows_store_dropdown_content": "ui/settings_sections/general_section.json", + "mock_http_panel": "ui/settings_sections/general_section.json", + "mock_http_panel/display_mock_http_panel_toggle": "ui/settings_sections/general_section.json", + "mock_http_panel/mock_http_panel_content": "ui/settings_sections/general_section.json", + "mock_http_panel_content": "ui/settings_sections/general_section.json", + "mock_http_panel_content/mock_http_panel_background": "ui/settings_sections/general_section.json", + "mock_http_panel_content/mock_http_panel_background/add_mock_rules_button": "ui/settings_sections/general_section.json", + "mock_http_panel_content/mock_http_panel_background/remove_all_mock_rules_button": "ui/settings_sections/general_section.json", + "mock_http_panel_content/mock_http_panel_background/active_rules_label": "ui/settings_sections/general_section.json", + "mock_http_panel_content/mock_http_panel_background/rule_list": "ui/settings_sections/general_section.json", + "mock_http_panel_content/mock_http_panel_background/divider": "ui/settings_sections/general_section.json", + "mock_http_rule_list": "ui/settings_sections/general_section.json", + "mock_http_rule": "ui/settings_sections/general_section.json", + "mock_http_rule/rule_details_label": "ui/settings_sections/general_section.json", + "mock_http_rule/rule_spacer": "ui/settings_sections/general_section.json", + "automation_button": "ui/settings_sections/general_section.json", + "automation_section": "ui/settings_sections/general_section.json", + "automation_section/automation_tab_label": "ui/settings_sections/general_section.json", + "automation_section/padding": "ui/settings_sections/general_section.json", + "automation_section/automation_test_asset_sas_text_box": "ui/settings_sections/general_section.json", + "automation_section/automation_functional_test_tags_text_box": "ui/settings_sections/general_section.json", + "automation_section/automation_server_test_tags_text_box": "ui/settings_sections/general_section.json", + "automation_section/automation_unit_test_tags_text_box": "ui/settings_sections/general_section.json", + "automation_section/automation_broken_functional_test_tags_text_box": "ui/settings_sections/general_section.json", + "automation_section/automation_broken_server_test_tags_text_box": "ui/settings_sections/general_section.json", + "automation_section/automation_broken_unit_test_tags_text_box": "ui/settings_sections/general_section.json", + "automation_section/automation_repeat_count_text_box": "ui/settings_sections/general_section.json", + "automation_section/automation_soak_test_duration_minutes_text_box": "ui/settings_sections/general_section.json", + "automation_section/automation_repeat_failures_only_toggle": "ui/settings_sections/general_section.json", + "automation_section/automation_run_entire_server_test_group": "ui/settings_sections/general_section.json", + "automation_section/automation_testbuild_id_text_box": "ui/settings_sections/general_section.json", + "automation_section/automation_functional_test_block_input_toggle": "ui/settings_sections/general_section.json", + "automation_section/automation_server_test_assert_on_level_diff_toggle": "ui/settings_sections/general_section.json", + "discovery_debug_button": "ui/settings_sections/general_section.json", + "discovery_debug_section": "ui/settings_sections/general_section.json", + "discovery_debug_section/option_discovery_environment": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/option_toggle_discovery_override": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/spacer_0": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_name": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_type": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_branch": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_custom": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/reset_endpoint_override": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/apply_endpoint_override": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_1": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/active_service_overrides_label": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_2": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/reset_all_endpoint_overrides_button": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/discovery_overrides_do_not_save_label": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_3": "ui/settings_sections/general_section.json", + "debug_button": "ui/settings_sections/general_section.json", + "feature_toggle": "ui/settings_sections/general_section.json", + "debug_section": "ui/settings_sections/general_section.json", + "debug_section/options_for_qa_convenience": "ui/settings_sections/general_section.json", + "debug_section/options_for_qa_convenience_spacer": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_dev_console_button_0": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_assertions_debug_break": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_assertions_show_dialog": "ui/settings_sections/general_section.json", + "debug_section/option_dev_show_display_logged_error": "ui/settings_sections/general_section.json", + "debug_section/display_logged_error_panel": "ui/settings_sections/general_section.json", + "debug_section/option_dev_force_trial_mode": "ui/settings_sections/general_section.json", + "debug_section/option_dev_force_trial_mode_spacer": "ui/settings_sections/general_section.json", + "debug_section/debug_overlay_pages_label": "ui/settings_sections/general_section.json", + "debug_section/debug_overlay_button_panel": "ui/settings_sections/general_section.json", + "debug_section/debug_overlay_button_panel/debug_overlay_previous_button": "ui/settings_sections/general_section.json", + "debug_section/debug_overlay_button_panel/debug_overlay_next_button": "ui/settings_sections/general_section.json", + "debug_section/pre_feature_toggles_label_spacer": "ui/settings_sections/general_section.json", + "debug_section/feature_toggles_label": "ui/settings_sections/general_section.json", + "debug_section/feature_toggles_label_spacer": "ui/settings_sections/general_section.json", + "debug_section/feature_toggles": "ui/settings_sections/general_section.json", + "debug_section/end_of_feature_toggles_label_spacer": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_dev_disable_lan_signaling": "ui/settings_sections/general_section.json", + "debug_section/option_dropdown_nethernet_logging_verbosity": "ui/settings_sections/general_section.json", + "debug_section/option_dropdown_http_logging_verbosity": "ui/settings_sections/general_section.json", + "debug_section/option_dropdown_xsapi_logging_verbosity": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_remote_imgui": "ui/settings_sections/general_section.json", + "debug_section/option_dropdown_0": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_extra_debug_hud_info": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_0_1": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_0_2": "ui/settings_sections/general_section.json", + "debug_section/option_slider_0": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_3": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_4": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_5": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_6": "ui/settings_sections/general_section.json", + "debug_section/option_dropdown_server_chunk_map": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_9": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_disable_render_terrain": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_disable_render_entities": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_disable_render_blockentities": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_disable_render_particles": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_disable_render_sky": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_disable_render_weather": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_disable_render_hud": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_disable_render_item_in_hand": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_disable_render_main_menu_cubemap": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_disable_render_main_menu_paperdoll_animation": "ui/settings_sections/general_section.json", + "debug_section/leak_memory": "ui/settings_sections/general_section.json", + "debug_section/log_area": "ui/settings_sections/general_section.json", + "debug_section/log_priority": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_build_info": "ui/settings_sections/general_section.json", + "debug_section/option_perf_turtle": "ui/settings_sections/general_section.json", + "debug_section/option_default_profiling_option": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_7": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_8": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_game_tip": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_10": "ui/settings_sections/general_section.json", + "debug_section/dev_disable_client_blob_cache_toggle": "ui/settings_sections/general_section.json", + "debug_section/dev_force_client_blob_cache_toggle": "ui/settings_sections/general_section.json", + "debug_section/devquality_dropdown": "ui/settings_sections/general_section.json", + "debug_section/dev_add_http_delay_seconds": "ui/settings_sections/general_section.json", + "debug_section/dev_show_latency_graph_toggle": "ui/settings_sections/general_section.json", + "debug_section/xbox_sandbox_panel": "ui/settings_sections/general_section.json", + "debug_section/multithreaded_rendering_toggle": "ui/settings_sections/general_section.json", + "debug_section/filewatcher_rendering_toggle": "ui/settings_sections/general_section.json", + "debug_section/enable_texture_hot_reloader_toggle": "ui/settings_sections/general_section.json", + "debug_section/mock_http_panel": "ui/settings_sections/general_section.json", + "debug_section/vsync_dropdown": "ui/settings_sections/general_section.json", + "debug_section/sunsetting_use_overrides_toggle": "ui/settings_sections/general_section.json", + "debug_section/padding_sunsetting": "ui/settings_sections/general_section.json", + "debug_section/sunseting_state_toggle": "ui/settings_sections/general_section.json", + "debug_section/sunsetting_tier_dropdown": "ui/settings_sections/general_section.json", + "debug_section/padding_sunsetting_2": "ui/settings_sections/general_section.json", + "debug_section/padding1": "ui/settings_sections/general_section.json", + "debug_section/copy_internal_settings_folder_to_external": "ui/settings_sections/general_section.json", + "debug_section/padding_reset_day_one": "ui/settings_sections/general_section.json", + "debug_section/reset_new_player_flow": "ui/settings_sections/general_section.json", + "debug_section/reset_day_one_experience": "ui/settings_sections/general_section.json", + "debug_section/option_text_edit_1": "ui/settings_sections/general_section.json", + "debug_section/option_text_edit_2": "ui/settings_sections/general_section.json", + "debug_section/option_text_edit_3": "ui/settings_sections/general_section.json", + "debug_section/reset_report_timer_option": "ui/settings_sections/general_section.json", + "debug_section/reset_online_safety_option": "ui/settings_sections/general_section.json", + "debug_section/reset_ip_safety_option": "ui/settings_sections/general_section.json", + "debug_section/padding_graphics_options": "ui/settings_sections/general_section.json", + "debug_section/option_shadersdk_service_ip": "ui/settings_sections/general_section.json", + "debug_section/option_shadersdk_service_port": "ui/settings_sections/general_section.json", + "debug_section/option_shadersdk_target_port": "ui/settings_sections/general_section.json", + "debug_section/padding_graphics_buttons": "ui/settings_sections/general_section.json", + "debug_section/trigger_graphics_device_loss": "ui/settings_sections/general_section.json", + "debug_section/allocate_texture_handles": "ui/settings_sections/general_section.json", + "debug_section/padding_deferred_debug": "ui/settings_sections/general_section.json", + "debug_section/deferred_platform_override": "ui/settings_sections/general_section.json", + "realms_debug_button": "ui/settings_sections/general_section.json", + "realms_debug_section": "ui/settings_sections/general_section.json", + "realms_debug_section/realms_menu_title": "ui/settings_sections/general_section.json", + "realms_debug_section/realms_title_spacer": "ui/settings_sections/general_section.json", + "realms_debug_section/feature_toggles_label": "ui/settings_sections/general_section.json", + "realms_debug_section/feature_toggles_label_spacer": "ui/settings_sections/general_section.json", + "realms_debug_section/feature_toggles": "ui/settings_sections/general_section.json", + "realms_debug_section/end_of_feature_toggles_label_spacer": "ui/settings_sections/general_section.json", + "realms_debug_section/realms_dev_toggles_title": "ui/settings_sections/general_section.json", + "realms_debug_section/realms_dev_toggle_spacer": "ui/settings_sections/general_section.json", + "realms_debug_section/realms_without_purchase_toggle": "ui/settings_sections/general_section.json", + "realms_debug_section/realms_debug_options_title": "ui/settings_sections/general_section.json", + "realms_debug_section/realms_debug_options_spacer": "ui/settings_sections/general_section.json", + "realms_debug_section/option_dropdown_1": "ui/settings_sections/general_section.json", + "realms_debug_section/option_dropdown_2": "ui/settings_sections/general_section.json", + "realms_debug_section/option_text_edit_0": "ui/settings_sections/general_section.json", + "realms_debug_section/realms_features_override_panel": "ui/settings_sections/general_section.json", + "realms_debug_section/realms_features_override_panel/option_toggle_realms_features_override": "ui/settings_sections/general_section.json", + "realms_debug_section/realms_features_override_panel/override_realms_features_panel": "ui/settings_sections/general_section.json", + "realms_debug_section/realms_debug_options_spacer_2": "ui/settings_sections/general_section.json", + "realms_feature_toggle": "ui/settings_sections/general_section.json", + "marketplace_debug_button": "ui/settings_sections/general_section.json", + "marketplace_debug_section": "ui/settings_sections/general_section.json", + "marketplace_debug_section/marketplace_feature_toggles_label": "ui/settings_sections/general_section.json", + "marketplace_debug_section/marketplace_feature_toggles_label_spacer": "ui/settings_sections/general_section.json", + "marketplace_debug_section/marketplace_feature_toggles": "ui/settings_sections/general_section.json", + "marketplace_debug_section/playfab_token_refresh_threshold": "ui/settings_sections/general_section.json", + "marketplace_debug_section/option_dropdown_skin_rotation_speed": "ui/settings_sections/general_section.json", + "marketplace_debug_section/option_toggle_all_skins_rotate": "ui/settings_sections/general_section.json", + "marketplace_debug_section/option_toggle_display_marketplace_document_id": "ui/settings_sections/general_section.json", + "marketplace_debug_section/option_toggle_display_platform_offer_check": "ui/settings_sections/general_section.json", + "marketplace_debug_section/version_options_panel": "ui/settings_sections/general_section.json", + "marketplace_debug_section/version_options_panel/option_version_override": "ui/settings_sections/general_section.json", + "marketplace_debug_section/version_options_panel/override_version_options_panel": "ui/settings_sections/general_section.json", + "marketplace_debug_section/select_windows_store_panel": "ui/settings_sections/general_section.json", + "marketplace_debug_section/date_options_panel": "ui/settings_sections/general_section.json", + "marketplace_debug_section/option_clear_store_cache_button": "ui/settings_sections/general_section.json", + "marketplace_debug_section/option_clear_all_cache_button": "ui/settings_sections/general_section.json", + "marketplace_debug_section/option_delete_all_personas_button": "ui/settings_sections/general_section.json", + "marketplace_debug_section/option_delete_legacy_personas_button": "ui/settings_sections/general_section.json", + "marketplace_debug_section/padding2": "ui/settings_sections/general_section.json", + "marketplace_debug_section/enable_coin_debug_switch_toggle": "ui/settings_sections/general_section.json", + "marketplace_debug_section/add_500_coins": "ui/settings_sections/general_section.json", + "marketplace_debug_section/add_100000_coins": "ui/settings_sections/general_section.json", + "marketplace_debug_section/padding3": "ui/settings_sections/general_section.json", + "marketplace_debug_section/reset_entitlements": "ui/settings_sections/general_section.json", + "marketplace_debug_section/reset_wallet": "ui/settings_sections/general_section.json", + "marketplace_feature_toggle": "ui/settings_sections/general_section.json", + "gatherings_debug_button": "ui/settings_sections/general_section.json", + "gatherings_debug_section": "ui/settings_sections/general_section.json", + "gatherings_debug_section/refresh_gatherings_button": "ui/settings_sections/general_section.json", + "gatherings_debug_section/spacer_1": "ui/settings_sections/general_section.json", + "gatherings_debug_section/clear_system_service_pack_cache_button": "ui/settings_sections/general_section.json", + "gatherings_debug_section/spacer_2": "ui/settings_sections/general_section.json", + "gatherings_debug_section/active_gathering_label": "ui/settings_sections/general_section.json", + "gatherings_debug_section/spacer_3": "ui/settings_sections/general_section.json", + "gatherings_debug_section/text_edit_filter_gatherings": "ui/settings_sections/general_section.json", + "gatherings_debug_section/spacer_4": "ui/settings_sections/general_section.json", + "gatherings_debug_section/available_gatherings_section": "ui/settings_sections/general_section.json", + "gathering_grid_item_content": "ui/settings_sections/general_section.json", + "gathering_grid_item_content/gathering_name": "ui/settings_sections/general_section.json", + "gathering_grid_item_content/gathering_uuid": "ui/settings_sections/general_section.json", + "gathering_item_template": "ui/settings_sections/general_section.json", + "gathering_item_template/gathering_item_button": "ui/settings_sections/general_section.json", + "available_gatherings_grid": "ui/settings_sections/general_section.json", + "available_gatherings_panel": "ui/settings_sections/general_section.json", + "available_gatherings_panel/available_label": "ui/settings_sections/general_section.json", + "available_gatherings_panel/gatherings_grid": "ui/settings_sections/general_section.json", + "available_gatherings_panel/spacing_gap": "ui/settings_sections/general_section.json", + "available_gatherings_section": "ui/settings_sections/general_section.json", + "available_gatherings_section/available_gatherings_panel": "ui/settings_sections/general_section.json", + "ui_debug_button": "ui/settings_sections/general_section.json", + "ui_feature_toggle": "ui/settings_sections/general_section.json", + "edu_debug_button": "ui/settings_sections/general_section.json", + "edu_feature_toggle": "ui/settings_sections/general_section.json", + "new_create_world_grid_item": "ui/settings_sections/general_section.json", + "new_edu_create_world_screen_grid_item": "ui/settings_sections/general_section.json", + "new_play_screen_grid_item": "ui/settings_sections/general_section.json", + "new_edit_world_screen_grid_item": "ui/settings_sections/general_section.json", + "new_player_permissions_screen_grid_item": "ui/settings_sections/general_section.json", + "new_send_invites_screen_grid_item": "ui/settings_sections/general_section.json", + "new_death_grid_item": "ui/settings_sections/general_section.json", + "new_bed_grid_item": "ui/settings_sections/general_section.json", + "ore_ui_gameplay_ui_grid_item": "ui/settings_sections/general_section.json", + "new_settings_screen_grid_item": "ui/settings_sections/general_section.json", + "ui_debug_section": "ui/settings_sections/general_section.json", + "ui_debug_section/ui_feature_toggles_label": "ui/settings_sections/general_section.json", + "ui_debug_section/ui_feature_toggles_info_label": "ui/settings_sections/general_section.json", + "ui_debug_section/ui_feature_toggles_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/ui_feature_toggles": "ui/settings_sections/general_section.json", + "ui_debug_section/end_of_ui_feature_toggles_label_divider": "ui/settings_sections/general_section.json", + "ui_debug_section/end_of_ui_feature_toggles_label_divider/section_divider": "ui/settings_sections/general_section.json", + "ui_debug_section/end_of_ui_feature_toggles_label_divider_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/end_of_ui_feature_toggles_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/screen_override_label": "ui/settings_sections/general_section.json", + "ui_debug_section/screen_override_info_label": "ui/settings_sections/general_section.json", + "ui_debug_section/screen_override_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_edu_create_world_screen_radio_label": "ui/settings_sections/general_section.json", + "ui_debug_section/new_edu_create_world_screen_radio_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_edu_create_world_screen_radio_button": "ui/settings_sections/general_section.json", + "ui_debug_section/new_edu_create_world_screen_radio_button_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_play_screen_radio_label": "ui/settings_sections/general_section.json", + "ui_debug_section/new_play_screen_radio_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_play_screen_radio_button": "ui/settings_sections/general_section.json", + "ui_debug_section/new_play_screen_radio_button_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_edit_world_screen_radio_label": "ui/settings_sections/general_section.json", + "ui_debug_section/new_edit_world_screen_radio_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_edit_world_screen_radio_button": "ui/settings_sections/general_section.json", + "ui_debug_section/new_edit_world_screen_radio_button_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_send_invites_radio_label": "ui/settings_sections/general_section.json", + "ui_debug_section/new_send_invites_screen_radio_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_send_invites_screen_radio_button": "ui/settings_sections/general_section.json", + "ui_debug_section/new_send_invites_screen_radio_button_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_death_screen_radio_label": "ui/settings_sections/general_section.json", + "ui_debug_section/new_death_screen_radio_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_death_screen_radio_button": "ui/settings_sections/general_section.json", + "ui_debug_section/new_death_screen_radio_button_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_bed_screen_radio_label": "ui/settings_sections/general_section.json", + "ui_debug_section/new_bed_screen_radio_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_bed_screen_radio_button": "ui/settings_sections/general_section.json", + "ui_debug_section/new_bed_screen_radio_button_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/ore_ui_gameplay_ui_radio_label": "ui/settings_sections/general_section.json", + "ui_debug_section/ore_ui_gameplay_ui_radio_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/ore_ui_gameplay_ui_radio_button": "ui/settings_sections/general_section.json", + "ui_debug_section/ore_ui_gameplay_ui_radio_button_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/end_of_ui_screen_override_divider": "ui/settings_sections/general_section.json", + "ui_debug_section/end_of_ui_screen_override_divider/section_divider": "ui/settings_sections/general_section.json", + "ui_debug_section/end_of_ui_sceen_override_divider_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_settings_screen_radio_label": "ui/settings_sections/general_section.json", + "ui_debug_section/new_settings_screen_radio_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_settings_screen_radio_button": "ui/settings_sections/general_section.json", + "ui_debug_section/new_settings_screen_radio_button_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/screen_opt_in_options_label": "ui/settings_sections/general_section.json", + "ui_debug_section/screen_opt_in_info_label": "ui/settings_sections/general_section.json", + "ui_debug_section/screen_opt_in_options_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/end_of_ui_screen_opt_in_divider": "ui/settings_sections/general_section.json", + "ui_debug_section/end_of_ui_screen_opt_in_divider/section_divider": "ui/settings_sections/general_section.json", + "ui_debug_section/end_of_ui_sceen_opt_in_divider_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/other_ui_options_label": "ui/settings_sections/general_section.json", + "ui_debug_section/other_ui_options_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/option_toggle_default_font_override": "ui/settings_sections/general_section.json", + "ui_debug_section/option_toggle_dev_show_tcui_replacement": "ui/settings_sections/general_section.json", + "ui_debug_section/option_toggle_use_mobile_data_blocked_modal": "ui/settings_sections/general_section.json", + "ui_debug_section/ui_feature_toggles_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/option_show_touch_control_selection_screen": "ui/settings_sections/general_section.json", + "ui_debug_section/option_reset_on_start": "ui/settings_sections/general_section.json", + "ui_debug_section/option_slider_drag_dwell": "ui/settings_sections/general_section.json", + "ui_debug_section/option_slider_stack_splitting": "ui/settings_sections/general_section.json", + "ui_debug_section/reset_render_distance_warning_modal_label": "ui/settings_sections/general_section.json", + "ui_debug_section/reset_render_distance_warning_modal_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/reset_render_distance_warning_modal": "ui/settings_sections/general_section.json", + "ui_debug_section/reset_render_distance_warning_modal_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/ore_ui_developer_pages_divider": "ui/settings_sections/general_section.json", + "ui_debug_section/ore_ui_developer_pages_divider/section_divider": "ui/settings_sections/general_section.json", + "ui_debug_section/ore_ui_developer_pages_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/open_ore_ui_label": "ui/settings_sections/general_section.json", + "ui_debug_section/open_ore_ui_info_label": "ui/settings_sections/general_section.json", + "ui_debug_section/open_ore_ui_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/open_ore_ui_docs": "ui/settings_sections/general_section.json", + "ui_debug_section/open_ore_ui_tests": "ui/settings_sections/general_section.json", + "ui_debug_section/open_ore_ui_perf": "ui/settings_sections/general_section.json", + "ui_debug_section/open_ore_ui_test_modal": "ui/settings_sections/general_section.json", + "ui_debug_section/open_ore_ui_tests_spacer": "ui/settings_sections/general_section.json", + "edu_debug_section": "ui/settings_sections/general_section.json", + "edu_debug_section/edu_feature_toggles_label": "ui/settings_sections/general_section.json", + "edu_debug_section/edu_feature_toggles_label_spacer": "ui/settings_sections/general_section.json", + "edu_debug_section/edu_demo": "ui/settings_sections/general_section.json", + "edu_debug_section/edu_ad_debug_panel": "ui/settings_sections/general_section.json", + "edu_debug_section/edu_ad_token_refresh_threshold": "ui/settings_sections/general_section.json", + "edu_debug_section/edu_ad_max_signin_token_refresh": "ui/settings_sections/general_section.json", + "edu_debug_section/edu_ad_max_graph_token_refresh": "ui/settings_sections/general_section.json", + "edu_debug_section/edu_environment_divider": "ui/settings_sections/general_section.json", + "edu_debug_section/edu_environment_divider/section_divider": "ui/settings_sections/general_section.json", + "edu_debug_section/edu_environment_spacer": "ui/settings_sections/general_section.json", + "edu_debug_section/edu_env_dropdown": "ui/settings_sections/general_section.json", + "flighting_debug_button": "ui/settings_sections/general_section.json", + "flighting_debug_section": "ui/settings_sections/general_section.json", + "flighting_debug_section/treatment_override_panel": "ui/settings_sections/general_section.json", + "flighting_debug_section/treatment_override_panel/option_toggle_treatment_override": "ui/settings_sections/general_section.json", + "flighting_debug_section/treatment_override_panel/override_treatments_panel": "ui/settings_sections/general_section.json", + "flighting_debug_section/configuration_override_panel": "ui/settings_sections/general_section.json", + "flighting_debug_section/configuration_override_panel/option_toggle_configuration_override": "ui/settings_sections/general_section.json", + "flighting_debug_section/configuration_override_panel/override_configurations_panel": "ui/settings_sections/general_section.json", + "how_to_play_button": "ui/settings_sections/general_section.json", + "how_to_play_section": "ui/settings_sections/general_section.json", + "how_to_play_section/spacer_0": "ui/settings_sections/general_section.json", + "how_to_play_section/generic_label": "ui/settings_sections/general_section.json", + "how_to_play_section/spacer_1": "ui/settings_sections/general_section.json", + "how_to_play_section/gamepad_helper_label": "ui/settings_sections/general_section.json", + "dev_xbox_environment_dropdown_content": "ui/settings_sections/general_section.json", + "dev_discovery_environment_dropdown_content": "ui/settings_sections/general_section.json", + "dev_service_override_type_dropdown_content": "ui/settings_sections/general_section.json", + "dev_realms_environment_dropdown_content": "ui/settings_sections/general_section.json", + "dev_realms_sku_dropdown_content": "ui/settings_sections/general_section.json", + "default_profiling_group_dropdown_content": "ui/settings_sections/general_section.json", + "dev_nethernet_logging_verbosity_dropdown_content": "ui/settings_sections/general_section.json", + "dev_http_logging_verbosity_dropdown_content": "ui/settings_sections/general_section.json", + "dev_xsapi_logging_verbosity_dropdown_content": "ui/settings_sections/general_section.json", + "dev_debug_speed_multiplier_options": "ui/settings_sections/general_section.json", + "dev_debug_hud_dropdown_content": "ui/settings_sections/general_section.json", + "dev_chunkMapMode_content": "ui/settings_sections/general_section.json", + "dev_quality_dropdown_content": "ui/settings_sections/general_section.json", + "vysnc_dropdown_content": "ui/settings_sections/general_section.json", + "deferred_platform_override_dropdown_content": "ui/settings_sections/general_section.json", + "dev_education_environment_dropdown_content": "ui/settings_sections/general_section.json", + "dev_sunsetting_tier_dropdown_content": "ui/settings_sections/general_section.json", + "graphics_api_dropdown_content": "ui/settings_sections/general_section.json", + "graphics_mode_dropdown_content": "ui/settings_sections/general_section.json", + "upscaling_mode_dropdown_content": "ui/settings_sections/general_section.json", + "advanced_graphics_options_button_content": "ui/settings_sections/general_section.json", + "advanced_graphics_options_button_content/advanced_graphics_options_label": "ui/settings_sections/general_section.json", + "advanced_graphics_options_button_content/fill_pad": "ui/settings_sections/general_section.json", + "advanced_graphics_options_button_content/plus_panel": "ui/settings_sections/general_section.json", + "advanced_graphics_options_button_content/plus_panel/plus": "ui/settings_sections/general_section.json", + "advanced_graphics_options_button_content/minus_panel": "ui/settings_sections/general_section.json", + "advanced_graphics_options_button_content/minus_panel/minus": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_0": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/gamma_calibration": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_1": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/max_framerate_slider": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_2": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/msaa_slider": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_3": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/shadow_quality_slider": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_4": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/point_light_shadow_quality_slider": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_5": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/point_light_loding_quality_slider": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_6": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/cloud_quality_slider": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_7": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/volumetric_fog_quality_slider": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_8": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/reflections_quality_slider": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_9": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/bloom_strength": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_10": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/upscaling_toggle": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_11": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/upscaling_mode": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_12": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/upscaling_percentage": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/fancy_clouds_toggle": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_13": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/smooth_lighting_toggle": "ui/settings_sections/general_section.json", + }, + "realms_world_section": { + "realm_name_edit": "ui/settings_sections/realms_world_section.json", + "world_name_edit": "ui/settings_sections/realms_world_section.json", + "realm_description_edit": "ui/settings_sections/realms_world_section.json", + "download_world_button": "ui/settings_sections/realms_world_section.json", + "upload_world_button": "ui/settings_sections/realms_world_section.json", + "reset_world_button": "ui/settings_sections/realms_world_section.json", + "manage_feed_button": "ui/settings_sections/realms_world_section.json", + "club_info_label": "ui/settings_sections/realms_world_section.json", + "difficulty_dropdown": "ui/settings_sections/realms_world_section.json", + "game_mode_dropdown": "ui/settings_sections/realms_world_section.json", + "panel_content": "ui/settings_sections/realms_world_section.json", + "panel_content/new_edit_world_opt_in_panel": "ui/settings_sections/realms_world_section.json", + "panel_content/new_edit_world_opt_in_panel/panel_title": "ui/settings_sections/realms_world_section.json", + "panel_content/new_edit_world_opt_in_panel/panel_text": "ui/settings_sections/realms_world_section.json", + "panel_content/new_edit_world_opt_in_panel/opt_in_button": "ui/settings_sections/realms_world_section.json", + "panel_content/new_edit_world_opt_in_divider": "ui/settings_sections/realms_world_section.json", + "panel_content/new_edit_world_opt_in_divider/section_divider": "ui/settings_sections/realms_world_section.json", + "panel_content/option_info_label": "ui/settings_sections/realms_world_section.json", + "panel_content/hardcore_info_label": "ui/settings_sections/realms_world_section.json", + "panel_content/realm_name_edit": "ui/settings_sections/realms_world_section.json", + "panel_content/world_name_edit": "ui/settings_sections/realms_world_section.json", + "panel_content/realm_description_edit": "ui/settings_sections/realms_world_section.json", + "panel_content/difficulty_dropdown": "ui/settings_sections/realms_world_section.json", + "panel_content/game_mode_dropdown": "ui/settings_sections/realms_world_section.json", + "panel_content/is_hardcore_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/world_options_label": "ui/settings_sections/realms_world_section.json", + "panel_content/pvp_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/show_coordinates_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/locator_bar_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/show_days_played_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/fire_spreads_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/recipes_unlock_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/tnt_explodes_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/respawn_blocks_explode_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/mob_loot_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/natural_regeneration_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/tile_drops_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/player_sleep_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/player_sleep_percentage_slider": "ui/settings_sections/realms_world_section.json", + "panel_content/immediate_respawn_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/respawn_radius": "ui/settings_sections/realms_world_section.json", + "panel_content/world_cheats_label": "ui/settings_sections/realms_world_section.json", + "panel_content/allow_cheats_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/daylight_cycle_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/keep_inventory_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/mob_spawn_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/mob_griefing_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/entities_drop_loot_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/weather_cycle_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/command_blocks_enabled_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/random_tick_speed": "ui/settings_sections/realms_world_section.json", + "panel_content/download_world_button": "ui/settings_sections/realms_world_section.json", + "panel_content/padding_0": "ui/settings_sections/realms_world_section.json", + "panel_content/upload_world_button": "ui/settings_sections/realms_world_section.json", + "panel_content/padding_1": "ui/settings_sections/realms_world_section.json", + "panel_content/reset_world_button": "ui/settings_sections/realms_world_section.json", + "panel_content/padding_2": "ui/settings_sections/realms_world_section.json", + "panel_content/club_info_label": "ui/settings_sections/realms_world_section.json", + "panel_content/manage_feed_button": "ui/settings_sections/realms_world_section.json", + }, + "settings_common": { + "arrow_image": "ui/settings_sections/settings_common.json", + "subsection_title": "ui/settings_sections/settings_common.json", + "subsection_title/spacer_0": "ui/settings_sections/settings_common.json", + "subsection_title/sizer_0": "ui/settings_sections/settings_common.json", + "subsection_title/sizer_0/title": "ui/settings_sections/settings_common.json", + "subsection_title/spacer_1": "ui/settings_sections/settings_common.json", + "subsection_title/sizer_1": "ui/settings_sections/settings_common.json", + "subsection_title/sizer_1/section_divider": "ui/settings_sections/settings_common.json", + "action_button": "ui/settings_sections/settings_common.json", + "action_button_dark_text": "ui/settings_sections/settings_common.json", + "link_button": "ui/settings_sections/settings_common.json", + "option_group_label": "ui/settings_sections/settings_common.json", + "option_group_label/text": "ui/settings_sections/settings_common.json", + "option_group_header": "ui/settings_sections/settings_common.json", + "option_group_header/text": "ui/settings_sections/settings_common.json", + "option_group_spaced_label": "ui/settings_sections/settings_common.json", + "option_group_spaced_label/text": "ui/settings_sections/settings_common.json", + "option_group_spaced_header": "ui/settings_sections/settings_common.json", + "option_group_spaced_header/text": "ui/settings_sections/settings_common.json", + "option_group_section_divider": "ui/settings_sections/settings_common.json", + "option_group_section_divider/background": "ui/settings_sections/settings_common.json", + "option_generic": "ui/settings_sections/settings_common.json", + "option_generic/option_generic_core": "ui/settings_sections/settings_common.json", + "white_label": "ui/settings_sections/settings_common.json", + "option_generic_core": "ui/settings_sections/settings_common.json", + "option_generic_core/two_line_layout": "ui/settings_sections/settings_common.json", + "option_generic_core/two_line_layout/option_label_panel": "ui/settings_sections/settings_common.json", + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01": "ui/settings_sections/settings_common.json", + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01/option_label": "ui/settings_sections/settings_common.json", + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02": "ui/settings_sections/settings_common.json", + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02/option_label": "ui/settings_sections/settings_common.json", + "option_generic_core/two_line_layout/option_label_panel/option_tooltip": "ui/settings_sections/settings_common.json", + "option_generic_core/two_line_layout/spacer": "ui/settings_sections/settings_common.json", + "option_generic_core/two_line_layout/option_descriptive_text_0": "ui/settings_sections/settings_common.json", + "option_generic_core/two_line_layout/spacer2": "ui/settings_sections/settings_common.json", + "option_generic_core/one_line_layout": "ui/settings_sections/settings_common.json", + "option_generic_core/one_line_layout/option_label_subpanel_01": "ui/settings_sections/settings_common.json", + "option_generic_core/one_line_layout/option_label_subpanel_01/option_label": "ui/settings_sections/settings_common.json", + "option_generic_core/one_line_layout/option_label_subpanel_02": "ui/settings_sections/settings_common.json", + "option_generic_core/one_line_layout/option_label_subpanel_02/option_label": "ui/settings_sections/settings_common.json", + "option_generic_core/one_line_layout/option_descriptive_text": "ui/settings_sections/settings_common.json", + "option_generic_core/one_line_layout/option_tooltip": "ui/settings_sections/settings_common.json", + "option_generic_core/spacer": "ui/settings_sections/settings_common.json", + "option_generic_core_label": "ui/settings_sections/settings_common.json", + "option_generic_tooltip_image": "ui/settings_sections/settings_common.json", + "option_generic_tooltip_top_popup": "ui/settings_sections/settings_common.json", + "option_generic_tooltip_bottom_popup": "ui/settings_sections/settings_common.json", + "option_generic_tooltip": "ui/settings_sections/settings_common.json", + "option_generic_tooltip/focus_detection_input_panel_two_line_layout": "ui/settings_sections/settings_common.json", + "option_generic_tooltip/hover_detection_input_panel": "ui/settings_sections/settings_common.json", + "option_generic_tooltip/hover_detection_input_panel/option_generic_tooltip_image": "ui/settings_sections/settings_common.json", + "option_generic_tooltip/option_generic_tooltip_top_popup": "ui/settings_sections/settings_common.json", + "option_generic_tooltip/option_generic_tooltip_bottom_popup": "ui/settings_sections/settings_common.json", + "option_text_edit_control": "ui/settings_sections/settings_common.json", + "option_text_edit_control_with_button": "ui/settings_sections/settings_common.json", + "option_text_edit_control_with_button/text_box": "ui/settings_sections/settings_common.json", + "option_text_edit_control_with_button/button": "ui/settings_sections/settings_common.json", + "option_text_edit_control_with_text_button": "ui/settings_sections/settings_common.json", + "option_text_edit_control_with_text_button/text_box": "ui/settings_sections/settings_common.json", + "option_text_edit_control_with_text_button/button": "ui/settings_sections/settings_common.json", + "option_toggle_state_template": "ui/settings_sections/settings_common.json", + "option_toggle_on": "ui/settings_sections/settings_common.json", + "option_toggle_off": "ui/settings_sections/settings_common.json", + "option_toggle_on_hover": "ui/settings_sections/settings_common.json", + "option_toggle_off_hover": "ui/settings_sections/settings_common.json", + "option_toggle_on_locked": "ui/settings_sections/settings_common.json", + "option_toggle_off_locked": "ui/settings_sections/settings_common.json", + "option_toggle_control": "ui/settings_sections/settings_common.json", + "checkbox_visuals_unchecked": "ui/settings_sections/settings_common.json", + "checkbox_visuals_checked": "ui/settings_sections/settings_common.json", + "checkbox_visuals_unchecked_locked": "ui/settings_sections/settings_common.json", + "checkbox_visuals_checked_locked": "ui/settings_sections/settings_common.json", + "checkbox_visuals_unchecked_hover": "ui/settings_sections/settings_common.json", + "checkbox_visuals_checked_hover": "ui/settings_sections/settings_common.json", + "checkbox_visuals": "ui/settings_sections/settings_common.json", + "checkbox_visuals/checkbox_image": "ui/settings_sections/settings_common.json", + "checkbox_visuals/checkbox_label": "ui/settings_sections/settings_common.json", + "checkbox_visuals/accessibility_selection_highlight": "ui/settings_sections/settings_common.json", + "checkbox_with_highlight_and_label": "ui/settings_sections/settings_common.json", + "radio_visuals_unchecked": "ui/settings_sections/settings_common.json", + "radio_visuals_checked": "ui/settings_sections/settings_common.json", + "radio_visuals_unchecked_locked": "ui/settings_sections/settings_common.json", + "radio_visuals_checked_locked": "ui/settings_sections/settings_common.json", + "radio_visuals_unchecked_hover": "ui/settings_sections/settings_common.json", + "radio_visuals_checked_hover": "ui/settings_sections/settings_common.json", + "radio_visuals": "ui/settings_sections/settings_common.json", + "radio_visuals/radio_image": "ui/settings_sections/settings_common.json", + "radio_visuals/radio_label": "ui/settings_sections/settings_common.json", + "radio_visuals/accessibility_selection_highlight": "ui/settings_sections/settings_common.json", + "radio_with_label_core": "ui/settings_sections/settings_common.json", + "option_radio_group_control": "ui/settings_sections/settings_common.json", + "option_radio_group_control/0": "ui/settings_sections/settings_common.json", + "radio_with_label": "ui/settings_sections/settings_common.json", + "radio_with_label/radio_with_label_core": "ui/settings_sections/settings_common.json", + "radio_with_label_and_icon": "ui/settings_sections/settings_common.json", + "radio_with_label_and_icon/radio_with_label_core": "ui/settings_sections/settings_common.json", + "radio_with_label_and_icon/radio_with_label_icon": "ui/settings_sections/settings_common.json", + "radio_with_label_and_content_unchecked": "ui/settings_sections/settings_common.json", + "radio_with_label_and_content_checked": "ui/settings_sections/settings_common.json", + "radio_with_label_and_content_unchecked_locked": "ui/settings_sections/settings_common.json", + "radio_with_label_and_content_checked_locked": "ui/settings_sections/settings_common.json", + "radio_with_label_and_content_unchecked_hover": "ui/settings_sections/settings_common.json", + "radio_with_label_and_content_checked_hover": "ui/settings_sections/settings_common.json", + "radio_with_label_and_content_stack_item": "ui/settings_sections/settings_common.json", + "radio_with_label_and_content": "ui/settings_sections/settings_common.json", + "radio_with_label_and_content/radio_background": "ui/settings_sections/settings_common.json", + "radio_with_label_and_content/radio_item_with_description_stack": "ui/settings_sections/settings_common.json", + "radio_with_label_and_content/radio_item_with_description_stack/radio_icon_and_label": "ui/settings_sections/settings_common.json", + "radio_with_label_and_content/radio_item_with_description_stack/radio_description": "ui/settings_sections/settings_common.json", + "radio_item_with_label_and_content_stack": "ui/settings_sections/settings_common.json", + "radio_item_with_label_and_content_stack/initial_padding": "ui/settings_sections/settings_common.json", + "radio_item_with_label_and_content_stack/radio_image_panel": "ui/settings_sections/settings_common.json", + "radio_item_with_label_and_content_stack/radio_image_panel/image": "ui/settings_sections/settings_common.json", + "radio_item_with_label_and_content_stack/radio_to_content_padding": "ui/settings_sections/settings_common.json", + "radio_item_with_label_and_content_stack/radio_content_panel": "ui/settings_sections/settings_common.json", + "radio_item_with_label_and_content_stack/radio_content_panel/radio_image": "ui/settings_sections/settings_common.json", + "radio_item_with_label_and_content_stack/content_to_label_padding": "ui/settings_sections/settings_common.json", + "radio_item_with_label_and_content_stack/radio_label_panel": "ui/settings_sections/settings_common.json", + "radio_item_with_label_and_content_stack/radio_label_panel/radio_label": "ui/settings_sections/settings_common.json", + "radio_description_panel": "ui/settings_sections/settings_common.json", + "radio_description_panel/description": "ui/settings_sections/settings_common.json", + "radio_description": "ui/settings_sections/settings_common.json", + "radio_item_with_label_and_content": "ui/settings_sections/settings_common.json", + "radio_item_with_label_and_content/radio_with_label_core": "ui/settings_sections/settings_common.json", + "option_slider_control": "ui/settings_sections/settings_common.json", + "option_slider_control/slider": "ui/settings_sections/settings_common.json", + "default_options_dropdown_toggle_button_state_content": "ui/settings_sections/settings_common.json", + "default_options_dropdown_toggle_button_state_content/left_padding": "ui/settings_sections/settings_common.json", + "default_options_dropdown_toggle_button_state_content/option_content": "ui/settings_sections/settings_common.json", + "default_options_dropdown_toggle_button_state_content/option_content_padding": "ui/settings_sections/settings_common.json", + "default_options_dropdown_toggle_button_state_content/label_panel": "ui/settings_sections/settings_common.json", + "default_options_dropdown_toggle_button_state_content/label_panel/label": "ui/settings_sections/settings_common.json", + "default_options_dropdown_toggle_button_state_content/arrow_panel": "ui/settings_sections/settings_common.json", + "default_options_dropdown_toggle_button_state_content/arrow_panel/dropdown_chevron_image": "ui/settings_sections/settings_common.json", + "default_options_dropdown_toggle_button_state_content/right_padding": "ui/settings_sections/settings_common.json", + "options_dropdown_toggle_control": "ui/settings_sections/settings_common.json", + "options_dropdown_dark_toggle_control": "ui/settings_sections/settings_common.json", + "option_dropdown_control": "ui/settings_sections/settings_common.json", + "option_dropdown_control/dropdown": "ui/settings_sections/settings_common.json", + "option_dropdown_control_no_scroll": "ui/settings_sections/settings_common.json", + "option_info_label_with_icon": "ui/settings_sections/settings_common.json", + "option_info_label_with_icon/control": "ui/settings_sections/settings_common.json", + "option_info_label_with_icon/icon_panel": "ui/settings_sections/settings_common.json", + "option_info_label_with_icon/icon_panel/icon_image": "ui/settings_sections/settings_common.json", + "option_info_label_with_icon/icon_panel/padding2": "ui/settings_sections/settings_common.json", + "option_info_label_icon": "ui/settings_sections/settings_common.json", + "option_icon_label": "ui/settings_sections/settings_common.json", + "option_info_label_with_bulb": "ui/settings_sections/settings_common.json", + "option_info_label_with_bulb/stack_panel": "ui/settings_sections/settings_common.json", + "option_info_label_with_bulb/stack_panel/padding1": "ui/settings_sections/settings_common.json", + "option_info_label_with_bulb/stack_panel/bulb_panel": "ui/settings_sections/settings_common.json", + "option_info_label_with_bulb/stack_panel/bulb_panel/padding1": "ui/settings_sections/settings_common.json", + "option_info_label_with_bulb/stack_panel/bulb_panel/bulb_image": "ui/settings_sections/settings_common.json", + "option_info_label_with_bulb/stack_panel/bulb_panel/padding2": "ui/settings_sections/settings_common.json", + "option_info_label_with_bulb/stack_panel/padding2": "ui/settings_sections/settings_common.json", + "option_info_label_with_bulb/stack_panel/label_panel": "ui/settings_sections/settings_common.json", + "option_info_label_with_bulb/stack_panel/label_panel/info_label1": "ui/settings_sections/settings_common.json", + "option_info_label_with_bulb/stack_panel/label_panel/padding2": "ui/settings_sections/settings_common.json", + "option_info_label_with_bulb/stack_panel/label_panel/info_label2": "ui/settings_sections/settings_common.json", + "option_info_label_with_bulb/stack_panel/padding3": "ui/settings_sections/settings_common.json", + "option_info_label_with_image": "ui/settings_sections/settings_common.json", + "option_info_label_with_image/control": "ui/settings_sections/settings_common.json", + "option_info_label_image": "ui/settings_sections/settings_common.json", + "option_toggle": "ui/settings_sections/settings_common.json", + "option_radio_group": "ui/settings_sections/settings_common.json", + "option_radio_dropdown_group": "ui/settings_sections/settings_common.json", + "option_radio_dropdown_group/radio_control_group": "ui/settings_sections/settings_common.json", + "option_text_edit": "ui/settings_sections/settings_common.json", + "option_text_edit_with_button": "ui/settings_sections/settings_common.json", + "option_text_edit_with_text_button": "ui/settings_sections/settings_common.json", + "option_slider": "ui/settings_sections/settings_common.json", + "option_dropdown": "ui/settings_sections/settings_common.json", + "option_dropdown_no_scroll": "ui/settings_sections/settings_common.json", + "option_custom_control": "ui/settings_sections/settings_common.json", + "option_info_label": "ui/settings_sections/settings_common.json", + "dynamic_dialog_screen": "ui/settings_sections/settings_common.json", + "settings_content": "ui/settings_sections/settings_common.json", + "settings_content/background": "ui/settings_sections/settings_common.json", + "settings_content/stack_panel": "ui/settings_sections/settings_common.json", + "settings_content/stack_panel/content_panel": "ui/settings_sections/settings_common.json", + "settings_content/stack_panel/content_panel/common_panel": "ui/settings_sections/settings_common.json", + "settings_content/stack_panel/content_panel/container": "ui/settings_sections/settings_common.json", + "settings_content/popup_dialog_factory": "ui/settings_sections/settings_common.json", + "toggle_button_control": "ui/settings_sections/settings_common.json", + "toggle_button_control/glyph": "ui/settings_sections/settings_common.json", + "toggle_button_control/glyph_color": "ui/settings_sections/settings_common.json", + "toggle_button_control/progress_loading_bars": "ui/settings_sections/settings_common.json", + "toggle_button_control/tab_button_text": "ui/settings_sections/settings_common.json", + "section_toggle_base": "ui/settings_sections/settings_common.json", + "section_title_label": "ui/settings_sections/settings_common.json", + "dialog_title_label": "ui/settings_sections/settings_common.json", + "dialog_titles": "ui/settings_sections/settings_common.json", + "dialog_titles/left_padding": "ui/settings_sections/settings_common.json", + "dialog_titles/dialog_title_label": "ui/settings_sections/settings_common.json", + "dialog_titles/center_padding": "ui/settings_sections/settings_common.json", + "dialog_titles/section_title_label": "ui/settings_sections/settings_common.json", + "dialog_titles/right_padding_is_always_right": "ui/settings_sections/settings_common.json", + "dialog_content": "ui/settings_sections/settings_common.json", + "dialog_content/dialog_titles": "ui/settings_sections/settings_common.json", + "dialog_content/selector_area": "ui/settings_sections/settings_common.json", + "dialog_content/content_area": "ui/settings_sections/settings_common.json", + "dialog_content/section_divider": "ui/settings_sections/settings_common.json", + "selector_group_label": "ui/settings_sections/settings_common.json", + "scrollable_selector_area_content": "ui/settings_sections/settings_common.json", + "selector_area": "ui/settings_sections/settings_common.json", + "selector_area/scrolling_panel": "ui/settings_sections/settings_common.json", + "content_area": "ui/settings_sections/settings_common.json", + "content_area/control": "ui/settings_sections/settings_common.json", + "content_area/control/header_panel": "ui/settings_sections/settings_common.json", + "content_area/control/header_panel/content": "ui/settings_sections/settings_common.json", + "content_area/control/scrolling_panel": "ui/settings_sections/settings_common.json", + "content_area/control/footer_panel": "ui/settings_sections/settings_common.json", + "content_area/control/footer_panel/content": "ui/settings_sections/settings_common.json", + "section_divider": "ui/settings_sections/settings_common.json", + "screen_base": "ui/settings_sections/settings_common.json", + }, + "world_section": { + "selector_pane_content": "ui/settings_sections/world_section.json", + "selector_pane_content/world_snapshot_image": "ui/settings_sections/world_section.json", + "selector_pane_content/world_snapshot_image/thumbnail": "ui/settings_sections/world_section.json", + "selector_pane_content/world_snapshot_image/thumbnail/border": "ui/settings_sections/world_section.json", + "selector_pane_content/play_or_create_panel": "ui/settings_sections/world_section.json", + "selector_pane_content/play_or_host_panel": "ui/settings_sections/world_section.json", + "selector_pane_content/spacer": "ui/settings_sections/world_section.json", + "selector_pane_content/server_settings_visibility_panel": "ui/settings_sections/world_section.json", + "selector_pane_content/server_settings_visibility_panel/selector_group_label_0": "ui/settings_sections/world_section.json", + "selector_pane_content/server_settings_visibility_panel/server_settings_button": "ui/settings_sections/world_section.json", + "selector_pane_content/server_settings_visibility_panel/server_spacer": "ui/settings_sections/world_section.json", + "selector_pane_content/selector_group_label_1": "ui/settings_sections/world_section.json", + "selector_pane_content/game_button": "ui/settings_sections/world_section.json", + "selector_pane_content/spacer_01": "ui/settings_sections/world_section.json", + "selector_pane_content/classroom_button": "ui/settings_sections/world_section.json", + "selector_pane_content/spacer_02": "ui/settings_sections/world_section.json", + "selector_pane_content/switch_game_button": "ui/settings_sections/world_section.json", + "selector_pane_content/spacer_03": "ui/settings_sections/world_section.json", + "selector_pane_content/multiplayer_button": "ui/settings_sections/world_section.json", + "selector_pane_content/spacer_04": "ui/settings_sections/world_section.json", + "selector_pane_content/edu_cloud_button": "ui/settings_sections/world_section.json", + "selector_pane_content/spacer_05": "ui/settings_sections/world_section.json", + "selector_pane_content/debug_button": "ui/settings_sections/world_section.json", + "launch_world_button_stack_def": "ui/settings_sections/world_section.json", + "play_or_create_stack_bedrock": "ui/settings_sections/world_section.json", + "play_or_create_stack_bedrock/create_or_play_button": "ui/settings_sections/world_section.json", + "play_or_create_stack_bedrock/play_on_realm_button": "ui/settings_sections/world_section.json", + "edu_play_host_button": "ui/settings_sections/world_section.json", + "play_or_host_stack_edu": "ui/settings_sections/world_section.json", + "play_or_host_stack_edu/edu_play_button": "ui/settings_sections/world_section.json", + "play_or_host_stack_edu/edu_host_button": "ui/settings_sections/world_section.json", + "addons_selector_panel": "ui/settings_sections/world_section.json", + "addons_selector_panel/spacer_01": "ui/settings_sections/world_section.json", + "addons_selector_panel/selector_group_label_2": "ui/settings_sections/world_section.json", + "addons_selector_panel/level_texture_pack_button": "ui/settings_sections/world_section.json", + "addons_selector_panel/spacer_02": "ui/settings_sections/world_section.json", + "addons_selector_panel/addon_button": "ui/settings_sections/world_section.json", + "server_settings_button": "ui/settings_sections/world_section.json", + "server_section": "ui/settings_sections/world_section.json", + "game_button": "ui/settings_sections/world_section.json", + "export_world_button": "ui/settings_sections/world_section.json", + "delete_world_button": "ui/settings_sections/world_section.json", + "export_template_button": "ui/settings_sections/world_section.json", + "copy_world_button": "ui/settings_sections/world_section.json", + "edit_world_manipulation_buttons": "ui/settings_sections/world_section.json", + "edit_world_manipulation_buttons/export": "ui/settings_sections/world_section.json", + "edit_world_manipulation_buttons/padding": "ui/settings_sections/world_section.json", + "edit_world_manipulation_buttons/delete": "ui/settings_sections/world_section.json", + "game_section": "ui/settings_sections/world_section.json", + "game_section/new_edit_world_opt_in_panel": "ui/settings_sections/world_section.json", + "game_section/new_edit_world_opt_in_panel/panel_title": "ui/settings_sections/world_section.json", + "game_section/new_edit_world_opt_in_panel/panel_text": "ui/settings_sections/world_section.json", + "game_section/new_edit_world_opt_in_panel/opt_in_button": "ui/settings_sections/world_section.json", + "game_section/new_edit_world_opt_in_divider": "ui/settings_sections/world_section.json", + "game_section/new_edit_world_opt_in_divider/section_divider": "ui/settings_sections/world_section.json", + "game_section/unlock_template_options_panel": "ui/settings_sections/world_section.json", + "game_section/unlock_template_options_panel/option_info_label": "ui/settings_sections/world_section.json", + "game_section/unlock_template_options_panel/unlock_template_options_button": "ui/settings_sections/world_section.json", + "game_section/option_info_label": "ui/settings_sections/world_section.json", + "game_section/hardcore_info_label": "ui/settings_sections/world_section.json", + "game_section/world_settings_label": "ui/settings_sections/world_section.json", + "game_section/option_text_edit_0": "ui/settings_sections/world_section.json", + "game_section/project_section_divider_1": "ui/settings_sections/world_section.json", + "game_section/project_header_label": "ui/settings_sections/world_section.json", + "game_section/project_section_divider_2": "ui/settings_sections/world_section.json", + "game_section/project_spacer": "ui/settings_sections/world_section.json", + "game_section/option_text_edit_1": "ui/settings_sections/world_section.json", + "game_section/export_settings_section_divider_1": "ui/settings_sections/world_section.json", + "game_section/export_settings_header_label": "ui/settings_sections/world_section.json", + "game_section/export_settings_header_description": "ui/settings_sections/world_section.json", + "game_section/export_settings_section_divider_2": "ui/settings_sections/world_section.json", + "game_section/export_settings_spacer": "ui/settings_sections/world_section.json", + "game_section/option_dropdown_0": "ui/settings_sections/world_section.json", + "game_section/option_dropdown_1": "ui/settings_sections/world_section.json", + "game_section/is_hardcore_toggle": "ui/settings_sections/world_section.json", + "game_section/option_dropdown_2": "ui/settings_sections/world_section.json", + "game_section/world_preferences_label": "ui/settings_sections/world_section.json", + "game_section/starting_map_toggle": "ui/settings_sections/world_section.json", + "game_section/bonus_chest_toggle": "ui/settings_sections/world_section.json", + "game_section/option_dropdown_permissions": "ui/settings_sections/world_section.json", + "game_section/option_dropdown_3": "ui/settings_sections/world_section.json", + "game_section/level_seed_selector_edu": "ui/settings_sections/world_section.json", + "game_section/level_seed_selector": "ui/settings_sections/world_section.json", + "game_section/level_seed_selector_trial": "ui/settings_sections/world_section.json", + "game_section/server_sim_distance_slider": "ui/settings_sections/world_section.json", + "game_section/world_options_label": "ui/settings_sections/world_section.json", + "game_section/pvp_toggle": "ui/settings_sections/world_section.json", + "game_section/show_coordinates_toggle": "ui/settings_sections/world_section.json", + "game_section/locator_bar_toggle": "ui/settings_sections/world_section.json", + "game_section/show_days_played_toggle": "ui/settings_sections/world_section.json", + "game_section/fire_spreads_toggle": "ui/settings_sections/world_section.json", + "game_section/recipes_unlock_toggle": "ui/settings_sections/world_section.json", + "game_section/tnt_explodes_toggle": "ui/settings_sections/world_section.json", + "game_section/respawn_blocks_explode_toggle": "ui/settings_sections/world_section.json", + "game_section/mob_loot_toggle": "ui/settings_sections/world_section.json", + "game_section/natural_regeneration_toggle": "ui/settings_sections/world_section.json", + "game_section/tile_drops_toggle": "ui/settings_sections/world_section.json", + "game_section/player_sleep_toggle": "ui/settings_sections/world_section.json", + "game_section/player_sleep_percentage_slider": "ui/settings_sections/world_section.json", + "game_section/immediate_respawn_toggle": "ui/settings_sections/world_section.json", + "game_section/respawn_radius": "ui/settings_sections/world_section.json", + "game_section/experimental_toggles_label": "ui/settings_sections/world_section.json", + "game_section/experimental_toggles_label_info": "ui/settings_sections/world_section.json", + "game_section/experimental_toggles": "ui/settings_sections/world_section.json", + "game_section/world_cheats_label": "ui/settings_sections/world_section.json", + "game_section/allow_cheats_toggle": "ui/settings_sections/world_section.json", + "game_section/education_toggle": "ui/settings_sections/world_section.json", + "game_section/always_day_toggle": "ui/settings_sections/world_section.json", + "game_section/daylight_cycle_toggle": "ui/settings_sections/world_section.json", + "game_section/keep_inventory_toggle": "ui/settings_sections/world_section.json", + "game_section/mob_spawn_toggle": "ui/settings_sections/world_section.json", + "game_section/mob_griefing_toggle": "ui/settings_sections/world_section.json", + "game_section/entities_drop_loot_toggle": "ui/settings_sections/world_section.json", + "game_section/weather_cycle_toggle": "ui/settings_sections/world_section.json", + "game_section/command_blocks_enabled_toggle": "ui/settings_sections/world_section.json", + "game_section/random_tick_speed": "ui/settings_sections/world_section.json", + "game_section/world_management_label": "ui/settings_sections/world_section.json", + "game_section/convert_to_infinite_panel": "ui/settings_sections/world_section.json", + "game_section/convert_to_infinite_panel/convert_to_infinite_button": "ui/settings_sections/world_section.json", + "game_section/delete_button": "ui/settings_sections/world_section.json", + "game_section/button_panel": "ui/settings_sections/world_section.json", + "game_section/button_panel/manipulation_controls": "ui/settings_sections/world_section.json", + "game_section/export_template_panel": "ui/settings_sections/world_section.json", + "game_section/export_template_panel/padding": "ui/settings_sections/world_section.json", + "game_section/export_template_panel/template_version": "ui/settings_sections/world_section.json", + "game_section/export_template_panel/template_buttons": "ui/settings_sections/world_section.json", + "game_section/export_template_panel/template_buttons/template_image_picker_button": "ui/settings_sections/world_section.json", + "game_section/export_template_panel/template_buttons/padding": "ui/settings_sections/world_section.json", + "game_section/export_template_panel/template_buttons/template_localization_picker_button": "ui/settings_sections/world_section.json", + "game_section/export_template_panel/export_template": "ui/settings_sections/world_section.json", + "game_section/clear_player_data_panel": "ui/settings_sections/world_section.json", + "game_section/clear_player_data_panel/padding": "ui/settings_sections/world_section.json", + "game_section/clear_player_data_panel/clear_player_data_button": "ui/settings_sections/world_section.json", + "game_section/copy_world_panel": "ui/settings_sections/world_section.json", + "game_section/copy_world_panel/copy_world": "ui/settings_sections/world_section.json", + "game_section/upload_download_slot_panel": "ui/settings_sections/world_section.json", + "game_section/upload_download_slot_panel/upload_download_slot_button": "ui/settings_sections/world_section.json", + "game_section/replace_slot_panel": "ui/settings_sections/world_section.json", + "game_section/replace_slot_panel/replace_slot_button": "ui/settings_sections/world_section.json", + "level_texture_pack_button": "ui/settings_sections/world_section.json", + "level_texture_pack_section": "ui/settings_sections/world_section.json", + "addon_button": "ui/settings_sections/world_section.json", + "addon_section": "ui/settings_sections/world_section.json", + "world_game_mode_dropdown_content": "ui/settings_sections/world_section.json", + "xbl_broadcast_dropdown_content": "ui/settings_sections/world_section.json", + "platform_broadcast_dropdown_content": "ui/settings_sections/world_section.json", + "player_game_mode_dropdown_content": "ui/settings_sections/world_section.json", + "world_type_dropdown_content": "ui/settings_sections/world_section.json", + "world_difficulty_dropdown_content": "ui/settings_sections/world_section.json", + "multiplayer_button": "ui/settings_sections/world_section.json", + "cross_platform_warning_label": "ui/settings_sections/world_section.json", + "multiplayer_section": "ui/settings_sections/world_section.json", + "multiplayer_section/multiplayer_game_toggle": "ui/settings_sections/world_section.json", + "multiplayer_section/platform_settings_dropdown": "ui/settings_sections/world_section.json", + "multiplayer_section/xbl_settings_dropdown": "ui/settings_sections/world_section.json", + "multiplayer_section/server_visible_toggle": "ui/settings_sections/world_section.json", + "multiplayer_section/general_multiplayer_warning_label": "ui/settings_sections/world_section.json", + "multiplayer_section/open_uri_button": "ui/settings_sections/world_section.json", + "multiplayer_section/platform_multiplayer_warning_label": "ui/settings_sections/world_section.json", + "multiplayer_section/xbl_multiplayer_warning_label": "ui/settings_sections/world_section.json", + "option_text_edit_mock_with_button": "ui/settings_sections/world_section.json", + "option_text_edit_mock_control_with_button": "ui/settings_sections/world_section.json", + "option_text_edit_mock_control_with_button/trial_text_box_button": "ui/settings_sections/world_section.json", + "option_text_edit_mock_control_with_button/seed_arrow_button": "ui/settings_sections/world_section.json", + "experimental_toggle": "ui/settings_sections/world_section.json", + "open_account_setting_button": "ui/settings_sections/world_section.json", + "edu_cloud_button": "ui/settings_sections/world_section.json", + "edu_cloud_section": "ui/settings_sections/world_section.json", + "edu_cloud_section/edu_cloud_label": "ui/settings_sections/world_section.json", + "edu_cloud_section/cloud_file_name": "ui/settings_sections/world_section.json", + "edu_cloud_section/cloud_file_last_changed": "ui/settings_sections/world_section.json", + "edu_cloud_section/cloud_upload_toggle": "ui/settings_sections/world_section.json", + "edu_cloud_section/cloud_help_wrapper_panel": "ui/settings_sections/world_section.json", + "edu_cloud_section/cloud_help_wrapper_panel/cloud_help_button": "ui/settings_sections/world_section.json", + "edu_cloud_section/cloud_help_wrapper_panel/padded_icon": "ui/settings_sections/world_section.json", + "edu_cloud_section/cloud_help_wrapper_panel/padded_icon/icon": "ui/settings_sections/world_section.json", + "debug_button": "ui/settings_sections/world_section.json", + "debug_section": "ui/settings_sections/world_section.json", + "debug_section/flat_nether_toggle": "ui/settings_sections/world_section.json", + "debug_section/game_version_override_toggle": "ui/settings_sections/world_section.json", + "debug_section/game_version_override_textbox": "ui/settings_sections/world_section.json", + "debug_section/spawn_dimension_dropdown": "ui/settings_sections/world_section.json", + "debug_section/spawn_biome_dropdown": "ui/settings_sections/world_section.json", + "debug_section/biome_override_dropdown": "ui/settings_sections/world_section.json", + "debug_section/base_game_version_debug_text": "ui/settings_sections/world_section.json", + "debug_spawn_dimension_dropdown_content": "ui/settings_sections/world_section.json", + "debug_spawn_biome_dropdown_content": "ui/settings_sections/world_section.json", + "debug_biome_override_dropdown_content": "ui/settings_sections/world_section.json", + "editor_edit_world_manipulation_buttons_content": "ui/settings_sections/world_section.json", + "editor_edit_world_manipulation_buttons_content/export_as_project": "ui/settings_sections/world_section.json", + "editor_edit_world_manipulation_buttons_content/padding": "ui/settings_sections/world_section.json", + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons": "ui/settings_sections/world_section.json", + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_world": "ui/settings_sections/world_section.json", + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/padding": "ui/settings_sections/world_section.json", + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_template": "ui/settings_sections/world_section.json", + "editor_edit_world_manipulation_buttons_content/padding_2": "ui/settings_sections/world_section.json", + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons": "ui/settings_sections/world_section.json", + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/copy_project": "ui/settings_sections/world_section.json", + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/padding": "ui/settings_sections/world_section.json", + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/delete_project": "ui/settings_sections/world_section.json", + "editor_edit_world_manipulation_buttons": "ui/settings_sections/world_section.json", + }, + "social_section": { + "party_button": "ui/settings_sections/social_section.json", + "party_section": "ui/settings_sections/social_section.json", + "party_section/party_invite_filter_dropdown": "ui/settings_sections/social_section.json", + "party_section/party_invite_reset_default_padding": "ui/settings_sections/social_section.json", + "party_section/party_invite_send_privileges_dropdown": "ui/settings_sections/social_section.json", + "party_section/party_privacy_default_padding": "ui/settings_sections/social_section.json", + "party_section/party_privacy_dropdown": "ui/settings_sections/social_section.json", + "party_section/party_privacy_label_wrapper": "ui/settings_sections/social_section.json", + "party_section/party_settings_reset_default_button_default_padding": "ui/settings_sections/social_section.json", + "party_section/party_settings_reset_default_button": "ui/settings_sections/social_section.json", + "party_section/microsoft_account_settings_divider": "ui/settings_sections/social_section.json", + "party_section/microsoft_account_settings_divider/section_divider": "ui/settings_sections/social_section.json", + "party_section/microsoft_account_settings_header": "ui/settings_sections/social_section.json", + "party_section/microsoft_account_settings_padding": "ui/settings_sections/social_section.json", + "party_section/microsoft_account_settings_label_wrapper": "ui/settings_sections/social_section.json", + "party_section/privacy_and_online_safety_button_padding": "ui/settings_sections/social_section.json", + "party_section/privacy_and_online_safety_button": "ui/settings_sections/social_section.json", + "party_section/microsoft_account_settings_ending_padding": "ui/settings_sections/social_section.json", + "party_privacy_label": "ui/settings_sections/social_section.json", + "microsoft_account_settings_label": "ui/settings_sections/social_section.json", + "platform_settings_label": "ui/settings_sections/social_section.json", + "party_invite_filter_dropdown_content": "ui/settings_sections/social_section.json", + "party_privacy_dropdown_content": "ui/settings_sections/social_section.json", + "party_invite_send_privileges_dropdown_content": "ui/settings_sections/social_section.json", + }, + "sidebar_navigation": { + "empty_panel": "ui/sidebar_navigation.json", + "empty_fill_x_panel": "ui/sidebar_navigation.json", + "empty_default_panel": "ui/sidebar_navigation.json", + "vertical_padding_panel": "ui/sidebar_navigation.json", + "sidebar_bg": "ui/sidebar_navigation.json", + "sidebar_divider": "ui/sidebar_navigation.json", + "sidebar_divider_panel": "ui/sidebar_navigation.json", + "sidebar_divider_panel/sidebar_divider": "ui/sidebar_navigation.json", + "toggle_content": "ui/sidebar_navigation.json", + "toggle_content/toggle_content": "ui/sidebar_navigation.json", + "sidebar_section_scroll_panel": "ui/sidebar_navigation.json", + "sidebar_bg_content_panel": "ui/sidebar_navigation.json", + "sidebar_bg_content_panel/sidebar_bg_content": "ui/sidebar_navigation.json", + "sidebar_nav_toggle_image": "ui/sidebar_navigation.json", + "sidebar_nav_toggle_image_panel": "ui/sidebar_navigation.json", + "sidebar_nav_toggle_image_panel/sidebar_nav_toggle_image": "ui/sidebar_navigation.json", + "sidebar_nav_toggle_image_panel/gamepad_helper_icon": "ui/sidebar_navigation.json", + "gamepad_helper_icon_start_toggle": "ui/sidebar_navigation.json", + "verbose_view_toggle_content": "ui/sidebar_navigation.json", + "verbose_view_toggle_content/left_padding": "ui/sidebar_navigation.json", + "verbose_view_toggle_content/sidebar_nav_toggle_image": "ui/sidebar_navigation.json", + "sidebar_toggle_bg": "ui/sidebar_navigation.json", + "sidebar_toggle": "ui/sidebar_navigation.json", + "sidebar_option_toggle": "ui/sidebar_navigation.json", + "simple_sidebar_toggle": "ui/sidebar_navigation.json", + "verbose_toggle": "ui/sidebar_navigation.json", + "verbose_sidebar_option": "ui/sidebar_navigation.json", + "verbose_expand_option": "ui/sidebar_navigation.json", + "verbose_dropdown_option": "ui/sidebar_navigation.json", + "verbose_dropdown_expanded_option": "ui/sidebar_navigation.json", + "verbose_sidebar_expand_section_bg": "ui/sidebar_navigation.json", + "verbose_sidebar_expand_section_panel": "ui/sidebar_navigation.json", + "verbose_expand_section_panel": "ui/sidebar_navigation.json", + "verbose_view_toggle": "ui/sidebar_navigation.json", + "sidebar_option_factory": "ui/sidebar_navigation.json", + "sidebar_option_factory_panel": "ui/sidebar_navigation.json", + "sidebar_option_factory_panel/sidebar_option_factory": "ui/sidebar_navigation.json", + "verbose_button_content": "ui/sidebar_navigation.json", + "verbose_button_content/button_label": "ui/sidebar_navigation.json", + "verbose_button": "ui/sidebar_navigation.json", + "verbose_nav_button_panel": "ui/sidebar_navigation.json", + "verbose_nav_button_panel/verbose_nav_button": "ui/sidebar_navigation.json", + "verbose_screen_nav_button": "ui/sidebar_navigation.json", + "verbose_screen_nav_option_panel": "ui/sidebar_navigation.json", + "verbose_screen_nav_option_panel/verbose_nav_button": "ui/sidebar_navigation.json", + "sidebar_option_factory_scroll_panel": "ui/sidebar_navigation.json", + "sidebar_screen_nav_option_factory_panel": "ui/sidebar_navigation.json", + "sidebar_screen_nav_option_factory_panel/fill_panel": "ui/sidebar_navigation.json", + "sidebar_screen_nav_option_factory_panel/button": "ui/sidebar_navigation.json", + "sidebar_screen_nav_option_factory_panel/padding": "ui/sidebar_navigation.json", + "sidebar_screen_nav_option_factory_panel/platform_icon_padding": "ui/sidebar_navigation.json", + "root_section_content_panel": "ui/sidebar_navigation.json", + "root_section_content_panel/sidebar_option_factory": "ui/sidebar_navigation.json", + "root_section_content_panel/verbose_sidebar_screen_Nav": "ui/sidebar_navigation.json", + "edge_bar": "ui/sidebar_navigation.json", + "verbose_view_stack_panel": "ui/sidebar_navigation.json", + "verbose_view_stack_panel/verbose_view_toggle": "ui/sidebar_navigation.json", + "sidebar_section": "ui/sidebar_navigation.json", + "sidebar_section/left_edge_bar": "ui/sidebar_navigation.json", + "sidebar_section/verbose_view_stack_panel": "ui/sidebar_navigation.json", + "sidebar_section/right_edge_bar": "ui/sidebar_navigation.json", + "root_section": "ui/sidebar_navigation.json", + "verbose_root_section": "ui/sidebar_navigation.json", + "simple_root_section": "ui/sidebar_navigation.json", + "simple_root_section/verbose_view_toggle": "ui/sidebar_navigation.json", + "simple_root_section/root_section": "ui/sidebar_navigation.json", + "sidebar_section_factory_panel": "ui/sidebar_navigation.json", + "sidebar_section_factory_panel/sidebar_section_factory": "ui/sidebar_navigation.json", + "sidebar_view_content_panel": "ui/sidebar_navigation.json", + "sidebar_view_content_panel/view_stack_panel": "ui/sidebar_navigation.json", + "sidebar_view_content_panel/view_stack_panel/sidebar_view": "ui/sidebar_navigation.json", + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel": "ui/sidebar_navigation.json", + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button": "ui/sidebar_navigation.json", + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/default": "ui/sidebar_navigation.json", + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/hover": "ui/sidebar_navigation.json", + "sidebar_view_content_panel/verbose_view_exit": "ui/sidebar_navigation.json", + "verbose_sidebar_view_modal": "ui/sidebar_navigation.json", + "sidebar_views": "ui/sidebar_navigation.json", + "sidebar_views/sidebar_view_conent": "ui/sidebar_navigation.json", + "sidebar_views/sidebar_view_conent/simple_sidebar_view": "ui/sidebar_navigation.json", + "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal": "ui/sidebar_navigation.json", + "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal/verbose_sidebar_view": "ui/sidebar_navigation.json", + "sidebar_empty_panel": "ui/sidebar_navigation.json", + "content_view": "ui/sidebar_navigation.json", + "content_view/content_view_stack": "ui/sidebar_navigation.json", + "content_view/content_view_stack/sidebar_view_stack": "ui/sidebar_navigation.json", + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel": "ui/sidebar_navigation.json", + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel": "ui/sidebar_navigation.json", + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button": "ui/sidebar_navigation.json", + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/default": "ui/sidebar_navigation.json", + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/hover": "ui/sidebar_navigation.json", + "content_view/content_view_stack/sidebar_view_stack/divider": "ui/sidebar_navigation.json", + "content_view/content_view_stack/main_view_content": "ui/sidebar_navigation.json", + "content_view/content_view_stack/main_view_content/screen_content": "ui/sidebar_navigation.json", + "sidebar_view": "ui/sidebar_navigation.json", + "sidebar_view/sidebar_content": "ui/sidebar_navigation.json", + "sidebar_view/content_view": "ui/sidebar_navigation.json", + "sidebar_view/progress_loading": "ui/sidebar_navigation.json", + "platform_store_icon_spacing": "ui/sidebar_navigation.json", + }, + "sign": { + "sign_background": "ui/sign_screen.json", + "hanging_sign_background": "ui/sign_screen.json", + "base_sign_text_multiline": "ui/sign_screen.json", + "regular_sign_text_multiline": "ui/sign_screen.json", + "hanging_sign_text_multiline": "ui/sign_screen.json", + "sign_screen_content": "ui/sign_screen.json", + "sign_screen_content/input_eating_panel": "ui/sign_screen.json", + "sign_screen_content/input_eating_panel/text_edit": "ui/sign_screen.json", + "sign_screen_content/invisible_exit_background": "ui/sign_screen.json", + "sign_screen": "ui/sign_screen.json", + }, + "simple_inprogress": { + "title_text": "ui/simple_inprogress_screen.json", + "main_panel": "ui/simple_inprogress_screen.json", + "main_panel/common_panel": "ui/simple_inprogress_screen.json", + "main_panel/title": "ui/simple_inprogress_screen.json", + "main_panel/main_content": "ui/simple_inprogress_screen.json", + "main_panel/progress_loading_bars": "ui/simple_inprogress_screen.json", + "simple_inprogress_screen": "ui/simple_inprogress_screen.json", + "simple_inprogress_screen_content": "ui/simple_inprogress_screen.json", + "simple_inprogress_screen_content/root_panel": "ui/simple_inprogress_screen.json", + "simple_inprogress_screen_content/root_panel/main_panel": "ui/simple_inprogress_screen.json", + }, + "skin_pack_purchase": { + "cycle_pack_left_button": "ui/skin_pack_purchase_screen.json", + "cycle_pack_right_button": "ui/skin_pack_purchase_screen.json", + "skin_model": "ui/skin_pack_purchase_screen.json", + "skin_model/paper_doll": "ui/skin_pack_purchase_screen.json", + "skin_lock": "ui/skin_pack_purchase_screen.json", + "skin_focus_border": "ui/skin_pack_purchase_screen.json", + "skin_focus_border/equip": "ui/skin_pack_purchase_screen.json", + "skin_button_panel_gamepad": "ui/skin_pack_purchase_screen.json", + "skin_button_panel_gamepad/skin_button": "ui/skin_pack_purchase_screen.json", + "skin_button_panel_gamepad/skin_button/hover": "ui/skin_pack_purchase_screen.json", + "skin_button_panel_gamepad/skin_button/pressed": "ui/skin_pack_purchase_screen.json", + "skin_button_panel_not_gamepad": "ui/skin_pack_purchase_screen.json", + "skin_button_panel_not_gamepad/skin_button": "ui/skin_pack_purchase_screen.json", + "skin_button_panel_not_gamepad/skin_button/hover": "ui/skin_pack_purchase_screen.json", + "skin_button_panel_not_gamepad/skin_button/pressed": "ui/skin_pack_purchase_screen.json", + "skin_button_panel_not_gamepad/equip_button": "ui/skin_pack_purchase_screen.json", + "skin_button_panel": "ui/skin_pack_purchase_screen.json", + "skin_button_panel/gamepad": "ui/skin_pack_purchase_screen.json", + "skin_button_panel/not_gamepad": "ui/skin_pack_purchase_screen.json", + "equip_button_state_panel": "ui/skin_pack_purchase_screen.json", + "equip_button_state_panel/button_panel": "ui/skin_pack_purchase_screen.json", + "equip_button_text": "ui/skin_pack_purchase_screen.json", + "equip_button_text/text": "ui/skin_pack_purchase_screen.json", + "skins_grid_item": "ui/skin_pack_purchase_screen.json", + "skins_grid_item/model": "ui/skin_pack_purchase_screen.json", + "skins_grid_item/lock": "ui/skin_pack_purchase_screen.json", + "skins_grid_item/button": "ui/skin_pack_purchase_screen.json", + "skins_grid": "ui/skin_pack_purchase_screen.json", + "skins_panel": "ui/skin_pack_purchase_screen.json", + "skins_panel/bg": "ui/skin_pack_purchase_screen.json", + "skins_panel/bg/left": "ui/skin_pack_purchase_screen.json", + "skins_panel/bg/sg": "ui/skin_pack_purchase_screen.json", + "skins_panel/bg/right": "ui/skin_pack_purchase_screen.json", + "skins_panel/bg/progress_loading_panel": "ui/skin_pack_purchase_screen.json", + "skins_panel/bg/progress_loading_panel/progress_loading": "ui/skin_pack_purchase_screen.json", + "skins_panel/bg/progress_loading_panel/progress_loading_outline": "ui/skin_pack_purchase_screen.json", + "skins_panel/bg/progress_loading_panel/progress_loading_outline/hover": "ui/skin_pack_purchase_screen.json", + "screen_root": "ui/skin_pack_purchase_screen.json", + "skin_pack_purchase_upsell_screen": "ui/skin_pack_purchase_screen.json", + "skin_pack_purchase_upsell_screen_content": "ui/skin_pack_purchase_screen.json", + "skin_pack_purchase_upsell_dialog_content": "ui/skin_pack_purchase_screen.json", + "skin_pack_purchase_upsell_dialog_content/container": "ui/skin_pack_purchase_screen.json", + "skin_pack_purchase_standard": "ui/skin_pack_purchase_screen.json", + "skin_pack_purchase_standard_content": "ui/skin_pack_purchase_screen.json", + "skin_pack_purchase_dialog_content": "ui/skin_pack_purchase_screen.json", + "skin_pack_purchase_dialog_content/container": "ui/skin_pack_purchase_screen.json", + }, + "skin_picker": { + "banner_fill": "ui/skin_picker_screen.json", + "title_label": "ui/skin_picker_screen.json", + "label": "ui/skin_picker_screen.json", + "chevron_image": "ui/skin_picker_screen.json", + "bumper_image": "ui/skin_picker_screen.json", + "undo_image": "ui/skin_picker_screen.json", + "plus_icon": "ui/skin_picker_screen.json", + "direction_button_panel": "ui/skin_picker_screen.json", + "direction_button_panel/chevron_image": "ui/skin_picker_screen.json", + "direction_button_panel/bumper_image": "ui/skin_picker_screen.json", + "cycle_pack_button": "ui/skin_picker_screen.json", + "cycle_pack_left_button": "ui/skin_picker_screen.json", + "cycle_pack_right_button": "ui/skin_picker_screen.json", + "skin_button": "ui/skin_picker_screen.json", + "skin_button/hover": "ui/skin_picker_screen.json", + "skin_button/pressed": "ui/skin_picker_screen.json", + "skin_rotation_arrows": "ui/skin_picker_screen.json", + "skin_viewer_panel": "ui/skin_picker_screen.json", + "skin_viewer_panel/custom_skin_button": "ui/skin_picker_screen.json", + "skin_viewer_panel/skin_model_panel": "ui/skin_picker_screen.json", + "skin_viewer_panel/skin_model_panel/skin_model": "ui/skin_picker_screen.json", + "skin_viewer_panel/lock": "ui/skin_picker_screen.json", + "undo_skin_button": "ui/skin_picker_screen.json", + "accept_skin_button": "ui/skin_picker_screen.json", + "stack_item": "ui/skin_picker_screen.json", + "accept_skin_panel": "ui/skin_picker_screen.json", + "accept_skin_panel/stack_item_0": "ui/skin_picker_screen.json", + "accept_skin_panel/stack_item_0/undo_btn": "ui/skin_picker_screen.json", + "accept_skin_panel/stack_item_1": "ui/skin_picker_screen.json", + "accept_skin_panel/stack_item_1/accept_button": "ui/skin_picker_screen.json", + "appearance_status_image_panel": "ui/skin_picker_screen.json", + "appearance_status_image_panel/limited_status_image": "ui/skin_picker_screen.json", + "appearance_status_image_panel/no_restrictions_status_image": "ui/skin_picker_screen.json", + "appearance_status_content": "ui/skin_picker_screen.json", + "appearance_status_content/appearance_status_image_panel": "ui/skin_picker_screen.json", + "appearance_status_content/padding": "ui/skin_picker_screen.json", + "appearance_status_content/appearance_status_label_panel": "ui/skin_picker_screen.json", + "appearance_status_content/appearance_status_label_panel/appearance_status_label": "ui/skin_picker_screen.json", + "preview_skin_panel": "ui/skin_picker_screen.json", + "preview_skin_panel/preview": "ui/skin_picker_screen.json", + "preview_skin_panel/button_frame": "ui/skin_picker_screen.json", + "preview_skin_panel/button_frame/stack_item_0": "ui/skin_picker_screen.json", + "preview_skin_panel/button_frame/stack_item_0/rotation": "ui/skin_picker_screen.json", + "preview_skin_panel/button_frame/padding": "ui/skin_picker_screen.json", + "preview_skin_panel/button_frame/notification_and_accept_input_panel": "ui/skin_picker_screen.json", + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack": "ui/skin_picker_screen.json", + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/skin_status_notification_section": "ui/skin_picker_screen.json", + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/skin_status_notification_section/appearance_status_notification_panel": "ui/skin_picker_screen.json", + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1": "ui/skin_picker_screen.json", + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1/accept": "ui/skin_picker_screen.json", + "skin_model": "ui/skin_picker_screen.json", + "premium_skin_button": "ui/skin_picker_screen.json", + "skin_lock": "ui/skin_picker_screen.json", + "new_pack_icon": "ui/skin_picker_screen.json", + "new_pack_icon/icon": "ui/skin_picker_screen.json", + "pack_lock": "ui/skin_picker_screen.json", + "pack_lock/locked": "ui/skin_picker_screen.json", + "pack_lock/unlocked": "ui/skin_picker_screen.json", + "skin_input_panel": "ui/skin_picker_screen.json", + "skin_input_panel/sg": "ui/skin_picker_screen.json", + "skins_grid_item": "ui/skin_picker_screen.json", + "skins_grid_item/clip": "ui/skin_picker_screen.json", + "skins_grid_item/clip/model": "ui/skin_picker_screen.json", + "skins_grid_item/lock": "ui/skin_picker_screen.json", + "skins_grid_item/button": "ui/skin_picker_screen.json", + "skins_grid": "ui/skin_picker_screen.json", + "pack_name": "ui/skin_picker_screen.json", + "pack_grid_item": "ui/skin_picker_screen.json", + "pack_grid_item/header": "ui/skin_picker_screen.json", + "pack_grid_item/header/padding": "ui/skin_picker_screen.json", + "pack_grid_item/header/pack_lock": "ui/skin_picker_screen.json", + "pack_grid_item/header/pack_name": "ui/skin_picker_screen.json", + "pack_grid_item/header/padding_2": "ui/skin_picker_screen.json", + "pack_grid_item/header/new_pack_icon": "ui/skin_picker_screen.json", + "pack_grid_item/header/padding_3": "ui/skin_picker_screen.json", + "pack_grid_item/bg": "ui/skin_picker_screen.json", + "pack_grid_item/bg/skin_input_panel": "ui/skin_picker_screen.json", + "pack_grid_item/bg/expand_view_button": "ui/skin_picker_screen.json", + "pack_grid_item/bg/progress_loading_no_connection": "ui/skin_picker_screen.json", + "pack_grid_item/bg/progress_loading": "ui/skin_picker_screen.json", + "premium_packs_grid": "ui/skin_picker_screen.json", + "standard_skin_button": "ui/skin_picker_screen.json", + "default_skins_grid_item": "ui/skin_picker_screen.json", + "default_skins_grid_item/model": "ui/skin_picker_screen.json", + "default_skins_grid_item/button": "ui/skin_picker_screen.json", + "default_skins_grid": "ui/skin_picker_screen.json", + "recent_skins_grid_item": "ui/skin_picker_screen.json", + "recent_skins_grid_item/clip": "ui/skin_picker_screen.json", + "recent_skins_grid_item/clip/model": "ui/skin_picker_screen.json", + "recent_skins_grid_item/button": "ui/skin_picker_screen.json", + "recent_skins_grid": "ui/skin_picker_screen.json", + "standard_frame": "ui/skin_picker_screen.json", + "standard_header": "ui/skin_picker_screen.json", + "standard_fill": "ui/skin_picker_screen.json", + "standard_panel": "ui/skin_picker_screen.json", + "standard_panel/default_skins": "ui/skin_picker_screen.json", + "standard_panel/default_skins/header": "ui/skin_picker_screen.json", + "standard_panel/default_skins/fill": "ui/skin_picker_screen.json", + "standard_panel/default_skins/fill/default_skins_grid": "ui/skin_picker_screen.json", + "standard_panel/recent_skins": "ui/skin_picker_screen.json", + "standard_panel/recent_skins/header": "ui/skin_picker_screen.json", + "standard_panel/recent_skins/fill": "ui/skin_picker_screen.json", + "standard_panel/recent_skins/fill/recent_skins_grid": "ui/skin_picker_screen.json", + "standard_panel/recent_skins/fill/recent_skins_loading_panel": "ui/skin_picker_screen.json", + "scrolling_content_stack": "ui/skin_picker_screen.json", + "scrolling_content_stack/standard_panel": "ui/skin_picker_screen.json", + "scrolling_content_stack/premium_packs_grid": "ui/skin_picker_screen.json", + "all_skins_content": "ui/skin_picker_screen.json", + "all_skins_content/scrolling_frame": "ui/skin_picker_screen.json", + "all_skins_content/scrolling_frame/change_skin_scroll": "ui/skin_picker_screen.json", + "all_skins_content/scrolling_frame/progress_loading": "ui/skin_picker_screen.json", + "all_skins_frame": "ui/skin_picker_screen.json", + "all_skins_frame/all_skins_content": "ui/skin_picker_screen.json", + "title_bar": "ui/skin_picker_screen.json", + "title_bar/padding_0": "ui/skin_picker_screen.json", + "title_bar/fill_panel": "ui/skin_picker_screen.json", + "title_bar/fill_panel/title_holder": "ui/skin_picker_screen.json", + "title_bar/fill_panel/title_holder/change_skin_title": "ui/skin_picker_screen.json", + "title_bar/padding_1": "ui/skin_picker_screen.json", + "title_bar/skin_name_holder": "ui/skin_picker_screen.json", + "title_bar/skin_name_holder/preview_skin_name": "ui/skin_picker_screen.json", + "title_bar/padding_2": "ui/skin_picker_screen.json", + "popup_dialog_skin_model": "ui/skin_picker_screen.json", + "popup_dialog_skin_model/paper_doll": "ui/skin_picker_screen.json", + "popup_dialog_choose_skin_type_button": "ui/skin_picker_screen.json", + "popup_dialog_choose_skin_type_button/hover": "ui/skin_picker_screen.json", + "popup_dialog_choose_skin_type_button/pressed": "ui/skin_picker_screen.json", + "popup_dialog_choose_skin_type_panel": "ui/skin_picker_screen.json", + "popup_dialog_choose_skin_type_panel/model": "ui/skin_picker_screen.json", + "popup_dialog_choose_skin_type_panel/button_highlight": "ui/skin_picker_screen.json", + "popup_dialog__invalid_custom_skin": "ui/skin_picker_screen.json", + "popup_dialog__invalid_custom_skin/popup_dialog_bg": "ui/skin_picker_screen.json", + "popup_dialog__invalid_custom_skin/popup_dialog_message": "ui/skin_picker_screen.json", + "popup_dialog__invalid_custom_skin/popup_dialog_middle_button": "ui/skin_picker_screen.json", + "popup_dialog__upsell_without_store": "ui/skin_picker_screen.json", + "popup_dialog__choose_skin_type": "ui/skin_picker_screen.json", + "popup_dialog__choose_skin_type/popup_dialog_bg": "ui/skin_picker_screen.json", + "popup_dialog__choose_skin_type/popup_dialog_message": "ui/skin_picker_screen.json", + "popup_dialog__choose_skin_type/left": "ui/skin_picker_screen.json", + "popup_dialog__choose_skin_type/right": "ui/skin_picker_screen.json", + "content": "ui/skin_picker_screen.json", + "content/title": "ui/skin_picker_screen.json", + "content/selector_area": "ui/skin_picker_screen.json", + "content/content_area": "ui/skin_picker_screen.json", + "content/section_divider": "ui/skin_picker_screen.json", + "skin_picker_screen": "ui/skin_picker_screen.json", + "skin_picker_screen_content": "ui/skin_picker_screen.json", + "skin_picker_screen_content/bg": "ui/skin_picker_screen.json", + "skin_picker_screen_content/container": "ui/skin_picker_screen.json", + "skin_picker_screen_content/container/content": "ui/skin_picker_screen.json", + "skin_picker_screen_content/popup_dialog_factory": "ui/skin_picker_screen.json", + "scrollable_selector_area_content": "ui/skin_picker_screen.json", + "selector_area": "ui/skin_picker_screen.json", + "selector_area/all_skins": "ui/skin_picker_screen.json", + "selector_area/inactive_modal_pane_fade": "ui/skin_picker_screen.json", + "content_area": "ui/skin_picker_screen.json", + "content_area/preview_skin": "ui/skin_picker_screen.json", + "content_area/inactive_modal_pane_fade": "ui/skin_picker_screen.json", + "section_divider": "ui/skin_picker_screen.json", + }, + "smithing_table": { + "smithing_image": "ui/smithing_table_screen.json", + "ingot_image": "ui/smithing_table_screen.json", + "smithing_icon": "ui/smithing_table_screen.json", + "upgrade_label": "ui/smithing_table_screen.json", + "icon_and_text_panel": "ui/smithing_table_screen.json", + "icon_and_text_panel/smithing_icon_panel": "ui/smithing_table_screen.json", + "icon_and_text_panel/upgrade_label": "ui/smithing_table_screen.json", + "smithing_icon_panel": "ui/smithing_table_screen.json", + "smithing_icon_panel/smithing_icon": "ui/smithing_table_screen.json", + "plus_sign_icon": "ui/smithing_table_screen.json", + "arrow_icon": "ui/smithing_table_screen.json", + "cross_out_icon": "ui/smithing_table_screen.json", + "smithing_table_output_slot_button": "ui/smithing_table_screen.json", + "smithing_table_item_slot": "ui/smithing_table_screen.json", + "smithing_table_item_slot/container_item": "ui/smithing_table_screen.json", + "recipe_grid": "ui/smithing_table_screen.json", + "recipe_grid/input_item_slot": "ui/smithing_table_screen.json", + "recipe_grid/plus": "ui/smithing_table_screen.json", + "recipe_grid/plus/plus_sign_icon": "ui/smithing_table_screen.json", + "recipe_grid/material_item_slot": "ui/smithing_table_screen.json", + "recipe_grid/yields": "ui/smithing_table_screen.json", + "recipe_grid/yields/arrow_icon": "ui/smithing_table_screen.json", + "recipe_grid/yields/cross_out_icon": "ui/smithing_table_screen.json", + "recipe_grid/result_item_slot": "ui/smithing_table_screen.json", + "recipe_panel": "ui/smithing_table_screen.json", + "recipe_panel/recipe_grid": "ui/smithing_table_screen.json", + "top_half_panel": "ui/smithing_table_screen.json", + "top_half_panel/icon_and_text_panel": "ui/smithing_table_screen.json", + "top_half_panel/recipe_panel": "ui/smithing_table_screen.json", + "smithing_table_panel": "ui/smithing_table_screen.json", + "smithing_table_panel/container_gamepad_helpers": "ui/smithing_table_screen.json", + "smithing_table_panel/selected_item_details_factory": "ui/smithing_table_screen.json", + "smithing_table_panel/item_lock_notification_factory": "ui/smithing_table_screen.json", + "smithing_table_panel/root_panel": "ui/smithing_table_screen.json", + "smithing_table_panel/root_panel/common_panel": "ui/smithing_table_screen.json", + "smithing_table_panel/root_panel/smithing_table_screen_inventory": "ui/smithing_table_screen.json", + "smithing_table_panel/root_panel/smithing_table_screen_inventory/top_half_panel": "ui/smithing_table_screen.json", + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label": "ui/smithing_table_screen.json", + "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid": "ui/smithing_table_screen.json", + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button": "ui/smithing_table_screen.json", + "smithing_table_panel/root_panel/inventory_selected_icon_button": "ui/smithing_table_screen.json", + "smithing_table_panel/root_panel/gamepad_cursor": "ui/smithing_table_screen.json", + "smithing_table_panel/flying_item_renderer": "ui/smithing_table_screen.json", + "smithing_table_screen": "ui/smithing_table_screen.json", + }, + "smithing_table_2": { + "smithing_icon": "ui/smithing_table_2_screen.json", + "upgrade_label": "ui/smithing_table_2_screen.json", + "icon_and_text_panel": "ui/smithing_table_2_screen.json", + "icon_and_text_panel/smithing_icon_panel": "ui/smithing_table_2_screen.json", + "icon_and_text_panel/upgrade_label": "ui/smithing_table_2_screen.json", + "smithing_icon_panel": "ui/smithing_table_2_screen.json", + "smithing_icon_panel/smithing_icon": "ui/smithing_table_2_screen.json", + "smithing_image": "ui/smithing_table_2_screen.json", + "smithing_material_image_ingot": "ui/smithing_table_2_screen.json", + "arrow_icon": "ui/smithing_table_2_screen.json", + "cross_out_icon_image": "ui/smithing_table_2_screen.json", + "cross_out_icon_button": "ui/smithing_table_2_screen.json", + "cross_out_icon_button/default": "ui/smithing_table_2_screen.json", + "cross_out_icon_button/hover": "ui/smithing_table_2_screen.json", + "smithing_input_image_templates": "ui/smithing_table_2_screen.json", + "smithing_input_image_armors": "ui/smithing_table_2_screen.json", + "smithing_input_image_armors_and_tools": "ui/smithing_table_2_screen.json", + "smithing_material_image_all": "ui/smithing_table_2_screen.json", + "template_overlay_image": "ui/smithing_table_2_screen.json", + "template_overlay_image/templates": "ui/smithing_table_2_screen.json", + "input_overlay_image": "ui/smithing_table_2_screen.json", + "input_overlay_image/armors_and_tools": "ui/smithing_table_2_screen.json", + "input_overlay_image/armors": "ui/smithing_table_2_screen.json", + "material_overlay_image": "ui/smithing_table_2_screen.json", + "material_overlay_image/all_materials": "ui/smithing_table_2_screen.json", + "material_overlay_image/ingot": "ui/smithing_table_2_screen.json", + "smithing_table_output_slot_button": "ui/smithing_table_2_screen.json", + "smithing_table_item_slot": "ui/smithing_table_2_screen.json", + "smithing_table_item_slot/container_item": "ui/smithing_table_2_screen.json", + "recipe_grid": "ui/smithing_table_2_screen.json", + "recipe_grid/template_item_slot": "ui/smithing_table_2_screen.json", + "recipe_grid/input_item_slot": "ui/smithing_table_2_screen.json", + "recipe_grid/material_item_slot": "ui/smithing_table_2_screen.json", + "recipe_grid/yields": "ui/smithing_table_2_screen.json", + "recipe_grid/yields/arrow_icon": "ui/smithing_table_2_screen.json", + "recipe_grid/yields/cross_out_icon": "ui/smithing_table_2_screen.json", + "recipe_grid/result_item_slot": "ui/smithing_table_2_screen.json", + "recipe_grid/result_item_preview": "ui/smithing_table_2_screen.json", + "recipe_panel": "ui/smithing_table_2_screen.json", + "recipe_panel/recipe_grid": "ui/smithing_table_2_screen.json", + "result_item_preview": "ui/smithing_table_2_screen.json", + "result_item_preview/inner": "ui/smithing_table_2_screen.json", + "result_item_preview_inner": "ui/smithing_table_2_screen.json", + "result_item_preview_inner/smithing_preview_renderer": "ui/smithing_table_2_screen.json", + "toolbar_background": "ui/smithing_table_2_screen.json", + "help_button": "ui/smithing_table_2_screen.json", + "toolbar_panel": "ui/smithing_table_2_screen.json", + "toolbar_panel/toolbar_background": "ui/smithing_table_2_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel": "ui/smithing_table_2_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": "ui/smithing_table_2_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": "ui/smithing_table_2_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": "ui/smithing_table_2_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": "ui/smithing_table_2_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": "ui/smithing_table_2_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": "ui/smithing_table_2_screen.json", + "toolbar_anchor": "ui/smithing_table_2_screen.json", + "toolbar_anchor/toolbar_panel": "ui/smithing_table_2_screen.json", + "top_half_panel": "ui/smithing_table_2_screen.json", + "top_half_panel/icon_and_text_panel": "ui/smithing_table_2_screen.json", + "top_half_panel/recipe_panel": "ui/smithing_table_2_screen.json", + "smithing_table_panel": "ui/smithing_table_2_screen.json", + "smithing_table_panel/container_gamepad_helpers": "ui/smithing_table_2_screen.json", + "smithing_table_panel/selected_item_details_factory": "ui/smithing_table_2_screen.json", + "smithing_table_panel/item_lock_notification_factory": "ui/smithing_table_2_screen.json", + "smithing_table_panel/root_panel": "ui/smithing_table_2_screen.json", + "smithing_table_panel/root_panel/common_panel": "ui/smithing_table_2_screen.json", + "smithing_table_panel/root_panel/smithing_table_screen_inventory": "ui/smithing_table_2_screen.json", + "smithing_table_panel/root_panel/smithing_table_screen_inventory/top_half_panel": "ui/smithing_table_2_screen.json", + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label": "ui/smithing_table_2_screen.json", + "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid": "ui/smithing_table_2_screen.json", + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button": "ui/smithing_table_2_screen.json", + "smithing_table_panel/root_panel/inventory_selected_icon_button": "ui/smithing_table_2_screen.json", + "smithing_table_panel/root_panel/toolbar_anchor": "ui/smithing_table_2_screen.json", + "smithing_table_panel/root_panel/gamepad_cursor": "ui/smithing_table_2_screen.json", + "smithing_table_panel/flying_item_renderer": "ui/smithing_table_2_screen.json", + }, + "smithing_table_pocket": { + "ingot_image": "ui/smithing_table_screen_pocket.json", + "background_image": "ui/smithing_table_screen_pocket.json", + "arrow_icon": "ui/smithing_table_screen_pocket.json", + "smithing_icon": "ui/smithing_table_screen_pocket.json", + "upgrade_label": "ui/smithing_table_screen_pocket.json", + "smithing_icon_panel": "ui/smithing_table_screen_pocket.json", + "smithing_icon_panel/smithing_icon": "ui/smithing_table_screen_pocket.json", + "smithing_table_title_and_text_panel": "ui/smithing_table_screen_pocket.json", + "smithing_table_title_and_text_panel/smithing_icon_panel": "ui/smithing_table_screen_pocket.json", + "smithing_table_title_and_text_panel/upgrade_label": "ui/smithing_table_screen_pocket.json", + "slots_panel": "ui/smithing_table_screen_pocket.json", + "slots_panel/input_slot": "ui/smithing_table_screen_pocket.json", + "slots_panel/material_slot": "ui/smithing_table_screen_pocket.json", + "slots_panel/result_slot": "ui/smithing_table_screen_pocket.json", + "slots_panel/plus_sign": "ui/smithing_table_screen_pocket.json", + "slots_panel/arrow": "ui/smithing_table_screen_pocket.json", + "slots_panel/arrow/cross_out": "ui/smithing_table_screen_pocket.json", + "smithing_table_contents_panel": "ui/smithing_table_screen_pocket.json", + "smithing_table_contents_panel/smithing_table_title_and_text_panel": "ui/smithing_table_screen_pocket.json", + "smithing_table_contents_panel/slots_panel": "ui/smithing_table_screen_pocket.json", + "inventory_grid": "ui/smithing_table_screen_pocket.json", + "inventory_content": "ui/smithing_table_screen_pocket.json", + "inventory_content/scrolling_panel": "ui/smithing_table_screen_pocket.json", + "inventory_and_smithing_table_panel": "ui/smithing_table_screen_pocket.json", + "inventory_and_smithing_table_panel/inventory_half_screen": "ui/smithing_table_screen_pocket.json", + "inventory_and_smithing_table_panel/inventory_half_screen/inventory_content": "ui/smithing_table_screen_pocket.json", + "inventory_and_smithing_table_panel/smithing_half_screen": "ui/smithing_table_screen_pocket.json", + "inventory_and_smithing_table_panel/smithing_half_screen/smithing_table_content": "ui/smithing_table_screen_pocket.json", + "header": "ui/smithing_table_screen_pocket.json", + "header/header_background": "ui/smithing_table_screen_pocket.json", + "header/close_button": "ui/smithing_table_screen_pocket.json", + "header/panel": "ui/smithing_table_screen_pocket.json", + "header/panel/title_label": "ui/smithing_table_screen_pocket.json", + "header_and_content_stack_panel": "ui/smithing_table_screen_pocket.json", + "header_and_content_stack_panel/header": "ui/smithing_table_screen_pocket.json", + "header_and_content_stack_panel/inventory_and_smithing_table_panel": "ui/smithing_table_screen_pocket.json", + "smithing_table_panel": "ui/smithing_table_screen_pocket.json", + "smithing_table_panel/bg": "ui/smithing_table_screen_pocket.json", + "smithing_table_panel/root_panel": "ui/smithing_table_screen_pocket.json", + "smithing_table_panel/header_and_content_stack_panel": "ui/smithing_table_screen_pocket.json", + "smithing_table_panel/container_gamepad_helpers": "ui/smithing_table_screen_pocket.json", + "smithing_table_panel/inventory_selected_icon_button": "ui/smithing_table_screen_pocket.json", + "smithing_table_panel/hold_icon": "ui/smithing_table_screen_pocket.json", + "smithing_table_panel/selected_item_details_factory": "ui/smithing_table_screen_pocket.json", + "smithing_table_panel/item_lock_notification_factory": "ui/smithing_table_screen_pocket.json", + "smithing_table_panel/flying_item_renderer": "ui/smithing_table_screen_pocket.json", + }, + "smithing_table_2_pocket": { + "smithing_table_item_renderer": "ui/smithing_table_2_screen_pocket.json", + "smithing_image": "ui/smithing_table_2_screen_pocket.json", + "smithing_material_image_ingot": "ui/smithing_table_2_screen_pocket.json", + "background_image": "ui/smithing_table_2_screen_pocket.json", + "smithing_input_image_templates": "ui/smithing_table_2_screen_pocket.json", + "smithing_material_image_all": "ui/smithing_table_2_screen_pocket.json", + "smithing_input_image_armors": "ui/smithing_table_2_screen_pocket.json", + "smithing_input_image_armors_and_tools": "ui/smithing_table_2_screen_pocket.json", + "template_overlay_image": "ui/smithing_table_2_screen_pocket.json", + "template_overlay_image/templates": "ui/smithing_table_2_screen_pocket.json", + "input_overlay_image": "ui/smithing_table_2_screen_pocket.json", + "input_overlay_image/armors_and_tools": "ui/smithing_table_2_screen_pocket.json", + "input_overlay_image/armors": "ui/smithing_table_2_screen_pocket.json", + "material_overlay_image": "ui/smithing_table_2_screen_pocket.json", + "material_overlay_image/ingot": "ui/smithing_table_2_screen_pocket.json", + "material_overlay_image/all_materials": "ui/smithing_table_2_screen_pocket.json", + "arrow_icon": "ui/smithing_table_2_screen_pocket.json", + "smithing_icon": "ui/smithing_table_2_screen_pocket.json", + "upgrade_label": "ui/smithing_table_2_screen_pocket.json", + "slot_grid_item": "ui/smithing_table_2_screen_pocket.json", + "slot_grid_item/slot": "ui/smithing_table_2_screen_pocket.json", + "template_slot": "ui/smithing_table_2_screen_pocket.json", + "input_slot": "ui/smithing_table_2_screen_pocket.json", + "material_slot": "ui/smithing_table_2_screen_pocket.json", + "inputs_stack": "ui/smithing_table_2_screen_pocket.json", + "inputs_stack/template_slot": "ui/smithing_table_2_screen_pocket.json", + "inputs_stack/padding1": "ui/smithing_table_2_screen_pocket.json", + "inputs_stack/input_slot": "ui/smithing_table_2_screen_pocket.json", + "inputs_stack/padding2": "ui/smithing_table_2_screen_pocket.json", + "inputs_stack/material_slot": "ui/smithing_table_2_screen_pocket.json", + "inputs_panel": "ui/smithing_table_2_screen_pocket.json", + "inputs_panel/inputs_stack": "ui/smithing_table_2_screen_pocket.json", + "result_slot": "ui/smithing_table_2_screen_pocket.json", + "cross_out_image": "ui/smithing_table_2_screen_pocket.json", + "cross_out_icon": "ui/smithing_table_2_screen_pocket.json", + "cross_out_icon/default": "ui/smithing_table_2_screen_pocket.json", + "cross_out_icon/hover": "ui/smithing_table_2_screen_pocket.json", + "crafting_arrow": "ui/smithing_table_2_screen_pocket.json", + "crafting_arrow/cross_out": "ui/smithing_table_2_screen_pocket.json", + "crafting_arrow_grid_item": "ui/smithing_table_2_screen_pocket.json", + "crafting_arrow_grid_item/crafting_arrow": "ui/smithing_table_2_screen_pocket.json", + "result_item_preview": "ui/smithing_table_2_screen_pocket.json", + "result_item_preview/smithing_preview_renderer": "ui/smithing_table_2_screen_pocket.json", + "result_item_preview_grid_item": "ui/smithing_table_2_screen_pocket.json", + "result_item_preview_grid_item/result_preview": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_contents_panel": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_contents_panel/label_holder": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_contents_panel/label_holder/title_label": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_contents_panel/inputs": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_contents_panel/result_slot": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_contents_panel/crafting_arrow": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_contents_panel/result_item_preview": "ui/smithing_table_2_screen_pocket.json", + "chest_item_renderer": "ui/smithing_table_2_screen_pocket.json", + "left_tab_inventory": "ui/smithing_table_2_screen_pocket.json", + "left_navigation_tabs": "ui/smithing_table_2_screen_pocket.json", + "left_navigation_tabs/left_tab_inventory": "ui/smithing_table_2_screen_pocket.json", + "inventory_scroll_panel": "ui/smithing_table_2_screen_pocket.json", + "left_panel": "ui/smithing_table_2_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder": "ui/smithing_table_2_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": "ui/smithing_table_2_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": "ui/smithing_table_2_screen_pocket.json", + "left_panel/content": "ui/smithing_table_2_screen_pocket.json", + "left_panel/content/bg": "ui/smithing_table_2_screen_pocket.json", + "left_panel/content/inventory_scroll_panel": "ui/smithing_table_2_screen_pocket.json", + "right_tab_smithing_table": "ui/smithing_table_2_screen_pocket.json", + "right_navigation_tabs": "ui/smithing_table_2_screen_pocket.json", + "right_navigation_tabs/pocket_tab_close_and_help_button": "ui/smithing_table_2_screen_pocket.json", + "right_navigation_tabs/fill": "ui/smithing_table_2_screen_pocket.json", + "right_navigation_tabs/right_tab_smithing_table": "ui/smithing_table_2_screen_pocket.json", + "right_panel": "ui/smithing_table_2_screen_pocket.json", + "right_panel/content": "ui/smithing_table_2_screen_pocket.json", + "right_panel/content/bg": "ui/smithing_table_2_screen_pocket.json", + "right_panel/content/smithing_content_stack_panel": "ui/smithing_table_2_screen_pocket.json", + "right_panel/navigation_tabs_holder": "ui/smithing_table_2_screen_pocket.json", + "right_panel/navigation_tabs_holder/right_navigation_tabs": "ui/smithing_table_2_screen_pocket.json", + "pocket_hotbar_and_content_panels": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_panel": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_panel/pocket_hotbar_and_content_panels": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_panel/container_gamepad_helpers": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_panel/selected_item_details_factory": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_panel/item_lock_notification_factory": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_panel/inventory_selected_icon_button": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_panel/inventory_take_progress_icon_button": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_panel/flying_item_renderer": "ui/smithing_table_2_screen_pocket.json", + }, + "smoker": { + "smoker_screen": "ui/smoker_screen.json", + }, + "start": { + "achievements_icon": "ui/start_screen.json", + "inbox_bell_animated_icon": "ui/start_screen.json", + "inbox_icon": "ui/start_screen.json", + "unread_notification_icon": "ui/start_screen.json", + "feedback_icon": "ui/start_screen.json", + "feedback_icon_edu": "ui/start_screen.json", + "Xbox_icon": "ui/start_screen.json", + "change_skin_icon": "ui/start_screen.json", + "manage_accounts_icon": "ui/start_screen.json", + "new_offers_icon": "ui/start_screen.json", + "edu_ai_lesson_crafter_button_content": "ui/start_screen.json", + "edu_ai_lesson_crafter_button_content/padded_label": "ui/start_screen.json", + "edu_ai_lesson_crafter_button_content/padded_label/label": "ui/start_screen.json", + "edu_ai_lesson_crafter_button_content/padded_icon": "ui/start_screen.json", + "edu_ai_lesson_crafter_button_content/padded_icon/icon": "ui/start_screen.json", + "preview_tag": "ui/start_screen.json", + "preview_tag/preview_label": "ui/start_screen.json", + "update_prompt_icon": "ui/start_screen.json", + "marketplace_error_icon": "ui/start_screen.json", + "sale_ribbon_icon": "ui/start_screen.json", + "alex_icon": "ui/start_screen.json", + "gamerpic": "ui/start_screen.json", + "copyright": "ui/start_screen.json", + "copyright/label": "ui/start_screen.json", + "copyright/label_background": "ui/start_screen.json", + "development_version": "ui/start_screen.json", + "development_version/label": "ui/start_screen.json", + "development_version/label_background": "ui/start_screen.json", + "version": "ui/start_screen.json", + "version/label": "ui/start_screen.json", + "version/label_background": "ui/start_screen.json", + "trial_info": "ui/start_screen.json", + "trial_info/trial_label": "ui/start_screen.json", + "trial_info/label_background": "ui/start_screen.json", + "text_panel": "ui/start_screen.json", + "text_panel/copyright": "ui/start_screen.json", + "text_panel/development_version": "ui/start_screen.json", + "text_panel/version": "ui/start_screen.json", + "skin_or_profile_panel": "ui/start_screen.json", + "skin_or_profile_panel/change_skin": "ui/start_screen.json", + "skin_or_profile_panel/change_skin_button_demo": "ui/start_screen.json", + "skin_or_profile_panel/dressing_room_button": "ui/start_screen.json", + "skin_or_profile_panel/switch_accounts": "ui/start_screen.json", + "skin_or_profile_panel/profile_button": "ui/start_screen.json", + "change_skin_button": "ui/start_screen.json", + "change_skin_button_demo": "ui/start_screen.json", + "switch_accounts_button": "ui/start_screen.json", + "dressing_room_button": "ui/start_screen.json", + "profile_button_content": "ui/start_screen.json", + "profile_button_content/gamerpic_offset_wrapper": "ui/start_screen.json", + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border": "ui/start_screen.json", + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic": "ui/start_screen.json", + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon": "ui/start_screen.json", + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black": "ui/start_screen.json", + "profile_button_content/padding_middle": "ui/start_screen.json", + "profile_button_content/vertically_central_text": "ui/start_screen.json", + "profile_button_content/vertically_central_text/top_padding": "ui/start_screen.json", + "profile_button_content/vertically_central_text/profile_button_label": "ui/start_screen.json", + "profile_button_content/padding_right": "ui/start_screen.json", + "profile_button": "ui/start_screen.json", + "skin_viewer_panel": "ui/start_screen.json", + "skin_viewer_panel/paper_doll_panel": "ui/start_screen.json", + "skin_viewer_panel/paper_doll_panel/paper_doll": "ui/start_screen.json", + "skin_viewer_panel/paper_doll_panel/appearacne_loading_panel": "ui/start_screen.json", + "skin_viewer_panel/paper_doll_name_tag": "ui/start_screen.json", + "skin_panel": "ui/start_screen.json", + "skin_panel/change_profile_or_skin": "ui/start_screen.json", + "skin_panel/viewer_panel": "ui/start_screen.json", + "friendsdrawer_button_panel": "ui/start_screen.json", + "friendsdrawer_button_panel/friendsdrawer_button": "ui/start_screen.json", + "gathering_button": "ui/start_screen.json", + "badge_and_caption_animated": "ui/start_screen.json", + "badge_and_caption_animated/caption_and_padding": "ui/start_screen.json", + "badge_and_caption_animated/caption_and_padding/pad": "ui/start_screen.json", + "badge_and_caption_animated/caption_and_padding/caption": "ui/start_screen.json", + "badge_and_caption_animated/badge_and_padding": "ui/start_screen.json", + "badge_and_caption_animated/badge_and_padding/badge": "ui/start_screen.json", + "badge_and_caption_animated/badge_and_padding/fill": "ui/start_screen.json", + "gathering_badge": "ui/start_screen.json", + "badge_and_caption": "ui/start_screen.json", + "badge_and_caption/caption_and_padding": "ui/start_screen.json", + "badge_and_caption/caption_and_padding/pad": "ui/start_screen.json", + "badge_and_caption/caption_and_padding/caption": "ui/start_screen.json", + "badge_and_caption/badge_and_padding": "ui/start_screen.json", + "badge_and_caption/badge_and_padding/badge": "ui/start_screen.json", + "badge_and_caption/badge_and_padding/fill": "ui/start_screen.json", + "gathering_caption": "ui/start_screen.json", + "gathering_caption/countdown_text": "ui/start_screen.json", + "gathering_panel": "ui/start_screen.json", + "gathering_panel/horizontal_panel": "ui/start_screen.json", + "gathering_panel/horizontal_panel/pad": "ui/start_screen.json", + "gathering_panel/horizontal_panel/inner_panel": "ui/start_screen.json", + "gathering_panel/horizontal_panel/inner_panel/badge_and_caption": "ui/start_screen.json", + "gathering_panel/horizontal_panel/inner_panel/badge_and_caption_animated": "ui/start_screen.json", + "gathering_panel/horizontal_panel/inner_panel/gathering_button": "ui/start_screen.json", + "gathering_panel/bottom_pad": "ui/start_screen.json", + "edu_feedback_button": "ui/start_screen.json", + "release_feedback_button": "ui/start_screen.json", + "pre_release_feedback_button": "ui/start_screen.json", + "feedback_button": "ui/start_screen.json", + "feedback_button/edu_feedback_button": "ui/start_screen.json", + "feedback_button/release_feedback_button": "ui/start_screen.json", + "feedback_button/pre_release_feedback_button": "ui/start_screen.json", + "achievements_button": "ui/start_screen.json", + "achievements_icon_button": "ui/start_screen.json", + "achievements_icon_button/achievements_button": "ui/start_screen.json", + "inbox_button": "ui/start_screen.json", + "inbox_button_unread_panel": "ui/start_screen.json", + "inbox_button_unread_panel/background": "ui/start_screen.json", + "inbox_icon_button": "ui/start_screen.json", + "inbox_icon_button/inbox_button": "ui/start_screen.json", + "inbox_icon_button/inbox_button_unread_panel": "ui/start_screen.json", + "xbl_signin_button": "ui/start_screen.json", + "platform_signin_button": "ui/start_screen.json", + "column_frame": "ui/start_screen.json", + "educator_resources_button": "ui/start_screen.json", + "upper_online_buttons_panel": "ui/start_screen.json", + "upper_online_buttons_panel/top_pad": "ui/start_screen.json", + "upper_online_buttons_panel/stacked_column": "ui/start_screen.json", + "upper_online_buttons_panel/stacked_column/xbl_btn_padding": "ui/start_screen.json", + "upper_online_buttons_panel/stacked_column/xbl_btn": "ui/start_screen.json", + "upper_online_buttons_panel/stacked_column/xbl_btn/xbl_signin_button": "ui/start_screen.json", + "upper_online_buttons_panel/stacked_column/platform_signin_btn": "ui/start_screen.json", + "upper_online_buttons_panel/stacked_column/platform_signin_btn/platform_signin_button": "ui/start_screen.json", + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label": "ui/start_screen.json", + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border": "ui/start_screen.json", + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/gamerpic": "ui/start_screen.json", + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/border_white": "ui/start_screen.json", + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/spacer": "ui/start_screen.json", + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel": "ui/start_screen.json", + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel/gamertag_label": "ui/start_screen.json", + "upper_online_buttons_panel/bottom_pad": "ui/start_screen.json", + "lower_online_buttons_panel": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column/feedback_padding": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column/feedback_btn": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column/feedback_btn/feedback_button": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column/signingin": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column/achievements_padding": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column/achievements_btn": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column/achievements_btn/achievements_icon_button": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column/inbox_padding": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column/inbox_btn": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column/inbox_btn/inbox_icon_button": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column/profile_btn_padding": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column/profile_btn": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column/profile_btn/profile_button": "ui/start_screen.json", + "main_button": "ui/start_screen.json", + "main_button_dark": "ui/start_screen.json", + "main_content_button": "ui/start_screen.json", + "main_button_gif": "ui/start_screen.json", + "main_button_banner": "ui/start_screen.json", + "main_button_banner/banner_label": "ui/start_screen.json", + "play_button": "ui/start_screen.json", + "play_button_art": "ui/start_screen.json", + "play_button_art/default_background": "ui/start_screen.json", + "play_button_art/hover_background": "ui/start_screen.json", + "play_button_art/label": "ui/start_screen.json", + "play_button_art/default_foreground": "ui/start_screen.json", + "play_button_art/hover_foreground": "ui/start_screen.json", + "play_button_stack": "ui/start_screen.json", + "play_button_stack/play_button": "ui/start_screen.json", + "play_button_stack/play_button_art": "ui/start_screen.json", + "play_button_stack/play_button_banner": "ui/start_screen.json", + "get_started_button": "ui/start_screen.json", + "main_menu_button": "ui/start_screen.json", + "featured_world_button": "ui/start_screen.json", + "unlock_full_game_button": "ui/start_screen.json", + "launch_editions_button": "ui/start_screen.json", + "ai_lesson_crafter_button": "ui/start_screen.json", + "settings_button": "ui/start_screen.json", + "realms_button": "ui/start_screen.json", + "servers_button": "ui/start_screen.json", + "store_button": "ui/start_screen.json", + "error_store_button": "ui/start_screen.json", + "store_button_sale_banner": "ui/start_screen.json", + "store_button_sale_banner/banner_label_padding": "ui/start_screen.json", + "store_button_sale_banner/banner_label_padding/banner_label": "ui/start_screen.json", + "store_button_content": "ui/start_screen.json", + "store_button_content/button_label": "ui/start_screen.json", + "store_button_content/sales_banner": "ui/start_screen.json", + "store_error_image": "ui/start_screen.json", + "store_error_content": "ui/start_screen.json", + "store_error_content/marketplace_button_label": "ui/start_screen.json", + "store_sale_label": "ui/start_screen.json", + "store_button_art": "ui/start_screen.json", + "store_button_art/default_background": "ui/start_screen.json", + "store_button_art/hover_background": "ui/start_screen.json", + "store_button_art/label": "ui/start_screen.json", + "store_button_art/default_foreground": "ui/start_screen.json", + "store_button_art/hover_foreground": "ui/start_screen.json", + "store_button_stack": "ui/start_screen.json", + "store_button_stack/store_button": "ui/start_screen.json", + "store_button_stack/store_button_art": "ui/start_screen.json", + "store_button_stack/store_button_banner": "ui/start_screen.json", + "store_button_stack/update_icon": "ui/start_screen.json", + "store_button_stack/new_offers_icon": "ui/start_screen.json", + "buy_game_button": "ui/start_screen.json", + "stacked_row": "ui/start_screen.json", + "main_buttons_stack_panel": "ui/start_screen.json", + "main_buttons_stack_panel/title_offset_padding": "ui/start_screen.json", + "main_buttons_stack_panel/title_panel_content": "ui/start_screen.json", + "main_buttons_stack_panel/padding_fill_1": "ui/start_screen.json", + "main_buttons_stack_panel/main_buttons_panel": "ui/start_screen.json", + "main_buttons_stack_panel/main_buttons_panel/main_buttons_panel": "ui/start_screen.json", + "main_buttons_stack_panel/main_buttons_panel_new_player_flow": "ui/start_screen.json", + "main_buttons_stack_panel/main_buttons_panel_new_player_flow/main_buttons_panel_new_player_flow": "ui/start_screen.json", + "main_buttons_stack_panel/padding_fill_2": "ui/start_screen.json", + "main_buttons_stack_panel/padding_fill_2/gamepad_helpers": "ui/start_screen.json", + "main_buttons_stack_panel/padding_3": "ui/start_screen.json", + "main_buttons_panel_new_player_flow": "ui/start_screen.json", + "main_buttons_panel_new_player_flow/stacked_rows": "ui/start_screen.json", + "main_buttons_panel_new_player_flow/stacked_rows/test_label_row": "ui/start_screen.json", + "main_buttons_panel_new_player_flow/stacked_rows/test_label_row/trial_info": "ui/start_screen.json", + "main_buttons_panel_new_player_flow/stacked_rows/spacer": "ui/start_screen.json", + "main_buttons_panel_new_player_flow/stacked_rows/get_started_row": "ui/start_screen.json", + "main_buttons_panel_new_player_flow/stacked_rows/get_started_row/get_started_button": "ui/start_screen.json", + "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row": "ui/start_screen.json", + "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row/main_menu_button": "ui/start_screen.json", + "main_buttons_panel": "ui/start_screen.json", + "main_buttons_panel/stacked_rows": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/play": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/featured_world": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/featured_world/featured_world_button": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/stacked_row_2": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0/settings_button": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/store_button": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/update_icon": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/new_offers_icon": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/ai_lesson_crafter_row": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/ai_lesson_crafter_button": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/lesson_crafter_preview_overlay": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/edu_featured_button": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/edu_featured_button/new_and_featured_button": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/settings_and_editions_panel": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel/settings_button": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel/launch_editions_button": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel/settings_button": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/settings": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/settings/settings_button": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/realms": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/realms/realms_button": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/unlock_full_game_row": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/unlock_full_game_row/unlock_full_game": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/store": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/buy_game": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/buy_game/buy_game_button": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/launch_editions": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/launch_editions/launch_editions_button": "ui/start_screen.json", + "gamepad_helpers": "ui/start_screen.json", + "gamepad_helpers/gamepad_helper_a": "ui/start_screen.json", + "gamepad_helpers/gamepad_helper_b_and_padding": "ui/start_screen.json", + "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b": "ui/start_screen.json", + "gamepad_helpers/gamepad_helper_y_and_padding": "ui/start_screen.json", + "gamepad_helpers/gamepad_helper_y_and_padding/gamepad_helper_y": "ui/start_screen.json", + "gamepad_helpers/gamepad_helper_x_and_padding": "ui/start_screen.json", + "gamepad_helpers/gamepad_helper_x_and_padding/gamepad_helper_x": "ui/start_screen.json", + "invite_notification_icon": "ui/start_screen.json", + "invite_notification_button": "ui/start_screen.json", + "notification_button_text": "ui/start_screen.json", + "notification_button_text_background": "ui/start_screen.json", + "notification_button_text_panel": "ui/start_screen.json", + "notification_button_text_panel/text": "ui/start_screen.json", + "notification_button_text_panel/text/background": "ui/start_screen.json", + "start_screen": "ui/start_screen.json", + "start_screen_content": "ui/start_screen.json", + "start_screen_content/main_buttons_and_title_panel": "ui/start_screen.json", + "start_screen_content/online_button_stack": "ui/start_screen.json", + "start_screen_content/online_button_stack/gathering_panel": "ui/start_screen.json", + "start_screen_content/online_button_stack/upper_online_buttons_panel": "ui/start_screen.json", + "start_screen_content/online_button_stack/lower_online_buttons_panel": "ui/start_screen.json", + "start_screen_content/skin_panel": "ui/start_screen.json", + "start_screen_content/text_panel": "ui/start_screen.json", + "start_screen_content/friendsdrawer_button_panel": "ui/start_screen.json", + }, + "stonecutter": { + "stonecutter_label": "ui/stonecutter_screen.json", + "arrow_icon": "ui/stonecutter_screen.json", + "stone_cell_image": "ui/stonecutter_screen.json", + "container_cell_image": "ui/stonecutter_screen.json", + "toolbar_background": "ui/stonecutter_screen.json", + "highlight_slot_panel": "ui/stonecutter_screen.json", + "highlight_slot_panel/hover_text": "ui/stonecutter_screen.json", + "highlight_slot_panel/highlight": "ui/stonecutter_screen.json", + "highlight_slot_panel/white_border": "ui/stonecutter_screen.json", + "stone_slot_button": "ui/stonecutter_screen.json", + "stone_slot_button/hover": "ui/stonecutter_screen.json", + "item_panel": "ui/stonecutter_screen.json", + "item_panel/item_renderer": "ui/stonecutter_screen.json", + "item_panel/item_renderer/stack_count_label": "ui/stonecutter_screen.json", + "stone_button": "ui/stonecutter_screen.json", + "stone_button/banner_pattern": "ui/stonecutter_screen.json", + "stone_button/item_button_ref": "ui/stonecutter_screen.json", + "scroll_grid": "ui/stonecutter_screen.json", + "scroll_grid_panel": "ui/stonecutter_screen.json", + "scroll_grid_panel/grid": "ui/stonecutter_screen.json", + "scroll_panel": "ui/stonecutter_screen.json", + "stone_book_panel": "ui/stonecutter_screen.json", + "stone_book_panel/bg": "ui/stonecutter_screen.json", + "stone_book_panel/scroll_panel": "ui/stonecutter_screen.json", + "result_slot_button": "ui/stonecutter_screen.json", + "input_item_slot": "ui/stonecutter_screen.json", + "result_item_slot": "ui/stonecutter_screen.json", + "input_slots_stack_panel": "ui/stonecutter_screen.json", + "input_slots_stack_panel/input_item_slot": "ui/stonecutter_screen.json", + "top_half_stack_panel": "ui/stonecutter_screen.json", + "top_half_stack_panel/input_slots_holder": "ui/stonecutter_screen.json", + "top_half_stack_panel/input_slots_holder/input_slots_stack_panel": "ui/stonecutter_screen.json", + "top_half_stack_panel/padding_1": "ui/stonecutter_screen.json", + "top_half_stack_panel/arrow_holder": "ui/stonecutter_screen.json", + "top_half_stack_panel/arrow_holder/arrow_icon": "ui/stonecutter_screen.json", + "top_half_stack_panel/padding_2": "ui/stonecutter_screen.json", + "top_half_stack_panel/result_item_slot_holder": "ui/stonecutter_screen.json", + "top_half_stack_panel/result_item_slot_holder/result_item_slot": "ui/stonecutter_screen.json", + "top_half_panel": "ui/stonecutter_screen.json", + "top_half_panel/top_half_stack_panel": "ui/stonecutter_screen.json", + "right_panel": "ui/stonecutter_screen.json", + "right_panel/common_panel": "ui/stonecutter_screen.json", + "right_panel/stonecutter_screen_inventory": "ui/stonecutter_screen.json", + "right_panel/stonecutter_screen_inventory/stonecutter_label": "ui/stonecutter_screen.json", + "right_panel/stonecutter_screen_inventory/top_half_panel": "ui/stonecutter_screen.json", + "right_panel/stonecutter_screen_inventory/inventory_panel_bottom_half_with_label": "ui/stonecutter_screen.json", + "right_panel/stonecutter_screen_inventory/hotbar_grid": "ui/stonecutter_screen.json", + "toolbar_panel": "ui/stonecutter_screen.json", + "toolbar_panel/toolbar_background": "ui/stonecutter_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel": "ui/stonecutter_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": "ui/stonecutter_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": "ui/stonecutter_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": "ui/stonecutter_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": "ui/stonecutter_screen.json", + "toolbar_anchor": "ui/stonecutter_screen.json", + "toolbar_anchor/toolbar_panel": "ui/stonecutter_screen.json", + "center_fold": "ui/stonecutter_screen.json", + "center_fold/center_bg": "ui/stonecutter_screen.json", + "screen_stack_panel": "ui/stonecutter_screen.json", + "screen_stack_panel/stone_book_panel": "ui/stonecutter_screen.json", + "screen_stack_panel/center_fold": "ui/stonecutter_screen.json", + "screen_stack_panel/right_panel": "ui/stonecutter_screen.json", + "screen_stack_panel/toolbar_anchor": "ui/stonecutter_screen.json", + "stonecutter_panel": "ui/stonecutter_screen.json", + "stonecutter_panel/screen_stack_panel": "ui/stonecutter_screen.json", + "stonecutter_panel/container_gamepad_helpers": "ui/stonecutter_screen.json", + "stonecutter_panel/selected_item_details_factory": "ui/stonecutter_screen.json", + "stonecutter_panel/item_lock_notification_factory": "ui/stonecutter_screen.json", + "stonecutter_panel/inventory_selected_icon_button": "ui/stonecutter_screen.json", + "stonecutter_panel/inventory_take_progress_icon_button": "ui/stonecutter_screen.json", + "stonecutter_panel/flying_item_renderer": "ui/stonecutter_screen.json", + "stonecutter_screen": "ui/stonecutter_screen.json", + }, + "stonecutter_pocket": { + "vertical_arrow_icon": "ui/stonecutter_screen_pocket.json", + "chest_item_renderer": "ui/stonecutter_screen_pocket.json", + "stonecutter_item_renderer": "ui/stonecutter_screen_pocket.json", + "input_item_slot": "ui/stonecutter_screen_pocket.json", + "result_item_slot": "ui/stonecutter_screen_pocket.json", + "right_panel": "ui/stonecutter_screen_pocket.json", + "right_panel/content": "ui/stonecutter_screen_pocket.json", + "right_panel/content/bg": "ui/stonecutter_screen_pocket.json", + "right_panel/content/stonecutter_content_stack_panel": "ui/stonecutter_screen_pocket.json", + "right_panel/navigation_tabs_holder": "ui/stonecutter_screen_pocket.json", + "right_panel/navigation_tabs_holder/right_navigation_tabs": "ui/stonecutter_screen_pocket.json", + "right_tab_stonecutter": "ui/stonecutter_screen_pocket.json", + "right_navigation_tabs": "ui/stonecutter_screen_pocket.json", + "right_navigation_tabs/close": "ui/stonecutter_screen_pocket.json", + "right_navigation_tabs/close/nodrop_zone": "ui/stonecutter_screen_pocket.json", + "right_navigation_tabs/close/close_button": "ui/stonecutter_screen_pocket.json", + "right_navigation_tabs/fill": "ui/stonecutter_screen_pocket.json", + "right_navigation_tabs/right_tab_stonecutter": "ui/stonecutter_screen_pocket.json", + "input_slots_stack_panel": "ui/stonecutter_screen_pocket.json", + "input_slots_stack_panel/input_item_slot": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/label_holder": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/label_holder/stonecutter_label": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/padding_1": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/panel": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/panel/stack_panel": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder/input_slots_stack_panel": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/panel/stack_panel/padding_3": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder/vertical_arrow_icon": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/panel/stack_panel/padding_4": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder/result_item_slot": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/panel/stack_panel/padding_5": "ui/stonecutter_screen_pocket.json", + "inventory_panel": "ui/stonecutter_screen_pocket.json", + "inventory_panel/inventory_title_label_centerer": "ui/stonecutter_screen_pocket.json", + "inventory_panel/inventory_title_label_centerer/inventory_title_label": "ui/stonecutter_screen_pocket.json", + "inventory_panel/inventory_scroll_panel": "ui/stonecutter_screen_pocket.json", + "inventory_scroll_panel": "ui/stonecutter_screen_pocket.json", + "pattern_button": "ui/stonecutter_screen_pocket.json", + "pattern_scroll_panel": "ui/stonecutter_screen_pocket.json", + "left_panel": "ui/stonecutter_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder": "ui/stonecutter_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": "ui/stonecutter_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": "ui/stonecutter_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": "ui/stonecutter_screen_pocket.json", + "left_panel/content": "ui/stonecutter_screen_pocket.json", + "left_panel/content/bg": "ui/stonecutter_screen_pocket.json", + "left_panel/content/inventory_panel": "ui/stonecutter_screen_pocket.json", + "left_panel/content/pattern_scroll_panel": "ui/stonecutter_screen_pocket.json", + "left_tab_stones": "ui/stonecutter_screen_pocket.json", + "left_tab_inventory": "ui/stonecutter_screen_pocket.json", + "left_navigation_tabs": "ui/stonecutter_screen_pocket.json", + "left_navigation_tabs/left_tab_stones": "ui/stonecutter_screen_pocket.json", + "left_navigation_tabs/padding": "ui/stonecutter_screen_pocket.json", + "left_navigation_tabs/left_tab_inventory": "ui/stonecutter_screen_pocket.json", + "pocket_hotbar_and_content_panels": "ui/stonecutter_screen_pocket.json", + "stonecutter_panel": "ui/stonecutter_screen_pocket.json", + "stonecutter_panel/pocket_hotbar_and_content_panels": "ui/stonecutter_screen_pocket.json", + "stonecutter_panel/container_gamepad_helpers": "ui/stonecutter_screen_pocket.json", + "stonecutter_panel/selected_item_details_factory": "ui/stonecutter_screen_pocket.json", + "stonecutter_panel/item_lock_notification_factory": "ui/stonecutter_screen_pocket.json", + "stonecutter_panel/inventory_selected_icon_button": "ui/stonecutter_screen_pocket.json", + "stonecutter_panel/inventory_take_progress_icon_button": "ui/stonecutter_screen_pocket.json", + "stonecutter_panel/flying_item_renderer": "ui/stonecutter_screen_pocket.json", + }, + "storage_management": { + "lock_icon": "ui/storage_management.json", + "storage_header_panel": "ui/storage_management.json", + "storage_header_panel/header_panel": "ui/storage_management.json", + "storage_header_panel/header_panel/file_storage_dropdown": "ui/storage_management.json", + "storage_header_panel/header_panel/file_storage_dropdown_edu": "ui/storage_management.json", + "storage_header_panel/header_panel/clear_cache_button_panel": "ui/storage_management.json", + "storage_header_panel/header_panel/clear_cache_button_panel/clear_cache_button": "ui/storage_management.json", + "storage_header_panel/header_panel/clear_download_cache_button_panel": "ui/storage_management.json", + "storage_header_panel/header_panel/clear_download_cache_button_panel/clear_download_button": "ui/storage_management.json", + "storage_header_panel/header_panel/clear_screenshots_cache_button_panel": "ui/storage_management.json", + "storage_header_panel/header_panel/clear_screenshots_cache_button_panel/clear_screenshots_cache_button": "ui/storage_management.json", + "storage_header_panel/header_panel/delete_local_screenshots_button_panel": "ui/storage_management.json", + "storage_header_panel/header_panel/delete_local_screenshots_button_panel/delete_local_screenshots_button": "ui/storage_management.json", + "storage_header_panel/header_panel/panel": "ui/storage_management.json", + "storage_header_panel/header_panel/panel/multiselect_button": "ui/storage_management.json", + "x_button_image": "ui/storage_management.json", + "storage_main_panel": "ui/storage_management.json", + "storage_main_panel/scroll_content": "ui/storage_management.json", + "storage_footer_panel": "ui/storage_management.json", + "storage_footer_panel/visibleContent": "ui/storage_management.json", + "storage_footer_panel/visibleContent/delete_button": "ui/storage_management.json", + "storage_footer_panel/visibleContent/share_button": "ui/storage_management.json", + "delete_checkbox": "ui/storage_management.json", + "delete_checkbox/selected_checkbox_image": "ui/storage_management.json", + "generic_button": "ui/storage_management.json", + "generic_button/picture": "ui/storage_management.json", + "generic_button/text": "ui/storage_management.json", + "common_scroll_pane": "ui/storage_management.json", + "common_label": "ui/storage_management.json", + "main_content_panel": "ui/storage_management.json", + "main_content_panel/panel": "ui/storage_management.json", + "main_content_panel/panel/spacing": "ui/storage_management.json", + "main_content_panel/panel/delete_checkbox": "ui/storage_management.json", + "main_content_panel/panel/image_panel": "ui/storage_management.json", + "main_content_panel/panel/image_panel/image_border": "ui/storage_management.json", + "main_content_panel/panel/image_panel/image_border/image": "ui/storage_management.json", + "main_content_panel/panel/text_panel_offset": "ui/storage_management.json", + "main_content_panel/panel/text_panel_offset/text_panel": "ui/storage_management.json", + "main_content_panel/panel/text_panel_offset/text_panel/0": "ui/storage_management.json", + "common_main_button": "ui/storage_management.json", + "common_main_button/background": "ui/storage_management.json", + "common_main_button/border": "ui/storage_management.json", + "common_main_button/main_content_panel": "ui/storage_management.json", + "base_glyph": "ui/storage_management.json", + "base_glyph/image": "ui/storage_management.json", + "base_glyph/padding": "ui/storage_management.json", + "main_item_text": "ui/storage_management.json", + "grey_button": "ui/storage_management.json", + "icon_item_text": "ui/storage_management.json", + "world_item_text": "ui/storage_management.json", + "storage_main_item_toggle": "ui/storage_management.json", + "storage_main_item_toggle/main_item_toggle": "ui/storage_management.json", + "storage_main_item_toggle/contentPanel": "ui/storage_management.json", + "storage_main_item_toggle/padding": "ui/storage_management.json", + "storage_scroll_pane": "ui/storage_management.json", + "storage_scroll_pane/category_stack_panel": "ui/storage_management.json", + "storage_scroll_pane/category_stack_panel/stack_panel": "ui/storage_management.json", + "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel": "ui/storage_management.json", + "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel/legacy_world_controls": "ui/storage_management.json", + "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel": "ui/storage_management.json", + "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel/retailtopreview_world_controls": "ui/storage_management.json", + "storage_scroll_pane/multiselect_padding": "ui/storage_management.json", + "world_controls": "ui/storage_management.json", + "world_template_controls": "ui/storage_management.json", + "resource_controls": "ui/storage_management.json", + "behavior_controls": "ui/storage_management.json", + "skin_controls": "ui/storage_management.json", + "cached_controls": "ui/storage_management.json", + "resource_sub_item": "ui/storage_management.json", + "resource_sub_item/dummy_panel": "ui/storage_management.json", + "resource_sub_item/main_panel": "ui/storage_management.json", + "resource_sub_item/main_panel/content": "ui/storage_management.json", + "resource_toggle": "ui/storage_management.json", + "resource_toggle/content_toggle": "ui/storage_management.json", + "resource_toggle/content_toggle/default": "ui/storage_management.json", + "resource_toggle/content_toggle/hover": "ui/storage_management.json", + "resource_toggle/content_toggle/unchecked": "ui/storage_management.json", + "resource_toggle/content_toggle/unchecked_hover": "ui/storage_management.json", + "resource_toggle/item_button_panel": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_0": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/blank": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/generate_texture_list_button": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_1": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/delete_button": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_2": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/blank": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/share_button": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_3": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank_3": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_4": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/blank": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/dependency_button": "ui/storage_management.json", + "sub_item_tray_button": "ui/storage_management.json", + "glyph_sub_icon": "ui/storage_management.json", + "sub_item_blank_button": "ui/storage_management.json", + "texture_icon_text": "ui/storage_management.json", + "texture_icon_sub_item": "ui/storage_management.json", + "version_sub_item": "ui/storage_management.json", + "pack_description_sub_item": "ui/storage_management.json", + "world_sub_text": "ui/storage_management.json", + "world_template_sub_text": "ui/storage_management.json", + "basic_sub_item": "ui/storage_management.json", + "dropdown_button": "ui/storage_management.json", + "dropdown_button_content": "ui/storage_management.json", + "dropdown_button_content/image_panel": "ui/storage_management.json", + "dropdown_button_content/image_panel/icon": "ui/storage_management.json", + "dropdown_button_content/text_panel": "ui/storage_management.json", + "dropdown_button_content/text_panel/main_label": "ui/storage_management.json", + "filter_options": "ui/storage_management.json", + "filter_options/0": "ui/storage_management.json", + "light_assets": "ui/storage_management.json", + "button_add": "ui/storage_management.json", + "sort_panel": "ui/storage_management.json", + "sort_panel/default": "ui/storage_management.json", + "sort_toggle": "ui/storage_management.json", + "storage_scroll_panel": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/main_item_toggle": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/dummy_panel": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/sync_legacy_world_button": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/dummy_panel": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/dummy_panel": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/sync_legacy_world_description": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/itemsPanel": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel_dummy_panel": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/dummy_panel": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/sync_legacy_world_conversion_description": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/loading_legacy_worlds_label": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/padding": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/progress_loading_bars": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/padding": "ui/storage_management.json", + "legacy_world_main_item_text": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/main_item_toggle": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/dummy_panel": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/sync_retailtopreview_world_button": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/dummy_panel": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/dummy_panel": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/sync_retailtopreview_world_description": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/itemsPanel": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel_dummy_panel": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/dummy_panel": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/sync_retailtopreview_world_conversion_description": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/loading_retailtopreview_worlds_label": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/padding": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/progress_loading_bars": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/padding": "ui/storage_management.json", + "retailtopreview_world_main_item_text": "ui/storage_management.json", + }, + "storage_management_popup": { + "storage_dependency_modal": "ui/storage_management_popup.json", + "storage_dependency_modal/base": "ui/storage_management_popup.json", + "storage_dependency_modal/base/background_with_buttons": "ui/storage_management_popup.json", + "storage_dependency_modal/base/title": "ui/storage_management_popup.json", + "storage_dependency_modal/base/dependencies": "ui/storage_management_popup.json", + "storage_dependency_modal/base/two_buttons": "ui/storage_management_popup.json", + "storage_dependency_modal/base/two_buttons/disabled_left": "ui/storage_management_popup.json", + "storage_dependency_modal/base/two_buttons/left": "ui/storage_management_popup.json", + "storage_dependency_modal/base/two_buttons/right": "ui/storage_management_popup.json", + "storage_dependency_panel": "ui/storage_management_popup.json", + "storage_dependency_panel/scroll": "ui/storage_management_popup.json", + "storage_dependency_scroll_panel": "ui/storage_management_popup.json", + "dependency_item_content": "ui/storage_management_popup.json", + "dependency_item_content/content": "ui/storage_management_popup.json", + "dependency_scroll_pane": "ui/storage_management_popup.json", + "dependency_scroll_pane/main_label": "ui/storage_management_popup.json", + "dependency_scroll_pane/contentPanel": "ui/storage_management_popup.json", + "dependency_item": "ui/storage_management_popup.json", + "dependency_item_small": "ui/storage_management_popup.json", + "dependency_resource_item": "ui/storage_management_popup.json", + "dependency_resource_item_small": "ui/storage_management_popup.json", + "dependency_sub_item": "ui/storage_management_popup.json", + "dependency_sub_item/border": "ui/storage_management_popup.json", + "dependency_sub_item/border/stack": "ui/storage_management_popup.json", + "dependency_sub_item/border/stack/padding_0": "ui/storage_management_popup.json", + "dependency_sub_item/border/stack/wrapper": "ui/storage_management_popup.json", + "dependency_sub_item/border/stack/wrapper/dependency_item": "ui/storage_management_popup.json", + "dependency_sub_item/border/stack/panel_0": "ui/storage_management_popup.json", + "dependency_sub_item/border/stack/panel_0/main_label": "ui/storage_management_popup.json", + "dependency_sub_item/border/stack/contentPanel": "ui/storage_management_popup.json", + "dependency_sub_item/border/stack/panel_1": "ui/storage_management_popup.json", + "dependency_sub_item/border/stack/panel_1/remove_pack_button": "ui/storage_management_popup.json", + "dependency_sub_item/border/stack/padding_1": "ui/storage_management_popup.json", + "dependency_sub_item/padding": "ui/storage_management_popup.json", + "sharing_popup_content": "ui/storage_management_popup.json", + }, + "common_store": { + "store_base_screen": "ui/store_common.json", + "label": "ui/store_common.json", + "offer_image_panel": "ui/store_common.json", + "banner_fill": "ui/store_common.json", + "store_description_background": "ui/store_common.json", + "store_description_background_dark": "ui/store_common.json", + "text_style_label": "ui/store_common.json", + "text_style_label/text_label": "ui/store_common.json", + "sdl_texture": "ui/store_common.json", + "store_offer_grid_button": "ui/store_common.json", + "store_offer_grid_button/hover": "ui/store_common.json", + "store_offer_grid_button/hover/key_art_size_panel": "ui/store_common.json", + "store_offer_grid_button/hover/key_art_size_panel/key_art_frame": "ui/store_common.json", + "store_offer_grid_button/pressed": "ui/store_common.json", + "store_offer_grid_button/pressed/key_art_size_panel": "ui/store_common.json", + "store_offer_grid_button/pressed/key_art_size_panel/key_art_frame": "ui/store_common.json", + "store_offer_grid_button/icon_overlay_panel": "ui/store_common.json", + "ribbon_bar_text_background": "ui/store_common.json", + "ribbon_bar_red_hover_text_background": "ui/store_common.json", + "store_background": "ui/store_common.json", + "coin_icon": "ui/store_common.json", + "tag": "ui/store_common.json", + "tag/new_offer_label": "ui/store_common.json", + "marketplace_error_icon": "ui/store_common.json", + "new_offer_icon": "ui/store_common.json", + "status_new_offer_icon": "ui/store_common.json", + "update_balloon_icon": "ui/store_common.json", + "icon_overlay_panel": "ui/store_common.json", + "icon_overlay_panel/icon_overlay_position_factory": "ui/store_common.json", + "icon_overlay_position_factory": "ui/store_common.json", + "top_left_icon_factory": "ui/store_common.json", + "top_middle_icon_factory": "ui/store_common.json", + "top_right_icon_factory": "ui/store_common.json", + "left_middle_icon_factory": "ui/store_common.json", + "center_icon_factory": "ui/store_common.json", + "right_middle_icon_factory": "ui/store_common.json", + "bottom_left_icon_factory": "ui/store_common.json", + "bottom_middle_icon_factory": "ui/store_common.json", + "bottom_right_icon_factory": "ui/store_common.json", + "icon_factory": "ui/store_common.json", + "new_offer_icon_panel": "ui/store_common.json", + "new_offer_icon_panel/new_icon": "ui/store_common.json", + "update_offer_icon_panel": "ui/store_common.json", + "update_offer_icon_panel/update_icon": "ui/store_common.json", + "icon_overlay_image_panel": "ui/store_common.json", + "icon_overlay_image_panel/image_stack_panel": "ui/store_common.json", + "icon_overlay_image_panel/image_stack_panel/icon": "ui/store_common.json", + "icon_overlay_image_panel/image_stack_panel/padding": "ui/store_common.json", + "icon_overlay_sdl_padding": "ui/store_common.json", + "status_icon_overlay": "ui/store_common.json", + "status_icon_overlay/icon_overlay_label_panel": "ui/store_common.json", + "status_icon_overlay/icon_overlay_label_panel/left_margin_padding": "ui/store_common.json", + "status_icon_overlay/icon_overlay_label_panel/left_padding_1": "ui/store_common.json", + "status_icon_overlay/icon_overlay_label_panel/left_padding_2": "ui/store_common.json", + "status_icon_overlay/icon_overlay_label_panel/icon_panel": "ui/store_common.json", + "status_icon_overlay/icon_overlay_label_panel/icon_panel/icon_overlay_label": "ui/store_common.json", + "status_icon_overlay/icon_overlay_label_panel/right_padding_1": "ui/store_common.json", + "status_icon_overlay/icon_overlay_label_panel/right_padding_2": "ui/store_common.json", + "status_icon_overlay/icon_overlay_label_panel/right_margin_padding": "ui/store_common.json", + "status_icon_panel": "ui/store_common.json", + "status_icon_panel/new_offer_icon": "ui/store_common.json", + "status_icon_panel/update_icon": "ui/store_common.json", + "prompt_icon": "ui/store_common.json", + "up_arrow_icon": "ui/store_common.json", + "plus_icon": "ui/store_common.json", + "bang_icon": "ui/store_common.json", + "user_icon_small": "ui/store_common.json", + "user_icon_hover": "ui/store_common.json", + "gamepad_store_helper": "ui/store_common.json", + "purchase_coins_panel": "ui/store_common.json", + "purchase_coins_panel/plus_button": "ui/store_common.json", + "inventory_panel": "ui/store_common.json", + "inventory_panel/inventory_button": "ui/store_common.json", + "progress_loading_bars": "ui/store_common.json", + "progress_loading_spinner": "ui/store_common.json", + "progress_loading": "ui/store_common.json", + "progress_loading/centerer": "ui/store_common.json", + "progress_loading/centerer/progress_loading_spinner": "ui/store_common.json", + "progress_loading/progress_loading_outline": "ui/store_common.json", + "progress_loading/stack_panel": "ui/store_common.json", + "progress_loading/stack_panel/top_panel": "ui/store_common.json", + "progress_loading/stack_panel/top_panel/error_glyph_panel": "ui/store_common.json", + "progress_loading/stack_panel/top_panel/error_glyph_panel/error_image": "ui/store_common.json", + "progress_loading/stack_panel/top_panel/padding": "ui/store_common.json", + "progress_loading/stack_panel/top_panel/store_failure_text": "ui/store_common.json", + "progress_loading/stack_panel/padding": "ui/store_common.json", + "progress_loading/stack_panel/image": "ui/store_common.json", + "progress_loading/store_failure_code": "ui/store_common.json", + "store_empty_progress_bar_icon": "ui/store_common.json", + "store_full_progress_bar_icon": "ui/store_common.json", + "store_progress_bar_nub": "ui/store_common.json", + "store_progress_bar_icon": "ui/store_common.json", + "store_progress_bar_icon/empty_progress_bar_icon": "ui/store_common.json", + "store_progress_bar_icon/progress_percent_panel": "ui/store_common.json", + "store_progress_bar_icon/progress_percent_panel/full_progress_bar_icon": "ui/store_common.json", + "store_progress_bar_icon/progress_percent_panel/progress_bar_nub": "ui/store_common.json", + "screen_contents_with_gamepad_helpers": "ui/store_common.json", + "screen_contents_with_gamepad_helpers/dialog_panel": "ui/store_common.json", + "screen_contents_with_gamepad_helpers/dialog_panel/dialog": "ui/store_common.json", + "screen_contents_with_gamepad_helpers/padding": "ui/store_common.json", + "screen_contents_with_gamepad_helpers/gamepad_helpers_panel": "ui/store_common.json", + "screen_contents_with_gamepad_helpers/gamepad_helpers_panel/gamepad_helpers_a_and_b": "ui/store_common.json", + "text_strike_through": "ui/store_common.json", + "markdown_banner": "ui/store_common.json", + "markdown_triangle": "ui/store_common.json", + "timer_panel": "ui/store_common.json", + "timer_panel/timer": "ui/store_common.json", + "store_offer_type_icon": "ui/store_common.json", + "addon_pack_icon": "ui/store_common.json", + "addon_pack_small_icon": "ui/store_common.json", + "realms_plus_icon": "ui/store_common.json", + "resource_pack_icon": "ui/store_common.json", + "resource_pack_small_icon": "ui/store_common.json", + "skinpack_icon": "ui/store_common.json", + "skinpack_small_icon": "ui/store_common.json", + "world_icon": "ui/store_common.json", + "world_small_icon": "ui/store_common.json", + "mashup_icon": "ui/store_common.json", + "mashup_small_icon": "ui/store_common.json", + "persona_icon": "ui/store_common.json", + "persona_small_icon": "ui/store_common.json", + "small_padding_panel": "ui/store_common.json", + "resource_pack_small_icon_with_buffer": "ui/store_common.json", + "resource_pack_small_icon_with_buffer/resource_pack_small_icon": "ui/store_common.json", + "resource_pack_small_icon_with_buffer/small_padding_panel": "ui/store_common.json", + "addon_pack_small_icon_with_buffer": "ui/store_common.json", + "addon_pack_small_icon_with_buffer/addon_pack_small_icon": "ui/store_common.json", + "addon_pack_small_icon_with_buffer/small_padding_panel": "ui/store_common.json", + "skinpack_small_icon_with_buffer": "ui/store_common.json", + "skinpack_small_icon_with_buffer/skinpack_small_icon": "ui/store_common.json", + "skinpack_small_icon_with_buffer/small_padding_panel": "ui/store_common.json", + "world_small_icon_with_buffer": "ui/store_common.json", + "world_small_icon_with_buffer/world_small_icon": "ui/store_common.json", + "world_small_icon_with_buffer/small_padding_panel": "ui/store_common.json", + "mashup_small_icon_with_buffer": "ui/store_common.json", + "mashup_small_icon_with_buffer/mashup_small_icon": "ui/store_common.json", + "mashup_small_icon_with_buffer/small_padding_panel": "ui/store_common.json", + "persona_small_icon_with_buffer": "ui/store_common.json", + "persona_small_icon_with_buffer/persona_small_icon": "ui/store_common.json", + "persona_small_icon_with_buffer/small_padding_panel": "ui/store_common.json", + "realms_icon": "ui/store_common.json", + "realms_banner_icon": "ui/store_common.json", + "csb_banner_icon": "ui/store_common.json", + "csb_expiration": "ui/store_common.json", + "csb_expiration/background": "ui/store_common.json", + "csb_expiration/contents": "ui/store_common.json", + "csb_expiration/contents/csb_icon": "ui/store_common.json", + "csb_expiration/contents/pad_0": "ui/store_common.json", + "csb_expiration/contents/text_panel": "ui/store_common.json", + "csb_expiration/contents/text_panel/text": "ui/store_common.json", + "pack_icon_stack": "ui/store_common.json", + "pack_icon_stack/pack_icon_stack_factory": "ui/store_common.json", + "pack_icon_stack_factory": "ui/store_common.json", + "markdown_background": "ui/store_common.json", + "markdown_background/banner_panel": "ui/store_common.json", + "markdown_background/banner_panel/banner": "ui/store_common.json", + "markdown_background/banner_panel/banner/banner_content_stack_panel": "ui/store_common.json", + "markdown_background/banner_panel/banner/banner_content_stack_panel/timer_panel": "ui/store_common.json", + "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel": "ui/store_common.json", + "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel/pack_icon_stack": "ui/store_common.json", + "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel": "ui/store_common.json", + "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel/markdown_label": "ui/store_common.json", + "markdown_background/triangle_panel": "ui/store_common.json", + "markdown_background/triangle_panel/triangle": "ui/store_common.json", + "store_top_bar": "ui/store_common.json", + "store_top_bar_filler": "ui/store_common.json", + "direction_button_panel": "ui/store_common.json", + "direction_button_panel/chevron_image": "ui/store_common.json", + "cycle_pack_button": "ui/store_common.json", + "cycle_pack_left_button": "ui/store_common.json", + "cycle_pack_right_button": "ui/store_common.json", + "restore_purchases": "ui/store_common.json", + "back_content_panel": "ui/store_common.json", + "back_content_panel/back_button": "ui/store_common.json", + "unlock_with_coins_button_stack_panel": "ui/store_common.json", + "unlock_with_coins_button_stack_panel/coin_panel": "ui/store_common.json", + "unlock_with_coins_button_stack_panel/coin_panel/coin": "ui/store_common.json", + "unlock_with_coins_button_stack_panel/padding_1": "ui/store_common.json", + "unlock_with_coins_button_stack_panel/unlock_text": "ui/store_common.json", + "store_dialog_with_coin_header": "ui/store_common.json", + "store_coins_title_label": "ui/store_common.json", + "search_header_stack": "ui/store_common.json", + "search_header_stack/gamepad_helper_y_alignment_hack": "ui/store_common.json", + "search_header_stack/gamepad_helper_y_alignment_hack/gamepad_helper_y": "ui/store_common.json", + "search_header_stack/search_header_text_box_panel": "ui/store_common.json", + "search_header_stack/search_header_text_box_panel/search_header_text_box": "ui/store_common.json", + "search_header_stack/search_header_text_box_panel/clear_button": "ui/store_common.json", + "search_header_stack/store_layout_search_button": "ui/store_common.json", + "search_header_stack/padding0": "ui/store_common.json", + "sdl_store_header_with_coins": "ui/store_common.json", + "sdl_store_header_with_coins/sdl_store_header_with_coins_content": "ui/store_common.json", + "top_bar_with_coins_panel": "ui/store_common.json", + "top_bar_with_coins_panel/top_bar": "ui/store_common.json", + "top_bar_with_coins_panel/top_bar/title_stack_panel": "ui/store_common.json", + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding1": "ui/store_common.json", + "top_bar_with_coins_panel/top_bar/title_stack_panel/back_button_content_panel": "ui/store_common.json", + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding2": "ui/store_common.json", + "top_bar_with_coins_panel/top_bar/title_stack_panel/header_title_panel": "ui/store_common.json", + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding3": "ui/store_common.json", + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding4": "ui/store_common.json", + "top_bar_with_coins_panel/top_bar/title_stack_panel/status_and_coins": "ui/store_common.json", + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding5": "ui/store_common.json", + "top_bar_with_coins_panel/top_bar/title_stack_panel/search_header_stack": "ui/store_common.json", + "sdl_store_header_with_coins_content": "ui/store_common.json", + "sdl_store_header_with_coins_content/top_bar_coins": "ui/store_common.json", + "store_header_with_coins": "ui/store_common.json", + "store_header_with_coins/top_bar_coins": "ui/store_common.json", + "store_header_with_coins/child_control": "ui/store_common.json", + "status_with_coins": "ui/store_common.json", + "status_with_coins/inventory_panel": "ui/store_common.json", + "status_with_coins/inventory_panel/inventory_button": "ui/store_common.json", + "status_with_coins/padding0": "ui/store_common.json", + "status_with_coins/coin_balance_panel": "ui/store_common.json", + "status_with_coins/coin_balance_panel/coin_balance_panel": "ui/store_common.json", + "status_with_coins/padding1": "ui/store_common.json", + "coins_with_title": "ui/store_common.json", + "coins_with_title/coin_balance_panel": "ui/store_common.json", + "coins_with_title/title_panel": "ui/store_common.json", + "wallet_button_panel": "ui/store_common.json", + "wallet_button_panel/purchase_coin_panel_alignment_hack": "ui/store_common.json", + "wallet_button_panel/purchase_coin_panel_alignment_hack/purchase_coin_panel": "ui/store_common.json", + "wallet_button_panel/plus_image": "ui/store_common.json", + "wallet_button_panel/gamepad_helper_x_alignment_hack": "ui/store_common.json", + "wallet_button_panel/gamepad_helper_x_alignment_hack/gamepad_helper_x": "ui/store_common.json", + "coin_balance_panel": "ui/store_common.json", + "coin_balance_panel/coin_purchase_in_progress_panel": "ui/store_common.json", + "coin_balance_panel/coin_purchase_in_progress_panel/coin_purchase_in_progress": "ui/store_common.json", + "coin_balance_panel/horizontal_coin_stack": "ui/store_common.json", + "coin_balance_panel/horizontal_coin_stack/padding": "ui/store_common.json", + "coin_balance_panel/horizontal_coin_stack/coin_icon": "ui/store_common.json", + "coin_balance_panel/horizontal_coin_stack/small_filler": "ui/store_common.json", + "coin_balance_panel/horizontal_coin_stack/coin_text_holder": "ui/store_common.json", + "coin_balance_panel/horizontal_coin_stack/coin_text_holder/coin_balance_text": "ui/store_common.json", + "my_account_button_content": "ui/store_common.json", + "my_account_button_content/my_account_content": "ui/store_common.json", + "my_account_button_content/my_account_content/user_icon": "ui/store_common.json", + "my_account_button_content/my_account_content/my_account_label_panel": "ui/store_common.json", + "my_account_button_content/my_account_content/my_account_label_panel/padding": "ui/store_common.json", + "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label": "ui/store_common.json", + "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label/my_account_label": "ui/store_common.json", + "inventory_button_panel": "ui/store_common.json", + "inventory_button_panel/inventory_button": "ui/store_common.json", + "inventory_button_panel/inventory_button/status_panel": "ui/store_common.json", + "inventory_button": "ui/store_common.json", + "inventory_button/my_content_button": "ui/store_common.json", + "inventory_button/my_content_button/library_icon": "ui/store_common.json", + "inventory_button/my_content_button/library_icon_bevel": "ui/store_common.json", + "inventory_button/updates_with_bevel": "ui/store_common.json", + "inventory_button/updates_with_bevel/update_glyph": "ui/store_common.json", + "inventory_button/updates_with_bevel/updates_bevel": "ui/store_common.json", + "inventory_button/label_alignment_pannel": "ui/store_common.json", + "inventory_button/label_alignment_pannel/label_panel": "ui/store_common.json", + "inventory_button/label_alignment_pannel/label_panel/inventory_label": "ui/store_common.json", + "xbl_button_content": "ui/store_common.json", + "xbl_button_content/xbl_icon": "ui/store_common.json", + "xbl_button_content/padding_0": "ui/store_common.json", + "xbl_button_content/disconnected_label": "ui/store_common.json", + "xbl_button_content/padding_1": "ui/store_common.json", + "xbl_button_content/error_icon_panel": "ui/store_common.json", + "xbl_button_content/error_icon_panel/error_icon": "ui/store_common.json", + "disclaimer_panel": "ui/store_common.json", + "disclaimer_panel/legal_text_label": "ui/store_common.json", + "grey_bar_panel": "ui/store_common.json", + "grey_bar_panel/color_panel": "ui/store_common.json", + "grey_bar_panel/color_panel/grey_bar": "ui/store_common.json", + "grey_bar_panel/color_panel/green_bar": "ui/store_common.json", + "grey_bar_panel/pad": "ui/store_common.json", + "tab_name_panel": "ui/store_common.json", + "tab_name_panel/bar_panel": "ui/store_common.json", + "tab_name_panel/bar_panel/green_bar": "ui/store_common.json", + "tab_name_panel/button_panel": "ui/store_common.json", + "tab_name_panel/button_panel/tab_name_button_grey": "ui/store_common.json", + "tab_name_panel/button_panel/tab_name_button_white": "ui/store_common.json", + "tab_name_panel/pad_1": "ui/store_common.json", + "store_offer_item_title_panel": "ui/store_common.json", + "store_offer_item_title_panel/offer_title": "ui/store_common.json", + "store_offer_item_creator_panel": "ui/store_common.json", + "store_offer_item_creator_panel/pack_icon_panel": "ui/store_common.json", + "store_offer_item_creator_panel/pack_icon_panel/pack_icon_stack": "ui/store_common.json", + "store_offer_item_creator_panel/creator_label": "ui/store_common.json", + "store_offer_ratings": "ui/store_common.json", + "store_offer_ratings/rating_text_panel": "ui/store_common.json", + "vertical_store_offer_price_info_panel": "ui/store_common.json", + "vertical_store_offer_price_info_panel/sales_banner": "ui/store_common.json", + "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels": "ui/store_common.json", + "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/markdown_panel": "ui/store_common.json", + "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/padding_markdown_panel_right": "ui/store_common.json", + "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel": "ui/store_common.json", + "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel/offer_status_text": "ui/store_common.json", + "vertical_store_offer_price_info_panel/sales_banner/padding_to_right": "ui/store_common.json", + "store_offer_price_info_panel": "ui/store_common.json", + "store_offer_price_info_panel/sales_banner": "ui/store_common.json", + "store_offer_price_info_panel/sales_banner/sales_markdown_percentage_panel": "ui/store_common.json", + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown": "ui/store_common.json", + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/fill_markdown_panel_left": "ui/store_common.json", + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/markdown_panel": "ui/store_common.json", + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/padding_markdown_panel_right": "ui/store_common.json", + "store_offer_price_info_panel/sales_banner/coin_panel": "ui/store_common.json", + "store_offer_price_info_panel/sales_banner/coin_panel/offer_coin_icon": "ui/store_common.json", + "store_offer_price_info_panel/sales_banner/padding_3": "ui/store_common.json", + "store_offer_price_info_panel/sales_banner/offer_prompt_panel": "ui/store_common.json", + "store_offer_sales_markdown_percentage_panel": "ui/store_common.json", + "store_offer_sales_markdown_percentage_panel/markdown_background": "ui/store_common.json", + "store_offer_prompt_panel": "ui/store_common.json", + "store_offer_prompt_panel/offer_status_text": "ui/store_common.json", + "featured_key_art": "ui/store_common.json", + "featured_key_art/bg": "ui/store_common.json", + "featured_key_art/bg/featured_key_art": "ui/store_common.json", + "featured_key_art/bg/progress_loading": "ui/store_common.json", + "featured_key_art/bg/new_offer_icon": "ui/store_common.json", + "featured_key_art/focus_border": "ui/store_common.json", + "price_panel": "ui/store_common.json", + "price_panel/featured_icon_panel": "ui/store_common.json", + "price_panel/featured_icon_panel/featured_offer_coin_icon": "ui/store_common.json", + "price_panel/price_label_panel": "ui/store_common.json", + "price_panel/price_label_panel/price": "ui/store_common.json", + "price_panel/padding": "ui/store_common.json", + "vertical_padding_4": "ui/store_common.json", + "vertical_padding_2": "ui/store_common.json", + "sdl_vertical_padding_fill": "ui/store_common.json", + "footer": "ui/store_common.json", + "footer/restore_purchases": "ui/store_common.json", + "store_section_panel": "ui/store_common.json", + "store_section_panel/store_section_panel_outline": "ui/store_common.json", + "store_section_panel/section_panel": "ui/store_common.json", + "store_section_panel/section_panel/header": "ui/store_common.json", + "store_section_panel/section_panel/section_panel": "ui/store_common.json", + "store_section_panel/section_panel/section_panel/background": "ui/store_common.json", + "store_section_factory": "ui/store_common.json", + "store_static_section_factory": "ui/store_common.json", + "rtx_label": "ui/store_common.json", + "rtx_label/banner": "ui/store_common.json", + "rtx_label/banner/icon": "ui/store_common.json", + "subscription_chevron": "ui/store_common.json", + "subscription_chevron/subscription_chevron_panel": "ui/store_common.json", + "subscription_chevron/subscription_chevron_panel/csb_chevron": "ui/store_common.json", + "subscription_chevron/subscription_chevron_panel/sales_banner_background": "ui/store_common.json", + "csb_banner": "ui/store_common.json", + "csb_banner/banner": "ui/store_common.json", + "pagination_content_panel": "ui/store_common.json", + "pagination_content_panel/padding_left": "ui/store_common.json", + "pagination_content_panel/first_page_button": "ui/store_common.json", + "pagination_content_panel/pagination_middle_buttons_panel": "ui/store_common.json", + "pagination_content_panel/padding_right_fill": "ui/store_common.json", + "pagination_content_panel/go_to_top_button": "ui/store_common.json", + "pagination_panel": "ui/store_common.json", + "pagination_panel/top_padding": "ui/store_common.json", + "pagination_panel/pagination_content": "ui/store_common.json", + "pagination_panel/bottom_padding": "ui/store_common.json", + "store_offer_grid_panel_content": "ui/store_common.json", + "store_offer_grid_panel_content/header_centerer_panel": "ui/store_common.json", + "store_offer_grid_panel_content/store_offer_grid_factory": "ui/store_common.json", + "store_offer_grid_panel_content/pagination_centerer": "ui/store_common.json", + "store_offer_grid_panel_content/divider": "ui/store_common.json", + "store_offer_grid_panel": "ui/store_common.json", + "pagination_top_button_panel": "ui/store_common.json", + "pagination_top_button_panel/top_button_image": "ui/store_common.json", + "pagination_middle_buttons_panel": "ui/store_common.json", + "pagination_middle_buttons_panel/previous_page_button": "ui/store_common.json", + "pagination_middle_buttons_panel/current_page_number_panel": "ui/store_common.json", + "pagination_middle_buttons_panel/current_page_number_panel/current_page_number": "ui/store_common.json", + "pagination_middle_buttons_panel/next_page_button": "ui/store_common.json", + "vertical_store_offer_grid_panel": "ui/store_common.json", + "vertical_store_offer_grid_panel/header": "ui/store_common.json", + "vertical_store_offer_grid_panel/centering_panel": "ui/store_common.json", + "vertical_store_offer_grid_panel/centering_panel/vertical_store_offer_grid_content": "ui/store_common.json", + "vertical_store_offer_grid_panel/padding_0": "ui/store_common.json", + "vertical_store_offer_grid_panel/divider": "ui/store_common.json", + "carousel_row_panel": "ui/store_common.json", + "carousel_row_panel/top_panel": "ui/store_common.json", + "carousel_row_panel/top_panel/pad_0": "ui/store_common.json", + "carousel_row_panel/top_panel/tab_names_factory_panel": "ui/store_common.json", + "carousel_row_panel/top_padding": "ui/store_common.json", + "carousel_row_panel/middle_panel": "ui/store_common.json", + "carousel_row_panel/middle_panel/left_button_panel": "ui/store_common.json", + "carousel_row_panel/middle_panel/left_button_panel/left_button": "ui/store_common.json", + "carousel_row_panel/middle_panel/left_button_panel/left_bumper": "ui/store_common.json", + "carousel_row_panel/middle_panel/main_panel_factory": "ui/store_common.json", + "carousel_row_panel/middle_panel/right_button_panel": "ui/store_common.json", + "carousel_row_panel/middle_panel/right_button_panel/right_button": "ui/store_common.json", + "carousel_row_panel/middle_panel/right_button_panel/right_bumper": "ui/store_common.json", + "carousel_row_panel/bottom_panel": "ui/store_common.json", + "carousel_row_panel/bottom_panel/grey_bar_factory_panel": "ui/store_common.json", + "carousel_row_panel/bottom_padding": "ui/store_common.json", + "carousel_row_panel/divider_panel": "ui/store_common.json", + "carousel_row_panel/divider_panel/divider": "ui/store_common.json", + "carousel_factory": "ui/store_common.json", + "hero_row_l2_panel": "ui/store_common.json", + "hero_row_l2_panel/header": "ui/store_common.json", + "hero_row_l2_panel/centering_panel": "ui/store_common.json", + "hero_row_l2_panel/centering_panel/l2_featured_stack": "ui/store_common.json", + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_0": "ui/store_common.json", + "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_1": "ui/store_common.json", + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_1": "ui/store_common.json", + "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_2": "ui/store_common.json", + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_2": "ui/store_common.json", + "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_3": "ui/store_common.json", + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_3": "ui/store_common.json", + "hero_row_l2_panel/padding_0": "ui/store_common.json", + "hero_row_l2_panel/divider": "ui/store_common.json", + "blade_row_key_art": "ui/store_common.json", + "blade_row_key_art/blade_row_key_art_image": "ui/store_common.json", + "blade_row_key_art/blade_row_key_art_image/key_art_border": "ui/store_common.json", + "one_key_art_screenshot": "ui/store_common.json", + "one_key_art_screenshot_panel": "ui/store_common.json", + "one_key_art_screenshot_panel/blade_offer_frame": "ui/store_common.json", + "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot": "ui/store_common.json", + "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot/one_key_art_frame": "ui/store_common.json", + "screenshots_grid": "ui/store_common.json", + "screenshots_grid/screenshot_1": "ui/store_common.json", + "screenshots_grid/screenshot_2": "ui/store_common.json", + "screenshots_grid/screenshot_3": "ui/store_common.json", + "screenshots_grid/screenshot_4": "ui/store_common.json", + "blade_offer_details_title": "ui/store_common.json", + "blade_offer_sale_markdown": "ui/store_common.json", + "blade_offer_description_details": "ui/store_common.json", + "blade_offer_description_details/blade_title_stack": "ui/store_common.json", + "blade_offer_description_details/blade_title_stack/blade_title": "ui/store_common.json", + "blade_offer_description_details/blade_offer_creator_label": "ui/store_common.json", + "blade_offer_description_details/blade_offer_description_padding_2": "ui/store_common.json", + "blade_offer_description_details/ratings_and_coins": "ui/store_common.json", + "blade_offer_description_details/ratings_and_coins/subscription_panel": "ui/store_common.json", + "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel": "ui/store_common.json", + "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel/blade_markdown_background": "ui/store_common.json", + "blade_offer_description_details/ratings_and_coins/ratings_panel": "ui/store_common.json", + "blade_offer_description_details/ratings_and_coins/ratings_panel/blade_ratings": "ui/store_common.json", + "blade_offer_description_details/ratings_and_coins/blade_rating_count_panel": "ui/store_common.json", + "blade_offer_description_details/ratings_and_coins/fill_padding": "ui/store_common.json", + "blade_offer_description_details/ratings_and_coins/blade_offer_price_markdown_panel": "ui/store_common.json", + "blade_offer_description_details/ratings_and_coins/price_panel": "ui/store_common.json", + "blade_offer_description_details/ratings_and_coins/price_panel/price": "ui/store_common.json", + "blade_offer_description_details/ratings_and_coins/price_panel_padding_right": "ui/store_common.json", + "blade_offer_description_details/blade_offer_description_padding_3": "ui/store_common.json", + "screenshots_and_offer_details_panel": "ui/store_common.json", + "screenshots_and_offer_details_panel/blade_offer_screenshots_grid": "ui/store_common.json", + "screenshots_and_offer_details_panel/blade_offer_description_area": "ui/store_common.json", + "screenshots_and_offer_details_panel/blade_offer_description_area/blade_offer_description_border": "ui/store_common.json", + "screenshots_and_offer_details_panel/blade_offer_description_area/hero_blade_offer_description_details": "ui/store_common.json", + "blade_row_featured_panel": "ui/store_common.json", + "blade_row_featured_panel/blade_row_featured_key_art": "ui/store_common.json", + "blade_row_featured_panel/blade_offer_screenshots_and_details_panel": "ui/store_common.json", + "transparent_content_button": "ui/store_common.json", + "hero_blade_row_panel": "ui/store_common.json", + "hero_blade_row_panel/blade_row_transparent_button": "ui/store_common.json", + "hero_row_panel": "ui/store_common.json", + "hero_row_panel/header": "ui/store_common.json", + "hero_row_panel/centering_panel": "ui/store_common.json", + "hero_row_panel/centering_panel/featured_stack": "ui/store_common.json", + "hero_row_panel/centering_panel/featured_stack/hero_offer": "ui/store_common.json", + "hero_row_panel/centering_panel/featured_stack/padding_0": "ui/store_common.json", + "hero_row_panel/centering_panel/featured_stack/hero_offer_grid": "ui/store_common.json", + "hero_row_panel/padding_0": "ui/store_common.json", + "hero_row_panel/divider": "ui/store_common.json", + "hero_offer": "ui/store_common.json", + "hero_offer/featured_key_art": "ui/store_common.json", + "hero_offer/rtx_label": "ui/store_common.json", + "hero_offer/offer_description_area": "ui/store_common.json", + "hero_offer/offer_description_area/hero_offer_description_details": "ui/store_common.json", + "hero_offer_details_title": "ui/store_common.json", + "hero_offer_description_details": "ui/store_common.json", + "hero_offer_description_details/hero_title_stack": "ui/store_common.json", + "hero_offer_description_details/hero_title_stack/title": "ui/store_common.json", + "hero_offer_description_details/padding_5": "ui/store_common.json", + "hero_offer_description_details/progress": "ui/store_common.json", + "hero_offer_description_details/creator_label": "ui/store_common.json", + "hero_offer_description_details/padding_0": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/subscription_panel": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel/ratings": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/rating_count_panel": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/fill_padding": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/offer_price_markdown_panel": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel/price": "ui/store_common.json", + "hero_offer_description_details/padding_1": "ui/store_common.json", + "hero_offer_download_progress": "ui/store_common.json", + "hero_offer_download_progress/label": "ui/store_common.json", + "hero_offer_download_progress/bar": "ui/store_common.json", + "rating_text_panel": "ui/store_common.json", + "rating_text_panel/left_padding": "ui/store_common.json", + "rating_text_panel/star_panel": "ui/store_common.json", + "rating_text_panel/star_panel/rating_star": "ui/store_common.json", + "rating_text_panel/middle_padding": "ui/store_common.json", + "rating_text_panel/rating_label": "ui/store_common.json", + "ratings_description": "ui/store_common.json", + "ratings_description/rating_text_panel": "ui/store_common.json", + "store_rating_count_panel": "ui/store_common.json", + "store_rating_count_panel/rating_count_text": "ui/store_common.json", + "hero_offer_grid": "ui/store_common.json", + "hero_offer_grid/row_1": "ui/store_common.json", + "hero_offer_grid/row_1/offer_1": "ui/store_common.json", + "hero_offer_grid/row_1/padding_0": "ui/store_common.json", + "hero_offer_grid/row_1/offer_2": "ui/store_common.json", + "hero_offer_grid/padding_0": "ui/store_common.json", + "hero_offer_grid/row_2": "ui/store_common.json", + "hero_offer_grid/row_2/offer_1": "ui/store_common.json", + "hero_offer_grid/row_2/padding_0": "ui/store_common.json", + "hero_offer_grid/row_2/offer_2": "ui/store_common.json", + "offer_download_progress": "ui/store_common.json", + "offer_download_progress/label": "ui/store_common.json", + "offer_download_progress/bar": "ui/store_common.json", + "banner_button": "ui/store_common.json", + "sdl_text_aligned_panel": "ui/store_common.json", + "sdl_text_minecraftTen_aligned_panel": "ui/store_common.json", + "sdl_content_aligned_panel": "ui/store_common.json", + "sdl_content_aligned_panel/left__padding_panel": "ui/store_common.json", + "sdl_content_aligned_panel/control": "ui/store_common.json", + "sdl_content_aligned_panel/right_padding_panel": "ui/store_common.json", + "sdl_aligned_text": "ui/store_common.json", + "sdl_aligned_minecraftTen_text": "ui/store_common.json", + "content_offer_key_art": "ui/store_common.json", + "vertical_content_offer_header": "ui/store_common.json", + "vertical_content_offer_header/header": "ui/store_common.json", + "vertical_content_offer_panel": "ui/store_common.json", + "vertical_offer_grid_panel": "ui/store_common.json", + "offer_content": "ui/store_common.json", + "offer_content/offer_item": "ui/store_common.json", + "vertical_offer_content": "ui/store_common.json", + "vertical_offer_content/offer_item": "ui/store_common.json", + "vertical_coin_offer_content": "ui/store_common.json", + "vertical_coin_offer_content/offer_item": "ui/store_common.json", + "store_offer_key_art": "ui/store_common.json", + "store_offer_grid_show_more": "ui/store_common.json", + "store_offer_grid_show_more/frame": "ui/store_common.json", + "store_offer_grid_show_more/frame/title": "ui/store_common.json", + "store_offer_grid_show_more/offer_button": "ui/store_common.json", + "store_offer_grid_show_more/offer_button/hover": "ui/store_common.json", + "store_offer_grid_show_more/offer_button/hover/key_art_size_panel": "ui/store_common.json", + "store_offer_grid_show_more/offer_button/pressed": "ui/store_common.json", + "store_offer_grid_show_more/offer_button/pressed/key_art_size_panel": "ui/store_common.json", + "persona_grid_show_more": "ui/store_common.json", + "row_offer_sale_markdown": "ui/store_common.json", + "discount_label": "ui/store_common.json", + "discount_label/label_panel": "ui/store_common.json", + "discount_label/label_panel/label": "ui/store_common.json", + "discount_label/icon_panel": "ui/store_common.json", + "discount_label/icon_panel/icon": "ui/store_common.json", + "hero_offer_sale_markdown": "ui/store_common.json", + "offer_price_markdown_panel": "ui/store_common.json", + "offer_price_markdown_panel/offer_price": "ui/store_common.json", + "offer_price_markdown_panel/offer_price/text_strike_through": "ui/store_common.json", + "store_offer_title": "ui/store_common.json", + "store_offer_key_art_frame": "ui/store_common.json", + "store_offer_key_art_frame/key_art": "ui/store_common.json", + "store_offer_key_art_frame/key_art/key_art_frame": "ui/store_common.json", + "store_offer_key_art_frame/key_art/csb_expiration_banner": "ui/store_common.json", + "store_offer_key_art_frame/progress_loading": "ui/store_common.json", + "vertical_store_offer_grid_item": "ui/store_common.json", + "vertical_store_offer_grid_item/frame": "ui/store_common.json", + "vertical_store_offer_grid_item/frame/horizontal_stack_panel": "ui/store_common.json", + "vertical_store_offer_grid_item/frame/offer_button": "ui/store_common.json", + "vertical_store_offer_grid_item/dark_frame": "ui/store_common.json", + "vertical_store_offer_grid_item/dark_frame/horizontal_stack_panel": "ui/store_common.json", + "vertical_store_offer_grid_item/dark_frame/offer_button": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame/key_art_size_panel": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art_frame": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame/offer_details_general_panel": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding/title": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding/creator_label": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/ratings": "ui/store_common.json", + "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": "ui/store_common.json", + "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": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/right_side_padding": "ui/store_common.json", + "vertical_store_coin_offer_grid_item": "ui/store_common.json", + "vertical_store_coin_offer_grid_item/frame": "ui/store_common.json", + "vertical_store_coin_offer_grid_item/frame/horizontal_stack_panel": "ui/store_common.json", + "vertical_store_coin_offer_grid_item/dark_frame": "ui/store_common.json", + "vertical_store_coin_offer_grid_item/dark_frame/horizontal_stack_panel": "ui/store_common.json", + "vertical_store_coin_offer_grid_item/dark_frame/offer_button": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame/key_art_size_panel": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art_frame": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame/padding": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame/coin_panel": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame/coin_panel/offer_coin_icon": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame/Minecoins_panel": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel/minecoins_offer_status_text": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding/title": "ui/store_common.json", + "offer_prompt_panel": "ui/store_common.json", + "offer_prompt_panel/coin_panel": "ui/store_common.json", + "offer_prompt_panel/coin_panel/offer_coin_icon": "ui/store_common.json", + "offer_prompt_panel/padding_3": "ui/store_common.json", + "offer_prompt_panel/offer_status_text_panel": "ui/store_common.json", + "offer_prompt_panel/offer_status_text_panel/offer_status_text": "ui/store_common.json", + "store_offer_grid_item": "ui/store_common.json", + "store_offer_grid_item/frame": "ui/store_common.json", + "store_offer_grid_item/frame/key_art": "ui/store_common.json", + "store_offer_grid_item/frame/key_art/key_art_frame": "ui/store_common.json", + "store_offer_grid_item/frame/key_art/csb_plus_expiration_banner": "ui/store_common.json", + "store_offer_grid_item/frame/progress_loading": "ui/store_common.json", + "store_offer_grid_item/frame/progress": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/title": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/creator_label": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/offer_price_info_panel": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/no_durable_status_padding": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel/markdown_banner": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/ratings": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rating_count_panel": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel/sale_timer": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_2": "ui/store_common.json", + "store_offer_grid_item/frame/offer_button": "ui/store_common.json", + "thumbnail_only_offer": "ui/store_common.json", + "thumbnail_only_offer/frame": "ui/store_common.json", + "thumbnail_only_offer/frame/key_art": "ui/store_common.json", + "thumbnail_only_offer/frame/key_art/key_art_frame": "ui/store_common.json", + "thumbnail_only_offer/frame/key_art/offer_coin_icon": "ui/store_common.json", + "thumbnail_only_offer/frame/offer_button": "ui/store_common.json", + "store_section_header_label": "ui/store_common.json", + "persona_store_row_offer": "ui/store_common.json", + "persona_store_row_offer/persona_offer": "ui/store_common.json", + "thumnail_only_row_offer": "ui/store_common.json", + "thumnail_only_row_offer/generic_store_offer": "ui/store_common.json", + "generic_store_row_offer_panel": "ui/store_common.json", + "generic_store_row_offer_panel/generic_store_offer": "ui/store_common.json", + "store_row_show_more_button_panel": "ui/store_common.json", + "store_row_show_more_button_panel/show_more_button": "ui/store_common.json", + "persona_show_more_button_panel": "ui/store_common.json", + "persona_show_more_button_panel/show_more_button": "ui/store_common.json", + "persona_grid_panel_stack": "ui/store_common.json", + "persona_grid_panel_stack/default_piece_button": "ui/store_common.json", + "persona_grid_panel_stack/persona_grid_panel": "ui/store_common.json", + "persona_grid_panel": "ui/store_common.json", + "persona_grid_panel/persona_offer_grid": "ui/store_common.json", + "store_offer_grid_factory": "ui/store_common.json", + "non_collection_item_horizontal_padding": "ui/store_common.json", + "horizontal_store_offer_row_factory": "ui/store_common.json", + "recently_viewed_row_panel": "ui/store_common.json", + "static_offer_row_panel": "ui/store_common.json", + "static_offer_row_panel/store_row_dropdown_panel": "ui/store_common.json", + "static_offer_row_panel/store_row_dropdown_panel/store_row_section_panel": "ui/store_common.json", + "store_row_panel": "ui/store_common.json", + "store_row_panel/store_row_dropdown_panel": "ui/store_common.json", + "store_row_panel/store_row_dropdown_panel/store_row_section_panel": "ui/store_common.json", + "vertical_store_row_panel": "ui/store_common.json", + "style_header": "ui/store_common.json", + "style_header/background": "ui/store_common.json", + "style_header/style_header": "ui/store_common.json", + "style_header_panel": "ui/store_common.json", + "style_header_panel/row_header": "ui/store_common.json", + "style_header_panel/row_header/label_panel": "ui/store_common.json", + "style_header_panel/row_header/label_panel/indent": "ui/store_common.json", + "style_header_panel/row_header/label_panel/row_header_label_centering_panel": "ui/store_common.json", + "style_header_panel/row_header/label_panel/row_header_label_centering_panel/row_header_label": "ui/store_common.json", + "style_header_panel/row_header/label_panel/on_sale_banner": "ui/store_common.json", + "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel": "ui/store_common.json", + "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label": "ui/store_common.json", + "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/triangle": "ui/store_common.json", + "style_header_panel/row_header/label_panel/time_remaining_label": "ui/store_common.json", + "style_header_panel/row_carousel_padding": "ui/store_common.json", + "store_row_cycle_button_panel": "ui/store_common.json", + "store_row_cycle_button_panel/cycle_button_panel": "ui/store_common.json", + "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel": "ui/store_common.json", + "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel/page_indicator": "ui/store_common.json", + "store_row": "ui/store_common.json", + "store_row/carousel_panel": "ui/store_common.json", + "store_row/carousel_panel/progress_loading": "ui/store_common.json", + "store_row/carousel_panel/cycle_pack_horizontal_stack": "ui/store_common.json", + "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_left_button_panel": "ui/store_common.json", + "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel": "ui/store_common.json", + "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel/offer_grid": "ui/store_common.json", + "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_right_button_panel": "ui/store_common.json", + "store_row/divider": "ui/store_common.json", + "page_indicator_panel": "ui/store_common.json", + "page_indicator_panel/first_of_three": "ui/store_common.json", + "page_indicator_panel/second_of_three": "ui/store_common.json", + "page_indicator_panel/third_of_three": "ui/store_common.json", + "page_indicator_panel/first_of_two": "ui/store_common.json", + "page_indicator_panel/second_of_two": "ui/store_common.json", + "page_indicator": "ui/store_common.json", + "popup_dialog__no_store_connection": "ui/store_common.json", + "popup_dialog__no_store_connection/popup_dialog_bg": "ui/store_common.json", + "popup_dialog__no_store_connection/popup_dialog_message": "ui/store_common.json", + "popup_dialog__no_store_connection/popup_dialog_middle_button": "ui/store_common.json", + "popup_dialog__restore_popup": "ui/store_common.json", + "popup_dialog__restore_popup/popup_dialog_bg": "ui/store_common.json", + "popup_dialog__restore_popup/popup_dialog_message": "ui/store_common.json", + "popup_dialog__restore_failed": "ui/store_common.json", + "popup_dialog__restore_failed/popup_dialog_bg": "ui/store_common.json", + "popup_dialog__restore_failed/popup_dialog_message": "ui/store_common.json", + "popup_dialog__restore_failed/popup_dialog_middle_button": "ui/store_common.json", + "suggested_content_offers_grid_item": "ui/store_common.json", + "suggested_content_offers_grid_item/frame": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/key_art": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/key_art/key_art_frame": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/progress_loading": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/progress": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/title_label_panel": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/title_label_panel/title": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/title_label_panel/offer_type": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/offer_button": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/offer_button/hover": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/offer_button/pressed": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame": "ui/store_common.json", + "suggested_content_offers_grid": "ui/store_common.json", + "more_suggested_content_offers_button": "ui/store_common.json", + "suggested_content_offers_panel_base": "ui/store_common.json", + "suggested_content_offers_panel_base/content": "ui/store_common.json", + "suggested_content_offers_panel_base/content/suggested_content_offers_grid": "ui/store_common.json", + "suggested_content_offers_panel_base/content/more_suggested_content_offers_button": "ui/store_common.json", + "suggested_content_offers_panel_base/progress_loading": "ui/store_common.json", + "suggested_content_offers_panel_3x1": "ui/store_common.json", + "suggested_content_offers_panel_4x1": "ui/store_common.json", + "search_text_box_panel": "ui/store_common.json", + "search_text_box_panel/search_text_box": "ui/store_common.json", + "search_text_box_panel/clear_button": "ui/store_common.json", + "search_text_box_panel/loading_spinner": "ui/store_common.json", + "search_label_panel": "ui/store_common.json", + "search_label_panel/offset_panel": "ui/store_common.json", + "search_label_panel/offset_panel/label": "ui/store_common.json", + "error_text_panel": "ui/store_common.json", + "error_text_panel/error_text_content": "ui/store_common.json", + "error_text_panel/error_text_content/top_padding": "ui/store_common.json", + "error_text_panel/error_text_content/label_panel": "ui/store_common.json", + "error_text_panel/error_text_content/bottom_padding": "ui/store_common.json", + "results_text_panel": "ui/store_common.json", + "results_text_panel/results_panel": "ui/store_common.json", + "results_text_panel/results_panel/top_padding": "ui/store_common.json", + "results_text_panel/results_panel/results_content": "ui/store_common.json", + "results_text_panel/results_panel/results_content/label_panel": "ui/store_common.json", + "results_text_panel/results_panel/results_content/mid_padding": "ui/store_common.json", + "results_text_panel/results_panel/results_content/results_close_centering_panel": "ui/store_common.json", + "results_text_panel/results_panel/results_content/results_close_centering_panel/results_close_button": "ui/store_common.json", + "results_text_panel/results_panel/results_content/right_padding": "ui/store_common.json", + "results_text_panel/results_panel/bottom_padding": "ui/store_common.json", + "filter_logo_content_panel": "ui/store_common.json", + "filter_logo_content_panel/filter_logo_image": "ui/store_common.json", + "filter_logo_content_panel/filter_count_label": "ui/store_common.json", + "filter_sort_toggle": "ui/store_common.json", + "filter_sort_submenu_scrolling_panel_section": "ui/store_common.json", + "filter_sort_submenu_scrolling_panel_section/submenu_scrolling_panel": "ui/store_common.json", + "filter_sort_grid_panel": "ui/store_common.json", + "filter_sort_grid_panel/filter_sort_grid": "ui/store_common.json", + "sort_button_content_panel": "ui/store_common.json", + "search_panel_filter": "ui/store_common.json", + "search_panel_filter/search_text_box": "ui/store_common.json", + "search_panel_filter/filter_button": "ui/store_common.json", + "search_panel_filter/sort_button": "ui/store_common.json", + "search_results_and_error_stack": "ui/store_common.json", + "search_results_and_error_stack/mid_padding_1": "ui/store_common.json", + "search_results_and_error_stack/error_text_panel": "ui/store_common.json", + "search_results_and_error_stack/mid_padding_2": "ui/store_common.json", + "search_results_and_error_stack/results_text_panel": "ui/store_common.json", + "search_panel": "ui/store_common.json", + "search_panel/search_panel_content": "ui/store_common.json", + "search_panel/search_panel_content/search_text_box": "ui/store_common.json", + "search_panel/search_panel_content/search_results_and_error_panel": "ui/store_common.json", + "search_panel/search_panel_content/bottom_padding": "ui/store_common.json", + "search_and_offer_content": "ui/store_common.json", + "search_and_offer_content/search_and_offer_panel": "ui/store_common.json", + "search_and_offer_content/search_and_offer_panel/search_and_offer_content": "ui/store_common.json", + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/top_padding": "ui/store_common.json", + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel": "ui/store_common.json", + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel/upper_section": "ui/store_common.json", + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/search_panel": "ui/store_common.json", + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel": "ui/store_common.json", + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel/offer_content": "ui/store_common.json", + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/bottom_padding": "ui/store_common.json", + "search_object": "ui/store_common.json", + "search_object/search_object_content": "ui/store_common.json", + "sort_and_filter_menu_modal_panel": "ui/store_common.json", + "sort_and_filter_menu_modal_panel/filter_menu": "ui/store_common.json", + "sort_and_filter_menu_modals": "ui/store_common.json", + "sort_and_filter_menu_modals/filter_menu_modal": "ui/store_common.json", + "sort_and_filter_menu_modals/sort_menu_panel": "ui/store_common.json", + "search_filter_sort_background": "ui/store_common.json", + "search_filter_background_panel": "ui/store_common.json", + "search_filter_background_panel/search_filter_sort_background": "ui/store_common.json", + "close_bg_button": "ui/store_common.json", + "close_bg_button/default": "ui/store_common.json", + "close_bg_button/hover": "ui/store_common.json", + "close_bg_button/pressed": "ui/store_common.json", + "close_bg_panel": "ui/store_common.json", + "close_bg_panel/header_close_button": "ui/store_common.json", + "close_bg_panel/main_close_button": "ui/store_common.json", + "vertical_line_divider_row": "ui/store_common.json", + "vertical_line_divider_row/vert_line_divider_row_top_buffer": "ui/store_common.json", + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding": "ui/store_common.json", + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_left_buffer": "ui/store_common.json", + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vertical_line_divider_row_line": "ui/store_common.json", + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_right_buffer": "ui/store_common.json", + "vertical_line_divider_row/vert_line_divider_row_bottom_buffer": "ui/store_common.json", + "sdl_dropdown_header_row_button": "ui/store_common.json", + "sdl_subcategory_button": "ui/store_common.json", + "sdl_dropdown_header_row": "ui/store_common.json", + "sdl_dropdown_header_row/drowdown_header_row_content": "ui/store_common.json", + "sdl_dropdown_header_row/drowdown_header_row_content/button_aspects": "ui/store_common.json", + "sdl_dropdown_data_row": "ui/store_common.json", + "sdl_dropdown_data_row/row_background": "ui/store_common.json", + "sdl_dropdown_data_row/button_aspects": "ui/store_common.json", + }, + "store_layout": { + "sdl_scrolling_content_panel": "ui/store_data_driven_screen.json", + "sdl_scrolling_content_panel/sdl_scrolling_content_stack": "ui/store_data_driven_screen.json", + "sdl_scrolling_content_stack": "ui/store_data_driven_screen.json", + "sdl_scrolling_content_stack/padding_0": "ui/store_data_driven_screen.json", + "sdl_scrolling_content_stack/store_screen_layout_factory": "ui/store_data_driven_screen.json", + "sdl_scrolling_content_stack/footer": "ui/store_data_driven_screen.json", + "sdl_scrolling_section_panel": "ui/store_data_driven_screen.json", + "sdl_scrolling_section_panel/padding0": "ui/store_data_driven_screen.json", + "sdl_scrolling_section_panel/top_static_sdl_section": "ui/store_data_driven_screen.json", + "sdl_scrolling_section_panel/padding1": "ui/store_data_driven_screen.json", + "sdl_scrolling_section_panel/sdl_scrolling_section": "ui/store_data_driven_screen.json", + "sdl_scrolling_section": "ui/store_data_driven_screen.json", + "character_creator_sdl_scroll_section": "ui/store_data_driven_screen.json", + "character_creator_sdl_section": "ui/store_data_driven_screen.json", + "character_creator_sdl_section/sdl_section": "ui/store_data_driven_screen.json", + "character_creator_panel": "ui/store_data_driven_screen.json", + "character_creator_panel/left_main_panel_padding": "ui/store_data_driven_screen.json", + "character_creator_panel/character_creator_sdl_portion": "ui/store_data_driven_screen.json", + "character_creator_panel/middle_main_panel_padding": "ui/store_data_driven_screen.json", + "character_creator_panel/right_main_panel": "ui/store_data_driven_screen.json", + "character_creator_panel/right_main_panel_padding": "ui/store_data_driven_screen.json", + "character_creator_screen_layout": "ui/store_data_driven_screen.json", + "character_creator_screen_layout/character_creator_panel": "ui/store_data_driven_screen.json", + "main_panel": "ui/store_data_driven_screen.json", + "main_panel/background": "ui/store_data_driven_screen.json", + "main_panel/main_panel_content": "ui/store_data_driven_screen.json", + "main_panel/main_panel_content/sdl_screen_content": "ui/store_data_driven_screen.json", + "main_panel/progress_loading": "ui/store_data_driven_screen.json", + "nav_button_content": "ui/store_data_driven_screen.json", + "nav_button_content/image_panel": "ui/store_data_driven_screen.json", + "nav_button_content/small_padding": "ui/store_data_driven_screen.json", + "nav_button_content/label_panel": "ui/store_data_driven_screen.json", + "default_nav_label_panel": "ui/store_data_driven_screen.json", + "default_nav_label_panel/button_text_label": "ui/store_data_driven_screen.json", + "styled_nav_label_panel": "ui/store_data_driven_screen.json", + "styled_nav_label_panel/button_text_label": "ui/store_data_driven_screen.json", + "styled_nav_label_panel_minecraftTen": "ui/store_data_driven_screen.json", + "styled_nav_label_panel_minecraftTen/button_text_label": "ui/store_data_driven_screen.json", + "default_styled_button_text_label": "ui/store_data_driven_screen.json", + "nav_image_panel": "ui/store_data_driven_screen.json", + "nav_image_panel/button_image_panel": "ui/store_data_driven_screen.json", + "nav_image_panel/button_animated_panel": "ui/store_data_driven_screen.json", + "nav_button_image_panel": "ui/store_data_driven_screen.json", + "nav_button_image_panel/button_image": "ui/store_data_driven_screen.json", + "nav_button_image": "ui/store_data_driven_screen.json", + "nav_button_animation": "ui/store_data_driven_screen.json", + "nav_button_fill": "ui/store_data_driven_screen.json", + "nav_button_fill_styled": "ui/store_data_driven_screen.json", + "nav_button_fill_styled_mc10": "ui/store_data_driven_screen.json", + "nav_button_standard_styled": "ui/store_data_driven_screen.json", + "nav_button_standard_styled_mc10": "ui/store_data_driven_screen.json", + "nav_button_standard": "ui/store_data_driven_screen.json", + "nav_button_standard/nav_button": "ui/store_data_driven_screen.json", + "nav_button_grid_panel": "ui/store_data_driven_screen.json", + "nav_button_grid_panel/nav_button_grid": "ui/store_data_driven_screen.json", + "store_layout_ribbon_search_button": "ui/store_data_driven_screen.json", + "store_layout_ribbon_search_button_content": "ui/store_data_driven_screen.json", + "store_layout_ribbon_search_button_content/button_image": "ui/store_data_driven_screen.json", + "store_data_driven_screen_base": "ui/store_data_driven_screen.json", + "store_screen_modal_panel": "ui/store_data_driven_screen.json", + "store_screen_modal_panel/one_button_dialog": "ui/store_data_driven_screen.json", + "store_screen_modal_panel/popup_dialog_factory": "ui/store_data_driven_screen.json", + "dialog_button": "ui/store_data_driven_screen.json", + "store_screen_main_panel": "ui/store_data_driven_screen.json", + "store_screen_main_panel/main_content_view": "ui/store_data_driven_screen.json", + "store_screen_main_panel/sort_and_filter_modals": "ui/store_data_driven_screen.json", + "store_full_screen_content": "ui/store_data_driven_screen.json", + "store_full_screen_content/mouse_input_focus_panel": "ui/store_data_driven_screen.json", + "store_full_screen_content/screen_content": "ui/store_data_driven_screen.json", + "store_full_screen_content/screen_content/top_bar_section": "ui/store_data_driven_screen.json", + "store_full_screen_content/screen_content/main_panel": "ui/store_data_driven_screen.json", + "store_full_screen_content/screen_content/main_panel/main_panel_content": "ui/store_data_driven_screen.json", + "store_full_screen_content/popup_dialog_factory": "ui/store_data_driven_screen.json", + "store_full_screen_content/character_selector_dialog_factory": "ui/store_data_driven_screen.json", + "store_full_screen_content/custom_skin_dialog_factory": "ui/store_data_driven_screen.json", + "sdl_base_screen": "ui/store_data_driven_screen.json", + "character_creator_base_screen": "ui/store_data_driven_screen.json", + "store_data_driven_screen": "ui/store_data_driven_screen.json", + "character_creator_screen": "ui/store_data_driven_screen.json", + "dressing_room_color_picker_screen": "ui/store_data_driven_screen.json", + "expanded_appearance_view_screen": "ui/store_data_driven_screen.json", + "non_scrollable_sdl_screen": "ui/store_data_driven_screen.json", + "skin_selector_screen": "ui/store_data_driven_screen.json", + "store_data_driven_modal_one_button_screen": "ui/store_data_driven_screen.json", + }, + "filter_menu": { + "filter_clear_button_panel": "ui/store_filter_menu_screen.json", + "filter_clear_button_panel/clear_button": "ui/store_filter_menu_screen.json", + "chevron_icon_panel": "ui/store_filter_menu_screen.json", + "chevron_icon_panel/chevron_icon": "ui/store_filter_menu_screen.json", + "filter_variables_panel": "ui/store_filter_menu_screen.json", + "filter_option_button_content": "ui/store_filter_menu_screen.json", + "filter_option_button_content/left_chevron_icon_panel": "ui/store_filter_menu_screen.json", + "filter_option_button_content/filter_type_and_selected_panel": "ui/store_filter_menu_screen.json", + "filter_option_button_content/filter_type_and_selected_panel/top_padding": "ui/store_filter_menu_screen.json", + "filter_option_button_content/filter_type_and_selected_panel/filter_type_label": "ui/store_filter_menu_screen.json", + "filter_option_button_content/filter_type_and_selected_panel/middle_padding": "ui/store_filter_menu_screen.json", + "filter_option_button_content/filter_type_and_selected_panel/selected_label": "ui/store_filter_menu_screen.json", + "filter_option_button_content/filter_type_and_selected_panel/bottom_padding": "ui/store_filter_menu_screen.json", + "filter_option_button_content/right_chevron_icon_panel": "ui/store_filter_menu_screen.json", + "filter_options_button_panel": "ui/store_filter_menu_screen.json", + "filter_options_button_panel/filter_variables_panel": "ui/store_filter_menu_screen.json", + "filter_options_button_panel/filter_variables_panel/filter_options_button": "ui/store_filter_menu_screen.json", + "filter_main_menu_options_button_panel": "ui/store_filter_menu_screen.json", + "filter_title_bar_content": "ui/store_filter_menu_screen.json", + "filter_title_bar_content/filter_logo_and_count_panel": "ui/store_filter_menu_screen.json", + "filter_title_bar_content/centered_filter_title_label": "ui/store_filter_menu_screen.json", + "filter_title_bar_content/centered_filter_title_label/filter_title_label": "ui/store_filter_menu_screen.json", + "filter_title_bar_content/filter_title_padding_close_button": "ui/store_filter_menu_screen.json", + "filter_title_bar_content/centered_x": "ui/store_filter_menu_screen.json", + "filter_title_bar_content/centered_x/close_x_image": "ui/store_filter_menu_screen.json", + "filter_title_bar": "ui/store_filter_menu_screen.json", + "filter_checkbox_toggle": "ui/store_filter_menu_screen.json", + "filter_checkbox_no_icon_toggle": "ui/store_filter_menu_screen.json", + "filter_checkbox_no_icon_toggle/filter_checkbox_no_icon_toggle": "ui/store_filter_menu_screen.json", + "pack_type_sub_menu_panel": "ui/store_filter_menu_screen.json", + "pack_type_sub_menu_panel/pack_type_sub_menu": "ui/store_filter_menu_screen.json", + "pack_type_sub_menu_panel/pack_type_sub_menu/addon_packs_filter": "ui/store_filter_menu_screen.json", + "pack_type_sub_menu_panel/pack_type_sub_menu/skin_packs_filter": "ui/store_filter_menu_screen.json", + "pack_type_sub_menu_panel/pack_type_sub_menu/texture_packs_filter": "ui/store_filter_menu_screen.json", + "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel": "ui/store_filter_menu_screen.json", + "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/worlds_template_filter": "ui/store_filter_menu_screen.json", + "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/world_template_type_filters": "ui/store_filter_menu_screen.json", + "pack_type_sub_menu_panel/pack_type_sub_menu/mashup_packs_filter": "ui/store_filter_menu_screen.json", + "offer_type_sub_menu_panel": "ui/store_filter_menu_screen.json", + "offer_type_sub_menu_panel/bundles_filter": "ui/store_filter_menu_screen.json", + "offer_type_sub_menu_panel/realms_plus_filter": "ui/store_filter_menu_screen.json", + "offer_type_sub_menu_panel/csb_filter": "ui/store_filter_menu_screen.json", + "realms_plus_filter": "ui/store_filter_menu_screen.json", + "realms_plus_filter/realms_plus_filter": "ui/store_filter_menu_screen.json", + "csb_filter": "ui/store_filter_menu_screen.json", + "csb_filter/csb_filter": "ui/store_filter_menu_screen.json", + "realms_plus_gradient_content_panel": "ui/store_filter_menu_screen.json", + "realms_plus_gradient_content_panel/gradient": "ui/store_filter_menu_screen.json", + "realms_plus_gradient_content_panel/particles": "ui/store_filter_menu_screen.json", + "realms_plus_gradient_content_panel/content_panel": "ui/store_filter_menu_screen.json", + "csb_gradient_content_panel": "ui/store_filter_menu_screen.json", + "csb_gradient_content_panel/gradient": "ui/store_filter_menu_screen.json", + "csb_gradient_content_panel/particles": "ui/store_filter_menu_screen.json", + "csb_gradient_content_panel/content_panel": "ui/store_filter_menu_screen.json", + "filter_section_content": "ui/store_filter_menu_screen.json", + "filter_section_content/section_title_button": "ui/store_filter_menu_screen.json", + "filter_section_content/clear_button": "ui/store_filter_menu_screen.json", + "filter_section_content/section_sub_menu": "ui/store_filter_menu_screen.json", + "filter_section_content_dynamic": "ui/store_filter_menu_screen.json", + "filter_section_content_dynamic/filter_section_content": "ui/store_filter_menu_screen.json", + "filter_main_menu_content": "ui/store_filter_menu_screen.json", + "filter_main_menu_content/filter_title_bar_panel": "ui/store_filter_menu_screen.json", + "filter_main_menu_content/offer_type_button": "ui/store_filter_menu_screen.json", + "filter_main_menu_content/pack_type_button": "ui/store_filter_menu_screen.json", + "filter_main_menu_content/minecoin_button": "ui/store_filter_menu_screen.json", + "filter_main_menu_content/rating_button": "ui/store_filter_menu_screen.json", + "filter_main_menu_content/creator_button": "ui/store_filter_menu_screen.json", + "filter_main_menu_content/graphics_button": "ui/store_filter_menu_screen.json", + "filter_main_menu_content/installed_state_button": "ui/store_filter_menu_screen.json", + "filter_main_menu_content/filter_main_menu_filter_toggles_section": "ui/store_filter_menu_screen.json", + "filter_main_menu_content/filter_main_menu_filter_toggles_section/filter_main_menu_filter_toggle_grid_panel": "ui/store_filter_menu_screen.json", + "filter_main_menu_content/clear_button_panel": "ui/store_filter_menu_screen.json", + "filter_main_menu_content_persona": "ui/store_filter_menu_screen.json", + "filter_main_menu_content_persona/filter_title_bar_panel": "ui/store_filter_menu_screen.json", + "filter_main_menu_content_persona/persona_body_button": "ui/store_filter_menu_screen.json", + "filter_main_menu_content_persona/persona_style_button": "ui/store_filter_menu_screen.json", + "filter_main_menu_content_persona/emote_filter_section": "ui/store_filter_menu_screen.json", + "filter_main_menu_content_persona/emote_filter_section/filter_emote_toggle_grid_panel": "ui/store_filter_menu_screen.json", + "filter_main_menu_content_persona/minecoin_button": "ui/store_filter_menu_screen.json", + "filter_main_menu_content_persona/clear_button_panel": "ui/store_filter_menu_screen.json", + "filter_section_content_panel": "ui/store_filter_menu_screen.json", + "filter_section_content_panel/filter_menu_screen": "ui/store_filter_menu_screen.json", + "filter_main_menu_section": "ui/store_filter_menu_screen.json", + "filter_main_menu_section_persona": "ui/store_filter_menu_screen.json", + "filter_pack_type_section": "ui/store_filter_menu_screen.json", + "filter_offer_type_section": "ui/store_filter_menu_screen.json", + "filter_type_section": "ui/store_filter_menu_screen.json", + "filter_menu_content": "ui/store_filter_menu_screen.json", + "filter_menu_content/filter_main_menu_screen": "ui/store_filter_menu_screen.json", + "filter_menu_content/filter_offer_type_screen": "ui/store_filter_menu_screen.json", + "filter_menu_content/filter_pack_type_screen": "ui/store_filter_menu_screen.json", + "filter_menu_content/filter_minecoin_section": "ui/store_filter_menu_screen.json", + "filter_menu_content/filter_rating_section": "ui/store_filter_menu_screen.json", + "filter_menu_content/filter_creator_section": "ui/store_filter_menu_screen.json", + "filter_menu_content/filter_graphics_section": "ui/store_filter_menu_screen.json", + "filter_menu_content/filter_installed_state_section": "ui/store_filter_menu_screen.json", + "filter_menu_content_persona": "ui/store_filter_menu_screen.json", + "filter_menu_content_persona/filter_main_menu_screen": "ui/store_filter_menu_screen.json", + "filter_menu_content_persona/filter_style_section": "ui/store_filter_menu_screen.json", + "filter_menu_content_persona/filter_body_section": "ui/store_filter_menu_screen.json", + "filter_menu_content_persona/filter_minecoin_section": "ui/store_filter_menu_screen.json", + "filter_menu_panel": "ui/store_filter_menu_screen.json", + "filter_menu_panel/top_padding": "ui/store_filter_menu_screen.json", + "filter_menu_panel/alignment_panel": "ui/store_filter_menu_screen.json", + "filter_menu_panel/alignment_panel/left_padding": "ui/store_filter_menu_screen.json", + "filter_menu_panel/alignment_panel/filter_menu_content_scroll": "ui/store_filter_menu_screen.json", + "filter_menu_panel/alignment_panel/right_padding": "ui/store_filter_menu_screen.json", + "filter_menu_screen_content": "ui/store_filter_menu_screen.json", + "filter_menu_screen_content/filter_main_panel": "ui/store_filter_menu_screen.json", + "filter_menu_screen_content/filter_main_panel_persona": "ui/store_filter_menu_screen.json", + "filter_menu_screen_content/filter_menu_close_background_button": "ui/store_filter_menu_screen.json", + }, + "store_inventory": { + "sign_in_button": "ui/store_inventory_screen.json", + "no_xbl_and_local_content_warning_panel": "ui/store_inventory_screen.json", + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel": "ui/store_inventory_screen.json", + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel": "ui/store_inventory_screen.json", + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack": "ui/store_inventory_screen.json", + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/top_padding": "ui/store_inventory_screen.json", + "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": "ui/store_inventory_screen.json", + "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": "ui/store_inventory_screen.json", + "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": "ui/store_inventory_screen.json", + "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": "ui/store_inventory_screen.json", + "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": "ui/store_inventory_screen.json", + "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": "ui/store_inventory_screen.json", + "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": "ui/store_inventory_screen.json", + "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": "ui/store_inventory_screen.json", + "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": "ui/store_inventory_screen.json", + "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": "ui/store_inventory_screen.json", + "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": "ui/store_inventory_screen.json", + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding": "ui/store_inventory_screen.json", + "no_xbl_and_local_content_warning_panel/bottom_padding": "ui/store_inventory_screen.json", + "no_xbl_and_no_local_conent_warning_panel": "ui/store_inventory_screen.json", + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel": "ui/store_inventory_screen.json", + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel": "ui/store_inventory_screen.json", + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack": "ui/store_inventory_screen.json", + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/top_padding": "ui/store_inventory_screen.json", + "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": "ui/store_inventory_screen.json", + "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": "ui/store_inventory_screen.json", + "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": "ui/store_inventory_screen.json", + "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": "ui/store_inventory_screen.json", + "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": "ui/store_inventory_screen.json", + "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": "ui/store_inventory_screen.json", + "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": "ui/store_inventory_screen.json", + "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": "ui/store_inventory_screen.json", + "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": "ui/store_inventory_screen.json", + "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": "ui/store_inventory_screen.json", + "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": "ui/store_inventory_screen.json", + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding": "ui/store_inventory_screen.json", + "no_xbl_and_no_local_conent_warning_panel/bottom_padding": "ui/store_inventory_screen.json", + "inventory_sign_in_panel": "ui/store_inventory_screen.json", + "inventory_sign_in_panel/no_xbl_and_local_content_warning_panel": "ui/store_inventory_screen.json", + "inventory_sign_in_panel/no_xbl_and_no_local_conent_warning_panel": "ui/store_inventory_screen.json", + "divider_panel": "ui/store_inventory_screen.json", + "divider_panel/top_pad": "ui/store_inventory_screen.json", + "divider_panel/divider": "ui/store_inventory_screen.json", + "divider_panel/bottom_pad": "ui/store_inventory_screen.json", + "right_image": "ui/store_inventory_screen.json", + "down_image": "ui/store_inventory_screen.json", + "section_toggle_base": "ui/store_inventory_screen.json", + "owned_toggle": "ui/store_inventory_screen.json", + "current_toggle": "ui/store_inventory_screen.json", + "removed_toggle": "ui/store_inventory_screen.json", + "subscriptions_toggle": "ui/store_inventory_screen.json", + "inventory_left_panel": "ui/store_inventory_screen.json", + "inventory_left_panel/top_pad": "ui/store_inventory_screen.json", + "inventory_left_panel/owned_toggle": "ui/store_inventory_screen.json", + "inventory_left_panel/owned_dropdown_box_panel": "ui/store_inventory_screen.json", + "inventory_left_panel/owned_dropdown_box_panel/owned_dropdown_box": "ui/store_inventory_screen.json", + "inventory_left_panel/divider_0": "ui/store_inventory_screen.json", + "inventory_left_panel/csub_panel": "ui/store_inventory_screen.json", + "inventory_left_panel/csub_panel/csub_stack_panel": "ui/store_inventory_screen.json", + "inventory_left_panel/divider_1": "ui/store_inventory_screen.json", + "inventory_left_panel/subscriptions_toggle": "ui/store_inventory_screen.json", + "csub_stack_panel": "ui/store_inventory_screen.json", + "csub_stack_panel/padding_title_vertical": "ui/store_inventory_screen.json", + "csub_stack_panel/section_title": "ui/store_inventory_screen.json", + "csub_stack_panel/section_title/padding_title_horizontal": "ui/store_inventory_screen.json", + "csub_stack_panel/section_title/testTitle": "ui/store_inventory_screen.json", + "csub_stack_panel/dropdown_panel": "ui/store_inventory_screen.json", + "csub_stack_panel/dropdown_panel/dropdown_stack_panel": "ui/store_inventory_screen.json", + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle": "ui/store_inventory_screen.json", + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel": "ui/store_inventory_screen.json", + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box": "ui/store_inventory_screen.json", + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1": "ui/store_inventory_screen.json", + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle": "ui/store_inventory_screen.json", + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel": "ui/store_inventory_screen.json", + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box": "ui/store_inventory_screen.json", + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2": "ui/store_inventory_screen.json", + "subscriptions_text_panel": "ui/store_inventory_screen.json", + "subscriptions_text_panel/subscriptions_text": "ui/store_inventory_screen.json", + "realms_plus_stack_panel": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/section_title": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/section_title/border": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/section_title/section_title_label": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/section_title/particles": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/dropdown_panel": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_0": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2": "ui/store_inventory_screen.json", + "dropdown_button_content": "ui/store_inventory_screen.json", + "dropdown_button_content/title_label": "ui/store_inventory_screen.json", + "dropdown_button_content/pad_0_fill": "ui/store_inventory_screen.json", + "dropdown_button_content/pad_0": "ui/store_inventory_screen.json", + "dropdown_button_content/icon_panel": "ui/store_inventory_screen.json", + "dropdown_button_content/icon_panel/block_icon": "ui/store_inventory_screen.json", + "dropdown_button_content/pad_1": "ui/store_inventory_screen.json", + "dropdown_button_content/pad_2": "ui/store_inventory_screen.json", + "dropdown_button_content/count_panel": "ui/store_inventory_screen.json", + "dropdown_button_content/count_panel/count": "ui/store_inventory_screen.json", + "dropdown_button_content/pad_3": "ui/store_inventory_screen.json", + "dropdown_button_content/right_carrot": "ui/store_inventory_screen.json", + "dropdown_button_content/right_carrot/right": "ui/store_inventory_screen.json", + "dropdown_button_content/down_carrot": "ui/store_inventory_screen.json", + "dropdown_button_content/down_carrot/down": "ui/store_inventory_screen.json", + "owned_dropdown_content": "ui/store_inventory_screen.json", + "current_dropdown_content": "ui/store_inventory_screen.json", + "removed_dropdown_content": "ui/store_inventory_screen.json", + "dropdown_box": "ui/store_inventory_screen.json", + "dropdown_box/top_pad": "ui/store_inventory_screen.json", + "dropdown_box/all": "ui/store_inventory_screen.json", + "dropdown_box/divider_0": "ui/store_inventory_screen.json", + "dropdown_box/addons": "ui/store_inventory_screen.json", + "dropdown_box/divider_1": "ui/store_inventory_screen.json", + "dropdown_box/skins": "ui/store_inventory_screen.json", + "dropdown_box/divider_2": "ui/store_inventory_screen.json", + "dropdown_box/worlds": "ui/store_inventory_screen.json", + "dropdown_box/divider_3": "ui/store_inventory_screen.json", + "dropdown_box/textures": "ui/store_inventory_screen.json", + "dropdown_box/divider_4": "ui/store_inventory_screen.json", + "dropdown_box/mashups": "ui/store_inventory_screen.json", + "dropdown_box/bottom_pad": "ui/store_inventory_screen.json", + "category_panel_button": "ui/store_inventory_screen.json", + "category_panel_button/default": "ui/store_inventory_screen.json", + "category_panel_button/hover": "ui/store_inventory_screen.json", + "category_panel_button/pressed": "ui/store_inventory_screen.json", + "category_stack_panel": "ui/store_inventory_screen.json", + "category_stack_panel/text": "ui/store_inventory_screen.json", + "category_stack_panel/fill_pad": "ui/store_inventory_screen.json", + "category_stack_panel/icon": "ui/store_inventory_screen.json", + "category_stack_panel/pad_1": "ui/store_inventory_screen.json", + "category_stack_panel/number": "ui/store_inventory_screen.json", + "search_object": "ui/store_inventory_screen.json", + "list_panel": "ui/store_inventory_screen.json", + "list_panel/list_panel_content": "ui/store_inventory_screen.json", + "list_panel/list_panel_content/search_and_offers_grid_scroll_panel": "ui/store_inventory_screen.json", + "list_panel/progress_loading": "ui/store_inventory_screen.json", + "items_content_section": "ui/store_inventory_screen.json", + "subscriptions_content_section": "ui/store_inventory_screen.json", + "subscriptions_content_section/left_pad": "ui/store_inventory_screen.json", + "subscriptions_content_section/search_and_offers_grid_scroll_panel": "ui/store_inventory_screen.json", + "right_pane_factory": "ui/store_inventory_screen.json", + "content_area": "ui/store_inventory_screen.json", + "content_area/control": "ui/store_inventory_screen.json", + "content_area/control/right_pane_factory": "ui/store_inventory_screen.json", + "main_panel": "ui/store_inventory_screen.json", + "main_panel/inventory_left_panel": "ui/store_inventory_screen.json", + "main_panel/inventory_left_panel/inventory_left_image": "ui/store_inventory_screen.json", + "main_panel/inventory_left_panel/left_scrolling_panel": "ui/store_inventory_screen.json", + "main_panel/divider_panel": "ui/store_inventory_screen.json", + "main_panel/divider_panel/main_divider": "ui/store_inventory_screen.json", + "main_panel/inventory_right_panel": "ui/store_inventory_screen.json", + "main_panel/inventory_right_panel/right_panel_background_image": "ui/store_inventory_screen.json", + "main_panel/inventory_right_panel/content_right_panel": "ui/store_inventory_screen.json", + "store_inventory_screen_main_panel": "ui/store_inventory_screen.json", + "store_inventory_screen_main_panel/main_content_view": "ui/store_inventory_screen.json", + "store_inventory_screen_main_panel/sort_and_filter_modals": "ui/store_inventory_screen.json", + "store_search_screen_content": "ui/store_inventory_screen.json", + "store_search_screen_content/main_panel": "ui/store_inventory_screen.json", + "store_search_screen_content/popup_dialog_factory": "ui/store_inventory_screen.json", + "store_inventory_screen": "ui/store_inventory_screen.json", + "signin_text_section_body": "ui/store_inventory_screen.json", + "signin_text": "ui/store_inventory_screen.json", + "signin_text_02": "ui/store_inventory_screen.json", + "signin_text_section": "ui/store_inventory_screen.json", + "signin_text_section/signin_text": "ui/store_inventory_screen.json", + "signin_text_section/line_1_padding_line_2": "ui/store_inventory_screen.json", + "signin_text_section/signin_text_02": "ui/store_inventory_screen.json", + "sign_in_panel_text_body": "ui/store_inventory_screen.json", + }, + "store_item_list": { + "store_offer_key_art": "ui/store_item_list_screen.json", + "main_panel": "ui/store_item_list_screen.json", + "main_panel/search_object": "ui/store_item_list_screen.json", + "main_panel/progress_loading": "ui/store_item_list_screen.json", + "scrolling_content_stack": "ui/store_item_list_screen.json", + "scrolling_content_stack/search_panel": "ui/store_item_list_screen.json", + "store_offer_grid": "ui/store_item_list_screen.json", + "persona_offer_grid": "ui/store_item_list_screen.json", + "vertical_store_offer_grid": "ui/store_item_list_screen.json", + "store_offer_title": "ui/store_item_list_screen.json", + "store_offer_grid_item": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/key_art": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/key_art/key_art_frame": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/key_art/csb_expiration_banner": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/progress": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/title_label_panel": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/title": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/creator_label": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/durable_offer_info_panel": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/offer_button": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/offer_button/hover": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/offer_button/pressed": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/offer_button/offer_status_icon": "ui/store_item_list_screen.json", + "store_screen_content": "ui/store_item_list_screen.json", + "store_screen_content/main_panel": "ui/store_item_list_screen.json", + "store_screen_content/popup_dialog_factory": "ui/store_item_list_screen.json", + }, + "store_progress": { + "store_progress_screen": "ui/store_progress_screen.json", + "screen_content": "ui/store_progress_screen.json", + "screen_content/title_image": "ui/store_progress_screen.json", + "screen_content/progress_dialog": "ui/store_progress_screen.json", + "dialog_content": "ui/store_progress_screen.json", + "dialog_content/tooltip_panel": "ui/store_progress_screen.json", + "dialog_content/tooltip_panel/tooltip_text": "ui/store_progress_screen.json", + "dialog_content/padding": "ui/store_progress_screen.json", + "dialog_content/progress_panel": "ui/store_progress_screen.json", + "dialog_content/progress_panel/empty_progress_bar": "ui/store_progress_screen.json", + "dialog_content/progress_panel/progress_percent_panel": "ui/store_progress_screen.json", + "dialog_content/progress_panel/progress_percent_panel/full_progress_bar": "ui/store_progress_screen.json", + "dialog_content/progress_panel/progress_percent_panel/progress_bar_nub": "ui/store_progress_screen.json", + "screen_background": "ui/store_progress_screen.json", + }, + "promo_timeline": { + "promo_banner_factory": "ui/store_promo_timeline_screen.json", + "promo_banner_button_content": "ui/store_promo_timeline_screen.json", + "promo_banner_button_content/promo_banner_button": "ui/store_promo_timeline_screen.json", + "promo_banner_button_content/progress_loading_spinner": "ui/store_promo_timeline_screen.json", + "promo_banner_image": "ui/store_promo_timeline_screen.json", + "promo_banner_panel_content": "ui/store_promo_timeline_screen.json", + "promo_banner_panel_content/banner_image": "ui/store_promo_timeline_screen.json", + "promo_banner_panel_content/banner_text_panel": "ui/store_promo_timeline_screen.json", + "promo_banner_panel_content/banner_text_panel/padding_0": "ui/store_promo_timeline_screen.json", + "promo_banner_panel_content/banner_text_panel/title_stack_panel": "ui/store_promo_timeline_screen.json", + "promo_banner_panel_content/banner_text_panel/title_stack_panel/banner_title": "ui/store_promo_timeline_screen.json", + "promo_banner_panel_content/banner_text_panel/description": "ui/store_promo_timeline_screen.json", + "promo_banner_panel_content/button_stack_panel": "ui/store_promo_timeline_screen.json", + "promo_banner_panel_content/button_stack_panel/left_offset": "ui/store_promo_timeline_screen.json", + "promo_banner_panel_content/button_stack_panel/banner_button": "ui/store_promo_timeline_screen.json", + "promo_banner_panel_content/button_stack_panel/right_offset": "ui/store_promo_timeline_screen.json", + "promo_banner_holiday_panel": "ui/store_promo_timeline_screen.json", + "promo_banner_holiday_panel/banner_full_button": "ui/store_promo_timeline_screen.json", + "promo_banner_holiday_panel/banner_full_button/default": "ui/store_promo_timeline_screen.json", + "promo_banner_holiday_panel/banner_full_button/hover": "ui/store_promo_timeline_screen.json", + "promo_banner_holiday_panel/banner_full_button/pressed": "ui/store_promo_timeline_screen.json", + "image_message_panel": "ui/store_promo_timeline_screen.json", + "image_message_panel/image_message_row_content": "ui/store_promo_timeline_screen.json", + "image_message_panel/padding_0": "ui/store_promo_timeline_screen.json", + "image_message_row_content": "ui/store_promo_timeline_screen.json", + "image_message_row_content/gray_background": "ui/store_promo_timeline_screen.json", + "image_message_row_content/gray_background/message_text": "ui/store_promo_timeline_screen.json", + "image_message_row_content/gray_background/row_image": "ui/store_promo_timeline_screen.json", + "image_message_row_content/row_button": "ui/store_promo_timeline_screen.json", + "promo_image_panel": "ui/store_promo_timeline_screen.json", + "promo_image_panel/button_image_panel": "ui/store_promo_timeline_screen.json", + "promo_image_panel/button_animated_panel": "ui/store_promo_timeline_screen.json", + "promo_button_image_panel": "ui/store_promo_timeline_screen.json", + "promo_button_image_panel/button_image": "ui/store_promo_timeline_screen.json", + "promo_button_image": "ui/store_promo_timeline_screen.json", + "promo_button_animation": "ui/store_promo_timeline_screen.json", + "banner_button": "ui/store_promo_timeline_screen.json", + "sdl_text_aligned_panel": "ui/store_promo_timeline_screen.json", + "sdl_text_minecraftTen_aligned_panel": "ui/store_promo_timeline_screen.json", + "sdl_content_aligned_panel": "ui/store_promo_timeline_screen.json", + "sdl_content_aligned_panel/left__padding_panel": "ui/store_promo_timeline_screen.json", + "sdl_content_aligned_panel/control": "ui/store_promo_timeline_screen.json", + "sdl_content_aligned_panel/right_padding_panel": "ui/store_promo_timeline_screen.json", + "sdl_aligned_text": "ui/store_promo_timeline_screen.json", + "sdl_aligned_minecraftTen_text": "ui/store_promo_timeline_screen.json", + "colored_direction_button_panel": "ui/store_promo_timeline_screen.json", + "colored_direction_button_panel/chevron_image": "ui/store_promo_timeline_screen.json", + "left_corner_art": "ui/store_promo_timeline_screen.json", + "right_corner_art": "ui/store_promo_timeline_screen.json", + "promo_landing_panel": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/promo_landing_panel_content": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/promo_landing_panel_content/promo_top": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/promo_landing_panel_content/pad_0": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/left_button_panel": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/left_button_panel/left_button": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/offer_grid": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel/right_button": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/promo_landing_panel_content/pad_1": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/left_corner_art": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/right_corner_art": "ui/store_promo_timeline_screen.json", + "promotion_screen_top_section": "ui/store_promo_timeline_screen.json", + "promotion_screen_top_section/main_panel": "ui/store_promo_timeline_screen.json", + "promotion_top_main_panel": "ui/store_promo_timeline_screen.json", + "promotion_top_main_panel/promotion_top_main_stack": "ui/store_promo_timeline_screen.json", + "promotion_top_main_panel/promotion_top_main_stack/main_panel_title": "ui/store_promo_timeline_screen.json", + "promotion_top_main_panel/promotion_top_main_stack/promo_single_top": "ui/store_promo_timeline_screen.json", + "promotion_top_main_panel/promotion_top_main_stack/promo_single_top/single_item_view": "ui/store_promo_timeline_screen.json", + "promotion_top_main_panel/promotion_top_main_stack/promo_multi_item": "ui/store_promo_timeline_screen.json", + "main_panel_title": "ui/store_promo_timeline_screen.json", + "main_panel_title/padding_0": "ui/store_promo_timeline_screen.json", + "main_panel_title/header_stack": "ui/store_promo_timeline_screen.json", + "main_panel_title/header_stack/padding_0": "ui/store_promo_timeline_screen.json", + "main_panel_title/header_stack/back_button_centering_panel": "ui/store_promo_timeline_screen.json", + "main_panel_title/header_stack/back_button_centering_panel/button": "ui/store_promo_timeline_screen.json", + "main_panel_title/header_stack/padding_1": "ui/store_promo_timeline_screen.json", + "main_panel_title/header_stack/header_panel": "ui/store_promo_timeline_screen.json", + "main_panel_title/header_stack/header_panel/title_and_description": "ui/store_promo_timeline_screen.json", + "main_panel_title/header_stack/padding_2": "ui/store_promo_timeline_screen.json", + "main_panel_title/header_stack/claim_all_button_panel": "ui/store_promo_timeline_screen.json", + "main_panel_title/header_stack/claim_all_button_panel/claim_all_button": "ui/store_promo_timeline_screen.json", + "main_panel_title/padding_1": "ui/store_promo_timeline_screen.json", + "main_panel_title/divdier_centering_panel": "ui/store_promo_timeline_screen.json", + "main_panel_title/divdier_centering_panel/divider": "ui/store_promo_timeline_screen.json", + "main_panel_title/padding_2": "ui/store_promo_timeline_screen.json", + "promo_multi_item_grid": "ui/store_promo_timeline_screen.json", + "promo_button": "ui/store_promo_timeline_screen.json", + "promo_button/default": "ui/store_promo_timeline_screen.json", + "promo_button/default/key_art_size_panel": "ui/store_promo_timeline_screen.json", + "promo_button/default/key_art_size_panel/key_art_frame": "ui/store_promo_timeline_screen.json", + "promo_button/default/key_art_size_panel/key_art_frame/sizing_panel": "ui/store_promo_timeline_screen.json", + "promo_button/default/key_art_size_panel/key_art_frame/platform_restricted_warning_image": "ui/store_promo_timeline_screen.json", + "promo_button/default/key_art_size_panel/button_frame": "ui/store_promo_timeline_screen.json", + "promo_button/hover": "ui/store_promo_timeline_screen.json", + "promo_button/hover/key_art_size_panel": "ui/store_promo_timeline_screen.json", + "promo_button/hover/key_art_size_panel/key_art_frame": "ui/store_promo_timeline_screen.json", + "promo_button/hover/key_art_size_panel/key_art_frame/sizing_panel": "ui/store_promo_timeline_screen.json", + "promo_button/hover/key_art_size_panel/button_frame": "ui/store_promo_timeline_screen.json", + "promo_button/pressed": "ui/store_promo_timeline_screen.json", + "promo_button/pressed/key_art_frame": "ui/store_promo_timeline_screen.json", + "promo_button/pressed/key_art_frame/sizing_panel": "ui/store_promo_timeline_screen.json", + "promo_button/pressed/button_frame": "ui/store_promo_timeline_screen.json", + "promo_grid_item": "ui/store_promo_timeline_screen.json", + "promo_grid_item/background_image": "ui/store_promo_timeline_screen.json", + "promo_grid_item/background_image/promo_content": "ui/store_promo_timeline_screen.json", + "promo_grid_item/promo_button": "ui/store_promo_timeline_screen.json", + "promo_grid_item/platform_restricted_error_multi_item": "ui/store_promo_timeline_screen.json", + "platform_restricted_error": "ui/store_promo_timeline_screen.json", + "platform_restricted_error/platform_restricted_error_button": "ui/store_promo_timeline_screen.json", + "platform_restricted_error/platform_restricted_error_button/default": "ui/store_promo_timeline_screen.json", + "platform_restricted_error/platform_restricted_error_button/hover": "ui/store_promo_timeline_screen.json", + "platform_restricted_error/platform_restricted_error_button/pressed": "ui/store_promo_timeline_screen.json", + "platform_restricted_error/platform_restricted_error_button/white_overlay_to_gray_out": "ui/store_promo_timeline_screen.json", + "promo_grid_item_content": "ui/store_promo_timeline_screen.json", + "promo_grid_item_content/thumbnail_image": "ui/store_promo_timeline_screen.json", + "promo_grid_item_content/persona_key_art_frame": "ui/store_promo_timeline_screen.json", + "promo_grid_item_content/persona_key_art_frame/persona_image_panel": "ui/store_promo_timeline_screen.json", + "promo_grid_item_content/persona_key_art_frame/background": "ui/store_promo_timeline_screen.json", + "promo_grid_item_content/persona_key_art_frame/rarity_bar_panel": "ui/store_promo_timeline_screen.json", + "promo_grid_item_content/padding_0": "ui/store_promo_timeline_screen.json", + "promo_grid_item_content/title_tooltip": "ui/store_promo_timeline_screen.json", + "promo_grid_item_content/title_tooltip/promo_title": "ui/store_promo_timeline_screen.json", + "promo_grid_item_content/title_tooltip/tooltip": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_panel": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_panel/promotion_offer_grid_image": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_panel/promotion_offer_grid_image/item_selected_bg": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel/day_label": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/pad": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel/item_button": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel/period_1": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel/padding_0": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel/period_2": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel/padding_1": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel/period_3": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel/padding_2": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel/period_4": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel/padding_3": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel/period_5": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel/padding_4": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel/period_6": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel/padding_5": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel/period_7": "ui/store_promo_timeline_screen.json", + "toggle_button_control": "ui/store_promo_timeline_screen.json", + "toggle_button_control/green_check": "ui/store_promo_timeline_screen.json", + "toggle_button_control/key_art_image_panel": "ui/store_promo_timeline_screen.json", + "toggle_button_control/key_art_image_panel/image_loading_panel": "ui/store_promo_timeline_screen.json", + "toggle_button_control/key_art_image_panel/key_art_image": "ui/store_promo_timeline_screen.json", + "checked_border": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_item": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_item/frame": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_item/frame/offer_button": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_item/frame/offer_button/offer_toggle_button": "ui/store_promo_timeline_screen.json", + "vertical_padding_2px": "ui/store_promo_timeline_screen.json", + "timer_icon_tooltip_panel": "ui/store_promo_timeline_screen.json", + "timer_icon_tooltip_panel/limited_status_image": "ui/store_promo_timeline_screen.json", + "timer_tooltip_panel_right_extending": "ui/store_promo_timeline_screen.json", + "timer_tooltip_panel_right_extending/default": "ui/store_promo_timeline_screen.json", + "timer_tooltip_panel_right_extending/hover": "ui/store_promo_timeline_screen.json", + "timer_tooltip_panel_right_extending/pressed": "ui/store_promo_timeline_screen.json", + "timer_tooltip_panel_left_extending": "ui/store_promo_timeline_screen.json", + "timer_tooltip_panel_left_extending/default": "ui/store_promo_timeline_screen.json", + "timer_tooltip_panel_left_extending/hover": "ui/store_promo_timeline_screen.json", + "timer_tooltip_panel_left_extending/pressed": "ui/store_promo_timeline_screen.json", + "no_timer_tooltip_panel": "ui/store_promo_timeline_screen.json", + "no_timer_tooltip_panel/default": "ui/store_promo_timeline_screen.json", + "no_timer_tooltip_panel/hover": "ui/store_promo_timeline_screen.json", + "no_timer_tooltip_panel/pressed": "ui/store_promo_timeline_screen.json", + "promo_timer_panel": "ui/store_promo_timeline_screen.json", + "promo_timer_panel/timer_icon_and_tooltip_panel": "ui/store_promo_timeline_screen.json", + "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_right_extending": "ui/store_promo_timeline_screen.json", + "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_left_extending": "ui/store_promo_timeline_screen.json", + "promo_timer_panel/timer_icon_and_tooltip_panel/notooltip_button": "ui/store_promo_timeline_screen.json", + "promo_timer_panel/timer_icon_and_tooltip_panel/timer_icon": "ui/store_promo_timeline_screen.json", + "promo_timer_panel/padding": "ui/store_promo_timeline_screen.json", + "promo_timer_panel/timer_text": "ui/store_promo_timeline_screen.json", + "offer_title_panel": "ui/store_promo_timeline_screen.json", + "offer_title_panel/offer_title_label": "ui/store_promo_timeline_screen.json", + "title_and_author_panel": "ui/store_promo_timeline_screen.json", + "title_and_author_panel/author_button_panel": "ui/store_promo_timeline_screen.json", + "title_and_author_panel/author_button_panel/summary_author_button": "ui/store_promo_timeline_screen.json", + "glyph_panel": "ui/store_promo_timeline_screen.json", + "glyph_panel/item_glyph_count_panel": "ui/store_promo_timeline_screen.json", + "glyph_panel/item_glyph_count_panel/glyph_icon_panel": "ui/store_promo_timeline_screen.json", + "glyph_panel/item_glyph_count_panel/glyph_icon_panel/glyph_icon": "ui/store_promo_timeline_screen.json", + "glyph_panel/item_glyph_count_panel/center_item_glyph_padding": "ui/store_promo_timeline_screen.json", + "glyph_panel/item_glyph_count_panel/item_glyph_count_panel_label": "ui/store_promo_timeline_screen.json", + "glyph_panel/item_glyph_count_panel/item_glyph_panel_padding": "ui/store_promo_timeline_screen.json", + "vertical_glyph_section_content": "ui/store_promo_timeline_screen.json", + "vertical_glyph_section_content/glyph_content": "ui/store_promo_timeline_screen.json", + "vertical_glyph_section_content/bottom_glyph_content_padding": "ui/store_promo_timeline_screen.json", + "glyph_section_panel": "ui/store_promo_timeline_screen.json", + "glyph_section_panel/glyphs": "ui/store_promo_timeline_screen.json", + "glyph_section_panel/glyphs/skin_glyph_section": "ui/store_promo_timeline_screen.json", + "glyph_section_panel/glyphs/world_glyph_section": "ui/store_promo_timeline_screen.json", + "glyph_section_panel/glyphs/resource_pack_glyph_section": "ui/store_promo_timeline_screen.json", + "vertical_glyph_section_panel": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel/world_panel": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel/world_panel/border": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel/world_panel/world_key_image": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel/persona_panel": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel/persona_panel/border": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel/persona_panel/persona_image": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel/persona_panel/background": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel/persona_panel/rarity_bar_panel": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel/divider": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel/info": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel/info/summary_title_and_author_panel": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel/info/glyph_section": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel/info/glyph_section/glyph_section_panel": "ui/store_promo_timeline_screen.json", + "promo_lower_button_content": "ui/store_promo_timeline_screen.json", + "promo_lower_button_content/promo_banner_button": "ui/store_promo_timeline_screen.json", + "promo_lower_button_content/progress_loading_spinner": "ui/store_promo_timeline_screen.json", + "free_discount_label": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content/markdown": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content/markdown/sales_banner_offset_panel": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel/markdown_banner": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content/markdown/price_markdown_panel": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content/markdown/price_markdown_panel/offer_price": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content/markdown/price_markdown_panel/offer_price/text_strike_through": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content/promo_item_action_text_panel": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/platform_restricted_warning_image": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/padding": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content/promo_item_action_text_panel/promo_item_action_text": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content/download_progress_bar": "ui/store_promo_timeline_screen.json", + "description_section_panel": "ui/store_promo_timeline_screen.json", + "description_section_panel/contents_description": "ui/store_promo_timeline_screen.json", + "offset_title_offer": "ui/store_promo_timeline_screen.json", + "offset_title_offer/pad_0": "ui/store_promo_timeline_screen.json", + "offset_title_offer/title_panel": "ui/store_promo_timeline_screen.json", + "offset_promo_timer": "ui/store_promo_timeline_screen.json", + "offset_promo_timer/pad_0": "ui/store_promo_timeline_screen.json", + "offset_promo_timer/promo_timer": "ui/store_promo_timeline_screen.json", + "offset_image_glyphs_panel": "ui/store_promo_timeline_screen.json", + "offset_image_glyphs_panel/pad_0": "ui/store_promo_timeline_screen.json", + "offset_image_glyphs_panel/smaller_panel": "ui/store_promo_timeline_screen.json", + "offset_image_glyphs_panel/smaller_panel/details": "ui/store_promo_timeline_screen.json", + "offset_image_glyphs_panel/smaller_panel/description": "ui/store_promo_timeline_screen.json", + "promo_pack_detail_panel": "ui/store_promo_timeline_screen.json", + "promo_pack_detail_panel/offset_title_panel": "ui/store_promo_timeline_screen.json", + "promo_pack_detail_panel/offsetted_promo_timer": "ui/store_promo_timeline_screen.json", + "promo_pack_detail_panel/pad_0": "ui/store_promo_timeline_screen.json", + "promo_pack_detail_panel/offsetted_details": "ui/store_promo_timeline_screen.json", + "promo_pack_detail_panel/pad_1": "ui/store_promo_timeline_screen.json", + "promo_left_inner_top_scrolling_content": "ui/store_promo_timeline_screen.json", + "promo_left_inner_top_scrolling_content/details": "ui/store_promo_timeline_screen.json", + "promo_left_inner_top": "ui/store_promo_timeline_screen.json", + "promo_left_inner_top/top": "ui/store_promo_timeline_screen.json", + "promo_left_inner_top/padding2": "ui/store_promo_timeline_screen.json", + "promo_left_inner_bottom": "ui/store_promo_timeline_screen.json", + "promo_left_inner_bottom/banner_button_top_panel": "ui/store_promo_timeline_screen.json", + "promo_left_inner_bottom/banner_button_top_panel/banner_button_top": "ui/store_promo_timeline_screen.json", + "promo_left_inner_bottom/banner_button_top_panel/platform_restricted_error_single_item": "ui/store_promo_timeline_screen.json", + "promo_left_inner_bottom/banner_button_bottom": "ui/store_promo_timeline_screen.json", + "promo_left_panel": "ui/store_promo_timeline_screen.json", + "promo_left_panel/top": "ui/store_promo_timeline_screen.json", + "promo_left_panel/bottom_buttons_padded": "ui/store_promo_timeline_screen.json", + "promo_left_panel/bottom_buttons_padded/pad_0": "ui/store_promo_timeline_screen.json", + "promo_left_panel/bottom_buttons_padded/bottom": "ui/store_promo_timeline_screen.json", + "promo_left_panel/padding": "ui/store_promo_timeline_screen.json", + "promo_world_image_panel": "ui/store_promo_timeline_screen.json", + "promo_world_image_panel/image": "ui/store_promo_timeline_screen.json", + "promo_world_image_panel/image/key_image": "ui/store_promo_timeline_screen.json", + "promo_world_image_panel/image/key_image/border": "ui/store_promo_timeline_screen.json", + "promo_grey_bar_panel": "ui/store_promo_timeline_screen.json", + "promo_grey_bar_panel/grey_bar": "ui/store_promo_timeline_screen.json", + "promo_grey_bar_panel/green_bar": "ui/store_promo_timeline_screen.json", + "promo_grey_bar_panel/padding": "ui/store_promo_timeline_screen.json", + "promo_world_button_panel": "ui/store_promo_timeline_screen.json", + "promo_world_button_panel/pan_left_button": "ui/store_promo_timeline_screen.json", + "promo_world_button_panel/navigation_bar": "ui/store_promo_timeline_screen.json", + "promo_world_button_panel/navigation_bar/grey_bar": "ui/store_promo_timeline_screen.json", + "promo_world_button_panel/navigation_bar/grey_bar/grey_bar_factory_panel": "ui/store_promo_timeline_screen.json", + "promo_world_button_panel/pan_right_button": "ui/store_promo_timeline_screen.json", + "promo_world_panel": "ui/store_promo_timeline_screen.json", + "promo_world_panel/image": "ui/store_promo_timeline_screen.json", + "promo_world_panel/padding1": "ui/store_promo_timeline_screen.json", + "promo_world_panel/buttons": "ui/store_promo_timeline_screen.json", + "promo_world_panel/padding_3": "ui/store_promo_timeline_screen.json", + "promo_skin_panel": "ui/store_promo_timeline_screen.json", + "promo_skin_panel/size_control": "ui/store_promo_timeline_screen.json", + "promo_skin_panel/size_control/background": "ui/store_promo_timeline_screen.json", + "promo_skin_panel/size_control/skin_button": "ui/store_promo_timeline_screen.json", + "promo_skin_panel/size_control/skin_button/default": "ui/store_promo_timeline_screen.json", + "promo_skin_panel/size_control/skin_button/hover": "ui/store_promo_timeline_screen.json", + "promo_skin_panel/size_control/skin_button/pressed": "ui/store_promo_timeline_screen.json", + "promo_skin_panel/size_control/skin_button/content_panel": "ui/store_promo_timeline_screen.json", + "promo_skin_panel/size_control/skin_button/content_panel/paper_doll": "ui/store_promo_timeline_screen.json", + "promo_skin_grid_panel": "ui/store_promo_timeline_screen.json", + "promo_skin_grid_panel/promo_skin_pack_grid": "ui/store_promo_timeline_screen.json", + "promo_right_panel_scroll_content": "ui/store_promo_timeline_screen.json", + "promo_right_panel_scroll_content/world_screenshots_panel": "ui/store_promo_timeline_screen.json", + "promo_right_panel_scroll_content/world_screenshots_panel/world_panel": "ui/store_promo_timeline_screen.json", + "promo_right_panel_scroll_content/skin_image_panel": "ui/store_promo_timeline_screen.json", + "promo_right_panel_scroll_content/skin_image_panel/skin_panel": "ui/store_promo_timeline_screen.json", + "promo_right_panel_scroll_content/persona_preview": "ui/store_promo_timeline_screen.json", + "skin_scroll_panel": "ui/store_promo_timeline_screen.json", + "persona_classic_skin_grid_panel": "ui/store_promo_timeline_screen.json", + "persona_classic_skin_grid_panel/persona_skin_pack_category_grid": "ui/store_promo_timeline_screen.json", + "promo_right_panel": "ui/store_promo_timeline_screen.json", + "promo_detail_panel": "ui/store_promo_timeline_screen.json", + "promo_detail_panel/detail": "ui/store_promo_timeline_screen.json", + "promo_detail_panel/center_spacing": "ui/store_promo_timeline_screen.json", + "promo_detail_panel/right": "ui/store_promo_timeline_screen.json", + "promotion_skin_viewer_panel": "ui/store_promo_timeline_screen.json", + "promotion_skin_viewer_panel/popup_dialog_factory": "ui/store_promo_timeline_screen.json", + "promotion_skin_viewer_panel/character_loading_panel": "ui/store_promo_timeline_screen.json", + "promotion_skin_viewer_panel/skin_model_panel": "ui/store_promo_timeline_screen.json", + "promotion_skin_viewer_panel/skin_model_panel/skin_model": "ui/store_promo_timeline_screen.json", + "promotion_skin_viewer_panel/skin_model_panel/arrow_panel": "ui/store_promo_timeline_screen.json", + "promotion_skin_viewer_panel/skin_model_panel/arrow_panel/rotate_arrows": "ui/store_promo_timeline_screen.json", + "promo_popup_toast": "ui/store_promo_timeline_screen.json", + }, + "store_sale_item_list": { + "banner_header": "ui/store_sales_item_list_screen.json", + "banner_header/label_panel": "ui/store_sales_item_list_screen.json", + "banner_header/label_panel/on_sale_banner": "ui/store_sales_item_list_screen.json", + "banner_header/label_panel/on_sale_banner/padding_panel": "ui/store_sales_item_list_screen.json", + "banner_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label": "ui/store_sales_item_list_screen.json", + "banner_header/label_panel/on_sale_banner/padding_panel/triangle": "ui/store_sales_item_list_screen.json", + "banner_header/label_panel/time_remaining_label": "ui/store_sales_item_list_screen.json", + "sales_offer_content": "ui/store_sales_item_list_screen.json", + "sales_offer_content/top_padding": "ui/store_sales_item_list_screen.json", + "sales_offer_content/sales_panel": "ui/store_sales_item_list_screen.json", + "sales_offer_content/sales_panel/sales_banner_panel": "ui/store_sales_item_list_screen.json", + "sales_offer_content/sales_panel/top_sales_grid_padding": "ui/store_sales_item_list_screen.json", + "sales_offer_content/sales_panel/sales_grid_panel": "ui/store_sales_item_list_screen.json", + "sales_offer_content/sales_panel/sales_grid_panel/sales_offer_grid": "ui/store_sales_item_list_screen.json", + "all_offer_content": "ui/store_sales_item_list_screen.json", + "all_offer_content/store_offer_grid_panel": "ui/store_sales_item_list_screen.json", + }, + "store_search": { + "store_offer_grid_item": "ui/store_search_screen.json", + "trending_row_content": "ui/store_search_screen.json", + "trending_row_content/trending_row_panel": "ui/store_search_screen.json", + "trending_row_content/trending_row_panel/trending_row_label_panel": "ui/store_search_screen.json", + "trending_row_content/trending_row_panel/trending_row_label_panel/trending_row_label": "ui/store_search_screen.json", + "trending_row_content/trending_row_panel/mid_padding": "ui/store_search_screen.json", + "trending_row_content/trending_row_panel/trending_offers_grid": "ui/store_search_screen.json", + "trending_row_content/trending_row_panel/bottom_padding": "ui/store_search_screen.json", + "trending_rows_grid": "ui/store_search_screen.json", + "search_offer_content": "ui/store_search_screen.json", + "search_offer_content/trending_grid": "ui/store_search_screen.json", + "search_offer_content/item_list_panel": "ui/store_search_screen.json", + "search_offer_content/item_list_panel/item_list_grid": "ui/store_search_screen.json", + "main_panel": "ui/store_search_screen.json", + "main_panel/seach_object": "ui/store_search_screen.json", + "main_panel/progress_loading": "ui/store_search_screen.json", + "store_search_screen_content": "ui/store_search_screen.json", + "store_search_screen_content/main_panel": "ui/store_search_screen.json", + "store_search_screen_content/popup_dialog_factory": "ui/store_search_screen.json", + "store_search_screen": "ui/store_search_screen.json", + }, + "sort_menu": { + "sort_menu_toggle_panel": "ui/store_sort_menu_screen.json", + "sort_menu_toggle_panel/sort_menu_toggle_panel": "ui/store_sort_menu_screen.json", + "sort_menu_toggle_panel/sort_menu_toggle_panel/sort_menu_toggle": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel/left_padding": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel/centered_sort_logo_icon": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel/centered_sort_logo_icon/sort_logo_icon": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel/logo_padding_labels": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel/labels_stack_panel": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel/labels_stack_panel/top_padding": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel/labels_stack_panel/sort_const_word_top": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel/labels_stack_panel/middle_padding": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel/labels_stack_panel/current_sort_value_label_bottom": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel/labels_stack_panel/bottom_padding": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel/labels_padding_x_image": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel/x_image_panel": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel/x_image_panel/x_image": "ui/store_sort_menu_screen.json", + "sort_menu_toggles": "ui/store_sort_menu_screen.json", + "sort_menu_toggles/relevance_toggle_panel": "ui/store_sort_menu_screen.json", + "sort_menu_toggles/relevance_toggle_panel/relevance_toggle": "ui/store_sort_menu_screen.json", + "sort_menu_toggles/sort_toggle_grid": "ui/store_sort_menu_screen.json", + "sort_menu_show": "ui/store_sort_menu_screen.json", + "sort_menu_show/1st_button_centering_panel": "ui/store_sort_menu_screen.json", + "sort_menu_show/1st_button_centering_panel/first_button_main": "ui/store_sort_menu_screen.json", + "sort_menu_show/sort_scrolling_content_panel": "ui/store_sort_menu_screen.json", + "sort_menu_panel": "ui/store_sort_menu_screen.json", + "sort_menu_panel/top_padding": "ui/store_sort_menu_screen.json", + "sort_menu_panel/alignment_panel": "ui/store_sort_menu_screen.json", + "sort_menu_panel/alignment_panel/left_padding": "ui/store_sort_menu_screen.json", + "sort_menu_panel/alignment_panel/sort_menu_show": "ui/store_sort_menu_screen.json", + "sort_menu_panel/alignment_panel/right_padding": "ui/store_sort_menu_screen.json", + "sort_menu_screen_content": "ui/store_sort_menu_screen.json", + "sort_menu_screen_content/sort_menu_main": "ui/store_sort_menu_screen.json", + "sort_menu_screen_content/sort_menu_main_persona": "ui/store_sort_menu_screen.json", + "sort_menu_screen_content/sort_menu_background": "ui/store_sort_menu_screen.json", + }, + "structure_editor": { + "small_padding": "ui/structure_editor_screen.json", + "help_icon": "ui/structure_editor_screen.json", + "common_text_label": "ui/structure_editor_screen.json", + "text_edit_control": "ui/structure_editor_screen.json", + "axis_selection_panel": "ui/structure_editor_screen.json", + "axis_selection_panel/label": "ui/structure_editor_screen.json", + "axis_selection_panel/edit_box": "ui/structure_editor_screen.json", + "grid_axis_selection_panel": "ui/structure_editor_screen.json", + "grid_axis_selection_panel/label_container": "ui/structure_editor_screen.json", + "grid_axis_selection_panel/label_container/label": "ui/structure_editor_screen.json", + "grid_axis_selection_panel/axis_grid": "ui/structure_editor_screen.json", + "grid_axis_selection_panel/axis_grid/X": "ui/structure_editor_screen.json", + "grid_axis_selection_panel/axis_grid/Y": "ui/structure_editor_screen.json", + "grid_axis_selection_panel/axis_grid/Z": "ui/structure_editor_screen.json", + "3d_export_button": "ui/structure_editor_screen.json", + "save_button": "ui/structure_editor_screen.json", + "export_button": "ui/structure_editor_screen.json", + "load_button": "ui/structure_editor_screen.json", + "detect_button": "ui/structure_editor_screen.json", + "import_button": "ui/structure_editor_screen.json", + "reset_button": "ui/structure_editor_screen.json", + "help_button": "ui/structure_editor_screen.json", + "toggle_option_panel": "ui/structure_editor_screen.json", + "toggle_option_panel/toggle": "ui/structure_editor_screen.json", + "toggle_option_panel/offset_0": "ui/structure_editor_screen.json", + "toggle_option_panel/first_label_wrapper": "ui/structure_editor_screen.json", + "toggle_option_panel/first_label_wrapper/first_label": "ui/structure_editor_screen.json", + "toggle_option_panel/second_label_wrapper": "ui/structure_editor_screen.json", + "toggle_option_panel/second_label_wrapper/second_label": "ui/structure_editor_screen.json", + "include_entities_panel": "ui/structure_editor_screen.json", + "include_entities_panel/label": "ui/structure_editor_screen.json", + "include_entities_panel/toggle_wrapper": "ui/structure_editor_screen.json", + "include_entities_panel/toggle_wrapper/toggle": "ui/structure_editor_screen.json", + "waterlogging_panel": "ui/structure_editor_screen.json", + "waterlogging_panel/label": "ui/structure_editor_screen.json", + "waterlogging_panel/toggle_wrapper": "ui/structure_editor_screen.json", + "waterlogging_panel/toggle_wrapper/toggle": "ui/structure_editor_screen.json", + "show_bounding_box_panel": "ui/structure_editor_screen.json", + "show_bounding_box_panel/label": "ui/structure_editor_screen.json", + "show_bounding_box_panel/toggle_wrapper": "ui/structure_editor_screen.json", + "show_bounding_box_panel/toggle_wrapper/toggle": "ui/structure_editor_screen.json", + "include_player_panel": "ui/structure_editor_screen.json", + "include_player_panel/label": "ui/structure_editor_screen.json", + "include_player_panel/toggle_wrapper": "ui/structure_editor_screen.json", + "include_player_panel/toggle_wrapper/toggle": "ui/structure_editor_screen.json", + "remove_blocks_panel": "ui/structure_editor_screen.json", + "remove_blocks_panel/label": "ui/structure_editor_screen.json", + "remove_blocks_panel/toggle_wrapper": "ui/structure_editor_screen.json", + "remove_blocks_panel/toggle_wrapper/toggle": "ui/structure_editor_screen.json", + "3d_export_mode_panel": "ui/structure_editor_screen.json", + "3d_export_mode_panel/size_offset_panel": "ui/structure_editor_screen.json", + "3d_export_mode_panel/size_offset_panel/size_panel": "ui/structure_editor_screen.json", + "3d_export_mode_panel/size_offset_panel/offset_panel": "ui/structure_editor_screen.json", + "3d_export_mode_panel/offset_0": "ui/structure_editor_screen.json", + "3d_export_mode_panel/offset_2": "ui/structure_editor_screen.json", + "3d_export_mode_panel/remove_blocks": "ui/structure_editor_screen.json", + "save_mode_panel": "ui/structure_editor_screen.json", + "save_mode_panel/structure_name": "ui/structure_editor_screen.json", + "save_mode_panel/size_offset_panel": "ui/structure_editor_screen.json", + "save_mode_panel/size_offset_panel/size_panel": "ui/structure_editor_screen.json", + "save_mode_panel/size_offset_panel/offset_panel": "ui/structure_editor_screen.json", + "save_mode_panel/detect_offset": "ui/structure_editor_screen.json", + "save_mode_panel/detect": "ui/structure_editor_screen.json", + "save_mode_panel/include_entities_offset": "ui/structure_editor_screen.json", + "save_mode_panel/include_entities": "ui/structure_editor_screen.json", + "save_mode_panel/remove_blocks_offset": "ui/structure_editor_screen.json", + "save_mode_panel/remove_blocks": "ui/structure_editor_screen.json", + "save_mode_panel/redstone_save_offset": "ui/structure_editor_screen.json", + "save_mode_panel/redstone_save_mode": "ui/structure_editor_screen.json", + "save_mode_panel/trailing_offset": "ui/structure_editor_screen.json", + "mirror_checkbox": "ui/structure_editor_screen.json", + "mirror_checkbox/label": "ui/structure_editor_screen.json", + "mirror_checkbox/padding": "ui/structure_editor_screen.json", + "mirror_checkbox/check_box": "ui/structure_editor_screen.json", + "mirror_checkboxes": "ui/structure_editor_screen.json", + "mirror_checkboxes/mirror_checkbox_x": "ui/structure_editor_screen.json", + "mirror_checkboxes/padding": "ui/structure_editor_screen.json", + "mirror_checkboxes/mirror_checkbox_z": "ui/structure_editor_screen.json", + "load_mode_panel": "ui/structure_editor_screen.json", + "load_mode_panel/structure_name": "ui/structure_editor_screen.json", + "load_mode_panel/offset_panel": "ui/structure_editor_screen.json", + "load_mode_panel/include_entities_offset": "ui/structure_editor_screen.json", + "load_mode_panel/include_entities": "ui/structure_editor_screen.json", + "load_mode_panel/remove_blocks_offset": "ui/structure_editor_screen.json", + "load_mode_panel/waterlog_blocks": "ui/structure_editor_screen.json", + "load_mode_panel/waterlog_blocks_offset": "ui/structure_editor_screen.json", + "load_mode_panel/remove_blocks": "ui/structure_editor_screen.json", + "load_mode_panel/integrity_offset": "ui/structure_editor_screen.json", + "load_mode_panel/integrity_label": "ui/structure_editor_screen.json", + "load_mode_panel/integrity_field": "ui/structure_editor_screen.json", + "load_mode_panel/offset_1": "ui/structure_editor_screen.json", + "load_mode_panel/seed_label": "ui/structure_editor_screen.json", + "load_mode_panel/seed_field": "ui/structure_editor_screen.json", + "load_mode_panel/offset_2": "ui/structure_editor_screen.json", + "load_mode_panel/rotation_slider": "ui/structure_editor_screen.json", + "load_mode_panel/mirror_label": "ui/structure_editor_screen.json", + "load_mode_panel/mirror_checkboxes_centerer": "ui/structure_editor_screen.json", + "load_mode_panel/mirror_checkboxes_centerer/mirror_checkboxes": "ui/structure_editor_screen.json", + "load_mode_panel/checkbox_offset": "ui/structure_editor_screen.json", + "load_mode_panel/animation_mode": "ui/structure_editor_screen.json", + "load_mode_panel/animation_time_label": "ui/structure_editor_screen.json", + "load_mode_panel/animation_time_field": "ui/structure_editor_screen.json", + "data_mode_panel": "ui/structure_editor_screen.json", + "data_mode_panel/top_offset": "ui/structure_editor_screen.json", + "data_mode_panel/data_label": "ui/structure_editor_screen.json", + "data_mode_panel/data_label_offset": "ui/structure_editor_screen.json", + "data_mode_panel/data_field": "ui/structure_editor_screen.json", + "data_mode_panel/data_field_offset": "ui/structure_editor_screen.json", + "corner_mode_panel": "ui/structure_editor_screen.json", + "corner_mode_panel/structure_name": "ui/structure_editor_screen.json", + "help_button_panel": "ui/structure_editor_screen.json", + "help_button_panel/help": "ui/structure_editor_screen.json", + "help_button_panel/help_divider": "ui/structure_editor_screen.json", + "save_button_panel": "ui/structure_editor_screen.json", + "save_button_panel/divider": "ui/structure_editor_screen.json", + "save_button_panel/save": "ui/structure_editor_screen.json", + "save_button_panel/save_divider": "ui/structure_editor_screen.json", + "save_button_panel/export": "ui/structure_editor_screen.json", + "save_button_panel/export_divider": "ui/structure_editor_screen.json", + "save_button_panel/import_divider": "ui/structure_editor_screen.json", + "save_button_panel/reset": "ui/structure_editor_screen.json", + "save_button_panel/reset_divider": "ui/structure_editor_screen.json", + "save_button_panel_no_export": "ui/structure_editor_screen.json", + "save_button_panel_no_export/divider": "ui/structure_editor_screen.json", + "save_button_panel_no_export/save": "ui/structure_editor_screen.json", + "save_button_panel_no_export/save_divider": "ui/structure_editor_screen.json", + "save_button_panel_no_export/reset": "ui/structure_editor_screen.json", + "save_button_panel_no_export/reset_divider": "ui/structure_editor_screen.json", + "load_button_panel": "ui/structure_editor_screen.json", + "load_button_panel/divider": "ui/structure_editor_screen.json", + "load_button_panel/load": "ui/structure_editor_screen.json", + "load_button_panel/load_divider": "ui/structure_editor_screen.json", + "load_button_panel/export_divider": "ui/structure_editor_screen.json", + "load_button_panel/import": "ui/structure_editor_screen.json", + "load_button_panel/import_divider": "ui/structure_editor_screen.json", + "load_button_panel/reset": "ui/structure_editor_screen.json", + "load_button_panel/reset_divider": "ui/structure_editor_screen.json", + "load_button_panel_no_export": "ui/structure_editor_screen.json", + "load_button_panel_no_export/divider": "ui/structure_editor_screen.json", + "load_button_panel_no_export/load": "ui/structure_editor_screen.json", + "load_button_panel_no_export/load_divider": "ui/structure_editor_screen.json", + "load_button_panel_no_export/reset": "ui/structure_editor_screen.json", + "load_button_panel_no_export/reset_divider": "ui/structure_editor_screen.json", + "3d_export_button_panel": "ui/structure_editor_screen.json", + "3d_export_button_panel/divider": "ui/structure_editor_screen.json", + "3d_export_button_panel/3d_export": "ui/structure_editor_screen.json", + "3d_export_button_panel/3d_export_divider": "ui/structure_editor_screen.json", + "3d_export_button_panel/import": "ui/structure_editor_screen.json", + "3d_export_button_panel/import_divider": "ui/structure_editor_screen.json", + "3d_export_button_panel/reset": "ui/structure_editor_screen.json", + "3d_export_button_panel/reset_divider": "ui/structure_editor_screen.json", + "data_button_panel": "ui/structure_editor_screen.json", + "data_button_panel/divider": "ui/structure_editor_screen.json", + "data_button_panel/reset": "ui/structure_editor_screen.json", + "data_button_panel/reset_divider": "ui/structure_editor_screen.json", + "corner_button_panel": "ui/structure_editor_screen.json", + "corner_button_panel/reset_divider": "ui/structure_editor_screen.json", + "button_panel_wrapper": "ui/structure_editor_screen.json", + "button_panel_wrapper/panel": "ui/structure_editor_screen.json", + "button_panel_wrapper/panel/divider": "ui/structure_editor_screen.json", + "button_panel_wrapper/panel/save_panel": "ui/structure_editor_screen.json", + "button_panel_wrapper/panel/save_panel_no_export": "ui/structure_editor_screen.json", + "button_panel_wrapper/panel/corner_panel": "ui/structure_editor_screen.json", + "button_panel_wrapper/panel/load_panel_no_export": "ui/structure_editor_screen.json", + "button_panel_wrapper/panel/load_panel": "ui/structure_editor_screen.json", + "button_panel_wrapper/panel/3d_export_panel": "ui/structure_editor_screen.json", + "button_panel_wrapper/panel/data_panel": "ui/structure_editor_screen.json", + "button_panel_wrapper/panel/how_to_play_button": "ui/structure_editor_screen.json", + "button_panel_wrapper/panel/end_divider": "ui/structure_editor_screen.json", + "redstone_dropdown_content": "ui/structure_editor_screen.json", + "redstone_save_mode_panel": "ui/structure_editor_screen.json", + "animation_mode_dropdown_content": "ui/structure_editor_screen.json", + "animation_mode_dropdown": "ui/structure_editor_screen.json", + "structure_name_wrapper": "ui/structure_editor_screen.json", + "structure_name_wrapper/structure_name": "ui/structure_editor_screen.json", + "structure_name_wrapper/structure_name_offset": "ui/structure_editor_screen.json", + "detect_button_wrapper": "ui/structure_editor_screen.json", + "detect_button_wrapper/detect": "ui/structure_editor_screen.json", + "detect_button_wrapper/detect_offset": "ui/structure_editor_screen.json", + "mode_dropdown_content": "ui/structure_editor_screen.json", + "mode_panel": "ui/structure_editor_screen.json", + "scrolling_panel_wrapper": "ui/structure_editor_screen.json", + "scrolling_panel_wrapper/scrolling_panel": "ui/structure_editor_screen.json", + "scrolling_panel": "ui/structure_editor_screen.json", + "scroll_panel_content": "ui/structure_editor_screen.json", + "scroll_panel_content/content_stack_panel": "ui/structure_editor_screen.json", + "scroll_panel_content/content_stack_panel/base_offset": "ui/structure_editor_screen.json", + "scroll_panel_content/content_stack_panel/mode_panel": "ui/structure_editor_screen.json", + "scroll_panel_content/content_stack_panel/mode_panel_offset": "ui/structure_editor_screen.json", + "scroll_panel_content/content_stack_panel/3d_export_mode_panel": "ui/structure_editor_screen.json", + "scroll_panel_content/content_stack_panel/save_mode_panel": "ui/structure_editor_screen.json", + "scroll_panel_content/content_stack_panel/load_mode_panel": "ui/structure_editor_screen.json", + "scroll_panel_content/content_stack_panel/data_mode_panel": "ui/structure_editor_screen.json", + "scroll_panel_content/content_stack_panel/corner_mode_panel": "ui/structure_editor_screen.json", + "scroll_panel_content/content_stack_panel/base_mode_offset": "ui/structure_editor_screen.json", + "scroll_panel_content/content_stack_panel/show_bounding_box": "ui/structure_editor_screen.json", + "scroll_panel_content/content_stack_panel/show_bounding_box_offset": "ui/structure_editor_screen.json", + "scroll_panel_content/content_stack_panel/offset_2": "ui/structure_editor_screen.json", + "left_divider_content": "ui/structure_editor_screen.json", + "left_divider_content/scrolling_panel": "ui/structure_editor_screen.json", + "save_message_text": "ui/structure_editor_screen.json", + "save_message_text/save_message_label": "ui/structure_editor_screen.json", + "import_message_text": "ui/structure_editor_screen.json", + "import_message_text/save_message_label": "ui/structure_editor_screen.json", + "import_failed_message_text": "ui/structure_editor_screen.json", + "import_failed_message_text/save_message_label": "ui/structure_editor_screen.json", + "export_disabled_label": "ui/structure_editor_screen.json", + "image_panel_wrapper": "ui/structure_editor_screen.json", + "image_panel_wrapper/image_panel": "ui/structure_editor_screen.json", + "image_panel_wrapper/save_message_factory": "ui/structure_editor_screen.json", + "image_panel_wrapper/import_message_factory": "ui/structure_editor_screen.json", + "image_panel_wrapper/import_failed_message_factory": "ui/structure_editor_screen.json", + "image_panel_wrapper/export_disabled": "ui/structure_editor_screen.json", + "corner_text": "ui/structure_editor_screen.json", + "corner_text/image_panel": "ui/structure_editor_screen.json", + "image_panel": "ui/structure_editor_screen.json", + "image_panel/border_indent": "ui/structure_editor_screen.json", + "image_panel/border_indent/background_gradient": "ui/structure_editor_screen.json", + "image_panel/border_indent/image_outline": "ui/structure_editor_screen.json", + "image_panel/border_indent/structure_renderer": "ui/structure_editor_screen.json", + "image_panel/border_indent/text_corner": "ui/structure_editor_screen.json", + "image_panel/border_indent/progress_panel": "ui/structure_editor_screen.json", + "image_panel/border_indent/rotate_arrows": "ui/structure_editor_screen.json", + "progress_panel": "ui/structure_editor_screen.json", + "progress_panel/stack_panel": "ui/structure_editor_screen.json", + "progress_panel/stack_panel/label_wrapper": "ui/structure_editor_screen.json", + "progress_panel/stack_panel/label_wrapper/progress_label": "ui/structure_editor_screen.json", + "progress_panel/stack_panel/progress_bar": "ui/structure_editor_screen.json", + "background_gradient": "ui/structure_editor_screen.json", + "corner_text_panel": "ui/structure_editor_screen.json", + "corner_text_panel/paragraph_1_corner": "ui/structure_editor_screen.json", + "corner_text_panel/padding_1": "ui/structure_editor_screen.json", + "corner_text_panel/paragraph_2_corner": "ui/structure_editor_screen.json", + "structure_renderer": "ui/structure_editor_screen.json", + "structure_renderer/renderer": "ui/structure_editor_screen.json", + "black_border": "ui/structure_editor_screen.json", + "rotation_arrows": "ui/structure_editor_screen.json", + "right_divider_content": "ui/structure_editor_screen.json", + "right_divider_content/base_offset": "ui/structure_editor_screen.json", + "right_divider_content/preview": "ui/structure_editor_screen.json", + "right_divider_content/image_offset": "ui/structure_editor_screen.json", + "right_divider_content/button_wrapper": "ui/structure_editor_screen.json", + "right_divider_content/button_wrapper/buttons": "ui/structure_editor_screen.json", + "divider_content": "ui/structure_editor_screen.json", + "divider_content/left_side": "ui/structure_editor_screen.json", + "divider_content/right_side": "ui/structure_editor_screen.json", + "structure_editor_content": "ui/structure_editor_screen.json", + "structure_editor_content/background_panel": "ui/structure_editor_screen.json", + "structure_editor_content/title": "ui/structure_editor_screen.json", + "structure_editor_content/content": "ui/structure_editor_screen.json", + "structure_editor_screen": "ui/structure_editor_screen.json", + }, + "submit_feedback": { + "send_feedback_button": "ui/submit_feedback_screen.json", + "write_feedback_panel": "ui/submit_feedback_screen.json", + "write_feedback_panel/pad_1": "ui/submit_feedback_screen.json", + "write_feedback_panel/write_feedback_label": "ui/submit_feedback_screen.json", + "write_feedback_panel/pad_2": "ui/submit_feedback_screen.json", + "write_feedback_panel/feedback_textbox": "ui/submit_feedback_screen.json", + "write_feedback_panel/remaining_characters_panel": "ui/submit_feedback_screen.json", + "write_feedback_panel/remaining_characters_panel/remaining_characters_count_label": "ui/submit_feedback_screen.json", + "scroll_panel": "ui/submit_feedback_screen.json", + "scroll_panel/write_feedback_panel": "ui/submit_feedback_screen.json", + "main_panel": "ui/submit_feedback_screen.json", + "main_panel/scrolling_panel": "ui/submit_feedback_screen.json", + "submit_feedback_screen": "ui/submit_feedback_screen.json", + "submit_feedback_content": "ui/submit_feedback_screen.json", + "submit_feedback_content/submit_feedback_main_panel": "ui/submit_feedback_screen.json", + "submit_feedback_content/progress_loading": "ui/submit_feedback_screen.json", + }, + "tabbed_upsell": { + "padding_horizontal": "ui/tabbed_upsell_screen.json", + "padding_vertical": "ui/tabbed_upsell_screen.json", + "text_horizontal_padding": "ui/tabbed_upsell_screen.json", + "tabbed_upsell_buy_now_button": "ui/tabbed_upsell_screen.json", + "tabbed_buy_now_label": "ui/tabbed_upsell_screen.json", + "tabbed_buy_now_label/button_label": "ui/tabbed_upsell_screen.json", + "label_panel": "ui/tabbed_upsell_screen.json", + "label_panel/label_text": "ui/tabbed_upsell_screen.json", + "text_panel": "ui/tabbed_upsell_screen.json", + "text_panel/tab_content_title_panel": "ui/tabbed_upsell_screen.json", + "text_panel/tab_content_description_panel": "ui/tabbed_upsell_screen.json", + "text_panel/tab_content_description_panel_second": "ui/tabbed_upsell_screen.json", + "dialog_image": "ui/tabbed_upsell_screen.json", + "dialog_image_with_border": "ui/tabbed_upsell_screen.json", + "dialog_image_with_border/dialog_image": "ui/tabbed_upsell_screen.json", + "content_image_panel": "ui/tabbed_upsell_screen.json", + "content_image_panel/minecraft_dialog_image_with_border": "ui/tabbed_upsell_screen.json", + "content_image_panel/horizontal_padding_01": "ui/tabbed_upsell_screen.json", + "content_image_panel/scrolling_panel": "ui/tabbed_upsell_screen.json", + "scroll_text": "ui/tabbed_upsell_screen.json", + "image_panel": "ui/tabbed_upsell_screen.json", + "image_panel/dialog_image_with_border": "ui/tabbed_upsell_screen.json", + "image_panel/focus_image": "ui/tabbed_upsell_screen.json", + "top_tab": "ui/tabbed_upsell_screen.json", + "tab_navigation_panel_layout": "ui/tabbed_upsell_screen.json", + "tab_navigation_panel_layout/navigation_tabs": "ui/tabbed_upsell_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content": "ui/tabbed_upsell_screen.json", + "common_tab_navigation_panel_layout": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/minecraft_navigation_tab": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_01": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/xbl_navigation_tab": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_02": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_03": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_04": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/server_navigation_tab": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_05": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/store_navigation_tab": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_06": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/creative_navigation_tab": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_07": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/packs_navigation_tab": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_08": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/seeds_navigation_tab": "ui/tabbed_upsell_screen.json", + "tabbed_tab_content_panel_layout": "ui/tabbed_upsell_screen.json", + "tabbed_tab_content_panel_layout/minecraft_tab_content": "ui/tabbed_upsell_screen.json", + "tabbed_tab_content_panel_layout/xbl_tab_content2": "ui/tabbed_upsell_screen.json", + "tabbed_tab_content_panel_layout/achievements_tab_content3": "ui/tabbed_upsell_screen.json", + "tabbed_tab_content_panel_layout/multiplayer_tab_content4": "ui/tabbed_upsell_screen.json", + "tabbed_tab_content_panel_layout/server_tab_content5": "ui/tabbed_upsell_screen.json", + "tabbed_tab_content_panel_layout/store_tab_content6": "ui/tabbed_upsell_screen.json", + "tabbed_tab_content_panel_layout/creative_tab_content7": "ui/tabbed_upsell_screen.json", + "tabbed_tab_content_panel_layout/packs_tab_content8": "ui/tabbed_upsell_screen.json", + "tabbed_tab_content_panel_layout/seeds_tab_content9": "ui/tabbed_upsell_screen.json", + "common_tab_content_panel": "ui/tabbed_upsell_screen.json", + "common_tab_content_panel/content": "ui/tabbed_upsell_screen.json", + "minecraft_tab_content_panel": "ui/tabbed_upsell_screen.json", + "xbl_tab_content_panel": "ui/tabbed_upsell_screen.json", + "achievements_tab_content_panel": "ui/tabbed_upsell_screen.json", + "multiplayer_tab_content_panel": "ui/tabbed_upsell_screen.json", + "server_tab_content_panel": "ui/tabbed_upsell_screen.json", + "store_tab_content_panel": "ui/tabbed_upsell_screen.json", + "creative_tab_content_panel": "ui/tabbed_upsell_screen.json", + "packs_tab_content_panel": "ui/tabbed_upsell_screen.json", + "seeds_tab_content_panel": "ui/tabbed_upsell_screen.json", + "common_tab_screen_panel": "ui/tabbed_upsell_screen.json", + "common_tab_screen_panel/tab_navigation_panel": "ui/tabbed_upsell_screen.json", + "common_tab_screen_panel/padding_01": "ui/tabbed_upsell_screen.json", + "common_tab_screen_panel/tab_content_panel": "ui/tabbed_upsell_screen.json", + "tabbed_screen_panel": "ui/tabbed_upsell_screen.json", + "button_panel": "ui/tabbed_upsell_screen.json", + "button_panel/padding_5": "ui/tabbed_upsell_screen.json", + "button_panel/buy_now_button": "ui/tabbed_upsell_screen.json", + "button_panel/padding_6": "ui/tabbed_upsell_screen.json", + "tab_panel": "ui/tabbed_upsell_screen.json", + "tab_panel/padding_3": "ui/tabbed_upsell_screen.json", + "tab_panel/main_control": "ui/tabbed_upsell_screen.json", + "tab_panel/padding_4": "ui/tabbed_upsell_screen.json", + "tabbed_upsell_content": "ui/tabbed_upsell_screen.json", + "tabbed_upsell_content/padding_0": "ui/tabbed_upsell_screen.json", + "tabbed_upsell_content/tab_panel": "ui/tabbed_upsell_screen.json", + "tabbed_upsell_content/padding_1": "ui/tabbed_upsell_screen.json", + "tabbed_upsell_content/button_panel": "ui/tabbed_upsell_screen.json", + "tabbed_upsell_content/padding_2": "ui/tabbed_upsell_screen.json", + "tabbed_upsell_screen": "ui/tabbed_upsell_screen.json", + "tabbed_upsell_screen_panel": "ui/tabbed_upsell_screen.json", + "tabbed_upsell_screen_panel/tabbed_upsell_screen_content": "ui/tabbed_upsell_screen.json", + "tabbed_upsell_screen_panel/background": "ui/tabbed_upsell_screen.json", + }, + "thanks_for_testing": { + "padding_horizontal": "ui/thanks_for_testing_screen.json", + "padding_vertical": "ui/thanks_for_testing_screen.json", + "text_horizontal_padding": "ui/thanks_for_testing_screen.json", + "tabbed_upsell_buy_now_button": "ui/thanks_for_testing_screen.json", + "tabbed_buy_now_label": "ui/thanks_for_testing_screen.json", + "tabbed_buy_now_label/button_label": "ui/thanks_for_testing_screen.json", + "label_panel": "ui/thanks_for_testing_screen.json", + "label_panel/label_text": "ui/thanks_for_testing_screen.json", + "text_panel": "ui/thanks_for_testing_screen.json", + "text_panel/tab_content_title_panel": "ui/thanks_for_testing_screen.json", + "text_panel/tab_content_description_panel": "ui/thanks_for_testing_screen.json", + "text_panel/tab_content_description_panel_second": "ui/thanks_for_testing_screen.json", + "dialog_image": "ui/thanks_for_testing_screen.json", + "dialog_image_with_border": "ui/thanks_for_testing_screen.json", + "dialog_image_with_border/dialog_image": "ui/thanks_for_testing_screen.json", + "content_image_panel": "ui/thanks_for_testing_screen.json", + "content_image_panel/minecraft_dialog_image_with_border": "ui/thanks_for_testing_screen.json", + "content_image_panel/horizontal_padding_01": "ui/thanks_for_testing_screen.json", + "content_image_panel/scrolling_panel": "ui/thanks_for_testing_screen.json", + "scroll_text": "ui/thanks_for_testing_screen.json", + "image_panel": "ui/thanks_for_testing_screen.json", + "image_panel/dialog_image_with_border": "ui/thanks_for_testing_screen.json", + "image_panel/focus_image": "ui/thanks_for_testing_screen.json", + "top_tab": "ui/thanks_for_testing_screen.json", + "tab_navigation_panel_layout": "ui/thanks_for_testing_screen.json", + "tab_navigation_panel_layout/navigation_tabs": "ui/thanks_for_testing_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content": "ui/thanks_for_testing_screen.json", + "common_tab_navigation_panel_layout": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/minecraft_navigation_tab": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_01": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/xbl_navigation_tab": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_02": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_03": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_04": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/server_navigation_tab": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_05": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/store_navigation_tab": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_06": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/creative_navigation_tab": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_07": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/packs_navigation_tab": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_08": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/seeds_navigation_tab": "ui/thanks_for_testing_screen.json", + "tabbed_tab_content_panel_layout": "ui/thanks_for_testing_screen.json", + "tabbed_tab_content_panel_layout/minecraft_tab_content": "ui/thanks_for_testing_screen.json", + "tabbed_tab_content_panel_layout/xbl_tab_content2": "ui/thanks_for_testing_screen.json", + "tabbed_tab_content_panel_layout/achievements_tab_content3": "ui/thanks_for_testing_screen.json", + "tabbed_tab_content_panel_layout/multiplayer_tab_content4": "ui/thanks_for_testing_screen.json", + "tabbed_tab_content_panel_layout/server_tab_content5": "ui/thanks_for_testing_screen.json", + "tabbed_tab_content_panel_layout/store_tab_content6": "ui/thanks_for_testing_screen.json", + "tabbed_tab_content_panel_layout/creative_tab_content7": "ui/thanks_for_testing_screen.json", + "tabbed_tab_content_panel_layout/packs_tab_content8": "ui/thanks_for_testing_screen.json", + "tabbed_tab_content_panel_layout/seeds_tab_content9": "ui/thanks_for_testing_screen.json", + "common_tab_content_panel": "ui/thanks_for_testing_screen.json", + "common_tab_content_panel/content": "ui/thanks_for_testing_screen.json", + "minecraft_tab_content_panel": "ui/thanks_for_testing_screen.json", + "xbl_tab_content_panel": "ui/thanks_for_testing_screen.json", + "achievements_tab_content_panel": "ui/thanks_for_testing_screen.json", + "multiplayer_tab_content_panel": "ui/thanks_for_testing_screen.json", + "server_tab_content_panel": "ui/thanks_for_testing_screen.json", + "store_tab_content_panel": "ui/thanks_for_testing_screen.json", + "creative_tab_content_panel": "ui/thanks_for_testing_screen.json", + "packs_tab_content_panel": "ui/thanks_for_testing_screen.json", + "seeds_tab_content_panel": "ui/thanks_for_testing_screen.json", + "common_tab_screen_panel": "ui/thanks_for_testing_screen.json", + "common_tab_screen_panel/tab_navigation_panel": "ui/thanks_for_testing_screen.json", + "common_tab_screen_panel/padding_01": "ui/thanks_for_testing_screen.json", + "common_tab_screen_panel/tab_content_panel": "ui/thanks_for_testing_screen.json", + "tabbed_screen_panel": "ui/thanks_for_testing_screen.json", + "button_panel": "ui/thanks_for_testing_screen.json", + "button_panel/padding_5": "ui/thanks_for_testing_screen.json", + "button_panel/buy_now_button": "ui/thanks_for_testing_screen.json", + "button_panel/padding_6": "ui/thanks_for_testing_screen.json", + "tab_panel": "ui/thanks_for_testing_screen.json", + "tab_panel/padding_3": "ui/thanks_for_testing_screen.json", + "tab_panel/main_control": "ui/thanks_for_testing_screen.json", + "tab_panel/padding_4": "ui/thanks_for_testing_screen.json", + "tabbed_upsell_content": "ui/thanks_for_testing_screen.json", + "tabbed_upsell_content/padding_0": "ui/thanks_for_testing_screen.json", + "tabbed_upsell_content/tab_panel": "ui/thanks_for_testing_screen.json", + "tabbed_upsell_content/padding_1": "ui/thanks_for_testing_screen.json", + "tabbed_upsell_content/button_panel": "ui/thanks_for_testing_screen.json", + "tabbed_upsell_content/padding_2": "ui/thanks_for_testing_screen.json", + "thanks_for_testing_screen": "ui/thanks_for_testing_screen.json", + "tabbed_upsell_screen_panel": "ui/thanks_for_testing_screen.json", + "tabbed_upsell_screen_panel/tabbed_upsell_screen_content": "ui/thanks_for_testing_screen.json", + "tabbed_upsell_screen_panel/background": "ui/thanks_for_testing_screen.json", + }, + "third_party_store": { + "third_party_store_screen": "ui/third_party_store_screen.json", + }, + "toast_screen": { + "toast_image": "ui/toast_screen.json", + "toast_icon": "ui/toast_screen.json", + "toast_icon/toast_icon": "ui/toast_screen.json", + "xbox_icon": "ui/toast_screen.json", + "third_party_invite_icon": "ui/toast_screen.json", + "third_party_achievement_icon": "ui/toast_screen.json", + "persona_icon": "ui/toast_screen.json", + "persona_icon/item": "ui/toast_screen.json", + "resource_pack_icon": "ui/toast_screen.json", + "resource_pack_icon/resource_pack_image": "ui/toast_screen.json", + "key_art_image": "ui/toast_screen.json", + "gamer_score_icon": "ui/toast_screen.json", + "toast_label": "ui/toast_screen.json", + "static_button_state_panel": "ui/toast_screen.json", + "static_button": "ui/toast_screen.json", + "static_button/default": "ui/toast_screen.json", + "static_button/hover": "ui/toast_screen.json", + "static_button/pressed": "ui/toast_screen.json", + "static_button/locked": "ui/toast_screen.json", + "popup": "ui/toast_screen.json", + "popup/background": "ui/toast_screen.json", + "popup/popup_content": "ui/toast_screen.json", + "popup/popup_content/icon_padding": "ui/toast_screen.json", + "popup/popup_content/text_padding": "ui/toast_screen.json", + "popup/popup_content/text_panel": "ui/toast_screen.json", + "popup/popup_content/text_panel/text_stack_panel": "ui/toast_screen.json", + "popup/popup_content/button_panel": "ui/toast_screen.json", + "popup/popup_content/button_panel/visual_button": "ui/toast_screen.json", + "item_renderer": "ui/toast_screen.json", + "game_tip_label": "ui/toast_screen.json", + "toast_progress_bar": "ui/toast_screen.json", + "toast_progress_bar/toast_duration_progress_bar": "ui/toast_screen.json", + "recipe_unlocked_icon": "ui/toast_screen.json", + "recipe_unlocked_icon/padding_vertical": "ui/toast_screen.json", + "recipe_unlocked_icon/item_renderer": "ui/toast_screen.json", + "recipe_unlocked_popup": "ui/toast_screen.json", + "recipe_unlocked_popup/input_panel": "ui/toast_screen.json", + "recipe_unlocked_popup/input_panel/label_panel": "ui/toast_screen.json", + "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_1": "ui/toast_screen.json", + "recipe_unlocked_popup/input_panel/label_panel/recipe_unlocked_icon": "ui/toast_screen.json", + "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_2": "ui/toast_screen.json", + "recipe_unlocked_popup/input_panel/label_panel/label_panel": "ui/toast_screen.json", + "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_1": "ui/toast_screen.json", + "recipe_unlocked_popup/input_panel/label_panel/label_panel/label": "ui/toast_screen.json", + "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_2": "ui/toast_screen.json", + "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_3": "ui/toast_screen.json", + "recipe_unlocked_pocket_popup": "ui/toast_screen.json", + "recipe_unlocked_pocket_popup/input_panel": "ui/toast_screen.json", + "recipe_unlocked_pocket_popup/input_panel/label_panel": "ui/toast_screen.json", + "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_1": "ui/toast_screen.json", + "recipe_unlocked_pocket_popup/input_panel/label_panel/recipe_unlocked_icon": "ui/toast_screen.json", + "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_2": "ui/toast_screen.json", + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel": "ui/toast_screen.json", + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical": "ui/toast_screen.json", + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/label": "ui/toast_screen.json", + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical_1": "ui/toast_screen.json", + "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_3": "ui/toast_screen.json", + "text_stack_panel": "ui/toast_screen.json", + "text_stack_panel/title": "ui/toast_screen.json", + "text_stack_panel/subtitle": "ui/toast_screen.json", + "text_stack_panel/subtitle/icon_padding": "ui/toast_screen.json", + "text_stack_panel/subtitle/icon_padding/gamer_score_icon": "ui/toast_screen.json", + "text_stack_panel/subtitle/subtext_offset": "ui/toast_screen.json", + "text_stack_panel/subtitle/subtext_offset/subtext": "ui/toast_screen.json", + "join_button_icon": "ui/toast_screen.json", + "chat_popup": "ui/toast_screen.json", + "splitscreen_join_popup": "ui/toast_screen.json", + "splitscreen_join_popup/join_button_icon": "ui/toast_screen.json", + "splitscreen_join_popup/join_prompt_text_panel": "ui/toast_screen.json", + "splitscreen_join_popup/join_prompt_text_panel/join_prompt_text": "ui/toast_screen.json", + "formfitting_alpha_toast": "ui/toast_screen.json", + "formfitting_alpha_toast/bg": "ui/toast_screen.json", + "formfitting_alpha_toast/bg/label": "ui/toast_screen.json", + "snackbar": "ui/toast_screen.json", + "snackbar/body": "ui/toast_screen.json", + "snackbar/body/background": "ui/toast_screen.json", + "snackbar/body/background/content": "ui/toast_screen.json", + "snackbar/body/background/content/left_padding": "ui/toast_screen.json", + "snackbar/body/background/content/vertically_central_text": "ui/toast_screen.json", + "snackbar/body/background/content/vertically_central_text/top_padding": "ui/toast_screen.json", + "snackbar/body/background/content/vertically_central_text/text": "ui/toast_screen.json", + "snackbar/body/background/content/right_padding": "ui/toast_screen.json", + "snackbar/body/background/right_shadow": "ui/toast_screen.json", + "progress_button_content": "ui/toast_screen.json", + "progress_button_content/gamepad_icon_glyph": "ui/toast_screen.json", + "progress_button_content/spacer": "ui/toast_screen.json", + "progress_button_content/progress_button_label": "ui/toast_screen.json", + "progress_popup": "ui/toast_screen.json", + "progress_popup/background": "ui/toast_screen.json", + "progress_popup/popup_content": "ui/toast_screen.json", + "progress_popup/popup_content/progress_toast_image": "ui/toast_screen.json", + "progress_popup/popup_content/profilepicture": "ui/toast_screen.json", + "progress_popup/popup_content/text_padding": "ui/toast_screen.json", + "progress_popup/popup_content/progress_content_vertical_panel": "ui/toast_screen.json", + "progress_popup/popup_content/progress_content_vertical_panel/title_text_label": "ui/toast_screen.json", + "progress_popup/popup_content/progress_content_vertical_panel/subtext": "ui/toast_screen.json", + "progress_popup/popup_content/progress_content_vertical_panel/stacked_progress_bar": "ui/toast_screen.json", + "progress_popup/popup_content/progress_content_vertical_panel/end_progress_padding": "ui/toast_screen.json", + "progress_popup/popup_content/divider_padding": "ui/toast_screen.json", + "progress_popup/popup_content/divider_image": "ui/toast_screen.json", + "progress_popup/popup_content/popup_decline_button": "ui/toast_screen.json", + "progress_popup/popup_content/end_padding": "ui/toast_screen.json", + "party_invite_popup": "ui/toast_screen.json", + "party_invite_popup/background": "ui/toast_screen.json", + "party_invite_popup/party_invite_content": "ui/toast_screen.json", + "party_invite_popup/party_invite_content/profilepicture": "ui/toast_screen.json", + "party_invite_popup/party_invite_content/text_padding": "ui/toast_screen.json", + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel": "ui/toast_screen.json", + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/title_text_label": "ui/toast_screen.json", + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/subtext": "ui/toast_screen.json", + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/end_padding": "ui/toast_screen.json", + "party_invite_popup/party_invite_content/divider_padding": "ui/toast_screen.json", + "party_invite_popup/party_invite_content/divider_image": "ui/toast_screen.json", + "party_invite_popup/party_invite_content/party_invite_button": "ui/toast_screen.json", + "party_invite_popup/party_invite_content/end_padding": "ui/toast_screen.json", + "party_travel_popup": "ui/toast_screen.json", + "toast_screen": "ui/toast_screen.json", + "toast_screen_content": "ui/toast_screen.json", + "toast_screen_content/content_log_panel": "ui/toast_screen.json", + "toast_screen_content/perf_turtle_panel": "ui/toast_screen.json", + }, + "token_faq": { + "main_panel": "ui/token_faq_screen.json", + "main_panel/faq_question_1": "ui/token_faq_screen.json", + "main_panel/faq_question_1_divider": "ui/token_faq_screen.json", + "main_panel/faq_question_2": "ui/token_faq_screen.json", + "main_panel/faq_question_2_divider": "ui/token_faq_screen.json", + "main_panel/faq_question_3": "ui/token_faq_screen.json", + "main_panel/faq_question_3_divider": "ui/token_faq_screen.json", + "main_panel/faq_question_4": "ui/token_faq_screen.json", + "main_panel/faq_question_4_divider": "ui/token_faq_screen.json", + "main_panel/faq_question_5": "ui/token_faq_screen.json", + "scrolling_panel": "ui/token_faq_screen.json", + "token_faq_screen_content": "ui/token_faq_screen.json", + "token_faq_screen_content/dialog": "ui/token_faq_screen.json", + "background": "ui/token_faq_screen.json", + "token_faq_screen": "ui/token_faq_screen.json", + "token_content_panel": "ui/token_faq_screen.json", + "token_content_panel/token_info_text": "ui/token_faq_screen.json", + "token_popup_content": "ui/token_faq_screen.json", + "token_popup_content/dialog": "ui/token_faq_screen.json", + "token_faq_button_panel": "ui/token_faq_screen.json", + "back_button_panel": "ui/token_faq_screen.json", + "token_popup": "ui/token_faq_screen.json", + }, + "trade": { + "cycle_recipe_button": "ui/trade_screen.json", + "cycle_recipe_left_button": "ui/trade_screen.json", + "cycle_recipe_right_button": "ui/trade_screen.json", + "arrow_image": "ui/trade_screen.json", + "cross_out_icon": "ui/trade_screen.json", + "highlight_slot_panel": "ui/trade_screen.json", + "highlight_slot_panel/hover_text": "ui/trade_screen.json", + "recipe_button": "ui/trade_screen.json", + "recipe_button/hover": "ui/trade_screen.json", + "recipe_item_panel": "ui/trade_screen.json", + "recipe_item_panel/item_renderer": "ui/trade_screen.json", + "recipe_item_panel/item_renderer/stack_count_label": "ui/trade_screen.json", + "recipe_item_panel/recipe_button": "ui/trade_screen.json", + "trade_item_slot": "ui/trade_screen.json", + "trade_item_slot/container_item": "ui/trade_screen.json", + "trade_item_slotB": "ui/trade_screen.json", + "trade_item_slot_result_button": "ui/trade_screen.json", + "trade_item_slot_result": "ui/trade_screen.json", + "arrow": "ui/trade_screen.json", + "arrow/arrow_image": "ui/trade_screen.json", + "arrow/cross_out_icon": "ui/trade_screen.json", + "arrow/recipe_button": "ui/trade_screen.json", + "purchase_grid_item": "ui/trade_screen.json", + "purchase_grid_item/top_item": "ui/trade_screen.json", + "purchase_grid_item/padding": "ui/trade_screen.json", + "purchase_grid_item/bottom_item": "ui/trade_screen.json", + "purchase_grid": "ui/trade_screen.json", + "purchase_grid/grid_slot1": "ui/trade_screen.json", + "purchase_grid/grid_slot2": "ui/trade_screen.json", + "purchase_grid/arrow": "ui/trade_screen.json", + "purchase_grid/result_item_slot": "ui/trade_screen.json", + "greyed_item_panel": "ui/trade_screen.json", + "greyed_item_panel/item_renderer": "ui/trade_screen.json", + "cycle_panel_keyboard": "ui/trade_screen.json", + "cycle_panel_keyboard/left": "ui/trade_screen.json", + "cycle_panel_keyboard/right": "ui/trade_screen.json", + "cycle_panel_gamepad": "ui/trade_screen.json", + "cycle_panel_gamepad/left": "ui/trade_screen.json", + "cycle_panel_gamepad/right": "ui/trade_screen.json", + "cycle_panel": "ui/trade_screen.json", + "cycle_panel/keyboard": "ui/trade_screen.json", + "cycle_panel/gamepad": "ui/trade_screen.json", + "merchant_purchase_panel": "ui/trade_screen.json", + "merchant_purchase_panel/purchase_grid": "ui/trade_screen.json", + "top_half_panel": "ui/trade_screen.json", + "top_half_panel/villager_name_label": "ui/trade_screen.json", + "top_half_panel/cycle_panel": "ui/trade_screen.json", + "top_half_panel/merchant_purchase_panel": "ui/trade_screen.json", + "trade_panel": "ui/trade_screen.json", + "trade_panel/gamepad_helpers": "ui/trade_screen.json", + "trade_panel/selected_item_details_factory": "ui/trade_screen.json", + "trade_panel/item_lock_notification_factory": "ui/trade_screen.json", + "trade_panel/root_panel": "ui/trade_screen.json", + "trade_panel/root_panel/common_panel": "ui/trade_screen.json", + "trade_panel/root_panel/trade_inventory": "ui/trade_screen.json", + "trade_panel/root_panel/trade_inventory/top_half_panel": "ui/trade_screen.json", + "trade_panel/root_panel/trade_inventory/inventory_panel_bottom_half_with_label": "ui/trade_screen.json", + "trade_panel/root_panel/trade_inventory/hotbar_grid_template": "ui/trade_screen.json", + "trade_panel/root_panel/trade_inventory/inventory_selected_icon_button": "ui/trade_screen.json", + "trade_panel/root_panel/trade_inventory/gamepad_cursor": "ui/trade_screen.json", + "trade_panel/flying_item_renderer": "ui/trade_screen.json", + "trade_screen": "ui/trade_screen.json", + }, + "trade_pocket": { + "background_image": "ui/trade_screen_pocket.json", + "recipe_item_panel": "ui/trade_screen_pocket.json", + "recipe_item_panel/item_renderer": "ui/trade_screen_pocket.json", + "recipe_item_panel/item_renderer/stack_count_label": "ui/trade_screen_pocket.json", + "result_item_panel": "ui/trade_screen_pocket.json", + "result_item_panel/output_item_name": "ui/trade_screen_pocket.json", + "result_item_panel/recipe_item_panel": "ui/trade_screen_pocket.json", + "trade_item_slot": "ui/trade_screen_pocket.json", + "trade_item_slot/container_item": "ui/trade_screen_pocket.json", + "trade_item_slotB": "ui/trade_screen_pocket.json", + "trade_item_slot_result_button": "ui/trade_screen_pocket.json", + "trade_item_slot_result": "ui/trade_screen_pocket.json", + "purchase_grid": "ui/trade_screen_pocket.json", + "purchase_grid/grid_slot1": "ui/trade_screen_pocket.json", + "purchase_grid/grid_slot2": "ui/trade_screen_pocket.json", + "purchase_grid/arrow": "ui/trade_screen_pocket.json", + "purchase_grid/result_item_slot": "ui/trade_screen_pocket.json", + "merchant_purchase_panel": "ui/trade_screen_pocket.json", + "merchant_purchase_panel/left": "ui/trade_screen_pocket.json", + "merchant_purchase_panel/purchase_grid": "ui/trade_screen_pocket.json", + "merchant_purchase_panel/right": "ui/trade_screen_pocket.json", + "merchant_panel": "ui/trade_screen_pocket.json", + "merchant_panel/merchant_purchase_panel": "ui/trade_screen_pocket.json", + "inventory_grid": "ui/trade_screen_pocket.json", + "inventory_content": "ui/trade_screen_pocket.json", + "inventory_content/scrolling_panel": "ui/trade_screen_pocket.json", + "half_screen": "ui/trade_screen_pocket.json", + "inventory_half_screen": "ui/trade_screen_pocket.json", + "inventory_half_screen/inventory_content": "ui/trade_screen_pocket.json", + "merchant_half_screen": "ui/trade_screen_pocket.json", + "merchant_half_screen/merchant_panel": "ui/trade_screen_pocket.json", + "header": "ui/trade_screen_pocket.json", + "header/header_background": "ui/trade_screen_pocket.json", + "header/close_button": "ui/trade_screen_pocket.json", + "header/villager_name_label": "ui/trade_screen_pocket.json", + "trade_panel": "ui/trade_screen_pocket.json", + "trade_panel/bg": "ui/trade_screen_pocket.json", + "trade_panel/root_panel": "ui/trade_screen_pocket.json", + "trade_panel/header": "ui/trade_screen_pocket.json", + "trade_panel/inventory": "ui/trade_screen_pocket.json", + "trade_panel/merchant_half_screen": "ui/trade_screen_pocket.json", + "trade_panel/gamepad_helpers": "ui/trade_screen_pocket.json", + "trade_panel/container_gamepad_helpers": "ui/trade_screen_pocket.json", + "trade_panel/inventory_selected_icon_button": "ui/trade_screen_pocket.json", + "trade_panel/selected_item_details_factory": "ui/trade_screen_pocket.json", + "trade_panel/item_lock_notification_factory": "ui/trade_screen_pocket.json", + "trade_panel/flying_item_renderer": "ui/trade_screen_pocket.json", + }, + "trade2": { + "toolbar_background": "ui/trade_2_screen.json", + "arrow_left_image": "ui/trade_2_screen.json", + "arrow_right_image": "ui/trade_2_screen.json", + "trade_cell_image": "ui/trade_2_screen.json", + "cross_out_image": "ui/trade_2_screen.json", + "lock_image": "ui/trade_2_screen.json", + "scroll_background_image": "ui/trade_2_screen.json", + "red_slash": "ui/trade_2_screen.json", + "blue_progress_bar": "ui/trade_2_screen.json", + "white_progress_bar": "ui/trade_2_screen.json", + "empty_progress_bar": "ui/trade_2_screen.json", + "progress_bar_nub": "ui/trade_2_screen.json", + "hover_button": "ui/trade_2_screen.json", + "hover_button/hover_text": "ui/trade_2_screen.json", + "stack_count_label": "ui/trade_2_screen.json", + "changed_item_count_label": "ui/trade_2_screen.json", + "changed_item_count_label/stack_count_label": "ui/trade_2_screen.json", + "changed_item_count_label/stack_count_label/red_slash": "ui/trade_2_screen.json", + "changed_item_count_label/stack_count_label/red_slash_double": "ui/trade_2_screen.json", + "changed_item_count_label/padding": "ui/trade_2_screen.json", + "changed_item_count_label/second_stack_count_label": "ui/trade_2_screen.json", + "single_item_grid": "ui/trade_2_screen.json", + "single_item_grid/item_with_count": "ui/trade_2_screen.json", + "single_item_grid/item_with_count/item_renderer": "ui/trade_2_screen.json", + "single_item_grid/item_with_count/item_renderer/stack_count_label": "ui/trade_2_screen.json", + "single_item_grid/item_with_count/item_renderer/changed_item_count_label": "ui/trade_2_screen.json", + "single_item_grid/item_with_count/item_renderer/hover_button": "ui/trade_2_screen.json", + "trade_item_1": "ui/trade_2_screen.json", + "trade_item_2": "ui/trade_2_screen.json", + "sell_item": "ui/trade_2_screen.json", + "arrow_holder": "ui/trade_2_screen.json", + "arrow_holder/arrow_image": "ui/trade_2_screen.json", + "arrow_holder/cross_out_image": "ui/trade_2_screen.json", + "arrow_holder/lock_image": "ui/trade_2_screen.json", + "toggle_content": "ui/trade_2_screen.json", + "toggle_content/padding_1": "ui/trade_2_screen.json", + "toggle_content/trade_item_1": "ui/trade_2_screen.json", + "toggle_content/padding_2": "ui/trade_2_screen.json", + "toggle_content/padding_2_extra": "ui/trade_2_screen.json", + "toggle_content/trade_item_2": "ui/trade_2_screen.json", + "toggle_content/padding_3": "ui/trade_2_screen.json", + "toggle_content/padding_3_extra": "ui/trade_2_screen.json", + "toggle_content/arrow_holder": "ui/trade_2_screen.json", + "toggle_content/padding_4": "ui/trade_2_screen.json", + "toggle_content/sell_item_holder": "ui/trade_2_screen.json", + "toggle_content/sell_item_holder/sell_item": "ui/trade_2_screen.json", + "toggle_content/sell_item_holder_with_less_padding": "ui/trade_2_screen.json", + "toggle_content/sell_item_holder_with_less_padding/sell_item": "ui/trade_2_screen.json", + "toggle_content/padding_5": "ui/trade_2_screen.json", + "toggle_content_holder": "ui/trade_2_screen.json", + "toggle_content_holder/toggle_content": "ui/trade_2_screen.json", + "trade_toggle_unchecked": "ui/trade_2_screen.json", + "trade_toggle_unchecked/toggle_checked_normal": "ui/trade_2_screen.json", + "trade_toggle_unchecked/toggle_checked_red": "ui/trade_2_screen.json", + "trade_toggle_checked": "ui/trade_2_screen.json", + "trade_toggle_checked/toggle_checked_normal": "ui/trade_2_screen.json", + "trade_toggle_checked/toggle_checked_red": "ui/trade_2_screen.json", + "trade_toggle_locked": "ui/trade_2_screen.json", + "trade_actual_toggle": "ui/trade_2_screen.json", + "trade_toggle": "ui/trade_2_screen.json", + "trade_toggle_holder": "ui/trade_2_screen.json", + "trade_toggle_holder/trade_toggle": "ui/trade_2_screen.json", + "trade_toggle_stack_panel": "ui/trade_2_screen.json", + "tier_label": "ui/trade_2_screen.json", + "tier_label_locked": "ui/trade_2_screen.json", + "tier_stack_panel": "ui/trade_2_screen.json", + "tier_stack_panel/padding": "ui/trade_2_screen.json", + "tier_stack_panel/tier_label_holder": "ui/trade_2_screen.json", + "tier_stack_panel/tier_label_holder/tier_label": "ui/trade_2_screen.json", + "tier_stack_panel/tier_label_holder/tier_label_locked": "ui/trade_2_screen.json", + "tier_stack_panel/trade_toggle_stack_panel": "ui/trade_2_screen.json", + "trade_selector_stack_panel": "ui/trade_2_screen.json", + "scroll_inner_input_panel": "ui/trade_2_screen.json", + "scroll_inner_input_panel/trade_selector_stack_panel": "ui/trade_2_screen.json", + "trade_scroll_panel": "ui/trade_2_screen.json", + "left_panel": "ui/trade_2_screen.json", + "left_panel/bg": "ui/trade_2_screen.json", + "left_panel/trade_scroll_panel": "ui/trade_2_screen.json", + "exp_progress_bar": "ui/trade_2_screen.json", + "exp_progress_bar/empty_progress_bar": "ui/trade_2_screen.json", + "exp_progress_bar/empty_progress_bar/progress_bar_nub": "ui/trade_2_screen.json", + "exp_progress_bar/empty_progress_bar/blue_progress_bar": "ui/trade_2_screen.json", + "exp_progress_bar/empty_progress_bar/white_progress_bar": "ui/trade_2_screen.json", + "trade_details": "ui/trade_2_screen.json", + "trade_details/item_panel_image": "ui/trade_2_screen.json", + "trade_details/item_panel_image/item_text_label": "ui/trade_2_screen.json", + "trade_details_factory": "ui/trade_2_screen.json", + "trade_details_factory_holder": "ui/trade_2_screen.json", + "trade_details_button": "ui/trade_2_screen.json", + "trade_details_1_button": "ui/trade_2_screen.json", + "trade_details_2_button": "ui/trade_2_screen.json", + "enchantment_details_button": "ui/trade_2_screen.json", + "trade_result_item_slot_button": "ui/trade_2_screen.json", + "red_cell_image": "ui/trade_2_screen.json", + "container_cell_image": "ui/trade_2_screen.json", + "container_cell_image/cell_image": "ui/trade_2_screen.json", + "container_cell_image/red_cell_image": "ui/trade_2_screen.json", + "item_slot": "ui/trade_2_screen.json", + "ingredient_1_item_slot": "ui/trade_2_screen.json", + "ingredient_2_item_slot": "ui/trade_2_screen.json", + "result_item_slot": "ui/trade_2_screen.json", + "item_slot_holder": "ui/trade_2_screen.json", + "item_slot_holder/ingredient_1_item_slot": "ui/trade_2_screen.json", + "item_slot_holder/trade_details_1_button": "ui/trade_2_screen.json", + "item_slot_holder/trade_details_1_factory_holder": "ui/trade_2_screen.json", + "item_slots_stack_panel": "ui/trade_2_screen.json", + "item_slots_stack_panel/ingredient_item_1_holder": "ui/trade_2_screen.json", + "item_slots_stack_panel/ingredient_item_2_holder": "ui/trade_2_screen.json", + "item_slots_stack_panel/pointing_right_arrow_holder": "ui/trade_2_screen.json", + "item_slots_stack_panel/pointing_right_arrow_holder/arrow_right_image": "ui/trade_2_screen.json", + "item_slots_stack_panel/pointing_left_arrow_holder": "ui/trade_2_screen.json", + "item_slots_stack_panel/pointing_left_arrow_holder/arrow_left_image": "ui/trade_2_screen.json", + "item_slots_stack_panel/result_item_slot_holder": "ui/trade_2_screen.json", + "trade_button": "ui/trade_2_screen.json", + "how_to_play_button": "ui/trade_2_screen.json", + "top_half_stack_panel": "ui/trade_2_screen.json", + "top_half_stack_panel/item_slots_holder": "ui/trade_2_screen.json", + "top_half_stack_panel/item_slots_holder/item_slots_stack_panel": "ui/trade_2_screen.json", + "top_half_stack_panel/padding_1": "ui/trade_2_screen.json", + "top_half_stack_panel/trade_button_holder": "ui/trade_2_screen.json", + "top_half_stack_panel/trade_button_holder/trade_button": "ui/trade_2_screen.json", + "top_half_stack_panel/how_to_play_button_holder": "ui/trade_2_screen.json", + "top_half_stack_panel/how_to_play_button_holder/how_to_play_button": "ui/trade_2_screen.json", + "top_half_panel": "ui/trade_2_screen.json", + "top_half_panel/top_half_stack_panel": "ui/trade_2_screen.json", + "villager_name_label": "ui/trade_2_screen.json", + "right_panel": "ui/trade_2_screen.json", + "right_panel/common_panel": "ui/trade_2_screen.json", + "right_panel/trade_screen_inventory": "ui/trade_2_screen.json", + "right_panel/trade_screen_inventory/villager_name_label": "ui/trade_2_screen.json", + "right_panel/trade_screen_inventory/exp_progress_bar": "ui/trade_2_screen.json", + "right_panel/trade_screen_inventory/top_half_panel": "ui/trade_2_screen.json", + "right_panel/trade_screen_inventory/inventory_panel_bottom_half_with_label": "ui/trade_2_screen.json", + "right_panel/trade_screen_inventory/hotbar_grid": "ui/trade_2_screen.json", + "toolbar_panel": "ui/trade_2_screen.json", + "toolbar_panel/toolbar_background": "ui/trade_2_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel": "ui/trade_2_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": "ui/trade_2_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": "ui/trade_2_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": "ui/trade_2_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": "ui/trade_2_screen.json", + "toolbar_anchor": "ui/trade_2_screen.json", + "toolbar_anchor/toolbar_panel": "ui/trade_2_screen.json", + "center_fold": "ui/trade_2_screen.json", + "center_fold/center_bg": "ui/trade_2_screen.json", + "screen_stack_panel": "ui/trade_2_screen.json", + "screen_stack_panel/left_panel": "ui/trade_2_screen.json", + "screen_stack_panel/center_fold": "ui/trade_2_screen.json", + "screen_stack_panel/right_panel": "ui/trade_2_screen.json", + "screen_stack_panel/toolbar_anchor": "ui/trade_2_screen.json", + "gamepad_helper_x": "ui/trade_2_screen.json", + "gamepad_helper_y": "ui/trade_2_screen.json", + "screen_panel": "ui/trade_2_screen.json", + "screen_panel/screen_stack_panel": "ui/trade_2_screen.json", + "screen_panel/container_gamepad_helpers": "ui/trade_2_screen.json", + "screen_panel/selected_item_details_factory": "ui/trade_2_screen.json", + "screen_panel/item_lock_notification_factory": "ui/trade_2_screen.json", + "screen_panel/inventory_selected_icon_button": "ui/trade_2_screen.json", + "screen_panel/inventory_take_progress_icon_button": "ui/trade_2_screen.json", + "screen_panel/flying_item_renderer": "ui/trade_2_screen.json", + "trade_screen": "ui/trade_2_screen.json", + }, + "trade2_pocket": { + "chest_item_renderer": "ui/trade_2_screen_pocket.json", + "trade_icon": "ui/trade_2_screen_pocket.json", + "arrow_right_image": "ui/trade_2_screen_pocket.json", + "right_navigation_tabs": "ui/trade_2_screen_pocket.json", + "right_navigation_tabs/pocket_tab_close_button": "ui/trade_2_screen_pocket.json", + "right_navigation_tabs/fill": "ui/trade_2_screen_pocket.json", + "trade_slots_panel": "ui/trade_2_screen_pocket.json", + "trade_slots_panel/item_slots_stack_panel": "ui/trade_2_screen_pocket.json", + "trade_and_help_buttons": "ui/trade_2_screen_pocket.json", + "trade_and_help_buttons/trade_button_holder": "ui/trade_2_screen_pocket.json", + "trade_and_help_buttons/trade_button_holder/trade_button": "ui/trade_2_screen_pocket.json", + "trade_and_help_buttons/how_to_play_button_holder": "ui/trade_2_screen_pocket.json", + "trade_and_help_buttons/how_to_play_button_holder/how_to_play_button": "ui/trade_2_screen_pocket.json", + "name_and_trade_slots_stack_panel": "ui/trade_2_screen_pocket.json", + "name_and_trade_slots_stack_panel/padding_1": "ui/trade_2_screen_pocket.json", + "name_and_trade_slots_stack_panel/villager_name_label_holder": "ui/trade_2_screen_pocket.json", + "name_and_trade_slots_stack_panel/villager_name_label_holder/villager_name_label": "ui/trade_2_screen_pocket.json", + "name_and_trade_slots_stack_panel/padding_2": "ui/trade_2_screen_pocket.json", + "name_and_trade_slots_stack_panel/exp_progress_bar_holder": "ui/trade_2_screen_pocket.json", + "name_and_trade_slots_stack_panel/exp_progress_bar_holder/exp_progress_bar": "ui/trade_2_screen_pocket.json", + "name_and_trade_slots_stack_panel/padding_3": "ui/trade_2_screen_pocket.json", + "name_and_trade_slots_stack_panel/trade_slots_panel": "ui/trade_2_screen_pocket.json", + "name_and_trade_slots_stack_panel/padding_4": "ui/trade_2_screen_pocket.json", + "name_and_trade_slots_stack_panel/trade_and_help_buttons": "ui/trade_2_screen_pocket.json", + "right_panel": "ui/trade_2_screen_pocket.json", + "right_panel/content": "ui/trade_2_screen_pocket.json", + "right_panel/content/bg": "ui/trade_2_screen_pocket.json", + "right_panel/content/name_and_trade_slots_stack_panel": "ui/trade_2_screen_pocket.json", + "right_panel/navigation_tabs_holder": "ui/trade_2_screen_pocket.json", + "right_panel/navigation_tabs_holder/right_navigation_tabs": "ui/trade_2_screen_pocket.json", + "left_tab_trade": "ui/trade_2_screen_pocket.json", + "left_tab_inventory": "ui/trade_2_screen_pocket.json", + "left_navigation_tabs": "ui/trade_2_screen_pocket.json", + "left_navigation_tabs/left_tab_trades": "ui/trade_2_screen_pocket.json", + "left_navigation_tabs/padding": "ui/trade_2_screen_pocket.json", + "left_navigation_tabs/left_tab_inventory": "ui/trade_2_screen_pocket.json", + "arrow_holder": "ui/trade_2_screen_pocket.json", + "arrow_holder/arrow_image": "ui/trade_2_screen_pocket.json", + "arrow_holder/cross_out_image": "ui/trade_2_screen_pocket.json", + "arrow_holder/lock_image": "ui/trade_2_screen_pocket.json", + "inventory_scroll_panel": "ui/trade_2_screen_pocket.json", + "toggle_content": "ui/trade_2_screen_pocket.json", + "toggle_content/padding_1": "ui/trade_2_screen_pocket.json", + "toggle_content/trade_item_holder": "ui/trade_2_screen_pocket.json", + "toggle_content/trade_item_holder/padding_left": "ui/trade_2_screen_pocket.json", + "toggle_content/trade_item_holder/trade_item_1": "ui/trade_2_screen_pocket.json", + "toggle_content/trade_item_holder/padding_middle": "ui/trade_2_screen_pocket.json", + "toggle_content/trade_item_holder/trade_item_2": "ui/trade_2_screen_pocket.json", + "toggle_content/trade_item_holder/padding_right": "ui/trade_2_screen_pocket.json", + "toggle_content/padding_2": "ui/trade_2_screen_pocket.json", + "toggle_content/arrow_holder": "ui/trade_2_screen_pocket.json", + "toggle_content/padding_3": "ui/trade_2_screen_pocket.json", + "toggle_content/sell_item_holder": "ui/trade_2_screen_pocket.json", + "toggle_content/sell_item_holder/sell_item": "ui/trade_2_screen_pocket.json", + "toggle_content/padding_4": "ui/trade_2_screen_pocket.json", + "left_panel": "ui/trade_2_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder": "ui/trade_2_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": "ui/trade_2_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": "ui/trade_2_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": "ui/trade_2_screen_pocket.json", + "left_panel/content": "ui/trade_2_screen_pocket.json", + "left_panel/content/bg": "ui/trade_2_screen_pocket.json", + "left_panel/content/inventory_scroll_panel": "ui/trade_2_screen_pocket.json", + "left_panel/content/trade_scroll_panel": "ui/trade_2_screen_pocket.json", + "pocket_hotbar_and_content_panels": "ui/trade_2_screen_pocket.json", + "screen_panel": "ui/trade_2_screen_pocket.json", + "screen_panel/pocket_hotbar_and_content_panels": "ui/trade_2_screen_pocket.json", + "screen_panel/container_gamepad_helpers": "ui/trade_2_screen_pocket.json", + "screen_panel/selected_item_details_factory": "ui/trade_2_screen_pocket.json", + "screen_panel/item_lock_notification_factory": "ui/trade_2_screen_pocket.json", + "screen_panel/inventory_selected_icon_button": "ui/trade_2_screen_pocket.json", + "screen_panel/inventory_take_progress_icon_button": "ui/trade_2_screen_pocket.json", + "screen_panel/flying_item_renderer": "ui/trade_2_screen_pocket.json", + }, + "trialUpsell": { + "normal_stroke_button": "ui/trial_upsell_screen.json", + "normal_description_label": "ui/trial_upsell_screen.json", + "trialTime": "ui/trial_upsell_screen.json", + "trial_label": "ui/trial_upsell_screen.json", + "trial_description_panel": "ui/trial_upsell_screen.json", + "trial_description_panel/description_text": "ui/trial_upsell_screen.json", + "trial_expired_description_panel": "ui/trial_upsell_screen.json", + "trial_expired_description_panel/vertical_padding_0": "ui/trial_upsell_screen.json", + "trial_expired_description_panel/line1": "ui/trial_upsell_screen.json", + "trial_expired_description_panel/vertical_padding_1": "ui/trial_upsell_screen.json", + "trial_expired_description_panel/line2": "ui/trial_upsell_screen.json", + "trial_expired_description_panel/line3": "ui/trial_upsell_screen.json", + "trial_expired_description_panel/line4": "ui/trial_upsell_screen.json", + "trial_expired_description_panel/line5": "ui/trial_upsell_screen.json", + "continue_button": "ui/trial_upsell_screen.json", + "buy_button": "ui/trial_upsell_screen.json", + "root_panel": "ui/trial_upsell_screen.json", + "trial_upsell_screen_dialog": "ui/trial_upsell_screen.json", + "trial_upsell_expired_screen_dialog": "ui/trial_upsell_screen.json", + "button_content_panel": "ui/trial_upsell_screen.json", + "button_content_panel/buy": "ui/trial_upsell_screen.json", + "button_content_panel/continue": "ui/trial_upsell_screen.json", + "trial_upsell_screen": "ui/trial_upsell_screen.json", + "trial_upsell_screen_content": "ui/trial_upsell_screen.json", + "trial_upsell_screen_content/trialTime": "ui/trial_upsell_screen.json", + "trial_upsell_screen_content/root_panel": "ui/trial_upsell_screen.json", + "trial_upsell_screen_content/root_panel/trial_upsell_screen_dialog": "ui/trial_upsell_screen.json", + "trial_upsell_expired_screen": "ui/trial_upsell_screen.json", + "trial_upsell_expired_screen_content": "ui/trial_upsell_screen.json", + "trial_upsell_expired_screen_content/trialTime": "ui/trial_upsell_screen.json", + "trial_upsell_expired_screen_content/root_panel": "ui/trial_upsell_screen.json", + "trial_upsell_expired_screen_content/root_panel/trial_upsell_expired_screen_dialog": "ui/trial_upsell_screen.json", + "content_description_panel": "ui/trial_upsell_screen.json", + "content_description_panel/scrolling_panel": "ui/trial_upsell_screen.json", + }, + "ugc_viewer": { + "padding": "ui/ugc_viewer_screen.json", + "world_label": "ui/ugc_viewer_screen.json", + "world_image": "ui/ugc_viewer_screen.json", + "button_content": "ui/ugc_viewer_screen.json", + "button_content/stack_panel": "ui/ugc_viewer_screen.json", + "button_content/stack_panel/world_label": "ui/ugc_viewer_screen.json", + "button_content/stack_panel/world_panel": "ui/ugc_viewer_screen.json", + "button_content/stack_panel/world_panel/background": "ui/ugc_viewer_screen.json", + "button_content/stack_panel/world_panel/background/world_image": "ui/ugc_viewer_screen.json", + "grid_item": "ui/ugc_viewer_screen.json", + "grid_item/button": "ui/ugc_viewer_screen.json", + "place_holder_control": "ui/ugc_viewer_screen.json", + "place_holder_control/search_icon": "ui/ugc_viewer_screen.json", + "place_holder_control/place_holder_text": "ui/ugc_viewer_screen.json", + "search_box": "ui/ugc_viewer_screen.json", + "grid_content": "ui/ugc_viewer_screen.json", + "scrolling_content": "ui/ugc_viewer_screen.json", + "scrolling_content/grid_content": "ui/ugc_viewer_screen.json", + "main_panel": "ui/ugc_viewer_screen.json", + "main_panel/padding_0": "ui/ugc_viewer_screen.json", + "main_panel/centerer_panel_0": "ui/ugc_viewer_screen.json", + "main_panel/centerer_panel_0/search_box": "ui/ugc_viewer_screen.json", + "main_panel/padding_1": "ui/ugc_viewer_screen.json", + "main_panel/centerer_panel_1": "ui/ugc_viewer_screen.json", + "main_panel/centerer_panel_1/scrolling_panel": "ui/ugc_viewer_screen.json", + "main_panel/padding_2": "ui/ugc_viewer_screen.json", + "ugc_viewer_screen": "ui/ugc_viewer_screen.json", + "screen_content": "ui/ugc_viewer_screen.json", + "screen_content/main_panel": "ui/ugc_viewer_screen.json", + }, + "common_art": { + "title_image": "ui/ui_art_assets_common.json", + "title_image_edu": "ui/ui_art_assets_common.json", + "splash_text": "ui/ui_art_assets_common.json", + "title_panel_pocket": "ui/ui_art_assets_common.json", + "title_panel_pocket/title_image": "ui/ui_art_assets_common.json", + "title_panel_pocket/splash_text": "ui/ui_art_assets_common.json", + "title_panel_win10": "ui/ui_art_assets_common.json", + "title_panel_win10/title_image": "ui/ui_art_assets_common.json", + "title_panel_win10/splash_text": "ui/ui_art_assets_common.json", + "title_panel_osx": "ui/ui_art_assets_common.json", + "title_panel_osx/title_image": "ui/ui_art_assets_common.json", + "title_panel_osx/splash_text": "ui/ui_art_assets_common.json", + "title_panel_edu_desktop": "ui/ui_art_assets_common.json", + "title_panel_edu_desktop/banner_control": "ui/ui_art_assets_common.json", + "title_panel_edu_desktop/banner_control/banner": "ui/ui_art_assets_common.json", + "title_panel_edu_desktop/banner_control/drop_shadow": "ui/ui_art_assets_common.json", + "title_panel_edu_desktop/title_control": "ui/ui_art_assets_common.json", + "title_panel_edu_desktop/title_control/title_image_edu": "ui/ui_art_assets_common.json", + "title_panel_edu_desktop/title_control/splash_text": "ui/ui_art_assets_common.json", + "title_panel_edu_mobile": "ui/ui_art_assets_common.json", + "title_panel_edu_mobile/title_control": "ui/ui_art_assets_common.json", + "title_panel_edu_mobile/title_control/title_image_edu": "ui/ui_art_assets_common.json", + "title_panel_edu_mobile/title_control/splash_text": "ui/ui_art_assets_common.json", + "title_panel_content": "ui/ui_art_assets_common.json", + "start_title_panel_content": "ui/ui_art_assets_common.json", + "pause_logo_panel": "ui/ui_art_assets_common.json", + "pause_logo_panel/logo": "ui/ui_art_assets_common.json", + }, + "common": { + "empty_panel": "ui/ui_common.json", + "vertical_padding_8px": "ui/ui_common.json", + "horizontal_padding_2px": "ui/ui_common.json", + "empty_image": "ui/ui_common.json", + "horizontal_stack_panel": "ui/ui_common.json", + "vertical_stack_panel": "ui/ui_common.json", + "vert_stack_centering_panel": "ui/ui_common.json", + "vert_stack_centering_panel/stack_content": "ui/ui_common.json", + "button": "ui/ui_common.json", + "screen_header_title_panel": "ui/ui_common.json", + "screen_header_title_panel/store_header_title": "ui/ui_common.json", + "back_button": "ui/ui_common.json", + "back_title_button": "ui/ui_common.json", + "back_title_button/panel1": "ui/ui_common.json", + "back_title_button/panel1/button": "ui/ui_common.json", + "back_title_button/padding1": "ui/ui_common.json", + "back_title_button/panel2": "ui/ui_common.json", + "back_title_button/panel2/label": "ui/ui_common.json", + "chevron_image": "ui/ui_common.json", + "back_button_content": "ui/ui_common.json", + "back_button_content/chevron_panel": "ui/ui_common.json", + "back_button_content/chevron_panel/left_chevron": "ui/ui_common.json", + "back_button_content/padding1": "ui/ui_common.json", + "back_button_content/label_panel": "ui/ui_common.json", + "back_button_content/label_panel/label": "ui/ui_common.json", + "label_hover": "ui/ui_common.json", + "label_hover/hover": "ui/ui_common.json", + "tts_activate_sibling": "ui/ui_common.json", + "tts_activate_sibling/default": "ui/ui_common.json", + "tts_activate_sibling/pressed": "ui/ui_common.json", + "tts_activate_sibling/hover": "ui/ui_common.json", + "back_title_button_content": "ui/ui_common.json", + "back_title_button_content/padding1": "ui/ui_common.json", + "back_title_button_content/chevron_panel": "ui/ui_common.json", + "back_title_button_content/chevron_panel/left_chevron": "ui/ui_common.json", + "back_title_button_content/padding2": "ui/ui_common.json", + "toggle_visuals": "ui/ui_common.json", + "toggle_visuals/unchecked": "ui/ui_common.json", + "toggle_visuals/checked": "ui/ui_common.json", + "toggle_visuals/unchecked_hover": "ui/ui_common.json", + "toggle_visuals/checked_hover": "ui/ui_common.json", + "toggle_visuals/unchecked_locked": "ui/ui_common.json", + "toggle_visuals/checked_locked": "ui/ui_common.json", + "toggle_visuals/unchecked_locked_hover": "ui/ui_common.json", + "toggle_visuals/checked_locked_hover": "ui/ui_common.json", + "toggle": "ui/ui_common.json", + "radio_toggle": "ui/ui_common.json", + "checkbox": "ui/ui_common.json", + "checkbox_image": "ui/ui_common.json", + "checked_image": "ui/ui_common.json", + "unchecked_image": "ui/ui_common.json", + "checked_hover_image": "ui/ui_common.json", + "unchecked_hover_image": "ui/ui_common.json", + "rotating_text": "ui/ui_common.json", + "button_text": "ui/ui_common.json", + "toggle_state_template": "ui/ui_common.json", + "new_button_label": "ui/ui_common.json", + "checkbox_checked_state": "ui/ui_common.json", + "checkbox_unchecked_state": "ui/ui_common.json", + "checkbox_checked_hover_state": "ui/ui_common.json", + "checkbox_unchecked_hover_state": "ui/ui_common.json", + "checkbox_checked_locked_state": "ui/ui_common.json", + "checkbox_unchecked_locked_state": "ui/ui_common.json", + "radio_toggle_checked_state": "ui/ui_common.json", + "radio_toggle_unchecked_state": "ui/ui_common.json", + "radio_toggle_checked_hover_state": "ui/ui_common.json", + "radio_toggle_unchecked_hover_state": "ui/ui_common.json", + "radio_toggle_checked_locked_state": "ui/ui_common.json", + "radio_toggle_unchecked_locked_state": "ui/ui_common.json", + "slider_button_state": "ui/ui_common.json", + "slider_button_layout": "ui/ui_common.json", + "slider_button_hover_layout": "ui/ui_common.json", + "slider_button_locked_layout": "ui/ui_common.json", + "slider_button_indent_layout": "ui/ui_common.json", + "slider_box": "ui/ui_common.json", + "slider_box/default": "ui/ui_common.json", + "slider_box/hover": "ui/ui_common.json", + "slider_box/indent": "ui/ui_common.json", + "slider_box/locked": "ui/ui_common.json", + "slider_box/locked/transparent_grey": "ui/ui_common.json", + "slider_background": "ui/ui_common.json", + "slider_background_hover": "ui/ui_common.json", + "slider_progress": "ui/ui_common.json", + "slider_progress_hover": "ui/ui_common.json", + "slider_border": "ui/ui_common.json", + "slider_bar_default": "ui/ui_common.json", + "slider_bar_default/sizing_panel": "ui/ui_common.json", + "slider_bar_default/transparent_grey": "ui/ui_common.json", + "slider_bar_hover": "ui/ui_common.json", + "slider_step": "ui/ui_common.json", + "slider_step_hover": "ui/ui_common.json", + "slider_step_progress": "ui/ui_common.json", + "slider_step_progress_hover": "ui/ui_common.json", + "slider": "ui/ui_common.json", + "slider/slider_box": "ui/ui_common.json", + "slider/slider_bar_default": "ui/ui_common.json", + "slider/slider_bar_hover": "ui/ui_common.json", + "dropdown_background": "ui/ui_common.json", + "dropdown": "ui/ui_common.json", + "dropdown/dropdown_content": "ui/ui_common.json", + "dropdown/dropdown_content/0": "ui/ui_common.json", + "dropdown_no_scrollpanel": "ui/ui_common.json", + "square_image_border_white": "ui/ui_common.json", + "focus_border_white": "ui/ui_common.json", + "focus_border_yellow": "ui/ui_common.json", + "focus_border_black": "ui/ui_common.json", + "non_interact_focus_border": "ui/ui_common.json", + "non_interact_focus_border_button": "ui/ui_common.json", + "non_interact_focus_border_button/default": "ui/ui_common.json", + "non_interact_focus_border_button/hover": "ui/ui_common.json", + "non_interact_focus_border_button/pressed": "ui/ui_common.json", + "non_interact_focus_border_button/content": "ui/ui_common.json", + "tts_label_focus_wrapper": "ui/ui_common.json", + "tts_label_focus_wrapper/label": "ui/ui_common.json", + "tts_label_focus_wrapper/focus_border": "ui/ui_common.json", + "default_indent": "ui/ui_common.json", + "edit_box_indent": "ui/ui_common.json", + "edit_box_indent_hover": "ui/ui_common.json", + "transparent_edit_box_indent": "ui/ui_common.json", + "transparent_edit_box_indent_hover": "ui/ui_common.json", + "text_edit_box_label": "ui/ui_common.json", + "text_edit_box_place_holder_label": "ui/ui_common.json", + "text_magnifying_glass_image": "ui/ui_common.json", + "text_close_X_button_image": "ui/ui_common.json", + "text_close_X_button_image_hover": "ui/ui_common.json", + "clear_text_button": "ui/ui_common.json", + "clear_text_button/default": "ui/ui_common.json", + "clear_text_button/hover": "ui/ui_common.json", + "clear_text_button/pressed": "ui/ui_common.json", + "text_edit_box": "ui/ui_common.json", + "text_edit_box/centering_panel": "ui/ui_common.json", + "text_edit_box/centering_panel/clipper_panel": "ui/ui_common.json", + "text_edit_box/centering_panel/clipper_panel/magnifying_glass": "ui/ui_common.json", + "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel": "ui/ui_common.json", + "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel/clear_text_button": "ui/ui_common.json", + "text_edit_box/centering_panel/clipper_panel/visibility_panel": "ui/ui_common.json", + "text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control": "ui/ui_common.json", + "text_edit_box/locked": "ui/ui_common.json", + "text_edit_box/locked/edit_box_indent": "ui/ui_common.json", + "text_edit_box/default": "ui/ui_common.json", + "text_edit_box/hover": "ui/ui_common.json", + "text_edit_box/pressed": "ui/ui_common.json", + "text_edit_box_scrolling_content": "ui/ui_common.json", + "scrollable_text_edit_box": "ui/ui_common.json", + "scrollable_text_edit_box/centering_panel": "ui/ui_common.json", + "scrollable_text_edit_box/centering_panel/clipper_panel": "ui/ui_common.json", + "scrollable_text_edit_box/centering_panel/clipper_panel/text_edit_text_control": "ui/ui_common.json", + "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel": "ui/ui_common.json", + "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control": "ui/ui_common.json", + "scrollable_text_edit_box/locked": "ui/ui_common.json", + "scrollable_text_edit_box/locked/edit_box_indent": "ui/ui_common.json", + "scrollable_text_edit_box/default": "ui/ui_common.json", + "scrollable_text_edit_box/hover": "ui/ui_common.json", + "scrollable_text_edit_box/pressed": "ui/ui_common.json", + "transparent_text_edit_box": "ui/ui_common.json", + "transparent_text_edit_box/clipper_panel": "ui/ui_common.json", + "transparent_text_edit_box/clipper_panel/visibility_panel": "ui/ui_common.json", + "transparent_text_edit_box/clipper_panel/visibility_panel/place_holder_control": "ui/ui_common.json", + "transparent_text_edit_box/locked": "ui/ui_common.json", + "transparent_text_edit_box/locked/edit_box_indent": "ui/ui_common.json", + "transparent_text_edit_box/default": "ui/ui_common.json", + "transparent_text_edit_box/hover": "ui/ui_common.json", + "transparent_text_edit_box/pressed": "ui/ui_common.json", + "multiline_text_edit_box": "ui/ui_common.json", + "scrollable_multiline_text_edit_box": "ui/ui_common.json", + "dirt_background": "ui/ui_common.json", + "portal_background": "ui/ui_common.json", + "empty_progress_bar": "ui/ui_common.json", + "filled_progress_bar": "ui/ui_common.json", + "empty_progress_bar_beveled": "ui/ui_common.json", + "progress_bar_beveled_overlay": "ui/ui_common.json", + "filled_progress_bar_for_collections": "ui/ui_common.json", + "progress_bar": "ui/ui_common.json", + "progress_bar/empty_progress_bar": "ui/ui_common.json", + "progress_bar/filled_progress_bar": "ui/ui_common.json", + "progress_bar_for_collections": "ui/ui_common.json", + "progress_bar_for_collections/empty_progress_bar": "ui/ui_common.json", + "progress_bar_for_collections/filled_progress_bar_for_collections": "ui/ui_common.json", + "horizontal_divider": "ui/ui_common.json", + "horizontal_divider/divider_image": "ui/ui_common.json", + "vertical_divider": "ui/ui_common.json", + "vertical_divider/divider_image": "ui/ui_common.json", + "underline": "ui/ui_common.json", + "single_line_label": "ui/ui_common.json", + "single_line_label/label_panel": "ui/ui_common.json", + "single_line_label/label_panel/0": "ui/ui_common.json", + "gamepad_helper_icon_description": "ui/ui_common.json", + "gamepad_helper_icon_image": "ui/ui_common.json", + "keyboard_helper_icon_image": "ui/ui_common.json", + "gamepad_helper": "ui/ui_common.json", + "gamepad_helper/icon_panel": "ui/ui_common.json", + "gamepad_helper/description_panel": "ui/ui_common.json", + "gamepad_helper/description_panel/desc": "ui/ui_common.json", + "gamepad_helpers": "ui/ui_common.json", + "gamepad_helpers_a_and_b": "ui/ui_common.json", + "gamepad_helpers_a_and_b/gamepad_helper_a": "ui/ui_common.json", + "gamepad_helpers_a_and_b/control": "ui/ui_common.json", + "gamepad_helpers_a_and_b/gamepad_helper_b": "ui/ui_common.json", + "container_gamepad_helpers": "ui/ui_common.json", + "container_gamepad_helpers/fill_panel": "ui/ui_common.json", + "container_gamepad_helpers/buttons": "ui/ui_common.json", + "container_gamepad_helpers/buttons/gamepad_helper_x": "ui/ui_common.json", + "container_gamepad_helpers/buttons/gamepad_helper_a": "ui/ui_common.json", + "container_gamepad_helpers/buttons/gamepad_helper_y": "ui/ui_common.json", + "container_gamepad_helpers/buttons/gamepad_helper_b": "ui/ui_common.json", + "container_gamepad_helpers/buffer_panel_right": "ui/ui_common.json", + "tabs_left_gamepad_helpers": "ui/ui_common.json", + "tabs_left_gamepad_helpers/gamepad_helper_left_bumper": "ui/ui_common.json", + "tabs_left_gamepad_helpers/gamepad_helper_left_trigger": "ui/ui_common.json", + "tabs_right_gamepad_helpers": "ui/ui_common.json", + "tabs_right_gamepad_helpers/gamepad_helper_right_bumper": "ui/ui_common.json", + "tabs_right_gamepad_helpers/gamepad_helper_right_trigger": "ui/ui_common.json", + "keyboard_helper_description": "ui/ui_common.json", + "keyboard_helper": "ui/ui_common.json", + "keyboard_helper/image_centerer": "ui/ui_common.json", + "keyboard_helper/image_centerer/image": "ui/ui_common.json", + "keyboard_helper/image_centerer/image/keyboard_character": "ui/ui_common.json", + "keyboard_helper/centerer": "ui/ui_common.json", + "keyboard_helper/centerer/desc": "ui/ui_common.json", + "keyboard_helpers": "ui/ui_common.json", + "gamepad_icon_button": "ui/ui_common.json", + "gamepad_helper_start": "ui/ui_common.json", + "gamepad_helper_a": "ui/ui_common.json", + "gamepad_helper_a_14": "ui/ui_common.json", + "gamepad_helper_b": "ui/ui_common.json", + "gamepad_helper_b_14": "ui/ui_common.json", + "gamepad_helper_x": "ui/ui_common.json", + "gamepad_helper_x_14": "ui/ui_common.json", + "gamepad_helper_y": "ui/ui_common.json", + "gamepad_helper_y_14": "ui/ui_common.json", + "keyboard_helper_keys": "ui/ui_common.json", + "gamepad_helper_left_trigger": "ui/ui_common.json", + "gamepad_helper_right_trigger": "ui/ui_common.json", + "keyboard_left_trigger": "ui/ui_common.json", + "keyboard_right_trigger": "ui/ui_common.json", + "gamepad_icon_dpad": "ui/ui_common.json", + "gamepad_helper_dpad": "ui/ui_common.json", + "gamepad_helper_dpad_down": "ui/ui_common.json", + "gamepad_helper_dpad_left": "ui/ui_common.json", + "gamepad_helper_dpad_right": "ui/ui_common.json", + "gamepad_helper_dpad_up": "ui/ui_common.json", + "gamepad_icon_thumbstick": "ui/ui_common.json", + "gamepad_helper_thumbstick": "ui/ui_common.json", + "gamepad_helper_thumbstick_right": "ui/ui_common.json", + "gamepad_helper_thumbstick_left": "ui/ui_common.json", + "gamepad_helper_left_bumper": "ui/ui_common.json", + "gamepad_helper_right_bumper": "ui/ui_common.json", + "dialog_background_common": "ui/ui_common.json", + "dialog_background_hollow_common": "ui/ui_common.json", + "dialog_background_hollow_common/control": "ui/ui_common.json", + "dialog_background_opaque": "ui/ui_common.json", + "dialog_background_hollow_1": "ui/ui_common.json", + "dialog_background_hollow_2": "ui/ui_common.json", + "dialog_background_hollow_3": "ui/ui_common.json", + "dialog_background_hollow_4": "ui/ui_common.json", + "dialog_background_hollow_4_thin": "ui/ui_common.json", + "dialog_background_hollow_5": "ui/ui_common.json", + "dialog_background_hollow_6": "ui/ui_common.json", + "dialog_background_hollow_7": "ui/ui_common.json", + "dialog_background_hollow_8": "ui/ui_common.json", + "dialog_divider": "ui/ui_common.json", + "normal_button": "ui/ui_common.json", + "normal_stroke_button": "ui/ui_common.json", + "section_heading_label": "ui/ui_common.json", + "section_divider": "ui/ui_common.json", + "section_divider/padding1": "ui/ui_common.json", + "section_divider/divider_parent": "ui/ui_common.json", + "section_divider/divider_parent/divider": "ui/ui_common.json", + "section_divider/padding2": "ui/ui_common.json", + "minecraftTenLabel": "ui/ui_common.json", + "close_button_image": "ui/ui_common.json", + "close_button_panel": "ui/ui_common.json", + "close_button_panel/close_button_image": "ui/ui_common.json", + "close_button": "ui/ui_common.json", + "close_button/default": "ui/ui_common.json", + "close_button/hover": "ui/ui_common.json", + "close_button/pressed": "ui/ui_common.json", + "close_button_grey_bg": "ui/ui_common.json", + "close_button_grey_bg/default": "ui/ui_common.json", + "close_button_grey_bg/hover": "ui/ui_common.json", + "close_button_grey_bg/pressed": "ui/ui_common.json", + "close_button_high_contrast": "ui/ui_common.json", + "close_button_high_contrast/background": "ui/ui_common.json", + "close_button_high_contrast/default": "ui/ui_common.json", + "close_button_high_contrast/hover": "ui/ui_common.json", + "close_button_high_contrast/pressed": "ui/ui_common.json", + "compact_close_button": "ui/ui_common.json", + "compact_close_button/default": "ui/ui_common.json", + "compact_close_button/hover": "ui/ui_common.json", + "compact_close_button/pressed": "ui/ui_common.json", + "light_close_button": "ui/ui_common.json", + "light_close_button/default": "ui/ui_common.json", + "light_close_button/hover": "ui/ui_common.json", + "light_close_button/pressed": "ui/ui_common.json", + "help_button": "ui/ui_common.json", + "help_button/default": "ui/ui_common.json", + "help_button/hover": "ui/ui_common.json", + "help_button/pressed": "ui/ui_common.json", + "cell_image": "ui/ui_common.json", + "cell_image_selected": "ui/ui_common.json", + "cell_image_panel": "ui/ui_common.json", + "cell_image_panel/cell_image": "ui/ui_common.json", + "cell_image_panel/cell_image_selected": "ui/ui_common.json", + "cell_overlay": "ui/ui_common.json", + "highlight_slot": "ui/ui_common.json", + "white_border_slot": "ui/ui_common.json", + "progressive_select_progress_bar": "ui/ui_common.json", + "progressive_select_progress_bar/stack_progress_bar_down": "ui/ui_common.json", + "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_progress_bar": "ui/ui_common.json", + "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_text": "ui/ui_common.json", + "stack_splitting_overlay": "ui/ui_common.json", + "stack_splitting_overlay/classic_stack_splitting_overlay": "ui/ui_common.json", + "stack_splitting_overlay/classic_stack_splitting_overlay/stack_splitting_bar": "ui/ui_common.json", + "stack_splitting_overlay/pocket_stack_splitting_overlay": "ui/ui_common.json", + "stack_splitting_overlay/pocket_stack_splitting_overlay/stack_splitting_bar": "ui/ui_common.json", + "inventory_hold_icon_holding": "ui/ui_common.json", + "inventory_hold_icon_holding/progressive_down": "ui/ui_common.json", + "inventory_hold_icon_holding/progressive_up": "ui/ui_common.json", + "inventory_hold_icon_holding/progressive_left_side": "ui/ui_common.json", + "inventory_hold_icon_holding/progressive_right_side": "ui/ui_common.json", + "inventory_hold_icon_release": "ui/ui_common.json", + "highlight_slot_panel": "ui/ui_common.json", + "highlight_slot_panel/highlight": "ui/ui_common.json", + "highlight_slot_panel/highlight/hover_text": "ui/ui_common.json", + "highlight_slot_panel/white_border": "ui/ui_common.json", + "pocket_ui_highlight_slot": "ui/ui_common.json", + "hover_text": "ui/ui_common.json", + "screen_background": "ui/ui_common.json", + "stack_count_label": "ui/ui_common.json", + "durability_bar": "ui/ui_common.json", + "durability_bar_grabbed": "ui/ui_common.json", + "storage_bar": "ui/ui_common.json", + "storage_bar_grabbed": "ui/ui_common.json", + "item_renderer": "ui/ui_common.json", + "filtered_item_renderer": "ui/ui_common.json", + "flying_item_renderer": "ui/ui_common.json", + "selected_item_details": "ui/ui_common.json", + "selected_item_details/item_panel_image": "ui/ui_common.json", + "item_panel_image": "ui/ui_common.json", + "item_panel_image/item_text_label": "ui/ui_common.json", + "item_text_label": "ui/ui_common.json", + "selected_item_details_factory": "ui/ui_common.json", + "item_lock_notification": "ui/ui_common.json", + "item_lock_notification/notification_background_image": "ui/ui_common.json", + "item_lock_notification/notification_background_image/notification_text_label": "ui/ui_common.json", + "item_lock_notification_factory": "ui/ui_common.json", + "empty_panel_size_y_0": "ui/ui_common.json", + "scroll_background_and_viewport": "ui/ui_common.json", + "scroll_background_and_viewport/background": "ui/ui_common.json", + "scroll_background_and_viewport/scrolling_view_port": "ui/ui_common.json", + "scroll_background_and_viewport/scrolling_view_port/scrolling_content": "ui/ui_common.json", + "scroll_bar_and_track": "ui/ui_common.json", + "scroll_bar_and_track/stack_panel": "ui/ui_common.json", + "scroll_bar_and_track/stack_panel/empty_panel_0": "ui/ui_common.json", + "scroll_bar_and_track/stack_panel/panel": "ui/ui_common.json", + "scroll_bar_and_track/stack_panel/panel/centered_panel": "ui/ui_common.json", + "scroll_bar_and_track/stack_panel/panel/centered_panel/track": "ui/ui_common.json", + "scroll_bar_and_track/stack_panel/panel/centered_panel/scroll_box": "ui/ui_common.json", + "scroll_bar_and_track/stack_panel/empty_panel_1": "ui/ui_common.json", + "scroll_view_control": "ui/ui_common.json", + "scroll_view_control/stack_panel": "ui/ui_common.json", + "scroll_view_control/stack_panel/background_and_viewport": "ui/ui_common.json", + "scroll_view_control/stack_panel/bar_and_track": "ui/ui_common.json", + "scroll_view_control/panel": "ui/ui_common.json", + "scroll_view_control/panel/background_and_viewport": "ui/ui_common.json", + "scroll_view_control/panel/bar_and_track": "ui/ui_common.json", + "scrollbar_track": "ui/ui_common.json", + "scrollbar_track/bar_indent": "ui/ui_common.json", + "scroll_box": "ui/ui_common.json", + "scroll_box/box": "ui/ui_common.json", + "scroll_box/box/mouse_box": "ui/ui_common.json", + "scroll_box/box/touch_box": "ui/ui_common.json", + "scroll_box_indent": "ui/ui_common.json", + "scrollbar_box_image": "ui/ui_common.json", + "touch_scrollbar_box_image": "ui/ui_common.json", + "new_touch_scrollbar_box_image": "ui/ui_common.json", + "container_touch_scrollbar_box_image": "ui/ui_common.json", + "scroll_indent_image": "ui/ui_common.json", + "scrolling_panel_base": "ui/ui_common.json", + "scrolling_panel": "ui/ui_common.json", + "scrolling_panel/scroll_touch": "ui/ui_common.json", + "scrolling_panel/scroll_mouse": "ui/ui_common.json", + "scrolling_panel_with_offset": "ui/ui_common.json", + "container_slot_button_prototype": "ui/ui_common.json", + "container_slot_button_prototype/hover": "ui/ui_common.json", + "no_coalesce_container_slot_button": "ui/ui_common.json", + "pocket_ui_container_slot": "ui/ui_common.json", + "pocket_ui_container_slot/hover": "ui/ui_common.json", + "pocket_ui_container_slot/hover/highlight_square": "ui/ui_common.json", + "slot_selected": "ui/ui_common.json", + "slot_selected/progress_bar_release": "ui/ui_common.json", + "container_item": "ui/ui_common.json", + "container_item/item_cell": "ui/ui_common.json", + "container_item/item_cell/item": "ui/ui_common.json", + "container_item/item_cell/item/stack_count_label": "ui/ui_common.json", + "container_item/item_cell/durability_bar": "ui/ui_common.json", + "container_item/item_cell/storage_bar": "ui/ui_common.json", + "container_item/item_cell_overlay_ref": "ui/ui_common.json", + "container_item/item_selected_image": "ui/ui_common.json", + "container_item/item_button_ref": "ui/ui_common.json", + "container_item/container_item_lock_overlay": "ui/ui_common.json", + "container_item/item_lock_cell_image": "ui/ui_common.json", + "container_item/bundle_slot_panel": "ui/ui_common.json", + "pocket_ui_container_item": "ui/ui_common.json", + "pocket_ui_large_container_item": "ui/ui_common.json", + "container_item_lock_yellow": "ui/ui_common.json", + "container_item_lock_red": "ui/ui_common.json", + "container_item_lock_overlay": "ui/ui_common.json", + "container_item_lock_overlay/container_item_lock_yellow": "ui/ui_common.json", + "container_item_lock_overlay/container_item_lock_red": "ui/ui_common.json", + "item_lock_cell_image": "ui/ui_common.json", + "container_grid": "ui/ui_common.json", + "pocket_container_grid": "ui/ui_common.json", + "container_scroll_box_image": "ui/ui_common.json", + "container_scroll_bar_side_rails": "ui/ui_common.json", + "container_scrollbar_track": "ui/ui_common.json", + "container_scrollbar_track/rails": "ui/ui_common.json", + "container_scroll_background_image": "ui/ui_common.json", + "container_scroll_panel": "ui/ui_common.json", + "pocket_ui_highlight_selected_slot": "ui/ui_common.json", + "pocket_hotbar_panel": "ui/ui_common.json", + "pocket_hotbar_panel/bg": "ui/ui_common.json", + "pocket_hotbar_panel/hotbar_grid": "ui/ui_common.json", + "drop_item_panel": "ui/ui_common.json", + "pocket_hotbar_and_content_panels": "ui/ui_common.json", + "pocket_hotbar_and_content_panels/pocket_content_panels": "ui/ui_common.json", + "pocket_hotbar_and_content_panels/hotbar_drop_item_panel": "ui/ui_common.json", + "pocket_hotbar_and_content_panels/hotbar_drop_item_panel/pocket_hotbar_panel": "ui/ui_common.json", + "blank_pocket_content_panel": "ui/ui_common.json", + "pocket_content_panels": "ui/ui_common.json", + "pocket_content_panels/left_panel": "ui/ui_common.json", + "pocket_content_panels/offset_panel": "ui/ui_common.json", + "pocket_content_panels/offset_panel/center_bg": "ui/ui_common.json", + "pocket_content_panels/right_panel": "ui/ui_common.json", + "inventory_selected_icon": "ui/ui_common.json", + "inventory_selected_stack_size_text": "ui/ui_common.json", + "inventory_hold_icon": "ui/ui_common.json", + "inventory_selected_item_lock_overlay": "ui/ui_common.json", + "inventory_selected_item_lock_overlay/container_item_lock_yellow": "ui/ui_common.json", + "inventory_selected_item_lock_overlay/container_item_lock_red": "ui/ui_common.json", + "inventory_icon_panel": "ui/ui_common.json", + "inventory_icon_panel/selected_item_icon": "ui/ui_common.json", + "inventory_icon_panel/selected_stack_size_text": "ui/ui_common.json", + "inventory_icon_panel/selected_item_lock_overlay": "ui/ui_common.json", + "inventory_icon_panel/hover_text": "ui/ui_common.json", + "inventory_selected_icon_button": "ui/ui_common.json", + "inventory_selected_icon_button/default": "ui/ui_common.json", + "inventory_selected_icon_button/pressed": "ui/ui_common.json", + "inventory_selected_icon_button/hover": "ui/ui_common.json", + "inventory_selected_icon_button/durability_bar_grabbed": "ui/ui_common.json", + "inventory_selected_icon_button/storage_bar_grabbed": "ui/ui_common.json", + "inventory_take_progress_icon_button": "ui/ui_common.json", + "inventory_take_progress_icon_button/default": "ui/ui_common.json", + "inventory_take_progress_icon_button/pressed": "ui/ui_common.json", + "inventory_take_progress_icon_button/hover": "ui/ui_common.json", + "gamepad_cursor_image": "ui/ui_common.json", + "gamepad_cursor_button": "ui/ui_common.json", + "gamepad_cursor_button/default": "ui/ui_common.json", + "gamepad_cursor_button/pressed": "ui/ui_common.json", + "gamepad_cursor_button/hover": "ui/ui_common.json", + "grid_item_for_inventory": "ui/ui_common.json", + "grid_item_for_hotbar": "ui/ui_common.json", + "hotbar_grid_template": "ui/ui_common.json", + "inventory_panel": "ui/ui_common.json", + "inventory_panel/inventory_grid": "ui/ui_common.json", + "inventory_panel_bottom_half": "ui/ui_common.json", + "inventory_panel_bottom_half/inventory_panel": "ui/ui_common.json", + "inventory_panel_bottom_half_with_label": "ui/ui_common.json", + "inventory_panel_bottom_half_with_label/inventory_panel": "ui/ui_common.json", + "inventory_panel_bottom_half_with_label/inventory_label": "ui/ui_common.json", + "common_panel": "ui/ui_common.json", + "common_panel/bg_image": "ui/ui_common.json", + "common_panel/dialog_divider": "ui/ui_common.json", + "common_panel/close_button_holder": "ui/ui_common.json", + "common_panel/close_button_holder/close": "ui/ui_common.json", + "common_panel/close_button_holder/compact_close": "ui/ui_common.json", + "root_panel": "ui/ui_common.json", + "input_panel": "ui/ui_common.json", + "base_screen": "ui/ui_common.json", + "base_screen/variables_button_mappings_and_controls": "ui/ui_common.json", + "base_screen/variables_button_mappings_and_controls/bg_no_safezone_screen_panel": "ui/ui_common.json", + "base_screen/variables_button_mappings_and_controls/safezone_screen_matrix": "ui/ui_common.json", + "base_screen/variables_button_mappings_and_controls/screen_background": "ui/ui_common.json", + "base_screen/loading_bars_background": "ui/ui_common.json", + "base_screen/loading_bars_background/loading_bars": "ui/ui_common.json", + "render_below_base_screen": "ui/ui_common.json", + "safezone_buffer": "ui/ui_common.json", + "top_safezone_vertical_buffer": "ui/ui_common.json", + "bottom_safezone_vertical_buffer": "ui/ui_common.json", + "left_safezone_horizontal_buffer": "ui/ui_common.json", + "right_safezone_horizontal_buffer": "ui/ui_common.json", + "safe_zone_stack": "ui/ui_common.json", + "safe_zone_stack/top_outer_control": "ui/ui_common.json", + "safe_zone_stack/top_inner_control": "ui/ui_common.json", + "safe_zone_stack/header_bar": "ui/ui_common.json", + "safezone_inner_matrix": "ui/ui_common.json", + "safezone_inner_matrix/outer_top": "ui/ui_common.json", + "safezone_inner_matrix/outer_top/top_side_control": "ui/ui_common.json", + "safezone_inner_matrix/inner_top": "ui/ui_common.json", + "safezone_inner_matrix/inner_top/top_side_control": "ui/ui_common.json", + "safezone_inner_matrix/safezone_screen_panel": "ui/ui_common.json", + "safezone_inner_matrix/inner_bottom": "ui/ui_common.json", + "safezone_inner_matrix/outer_bottom": "ui/ui_common.json", + "safezone_outer_matrix": "ui/ui_common.json", + "safezone_outer_matrix/outer_left": "ui/ui_common.json", + "safezone_outer_matrix/outer_left/outer_left_safe_zone_stack": "ui/ui_common.json", + "safezone_outer_matrix/inner_left": "ui/ui_common.json", + "safezone_outer_matrix/inner_left/inner_left_safe_zone_stack": "ui/ui_common.json", + "safezone_outer_matrix/inner_matrix": "ui/ui_common.json", + "safezone_outer_matrix/inner_right": "ui/ui_common.json", + "safezone_outer_matrix/inner_right/inner_right_safe_zone_stack": "ui/ui_common.json", + "safezone_outer_matrix/outer_right": "ui/ui_common.json", + "safezone_outer_matrix/outer_right/outer_right_safe_zone_stack": "ui/ui_common.json", + "bundle_tooltip_wrapper": "ui/ui_common.json", + "bundle_tooltip_wrapper/bundle_tooltip_factory_wrapper": "ui/ui_common.json", + "bundle_tooltip_wrapper/bundle_touch_tooltip": "ui/ui_common.json", + "screen_panel": "ui/ui_common.json", + "screen_panel/root_screen_panel": "ui/ui_common.json", + "screen_panel/additional_screen_content": "ui/ui_common.json", + "screen_panel/popup_dialog_factory": "ui/ui_common.json", + "screen_panel/bundle_hover_tooltip": "ui/ui_common.json", + "base_screen_empty_panel": "ui/ui_common.json", + "modal_screen": "ui/ui_common.json", + "realms_error_modal_screen": "ui/ui_common.json", + "modal_area_panel_base": "ui/ui_common.json", + "inactive_modal_pane_fade": "ui/ui_common.json", + "inventory_screen_common": "ui/ui_common.json", + "fullscreen_header": "ui/ui_common.json", + "fullscreen_header/top_bar": "ui/ui_common.json", + "fullscreen_header/top_bar/title_stack_panel": "ui/ui_common.json", + "fullscreen_header/top_bar/title_stack_panel/padding1": "ui/ui_common.json", + "fullscreen_header/top_bar/title_stack_panel/back_button_content_panel": "ui/ui_common.json", + "fullscreen_header/top_bar/title_stack_panel/padding2": "ui/ui_common.json", + "fullscreen_header/child_control": "ui/ui_common.json", + "back_content_panel": "ui/ui_common.json", + "back_content_panel/back_button": "ui/ui_common.json", + "top_bar": "ui/ui_common.json", + "tooltip_background": "ui/ui_common.json", + "tooltip_button_content": "ui/ui_common.json", + "tooltip_button_content/tooltip_panel_content": "ui/ui_common.json", + "static_tooltip_popup_with_image_and_text": "ui/ui_common.json", + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel": "ui/ui_common.json", + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel": "ui/ui_common.json", + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel": "ui/ui_common.json", + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel/0": "ui/ui_common.json", + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding": "ui/ui_common.json", + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text": "ui/ui_common.json", + "static_tooltip_popup_with_image_and_text/tooltip_chevron": "ui/ui_common.json", + "dynamic_tooltip_popup_with_custom_content": "ui/ui_common.json", + "dynamic_tooltip_popup_with_custom_content/tooltip_content": "ui/ui_common.json", + "dynamic_tooltip_popup_with_custom_content/tooltip_chevron": "ui/ui_common.json", + "dynamic_tooltip_popup_with_image_and_text": "ui/ui_common.json", + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel": "ui/ui_common.json", + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel": "ui/ui_common.json", + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel": "ui/ui_common.json", + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel/0": "ui/ui_common.json", + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding": "ui/ui_common.json", + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text": "ui/ui_common.json", + "dynamic_tooltip_popup_with_image_and_text/tooltip_chevron": "ui/ui_common.json", + "dynamic_tooltip_left": "ui/ui_common.json", + "dynamic_tooltip_below": "ui/ui_common.json", + "dynamic_custom_tooltip_below": "ui/ui_common.json", + "dynamic_tooltip": "ui/ui_common.json", + "dynamic_tooltip/above": "ui/ui_common.json", + "dynamic_tooltip/above/content": "ui/ui_common.json", + "dynamic_tooltip/below": "ui/ui_common.json", + "dynamic_tooltip/below/content": "ui/ui_common.json", + "legacy_pocket_close_button_default": "ui/ui_common.json", + "legacy_pocket_close_button_pressed": "ui/ui_common.json", + "legacy_pocket_close_button": "ui/ui_common.json", + "legacy_pocket_close_button/default": "ui/ui_common.json", + "legacy_pocket_close_button/hover": "ui/ui_common.json", + "legacy_pocket_close_button/pressed": "ui/ui_common.json", + "info_icon": "ui/ui_common.json", + "error_glyph": "ui/ui_common.json", + "service_repo_image_panel": "ui/ui_common.json", + "service_repo_image_panel/service_repo_image": "ui/ui_common.json", + "service_repo_image_panel/progress_loading": "ui/ui_common.json", + "common_cycler": "ui/ui_common.json", + "image_cycler": "ui/ui_common.json", + "text_cycler": "ui/ui_common.json", + "squaring_panel": "ui/ui_common.json", + "squaring_panel/squaring_panel": "ui/ui_common.json", + "squaring_panel/squaring_panel/squaring_panel_content": "ui/ui_common.json", + }, + "common-classic": { + "button": "ui/ui_common_classic.json", + "button_state_default": "ui/ui_common_classic.json", + "button_state_hover": "ui/ui_common_classic.json", + "button_state_pressed": "ui/ui_common_classic.json", + "toggle": "ui/ui_common_classic.json", + "toggle_checked_state": "ui/ui_common_classic.json", + "toggle_unchecked_state": "ui/ui_common_classic.json", + "toggle_checked_hovered_state": "ui/ui_common_classic.json", + "toggle_checked_hovered_state/toggle_checked_state": "ui/ui_common_classic.json", + "toggle_checked_hovered_state/hover": "ui/ui_common_classic.json", + "toggle_unchecked_hovered_state": "ui/ui_common_classic.json", + "toggle_unchecked_hovered_state/toggle_unchecked_state": "ui/ui_common_classic.json", + "toggle_unchecked_hovered_state/hover": "ui/ui_common_classic.json", + }, + "edu_common": { + "light_label": "ui/ui_edu_common.json", + "dark_label": "ui/ui_edu_common.json", + "readable_label": "ui/ui_edu_common.json", + "slider_toggle": "ui/ui_edu_common.json", + "trash_default": "ui/ui_edu_common.json", + "trash_hover": "ui/ui_edu_common.json", + "trash_pressed": "ui/ui_edu_common.json", + "photo_trash_button": "ui/ui_edu_common.json", + "photo_trash_button/default": "ui/ui_edu_common.json", + "photo_trash_button/hover": "ui/ui_edu_common.json", + "photo_trash_button/pressed": "ui/ui_edu_common.json", + "download_progress_modal_panel": "ui/ui_edu_common.json", + "download_progress_modal_panel/downloading": "ui/ui_edu_common.json", + "loading_progress_modal_panel": "ui/ui_edu_common.json", + "loading_progress_modal_panel/loading": "ui/ui_edu_common.json", + "modal_cancel_button": "ui/ui_edu_common.json", + "modal_progress_panel_with_cancel": "ui/ui_edu_common.json", + "modal_progress_panel_with_cancel/common_panel": "ui/ui_edu_common.json", + "modal_progress_panel_with_cancel/title": "ui/ui_edu_common.json", + "modal_progress_panel_with_cancel/content": "ui/ui_edu_common.json", + "modal_progress_panel_with_cancel/content/title_panel": "ui/ui_edu_common.json", + "modal_progress_panel_with_cancel/content/label": "ui/ui_edu_common.json", + "modal_progress_panel_with_cancel/content/progress_loading_bars": "ui/ui_edu_common.json", + "modal_progress_panel_with_cancel/cancel_button": "ui/ui_edu_common.json", + "modal_progress_panel_no_button": "ui/ui_edu_common.json", + "modal_progress_panel_no_button/common_panel": "ui/ui_edu_common.json", + "modal_progress_panel_no_button/content": "ui/ui_edu_common.json", + "modal_progress_panel_no_button/content/progress_title_text": "ui/ui_edu_common.json", + "modal_progress_panel_no_button/content/progress_loading_bars": "ui/ui_edu_common.json", + "apple_animation": "ui/ui_edu_common.json", + "book_animation": "ui/ui_edu_common.json", + "edu_loading_animation": "ui/ui_edu_common.json", + "horizontal_stack_item": "ui/ui_edu_common.json", + "vertical_stack_item": "ui/ui_edu_common.json", + "back_button_padded": "ui/ui_edu_common.json", + "back_button_padded/back_button_padding_before": "ui/ui_edu_common.json", + "back_button_padded/back_button": "ui/ui_edu_common.json", + "home_button_content": "ui/ui_edu_common.json", + "home_button": "ui/ui_edu_common.json", + "underline_text": "ui/ui_edu_common.json", + "underline_text/label_hover": "ui/ui_edu_common.json", + "underline_button": "ui/ui_edu_common.json", + "underline_button/default": "ui/ui_edu_common.json", + "underline_button/hover": "ui/ui_edu_common.json", + "underline_button/pressed": "ui/ui_edu_common.json", + "edu_screen_header": "ui/ui_edu_common.json", + "edu_screen_header/title_controls": "ui/ui_edu_common.json", + "edu_screen_header/title_controls/back_item": "ui/ui_edu_common.json", + "edu_screen_header/title_controls/back_item/back_button": "ui/ui_edu_common.json", + "edu_screen_header/title_controls/back_item/gamepad": "ui/ui_edu_common.json", + "edu_screen_header/title_controls/image_item": "ui/ui_edu_common.json", + "edu_screen_header/title_controls/image_item/image": "ui/ui_edu_common.json", + "edu_screen_header/title_controls/image_item_template": "ui/ui_edu_common.json", + "edu_screen_header/title_controls/image_item_template/image": "ui/ui_edu_common.json", + "edu_screen_header/title_controls/image_item_template/image/image_color": "ui/ui_edu_common.json", + "edu_screen_header/title_controls/title_text_padding": "ui/ui_edu_common.json", + "edu_screen_header/title_controls/title_item": "ui/ui_edu_common.json", + "edu_screen_header/title_controls/title_item/title": "ui/ui_edu_common.json", + "share_dialog_title": "ui/ui_edu_common.json", + "share_header_panel": "ui/ui_edu_common.json", + "share_header_panel/title": "ui/ui_edu_common.json", + "share_header_panel/close_button": "ui/ui_edu_common.json", + "teams_advanced_share_header_panel": "ui/ui_edu_common.json", + "add_resource_share_header_panel": "ui/ui_edu_common.json", + "body_panel": "ui/ui_edu_common.json", + "body_panel/body_stack": "ui/ui_edu_common.json", + "teams_body_panel": "ui/ui_edu_common.json", + "teams_body_resource_panel": "ui/ui_edu_common.json", + "teams_simple_body_resource_panel": "ui/ui_edu_common.json", + "joincode_body_panel": "ui/ui_edu_common.json", + "add_resource_body_panel": "ui/ui_edu_common.json", + "icon_section": "ui/ui_edu_common.json", + "icon_section/icon_stack_panel": "ui/ui_edu_common.json", + "icon_section/icon_padding": "ui/ui_edu_common.json", + "add_resources_section": "ui/ui_edu_common.json", + "add_resources_section/divider": "ui/ui_edu_common.json", + "add_resources_section/add_resource_label": "ui/ui_edu_common.json", + "add_resources_section/teams_padding_middle": "ui/ui_edu_common.json", + "add_resources_section/resource_button": "ui/ui_edu_common.json", + "edit_resource_uri_glyph": "ui/ui_edu_common.json", + "edit_resources_section": "ui/ui_edu_common.json", + "edit_resources_section/divider": "ui/ui_edu_common.json", + "edit_resources_section/resource_label_text": "ui/ui_edu_common.json", + "edit_resources_section/teams_padding_middle": "ui/ui_edu_common.json", + "edit_resources_section/edit_resource_body_button_stack": "ui/ui_edu_common.json", + "edit_resources_section/edit_resource_body_button_stack/resource_button": "ui/ui_edu_common.json", + "edit_resources_section/edit_resource_body_button_stack/padding_middle": "ui/ui_edu_common.json", + "edit_resources_section/edit_resource_body_button_stack/edit_resource_uri_button": "ui/ui_edu_common.json", + "body_content_stack": "ui/ui_edu_common.json", + "body_content_stack/body_text_centering_panel": "ui/ui_edu_common.json", + "body_content_stack/body_text_centering_panel/body_text": "ui/ui_edu_common.json", + "body_content_stack/padding_middle": "ui/ui_edu_common.json", + "body_content_stack/icons": "ui/ui_edu_common.json", + "body_content_stack/copy_link_centering_panel": "ui/ui_edu_common.json", + "body_content_stack/copy_link_centering_panel/copy_link_panel": "ui/ui_edu_common.json", + "body_content_stack/add_resources": "ui/ui_edu_common.json", + "body_content_stack/edit_resources": "ui/ui_edu_common.json", + "teams_simple_body_content_stack": "ui/ui_edu_common.json", + "teams_body_content_stack": "ui/ui_edu_common.json", + "teams_body_resource_content_stack": "ui/ui_edu_common.json", + "joincode_body_content_stack": "ui/ui_edu_common.json", + "add_resource_body_content_stack": "ui/ui_edu_common.json", + "add_resource_body_content_stack/label_one_centering_panel": "ui/ui_edu_common.json", + "add_resource_body_content_stack/label_one_centering_panel/teams_share_label": "ui/ui_edu_common.json", + "add_resource_body_content_stack/label_padding_middle": "ui/ui_edu_common.json", + "add_resource_body_content_stack/label_two_centering_panel": "ui/ui_edu_common.json", + "add_resource_body_content_stack/label_two_centering_panel/teams_share_label": "ui/ui_edu_common.json", + "add_resource_body_content_stack/learn_more_padding_middle": "ui/ui_edu_common.json", + "add_resource_body_content_stack/link1": "ui/ui_edu_common.json", + "add_resource_body_content_stack/url_padding_middle": "ui/ui_edu_common.json", + "add_resource_body_content_stack/url_label": "ui/ui_edu_common.json", + "add_resource_body_content_stack/url_textbox": "ui/ui_edu_common.json", + "add_resource_body_content_stack/inline_notification": "ui/ui_edu_common.json", + "add_resource_body_content_stack/inline_notification_spacer": "ui/ui_edu_common.json", + "add_resource_body_content_stack/button_name_label": "ui/ui_edu_common.json", + "add_resource_body_content_stack/button_middle_spacer": "ui/ui_edu_common.json", + "add_resource_body_content_stack/button_name_textbox": "ui/ui_edu_common.json", + "add_resource_body_content_stack/button_name_textbox_next_disabled": "ui/ui_edu_common.json", + "add_edit_resource_body_content_stack": "ui/ui_edu_common.json", + "add_edit_resource_body_content_stack/scroll_content": "ui/ui_edu_common.json", + "add_edit_resource_body_content_stack/scroll_content/scrolling_panel": "ui/ui_edu_common.json", + "resource_popup_buttons": "ui/ui_edu_common.json", + "resource_popup_buttons/done_button": "ui/ui_edu_common.json", + "resource_popup_buttons/button_padding": "ui/ui_edu_common.json", + "resource_popup_buttons/back_button_panel": "ui/ui_edu_common.json", + "resource_popup_buttons/back_button_panel/back_button_enabled": "ui/ui_edu_common.json", + "resource_popup_buttons/back_button_panel/back_button_disabled": "ui/ui_edu_common.json", + "add_resource_popup_lower_button_panel": "ui/ui_edu_common.json", + "add_resource_popup_lower_button_panel/edit_resource_popup_buttons": "ui/ui_edu_common.json", + "add_resource_popup_lower_button_panel/add_resource_popup_buttons": "ui/ui_edu_common.json", + "share_dialog_body_text": "ui/ui_edu_common.json", + "share_dialog_body_text/tts_border": "ui/ui_edu_common.json", + "share_dialog_body_text/text": "ui/ui_edu_common.json", + "share_icon": "ui/ui_edu_common.json", + "share_label": "ui/ui_edu_common.json", + "share_label/share_image_offset_panel": "ui/ui_edu_common.json", + "share_label/share_image_offset_panel/link_share": "ui/ui_edu_common.json", + "copy_link_stack_panel": "ui/ui_edu_common.json", + "copy_link_stack_panel/link_box": "ui/ui_edu_common.json", + "copy_link_stack_panel/copy_button": "ui/ui_edu_common.json", + "icon_stack_panel": "ui/ui_edu_common.json", + "icon_stack_panel/padding_left": "ui/ui_edu_common.json", + "icon_stack_panel/teams_button": "ui/ui_edu_common.json", + "icon_stack_panel/teams_mail_padding": "ui/ui_edu_common.json", + "icon_stack_panel/mail_button": "ui/ui_edu_common.json", + "icon_stack_panel/mail_classrooms_padding": "ui/ui_edu_common.json", + "icon_stack_panel/classrooms_button": "ui/ui_edu_common.json", + "icon_stack_panel/padding_right": "ui/ui_edu_common.json", + "default_share_button_contents": "ui/ui_edu_common.json", + "default_share_button_contents/background": "ui/ui_edu_common.json", + "default_share_button_contents/image": "ui/ui_edu_common.json", + "default_share_button": "ui/ui_edu_common.json", + "default_share_button/default": "ui/ui_edu_common.json", + "default_share_button/hover": "ui/ui_edu_common.json", + "default_share_button/pressed": "ui/ui_edu_common.json", + "vertical_divider": "ui/ui_edu_common.json", + "vertical_divider/divider": "ui/ui_edu_common.json", + "horizontal_divider": "ui/ui_edu_common.json", + "horizontal_divider/divider": "ui/ui_edu_common.json", + "stack_panel_grid_slot": "ui/ui_edu_common.json", + "stack_panel_grid_slot/stack_panel_grid_item_panel": "ui/ui_edu_common.json", + "stack_panel_grid_slot/stack_panel_grid_item_panel/stack_panel_grid_item": "ui/ui_edu_common.json", + "stack_panel_grid_row": "ui/ui_edu_common.json", + "stack_panel_grid_row/stack_panel_grid_row_item": "ui/ui_edu_common.json", + "stack_panel_grid_row/stack_panel_grid_row_item/row": "ui/ui_edu_common.json", + "stack_panel_grid_row/divider": "ui/ui_edu_common.json", + "stack_panel_grid_row/divider/line": "ui/ui_edu_common.json", + "stack_panel_grid": "ui/ui_edu_common.json", + "border": "ui/ui_edu_common.json", + "description_panel": "ui/ui_edu_common.json", + "description_panel/border": "ui/ui_edu_common.json", + "description_panel/description": "ui/ui_edu_common.json", + "edu_share_text_popup": "ui/ui_edu_common.json", + "teams_edu_share_text_popup": "ui/ui_edu_common.json", + "teams_edu_share_resource_popup": "ui/ui_edu_common.json", + "teams_edu_simple_share_resource_popup": "ui/ui_edu_common.json", + "joincode_edu_popup": "ui/ui_edu_common.json", + "add_resource_dialog": "ui/ui_edu_common.json", + "share_popup_dialog_factory": "ui/ui_edu_common.json", + "inline_notification": "ui/ui_edu_common.json", + "inline_notification/stack": "ui/ui_edu_common.json", + "inline_notification/stack/icon": "ui/ui_edu_common.json", + "inline_notification/stack/spacer": "ui/ui_edu_common.json", + "inline_notification/stack/warning_text": "ui/ui_edu_common.json", + "search_button_content": "ui/ui_edu_common.json", + "search_bar_and_home_button": "ui/ui_edu_common.json", + "search_bar_and_home_button/search_bar": "ui/ui_edu_common.json", + "search_bar_and_home_button/search_bar/search_bar": "ui/ui_edu_common.json", + "search_bar_and_home_button/search_button": "ui/ui_edu_common.json", + "search_bar_and_home_button/search_pad": "ui/ui_edu_common.json", + "search_bar_and_home_button/home_button": "ui/ui_edu_common.json", + "search_bar_and_home_button/end_pad": "ui/ui_edu_common.json", + "hotbar_hint": "ui/ui_edu_common.json", + "hotbar_hint/inactive_slot_dimmer": "ui/ui_edu_common.json", + "hotbar_hint/bound_key_glyph_background": "ui/ui_edu_common.json", + "hotbar_hint/bound_key_glyph_background/bound_key_glyph_text": "ui/ui_edu_common.json", + "view_toggle_content": "ui/ui_edu_common.json", + "view_toggle_content/button_image_templates": "ui/ui_edu_common.json", + "view_toggle_content/button_image_templates/image_color_templates": "ui/ui_edu_common.json", + "view_toggle_content/button_image_worlds": "ui/ui_edu_common.json", + "view_toggle_content/button_label_wrapper": "ui/ui_edu_common.json", + "view_toggle_content/button_label_wrapper/button_label": "ui/ui_edu_common.json", + "view_toggle_content/left_edge_text_padding": "ui/ui_edu_common.json", + "worlds_and_templates_search_bar": "ui/ui_edu_common.json", + "worlds_and_templates_search_bar/stack_panel": "ui/ui_edu_common.json", + "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper": "ui/ui_edu_common.json", + "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper/search_bar": "ui/ui_edu_common.json", + "worlds_and_templates_search_bar/stack_panel/temp_padding": "ui/ui_edu_common.json", + "worlds_and_templates_search_bar/stack_panel/view_toggle_background": "ui/ui_edu_common.json", + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel": "ui/ui_edu_common.json", + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/left_edge_padding": "ui/ui_edu_common.json", + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/view_toggle_button": "ui/ui_edu_common.json", + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/right_edge_padding": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_popup_dialog_factory": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_popup": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/tts_border": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/conflict_resolution_description": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/padding1": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/world_info_wrapper": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/world_info_wrapper/tts_border": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_name_label": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_last_changed_label": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_name_label": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_last_changed_label": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/padding2": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/keep_local_button": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/keep_cloud_button": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/keep_both_button": "ui/ui_edu_common.json", + "nested_buttons_base_definition": "ui/ui_edu_common.json", + }, + "purchase_common": { + "banner_fill": "ui/ui_purchase_common.json", + "banner_empty": "ui/ui_purchase_common.json", + "screenshots_grid_item": "ui/ui_purchase_common.json", + "screenshots_grid_item/frame": "ui/ui_purchase_common.json", + "screenshots_grid_item/frame/screenshot_image": "ui/ui_purchase_common.json", + "screenshots_grid_item/frame/progress_loading": "ui/ui_purchase_common.json", + "screenshots_grid_item/frame/screenshot_button": "ui/ui_purchase_common.json", + "screenshots_grid_item/frame/screenshot_button/hover": "ui/ui_purchase_common.json", + "screenshots_grid_item/frame/screenshot_button/pressed": "ui/ui_purchase_common.json", + "screenshots_grid": "ui/ui_purchase_common.json", + "key_image_frame": "ui/ui_purchase_common.json", + "key_image_frame/zoomed": "ui/ui_purchase_common.json", + "offer_grid_item": "ui/ui_purchase_common.json", + "offer_grid_item/frame": "ui/ui_purchase_common.json", + "offer_grid_item/frame/offer_key_art": "ui/ui_purchase_common.json", + "offer_grid_item/frame/offer_button": "ui/ui_purchase_common.json", + "offer_grid_item/frame/offer_button/hover": "ui/ui_purchase_common.json", + "offer_grid_item/frame/offer_button/pressed": "ui/ui_purchase_common.json", + "offer_grid": "ui/ui_purchase_common.json", + "key_art_and_text": "ui/ui_purchase_common.json", + "key_art_and_text/key_image_panel": "ui/ui_purchase_common.json", + "key_art_and_text/key_image_panel/key_image": "ui/ui_purchase_common.json", + "key_art_and_text/padding": "ui/ui_purchase_common.json", + "key_art_and_text/description_scroll": "ui/ui_purchase_common.json", + "pack_description": "ui/ui_purchase_common.json", + }, + "common_buttons": { + "button_image": "ui/ui_template_buttons.json", + "background_button_image": "ui/ui_template_buttons.json", + "locked_button_image": "ui/ui_template_buttons.json", + "light_button_assets": "ui/ui_template_buttons.json", + "dark_button_assets": "ui/ui_template_buttons.json", + "focus_border": "ui/ui_template_buttons.json", + "new_ui_button_panel": "ui/ui_template_buttons.json", + "new_ui_button_panel/button_content": "ui/ui_template_buttons.json", + "new_ui_button_panel/border": "ui/ui_template_buttons.json", + "new_ui_form_fitting_button_panel": "ui/ui_template_buttons.json", + "new_ui_form_fitting_button_panel/border": "ui/ui_template_buttons.json", + "new_ui_width_fitting_button_panel": "ui/ui_template_buttons.json", + "new_ui_width_fitting_button_panel/border": "ui/ui_template_buttons.json", + "new_ui_height_fitting_button_panel": "ui/ui_template_buttons.json", + "new_ui_height_fitting_button_panel/border": "ui/ui_template_buttons.json", + "borderless_form_fitting_button_panel": "ui/ui_template_buttons.json", + "light_text_button": "ui/ui_template_buttons.json", + "light_text_button/default": "ui/ui_template_buttons.json", + "light_text_button/hover": "ui/ui_template_buttons.json", + "light_text_button/pressed": "ui/ui_template_buttons.json", + "light_text_button/locked": "ui/ui_template_buttons.json", + "dark_text_button": "ui/ui_template_buttons.json", + "dark_text_button/default": "ui/ui_template_buttons.json", + "dark_text_button/hover": "ui/ui_template_buttons.json", + "dark_text_button/pressed": "ui/ui_template_buttons.json", + "dark_text_button/locked": "ui/ui_template_buttons.json", + "new_ui_binding_button_label": "ui/ui_template_buttons.json", + "underline_button": "ui/ui_template_buttons.json", + "underline_button/default": "ui/ui_template_buttons.json", + "underline_button/default/label_default": "ui/ui_template_buttons.json", + "underline_button/hover": "ui/ui_template_buttons.json", + "underline_button/hover/label_hover": "ui/ui_template_buttons.json", + "underline_button/pressed": "ui/ui_template_buttons.json", + "underline_button/pressed/label_hover": "ui/ui_template_buttons.json", + "read_button": "ui/ui_template_buttons.json", + "read_button/read_button_inner": "ui/ui_template_buttons.json", + "light_content_form_fitting_button": "ui/ui_template_buttons.json", + "dark_content_form_fitting_button": "ui/ui_template_buttons.json", + "light_text_form_fitting_button": "ui/ui_template_buttons.json", + "dark_text_form_fitting_button": "ui/ui_template_buttons.json", + "transparent_content_button": "ui/ui_template_buttons.json", + "single_image_with_border_button": "ui/ui_template_buttons.json", + "light_content_button": "ui/ui_template_buttons.json", + "light_content_button/default": "ui/ui_template_buttons.json", + "light_content_button/hover": "ui/ui_template_buttons.json", + "light_content_button/pressed": "ui/ui_template_buttons.json", + "light_content_button/locked": "ui/ui_template_buttons.json", + "light_content_button_control_content": "ui/ui_template_buttons.json", + "light_content_button_control_content/default": "ui/ui_template_buttons.json", + "light_content_button_control_content/hover": "ui/ui_template_buttons.json", + "light_content_button_control_content/pressed": "ui/ui_template_buttons.json", + "light_content_button_control_content/locked": "ui/ui_template_buttons.json", + "deactivated_light_content_button": "ui/ui_template_buttons.json", + "dark_content_button": "ui/ui_template_buttons.json", + "dark_content_button/default": "ui/ui_template_buttons.json", + "dark_content_button/hover": "ui/ui_template_buttons.json", + "dark_content_button/pressed": "ui/ui_template_buttons.json", + "dark_content_button/locked": "ui/ui_template_buttons.json", + "no_background_content_button": "ui/ui_template_buttons.json", + "no_background_content_button/default": "ui/ui_template_buttons.json", + "no_background_content_button/hover": "ui/ui_template_buttons.json", + "no_background_content_button/pressed": "ui/ui_template_buttons.json", + "no_background_content_button/locked": "ui/ui_template_buttons.json", + "button_content_panel": "ui/ui_template_buttons.json", + "button_content_panel/content": "ui/ui_template_buttons.json", + "form_fitting_button_content_panel": "ui/ui_template_buttons.json", + "form_fitting_button_content_panel/content": "ui/ui_template_buttons.json", + "horizontal_form_fitting": "ui/ui_template_buttons.json", + "horizontal_form_fitting/content": "ui/ui_template_buttons.json", + "width_fitting_button_content_panel": "ui/ui_template_buttons.json", + "width_fitting_button_content_panel/content": "ui/ui_template_buttons.json", + "height_fitting_button_content_panel": "ui/ui_template_buttons.json", + "height_fitting_button_content_panel/content": "ui/ui_template_buttons.json", + "light_glyph_button": "ui/ui_template_buttons.json", + "light_glyph_button/default": "ui/ui_template_buttons.json", + "light_glyph_button/hover": "ui/ui_template_buttons.json", + "light_glyph_button/pressed": "ui/ui_template_buttons.json", + "light_glyph_button/locked": "ui/ui_template_buttons.json", + "dark_glyph_button_default": "ui/ui_template_buttons.json", + "dark_glyph_button_hover": "ui/ui_template_buttons.json", + "dark_glyph_button_pressed": "ui/ui_template_buttons.json", + "dark_glyph_button_locked": "ui/ui_template_buttons.json", + "dark_glyph_button": "ui/ui_template_buttons.json", + "dark_glyph_button/default": "ui/ui_template_buttons.json", + "dark_glyph_button/hover": "ui/ui_template_buttons.json", + "dark_glyph_button/pressed": "ui/ui_template_buttons.json", + "dark_glyph_button/locked": "ui/ui_template_buttons.json", + "dark_glyph_button_with_custom_control": "ui/ui_template_buttons.json", + "dark_glyph_button_with_custom_control/custom_control": "ui/ui_template_buttons.json", + "dark_glyph_button_with_custom_control/default": "ui/ui_template_buttons.json", + "dark_glyph_button_with_custom_control/hover": "ui/ui_template_buttons.json", + "dark_glyph_button_with_custom_control/pressed": "ui/ui_template_buttons.json", + "dark_glyph_button_with_custom_control/locked": "ui/ui_template_buttons.json", + "glyph_content_panel": "ui/ui_template_buttons.json", + "glyph_content_panel/glyph_button_content": "ui/ui_template_buttons.json", + "hyperlink_button": "ui/ui_template_buttons.json", + "hyperlink_content_button": "ui/ui_template_buttons.json", + "nested_button_assets": "ui/ui_template_buttons.json", + "nested_overlay_assets": "ui/ui_template_buttons.json", + "nested_label_content_background_assets": "ui/ui_template_buttons.json", + "nested_label_background_assets": "ui/ui_template_buttons.json", + "nested_transparent_label_content_background_assets": "ui/ui_template_buttons.json", + "nested_transparent_label_content_background_assets/assets": "ui/ui_template_buttons.json", + "nested_base_label": "ui/ui_template_buttons.json", + "nested_centered_label_control": "ui/ui_template_buttons.json", + "nested_centered_label_control/label": "ui/ui_template_buttons.json", + "nested_label_with_image_control": "ui/ui_template_buttons.json", + "nested_label_with_image_control/image": "ui/ui_template_buttons.json", + "nested_label_with_image_control/image_to_label_padding": "ui/ui_template_buttons.json", + "nested_label_with_image_control/label_panel": "ui/ui_template_buttons.json", + "nested_label_with_image_control/label_panel/label": "ui/ui_template_buttons.json", + "nested_six_part_empty_definition": "ui/ui_template_buttons.json", + "nested_six_part_label_control": "ui/ui_template_buttons.json", + "nested_six_part_label_control/left_top_label": "ui/ui_template_buttons.json", + "nested_six_part_label_control/left_middle_label": "ui/ui_template_buttons.json", + "nested_six_part_label_control/left_bottom_label": "ui/ui_template_buttons.json", + "nested_six_part_label_control/right_top_label": "ui/ui_template_buttons.json", + "nested_six_part_label_control/right_middle_label": "ui/ui_template_buttons.json", + "nested_six_part_label_control/right_bottom_label": "ui/ui_template_buttons.json", + "nested_dark_button_assets": "ui/ui_template_buttons.json", + "nested_content_background_assets": "ui/ui_template_buttons.json", + "nested_content_overlay_assets": "ui/ui_template_buttons.json", + "nested_dark_control_with_image": "ui/ui_template_buttons.json", + "nested_dark_control_with_image/background": "ui/ui_template_buttons.json", + "nested_dark_control_with_image/image_panel": "ui/ui_template_buttons.json", + "nested_dark_control_with_image/image_panel/image": "ui/ui_template_buttons.json", + "nestable_button": "ui/ui_template_buttons.json", + "nestable_button/nested_controls_panel": "ui/ui_template_buttons.json", + "nestable_button/nested_controls_panel/locked_overlay": "ui/ui_template_buttons.json", + "nestable_button/nested_controls_panel/nested_controls": "ui/ui_template_buttons.json", + "nestable_button/base_button": "ui/ui_template_buttons.json", + "nestable_button/base_button/default": "ui/ui_template_buttons.json", + "nestable_button/base_button/hover": "ui/ui_template_buttons.json", + "nestable_button/base_button/pressed": "ui/ui_template_buttons.json", + "nestable_button/base_button/locked": "ui/ui_template_buttons.json", + "nested_button_base": "ui/ui_template_buttons.json", + "nested_button_base/button_overlay": "ui/ui_template_buttons.json", + "nested_button_base/button_control": "ui/ui_template_buttons.json", + "nested_button_base/button_control/control_area": "ui/ui_template_buttons.json", + "nested_button_base/button_control/control_area/background": "ui/ui_template_buttons.json", + "nested_button_base/button_control/control_area/control": "ui/ui_template_buttons.json", + "nested_button_base/button_control/control_area/overlay": "ui/ui_template_buttons.json", + "nested_button_base/button_control/button_stack_padding": "ui/ui_template_buttons.json", + "nested_button_base/button_control/label_area": "ui/ui_template_buttons.json", + "nested_button_base/button_control/label_area/background": "ui/ui_template_buttons.json", + "nested_button_base/button_control/label_area/control_background": "ui/ui_template_buttons.json", + "nested_button_base/button_control/label_area/control": "ui/ui_template_buttons.json", + "dark_nestable_button": "ui/ui_template_buttons.json", + "transparent_label_nestable_button": "ui/ui_template_buttons.json", + "static_tooltip_notification_panel": "ui/ui_template_buttons.json", + "static_tooltip_notification_panel/default": "ui/ui_template_buttons.json", + "static_tooltip_notification_panel/pressed": "ui/ui_template_buttons.json", + "static_tooltip_notification_panel/hover": "ui/ui_template_buttons.json", + "static_tooltip_notification_panel/locked": "ui/ui_template_buttons.json", + "static_tooltip_notification_panel/static_tooltip_popup_panel": "ui/ui_template_buttons.json", + "dynamic_tooltip_notification_panel": "ui/ui_template_buttons.json", + "dynamic_tooltip_notification_panel/default": "ui/ui_template_buttons.json", + "dynamic_tooltip_notification_panel/pressed": "ui/ui_template_buttons.json", + "dynamic_tooltip_notification_panel/hover": "ui/ui_template_buttons.json", + "dynamic_tooltip_notification_panel/locked": "ui/ui_template_buttons.json", + "dynamic_tooltip_notification_panel/dyanmic_tooltip_popup_panel": "ui/ui_template_buttons.json", + "text_body_focus_border_for_controller_button": "ui/ui_template_buttons.json", + "text_body_focus_border_for_controller_button/default": "ui/ui_template_buttons.json", + "text_body_focus_border_for_controller_button/hover": "ui/ui_template_buttons.json", + "text_body_focus_border_for_controller_button/hover/focus_border": "ui/ui_template_buttons.json", + "text_body_focus_border_for_controller_button/text_control": "ui/ui_template_buttons.json", + }, + "common_dialogs": { + "standard_title_label": "ui/ui_template_dialogs.json", + "title_label": "ui/ui_template_dialogs.json", + "title_label/common_dialogs_0": "ui/ui_template_dialogs.json", + "title_label/common_dialogs_1": "ui/ui_template_dialogs.json", + "main_panel_three_buttons": "ui/ui_template_dialogs.json", + "main_panel_three_buttons/common_panel": "ui/ui_template_dialogs.json", + "main_panel_three_buttons/title_label": "ui/ui_template_dialogs.json", + "main_panel_three_buttons/panel_indent": "ui/ui_template_dialogs.json", + "main_panel_three_buttons/panel_indent/inside_header_panel": "ui/ui_template_dialogs.json", + "main_panel_three_buttons/top_button_panel": "ui/ui_template_dialogs.json", + "main_panel_three_buttons/middle_button_panel": "ui/ui_template_dialogs.json", + "main_panel_three_buttons/bottom_button_panel": "ui/ui_template_dialogs.json", + "main_panel_two_buttons": "ui/ui_template_dialogs.json", + "main_panel_two_buttons/common_panel": "ui/ui_template_dialogs.json", + "main_panel_two_buttons/title_label": "ui/ui_template_dialogs.json", + "main_panel_two_buttons/panel_indent": "ui/ui_template_dialogs.json", + "main_panel_two_buttons/panel_indent/inside_header_panel": "ui/ui_template_dialogs.json", + "main_panel_two_buttons/top_button_panel": "ui/ui_template_dialogs.json", + "main_panel_two_buttons/bottom_button_panel": "ui/ui_template_dialogs.json", + "main_panel_one_button": "ui/ui_template_dialogs.json", + "main_panel_one_button/common_panel": "ui/ui_template_dialogs.json", + "main_panel_one_button/title_label": "ui/ui_template_dialogs.json", + "main_panel_one_button/panel_indent": "ui/ui_template_dialogs.json", + "main_panel_one_button/panel_indent/inside_header_panel": "ui/ui_template_dialogs.json", + "main_panel_one_button/bottom_button_panel": "ui/ui_template_dialogs.json", + "main_panel_no_buttons": "ui/ui_template_dialogs.json", + "main_panel_no_buttons/common_panel": "ui/ui_template_dialogs.json", + "main_panel_no_buttons/title_label": "ui/ui_template_dialogs.json", + "main_panel_no_buttons/panel_indent": "ui/ui_template_dialogs.json", + "main_panel_no_buttons/panel_indent/inside_header_panel": "ui/ui_template_dialogs.json", + "main_panel_no_title_no_buttons": "ui/ui_template_dialogs.json", + "main_panel_no_title_no_buttons/common_panel": "ui/ui_template_dialogs.json", + "main_panel_no_title_no_buttons/panel_indent": "ui/ui_template_dialogs.json", + "main_panel_no_title_no_buttons/panel_indent/inside_header_panel": "ui/ui_template_dialogs.json", + "main_panel_small_title_one_button": "ui/ui_template_dialogs.json", + "main_panel_small_title_one_button/common_panel": "ui/ui_template_dialogs.json", + "main_panel_small_title_one_button/title_label": "ui/ui_template_dialogs.json", + "main_panel_small_title_one_button/panel_indent": "ui/ui_template_dialogs.json", + "main_panel_small_title_one_button/panel_indent/inside_header_panel": "ui/ui_template_dialogs.json", + "main_panel_small_title_one_button/bottom_button_panel": "ui/ui_template_dialogs.json", + "main_panel": "ui/ui_template_dialogs.json", + "main_panel/modal_background_image": "ui/ui_template_dialogs.json", + "main_panel/panel_indent": "ui/ui_template_dialogs.json", + "main_panel/panel_indent/inside_header_panel": "ui/ui_template_dialogs.json", + "form_fitting_main_panel_no_buttons": "ui/ui_template_dialogs.json", + "form_fitting_main_panel_no_buttons/common_panel": "ui/ui_template_dialogs.json", + "common_panel": "ui/ui_template_dialogs.json", + "common_panel/bg_image": "ui/ui_template_dialogs.json", + "dialog_background_common": "ui/ui_template_dialogs.json", + "dialog_background_thin": "ui/ui_template_dialogs.json", + "flat_solid_background": "ui/ui_template_dialogs.json", + "dialog_background_hollow_common": "ui/ui_template_dialogs.json", + "dialog_background_hollow_common/control": "ui/ui_template_dialogs.json", + "dialog_background_hollow_common/control/inside_header_panel": "ui/ui_template_dialogs.json", + "dialog_background_hollow_common/control/close_button_holder": "ui/ui_template_dialogs.json", + "dialog_background_hollow_common/control/title_label": "ui/ui_template_dialogs.json", + "common_close_button_holder": "ui/ui_template_dialogs.json", + "common_close_button_holder/close": "ui/ui_template_dialogs.json", + "common_close_button_holder/compact_close": "ui/ui_template_dialogs.json", + "dialog_background_opaque": "ui/ui_template_dialogs.json", + "dialog_background_opaque_with_child": "ui/ui_template_dialogs.json", + "dialog_background_hollow_1": "ui/ui_template_dialogs.json", + "dialog_background_hollow_2": "ui/ui_template_dialogs.json", + "dialog_background_hollow_3": "ui/ui_template_dialogs.json", + "dialog_background_hollow_4": "ui/ui_template_dialogs.json", + "dialog_background_hollow_6": "ui/ui_template_dialogs.json", + "full_screen_background": "ui/ui_template_dialogs.json", + "full_screen_background/background": "ui/ui_template_dialogs.json", + "background_image": "ui/ui_template_dialogs.json", + }, + "common_tabs": { + "empty_tab_content": "ui/ui_template_tabs.json", + "tab_image": "ui/ui_template_tabs.json", + "tab_panel": "ui/ui_template_tabs.json", + "tab_panel/tab_image": "ui/ui_template_tabs.json", + "tab_panel/tab_content_sizer": "ui/ui_template_tabs.json", + "tab_panel/tab_content_sizer/tab_content": "ui/ui_template_tabs.json", + "base_tab": "ui/ui_template_tabs.json", + "tab_top": "ui/ui_template_tabs.json", + "tab_left": "ui/ui_template_tabs.json", + "tab_right": "ui/ui_template_tabs.json", + "pocket_tab_left": "ui/ui_template_tabs.json", + "pocket_tab_right": "ui/ui_template_tabs.json", + "pocket_tab_close_button": "ui/ui_template_tabs.json", + "pocket_tab_close_button/close_button": "ui/ui_template_tabs.json", + "pocket_tab_help_button": "ui/ui_template_tabs.json", + "pocket_tab_help_button/help_button": "ui/ui_template_tabs.json", + "pocket_tab_close_and_help_button": "ui/ui_template_tabs.json", + "pocket_tab_close_and_help_button/close_button": "ui/ui_template_tabs.json", + "pocket_tab_close_and_help_button/help_button": "ui/ui_template_tabs.json", + "tab_close_and_help_button": "ui/ui_template_tabs.json", + "tab_close_and_help_button/close_button": "ui/ui_template_tabs.json", + "tab_close_and_help_button/help_button": "ui/ui_template_tabs.json", + }, + "common_toggles": { + "content_toggle_image_panel": "ui/ui_template_toggles.json", + "content_toggle_image_panel/icon": "ui/ui_template_toggles.json", + "content_toggle_label_panel": "ui/ui_template_toggles.json", + "content_toggle_label_panel/toggle_label": "ui/ui_template_toggles.json", + "content_toggle_icon_panel": "ui/ui_template_toggles.json", + "content_toggle_icon_panel/content_toggle_image": "ui/ui_template_toggles.json", + "toggle_content_panel": "ui/ui_template_toggles.json", + "toggle_content_panel/toggle_image_panel": "ui/ui_template_toggles.json", + "toggle_content_panel/toggle_image_padding_label": "ui/ui_template_toggles.json", + "toggle_content_panel/toggle_label_panel": "ui/ui_template_toggles.json", + "toggle_content_panel/toggle_label_padding_toggle_icon": "ui/ui_template_toggles.json", + "toggle_content_panel/toggle_icon": "ui/ui_template_toggles.json", + "vertical_form_fitting_toggle_content": "ui/ui_template_toggles.json", + "vertical_form_fitting_toggle_content/toggle_image_panel": "ui/ui_template_toggles.json", + "vertical_form_fitting_toggle_content/toggle_image_padding_label": "ui/ui_template_toggles.json", + "vertical_form_fitting_toggle_content/toggle_label_panel": "ui/ui_template_toggles.json", + "vertical_form_fitting_toggle_content/toggle_label_padding_toggle_icon": "ui/ui_template_toggles.json", + "vertical_form_fitting_toggle_content/toggle_icon": "ui/ui_template_toggles.json", + "light_text_toggle": "ui/ui_template_toggles.json", + "light_image_toggle": "ui/ui_template_toggles.json", + "light_content_toggle": "ui/ui_template_toggles.json", + "dark_ui_toggle": "ui/ui_template_toggles.json", + "dark_text_toggle": "ui/ui_template_toggles.json", + "dark_image_toggle": "ui/ui_template_toggles.json", + "dark_content_toggle": "ui/ui_template_toggles.json", + "dark_vertical_template_toggle": "ui/ui_template_toggles.json", + "dark_vertical_form_fitting_content_toggle": "ui/ui_template_toggles.json", + "dark_vertical_form_fitting_content_toggle/dark_content_toggle": "ui/ui_template_toggles.json", + "dark_template_toggle": "ui/ui_template_toggles.json", + "light_template_toggle": "ui/ui_template_toggles.json", + "light_ui_toggle": "ui/ui_template_toggles.json", + "switch_toggle": "ui/ui_template_toggles.json", + "light_text_toggle_collection": "ui/ui_template_toggles.json", + "light_image_toggle_collection": "ui/ui_template_toggles.json", + "dark_text_toggle_collection": "ui/ui_template_toggles.json", + "dark_image_toggle_collection": "ui/ui_template_toggles.json", + "dark_ui_toggle_collection": "ui/ui_template_toggles.json", + "light_ui_toggle_collection": "ui/ui_template_toggles.json", + "switch_toggle_collection": "ui/ui_template_toggles.json", + "toggle_state_panel": "ui/ui_template_toggles.json", + "toggle_state_panel/button_panel": "ui/ui_template_toggles.json", + "toggle_unchecked": "ui/ui_template_toggles.json", + "toggle_checked": "ui/ui_template_toggles.json", + "toggle_unchecked_hover": "ui/ui_template_toggles.json", + "toggle_checked_hover": "ui/ui_template_toggles.json", + "toggle_locked": "ui/ui_template_toggles.json", + "toggle_unchecked_locked": "ui/ui_template_toggles.json", + "toggle_checked_locked": "ui/ui_template_toggles.json", + "toggle_unchecked_hover_with_chevron": "ui/ui_template_toggles.json", + "toggle_checked_hover_with_chevron": "ui/ui_template_toggles.json", + "toggle_image": "ui/ui_template_toggles.json", + "toggle_image/image": "ui/ui_template_toggles.json", + "radio_off_icon": "ui/ui_template_toggles.json", + "radio_off_hover_icon": "ui/ui_template_toggles.json", + "radio_on_icon": "ui/ui_template_toggles.json", + "radio_on_hover_icon": "ui/ui_template_toggles.json", + "check_box_button_toggle_image": "ui/ui_template_toggles.json", + "checkbox_button_checked_state": "ui/ui_template_toggles.json", + "checkbox_button_unchecked_state": "ui/ui_template_toggles.json", + "checkbox_button_checked_hover_state": "ui/ui_template_toggles.json", + "checkbox_button_unchecked_hover_state": "ui/ui_template_toggles.json", + "checkbox_button_checked_locked_state": "ui/ui_template_toggles.json", + "checkbox_button_unchecked_locked_state": "ui/ui_template_toggles.json", + "toggle_checkbox_unchecked": "ui/ui_template_toggles.json", + "toggle_checkbox_checked": "ui/ui_template_toggles.json", + "toggle_checkbox_unchecked_hover": "ui/ui_template_toggles.json", + "toggle_checkbox_checked_hover": "ui/ui_template_toggles.json", + "toggle_checkbox_unchecked_locked": "ui/ui_template_toggles.json", + "toggle_checkbox_checked_locked": "ui/ui_template_toggles.json", + "check_box_button_ui_panel": "ui/ui_template_toggles.json", + "check_box_button_ui_panel/toggle_image": "ui/ui_template_toggles.json", + "check_box_button_ui_panel/toggle_image/button_content": "ui/ui_template_toggles.json", + "check_box_button_ui_panel/toggle_image/border": "ui/ui_template_toggles.json", + "check_box_button_ui_panel/toggle_image/checkbox_image": "ui/ui_template_toggles.json", + "check_box_button_ui_panel/toggle_image/checkbox_image/image": "ui/ui_template_toggles.json", + "button_and_checkbox_template": "ui/ui_template_toggles.json", + "button_with_checkbox_toggle": "ui/ui_template_toggles.json", + }, + "friendsbutton": { + "friendsdrawer_animated_icon": "ui/ui_friendsbutton.json", + "profilepicture": "ui/ui_friendsbutton.json", + "persona_icon_with_border": "ui/ui_friendsbutton.json", + "persona_icon_with_border/profile_icon": "ui/ui_friendsbutton.json", + "persona_icon_with_border/border_black": "ui/ui_friendsbutton.json", + "friendsdrawer_persona_icons": "ui/ui_friendsbutton.json", + "social_button_stackpanel": "ui/ui_friendsbutton.json", + "social_button_stackpanel/image_panel": "ui/ui_friendsbutton.json", + "social_button_stackpanel/image_panel/social_icon": "ui/ui_friendsbutton.json", + "social_button_hover_stackpanel": "ui/ui_friendsbutton.json", + "self_persona_stackpanel": "ui/ui_friendsbutton.json", + "self_persona_stackpanel/self_icon": "ui/ui_friendsbutton.json", + "single_friend_persona_stackpanel": "ui/ui_friendsbutton.json", + "single_friend_persona_stackpanel/self_icon": "ui/ui_friendsbutton.json", + "single_friend_persona_stackpanel/friend_one_icon": "ui/ui_friendsbutton.json", + "many_friend_persona_stackpanel": "ui/ui_friendsbutton.json", + "many_friend_persona_stackpanel/self_icon": "ui/ui_friendsbutton.json", + "many_friend_persona_stackpanel/extra_friends_text_panel": "ui/ui_friendsbutton.json", + "many_friend_persona_stackpanel/extra_friends_text_panel/background": "ui/ui_friendsbutton.json", + "many_friend_persona_stackpanel/extra_friends_text_panel/extra_members_label": "ui/ui_friendsbutton.json", + "many_friend_persona_stackpanel/extra_friends_text_panel/border_black": "ui/ui_friendsbutton.json", + "button": "ui/ui_friendsbutton.json", + "button/default": "ui/ui_friendsbutton.json", + "button/hover": "ui/ui_friendsbutton.json", + "button/pressed": "ui/ui_friendsbutton.json", + "button/locked": "ui/ui_friendsbutton.json", + "social_factory_stackpanel_default": "ui/ui_friendsbutton.json", + "social_factory_stackpanel_hovered": "ui/ui_friendsbutton.json", + "friendsdrawer_button_content": "ui/ui_friendsbutton.json", + "friendsdrawer_button_content/social_factory_stackpanel": "ui/ui_friendsbutton.json", + "friendsdrawer_button_content/padding_middle": "ui/ui_friendsbutton.json", + "friendsdrawer_button_content/vertically_centered_text": "ui/ui_friendsbutton.json", + "friendsdrawer_button_content/vertically_centered_text/top_padding": "ui/ui_friendsbutton.json", + "friendsdrawer_button_content/vertically_centered_text/profile_button_label": "ui/ui_friendsbutton.json", + "friendsdrawer_button_content/padding_right": "ui/ui_friendsbutton.json", + "friendsdrawer_hover_button_content": "ui/ui_friendsbutton.json", + "friends_drawer_popup": "ui/ui_friendsbutton.json", + }, + "iconbutton": { + "iconbutton_animated_icon": "ui/ui_iconbutton.json", + "button": "ui/ui_iconbutton.json", + "iconbutton_button_content": "ui/ui_iconbutton.json", + "iconbutton_button_content/icon_wrapper": "ui/ui_iconbutton.json", + "iconbutton_button_content/icon_wrapper/icon_with_border": "ui/ui_iconbutton.json", + "iconbutton_button_content/icon_wrapper/icon_with_border/iconbutton_animated_icon": "ui/ui_iconbutton.json", + "iconbutton_button_content/icon_wrapper/icon_with_border/border_black": "ui/ui_iconbutton.json", + "iconbutton_button_content/padding_middle": "ui/ui_iconbutton.json", + "iconbutton_button_content/vertically_centered_text": "ui/ui_iconbutton.json", + "iconbutton_button_content/vertically_centered_text/top_padding": "ui/ui_iconbutton.json", + "iconbutton_button_content/vertically_centered_text/profile_button_label": "ui/ui_iconbutton.json", + }, + "update_dimensions": { + "update_dimensions_update_and_play_button": "ui/update_dimensions.json", + "update_dimensions_description": "ui/update_dimensions.json", + "update_dimensions_label_panel": "ui/update_dimensions.json", + "make_backup_checkbox": "ui/update_dimensions.json", + "make_backup_checkbox/header_description_stack_panel": "ui/update_dimensions.json", + "make_backup_checkbox/header_description_stack_panel/checkbox_visuals": "ui/update_dimensions.json", + "make_backup_checkbox/header_description_stack_panel/buffer_panel": "ui/update_dimensions.json", + "make_backup_checkbox/header_description_stack_panel/buffer_panel/label": "ui/update_dimensions.json", + "make_backup_checkbox/header_description_stack_panel/another_panel": "ui/update_dimensions.json", + "world_upgrade": "ui/update_dimensions.json", + "update_dimensions_dialog": "ui/update_dimensions.json", + "update_dimensions_dialog/common_panel": "ui/update_dimensions.json", + "update_dimensions_dialog/title_label": "ui/update_dimensions.json", + "update_dimensions_dialog/panel_indent": "ui/update_dimensions.json", + "update_dimensions_dialog/panel_indent/inside_header_panel": "ui/update_dimensions.json", + "update_dimensions_dialog/top_button_panel": "ui/update_dimensions.json", + "update_dimensions_dialog/bottom_button_panel": "ui/update_dimensions.json", + "update_dimensions_dialog/world_upgrade_image": "ui/update_dimensions.json", + "gamepad_helpers": "ui/update_dimensions.json", + "gamepad_helpers/gamepad_helper_a": "ui/update_dimensions.json", + "update_dimensions_screen": "ui/update_dimensions.json", + "update_dimensions_screen_content": "ui/update_dimensions.json", + "update_dimensions_screen_content/update_dimensions_dialog": "ui/update_dimensions.json", + "update_dimensions_screen_content/gamepad_helpers": "ui/update_dimensions.json", + }, + "update_version": { + "update_version_screen": "ui/update_version.json", + "update_version_popup": "ui/update_version.json", + "background": "ui/update_version.json", + "update_version_content": "ui/update_version.json", + "update_version_content/top_of_version_panel": "ui/update_version.json", + "update_version_content/spacer_1px": "ui/update_version.json", + "update_version_content/update_body_text": "ui/update_version.json", + "update_version_content/spacer_1px_2": "ui/update_version.json", + "patch_notes_panel": "ui/update_version.json", + "patch_notes_panel/patch_notes_text": "ui/update_version.json", + "picture_and_patch_notes": "ui/update_version.json", + "picture_and_patch_notes/patch_notes_image_outline": "ui/update_version.json", + "picture_and_patch_notes/patch_notes_image_outline/patch_notes_image": "ui/update_version.json", + "picture_and_patch_notes/patch_notes_panel": "ui/update_version.json", + "patch_notes": "ui/update_version.json", + "patch_notes/patch_notes_text": "ui/update_version.json", + "update_body_text": "ui/update_version.json", + "update_button": "ui/update_version.json", + }, + "world_recovery": { + "world_recovery_screen": "ui/world_recovery_screen.json", + "world_recovery_screen_content": "ui/world_recovery_screen.json", + "world_recovery_screen_content/dialog": "ui/world_recovery_screen.json", + "description_panel": "ui/world_recovery_screen.json", + "scrolling_panel": "ui/world_recovery_screen.json", + "description_label": "ui/world_recovery_screen.json", + "button_panel": "ui/world_recovery_screen.json", + "background": "ui/world_recovery_screen.json", + }, + "world_templates": { + "horizontal_padding": "ui/world_templates_screen.json", + "world_icon": "ui/world_templates_screen.json", + "realms_icon": "ui/world_templates_screen.json", + "label_background": "ui/world_templates_screen.json", + "lock_icon": "ui/world_templates_screen.json", + "realms_plus_icon": "ui/world_templates_screen.json", + "new_world_toggle": "ui/world_templates_screen.json", + "new_realm_toggle": "ui/world_templates_screen.json", + "world_button_content": "ui/world_templates_screen.json", + "world_button_content/horizontal_padding_0": "ui/world_templates_screen.json", + "world_button_content/icon_panel": "ui/world_templates_screen.json", + "world_button_content/horizontal_padding_1": "ui/world_templates_screen.json", + "world_button_content/world_button_label_panel": "ui/world_templates_screen.json", + "world_button_content/world_button_label_panel/world_button_label": "ui/world_templates_screen.json", + "world_button_content/horizontal_padding_2": "ui/world_templates_screen.json", + "world_button_label": "ui/world_templates_screen.json", + "common_button_template": "ui/world_templates_screen.json", + "generate_random": "ui/world_templates_screen.json", + "help_button": "ui/world_templates_screen.json", + "grid_button_content_template": "ui/world_templates_screen.json", + "grid_button_content_template/content": "ui/world_templates_screen.json", + "label_content_template": "ui/world_templates_screen.json", + "label_content_template/label_panel": "ui/world_templates_screen.json", + "label_content_template/label_panel/label_panel_layout": "ui/world_templates_screen.json", + "label_content_template/label_panel/label_panel_layout/label": "ui/world_templates_screen.json", + "my_templates_label": "ui/world_templates_screen.json", + "realms_plus_templates_label": "ui/world_templates_screen.json", + "custom_templates_label": "ui/world_templates_screen.json", + "generate_random_button": "ui/world_templates_screen.json", + "realms_templates_info": "ui/world_templates_screen.json", + "realms_templates_info/info_label": "ui/world_templates_screen.json", + "world_list_text": "ui/world_templates_screen.json", + "world_template_screenshot": "ui/world_templates_screen.json", + "world_template_screenshot/picture": "ui/world_templates_screen.json", + "world_template_name": "ui/world_templates_screen.json", + "world_template_description": "ui/world_templates_screen.json", + "world_template_version": "ui/world_templates_screen.json", + "template_download_text": "ui/world_templates_screen.json", + "world_template_text_panel": "ui/world_templates_screen.json", + "world_template_text_panel/text_indent": "ui/world_templates_screen.json", + "world_template_text_panel/text_indent/top_side": "ui/world_templates_screen.json", + "world_template_text_panel/text_indent/top_side/world_template_name": "ui/world_templates_screen.json", + "world_template_text_panel/text_indent/top_side/download_text_label": "ui/world_templates_screen.json", + "world_template_text_panel/text_indent/bottom_side": "ui/world_templates_screen.json", + "world_template_text_panel/text_indent/bottom_side/csb_icon": "ui/world_templates_screen.json", + "world_template_text_panel/text_indent/bottom_side/pad": "ui/world_templates_screen.json", + "world_template_text_panel/text_indent/bottom_side/world_template_description": "ui/world_templates_screen.json", + "world_template_text_panel/text_indent/bottom_side/world_template_version": "ui/world_templates_screen.json", + "csb_banner": "ui/world_templates_screen.json", + "csb_banner/banner": "ui/world_templates_screen.json", + "world_template_content_panel": "ui/world_templates_screen.json", + "world_template_content_panel/world_template_screenshot": "ui/world_templates_screen.json", + "world_template_content_panel/world_template_text_panel": "ui/world_templates_screen.json", + "world_template_content_panel/lock_panel": "ui/world_templates_screen.json", + "world_template_content_panel/lock_panel/lock_icon": "ui/world_templates_screen.json", + "world_template_item_button": "ui/world_templates_screen.json", + "realms_plus_template_item_button": "ui/world_templates_screen.json", + "world_template_item": "ui/world_templates_screen.json", + "world_template_item/world_template_item_button": "ui/world_templates_screen.json", + "realms_plus_template_item": "ui/world_templates_screen.json", + "realms_plus_template_item/realms_plus_template_item_button": "ui/world_templates_screen.json", + "world_template_item_grid": "ui/world_templates_screen.json", + "see_more_templates_button": "ui/world_templates_screen.json", + "suggested_see_more_button": "ui/world_templates_screen.json", + "realms_plus_see_more_button": "ui/world_templates_screen.json", + "world_template_inventory_see_more_button": "ui/world_templates_screen.json", + "custom_world_template_see_more_button": "ui/world_templates_screen.json", + "world_template_section_factory": "ui/world_templates_screen.json", + "suggested_template_section_factory": "ui/world_templates_screen.json", + "realms_plus_template_section_factory": "ui/world_templates_screen.json", + "world_template_inventory_section_factory": "ui/world_templates_screen.json", + "custom_world_template_section_factory": "ui/world_templates_screen.json", + "custom_world_template_item_grid": "ui/world_templates_screen.json", + "no_owned_templates_text_label": "ui/world_templates_screen.json", + "no_owned_templates_text": "ui/world_templates_screen.json", + "no_template_content_owned": "ui/world_templates_screen.json", + "no_template_content_owned/no_template_content_owned_text_panel": "ui/world_templates_screen.json", + "common_scrolling_panel": "ui/world_templates_screen.json", + "common_content": "ui/world_templates_screen.json", + "scrolling_offsets": "ui/world_templates_screen.json", + "template_scroll_content": "ui/world_templates_screen.json", + "template_scroll_content/scrolling_panel": "ui/world_templates_screen.json", + "common_scroll_pane": "ui/world_templates_screen.json", + "template_scroll_panel": "ui/world_templates_screen.json", + "template_scroll_panel/world_template_screen_content_stack_panel": "ui/world_templates_screen.json", + "world_list_grids_stack": "ui/world_templates_screen.json", + "world_list_grids_stack/template_list_panel": "ui/world_templates_screen.json", + "world_list_grids_stack/template_list_panel/my_templates_label_panel": "ui/world_templates_screen.json", + "world_list_grids_stack/template_list_panel/world_template_inventory_section_factory": "ui/world_templates_screen.json", + "world_list_grids_stack/template_list_panel/template_bottom_padding": "ui/world_templates_screen.json", + "world_list_grids_stack/store_panel": "ui/world_templates_screen.json", + "world_list_grids_stack/store_panel/loading_panel": "ui/world_templates_screen.json", + "world_list_grids_stack/store_panel/store_grids": "ui/world_templates_screen.json", + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel": "ui/world_templates_screen.json", + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_label_panel": "ui/world_templates_screen.json", + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_section_factory": "ui/world_templates_screen.json", + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_bottom_padding": "ui/world_templates_screen.json", + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel": "ui/world_templates_screen.json", + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_content_offers_title_label": "ui/world_templates_screen.json", + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_section_factory": "ui/world_templates_screen.json", + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_bottom_padding": "ui/world_templates_screen.json", + "world_list_grids_stack/custom_template_panel": "ui/world_templates_screen.json", + "world_list_grids_stack/custom_template_panel/custom_templates_label_panel": "ui/world_templates_screen.json", + "world_list_grids_stack/custom_template_panel/custom_world_template_section_factory": "ui/world_templates_screen.json", + "world_list_grids_stack/custom_template_panel/custom_template_list_bottom_padding": "ui/world_templates_screen.json", + "world_list_grids_stack/realms_info_panel": "ui/world_templates_screen.json", + "world_list_grids_stack/realms_info_panel/padding": "ui/world_templates_screen.json", + "world_list_grids_stack/realms_info_panel/realms_templates_info": "ui/world_templates_screen.json", + "world_list_grids_stack/realms_info_panel/open_uri_button": "ui/world_templates_screen.json", + "world_list_grid_content": "ui/world_templates_screen.json", + "world_list_grid_content/world_list_grids_stack": "ui/world_templates_screen.json", + "world_template_screen_content_stack_panel": "ui/world_templates_screen.json", + "world_template_screen_content_stack_panel/padding_0": "ui/world_templates_screen.json", + "world_template_screen_content_stack_panel/crossplatform_disabled_panel": "ui/world_templates_screen.json", + "world_template_screen_content_stack_panel/crossplatform_disabled_panel/disable_text": "ui/world_templates_screen.json", + "world_template_screen_content_stack_panel/crossplatform_disable_spacer": "ui/world_templates_screen.json", + "world_template_screen_content_stack_panel/generate_random_panel": "ui/world_templates_screen.json", + "world_template_screen_content_stack_panel/generate_random_button_bottom_padding": "ui/world_templates_screen.json", + "world_template_screen_content_stack_panel/world_list_grid_content": "ui/world_templates_screen.json", + "open_account_setting_button": "ui/world_templates_screen.json", + "world_templates_screen": "ui/world_templates_screen.json", + "world_templates_picker_content": "ui/world_templates_screen.json", + "world_templates_picker_content/background": "ui/world_templates_screen.json", + }, + "xbl_console_qr_signin": { + "banner_fill": "ui/xbl_console_qr_signin.json", + "main_panel_qr": "ui/xbl_console_qr_signin.json", + "main_panel_qr/left_panel": "ui/xbl_console_qr_signin.json", + "main_panel_qr/divider": "ui/xbl_console_qr_signin.json", + "main_panel_qr/right_panel": "ui/xbl_console_qr_signin.json", + "main_panel_qr/right_panel/scrolling_panel_sizer": "ui/xbl_console_qr_signin.json", + "main_panel_qr/right_panel/scrolling_panel_sizer/right_scroll_panel": "ui/xbl_console_qr_signin.json", + "common_scrolling_panel": "ui/xbl_console_qr_signin.json", + "gamepad_helpers": "ui/xbl_console_qr_signin.json", + "gamepad_helpers/gamepad_helper_b": "ui/xbl_console_qr_signin.json", + "xbl_console_qr_signin": "ui/xbl_console_qr_signin.json", + "xbl_console_qr_signin_screen_content": "ui/xbl_console_qr_signin.json", + "xbl_console_qr_signin_screen_content/gamepad_helpers": "ui/xbl_console_qr_signin.json", + "xbl_console_qr_signin_screen_content/dialog": "ui/xbl_console_qr_signin.json", + "dialog": "ui/xbl_console_qr_signin.json", + "scroll_content_focus_border": "ui/xbl_console_qr_signin.json", + "left_panel": "ui/xbl_console_qr_signin.json", + "left_panel/left_header": "ui/xbl_console_qr_signin.json", + "left_panel/padding_1": "ui/xbl_console_qr_signin.json", + "left_panel/left_body": "ui/xbl_console_qr_signin.json", + "left_panel/padding_2": "ui/xbl_console_qr_signin.json", + "left_panel/qr_panel": "ui/xbl_console_qr_signin.json", + "left_panel/qr_panel/qr_border": "ui/xbl_console_qr_signin.json", + "left_panel/qr_panel/qr_code": "ui/xbl_console_qr_signin.json", + "left_panel/qr_panel/bee_overlay": "ui/xbl_console_qr_signin.json", + "input_panel_wrapper": "ui/xbl_console_qr_signin.json", + "input_panel_wrapper/r_scroll_panel": "ui/xbl_console_qr_signin.json", + "right_scroll_panel": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/right_header": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/padding_1": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/website_message_label": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/padding_2": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/wrapper_panel_1": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/wrapper_panel_1/banner_1": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/wrapper_panel_1/banner_1/url_label": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/padding_3": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/code_message_label": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/padding_4": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/wrapper_panel_2": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/wrapper_panel_2/banner_2": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/wrapper_panel_2/banner_2/code_label": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/padding_5": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/code_message_body1": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/padding_6": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/code_message_body2": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/padding_7": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/warning_messages": "ui/xbl_console_qr_signin.json", + "ps4_warning_message_panel": "ui/xbl_console_qr_signin.json", + "ps4_warning_message_panel/sign_in_account_message": "ui/xbl_console_qr_signin.json", + "ps4_warning_message_panel/padding_1": "ui/xbl_console_qr_signin.json", + "ps4_warning_message_panel/permanent_linking_message": "ui/xbl_console_qr_signin.json", + }, + "xbl_console_signin": { + "banner_fill": "ui/xbl_console_signin.json", + "main_panel": "ui/xbl_console_signin.json", + "main_panel/padding_0": "ui/xbl_console_signin.json", + "main_panel/message_label_panel": "ui/xbl_console_signin.json", + "main_panel/message_label_panel/message_label": "ui/xbl_console_signin.json", + "main_panel/padding_1": "ui/xbl_console_signin.json", + "main_panel/website_message_label": "ui/xbl_console_signin.json", + "main_panel/banner_1": "ui/xbl_console_signin.json", + "main_panel/banner_1/url_label": "ui/xbl_console_signin.json", + "main_panel/padding_2": "ui/xbl_console_signin.json", + "main_panel/code_message_label": "ui/xbl_console_signin.json", + "main_panel/banner_2": "ui/xbl_console_signin.json", + "main_panel/banner_2/code_label": "ui/xbl_console_signin.json", + "gamepad_helpers": "ui/xbl_console_signin.json", + "gamepad_helpers/gamepad_helper_b": "ui/xbl_console_signin.json", + "xbl_console_signin": "ui/xbl_console_signin.json", + "xbl_console_signin_screen_content": "ui/xbl_console_signin.json", + "xbl_console_signin_screen_content/gamepad_helpers": "ui/xbl_console_signin.json", + "xbl_console_signin_screen_content/dialog": "ui/xbl_console_signin.json", + "dialog": "ui/xbl_console_signin.json", + }, + "xbl_console_signin_succeeded": { + "banner_fill": "ui/xbl_console_signin_succeeded.json", + "gamer_score_icon": "ui/xbl_console_signin_succeeded.json", + "profile_pic": "ui/xbl_console_signin_succeeded.json", + "gamertag_label": "ui/xbl_console_signin_succeeded.json", + "gamer_score_label": "ui/xbl_console_signin_succeeded.json", + "gamer_score_panel": "ui/xbl_console_signin_succeeded.json", + "gamer_score_panel/gamer_score_icon": "ui/xbl_console_signin_succeeded.json", + "gamer_score_panel/padding_0": "ui/xbl_console_signin_succeeded.json", + "gamer_score_panel/gamer_score_panel": "ui/xbl_console_signin_succeeded.json", + "gamer_score_panel/gamer_score_panel/gamer_score": "ui/xbl_console_signin_succeeded.json", + "button_panel": "ui/xbl_console_signin_succeeded.json", + "button_panel/play": "ui/xbl_console_signin_succeeded.json", + "text_panel": "ui/xbl_console_signin_succeeded.json", + "text_panel/new_account_text": "ui/xbl_console_signin_succeeded.json", + "third_party_platform_legal_text": "ui/xbl_console_signin_succeeded.json", + "new_account_text_panel": "ui/xbl_console_signin_succeeded.json", + "gamer_profile_panel": "ui/xbl_console_signin_succeeded.json", + "gamer_profile_panel/picture_panel": "ui/xbl_console_signin_succeeded.json", + "gamer_profile_panel/picture_panel/banner": "ui/xbl_console_signin_succeeded.json", + "gamer_profile_panel/picture_panel/banner/profile_pic": "ui/xbl_console_signin_succeeded.json", + "gamer_profile_panel/padding_1": "ui/xbl_console_signin_succeeded.json", + "gamer_profile_panel/info_panel": "ui/xbl_console_signin_succeeded.json", + "gamer_profile_panel/info_panel/profile_info_panel": "ui/xbl_console_signin_succeeded.json", + "gamer_profile_panel/info_panel/profile_info_panel/gamertag_label": "ui/xbl_console_signin_succeeded.json", + "gamer_profile_panel/info_panel/profile_info_panel/padding_0": "ui/xbl_console_signin_succeeded.json", + "gamer_profile_panel/info_panel/profile_info_panel/gamer_score_panel": "ui/xbl_console_signin_succeeded.json", + "main_panel": "ui/xbl_console_signin_succeeded.json", + "main_panel/profile": "ui/xbl_console_signin_succeeded.json", + "main_panel/padding_0": "ui/xbl_console_signin_succeeded.json", + "main_panel/third_party_legal_text_panel": "ui/xbl_console_signin_succeeded.json", + "main_panel/padding_1": "ui/xbl_console_signin_succeeded.json", + "main_panel/new_account_text_panel": "ui/xbl_console_signin_succeeded.json", + "main_panel/padding_2": "ui/xbl_console_signin_succeeded.json", + "main_panel/button_panel": "ui/xbl_console_signin_succeeded.json", + "xbl_console_signin_succeeded": "ui/xbl_console_signin_succeeded.json", + "xbl_console_signin_succeeded_screen_content": "ui/xbl_console_signin_succeeded.json", + "xbl_console_signin_succeeded_screen_content/dialog": "ui/xbl_console_signin_succeeded.json", + "dialog": "ui/xbl_console_signin_succeeded.json", + }, + "xbl_immediate_signin": { + "xbl_immediate_signin_screen": "ui/xbl_immediate_signin.json", + "xbl_immediate_signin_screen_content": "ui/xbl_immediate_signin.json", + "xbl_immediate_signin_screen_content/root_panel": "ui/xbl_immediate_signin.json", + }, + "win10_trial_conversion": { + "padding_horizontal": "ui/win10_trial_conversion_screen.json", + "padding_vertical": "ui/win10_trial_conversion_screen.json", + "padding_vertical_3": "ui/win10_trial_conversion_screen.json", + "background_image": "ui/win10_trial_conversion_screen.json", + "title_image": "ui/win10_trial_conversion_screen.json", + "focus_border": "ui/win10_trial_conversion_screen.json", + "pack_image": "ui/win10_trial_conversion_screen.json", + "pack_image_panel": "ui/win10_trial_conversion_screen.json", + "pack_image_panel/pack_image": "ui/win10_trial_conversion_screen.json", + "title_image_border": "ui/win10_trial_conversion_screen.json", + "title_image_border/image": "ui/win10_trial_conversion_screen.json", + "pack_image_with_border": "ui/win10_trial_conversion_screen.json", + "pack_image_with_border/image": "ui/win10_trial_conversion_screen.json", + "label_panel": "ui/win10_trial_conversion_screen.json", + "button_panel": "ui/win10_trial_conversion_screen.json", + "button_panel/padding_5": "ui/win10_trial_conversion_screen.json", + "button_panel/buy_now_button": "ui/win10_trial_conversion_screen.json", + "button_panel/padding_6": "ui/win10_trial_conversion_screen.json", + "buy_now_button": "ui/win10_trial_conversion_screen.json", + "buy_now_label": "ui/win10_trial_conversion_screen.json", + "buy_now_label/button_label": "ui/win10_trial_conversion_screen.json", + "is_focused": "ui/win10_trial_conversion_screen.json", + "filler_panel": "ui/win10_trial_conversion_screen.json", + "focus_border_button": "ui/win10_trial_conversion_screen.json", + "focus_border_button/default": "ui/win10_trial_conversion_screen.json", + "focus_border_button/hover": "ui/win10_trial_conversion_screen.json", + "focus_border_button/pressed": "ui/win10_trial_conversion_screen.json", + "grid_item": "ui/win10_trial_conversion_screen.json", + "grid_item/padding_1": "ui/win10_trial_conversion_screen.json", + "grid_item/pack_image_pane": "ui/win10_trial_conversion_screen.json", + "grid_item/padding_2": "ui/win10_trial_conversion_screen.json", + "grid_item/pack_panel": "ui/win10_trial_conversion_screen.json", + "grid_item/padding_3": "ui/win10_trial_conversion_screen.json", + "grid_item_vertical": "ui/win10_trial_conversion_screen.json", + "grid_item_vertical/grid_item_horizontal": "ui/win10_trial_conversion_screen.json", + "grid_item_vertical/pack_grid": "ui/win10_trial_conversion_screen.json", + "pack_panel": "ui/win10_trial_conversion_screen.json", + "pack_panel/packtitle": "ui/win10_trial_conversion_screen.json", + "pack_panel/padding_2": "ui/win10_trial_conversion_screen.json", + "pack_panel/packdesc": "ui/win10_trial_conversion_screen.json", + "collection_main_panel": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/padding_1": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/title_panel": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/padding_2": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/title_image_panel": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/title_image_panel/border_image": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/padding_3": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/offer_panel": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/offer_panel/padding_1": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/offer_panel/label_panel": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/offer_panel/label_panel/offer_label": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/offer_panel/padding_2": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/padding_4": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/button_panel": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/padding_5": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/include_panel": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/include_panel/padding_1": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/include_panel/include_label": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/padding_6": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/pack_list_grid": "ui/win10_trial_conversion_screen.json", + "background_image_with_border": "ui/win10_trial_conversion_screen.json", + "background_image_with_border/main_panel_no_buttons": "ui/win10_trial_conversion_screen.json", + "win10_trial_conversion_main_panel": "ui/win10_trial_conversion_screen.json", + "win10_trial_conversion_main_panel/scrolling_panel": "ui/win10_trial_conversion_screen.json", + "vertical_main_panel": "ui/win10_trial_conversion_screen.json", + "vertical_main_panel/padding_1": "ui/win10_trial_conversion_screen.json", + "vertical_main_panel/panel": "ui/win10_trial_conversion_screen.json", + "vertical_main_panel/padding_2": "ui/win10_trial_conversion_screen.json", + "horizontal_main_panel": "ui/win10_trial_conversion_screen.json", + "horizontal_main_panel/padding_1": "ui/win10_trial_conversion_screen.json", + "horizontal_main_panel/starter_collection": "ui/win10_trial_conversion_screen.json", + "horizontal_main_panel/padding_2": "ui/win10_trial_conversion_screen.json", + "horizontal_main_panel/master_collection": "ui/win10_trial_conversion_screen.json", + "win10_trial_conversion_screen": "ui/win10_trial_conversion_screen.json", + "win10_trial_conversion_panel": "ui/win10_trial_conversion_screen.json", + }, +} \ No newline at end of file diff --git a/test/app.ts b/test/app.ts index 750edc5..618aab1 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1 +1,7 @@ -import { Modify } from ".." +import { Extends, GlobalVariables, Modify } from ".." + +const vanilla = Modify("anvil_pocket", "slots_panel").setProperties({ + ignored: true, +}) + +console.log(vanilla.path) diff --git a/tsconfig.json b/tsconfig.json index a459abe..787cc74 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,10 +3,8 @@ "target": "esnext", "module": "nodenext", "moduleResolution": "nodenext", - "outDir": "dist", "declaration": true, - "sourceMap": false, "strict": true, "esModuleInterop": true, @@ -14,5 +12,5 @@ "tsBuildInfoFile": ".tsbuildinfo" }, "include": ["src/**/*"], - "exclude": ["node_modules", "dist"] + "exclude": ["node_modules"] } From ac3802e8fbed0dd9158c1692e7ff176f65d4455e Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sun, 18 Jan 2026 12:39:40 +0700 Subject: [PATCH 010/245] idk --- package.json | 3 +- scripts/{write => }/enum.ts | 4 +- scripts/items.ts | 29 + src/compilers/Memory.ts | 42 +- src/compilers/RunEnd.ts | 6 +- src/components/UI.ts | 7 +- src/components/Utils.ts | 10 +- src/index.ts | 3 +- src/types/enums/Items.ts | 1488 ++++++++++++++++++++++++ src/types/properties/element/Cycler.ts | 1 + test/app.ts | 8 +- 11 files changed, 1542 insertions(+), 59 deletions(-) rename scripts/{write => }/enum.ts (96%) create mode 100644 scripts/items.ts create mode 100644 src/types/enums/Items.ts diff --git a/package.json b/package.json index 4cdc0fe..f23656a 100644 --- a/package.json +++ b/package.json @@ -25,8 +25,9 @@ "test": "bun test/app.ts", "test:watch": "bun --watch test/app.ts", "prefetch": "bun scripts/prefetch", - "gen:enums": "bun scripts/write/enum", "vanilla:defs": "bun scripts/vanilladefs", + "gen:enums": "bun scripts/enum", + "gen:items": "bun scripts/items", "gen:autocomplete": "bun scripts/autocomplete-build" }, "devDependencies": { diff --git a/scripts/write/enum.ts b/scripts/enum.ts similarity index 96% rename from scripts/write/enum.ts rename to scripts/enum.ts index 33a5ef5..8047dce 100644 --- a/scripts/write/enum.ts +++ b/scripts/enum.ts @@ -1,6 +1,6 @@ -import { PFFS } from "../components" +import { PFFS } from "./components" import fs from "fs/promises" -import "../custom" +import "./custom" const schema = PFFS.readFileJSON("ui.schema.json").definitions diff --git a/scripts/items.ts b/scripts/items.ts new file mode 100644 index 0000000..9efe8a0 --- /dev/null +++ b/scripts/items.ts @@ -0,0 +1,29 @@ +import fs from "fs" + +interface Item { + id: number + id_aux: number + name: string +} + +interface ItemAPI { + version: string + length: number + items: Item[] +} + +async function main() { + const itemlist: string[] = ["export enum ItemAuxID {"] + + const { items }: ItemAPI = await fetch("https://www.asakiyuki.com/api/minecraft/items/id").then(v => v.json()) + for (const { name: fullname, id, id_aux } of items) { + const [namespace, name] = fullname.split(":") + const enumName = name.toUpperCase() + itemlist.push(` ${enumName} = ${id_aux},`) + } + + itemlist.push("}") + fs.writeFileSync("src/types/enums/Items.ts", itemlist.join("\n")) +} + +main() diff --git a/src/compilers/Memory.ts b/src/compilers/Memory.ts index 72354dc..fcfc5c2 100644 --- a/src/compilers/Memory.ts +++ b/src/compilers/Memory.ts @@ -1,41 +1,3 @@ -import { UI } from "../components/UI.js" -import { Renderer } from "../types/enums/Renderer.js" -import { Type } from "../types/enums/Type.js" +import { Class } from "../components/Class.js" -export const Memory = { - cache: new Map> }>(), - - register_ui(path: string, element: UI) { - const { elements: saver, namespace } = this.get_file(path, element.namespace!) - - if (saver.get(element.name!)) { - console.error(`Element ${element.name} already exists in ${path}`) - process.exit(1) - } - - saver.set(element.name!, element) - return namespace - }, - - gen_ui_file_contents(namespace: string, elements: Map>) { - return JSON.stringify( - { - namespace, - ...elements.toJSON(), - }, - null, - 4 - ) - }, - - get_file(path: string, namespace: string) { - let cached = this.cache.get(path) - - if (!cached) { - cached = { namespace, elements: new Map>() } - this.cache.set(path, cached) - } - - return cached - }, -} +export class Memory extends Class {} diff --git a/src/compilers/RunEnd.ts b/src/compilers/RunEnd.ts index 4acb27f..69ca4fd 100644 --- a/src/compilers/RunEnd.ts +++ b/src/compilers/RunEnd.ts @@ -1,7 +1,3 @@ import { Memory } from "./Memory.js" -process.on("beforeExit", () => { - Memory.cache.forEach(({ elements, namespace }) => { - const contents = Memory.gen_ui_file_contents(namespace, elements) - }) -}) +process.on("beforeExit", () => {}) diff --git a/src/components/UI.ts b/src/components/UI.ts index 3db4668..d4d8aaa 100644 --- a/src/components/UI.ts +++ b/src/components/UI.ts @@ -3,7 +3,6 @@ import { Memory } from "../compilers/Memory.js" import { Renderer } from "../types/enums/Renderer.js" import { Type } from "../types/enums/Type.js" import { Properties } from "../types/properties/components.js" -import { Namespace, VanillaType } from "../types/vanilla/intellisense.js" import { Class } from "./Class.js" import { RandomString } from "./Utils.js" @@ -16,7 +15,7 @@ export class UI extends Class namespace: string extend?: UI - canExtend: boolean + extendable: boolean controls = new Map, Properties]>() properties: Properties = {} @@ -40,9 +39,7 @@ export class UI extends Class if (!path) this.path = `@/${this.namespace}` else this.path = path - this.canExtend = this.name.search("/") === -1 - - Memory.register_ui(this.path, this) + this.extendable = this.name.search("/") === -1 } setProperties(properties: Properties) { diff --git a/src/components/Utils.ts b/src/components/Utils.ts index ff7467d..7f70ac8 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -26,6 +26,7 @@ import { Slider, SliderBox, } from "../types/properties/components.js" +import { ItemAuxID } from "../types/enums/Items.js" const CHARS = "0123456789abcdefghijklmnopqrstuvwxyz" @@ -79,6 +80,11 @@ export function RandomBindingString(length: number, base: number = 32): Binding return `#${RandomString(length, base)}` } +export function GetItemByAuxID(auxID: number) { + const item = ItemAuxID[auxID] + if (item) return `minecraft:${item.toLowerCase()}` +} + // Quick Elements export function Panel(properties?: Panel, name?: string, namespace?: string) { return new UI(Type.PANEL, name, namespace).setProperties(properties || {}) @@ -167,13 +173,13 @@ export function SliderBox(properties?: SliderBox, name?: string, namespace?: str return new UI(Type.SLIDER_BOX, name, namespace).setProperties(properties || {}) } -export function Extends( +export function ExtendsOf( element: UI, properties?: Properties, name?: string, namespace?: string, ) { - if (!element.canExtend) { + if (!element.extendable) { throw new Error("Cannot extend a UI that cannot be extended") } const ui = new UI(undefined, name, namespace) diff --git a/src/index.ts b/src/index.ts index f2538b9..2d6bf04 100644 --- a/src/index.ts +++ b/src/index.ts @@ -7,5 +7,6 @@ export * from "./components/Modify.js" export * from "./components/Utils.js" export * from "./types/enums/index.js" -export * from "./compilers/bindings/index.js" export * as Properties from "./types/properties/index.js" + +export { ItemAuxID } from "./types/enums/Items.js" diff --git a/src/types/enums/Items.ts b/src/types/enums/Items.ts new file mode 100644 index 0000000..87c52fc --- /dev/null +++ b/src/types/enums/Items.ts @@ -0,0 +1,1488 @@ +export enum ItemAuxID { + ACACIA_BOAT = 26935296, + ACACIA_BUTTON = -9175040, + ACACIA_CHEST_BOAT = 44826624, + ACACIA_DOOR = 38993920, + ACACIA_FENCE = -37683200, + ACACIA_FENCE_GATE = 12255232, + ACACIA_HANGING_SIGN = -33030144, + ACACIA_LEAVES = 10551296, + ACACIA_LOG = 10616832, + ACACIA_PLANKS = -48627712, + ACACIA_PRESSURE_PLATE = -9830400, + ACACIA_SAPLING = -54263808, + ACACIA_SHELF = -68878336, + ACACIA_SIGN = 40501248, + ACACIA_SLAB = -52887552, + ACACIA_STAIRS = 10682368, + ACACIA_TRAPDOOR = -9502720, + ACACIA_WOOD = -53542912, + ACTIVATOR_RAIL = 8257536, + ALLAY_SPAWN_EGG = 44105728, + ALLIUM = -54460416, + ALLOW = 13762560, + AMETHYST_BLOCK = -21430272, + AMETHYST_CLUSTER = -21561344, + AMETHYST_SHARD = 43646976, + ANCIENT_DEBRIS = -17760256, + ANDESITE = -38928384, + ANDESITE_SLAB = -58523648, + ANDESITE_STAIRS = -11206656, + ANDESITE_WALL = -63832064, + ANGLER_POTTERY_SHERD = 45809664, + ANVIL = 9502720, + APPLE = 18677760, + ARCHER_POTTERY_SHERD = 45875200, + ARMADILLO_SCUTE = 48889856, + ARMADILLO_SPAWN_EGG = 48824320, + ARMOR_STAND = 38731776, + ARMS_UP_POTTERY_SHERD = 45940736, + ARROW = 21757952, + AXOLOTL_BUCKET = 26279936, + AXOLOTL_SPAWN_EGG = 35127296, + AZALEA = -22085632, + AZALEA_LEAVES = -21233664, + AZALEA_LEAVES_FLOWERED = -21299200, + AZURE_BLUET = -54525952, + BAKED_POTATO = 20316160, + BAMBOO = -10682368, + BAMBOO_BLOCK = -34537472, + BAMBOO_BUTTON = -33488896, + BAMBOO_CHEST_RAFT = 45613056, + BAMBOO_DOOR = -33882112, + BAMBOO_FENCE = -33751040, + BAMBOO_FENCE_GATE = -33816576, + BAMBOO_HANGING_SIGN = -34209792, + BAMBOO_MOSAIC = -33357824, + BAMBOO_MOSAIC_SLAB = -34340864, + BAMBOO_MOSAIC_STAIRS = -34275328, + BAMBOO_PLANKS = -33423360, + BAMBOO_PRESSURE_PLATE = -33685504, + BAMBOO_RAFT = 45547520, + BAMBOO_SHELF = -69206016, + BAMBOO_SIGN = 45481984, + BAMBOO_SLAB = -33619968, + BAMBOO_STAIRS = -33554432, + BAMBOO_TRAPDOOR = -34078720, + BANNER = 39714816, + BARREL = -13303808, + BARRIER = -10551296, + BASALT = -15335424, + BAT_SPAWN_EGG = 31850496, + BEACON = 9043968, + BED = 29491200, + BEDROCK = 458752, + BEE_NEST = -14286848, + BEE_SPAWN_EGG = 34603008, + BEEF = 19791872, + BEEHIVE = -14352384, + BEETROOT = 20578304, + BEETROOT_SEEDS = 21233664, + BEETROOT_SOUP = 20643840, + BELL = -13500416, + BIG_DRIPLEAF = -21168128, + BIRCH_BOAT = 26738688, + BIRCH_BUTTON = -9240576, + BIRCH_CHEST_BOAT = 44630016, + BIRCH_DOOR = 38862848, + BIRCH_FENCE = -37748736, + BIRCH_FENCE_GATE = 12058624, + BIRCH_HANGING_SIGN = -32899072, + BIRCH_LEAVES = -52494336, + BIRCH_LOG = -37355520, + BIRCH_PLANKS = -48496640, + BIRCH_PRESSURE_PLATE = -9895936, + BIRCH_SAPLING = -54132736, + BIRCH_SHELF = -68747264, + BIRCH_SIGN = 40370176, + BIRCH_SLAB = -52756480, + BIRCH_STAIRS = 8847360, + BIRCH_TRAPDOOR = -9568256, + BIRCH_WOOD = -53411840, + BLACK_BUNDLE = 17301504, + BLACK_CANDLE = -28049408, + BLACK_CARPET = -40042496, + BLACK_CONCRETE = -42074112, + BLACK_CONCRETE_POWDER = -47382528, + BLACK_DYE = 27983872, + BLACK_GLAZED_TERRACOTTA = 15400960, + BLACK_HARNESS = 49545216, + BLACK_SHULKER_BOX = -41091072, + BLACK_STAINED_GLASS = -45023232, + BLACK_STAINED_GLASS_PANE = -43057152, + BLACK_TERRACOTTA = -48365568, + BLACK_WOOL = -36306944, + BLACKSTONE = -17891328, + BLACKSTONE_SLAB = -18481152, + BLACKSTONE_STAIRS = -18087936, + BLACKSTONE_WALL = -18153472, + BLADE_POTTERY_SHERD = 46006272, + BLAST_FURNACE = -12845056, + BLAZE_POWDER = 30277632, + BLAZE_ROD = 29818880, + BLAZE_SPAWN_EGG = 32047104, + BLUE_BUNDLE = 17367040, + BLUE_CANDLE = -27787264, + BLUE_CARPET = -39780352, + BLUE_CONCRETE = -41811968, + BLUE_CONCRETE_POWDER = -47120384, + BLUE_DYE = 28246016, + BLUE_EGG = 49348608, + BLUE_GLAZED_TERRACOTTA = 15138816, + BLUE_HARNESS = 49610752, + BLUE_ICE = -720896, + BLUE_ORCHID = -54394880, + BLUE_SHULKER_BOX = -40828928, + BLUE_STAINED_GLASS = -44761088, + BLUE_STAINED_GLASS_PANE = -42795008, + BLUE_TERRACOTTA = -48103424, + BLUE_WOOL = -36896768, + BOGGED_SPAWN_EGG = 32505856, + BOLT_ARMOR_TRIM_SMITHING_TEMPLATE = 48562176, + BONE = 29294592, + BONE_BLOCK = 14155776, + BONE_MEAL = 29032448, + BOOK = 27459584, + BOOKSHELF = 3080192, + BORDER_BLOCK = 13893632, + BORDURE_INDENTED_BANNER_PATTERN = 40960000, + BOW = 21692416, + BOWL = 23134208, + BRAIN_CORAL = -38076416, + BRAIN_CORAL_BLOCK = -55640064, + BRAIN_CORAL_FAN = -55050240, + BREAD = 19005440, + BREEZE_ROD = 18415616, + BREEZE_SPAWN_EGG = 35061760, + BREWER_POTTERY_SHERD = 46071808, + BREWING_STAND = 30408704, + BRICK = 27197440, + BRICK_BLOCK = 2949120, + BRICK_SLAB = -57278464, + BRICK_STAIRS = 7077888, + BRICK_WALL = -63963136, + BROWN_BUNDLE = 17432576, + BROWN_CANDLE = -27852800, + BROWN_CARPET = -39845888, + BROWN_CONCRETE = -41877504, + BROWN_CONCRETE_POWDER = -47185920, + BROWN_DYE = 28180480, + BROWN_EGG = 49414144, + BROWN_GLAZED_TERRACOTTA = 15204352, + BROWN_HARNESS = 49676288, + BROWN_MUSHROOM = 2555904, + BROWN_MUSHROOM_BLOCK = 6488064, + BROWN_SHULKER_BOX = -40894464, + BROWN_STAINED_GLASS = -44826624, + BROWN_STAINED_GLASS_PANE = -42860544, + BROWN_TERRACOTTA = -48168960, + BROWN_WOOL = -36372480, + BRUSH = 47316992, + BUBBLE_CORAL = -38141952, + BUBBLE_CORAL_BLOCK = -55705600, + BUBBLE_CORAL_FAN = -55115776, + BUCKET = 25690112, + BUDDING_AMETHYST = -21495808, + BUNDLE = 17498112, + BURN_POTTERY_SHERD = 46137344, + BUSH = -67043328, + CACTUS = 5308416, + CACTUS_FLOWER = -67502080, + CAKE = 29425664, + CALCITE = -21364736, + CALIBRATED_SCULK_SENSOR = -38010880, + CAMEL_HUSK_SPAWN_EGG = 45744128, + CAMEL_SPAWN_EGG = 45678592, + CAMPFIRE = 41287680, + CANDLE = -27000832, + CARROT = 20185088, + CARROT_ON_A_STICK = 36438016, + CARTOGRAPHY_TABLE = -13107200, + CARVED_PUMPKIN = -10158080, + CAT_SPAWN_EGG = 34209792, + CAULDRON = 30474240, + CAVE_SPIDER_SPAWN_EGG = 32112640, + CHAIN_COMMAND_BLOCK = 12386304, + CHAINMAIL_BOOTS = 24510464, + CHAINMAIL_CHESTPLATE = 24379392, + CHAINMAIL_HELMET = 24313856, + CHAINMAIL_LEGGINGS = 24444928, + CHARCOAL = 21889024, + CHERRY_BOAT = 45285376, + CHERRY_BUTTON = -34734080, + CHERRY_CHEST_BOAT = 45350912, + CHERRY_DOOR = -34799616, + CHERRY_FENCE = -34865152, + CHERRY_FENCE_GATE = -34930688, + CHERRY_HANGING_SIGN = -34996224, + CHERRY_LEAVES = -35913728, + CHERRY_LOG = -35127296, + CHERRY_PLANKS = -35192832, + CHERRY_PRESSURE_PLATE = -35258368, + CHERRY_SAPLING = -35848192, + CHERRY_SHELF = -69074944, + CHERRY_SIGN = 45416448, + CHERRY_SLAB = -35323904, + CHERRY_STAIRS = -35454976, + CHERRY_TRAPDOOR = -35586048, + CHERRY_WOOD = -35782656, + CHEST = 3538944, + CHEST_MINECART = 27590656, + CHICKEN = 19922944, + CHICKEN_SPAWN_EGG = 30670848, + CHIPPED_ANVIL = -62849024, + CHISELED_BOOKSHELF = -34471936, + CHISELED_COPPER = -49807360, + CHISELED_DEEPSLATE = -25886720, + CHISELED_NETHER_BRICKS = -19791872, + CHISELED_POLISHED_BLACKSTONE = -18284544, + CHISELED_QUARTZ_BLOCK = -62455808, + CHISELED_RED_SANDSTONE = -62652416, + CHISELED_RESIN_BRICKS = -66846720, + CHISELED_SANDSTONE = -61865984, + CHISELED_STONE_BRICKS = -57016320, + CHISELED_TUFF = -49348608, + CHISELED_TUFF_BRICKS = -49741824, + CHORUS_FLOWER = 13107200, + CHORUS_FRUIT = 39124992, + CHORUS_PLANT = 15728640, + CLAY = 5373952, + CLAY_BALL = 27262976, + CLOCK = 27852800, + CLOSED_EYEBLOSSOM = -66781184, + COAL = 21823488, + COAL_BLOCK = 11337728, + COAL_ORE = 1048576, + COARSE_DIRT = -63045632, + COAST_ARMOR_TRIM_SMITHING_TEMPLATE = 47579136, + COBBLED_DEEPSLATE = -24838144, + COBBLED_DEEPSLATE_SLAB = -24903680, + COBBLED_DEEPSLATE_STAIRS = -24969216, + COBBLED_DEEPSLATE_WALL = -25034752, + COBBLESTONE = 262144, + COBBLESTONE_SLAB = -57212928, + COBBLESTONE_WALL = 9109504, + COCOA_BEANS = 29097984, + COD = 19202048, + COD_BUCKET = 25952256, + COD_SPAWN_EGG = 33685504, + COMMAND_BLOCK = 8978432, + COMMAND_BLOCK_MINECART = 39452672, + COMPARATOR = 36765696, + COMPASS = 27721728, + COMPOSTER = -13959168, + CONDUIT = -10289152, + COOKED_BEEF = 19857408, + COOKED_CHICKEN = 19988480, + COOKED_COD = 19464192, + COOKED_MUTTON = 38666240, + COOKED_PORKCHOP = 19136512, + COOKED_RABBIT = 20840448, + COOKED_SALMON = 19529728, + COOKIE = 19660800, + COPPER_AXE = 50855936, + COPPER_BARS = -69861376, + COPPER_BLOCK = -22282240, + COPPER_BOOTS = 51183616, + COPPER_BULB = -50855936, + COPPER_CHAIN = -70385664, + COPPER_CHEST = -67567616, + COPPER_CHESTPLATE = 51052544, + COPPER_DOOR = -51380224, + COPPER_GOLEM_SPAWN_EGG = 50593792, + COPPER_GOLEM_STATUE = -68091904, + COPPER_GRATE = -50331648, + COPPER_HELMET = 50987008, + COPPER_HOE = 50921472, + COPPER_HORSE_ARMOR = 51314688, + COPPER_INGOT = 35651584, + COPPER_LANTERN = -70975488, + COPPER_LEGGINGS = 51118080, + COPPER_NAUTILUS_ARMOR = 51576832, + COPPER_NUGGET = 51249152, + COPPER_ORE = -20381696, + COPPER_PICKAXE = 50790400, + COPPER_SHOVEL = 50724864, + COPPER_SPEAR = 16842752, + COPPER_SWORD = 50659328, + COPPER_TORCH = -70909952, + COPPER_TRAPDOOR = -51904512, + CORNFLOWER = -54919168, + COW_SPAWN_EGG = 30736384, + CRACKED_DEEPSLATE_BRICKS = -26869760, + CRACKED_DEEPSLATE_TILES = -26804224, + CRACKED_NETHER_BRICKS = -19857408, + CRACKED_POLISHED_BLACKSTONE_BRICKS = -18350080, + CRACKED_STONE_BRICKS = -56950784, + CRAFTER = -20512768, + CRAFTING_TABLE = 3801088, + CREAKING_HEART = -66322432, + CREAKING_SPAWN_EGG = 49217536, + CREEPER_BANNER_PATTERN = 40697856, + CREEPER_HEAD = -63438848, + CREEPER_SPAWN_EGG = 31064064, + CRIMSON_BUTTON = -17039360, + CRIMSON_DOOR = 43188224, + CRIMSON_FENCE = -16777216, + CRIMSON_FENCE_GATE = -16908288, + CRIMSON_FUNGUS = -14942208, + CRIMSON_HANGING_SIGN = -33161216, + CRIMSON_HYPHAE = -19595264, + CRIMSON_NYLIUM = -15204352, + CRIMSON_PLANKS = -15859712, + CRIMSON_PRESSURE_PLATE = -17170432, + CRIMSON_ROOTS = -14614528, + CRIMSON_SHELF = -69271552, + CRIMSON_SIGN = 43057152, + CRIMSON_SLAB = -17301504, + CRIMSON_STAIRS = -16646144, + CRIMSON_STEM = -14745600, + CRIMSON_TRAPDOOR = -16121856, + CROSSBOW = 40239104, + CRYING_OBSIDIAN = -18939904, + CUT_COPPER = -22740992, + CUT_COPPER_SLAB = -23658496, + CUT_COPPER_STAIRS = -23199744, + CUT_RED_SANDSTONE = -62717952, + CUT_RED_SANDSTONE_SLAB = -59047936, + CUT_SANDSTONE = -61931520, + CUT_SANDSTONE_SLAB = -58982400, + CYAN_BUNDLE = 17563648, + CYAN_CANDLE = -27656192, + CYAN_CARPET = -39649280, + CYAN_CONCRETE = -41680896, + CYAN_CONCRETE_POWDER = -46989312, + CYAN_DYE = 28377088, + CYAN_GLAZED_TERRACOTTA = 15007744, + CYAN_HARNESS = 49741824, + CYAN_SHULKER_BOX = -40697856, + CYAN_STAINED_GLASS = -44630016, + CYAN_STAINED_GLASS_PANE = -42663936, + CYAN_TERRACOTTA = -47972352, + CYAN_WOOL = -36765696, + DAMAGED_ANVIL = -62914560, + DANDELION = 2424832, + DANGER_POTTERY_SHERD = 46202880, + DARK_OAK_BOAT = 27000832, + DARK_OAK_BUTTON = -9306112, + DARK_OAK_CHEST_BOAT = 44892160, + DARK_OAK_DOOR = 39059456, + DARK_OAK_FENCE = -37814272, + DARK_OAK_FENCE_GATE = 12189696, + DARK_OAK_HANGING_SIGN = -33095680, + DARK_OAK_LEAVES = -52625408, + DARK_OAK_LOG = -37486592, + DARK_OAK_PLANKS = -48693248, + DARK_OAK_PRESSURE_PLATE = -9961472, + DARK_OAK_SAPLING = -54329344, + DARK_OAK_SHELF = -68943872, + DARK_OAK_SIGN = 40566784, + DARK_OAK_SLAB = -52953088, + DARK_OAK_STAIRS = 10747904, + DARK_OAK_TRAPDOOR = -9633792, + DARK_OAK_WOOD = -53608448, + DARK_PRISMARINE = -62062592, + DARK_PRISMARINE_SLAB = -58064896, + DARK_PRISMARINE_STAIRS = -196608, + DAYLIGHT_DETECTOR = 9895936, + DEAD_BRAIN_CORAL = -38404096, + DEAD_BRAIN_CORAL_BLOCK = -55967744, + DEAD_BRAIN_CORAL_FAN = -55312384, + DEAD_BUBBLE_CORAL = -38469632, + DEAD_BUBBLE_CORAL_BLOCK = -56033280, + DEAD_BUBBLE_CORAL_FAN = -55377920, + DEAD_FIRE_CORAL = -38535168, + DEAD_FIRE_CORAL_BLOCK = -56098816, + DEAD_FIRE_CORAL_FAN = -55443456, + DEAD_HORN_CORAL = -38600704, + DEAD_HORN_CORAL_BLOCK = -56164352, + DEAD_HORN_CORAL_FAN = -55508992, + DEAD_TUBE_CORAL = -38338560, + DEAD_TUBE_CORAL_BLOCK = -55902208, + DEAD_TUBE_CORAL_FAN = -8781824, + DEADBUSH = 2097152, + DECORATED_POT = -36110336, + DEEPSLATE = -24772608, + DEEPSLATE_BRICK_SLAB = -25690112, + DEEPSLATE_BRICK_STAIRS = -25755648, + DEEPSLATE_BRICK_WALL = -25821184, + DEEPSLATE_BRICKS = -25624576, + DEEPSLATE_COAL_ORE = -26607616, + DEEPSLATE_COPPER_ORE = -26738688, + DEEPSLATE_DIAMOND_ORE = -26542080, + DEEPSLATE_EMERALD_ORE = -26673152, + DEEPSLATE_GOLD_ORE = -26345472, + DEEPSLATE_IRON_ORE = -26279936, + DEEPSLATE_LAPIS_ORE = -26214400, + DEEPSLATE_REDSTONE_ORE = -26411008, + DEEPSLATE_TILE_SLAB = -25427968, + DEEPSLATE_TILE_STAIRS = -25493504, + DEEPSLATE_TILE_WALL = -25559040, + DEEPSLATE_TILES = -25362432, + DENY = 13828096, + DETECTOR_RAIL = 1835008, + DIAMOND = 21954560, + DIAMOND_AXE = 22937600, + DIAMOND_BLOCK = 3735552, + DIAMOND_BOOTS = 25034752, + DIAMOND_CHESTPLATE = 24903680, + DIAMOND_HELMET = 24838144, + DIAMOND_HOE = 23855104, + DIAMOND_HORSE_ARMOR = 37486592, + DIAMOND_LEGGINGS = 24969216, + DIAMOND_NAUTILUS_ARMOR = 51773440, + DIAMOND_ORE = 3670016, + DIAMOND_PICKAXE = 22872064, + DIAMOND_SHOVEL = 22806528, + DIAMOND_SPEAR = 16908288, + DIAMOND_SWORD = 22740992, + DIORITE = -38797312, + DIORITE_SLAB = -58589184, + DIORITE_STAIRS = -11141120, + DIORITE_WALL = -63766528, + DIRT = 196608, + DIRT_WITH_ROOTS = -20840448, + DISC_FRAGMENT_5 = 44498944, + DISPENSER = 1507328, + DOLPHIN_SPAWN_EGG = 33947648, + DONKEY_SPAWN_EGG = 32702464, + DRAGON_BREATH = 39256064, + DRAGON_EGG = 7995392, + DRAGON_HEAD = -63504384, + DRIED_GHAST = -67305472, + DRIED_KELP = 19595264, + DRIED_KELP_BLOCK = -9109504, + DRIPSTONE_BLOCK = -20774912, + DROPPER = 8192000, + DROWNED_SPAWN_EGG = 33882112, + DUNE_ARMOR_TRIM_SMITHING_TEMPLATE = 47513600, + ECHO_SHARD = 45154304, + EGG = 27656192, + ELDER_GUARDIAN_SPAWN_EGG = 33095680, + ELYTRA = 39518208, + EMERALD = 36175872, + EMERALD_BLOCK = 8716288, + EMERALD_ORE = 8454144, + EMPTY_MAP = 36372480, + ENCHANTED_BOOK = 36700160, + ENCHANTED_GOLDEN_APPLE = 18874368, + ENCHANTING_TABLE = 7602176, + END_BRICK_STAIRS = -11665408, + END_BRICKS = 13500416, + END_CRYSTAL = 55115776, + END_PORTAL_FRAME = 7864320, + END_ROD = 13631488, + END_STONE = 7929856, + END_STONE_BRICK_SLAB = -10616832, + END_STONE_BRICK_WALL = -64225280, + ENDER_CHEST = 8519680, + ENDER_DRAGON_SPAWN_EGG = 35454976, + ENDER_EYE = 30539776, + ENDER_PEARL = 29753344, + ENDERMAN_SPAWN_EGG = 31129600, + ENDERMITE_SPAWN_EGG = 32309248, + EVOKER_SPAWN_EGG = 33357824, + EXPERIENCE_BOTTLE = 35913728, + EXPLORER_POTTERY_SHERD = 46268416, + EXPOSED_CHISELED_COPPER = -49872896, + EXPOSED_COPPER = -22347776, + EXPOSED_COPPER_BARS = -69926912, + EXPOSED_COPPER_BULB = -50921472, + EXPOSED_COPPER_CHAIN = -70451200, + EXPOSED_COPPER_CHEST = -67633152, + EXPOSED_COPPER_DOOR = -51445760, + EXPOSED_COPPER_GOLEM_STATUE = -68157440, + EXPOSED_COPPER_GRATE = -50397184, + EXPOSED_COPPER_LANTERN = -71041024, + EXPOSED_COPPER_TRAPDOOR = -51970048, + EXPOSED_CUT_COPPER = -22806528, + EXPOSED_CUT_COPPER_SLAB = -23724032, + EXPOSED_CUT_COPPER_STAIRS = -23265280, + EXPOSED_LIGHTNING_ROD = -69402624, + EYE_ARMOR_TRIM_SMITHING_TEMPLATE = 47775744, + FARMLAND = 3932160, + FEATHER = 23527424, + FENCE_GATE = 7012352, + FERMENTED_SPIDER_EYE = 30212096, + FERN = -55574528, + FIELD_MASONED_BANNER_PATTERN = 40894464, + FILLED_MAP = 29622272, + FIRE_CHARGE = 35979264, + FIRE_CORAL = -38207488, + FIRE_CORAL_BLOCK = -55771136, + FIRE_CORAL_FAN = -55181312, + FIREFLY_BUSH = -67174400, + FIREWORK_ROCKET = 36569088, + FIREWORK_STAR = 36634624, + FISHING_ROD = 27787264, + FLETCHING_TABLE = -13172736, + FLINT = 25427968, + FLINT_AND_STEEL = 21626880, + FLOW_ARMOR_TRIM_SMITHING_TEMPLATE = 48496640, + FLOW_BANNER_PATTERN = 41156608, + FLOW_POTTERY_SHERD = 46333952, + FLOWER_BANNER_PATTERN = 40632320, + FLOWER_POT = 36306944, + FLOWERING_AZALEA = -22151168, + FOX_SPAWN_EGG = 34340864, + FRAME = 36241408, + FRIEND_POTTERY_SHERD = 46399488, + FROG_SPAWN = -30670848, + FROG_SPAWN_EGG = 43909120, + FROSTED_ICE = 13565952, + FURNACE = 3997696, + GHAST_SPAWN_EGG = 31916032, + GHAST_TEAR = 29949952, + GILDED_BLACKSTONE = -18415616, + GLASS = 1310720, + GLASS_BOTTLE = 30146560, + GLASS_PANE = 6684672, + GLISTERING_MELON_SLICE = 30605312, + GLOBE_BANNER_PATTERN = 41091072, + GLOW_BERRIES = 55181312, + GLOW_FRAME = 43581440, + GLOW_INK_SAC = 35586048, + GLOW_LICHEN = -26935296, + GLOW_SQUID_SPAWN_EGG = 35258368, + GLOWSTONE = 5832704, + GLOWSTONE_DUST = 27918336, + GOAT_HORN = 43843584, + GOAT_SPAWN_EGG = 35192832, + GOLD_BLOCK = 2686976, + GOLD_INGOT = 22085632, + GOLD_NUGGET = 30015488, + GOLD_ORE = 917504, + GOLDEN_APPLE = 18808832, + GOLDEN_AXE = 23396352, + GOLDEN_BOOTS = 25296896, + GOLDEN_CARROT = 20447232, + GOLDEN_CHESTPLATE = 25165824, + GOLDEN_HELMET = 25100288, + GOLDEN_HOE = 23920640, + GOLDEN_HORSE_ARMOR = 37421056, + GOLDEN_LEGGINGS = 25231360, + GOLDEN_NAUTILUS_ARMOR = 51707904, + GOLDEN_PICKAXE = 23330816, + GOLDEN_RAIL = 1769472, + GOLDEN_SHOVEL = 23265280, + GOLDEN_SPEAR = 16973824, + GOLDEN_SWORD = 23199744, + GRANITE = -38666240, + GRANITE_SLAB = -58720256, + GRANITE_STAIRS = -11075584, + GRANITE_WALL = -63700992, + GRASS_BLOCK = 131072, + GRASS_PATH = 12976128, + GRAVEL = 851968, + GRAY_BUNDLE = 17629184, + GRAY_CANDLE = -27525120, + GRAY_CARPET = -39518208, + GRAY_CONCRETE = -41549824, + GRAY_CONCRETE_POWDER = -46858240, + GRAY_DYE = 28508160, + GRAY_GLAZED_TERRACOTTA = 14876672, + GRAY_HARNESS = 49807360, + GRAY_SHULKER_BOX = -40566784, + GRAY_STAINED_GLASS = -44498944, + GRAY_STAINED_GLASS_PANE = -42532864, + GRAY_TERRACOTTA = -47841280, + GRAY_WOOL = -36241408, + GREEN_BUNDLE = 17694720, + GREEN_CANDLE = -27918336, + GREEN_CARPET = -39911424, + GREEN_CONCRETE = -41943040, + GREEN_CONCRETE_POWDER = -47251456, + GREEN_DYE = 28114944, + GREEN_GLAZED_TERRACOTTA = 15269888, + GREEN_HARNESS = 49872896, + GREEN_SHULKER_BOX = -40960000, + GREEN_STAINED_GLASS = -44892160, + GREEN_STAINED_GLASS_PANE = -42926080, + GREEN_TERRACOTTA = -48234496, + GREEN_WOOL = -36700160, + GRINDSTONE = -12779520, + GUARDIAN_SPAWN_EGG = 32374784, + GUNPOWDER = 23592960, + GUSTER_BANNER_PATTERN = 41222144, + GUSTER_POTTERY_SHERD = 46465024, + HANGING_ROOTS = -20905984, + HAPPY_GHAST_SPAWN_EGG = 49479680, + HARDENED_CLAY = 11272192, + HAY_BLOCK = 11141120, + HEART_OF_THE_SEA = 39976960, + HEART_POTTERY_SHERD = 46530560, + HEARTBREAK_POTTERY_SHERD = 46596096, + HEAVY_CORE = -20709376, + HEAVY_WEIGHTED_PRESSURE_PLATE = 9699328, + HOGLIN_SPAWN_EGG = 34734080, + HONEY_BLOCK = -14417920, + HONEY_BOTTLE = 41484288, + HONEYCOMB = 41418752, + HONEYCOMB_BLOCK = -14483456, + HOPPER = 37093376, + HOPPER_MINECART = 37027840, + HORN_CORAL = -38273024, + HORN_CORAL_BLOCK = -55836672, + HORN_CORAL_FAN = -55246848, + HORSE_SPAWN_EGG = 32178176, + HOST_ARMOR_TRIM_SMITHING_TEMPLATE = 48431104, + HOWL_POTTERY_SHERD = 46661632, + HUSK_SPAWN_EGG = 32571392, + ICE = 5177344, + INFESTED_CHISELED_STONE_BRICKS = -56492032, + INFESTED_COBBLESTONE = -56229888, + INFESTED_CRACKED_STONE_BRICKS = -56426496, + INFESTED_DEEPSLATE = -29753344, + INFESTED_MOSSY_STONE_BRICKS = -56360960, + INFESTED_STONE = 6356992, + INFESTED_STONE_BRICKS = -56295424, + INK_SAC = 29163520, + IRON_AXE = 21561344, + IRON_BARS = 6619136, + IRON_BLOCK = 2752512, + IRON_BOOTS = 24772608, + IRON_CHAIN = -18743296, + IRON_CHESTPLATE = 24641536, + IRON_DOOR = 26476544, + IRON_GOLEM_SPAWN_EGG = 35323904, + IRON_HELMET = 24576000, + IRON_HOE = 23789568, + IRON_HORSE_ARMOR = 37355520, + IRON_INGOT = 22020096, + IRON_LEGGINGS = 24707072, + IRON_NAUTILUS_ARMOR = 51642368, + IRON_NUGGET = 39845888, + IRON_ORE = 983040, + IRON_PICKAXE = 21495808, + IRON_SHOVEL = 21430272, + IRON_SPEAR = 17039360, + IRON_SWORD = 22151168, + IRON_TRAPDOOR = 10944512, + JIGSAW = -13828096, + JUKEBOX = 5505024, + JUNGLE_BOAT = 26804224, + JUNGLE_BUTTON = -9371648, + JUNGLE_CHEST_BOAT = 44695552, + JUNGLE_DOOR = 38928384, + JUNGLE_FENCE = -37879808, + JUNGLE_FENCE_GATE = 12124160, + JUNGLE_HANGING_SIGN = -32964608, + JUNGLE_LEAVES = -52559872, + JUNGLE_LOG = -37421056, + JUNGLE_PLANKS = -48562176, + JUNGLE_PRESSURE_PLATE = -10027008, + JUNGLE_SAPLING = -54198272, + JUNGLE_SHELF = -68812800, + JUNGLE_SIGN = 40435712, + JUNGLE_SLAB = -52822016, + JUNGLE_STAIRS = 8912896, + JUNGLE_TRAPDOOR = -9699328, + JUNGLE_WOOD = -53477376, + KELP = 27131904, + LADDER = 4259840, + LANTERN = -13631488, + LAPIS_BLOCK = 1441792, + LAPIS_LAZULI = 29229056, + LAPIS_ORE = 1376256, + LARGE_AMETHYST_BUD = -21626880, + LARGE_FERN = -56688640, + LAVA_BUCKET = 25886720, + LEAD = 38404096, + LEAF_LITTER = -67239936, + LEATHER = 27066368, + LEATHER_BOOTS = 24248320, + LEATHER_CHESTPLATE = 24117248, + LEATHER_HELMET = 24051712, + LEATHER_HORSE_ARMOR = 37289984, + LEATHER_LEGGINGS = 24182784, + LECTERN = -12713984, + LEVER = 4521984, + LIGHT_BLOCK_0 = -14090240, + LIGHT_BLOCK_1 = -60882944, + LIGHT_BLOCK_10 = -61472768, + LIGHT_BLOCK_11 = -61538304, + LIGHT_BLOCK_12 = -61603840, + LIGHT_BLOCK_13 = -61669376, + LIGHT_BLOCK_14 = -61734912, + LIGHT_BLOCK_15 = -61800448, + LIGHT_BLOCK_2 = -60948480, + LIGHT_BLOCK_3 = -61014016, + LIGHT_BLOCK_4 = -61079552, + LIGHT_BLOCK_5 = -61145088, + LIGHT_BLOCK_6 = -61210624, + LIGHT_BLOCK_7 = -61276160, + LIGHT_BLOCK_8 = -61341696, + LIGHT_BLOCK_9 = -61407232, + LIGHT_BLUE_BUNDLE = 17760256, + LIGHT_BLUE_CANDLE = -27262976, + LIGHT_BLUE_CARPET = -39256064, + LIGHT_BLUE_CONCRETE = -41287680, + LIGHT_BLUE_CONCRETE_POWDER = -46596096, + LIGHT_BLUE_DYE = 28770304, + LIGHT_BLUE_GLAZED_TERRACOTTA = 14614528, + LIGHT_BLUE_HARNESS = 49938432, + LIGHT_BLUE_SHULKER_BOX = -40304640, + LIGHT_BLUE_STAINED_GLASS = -44236800, + LIGHT_BLUE_STAINED_GLASS_PANE = -42270720, + LIGHT_BLUE_TERRACOTTA = -47579136, + LIGHT_BLUE_WOOL = -36831232, + LIGHT_GRAY_BUNDLE = 17825792, + LIGHT_GRAY_CANDLE = -27590656, + LIGHT_GRAY_CARPET = -39583744, + LIGHT_GRAY_CONCRETE = -41615360, + LIGHT_GRAY_CONCRETE_POWDER = -46923776, + LIGHT_GRAY_DYE = 28442624, + LIGHT_GRAY_HARNESS = 50003968, + LIGHT_GRAY_SHULKER_BOX = -40632320, + LIGHT_GRAY_STAINED_GLASS = -44564480, + LIGHT_GRAY_STAINED_GLASS_PANE = -42598400, + LIGHT_GRAY_TERRACOTTA = -47906816, + LIGHT_GRAY_WOOL = -36175872, + LIGHT_WEIGHTED_PRESSURE_PLATE = 9633792, + LIGHTNING_ROD = -20447232, + LILAC = -56557568, + LILY_OF_THE_VALLEY = -54984704, + LIME_BUNDLE = 17891328, + LIME_CANDLE = -27394048, + LIME_CARPET = -39387136, + LIME_CONCRETE = -41418752, + LIME_CONCRETE_POWDER = -46727168, + LIME_DYE = 28639232, + LIME_GLAZED_TERRACOTTA = 14745600, + LIME_HARNESS = 50069504, + LIME_SHULKER_BOX = -40435712, + LIME_STAINED_GLASS = -44367872, + LIME_STAINED_GLASS_PANE = -42401792, + LIME_TERRACOTTA = -47710208, + LIME_WOOL = -36634624, + LINGERING_POTION = 39387136, + LIT_PUMPKIN = 5963776, + LLAMA_SPAWN_EGG = 33226752, + LODESTONE = -14548992, + LODESTONE_COMPASS = 42270720, + LOOM = -13369344, + MACE = 23003136, + MAGENTA_BUNDLE = 17956864, + MAGENTA_CANDLE = -27197440, + MAGENTA_CARPET = -39190528, + MAGENTA_CONCRETE = -41222144, + MAGENTA_CONCRETE_POWDER = -46530560, + MAGENTA_DYE = 28835840, + MAGENTA_GLAZED_TERRACOTTA = 14548992, + MAGENTA_HARNESS = 50135040, + MAGENTA_SHULKER_BOX = -40239104, + MAGENTA_STAINED_GLASS = -44171264, + MAGENTA_STAINED_GLASS_PANE = -42205184, + MAGENTA_TERRACOTTA = -47513600, + MAGENTA_WOOL = -37027840, + MAGMA = 13959168, + MAGMA_CREAM = 30343168, + MAGMA_CUBE_SPAWN_EGG = 31981568, + MANGROVE_BOAT = 44367872, + MANGROVE_BUTTON = -31916032, + MANGROVE_CHEST_BOAT = 44957696, + MANGROVE_DOOR = 44236800, + MANGROVE_FENCE = -32178176, + MANGROVE_FENCE_GATE = -32243712, + MANGROVE_HANGING_SIGN = -33292288, + MANGROVE_LEAVES = -30932992, + MANGROVE_LOG = -31719424, + MANGROVE_PLANKS = -31850496, + MANGROVE_PRESSURE_PLATE = -32112640, + MANGROVE_PROPAGULE = -31064064, + MANGROVE_ROOTS = -31588352, + MANGROVE_SHELF = -69009408, + MANGROVE_SIGN = 44302336, + MANGROVE_SLAB = -32047104, + MANGROVE_STAIRS = -31981568, + MANGROVE_TRAPDOOR = -32505856, + MANGROVE_WOOD = -32571392, + MEDIUM_AMETHYST_BUD = -21692416, + MELON_BLOCK = 6750208, + MELON_SEEDS = 21102592, + MELON_SLICE = 19726336, + MILK_BUCKET = 25755648, + MINECART = 26345472, + MINER_POTTERY_SHERD = 46727168, + MOB_SPAWNER = 3407872, + MOJANG_BANNER_PATTERN = 40828928, + MOOSHROOM_SPAWN_EGG = 30998528, + MOSS_BLOCK = -20971520, + MOSS_CARPET = -21954560, + MOSSY_COBBLESTONE = 3145728, + MOSSY_COBBLESTONE_SLAB = -58195968, + MOSSY_COBBLESTONE_STAIRS = -11730944, + MOSSY_COBBLESTONE_WALL = -63635456, + MOSSY_STONE_BRICK_SLAB = -10878976, + MOSSY_STONE_BRICK_STAIRS = -11468800, + MOSSY_STONE_BRICK_WALL = -64094208, + MOSSY_STONE_BRICKS = -56885248, + MOURNER_POTTERY_SHERD = 46792704, + MUD = -30998528, + MUD_BRICK_SLAB = -31326208, + MUD_BRICK_STAIRS = -31457280, + MUD_BRICK_WALL = -31522816, + MUD_BRICKS = -31129600, + MUDDY_MANGROVE_ROOTS = -31653888, + MULE_SPAWN_EGG = 32768000, + MUSHROOM_STEM = -66060288, + MUSHROOM_STEW = 18939904, + MUSIC_DISC_11 = 38207488, + MUSIC_DISC_13 = 37552128, + MUSIC_DISC_5 = 44433408, + MUSIC_DISC_BLOCKS = 37683200, + MUSIC_DISC_CAT = 37617664, + MUSIC_DISC_CHIRP = 37748736, + MUSIC_DISC_CREATOR = 54132736, + MUSIC_DISC_CREATOR_MUSIC_BOX = 54198272, + MUSIC_DISC_FAR = 37814272, + MUSIC_DISC_LAVA_CHICKEN = 54394880, + MUSIC_DISC_MALL = 37879808, + MUSIC_DISC_MELLOHI = 37945344, + MUSIC_DISC_OTHERSIDE = 43778048, + MUSIC_DISC_PIGSTEP = 43384832, + MUSIC_DISC_PRECIPICE = 54263808, + MUSIC_DISC_RELIC = 48627712, + MUSIC_DISC_STAL = 38010880, + MUSIC_DISC_STRAD = 38076416, + MUSIC_DISC_TEARS = 54329344, + MUSIC_DISC_WAIT = 38273024, + MUSIC_DISC_WARD = 38141952, + MUTTON = 38600704, + MYCELIUM = 7208960, + NAME_TAG = 38469632, + NAUTILUS_SHELL = 39911424, + NAUTILUS_SPAWN_EGG = 51380224, + NETHER_BRICK = 7340032, + NETHER_BRICK_FENCE = 7405568, + NETHER_BRICK_SLAB = -57475072, + NETHER_BRICK_STAIRS = 7471104, + NETHER_BRICK_WALL = -64159744, + NETHER_GOLD_ORE = -18874368, + NETHER_SPROUTS = 43450368, + NETHER_STAR = 36503552, + NETHER_WART = 21168128, + NETHER_WART_BLOCK = 14024704, + NETHERBRICK = 36831232, + NETHERITE_AXE = 42532864, + NETHERITE_BLOCK = -17694720, + NETHERITE_BOOTS = 42926080, + NETHERITE_CHESTPLATE = 42795008, + NETHERITE_HELMET = 42729472, + NETHERITE_HOE = 42598400, + NETHERITE_HORSE_ARMOR = 51904512, + NETHERITE_INGOT = 42663936, + NETHERITE_LEGGINGS = 42860544, + NETHERITE_NAUTILUS_ARMOR = 51838976, + NETHERITE_PICKAXE = 42467328, + NETHERITE_SCRAP = 42991616, + NETHERITE_SHOVEL = 42401792, + NETHERITE_SPEAR = 17104896, + NETHERITE_SWORD = 42336256, + NETHERITE_UPGRADE_SMITHING_TEMPLATE = 47382528, + NETHERRACK = 5701632, + NORMAL_STONE_SLAB = -58916864, + NORMAL_STONE_STAIRS = -11796480, + NOTEBLOCK = 1638400, + OAK_BOAT = 26673152, + OAK_CHEST_BOAT = 44564480, + OAK_FENCE = 5570560, + OAK_HANGING_SIGN = -32768000, + OAK_LEAVES = 1179648, + OAK_LOG = 1114112, + OAK_PLANKS = 327680, + OAK_SAPLING = 393216, + OAK_SHELF = -68616192, + OAK_SIGN = 25559040, + OAK_SLAB = 10354688, + OAK_STAIRS = 3473408, + OAK_WOOD = -13893632, + OBSERVER = 16449536, + OBSIDIAN = 3211264, + OCELOT_SPAWN_EGG = 31719424, + OCHRE_FROGLIGHT = -30867456, + OMINOUS_BOTTLE = 41549824, + OMINOUS_TRIAL_KEY = 18481152, + OPEN_EYEBLOSSOM = -66715648, + ORANGE_BUNDLE = 18022400, + ORANGE_CANDLE = -27131904, + ORANGE_CARPET = -39124992, + ORANGE_CONCRETE = -41156608, + ORANGE_CONCRETE_POWDER = -46465024, + ORANGE_DYE = 28901376, + ORANGE_GLAZED_TERRACOTTA = 14483456, + ORANGE_HARNESS = 50200576, + ORANGE_SHULKER_BOX = -40173568, + ORANGE_STAINED_GLASS = -44105728, + ORANGE_STAINED_GLASS_PANE = -42139648, + ORANGE_TERRACOTTA = -47448064, + ORANGE_TULIP = -54657024, + ORANGE_WOOL = -36503552, + OXEYE_DAISY = -54853632, + OXIDIZED_CHISELED_COPPER = -50003968, + OXIDIZED_COPPER = -22478848, + OXIDIZED_COPPER_BARS = -70057984, + OXIDIZED_COPPER_BULB = -51052544, + OXIDIZED_COPPER_CHAIN = -70582272, + OXIDIZED_COPPER_CHEST = -67764224, + OXIDIZED_COPPER_DOOR = -51576832, + OXIDIZED_COPPER_GOLEM_STATUE = -68288512, + OXIDIZED_COPPER_GRATE = -50528256, + OXIDIZED_COPPER_LANTERN = -71172096, + OXIDIZED_COPPER_TRAPDOOR = -52101120, + OXIDIZED_CUT_COPPER = -22937600, + OXIDIZED_CUT_COPPER_SLAB = -23855104, + OXIDIZED_CUT_COPPER_STAIRS = -23396352, + OXIDIZED_LIGHTNING_ROD = -69533696, + PACKED_ICE = 11403264, + PACKED_MUD = -31260672, + PAINTING = 25493504, + PALE_HANGING_MOSS = -66256896, + PALE_MOSS_BLOCK = -66125824, + PALE_MOSS_CARPET = -66191360, + PALE_OAK_BOAT = 49020928, + PALE_OAK_BUTTON = -64815104, + PALE_OAK_CHEST_BOAT = 49086464, + PALE_OAK_DOOR = -64880640, + PALE_OAK_FENCE = -64946176, + PALE_OAK_FENCE_GATE = -65011712, + PALE_OAK_HANGING_SIGN = -65077248, + PALE_OAK_LEAVES = -65994752, + PALE_OAK_LOG = -65208320, + PALE_OAK_PLANKS = -65273856, + PALE_OAK_PRESSURE_PLATE = -65339392, + PALE_OAK_SAPLING = -65929216, + PALE_OAK_SHELF = -69140480, + PALE_OAK_SIGN = 49152000, + PALE_OAK_SLAB = -65404928, + PALE_OAK_STAIRS = -65536000, + PALE_OAK_TRAPDOOR = -65667072, + PALE_OAK_WOOD = -65863680, + PANDA_SPAWN_EGG = 34275328, + PAPER = 27394048, + PARCHED_SPAWN_EGG = 51511296, + PARROT_SPAWN_EGG = 33554432, + PEARLESCENT_FROGLIGHT = -30736384, + PEONY = -56819712, + PETRIFIED_OAK_SLAB = -59113472, + PHANTOM_MEMBRANE = 40173568, + PHANTOM_SPAWN_EGG = 34078720, + PIG_SPAWN_EGG = 30801920, + PIGLIN_BANNER_PATTERN = 41025536, + PIGLIN_BRUTE_SPAWN_EGG = 34930688, + PIGLIN_HEAD = -63569920, + PIGLIN_SPAWN_EGG = 34799616, + PILLAGER_SPAWN_EGG = 34406400, + PINK_BUNDLE = 18087936, + PINK_CANDLE = -27459584, + PINK_CARPET = -39452672, + PINK_CONCRETE = -41484288, + PINK_CONCRETE_POWDER = -46792704, + PINK_DYE = 28573696, + PINK_GLAZED_TERRACOTTA = 14811136, + PINK_HARNESS = 50266112, + PINK_PETALS = -35979264, + PINK_SHULKER_BOX = -40501248, + PINK_STAINED_GLASS = -44433408, + PINK_STAINED_GLASS_PANE = -42467328, + PINK_TERRACOTTA = -47775744, + PINK_TULIP = -54788096, + PINK_WOOL = -37093376, + PISTON = 2162688, + PITCHER_PLANT = -40108032, + PITCHER_POD = 21364736, + PLAYER_HEAD = -63373312, + PLENTY_POTTERY_SHERD = 46858240, + PODZOL = 15925248, + POINTED_DRIPSTONE = -20185088, + POISONOUS_POTATO = 20381696, + POLAR_BEAR_SPAWN_EGG = 33161216, + POLISHED_ANDESITE = -38993920, + POLISHED_ANDESITE_SLAB = -58458112, + POLISHED_ANDESITE_STAIRS = -11403264, + POLISHED_BASALT = -15400960, + POLISHED_BLACKSTONE = -19070976, + POLISHED_BLACKSTONE_BRICK_SLAB = -18612224, + POLISHED_BLACKSTONE_BRICK_STAIRS = -18022400, + POLISHED_BLACKSTONE_BRICK_WALL = -18219008, + POLISHED_BLACKSTONE_BRICKS = -17956864, + POLISHED_BLACKSTONE_BUTTON = -19398656, + POLISHED_BLACKSTONE_PRESSURE_PLATE = -19333120, + POLISHED_BLACKSTONE_SLAB = -19202048, + POLISHED_BLACKSTONE_STAIRS = -19136512, + POLISHED_BLACKSTONE_WALL = -19464192, + POLISHED_DEEPSLATE = -25100288, + POLISHED_DEEPSLATE_SLAB = -25165824, + POLISHED_DEEPSLATE_STAIRS = -25231360, + POLISHED_DEEPSLATE_WALL = -25296896, + POLISHED_DIORITE = -38862848, + POLISHED_DIORITE_SLAB = -58654720, + POLISHED_DIORITE_STAIRS = -11337728, + POLISHED_GRANITE = -38731776, + POLISHED_GRANITE_SLAB = -58785792, + POLISHED_GRANITE_STAIRS = -11272192, + POLISHED_TUFF = -49020928, + POLISHED_TUFF_SLAB = -49086464, + POLISHED_TUFF_STAIRS = -49217536, + POLISHED_TUFF_WALL = -49283072, + POPPED_CHORUS_FRUIT = 39190528, + POPPY = 2490368, + PORKCHOP = 19070976, + POTATO = 20250624, + POTION = 30081024, + POWDER_SNOW_BUCKET = 26214400, + PRISMARINE = 11010048, + PRISMARINE_BRICK_SLAB = -58130432, + PRISMARINE_BRICKS = -62128128, + PRISMARINE_BRICKS_STAIRS = -262144, + PRISMARINE_CRYSTALS = 38535168, + PRISMARINE_SHARD = 39583744, + PRISMARINE_SLAB = -57999360, + PRISMARINE_STAIRS = -131072, + PRISMARINE_WALL = -64290816, + PRIZE_POTTERY_SHERD = 46923776, + PUFFERFISH = 19398656, + PUFFERFISH_BUCKET = 26148864, + PUFFERFISH_SPAWN_EGG = 33751040, + PUMPKIN = 5636096, + PUMPKIN_PIE = 20512768, + PUMPKIN_SEEDS = 21037056, + PURPLE_BUNDLE = 18153472, + PURPLE_CANDLE = -27721728, + PURPLE_CARPET = -39714816, + PURPLE_CONCRETE = -41746432, + PURPLE_CONCRETE_POWDER = -47054848, + PURPLE_DYE = 28311552, + PURPLE_GLAZED_TERRACOTTA = 14352384, + PURPLE_HARNESS = 50331648, + PURPLE_SHULKER_BOX = -40763392, + PURPLE_STAINED_GLASS = -44695552, + PURPLE_STAINED_GLASS_PANE = -42729472, + PURPLE_TERRACOTTA = -48037888, + PURPLE_WOOL = -36962304, + PURPUR_BLOCK = 13172736, + PURPUR_PILLAR = -62324736, + PURPUR_SLAB = -57933824, + PURPUR_STAIRS = 13303808, + QUARTZ = 36896768, + QUARTZ_BLOCK = 10158080, + QUARTZ_BRICKS = -19922944, + QUARTZ_ORE = 10027008, + QUARTZ_PILLAR = -62521344, + QUARTZ_SLAB = -57409536, + QUARTZ_STAIRS = 10223616, + RABBIT = 20774912, + RABBIT_FOOT = 37158912, + RABBIT_HIDE = 37224448, + RABBIT_SPAWN_EGG = 32243712, + RABBIT_STEW = 20905984, + RAIL = 4325376, + RAISER_ARMOR_TRIM_SMITHING_TEMPLATE = 48300032, + RAVAGER_SPAWN_EGG = 34537472, + RAW_COPPER = 35848192, + RAW_COPPER_BLOCK = -29622272, + RAW_GOLD = 35782656, + RAW_GOLD_BLOCK = -29687808, + RAW_IRON = 35717120, + RAW_IRON_BLOCK = -29556736, + RECOVERY_COMPASS = 45088768, + RED_BUNDLE = 18219008, + RED_CANDLE = -27983872, + RED_CARPET = -39976960, + RED_CONCRETE = -42008576, + RED_CONCRETE_POWDER = -47316992, + RED_DYE = 28049408, + RED_GLAZED_TERRACOTTA = 15335424, + RED_HARNESS = 50397184, + RED_MUSHROOM = 2621440, + RED_MUSHROOM_BLOCK = 6553600, + RED_NETHER_BRICK = 14090240, + RED_NETHER_BRICK_SLAB = -58327040, + RED_NETHER_BRICK_STAIRS = -12058624, + RED_NETHER_BRICK_WALL = -64421888, + RED_SAND = -62193664, + RED_SANDSTONE = 11730944, + RED_SANDSTONE_SLAB = 11927552, + RED_SANDSTONE_STAIRS = 11796480, + RED_SANDSTONE_WALL = -64356352, + RED_SHULKER_BOX = -41025536, + RED_STAINED_GLASS = -44957696, + RED_STAINED_GLASS_PANE = -42991616, + RED_TERRACOTTA = -48300032, + RED_TULIP = -54591488, + RED_WOOL = -36438016, + REDSTONE = 26542080, + REDSTONE_BLOCK = 9961472, + REDSTONE_LAMP = 8060928, + REDSTONE_ORE = 4784128, + REDSTONE_TORCH = 4980736, + REINFORCED_DEEPSLATE = -30539776, + REPEATER = 29556736, + REPEATING_COMMAND_BLOCK = 12320768, + RESIN_BLOCK = -66912256, + RESIN_BRICK = 49283072, + RESIN_BRICK_SLAB = -66453504, + RESIN_BRICK_STAIRS = -66584576, + RESIN_BRICK_WALL = -66650112, + RESIN_BRICKS = -66387968, + RESIN_CLUMP = -66977792, + RESPAWN_ANCHOR = -17825792, + RIB_ARMOR_TRIM_SMITHING_TEMPLATE = 48037888, + ROSE_BUSH = -56754176, + ROTTEN_FLESH = 20054016, + SADDLE = 26411008, + SALMON = 19267584, + SALMON_BUCKET = 26017792, + SALMON_SPAWN_EGG = 33816576, + SAND = 786432, + SANDSTONE = 1572864, + SANDSTONE_SLAB = -57147392, + SANDSTONE_STAIRS = 8388608, + SANDSTONE_WALL = -63897600, + SCAFFOLDING = -10813440, + SCRAPE_POTTERY_SHERD = 46989312, + SCULK = -30015488, + SCULK_CATALYST = -30146560, + SCULK_SENSOR = -20119552, + SCULK_SHRIEKER = -30212096, + SCULK_VEIN = -30081024, + SEA_LANTERN = 11075584, + SEA_PICKLE = -10223616, + SEAGRASS = -8519680, + SENTRY_ARMOR_TRIM_SMITHING_TEMPLATE = 47448064, + SHAPER_ARMOR_TRIM_SMITHING_TEMPLATE = 48365568, + SHEAF_POTTERY_SHERD = 47054848, + SHEARS = 29687808, + SHEEP_SPAWN_EGG = 30867456, + SHELTER_POTTERY_SHERD = 47120384, + SHIELD = 25362432, + SHORT_DRY_GRASS = -67371008, + SHORT_GRASS = 2031616, + SHROOMLIGHT = -15073280, + SHULKER_SHELL = 39649280, + SHULKER_SPAWN_EGG = 32964608, + SILENCE_ARMOR_TRIM_SMITHING_TEMPLATE = 48168960, + SILVER_GLAZED_TERRACOTTA = 14942208, + SILVERFISH_SPAWN_EGG = 31195136, + SKELETON_HORSE_SPAWN_EGG = 32833536, + SKELETON_SKULL = 9437184, + SKELETON_SPAWN_EGG = 31260672, + SKULL_BANNER_PATTERN = 40763392, + SKULL_POTTERY_SHERD = 47185920, + SLIME = 10813440, + SLIME_BALL = 27525120, + SLIME_SPAWN_EGG = 31326208, + SMALL_AMETHYST_BUD = -21757952, + SMALL_DRIPLEAF_BLOCK = -22020096, + SMITHING_TABLE = -13238272, + SMOKER = -12976128, + SMOOTH_BASALT = -24707072, + SMOOTH_QUARTZ = -62586880, + SMOOTH_QUARTZ_SLAB = -58851328, + SMOOTH_QUARTZ_STAIRS = -12124160, + SMOOTH_RED_SANDSTONE = -62783488, + SMOOTH_RED_SANDSTONE_SLAB = -58392576, + SMOOTH_RED_SANDSTONE_STAIRS = -11534336, + SMOOTH_SANDSTONE = -61997056, + SMOOTH_SANDSTONE_SLAB = -58261504, + SMOOTH_SANDSTONE_STAIRS = -11599872, + SMOOTH_STONE = -11993088, + SMOOTH_STONE_SLAB = 2883584, + SNIFFER_EGG = -39059456, + SNIFFER_SPAWN_EGG = 34996224, + SNORT_POTTERY_SHERD = 47251456, + SNOUT_ARMOR_TRIM_SMITHING_TEMPLATE = 47972352, + SNOW = 5242880, + SNOW_GOLEM_SPAWN_EGG = 35389440, + SNOW_LAYER = 5111808, + SNOWBALL = 26607616, + SOUL_CAMPFIRE = 43515904, + SOUL_LANTERN = -17629184, + SOUL_SAND = 5767168, + SOUL_SOIL = -15466496, + SOUL_TORCH = -17563648, + SPIDER_EYE = 20119552, + SPIDER_SPAWN_EGG = 31391744, + SPIRE_ARMOR_TRIM_SMITHING_TEMPLATE = 48103424, + SPLASH_POTION = 39321600, + SPONGE = 1245184, + SPORE_BLOSSOM = -21037056, + SPRUCE_BOAT = 26869760, + SPRUCE_BUTTON = -9437184, + SPRUCE_CHEST_BOAT = 44761088, + SPRUCE_DOOR = 38797312, + SPRUCE_FENCE = -37945344, + SPRUCE_FENCE_GATE = 11993088, + SPRUCE_HANGING_SIGN = -32833536, + SPRUCE_LEAVES = -52428800, + SPRUCE_LOG = -37289984, + SPRUCE_PLANKS = -48431104, + SPRUCE_PRESSURE_PLATE = -10092544, + SPRUCE_SAPLING = -54067200, + SPRUCE_SHELF = -68681728, + SPRUCE_SIGN = 40304640, + SPRUCE_SLAB = -52690944, + SPRUCE_STAIRS = 8781824, + SPRUCE_TRAPDOOR = -9764864, + SPRUCE_WOOD = -53346304, + SPYGLASS = 43712512, + SQUID_SPAWN_EGG = 31653888, + STICK = 23068672, + STICKY_PISTON = 1900544, + STONE = 65536, + STONE_AXE = 22675456, + STONE_BRICK_SLAB = -57344000, + STONE_BRICK_STAIRS = 7143424, + STONE_BRICK_WALL = -64028672, + STONE_BRICKS = 6422528, + STONE_BUTTON = 5046272, + STONE_HOE = 23724032, + STONE_PICKAXE = 22609920, + STONE_PRESSURE_PLATE = 4587520, + STONE_SHOVEL = 22544384, + STONE_SPEAR = 17170432, + STONE_STAIRS = 4390912, + STONE_SWORD = 22478848, + STONECUTTER_BLOCK = -12910592, + STRAY_SPAWN_EGG = 32440320, + STRIDER_SPAWN_EGG = 34668544, + STRING = 23461888, + STRIPPED_ACACIA_LOG = -524288, + STRIPPED_ACACIA_WOOD = -53936128, + STRIPPED_BAMBOO_BLOCK = -34603008, + STRIPPED_BIRCH_LOG = -393216, + STRIPPED_BIRCH_WOOD = -53805056, + STRIPPED_CHERRY_LOG = -35061760, + STRIPPED_CHERRY_WOOD = -35717120, + STRIPPED_CRIMSON_HYPHAE = -19660800, + STRIPPED_CRIMSON_STEM = -15728640, + STRIPPED_DARK_OAK_LOG = -589824, + STRIPPED_DARK_OAK_WOOD = -54001664, + STRIPPED_JUNGLE_LOG = -458752, + STRIPPED_JUNGLE_WOOD = -53870592, + STRIPPED_MANGROVE_LOG = -31784960, + STRIPPED_MANGROVE_WOOD = -32636928, + STRIPPED_OAK_LOG = -655360, + STRIPPED_OAK_WOOD = -53673984, + STRIPPED_PALE_OAK_LOG = -65142784, + STRIPPED_PALE_OAK_WOOD = -65798144, + STRIPPED_SPRUCE_LOG = -327680, + STRIPPED_SPRUCE_WOOD = -53739520, + STRIPPED_WARPED_HYPHAE = -19726336, + STRIPPED_WARPED_STEM = -15794176, + STRUCTURE_BLOCK = 16515072, + STRUCTURE_VOID = 14221312, + SUGAR = 29360128, + SUGAR_CANE = 27328512, + SUNFLOWER = 11468800, + SUSPICIOUS_GRAVEL = -37552128, + SUSPICIOUS_SAND = -34668544, + SUSPICIOUS_STEW = 41353216, + SWEET_BERRIES = 20709376, + TADPOLE_BUCKET = 44040192, + TADPOLE_SPAWN_EGG = 43974656, + TALL_DRY_GRASS = -67436544, + TALL_GRASS = -56623104, + TARGET = -15663104, + TIDE_ARMOR_TRIM_SMITHING_TEMPLATE = 47906816, + TINTED_GLASS = -21889024, + TNT = 3014656, + TNT_MINECART = 36962304, + TORCH = 3276800, + TORCHFLOWER = -37224448, + TORCHFLOWER_SEEDS = 21299200, + TOTEM_OF_UNDYING = 39780352, + TRADER_LLAMA_SPAWN_EGG = 45219840, + TRAPDOOR = 6291456, + TRAPPED_CHEST = 9568256, + TRIAL_KEY = 18546688, + TRIAL_SPAWNER = -20643840, + TRIDENT = 38338560, + TRIPWIRE_HOOK = 8585216, + TROPICAL_FISH = 19333120, + TROPICAL_FISH_BUCKET = 26083328, + TROPICAL_FISH_SPAWN_EGG = 33619968, + TUBE_CORAL = -8585216, + TUBE_CORAL_BLOCK = -8650752, + TUBE_CORAL_FAN = -8716288, + TUFF = -21823488, + TUFF_BRICK_SLAB = -49479680, + TUFF_BRICK_STAIRS = -49610752, + TUFF_BRICK_WALL = -49676288, + TUFF_BRICKS = -49414144, + TUFF_SLAB = -48758784, + TUFF_STAIRS = -48889856, + TUFF_WALL = -48955392, + TURTLE_EGG = -10420224, + TURTLE_HELMET = 40108032, + TURTLE_SCUTE = 40042496, + TURTLE_SPAWN_EGG = 34013184, + TWISTING_VINES = -18808832, + UNDYED_SHULKER_BOX = 13434880, + VAULT = -20578304, + VERDANT_FROGLIGHT = -30801920, + VEX_ARMOR_TRIM_SMITHING_TEMPLATE = 47841280, + VEX_SPAWN_EGG = 33423360, + VILLAGER_SPAWN_EGG = 31588352, + VINDICATOR_SPAWN_EGG = 33292288, + VINE = 6946816, + WANDERING_TRADER_SPAWN_EGG = 34471936, + WARD_ARMOR_TRIM_SMITHING_TEMPLATE = 47710208, + WARDEN_SPAWN_EGG = 44171264, + WARPED_BUTTON = -17104896, + WARPED_DOOR = 43253760, + WARPED_FENCE = -16842752, + WARPED_FENCE_GATE = -16973824, + WARPED_FUNGUS = -15007744, + WARPED_FUNGUS_ON_A_STICK = 43319296, + WARPED_HANGING_SIGN = -33226752, + WARPED_HYPHAE = -19529728, + WARPED_NYLIUM = -15269888, + WARPED_PLANKS = -15925248, + WARPED_PRESSURE_PLATE = -17235968, + WARPED_ROOTS = -14680064, + WARPED_SHELF = -69337088, + WARPED_SIGN = 43122688, + WARPED_SLAB = -17367040, + WARPED_STAIRS = -16711680, + WARPED_STEM = -14811136, + WARPED_TRAPDOOR = -16187392, + WARPED_WART_BLOCK = -14876672, + WATER_BUCKET = 25821184, + WATERLILY = 7274496, + WAXED_CHISELED_COPPER = -50069504, + WAXED_COPPER = -22544384, + WAXED_COPPER_BARS = -70123520, + WAXED_COPPER_BULB = -51118080, + WAXED_COPPER_CHAIN = -70647808, + WAXED_COPPER_CHEST = -67829760, + WAXED_COPPER_DOOR = -51642368, + WAXED_COPPER_GOLEM_STATUE = -68354048, + WAXED_COPPER_GRATE = -50593792, + WAXED_COPPER_LANTERN = -71237632, + WAXED_COPPER_TRAPDOOR = -52166656, + WAXED_CUT_COPPER = -23003136, + WAXED_CUT_COPPER_SLAB = -23920640, + WAXED_CUT_COPPER_STAIRS = -23461888, + WAXED_EXPOSED_CHISELED_COPPER = -50135040, + WAXED_EXPOSED_COPPER = -22609920, + WAXED_EXPOSED_COPPER_BARS = -70189056, + WAXED_EXPOSED_COPPER_BULB = -51183616, + WAXED_EXPOSED_COPPER_CHAIN = -70713344, + WAXED_EXPOSED_COPPER_CHEST = -67895296, + WAXED_EXPOSED_COPPER_DOOR = -51707904, + WAXED_EXPOSED_COPPER_GOLEM_STATUE = -68419584, + WAXED_EXPOSED_COPPER_GRATE = -50659328, + WAXED_EXPOSED_COPPER_LANTERN = -71303168, + WAXED_EXPOSED_COPPER_TRAPDOOR = -52232192, + WAXED_EXPOSED_CUT_COPPER = -23068672, + WAXED_EXPOSED_CUT_COPPER_SLAB = -23986176, + WAXED_EXPOSED_CUT_COPPER_STAIRS = -23527424, + WAXED_EXPOSED_LIGHTNING_ROD = -69664768, + WAXED_LIGHTNING_ROD = -69599232, + WAXED_OXIDIZED_CHISELED_COPPER = -50200576, + WAXED_OXIDIZED_COPPER = -29229056, + WAXED_OXIDIZED_COPPER_BARS = -70320128, + WAXED_OXIDIZED_COPPER_BULB = -51314688, + WAXED_OXIDIZED_COPPER_CHAIN = -70844416, + WAXED_OXIDIZED_COPPER_CHEST = -68026368, + WAXED_OXIDIZED_COPPER_DOOR = -51838976, + WAXED_OXIDIZED_COPPER_GOLEM_STATUE = -68550656, + WAXED_OXIDIZED_COPPER_GRATE = -50790400, + WAXED_OXIDIZED_COPPER_LANTERN = -71434240, + WAXED_OXIDIZED_COPPER_TRAPDOOR = -52363264, + WAXED_OXIDIZED_CUT_COPPER = -29294592, + WAXED_OXIDIZED_CUT_COPPER_SLAB = -29425664, + WAXED_OXIDIZED_CUT_COPPER_STAIRS = -29360128, + WAXED_OXIDIZED_LIGHTNING_ROD = -69795840, + WAXED_WEATHERED_CHISELED_COPPER = -50266112, + WAXED_WEATHERED_COPPER = -22675456, + WAXED_WEATHERED_COPPER_BARS = -70254592, + WAXED_WEATHERED_COPPER_BULB = -51249152, + WAXED_WEATHERED_COPPER_CHAIN = -70778880, + WAXED_WEATHERED_COPPER_CHEST = -67960832, + WAXED_WEATHERED_COPPER_DOOR = -51773440, + WAXED_WEATHERED_COPPER_GOLEM_STATUE = -68485120, + WAXED_WEATHERED_COPPER_GRATE = -50724864, + WAXED_WEATHERED_COPPER_LANTERN = -71368704, + WAXED_WEATHERED_COPPER_TRAPDOOR = -52297728, + WAXED_WEATHERED_CUT_COPPER = -23134208, + WAXED_WEATHERED_CUT_COPPER_SLAB = -24051712, + WAXED_WEATHERED_CUT_COPPER_STAIRS = -23592960, + WAXED_WEATHERED_LIGHTNING_ROD = -69730304, + WAYFINDER_ARMOR_TRIM_SMITHING_TEMPLATE = 48234496, + WEATHERED_CHISELED_COPPER = -49938432, + WEATHERED_COPPER = -22413312, + WEATHERED_COPPER_BARS = -69992448, + WEATHERED_COPPER_BULB = -50987008, + WEATHERED_COPPER_CHAIN = -70516736, + WEATHERED_COPPER_CHEST = -67698688, + WEATHERED_COPPER_DOOR = -51511296, + WEATHERED_COPPER_GOLEM_STATUE = -68222976, + WEATHERED_COPPER_GRATE = -50462720, + WEATHERED_COPPER_LANTERN = -71106560, + WEATHERED_COPPER_TRAPDOOR = -52035584, + WEATHERED_CUT_COPPER = -22872064, + WEATHERED_CUT_COPPER_SLAB = -23789568, + WEATHERED_CUT_COPPER_STAIRS = -23330816, + WEATHERED_LIGHTNING_ROD = -69468160, + WEB = 1966080, + WEEPING_VINES = -15138816, + WET_SPONGE = -64487424, + WHEAT = 23986176, + WHEAT_SEEDS = 20971520, + WHITE_BUNDLE = 18284544, + WHITE_CANDLE = -27066368, + WHITE_CARPET = 11206656, + WHITE_CONCRETE = 15466496, + WHITE_CONCRETE_POWDER = 15532032, + WHITE_DYE = 28966912, + WHITE_GLAZED_TERRACOTTA = 14417920, + WHITE_HARNESS = 50462720, + WHITE_SHULKER_BOX = 14286848, + WHITE_STAINED_GLASS = 15794176, + WHITE_STAINED_GLASS_PANE = 10485760, + WHITE_TERRACOTTA = 10420224, + WHITE_TULIP = -54722560, + WHITE_WOOL = 2293760, + WILD_ARMOR_TRIM_SMITHING_TEMPLATE = 47644672, + WILDFLOWERS = -67108864, + WIND_CHARGE = 18612224, + WITCH_SPAWN_EGG = 31784960, + WITHER_ROSE = -14155776, + WITHER_SKELETON_SKULL = -63242240, + WITHER_SKELETON_SPAWN_EGG = 32636928, + WITHER_SPAWN_EGG = 35520512, + WOLF_ARMOR = 48955392, + WOLF_SPAWN_EGG = 30932992, + WOODEN_AXE = 22413312, + WOODEN_BUTTON = 9371648, + WOODEN_DOOR = 25624576, + WOODEN_HOE = 23658496, + WOODEN_PICKAXE = 22347776, + WOODEN_PRESSURE_PLATE = 4718592, + WOODEN_SHOVEL = 22282240, + WOODEN_SPEAR = 17235968, + WOODEN_SWORD = 22216704, + WRITABLE_BOOK = 36044800, + YELLOW_BUNDLE = 18350080, + YELLOW_CANDLE = -27328512, + YELLOW_CARPET = -39321600, + YELLOW_CONCRETE = -41353216, + YELLOW_CONCRETE_POWDER = -46661632, + YELLOW_DYE = 28704768, + YELLOW_GLAZED_TERRACOTTA = 14680064, + YELLOW_HARNESS = 50528256, + YELLOW_SHULKER_BOX = -40370176, + YELLOW_STAINED_GLASS = -44302336, + YELLOW_STAINED_GLASS_PANE = -42336256, + YELLOW_TERRACOTTA = -47644672, + YELLOW_WOOL = -36569088, + ZOGLIN_SPAWN_EGG = 34865152, + ZOMBIE_HEAD = -63307776, + ZOMBIE_HORSE_SPAWN_EGG = 32899072, + ZOMBIE_NAUTILUS_SPAWN_EGG = 51445760, + ZOMBIE_PIGMAN_SPAWN_EGG = 31522816, + ZOMBIE_SPAWN_EGG = 31457280, + ZOMBIE_VILLAGER_SPAWN_EGG = 33488896, +} \ No newline at end of file diff --git a/src/types/properties/element/Cycler.ts b/src/types/properties/element/Cycler.ts index 6da7a37..b27fd19 100644 --- a/src/types/properties/element/Cycler.ts +++ b/src/types/properties/element/Cycler.ts @@ -2,6 +2,7 @@ import { Value } from "../value.js" export interface Image { texture_path?: Value + texture?: Value } export interface Cycler { diff --git a/test/app.ts b/test/app.ts index 618aab1..ec5fa49 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1,7 +1,9 @@ -import { Extends, GlobalVariables, Modify } from ".." +import { Anchor, Modify, Properties } from ".." -const vanilla = Modify("anvil_pocket", "slots_panel").setProperties({ +const vanilla = Modify("authentication_modals", "ad_modal_dialog").setProperties({ ignored: true, + anchor: Anchor.CENTER, + offset: [10, 10], }) -console.log(vanilla.path) +console.log(vanilla) From cacc6413785358bcafca380d9ad4dcb073cec1cc Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sun, 18 Jan 2026 12:41:46 +0700 Subject: [PATCH 011/245] add npmignore and LICENSE --- .npmignore | 8 + LICENSE | 674 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 682 insertions(+) create mode 100644 .npmignore create mode 100644 LICENSE diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..3525fde --- /dev/null +++ b/.npmignore @@ -0,0 +1,8 @@ +cache +node_modules +scripts +src +test +.gitignore +.tsbuildinfo +tsconfig.json \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..e72bfdd --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. \ No newline at end of file From b3b21f3101bbce7d5669fdf918bb96641b923fdb Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sun, 18 Jan 2026 20:46:18 +0700 Subject: [PATCH 012/245] port lexer to cpp --- .gitignore | 1 + binding.gyp | 16 ++++ package-lock.json | 54 ++++++++++-- package.json | 10 ++- src/compilers/Bindings.ts | 14 ++++ src/compilers/bindings/Checker.ts | 4 + src/compilers/bindings/Parser.ts | 6 +- src/components/Modify.ts | 8 -- src/components/UI.ts | 42 +++++++++- src/components/Utils.ts | 9 +- src/index.ts | 3 +- src/native/main.cc | 131 ++++++++++++++++++++++++++++++ test/app.ts | 10 +-- 13 files changed, 276 insertions(+), 32 deletions(-) create mode 100644 binding.gyp create mode 100644 src/compilers/Bindings.ts delete mode 100644 src/components/Modify.ts create mode 100644 src/native/main.cc diff --git a/.gitignore b/.gitignore index 98de768..83d1a01 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +build dist cache node_modules diff --git a/binding.gyp b/binding.gyp new file mode 100644 index 0000000..3a41ba1 --- /dev/null +++ b/binding.gyp @@ -0,0 +1,16 @@ +{ + "targets": [ + { + "target_name": "asajs-compiler", + "sources": [ + "src/native/main.cc", + ], + + "dependencies": [ + "= 21" + } + }, + "node_modules/node-api-headers": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/node-api-headers/-/node-api-headers-1.7.0.tgz", + "integrity": "sha512-uJMGdkhVwu9+I3UsVvI3KW6ICAy/yDfsu5Br9rSnTtY3WpoaComXvKloiV5wtx0Md2rn0B9n29Ys2WMNwWxj9A==", + "dev": true, + "license": "MIT" + }, "node_modules/typescript": { "version": "5.9.3", "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", @@ -50,7 +93,6 @@ "version": "7.16.0", "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", - "dev": true, "license": "MIT" } } diff --git a/package.json b/package.json index f23656a..2d9425e 100644 --- a/package.json +++ b/package.json @@ -22,9 +22,9 @@ "scripts": { "build": "tsc", "dev": "tsc --watch", - "test": "bun test/app.ts", - "test:watch": "bun --watch test/app.ts", "prefetch": "bun scripts/prefetch", + "native:build": "node-gyp build", + "native:rebuild": "node-gyp rebuild", "vanilla:defs": "bun scripts/vanilladefs", "gen:enums": "bun scripts/enum", "gen:items": "bun scripts/items", @@ -32,9 +32,13 @@ }, "devDependencies": { "@types/node": "^25.0.3", + "node-api-headers": "^1.7.0", "typescript": "^5.9.3" }, "dependencies": { - "jsonc-parser": "^3.3.1" + "@types/bindings": "^1.5.5", + "bindings": "^1.5.0", + "jsonc-parser": "^3.3.1", + "node-addon-api": "^8.5.0" } } diff --git a/src/compilers/Bindings.ts b/src/compilers/Bindings.ts new file mode 100644 index 0000000..d1b999e --- /dev/null +++ b/src/compilers/Bindings.ts @@ -0,0 +1,14 @@ +import bindings from "bindings" +import { Token } from "./bindings/types.js" + +export const { + Lexer, + isBlankChar, + isWordChar, + isNumberChar, +}: { + Lexer: (input: string) => Token[] + isBlankChar: (char: string) => boolean + isWordChar: (char: string) => boolean + isNumberChar: (char: string) => boolean +} = bindings("asajs-compiler") diff --git a/src/compilers/bindings/Checker.ts b/src/compilers/bindings/Checker.ts index 542752c..3f985ee 100644 --- a/src/compilers/bindings/Checker.ts +++ b/src/compilers/bindings/Checker.ts @@ -9,3 +9,7 @@ export function isWordChar(char: string) { export function isNumberChar(char: string) { return /\d/.test(char) } + +export function isCompileBinding(input: string) { + return input.startsWith("[") && input.endsWith("]") +} diff --git a/src/compilers/bindings/Parser.ts b/src/compilers/bindings/Parser.ts index 6f9f6a9..2b9373a 100644 --- a/src/compilers/bindings/Parser.ts +++ b/src/compilers/bindings/Parser.ts @@ -1,8 +1,8 @@ +import { Expression, GenBinding, Token, TokenKind, TSToken, TSTokenKind } from "./types.js" import { BindingType } from "../../types/enums/BindingType.js" import { BindingItem } from "../../types/properties/value.js" import { FuntionMap } from "./Funtion.js" import { Lexer } from "./Lexer.js" -import { Expression, GenBinding, Token, TokenKind, TSToken, TSTokenKind } from "./types.js" export class Parser { position: number = 0 @@ -240,14 +240,14 @@ export class Parser { this.eat() return this.funtionCall(callerToken.value, ...args) - } else if (left.kind === TokenKind.OPERATOR) { + } else if (left?.kind === TokenKind.OPERATOR) { this.warn( `Implicit string literal '${callerToken.value}'. Use quoted string ('${callerToken.value}') for clarity!`, callerToken, ) return callerToken.value } else { - this.expect(TokenKind.OPERATOR, "Unexpected token!") + this.expect(TokenKind.WORD, "Unexpected token!") return callerToken.value } } diff --git a/src/components/Modify.ts b/src/components/Modify.ts deleted file mode 100644 index 7edfa42..0000000 --- a/src/components/Modify.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { IntelliSense, Namespace, Element, VanillaType } from "../types/vanilla/intellisense.js" -import { paths } from "../types/vanilla/paths.js" -import { UI } from "./UI.js" - -export function Modify>(namespace: T, name: K) { - // @ts-ignore -- TS cannot prove this, but runtime guarantees it - return new UI>(undefined, name, namespace, paths[namespace][name]) -} diff --git a/src/components/UI.ts b/src/components/UI.ts index d4d8aaa..dcdc59c 100644 --- a/src/components/UI.ts +++ b/src/components/UI.ts @@ -1,8 +1,11 @@ +import { isCompileBinding } from "../compilers/bindings/Checker.js" +import { Parser } from "../compilers/bindings/Parser.js" import { FormatProperties } from "../compilers/FormatProperties.js" -import { Memory } from "../compilers/Memory.js" +import { BindingType } from "../types/enums/BindingType.js" import { Renderer } from "../types/enums/Renderer.js" import { Type } from "../types/enums/Type.js" import { Properties } from "../types/properties/components.js" +import { BindingItem } from "../types/properties/value.js" import { Class } from "./Class.js" import { RandomString } from "./Utils.js" @@ -18,6 +21,7 @@ export class UI extends Class extendable: boolean controls = new Map, Properties]>() + bindings: BindingItem[] = [] properties: Properties = {} constructor( @@ -47,6 +51,23 @@ export class UI extends Class return this } + 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 + } + + binding.binding_type = BindingType.VIEW + + if (!binding.target_property_name) throw new Error("Binding must have a target property name") + } + this.bindings.push(binding) + } + } + addChild(child: UI, properties?: Properties, name?: string) { if (this === child) { throw new Error("Cannot add a child to itself") @@ -69,6 +90,10 @@ export class UI extends Class 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] })) @@ -78,7 +103,13 @@ export class UI extends Class } [util.inspect.custom]($: any, opts: any) { - const obj: any = FormatProperties(this.properties) + const obj: any = { + ...FormatProperties(this.properties), + } + + if (this.bindings.length) { + obj.bindings = this.bindings + } if (this.controls.size) { obj.controls = [] @@ -90,3 +121,10 @@ export class UI extends Class }\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) + } +} diff --git a/src/components/Utils.ts b/src/components/Utils.ts index 7f70ac8..108270a 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -1,6 +1,6 @@ import { Type } from "../types/enums/Type.js" import { Array3, Binding } from "../types/properties/value.js" -import { UI } from "./UI.js" +import { ModifyUI, UI } from "./UI.js" import { Renderer } from "../types/enums/Renderer.js" import { @@ -27,6 +27,8 @@ import { SliderBox, } from "../types/properties/components.js" import { ItemAuxID } from "../types/enums/Items.js" +import { Element, Namespace, VanillaType } from "../types/vanilla/intellisense.js" +import { paths } from "../types/vanilla/paths.js" const CHARS = "0123456789abcdefghijklmnopqrstuvwxyz" @@ -86,6 +88,11 @@ export function GetItemByAuxID(auxID: number) { } // Quick Elements +export function Modify>(namespace: T, name: K) { + // @ts-ignore -- TS cannot prove this, but runtime guarantees it + return new ModifyUI>(name, namespace, paths[namespace][name]) +} + export function Panel(properties?: Panel, name?: string, namespace?: string) { return new UI(Type.PANEL, name, namespace).setProperties(properties || {}) } diff --git a/src/index.ts b/src/index.ts index 2d6bf04..7e3c79a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -3,10 +3,11 @@ import "./compilers/RunEnd.js" export * from "./components/Animation.js" export * from "./components/UI.js" -export * from "./components/Modify.js" export * from "./components/Utils.js" export * from "./types/enums/index.js" export * as Properties from "./types/properties/index.js" +export * from "./compilers/Bindings.js" + export { ItemAuxID } from "./types/enums/Items.js" diff --git a/src/native/main.cc b/src/native/main.cc new file mode 100644 index 0000000..2d0e434 --- /dev/null +++ b/src/native/main.cc @@ -0,0 +1,131 @@ +#include +#include + +enum TokenKind { + VARIABLE, + NUMBER, + STRING, + TEMPLATE_STRING, + WORD, + + OPEN_PARENTHESIS, + CLOSE_PARENTHESIS, + + OPERATOR, + COMMA, +}; + +namespace Lexer { + bool isBlankChar(char c) { + std::regex pattern(R"(\s)"); + return std::regex_match(std::string(1, c), pattern); + }; + + bool isWordChar(char c) { + std::regex pattern(R"(\w)"); + return std::regex_match(std::string(1, c), pattern); + } + + bool isNumberChar(char c) { + std::regex pattern(R"(\d)"); + return std::regex_match(std::string(1, c), pattern); + } + + Napi::Object makeToken(Napi::Env &env, const std::string &input, TokenKind kind, size_t start, size_t length) { + Napi::Object token = Napi::Object::New(env); + + token.Set(Napi::String::New(env, "start"), Napi::Number::New(env, start)); + token.Set(Napi::String::New(env, "length"), Napi::Number::New(env, length)); + token.Set(Napi::String::New(env, "kind"), Napi::Number::New(env, kind)); + token.Set(Napi::String::New(env, "value"), Napi::String::New(env, input.substr(start, length))); + + return token; + } + + Napi::Array Lexer(const Napi::CallbackInfo &info) { + Napi::Env env = info.Env(); + + Napi::Function consoleLog = env.Global().Get("console").As().Get("log").As(); + + if (info.Length() != 1) { + Napi::TypeError::New(env, "One string argument required").ThrowAsJavaScriptException(); + return Napi::Array::New(env, 0); + } + + if (!info[0].IsString()) { + Napi::TypeError::New(env, "Input must be a string").ThrowAsJavaScriptException(); + return Napi::Array::New(env, 0); + } + + const std::string input = info[0].As().Utf8Value(); + const size_t length = input.size(); + + if (length == 0) { + return Napi::Array::New(env, 0); + } + + std::vector tokens; + + size_t index = 0; + while (index < length) { + char c = input[index]; + + switch (c) { + default: { + size_t start = index; + + if (Lexer::isNumberChar(c)) { + while (Lexer::isNumberChar(input[index + 1])) index++; + tokens.push_back( + Lexer::makeToken(env, input, TokenKind::NUMBER, start, index - start + 1) + ); + } else if (Lexer::isWordChar(c)) { + while (Lexer::isWordChar(input[index + 1])) index++; + tokens.push_back( + Lexer::makeToken(env, input, TokenKind::WORD, start, index - start + 1) + ); + } else if (!Lexer::isBlankChar(c)) { + return Napi::Array::New(env, 0); + } + } + }; + + index++; + } + + size_t tokenLength = tokens.size(); + Napi::Array result = Napi::Array::New(env, tokenLength); + + for (size_t i = 0; i < tokenLength; i++) { + result.Set(i, tokens[i]); + } + + return result; + } +}; + +Napi::Object Init(Napi::Env env, Napi::Object exports) { + exports.Set( + Napi::String::New(env, "Lexer"), + Napi::Function::New(env, Lexer::Lexer) + ); + + exports.Set( + Napi::String::New(env, "isBlankChar"), + Napi::Function::New(env, Lexer::isBlankChar) + ); + + exports.Set( + Napi::String::New(env, "isWordChar"), + Napi::Function::New(env, Lexer::isWordChar) + ); + + exports.Set( + Napi::String::New(env, "isNumberChar"), + Napi::Function::New(env, Lexer::isNumberChar) + ); + + return exports; +} + +NODE_API_MODULE(NODE_GYP_MODULE_NAME, Init) \ No newline at end of file diff --git a/test/app.ts b/test/app.ts index ec5fa49..6356e7c 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1,9 +1,3 @@ -import { Anchor, Modify, Properties } from ".." +import { AsaJSCompiler } from ".." -const vanilla = Modify("authentication_modals", "ad_modal_dialog").setProperties({ - ignored: true, - anchor: Anchor.CENTER, - offset: [10, 10], -}) - -console.log(vanilla) +console.log(AsaJSCompiler.Lexer("SAYGEX69")) From 6358580eeeffc1a9527ed53e20f4a052bc07a002 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sun, 18 Jan 2026 20:52:00 +0700 Subject: [PATCH 013/245] fix error C2664 --- binding.gyp | 2 +- src/compilers/Bindings.ts | 6 ------ src/native/{main.cc => main.cpp} | 15 --------------- 3 files changed, 1 insertion(+), 22 deletions(-) rename src/native/{main.cc => main.cpp} (89%) diff --git a/binding.gyp b/binding.gyp index 3a41ba1..785d79a 100644 --- a/binding.gyp +++ b/binding.gyp @@ -3,7 +3,7 @@ { "target_name": "asajs-compiler", "sources": [ - "src/native/main.cc", + "src/native/main.cpp", ], "dependencies": [ diff --git a/src/compilers/Bindings.ts b/src/compilers/Bindings.ts index d1b999e..d13c8df 100644 --- a/src/compilers/Bindings.ts +++ b/src/compilers/Bindings.ts @@ -3,12 +3,6 @@ import { Token } from "./bindings/types.js" export const { Lexer, - isBlankChar, - isWordChar, - isNumberChar, }: { Lexer: (input: string) => Token[] - isBlankChar: (char: string) => boolean - isWordChar: (char: string) => boolean - isNumberChar: (char: string) => boolean } = bindings("asajs-compiler") diff --git a/src/native/main.cc b/src/native/main.cpp similarity index 89% rename from src/native/main.cc rename to src/native/main.cpp index 2d0e434..91c44a4 100644 --- a/src/native/main.cc +++ b/src/native/main.cpp @@ -110,21 +110,6 @@ Napi::Object Init(Napi::Env env, Napi::Object exports) { Napi::Function::New(env, Lexer::Lexer) ); - exports.Set( - Napi::String::New(env, "isBlankChar"), - Napi::Function::New(env, Lexer::isBlankChar) - ); - - exports.Set( - Napi::String::New(env, "isWordChar"), - Napi::Function::New(env, Lexer::isWordChar) - ); - - exports.Set( - Napi::String::New(env, "isNumberChar"), - Napi::Function::New(env, Lexer::isNumberChar) - ); - return exports; } From 6b93909e7e3809cb7ceef57b5064ca3788167a48 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sun, 18 Jan 2026 21:51:52 +0700 Subject: [PATCH 014/245] idk --- .vscode/c_cpp_properties.json | 15 +++++++ binding.gyp | 6 ++- src/index.ts | 3 +- src/native/main.cpp | 81 ++++++++++++++++++++++++++++++++--- test/app.ts | 18 +++++++- 5 files changed, 114 insertions(+), 9 deletions(-) create mode 100644 .vscode/c_cpp_properties.json diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..7e2c842 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,15 @@ +{ + "configurations": [ + { + "name": "Win32", + "includePath": ["${workspaceFolder}/**"], + "defines": ["_DEBUG", "UNICODE", "_UNICODE"], + "windowsSdkVersion": "10.0.26100.0", + "compilerPath": "cl.exe", + "cStandard": "c17", + "cppStandard": "c++20", + "intelliSenseMode": "windows-msvc-x64" + } + ], + "version": 4 +} diff --git a/binding.gyp b/binding.gyp index 785d79a..3e05f8b 100644 --- a/binding.gyp +++ b/binding.gyp @@ -10,7 +10,11 @@ " +#include #include enum TokenKind { @@ -31,7 +32,7 @@ namespace Lexer { return std::regex_match(std::string(1, c), pattern); } - Napi::Object makeToken(Napi::Env &env, const std::string &input, TokenKind kind, size_t start, size_t length) { + Napi::Object makeToken(Napi::Env &env, const std::string &input, TokenKind kind, size_t start, size_t length = 1) { Napi::Object token = Napi::Object::New(env); token.Set(Napi::String::New(env, "start"), Napi::Number::New(env, start)); @@ -71,8 +72,71 @@ namespace Lexer { char c = input[index]; switch (c) { + // Literals + case '#': + case '$': { + const size_t start = index++; + + while (index < length) { + const char c = input[index]; + if (Lexer::isWordChar(c)) index++; + else break; + } + + tokens.push_back(makeToken(env, input, TokenKind::VARIABLE, start, index-- - start)); + break; + } break; + + case '\'': { + const size_t start = index++; + + while (index < length) { + const char c = input[index]; + if (c == '\'') break; + index++; + } + + tokens.push_back(makeToken(env, input, TokenKind::STRING, start, index - start + 1)); + } break; + + case ',': + tokens.push_back(makeToken(env, input, TokenKind::COMMA, index)); + break; + + // Single operators + case '+': + case '-': + case '*': + case '/': + case '%': + tokens.push_back(makeToken(env, input, TokenKind::OPERATOR, index)); + break; + + case '(': + tokens.push_back(makeToken(env, input, TokenKind::OPEN_PARENTHESIS, index)); + break; + + case ')': + tokens.push_back(makeToken(env, input, TokenKind::CLOSE_PARENTHESIS, index)); + break; + + // Double operators + case '&': + case '|': + case '=': + if (input[index + 1] == input[index]) tokens.push_back(makeToken(env, input, TokenKind::OPERATOR, index++, 2)); + else tokens.push_back(makeToken(env, input, TokenKind::OPERATOR, index)); + break; + + case '!': + case '>': + case '<': + if (input[index + 1] == '=') tokens.push_back(makeToken(env, input, TokenKind::OPERATOR, index++, 2)); + else tokens.push_back(makeToken(env, input, TokenKind::OPERATOR, index)); + break; + default: { - size_t start = index; + const size_t start = index; if (Lexer::isNumberChar(c)) { while (Lexer::isNumberChar(input[index + 1])) index++; @@ -85,9 +149,17 @@ namespace Lexer { Lexer::makeToken(env, input, TokenKind::WORD, start, index - start + 1) ); } else if (!Lexer::isBlankChar(c)) { + std::string message = std::format( + "\x1b[31m{}>>>{}<<<{}\nInvalid character\x1b[0m", + input.substr(0, start), + input.substr(start, index - start + 1), + input.substr(index + 1) + ); + + Napi::TypeError::New(env, Napi::String::New(env, message)).ThrowAsJavaScriptException(); return Napi::Array::New(env, 0); } - } + } break; }; index++; @@ -96,9 +168,8 @@ namespace Lexer { size_t tokenLength = tokens.size(); Napi::Array result = Napi::Array::New(env, tokenLength); - for (size_t i = 0; i < tokenLength; i++) { + for (size_t i = 0; i < tokenLength; i++) result.Set(i, tokens[i]); - } return result; } diff --git a/test/app.ts b/test/app.ts index 6356e7c..39d8a4b 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1,3 +1,17 @@ -import { AsaJSCompiler } from ".." +import { Lexer, NativeLexer } from ".." -console.log(AsaJSCompiler.Lexer("SAYGEX69")) +const input = Array.from( + { length: 50 }, + () => + "#test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <=", +).join(" ") + +const nn = performance.now() +NativeLexer(input) +const nt = performance.now() + +const n = performance.now() +Lexer(input) +const t = performance.now() + +console.log(`Native: ${nt - nn}ms, JS: ${t - n}ms`) From 6817734ed9a46a92e00db93fb7e8a99547ee6327 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sun, 18 Jan 2026 21:54:59 +0700 Subject: [PATCH 015/245] Remove node-addon-api because it is slower than native Node.js --- .vscode/c_cpp_properties.json | 15 --- binding.gyp | 20 ---- package-lock.json | 48 +-------- package.json | 6 +- src/compilers/Bindings.ts | 8 -- src/index.ts | 3 - src/native/main.cpp | 187 ---------------------------------- test/app.ts | 18 +--- 8 files changed, 5 insertions(+), 300 deletions(-) delete mode 100644 .vscode/c_cpp_properties.json delete mode 100644 binding.gyp delete mode 100644 src/compilers/Bindings.ts delete mode 100644 src/native/main.cpp diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json deleted file mode 100644 index 7e2c842..0000000 --- a/.vscode/c_cpp_properties.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "configurations": [ - { - "name": "Win32", - "includePath": ["${workspaceFolder}/**"], - "defines": ["_DEBUG", "UNICODE", "_UNICODE"], - "windowsSdkVersion": "10.0.26100.0", - "compilerPath": "cl.exe", - "cStandard": "c17", - "cppStandard": "c++20", - "intelliSenseMode": "windows-msvc-x64" - } - ], - "version": 4 -} diff --git a/binding.gyp b/binding.gyp deleted file mode 100644 index 3e05f8b..0000000 --- a/binding.gyp +++ /dev/null @@ -1,20 +0,0 @@ -{ - "targets": [ - { - "target_name": "asajs-compiler", - "sources": [ - "src/native/main.cpp", - ], - - "dependencies": [ - "= 21" - } - }, - "node_modules/node-api-headers": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/node-api-headers/-/node-api-headers-1.7.0.tgz", - "integrity": "sha512-uJMGdkhVwu9+I3UsVvI3KW6ICAy/yDfsu5Br9rSnTtY3WpoaComXvKloiV5wtx0Md2rn0B9n29Ys2WMNwWxj9A==", - "dev": true, - "license": "MIT" - }, "node_modules/typescript": { "version": "5.9.3", "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", @@ -93,6 +50,7 @@ "version": "7.16.0", "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "dev": true, "license": "MIT" } } diff --git a/package.json b/package.json index 2d9425e..ac9eb35 100644 --- a/package.json +++ b/package.json @@ -32,13 +32,9 @@ }, "devDependencies": { "@types/node": "^25.0.3", - "node-api-headers": "^1.7.0", "typescript": "^5.9.3" }, "dependencies": { - "@types/bindings": "^1.5.5", - "bindings": "^1.5.0", - "jsonc-parser": "^3.3.1", - "node-addon-api": "^8.5.0" + "jsonc-parser": "^3.3.1" } } diff --git a/src/compilers/Bindings.ts b/src/compilers/Bindings.ts deleted file mode 100644 index d13c8df..0000000 --- a/src/compilers/Bindings.ts +++ /dev/null @@ -1,8 +0,0 @@ -import bindings from "bindings" -import { Token } from "./bindings/types.js" - -export const { - Lexer, -}: { - Lexer: (input: string) => Token[] -} = bindings("asajs-compiler") diff --git a/src/index.ts b/src/index.ts index cb8a536..6fbd040 100644 --- a/src/index.ts +++ b/src/index.ts @@ -8,7 +8,4 @@ export * from "./components/Utils.js" export * from "./types/enums/index.js" export * as Properties from "./types/properties/index.js" -export { Lexer as NativeLexer } from "./compilers/Bindings.js" -export { Lexer } from "./compilers/bindings/Lexer.js" - export { ItemAuxID } from "./types/enums/Items.js" diff --git a/src/native/main.cpp b/src/native/main.cpp deleted file mode 100644 index fed1bf3..0000000 --- a/src/native/main.cpp +++ /dev/null @@ -1,187 +0,0 @@ -#include -#include -#include - -enum TokenKind { - VARIABLE, - NUMBER, - STRING, - TEMPLATE_STRING, - WORD, - - OPEN_PARENTHESIS, - CLOSE_PARENTHESIS, - - OPERATOR, - COMMA, -}; - -namespace Lexer { - bool isBlankChar(char c) { - std::regex pattern(R"(\s)"); - return std::regex_match(std::string(1, c), pattern); - }; - - bool isWordChar(char c) { - std::regex pattern(R"(\w)"); - return std::regex_match(std::string(1, c), pattern); - } - - bool isNumberChar(char c) { - std::regex pattern(R"(\d)"); - return std::regex_match(std::string(1, c), pattern); - } - - Napi::Object makeToken(Napi::Env &env, const std::string &input, TokenKind kind, size_t start, size_t length = 1) { - Napi::Object token = Napi::Object::New(env); - - token.Set(Napi::String::New(env, "start"), Napi::Number::New(env, start)); - token.Set(Napi::String::New(env, "length"), Napi::Number::New(env, length)); - token.Set(Napi::String::New(env, "kind"), Napi::Number::New(env, kind)); - token.Set(Napi::String::New(env, "value"), Napi::String::New(env, input.substr(start, length))); - - return token; - } - - Napi::Array Lexer(const Napi::CallbackInfo &info) { - Napi::Env env = info.Env(); - - Napi::Function consoleLog = env.Global().Get("console").As().Get("log").As(); - - if (info.Length() != 1) { - Napi::TypeError::New(env, "One string argument required").ThrowAsJavaScriptException(); - return Napi::Array::New(env, 0); - } - - if (!info[0].IsString()) { - Napi::TypeError::New(env, "Input must be a string").ThrowAsJavaScriptException(); - return Napi::Array::New(env, 0); - } - - const std::string input = info[0].As().Utf8Value(); - const size_t length = input.size(); - - if (length == 0) { - return Napi::Array::New(env, 0); - } - - std::vector tokens; - - size_t index = 0; - while (index < length) { - char c = input[index]; - - switch (c) { - // Literals - case '#': - case '$': { - const size_t start = index++; - - while (index < length) { - const char c = input[index]; - if (Lexer::isWordChar(c)) index++; - else break; - } - - tokens.push_back(makeToken(env, input, TokenKind::VARIABLE, start, index-- - start)); - break; - } break; - - case '\'': { - const size_t start = index++; - - while (index < length) { - const char c = input[index]; - if (c == '\'') break; - index++; - } - - tokens.push_back(makeToken(env, input, TokenKind::STRING, start, index - start + 1)); - } break; - - case ',': - tokens.push_back(makeToken(env, input, TokenKind::COMMA, index)); - break; - - // Single operators - case '+': - case '-': - case '*': - case '/': - case '%': - tokens.push_back(makeToken(env, input, TokenKind::OPERATOR, index)); - break; - - case '(': - tokens.push_back(makeToken(env, input, TokenKind::OPEN_PARENTHESIS, index)); - break; - - case ')': - tokens.push_back(makeToken(env, input, TokenKind::CLOSE_PARENTHESIS, index)); - break; - - // Double operators - case '&': - case '|': - case '=': - if (input[index + 1] == input[index]) tokens.push_back(makeToken(env, input, TokenKind::OPERATOR, index++, 2)); - else tokens.push_back(makeToken(env, input, TokenKind::OPERATOR, index)); - break; - - case '!': - case '>': - case '<': - if (input[index + 1] == '=') tokens.push_back(makeToken(env, input, TokenKind::OPERATOR, index++, 2)); - else tokens.push_back(makeToken(env, input, TokenKind::OPERATOR, index)); - break; - - default: { - const size_t start = index; - - if (Lexer::isNumberChar(c)) { - while (Lexer::isNumberChar(input[index + 1])) index++; - tokens.push_back( - Lexer::makeToken(env, input, TokenKind::NUMBER, start, index - start + 1) - ); - } else if (Lexer::isWordChar(c)) { - while (Lexer::isWordChar(input[index + 1])) index++; - tokens.push_back( - Lexer::makeToken(env, input, TokenKind::WORD, start, index - start + 1) - ); - } else if (!Lexer::isBlankChar(c)) { - std::string message = std::format( - "\x1b[31m{}>>>{}<<<{}\nInvalid character\x1b[0m", - input.substr(0, start), - input.substr(start, index - start + 1), - input.substr(index + 1) - ); - - Napi::TypeError::New(env, Napi::String::New(env, message)).ThrowAsJavaScriptException(); - return Napi::Array::New(env, 0); - } - } break; - }; - - index++; - } - - size_t tokenLength = tokens.size(); - Napi::Array result = Napi::Array::New(env, tokenLength); - - for (size_t i = 0; i < tokenLength; i++) - result.Set(i, tokens[i]); - - return result; - } -}; - -Napi::Object Init(Napi::Env env, Napi::Object exports) { - exports.Set( - Napi::String::New(env, "Lexer"), - Napi::Function::New(env, Lexer::Lexer) - ); - - return exports; -} - -NODE_API_MODULE(NODE_GYP_MODULE_NAME, Init) \ No newline at end of file diff --git a/test/app.ts b/test/app.ts index 39d8a4b..6e13e20 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1,17 +1 @@ -import { Lexer, NativeLexer } from ".." - -const input = Array.from( - { length: 50 }, - () => - "#test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <= #test $test 'abcde' test 123 + - * / % , ( ) & && | || = == ! != > >= < <=", -).join(" ") - -const nn = performance.now() -NativeLexer(input) -const nt = performance.now() - -const n = performance.now() -Lexer(input) -const t = performance.now() - -console.log(`Native: ${nt - nn}ms, JS: ${t - n}ms`) +import {} from ".." From 99c294a9ba7c5ea5ac6c5ba34c3a860aade93af2 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 23 Jan 2026 15:15:48 +0700 Subject: [PATCH 016/245] T-T --- package.json | 2 - scripts/autocomplete-build.ts | 2 +- scripts/enum.ts | 1 - src/compilers/Memory.ts | 48 +- src/compilers/RunEnd.ts | 4 +- src/compilers/bindings/Lexer.ts | 175 +- src/compilers/bindings/Parser.ts | 20 +- src/compilers/bindings/types.ts | 2 + src/components/UI.ts | 84 +- src/components/Utils.ts | 67 +- src/types/enums/Type.ts | 70 +- src/types/properties/value.ts | 1 + src/types/vanilla/intellisense.ts | 38450 ++++++++++++++-------------- test/app.ts | 15 +- 14 files changed, 19528 insertions(+), 19413 deletions(-) diff --git a/package.json b/package.json index ac9eb35..465b61f 100644 --- a/package.json +++ b/package.json @@ -23,8 +23,6 @@ "build": "tsc", "dev": "tsc --watch", "prefetch": "bun scripts/prefetch", - "native:build": "node-gyp build", - "native:rebuild": "node-gyp rebuild", "vanilla:defs": "bun scripts/vanilladefs", "gen:enums": "bun scripts/enum", "gen:items": "bun scripts/items", diff --git a/scripts/autocomplete-build.ts b/scripts/autocomplete-build.ts index b18ed9d..e464766 100644 --- a/scripts/autocomplete-build.ts +++ b/scripts/autocomplete-build.ts @@ -9,7 +9,7 @@ function toCamelCase(str: string) { const intelliSense: string[] = [ 'import { Type as T } from "../enums/Type.js"\n', "export type Namespace = keyof IntelliSense;", - "export type Element = IntelliSense[T]", + "export type Element = Extract", "export type VanillaType> = IntelliSense[T][K]\n", "export type IntelliSense = {", ] diff --git a/scripts/enum.ts b/scripts/enum.ts index 8047dce..2669a23 100644 --- a/scripts/enum.ts +++ b/scripts/enum.ts @@ -11,7 +11,6 @@ for (const key in schema) { const data = schema[key] if (data.enum) { const enumName = key.match(/\w+$/)?.[0].toCamelCase(true)! - console.log(enumName) index.push(`export { ${enumName} } from "./${enumName}.js"`) const count = new Map() diff --git a/src/compilers/Memory.ts b/src/compilers/Memory.ts index fcfc5c2..7160a09 100644 --- a/src/compilers/Memory.ts +++ b/src/compilers/Memory.ts @@ -1,3 +1,49 @@ import { Class } from "../components/Class.js" +import { UI } from "../components/UI.js" +import { Renderer } from "../types/enums/Renderer.js" +import { Type } from "../types/enums/Type.js" -export class Memory extends Class {} +type Element = UI +interface FileInterface { + namespace: string + elements: Element[] +} +type Files = Map + +export class Memory extends Class { + protected static files: Files = new Map() + + public static add(element: UI) { + let file = Memory.files.get(element.path) + + if (!file) { + file = { namespace: element.namespace, elements: [] } + Memory.files.set(element.path, file) + } + + if (file.namespace === element.namespace) file.elements.push(element) + else { + console.error(`Namespace mismatch on ${element.name} (${element.namespace} !== ${file.namespace})`) + process.exit(1) + } + } + + public static build() { + const data: Map = new Map() + + Memory.files.entries().forEach(([path, { elements, namespace }]) => { + const record: Record = {} + + elements.forEach(element => { + record[element.name] = element + }) + + data.set(path, { + namespace, + ...record, + }) + }) + + return data + } +} diff --git a/src/compilers/RunEnd.ts b/src/compilers/RunEnd.ts index 69ca4fd..d21c86c 100644 --- a/src/compilers/RunEnd.ts +++ b/src/compilers/RunEnd.ts @@ -1,3 +1,5 @@ import { Memory } from "./Memory.js" -process.on("beforeExit", () => {}) +process.on("beforeExit", () => { + // console.log(Memory.build()) +}) diff --git a/src/compilers/bindings/Lexer.ts b/src/compilers/bindings/Lexer.ts index c56127a..29be94f 100644 --- a/src/compilers/bindings/Lexer.ts +++ b/src/compilers/bindings/Lexer.ts @@ -42,93 +42,6 @@ export function Lexer(input: string, start: number = 0, end?: number) { break } - case "`": { - const tsTokens: TSToken[] = [] - const start = index - - const tokenization = (start: number) => { - while (index < input.length) { - const char = input[index] - if (char === "`") { - index++ - eatString() - } else if (char === "}") { - tsTokens.push({ - kind: TSTokenKind.EXPRESSION, - tokens: Lexer(input, start + 1, index), - }) - break - } - index++ - } - } - - const stringification = (start: number) => { - while (index < input.length) { - const char = input[index] - if (char === "`") { - if (start + 1 !== index) - tsTokens.push({ - kind: TSTokenKind.STRING, - tokens: { - kind: TokenKind.STRING, - start: start + 1, - length: index - start + 1, - value: `'${input.slice(start + 1, index)}'`, - }, - }) - - break - } else if (char === "$" && input[index + 1] === "{") { - tsTokens.push({ - kind: TSTokenKind.STRING, - tokens: { - value: `'${input.slice(start + 1, index)}'`, - kind: TokenKind.STRING, - length: index - start + 1, - start, - }, - }) - tokenization(++index) - start = index - } - index++ - } - } - - const eatString = () => { - while (index < input.length) { - const char = input[index] - - if (char === "`") { - break - } else if (char === "$" && input[index + 1] === "{") { - index++ - eatTemplate() - } - - index++ - } - } - - const eatTemplate = () => { - while (index < input.length) { - const char = input[index] - if (char === "`") { - eatString() - } else if (char === "}") { - break - } - index++ - } - } - - stringification(index++) - tokens.push(makeToken(tsTokens, TokenKind.TEMPLATE_STRING, start, index - start + 1)) - - break - } - case ",": tokens.push(makeToken(input, TokenKind.COMMA, index)) break @@ -165,6 +78,92 @@ export function Lexer(input: string, start: number = 0, end?: number) { else tokens.push(makeToken(input, TokenKind.OPERATOR, index)) break + case "f": + case "F": { + if (input[index + 1] === "'") { + const tsTokens: TSToken[] = [] + const start = ++index + + const tokenization = (start: number) => { + while (index < input.length) { + const char = input[index] + if (char === "'") { + index++ + eatString() + } else if (char === "}") { + tsTokens.push({ + kind: TSTokenKind.EXPRESSION, + tokens: Lexer(input, start + 1, index), + }) + break + } + index++ + } + } + + const stringification = (start: number) => { + while (index < input.length) { + const char = input[index] + if (char === "'") { + if (start + 1 !== index) + tsTokens.push({ + kind: TSTokenKind.STRING, + tokens: { + kind: TokenKind.STRING, + start: start + 1, + length: index - start + 1, + value: `'${input.slice(start + 1, index)}'`, + }, + }) + break + } else if (char === "#" && input[index + 1] === "{") { + tsTokens.push({ + kind: TSTokenKind.STRING, + tokens: { + value: `'${input.slice(start + 1, index)}'`, + kind: TokenKind.STRING, + length: index - start + 1, + start, + }, + }) + tokenization(++index) + start = index + } + index++ + } + } + + const eatString = () => { + while (index < input.length) { + const char = input[index] + if (char === "'") { + break + } else if (char === "#" && input[index + 1] === "{") { + index++ + eatTemplate() + } + index++ + } + } + + const eatTemplate = () => { + while (index < input.length) { + const char = input[index] + if (char === "'") { + eatString() + } else if (char === "}") { + break + } + index++ + } + } + + stringification(index++) + tokens.push(makeToken(tsTokens, TokenKind.TEMPLATE_STRING, start - 1, index - start + 1)) + break + } + } + default: { let start = index @@ -176,7 +175,7 @@ export function Lexer(input: string, start: number = 0, end?: number) { tokens.push(makeToken(input, TokenKind.WORD, start, index - start + 1)) } else if (!Checker.isBlankChar(token)) { console.error( - `\x1b[31m${input.slice(0, index)}>>>${token}<<<${input.slice(index + 1)}\nInvalid character.\x1b[0m`, + `\x1b[31merror: ${input + "\n" + " ".repeat(index + 7) + "^"}\nInvalid character.\x1b[0m`, ) throw new Error() } diff --git a/src/compilers/bindings/Parser.ts b/src/compilers/bindings/Parser.ts index 2b9373a..537267d 100644 --- a/src/compilers/bindings/Parser.ts +++ b/src/compilers/bindings/Parser.ts @@ -14,6 +14,10 @@ export class Parser { constructor(private input: string) { this.tokens = Lexer(this.input) this.output = this.parseExpression() + + if (this.at()) { + this.expect(TokenKind.EOF, "Unexpected token!") + } } at() { @@ -247,7 +251,12 @@ export class Parser { ) return callerToken.value } else { - this.expect(TokenKind.WORD, "Unexpected token!") + if (callerToken.kind === TokenKind.WORD) + this.warn( + `Implicit string literal '${callerToken.value}'. Use quoted string ('${callerToken.value}') for clarity!`, + callerToken, + ) + else this.expect(TokenKind.WORD, "Unexpected token!") return callerToken.value } } @@ -274,14 +283,11 @@ export class Parser { private warn(err: string, token?: Token) { const prev = token || this.at() - console.warn(`\x1b[33m${this.getPointer(prev)}\n` + `[WARNING]: ${err}\x1b[0m`) + console.warn(`\x1b[33mwarn:${this.getPointer(prev, true)}\n` + `[WARNING]: ${err}\x1b[0m`) } - private getPointer(token: Token) { - return `${this.input.slice(0, token.start)}>>>${this.input.slice( - token.start, - token.start + token.length, - )}<<<${this.input.slice(token.start + token.length)}` + private getPointer(token: Token, isWarn = false) { + return this.input + "\n" + " ".repeat(token.start + (isWarn ? 5 : 7)) + "^".repeat(token.length) } out(): { gen?: BindingItem[]; out: Expression } { diff --git a/src/compilers/bindings/types.ts b/src/compilers/bindings/types.ts index e8d95c9..31e0195 100644 --- a/src/compilers/bindings/types.ts +++ b/src/compilers/bindings/types.ts @@ -10,6 +10,8 @@ export enum TokenKind { OPERATOR, COMMA, + + EOF } export enum TSTokenKind { diff --git a/src/components/UI.ts b/src/components/UI.ts index dcdc59c..156a59f 100644 --- a/src/components/UI.ts +++ b/src/components/UI.ts @@ -1,27 +1,29 @@ import { isCompileBinding } from "../compilers/bindings/Checker.js" import { Parser } from "../compilers/bindings/Parser.js" import { FormatProperties } from "../compilers/FormatProperties.js" +import { Memory } from "../compilers/Memory.js" import { BindingType } from "../types/enums/BindingType.js" import { Renderer } from "../types/enums/Renderer.js" import { Type } from "../types/enums/Type.js" import { Properties } from "../types/properties/components.js" import { BindingItem } from "../types/properties/value.js" import { Class } from "./Class.js" -import { RandomString } from "./Utils.js" +import { ExtendsOf, RandomString } from "./Utils.js" import util from "node:util" export class UI extends Class { - path: string + readonly path: string - name: string - namespace: string - extend?: UI + readonly name: string + readonly namespace: string + readonly extend?: UI - extendable: boolean + readonly extendable: boolean - controls = new Map, Properties]>() - bindings: BindingItem[] = [] + readonly controls = new Map, Properties]>() + readonly bindings: BindingItem[] = [] + readonly extendType?: Type properties: Properties = {} constructor( @@ -37,6 +39,11 @@ export class UI extends Class process.exit(1) } + if (namespace && !/^\w+$/.test(namespace)) { + console.error(`The '${namespace}' cannot be used as a namespace`) + process.exit(1) + } + this.name = name?.match(/^(\w|\/)+/)?.[0] || RandomString(16) this.namespace = namespace || RandomString(16) @@ -44,6 +51,29 @@ export class UI extends Class else this.path = path this.extendable = this.name.search("/") === -1 + + Memory.add(this) + } + + protected UI_JSON() { + const obj: any = { + ...FormatProperties(this.properties), + } + + if (this.type) { + obj.type = this.type + } + + if (this.bindings.length) { + obj.bindings = this.bindings + } + + if (this.controls.size) { + obj.controls = [] + this.controls.forEach((e, key) => obj.controls.push({ [key + e[0]]: e[1] })) + } + + return obj } setProperties(properties: Properties) { @@ -77,32 +107,19 @@ export class UI extends Class return this } - toString() { + clone(properties?: Properties, name?: string, namespace?: string) { + return ExtendsOf(this, properties, name, namespace) + } + + protected toString() { return `@${this.namespace}.${this.name}` } - toJSON() { - const obj: any = { - ...FormatProperties(this.properties), - } - - if (this.type) { - obj.type = this.type - } - - if (this.bindings.length) { - obj.bindings = this.bindings - } - - if (this.controls.size) { - obj.controls = [] - this.controls.forEach((e, key) => obj.controls.push({ [key + e[0]]: e[1] })) - } - - return obj + protected toJSON() { + return this.UI_JSON() } - [util.inspect.custom]($: any, opts: any) { + protected [util.inspect.custom]($: any, opts: any) { const obj: any = { ...FormatProperties(this.properties), } @@ -116,8 +133,10 @@ export class UI extends Class this.controls.forEach((e, key) => obj.controls.push({ [key + e[0]]: e[1] })) } + const elementType = this.type || (this.extend ? `${this.extendType || "unknown"}:${this.extend}` : "unknown") + return `\x1b[33mUI\x1b[0m<\x1b[92m${ - this.type || this.extend ? `${this.extend}` : "ANY" + elementType }\x1b[0m> \x1b[92m"${this}\x1b[92m"\x1b[0m ${util.inspect(obj, opts)}\n` } } @@ -127,4 +146,9 @@ export class ModifyUI extends UI { if (!path) throw new Error("ModifyUI cannot have a path") super(undefined, name, namespace, path) } + + protected toJSON() { + const obj = this.UI_JSON() + return obj + } } diff --git a/src/components/Utils.ts b/src/components/Utils.ts index 108270a..e92ff7d 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -31,6 +31,7 @@ import { Element, Namespace, VanillaType } from "../types/vanilla/intellisense.j import { paths } from "../types/vanilla/paths.js" const CHARS = "0123456789abcdefghijklmnopqrstuvwxyz" +type CompileBinding = `[${string}]` export function Color(hex: string | number): Array3 { if (typeof hex === "number") { @@ -87,110 +88,134 @@ export function GetItemByAuxID(auxID: number) { if (item) return `minecraft:${item.toLowerCase()}` } +// Binding +/** + * Return format string binding input + * @param input + * @returns {CompileBinding} + */ +export function f(input: string): CompileBinding { + if (/^'.+'$/.test(input)) input = `f${input}` + else if (!/^f'.+'$/.test(input)) input = `f'${input}'` + return b(input) +} + +/** + * Return bracket binding input + * @param input + * @returns {CompileBinding} + */ +export function b(input: string): CompileBinding { + return `[ ${input} ]` +} + // Quick Elements export function Modify>(namespace: T, name: K) { // @ts-ignore -- TS cannot prove this, but runtime guarantees it return new ModifyUI>(name, namespace, paths[namespace][name]) } -export function Panel(properties?: Panel, name?: string, namespace?: string) { +export function Panel(properties?: Panel, namespace?: string, name?: string) { return new UI(Type.PANEL, name, namespace).setProperties(properties || {}) } -export function CollectionPanel(properties?: CollectionPanel, name?: string, namespace?: string) { +export function CollectionPanel(properties?: CollectionPanel, namespace?: string, name?: string) { return new UI(Type.COLLECTION_PANEL, name, namespace).setProperties(properties || {}) } -export function StackPanel(properties?: StackPanel, name?: string, namespace?: string) { +export function StackPanel(properties?: StackPanel, namespace?: string, name?: string) { return new UI(Type.STACK_PANEL, name, namespace).setProperties(properties || {}) } -export function InputPanel(properties?: InputPanel, name?: string, namespace?: string) { +export function InputPanel(properties?: InputPanel, namespace?: string, name?: string) { return new UI(Type.INPUT_PANEL, name, namespace).setProperties(properties || {}) } -export function Gird(properties?: Grid, name?: string, namespace?: string) { +export function Gird(properties?: Grid, namespace?: string, name?: string) { return new UI(Type.GRID, name, namespace).setProperties(properties || {}) } -export function Screen(properties?: Screen, name?: string, namespace?: string) { +export function Screen(properties?: Screen, namespace?: string, name?: string) { return new UI(Type.SCREEN, name, namespace).setProperties(properties || {}) } -export function Image(properties?: Image, name?: string, namespace?: string) { +export function Image(properties?: Image, namespace?: string, name?: string) { return new UI(Type.IMAGE, name, namespace).setProperties(properties || {}) } -export function Label(properties?: Label, name?: string, namespace?: string) { +export function Label(properties?: Label, namespace?: string, name?: string) { return new UI(Type.LABEL, name, namespace).setProperties(properties || {}) } export function Custom( renderer: R, properties?: Properties, - name?: string, namespace?: string, + name?: string, ) { const custom = new UI(Type.CUSTOM, name, namespace) if (properties) custom.setProperties({ renderer, ...properties }) return custom } -export function TooltipTrigger(properties?: TooltipTrigger, name?: string, namespace?: string) { +export function TooltipTrigger(properties?: TooltipTrigger, namespace?: string, name?: string) { return new UI(Type.TOOLTIP_TRIGGER, name, namespace).setProperties(properties || {}) } -export function Button(properties?: Button, name?: string, namespace?: string) { +export function Button(properties?: Button, namespace?: string, name?: string) { return new UI(Type.BUTTON, name, namespace).setProperties(properties || {}) } -export function Toggle(properties?: Toggle, name?: string, namespace?: string) { +export function Toggle(properties?: Toggle, namespace?: string, name?: string) { return new UI(Type.TOGGLE, name, namespace).setProperties(properties || {}) } -export function Dropdown(properties?: Dropdown, name?: string, namespace?: string) { +export function Dropdown(properties?: Dropdown, namespace?: string, name?: string) { return new UI(Type.DROPDOWN, name, namespace).setProperties(properties || {}) } -export function SelectionWheel(properties?: SelectionWheel, name?: string, namespace?: string) { +export function SelectionWheel(properties?: SelectionWheel, namespace?: string, name?: string) { return new UI(Type.SELECTION_WHEEL, name, namespace).setProperties(properties || {}) } -export function EditBox(properties?: EditBox, name?: string, namespace?: string) { +export function EditBox(properties?: EditBox, namespace?: string, name?: string) { return new UI(Type.EDIT_BOX, name, namespace).setProperties(properties || {}) } -export function ScrollbarBox(properties?: ScrollbarBox, name?: string, namespace?: string) { +export function ScrollbarBox(properties?: ScrollbarBox, namespace?: string, name?: string) { return new UI(Type.SCROLLBAR_BOX, name, namespace).setProperties(properties || {}) } -export function ScrollbarTrack(properties?: ScrollbarTrack, name?: string, namespace?: string) { +export function ScrollbarTrack(properties?: ScrollbarTrack, namespace?: string, name?: string) { return new UI(Type.SCROLL_TRACK, name, namespace).setProperties(properties || {}) } -export function ScrollView(properties?: ScrollView, name?: string, namespace?: string) { +export function ScrollView(properties?: ScrollView, namespace?: string, name?: string) { return new UI(Type.SCROLL_VIEW, name, namespace).setProperties(properties || {}) } -export function Slider(properties?: Slider, name?: string, namespace?: string) { +export function Slider(properties?: Slider, namespace?: string, name?: string) { return new UI(Type.SLIDER, name, namespace).setProperties(properties || {}) } -export function SliderBox(properties?: SliderBox, name?: string, namespace?: string) { +export function SliderBox(properties?: SliderBox, namespace?: string, name?: string) { return new UI(Type.SLIDER_BOX, name, namespace).setProperties(properties || {}) } export function ExtendsOf( element: UI, properties?: Properties, - name?: string, namespace?: string, + name?: string, ) { if (!element.extendable) { throw new Error("Cannot extend a UI that cannot be extended") } const ui = new UI(undefined, name, namespace) if (properties) ui.setProperties(properties) + // @ts-ignore ui.extend = element + // @ts-ignore + ui.extendType = element.type || element.extendType return ui as typeof element } diff --git a/src/types/enums/Type.ts b/src/types/enums/Type.ts index dc70234..373fd6b 100644 --- a/src/types/enums/Type.ts +++ b/src/types/enums/Type.ts @@ -1,36 +1,36 @@ export enum Type { - SELECTION_WHEEL = "selection_wheel", - PANEL = "panel", - SCREEN = "screen", - STACK_PANEL = "stack_panel", - LABEL = "label", - IMAGE = "image", - INPUT_PANEL = "input_panel", - CUSTOM = "custom", - GRID = "grid", - FACTORY = "factory", - BUTTON = "button", - TOGGLE = "toggle", - SLIDER = "slider", - EDIT_BOX = "edit_box", - DROPDOWN = "dropdown", - SCROLL_VIEW = "scroll_view", - SLIDER_BOX = "slider_box", - SCROLLBAR_BOX = "scrollbar_box", - SCROLL_TRACK = "scroll_track", - GRID_PAGE_INDICATOR = "grid_page_indicator", - IMAGE_CYCLER = "image_cycler", - LABEL_CYCLER = "label_cycler", - COLLECTION_PANEL = "collection_panel", - TOOLTIP_TRIGGER = "tooltip_trigger", - TAB = "tab", - CAROUSEL_LABEL = "carousel_label", - COMBOX = "combox", - LAYOUT = "layout", - STACK_GRID = "stack_grid", - JOYSTICK = "joystick", - RICH_TEXT = "rich_text", - SIXTEEN_NINE_LAYOUT = "sixteen_nine_layout", - MUL_LINES = "mul_lines", - UNKNOWN = "unknown", -} + SELECTION_WHEEL = "selection_wheel", + PANEL = "panel", + SCREEN = "screen", + STACK_PANEL = "stack_panel", + LABEL = "label", + IMAGE = "image", + INPUT_PANEL = "input_panel", + CUSTOM = "custom", + GRID = "grid", + FACTORY = "factory", + BUTTON = "button", + TOGGLE = "toggle", + SLIDER = "slider", + EDIT_BOX = "edit_box", + DROPDOWN = "dropdown", + SCROLL_VIEW = "scroll_view", + SLIDER_BOX = "slider_box", + SCROLLBAR_BOX = "scrollbar_box", + SCROLL_TRACK = "scroll_track", + GRID_PAGE_INDICATOR = "grid_page_indicator", + IMAGE_CYCLER = "image_cycler", + LABEL_CYCLER = "label_cycler", + COLLECTION_PANEL = "collection_panel", + TOOLTIP_TRIGGER = "tooltip_trigger", + TAB = "tab", + CAROUSEL_LABEL = "carousel_label", + COMBOX = "combox", + LAYOUT = "layout", + STACK_GRID = "stack_grid", + JOYSTICK = "joystick", + RICH_TEXT = "rich_text", + SIXTEEN_NINE_LAYOUT = "sixteen_nine_layout", + MUL_LINES = "mul_lines", + UNKNOWN = "unknown", +} \ No newline at end of file diff --git a/src/types/properties/value.ts b/src/types/properties/value.ts index a1425f8..6b9d85f 100644 --- a/src/types/properties/value.ts +++ b/src/types/properties/value.ts @@ -31,6 +31,7 @@ export type BindingItem = { source_property_name?: Value target_property_name?: Value resolve_sibling_scope?: Value + resolve_ancestor_scope?: Value } export type FocusContainerCustom = Array<{ diff --git a/src/types/vanilla/intellisense.ts b/src/types/vanilla/intellisense.ts index 7924b1c..e6b7e09 100644 --- a/src/types/vanilla/intellisense.ts +++ b/src/types/vanilla/intellisense.ts @@ -5,19853 +5,19853 @@ export type Element = Extract> = IntelliSense[T][K] export type IntelliSense = { - achievement: AchievementType - add_external_server: AddExternalServerType - adhoc_inprogress: AdhocInprogressType - adhoc: AdhocType - anvil: AnvilType - anvil_pocket: AnvilPocketType - authentication_modals: AuthenticationModalsType - authentication: AuthenticationType - auto_save_info: AutoSaveInfoType - beacon: BeaconType - beacon_pocket: BeaconPocketType - blast_furnace: BlastFurnaceType - book: BookType - brewing_stand: BrewingStandType - brewing_stand_pocket: BrewingStandPocketType - bundle_purchase_warning: BundlePurchaseWarningType - cartography: CartographyType - cartography_pocket: CartographyPocketType - chalkboard: ChalkboardType - chat: ChatType - chat_settings: ChatSettingsType - chest: ChestType - choose_realm: ChooseRealmType - coin_purchase: CoinPurchaseType - command_block: CommandBlockType - confirm_delete_account: ConfirmDeleteAccountType - content_log: ContentLogType - content_log_history: ContentLogHistoryType - crafter_pocket: CrafterPocketType - create_world_upsell: CreateWorldUpsellType - credits: CreditsType - csb_purchase_error: CsbPurchaseErrorType - csb: CsbType - csb_content: CsbContentType - csb_banner: CsbBannerType - csb_buy: CsbBuyType - common_csb: CommonCsbType - csb_purchase_amazondevicewarning: CsbPurchaseAmazondevicewarningType - csb_purchase_warning: CsbPurchaseWarningType - csb_subscription_panel: CsbSubscriptionPanelType - csb_upsell: CsbUpsellType - csb_packs: CsbPacksType - csb_welcome: CsbWelcomeType - csb_faq: CsbFaqType - csb_landing: CsbLandingType - custom_templates: CustomTemplatesType - world_conversion_complete: WorldConversionCompleteType - day_one_experience_intro: DayOneExperienceIntroType - day_one_experience: DayOneExperienceType - death: DeathType - debug_screen: DebugScreenType - dev_console: DevConsoleType - disconnect: DisconnectType - display_logged_error: DisplayLoggedErrorType - discovery_dialog: DiscoveryDialogType - edu_featured: EduFeaturedType - edu_quit_button: EduQuitButtonType - persona_emote: PersonaEmoteType - enchanting: EnchantingType - enchanting_pocket: EnchantingPocketType - encyclopedia: EncyclopediaType - expanded_skin_pack: ExpandedSkinPackType - feed_common: FeedCommonType - file_upload: FileUploadType - furnace: FurnaceType - furnace_pocket: FurnacePocketType - game_tip: GameTipType - gamepad_disconnected: GamepadDisconnectedType - gameplay: GameplayType - gathering_info: GatheringInfoType - globalpause: GlobalpauseType - grindstone: GrindstoneType - grindstone_pocket: GrindstonePocketType - gamma_calibration: GammaCalibrationType - horse: HorseType - horse_pocket: HorsePocketType - how_to_play_common: HowToPlayCommonType - how_to_play: HowToPlayType - hud: HudType - host_options: HostOptionsType - bed: BedType - im_reader: ImReaderType - crafting: CraftingType - crafting_pocket: CraftingPocketType - invite: InviteType - jigsaw_editor: JigsawEditorType - late_join: LateJoinType - library_modal: LibraryModalType - local_world_picker: LocalWorldPickerType - loom: LoomType - loom_pocket: LoomPocketType - manage_feed: ManageFeedType - manifest_validation: ManifestValidationType - sdl_label: SdlLabelType - sdl_dropdowns: SdlDropdownsType - sdl_image_row: SdlImageRowType - sdl_text_row: SdlTextRowType - mob_effect: MobEffectType - non_xbl_user_management: NonXblUserManagementType - npc_interact: NpcInteractType - online_safety: OnlineSafetyType - pack_settings: PackSettingsType - panorama: PanoramaType - patch_notes: PatchNotesType - pause: PauseType - pdp: PdpType - pdp_screenshots: PdpScreenshotsType - permissions: PermissionsType - persona_cast_character_screen: PersonaCastCharacterScreenType - persona_common: PersonaCommonType - persona_popups: PersonaPopupsType - play: PlayType - perf_turtle: PerfTurtleType - pocket_containers: PocketContainersType - popup_dialog: PopupDialogType - portfolio: PortfolioType - progress: ProgressType - rating_prompt: RatingPromptType - realms_common: RealmsCommonType - realms_create: RealmsCreateType - realms_pending_invitations: RealmsPendingInvitationsType - realms_slots: RealmsSlotsType - realms_settings: RealmsSettingsType - realms_allowlist: RealmsAllowlistType - realms_invite_link_settings: RealmsInviteLinkSettingsType - realms_plus_ended: RealmsPlusEndedType - realmsPlus: RealmsPlusType - realmsPlus_content: RealmsPlusContentType - realmsPlus_faq: RealmsPlusFaqType - realmsPlus_landing: RealmsPlusLandingType - realmsPlus_buy: RealmsPlusBuyType - realmsPlus_packs: RealmsPlusPacksType - realmsPlus_purchase_warning: RealmsPlusPurchaseWarningType - realms_stories_transition: RealmsStoriesTransitionType - redstone: RedstoneType - resource_packs: ResourcePacksType - safe_zone: SafeZoneType - storage_migration_common: StorageMigrationCommonType - storage_migration_generic: StorageMigrationGenericType - scoreboard: ScoreboardType - screenshot: ScreenshotType - select_world: SelectWorldType - server_form: ServerFormType - settings: SettingsType - controls_section: ControlsSectionType - general_section: GeneralSectionType - realms_world_section: RealmsWorldSectionType - settings_common: SettingsCommonType - world_section: WorldSectionType - social_section: SocialSectionType - sidebar_navigation: SidebarNavigationType - sign: SignType - simple_inprogress: SimpleInprogressType - skin_pack_purchase: SkinPackPurchaseType - skin_picker: SkinPickerType - smithing_table: SmithingTableType - smithing_table_2: SmithingTable2Type - smithing_table_pocket: SmithingTablePocketType - smithing_table_2_pocket: SmithingTable2PocketType - smoker: SmokerType - start: StartType - stonecutter: StonecutterType - stonecutter_pocket: StonecutterPocketType - storage_management: StorageManagementType - storage_management_popup: StorageManagementPopupType - common_store: CommonStoreType - store_layout: StoreLayoutType - filter_menu: FilterMenuType - store_inventory: StoreInventoryType - store_item_list: StoreItemListType - store_progress: StoreProgressType - promo_timeline: PromoTimelineType - store_sale_item_list: StoreSaleItemListType - store_search: StoreSearchType - sort_menu: SortMenuType - structure_editor: StructureEditorType - submit_feedback: SubmitFeedbackType - tabbed_upsell: TabbedUpsellType - thanks_for_testing: ThanksForTestingType - third_party_store: ThirdPartyStoreType - toast_screen: ToastScreenType - token_faq: TokenFaqType - trade: TradeType - trade_pocket: TradePocketType - trade2: Trade2Type - trade2_pocket: Trade2PocketType - trialUpsell: TrialUpsellType - ugc_viewer: UgcViewerType - common_art: CommonArtType - common: CommonType - "common-classic": CommonClassicType - edu_common: EduCommonType - purchase_common: PurchaseCommonType - common_buttons: CommonButtonsType - common_dialogs: CommonDialogsType - common_tabs: CommonTabsType - common_toggles: CommonTogglesType - friendsbutton: FriendsbuttonType - iconbutton: IconbuttonType - update_dimensions: UpdateDimensionsType - update_version: UpdateVersionType - world_recovery: WorldRecoveryType - world_templates: WorldTemplatesType - xbl_console_qr_signin: XblConsoleQrSigninType - xbl_console_signin: XblConsoleSigninType - xbl_console_signin_succeeded: XblConsoleSigninSucceededType - xbl_immediate_signin: XblImmediateSigninType - win10_trial_conversion: Win10TrialConversionType + "achievement": AchievementType, + "add_external_server": AddExternalServerType, + "adhoc_inprogress": AdhocInprogressType, + "adhoc": AdhocType, + "anvil": AnvilType, + "anvil_pocket": AnvilPocketType, + "authentication_modals": AuthenticationModalsType, + "authentication": AuthenticationType, + "auto_save_info": AutoSaveInfoType, + "beacon": BeaconType, + "beacon_pocket": BeaconPocketType, + "blast_furnace": BlastFurnaceType, + "book": BookType, + "brewing_stand": BrewingStandType, + "brewing_stand_pocket": BrewingStandPocketType, + "bundle_purchase_warning": BundlePurchaseWarningType, + "cartography": CartographyType, + "cartography_pocket": CartographyPocketType, + "chalkboard": ChalkboardType, + "chat": ChatType, + "chat_settings": ChatSettingsType, + "chest": ChestType, + "choose_realm": ChooseRealmType, + "coin_purchase": CoinPurchaseType, + "command_block": CommandBlockType, + "confirm_delete_account": ConfirmDeleteAccountType, + "content_log": ContentLogType, + "content_log_history": ContentLogHistoryType, + "crafter_pocket": CrafterPocketType, + "create_world_upsell": CreateWorldUpsellType, + "credits": CreditsType, + "csb_purchase_error": CsbPurchaseErrorType, + "csb": CsbType, + "csb_content": CsbContentType, + "csb_banner": CsbBannerType, + "csb_buy": CsbBuyType, + "common_csb": CommonCsbType, + "csb_purchase_amazondevicewarning": CsbPurchaseAmazondevicewarningType, + "csb_purchase_warning": CsbPurchaseWarningType, + "csb_subscription_panel": CsbSubscriptionPanelType, + "csb_upsell": CsbUpsellType, + "csb_packs": CsbPacksType, + "csb_welcome": CsbWelcomeType, + "csb_faq": CsbFaqType, + "csb_landing": CsbLandingType, + "custom_templates": CustomTemplatesType, + "world_conversion_complete": WorldConversionCompleteType, + "day_one_experience_intro": DayOneExperienceIntroType, + "day_one_experience": DayOneExperienceType, + "death": DeathType, + "debug_screen": DebugScreenType, + "dev_console": DevConsoleType, + "disconnect": DisconnectType, + "display_logged_error": DisplayLoggedErrorType, + "discovery_dialog": DiscoveryDialogType, + "edu_featured": EduFeaturedType, + "edu_quit_button": EduQuitButtonType, + "persona_emote": PersonaEmoteType, + "enchanting": EnchantingType, + "enchanting_pocket": EnchantingPocketType, + "encyclopedia": EncyclopediaType, + "expanded_skin_pack": ExpandedSkinPackType, + "feed_common": FeedCommonType, + "file_upload": FileUploadType, + "furnace": FurnaceType, + "furnace_pocket": FurnacePocketType, + "game_tip": GameTipType, + "gamepad_disconnected": GamepadDisconnectedType, + "gameplay": GameplayType, + "gathering_info": GatheringInfoType, + "globalpause": GlobalpauseType, + "grindstone": GrindstoneType, + "grindstone_pocket": GrindstonePocketType, + "gamma_calibration": GammaCalibrationType, + "horse": HorseType, + "horse_pocket": HorsePocketType, + "how_to_play_common": HowToPlayCommonType, + "how_to_play": HowToPlayType, + "hud": HudType, + "host_options": HostOptionsType, + "bed": BedType, + "im_reader": ImReaderType, + "crafting": CraftingType, + "crafting_pocket": CraftingPocketType, + "invite": InviteType, + "jigsaw_editor": JigsawEditorType, + "late_join": LateJoinType, + "library_modal": LibraryModalType, + "local_world_picker": LocalWorldPickerType, + "loom": LoomType, + "loom_pocket": LoomPocketType, + "manage_feed": ManageFeedType, + "manifest_validation": ManifestValidationType, + "sdl_label": SdlLabelType, + "sdl_dropdowns": SdlDropdownsType, + "sdl_image_row": SdlImageRowType, + "sdl_text_row": SdlTextRowType, + "mob_effect": MobEffectType, + "non_xbl_user_management": NonXblUserManagementType, + "npc_interact": NpcInteractType, + "online_safety": OnlineSafetyType, + "pack_settings": PackSettingsType, + "panorama": PanoramaType, + "patch_notes": PatchNotesType, + "pause": PauseType, + "pdp": PdpType, + "pdp_screenshots": PdpScreenshotsType, + "permissions": PermissionsType, + "persona_cast_character_screen": PersonaCastCharacterScreenType, + "persona_common": PersonaCommonType, + "persona_popups": PersonaPopupsType, + "play": PlayType, + "perf_turtle": PerfTurtleType, + "pocket_containers": PocketContainersType, + "popup_dialog": PopupDialogType, + "portfolio": PortfolioType, + "progress": ProgressType, + "rating_prompt": RatingPromptType, + "realms_common": RealmsCommonType, + "realms_create": RealmsCreateType, + "realms_pending_invitations": RealmsPendingInvitationsType, + "realms_slots": RealmsSlotsType, + "realms_settings": RealmsSettingsType, + "realms_allowlist": RealmsAllowlistType, + "realms_invite_link_settings": RealmsInviteLinkSettingsType, + "realms_plus_ended": RealmsPlusEndedType, + "realmsPlus": RealmsPlusType, + "realmsPlus_content": RealmsPlusContentType, + "realmsPlus_faq": RealmsPlusFaqType, + "realmsPlus_landing": RealmsPlusLandingType, + "realmsPlus_buy": RealmsPlusBuyType, + "realmsPlus_packs": RealmsPlusPacksType, + "realmsPlus_purchase_warning": RealmsPlusPurchaseWarningType, + "realms_stories_transition": RealmsStoriesTransitionType, + "redstone": RedstoneType, + "resource_packs": ResourcePacksType, + "safe_zone": SafeZoneType, + "storage_migration_common": StorageMigrationCommonType, + "storage_migration_generic": StorageMigrationGenericType, + "scoreboard": ScoreboardType, + "screenshot": ScreenshotType, + "select_world": SelectWorldType, + "server_form": ServerFormType, + "settings": SettingsType, + "controls_section": ControlsSectionType, + "general_section": GeneralSectionType, + "realms_world_section": RealmsWorldSectionType, + "settings_common": SettingsCommonType, + "world_section": WorldSectionType, + "social_section": SocialSectionType, + "sidebar_navigation": SidebarNavigationType, + "sign": SignType, + "simple_inprogress": SimpleInprogressType, + "skin_pack_purchase": SkinPackPurchaseType, + "skin_picker": SkinPickerType, + "smithing_table": SmithingTableType, + "smithing_table_2": SmithingTable2Type, + "smithing_table_pocket": SmithingTablePocketType, + "smithing_table_2_pocket": SmithingTable2PocketType, + "smoker": SmokerType, + "start": StartType, + "stonecutter": StonecutterType, + "stonecutter_pocket": StonecutterPocketType, + "storage_management": StorageManagementType, + "storage_management_popup": StorageManagementPopupType, + "common_store": CommonStoreType, + "store_layout": StoreLayoutType, + "filter_menu": FilterMenuType, + "store_inventory": StoreInventoryType, + "store_item_list": StoreItemListType, + "store_progress": StoreProgressType, + "promo_timeline": PromoTimelineType, + "store_sale_item_list": StoreSaleItemListType, + "store_search": StoreSearchType, + "sort_menu": SortMenuType, + "structure_editor": StructureEditorType, + "submit_feedback": SubmitFeedbackType, + "tabbed_upsell": TabbedUpsellType, + "thanks_for_testing": ThanksForTestingType, + "third_party_store": ThirdPartyStoreType, + "toast_screen": ToastScreenType, + "token_faq": TokenFaqType, + "trade": TradeType, + "trade_pocket": TradePocketType, + "trade2": Trade2Type, + "trade2_pocket": Trade2PocketType, + "trialUpsell": TrialUpsellType, + "ugc_viewer": UgcViewerType, + "common_art": CommonArtType, + "common": CommonType, + "common-classic": CommonClassicType, + "edu_common": EduCommonType, + "purchase_common": PurchaseCommonType, + "common_buttons": CommonButtonsType, + "common_dialogs": CommonDialogsType, + "common_tabs": CommonTabsType, + "common_toggles": CommonTogglesType, + "friendsbutton": FriendsbuttonType, + "iconbutton": IconbuttonType, + "update_dimensions": UpdateDimensionsType, + "update_version": UpdateVersionType, + "world_recovery": WorldRecoveryType, + "world_templates": WorldTemplatesType, + "xbl_console_qr_signin": XblConsoleQrSigninType, + "xbl_console_signin": XblConsoleSigninType, + "xbl_console_signin_succeeded": XblConsoleSigninSucceededType, + "xbl_immediate_signin": XblImmediateSigninType, + "win10_trial_conversion": Win10TrialConversionType, } export type AchievementType = { - empty_progress_bar_icon: T.IMAGE - full_progress_bar_icon_base: T.IMAGE + "empty_progress_bar_icon": T.IMAGE, + "full_progress_bar_icon_base": T.IMAGE, } export type AddExternalServerType = { - play_button: T.BUTTON - play_disabled_button: T.BUTTON - remove_button: T.BUTTON - save_button: T.BUTTON - save_disabled_button: T.BUTTON - text_edit_group: T.STACK_PANEL - "text_edit_group/name_label": T.LABEL - "text_edit_group/edit_box": T.EDIT_BOX - title_text: T.LABEL - content_panel: T.STACK_PANEL - "content_panel/name_edit": T.STACK_PANEL - "content_panel/ip_edit": T.STACK_PANEL - "content_panel/port_edit": T.STACK_PANEL - main_panel: T.INPUT_PANEL - "main_panel/common_panel": T.PANEL - "main_panel/title": T.LABEL - "main_panel/main_content": T.STACK_PANEL - "main_panel/play": T.BUTTON - "main_panel/play_disabled": T.BUTTON - "main_panel/remove": T.BUTTON - "main_panel/save": T.BUTTON - "main_panel/save_disabled": T.BUTTON - gamepad_helpers: T.PANEL - "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL - add_external_server_screen_new: T.SCREEN - add_external_server_screen_edit: T.SCREEN - add_external_server_screen: T.SCREEN - add_external_server_screen_content: T.PANEL - "add_external_server_screen_content/root_panel": T.PANEL - "add_external_server_screen_content/root_panel/gamepad_helpers": T.PANEL - "add_external_server_screen_content/root_panel/main_panel": T.INPUT_PANEL + "play_button": T.BUTTON, + "play_disabled_button": T.BUTTON, + "remove_button": T.BUTTON, + "save_button": T.BUTTON, + "save_disabled_button": T.BUTTON, + "text_edit_group": T.STACK_PANEL, + "text_edit_group/name_label": T.LABEL, + "text_edit_group/edit_box": T.EDIT_BOX, + "title_text": T.LABEL, + "content_panel": T.STACK_PANEL, + "content_panel/name_edit": T.STACK_PANEL, + "content_panel/ip_edit": T.STACK_PANEL, + "content_panel/port_edit": T.STACK_PANEL, + "main_panel": T.INPUT_PANEL, + "main_panel/common_panel": T.PANEL, + "main_panel/title": T.LABEL, + "main_panel/main_content": T.STACK_PANEL, + "main_panel/play": T.BUTTON, + "main_panel/play_disabled": T.BUTTON, + "main_panel/remove": T.BUTTON, + "main_panel/save": T.BUTTON, + "main_panel/save_disabled": T.BUTTON, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL, + "add_external_server_screen_new": T.SCREEN, + "add_external_server_screen_edit": T.SCREEN, + "add_external_server_screen": T.SCREEN, + "add_external_server_screen_content": T.PANEL, + "add_external_server_screen_content/root_panel": T.PANEL, + "add_external_server_screen_content/root_panel/gamepad_helpers": T.PANEL, + "add_external_server_screen_content/root_panel/main_panel": T.INPUT_PANEL, } export type AdhocInprogressType = { - title_text: T.LABEL - main_panel: T.PANEL - "main_panel/common_panel": T.PANEL - "main_panel/title": T.LABEL - "main_panel/main_content": T.LABEL - "main_panel/progress_loading_bars": T.IMAGE - adhoc_inprogress_screen: T.SCREEN - adhoc_inprogress_screen_content: T.PANEL - "adhoc_inprogress_screen_content/root_panel": T.PANEL - "adhoc_inprogress_screen_content/root_panel/main_panel": T.PANEL + "title_text": T.LABEL, + "main_panel": T.PANEL, + "main_panel/common_panel": T.PANEL, + "main_panel/title": T.LABEL, + "main_panel/main_content": T.LABEL, + "main_panel/progress_loading_bars": T.IMAGE, + "adhoc_inprogress_screen": T.SCREEN, + "adhoc_inprogress_screen_content": T.PANEL, + "adhoc_inprogress_screen_content/root_panel": T.PANEL, + "adhoc_inprogress_screen_content/root_panel/main_panel": T.PANEL, } export type AdhocType = { - online_button: T.BUTTON - local_button: T.BUTTON - title_text: T.LABEL - content_panel: T.STACK_PANEL - "content_panel/title_text": T.LABEL - main_panel: T.INPUT_PANEL - "main_panel/common_panel": T.PANEL - "main_panel/title": T.LABEL - "main_panel/main_content": T.LABEL - "main_panel/online": T.BUTTON - "main_panel/local": T.BUTTON - gamepad_helpers: T.PANEL - "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL - adhoc_screen: T.SCREEN - adhoc_screen_content: T.PANEL - "adhoc_screen_content/root_panel": T.PANEL - "adhoc_screen_content/root_panel/gamepad_helpers": T.PANEL - "adhoc_screen_content/root_panel/main_panel": T.INPUT_PANEL + "online_button": T.BUTTON, + "local_button": T.BUTTON, + "title_text": T.LABEL, + "content_panel": T.STACK_PANEL, + "content_panel/title_text": T.LABEL, + "main_panel": T.INPUT_PANEL, + "main_panel/common_panel": T.PANEL, + "main_panel/title": T.LABEL, + "main_panel/main_content": T.LABEL, + "main_panel/online": T.BUTTON, + "main_panel/local": T.BUTTON, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL, + "adhoc_screen": T.SCREEN, + "adhoc_screen_content": T.PANEL, + "adhoc_screen_content/root_panel": T.PANEL, + "adhoc_screen_content/root_panel/gamepad_helpers": T.PANEL, + "adhoc_screen_content/root_panel/main_panel": T.INPUT_PANEL, } export type AnvilType = { - generic_label: T.LABEL - anvil_icon: T.IMAGE - title_label: T.LABEL - anvil_icon_panel: T.PANEL - "anvil_icon_panel/anvil_icon": T.IMAGE - text_edit_control: T.EDIT_BOX - icon_and_text_panel: T.PANEL - "icon_and_text_panel/anvil_icon_panel": T.PANEL - "icon_and_text_panel/anvil_title_and_text_panel": T.PANEL - title_panel: T.PANEL - "title_panel/title_label": T.LABEL - text_edit_panel: T.PANEL - "text_edit_panel/text_edit_control": T.EDIT_BOX - anvil_title_and_text_panel: T.PANEL - "anvil_title_and_text_panel/title_panel": T.PANEL - "anvil_title_and_text_panel/text_edit_panel": T.PANEL - plus_sign_icon: T.IMAGE - arrow_icon: T.IMAGE - cross_out_icon: T.IMAGE - anvil_output_slot_button: T.BUTTON - anvil_item_slot: T.PANEL - "anvil_item_slot/container_item": T.INPUT_PANEL - recipe_grid: T.GRID - "recipe_grid/input_item_slot": T.PANEL - "recipe_grid/plus": T.PANEL - "recipe_grid/plus/plus_sign_icon": T.IMAGE - "recipe_grid/material_item_slot": T.PANEL - "recipe_grid/yields": T.PANEL - "recipe_grid/yields/arrow_icon": T.IMAGE - "recipe_grid/yields/cross_out_icon": T.IMAGE - "recipe_grid/result_item_slot": T.PANEL - cost_label: T.LABEL - "cost_label/gray": T.IMAGE - recipe_panel: T.PANEL - "recipe_panel/recipe_grid": T.GRID - "recipe_panel/cost_label_0": T.LABEL - "recipe_panel/cost_label_1": T.LABEL - top_half_panel: T.PANEL - "top_half_panel/icon_and_text_panel": T.PANEL - "top_half_panel/recipe_panel": T.PANEL - anvil_panel: T.PANEL - "anvil_panel/container_gamepad_helpers": T.STACK_PANEL - "anvil_panel/selected_item_details_factory": T.FACTORY - "anvil_panel/item_lock_notification_factory": T.FACTORY - "anvil_panel/root_panel": T.INPUT_PANEL - "anvil_panel/root_panel/common_panel": T.PANEL - "anvil_panel/root_panel/anvil_screen_inventory": T.PANEL - "anvil_panel/root_panel/anvil_screen_inventory/top_half_panel": T.PANEL - "anvil_panel/root_panel/anvil_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL - "anvil_panel/root_panel/anvil_screen_inventory/hotbar_grid": T.GRID - "anvil_panel/root_panel/anvil_screen_inventory/inventory_take_progress_icon_button": T.BUTTON - "anvil_panel/root_panel/inventory_selected_icon_button": T.BUTTON - "anvil_panel/root_panel/gamepad_cursor": T.BUTTON - "anvil_panel/flying_item_renderer": T.CUSTOM - anvil_screen: T.SCREEN + "generic_label": T.LABEL, + "anvil_icon": T.IMAGE, + "title_label": T.LABEL, + "anvil_icon_panel": T.PANEL, + "anvil_icon_panel/anvil_icon": T.IMAGE, + "text_edit_control": T.EDIT_BOX, + "icon_and_text_panel": T.PANEL, + "icon_and_text_panel/anvil_icon_panel": T.PANEL, + "icon_and_text_panel/anvil_title_and_text_panel": T.PANEL, + "title_panel": T.PANEL, + "title_panel/title_label": T.LABEL, + "text_edit_panel": T.PANEL, + "text_edit_panel/text_edit_control": T.EDIT_BOX, + "anvil_title_and_text_panel": T.PANEL, + "anvil_title_and_text_panel/title_panel": T.PANEL, + "anvil_title_and_text_panel/text_edit_panel": T.PANEL, + "plus_sign_icon": T.IMAGE, + "arrow_icon": T.IMAGE, + "cross_out_icon": T.IMAGE, + "anvil_output_slot_button": T.BUTTON, + "anvil_item_slot": T.PANEL, + "anvil_item_slot/container_item": T.INPUT_PANEL, + "recipe_grid": T.GRID, + "recipe_grid/input_item_slot": T.PANEL, + "recipe_grid/plus": T.PANEL, + "recipe_grid/plus/plus_sign_icon": T.IMAGE, + "recipe_grid/material_item_slot": T.PANEL, + "recipe_grid/yields": T.PANEL, + "recipe_grid/yields/arrow_icon": T.IMAGE, + "recipe_grid/yields/cross_out_icon": T.IMAGE, + "recipe_grid/result_item_slot": T.PANEL, + "cost_label": T.LABEL, + "cost_label/gray": T.IMAGE, + "recipe_panel": T.PANEL, + "recipe_panel/recipe_grid": T.GRID, + "recipe_panel/cost_label_0": T.LABEL, + "recipe_panel/cost_label_1": T.LABEL, + "top_half_panel": T.PANEL, + "top_half_panel/icon_and_text_panel": T.PANEL, + "top_half_panel/recipe_panel": T.PANEL, + "anvil_panel": T.PANEL, + "anvil_panel/container_gamepad_helpers": T.STACK_PANEL, + "anvil_panel/selected_item_details_factory": T.FACTORY, + "anvil_panel/item_lock_notification_factory": T.FACTORY, + "anvil_panel/root_panel": T.INPUT_PANEL, + "anvil_panel/root_panel/common_panel": T.PANEL, + "anvil_panel/root_panel/anvil_screen_inventory": T.PANEL, + "anvil_panel/root_panel/anvil_screen_inventory/top_half_panel": T.PANEL, + "anvil_panel/root_panel/anvil_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL, + "anvil_panel/root_panel/anvil_screen_inventory/hotbar_grid": T.GRID, + "anvil_panel/root_panel/anvil_screen_inventory/inventory_take_progress_icon_button": T.BUTTON, + "anvil_panel/root_panel/inventory_selected_icon_button": T.BUTTON, + "anvil_panel/root_panel/gamepad_cursor": T.BUTTON, + "anvil_panel/flying_item_renderer": T.CUSTOM, + "anvil_screen": T.SCREEN, } export type AnvilPocketType = { - generic_label: T.LABEL - background_image: T.IMAGE - arrow_icon: T.IMAGE - cost_label: T.LABEL - "cost_label/gray": T.IMAGE - title_label: T.LABEL - text_edit_control: T.EDIT_BOX - anvil_title_and_text_panel: T.PANEL - "anvil_title_and_text_panel/title_label": T.LABEL - "anvil_title_and_text_panel/text_edit_control": T.EDIT_BOX - slots_panel: T.PANEL - "slots_panel/input_slot": T.INPUT_PANEL - "slots_panel/material_slot": T.INPUT_PANEL - "slots_panel/result_slot": T.INPUT_PANEL - "slots_panel/plus_sign": T.LABEL - "slots_panel/arrow": T.IMAGE - "slots_panel/arrow/cross_out": T.IMAGE - anvil_contents_panel: T.PANEL - "anvil_contents_panel/red_cost": T.LABEL - "anvil_contents_panel/green_cost": T.LABEL - "anvil_contents_panel/slots_panel": T.PANEL - "anvil_contents_panel/anvil_title_and_text_panel": T.PANEL - inventory_grid: T.GRID - inventory_content: T.PANEL - "inventory_content/scrolling_panel": T.PANEL - inventory_and_anvil_panel: T.PANEL - "inventory_and_anvil_panel/inventory_half_screen": T.PANEL - "inventory_and_anvil_panel/inventory_half_screen/inventory_content": T.PANEL - "inventory_and_anvil_panel/anvil_half_screen": T.PANEL - "inventory_and_anvil_panel/anvil_half_screen/anvil_contents_panel": T.PANEL - header: T.PANEL - "header/header_background": T.IMAGE - "header/legacy_pocket_close_button": T.BUTTON - "header/panel": T.PANEL - "header/panel/title_label": T.LABEL - header_and_content_stack_panel: T.STACK_PANEL - "header_and_content_stack_panel/header": T.PANEL - "header_and_content_stack_panel/inventory_and_anvil_panel": T.PANEL - anvil_panel: T.PANEL - "anvil_panel/bg": T.IMAGE - "anvil_panel/root_panel": T.INPUT_PANEL - "anvil_panel/header_and_content_stack_panel": T.STACK_PANEL - "anvil_panel/container_gamepad_helpers": T.STACK_PANEL - "anvil_panel/inventory_selected_icon_button": T.BUTTON - "anvil_panel/hold_icon": T.BUTTON - "anvil_panel/selected_item_details_factory": T.FACTORY - "anvil_panel/item_lock_notification_factory": T.FACTORY - "anvil_panel/flying_item_renderer": T.CUSTOM + "generic_label": T.LABEL, + "background_image": T.IMAGE, + "arrow_icon": T.IMAGE, + "cost_label": T.LABEL, + "cost_label/gray": T.IMAGE, + "title_label": T.LABEL, + "text_edit_control": T.EDIT_BOX, + "anvil_title_and_text_panel": T.PANEL, + "anvil_title_and_text_panel/title_label": T.LABEL, + "anvil_title_and_text_panel/text_edit_control": T.EDIT_BOX, + "slots_panel": T.PANEL, + "slots_panel/input_slot": T.INPUT_PANEL, + "slots_panel/material_slot": T.INPUT_PANEL, + "slots_panel/result_slot": T.INPUT_PANEL, + "slots_panel/plus_sign": T.LABEL, + "slots_panel/arrow": T.IMAGE, + "slots_panel/arrow/cross_out": T.IMAGE, + "anvil_contents_panel": T.PANEL, + "anvil_contents_panel/red_cost": T.LABEL, + "anvil_contents_panel/green_cost": T.LABEL, + "anvil_contents_panel/slots_panel": T.PANEL, + "anvil_contents_panel/anvil_title_and_text_panel": T.PANEL, + "inventory_grid": T.GRID, + "inventory_content": T.PANEL, + "inventory_content/scrolling_panel": T.PANEL, + "inventory_and_anvil_panel": T.PANEL, + "inventory_and_anvil_panel/inventory_half_screen": T.PANEL, + "inventory_and_anvil_panel/inventory_half_screen/inventory_content": T.PANEL, + "inventory_and_anvil_panel/anvil_half_screen": T.PANEL, + "inventory_and_anvil_panel/anvil_half_screen/anvil_contents_panel": T.PANEL, + "header": T.PANEL, + "header/header_background": T.IMAGE, + "header/legacy_pocket_close_button": T.BUTTON, + "header/panel": T.PANEL, + "header/panel/title_label": T.LABEL, + "header_and_content_stack_panel": T.STACK_PANEL, + "header_and_content_stack_panel/header": T.PANEL, + "header_and_content_stack_panel/inventory_and_anvil_panel": T.PANEL, + "anvil_panel": T.PANEL, + "anvil_panel/bg": T.IMAGE, + "anvil_panel/root_panel": T.INPUT_PANEL, + "anvil_panel/header_and_content_stack_panel": T.STACK_PANEL, + "anvil_panel/container_gamepad_helpers": T.STACK_PANEL, + "anvil_panel/inventory_selected_icon_button": T.BUTTON, + "anvil_panel/hold_icon": T.BUTTON, + "anvil_panel/selected_item_details_factory": T.FACTORY, + "anvil_panel/item_lock_notification_factory": T.FACTORY, + "anvil_panel/flying_item_renderer": T.CUSTOM, } export type AuthenticationModalsType = { - modal_dialog_label: T.LABEL - modal_dialog_content: T.STACK_PANEL - "modal_dialog_content/body_text": T.PANEL - "modal_dialog_content/button_wrapper": T.PANEL - "modal_dialog_content/button_wrapper/buttons": T.STACK_PANEL - "modal_dialog_content/button_wrapper/buttons/left": T.BUTTON - "modal_dialog_content/button_wrapper/buttons/padding": T.PANEL - "modal_dialog_content/button_wrapper/buttons/right": T.BUTTON - modal_dialog_frame: T.IMAGE - "modal_dialog_frame/title": T.LABEL - "modal_dialog_frame/close": T.BUTTON - "modal_dialog_frame/black_tint_image": T.IMAGE - "modal_dialog_frame/black_tint_image/content": T.UNKNOWN - ad_modal_dialog: T.SCREEN + "modal_dialog_label": T.LABEL, + "modal_dialog_content": T.STACK_PANEL, + "modal_dialog_content/body_text": T.PANEL, + "modal_dialog_content/button_wrapper": T.PANEL, + "modal_dialog_content/button_wrapper/buttons": T.STACK_PANEL, + "modal_dialog_content/button_wrapper/buttons/left": T.BUTTON, + "modal_dialog_content/button_wrapper/buttons/padding": T.PANEL, + "modal_dialog_content/button_wrapper/buttons/right": T.BUTTON, + "modal_dialog_frame": T.IMAGE, + "modal_dialog_frame/title": T.LABEL, + "modal_dialog_frame/close": T.BUTTON, + "modal_dialog_frame/black_tint_image": T.IMAGE, + "modal_dialog_frame/black_tint_image/content": T.UNKNOWN, + "ad_modal_dialog": T.SCREEN, } export type AuthenticationType = { - nothing: T.PANEL - tts_control: T.BUTTON - split_button_panel: T.PANEL - "split_button_panel/buttons": T.STACK_PANEL - "split_button_panel/buttons/a": T.UNKNOWN - "split_button_panel/buttons/paddding": T.PANEL - "split_button_panel/buttons/b": T.UNKNOWN - vertical_split_button_panel: T.PANEL - fixed_width_wrapper: T.PANEL - "fixed_width_wrapper/content": T.UNKNOWN - sign_in_button: T.BUTTON - download_button: T.BUTTON - smooth_label: T.LABEL - smooth_bound_label: T.LABEL - title_label: T.LABEL - eula_hyperlink: T.BUTTON - accept_eula_button: T.BUTTON - eula_content: T.STACK_PANEL - "eula_content/prompt_wrapper": T.PANEL - "eula_content/prompt_wrapper/border": T.BUTTON - "eula_content/prompt_wrapper/prompt_text": T.LABEL - "eula_content/padding": T.PANEL - "eula_content/buttons": T.PANEL - eula: T.IMAGE - version: T.PANEL - "version/label": T.LABEL - "version/label_background": T.IMAGE - view_terms_button: T.BUTTON - privacy_policy_button: T.BUTTON - agree_panel: T.PANEL - "agree_panel/checkbox_control": T.TOGGLE - "agree_panel/i_agree_label": T.LABEL - term_item: T.PANEL - "term_item/item": T.UNKNOWN - terms_and_conditions_panel: T.PANEL - "terms_and_conditions_panel/terms_string_panel": T.PANEL - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": T.STACK_PANEL - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree": T.PANEL - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": T.PANEL - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": T.PANEL - confirmation_panel: T.PANEL - "confirmation_panel/confirm_button": T.BUTTON - scroll_stack_panel: T.PANEL - "scroll_stack_panel/border": T.BUTTON - "scroll_stack_panel/terms": T.LABEL - purchase_confirm_content: T.STACK_PANEL - "purchase_confirm_content/header_padding": T.PANEL - "purchase_confirm_content/panel_wrap": T.PANEL - "purchase_confirm_content/panel_wrap/scrolling_panel": T.PANEL - "purchase_confirm_content/terms_and_conditions_panel": T.PANEL - "purchase_confirm_content/button_padding": T.PANEL - "purchase_confirm_content/confirmation_panel": T.PANEL - "purchase_confirm_content/padding": T.PANEL - purchase_prompt_content: T.STACK_PANEL - "purchase_prompt_content/prompt_wrap": T.PANEL - "purchase_prompt_content/prompt_wrap/border": T.BUTTON - "purchase_prompt_content/prompt_wrap/prompt": T.LABEL - "purchase_prompt_content/purchase_wrap_centering_container": T.PANEL - "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap": T.STACK_PANEL - "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/purchase": T.BUTTON - "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/padding_middle": T.PANEL - "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/signout": T.BUTTON - purchase_prompt: T.IMAGE - purchase_confirm: T.IMAGE - purchase_panel: T.PANEL - "purchase_panel/prompt": T.IMAGE - "purchase_panel/confirm": T.IMAGE - title_panel: T.PANEL - "title_panel/title_label_wrapper": T.PANEL - hyperlink_panel: T.PANEL - "hyperlink_panel/link_stack": T.STACK_PANEL - "hyperlink_panel/link_stack/link1": T.BUTTON - "hyperlink_panel/link_stack/link2": T.BUTTON - "hyperlink_panel/link_stack/padding": T.PANEL - auth_screen: T.SCREEN - sign_in_content: T.STACK_PANEL - "sign_in_content/body_text": T.PANEL - "sign_in_content/body_hyperlink": T.PANEL - "sign_in_content/sign_in_wrapper": T.PANEL - "sign_in_content/sign_in_wrapper/button": T.BUTTON - "sign_in_content/download_wrapper": T.PANEL - "sign_in_content/download_wrapper/button": T.BUTTON - authentication_screen_content: T.PANEL - "authentication_screen_content/debug": T.STACK_PANEL - "authentication_screen_content/client_version": T.PANEL - "authentication_screen_content/client_version/version": T.PANEL - "authentication_screen_content/sign_in": T.IMAGE - "authentication_screen_content/sign_in_ios": T.IMAGE - "authentication_screen_content/pack_progress": T.IMAGE - "authentication_screen_content/welcome": T.UNKNOWN - "authentication_screen_content/demo": T.UNKNOWN - "authentication_screen_content/eula": T.IMAGE - "authentication_screen_content/purchase_panel": T.PANEL - "authentication_screen_content/popup_dialog_factory": T.FACTORY - popup_content_base: T.STACK_PANEL - "popup_content_base/message": T.PANEL - "popup_content_base/message/border": T.BUTTON - "popup_content_base/message/text": T.PANEL - "popup_content_base/content": T.UNKNOWN - "popup_content_base/footer_padding": T.PANEL - popup_dialog: T.INPUT_PANEL - "popup_dialog/dialog": T.IMAGE - trial_info_ios_additional_content: T.PANEL - "trial_info_ios_additional_content/dismiss": T.BUTTON - popup_dialog_trial_info_ios: T.INPUT_PANEL - student_message_panel: T.PANEL - trial_info_additional_content: T.STACK_PANEL - "trial_info_additional_content/buttons": T.PANEL - generic_welcome_additional_content: T.STACK_PANEL - "generic_welcome_additional_content/button_wrapper": T.PANEL - "generic_welcome_additional_content/button_wrapper/buttons": T.PANEL - popup_dialog_trial_info: T.INPUT_PANEL - popup_dialog_generic_welcome: T.INPUT_PANEL - popup_message: T.STACK_PANEL - "popup_message/main_message": T.LABEL - "popup_message/extra_message": T.PANEL - "popup_message/padding": T.PANEL - popup_message_student: T.LABEL - popup_hyperlink: T.BUTTON - popup_purchase_link: T.BUTTON - popup_dismiss_button: T.BUTTON - pack_progress_content: T.STACK_PANEL - "pack_progress_content/top_padding": T.PANEL - "pack_progress_content/loading_text_panel": T.PANEL - "pack_progress_content/loading_text_panel/loading_text": T.LABEL - "pack_progress_content/loading_bar_panel": T.PANEL - "pack_progress_content/loading_bar_panel/loading_bar": T.PANEL - "pack_progress_content/loading_padding": T.PANEL - "pack_progress_content/skip_panel": T.PANEL - "pack_progress_content/skip_panel/skip_button": T.BUTTON - "pack_progress_content/bottom_padding": T.PANEL - sign_in_ios_content: T.STACK_PANEL - "sign_in_ios_content/body_text": T.PANEL - "sign_in_ios_content/body_hyperlink": T.PANEL - "sign_in_ios_content/signin_ios_button_panel": T.STACK_PANEL - "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap": T.PANEL - "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap/prompt": T.LABEL - "sign_in_ios_content/signin_ios_button_panel/buttons": T.PANEL - "sign_in_ios_content/signin_ios_button_panel/pad_footer": T.PANEL - "sign_in_ios_content/error_sign_in_panel": T.PANEL - "sign_in_ios_content/error_sign_in_panel/button": T.BUTTON - "sign_in_ios_content/error_download_panel": T.PANEL - "sign_in_ios_content/error_download_panel/button": T.BUTTON - sign_in_ios_button: T.BUTTON - to_app_store: T.BUTTON - debug_panel: T.STACK_PANEL - "debug_panel/state_label": T.LABEL - "debug_panel/state_text_box": T.EDIT_BOX - "debug_panel/open_popup": T.BUTTON - "debug_panel/refresh_popup": T.BUTTON - "debug_panel/reset": T.BUTTON - "debug_panel/toggle_ios": T.BUTTON - authentication_popup_link_button: T.STACK_PANEL - "authentication_popup_link_button/top_padding": T.PANEL - "authentication_popup_link_button/link_button": T.BUTTON - authentication_popup_contents: T.STACK_PANEL - "authentication_popup_contents/initial_padding": T.PANEL - "authentication_popup_contents/body": T.LABEL - "authentication_popup_contents/learn_more_link": T.STACK_PANEL - "authentication_popup_contents/link2": T.STACK_PANEL - "authentication_popup_contents/end_padding": T.PANEL - resizeable_scrolling_panel: T.PANEL - authentication_popup_content_panel: T.PANEL - authentication_popup_button: T.BUTTON - authentication_popup_one_button: T.PANEL - "authentication_popup_one_button/button": T.BUTTON - authentication_popup_two_buttons: T.STACK_PANEL - "authentication_popup_two_buttons/first_button": T.BUTTON - "authentication_popup_two_buttons/button_padding": T.PANEL - "authentication_popup_two_buttons/second_button": T.BUTTON - authentication_popup_lower_button_panel: T.PANEL - "authentication_popup_lower_button_panel/one_button": T.PANEL - "authentication_popup_lower_button_panel/two_buttons": T.STACK_PANEL - authentication_popup: T.INPUT_PANEL + "nothing": T.PANEL, + "tts_control": T.BUTTON, + "split_button_panel": T.PANEL, + "split_button_panel/buttons": T.STACK_PANEL, + "split_button_panel/buttons/a": T.UNKNOWN, + "split_button_panel/buttons/paddding": T.PANEL, + "split_button_panel/buttons/b": T.UNKNOWN, + "vertical_split_button_panel": T.PANEL, + "fixed_width_wrapper": T.PANEL, + "fixed_width_wrapper/content": T.UNKNOWN, + "sign_in_button": T.BUTTON, + "download_button": T.BUTTON, + "smooth_label": T.LABEL, + "smooth_bound_label": T.LABEL, + "title_label": T.LABEL, + "eula_hyperlink": T.BUTTON, + "accept_eula_button": T.BUTTON, + "eula_content": T.STACK_PANEL, + "eula_content/prompt_wrapper": T.PANEL, + "eula_content/prompt_wrapper/border": T.BUTTON, + "eula_content/prompt_wrapper/prompt_text": T.LABEL, + "eula_content/padding": T.PANEL, + "eula_content/buttons": T.PANEL, + "eula": T.IMAGE, + "version": T.PANEL, + "version/label": T.LABEL, + "version/label_background": T.IMAGE, + "view_terms_button": T.BUTTON, + "privacy_policy_button": T.BUTTON, + "agree_panel": T.PANEL, + "agree_panel/checkbox_control": T.TOGGLE, + "agree_panel/i_agree_label": T.LABEL, + "term_item": T.PANEL, + "term_item/item": T.UNKNOWN, + "terms_and_conditions_panel": T.PANEL, + "terms_and_conditions_panel/terms_string_panel": T.PANEL, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": T.STACK_PANEL, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree": T.PANEL, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": T.PANEL, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": T.PANEL, + "confirmation_panel": T.PANEL, + "confirmation_panel/confirm_button": T.BUTTON, + "scroll_stack_panel": T.PANEL, + "scroll_stack_panel/border": T.BUTTON, + "scroll_stack_panel/terms": T.LABEL, + "purchase_confirm_content": T.STACK_PANEL, + "purchase_confirm_content/header_padding": T.PANEL, + "purchase_confirm_content/panel_wrap": T.PANEL, + "purchase_confirm_content/panel_wrap/scrolling_panel": T.PANEL, + "purchase_confirm_content/terms_and_conditions_panel": T.PANEL, + "purchase_confirm_content/button_padding": T.PANEL, + "purchase_confirm_content/confirmation_panel": T.PANEL, + "purchase_confirm_content/padding": T.PANEL, + "purchase_prompt_content": T.STACK_PANEL, + "purchase_prompt_content/prompt_wrap": T.PANEL, + "purchase_prompt_content/prompt_wrap/border": T.BUTTON, + "purchase_prompt_content/prompt_wrap/prompt": T.LABEL, + "purchase_prompt_content/purchase_wrap_centering_container": T.PANEL, + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap": T.STACK_PANEL, + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/purchase": T.BUTTON, + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/padding_middle": T.PANEL, + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/signout": T.BUTTON, + "purchase_prompt": T.IMAGE, + "purchase_confirm": T.IMAGE, + "purchase_panel": T.PANEL, + "purchase_panel/prompt": T.IMAGE, + "purchase_panel/confirm": T.IMAGE, + "title_panel": T.PANEL, + "title_panel/title_label_wrapper": T.PANEL, + "hyperlink_panel": T.PANEL, + "hyperlink_panel/link_stack": T.STACK_PANEL, + "hyperlink_panel/link_stack/link1": T.BUTTON, + "hyperlink_panel/link_stack/link2": T.BUTTON, + "hyperlink_panel/link_stack/padding": T.PANEL, + "auth_screen": T.SCREEN, + "sign_in_content": T.STACK_PANEL, + "sign_in_content/body_text": T.PANEL, + "sign_in_content/body_hyperlink": T.PANEL, + "sign_in_content/sign_in_wrapper": T.PANEL, + "sign_in_content/sign_in_wrapper/button": T.BUTTON, + "sign_in_content/download_wrapper": T.PANEL, + "sign_in_content/download_wrapper/button": T.BUTTON, + "authentication_screen_content": T.PANEL, + "authentication_screen_content/debug": T.STACK_PANEL, + "authentication_screen_content/client_version": T.PANEL, + "authentication_screen_content/client_version/version": T.PANEL, + "authentication_screen_content/sign_in": T.IMAGE, + "authentication_screen_content/sign_in_ios": T.IMAGE, + "authentication_screen_content/pack_progress": T.IMAGE, + "authentication_screen_content/welcome": T.UNKNOWN, + "authentication_screen_content/demo": T.UNKNOWN, + "authentication_screen_content/eula": T.IMAGE, + "authentication_screen_content/purchase_panel": T.PANEL, + "authentication_screen_content/popup_dialog_factory": T.FACTORY, + "popup_content_base": T.STACK_PANEL, + "popup_content_base/message": T.PANEL, + "popup_content_base/message/border": T.BUTTON, + "popup_content_base/message/text": T.PANEL, + "popup_content_base/content": T.UNKNOWN, + "popup_content_base/footer_padding": T.PANEL, + "popup_dialog": T.INPUT_PANEL, + "popup_dialog/dialog": T.IMAGE, + "trial_info_ios_additional_content": T.PANEL, + "trial_info_ios_additional_content/dismiss": T.BUTTON, + "popup_dialog_trial_info_ios": T.INPUT_PANEL, + "student_message_panel": T.PANEL, + "trial_info_additional_content": T.STACK_PANEL, + "trial_info_additional_content/buttons": T.PANEL, + "generic_welcome_additional_content": T.STACK_PANEL, + "generic_welcome_additional_content/button_wrapper": T.PANEL, + "generic_welcome_additional_content/button_wrapper/buttons": T.PANEL, + "popup_dialog_trial_info": T.INPUT_PANEL, + "popup_dialog_generic_welcome": T.INPUT_PANEL, + "popup_message": T.STACK_PANEL, + "popup_message/main_message": T.LABEL, + "popup_message/extra_message": T.PANEL, + "popup_message/padding": T.PANEL, + "popup_message_student": T.LABEL, + "popup_hyperlink": T.BUTTON, + "popup_purchase_link": T.BUTTON, + "popup_dismiss_button": T.BUTTON, + "pack_progress_content": T.STACK_PANEL, + "pack_progress_content/top_padding": T.PANEL, + "pack_progress_content/loading_text_panel": T.PANEL, + "pack_progress_content/loading_text_panel/loading_text": T.LABEL, + "pack_progress_content/loading_bar_panel": T.PANEL, + "pack_progress_content/loading_bar_panel/loading_bar": T.PANEL, + "pack_progress_content/loading_padding": T.PANEL, + "pack_progress_content/skip_panel": T.PANEL, + "pack_progress_content/skip_panel/skip_button": T.BUTTON, + "pack_progress_content/bottom_padding": T.PANEL, + "sign_in_ios_content": T.STACK_PANEL, + "sign_in_ios_content/body_text": T.PANEL, + "sign_in_ios_content/body_hyperlink": T.PANEL, + "sign_in_ios_content/signin_ios_button_panel": T.STACK_PANEL, + "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap": T.PANEL, + "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap/prompt": T.LABEL, + "sign_in_ios_content/signin_ios_button_panel/buttons": T.PANEL, + "sign_in_ios_content/signin_ios_button_panel/pad_footer": T.PANEL, + "sign_in_ios_content/error_sign_in_panel": T.PANEL, + "sign_in_ios_content/error_sign_in_panel/button": T.BUTTON, + "sign_in_ios_content/error_download_panel": T.PANEL, + "sign_in_ios_content/error_download_panel/button": T.BUTTON, + "sign_in_ios_button": T.BUTTON, + "to_app_store": T.BUTTON, + "debug_panel": T.STACK_PANEL, + "debug_panel/state_label": T.LABEL, + "debug_panel/state_text_box": T.EDIT_BOX, + "debug_panel/open_popup": T.BUTTON, + "debug_panel/refresh_popup": T.BUTTON, + "debug_panel/reset": T.BUTTON, + "debug_panel/toggle_ios": T.BUTTON, + "authentication_popup_link_button": T.STACK_PANEL, + "authentication_popup_link_button/top_padding": T.PANEL, + "authentication_popup_link_button/link_button": T.BUTTON, + "authentication_popup_contents": T.STACK_PANEL, + "authentication_popup_contents/initial_padding": T.PANEL, + "authentication_popup_contents/body": T.LABEL, + "authentication_popup_contents/learn_more_link": T.STACK_PANEL, + "authentication_popup_contents/link2": T.STACK_PANEL, + "authentication_popup_contents/end_padding": T.PANEL, + "resizeable_scrolling_panel": T.PANEL, + "authentication_popup_content_panel": T.PANEL, + "authentication_popup_button": T.BUTTON, + "authentication_popup_one_button": T.PANEL, + "authentication_popup_one_button/button": T.BUTTON, + "authentication_popup_two_buttons": T.STACK_PANEL, + "authentication_popup_two_buttons/first_button": T.BUTTON, + "authentication_popup_two_buttons/button_padding": T.PANEL, + "authentication_popup_two_buttons/second_button": T.BUTTON, + "authentication_popup_lower_button_panel": T.PANEL, + "authentication_popup_lower_button_panel/one_button": T.PANEL, + "authentication_popup_lower_button_panel/two_buttons": T.STACK_PANEL, + "authentication_popup": T.INPUT_PANEL, } export type AutoSaveInfoType = { - auto_save: T.IMAGE - accept_label: T.PANEL - "accept_label/button_label": T.LABEL - accept_button: T.BUTTON - main_panel: T.INPUT_PANEL - "main_panel/common_panel": T.PANEL - "main_panel/title_label": T.LABEL - "main_panel/message_label": T.LABEL - "main_panel/save_icon": T.IMAGE - "main_panel/a": T.BUTTON - "main_panel/gamepad_helpers": T.PANEL - gamepad_helpers: T.PANEL - "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL - auto_save_info_screen: T.SCREEN - auto_save_info_screen_content: T.PANEL - "auto_save_info_screen_content/root_panel": T.PANEL - "auto_save_info_screen_content/root_panel/main_panel": T.INPUT_PANEL + "auto_save": T.IMAGE, + "accept_label": T.PANEL, + "accept_label/button_label": T.LABEL, + "accept_button": T.BUTTON, + "main_panel": T.INPUT_PANEL, + "main_panel/common_panel": T.PANEL, + "main_panel/title_label": T.LABEL, + "main_panel/message_label": T.LABEL, + "main_panel/save_icon": T.IMAGE, + "main_panel/a": T.BUTTON, + "main_panel/gamepad_helpers": T.PANEL, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL, + "auto_save_info_screen": T.SCREEN, + "auto_save_info_screen_content": T.PANEL, + "auto_save_info_screen_content/root_panel": T.PANEL, + "auto_save_info_screen_content/root_panel/main_panel": T.INPUT_PANEL, } export type BeaconType = { - selected_item_details: T.PANEL - beacon_panel: T.PANEL - "beacon_panel/container_gamepad_helpers": T.STACK_PANEL - "beacon_panel/selected_item_details_factory": T.FACTORY - "beacon_panel/item_lock_notification_factory": T.FACTORY - "beacon_panel/root_panel": T.INPUT_PANEL - "beacon_panel/root_panel/common_panel": T.PANEL - "beacon_panel/root_panel/beacon_inventory": T.PANEL - "beacon_panel/root_panel/beacon_inventory/beacon_inner_panel": T.IMAGE - "beacon_panel/root_panel/beacon_inventory/payment_panel": T.PANEL - "beacon_panel/root_panel/beacon_inventory/inventory_panel_bottom_half": T.PANEL - "beacon_panel/root_panel/beacon_inventory/hotbar_grid_template": T.GRID - "beacon_panel/root_panel/beacon_inventory/inventory_selected_icon_button": T.BUTTON - "beacon_panel/root_panel/beacon_inventory/gamepad_cursor": T.BUTTON - "beacon_panel/flying_item_renderer": T.CUSTOM - inventory_slot_button: T.BUTTON - hotbar_slot_button: T.BUTTON - image_atlas: T.IMAGE - pyramid_image: T.IMAGE - pyramid_panel: T.PANEL - "pyramid_panel/level1": T.IMAGE - "pyramid_panel/level2": T.IMAGE - "pyramid_panel/level3": T.IMAGE - "pyramid_panel/level4": T.IMAGE - item_seperator: T.IMAGE - item_renderer: T.CUSTOM - usable_items_panel: T.PANEL - "usable_items_panel/netherite": T.CUSTOM - "usable_items_panel/item_seperator_0": T.IMAGE - "usable_items_panel/emerald": T.CUSTOM - "usable_items_panel/item_seperator_1": T.IMAGE - "usable_items_panel/diamond": T.CUSTOM - "usable_items_panel/item_seperator_2": T.IMAGE - "usable_items_panel/gold": T.CUSTOM - "usable_items_panel/item_seperator_3": T.IMAGE - "usable_items_panel/iron": T.CUSTOM - base_image: T.IMAGE - hover_text: T.CUSTOM - hover_state: T.IMAGE - "hover_state/hover_text": T.CUSTOM - button_unchecked_default: T.IMAGE - button_unchecked_hover: T.IMAGE - "button_unchecked_hover/hover_text": T.CUSTOM - button_checked_hover: T.IMAGE - "button_checked_hover/hover_text": T.CUSTOM - button_locked: T.IMAGE - button_locked_hover: T.IMAGE - "button_locked_hover/hover_text": T.CUSTOM - button_checked: T.IMAGE - toggle_button: T.TOGGLE - base_button: T.BUTTON - "base_button/default": T.IMAGE - "base_button/hover": T.IMAGE - "base_button/pressed": T.IMAGE - active_button: T.BUTTON - inactive_button: T.BUTTON - "inactive_button/default": T.IMAGE - "inactive_button/hover": T.IMAGE - selected_button: T.BUTTON - "selected_button/default": T.IMAGE - "selected_button/hover": T.IMAGE - secondary_effect_base: T.IMAGE - speed_secondary: T.IMAGE - haste_secondary: T.IMAGE - resist_secondary: T.IMAGE - jump_secondary: T.IMAGE - strength_secondary: T.IMAGE - image_template: T.PANEL - "image_template/base_image": T.IMAGE - secondary_effect_images: T.PANEL - "secondary_effect_images/speed_secondary": T.IMAGE - "secondary_effect_images/haste_secondary": T.IMAGE - "secondary_effect_images/resist_secondary": T.IMAGE - "secondary_effect_images/jump_secondary": T.IMAGE - "secondary_effect_images/strength_secondary": T.IMAGE - toggle_template: T.PANEL - "toggle_template/toggle_button": T.TOGGLE - button_template: T.PANEL - "button_template/active_button": T.BUTTON - "button_template/inactive_button": T.BUTTON - "button_template/image_template": T.PANEL - panel_template: T.PANEL - button_panel: T.PANEL - "button_panel/speed_panel": T.PANEL - "button_panel/speed_panel/toggle_template": T.PANEL - "button_panel/haste_panel": T.PANEL - "button_panel/resist_panel": T.PANEL - "button_panel/jump_panel": T.PANEL - "button_panel/strength_panel": T.PANEL - "button_panel/regen_panel": T.PANEL - "button_panel/extra_panel": T.PANEL - payment_panel: T.PANEL - "payment_panel/confirm_panel": T.PANEL - "payment_panel/cancel_panel": T.PANEL - "payment_panel/ingredient_item": T.INPUT_PANEL - "payment_panel/usable_items_panel": T.PANEL - beacon_label: T.LABEL - beacon_inner_panel: T.IMAGE - "beacon_inner_panel/button_panel": T.PANEL - "beacon_inner_panel/pyramid_panel": T.PANEL - "beacon_inner_panel/middle_strip": T.IMAGE - "beacon_inner_panel/primary_power_label": T.LABEL - "beacon_inner_panel/secondary_power_label": T.LABEL - beacon_screen: T.SCREEN + "selected_item_details": T.PANEL, + "beacon_panel": T.PANEL, + "beacon_panel/container_gamepad_helpers": T.STACK_PANEL, + "beacon_panel/selected_item_details_factory": T.FACTORY, + "beacon_panel/item_lock_notification_factory": T.FACTORY, + "beacon_panel/root_panel": T.INPUT_PANEL, + "beacon_panel/root_panel/common_panel": T.PANEL, + "beacon_panel/root_panel/beacon_inventory": T.PANEL, + "beacon_panel/root_panel/beacon_inventory/beacon_inner_panel": T.IMAGE, + "beacon_panel/root_panel/beacon_inventory/payment_panel": T.PANEL, + "beacon_panel/root_panel/beacon_inventory/inventory_panel_bottom_half": T.PANEL, + "beacon_panel/root_panel/beacon_inventory/hotbar_grid_template": T.GRID, + "beacon_panel/root_panel/beacon_inventory/inventory_selected_icon_button": T.BUTTON, + "beacon_panel/root_panel/beacon_inventory/gamepad_cursor": T.BUTTON, + "beacon_panel/flying_item_renderer": T.CUSTOM, + "inventory_slot_button": T.BUTTON, + "hotbar_slot_button": T.BUTTON, + "image_atlas": T.IMAGE, + "pyramid_image": T.IMAGE, + "pyramid_panel": T.PANEL, + "pyramid_panel/level1": T.IMAGE, + "pyramid_panel/level2": T.IMAGE, + "pyramid_panel/level3": T.IMAGE, + "pyramid_panel/level4": T.IMAGE, + "item_seperator": T.IMAGE, + "item_renderer": T.CUSTOM, + "usable_items_panel": T.PANEL, + "usable_items_panel/netherite": T.CUSTOM, + "usable_items_panel/item_seperator_0": T.IMAGE, + "usable_items_panel/emerald": T.CUSTOM, + "usable_items_panel/item_seperator_1": T.IMAGE, + "usable_items_panel/diamond": T.CUSTOM, + "usable_items_panel/item_seperator_2": T.IMAGE, + "usable_items_panel/gold": T.CUSTOM, + "usable_items_panel/item_seperator_3": T.IMAGE, + "usable_items_panel/iron": T.CUSTOM, + "base_image": T.IMAGE, + "hover_text": T.CUSTOM, + "hover_state": T.IMAGE, + "hover_state/hover_text": T.CUSTOM, + "button_unchecked_default": T.IMAGE, + "button_unchecked_hover": T.IMAGE, + "button_unchecked_hover/hover_text": T.CUSTOM, + "button_checked_hover": T.IMAGE, + "button_checked_hover/hover_text": T.CUSTOM, + "button_locked": T.IMAGE, + "button_locked_hover": T.IMAGE, + "button_locked_hover/hover_text": T.CUSTOM, + "button_checked": T.IMAGE, + "toggle_button": T.TOGGLE, + "base_button": T.BUTTON, + "base_button/default": T.IMAGE, + "base_button/hover": T.IMAGE, + "base_button/pressed": T.IMAGE, + "active_button": T.BUTTON, + "inactive_button": T.BUTTON, + "inactive_button/default": T.IMAGE, + "inactive_button/hover": T.IMAGE, + "selected_button": T.BUTTON, + "selected_button/default": T.IMAGE, + "selected_button/hover": T.IMAGE, + "secondary_effect_base": T.IMAGE, + "speed_secondary": T.IMAGE, + "haste_secondary": T.IMAGE, + "resist_secondary": T.IMAGE, + "jump_secondary": T.IMAGE, + "strength_secondary": T.IMAGE, + "image_template": T.PANEL, + "image_template/base_image": T.IMAGE, + "secondary_effect_images": T.PANEL, + "secondary_effect_images/speed_secondary": T.IMAGE, + "secondary_effect_images/haste_secondary": T.IMAGE, + "secondary_effect_images/resist_secondary": T.IMAGE, + "secondary_effect_images/jump_secondary": T.IMAGE, + "secondary_effect_images/strength_secondary": T.IMAGE, + "toggle_template": T.PANEL, + "toggle_template/toggle_button": T.TOGGLE, + "button_template": T.PANEL, + "button_template/active_button": T.BUTTON, + "button_template/inactive_button": T.BUTTON, + "button_template/image_template": T.PANEL, + "panel_template": T.PANEL, + "button_panel": T.PANEL, + "button_panel/speed_panel": T.PANEL, + "button_panel/speed_panel/toggle_template": T.PANEL, + "button_panel/haste_panel": T.PANEL, + "button_panel/resist_panel": T.PANEL, + "button_panel/jump_panel": T.PANEL, + "button_panel/strength_panel": T.PANEL, + "button_panel/regen_panel": T.PANEL, + "button_panel/extra_panel": T.PANEL, + "payment_panel": T.PANEL, + "payment_panel/confirm_panel": T.PANEL, + "payment_panel/cancel_panel": T.PANEL, + "payment_panel/ingredient_item": T.INPUT_PANEL, + "payment_panel/usable_items_panel": T.PANEL, + "beacon_label": T.LABEL, + "beacon_inner_panel": T.IMAGE, + "beacon_inner_panel/button_panel": T.PANEL, + "beacon_inner_panel/pyramid_panel": T.PANEL, + "beacon_inner_panel/middle_strip": T.IMAGE, + "beacon_inner_panel/primary_power_label": T.LABEL, + "beacon_inner_panel/secondary_power_label": T.LABEL, + "beacon_screen": T.SCREEN, } export type BeaconPocketType = { - generic_label: T.LABEL - panel_outline: T.IMAGE - dark_bg: T.IMAGE - background_image: T.IMAGE - item_seperator: T.IMAGE - item_renderer: T.CUSTOM - usable_items_panel: T.PANEL - "usable_items_panel/netherite": T.CUSTOM - "usable_items_panel/item_seperator_0": T.IMAGE - "usable_items_panel/emerald": T.CUSTOM - "usable_items_panel/item_seperator_1": T.IMAGE - "usable_items_panel/diamond": T.CUSTOM - "usable_items_panel/item_seperator_2": T.IMAGE - "usable_items_panel/gold": T.CUSTOM - "usable_items_panel/item_seperator_3": T.IMAGE - "usable_items_panel/iron": T.CUSTOM - pyramid_image: T.IMAGE - pyramid_panel: T.PANEL - "pyramid_panel/pyramid_image": T.IMAGE - background_panel: T.IMAGE - beacon_background: T.IMAGE - "beacon_background/middle_strip": T.IMAGE - inventory_grid: T.GRID - inventory_content: T.PANEL - "inventory_content/scrolling_panel": T.PANEL - highlight_hover_square: T.PANEL - "highlight_hover_square/highlight_square": T.IMAGE - button_unchecked_default: T.IMAGE - button_unchecked_hover: T.IMAGE - "button_unchecked_hover/highlight_hover_square": T.PANEL - button_checked: T.IMAGE - button_checked_hover: T.IMAGE - "button_checked_hover/highlight_hover_square": T.PANEL - button_locked: T.IMAGE - button_locked_hover: T.IMAGE - "button_locked_hover/highlight_hover_square": T.PANEL - toggle_button: T.TOGGLE - base_button: T.BUTTON - "base_button/default": T.IMAGE - "base_button/hover": T.IMAGE - "base_button/hover/highlight_hover_square": T.PANEL - "base_button/pressed": T.IMAGE - active_button: T.BUTTON - inactive_button_image: T.IMAGE - inactive_button: T.BUTTON - "inactive_button/default": T.IMAGE - "inactive_button/hover": T.IMAGE - "inactive_button/hover/highlight_hover_square": T.PANEL - selected_button_image: T.IMAGE - selected_button: T.BUTTON - "selected_button/default": T.IMAGE - "selected_button/hover": T.IMAGE - "selected_button/hover/highlight_hover_square": T.PANEL - secondary_effect_base: T.PANEL - speed_secondary: T.PANEL - haste_secondary: T.PANEL - resist_secondary: T.PANEL - jump_secondary: T.PANEL - strength_secondary: T.PANEL - secondary_effect_images: T.PANEL - "secondary_effect_images/speed_secondary": T.PANEL - "secondary_effect_images/haste_secondary": T.PANEL - "secondary_effect_images/resist_secondary": T.PANEL - "secondary_effect_images/jump_secondary": T.PANEL - "secondary_effect_images/strength_secondary": T.PANEL - base_image: T.IMAGE - image_template: T.PANEL - "image_template/base_image": T.IMAGE - toggle_template: T.PANEL - "toggle_template/toggle_button": T.TOGGLE - button_template: T.PANEL - "button_template/active_button": T.BUTTON - "button_template/inactive_button": T.BUTTON - "button_template/image_template": T.PANEL - panel_template: T.PANEL - beacon_power_label: T.PANEL - "beacon_power_label/label": T.LABEL - beacon_sub_panel: T.PANEL - beacon_button_left_panel: T.PANEL - "beacon_button_left_panel/primary_power_label": T.PANEL - "beacon_button_left_panel/panel": T.PANEL - "beacon_button_left_panel/panel/pyramids_and_buttons": T.PANEL - "beacon_button_left_panel/panel/pyramids_and_buttons/level1": T.PANEL - "beacon_button_left_panel/panel/pyramids_and_buttons/speed_panel": T.PANEL - "beacon_button_left_panel/panel/pyramids_and_buttons/haste_panel": T.PANEL - "beacon_button_left_panel/panel/pyramids_and_buttons/level2": T.PANEL - "beacon_button_left_panel/panel/pyramids_and_buttons/resist_panel": T.PANEL - "beacon_button_left_panel/panel/pyramids_and_buttons/jump_panel": T.PANEL - "beacon_button_left_panel/panel/pyramids_and_buttons/level3": T.PANEL - "beacon_button_left_panel/panel/pyramids_and_buttons/strength_panel": T.PANEL - beacon_button_right_panel: T.PANEL - "beacon_button_right_panel/secondary_power_label": T.PANEL - "beacon_button_right_panel/panel": T.PANEL - "beacon_button_right_panel/panel/buttons_and_pyramid": T.PANEL - "beacon_button_right_panel/panel/buttons_and_pyramid/level4": T.PANEL - "beacon_button_right_panel/panel/buttons_and_pyramid/regen_panel": T.PANEL - "beacon_button_right_panel/panel/buttons_and_pyramid/extra_panel": T.PANEL - beacon_buttons_panel: T.PANEL - "beacon_buttons_panel/beacon_background": T.IMAGE - "beacon_buttons_panel/left_panel": T.PANEL - "beacon_buttons_panel/right_panel": T.PANEL - confirm_panel: T.PANEL - "confirm_panel/ingredient_item": T.INPUT_PANEL - "confirm_panel/confirm_panel": T.PANEL - "confirm_panel/cancel_panel": T.PANEL - beacon_payment_panel: T.STACK_PANEL - "beacon_payment_panel/usable_items_panel": T.PANEL - "beacon_payment_panel/pad": T.PANEL - "beacon_payment_panel/confirm_panel": T.PANEL - beacon_contents_panel: T.STACK_PANEL - "beacon_contents_panel/fill1": T.PANEL - "beacon_contents_panel/beacon_buttons_panel": T.PANEL - "beacon_contents_panel/pad1": T.PANEL - "beacon_contents_panel/beacon_payment_panel": T.STACK_PANEL - "beacon_contents_panel/fill2": T.PANEL - header: T.PANEL - "header/header_background": T.IMAGE - "header/legacy_pocket_close_button": T.BUTTON - "header/panel": T.PANEL - "header/panel/title_label": T.LABEL - inventory_and_beacon_panel: T.PANEL - "inventory_and_beacon_panel/inventory_half_screen": T.PANEL - "inventory_and_beacon_panel/inventory_half_screen/inventory_content": T.PANEL - "inventory_and_beacon_panel/beacon_half_screen": T.PANEL - "inventory_and_beacon_panel/beacon_half_screen/beacon_content": T.STACK_PANEL - header_and_content_stack_panel: T.STACK_PANEL - "header_and_content_stack_panel/header": T.PANEL - "header_and_content_stack_panel/inventory_and_beacon_panel": T.PANEL - beacon_panel: T.PANEL - "beacon_panel/bg": T.IMAGE - "beacon_panel/root_panel": T.INPUT_PANEL - "beacon_panel/header_and_content_stack_panel": T.STACK_PANEL - "beacon_panel/container_gamepad_helpers": T.STACK_PANEL - "beacon_panel/inventory_selected_icon_button": T.BUTTON - "beacon_panel/hold_icon": T.BUTTON - "beacon_panel/selected_item_details_factory": T.FACTORY - "beacon_panel/item_lock_notification_factory": T.FACTORY - "beacon_panel/flying_item_renderer": T.CUSTOM + "generic_label": T.LABEL, + "panel_outline": T.IMAGE, + "dark_bg": T.IMAGE, + "background_image": T.IMAGE, + "item_seperator": T.IMAGE, + "item_renderer": T.CUSTOM, + "usable_items_panel": T.PANEL, + "usable_items_panel/netherite": T.CUSTOM, + "usable_items_panel/item_seperator_0": T.IMAGE, + "usable_items_panel/emerald": T.CUSTOM, + "usable_items_panel/item_seperator_1": T.IMAGE, + "usable_items_panel/diamond": T.CUSTOM, + "usable_items_panel/item_seperator_2": T.IMAGE, + "usable_items_panel/gold": T.CUSTOM, + "usable_items_panel/item_seperator_3": T.IMAGE, + "usable_items_panel/iron": T.CUSTOM, + "pyramid_image": T.IMAGE, + "pyramid_panel": T.PANEL, + "pyramid_panel/pyramid_image": T.IMAGE, + "background_panel": T.IMAGE, + "beacon_background": T.IMAGE, + "beacon_background/middle_strip": T.IMAGE, + "inventory_grid": T.GRID, + "inventory_content": T.PANEL, + "inventory_content/scrolling_panel": T.PANEL, + "highlight_hover_square": T.PANEL, + "highlight_hover_square/highlight_square": T.IMAGE, + "button_unchecked_default": T.IMAGE, + "button_unchecked_hover": T.IMAGE, + "button_unchecked_hover/highlight_hover_square": T.PANEL, + "button_checked": T.IMAGE, + "button_checked_hover": T.IMAGE, + "button_checked_hover/highlight_hover_square": T.PANEL, + "button_locked": T.IMAGE, + "button_locked_hover": T.IMAGE, + "button_locked_hover/highlight_hover_square": T.PANEL, + "toggle_button": T.TOGGLE, + "base_button": T.BUTTON, + "base_button/default": T.IMAGE, + "base_button/hover": T.IMAGE, + "base_button/hover/highlight_hover_square": T.PANEL, + "base_button/pressed": T.IMAGE, + "active_button": T.BUTTON, + "inactive_button_image": T.IMAGE, + "inactive_button": T.BUTTON, + "inactive_button/default": T.IMAGE, + "inactive_button/hover": T.IMAGE, + "inactive_button/hover/highlight_hover_square": T.PANEL, + "selected_button_image": T.IMAGE, + "selected_button": T.BUTTON, + "selected_button/default": T.IMAGE, + "selected_button/hover": T.IMAGE, + "selected_button/hover/highlight_hover_square": T.PANEL, + "secondary_effect_base": T.PANEL, + "speed_secondary": T.PANEL, + "haste_secondary": T.PANEL, + "resist_secondary": T.PANEL, + "jump_secondary": T.PANEL, + "strength_secondary": T.PANEL, + "secondary_effect_images": T.PANEL, + "secondary_effect_images/speed_secondary": T.PANEL, + "secondary_effect_images/haste_secondary": T.PANEL, + "secondary_effect_images/resist_secondary": T.PANEL, + "secondary_effect_images/jump_secondary": T.PANEL, + "secondary_effect_images/strength_secondary": T.PANEL, + "base_image": T.IMAGE, + "image_template": T.PANEL, + "image_template/base_image": T.IMAGE, + "toggle_template": T.PANEL, + "toggle_template/toggle_button": T.TOGGLE, + "button_template": T.PANEL, + "button_template/active_button": T.BUTTON, + "button_template/inactive_button": T.BUTTON, + "button_template/image_template": T.PANEL, + "panel_template": T.PANEL, + "beacon_power_label": T.PANEL, + "beacon_power_label/label": T.LABEL, + "beacon_sub_panel": T.PANEL, + "beacon_button_left_panel": T.PANEL, + "beacon_button_left_panel/primary_power_label": T.PANEL, + "beacon_button_left_panel/panel": T.PANEL, + "beacon_button_left_panel/panel/pyramids_and_buttons": T.PANEL, + "beacon_button_left_panel/panel/pyramids_and_buttons/level1": T.PANEL, + "beacon_button_left_panel/panel/pyramids_and_buttons/speed_panel": T.PANEL, + "beacon_button_left_panel/panel/pyramids_and_buttons/haste_panel": T.PANEL, + "beacon_button_left_panel/panel/pyramids_and_buttons/level2": T.PANEL, + "beacon_button_left_panel/panel/pyramids_and_buttons/resist_panel": T.PANEL, + "beacon_button_left_panel/panel/pyramids_and_buttons/jump_panel": T.PANEL, + "beacon_button_left_panel/panel/pyramids_and_buttons/level3": T.PANEL, + "beacon_button_left_panel/panel/pyramids_and_buttons/strength_panel": T.PANEL, + "beacon_button_right_panel": T.PANEL, + "beacon_button_right_panel/secondary_power_label": T.PANEL, + "beacon_button_right_panel/panel": T.PANEL, + "beacon_button_right_panel/panel/buttons_and_pyramid": T.PANEL, + "beacon_button_right_panel/panel/buttons_and_pyramid/level4": T.PANEL, + "beacon_button_right_panel/panel/buttons_and_pyramid/regen_panel": T.PANEL, + "beacon_button_right_panel/panel/buttons_and_pyramid/extra_panel": T.PANEL, + "beacon_buttons_panel": T.PANEL, + "beacon_buttons_panel/beacon_background": T.IMAGE, + "beacon_buttons_panel/left_panel": T.PANEL, + "beacon_buttons_panel/right_panel": T.PANEL, + "confirm_panel": T.PANEL, + "confirm_panel/ingredient_item": T.INPUT_PANEL, + "confirm_panel/confirm_panel": T.PANEL, + "confirm_panel/cancel_panel": T.PANEL, + "beacon_payment_panel": T.STACK_PANEL, + "beacon_payment_panel/usable_items_panel": T.PANEL, + "beacon_payment_panel/pad": T.PANEL, + "beacon_payment_panel/confirm_panel": T.PANEL, + "beacon_contents_panel": T.STACK_PANEL, + "beacon_contents_panel/fill1": T.PANEL, + "beacon_contents_panel/beacon_buttons_panel": T.PANEL, + "beacon_contents_panel/pad1": T.PANEL, + "beacon_contents_panel/beacon_payment_panel": T.STACK_PANEL, + "beacon_contents_panel/fill2": T.PANEL, + "header": T.PANEL, + "header/header_background": T.IMAGE, + "header/legacy_pocket_close_button": T.BUTTON, + "header/panel": T.PANEL, + "header/panel/title_label": T.LABEL, + "inventory_and_beacon_panel": T.PANEL, + "inventory_and_beacon_panel/inventory_half_screen": T.PANEL, + "inventory_and_beacon_panel/inventory_half_screen/inventory_content": T.PANEL, + "inventory_and_beacon_panel/beacon_half_screen": T.PANEL, + "inventory_and_beacon_panel/beacon_half_screen/beacon_content": T.STACK_PANEL, + "header_and_content_stack_panel": T.STACK_PANEL, + "header_and_content_stack_panel/header": T.PANEL, + "header_and_content_stack_panel/inventory_and_beacon_panel": T.PANEL, + "beacon_panel": T.PANEL, + "beacon_panel/bg": T.IMAGE, + "beacon_panel/root_panel": T.INPUT_PANEL, + "beacon_panel/header_and_content_stack_panel": T.STACK_PANEL, + "beacon_panel/container_gamepad_helpers": T.STACK_PANEL, + "beacon_panel/inventory_selected_icon_button": T.BUTTON, + "beacon_panel/hold_icon": T.BUTTON, + "beacon_panel/selected_item_details_factory": T.FACTORY, + "beacon_panel/item_lock_notification_factory": T.FACTORY, + "beacon_panel/flying_item_renderer": T.CUSTOM, } export type BlastFurnaceType = { - blast_furnace_screen: T.SCREEN + "blast_furnace_screen": T.SCREEN, } export type BookType = { - screenshot: T.IMAGE - screenshot_frame: T.IMAGE - "screenshot_frame/caption_edit": T.EDIT_BOX - photo_corner: T.IMAGE - photo_corner_bl: T.IMAGE - photo_corner_br: T.IMAGE - photo_corner_tr: T.IMAGE - photo_corner_tl: T.IMAGE - page_caption: T.EDIT_BOX - page_photo: T.PANEL - "page_photo/screenshot": T.IMAGE - "page_photo/screenshot_frame": T.IMAGE - "page_photo/photo_corner_bl": T.IMAGE - "page_photo/photo_corner_br": T.IMAGE - "page_photo/photo_corner_tl": T.IMAGE - "page_photo/photo_corner_tr": T.IMAGE - pick_item: T.PANEL - "pick_item/photo": T.PANEL - "pick_item/button": T.BUTTON - pick_item_inventory: T.PANEL - "pick_item_inventory/photo": T.PANEL - "pick_item_inventory/button": T.BUTTON - header: T.LABEL - text_centering_panel_inventory: T.PANEL - "text_centering_panel_inventory/inventory_header": T.LABEL - text_centering_panel_portfolio: T.PANEL - "text_centering_panel_portfolio/portfolio_header": T.LABEL - pick_scrolling_content: T.STACK_PANEL - "pick_scrolling_content/inventory_header": T.PANEL - "pick_scrolling_content/inventory_grid": T.STACK_PANEL - "pick_scrolling_content/portfolio_header": T.PANEL - "pick_scrolling_content/portfolio_grid": T.STACK_PANEL - pick_panel: T.IMAGE - "pick_panel/scroll": T.PANEL - "pick_panel/close_button": T.BUTTON - blank: T.IMAGE - book_background: T.IMAGE - book_spine_image: T.IMAGE - page_crease_left_image: T.IMAGE - page_crease_right_image: T.IMAGE - page_edge_left_image: T.IMAGE - page_edge_right_image: T.IMAGE - text_edit_hover_image: T.IMAGE - base_button: T.BUTTON - "base_button/default": T.IMAGE - "base_button/hover": T.IMAGE - "base_button/pressed": T.IMAGE - book_buttons_panel: T.PANEL - "book_buttons_panel/sign_export_buttons": T.STACK_PANEL - "book_buttons_panel/sign_export_buttons/left_spacer": T.PANEL - "book_buttons_panel/sign_export_buttons/sign_button": T.BUTTON - "book_buttons_panel/sign_export_buttons/export_button": T.BUTTON - "book_buttons_panel/sign_export_buttons/right_spacer": T.PANEL - "book_buttons_panel/im_content_button": T.BUTTON - cover_buttons_stack_panel_holder: T.PANEL - "cover_buttons_stack_panel_holder/cover_buttons_stack_panel": T.STACK_PANEL - "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/finalize_button": T.BUTTON - "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/padding_1": T.PANEL - "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/cancel_sign_button": T.BUTTON - close_button_default: T.IMAGE - close_button_hover: T.IMAGE - close_button_pressed: T.IMAGE - close_button: T.BUTTON - "close_button/default": T.IMAGE - "close_button/hover": T.IMAGE - "close_button/pressed": T.IMAGE - page_text_edit: T.EDIT_BOX - page_text: T.EDIT_BOX - page_number_label: T.LABEL - padded_button: T.PANEL - "padded_button/button": T.BUTTON - page_buttons_panel: T.STACK_PANEL - "page_buttons_panel/swap_page_left": T.PANEL - "page_buttons_panel/insert_text_page": T.PANEL - "page_buttons_panel/insert_photo_page": T.PANEL - "page_buttons_panel/delete_page": T.PANEL - "page_buttons_panel/swap_page_right": T.PANEL - page_content_panel: T.PANEL - "page_content_panel/page_text": T.EDIT_BOX - "page_content_panel/page_photo": T.PANEL - "page_content_panel/page_number_label": T.LABEL - "page_content_panel/page_buttons_panel": T.STACK_PANEL - "page_content_panel/edit_page": T.BUTTON - title_label: T.LABEL - title_text_box: T.EDIT_BOX - author_label: T.LABEL - author_text_box: T.EDIT_BOX - author_stack_panel: T.STACK_PANEL - "author_stack_panel/author_label_panel": T.PANEL - "author_stack_panel/author_label_panel/author_label": T.LABEL - "author_stack_panel/author_text_panel": T.PANEL - "author_stack_panel/author_text_panel/author_text_box": T.EDIT_BOX - warning_label: T.LABEL - cover_content_panel: T.PANEL - "cover_content_panel/title_label": T.LABEL - "cover_content_panel/title_text_box": T.EDIT_BOX - "cover_content_panel/author_stack_panel": T.STACK_PANEL - "cover_content_panel/warning_label": T.LABEL - cover_and_buttons_panel: T.PANEL - "cover_and_buttons_panel/cover_panel": T.PANEL - "cover_and_buttons_panel/cover_panel/cover_content_panel": T.PANEL - "cover_and_buttons_panel/cover_panel/book_background": T.IMAGE - "cover_and_buttons_panel/cover_panel/close_button": T.BUTTON - "cover_and_buttons_panel/cover_buttons_stack_panel_holder": T.PANEL - page_panel: T.PANEL - "page_panel/page_content_panel": T.PANEL - book_grid: T.GRID - "book_grid/page_panel_left": T.PANEL - "book_grid/page_panel_right": T.PANEL - book_and_buttons_panel: T.PANEL - "book_and_buttons_panel/book_panel": T.PANEL - "book_and_buttons_panel/book_panel/book_grid": T.GRID - "book_and_buttons_panel/book_panel/book_background": T.IMAGE - "book_and_buttons_panel/book_panel/book_spine_image": T.IMAGE - "book_and_buttons_panel/book_panel/close_button": T.BUTTON - "book_and_buttons_panel/book_panel/prev_button": T.BUTTON - "book_and_buttons_panel/book_panel/next_button": T.BUTTON - "book_and_buttons_panel/book_buttons_panel": T.PANEL - root_panel: T.PANEL - book_screen: T.SCREEN - book_screen_content: T.PANEL - "book_screen_content/root_panel": T.PANEL - "book_screen_content/root_panel/book_and_buttons_panel": T.PANEL - "book_screen_content/root_panel/cover_and_buttons_panel": T.PANEL - "book_screen_content/root_panel/pick_panel": T.IMAGE - "book_screen_content/root_panel/export_progress": T.PANEL - "book_screen_content/root_panel/gamepad_helper_a": T.STACK_PANEL - "book_screen_content/root_panel/gamepad_helper_b": T.STACK_PANEL + "screenshot": T.IMAGE, + "screenshot_frame": T.IMAGE, + "screenshot_frame/caption_edit": T.EDIT_BOX, + "photo_corner": T.IMAGE, + "photo_corner_bl": T.IMAGE, + "photo_corner_br": T.IMAGE, + "photo_corner_tr": T.IMAGE, + "photo_corner_tl": T.IMAGE, + "page_caption": T.EDIT_BOX, + "page_photo": T.PANEL, + "page_photo/screenshot": T.IMAGE, + "page_photo/screenshot_frame": T.IMAGE, + "page_photo/photo_corner_bl": T.IMAGE, + "page_photo/photo_corner_br": T.IMAGE, + "page_photo/photo_corner_tl": T.IMAGE, + "page_photo/photo_corner_tr": T.IMAGE, + "pick_item": T.PANEL, + "pick_item/photo": T.PANEL, + "pick_item/button": T.BUTTON, + "pick_item_inventory": T.PANEL, + "pick_item_inventory/photo": T.PANEL, + "pick_item_inventory/button": T.BUTTON, + "header": T.LABEL, + "text_centering_panel_inventory": T.PANEL, + "text_centering_panel_inventory/inventory_header": T.LABEL, + "text_centering_panel_portfolio": T.PANEL, + "text_centering_panel_portfolio/portfolio_header": T.LABEL, + "pick_scrolling_content": T.STACK_PANEL, + "pick_scrolling_content/inventory_header": T.PANEL, + "pick_scrolling_content/inventory_grid": T.STACK_PANEL, + "pick_scrolling_content/portfolio_header": T.PANEL, + "pick_scrolling_content/portfolio_grid": T.STACK_PANEL, + "pick_panel": T.IMAGE, + "pick_panel/scroll": T.PANEL, + "pick_panel/close_button": T.BUTTON, + "blank": T.IMAGE, + "book_background": T.IMAGE, + "book_spine_image": T.IMAGE, + "page_crease_left_image": T.IMAGE, + "page_crease_right_image": T.IMAGE, + "page_edge_left_image": T.IMAGE, + "page_edge_right_image": T.IMAGE, + "text_edit_hover_image": T.IMAGE, + "base_button": T.BUTTON, + "base_button/default": T.IMAGE, + "base_button/hover": T.IMAGE, + "base_button/pressed": T.IMAGE, + "book_buttons_panel": T.PANEL, + "book_buttons_panel/sign_export_buttons": T.STACK_PANEL, + "book_buttons_panel/sign_export_buttons/left_spacer": T.PANEL, + "book_buttons_panel/sign_export_buttons/sign_button": T.BUTTON, + "book_buttons_panel/sign_export_buttons/export_button": T.BUTTON, + "book_buttons_panel/sign_export_buttons/right_spacer": T.PANEL, + "book_buttons_panel/im_content_button": T.BUTTON, + "cover_buttons_stack_panel_holder": T.PANEL, + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel": T.STACK_PANEL, + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/finalize_button": T.BUTTON, + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/padding_1": T.PANEL, + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/cancel_sign_button": T.BUTTON, + "close_button_default": T.IMAGE, + "close_button_hover": T.IMAGE, + "close_button_pressed": T.IMAGE, + "close_button": T.BUTTON, + "close_button/default": T.IMAGE, + "close_button/hover": T.IMAGE, + "close_button/pressed": T.IMAGE, + "page_text_edit": T.EDIT_BOX, + "page_text": T.EDIT_BOX, + "page_number_label": T.LABEL, + "padded_button": T.PANEL, + "padded_button/button": T.BUTTON, + "page_buttons_panel": T.STACK_PANEL, + "page_buttons_panel/swap_page_left": T.PANEL, + "page_buttons_panel/insert_text_page": T.PANEL, + "page_buttons_panel/insert_photo_page": T.PANEL, + "page_buttons_panel/delete_page": T.PANEL, + "page_buttons_panel/swap_page_right": T.PANEL, + "page_content_panel": T.PANEL, + "page_content_panel/page_text": T.EDIT_BOX, + "page_content_panel/page_photo": T.PANEL, + "page_content_panel/page_number_label": T.LABEL, + "page_content_panel/page_buttons_panel": T.STACK_PANEL, + "page_content_panel/edit_page": T.BUTTON, + "title_label": T.LABEL, + "title_text_box": T.EDIT_BOX, + "author_label": T.LABEL, + "author_text_box": T.EDIT_BOX, + "author_stack_panel": T.STACK_PANEL, + "author_stack_panel/author_label_panel": T.PANEL, + "author_stack_panel/author_label_panel/author_label": T.LABEL, + "author_stack_panel/author_text_panel": T.PANEL, + "author_stack_panel/author_text_panel/author_text_box": T.EDIT_BOX, + "warning_label": T.LABEL, + "cover_content_panel": T.PANEL, + "cover_content_panel/title_label": T.LABEL, + "cover_content_panel/title_text_box": T.EDIT_BOX, + "cover_content_panel/author_stack_panel": T.STACK_PANEL, + "cover_content_panel/warning_label": T.LABEL, + "cover_and_buttons_panel": T.PANEL, + "cover_and_buttons_panel/cover_panel": T.PANEL, + "cover_and_buttons_panel/cover_panel/cover_content_panel": T.PANEL, + "cover_and_buttons_panel/cover_panel/book_background": T.IMAGE, + "cover_and_buttons_panel/cover_panel/close_button": T.BUTTON, + "cover_and_buttons_panel/cover_buttons_stack_panel_holder": T.PANEL, + "page_panel": T.PANEL, + "page_panel/page_content_panel": T.PANEL, + "book_grid": T.GRID, + "book_grid/page_panel_left": T.PANEL, + "book_grid/page_panel_right": T.PANEL, + "book_and_buttons_panel": T.PANEL, + "book_and_buttons_panel/book_panel": T.PANEL, + "book_and_buttons_panel/book_panel/book_grid": T.GRID, + "book_and_buttons_panel/book_panel/book_background": T.IMAGE, + "book_and_buttons_panel/book_panel/book_spine_image": T.IMAGE, + "book_and_buttons_panel/book_panel/close_button": T.BUTTON, + "book_and_buttons_panel/book_panel/prev_button": T.BUTTON, + "book_and_buttons_panel/book_panel/next_button": T.BUTTON, + "book_and_buttons_panel/book_buttons_panel": T.PANEL, + "root_panel": T.PANEL, + "book_screen": T.SCREEN, + "book_screen_content": T.PANEL, + "book_screen_content/root_panel": T.PANEL, + "book_screen_content/root_panel/book_and_buttons_panel": T.PANEL, + "book_screen_content/root_panel/cover_and_buttons_panel": T.PANEL, + "book_screen_content/root_panel/pick_panel": T.IMAGE, + "book_screen_content/root_panel/export_progress": T.PANEL, + "book_screen_content/root_panel/gamepad_helper_a": T.STACK_PANEL, + "book_screen_content/root_panel/gamepad_helper_b": T.STACK_PANEL, } export type BrewingStandType = { - brewing_pipes: T.IMAGE - brewing_fuel_pipes: T.IMAGE - bottle_empty_image: T.IMAGE - fuel_empty_image: T.IMAGE - bubbles_empty_image: T.IMAGE - bubbles_full_image: T.IMAGE - brewing_arrow_empty_image: T.IMAGE - brewing_arrow_full_image: T.IMAGE - brewing_fuel_bar_empty_image: T.IMAGE - brewing_fuel_bar_full_image: T.IMAGE - brewing_label: T.LABEL - brewingstand_output_item: T.INPUT_PANEL - brewing_output_slots: T.GRID - "brewing_output_slots/left_offset": T.PANEL - "brewing_output_slots/left_offset/output_grid_item1": T.INPUT_PANEL - "brewing_output_slots/output_grid_item2": T.INPUT_PANEL - "brewing_output_slots/right_offset": T.PANEL - "brewing_output_slots/right_offset/output_grid_item3": T.INPUT_PANEL - brewing_input_slot: T.PANEL - "brewing_input_slot/input_grid_item": T.INPUT_PANEL - brewing_fuel_slot: T.PANEL - "brewing_fuel_slot/fuel_grid_item": T.INPUT_PANEL - brewing_panel_top_half: T.PANEL - "brewing_panel_top_half/brewing_label": T.LABEL - "brewing_panel_top_half/brewing_stand_pictogram": T.PANEL - brewing_stand_pictogram: T.PANEL - "brewing_stand_pictogram/brewing_input_slot": T.PANEL - "brewing_stand_pictogram/brewing_output_slots": T.GRID - "brewing_stand_pictogram/brewing_fuel_slot": T.PANEL - "brewing_stand_pictogram/brewing_arrow_empty_image": T.IMAGE - "brewing_stand_pictogram/brewing_arrow_full_image": T.IMAGE - "brewing_stand_pictogram/brewing_fuel_bar_empty_image": T.IMAGE - "brewing_stand_pictogram/brewing_fuel_bar_full_image": T.IMAGE - "brewing_stand_pictogram/bubbles_empty_image": T.IMAGE - "brewing_stand_pictogram/bubbles_full_image": T.IMAGE - "brewing_stand_pictogram/brewing_fuel_pipes": T.IMAGE - "brewing_stand_pictogram/brewing_pipes": T.IMAGE - brewing_stand_panel: T.PANEL - "brewing_stand_panel/container_gamepad_helpers": T.STACK_PANEL - "brewing_stand_panel/selected_item_details_factory": T.FACTORY - "brewing_stand_panel/item_lock_notification_factory": T.FACTORY - "brewing_stand_panel/root_panel": T.INPUT_PANEL - "brewing_stand_panel/root_panel/common_panel": T.PANEL - "brewing_stand_panel/root_panel/furnace_screen_inventory": T.PANEL - "brewing_stand_panel/root_panel/furnace_screen_inventory/brewing_panel_top_half": T.PANEL - "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL - "brewing_stand_panel/root_panel/furnace_screen_inventory/hotbar_grid": T.GRID - "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button": T.BUTTON - "brewing_stand_panel/root_panel/inventory_selected_icon_button": T.BUTTON - "brewing_stand_panel/root_panel/gamepad_cursor": T.BUTTON - "brewing_stand_panel/flying_item_renderer": T.CUSTOM - brewing_stand_screen: T.SCREEN + "brewing_pipes": T.IMAGE, + "brewing_fuel_pipes": T.IMAGE, + "bottle_empty_image": T.IMAGE, + "fuel_empty_image": T.IMAGE, + "bubbles_empty_image": T.IMAGE, + "bubbles_full_image": T.IMAGE, + "brewing_arrow_empty_image": T.IMAGE, + "brewing_arrow_full_image": T.IMAGE, + "brewing_fuel_bar_empty_image": T.IMAGE, + "brewing_fuel_bar_full_image": T.IMAGE, + "brewing_label": T.LABEL, + "brewingstand_output_item": T.INPUT_PANEL, + "brewing_output_slots": T.GRID, + "brewing_output_slots/left_offset": T.PANEL, + "brewing_output_slots/left_offset/output_grid_item1": T.INPUT_PANEL, + "brewing_output_slots/output_grid_item2": T.INPUT_PANEL, + "brewing_output_slots/right_offset": T.PANEL, + "brewing_output_slots/right_offset/output_grid_item3": T.INPUT_PANEL, + "brewing_input_slot": T.PANEL, + "brewing_input_slot/input_grid_item": T.INPUT_PANEL, + "brewing_fuel_slot": T.PANEL, + "brewing_fuel_slot/fuel_grid_item": T.INPUT_PANEL, + "brewing_panel_top_half": T.PANEL, + "brewing_panel_top_half/brewing_label": T.LABEL, + "brewing_panel_top_half/brewing_stand_pictogram": T.PANEL, + "brewing_stand_pictogram": T.PANEL, + "brewing_stand_pictogram/brewing_input_slot": T.PANEL, + "brewing_stand_pictogram/brewing_output_slots": T.GRID, + "brewing_stand_pictogram/brewing_fuel_slot": T.PANEL, + "brewing_stand_pictogram/brewing_arrow_empty_image": T.IMAGE, + "brewing_stand_pictogram/brewing_arrow_full_image": T.IMAGE, + "brewing_stand_pictogram/brewing_fuel_bar_empty_image": T.IMAGE, + "brewing_stand_pictogram/brewing_fuel_bar_full_image": T.IMAGE, + "brewing_stand_pictogram/bubbles_empty_image": T.IMAGE, + "brewing_stand_pictogram/bubbles_full_image": T.IMAGE, + "brewing_stand_pictogram/brewing_fuel_pipes": T.IMAGE, + "brewing_stand_pictogram/brewing_pipes": T.IMAGE, + "brewing_stand_panel": T.PANEL, + "brewing_stand_panel/container_gamepad_helpers": T.STACK_PANEL, + "brewing_stand_panel/selected_item_details_factory": T.FACTORY, + "brewing_stand_panel/item_lock_notification_factory": T.FACTORY, + "brewing_stand_panel/root_panel": T.INPUT_PANEL, + "brewing_stand_panel/root_panel/common_panel": T.PANEL, + "brewing_stand_panel/root_panel/furnace_screen_inventory": T.PANEL, + "brewing_stand_panel/root_panel/furnace_screen_inventory/brewing_panel_top_half": T.PANEL, + "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL, + "brewing_stand_panel/root_panel/furnace_screen_inventory/hotbar_grid": T.GRID, + "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button": T.BUTTON, + "brewing_stand_panel/root_panel/inventory_selected_icon_button": T.BUTTON, + "brewing_stand_panel/root_panel/gamepad_cursor": T.BUTTON, + "brewing_stand_panel/flying_item_renderer": T.CUSTOM, + "brewing_stand_screen": T.SCREEN, } export type BrewingStandPocketType = { - generic_label: T.LABEL - brewing_fuel_pipes: T.IMAGE - bubbles_empty_image: T.IMAGE - bubbles_full_image: T.IMAGE - bottle_empty_image: T.IMAGE - background_image: T.IMAGE - output_slot: T.INPUT_PANEL - brewing_input_slot: T.PANEL - "brewing_input_slot/input_slot": T.INPUT_PANEL - brewing_fuel_slot: T.PANEL - "brewing_fuel_slot/fuel_slot": T.INPUT_PANEL - brewing_out_slots: T.GRID - "brewing_out_slots/left_offset": T.PANEL - "brewing_out_slots/left_offset/output_slot1": T.INPUT_PANEL - "brewing_out_slots/middle": T.PANEL - "brewing_out_slots/middle/output_slot2": T.INPUT_PANEL - "brewing_out_slots/right_offset": T.PANEL - "brewing_out_slots/right_offset/output_slot3": T.INPUT_PANEL - slots_panel: T.PANEL - "slots_panel/brewing_input_slot": T.PANEL - "slots_panel/brewing_fuel_slot": T.PANEL - "slots_panel/brewing_out_slots": T.GRID - "slots_panel/brewing_arrow_panel": T.PANEL - "slots_panel/brewing_arrow_panel/brewing_arrow_empty_image": T.IMAGE - "slots_panel/brewing_arrow_panel/brewing_arrow_full_image": T.IMAGE - "slots_panel/brewing_bubbles_panel": T.PANEL - "slots_panel/brewing_bubbles_panel/bubbles_empty_image": T.IMAGE - "slots_panel/brewing_bubbles_panel/bubbles_full_image": T.IMAGE - "slots_panel/brewing_fuel_bar_panel": T.PANEL - "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_empty_image": T.IMAGE - "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_full_image": T.IMAGE - "slots_panel/brewing_fuel_pipes": T.IMAGE - "slots_panel/brewing_pipes": T.IMAGE - inventory_grid: T.GRID - inventory_content: T.PANEL - "inventory_content/scrolling_panel": T.PANEL - brewing_stand_contents_panel: T.PANEL - "brewing_stand_contents_panel/slots_panel": T.PANEL - header: T.PANEL - "header/header_background": T.IMAGE - "header/legacy_pocket_close_button": T.BUTTON - "header/panel": T.PANEL - "header/panel/title_label": T.LABEL - inventory_and_brewing_panel: T.PANEL - "inventory_and_brewing_panel/inventory_half_screen": T.PANEL - "inventory_and_brewing_panel/inventory_half_screen/inventory_content": T.PANEL - "inventory_and_brewing_panel/brewing_half_screen": T.PANEL - "inventory_and_brewing_panel/brewing_half_screen/brewing_stand_contents_panel": T.PANEL - header_and_content_stack_panel: T.STACK_PANEL - "header_and_content_stack_panel/header": T.PANEL - "header_and_content_stack_panel/inventory_and_brewing_panel": T.PANEL - brewing_stand_panel: T.PANEL - "brewing_stand_panel/bg": T.IMAGE - "brewing_stand_panel/root_panel": T.INPUT_PANEL - "brewing_stand_panel/header_and_content_stack_panel": T.STACK_PANEL - "brewing_stand_panel/container_gamepad_helpers": T.STACK_PANEL - "brewing_stand_panel/inventory_selected_icon_button": T.BUTTON - "brewing_stand_panel/hold_icon": T.BUTTON - "brewing_stand_panel/selected_item_details_factory": T.FACTORY - "brewing_stand_panel/item_lock_notification_factory": T.FACTORY - "brewing_stand_panel/flying_item_renderer": T.CUSTOM + "generic_label": T.LABEL, + "brewing_fuel_pipes": T.IMAGE, + "bubbles_empty_image": T.IMAGE, + "bubbles_full_image": T.IMAGE, + "bottle_empty_image": T.IMAGE, + "background_image": T.IMAGE, + "output_slot": T.INPUT_PANEL, + "brewing_input_slot": T.PANEL, + "brewing_input_slot/input_slot": T.INPUT_PANEL, + "brewing_fuel_slot": T.PANEL, + "brewing_fuel_slot/fuel_slot": T.INPUT_PANEL, + "brewing_out_slots": T.GRID, + "brewing_out_slots/left_offset": T.PANEL, + "brewing_out_slots/left_offset/output_slot1": T.INPUT_PANEL, + "brewing_out_slots/middle": T.PANEL, + "brewing_out_slots/middle/output_slot2": T.INPUT_PANEL, + "brewing_out_slots/right_offset": T.PANEL, + "brewing_out_slots/right_offset/output_slot3": T.INPUT_PANEL, + "slots_panel": T.PANEL, + "slots_panel/brewing_input_slot": T.PANEL, + "slots_panel/brewing_fuel_slot": T.PANEL, + "slots_panel/brewing_out_slots": T.GRID, + "slots_panel/brewing_arrow_panel": T.PANEL, + "slots_panel/brewing_arrow_panel/brewing_arrow_empty_image": T.IMAGE, + "slots_panel/brewing_arrow_panel/brewing_arrow_full_image": T.IMAGE, + "slots_panel/brewing_bubbles_panel": T.PANEL, + "slots_panel/brewing_bubbles_panel/bubbles_empty_image": T.IMAGE, + "slots_panel/brewing_bubbles_panel/bubbles_full_image": T.IMAGE, + "slots_panel/brewing_fuel_bar_panel": T.PANEL, + "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_empty_image": T.IMAGE, + "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_full_image": T.IMAGE, + "slots_panel/brewing_fuel_pipes": T.IMAGE, + "slots_panel/brewing_pipes": T.IMAGE, + "inventory_grid": T.GRID, + "inventory_content": T.PANEL, + "inventory_content/scrolling_panel": T.PANEL, + "brewing_stand_contents_panel": T.PANEL, + "brewing_stand_contents_panel/slots_panel": T.PANEL, + "header": T.PANEL, + "header/header_background": T.IMAGE, + "header/legacy_pocket_close_button": T.BUTTON, + "header/panel": T.PANEL, + "header/panel/title_label": T.LABEL, + "inventory_and_brewing_panel": T.PANEL, + "inventory_and_brewing_panel/inventory_half_screen": T.PANEL, + "inventory_and_brewing_panel/inventory_half_screen/inventory_content": T.PANEL, + "inventory_and_brewing_panel/brewing_half_screen": T.PANEL, + "inventory_and_brewing_panel/brewing_half_screen/brewing_stand_contents_panel": T.PANEL, + "header_and_content_stack_panel": T.STACK_PANEL, + "header_and_content_stack_panel/header": T.PANEL, + "header_and_content_stack_panel/inventory_and_brewing_panel": T.PANEL, + "brewing_stand_panel": T.PANEL, + "brewing_stand_panel/bg": T.IMAGE, + "brewing_stand_panel/root_panel": T.INPUT_PANEL, + "brewing_stand_panel/header_and_content_stack_panel": T.STACK_PANEL, + "brewing_stand_panel/container_gamepad_helpers": T.STACK_PANEL, + "brewing_stand_panel/inventory_selected_icon_button": T.BUTTON, + "brewing_stand_panel/hold_icon": T.BUTTON, + "brewing_stand_panel/selected_item_details_factory": T.FACTORY, + "brewing_stand_panel/item_lock_notification_factory": T.FACTORY, + "brewing_stand_panel/flying_item_renderer": T.CUSTOM, } export type BundlePurchaseWarningType = { - x_padding: T.PANEL - y_padding: T.PANEL - bundle_grid_item: T.PANEL - "bundle_grid_item/banner_image": T.IMAGE - "bundle_grid_item/content": T.STACK_PANEL - "bundle_grid_item/game_pad_focus_border": T.BUTTON - is_focused: T.PANEL - "is_focused/image_border": T.IMAGE - "is_focused/banner_border": T.IMAGE - focus_border: T.IMAGE - focus_border_button: T.BUTTON - "focus_border_button/default": T.PANEL - "focus_border_button/hover": T.PANEL - "focus_border_button/pressed": T.PANEL - grid_item_content: T.STACK_PANEL - "grid_item_content/image_border": T.IMAGE - "grid_item_content/image_border/bundle_thumbnail": T.IMAGE - "grid_item_content/padding_0": T.PANEL - "grid_item_content/bundle_title_panel": T.PANEL - "grid_item_content/bundle_title_panel/bundle_title": T.LABEL - bundle_grid: T.GRID - side_contents: T.STACK_PANEL - "side_contents/title_alignment_hack": T.PANEL - "side_contents/title_alignment_hack/side_section_title": T.LABEL - "side_contents/padding_y_0": T.PANEL - "side_contents/grid_input_panel": T.INPUT_PANEL - "side_contents/grid_input_panel/grid_scroll": T.PANEL - dialog_content: T.STACK_PANEL - "dialog_content/grid_stack": T.STACK_PANEL - "dialog_content/grid_stack/left_grid_scroll": T.STACK_PANEL - "dialog_content/grid_stack/padding_x_divider": T.PANEL - "dialog_content/grid_stack/right_grid_scroll": T.STACK_PANEL - purchase_button_panel: T.BUTTON - screen_dialog: T.PANEL - bundle_purchase_warning_screen_content: T.PANEL - "bundle_purchase_warning_screen_content/dialog": T.PANEL - background: T.IMAGE - bundle_purchase_warning_screen: T.SCREEN + "x_padding": T.PANEL, + "y_padding": T.PANEL, + "bundle_grid_item": T.PANEL, + "bundle_grid_item/banner_image": T.IMAGE, + "bundle_grid_item/content": T.STACK_PANEL, + "bundle_grid_item/game_pad_focus_border": T.BUTTON, + "is_focused": T.PANEL, + "is_focused/image_border": T.IMAGE, + "is_focused/banner_border": T.IMAGE, + "focus_border": T.IMAGE, + "focus_border_button": T.BUTTON, + "focus_border_button/default": T.PANEL, + "focus_border_button/hover": T.PANEL, + "focus_border_button/pressed": T.PANEL, + "grid_item_content": T.STACK_PANEL, + "grid_item_content/image_border": T.IMAGE, + "grid_item_content/image_border/bundle_thumbnail": T.IMAGE, + "grid_item_content/padding_0": T.PANEL, + "grid_item_content/bundle_title_panel": T.PANEL, + "grid_item_content/bundle_title_panel/bundle_title": T.LABEL, + "bundle_grid": T.GRID, + "side_contents": T.STACK_PANEL, + "side_contents/title_alignment_hack": T.PANEL, + "side_contents/title_alignment_hack/side_section_title": T.LABEL, + "side_contents/padding_y_0": T.PANEL, + "side_contents/grid_input_panel": T.INPUT_PANEL, + "side_contents/grid_input_panel/grid_scroll": T.PANEL, + "dialog_content": T.STACK_PANEL, + "dialog_content/grid_stack": T.STACK_PANEL, + "dialog_content/grid_stack/left_grid_scroll": T.STACK_PANEL, + "dialog_content/grid_stack/padding_x_divider": T.PANEL, + "dialog_content/grid_stack/right_grid_scroll": T.STACK_PANEL, + "purchase_button_panel": T.BUTTON, + "screen_dialog": T.PANEL, + "bundle_purchase_warning_screen_content": T.PANEL, + "bundle_purchase_warning_screen_content/dialog": T.PANEL, + "background": T.IMAGE, + "bundle_purchase_warning_screen": T.SCREEN, } export type CartographyType = { - title_label: T.LABEL - arrow_icon: T.IMAGE - plus_sign_icon: T.IMAGE - text_edit_control: T.EDIT_BOX - cartography_output_slot_button: T.BUTTON - cartography_item_slot: T.PANEL - "cartography_item_slot/container_item": T.INPUT_PANEL - map_image: T.IMAGE - map_image_panel: T.PANEL - "map_image_panel/none_map": T.IMAGE - "map_image_panel/copy_map": T.IMAGE - "map_image_panel/rename_map": T.IMAGE - "map_image_panel/map": T.IMAGE - "map_image_panel/locator_map": T.IMAGE - "map_image_panel/zoom_map": T.IMAGE - "map_image_panel/lock_map": T.IMAGE - text_box_panel: T.STACK_PANEL - "text_box_panel/map_name_label": T.LABEL - "text_box_panel/text_edit_control": T.EDIT_BOX - input_slots: T.STACK_PANEL - "input_slots/input_item_slot": T.PANEL - "input_slots/plus_centerer": T.PANEL - "input_slots/plus_centerer/plus_sign_icon": T.IMAGE - "input_slots/additional_item_slot": T.PANEL - output_description_label: T.LABEL - main_panel: T.PANEL - "main_panel/input_slots": T.STACK_PANEL - "main_panel/arrow_icon": T.IMAGE - "main_panel/map_image_panel": T.PANEL - "main_panel/arrow_icon2": T.IMAGE - "main_panel/result_item_slot": T.PANEL - top_half_panel: T.STACK_PANEL - "top_half_panel/padding1": T.PANEL - "top_half_panel/title_panel": T.PANEL - "top_half_panel/title_panel/title_label": T.LABEL - "top_half_panel/padding2": T.PANEL - "top_half_panel/text_box_panel": T.STACK_PANEL - "top_half_panel/padding3": T.PANEL - "top_half_panel/padding4": T.PANEL - "top_half_panel/main_panel_wrap": T.PANEL - "top_half_panel/main_panel_wrap/main_panel": T.PANEL - "top_half_panel/output_description_label": T.LABEL - "top_half_panel/padding5": T.PANEL - cartography_panel: T.PANEL - "cartography_panel/container_gamepad_helpers": T.STACK_PANEL - "cartography_panel/selected_item_details_factory": T.FACTORY - "cartography_panel/item_lock_notification_factory": T.FACTORY - "cartography_panel/root_panel": T.INPUT_PANEL - "cartography_panel/root_panel/common_panel": T.PANEL - "cartography_panel/root_panel/cartography_screen_inventory": T.PANEL - "cartography_panel/root_panel/cartography_screen_inventory/top_half_panel": T.STACK_PANEL - "cartography_panel/root_panel/cartography_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL - "cartography_panel/root_panel/cartography_screen_inventory/hotbar_grid": T.GRID - "cartography_panel/root_panel/cartography_screen_inventory/inventory_take_progress_icon_button": T.BUTTON - "cartography_panel/root_panel/inventory_selected_icon_button": T.BUTTON - "cartography_panel/root_panel/gamepad_cursor": T.BUTTON - "cartography_panel/root_panel/tab_close_and_help_button": T.IMAGE - "cartography_panel/flying_item_renderer": T.CUSTOM - cartography_screen: T.SCREEN + "title_label": T.LABEL, + "arrow_icon": T.IMAGE, + "plus_sign_icon": T.IMAGE, + "text_edit_control": T.EDIT_BOX, + "cartography_output_slot_button": T.BUTTON, + "cartography_item_slot": T.PANEL, + "cartography_item_slot/container_item": T.INPUT_PANEL, + "map_image": T.IMAGE, + "map_image_panel": T.PANEL, + "map_image_panel/none_map": T.IMAGE, + "map_image_panel/copy_map": T.IMAGE, + "map_image_panel/rename_map": T.IMAGE, + "map_image_panel/map": T.IMAGE, + "map_image_panel/locator_map": T.IMAGE, + "map_image_panel/zoom_map": T.IMAGE, + "map_image_panel/lock_map": T.IMAGE, + "text_box_panel": T.STACK_PANEL, + "text_box_panel/map_name_label": T.LABEL, + "text_box_panel/text_edit_control": T.EDIT_BOX, + "input_slots": T.STACK_PANEL, + "input_slots/input_item_slot": T.PANEL, + "input_slots/plus_centerer": T.PANEL, + "input_slots/plus_centerer/plus_sign_icon": T.IMAGE, + "input_slots/additional_item_slot": T.PANEL, + "output_description_label": T.LABEL, + "main_panel": T.PANEL, + "main_panel/input_slots": T.STACK_PANEL, + "main_panel/arrow_icon": T.IMAGE, + "main_panel/map_image_panel": T.PANEL, + "main_panel/arrow_icon2": T.IMAGE, + "main_panel/result_item_slot": T.PANEL, + "top_half_panel": T.STACK_PANEL, + "top_half_panel/padding1": T.PANEL, + "top_half_panel/title_panel": T.PANEL, + "top_half_panel/title_panel/title_label": T.LABEL, + "top_half_panel/padding2": T.PANEL, + "top_half_panel/text_box_panel": T.STACK_PANEL, + "top_half_panel/padding3": T.PANEL, + "top_half_panel/padding4": T.PANEL, + "top_half_panel/main_panel_wrap": T.PANEL, + "top_half_panel/main_panel_wrap/main_panel": T.PANEL, + "top_half_panel/output_description_label": T.LABEL, + "top_half_panel/padding5": T.PANEL, + "cartography_panel": T.PANEL, + "cartography_panel/container_gamepad_helpers": T.STACK_PANEL, + "cartography_panel/selected_item_details_factory": T.FACTORY, + "cartography_panel/item_lock_notification_factory": T.FACTORY, + "cartography_panel/root_panel": T.INPUT_PANEL, + "cartography_panel/root_panel/common_panel": T.PANEL, + "cartography_panel/root_panel/cartography_screen_inventory": T.PANEL, + "cartography_panel/root_panel/cartography_screen_inventory/top_half_panel": T.STACK_PANEL, + "cartography_panel/root_panel/cartography_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL, + "cartography_panel/root_panel/cartography_screen_inventory/hotbar_grid": T.GRID, + "cartography_panel/root_panel/cartography_screen_inventory/inventory_take_progress_icon_button": T.BUTTON, + "cartography_panel/root_panel/inventory_selected_icon_button": T.BUTTON, + "cartography_panel/root_panel/gamepad_cursor": T.BUTTON, + "cartography_panel/root_panel/tab_close_and_help_button": T.IMAGE, + "cartography_panel/flying_item_renderer": T.CUSTOM, + "cartography_screen": T.SCREEN, } export type CartographyPocketType = { - vertical_arrow_icon: T.IMAGE - chest_item_renderer: T.CUSTOM - cartography_item_renderer: T.CUSTOM - input_item_slot: T.INPUT_PANEL - additional_item_slot: T.INPUT_PANEL - result_item_slot: T.INPUT_PANEL - right_panel: T.STACK_PANEL - "right_panel/content": T.INPUT_PANEL - "right_panel/content/bg": T.PANEL - "right_panel/content/cartography_content_stack_panel": T.STACK_PANEL - "right_panel/navigation_tabs_holder": T.PANEL - "right_panel/navigation_tabs_holder/right_navigation_tabs": T.STACK_PANEL - right_tab_cartography: T.PANEL - right_navigation_tabs: T.STACK_PANEL - "right_navigation_tabs/pocket_tab_close_and_help_button": T.IMAGE - "right_navigation_tabs/fill": T.PANEL - "right_navigation_tabs/right_tab_cartography": T.PANEL - input_slots_stack_panel: T.STACK_PANEL - "input_slots_stack_panel/input_item_slot": T.INPUT_PANEL - input_slots: T.STACK_PANEL - "input_slots/input_item_slot": T.INPUT_PANEL - "input_slots/plus_centerer": T.PANEL - "input_slots/plus_centerer/plus_sign_icon": T.IMAGE - "input_slots/additional_item_slot": T.INPUT_PANEL - cartography_content_stack_panel: T.STACK_PANEL - "cartography_content_stack_panel/label_holder": T.PANEL - "cartography_content_stack_panel/label_holder/cartography_label": T.LABEL - "cartography_content_stack_panel/padding_1": T.PANEL - "cartography_content_stack_panel/panel": T.PANEL - "cartography_content_stack_panel/panel/input_slots": T.STACK_PANEL - "cartography_content_stack_panel/padding_2": T.PANEL - "cartography_content_stack_panel/map_centerer": T.PANEL - "cartography_content_stack_panel/map_centerer/map_image_panel": T.PANEL - "cartography_content_stack_panel/description_centerer": T.PANEL - "cartography_content_stack_panel/description_centerer/output_description_label": T.LABEL - "cartography_content_stack_panel/padding_3": T.PANEL - "cartography_content_stack_panel/arrow_centerer": T.PANEL - "cartography_content_stack_panel/arrow_centerer/vertical_arrow_icon": T.IMAGE - "cartography_content_stack_panel/padding_4": T.PANEL - "cartography_content_stack_panel/result_centerer": T.PANEL - "cartography_content_stack_panel/result_centerer/result_item_slot": T.INPUT_PANEL - "cartography_content_stack_panel/filling_panel": T.PANEL - "cartography_content_stack_panel/text_box_panel": T.STACK_PANEL - inventory_panel: T.STACK_PANEL - "inventory_panel/inventory_title_label_centerer": T.PANEL - "inventory_panel/inventory_title_label_centerer/inventory_title_label": T.LABEL - "inventory_panel/inventory_scroll_panel": T.PANEL - inventory_scroll_panel: T.PANEL - pattern_button: T.UNKNOWN - pattern_scroll_panel: T.UNKNOWN - left_panel: T.STACK_PANEL - "left_panel/gamepad_helpers_and_tabs_holder": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": T.STACK_PANEL - "left_panel/content": T.INPUT_PANEL - "left_panel/content/bg": T.PANEL - "left_panel/content/inventory_panel": T.STACK_PANEL - left_tab_inventory: T.PANEL - left_navigation_tabs: T.STACK_PANEL - "left_navigation_tabs/padding": T.PANEL - "left_navigation_tabs/left_tab_inventory": T.PANEL - pocket_hotbar_and_content_panels: T.STACK_PANEL - cartography_panel: T.PANEL - "cartography_panel/pocket_hotbar_and_content_panels": T.STACK_PANEL - "cartography_panel/container_gamepad_helpers": T.STACK_PANEL - "cartography_panel/selected_item_details_factory": T.FACTORY - "cartography_panel/item_lock_notification_factory": T.FACTORY - "cartography_panel/inventory_selected_icon_button": T.BUTTON - "cartography_panel/inventory_take_progress_icon_button": T.BUTTON - "cartography_panel/flying_item_renderer": T.CUSTOM + "vertical_arrow_icon": T.IMAGE, + "chest_item_renderer": T.CUSTOM, + "cartography_item_renderer": T.CUSTOM, + "input_item_slot": T.INPUT_PANEL, + "additional_item_slot": T.INPUT_PANEL, + "result_item_slot": T.INPUT_PANEL, + "right_panel": T.STACK_PANEL, + "right_panel/content": T.INPUT_PANEL, + "right_panel/content/bg": T.PANEL, + "right_panel/content/cartography_content_stack_panel": T.STACK_PANEL, + "right_panel/navigation_tabs_holder": T.PANEL, + "right_panel/navigation_tabs_holder/right_navigation_tabs": T.STACK_PANEL, + "right_tab_cartography": T.PANEL, + "right_navigation_tabs": T.STACK_PANEL, + "right_navigation_tabs/pocket_tab_close_and_help_button": T.IMAGE, + "right_navigation_tabs/fill": T.PANEL, + "right_navigation_tabs/right_tab_cartography": T.PANEL, + "input_slots_stack_panel": T.STACK_PANEL, + "input_slots_stack_panel/input_item_slot": T.INPUT_PANEL, + "input_slots": T.STACK_PANEL, + "input_slots/input_item_slot": T.INPUT_PANEL, + "input_slots/plus_centerer": T.PANEL, + "input_slots/plus_centerer/plus_sign_icon": T.IMAGE, + "input_slots/additional_item_slot": T.INPUT_PANEL, + "cartography_content_stack_panel": T.STACK_PANEL, + "cartography_content_stack_panel/label_holder": T.PANEL, + "cartography_content_stack_panel/label_holder/cartography_label": T.LABEL, + "cartography_content_stack_panel/padding_1": T.PANEL, + "cartography_content_stack_panel/panel": T.PANEL, + "cartography_content_stack_panel/panel/input_slots": T.STACK_PANEL, + "cartography_content_stack_panel/padding_2": T.PANEL, + "cartography_content_stack_panel/map_centerer": T.PANEL, + "cartography_content_stack_panel/map_centerer/map_image_panel": T.PANEL, + "cartography_content_stack_panel/description_centerer": T.PANEL, + "cartography_content_stack_panel/description_centerer/output_description_label": T.LABEL, + "cartography_content_stack_panel/padding_3": T.PANEL, + "cartography_content_stack_panel/arrow_centerer": T.PANEL, + "cartography_content_stack_panel/arrow_centerer/vertical_arrow_icon": T.IMAGE, + "cartography_content_stack_panel/padding_4": T.PANEL, + "cartography_content_stack_panel/result_centerer": T.PANEL, + "cartography_content_stack_panel/result_centerer/result_item_slot": T.INPUT_PANEL, + "cartography_content_stack_panel/filling_panel": T.PANEL, + "cartography_content_stack_panel/text_box_panel": T.STACK_PANEL, + "inventory_panel": T.STACK_PANEL, + "inventory_panel/inventory_title_label_centerer": T.PANEL, + "inventory_panel/inventory_title_label_centerer/inventory_title_label": T.LABEL, + "inventory_panel/inventory_scroll_panel": T.PANEL, + "inventory_scroll_panel": T.PANEL, + "pattern_button": T.UNKNOWN, + "pattern_scroll_panel": T.UNKNOWN, + "left_panel": T.STACK_PANEL, + "left_panel/gamepad_helpers_and_tabs_holder": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": T.STACK_PANEL, + "left_panel/content": T.INPUT_PANEL, + "left_panel/content/bg": T.PANEL, + "left_panel/content/inventory_panel": T.STACK_PANEL, + "left_tab_inventory": T.PANEL, + "left_navigation_tabs": T.STACK_PANEL, + "left_navigation_tabs/padding": T.PANEL, + "left_navigation_tabs/left_tab_inventory": T.PANEL, + "pocket_hotbar_and_content_panels": T.STACK_PANEL, + "cartography_panel": T.PANEL, + "cartography_panel/pocket_hotbar_and_content_panels": T.STACK_PANEL, + "cartography_panel/container_gamepad_helpers": T.STACK_PANEL, + "cartography_panel/selected_item_details_factory": T.FACTORY, + "cartography_panel/item_lock_notification_factory": T.FACTORY, + "cartography_panel/inventory_selected_icon_button": T.BUTTON, + "cartography_panel/inventory_take_progress_icon_button": T.BUTTON, + "cartography_panel/flying_item_renderer": T.CUSTOM, } export type ChalkboardType = { - text_edit_control: T.EDIT_BOX - locked_toggle: T.TOGGLE - locked_label: T.LABEL - lock_control: T.STACK_PANEL - "lock_control/toggle": T.TOGGLE - "lock_control/pad_wrap": T.PANEL - "lock_control/pad_wrap/label": T.LABEL - gamepad_helpers: T.PANEL - "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL - chalkboard_screen: T.SCREEN - chalkboard_root: T.PANEL - chalkboard_content: T.PANEL - "chalkboard_content/gamepad_helpers": T.PANEL - "chalkboard_content/edit_box": T.EDIT_BOX - "chalkboard_content/locked_toggle": T.STACK_PANEL + "text_edit_control": T.EDIT_BOX, + "locked_toggle": T.TOGGLE, + "locked_label": T.LABEL, + "lock_control": T.STACK_PANEL, + "lock_control/toggle": T.TOGGLE, + "lock_control/pad_wrap": T.PANEL, + "lock_control/pad_wrap/label": T.LABEL, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL, + "chalkboard_screen": T.SCREEN, + "chalkboard_root": T.PANEL, + "chalkboard_content": T.PANEL, + "chalkboard_content/gamepad_helpers": T.PANEL, + "chalkboard_content/edit_box": T.EDIT_BOX, + "chalkboard_content/locked_toggle": T.STACK_PANEL, } export type ChatType = { - down_arrow_image: T.IMAGE - keyboard_image: T.IMAGE - copy_image: T.IMAGE - paste_image: T.IMAGE - gear_image: T.IMAGE - send_image: T.IMAGE - send_panel: T.STACK_PANEL - "send_panel/send_image_panel": T.PANEL - "send_panel/send_image_panel/send_image": T.IMAGE - "send_panel/gamepad_x_button": T.STACK_PANEL - "send_panel/gamepad_x_button/side_padding": T.PANEL - "send_panel/gamepad_x_button/gamepad_x_button_image": T.PANEL - "send_panel/gamepad_x_button/gamepad_x_button_image/icon": T.STACK_PANEL - keyboard_image_panel: T.PANEL - "keyboard_image_panel/keyboard_image": T.IMAGE - "keyboard_image_panel/down_arrow_image": T.IMAGE - small_button: T.BUTTON - keyboard_button: T.BUTTON - chat_settings_button: T.BUTTON - send_button: T.BUTTON - messages_text: T.PANEL - "messages_text/text": T.LABEL - message_tts_wrapper: T.PANEL - messages_stack_panel: T.STACK_PANEL - messages_scrolling_panel: T.PANEL - text_edit_box: T.EDIT_BOX - commands_background: T.IMAGE - click_autocomplete_is_focused: T.IMAGE - auto_complete_panel_contents_with_item: T.PANEL - "auto_complete_panel_contents_with_item/auto_complete_item_renderer": T.CUSTOM - "auto_complete_panel_contents_with_item/text": T.LABEL - "auto_complete_panel_contents_with_item/autocomplete_button": T.BUTTON - "auto_complete_panel_contents_with_item/autocomplete_button/default": T.PANEL - "auto_complete_panel_contents_with_item/autocomplete_button/hover": T.IMAGE - "auto_complete_panel_contents_with_item/autocomplete_button/pressed": T.IMAGE - auto_complete_panel: T.PANEL - "auto_complete_panel/panel": T.PANEL - "auto_complete_panel/panel/auto_complete_grid": T.GRID - commands_panel: T.PANEL - "commands_panel/auto_complete_panel": T.PANEL - chat_bottom_panel: T.STACK_PANEL - "chat_bottom_panel/keyboard_button": T.BUTTON - "chat_bottom_panel/host_main_button": T.BUTTON - "chat_bottom_panel/chat_settings": T.BUTTON - "chat_bottom_panel/text_box": T.EDIT_BOX - "chat_bottom_panel/send_button": T.BUTTON - title_text: T.PANEL - "title_text/title_panel": T.LABEL - back_content_panel: T.PANEL - "back_content_panel/back_button": T.BUTTON - "back_content_panel/gamepad_back_helper": T.INPUT_PANEL - "back_content_panel/gamepad_back_helper/gamepad_helper_button": T.STACK_PANEL - coordinate_dropdown_content: T.STACK_PANEL - "coordinate_dropdown_content/top_padding": T.PANEL - "coordinate_dropdown_content/my_position": T.PANEL - "coordinate_dropdown_content/block_position": T.PANEL - "coordinate_dropdown_content/bottom_padding": T.PANEL - coordinate_dropdown: T.PANEL - popup_toast: T.INPUT_PANEL - copy_coordinate_button: T.BUTTON - paste_button: T.BUTTON - chat_header: T.IMAGE - "chat_header/title_panel": T.PANEL - "chat_header/title_panel/back_button_content_panel": T.PANEL - "chat_header/title_panel/title": T.PANEL - "chat_header/title_panel/popup_dialog_factory": T.FACTORY - "chat_header/title_panel/chat_header_content_area": T.STACK_PANEL - "chat_header/title_panel/chat_header_content_area/coordinate_dropdown": T.PANEL - "chat_header/title_panel/chat_header_content_area/coordinates_panel": T.PANEL - "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image": T.IMAGE - "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image/coordinates_text": T.LABEL - "chat_header/title_panel/chat_header_content_area/copy_coordinate_button": T.BUTTON - "chat_header/title_panel/chat_header_content_area/icon": T.STACK_PANEL - "chat_header/title_panel/chat_header_content_area/paste_button": T.BUTTON - chat_screen: T.SCREEN - chat_screen_content: T.PANEL - "chat_screen_content/messages_panel": T.PANEL - "chat_screen_content/chat_bottom_panel": T.STACK_PANEL - "chat_screen_content/chat_top_panel": T.IMAGE - "chat_screen_content/autocomplete_commands_panel": T.PANEL - "chat_screen_content/host_main_panel": T.PANEL - "chat_screen_content/popup_factory": T.FACTORY - chat_background: T.IMAGE + "down_arrow_image": T.IMAGE, + "keyboard_image": T.IMAGE, + "copy_image": T.IMAGE, + "paste_image": T.IMAGE, + "gear_image": T.IMAGE, + "send_image": T.IMAGE, + "send_panel": T.STACK_PANEL, + "send_panel/send_image_panel": T.PANEL, + "send_panel/send_image_panel/send_image": T.IMAGE, + "send_panel/gamepad_x_button": T.STACK_PANEL, + "send_panel/gamepad_x_button/side_padding": T.PANEL, + "send_panel/gamepad_x_button/gamepad_x_button_image": T.PANEL, + "send_panel/gamepad_x_button/gamepad_x_button_image/icon": T.STACK_PANEL, + "keyboard_image_panel": T.PANEL, + "keyboard_image_panel/keyboard_image": T.IMAGE, + "keyboard_image_panel/down_arrow_image": T.IMAGE, + "small_button": T.BUTTON, + "keyboard_button": T.BUTTON, + "chat_settings_button": T.BUTTON, + "send_button": T.BUTTON, + "messages_text": T.PANEL, + "messages_text/text": T.LABEL, + "message_tts_wrapper": T.PANEL, + "messages_stack_panel": T.STACK_PANEL, + "messages_scrolling_panel": T.PANEL, + "text_edit_box": T.EDIT_BOX, + "commands_background": T.IMAGE, + "click_autocomplete_is_focused": T.IMAGE, + "auto_complete_panel_contents_with_item": T.PANEL, + "auto_complete_panel_contents_with_item/auto_complete_item_renderer": T.CUSTOM, + "auto_complete_panel_contents_with_item/text": T.LABEL, + "auto_complete_panel_contents_with_item/autocomplete_button": T.BUTTON, + "auto_complete_panel_contents_with_item/autocomplete_button/default": T.PANEL, + "auto_complete_panel_contents_with_item/autocomplete_button/hover": T.IMAGE, + "auto_complete_panel_contents_with_item/autocomplete_button/pressed": T.IMAGE, + "auto_complete_panel": T.PANEL, + "auto_complete_panel/panel": T.PANEL, + "auto_complete_panel/panel/auto_complete_grid": T.GRID, + "commands_panel": T.PANEL, + "commands_panel/auto_complete_panel": T.PANEL, + "chat_bottom_panel": T.STACK_PANEL, + "chat_bottom_panel/keyboard_button": T.BUTTON, + "chat_bottom_panel/host_main_button": T.BUTTON, + "chat_bottom_panel/chat_settings": T.BUTTON, + "chat_bottom_panel/text_box": T.EDIT_BOX, + "chat_bottom_panel/send_button": T.BUTTON, + "title_text": T.PANEL, + "title_text/title_panel": T.LABEL, + "back_content_panel": T.PANEL, + "back_content_panel/back_button": T.BUTTON, + "back_content_panel/gamepad_back_helper": T.INPUT_PANEL, + "back_content_panel/gamepad_back_helper/gamepad_helper_button": T.STACK_PANEL, + "coordinate_dropdown_content": T.STACK_PANEL, + "coordinate_dropdown_content/top_padding": T.PANEL, + "coordinate_dropdown_content/my_position": T.PANEL, + "coordinate_dropdown_content/block_position": T.PANEL, + "coordinate_dropdown_content/bottom_padding": T.PANEL, + "coordinate_dropdown": T.PANEL, + "popup_toast": T.INPUT_PANEL, + "copy_coordinate_button": T.BUTTON, + "paste_button": T.BUTTON, + "chat_header": T.IMAGE, + "chat_header/title_panel": T.PANEL, + "chat_header/title_panel/back_button_content_panel": T.PANEL, + "chat_header/title_panel/title": T.PANEL, + "chat_header/title_panel/popup_dialog_factory": T.FACTORY, + "chat_header/title_panel/chat_header_content_area": T.STACK_PANEL, + "chat_header/title_panel/chat_header_content_area/coordinate_dropdown": T.PANEL, + "chat_header/title_panel/chat_header_content_area/coordinates_panel": T.PANEL, + "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image": T.IMAGE, + "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image/coordinates_text": T.LABEL, + "chat_header/title_panel/chat_header_content_area/copy_coordinate_button": T.BUTTON, + "chat_header/title_panel/chat_header_content_area/icon": T.STACK_PANEL, + "chat_header/title_panel/chat_header_content_area/paste_button": T.BUTTON, + "chat_screen": T.SCREEN, + "chat_screen_content": T.PANEL, + "chat_screen_content/messages_panel": T.PANEL, + "chat_screen_content/chat_bottom_panel": T.STACK_PANEL, + "chat_screen_content/chat_top_panel": T.IMAGE, + "chat_screen_content/autocomplete_commands_panel": T.PANEL, + "chat_screen_content/host_main_panel": T.PANEL, + "chat_screen_content/popup_factory": T.FACTORY, + "chat_background": T.IMAGE, } export type ChatSettingsType = { - mute_all_toggle: T.PANEL - mute_emote_chat_toggle: T.PANEL - chat_tts_toggle: T.PANEL - reset_button: T.BUTTON - typeface_dropdown_content: T.STACK_PANEL - "typeface_dropdown_content/top_padding": T.PANEL - "typeface_dropdown_content/mojangles": T.PANEL - "typeface_dropdown_content/noto_sans": T.PANEL - "typeface_dropdown_content/bottom_padding": T.PANEL - typeface_dropdown: T.PANEL - chat_color_dropdown_content: T.STACK_PANEL - "chat_color_dropdown_content/top_padding": T.PANEL - "chat_color_dropdown_content/0": T.PANEL - "chat_color_dropdown_content/1": T.PANEL - "chat_color_dropdown_content/2": T.PANEL - "chat_color_dropdown_content/3": T.PANEL - "chat_color_dropdown_content/4": T.PANEL - "chat_color_dropdown_content/5": T.PANEL - "chat_color_dropdown_content/6": T.PANEL - "chat_color_dropdown_content/bottom_padding": T.PANEL - colors_dropdown_base: T.PANEL - chat_color_dropdown: T.PANEL - mentions_color_dropdown: T.PANEL - font_size_slider: T.PANEL - line_spacing_slider: T.PANEL - colored_icon_panel: T.PANEL - "colored_icon_panel/icon": T.IMAGE - "colored_icon_panel/icon_overlay": T.IMAGE - paintbrush: T.PANEL - line_break: T.PANEL - "line_break/line_break_image": T.IMAGE - chat_settings_scrolling_content: T.PANEL - "chat_settings_scrolling_content/chat_settings_content_area": T.STACK_PANEL - "chat_settings_scrolling_content/chat_settings_content_area/mute_all_toggle": T.PANEL - "chat_settings_scrolling_content/chat_settings_content_area/mute_emote_chat_toggle": T.PANEL - "chat_settings_scrolling_content/chat_settings_content_area/chat_tts_toggle": T.PANEL - "chat_settings_scrolling_content/chat_settings_content_area/toggles_to_font_shape": T.PANEL - "chat_settings_scrolling_content/chat_settings_content_area/typeface_dropdown": T.PANEL - "chat_settings_scrolling_content/chat_settings_content_area/font_size": T.PANEL - "chat_settings_scrolling_content/chat_settings_content_area/line_spacing": T.PANEL - "chat_settings_scrolling_content/chat_settings_content_area/font_shape_to_font_colors": T.PANEL - "chat_settings_scrolling_content/chat_settings_content_area/chat_color": T.PANEL - "chat_settings_scrolling_content/chat_settings_content_area/mentions_color": T.PANEL - "chat_settings_scrolling_content/chat_settings_content_area/reset_button": T.BUTTON - chat_setting_scrolling_panel: T.PANEL - chat_settings_popup: T.INPUT_PANEL - popup_factory: T.FACTORY + "mute_all_toggle": T.PANEL, + "mute_emote_chat_toggle": T.PANEL, + "chat_tts_toggle": T.PANEL, + "reset_button": T.BUTTON, + "typeface_dropdown_content": T.STACK_PANEL, + "typeface_dropdown_content/top_padding": T.PANEL, + "typeface_dropdown_content/mojangles": T.PANEL, + "typeface_dropdown_content/noto_sans": T.PANEL, + "typeface_dropdown_content/bottom_padding": T.PANEL, + "typeface_dropdown": T.PANEL, + "chat_color_dropdown_content": T.STACK_PANEL, + "chat_color_dropdown_content/top_padding": T.PANEL, + "chat_color_dropdown_content/0": T.PANEL, + "chat_color_dropdown_content/1": T.PANEL, + "chat_color_dropdown_content/2": T.PANEL, + "chat_color_dropdown_content/3": T.PANEL, + "chat_color_dropdown_content/4": T.PANEL, + "chat_color_dropdown_content/5": T.PANEL, + "chat_color_dropdown_content/6": T.PANEL, + "chat_color_dropdown_content/bottom_padding": T.PANEL, + "colors_dropdown_base": T.PANEL, + "chat_color_dropdown": T.PANEL, + "mentions_color_dropdown": T.PANEL, + "font_size_slider": T.PANEL, + "line_spacing_slider": T.PANEL, + "colored_icon_panel": T.PANEL, + "colored_icon_panel/icon": T.IMAGE, + "colored_icon_panel/icon_overlay": T.IMAGE, + "paintbrush": T.PANEL, + "line_break": T.PANEL, + "line_break/line_break_image": T.IMAGE, + "chat_settings_scrolling_content": T.PANEL, + "chat_settings_scrolling_content/chat_settings_content_area": T.STACK_PANEL, + "chat_settings_scrolling_content/chat_settings_content_area/mute_all_toggle": T.PANEL, + "chat_settings_scrolling_content/chat_settings_content_area/mute_emote_chat_toggle": T.PANEL, + "chat_settings_scrolling_content/chat_settings_content_area/chat_tts_toggle": T.PANEL, + "chat_settings_scrolling_content/chat_settings_content_area/toggles_to_font_shape": T.PANEL, + "chat_settings_scrolling_content/chat_settings_content_area/typeface_dropdown": T.PANEL, + "chat_settings_scrolling_content/chat_settings_content_area/font_size": T.PANEL, + "chat_settings_scrolling_content/chat_settings_content_area/line_spacing": T.PANEL, + "chat_settings_scrolling_content/chat_settings_content_area/font_shape_to_font_colors": T.PANEL, + "chat_settings_scrolling_content/chat_settings_content_area/chat_color": T.PANEL, + "chat_settings_scrolling_content/chat_settings_content_area/mentions_color": T.PANEL, + "chat_settings_scrolling_content/chat_settings_content_area/reset_button": T.BUTTON, + "chat_setting_scrolling_panel": T.PANEL, + "chat_settings_popup": T.INPUT_PANEL, + "popup_factory": T.FACTORY, } export type ChestType = { - chest_label: T.LABEL - chest_grid_item: T.INPUT_PANEL - small_chest_grid: T.GRID - large_chest_grid: T.GRID - small_chest_panel_top_half: T.PANEL - "small_chest_panel_top_half/chest_label": T.LABEL - "small_chest_panel_top_half/small_chest_grid": T.GRID - large_chest_panel_top_half: T.PANEL - "large_chest_panel_top_half/chest_label": T.LABEL - "large_chest_panel_top_half/large_chest_grid": T.GRID - small_chest_panel: T.PANEL - "small_chest_panel/container_gamepad_helpers": T.STACK_PANEL - "small_chest_panel/selected_item_details_factory": T.FACTORY - "small_chest_panel/item_lock_notification_factory": T.FACTORY - "small_chest_panel/root_panel": T.INPUT_PANEL - "small_chest_panel/root_panel/common_panel": T.PANEL - "small_chest_panel/root_panel/chest_panel": T.PANEL - "small_chest_panel/root_panel/chest_panel/small_chest_panel_top_half": T.PANEL - "small_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label": T.PANEL - "small_chest_panel/root_panel/chest_panel/hotbar_grid": T.GRID - "small_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button": T.BUTTON - "small_chest_panel/root_panel/chest_panel/flying_item_renderer": T.CUSTOM - "small_chest_panel/root_panel/inventory_selected_icon_button": T.BUTTON - "small_chest_panel/root_panel/gamepad_cursor": T.BUTTON - selected_item_details: T.PANEL - large_chest_panel: T.PANEL - "large_chest_panel/container_gamepad_helpers": T.STACK_PANEL - "large_chest_panel/selected_item_details_factory": T.FACTORY - "large_chest_panel/item_lock_notification_factory": T.FACTORY - "large_chest_panel/root_panel": T.INPUT_PANEL - "large_chest_panel/root_panel/common_panel": T.PANEL - "large_chest_panel/root_panel/chest_panel": T.PANEL - "large_chest_panel/root_panel/chest_panel/large_chest_panel_top_half": T.PANEL - "large_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label": T.PANEL - "large_chest_panel/root_panel/chest_panel/hotbar_grid": T.GRID - "large_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button": T.BUTTON - "large_chest_panel/root_panel/chest_panel/flying_item_renderer": T.CUSTOM - "large_chest_panel/root_panel/inventory_selected_icon_button": T.BUTTON - "large_chest_panel/root_panel/gamepad_cursor": T.BUTTON - ender_chest_panel: T.PANEL - shulker_box_panel: T.PANEL - barrel_panel: T.PANEL - small_chest_screen: T.SCREEN - large_chest_screen: T.SCREEN - ender_chest_screen: T.SCREEN - shulker_box_screen: T.SCREEN - barrel_screen: T.SCREEN + "chest_label": T.LABEL, + "chest_grid_item": T.INPUT_PANEL, + "small_chest_grid": T.GRID, + "large_chest_grid": T.GRID, + "small_chest_panel_top_half": T.PANEL, + "small_chest_panel_top_half/chest_label": T.LABEL, + "small_chest_panel_top_half/small_chest_grid": T.GRID, + "large_chest_panel_top_half": T.PANEL, + "large_chest_panel_top_half/chest_label": T.LABEL, + "large_chest_panel_top_half/large_chest_grid": T.GRID, + "small_chest_panel": T.PANEL, + "small_chest_panel/container_gamepad_helpers": T.STACK_PANEL, + "small_chest_panel/selected_item_details_factory": T.FACTORY, + "small_chest_panel/item_lock_notification_factory": T.FACTORY, + "small_chest_panel/root_panel": T.INPUT_PANEL, + "small_chest_panel/root_panel/common_panel": T.PANEL, + "small_chest_panel/root_panel/chest_panel": T.PANEL, + "small_chest_panel/root_panel/chest_panel/small_chest_panel_top_half": T.PANEL, + "small_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label": T.PANEL, + "small_chest_panel/root_panel/chest_panel/hotbar_grid": T.GRID, + "small_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button": T.BUTTON, + "small_chest_panel/root_panel/chest_panel/flying_item_renderer": T.CUSTOM, + "small_chest_panel/root_panel/inventory_selected_icon_button": T.BUTTON, + "small_chest_panel/root_panel/gamepad_cursor": T.BUTTON, + "selected_item_details": T.PANEL, + "large_chest_panel": T.PANEL, + "large_chest_panel/container_gamepad_helpers": T.STACK_PANEL, + "large_chest_panel/selected_item_details_factory": T.FACTORY, + "large_chest_panel/item_lock_notification_factory": T.FACTORY, + "large_chest_panel/root_panel": T.INPUT_PANEL, + "large_chest_panel/root_panel/common_panel": T.PANEL, + "large_chest_panel/root_panel/chest_panel": T.PANEL, + "large_chest_panel/root_panel/chest_panel/large_chest_panel_top_half": T.PANEL, + "large_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label": T.PANEL, + "large_chest_panel/root_panel/chest_panel/hotbar_grid": T.GRID, + "large_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button": T.BUTTON, + "large_chest_panel/root_panel/chest_panel/flying_item_renderer": T.CUSTOM, + "large_chest_panel/root_panel/inventory_selected_icon_button": T.BUTTON, + "large_chest_panel/root_panel/gamepad_cursor": T.BUTTON, + "ender_chest_panel": T.PANEL, + "shulker_box_panel": T.PANEL, + "barrel_panel": T.PANEL, + "small_chest_screen": T.SCREEN, + "large_chest_screen": T.SCREEN, + "ender_chest_screen": T.SCREEN, + "shulker_box_screen": T.SCREEN, + "barrel_screen": T.SCREEN, } export type ChooseRealmType = { - realm_screenshot: T.IMAGE - "realm_screenshot/picture": T.IMAGE - realms_scroll_content: T.INPUT_PANEL - "realms_scroll_content/scrolling_panel": T.PANEL - realms_scroll_panel: T.PANEL - "realms_scroll_panel/realms_stack_panel": T.STACK_PANEL - "realms_scroll_panel/realms_stack_panel/realms_world_item_grid": T.GRID - "realms_scroll_panel/realms_stack_panel/padding_0": T.PANEL - "realms_scroll_panel/realms_stack_panel/add_realm_button": T.BUTTON - "realms_scroll_panel/realms_stack_panel/ten_player_button": T.BUTTON - "realms_scroll_panel/realms_stack_panel/padding_1": T.PANEL - "realms_scroll_panel/realms_stack_panel/two_player_button": T.BUTTON - realms_world_item_grid: T.GRID - realms_world_item: T.STACK_PANEL - "realms_world_item/realms_world_item_button": T.BUTTON - realms_world_item_button: T.BUTTON - add_realm_button: T.BUTTON - ten_player_button: T.BUTTON - two_player_button: T.BUTTON - realms_world_content_panel: T.STACK_PANEL - "realms_world_content_panel/realm_screenshot": T.IMAGE - "realms_world_content_panel/padding": T.PANEL - "realms_world_content_panel/realms_world_content_text_area_panel": T.PANEL - "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel": T.PANEL - "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel/realms_world_header": T.LABEL - "realms_world_content_panel/realms_world_content_status_area_panel": T.STACK_PANEL - "realms_world_content_panel/realms_world_content_status_area_panel/world_player_count_text_panel": T.PANEL - "realms_world_content_panel/realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count": T.LABEL - "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon": T.PANEL - "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_online_icon": T.IMAGE - "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_unavailable_icon": T.IMAGE - "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_offline_icon": T.IMAGE - main_panel: T.PANEL - "main_panel/progress_loading_bars": T.IMAGE - "main_panel/realms_scroll_content": T.INPUT_PANEL - slots_scroll_panel: T.PANEL - "slots_scroll_panel/slots_stack_panel": T.STACK_PANEL - "slots_scroll_panel/slots_stack_panel/padding_0": T.PANEL - "slots_scroll_panel/slots_stack_panel/choose_slot_text": T.LABEL - "slots_scroll_panel/slots_stack_panel/padding_1": T.PANEL - "slots_scroll_panel/slots_stack_panel/slots_grid": T.STACK_PANEL - slots_grid: T.STACK_PANEL - "slots_grid/slot_1": T.BUTTON - "slots_grid/padding_0": T.PANEL - "slots_grid/slot_2": T.BUTTON - "slots_grid/padding_1": T.PANEL - "slots_grid/slot_3": T.BUTTON - slot_content_panel: T.STACK_PANEL - "slot_content_panel/world_slot_top": T.PANEL - "slot_content_panel/world_slot_top/plus_image": T.IMAGE - "slot_content_panel/world_slot_top/world_thumbnail": T.IMAGE - "slot_content_panel/world_slot_bottom": T.PANEL - "slot_content_panel/world_slot_bottom/white_line_hover": T.IMAGE - "slot_content_panel/world_slot_bottom/world_text_panel": T.PANEL - "slot_content_panel/world_slot_bottom/world_text_panel/background_grey": T.IMAGE - "slot_content_panel/world_slot_bottom/world_text_panel/background_green": T.IMAGE - "slot_content_panel/world_slot_bottom/world_text_panel/world_text": T.LABEL - slot_panel: T.PANEL - "slot_panel/slots_scroll_content": T.INPUT_PANEL - "slot_panel/slots_scroll_content/scrolling_panel": T.PANEL - choose_realm_screen: T.SCREEN - choose_realm_screen_content: T.PANEL - "choose_realm_screen_content/realm_dialog": T.PANEL - "choose_realm_screen_content/slot_dialog": T.PANEL - background: T.IMAGE + "realm_screenshot": T.IMAGE, + "realm_screenshot/picture": T.IMAGE, + "realms_scroll_content": T.INPUT_PANEL, + "realms_scroll_content/scrolling_panel": T.PANEL, + "realms_scroll_panel": T.PANEL, + "realms_scroll_panel/realms_stack_panel": T.STACK_PANEL, + "realms_scroll_panel/realms_stack_panel/realms_world_item_grid": T.GRID, + "realms_scroll_panel/realms_stack_panel/padding_0": T.PANEL, + "realms_scroll_panel/realms_stack_panel/add_realm_button": T.BUTTON, + "realms_scroll_panel/realms_stack_panel/ten_player_button": T.BUTTON, + "realms_scroll_panel/realms_stack_panel/padding_1": T.PANEL, + "realms_scroll_panel/realms_stack_panel/two_player_button": T.BUTTON, + "realms_world_item_grid": T.GRID, + "realms_world_item": T.STACK_PANEL, + "realms_world_item/realms_world_item_button": T.BUTTON, + "realms_world_item_button": T.BUTTON, + "add_realm_button": T.BUTTON, + "ten_player_button": T.BUTTON, + "two_player_button": T.BUTTON, + "realms_world_content_panel": T.STACK_PANEL, + "realms_world_content_panel/realm_screenshot": T.IMAGE, + "realms_world_content_panel/padding": T.PANEL, + "realms_world_content_panel/realms_world_content_text_area_panel": T.PANEL, + "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel": T.PANEL, + "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel/realms_world_header": T.LABEL, + "realms_world_content_panel/realms_world_content_status_area_panel": T.STACK_PANEL, + "realms_world_content_panel/realms_world_content_status_area_panel/world_player_count_text_panel": T.PANEL, + "realms_world_content_panel/realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count": T.LABEL, + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon": T.PANEL, + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_online_icon": T.IMAGE, + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_unavailable_icon": T.IMAGE, + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_offline_icon": T.IMAGE, + "main_panel": T.PANEL, + "main_panel/progress_loading_bars": T.IMAGE, + "main_panel/realms_scroll_content": T.INPUT_PANEL, + "slots_scroll_panel": T.PANEL, + "slots_scroll_panel/slots_stack_panel": T.STACK_PANEL, + "slots_scroll_panel/slots_stack_panel/padding_0": T.PANEL, + "slots_scroll_panel/slots_stack_panel/choose_slot_text": T.LABEL, + "slots_scroll_panel/slots_stack_panel/padding_1": T.PANEL, + "slots_scroll_panel/slots_stack_panel/slots_grid": T.STACK_PANEL, + "slots_grid": T.STACK_PANEL, + "slots_grid/slot_1": T.BUTTON, + "slots_grid/padding_0": T.PANEL, + "slots_grid/slot_2": T.BUTTON, + "slots_grid/padding_1": T.PANEL, + "slots_grid/slot_3": T.BUTTON, + "slot_content_panel": T.STACK_PANEL, + "slot_content_panel/world_slot_top": T.PANEL, + "slot_content_panel/world_slot_top/plus_image": T.IMAGE, + "slot_content_panel/world_slot_top/world_thumbnail": T.IMAGE, + "slot_content_panel/world_slot_bottom": T.PANEL, + "slot_content_panel/world_slot_bottom/white_line_hover": T.IMAGE, + "slot_content_panel/world_slot_bottom/world_text_panel": T.PANEL, + "slot_content_panel/world_slot_bottom/world_text_panel/background_grey": T.IMAGE, + "slot_content_panel/world_slot_bottom/world_text_panel/background_green": T.IMAGE, + "slot_content_panel/world_slot_bottom/world_text_panel/world_text": T.LABEL, + "slot_panel": T.PANEL, + "slot_panel/slots_scroll_content": T.INPUT_PANEL, + "slot_panel/slots_scroll_content/scrolling_panel": T.PANEL, + "choose_realm_screen": T.SCREEN, + "choose_realm_screen_content": T.PANEL, + "choose_realm_screen_content/realm_dialog": T.PANEL, + "choose_realm_screen_content/slot_dialog": T.PANEL, + "background": T.IMAGE, } export type CoinPurchaseType = { - black_image: T.IMAGE - banner_fill: T.IMAGE - coins_stack_panel: T.STACK_PANEL - "coins_stack_panel/coin": T.IMAGE - "coins_stack_panel/coin_padding": T.PANEL - "coins_stack_panel/text_padding": T.PANEL - "coins_stack_panel/text_padding/coins_without_bonus": T.LABEL - call_out_coins_stack_panel: T.STACK_PANEL - "call_out_coins_stack_panel/coin": T.IMAGE - "call_out_coins_stack_panel/coin_padding": T.PANEL - "call_out_coins_stack_panel/text_padding": T.PANEL - "call_out_coins_stack_panel/text_padding/coins_without_bonus": T.LABEL - button_content: T.PANEL - "button_content/bonus_coins_stack": T.STACK_PANEL - "button_content/call_out_background": T.IMAGE - "button_content/call_out_background/bevel": T.IMAGE - call_out_button_content: T.PANEL - "call_out_button_content/call_out_header": T.PANEL - "call_out_button_content/call_out_bonus_coins_stack": T.STACK_PANEL - "call_out_button_content/call_out_background": T.IMAGE - "call_out_button_content/call_out_background/call_out_border": T.IMAGE - call_out_header: T.PANEL - "call_out_header/call_out_banner": T.IMAGE - "call_out_header/call_out_label": T.LABEL - bonus_coins_stack: T.STACK_PANEL - "bonus_coins_stack/image_padding": T.PANEL - "bonus_coins_stack/image_panel": T.PANEL - "bonus_coins_stack/image_panel/image": T.IMAGE - "bonus_coins_stack/non_bonus_padding_0": T.PANEL - "bonus_coins_stack/price_panel": T.PANEL - "bonus_coins_stack/price_panel/coins_stack_panel": T.STACK_PANEL - "bonus_coins_stack/plus_label": T.PANEL - "bonus_coins_stack/plus_label/plus_label": T.LABEL - "bonus_coins_stack/non_bonus_padding_1": T.PANEL - "bonus_coins_stack/bonus_label_panel": T.PANEL - "bonus_coins_stack/bonus_label_panel/bonus_label": T.LABEL - "bonus_coins_stack/padding_0": T.PANEL - "bonus_coins_stack/bonus_price_panel": T.PANEL - "bonus_coins_stack/bonus_price_panel/coins_stack_panel": T.STACK_PANEL - "bonus_coins_stack/padding_1": T.PANEL - "bonus_coins_stack/currency_panel": T.PANEL - "bonus_coins_stack/currency_panel/currency_price_panel": T.IMAGE - "bonus_coins_stack/currency_panel/currency_price_panel/price": T.LABEL - "bonus_coins_stack/currency_panel/currency_price_panel/debug_price": T.LABEL - "bonus_coins_stack/padding_2": T.PANEL - call_out_bonus_coins_stack: T.STACK_PANEL - "call_out_bonus_coins_stack/image_padding": T.PANEL - "call_out_bonus_coins_stack/image_panel": T.PANEL - "call_out_bonus_coins_stack/image_panel/image": T.IMAGE - "call_out_bonus_coins_stack/non_bonus_padding_0": T.PANEL - "call_out_bonus_coins_stack/price_panel": T.PANEL - "call_out_bonus_coins_stack/price_panel/call_out_coins_stack_panel": T.STACK_PANEL - "call_out_bonus_coins_stack/plus_label": T.PANEL - "call_out_bonus_coins_stack/plus_label/plus_label": T.LABEL - "call_out_bonus_coins_stack/non_bonus_padding": T.PANEL - "call_out_bonus_coins_stack/bonus_label_panel": T.PANEL - "call_out_bonus_coins_stack/bonus_label_panel/bonus_label": T.LABEL - "call_out_bonus_coins_stack/padding_0": T.PANEL - "call_out_bonus_coins_stack/bonus_coin_panel": T.STACK_PANEL - "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_0": T.PANEL - "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel": T.PANEL - "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel/coin": T.IMAGE - "call_out_bonus_coins_stack/bonus_coin_panel/coin_padding": T.PANEL - "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel": T.PANEL - "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel/bonus_coins": T.LABEL - "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_1": T.PANEL - "call_out_bonus_coins_stack/padding_1": T.PANEL - "call_out_bonus_coins_stack/currency_panel": T.PANEL - "call_out_bonus_coins_stack/currency_panel/currency_price_panel": T.IMAGE - "call_out_bonus_coins_stack/currency_panel/currency_price_panel/price": T.LABEL - "call_out_bonus_coins_stack/currency_panel/currency_price_panel/debug_price": T.LABEL - "call_out_bonus_coins_stack/padding_2": T.PANEL - price: T.LABEL - offer_panel: T.BUTTON - call_out_offer_panel: T.BUTTON - offer_item: T.PANEL - "offer_item/offer_panel": T.BUTTON - "offer_item/call_out_offer_panel": T.BUTTON - offer_grid_item: T.PANEL - "offer_grid_item/offer_item": T.PANEL - not_enough_coins: T.LABEL - faq_button: T.BUTTON - divider_panel: T.PANEL - "divider_panel/divider": T.IMAGE - coin_purchase_panel: T.STACK_PANEL - "coin_purchase_panel/padding_0": T.PANEL - "coin_purchase_panel/not_enough_coins_panel": T.PANEL - "coin_purchase_panel/not_enough_coins_panel/not_enough_coins": T.LABEL - "coin_purchase_panel/padding_1": T.PANEL - "coin_purchase_panel/coin_purchase_grid": T.GRID - "coin_purchase_panel/divider_panel": T.PANEL - "coin_purchase_panel/faq_button": T.BUTTON - main_panel: T.PANEL - "main_panel/coin_purchase_panel": T.STACK_PANEL - "main_panel/loading_background": T.IMAGE - "main_panel/progress_loading_spinner": T.IMAGE - "main_panel/no_offers_panel": T.LABEL - background: T.IMAGE - bundle_description: T.PANEL - bundle_description_left: T.PANEL - bundle_description_center: T.PANEL - bundle_description_right: T.PANEL - bundle_coins_stack: T.STACK_PANEL - "bundle_coins_stack/content_panel": T.STACK_PANEL - "bundle_coins_stack/content_panel/text_stack": T.STACK_PANEL - "bundle_coins_stack/content_panel/text_stack/title_label": T.LABEL - "bundle_coins_stack/content_panel/text_stack/padding_1": T.PANEL - "bundle_coins_stack/content_panel/text_stack/description_section_factory": T.STACK_PANEL - "bundle_coins_stack/content_panel/thumbnail_panel": T.PANEL - "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail": T.IMAGE - "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail/coin_image": T.IMAGE - "bundle_coins_stack/content_panel/padding_0": T.PANEL - "bundle_coins_stack/padding_0": T.PANEL - "bundle_coins_stack/currency_panel": T.PANEL - "bundle_coins_stack/currency_panel/currency_price_panel": T.IMAGE - "bundle_coins_stack/currency_panel/currency_price_panel/price": T.LABEL - "bundle_coins_stack/currency_panel/currency_price_panel/debug_price": T.LABEL - "bundle_coins_stack/padding_2": T.PANEL - bundle_button_content: T.PANEL - "bundle_button_content/bundle_coins_stack": T.STACK_PANEL - "bundle_button_content/call_out_background": T.IMAGE - "bundle_button_content/call_out_background/bevel": T.IMAGE - bundle_offer_panel: T.BUTTON - bundle_offer_item: T.PANEL - "bundle_offer_item/offer_panel": T.BUTTON - bundle_offer_grid_item: T.PANEL - "bundle_offer_grid_item/offer_item": T.PANEL - bundle_stack_factory: T.STACK_PANEL - bundle_factory_panel: T.PANEL - "bundle_factory_panel/bundle_stack_factory": T.STACK_PANEL - bundle_panel: T.PANEL - "bundle_panel/progress_loading_spinner": T.IMAGE - "bundle_panel/loading_background": T.IMAGE - "bundle_panel/bundle_stack_factory": T.PANEL + "black_image": T.IMAGE, + "banner_fill": T.IMAGE, + "coins_stack_panel": T.STACK_PANEL, + "coins_stack_panel/coin": T.IMAGE, + "coins_stack_panel/coin_padding": T.PANEL, + "coins_stack_panel/text_padding": T.PANEL, + "coins_stack_panel/text_padding/coins_without_bonus": T.LABEL, + "call_out_coins_stack_panel": T.STACK_PANEL, + "call_out_coins_stack_panel/coin": T.IMAGE, + "call_out_coins_stack_panel/coin_padding": T.PANEL, + "call_out_coins_stack_panel/text_padding": T.PANEL, + "call_out_coins_stack_panel/text_padding/coins_without_bonus": T.LABEL, + "button_content": T.PANEL, + "button_content/bonus_coins_stack": T.STACK_PANEL, + "button_content/call_out_background": T.IMAGE, + "button_content/call_out_background/bevel": T.IMAGE, + "call_out_button_content": T.PANEL, + "call_out_button_content/call_out_header": T.PANEL, + "call_out_button_content/call_out_bonus_coins_stack": T.STACK_PANEL, + "call_out_button_content/call_out_background": T.IMAGE, + "call_out_button_content/call_out_background/call_out_border": T.IMAGE, + "call_out_header": T.PANEL, + "call_out_header/call_out_banner": T.IMAGE, + "call_out_header/call_out_label": T.LABEL, + "bonus_coins_stack": T.STACK_PANEL, + "bonus_coins_stack/image_padding": T.PANEL, + "bonus_coins_stack/image_panel": T.PANEL, + "bonus_coins_stack/image_panel/image": T.IMAGE, + "bonus_coins_stack/non_bonus_padding_0": T.PANEL, + "bonus_coins_stack/price_panel": T.PANEL, + "bonus_coins_stack/price_panel/coins_stack_panel": T.STACK_PANEL, + "bonus_coins_stack/plus_label": T.PANEL, + "bonus_coins_stack/plus_label/plus_label": T.LABEL, + "bonus_coins_stack/non_bonus_padding_1": T.PANEL, + "bonus_coins_stack/bonus_label_panel": T.PANEL, + "bonus_coins_stack/bonus_label_panel/bonus_label": T.LABEL, + "bonus_coins_stack/padding_0": T.PANEL, + "bonus_coins_stack/bonus_price_panel": T.PANEL, + "bonus_coins_stack/bonus_price_panel/coins_stack_panel": T.STACK_PANEL, + "bonus_coins_stack/padding_1": T.PANEL, + "bonus_coins_stack/currency_panel": T.PANEL, + "bonus_coins_stack/currency_panel/currency_price_panel": T.IMAGE, + "bonus_coins_stack/currency_panel/currency_price_panel/price": T.LABEL, + "bonus_coins_stack/currency_panel/currency_price_panel/debug_price": T.LABEL, + "bonus_coins_stack/padding_2": T.PANEL, + "call_out_bonus_coins_stack": T.STACK_PANEL, + "call_out_bonus_coins_stack/image_padding": T.PANEL, + "call_out_bonus_coins_stack/image_panel": T.PANEL, + "call_out_bonus_coins_stack/image_panel/image": T.IMAGE, + "call_out_bonus_coins_stack/non_bonus_padding_0": T.PANEL, + "call_out_bonus_coins_stack/price_panel": T.PANEL, + "call_out_bonus_coins_stack/price_panel/call_out_coins_stack_panel": T.STACK_PANEL, + "call_out_bonus_coins_stack/plus_label": T.PANEL, + "call_out_bonus_coins_stack/plus_label/plus_label": T.LABEL, + "call_out_bonus_coins_stack/non_bonus_padding": T.PANEL, + "call_out_bonus_coins_stack/bonus_label_panel": T.PANEL, + "call_out_bonus_coins_stack/bonus_label_panel/bonus_label": T.LABEL, + "call_out_bonus_coins_stack/padding_0": T.PANEL, + "call_out_bonus_coins_stack/bonus_coin_panel": T.STACK_PANEL, + "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_0": T.PANEL, + "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel": T.PANEL, + "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel/coin": T.IMAGE, + "call_out_bonus_coins_stack/bonus_coin_panel/coin_padding": T.PANEL, + "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel": T.PANEL, + "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel/bonus_coins": T.LABEL, + "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_1": T.PANEL, + "call_out_bonus_coins_stack/padding_1": T.PANEL, + "call_out_bonus_coins_stack/currency_panel": T.PANEL, + "call_out_bonus_coins_stack/currency_panel/currency_price_panel": T.IMAGE, + "call_out_bonus_coins_stack/currency_panel/currency_price_panel/price": T.LABEL, + "call_out_bonus_coins_stack/currency_panel/currency_price_panel/debug_price": T.LABEL, + "call_out_bonus_coins_stack/padding_2": T.PANEL, + "price": T.LABEL, + "offer_panel": T.BUTTON, + "call_out_offer_panel": T.BUTTON, + "offer_item": T.PANEL, + "offer_item/offer_panel": T.BUTTON, + "offer_item/call_out_offer_panel": T.BUTTON, + "offer_grid_item": T.PANEL, + "offer_grid_item/offer_item": T.PANEL, + "not_enough_coins": T.LABEL, + "faq_button": T.BUTTON, + "divider_panel": T.PANEL, + "divider_panel/divider": T.IMAGE, + "coin_purchase_panel": T.STACK_PANEL, + "coin_purchase_panel/padding_0": T.PANEL, + "coin_purchase_panel/not_enough_coins_panel": T.PANEL, + "coin_purchase_panel/not_enough_coins_panel/not_enough_coins": T.LABEL, + "coin_purchase_panel/padding_1": T.PANEL, + "coin_purchase_panel/coin_purchase_grid": T.GRID, + "coin_purchase_panel/divider_panel": T.PANEL, + "coin_purchase_panel/faq_button": T.BUTTON, + "main_panel": T.PANEL, + "main_panel/coin_purchase_panel": T.STACK_PANEL, + "main_panel/loading_background": T.IMAGE, + "main_panel/progress_loading_spinner": T.IMAGE, + "main_panel/no_offers_panel": T.LABEL, + "background": T.IMAGE, + "bundle_description": T.PANEL, + "bundle_description_left": T.PANEL, + "bundle_description_center": T.PANEL, + "bundle_description_right": T.PANEL, + "bundle_coins_stack": T.STACK_PANEL, + "bundle_coins_stack/content_panel": T.STACK_PANEL, + "bundle_coins_stack/content_panel/text_stack": T.STACK_PANEL, + "bundle_coins_stack/content_panel/text_stack/title_label": T.LABEL, + "bundle_coins_stack/content_panel/text_stack/padding_1": T.PANEL, + "bundle_coins_stack/content_panel/text_stack/description_section_factory": T.STACK_PANEL, + "bundle_coins_stack/content_panel/thumbnail_panel": T.PANEL, + "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail": T.IMAGE, + "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail/coin_image": T.IMAGE, + "bundle_coins_stack/content_panel/padding_0": T.PANEL, + "bundle_coins_stack/padding_0": T.PANEL, + "bundle_coins_stack/currency_panel": T.PANEL, + "bundle_coins_stack/currency_panel/currency_price_panel": T.IMAGE, + "bundle_coins_stack/currency_panel/currency_price_panel/price": T.LABEL, + "bundle_coins_stack/currency_panel/currency_price_panel/debug_price": T.LABEL, + "bundle_coins_stack/padding_2": T.PANEL, + "bundle_button_content": T.PANEL, + "bundle_button_content/bundle_coins_stack": T.STACK_PANEL, + "bundle_button_content/call_out_background": T.IMAGE, + "bundle_button_content/call_out_background/bevel": T.IMAGE, + "bundle_offer_panel": T.BUTTON, + "bundle_offer_item": T.PANEL, + "bundle_offer_item/offer_panel": T.BUTTON, + "bundle_offer_grid_item": T.PANEL, + "bundle_offer_grid_item/offer_item": T.PANEL, + "bundle_stack_factory": T.STACK_PANEL, + "bundle_factory_panel": T.PANEL, + "bundle_factory_panel/bundle_stack_factory": T.STACK_PANEL, + "bundle_panel": T.PANEL, + "bundle_panel/progress_loading_spinner": T.IMAGE, + "bundle_panel/loading_background": T.IMAGE, + "bundle_panel/bundle_stack_factory": T.PANEL, } export type CommandBlockType = { - plus_icon: T.IMAGE - paste_icon: T.IMAGE - plus_button: T.BUTTON - paste_button: T.BUTTON - icon_dropdown_toggle_button_state_content: T.STACK_PANEL - "icon_dropdown_toggle_button_state_content/icon_panel": T.PANEL - "icon_dropdown_toggle_button_state_content/icon_panel/dropdown_contents_icon": T.IMAGE - "icon_dropdown_toggle_button_state_content/spacer": T.PANEL - "icon_dropdown_toggle_button_state_content/label_panel": T.PANEL - "icon_dropdown_toggle_button_state_content/label_panel/label": T.LABEL - "icon_dropdown_toggle_button_state_content/arrow_panel": T.PANEL - "icon_dropdown_toggle_button_state_content/arrow_panel/arrow": T.IMAGE - command_block_multiline_text_edit_box: T.EDIT_BOX - command_block_text_edit_box: T.EDIT_BOX - command_block_helper_stack: T.STACK_PANEL - "command_block_helper_stack/offset": T.PANEL - "command_block_helper_stack/text_": T.LABEL - previous_command_block_info_stack: T.STACK_PANEL - "previous_command_block_info_stack/offset": T.PANEL - "previous_command_block_info_stack/start_label": T.LABEL - "previous_command_block_info_stack/offset1": T.PANEL - "previous_command_block_info_stack/start_label_dynamic_text": T.LABEL - cancel_button: T.BUTTON - blocktype_dropdown_content: T.PANEL - block_type_panel: T.PANEL - condition_dropdown_content: T.PANEL - condition_mode_panel: T.PANEL - redstone_dropdown_content: T.PANEL - redstone_mode_panel: T.PANEL - left_scrolling_panel: T.PANEL - left_scroll_panel_content: T.PANEL - "left_scroll_panel_content/content_stack_panel": T.STACK_PANEL - "left_scroll_panel_content/content_stack_panel/offset1": T.PANEL - "left_scroll_panel_content/content_stack_panel/offset2": T.PANEL - "left_scroll_panel_content/content_stack_panel/offset2/hover_note_text": T.EDIT_BOX - "left_scroll_panel_content/content_stack_panel/offset3": T.PANEL - "left_scroll_panel_content/content_stack_panel/block_type_mode_panel": T.PANEL - "left_scroll_panel_content/content_stack_panel/offset4": T.PANEL - "left_scroll_panel_content/content_stack_panel/condition_mode_panel": T.PANEL - "left_scroll_panel_content/content_stack_panel/offset5": T.PANEL - "left_scroll_panel_content/content_stack_panel/redstone_mode_panel": T.PANEL - "left_scroll_panel_content/content_stack_panel/offset_execute_on_first_tick": T.PANEL - "left_scroll_panel_content/content_stack_panel/option_label_execute_on_first_tick": T.LABEL - "left_scroll_panel_content/content_stack_panel/execute_on_first_tick_toggle": T.PANEL - "left_scroll_panel_content/content_stack_panel/offset_tick_delay": T.PANEL - "left_scroll_panel_content/content_stack_panel/option_label_tick_delay": T.LABEL - "left_scroll_panel_content/content_stack_panel/tick_delay_text": T.EDIT_BOX - "left_scroll_panel_content/content_stack_panel/offset7": T.PANEL - "left_scroll_panel_content/content_stack_panel/cancel": T.BUTTON - "left_scroll_panel_content/content_stack_panel/offset8": T.PANEL - left_divider_content: T.PANEL - "left_divider_content/left_scrolling_panel": T.PANEL - right_scrolling_panel: T.PANEL - right_scroll_panel_content: T.STACK_PANEL - "right_scroll_panel_content/command_block_commands_panel": T.STACK_PANEL - "right_scroll_panel_content/command_block_commands_panel/spacer1": T.PANEL - "right_scroll_panel_content/command_block_commands_panel/centering_panel": T.PANEL - "right_scroll_panel_content/command_block_commands_panel/centering_panel/option_label": T.LABEL - "right_scroll_panel_content/command_block_commands_panel/spacer2": T.PANEL - "right_scroll_panel_content/command_block_commands_panel/centering_panel1": T.PANEL - "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel": T.STACK_PANEL - "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset": T.PANEL - "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset/command_block_commands_text": T.EDIT_BOX - "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/paste_button": T.BUTTON - "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/plus_button": T.BUTTON - "right_scroll_panel_content/switch_warning_panel": T.PANEL - "right_scroll_panel_content/switch_warning_panel/switch_warning_label": T.LABEL - "right_scroll_panel_content/self_label": T.STACK_PANEL - "right_scroll_panel_content/self_label_offset": T.PANEL - "right_scroll_panel_content/nearest_player_label": T.STACK_PANEL - "right_scroll_panel_content/nearest_player_label_offset": T.PANEL - "right_scroll_panel_content/random_player_label": T.STACK_PANEL - "right_scroll_panel_content/random_player_label_offset": T.PANEL - "right_scroll_panel_content/all_players_label": T.STACK_PANEL - "right_scroll_panel_content/all_players_label_offset": T.PANEL - "right_scroll_panel_content/all_entities_label": T.STACK_PANEL - "right_scroll_panel_content/all_entities_label_offset": T.PANEL - "right_scroll_panel_content/nearest_label": T.STACK_PANEL - "right_scroll_panel_content/nearest_label_offset": T.PANEL - "right_scroll_panel_content/command_block_previous_output_panel": T.STACK_PANEL - "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel": T.PANEL - "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack": T.STACK_PANEL - "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/show_output_toggle": T.PANEL - "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/option_label": T.LABEL - "right_scroll_panel_content/command_block_previous_output_panel/spacer": T.PANEL - "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel": T.PANEL - "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel/command_output_text": T.EDIT_BOX - "right_scroll_panel_content/previous_block_type_text": T.STACK_PANEL - "right_scroll_panel_content/offset4": T.PANEL - "right_scroll_panel_content/previous_conditional_mode_text": T.STACK_PANEL - "right_scroll_panel_content/offset5": T.PANEL - "right_scroll_panel_content/previous_redstone_mode_text": T.STACK_PANEL - divider_content: T.PANEL - "divider_content/left_side": T.PANEL - "divider_content/right_side": T.PANEL - command_block_screen_content: T.PANEL - "command_block_screen_content/background_divider": T.PANEL - "command_block_screen_content/background_divider/bg_image": T.UNKNOWN - "command_block_screen_content/background_divider/dialog_divider": T.IMAGE - "command_block_screen_content/background_divider/header_buttons_stack_panel": T.STACK_PANEL - "command_block_screen_content/background_divider/header_buttons_stack_panel/paste_button": T.BUTTON - "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder": T.PANEL - "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/close": T.BUTTON - "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize": T.BUTTON - "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/default": T.UNKNOWN - "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/hover": T.UNKNOWN - "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/pressed": T.UNKNOWN - "command_block_screen_content/title": T.LABEL - "command_block_screen_content/content": T.PANEL - "command_block_screen_content/maximized_command_block_text": T.EDIT_BOX - right_divider_content: T.PANEL - "right_divider_content/right_scrolling_panel": T.PANEL - command_block_screen: T.SCREEN + "plus_icon": T.IMAGE, + "paste_icon": T.IMAGE, + "plus_button": T.BUTTON, + "paste_button": T.BUTTON, + "icon_dropdown_toggle_button_state_content": T.STACK_PANEL, + "icon_dropdown_toggle_button_state_content/icon_panel": T.PANEL, + "icon_dropdown_toggle_button_state_content/icon_panel/dropdown_contents_icon": T.IMAGE, + "icon_dropdown_toggle_button_state_content/spacer": T.PANEL, + "icon_dropdown_toggle_button_state_content/label_panel": T.PANEL, + "icon_dropdown_toggle_button_state_content/label_panel/label": T.LABEL, + "icon_dropdown_toggle_button_state_content/arrow_panel": T.PANEL, + "icon_dropdown_toggle_button_state_content/arrow_panel/arrow": T.IMAGE, + "command_block_multiline_text_edit_box": T.EDIT_BOX, + "command_block_text_edit_box": T.EDIT_BOX, + "command_block_helper_stack": T.STACK_PANEL, + "command_block_helper_stack/offset": T.PANEL, + "command_block_helper_stack/text_": T.LABEL, + "previous_command_block_info_stack": T.STACK_PANEL, + "previous_command_block_info_stack/offset": T.PANEL, + "previous_command_block_info_stack/start_label": T.LABEL, + "previous_command_block_info_stack/offset1": T.PANEL, + "previous_command_block_info_stack/start_label_dynamic_text": T.LABEL, + "cancel_button": T.BUTTON, + "blocktype_dropdown_content": T.PANEL, + "block_type_panel": T.PANEL, + "condition_dropdown_content": T.PANEL, + "condition_mode_panel": T.PANEL, + "redstone_dropdown_content": T.PANEL, + "redstone_mode_panel": T.PANEL, + "left_scrolling_panel": T.PANEL, + "left_scroll_panel_content": T.PANEL, + "left_scroll_panel_content/content_stack_panel": T.STACK_PANEL, + "left_scroll_panel_content/content_stack_panel/offset1": T.PANEL, + "left_scroll_panel_content/content_stack_panel/offset2": T.PANEL, + "left_scroll_panel_content/content_stack_panel/offset2/hover_note_text": T.EDIT_BOX, + "left_scroll_panel_content/content_stack_panel/offset3": T.PANEL, + "left_scroll_panel_content/content_stack_panel/block_type_mode_panel": T.PANEL, + "left_scroll_panel_content/content_stack_panel/offset4": T.PANEL, + "left_scroll_panel_content/content_stack_panel/condition_mode_panel": T.PANEL, + "left_scroll_panel_content/content_stack_panel/offset5": T.PANEL, + "left_scroll_panel_content/content_stack_panel/redstone_mode_panel": T.PANEL, + "left_scroll_panel_content/content_stack_panel/offset_execute_on_first_tick": T.PANEL, + "left_scroll_panel_content/content_stack_panel/option_label_execute_on_first_tick": T.LABEL, + "left_scroll_panel_content/content_stack_panel/execute_on_first_tick_toggle": T.PANEL, + "left_scroll_panel_content/content_stack_panel/offset_tick_delay": T.PANEL, + "left_scroll_panel_content/content_stack_panel/option_label_tick_delay": T.LABEL, + "left_scroll_panel_content/content_stack_panel/tick_delay_text": T.EDIT_BOX, + "left_scroll_panel_content/content_stack_panel/offset7": T.PANEL, + "left_scroll_panel_content/content_stack_panel/cancel": T.BUTTON, + "left_scroll_panel_content/content_stack_panel/offset8": T.PANEL, + "left_divider_content": T.PANEL, + "left_divider_content/left_scrolling_panel": T.PANEL, + "right_scrolling_panel": T.PANEL, + "right_scroll_panel_content": T.STACK_PANEL, + "right_scroll_panel_content/command_block_commands_panel": T.STACK_PANEL, + "right_scroll_panel_content/command_block_commands_panel/spacer1": T.PANEL, + "right_scroll_panel_content/command_block_commands_panel/centering_panel": T.PANEL, + "right_scroll_panel_content/command_block_commands_panel/centering_panel/option_label": T.LABEL, + "right_scroll_panel_content/command_block_commands_panel/spacer2": T.PANEL, + "right_scroll_panel_content/command_block_commands_panel/centering_panel1": T.PANEL, + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel": T.STACK_PANEL, + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset": T.PANEL, + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset/command_block_commands_text": T.EDIT_BOX, + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/paste_button": T.BUTTON, + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/plus_button": T.BUTTON, + "right_scroll_panel_content/switch_warning_panel": T.PANEL, + "right_scroll_panel_content/switch_warning_panel/switch_warning_label": T.LABEL, + "right_scroll_panel_content/self_label": T.STACK_PANEL, + "right_scroll_panel_content/self_label_offset": T.PANEL, + "right_scroll_panel_content/nearest_player_label": T.STACK_PANEL, + "right_scroll_panel_content/nearest_player_label_offset": T.PANEL, + "right_scroll_panel_content/random_player_label": T.STACK_PANEL, + "right_scroll_panel_content/random_player_label_offset": T.PANEL, + "right_scroll_panel_content/all_players_label": T.STACK_PANEL, + "right_scroll_panel_content/all_players_label_offset": T.PANEL, + "right_scroll_panel_content/all_entities_label": T.STACK_PANEL, + "right_scroll_panel_content/all_entities_label_offset": T.PANEL, + "right_scroll_panel_content/nearest_label": T.STACK_PANEL, + "right_scroll_panel_content/nearest_label_offset": T.PANEL, + "right_scroll_panel_content/command_block_previous_output_panel": T.STACK_PANEL, + "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel": T.PANEL, + "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack": T.STACK_PANEL, + "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/show_output_toggle": T.PANEL, + "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/option_label": T.LABEL, + "right_scroll_panel_content/command_block_previous_output_panel/spacer": T.PANEL, + "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel": T.PANEL, + "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel/command_output_text": T.EDIT_BOX, + "right_scroll_panel_content/previous_block_type_text": T.STACK_PANEL, + "right_scroll_panel_content/offset4": T.PANEL, + "right_scroll_panel_content/previous_conditional_mode_text": T.STACK_PANEL, + "right_scroll_panel_content/offset5": T.PANEL, + "right_scroll_panel_content/previous_redstone_mode_text": T.STACK_PANEL, + "divider_content": T.PANEL, + "divider_content/left_side": T.PANEL, + "divider_content/right_side": T.PANEL, + "command_block_screen_content": T.PANEL, + "command_block_screen_content/background_divider": T.PANEL, + "command_block_screen_content/background_divider/bg_image": T.UNKNOWN, + "command_block_screen_content/background_divider/dialog_divider": T.IMAGE, + "command_block_screen_content/background_divider/header_buttons_stack_panel": T.STACK_PANEL, + "command_block_screen_content/background_divider/header_buttons_stack_panel/paste_button": T.BUTTON, + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder": T.PANEL, + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/close": T.BUTTON, + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize": T.BUTTON, + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/default": T.UNKNOWN, + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/hover": T.UNKNOWN, + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/pressed": T.UNKNOWN, + "command_block_screen_content/title": T.LABEL, + "command_block_screen_content/content": T.PANEL, + "command_block_screen_content/maximized_command_block_text": T.EDIT_BOX, + "right_divider_content": T.PANEL, + "right_divider_content/right_scrolling_panel": T.PANEL, + "command_block_screen": T.SCREEN, } export type ConfirmDeleteAccountType = { - horizontal_divider: T.STACK_PANEL - image_panel: T.PANEL - "image_panel/image": T.IMAGE - header_panel: T.STACK_PANEL - "header_panel/image_panel": T.PANEL - "header_panel/padding": T.PANEL - "header_panel/text_panel": T.STACK_PANEL - "header_panel/text_panel/header_text": T.LABEL - "header_panel/text_panel/padding_2": T.PANEL - "header_panel/text_panel/header_text_2": T.LABEL - dialog_content: T.STACK_PANEL - "dialog_content/body_content": T.PANEL - "dialog_content/padding": T.PANEL - "dialog_content/button_panel": T.STACK_PANEL - "dialog_content/button_panel/confirm_delete_account_button": T.BUTTON - "dialog_content/button_panel/padding": T.PANEL - "dialog_content/button_panel/cancel_delete_account_button": T.BUTTON - confirm_checkbox: T.STACK_PANEL - "confirm_checkbox/check_box_wrapper": T.PANEL - "confirm_checkbox/check_box_wrapper/check_box": T.TOGGLE - "confirm_checkbox/padding": T.PANEL - "confirm_checkbox/label_wrapper": T.PANEL - "confirm_checkbox/label_wrapper/label": T.LABEL - scrolling_panel: T.PANEL - description_label_panel: T.STACK_PANEL - "description_label_panel/header_label_wrapper": T.PANEL - "description_label_panel/padding": T.PANEL - "description_label_panel/divider_0": T.STACK_PANEL - "description_label_panel/confirm_0": T.STACK_PANEL - "description_label_panel/divider_1": T.STACK_PANEL - "description_label_panel/confirm_1": T.STACK_PANEL - "description_label_panel/divider_2": T.STACK_PANEL - "description_label_panel/confirm_2": T.STACK_PANEL - "description_label_panel/divider_3": T.STACK_PANEL - "description_label_panel/confirm_3": T.STACK_PANEL - confirm_delete_account_screen: T.SCREEN - confirm_delete_account_screen_content: T.PANEL - "confirm_delete_account_screen_content/root_panel": T.PANEL - "confirm_delete_account_screen_content/root_panel/dialog": T.PANEL - screen_dialog: T.PANEL - background: T.IMAGE + "horizontal_divider": T.STACK_PANEL, + "image_panel": T.PANEL, + "image_panel/image": T.IMAGE, + "header_panel": T.STACK_PANEL, + "header_panel/image_panel": T.PANEL, + "header_panel/padding": T.PANEL, + "header_panel/text_panel": T.STACK_PANEL, + "header_panel/text_panel/header_text": T.LABEL, + "header_panel/text_panel/padding_2": T.PANEL, + "header_panel/text_panel/header_text_2": T.LABEL, + "dialog_content": T.STACK_PANEL, + "dialog_content/body_content": T.PANEL, + "dialog_content/padding": T.PANEL, + "dialog_content/button_panel": T.STACK_PANEL, + "dialog_content/button_panel/confirm_delete_account_button": T.BUTTON, + "dialog_content/button_panel/padding": T.PANEL, + "dialog_content/button_panel/cancel_delete_account_button": T.BUTTON, + "confirm_checkbox": T.STACK_PANEL, + "confirm_checkbox/check_box_wrapper": T.PANEL, + "confirm_checkbox/check_box_wrapper/check_box": T.TOGGLE, + "confirm_checkbox/padding": T.PANEL, + "confirm_checkbox/label_wrapper": T.PANEL, + "confirm_checkbox/label_wrapper/label": T.LABEL, + "scrolling_panel": T.PANEL, + "description_label_panel": T.STACK_PANEL, + "description_label_panel/header_label_wrapper": T.PANEL, + "description_label_panel/padding": T.PANEL, + "description_label_panel/divider_0": T.STACK_PANEL, + "description_label_panel/confirm_0": T.STACK_PANEL, + "description_label_panel/divider_1": T.STACK_PANEL, + "description_label_panel/confirm_1": T.STACK_PANEL, + "description_label_panel/divider_2": T.STACK_PANEL, + "description_label_panel/confirm_2": T.STACK_PANEL, + "description_label_panel/divider_3": T.STACK_PANEL, + "description_label_panel/confirm_3": T.STACK_PANEL, + "confirm_delete_account_screen": T.SCREEN, + "confirm_delete_account_screen_content": T.PANEL, + "confirm_delete_account_screen_content/root_panel": T.PANEL, + "confirm_delete_account_screen_content/root_panel/dialog": T.PANEL, + "screen_dialog": T.PANEL, + "background": T.IMAGE, } export type ContentLogType = { - content_log_label: T.LABEL - content_log_grid_item: T.PANEL - "content_log_grid_item/content_log_background": T.IMAGE - "content_log_grid_item/content_log_background/content_log_text": T.LABEL - content_log_panel: T.PANEL - "content_log_panel/stack_panel": T.STACK_PANEL + "content_log_label": T.LABEL, + "content_log_grid_item": T.PANEL, + "content_log_grid_item/content_log_background": T.IMAGE, + "content_log_grid_item/content_log_background/content_log_text": T.LABEL, + "content_log_panel": T.PANEL, + "content_log_panel/stack_panel": T.STACK_PANEL, } export type ContentLogHistoryType = { - clipboard_icon: T.IMAGE - clipboard_icon_wrapper: T.PANEL - "clipboard_icon_wrapper/stack_panel": T.STACK_PANEL - "clipboard_icon_wrapper/stack_panel/icon_panel": T.PANEL - "clipboard_icon_wrapper/stack_panel/icon_panel/icon": T.IMAGE - "clipboard_icon_wrapper/stack_panel/offset": T.PANEL - "clipboard_icon_wrapper/stack_panel/label_panel": T.PANEL - "clipboard_icon_wrapper/stack_panel/label_panel/label": T.LABEL - clipboard_button: T.BUTTON - clear_icon: T.IMAGE - clear_icon_wrapper: T.PANEL - "clear_icon_wrapper/stack_panel": T.STACK_PANEL - "clear_icon_wrapper/stack_panel/icon_panel": T.PANEL - "clear_icon_wrapper/stack_panel/icon_panel/icon": T.IMAGE - "clear_icon_wrapper/stack_panel/offset": T.PANEL - "clear_icon_wrapper/stack_panel/label_panel": T.PANEL - "clear_icon_wrapper/stack_panel/label_panel/label": T.LABEL - clear_button: T.BUTTON - horizontal_button_stack_panel: T.STACK_PANEL - "horizontal_button_stack_panel/clipboard_button": T.BUTTON - "horizontal_button_stack_panel/clear_button": T.BUTTON - content_log_message: T.LABEL - content_log_message_panel: T.PANEL - "content_log_message_panel/content_log_message": T.LABEL - content_log_message_panel_panel: T.PANEL - "content_log_message_panel_panel/content_log_message_panel": T.PANEL - messages_stack_panel: T.STACK_PANEL - messages_scrolling_panel: T.PANEL - main_stack_panel: T.STACK_PANEL - "main_stack_panel/messages_scrolling_panel": T.PANEL - content_log_history_panel: T.PANEL - "content_log_history_panel/content_log_history_dialog": T.UNKNOWN - content_log_history_screen: T.SCREEN + "clipboard_icon": T.IMAGE, + "clipboard_icon_wrapper": T.PANEL, + "clipboard_icon_wrapper/stack_panel": T.STACK_PANEL, + "clipboard_icon_wrapper/stack_panel/icon_panel": T.PANEL, + "clipboard_icon_wrapper/stack_panel/icon_panel/icon": T.IMAGE, + "clipboard_icon_wrapper/stack_panel/offset": T.PANEL, + "clipboard_icon_wrapper/stack_panel/label_panel": T.PANEL, + "clipboard_icon_wrapper/stack_panel/label_panel/label": T.LABEL, + "clipboard_button": T.BUTTON, + "clear_icon": T.IMAGE, + "clear_icon_wrapper": T.PANEL, + "clear_icon_wrapper/stack_panel": T.STACK_PANEL, + "clear_icon_wrapper/stack_panel/icon_panel": T.PANEL, + "clear_icon_wrapper/stack_panel/icon_panel/icon": T.IMAGE, + "clear_icon_wrapper/stack_panel/offset": T.PANEL, + "clear_icon_wrapper/stack_panel/label_panel": T.PANEL, + "clear_icon_wrapper/stack_panel/label_panel/label": T.LABEL, + "clear_button": T.BUTTON, + "horizontal_button_stack_panel": T.STACK_PANEL, + "horizontal_button_stack_panel/clipboard_button": T.BUTTON, + "horizontal_button_stack_panel/clear_button": T.BUTTON, + "content_log_message": T.LABEL, + "content_log_message_panel": T.PANEL, + "content_log_message_panel/content_log_message": T.LABEL, + "content_log_message_panel_panel": T.PANEL, + "content_log_message_panel_panel/content_log_message_panel": T.PANEL, + "messages_stack_panel": T.STACK_PANEL, + "messages_scrolling_panel": T.PANEL, + "main_stack_panel": T.STACK_PANEL, + "main_stack_panel/messages_scrolling_panel": T.PANEL, + "content_log_history_panel": T.PANEL, + "content_log_history_panel/content_log_history_dialog": T.UNKNOWN, + "content_log_history_screen": T.SCREEN, } export type CrafterPocketType = { - generic_label: T.LABEL - header_panel: T.PANEL - "header_panel/header_background": T.IMAGE - "header_panel/title_label": T.LABEL - header_area: T.PANEL - "header_area/x": T.BUTTON - "header_area/inventory_header": T.PANEL - "header_area/container_header": T.PANEL - dark_bg: T.IMAGE - panel_outline: T.IMAGE - background_panel: T.IMAGE - inventory_panel: T.PANEL - "inventory_panel/scrolling_panel": T.PANEL - left_screen: T.PANEL - "left_screen/inventory_panel": T.PANEL - crafter_input_grid: T.GRID - crafter_disabled_slot: T.BUTTON - "crafter_disabled_slot/default": T.IMAGE - "crafter_disabled_slot/hover": T.IMAGE - "crafter_disabled_slot/pressed": T.IMAGE - cell_image: T.IMAGE - crafter_highlight_slot: T.IMAGE - crafter_container_slot_button_prototype: T.BUTTON - crafter_highlight_slot_panel: T.PANEL - "crafter_highlight_slot_panel/highlight": T.IMAGE - "crafter_highlight_slot_panel/highlight/hover_text": T.CUSTOM - "crafter_highlight_slot_panel/white_border": T.IMAGE - crafter_enabled_slot_template: T.INPUT_PANEL - output_slot_hover_info: T.BUTTON - "output_slot_hover_info/hover": T.CUSTOM - "output_slot_hover_info/output_slot": T.CUSTOM - "output_slot_hover_info/output_slot_border": T.IMAGE - "output_slot_hover_info/output_count": T.LABEL - panel_crafter: T.PANEL - "panel_crafter/item_lock_notification_factory": T.FACTORY - "panel_crafter/root_panel": T.INPUT_PANEL - "panel_crafter/root_panel/disabled_slot_0_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_1_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_2_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_3_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_4_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_5_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_6_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_7_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_8_button": T.BUTTON - "panel_crafter/root_panel/redstone_screen_inventory": T.PANEL - "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid": T.PANEL - "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid": T.GRID - "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon": T.BUTTON - "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line": T.IMAGE - "panel_crafter/root_panel/redstone_screen_inventory/crafter_output": T.BUTTON - "panel_crafter/root_panel/red_icon": T.BUTTON - right_screen_background: T.IMAGE - right_screen: T.PANEL - "right_screen/right_screen_bg": T.IMAGE - "right_screen/right_screen_bg/inventory_panel": T.PANEL - panel: T.PANEL - "panel/container_gamepad_helpers": T.STACK_PANEL - "panel/header": T.PANEL - "panel/bg": T.IMAGE - "panel/inventory": T.PANEL - "panel/container": T.PANEL - "panel/selected_item_details_factory": T.FACTORY - "panel/item_lock_notification_factory": T.FACTORY - "panel/gamepad_cursor": T.BUTTON - "panel/flying_item_renderer": T.CUSTOM - crafter: T.PANEL + "generic_label": T.LABEL, + "header_panel": T.PANEL, + "header_panel/header_background": T.IMAGE, + "header_panel/title_label": T.LABEL, + "header_area": T.PANEL, + "header_area/x": T.BUTTON, + "header_area/inventory_header": T.PANEL, + "header_area/container_header": T.PANEL, + "dark_bg": T.IMAGE, + "panel_outline": T.IMAGE, + "background_panel": T.IMAGE, + "inventory_panel": T.PANEL, + "inventory_panel/scrolling_panel": T.PANEL, + "left_screen": T.PANEL, + "left_screen/inventory_panel": T.PANEL, + "crafter_input_grid": T.GRID, + "crafter_disabled_slot": T.BUTTON, + "crafter_disabled_slot/default": T.IMAGE, + "crafter_disabled_slot/hover": T.IMAGE, + "crafter_disabled_slot/pressed": T.IMAGE, + "cell_image": T.IMAGE, + "crafter_highlight_slot": T.IMAGE, + "crafter_container_slot_button_prototype": T.BUTTON, + "crafter_highlight_slot_panel": T.PANEL, + "crafter_highlight_slot_panel/highlight": T.IMAGE, + "crafter_highlight_slot_panel/highlight/hover_text": T.CUSTOM, + "crafter_highlight_slot_panel/white_border": T.IMAGE, + "crafter_enabled_slot_template": T.INPUT_PANEL, + "output_slot_hover_info": T.BUTTON, + "output_slot_hover_info/hover": T.CUSTOM, + "output_slot_hover_info/output_slot": T.CUSTOM, + "output_slot_hover_info/output_slot_border": T.IMAGE, + "output_slot_hover_info/output_count": T.LABEL, + "panel_crafter": T.PANEL, + "panel_crafter/item_lock_notification_factory": T.FACTORY, + "panel_crafter/root_panel": T.INPUT_PANEL, + "panel_crafter/root_panel/disabled_slot_0_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_1_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_2_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_3_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_4_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_5_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_6_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_7_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_8_button": T.BUTTON, + "panel_crafter/root_panel/redstone_screen_inventory": T.PANEL, + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid": T.PANEL, + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid": T.GRID, + "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon": T.BUTTON, + "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line": T.IMAGE, + "panel_crafter/root_panel/redstone_screen_inventory/crafter_output": T.BUTTON, + "panel_crafter/root_panel/red_icon": T.BUTTON, + "right_screen_background": T.IMAGE, + "right_screen": T.PANEL, + "right_screen/right_screen_bg": T.IMAGE, + "right_screen/right_screen_bg/inventory_panel": T.PANEL, + "panel": T.PANEL, + "panel/container_gamepad_helpers": T.STACK_PANEL, + "panel/header": T.PANEL, + "panel/bg": T.IMAGE, + "panel/inventory": T.PANEL, + "panel/container": T.PANEL, + "panel/selected_item_details_factory": T.FACTORY, + "panel/item_lock_notification_factory": T.FACTORY, + "panel/gamepad_cursor": T.BUTTON, + "panel/flying_item_renderer": T.CUSTOM, + "crafter": T.PANEL, } export type CreateWorldUpsellType = { - world_icon: T.IMAGE - realms_icon: T.IMAGE - dark_banner: T.IMAGE - grey_banner: T.IMAGE - checkmark: T.IMAGE - largex: T.IMAGE - realms_art_icon: T.IMAGE - new_world_button: T.BUTTON - new_realm_button: T.BUTTON - remove_trial_button: T.BUTTON - button_content: T.STACK_PANEL - "button_content/padding_0": T.PANEL - "button_content/icon_panel": T.PANEL - "button_content/padding_1": T.PANEL - "button_content/label_panel": T.PANEL - realm_button_content: T.STACK_PANEL - world_button_content: T.STACK_PANEL - realms_button_text_panel: T.STACK_PANEL - "realms_button_text_panel/new_realm_label": T.LABEL - "realms_button_text_panel/new_realm_trial_label": T.LABEL - price_label: T.LABEL - new_realm_label: T.LABEL - new_realm_trial_label: T.LABEL - new_world_label: T.LABEL - button_and_price_panel: T.STACK_PANEL - "button_and_price_panel/padding": T.PANEL - "button_and_price_panel/price_label_panel": T.PANEL - "button_and_price_panel/price_label_panel/price": T.LABEL - border_shell: T.IMAGE - head_banner_panel: T.IMAGE - create_new_realm_content: T.STACK_PANEL - "create_new_realm_content/head_banner_panel": T.IMAGE - "create_new_realm_content/head_banner_panel/realm_button_price": T.STACK_PANEL - "create_new_realm_content/realm_grid": T.GRID - create_world_upsell_grid_item: T.PANEL - "create_world_upsell_grid_item/db": T.IMAGE - "create_world_upsell_grid_item/gb": T.IMAGE - "create_world_upsell_grid_item/gp": T.STACK_PANEL - grid_panel: T.STACK_PANEL - "grid_panel/padding": T.PANEL - "grid_panel/upsell_text_panel": T.PANEL - "grid_panel/upsell_text_panel/upsell_label": T.LABEL - create_new_world_content: T.STACK_PANEL - "create_new_world_content/head_banner_panel": T.IMAGE - "create_new_world_content/head_banner_panel/world_button_price": T.STACK_PANEL - "create_new_world_content/world_grid": T.GRID - new_world_or_realm_scroll: T.PANEL - create_new_world_or_realm_content: T.STACK_PANEL - "create_new_world_or_realm_content/world": T.IMAGE - "create_new_world_or_realm_content/padding": T.PANEL - "create_new_world_or_realm_content/realm_content": T.IMAGE - new_realm_scroll: T.PANEL - new_realm_content_panel: T.STACK_PANEL - "new_realm_content_panel/key_art_panel": T.PANEL - "new_realm_content_panel/key_art_panel/realms_art_icon": T.IMAGE - "new_realm_content_panel/padding_hack": T.PANEL - "new_realm_content_panel/padding_0": T.PANEL - "new_realm_content_panel/new_realm_scroll": T.PANEL - "new_realm_content_panel/padding_1": T.PANEL - create_realm_upsell_content: T.STACK_PANEL - "create_realm_upsell_content/realm_content": T.IMAGE - "create_realm_upsell_content/padding_0": T.PANEL - "create_realm_upsell_content/remove_trial_button": T.BUTTON - "create_realm_upsell_content/padding_1": T.PANEL - realm_content: T.IMAGE - create_world_upsell: T.SCREEN - create_world_upsell_realms: T.SCREEN - main_panel: T.PANEL - variable_screen_size_panel: T.PANEL - "variable_screen_size_panel/dialog_0": T.PANEL - "variable_screen_size_panel/dialog_1": T.PANEL - main_panel_realms_only: T.PANEL + "world_icon": T.IMAGE, + "realms_icon": T.IMAGE, + "dark_banner": T.IMAGE, + "grey_banner": T.IMAGE, + "checkmark": T.IMAGE, + "largex": T.IMAGE, + "realms_art_icon": T.IMAGE, + "new_world_button": T.BUTTON, + "new_realm_button": T.BUTTON, + "remove_trial_button": T.BUTTON, + "button_content": T.STACK_PANEL, + "button_content/padding_0": T.PANEL, + "button_content/icon_panel": T.PANEL, + "button_content/padding_1": T.PANEL, + "button_content/label_panel": T.PANEL, + "realm_button_content": T.STACK_PANEL, + "world_button_content": T.STACK_PANEL, + "realms_button_text_panel": T.STACK_PANEL, + "realms_button_text_panel/new_realm_label": T.LABEL, + "realms_button_text_panel/new_realm_trial_label": T.LABEL, + "price_label": T.LABEL, + "new_realm_label": T.LABEL, + "new_realm_trial_label": T.LABEL, + "new_world_label": T.LABEL, + "button_and_price_panel": T.STACK_PANEL, + "button_and_price_panel/padding": T.PANEL, + "button_and_price_panel/price_label_panel": T.PANEL, + "button_and_price_panel/price_label_panel/price": T.LABEL, + "border_shell": T.IMAGE, + "head_banner_panel": T.IMAGE, + "create_new_realm_content": T.STACK_PANEL, + "create_new_realm_content/head_banner_panel": T.IMAGE, + "create_new_realm_content/head_banner_panel/realm_button_price": T.STACK_PANEL, + "create_new_realm_content/realm_grid": T.GRID, + "create_world_upsell_grid_item": T.PANEL, + "create_world_upsell_grid_item/db": T.IMAGE, + "create_world_upsell_grid_item/gb": T.IMAGE, + "create_world_upsell_grid_item/gp": T.STACK_PANEL, + "grid_panel": T.STACK_PANEL, + "grid_panel/padding": T.PANEL, + "grid_panel/upsell_text_panel": T.PANEL, + "grid_panel/upsell_text_panel/upsell_label": T.LABEL, + "create_new_world_content": T.STACK_PANEL, + "create_new_world_content/head_banner_panel": T.IMAGE, + "create_new_world_content/head_banner_panel/world_button_price": T.STACK_PANEL, + "create_new_world_content/world_grid": T.GRID, + "new_world_or_realm_scroll": T.PANEL, + "create_new_world_or_realm_content": T.STACK_PANEL, + "create_new_world_or_realm_content/world": T.IMAGE, + "create_new_world_or_realm_content/padding": T.PANEL, + "create_new_world_or_realm_content/realm_content": T.IMAGE, + "new_realm_scroll": T.PANEL, + "new_realm_content_panel": T.STACK_PANEL, + "new_realm_content_panel/key_art_panel": T.PANEL, + "new_realm_content_panel/key_art_panel/realms_art_icon": T.IMAGE, + "new_realm_content_panel/padding_hack": T.PANEL, + "new_realm_content_panel/padding_0": T.PANEL, + "new_realm_content_panel/new_realm_scroll": T.PANEL, + "new_realm_content_panel/padding_1": T.PANEL, + "create_realm_upsell_content": T.STACK_PANEL, + "create_realm_upsell_content/realm_content": T.IMAGE, + "create_realm_upsell_content/padding_0": T.PANEL, + "create_realm_upsell_content/remove_trial_button": T.BUTTON, + "create_realm_upsell_content/padding_1": T.PANEL, + "realm_content": T.IMAGE, + "create_world_upsell": T.SCREEN, + "create_world_upsell_realms": T.SCREEN, + "main_panel": T.PANEL, + "variable_screen_size_panel": T.PANEL, + "variable_screen_size_panel/dialog_0": T.PANEL, + "variable_screen_size_panel/dialog_1": T.PANEL, + "main_panel_realms_only": T.PANEL, } export type CreditsType = { - fade_in_image: T.IMAGE - fade_out_image: T.IMAGE - skip_panel: T.PANEL - "skip_panel/skip_button": T.BUTTON - "skip_panel/exit_credits_input_panel": T.INPUT_PANEL - credits_renderer: T.CUSTOM - credits_screen_content: T.PANEL - "credits_screen_content/credits_renderer": T.CUSTOM - "credits_screen_content/vignette_renderer": T.CUSTOM - "credits_screen_content/fade_in_image": T.IMAGE - "credits_screen_content/credits_factory": T.FACTORY - "credits_screen_content/whole_screen_input_panel": T.INPUT_PANEL - background: T.IMAGE - credits_screen: T.SCREEN + "fade_in_image": T.IMAGE, + "fade_out_image": T.IMAGE, + "skip_panel": T.PANEL, + "skip_panel/skip_button": T.BUTTON, + "skip_panel/exit_credits_input_panel": T.INPUT_PANEL, + "credits_renderer": T.CUSTOM, + "credits_screen_content": T.PANEL, + "credits_screen_content/credits_renderer": T.CUSTOM, + "credits_screen_content/vignette_renderer": T.CUSTOM, + "credits_screen_content/fade_in_image": T.IMAGE, + "credits_screen_content/credits_factory": T.FACTORY, + "credits_screen_content/whole_screen_input_panel": T.INPUT_PANEL, + "background": T.IMAGE, + "credits_screen": T.SCREEN, } export type CsbPurchaseErrorType = { - csb_purchase_error_screen: T.SCREEN - purchase_error_screen_content: T.PANEL - "purchase_error_screen_content/main_panel": T.PANEL - purchase_error_modal_main_panel: T.STACK_PANEL - "purchase_error_modal_main_panel/text_panel": T.PANEL - "purchase_error_modal_main_panel/text_panel/text": T.LABEL - "purchase_error_modal_main_panel/padding_1": T.PANEL - "purchase_error_modal_main_panel/art_panel": T.PANEL - "purchase_error_modal_main_panel/art_panel/art": T.IMAGE - "purchase_error_modal_main_panel/padding_2": T.PANEL - "purchase_error_modal_main_panel/error_panel": T.STACK_PANEL - "purchase_error_modal_main_panel/error_panel/error_code": T.LABEL - "purchase_error_modal_main_panel/error_panel/correlation_id": T.LABEL - purchase_error_modal_back_button: T.BUTTON + "csb_purchase_error_screen": T.SCREEN, + "purchase_error_screen_content": T.PANEL, + "purchase_error_screen_content/main_panel": T.PANEL, + "purchase_error_modal_main_panel": T.STACK_PANEL, + "purchase_error_modal_main_panel/text_panel": T.PANEL, + "purchase_error_modal_main_panel/text_panel/text": T.LABEL, + "purchase_error_modal_main_panel/padding_1": T.PANEL, + "purchase_error_modal_main_panel/art_panel": T.PANEL, + "purchase_error_modal_main_panel/art_panel/art": T.IMAGE, + "purchase_error_modal_main_panel/padding_2": T.PANEL, + "purchase_error_modal_main_panel/error_panel": T.STACK_PANEL, + "purchase_error_modal_main_panel/error_panel/error_code": T.LABEL, + "purchase_error_modal_main_panel/error_panel/correlation_id": T.LABEL, + "purchase_error_modal_back_button": T.BUTTON, } export type CsbType = { - csb_pdp_screen: T.SCREEN - csb_upgrade_notice_screen: T.SCREEN - csb_background: T.IMAGE - gradient_image_stack: T.STACK_PANEL - "gradient_image_stack/gradient": T.IMAGE - gradient_content_panel: T.PANEL - "gradient_content_panel/gradient": T.STACK_PANEL - "gradient_content_panel/particles": T.IMAGE - "gradient_content_panel/content_panel": T.UNKNOWN - csb_screen_main_panel: T.INPUT_PANEL - csb_main_panel: T.PANEL - "csb_main_panel/root_panel": T.PANEL - "csb_main_panel/root_panel/main_panel": T.STACK_PANEL - dialog_content: T.STACK_PANEL - "dialog_content/selector_area": T.PANEL - "dialog_content/padding_1": T.PANEL - "dialog_content/allow_divider_offset_panel": T.PANEL - "dialog_content/allow_divider_offset_panel/left_right_pane_divider": T.IMAGE - "dialog_content/padding_2": T.PANEL - "dialog_content/content_area": T.PANEL - "dialog_content/padding_3": T.PANEL - selector_area: T.PANEL - "selector_area/scrolling_panel": T.PANEL - scrollable_selector_area_content: T.STACK_PANEL - "scrollable_selector_area_content/focus_reset_input_panel": T.INPUT_PANEL - "scrollable_selector_area_content/csb_toggle": T.STACK_PANEL - "scrollable_selector_area_content/content_toggle": T.STACK_PANEL - "scrollable_selector_area_content/faq_toggle": T.STACK_PANEL - "scrollable_selector_area_content/toggle_section_divider": T.STACK_PANEL - "scrollable_selector_area_content/buy_now_toggle": T.STACK_PANEL - "scrollable_selector_area_content/xbl_btn_panel": T.PANEL - "scrollable_selector_area_content/xbl_btn_panel/xbl_btn": T.BUTTON - section_toggle_base: T.PANEL - tab_button_text: T.LABEL - toggle_base: T.STACK_PANEL - "toggle_base/toggle": T.PANEL - "toggle_base/padding": T.PANEL - csb_toggle: T.STACK_PANEL - content_toggle: T.STACK_PANEL - faq_toggle: T.STACK_PANEL - buy_now_toggle: T.STACK_PANEL - left_right_pane_divider: T.IMAGE - content_area: T.PANEL - "content_area/control": T.STACK_PANEL - "content_area/control/scrolling_panel_csb": T.PANEL - section_content_panels: T.STACK_PANEL - vertical_padding_4px: T.PANEL - section_base: T.STACK_PANEL - buy_now_content_section: T.STACK_PANEL - "buy_now_content_section/vertical_padding": T.PANEL - "buy_now_content_section/content": T.STACK_PANEL - markdown_background_animated: T.PANEL - "markdown_background_animated/csb_chevron": T.IMAGE - markdown_background: T.STACK_PANEL - "markdown_background/banner_panel": T.PANEL - "markdown_background/banner_panel/banner": T.IMAGE - "markdown_background/banner_panel/banner/banner_stack_panel": T.STACK_PANEL - "markdown_background/banner_panel/banner/banner_stack_panel/0": T.UNKNOWN - "markdown_background/triangle_panel": T.PANEL - "markdown_background/triangle_panel/triangle": T.IMAGE - empty_label: T.PANEL - full_width_section_divider: T.STACK_PANEL + "csb_pdp_screen": T.SCREEN, + "csb_upgrade_notice_screen": T.SCREEN, + "csb_background": T.IMAGE, + "gradient_image_stack": T.STACK_PANEL, + "gradient_image_stack/gradient": T.IMAGE, + "gradient_content_panel": T.PANEL, + "gradient_content_panel/gradient": T.STACK_PANEL, + "gradient_content_panel/particles": T.IMAGE, + "gradient_content_panel/content_panel": T.UNKNOWN, + "csb_screen_main_panel": T.INPUT_PANEL, + "csb_main_panel": T.PANEL, + "csb_main_panel/root_panel": T.PANEL, + "csb_main_panel/root_panel/main_panel": T.STACK_PANEL, + "dialog_content": T.STACK_PANEL, + "dialog_content/selector_area": T.PANEL, + "dialog_content/padding_1": T.PANEL, + "dialog_content/allow_divider_offset_panel": T.PANEL, + "dialog_content/allow_divider_offset_panel/left_right_pane_divider": T.IMAGE, + "dialog_content/padding_2": T.PANEL, + "dialog_content/content_area": T.PANEL, + "dialog_content/padding_3": T.PANEL, + "selector_area": T.PANEL, + "selector_area/scrolling_panel": T.PANEL, + "scrollable_selector_area_content": T.STACK_PANEL, + "scrollable_selector_area_content/focus_reset_input_panel": T.INPUT_PANEL, + "scrollable_selector_area_content/csb_toggle": T.STACK_PANEL, + "scrollable_selector_area_content/content_toggle": T.STACK_PANEL, + "scrollable_selector_area_content/faq_toggle": T.STACK_PANEL, + "scrollable_selector_area_content/toggle_section_divider": T.STACK_PANEL, + "scrollable_selector_area_content/buy_now_toggle": T.STACK_PANEL, + "scrollable_selector_area_content/xbl_btn_panel": T.PANEL, + "scrollable_selector_area_content/xbl_btn_panel/xbl_btn": T.BUTTON, + "section_toggle_base": T.PANEL, + "tab_button_text": T.LABEL, + "toggle_base": T.STACK_PANEL, + "toggle_base/toggle": T.PANEL, + "toggle_base/padding": T.PANEL, + "csb_toggle": T.STACK_PANEL, + "content_toggle": T.STACK_PANEL, + "faq_toggle": T.STACK_PANEL, + "buy_now_toggle": T.STACK_PANEL, + "left_right_pane_divider": T.IMAGE, + "content_area": T.PANEL, + "content_area/control": T.STACK_PANEL, + "content_area/control/scrolling_panel_csb": T.PANEL, + "section_content_panels": T.STACK_PANEL, + "vertical_padding_4px": T.PANEL, + "section_base": T.STACK_PANEL, + "buy_now_content_section": T.STACK_PANEL, + "buy_now_content_section/vertical_padding": T.PANEL, + "buy_now_content_section/content": T.STACK_PANEL, + "markdown_background_animated": T.PANEL, + "markdown_background_animated/csb_chevron": T.IMAGE, + "markdown_background": T.STACK_PANEL, + "markdown_background/banner_panel": T.PANEL, + "markdown_background/banner_panel/banner": T.IMAGE, + "markdown_background/banner_panel/banner/banner_stack_panel": T.STACK_PANEL, + "markdown_background/banner_panel/banner/banner_stack_panel/0": T.UNKNOWN, + "markdown_background/triangle_panel": T.PANEL, + "markdown_background/triangle_panel/triangle": T.IMAGE, + "empty_label": T.PANEL, + "full_width_section_divider": T.STACK_PANEL, } export type CsbContentType = { - csb_content_section: T.STACK_PANEL - "csb_content_section/content_section_vertical_padding_1": T.PANEL - "csb_content_section/popular_packs_label_panel": T.PANEL - "csb_content_section/popular_packs_label_panel/label_with_gradient": T.PANEL - "csb_content_section/popular_packs_label_panel/tts_border": T.BUTTON - "csb_content_section/content_section_vertical_padding_2": T.PANEL - "csb_content_section/content_pack_types": T.STACK_PANEL - "csb_content_section/content_packs_included": T.STACK_PANEL - "csb_content_section/content_section_vertical_padding_3": T.PANEL - content_pack_types_section: T.STACK_PANEL - "content_pack_types_section/pack_types": T.STACK_PANEL - "content_pack_types_section/padding": T.PANEL - content_packs_included_section: T.STACK_PANEL - "content_packs_included_section/popular_packs": T.STACK_PANEL - "content_packs_included_section/section_divider": T.STACK_PANEL - pack_types: T.STACK_PANEL - "pack_types/padding_01": T.PANEL - "pack_types/pack_types_1": T.STACK_PANEL - "pack_types/padding_02": T.PANEL - "pack_types/pack_types_2": T.STACK_PANEL - "pack_types/padding_03": T.PANEL - pack_types_1: T.STACK_PANEL - "pack_types_1/worlds": T.STACK_PANEL - "pack_types_1/padding_01": T.PANEL - "pack_types_1/textures": T.STACK_PANEL - "pack_types_1/padding_02": T.PANEL - "pack_types_1/persona": T.STACK_PANEL - pack_types_2: T.STACK_PANEL - "pack_types_2/padding_1": T.PANEL - "pack_types_2/skins": T.STACK_PANEL - "pack_types_2/padding_2": T.PANEL - "pack_types_2/mashups": T.STACK_PANEL - "pack_types_2/padding_3": T.PANEL - pack_type_description: T.STACK_PANEL - "pack_type_description/image_nesting_panel": T.PANEL - "pack_type_description/image_nesting_panel/texture": T.UNKNOWN - "pack_type_description/padding_0": T.PANEL - "pack_type_description/description_nesting_panel": T.PANEL - "pack_type_description/description_nesting_panel/description_label": T.LABEL - "pack_type_description/description_nesting_panel/tts_border": T.BUTTON - "pack_type_description/padding_1": T.PANEL - popular_packs: T.STACK_PANEL - "popular_packs/padding_0": T.PANEL - "popular_packs/pack_grid": T.STACK_PANEL - "popular_packs/view_all_packs_panel": T.STACK_PANEL - "popular_packs/view_all_packs_panel/view_all_packs_button": T.BUTTON - "popular_packs/view_all_packs_panel/padding": T.PANEL - "popular_packs/view_all_packs_panel/view_character_creator_items": T.BUTTON - "popular_packs/padding_1": T.PANEL - popular_packs_label: T.LABEL - packs_collection: T.STACK_PANEL - "packs_collection/row_1": T.STACK_PANEL - "packs_collection/row_1/pack_image_grid_item_0": T.PANEL - "packs_collection/row_1/padding": T.PANEL - "packs_collection/row_1/pack_image_grid_item_1": T.PANEL - "packs_collection/padding_1": T.PANEL - "packs_collection/row_2": T.STACK_PANEL - "packs_collection/row_2/pack_image_grid_item_0": T.PANEL - "packs_collection/row_2/padding": T.PANEL - "packs_collection/row_2/pack_image_grid_item_1": T.PANEL - "packs_collection/padding_2": T.PANEL - pack_image_grid_item: T.PANEL - "pack_image_grid_item/bg": T.IMAGE - "pack_image_grid_item/bg/featured_key_art": T.IMAGE - "pack_image_grid_item/bg/progress_loading": T.PANEL - "pack_image_grid_item/offer_button": T.BUTTON - "pack_image_grid_item/offer_button/default": T.IMAGE - "pack_image_grid_item/offer_button/hover": T.IMAGE - "pack_image_grid_item/offer_button/pressed": T.IMAGE + "csb_content_section": T.STACK_PANEL, + "csb_content_section/content_section_vertical_padding_1": T.PANEL, + "csb_content_section/popular_packs_label_panel": T.PANEL, + "csb_content_section/popular_packs_label_panel/label_with_gradient": T.PANEL, + "csb_content_section/popular_packs_label_panel/tts_border": T.BUTTON, + "csb_content_section/content_section_vertical_padding_2": T.PANEL, + "csb_content_section/content_pack_types": T.STACK_PANEL, + "csb_content_section/content_packs_included": T.STACK_PANEL, + "csb_content_section/content_section_vertical_padding_3": T.PANEL, + "content_pack_types_section": T.STACK_PANEL, + "content_pack_types_section/pack_types": T.STACK_PANEL, + "content_pack_types_section/padding": T.PANEL, + "content_packs_included_section": T.STACK_PANEL, + "content_packs_included_section/popular_packs": T.STACK_PANEL, + "content_packs_included_section/section_divider": T.STACK_PANEL, + "pack_types": T.STACK_PANEL, + "pack_types/padding_01": T.PANEL, + "pack_types/pack_types_1": T.STACK_PANEL, + "pack_types/padding_02": T.PANEL, + "pack_types/pack_types_2": T.STACK_PANEL, + "pack_types/padding_03": T.PANEL, + "pack_types_1": T.STACK_PANEL, + "pack_types_1/worlds": T.STACK_PANEL, + "pack_types_1/padding_01": T.PANEL, + "pack_types_1/textures": T.STACK_PANEL, + "pack_types_1/padding_02": T.PANEL, + "pack_types_1/persona": T.STACK_PANEL, + "pack_types_2": T.STACK_PANEL, + "pack_types_2/padding_1": T.PANEL, + "pack_types_2/skins": T.STACK_PANEL, + "pack_types_2/padding_2": T.PANEL, + "pack_types_2/mashups": T.STACK_PANEL, + "pack_types_2/padding_3": T.PANEL, + "pack_type_description": T.STACK_PANEL, + "pack_type_description/image_nesting_panel": T.PANEL, + "pack_type_description/image_nesting_panel/texture": T.UNKNOWN, + "pack_type_description/padding_0": T.PANEL, + "pack_type_description/description_nesting_panel": T.PANEL, + "pack_type_description/description_nesting_panel/description_label": T.LABEL, + "pack_type_description/description_nesting_panel/tts_border": T.BUTTON, + "pack_type_description/padding_1": T.PANEL, + "popular_packs": T.STACK_PANEL, + "popular_packs/padding_0": T.PANEL, + "popular_packs/pack_grid": T.STACK_PANEL, + "popular_packs/view_all_packs_panel": T.STACK_PANEL, + "popular_packs/view_all_packs_panel/view_all_packs_button": T.BUTTON, + "popular_packs/view_all_packs_panel/padding": T.PANEL, + "popular_packs/view_all_packs_panel/view_character_creator_items": T.BUTTON, + "popular_packs/padding_1": T.PANEL, + "popular_packs_label": T.LABEL, + "packs_collection": T.STACK_PANEL, + "packs_collection/row_1": T.STACK_PANEL, + "packs_collection/row_1/pack_image_grid_item_0": T.PANEL, + "packs_collection/row_1/padding": T.PANEL, + "packs_collection/row_1/pack_image_grid_item_1": T.PANEL, + "packs_collection/padding_1": T.PANEL, + "packs_collection/row_2": T.STACK_PANEL, + "packs_collection/row_2/pack_image_grid_item_0": T.PANEL, + "packs_collection/row_2/padding": T.PANEL, + "packs_collection/row_2/pack_image_grid_item_1": T.PANEL, + "packs_collection/padding_2": T.PANEL, + "pack_image_grid_item": T.PANEL, + "pack_image_grid_item/bg": T.IMAGE, + "pack_image_grid_item/bg/featured_key_art": T.IMAGE, + "pack_image_grid_item/bg/progress_loading": T.PANEL, + "pack_image_grid_item/offer_button": T.BUTTON, + "pack_image_grid_item/offer_button/default": T.IMAGE, + "pack_image_grid_item/offer_button/hover": T.IMAGE, + "pack_image_grid_item/offer_button/pressed": T.IMAGE, } export type CsbBannerType = { - csb_banner: T.PANEL - "csb_banner/static_button": T.BUTTON - "csb_banner/animated_button": T.BUTTON - csb_banner_slim: T.PANEL - "csb_banner_slim/banner_button": T.BUTTON - csb_banner_portal: T.PANEL - "csb_banner_portal/banner_button": T.BUTTON - promo_banner_csb_button: T.BUTTON - "promo_banner_csb_button/default": T.UNKNOWN - "promo_banner_csb_button/hover": T.UNKNOWN - csb_banner_slim_content: T.PANEL - "csb_banner_slim_content/banner_content": T.PANEL - csb_banner_portal_content: T.PANEL - "csb_banner_portal_content/banner_content": T.PANEL - slim_logo_panel: T.PANEL - "slim_logo_panel/mpp_logo": T.IMAGE - portal_logo_panel: T.PANEL - "portal_logo_panel/mpp_logo": T.IMAGE - csb_banner_new_content: T.PANEL - "csb_banner_new_content/text": T.STACK_PANEL - "csb_banner_new_content/text/logo_panel": T.UNKNOWN - "csb_banner_new_content/text/offer_panel": T.PANEL - "csb_banner_new_content/text/offer_panel/upsell_text": T.STACK_PANEL - "csb_banner_new_content/text/pixel_art": T.STACK_PANEL - sdl_upsell_text_component_factory: T.STACK_PANEL - csb_banner_content: T.PANEL - "csb_banner_content/banner": T.IMAGE - "csb_banner_content/text": T.STACK_PANEL - "csb_banner_content/text/logo_panel": T.PANEL - "csb_banner_content/text/logo_panel/logo": T.STACK_PANEL - "csb_banner_content/text/offer_panel": T.PANEL - "csb_banner_content/text/offer_panel/offer": T.LABEL - "csb_banner_content/text/learn_more_panel": T.PANEL - "csb_banner_content/text/learn_more_panel/learn_more": T.STACK_PANEL - "csb_banner_content/text/learn_more_panel/learn_more/more": T.LABEL - "csb_banner_content/text/learn_more_panel/learn_more/more_chevron": T.LABEL - animated_promo_banner_csb_button: T.BUTTON - "animated_promo_banner_csb_button/default": T.PANEL - "animated_promo_banner_csb_button/hover": T.PANEL - animated_csb_banner_content: T.PANEL - "animated_csb_banner_content/banner": T.IMAGE - "animated_csb_banner_content/text": T.STACK_PANEL - "animated_csb_banner_content/text/logo_panel": T.PANEL - "animated_csb_banner_content/text/logo_panel/logo": T.STACK_PANEL - "animated_csb_banner_content/text/offer_panel": T.PANEL - "animated_csb_banner_content/text/offer_panel/offer": T.LABEL - "animated_csb_banner_content/text/learn_more_panel": T.PANEL - "animated_csb_banner_content/text/learn_more_panel/learn_more": T.STACK_PANEL - "animated_csb_banner_content/text/learn_more_panel/learn_more/more": T.LABEL - "animated_csb_banner_content/text/learn_more_panel/learn_more/more_chevron": T.LABEL - still_pixel_art_panel: T.PANEL - "still_pixel_art_panel/banner": T.IMAGE - animated_pixel_art_panel: T.PANEL - "animated_pixel_art_panel/mygif": T.CUSTOM - image_component_factory: T.STACK_PANEL - image_asset_factory: T.STACK_PANEL + "csb_banner": T.PANEL, + "csb_banner/static_button": T.BUTTON, + "csb_banner/animated_button": T.BUTTON, + "csb_banner_slim": T.PANEL, + "csb_banner_slim/banner_button": T.BUTTON, + "csb_banner_portal": T.PANEL, + "csb_banner_portal/banner_button": T.BUTTON, + "promo_banner_csb_button": T.BUTTON, + "promo_banner_csb_button/default": T.UNKNOWN, + "promo_banner_csb_button/hover": T.UNKNOWN, + "csb_banner_slim_content": T.PANEL, + "csb_banner_slim_content/banner_content": T.PANEL, + "csb_banner_portal_content": T.PANEL, + "csb_banner_portal_content/banner_content": T.PANEL, + "slim_logo_panel": T.PANEL, + "slim_logo_panel/mpp_logo": T.IMAGE, + "portal_logo_panel": T.PANEL, + "portal_logo_panel/mpp_logo": T.IMAGE, + "csb_banner_new_content": T.PANEL, + "csb_banner_new_content/text": T.STACK_PANEL, + "csb_banner_new_content/text/logo_panel": T.UNKNOWN, + "csb_banner_new_content/text/offer_panel": T.PANEL, + "csb_banner_new_content/text/offer_panel/upsell_text": T.STACK_PANEL, + "csb_banner_new_content/text/pixel_art": T.STACK_PANEL, + "sdl_upsell_text_component_factory": T.STACK_PANEL, + "csb_banner_content": T.PANEL, + "csb_banner_content/banner": T.IMAGE, + "csb_banner_content/text": T.STACK_PANEL, + "csb_banner_content/text/logo_panel": T.PANEL, + "csb_banner_content/text/logo_panel/logo": T.STACK_PANEL, + "csb_banner_content/text/offer_panel": T.PANEL, + "csb_banner_content/text/offer_panel/offer": T.LABEL, + "csb_banner_content/text/learn_more_panel": T.PANEL, + "csb_banner_content/text/learn_more_panel/learn_more": T.STACK_PANEL, + "csb_banner_content/text/learn_more_panel/learn_more/more": T.LABEL, + "csb_banner_content/text/learn_more_panel/learn_more/more_chevron": T.LABEL, + "animated_promo_banner_csb_button": T.BUTTON, + "animated_promo_banner_csb_button/default": T.PANEL, + "animated_promo_banner_csb_button/hover": T.PANEL, + "animated_csb_banner_content": T.PANEL, + "animated_csb_banner_content/banner": T.IMAGE, + "animated_csb_banner_content/text": T.STACK_PANEL, + "animated_csb_banner_content/text/logo_panel": T.PANEL, + "animated_csb_banner_content/text/logo_panel/logo": T.STACK_PANEL, + "animated_csb_banner_content/text/offer_panel": T.PANEL, + "animated_csb_banner_content/text/offer_panel/offer": T.LABEL, + "animated_csb_banner_content/text/learn_more_panel": T.PANEL, + "animated_csb_banner_content/text/learn_more_panel/learn_more": T.STACK_PANEL, + "animated_csb_banner_content/text/learn_more_panel/learn_more/more": T.LABEL, + "animated_csb_banner_content/text/learn_more_panel/learn_more/more_chevron": T.LABEL, + "still_pixel_art_panel": T.PANEL, + "still_pixel_art_panel/banner": T.IMAGE, + "animated_pixel_art_panel": T.PANEL, + "animated_pixel_art_panel/mygif": T.CUSTOM, + "image_component_factory": T.STACK_PANEL, + "image_asset_factory": T.STACK_PANEL, } export type CsbBuyType = { - buy_now_content: T.STACK_PANEL - "buy_now_content/description_stack": T.STACK_PANEL - "buy_now_content/terms_and_conditions": T.PANEL - "buy_now_content/padding_2": T.PANEL - "buy_now_content/button_panel": T.PANEL - "buy_now_content/button_panel/buy_button": T.PANEL - "buy_now_content/button_panel/icon_panel": T.PANEL - "buy_now_content/padding_3": T.PANEL - "buy_now_content/terms": T.STACK_PANEL - content_text_section: T.STACK_PANEL - "content_text_section/text_description": T.PANEL - "content_text_section/padding": T.PANEL - content_description: T.PANEL - "content_description/content_description_label": T.LABEL - "content_description/tts_hover": T.BUTTON - trial_image_and_description: T.STACK_PANEL - "trial_image_and_description/image_border": T.IMAGE - "trial_image_and_description/padding": T.PANEL - "trial_image_and_description/description_text": T.PANEL - "trial_image_and_description/description_text/descriptions_label": T.LABEL - "trial_image_and_description/description_text/tts_hover": T.BUTTON - title_text: T.PANEL - "title_text/inner_text": T.LABEL - "title_text/tts_hover": T.BUTTON - description_stack: T.STACK_PANEL - "description_stack/title_with_gradient": T.PANEL - "description_stack/padding": T.PANEL - "description_stack/image_and_description": T.STACK_PANEL - terms_and_conditions: T.PANEL - "terms_and_conditions/terms_panel": T.PANEL - terms_and_conditions_panel: T.PANEL - "terms_and_conditions_panel/name_label": T.LABEL - "terms_and_conditions_panel/terms_string_panel": T.PANEL - "terms_and_conditions_panel/terms_string_panel/banner_fill": T.IMAGE - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": T.STACK_PANEL - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": T.PANEL - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": T.TOGGLE - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": T.BUTTON - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": T.BUTTON - button_text: T.LABEL - mcten_text_centering_panel: T.PANEL - "mcten_text_centering_panel/button_text": T.LABEL - view_terms_button: T.BUTTON - privacy_policy_button: T.BUTTON - buy_button_panel: T.PANEL - "buy_button_panel/buy_button": T.BUTTON - tool_tip_icon_panel: T.PANEL - "tool_tip_icon_panel/issue_icon": T.BUTTON - "tool_tip_icon_panel/issue_icon/info_icon": T.IMAGE - "tool_tip_icon_panel/issue_icon/default": T.PANEL - "tool_tip_icon_panel/issue_icon/hover": T.IMAGE - "tool_tip_icon_panel/issue_icon/pressed": T.IMAGE - buy_button_content: T.STACK_PANEL - "buy_button_content/button_chevron_panel": T.PANEL - "buy_button_content/button_chevron_panel/buy_button_chevron": T.PANEL - "buy_button_content/button_text_centering_panel": T.PANEL - info_icon: T.PANEL - "info_icon/panel_icon": T.IMAGE + "buy_now_content": T.STACK_PANEL, + "buy_now_content/description_stack": T.STACK_PANEL, + "buy_now_content/terms_and_conditions": T.PANEL, + "buy_now_content/padding_2": T.PANEL, + "buy_now_content/button_panel": T.PANEL, + "buy_now_content/button_panel/buy_button": T.PANEL, + "buy_now_content/button_panel/icon_panel": T.PANEL, + "buy_now_content/padding_3": T.PANEL, + "buy_now_content/terms": T.STACK_PANEL, + "content_text_section": T.STACK_PANEL, + "content_text_section/text_description": T.PANEL, + "content_text_section/padding": T.PANEL, + "content_description": T.PANEL, + "content_description/content_description_label": T.LABEL, + "content_description/tts_hover": T.BUTTON, + "trial_image_and_description": T.STACK_PANEL, + "trial_image_and_description/image_border": T.IMAGE, + "trial_image_and_description/padding": T.PANEL, + "trial_image_and_description/description_text": T.PANEL, + "trial_image_and_description/description_text/descriptions_label": T.LABEL, + "trial_image_and_description/description_text/tts_hover": T.BUTTON, + "title_text": T.PANEL, + "title_text/inner_text": T.LABEL, + "title_text/tts_hover": T.BUTTON, + "description_stack": T.STACK_PANEL, + "description_stack/title_with_gradient": T.PANEL, + "description_stack/padding": T.PANEL, + "description_stack/image_and_description": T.STACK_PANEL, + "terms_and_conditions": T.PANEL, + "terms_and_conditions/terms_panel": T.PANEL, + "terms_and_conditions_panel": T.PANEL, + "terms_and_conditions_panel/name_label": T.LABEL, + "terms_and_conditions_panel/terms_string_panel": T.PANEL, + "terms_and_conditions_panel/terms_string_panel/banner_fill": T.IMAGE, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": T.STACK_PANEL, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": T.PANEL, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": T.TOGGLE, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": T.BUTTON, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": T.BUTTON, + "button_text": T.LABEL, + "mcten_text_centering_panel": T.PANEL, + "mcten_text_centering_panel/button_text": T.LABEL, + "view_terms_button": T.BUTTON, + "privacy_policy_button": T.BUTTON, + "buy_button_panel": T.PANEL, + "buy_button_panel/buy_button": T.BUTTON, + "tool_tip_icon_panel": T.PANEL, + "tool_tip_icon_panel/issue_icon": T.BUTTON, + "tool_tip_icon_panel/issue_icon/info_icon": T.IMAGE, + "tool_tip_icon_panel/issue_icon/default": T.PANEL, + "tool_tip_icon_panel/issue_icon/hover": T.IMAGE, + "tool_tip_icon_panel/issue_icon/pressed": T.IMAGE, + "buy_button_content": T.STACK_PANEL, + "buy_button_content/button_chevron_panel": T.PANEL, + "buy_button_content/button_chevron_panel/buy_button_chevron": T.PANEL, + "buy_button_content/button_text_centering_panel": T.PANEL, + "info_icon": T.PANEL, + "info_icon/panel_icon": T.IMAGE, } export type CommonCsbType = { - csb_expiration_banner: T.PANEL - "csb_expiration_banner/background": T.IMAGE - "csb_expiration_banner/icon": T.IMAGE - "csb_expiration_banner/text": T.LABEL - csb_icon_large: T.IMAGE - csb_header: T.STACK_PANEL - "csb_header/label_a_text_csb": T.LABEL - "csb_header/label_space_text_csb": T.LABEL - "csb_header/label_b_text_pass": T.LABEL - csb_header_two_lines: T.STACK_PANEL - "csb_header_two_lines/top_header": T.LABEL - "csb_header_two_lines/panel_centre_second_line": T.PANEL - "csb_header_two_lines/panel_centre_second_line/sub_header": T.LABEL - csb_gold_button: T.BUTTON - csb_gold_text_button: T.BUTTON + "csb_expiration_banner": T.PANEL, + "csb_expiration_banner/background": T.IMAGE, + "csb_expiration_banner/icon": T.IMAGE, + "csb_expiration_banner/text": T.LABEL, + "csb_icon_large": T.IMAGE, + "csb_header": T.STACK_PANEL, + "csb_header/label_a_text_csb": T.LABEL, + "csb_header/label_space_text_csb": T.LABEL, + "csb_header/label_b_text_pass": T.LABEL, + "csb_header_two_lines": T.STACK_PANEL, + "csb_header_two_lines/top_header": T.LABEL, + "csb_header_two_lines/panel_centre_second_line": T.PANEL, + "csb_header_two_lines/panel_centre_second_line/sub_header": T.LABEL, + "csb_gold_button": T.BUTTON, + "csb_gold_text_button": T.BUTTON, } export type CsbPurchaseAmazondevicewarningType = { - csb_purchase_amazondevicewarning_screen: T.SCREEN - screen_content: T.PANEL - "screen_content/main_panel": T.PANEL - main_panel: T.STACK_PANEL - "main_panel/text_panel_1": T.PANEL - "main_panel/text_panel_1/text": T.LABEL - "main_panel/art_panel": T.PANEL - "main_panel/art_panel/art": T.IMAGE - "main_panel/padding": T.PANEL - "main_panel/text_panel_2": T.PANEL - "main_panel/text_panel_2/text": T.LABEL - back_button: T.BUTTON + "csb_purchase_amazondevicewarning_screen": T.SCREEN, + "screen_content": T.PANEL, + "screen_content/main_panel": T.PANEL, + "main_panel": T.STACK_PANEL, + "main_panel/text_panel_1": T.PANEL, + "main_panel/text_panel_1/text": T.LABEL, + "main_panel/art_panel": T.PANEL, + "main_panel/art_panel/art": T.IMAGE, + "main_panel/padding": T.PANEL, + "main_panel/text_panel_2": T.PANEL, + "main_panel/text_panel_2/text": T.LABEL, + "back_button": T.BUTTON, } export type CsbPurchaseWarningType = { - csb_purchase_warning_screen: T.SCREEN - purchase_warning_screen_content: T.PANEL - "purchase_warning_screen_content/main_panel": T.PANEL - warning_modal_main_panel: T.STACK_PANEL - "warning_modal_main_panel/text_panel_1": T.PANEL - "warning_modal_main_panel/text_panel_1/text": T.LABEL - "warning_modal_main_panel/padding_1": T.PANEL - "warning_modal_main_panel/art_panel": T.PANEL - "warning_modal_main_panel/art_panel/art": T.IMAGE - "warning_modal_main_panel/padding_2": T.PANEL - "warning_modal_main_panel/text_panel_2": T.PANEL - "warning_modal_main_panel/text_panel_2/text": T.LABEL - warning_modal_back_button: T.BUTTON + "csb_purchase_warning_screen": T.SCREEN, + "purchase_warning_screen_content": T.PANEL, + "purchase_warning_screen_content/main_panel": T.PANEL, + "warning_modal_main_panel": T.STACK_PANEL, + "warning_modal_main_panel/text_panel_1": T.PANEL, + "warning_modal_main_panel/text_panel_1/text": T.LABEL, + "warning_modal_main_panel/padding_1": T.PANEL, + "warning_modal_main_panel/art_panel": T.PANEL, + "warning_modal_main_panel/art_panel/art": T.IMAGE, + "warning_modal_main_panel/padding_2": T.PANEL, + "warning_modal_main_panel/text_panel_2": T.PANEL, + "warning_modal_main_panel/text_panel_2/text": T.LABEL, + "warning_modal_back_button": T.BUTTON, } export type CsbSubscriptionPanelType = { - csb_container: T.PANEL - "csb_container/fill": T.IMAGE - "csb_container/border": T.IMAGE - "csb_container/panel_contents": T.STACK_PANEL - "csb_container/panel_contents/content_container": T.STACK_PANEL - "csb_container/panel_contents/content_container/side_image_stack_left": T.PANEL - "csb_container/panel_contents/content_container/side_image_stack_left/csb_image": T.IMAGE - "csb_container/panel_contents/content_container/padding_02": T.PANEL - "csb_container/panel_contents/content_container/side_stack_right": T.STACK_PANEL - "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack": T.STACK_PANEL - "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/panel_label": T.LABEL - "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding_01": T.PANEL - "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_01_container": T.STACK_PANEL - "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_02_container": T.STACK_PANEL - "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_03_container": T.STACK_PANEL - "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding02": T.PANEL - "csb_container/panel_contents/button_panel_spacer": T.PANEL - "csb_container/panel_contents/csb_buttons": T.STACK_PANEL - "csb_container/panel_contents/csb_buttons/button_panel_padding": T.PANEL - "csb_container/panel_contents/csb_buttons/padding_01": T.PANEL - "csb_container/panel_contents/csb_buttons/csb_info_button": T.BUTTON - csb_marketplace_benefit: T.STACK_PANEL - "csb_marketplace_benefit/bullet_holder_01": T.STACK_PANEL - "csb_marketplace_benefit/bullet_holder_01/bullet_spacer": T.PANEL - "csb_marketplace_benefit/bullet_holder_01/bullet_01": T.LABEL - "csb_marketplace_benefit/panel_details_ln1": T.LABEL - csb_buy_container: T.PANEL - "csb_buy_container/csb_buy_button": T.BUTTON - csb_buy_button_text: T.LABEL - csb_cancel_button: T.BUTTON + "csb_container": T.PANEL, + "csb_container/fill": T.IMAGE, + "csb_container/border": T.IMAGE, + "csb_container/panel_contents": T.STACK_PANEL, + "csb_container/panel_contents/content_container": T.STACK_PANEL, + "csb_container/panel_contents/content_container/side_image_stack_left": T.PANEL, + "csb_container/panel_contents/content_container/side_image_stack_left/csb_image": T.IMAGE, + "csb_container/panel_contents/content_container/padding_02": T.PANEL, + "csb_container/panel_contents/content_container/side_stack_right": T.STACK_PANEL, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack": T.STACK_PANEL, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/panel_label": T.LABEL, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding_01": T.PANEL, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_01_container": T.STACK_PANEL, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_02_container": T.STACK_PANEL, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_03_container": T.STACK_PANEL, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding02": T.PANEL, + "csb_container/panel_contents/button_panel_spacer": T.PANEL, + "csb_container/panel_contents/csb_buttons": T.STACK_PANEL, + "csb_container/panel_contents/csb_buttons/button_panel_padding": T.PANEL, + "csb_container/panel_contents/csb_buttons/padding_01": T.PANEL, + "csb_container/panel_contents/csb_buttons/csb_info_button": T.BUTTON, + "csb_marketplace_benefit": T.STACK_PANEL, + "csb_marketplace_benefit/bullet_holder_01": T.STACK_PANEL, + "csb_marketplace_benefit/bullet_holder_01/bullet_spacer": T.PANEL, + "csb_marketplace_benefit/bullet_holder_01/bullet_01": T.LABEL, + "csb_marketplace_benefit/panel_details_ln1": T.LABEL, + "csb_buy_container": T.PANEL, + "csb_buy_container/csb_buy_button": T.BUTTON, + "csb_buy_button_text": T.LABEL, + "csb_cancel_button": T.BUTTON, } export type CsbUpsellType = { - csb_upsell_screen: T.SCREEN - csb_upsell_compare_dialog: T.PANEL - "csb_upsell_compare_dialog/csb_upsell_compare_main_screen": T.PANEL - csb_upsell_popup_content: T.PANEL - "csb_upsell_popup_content/two_side_panels": T.STACK_PANEL - "csb_upsell_popup_content/two_side_panels/border_panel_left": T.PANEL - "csb_upsell_popup_content/two_side_panels/border_panel_left/border": T.IMAGE - "csb_upsell_popup_content/two_side_panels/border_panel_left/background_panel": T.IMAGE - "csb_upsell_popup_content/two_side_panels/border_panel_left/left_side_panel": T.STACK_PANEL - "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering": T.PANEL - "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering/learn_more_left": T.BUTTON - "csb_upsell_popup_content/two_side_panels/middle_spacer": T.PANEL - "csb_upsell_popup_content/two_side_panels/border_panel_right": T.PANEL - "csb_upsell_popup_content/two_side_panels/border_panel_right/border": T.IMAGE - "csb_upsell_popup_content/two_side_panels/border_panel_right/background_panel": T.IMAGE - "csb_upsell_popup_content/two_side_panels/border_panel_right/right_side_panel": T.STACK_PANEL - "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering": T.PANEL - "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering/learn_more_right": T.BUTTON - csb_upsell_left_side_panel: T.STACK_PANEL - "csb_upsell_left_side_panel/upper_half": T.STACK_PANEL - "csb_upsell_left_side_panel/upper_half/header_panel": T.STACK_PANEL - "csb_upsell_left_side_panel/upper_half/header_panel/blank_space": T.PANEL - "csb_upsell_left_side_panel/upper_half/header_panel/top_header": T.STACK_PANEL - "csb_upsell_left_side_panel/upper_half/header_panel/price_amount": T.PANEL - "csb_upsell_left_side_panel/middle_spacer": T.PANEL - "csb_upsell_left_side_panel/bottom_half": T.STACK_PANEL - "csb_upsell_left_side_panel/bottom_half/padding_b": T.PANEL - "csb_upsell_left_side_panel/bottom_half/bullet_one": T.STACK_PANEL - "csb_upsell_left_side_panel/bottom_half/padding_0": T.PANEL - "csb_upsell_left_side_panel/bottom_half/bullet_two": T.STACK_PANEL - "csb_upsell_left_side_panel/bottom_half/padding_1": T.PANEL - "csb_upsell_left_side_panel/bottom_half/bullet_three": T.STACK_PANEL - csb_upsell_right_side_panel: T.STACK_PANEL - "csb_upsell_right_side_panel/upper_half": T.STACK_PANEL - "csb_upsell_right_side_panel/upper_half/marketing_banner": T.PANEL - "csb_upsell_right_side_panel/upper_half/marketing_banner/background_color": T.IMAGE - "csb_upsell_right_side_panel/upper_half/marketing_banner/marketing_banner_label": T.LABEL - "csb_upsell_right_side_panel/upper_half/header_panel": T.STACK_PANEL - "csb_upsell_right_side_panel/upper_half/header_panel/top_header": T.LABEL - "csb_upsell_right_side_panel/upper_half/header_panel/price_amount": T.PANEL - "csb_upsell_right_side_panel/middle_spacer": T.PANEL - "csb_upsell_right_side_panel/bottom_half": T.STACK_PANEL - "csb_upsell_right_side_panel/bottom_half/padding_b": T.PANEL - "csb_upsell_right_side_panel/bottom_half/bullet_one": T.STACK_PANEL - "csb_upsell_right_side_panel/bottom_half/padding_1": T.PANEL - "csb_upsell_right_side_panel/bottom_half/bullet_two": T.STACK_PANEL - "csb_upsell_right_side_panel/bottom_half/padding_0": T.PANEL - "csb_upsell_right_side_panel/bottom_half/bullet_three": T.STACK_PANEL - csb_big_padding: T.PANEL - csb_bullet_padding: T.PANEL - "csb_bullet_padding/desktop": T.PANEL - "csb_bullet_padding/pocket": T.PANEL - csb_bullet_desktop_padding: T.PANEL - csb_bullet_pocket_padding: T.PANEL - csb_bullet: T.STACK_PANEL - "csb_bullet/padding_icon_left": T.PANEL - "csb_bullet/padding_icon_vertical": T.STACK_PANEL - "csb_bullet/padding_icon_vertical/padding_vertical": T.PANEL - "csb_bullet/padding_icon_vertical/label_icon": T.IMAGE - "csb_bullet/padding_icon_right": T.PANEL - csb_bullet_point: T.STACK_PANEL - "csb_bullet_point/bullet_icon": T.STACK_PANEL - "csb_bullet_point/label_text": T.LABEL - csb_bullet_split_point: T.STACK_PANEL - "csb_bullet_split_point/bullet_icon": T.STACK_PANEL - "csb_bullet_split_point/label_text": T.LABEL - "csb_bullet_split_point/space": T.PANEL - "csb_bullet_split_point/space/label_text_csb": T.LABEL - "csb_bullet_split_point/csb_name": T.PANEL - "csb_bullet_split_point/csb_name/csb_name_string": T.STACK_PANEL - csb_price: T.PANEL - "csb_price/price_details": T.STACK_PANEL - csb_price_details: T.STACK_PANEL - "csb_price_details/price_panel_1": T.PANEL - "csb_price_details/price_panel_1/amount": T.LABEL - "csb_price_details/price_panel_first_period": T.PANEL - "csb_price_details/price_panel_first_period/second_line": T.LABEL - csb_learn_more: T.PANEL - "csb_learn_more/learn_more": T.LABEL + "csb_upsell_screen": T.SCREEN, + "csb_upsell_compare_dialog": T.PANEL, + "csb_upsell_compare_dialog/csb_upsell_compare_main_screen": T.PANEL, + "csb_upsell_popup_content": T.PANEL, + "csb_upsell_popup_content/two_side_panels": T.STACK_PANEL, + "csb_upsell_popup_content/two_side_panels/border_panel_left": T.PANEL, + "csb_upsell_popup_content/two_side_panels/border_panel_left/border": T.IMAGE, + "csb_upsell_popup_content/two_side_panels/border_panel_left/background_panel": T.IMAGE, + "csb_upsell_popup_content/two_side_panels/border_panel_left/left_side_panel": T.STACK_PANEL, + "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering": T.PANEL, + "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering/learn_more_left": T.BUTTON, + "csb_upsell_popup_content/two_side_panels/middle_spacer": T.PANEL, + "csb_upsell_popup_content/two_side_panels/border_panel_right": T.PANEL, + "csb_upsell_popup_content/two_side_panels/border_panel_right/border": T.IMAGE, + "csb_upsell_popup_content/two_side_panels/border_panel_right/background_panel": T.IMAGE, + "csb_upsell_popup_content/two_side_panels/border_panel_right/right_side_panel": T.STACK_PANEL, + "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering": T.PANEL, + "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering/learn_more_right": T.BUTTON, + "csb_upsell_left_side_panel": T.STACK_PANEL, + "csb_upsell_left_side_panel/upper_half": T.STACK_PANEL, + "csb_upsell_left_side_panel/upper_half/header_panel": T.STACK_PANEL, + "csb_upsell_left_side_panel/upper_half/header_panel/blank_space": T.PANEL, + "csb_upsell_left_side_panel/upper_half/header_panel/top_header": T.STACK_PANEL, + "csb_upsell_left_side_panel/upper_half/header_panel/price_amount": T.PANEL, + "csb_upsell_left_side_panel/middle_spacer": T.PANEL, + "csb_upsell_left_side_panel/bottom_half": T.STACK_PANEL, + "csb_upsell_left_side_panel/bottom_half/padding_b": T.PANEL, + "csb_upsell_left_side_panel/bottom_half/bullet_one": T.STACK_PANEL, + "csb_upsell_left_side_panel/bottom_half/padding_0": T.PANEL, + "csb_upsell_left_side_panel/bottom_half/bullet_two": T.STACK_PANEL, + "csb_upsell_left_side_panel/bottom_half/padding_1": T.PANEL, + "csb_upsell_left_side_panel/bottom_half/bullet_three": T.STACK_PANEL, + "csb_upsell_right_side_panel": T.STACK_PANEL, + "csb_upsell_right_side_panel/upper_half": T.STACK_PANEL, + "csb_upsell_right_side_panel/upper_half/marketing_banner": T.PANEL, + "csb_upsell_right_side_panel/upper_half/marketing_banner/background_color": T.IMAGE, + "csb_upsell_right_side_panel/upper_half/marketing_banner/marketing_banner_label": T.LABEL, + "csb_upsell_right_side_panel/upper_half/header_panel": T.STACK_PANEL, + "csb_upsell_right_side_panel/upper_half/header_panel/top_header": T.LABEL, + "csb_upsell_right_side_panel/upper_half/header_panel/price_amount": T.PANEL, + "csb_upsell_right_side_panel/middle_spacer": T.PANEL, + "csb_upsell_right_side_panel/bottom_half": T.STACK_PANEL, + "csb_upsell_right_side_panel/bottom_half/padding_b": T.PANEL, + "csb_upsell_right_side_panel/bottom_half/bullet_one": T.STACK_PANEL, + "csb_upsell_right_side_panel/bottom_half/padding_1": T.PANEL, + "csb_upsell_right_side_panel/bottom_half/bullet_two": T.STACK_PANEL, + "csb_upsell_right_side_panel/bottom_half/padding_0": T.PANEL, + "csb_upsell_right_side_panel/bottom_half/bullet_three": T.STACK_PANEL, + "csb_big_padding": T.PANEL, + "csb_bullet_padding": T.PANEL, + "csb_bullet_padding/desktop": T.PANEL, + "csb_bullet_padding/pocket": T.PANEL, + "csb_bullet_desktop_padding": T.PANEL, + "csb_bullet_pocket_padding": T.PANEL, + "csb_bullet": T.STACK_PANEL, + "csb_bullet/padding_icon_left": T.PANEL, + "csb_bullet/padding_icon_vertical": T.STACK_PANEL, + "csb_bullet/padding_icon_vertical/padding_vertical": T.PANEL, + "csb_bullet/padding_icon_vertical/label_icon": T.IMAGE, + "csb_bullet/padding_icon_right": T.PANEL, + "csb_bullet_point": T.STACK_PANEL, + "csb_bullet_point/bullet_icon": T.STACK_PANEL, + "csb_bullet_point/label_text": T.LABEL, + "csb_bullet_split_point": T.STACK_PANEL, + "csb_bullet_split_point/bullet_icon": T.STACK_PANEL, + "csb_bullet_split_point/label_text": T.LABEL, + "csb_bullet_split_point/space": T.PANEL, + "csb_bullet_split_point/space/label_text_csb": T.LABEL, + "csb_bullet_split_point/csb_name": T.PANEL, + "csb_bullet_split_point/csb_name/csb_name_string": T.STACK_PANEL, + "csb_price": T.PANEL, + "csb_price/price_details": T.STACK_PANEL, + "csb_price_details": T.STACK_PANEL, + "csb_price_details/price_panel_1": T.PANEL, + "csb_price_details/price_panel_1/amount": T.LABEL, + "csb_price_details/price_panel_first_period": T.PANEL, + "csb_price_details/price_panel_first_period/second_line": T.LABEL, + "csb_learn_more": T.PANEL, + "csb_learn_more/learn_more": T.LABEL, } export type CsbPacksType = { - view_all_packs_screen: T.SCREEN - view_packs_screen_content: T.PANEL - "view_packs_screen_content/main_panel": T.STACK_PANEL - csb_view_packs_screen_main_panel: T.INPUT_PANEL - main_panel: T.INPUT_PANEL - "main_panel/offers": T.PANEL - "main_panel/progress_loading": T.PANEL - scrolling_content_stack: T.STACK_PANEL - "scrolling_content_stack/padding_0": T.PANEL - "scrolling_content_stack/store_factory": T.STACK_PANEL + "view_all_packs_screen": T.SCREEN, + "view_packs_screen_content": T.PANEL, + "view_packs_screen_content/main_panel": T.STACK_PANEL, + "csb_view_packs_screen_main_panel": T.INPUT_PANEL, + "main_panel": T.INPUT_PANEL, + "main_panel/offers": T.PANEL, + "main_panel/progress_loading": T.PANEL, + "scrolling_content_stack": T.STACK_PANEL, + "scrolling_content_stack/padding_0": T.PANEL, + "scrolling_content_stack/store_factory": T.STACK_PANEL, } export type CsbWelcomeType = { - csb_welcome_screen: T.SCREEN - welcome_screen_content: T.PANEL - "welcome_screen_content/main_panel": T.PANEL - welcome_modal_main_panel: T.STACK_PANEL - "welcome_modal_main_panel/art_panel": T.PANEL - "welcome_modal_main_panel/art_panel/art": T.IMAGE - "welcome_modal_main_panel/padding": T.PANEL - "welcome_modal_main_panel/text_panel": T.PANEL - "welcome_modal_main_panel/text_panel/text": T.LABEL - welcome_modal_continue_button: T.BUTTON + "csb_welcome_screen": T.SCREEN, + "welcome_screen_content": T.PANEL, + "welcome_screen_content/main_panel": T.PANEL, + "welcome_modal_main_panel": T.STACK_PANEL, + "welcome_modal_main_panel/art_panel": T.PANEL, + "welcome_modal_main_panel/art_panel/art": T.IMAGE, + "welcome_modal_main_panel/padding": T.PANEL, + "welcome_modal_main_panel/text_panel": T.PANEL, + "welcome_modal_main_panel/text_panel/text": T.LABEL, + "welcome_modal_continue_button": T.BUTTON, } export type CsbFaqType = { - faq_bottom_button: T.BUTTON - faq_image_section: T.PANEL - "faq_image_section/faq_image": T.IMAGE - faq_text_section_body: T.STACK_PANEL - faq_text_question: T.LABEL - faq_text_section: T.STACK_PANEL - "faq_text_section/faq_text_question": T.LABEL - "faq_text_section/faq_text_answer": T.LABEL - faq_price_bound_text_section: T.STACK_PANEL - "faq_price_bound_text_section/faq_text_question": T.LABEL - "faq_price_bound_text_section/faq_text_answer": T.LABEL - faq_question_body: T.STACK_PANEL - "faq_question_body/0": T.UNKNOWN - faq_question_body_stack: T.STACK_PANEL - faq_question_body_horz_padding: T.PANEL - image_left_faq_question_body: T.BUTTON - image_right_faq_question_body: T.BUTTON - image_left_faq_price_bound: T.BUTTON - image_right_faq_price_bound: T.BUTTON - faq_section_header_space: T.PANEL - faq_section_divider: T.STACK_PANEL - faq_content_section: T.STACK_PANEL - "faq_content_section/faq_section_vertical_padding_1": T.PANEL - "faq_content_section/faq_header": T.LABEL - "faq_content_section/faq_section_vertical_padding_2": T.PANEL - "faq_content_section/faq_question_1": T.BUTTON - "faq_content_section/faq_question_1_divider": T.STACK_PANEL - "faq_content_section/faq_question_2": T.BUTTON - "faq_content_section/faq_question_2_divider": T.STACK_PANEL - "faq_content_section/faq_question_3": T.BUTTON - "faq_content_section/faq_question_3_divider": T.STACK_PANEL - "faq_content_section/faq_question_4": T.BUTTON - "faq_content_section/faq_question_4_divider": T.STACK_PANEL - "faq_content_section/faq_question_5": T.BUTTON - "faq_content_section/faq_question_5_divider": T.STACK_PANEL - "faq_content_section/faq_question_6": T.BUTTON - "faq_content_section/faq_question_6_divider": T.STACK_PANEL - "faq_content_section/faq_question_7": T.BUTTON - "faq_content_section/faq_question_7_divider": T.STACK_PANEL - "faq_content_section/faq_question_8": T.BUTTON - "faq_content_section/faq_question_8_divider": T.STACK_PANEL - "faq_content_section/faq_question_9": T.BUTTON - "faq_content_section/faq_question_9_divider": T.STACK_PANEL - "faq_content_section/faq_question_10": T.BUTTON - "faq_content_section/faq_question_10_divider": T.STACK_PANEL - "faq_content_section/faq_button": T.BUTTON - "faq_content_section/faq_bottom_padding": T.PANEL - "faq_content_section/faq_bottom_padding/bottom_left_particles": T.IMAGE + "faq_bottom_button": T.BUTTON, + "faq_image_section": T.PANEL, + "faq_image_section/faq_image": T.IMAGE, + "faq_text_section_body": T.STACK_PANEL, + "faq_text_question": T.LABEL, + "faq_text_section": T.STACK_PANEL, + "faq_text_section/faq_text_question": T.LABEL, + "faq_text_section/faq_text_answer": T.LABEL, + "faq_price_bound_text_section": T.STACK_PANEL, + "faq_price_bound_text_section/faq_text_question": T.LABEL, + "faq_price_bound_text_section/faq_text_answer": T.LABEL, + "faq_question_body": T.STACK_PANEL, + "faq_question_body/0": T.UNKNOWN, + "faq_question_body_stack": T.STACK_PANEL, + "faq_question_body_horz_padding": T.PANEL, + "image_left_faq_question_body": T.BUTTON, + "image_right_faq_question_body": T.BUTTON, + "image_left_faq_price_bound": T.BUTTON, + "image_right_faq_price_bound": T.BUTTON, + "faq_section_header_space": T.PANEL, + "faq_section_divider": T.STACK_PANEL, + "faq_content_section": T.STACK_PANEL, + "faq_content_section/faq_section_vertical_padding_1": T.PANEL, + "faq_content_section/faq_header": T.LABEL, + "faq_content_section/faq_section_vertical_padding_2": T.PANEL, + "faq_content_section/faq_question_1": T.BUTTON, + "faq_content_section/faq_question_1_divider": T.STACK_PANEL, + "faq_content_section/faq_question_2": T.BUTTON, + "faq_content_section/faq_question_2_divider": T.STACK_PANEL, + "faq_content_section/faq_question_3": T.BUTTON, + "faq_content_section/faq_question_3_divider": T.STACK_PANEL, + "faq_content_section/faq_question_4": T.BUTTON, + "faq_content_section/faq_question_4_divider": T.STACK_PANEL, + "faq_content_section/faq_question_5": T.BUTTON, + "faq_content_section/faq_question_5_divider": T.STACK_PANEL, + "faq_content_section/faq_question_6": T.BUTTON, + "faq_content_section/faq_question_6_divider": T.STACK_PANEL, + "faq_content_section/faq_question_7": T.BUTTON, + "faq_content_section/faq_question_7_divider": T.STACK_PANEL, + "faq_content_section/faq_question_8": T.BUTTON, + "faq_content_section/faq_question_8_divider": T.STACK_PANEL, + "faq_content_section/faq_question_9": T.BUTTON, + "faq_content_section/faq_question_9_divider": T.STACK_PANEL, + "faq_content_section/faq_question_10": T.BUTTON, + "faq_content_section/faq_question_10_divider": T.STACK_PANEL, + "faq_content_section/faq_button": T.BUTTON, + "faq_content_section/faq_bottom_padding": T.PANEL, + "faq_content_section/faq_bottom_padding/bottom_left_particles": T.IMAGE, } export type CsbLandingType = { - landing_content_section: T.STACK_PANEL - "landing_content_section/landing_section_vertical_padding": T.PANEL - "landing_content_section/landing_content": T.STACK_PANEL - "landing_content_section/landing_content/title_stack": T.STACK_PANEL - "landing_content_section/landing_content/vertical_small_spacer_0": T.PANEL - "landing_content_section/landing_content/vertical_small_spacer_1": T.PANEL - "landing_content_section/landing_content/info_stack": T.STACK_PANEL - "landing_content_section/landing_content/vertical_small_spacer_2": T.PANEL - horizontal_small_spacer: T.PANEL - vertical_small_spacer: T.PANEL - vertical_large_spacer: T.PANEL - title_stack: T.STACK_PANEL - "title_stack/title_image_panel": T.STACK_PANEL - "title_stack/title_space": T.PANEL - "title_stack/action_button": T.PANEL - "title_stack/sign_in_button": T.PANEL - "title_stack/vertical_space2": T.PANEL - "title_stack/gradient_panel": T.PANEL - "title_stack/gradient_panel/label_with_gradient": T.PANEL - "title_stack/gradient_panel/tts_hover": T.BUTTON - "title_stack/gradient_panel2": T.PANEL - "title_stack/gradient_panel2/label_with_gradient2": T.PANEL - "title_stack/gradient_panel2/tts_hover": T.BUTTON - subscription_includes_text: T.LABEL - free_trial_text: T.LABEL - title_space: T.PANEL - title_image_panel: T.STACK_PANEL - "title_image_panel/vertical_small_spacer_1": T.PANEL - "title_image_panel/title_image_container": T.PANEL - "title_image_panel/title_image_container/title_image": T.IMAGE - "title_image_panel/vertical_small_spacer_2": T.PANEL - info_stack: T.STACK_PANEL - "info_stack/info_section_image": T.IMAGE - "info_stack/info_description_stack_retail": T.STACK_PANEL - info_description_stack_retail: T.STACK_PANEL - "info_description_stack_retail/info_section_stack_1": T.STACK_PANEL - "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer": T.PANEL - "info_description_stack_retail/info_section_stack_1/info_section_text_1": T.STACK_PANEL - info_section_stack: T.STACK_PANEL - info_section_image_with_border: T.IMAGE - info_section_text_1: T.STACK_PANEL - "info_section_text_1/info_section_text": T.PANEL - "info_section_text_1/vertical_small_spacer_0": T.PANEL - "info_section_text_1/info_text_bullet_1": T.STACK_PANEL - "info_section_text_1/vertical_small_spacer_1": T.PANEL - "info_section_text_1/info_text_bullet_2": T.STACK_PANEL - "info_section_text_1/vertical_small_spacer_2": T.PANEL - "info_section_text_1/info_text_bullet_3": T.STACK_PANEL - "info_section_text_1/vertical_small_spacer_3": T.PANEL - "info_section_text_1/info_text_bullet_4": T.STACK_PANEL - "info_section_text_1/vertical_small_spacer_4": T.PANEL - "info_section_text_1/info_text_bullet_5": T.STACK_PANEL - "info_section_text_1/vertical_small_spacer_5": T.PANEL - "info_section_text_1/info_text_bullet_6": T.STACK_PANEL - "info_section_text_1/vertical_large_spacer_6": T.PANEL - info_section_text_2: T.STACK_PANEL - "info_section_text_2/info_text_bullet_1": T.STACK_PANEL - "info_section_text_2/vertical_small_spacer_0": T.PANEL - "info_section_text_2/info_text_bullet_2": T.STACK_PANEL - "info_section_text_2/vertical_small_spacer_1": T.PANEL - "info_section_text_2/info_text_bullet_4": T.STACK_PANEL - "info_section_text_2/vertical_small_spacer_3": T.PANEL - "info_section_text_2/info_text_bullet_5": T.STACK_PANEL - info_section_text: T.STACK_PANEL - info_text_bullet: T.STACK_PANEL - "info_text_bullet/info_text_bullet_bullet": T.LABEL - "info_text_bullet/bullet_spacer": T.PANEL - "info_text_bullet/info_text_bullet_body": T.PANEL - "info_text_bullet/bullet_spacer_end": T.PANEL - info_text_unbulletted: T.PANEL - "info_text_unbulletted/info_text_bullet_body": T.PANEL - info_text_body: T.PANEL - "info_text_body/text_body": T.LABEL - "info_text_body/tts_border": T.BUTTON + "landing_content_section": T.STACK_PANEL, + "landing_content_section/landing_section_vertical_padding": T.PANEL, + "landing_content_section/landing_content": T.STACK_PANEL, + "landing_content_section/landing_content/title_stack": T.STACK_PANEL, + "landing_content_section/landing_content/vertical_small_spacer_0": T.PANEL, + "landing_content_section/landing_content/vertical_small_spacer_1": T.PANEL, + "landing_content_section/landing_content/info_stack": T.STACK_PANEL, + "landing_content_section/landing_content/vertical_small_spacer_2": T.PANEL, + "horizontal_small_spacer": T.PANEL, + "vertical_small_spacer": T.PANEL, + "vertical_large_spacer": T.PANEL, + "title_stack": T.STACK_PANEL, + "title_stack/title_image_panel": T.STACK_PANEL, + "title_stack/title_space": T.PANEL, + "title_stack/action_button": T.PANEL, + "title_stack/sign_in_button": T.PANEL, + "title_stack/vertical_space2": T.PANEL, + "title_stack/gradient_panel": T.PANEL, + "title_stack/gradient_panel/label_with_gradient": T.PANEL, + "title_stack/gradient_panel/tts_hover": T.BUTTON, + "title_stack/gradient_panel2": T.PANEL, + "title_stack/gradient_panel2/label_with_gradient2": T.PANEL, + "title_stack/gradient_panel2/tts_hover": T.BUTTON, + "subscription_includes_text": T.LABEL, + "free_trial_text": T.LABEL, + "title_space": T.PANEL, + "title_image_panel": T.STACK_PANEL, + "title_image_panel/vertical_small_spacer_1": T.PANEL, + "title_image_panel/title_image_container": T.PANEL, + "title_image_panel/title_image_container/title_image": T.IMAGE, + "title_image_panel/vertical_small_spacer_2": T.PANEL, + "info_stack": T.STACK_PANEL, + "info_stack/info_section_image": T.IMAGE, + "info_stack/info_description_stack_retail": T.STACK_PANEL, + "info_description_stack_retail": T.STACK_PANEL, + "info_description_stack_retail/info_section_stack_1": T.STACK_PANEL, + "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer": T.PANEL, + "info_description_stack_retail/info_section_stack_1/info_section_text_1": T.STACK_PANEL, + "info_section_stack": T.STACK_PANEL, + "info_section_image_with_border": T.IMAGE, + "info_section_text_1": T.STACK_PANEL, + "info_section_text_1/info_section_text": T.PANEL, + "info_section_text_1/vertical_small_spacer_0": T.PANEL, + "info_section_text_1/info_text_bullet_1": T.STACK_PANEL, + "info_section_text_1/vertical_small_spacer_1": T.PANEL, + "info_section_text_1/info_text_bullet_2": T.STACK_PANEL, + "info_section_text_1/vertical_small_spacer_2": T.PANEL, + "info_section_text_1/info_text_bullet_3": T.STACK_PANEL, + "info_section_text_1/vertical_small_spacer_3": T.PANEL, + "info_section_text_1/info_text_bullet_4": T.STACK_PANEL, + "info_section_text_1/vertical_small_spacer_4": T.PANEL, + "info_section_text_1/info_text_bullet_5": T.STACK_PANEL, + "info_section_text_1/vertical_small_spacer_5": T.PANEL, + "info_section_text_1/info_text_bullet_6": T.STACK_PANEL, + "info_section_text_1/vertical_large_spacer_6": T.PANEL, + "info_section_text_2": T.STACK_PANEL, + "info_section_text_2/info_text_bullet_1": T.STACK_PANEL, + "info_section_text_2/vertical_small_spacer_0": T.PANEL, + "info_section_text_2/info_text_bullet_2": T.STACK_PANEL, + "info_section_text_2/vertical_small_spacer_1": T.PANEL, + "info_section_text_2/info_text_bullet_4": T.STACK_PANEL, + "info_section_text_2/vertical_small_spacer_3": T.PANEL, + "info_section_text_2/info_text_bullet_5": T.STACK_PANEL, + "info_section_text": T.STACK_PANEL, + "info_text_bullet": T.STACK_PANEL, + "info_text_bullet/info_text_bullet_bullet": T.LABEL, + "info_text_bullet/bullet_spacer": T.PANEL, + "info_text_bullet/info_text_bullet_body": T.PANEL, + "info_text_bullet/bullet_spacer_end": T.PANEL, + "info_text_unbulletted": T.PANEL, + "info_text_unbulletted/info_text_bullet_body": T.PANEL, + "info_text_body": T.PANEL, + "info_text_body/text_body": T.LABEL, + "info_text_body/tts_border": T.BUTTON, } export type CustomTemplatesType = { - lock_icon: T.IMAGE - templates_scroll_content: T.INPUT_PANEL - "templates_scroll_content/scrolling_panel": T.PANEL - templates_scroll_panel: T.PANEL - "templates_scroll_panel/templates_stack_panel": T.STACK_PANEL - "templates_scroll_panel/templates_stack_panel/templates_item_grid": T.GRID - templates_item_grid: T.GRID - templates_item: T.STACK_PANEL - "templates_item/template_item_button": T.BUTTON - template_item_button: T.BUTTON - template_content_panel: T.STACK_PANEL - "template_content_panel/template_screenshot": T.IMAGE - "template_content_panel/template_text_panel": T.PANEL - "template_content_panel/lock_panel": T.PANEL - "template_content_panel/lock_panel/lock_icon": T.IMAGE - template_screenshot: T.IMAGE - "template_screenshot/picture": T.IMAGE - template_text_panel: T.PANEL - "template_text_panel/text_indent": T.PANEL - "template_text_panel/text_indent/top_side": T.STACK_PANEL - "template_text_panel/text_indent/top_side/template_name": T.LABEL - "template_text_panel/text_indent/top_side/download_text_label": T.LABEL - "template_text_panel/text_indent/bottom_side": T.STACK_PANEL - "template_text_panel/text_indent/bottom_side/template_description": T.LABEL - "template_text_panel/text_indent/bottom_side/template_version": T.LABEL - template_name: T.LABEL - template_download_text: T.LABEL - template_list_text: T.LABEL - template_description: T.LABEL - template_version: T.LABEL - main_panel: T.PANEL - "main_panel/templates_scroll_content": T.INPUT_PANEL - custom_templates_screen: T.SCREEN - custom_templates_screen_content: T.PANEL - "custom_templates_screen_content/dialog": T.PANEL - background: T.IMAGE + "lock_icon": T.IMAGE, + "templates_scroll_content": T.INPUT_PANEL, + "templates_scroll_content/scrolling_panel": T.PANEL, + "templates_scroll_panel": T.PANEL, + "templates_scroll_panel/templates_stack_panel": T.STACK_PANEL, + "templates_scroll_panel/templates_stack_panel/templates_item_grid": T.GRID, + "templates_item_grid": T.GRID, + "templates_item": T.STACK_PANEL, + "templates_item/template_item_button": T.BUTTON, + "template_item_button": T.BUTTON, + "template_content_panel": T.STACK_PANEL, + "template_content_panel/template_screenshot": T.IMAGE, + "template_content_panel/template_text_panel": T.PANEL, + "template_content_panel/lock_panel": T.PANEL, + "template_content_panel/lock_panel/lock_icon": T.IMAGE, + "template_screenshot": T.IMAGE, + "template_screenshot/picture": T.IMAGE, + "template_text_panel": T.PANEL, + "template_text_panel/text_indent": T.PANEL, + "template_text_panel/text_indent/top_side": T.STACK_PANEL, + "template_text_panel/text_indent/top_side/template_name": T.LABEL, + "template_text_panel/text_indent/top_side/download_text_label": T.LABEL, + "template_text_panel/text_indent/bottom_side": T.STACK_PANEL, + "template_text_panel/text_indent/bottom_side/template_description": T.LABEL, + "template_text_panel/text_indent/bottom_side/template_version": T.LABEL, + "template_name": T.LABEL, + "template_download_text": T.LABEL, + "template_list_text": T.LABEL, + "template_description": T.LABEL, + "template_version": T.LABEL, + "main_panel": T.PANEL, + "main_panel/templates_scroll_content": T.INPUT_PANEL, + "custom_templates_screen": T.SCREEN, + "custom_templates_screen_content": T.PANEL, + "custom_templates_screen_content/dialog": T.PANEL, + "background": T.IMAGE, } export type WorldConversionCompleteType = { - background: T.IMAGE - prompt_text: T.PANEL - "prompt_text/message": T.LABEL - converted_world_preview_name: T.LABEL - converted_world_preview_date: T.LABEL - converted_world_preview_game_mode: T.LABEL - converted_world_preview_filesize: T.LABEL - converted_world_preview_text_panel: T.PANEL - "converted_world_preview_text_panel/text_indent": T.PANEL - "converted_world_preview_text_panel/text_indent/top_side": T.STACK_PANEL - "converted_world_preview_text_panel/text_indent/top_side/converted_world_name": T.LABEL - "converted_world_preview_text_panel/text_indent/top_side/converted_world_date": T.LABEL - "converted_world_preview_text_panel/text_indent/bottom_side": T.STACK_PANEL - "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_game_mode": T.LABEL - "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_filesize": T.LABEL - converted_world_preview_panel: T.IMAGE - "converted_world_preview_panel/world_preview_content": T.STACK_PANEL - "converted_world_preview_panel/world_preview_content/converted_world_screenshot": T.IMAGE - "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content": T.PANEL - "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content/picture": T.IMAGE - "converted_world_preview_panel/world_preview_content/converted_world_text_panel": T.PANEL - main_panel: T.STACK_PANEL - "main_panel/padding_0": T.PANEL - "main_panel/prompt_1": T.PANEL - "main_panel/world_entry_container": T.PANEL - "main_panel/world_entry_container/world_entry_sizer": T.PANEL - "main_panel/world_entry_container/world_entry_sizer/world_entry": T.IMAGE - "main_panel/buttons_panel_sizer": T.PANEL - "main_panel/buttons_panel_sizer/buttons_panel": T.STACK_PANEL - "main_panel/buttons_panel_sizer/buttons_panel/load_game_button": T.BUTTON - "main_panel/buttons_panel_sizer/buttons_panel/padding": T.PANEL - "main_panel/buttons_panel_sizer/buttons_panel/return_button": T.BUTTON - world_conversion_complete_screen_content: T.PANEL - "world_conversion_complete_screen_content/dialog": T.PANEL - world_conversion_complete_screen: T.SCREEN + "background": T.IMAGE, + "prompt_text": T.PANEL, + "prompt_text/message": T.LABEL, + "converted_world_preview_name": T.LABEL, + "converted_world_preview_date": T.LABEL, + "converted_world_preview_game_mode": T.LABEL, + "converted_world_preview_filesize": T.LABEL, + "converted_world_preview_text_panel": T.PANEL, + "converted_world_preview_text_panel/text_indent": T.PANEL, + "converted_world_preview_text_panel/text_indent/top_side": T.STACK_PANEL, + "converted_world_preview_text_panel/text_indent/top_side/converted_world_name": T.LABEL, + "converted_world_preview_text_panel/text_indent/top_side/converted_world_date": T.LABEL, + "converted_world_preview_text_panel/text_indent/bottom_side": T.STACK_PANEL, + "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_game_mode": T.LABEL, + "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_filesize": T.LABEL, + "converted_world_preview_panel": T.IMAGE, + "converted_world_preview_panel/world_preview_content": T.STACK_PANEL, + "converted_world_preview_panel/world_preview_content/converted_world_screenshot": T.IMAGE, + "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content": T.PANEL, + "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content/picture": T.IMAGE, + "converted_world_preview_panel/world_preview_content/converted_world_text_panel": T.PANEL, + "main_panel": T.STACK_PANEL, + "main_panel/padding_0": T.PANEL, + "main_panel/prompt_1": T.PANEL, + "main_panel/world_entry_container": T.PANEL, + "main_panel/world_entry_container/world_entry_sizer": T.PANEL, + "main_panel/world_entry_container/world_entry_sizer/world_entry": T.IMAGE, + "main_panel/buttons_panel_sizer": T.PANEL, + "main_panel/buttons_panel_sizer/buttons_panel": T.STACK_PANEL, + "main_panel/buttons_panel_sizer/buttons_panel/load_game_button": T.BUTTON, + "main_panel/buttons_panel_sizer/buttons_panel/padding": T.PANEL, + "main_panel/buttons_panel_sizer/buttons_panel/return_button": T.BUTTON, + "world_conversion_complete_screen_content": T.PANEL, + "world_conversion_complete_screen_content/dialog": T.PANEL, + "world_conversion_complete_screen": T.SCREEN, } export type DayOneExperienceIntroType = { - padding_horizontal: T.PANEL - padding_vertical: T.PANEL - label_panel: T.PANEL - "label_panel/label_text": T.LABEL - text_panel: T.STACK_PANEL - "text_panel/padding_00": T.PANEL - "text_panel/tab_content_description_panel": T.PANEL - "text_panel/padding_01": T.PANEL - dialog_image: T.IMAGE - image_panel: T.PANEL - "image_panel/dialog_image_with_border": T.IMAGE - "image_panel/focus_image": T.UNKNOWN - top_tab: T.PANEL - common_tab_navigation_panel_layout: T.STACK_PANEL - tabbed_tab_navigation_panel_layout: T.STACK_PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_01": T.PANEL - "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper": T.PANEL - "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper/gamepad_helper_left_bumper": T.STACK_PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_02": T.PANEL - "tabbed_tab_navigation_panel_layout/welcome_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_03": T.PANEL - "tabbed_tab_navigation_panel_layout/marketplace_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_04": T.PANEL - "tabbed_tab_navigation_panel_layout/cross_platform_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_05": T.PANEL - "tabbed_tab_navigation_panel_layout/realms_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_06": T.PANEL - "tabbed_tab_navigation_panel_layout/villagers_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_07": T.PANEL - "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper": T.PANEL - "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper/gamepad_helper_right_bumper": T.STACK_PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_08": T.PANEL - tab_header_image_panel: T.PANEL - "tab_header_image_panel/welcome_tab_content": T.PANEL - "tab_header_image_panel/marketplace_tab_content": T.PANEL - "tab_header_image_panel/cross_platform_tab_content": T.PANEL - "tab_header_image_panel/realms_tab_content": T.PANEL - "tab_header_image_panel/villager_tab_content": T.PANEL - tabbed_tab_content_panel_layout: T.PANEL - "tabbed_tab_content_panel_layout/welcome_tab_content": T.PANEL - "tabbed_tab_content_panel_layout/marketplace_tab_content": T.PANEL - "tabbed_tab_content_panel_layout/cross_platform_tab_content": T.PANEL - "tabbed_tab_content_panel_layout/realms_tab_content": T.PANEL - "tabbed_tab_content_panel_layout/villager_tab_content": T.PANEL - common_tab_header_image_panel: T.PANEL - "common_tab_header_image_panel/header_image": T.IMAGE - common_tab_content_panel: T.PANEL - "common_tab_content_panel/content": T.UNKNOWN - welcome_tab_header_image_panel: T.PANEL - welcome_tab_content_panel: T.PANEL - marketplace_tab_header_image_panel: T.PANEL - marketplace_tab_content_panel: T.PANEL - cross_platform_tab_header_image_panel: T.PANEL - cross_platform_tab_content_panel: T.PANEL - realms_tab_header_image_panel: T.PANEL - realms_tab_content_panel: T.PANEL - villager_tab_header_image_panel: T.PANEL - villager_tab_content_panel: T.PANEL - tab_panel: T.STACK_PANEL - "tab_panel/tab_header_image": T.PANEL - "tab_panel/padding_00": T.PANEL - "tab_panel/tab_navigation_panel": T.STACK_PANEL - "tab_panel/tab_content_panel": T.PANEL - "tab_panel/padding_4": T.PANEL - "tab_panel/continue_button_panel": T.PANEL - "tab_panel/continue_button_panel/continue_button": T.BUTTON - day_one_experience_intro_screen: T.SCREEN - day_one_experience_intro_screen_content: T.PANEL - "day_one_experience_intro_screen_content/welcome_dialog": T.PANEL + "padding_horizontal": T.PANEL, + "padding_vertical": T.PANEL, + "label_panel": T.PANEL, + "label_panel/label_text": T.LABEL, + "text_panel": T.STACK_PANEL, + "text_panel/padding_00": T.PANEL, + "text_panel/tab_content_description_panel": T.PANEL, + "text_panel/padding_01": T.PANEL, + "dialog_image": T.IMAGE, + "image_panel": T.PANEL, + "image_panel/dialog_image_with_border": T.IMAGE, + "image_panel/focus_image": T.UNKNOWN, + "top_tab": T.PANEL, + "common_tab_navigation_panel_layout": T.STACK_PANEL, + "tabbed_tab_navigation_panel_layout": T.STACK_PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_01": T.PANEL, + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper": T.PANEL, + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper/gamepad_helper_left_bumper": T.STACK_PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_02": T.PANEL, + "tabbed_tab_navigation_panel_layout/welcome_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_03": T.PANEL, + "tabbed_tab_navigation_panel_layout/marketplace_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_04": T.PANEL, + "tabbed_tab_navigation_panel_layout/cross_platform_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_05": T.PANEL, + "tabbed_tab_navigation_panel_layout/realms_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_06": T.PANEL, + "tabbed_tab_navigation_panel_layout/villagers_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_07": T.PANEL, + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper": T.PANEL, + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper/gamepad_helper_right_bumper": T.STACK_PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_08": T.PANEL, + "tab_header_image_panel": T.PANEL, + "tab_header_image_panel/welcome_tab_content": T.PANEL, + "tab_header_image_panel/marketplace_tab_content": T.PANEL, + "tab_header_image_panel/cross_platform_tab_content": T.PANEL, + "tab_header_image_panel/realms_tab_content": T.PANEL, + "tab_header_image_panel/villager_tab_content": T.PANEL, + "tabbed_tab_content_panel_layout": T.PANEL, + "tabbed_tab_content_panel_layout/welcome_tab_content": T.PANEL, + "tabbed_tab_content_panel_layout/marketplace_tab_content": T.PANEL, + "tabbed_tab_content_panel_layout/cross_platform_tab_content": T.PANEL, + "tabbed_tab_content_panel_layout/realms_tab_content": T.PANEL, + "tabbed_tab_content_panel_layout/villager_tab_content": T.PANEL, + "common_tab_header_image_panel": T.PANEL, + "common_tab_header_image_panel/header_image": T.IMAGE, + "common_tab_content_panel": T.PANEL, + "common_tab_content_panel/content": T.UNKNOWN, + "welcome_tab_header_image_panel": T.PANEL, + "welcome_tab_content_panel": T.PANEL, + "marketplace_tab_header_image_panel": T.PANEL, + "marketplace_tab_content_panel": T.PANEL, + "cross_platform_tab_header_image_panel": T.PANEL, + "cross_platform_tab_content_panel": T.PANEL, + "realms_tab_header_image_panel": T.PANEL, + "realms_tab_content_panel": T.PANEL, + "villager_tab_header_image_panel": T.PANEL, + "villager_tab_content_panel": T.PANEL, + "tab_panel": T.STACK_PANEL, + "tab_panel/tab_header_image": T.PANEL, + "tab_panel/padding_00": T.PANEL, + "tab_panel/tab_navigation_panel": T.STACK_PANEL, + "tab_panel/tab_content_panel": T.PANEL, + "tab_panel/padding_4": T.PANEL, + "tab_panel/continue_button_panel": T.PANEL, + "tab_panel/continue_button_panel/continue_button": T.BUTTON, + "day_one_experience_intro_screen": T.SCREEN, + "day_one_experience_intro_screen_content": T.PANEL, + "day_one_experience_intro_screen_content/welcome_dialog": T.PANEL, } export type DayOneExperienceType = { - alpha_scroll_background: T.IMAGE - tip_text: T.LABEL - tip_arrow_base: T.IMAGE - tip_arrow_left: T.IMAGE - tip_arrow_right: T.IMAGE - import_time: T.CUSTOM - skins_tip_image: T.IMAGE - "skins_tip_image/arrows": T.STACK_PANEL - "skins_tip_image/arrows/right_arrow": T.IMAGE - "skins_tip_image/arrows/padding": T.PANEL - "skins_tip_image/arrows/left_arrow": T.IMAGE - skins_tip_top_text: T.LABEL - skins_tip_panel: T.STACK_PANEL - "skins_tip_panel/top_text_sizer": T.PANEL - "skins_tip_panel/top_text_sizer/settings_and_skin_text": T.LABEL - "skins_tip_panel/top_text_sizer/settings_text": T.LABEL - "skins_tip_panel/image_sizer": T.PANEL - "skins_tip_panel/image_sizer/image_section": T.PANEL - "skins_tip_panel/bottom_text_sizer": T.PANEL - "skins_tip_panel/bottom_text_sizer/bottom_text": T.LABEL - skin_viewer_panel_text: T.LABEL - skin_viewer_panel: T.PANEL - "skin_viewer_panel/paper_doll_container": T.PANEL - "skin_viewer_panel/paper_doll_container/paper_doll": T.CUSTOM - "skin_viewer_panel/legacy_skin_loading_panel": T.PANEL - "skin_viewer_panel/bottom_skin_text": T.PANEL - "skin_viewer_panel/bottom_skin_text/current_skin_text": T.LABEL - "skin_viewer_panel/bottom_skin_text/default_skin_text": T.LABEL - skin_tip_screen: T.PANEL - "skin_tip_screen/primary_content": T.STACK_PANEL - "skin_tip_screen/primary_content/skin_viewer_panel": T.PANEL - "skin_tip_screen/primary_content/skin_viewer_panel/skin_viewer": T.PANEL - "skin_tip_screen/primary_content/padding": T.PANEL - "skin_tip_screen/primary_content/skins_tip_panel_container": T.PANEL - "skin_tip_screen/primary_content/skins_tip_panel_container/background": T.PANEL - "skin_tip_screen/primary_content/skins_tip_panel_container/skins_tip_panel": T.STACK_PANEL - "skin_tip_screen/no_network_message": T.CUSTOM - legacy_world_item: T.STACK_PANEL - "legacy_world_item/header_button_panel": T.PANEL - legacy_world_item_grid: T.GRID - world_picker_scrolling_content: T.STACK_PANEL - "world_picker_scrolling_content/padding_0": T.PANEL - "world_picker_scrolling_content/skip_button": T.BUTTON - "world_picker_scrolling_content/padding_1": T.PANEL - "world_picker_scrolling_content/loading_legacy_worlds_panel": T.IMAGE - "world_picker_scrolling_content/loading_legacy_worlds_panel/loading_legacy_worlds_label": T.LABEL - "world_picker_scrolling_content/loading_legacy_worlds_panel/padding": T.PANEL - "world_picker_scrolling_content/loading_legacy_worlds_panel/progress_loading_bars": T.IMAGE - "world_picker_scrolling_content/padding_2": T.PANEL - "world_picker_scrolling_content/world_item_grid": T.GRID - world_picker_content: T.PANEL - "world_picker_content/scrolling_panel": T.PANEL - advanced_worlds_screen: T.STACK_PANEL - "advanced_worlds_screen/world_picker": T.PANEL - "advanced_worlds_screen/padding_1": T.PANEL - "advanced_worlds_screen/import_time_container": T.PANEL - "advanced_worlds_screen/import_time_container/import_time_label": T.CUSTOM - next_screen_button_content: T.PANEL - "next_screen_button_content/arrow_panel": T.PANEL - "next_screen_button_content/arrow_panel/label_panel": T.PANEL - "next_screen_button_content/arrow_panel/label_panel/label": T.LABEL - "next_screen_button_content/arrow_panel/image": T.IMAGE - "next_screen_button_content/loading_panel": T.PANEL - next_screen_button: T.BUTTON - next_panel: T.PANEL - "next_panel/next_button": T.BUTTON - common_scrolling_panel: T.PANEL - skin_tip_scroll_panel: T.PANEL - "skin_tip_scroll_panel/skin_tip_screen": T.PANEL - worlds_import_scroll_panel: T.PANEL - "worlds_import_scroll_panel/advanced_screen": T.STACK_PANEL - common_content: T.PANEL - skin_tip_scroll_content: T.PANEL - "skin_tip_scroll_content/scrolling_panel": T.PANEL - world_import_scroll_content: T.PANEL - "world_import_scroll_content/scrolling_panel": T.PANEL - default_tab_content_panel_layout: T.PANEL - "default_tab_content_panel_layout/skin_tip_tab_content": T.PANEL - "default_tab_content_panel_layout/world_import_tab_content": T.PANEL - default_wizard_screen: T.PANEL - "default_wizard_screen/tab_content_panel": T.PANEL - wizard_screen: T.SCREEN - wizard_screen_content: T.PANEL - "wizard_screen_content/main_control": T.PANEL - "wizard_screen_content/next_button": T.PANEL + "alpha_scroll_background": T.IMAGE, + "tip_text": T.LABEL, + "tip_arrow_base": T.IMAGE, + "tip_arrow_left": T.IMAGE, + "tip_arrow_right": T.IMAGE, + "import_time": T.CUSTOM, + "skins_tip_image": T.IMAGE, + "skins_tip_image/arrows": T.STACK_PANEL, + "skins_tip_image/arrows/right_arrow": T.IMAGE, + "skins_tip_image/arrows/padding": T.PANEL, + "skins_tip_image/arrows/left_arrow": T.IMAGE, + "skins_tip_top_text": T.LABEL, + "skins_tip_panel": T.STACK_PANEL, + "skins_tip_panel/top_text_sizer": T.PANEL, + "skins_tip_panel/top_text_sizer/settings_and_skin_text": T.LABEL, + "skins_tip_panel/top_text_sizer/settings_text": T.LABEL, + "skins_tip_panel/image_sizer": T.PANEL, + "skins_tip_panel/image_sizer/image_section": T.PANEL, + "skins_tip_panel/bottom_text_sizer": T.PANEL, + "skins_tip_panel/bottom_text_sizer/bottom_text": T.LABEL, + "skin_viewer_panel_text": T.LABEL, + "skin_viewer_panel": T.PANEL, + "skin_viewer_panel/paper_doll_container": T.PANEL, + "skin_viewer_panel/paper_doll_container/paper_doll": T.CUSTOM, + "skin_viewer_panel/legacy_skin_loading_panel": T.PANEL, + "skin_viewer_panel/bottom_skin_text": T.PANEL, + "skin_viewer_panel/bottom_skin_text/current_skin_text": T.LABEL, + "skin_viewer_panel/bottom_skin_text/default_skin_text": T.LABEL, + "skin_tip_screen": T.PANEL, + "skin_tip_screen/primary_content": T.STACK_PANEL, + "skin_tip_screen/primary_content/skin_viewer_panel": T.PANEL, + "skin_tip_screen/primary_content/skin_viewer_panel/skin_viewer": T.PANEL, + "skin_tip_screen/primary_content/padding": T.PANEL, + "skin_tip_screen/primary_content/skins_tip_panel_container": T.PANEL, + "skin_tip_screen/primary_content/skins_tip_panel_container/background": T.PANEL, + "skin_tip_screen/primary_content/skins_tip_panel_container/skins_tip_panel": T.STACK_PANEL, + "skin_tip_screen/no_network_message": T.CUSTOM, + "legacy_world_item": T.STACK_PANEL, + "legacy_world_item/header_button_panel": T.PANEL, + "legacy_world_item_grid": T.GRID, + "world_picker_scrolling_content": T.STACK_PANEL, + "world_picker_scrolling_content/padding_0": T.PANEL, + "world_picker_scrolling_content/skip_button": T.BUTTON, + "world_picker_scrolling_content/padding_1": T.PANEL, + "world_picker_scrolling_content/loading_legacy_worlds_panel": T.IMAGE, + "world_picker_scrolling_content/loading_legacy_worlds_panel/loading_legacy_worlds_label": T.LABEL, + "world_picker_scrolling_content/loading_legacy_worlds_panel/padding": T.PANEL, + "world_picker_scrolling_content/loading_legacy_worlds_panel/progress_loading_bars": T.IMAGE, + "world_picker_scrolling_content/padding_2": T.PANEL, + "world_picker_scrolling_content/world_item_grid": T.GRID, + "world_picker_content": T.PANEL, + "world_picker_content/scrolling_panel": T.PANEL, + "advanced_worlds_screen": T.STACK_PANEL, + "advanced_worlds_screen/world_picker": T.PANEL, + "advanced_worlds_screen/padding_1": T.PANEL, + "advanced_worlds_screen/import_time_container": T.PANEL, + "advanced_worlds_screen/import_time_container/import_time_label": T.CUSTOM, + "next_screen_button_content": T.PANEL, + "next_screen_button_content/arrow_panel": T.PANEL, + "next_screen_button_content/arrow_panel/label_panel": T.PANEL, + "next_screen_button_content/arrow_panel/label_panel/label": T.LABEL, + "next_screen_button_content/arrow_panel/image": T.IMAGE, + "next_screen_button_content/loading_panel": T.PANEL, + "next_screen_button": T.BUTTON, + "next_panel": T.PANEL, + "next_panel/next_button": T.BUTTON, + "common_scrolling_panel": T.PANEL, + "skin_tip_scroll_panel": T.PANEL, + "skin_tip_scroll_panel/skin_tip_screen": T.PANEL, + "worlds_import_scroll_panel": T.PANEL, + "worlds_import_scroll_panel/advanced_screen": T.STACK_PANEL, + "common_content": T.PANEL, + "skin_tip_scroll_content": T.PANEL, + "skin_tip_scroll_content/scrolling_panel": T.PANEL, + "world_import_scroll_content": T.PANEL, + "world_import_scroll_content/scrolling_panel": T.PANEL, + "default_tab_content_panel_layout": T.PANEL, + "default_tab_content_panel_layout/skin_tip_tab_content": T.PANEL, + "default_tab_content_panel_layout/world_import_tab_content": T.PANEL, + "default_wizard_screen": T.PANEL, + "default_wizard_screen/tab_content_panel": T.PANEL, + "wizard_screen": T.SCREEN, + "wizard_screen_content": T.PANEL, + "wizard_screen_content/main_control": T.PANEL, + "wizard_screen_content/next_button": T.PANEL, } export type DeathType = { - a_button_panel: T.PANEL - "a_button_panel/gamepad_helper_a": T.STACK_PANEL - you_died_panel: T.PANEL - "you_died_panel/you_died_label": T.LABEL - death_reason_panel: T.PANEL - "death_reason_panel/death_reason_label": T.LABEL - labels_panel: T.STACK_PANEL - "labels_panel/fill_1": T.PANEL - "labels_panel/you_died": T.PANEL - "labels_panel/padd_1": T.PANEL - "labels_panel/death_reason": T.PANEL - "labels_panel/padd_2": T.PANEL - buttons_panel: T.STACK_PANEL - "buttons_panel/padd_0": T.PANEL - "buttons_panel/respawn_button": T.BUTTON - "buttons_panel/padd_1": T.PANEL - "buttons_panel/main_menu_button": T.BUTTON - "buttons_panel/fill_2": T.PANEL - "buttons_panel/select_button": T.PANEL - death_screen_content: T.PANEL - "death_screen_content/death_screen_buttons_and_stuff": T.PANEL - "death_screen_content/death_screen_buttons_and_stuff/labels_panel": T.STACK_PANEL - "death_screen_content/death_screen_buttons_and_stuff/buttons_panel": T.STACK_PANEL - "death_screen_content/loading_label": T.LABEL - background_gradient: T.CUSTOM - death_screen: T.SCREEN + "a_button_panel": T.PANEL, + "a_button_panel/gamepad_helper_a": T.STACK_PANEL, + "you_died_panel": T.PANEL, + "you_died_panel/you_died_label": T.LABEL, + "death_reason_panel": T.PANEL, + "death_reason_panel/death_reason_label": T.LABEL, + "labels_panel": T.STACK_PANEL, + "labels_panel/fill_1": T.PANEL, + "labels_panel/you_died": T.PANEL, + "labels_panel/padd_1": T.PANEL, + "labels_panel/death_reason": T.PANEL, + "labels_panel/padd_2": T.PANEL, + "buttons_panel": T.STACK_PANEL, + "buttons_panel/padd_0": T.PANEL, + "buttons_panel/respawn_button": T.BUTTON, + "buttons_panel/padd_1": T.PANEL, + "buttons_panel/main_menu_button": T.BUTTON, + "buttons_panel/fill_2": T.PANEL, + "buttons_panel/select_button": T.PANEL, + "death_screen_content": T.PANEL, + "death_screen_content/death_screen_buttons_and_stuff": T.PANEL, + "death_screen_content/death_screen_buttons_and_stuff/labels_panel": T.STACK_PANEL, + "death_screen_content/death_screen_buttons_and_stuff/buttons_panel": T.STACK_PANEL, + "death_screen_content/loading_label": T.LABEL, + "background_gradient": T.CUSTOM, + "death_screen": T.SCREEN, } export type DebugScreenType = { - access_button: T.BUTTON - special_render: T.CUSTOM - content_panel: T.PANEL - "content_panel/access_button": T.BUTTON - "content_panel/special_render": T.CUSTOM - debug_screen: T.SCREEN + "access_button": T.BUTTON, + "special_render": T.CUSTOM, + "content_panel": T.PANEL, + "content_panel/access_button": T.BUTTON, + "content_panel/special_render": T.CUSTOM, + "debug_screen": T.SCREEN, } export type DevConsoleType = { - keyboard_button_content: T.PANEL - "keyboard_button_content/keyboard_image": T.IMAGE - keyboard_button: T.BUTTON - button_content: T.PANEL - "button_content/image": T.UNKNOWN - up_arrow: T.IMAGE - down_arrow: T.IMAGE - send_button: T.BUTTON - sent_message_up_button: T.BUTTON - sent_message_down_button: T.BUTTON - chat_stack_panel: T.STACK_PANEL - "chat_stack_panel/text_box": T.EDIT_BOX - "chat_stack_panel/send_button": T.BUTTON - "chat_stack_panel/sent_message_up_button": T.BUTTON - "chat_stack_panel/sent_message_down_button": T.BUTTON - main_stack_panel: T.STACK_PANEL - "main_stack_panel/messages_scrolling_panel": T.PANEL - "main_stack_panel/chat_stack_panel": T.STACK_PANEL - main_with_intellisense: T.PANEL - "main_with_intellisense/main_stack": T.STACK_PANEL - "main_with_intellisense/commands_panel": T.PANEL - dev_console_dialog: T.PANEL - dev_console_screen: T.SCREEN + "keyboard_button_content": T.PANEL, + "keyboard_button_content/keyboard_image": T.IMAGE, + "keyboard_button": T.BUTTON, + "button_content": T.PANEL, + "button_content/image": T.UNKNOWN, + "up_arrow": T.IMAGE, + "down_arrow": T.IMAGE, + "send_button": T.BUTTON, + "sent_message_up_button": T.BUTTON, + "sent_message_down_button": T.BUTTON, + "chat_stack_panel": T.STACK_PANEL, + "chat_stack_panel/text_box": T.EDIT_BOX, + "chat_stack_panel/send_button": T.BUTTON, + "chat_stack_panel/sent_message_up_button": T.BUTTON, + "chat_stack_panel/sent_message_down_button": T.BUTTON, + "main_stack_panel": T.STACK_PANEL, + "main_stack_panel/messages_scrolling_panel": T.PANEL, + "main_stack_panel/chat_stack_panel": T.STACK_PANEL, + "main_with_intellisense": T.PANEL, + "main_with_intellisense/main_stack": T.STACK_PANEL, + "main_with_intellisense/commands_panel": T.PANEL, + "dev_console_dialog": T.PANEL, + "dev_console_screen": T.SCREEN, } export type DisconnectType = { - disconnect_screen_text: T.LABEL - disconnect_text: T.LABEL - disconnect_title_text: T.LABEL - title_panel: T.PANEL - "title_panel/disconnect_title_text": T.LABEL - "title_panel/disconnect_text": T.LABEL - menu_button_template: T.BUTTON - continue_button: T.BUTTON - check_store_button: T.BUTTON - exit_button: T.BUTTON - ok_button: T.BUTTON - open_uri_button: T.BUTTON - cancel_button: T.BUTTON - button_panel: T.STACK_PANEL - "button_panel/open_uri_button_panel": T.PANEL - "button_panel/open_uri_button_panel/open_uri_button": T.BUTTON - "button_panel/open_button_panel": T.PANEL - "button_panel/open_button_panel/ok_button": T.BUTTON - gamepad_helpers: T.PANEL - "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL - disconnect_screen: T.SCREEN - disconnect_screen_content: T.PANEL - "disconnect_screen_content/title_panel": T.PANEL - "disconnect_screen_content/gamepad_helpers": T.PANEL - spacing_gap: T.PANEL - realms_disconnect_screen: T.SCREEN - realms_disconnect_button_panel: T.STACK_PANEL - "realms_disconnect_button_panel/open_uri_button_panel": T.PANEL - "realms_disconnect_button_panel/open_uri_button_panel/open_uri_button": T.BUTTON - "realms_disconnect_button_panel/realm_buttons_panel": T.PANEL - "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons": T.STACK_PANEL - "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/check_store_button": T.BUTTON - "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/spacing_gap": T.PANEL - "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/exit_button": T.BUTTON - realms_warning_screen: T.SCREEN - realms_warning_button_panel: T.STACK_PANEL - "realms_warning_button_panel/continue_button_panel": T.PANEL - "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel": T.STACK_PANEL - "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/check_store_button": T.BUTTON - "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/spacing_gap": T.PANEL - "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/continue_button": T.BUTTON - "realms_warning_button_panel/realms_warning_button_gap": T.PANEL - "realms_warning_button_panel/cancel_button_panel": T.PANEL - "realms_warning_button_panel/cancel_button_panel/cancel_button": T.BUTTON - open_account_setting_button: T.BUTTON + "disconnect_screen_text": T.LABEL, + "disconnect_text": T.LABEL, + "disconnect_title_text": T.LABEL, + "title_panel": T.PANEL, + "title_panel/disconnect_title_text": T.LABEL, + "title_panel/disconnect_text": T.LABEL, + "menu_button_template": T.BUTTON, + "continue_button": T.BUTTON, + "check_store_button": T.BUTTON, + "exit_button": T.BUTTON, + "ok_button": T.BUTTON, + "open_uri_button": T.BUTTON, + "cancel_button": T.BUTTON, + "button_panel": T.STACK_PANEL, + "button_panel/open_uri_button_panel": T.PANEL, + "button_panel/open_uri_button_panel/open_uri_button": T.BUTTON, + "button_panel/open_button_panel": T.PANEL, + "button_panel/open_button_panel/ok_button": T.BUTTON, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL, + "disconnect_screen": T.SCREEN, + "disconnect_screen_content": T.PANEL, + "disconnect_screen_content/title_panel": T.PANEL, + "disconnect_screen_content/gamepad_helpers": T.PANEL, + "spacing_gap": T.PANEL, + "realms_disconnect_screen": T.SCREEN, + "realms_disconnect_button_panel": T.STACK_PANEL, + "realms_disconnect_button_panel/open_uri_button_panel": T.PANEL, + "realms_disconnect_button_panel/open_uri_button_panel/open_uri_button": T.BUTTON, + "realms_disconnect_button_panel/realm_buttons_panel": T.PANEL, + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons": T.STACK_PANEL, + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/check_store_button": T.BUTTON, + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/spacing_gap": T.PANEL, + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/exit_button": T.BUTTON, + "realms_warning_screen": T.SCREEN, + "realms_warning_button_panel": T.STACK_PANEL, + "realms_warning_button_panel/continue_button_panel": T.PANEL, + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel": T.STACK_PANEL, + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/check_store_button": T.BUTTON, + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/spacing_gap": T.PANEL, + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/continue_button": T.BUTTON, + "realms_warning_button_panel/realms_warning_button_gap": T.PANEL, + "realms_warning_button_panel/cancel_button_panel": T.PANEL, + "realms_warning_button_panel/cancel_button_panel/cancel_button": T.BUTTON, + "open_account_setting_button": T.BUTTON, } export type DisplayLoggedErrorType = { - display_logged_error_screen: T.SCREEN - factory_panel: T.PANEL - "factory_panel/error_dialog_factory": T.FACTORY - display_logged_error_modal: T.PANEL - error_message_stack: T.STACK_PANEL - "error_message_stack/error_message": T.LABEL - "error_message_stack/error_count": T.LABEL - input_blocking_button_base: T.BUTTON - details_button: T.BUTTON - dismiss_button: T.BUTTON - error_details_modal: T.PANEL - copy_path_button: T.BUTTON - hide_error_details_button: T.BUTTON - error_stack_scrolling_panel: T.PANEL - error_stack: T.STACK_PANEL - error_controller_panel: T.PANEL - "error_controller_panel/error_message": T.STACK_PANEL - "error_controller_panel/controller_button": T.BUTTON - "error_controller_panel/controller_button/hover": T.IMAGE - "error_controller_panel/controller_button/pressed": T.IMAGE - error_base: T.STACK_PANEL - "error_base/error_message": T.LABEL - "error_base/expand_button": T.BUTTON - error_short: T.PANEL - error_expanded: T.PANEL + "display_logged_error_screen": T.SCREEN, + "factory_panel": T.PANEL, + "factory_panel/error_dialog_factory": T.FACTORY, + "display_logged_error_modal": T.PANEL, + "error_message_stack": T.STACK_PANEL, + "error_message_stack/error_message": T.LABEL, + "error_message_stack/error_count": T.LABEL, + "input_blocking_button_base": T.BUTTON, + "details_button": T.BUTTON, + "dismiss_button": T.BUTTON, + "error_details_modal": T.PANEL, + "copy_path_button": T.BUTTON, + "hide_error_details_button": T.BUTTON, + "error_stack_scrolling_panel": T.PANEL, + "error_stack": T.STACK_PANEL, + "error_controller_panel": T.PANEL, + "error_controller_panel/error_message": T.STACK_PANEL, + "error_controller_panel/controller_button": T.BUTTON, + "error_controller_panel/controller_button/hover": T.IMAGE, + "error_controller_panel/controller_button/pressed": T.IMAGE, + "error_base": T.STACK_PANEL, + "error_base/error_message": T.LABEL, + "error_base/expand_button": T.BUTTON, + "error_short": T.PANEL, + "error_expanded": T.PANEL, } export type DiscoveryDialogType = { - service_body_label: T.LABEL - service_button: T.BUTTON - service_buttons: T.STACK_PANEL - content: T.STACK_PANEL - "content/body_text": T.PANEL - "content/text_to_button_padding": T.PANEL - "content/buttons": T.STACK_PANEL - service_dialog: T.INPUT_PANEL - discovery_dialog_factory: T.FACTORY + "service_body_label": T.LABEL, + "service_button": T.BUTTON, + "service_buttons": T.STACK_PANEL, + "content": T.STACK_PANEL, + "content/body_text": T.PANEL, + "content/text_to_button_padding": T.PANEL, + "content/buttons": T.STACK_PANEL, + "service_dialog": T.INPUT_PANEL, + "discovery_dialog_factory": T.FACTORY, } export type EduFeaturedType = { - featured_button_content: T.PANEL - "featured_button_content/button_label": T.LABEL - featured_button: T.BUTTON + "featured_button_content": T.PANEL, + "featured_button_content/button_label": T.LABEL, + "featured_button": T.BUTTON, } export type EduQuitButtonType = { - quit_button: T.BUTTON + "quit_button": T.BUTTON, } export type PersonaEmoteType = { - emote_wheel_screen: T.SCREEN - emote_wheel_touch_zone: T.BUTTON - emote_wheel_screen_content: T.STACK_PANEL - "emote_wheel_screen_content/top_padding": T.PANEL - "emote_wheel_screen_content/root_panel": T.PANEL - "emote_wheel_screen_content/root_panel/emotes_panel": T.PANEL - "emote_wheel_screen_content/instruction_padding": T.PANEL - "emote_wheel_screen_content/instruction_panel": T.PANEL - "emote_wheel_screen_content/instruction_panel/instruction_background": T.IMAGE - "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack": T.STACK_PANEL - "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/instruction_label_gamepad": T.LABEL - "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers": T.PANEL - "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack": T.STACK_PANEL - "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_start": T.STACK_PANEL - "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel": T.PANEL - "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel/gamepad_exit": T.LABEL - "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_keyboard": T.LABEL - "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_touch": T.LABEL - "emote_wheel_screen_content/dressing_room_button_panel": T.PANEL - "emote_wheel_screen_content/dressing_room_button_panel/dressing_room_button": T.BUTTON - "emote_wheel_screen_content/bottom_padding": T.PANEL - swap_emote_button: T.BUTTON + "emote_wheel_screen": T.SCREEN, + "emote_wheel_touch_zone": T.BUTTON, + "emote_wheel_screen_content": T.STACK_PANEL, + "emote_wheel_screen_content/top_padding": T.PANEL, + "emote_wheel_screen_content/root_panel": T.PANEL, + "emote_wheel_screen_content/root_panel/emotes_panel": T.PANEL, + "emote_wheel_screen_content/instruction_padding": T.PANEL, + "emote_wheel_screen_content/instruction_panel": T.PANEL, + "emote_wheel_screen_content/instruction_panel/instruction_background": T.IMAGE, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack": T.STACK_PANEL, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/instruction_label_gamepad": T.LABEL, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers": T.PANEL, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack": T.STACK_PANEL, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_start": T.STACK_PANEL, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel": T.PANEL, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel/gamepad_exit": T.LABEL, + "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_keyboard": T.LABEL, + "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_touch": T.LABEL, + "emote_wheel_screen_content/dressing_room_button_panel": T.PANEL, + "emote_wheel_screen_content/dressing_room_button_panel/dressing_room_button": T.BUTTON, + "emote_wheel_screen_content/bottom_padding": T.PANEL, + "swap_emote_button": T.BUTTON, } export type EnchantingType = { - enchanting_image: T.IMAGE - lapis_image: T.IMAGE - dust_image: T.IMAGE - dust_image_selectable: T.IMAGE - dust_image_unselectable: T.IMAGE - dust_template: T.PANEL - "dust_template/dust_image_selectable": T.IMAGE - "dust_template/dust_image_unselectable": T.IMAGE - dust_panel: T.GRID - "dust_panel/a": T.PANEL - "dust_panel/b": T.PANEL - "dust_panel/c": T.PANEL - background_with_hover_text: T.IMAGE - "background_with_hover_text/hover_text": T.CUSTOM - dark_background: T.IMAGE - dark_background_with_hover_text: T.IMAGE - active_background: T.IMAGE - active_background_with_hover_text: T.IMAGE - enchant_runes: T.LABEL - enchant_cost: T.LABEL - success_runes: T.LABEL - fail_runes: T.LABEL - success_cost: T.LABEL - fail_cost: T.LABEL - enchanting_label: T.LABEL - base_button: T.BUTTON - unselectable_button: T.BUTTON - "unselectable_button/default": T.IMAGE - "unselectable_button/hover": T.IMAGE - "unselectable_button/pressed": T.IMAGE - "unselectable_button/rune_text": T.LABEL - "unselectable_button/enchant_cost": T.LABEL - selectable_button: T.BUTTON - "selectable_button/default": T.IMAGE - "selectable_button/hover": T.IMAGE - "selectable_button/pressed": T.IMAGE - "selectable_button/rune_text": T.LABEL - "selectable_button/enchant_cost": T.LABEL - enchant_button_panel: T.PANEL - "enchant_button_panel/dark_background": T.IMAGE - "enchant_button_panel/unselectable_button": T.BUTTON - "enchant_button_panel/selectable_button": T.BUTTON - enchanting_panel_top_half: T.PANEL - "enchanting_panel_top_half/enchanting_label": T.LABEL - "enchanting_panel_top_half/enchanting_book_panel": T.PANEL - "enchanting_panel_top_half/enchanting_book_panel/enchanting_book": T.CUSTOM - "enchanting_panel_top_half/item_grid": T.GRID - "enchanting_panel_top_half/item_grid/item_slot": T.INPUT_PANEL - "enchanting_panel_top_half/lapis_grid": T.GRID - "enchanting_panel_top_half/lapis_grid/lapis": T.INPUT_PANEL - "enchanting_panel_top_half/grid_panel": T.PANEL - "enchanting_panel_top_half/grid_panel/indent": T.IMAGE - "enchanting_panel_top_half/grid_panel/dust_panel": T.GRID - "enchanting_panel_top_half/grid_panel/enchantments_grid": T.GRID - enchanting_panel: T.PANEL - "enchanting_panel/container_gamepad_helpers": T.STACK_PANEL - "enchanting_panel/selected_item_details_factory": T.FACTORY - "enchanting_panel/item_lock_notification_factory": T.FACTORY - "enchanting_panel/root_panel": T.INPUT_PANEL - "enchanting_panel/root_panel/common_panel": T.PANEL - "enchanting_panel/root_panel/enchanting_screen_inventory": T.PANEL - "enchanting_panel/root_panel/enchanting_screen_inventory/enchanting_panel_top_half": T.PANEL - "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL - "enchanting_panel/root_panel/enchanting_screen_inventory/hotbar_grid": T.GRID - "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_take_progress_icon_button": T.BUTTON - "enchanting_panel/root_panel/inventory_selected_icon_button": T.BUTTON - "enchanting_panel/root_panel/gamepad_cursor": T.BUTTON - "enchanting_panel/flying_item_renderer": T.CUSTOM - enchanting_screen: T.SCREEN + "enchanting_image": T.IMAGE, + "lapis_image": T.IMAGE, + "dust_image": T.IMAGE, + "dust_image_selectable": T.IMAGE, + "dust_image_unselectable": T.IMAGE, + "dust_template": T.PANEL, + "dust_template/dust_image_selectable": T.IMAGE, + "dust_template/dust_image_unselectable": T.IMAGE, + "dust_panel": T.GRID, + "dust_panel/a": T.PANEL, + "dust_panel/b": T.PANEL, + "dust_panel/c": T.PANEL, + "background_with_hover_text": T.IMAGE, + "background_with_hover_text/hover_text": T.CUSTOM, + "dark_background": T.IMAGE, + "dark_background_with_hover_text": T.IMAGE, + "active_background": T.IMAGE, + "active_background_with_hover_text": T.IMAGE, + "enchant_runes": T.LABEL, + "enchant_cost": T.LABEL, + "success_runes": T.LABEL, + "fail_runes": T.LABEL, + "success_cost": T.LABEL, + "fail_cost": T.LABEL, + "enchanting_label": T.LABEL, + "base_button": T.BUTTON, + "unselectable_button": T.BUTTON, + "unselectable_button/default": T.IMAGE, + "unselectable_button/hover": T.IMAGE, + "unselectable_button/pressed": T.IMAGE, + "unselectable_button/rune_text": T.LABEL, + "unselectable_button/enchant_cost": T.LABEL, + "selectable_button": T.BUTTON, + "selectable_button/default": T.IMAGE, + "selectable_button/hover": T.IMAGE, + "selectable_button/pressed": T.IMAGE, + "selectable_button/rune_text": T.LABEL, + "selectable_button/enchant_cost": T.LABEL, + "enchant_button_panel": T.PANEL, + "enchant_button_panel/dark_background": T.IMAGE, + "enchant_button_panel/unselectable_button": T.BUTTON, + "enchant_button_panel/selectable_button": T.BUTTON, + "enchanting_panel_top_half": T.PANEL, + "enchanting_panel_top_half/enchanting_label": T.LABEL, + "enchanting_panel_top_half/enchanting_book_panel": T.PANEL, + "enchanting_panel_top_half/enchanting_book_panel/enchanting_book": T.CUSTOM, + "enchanting_panel_top_half/item_grid": T.GRID, + "enchanting_panel_top_half/item_grid/item_slot": T.INPUT_PANEL, + "enchanting_panel_top_half/lapis_grid": T.GRID, + "enchanting_panel_top_half/lapis_grid/lapis": T.INPUT_PANEL, + "enchanting_panel_top_half/grid_panel": T.PANEL, + "enchanting_panel_top_half/grid_panel/indent": T.IMAGE, + "enchanting_panel_top_half/grid_panel/dust_panel": T.GRID, + "enchanting_panel_top_half/grid_panel/enchantments_grid": T.GRID, + "enchanting_panel": T.PANEL, + "enchanting_panel/container_gamepad_helpers": T.STACK_PANEL, + "enchanting_panel/selected_item_details_factory": T.FACTORY, + "enchanting_panel/item_lock_notification_factory": T.FACTORY, + "enchanting_panel/root_panel": T.INPUT_PANEL, + "enchanting_panel/root_panel/common_panel": T.PANEL, + "enchanting_panel/root_panel/enchanting_screen_inventory": T.PANEL, + "enchanting_panel/root_panel/enchanting_screen_inventory/enchanting_panel_top_half": T.PANEL, + "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL, + "enchanting_panel/root_panel/enchanting_screen_inventory/hotbar_grid": T.GRID, + "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_take_progress_icon_button": T.BUTTON, + "enchanting_panel/root_panel/inventory_selected_icon_button": T.BUTTON, + "enchanting_panel/root_panel/gamepad_cursor": T.BUTTON, + "enchanting_panel/flying_item_renderer": T.CUSTOM, + "enchanting_screen": T.SCREEN, } export type EnchantingPocketType = { - generic_label: T.LABEL - background_image: T.IMAGE - inventory_grid: T.GRID - inventory_content: T.PANEL - "inventory_content/scrolling_panel": T.PANEL - lapis_image: T.IMAGE - enchanting_slots_panel: T.PANEL - "enchanting_slots_panel/input_slot": T.INPUT_PANEL - "enchanting_slots_panel/lapis_slot": T.INPUT_PANEL - enchant_text_runes: T.LABEL - show_highlighted_slot_control: T.IMAGE - show_highlighted_hover_slot_control: T.IMAGE - inactive_background: T.IMAGE - unselectable_button: T.BUTTON - "unselectable_button/default": T.IMAGE - "unselectable_button/hover": T.IMAGE - "unselectable_button/pressed": T.IMAGE - "unselectable_button/enchant_cost": T.LABEL - selectable_button: T.BUTTON - "selectable_button/default": T.IMAGE - "selectable_button/hover": T.IMAGE - "selectable_button/pressed": T.IMAGE - "selectable_button/enchant_cost": T.LABEL - enchant_button_panel: T.PANEL - "enchant_button_panel/inactive_background": T.IMAGE - "enchant_button_panel/unselectable_button": T.BUTTON - "enchant_button_panel/selectable_button": T.BUTTON - "enchant_button_panel/dust": T.PANEL - "enchant_button_panel/rune_text": T.LABEL - "enchant_button_panel/highlight": T.IMAGE - enchant_selection_panel: T.PANEL - "enchant_selection_panel/grid": T.GRID - "enchant_selection_panel/grid/button1": T.PANEL - "enchant_selection_panel/grid/button2": T.PANEL - "enchant_selection_panel/grid/button3": T.PANEL - item_renderer: T.CUSTOM - confirm_default_control: T.IMAGE - enchanting_confirm_button: T.BUTTON - "enchanting_confirm_button/default": T.IMAGE - "enchanting_confirm_button/hover": T.IMAGE - "enchanting_confirm_button/pressed": T.IMAGE - "enchanting_confirm_button/arrow_active": T.IMAGE - "enchanting_confirm_button/arrow_inactive": T.IMAGE - "enchanting_confirm_button/input_item_renderer": T.CUSTOM - "enchanting_confirm_button/output_item_renderer": T.CUSTOM - enchanting_confirm_panel: T.PANEL - "enchanting_confirm_panel/confirm": T.BUTTON - "enchanting_confirm_panel/enchantment_hint_text": T.LABEL - enchanting_book_contents_panel: T.PANEL - "enchanting_book_contents_panel/enchanting_book": T.CUSTOM - "enchanting_book_contents_panel/player_level_label": T.LABEL - "enchanting_book_contents_panel/level_label": T.LABEL - enchanting_book_panel: T.PANEL - "enchanting_book_panel/enchanting_slots_panel": T.PANEL - enchanting_slots_and_selection: T.STACK_PANEL - "enchanting_slots_and_selection/enchanting_slots_panel": T.PANEL - "enchanting_slots_and_selection/pad1": T.PANEL - "enchanting_slots_and_selection/enchant_selection_panel": T.PANEL - enchanting_contents_panel: T.STACK_PANEL - "enchanting_contents_panel/fill1": T.PANEL - "enchanting_contents_panel/enchanting_book_panel": T.PANEL - "enchanting_contents_panel/pad1": T.PANEL - "enchanting_contents_panel/enchanting_slots_and_selection": T.STACK_PANEL - "enchanting_contents_panel/pad2": T.PANEL - "enchanting_contents_panel/enchanting_confirm_panel": T.PANEL - "enchanting_contents_panel/fill2": T.PANEL - header: T.PANEL - "header/header_background": T.IMAGE - "header/legacy_pocket_close_button": T.BUTTON - "header/panel": T.PANEL - "header/panel/title_label": T.LABEL - inventory_and_enchanting_panel: T.PANEL - "inventory_and_enchanting_panel/inventory_half_screen": T.PANEL - "inventory_and_enchanting_panel/inventory_half_screen/inventory_content": T.PANEL - "inventory_and_enchanting_panel/enchanting_half_screen": T.PANEL - "inventory_and_enchanting_panel/enchanting_half_screen/enchanting_content": T.STACK_PANEL - header_and_content_stack_panel: T.STACK_PANEL - "header_and_content_stack_panel/header": T.PANEL - "header_and_content_stack_panel/inventory_and_enchanting_panel": T.PANEL - error_text_panel: T.PANEL - "error_text_panel/item_text_label": T.LABEL - enchanting_panel: T.PANEL - "enchanting_panel/bg": T.IMAGE - "enchanting_panel/root_panel": T.INPUT_PANEL - "enchanting_panel/header_and_content_stack_panel": T.STACK_PANEL - "enchanting_panel/container_gamepad_helpers": T.STACK_PANEL - "enchanting_panel/inventory_selected_icon_button": T.BUTTON - "enchanting_panel/hold_icon": T.BUTTON - "enchanting_panel/selected_item_details_factory": T.FACTORY - "enchanting_panel/item_lock_notification_factory": T.FACTORY - "enchanting_panel/flying_item_renderer": T.CUSTOM + "generic_label": T.LABEL, + "background_image": T.IMAGE, + "inventory_grid": T.GRID, + "inventory_content": T.PANEL, + "inventory_content/scrolling_panel": T.PANEL, + "lapis_image": T.IMAGE, + "enchanting_slots_panel": T.PANEL, + "enchanting_slots_panel/input_slot": T.INPUT_PANEL, + "enchanting_slots_panel/lapis_slot": T.INPUT_PANEL, + "enchant_text_runes": T.LABEL, + "show_highlighted_slot_control": T.IMAGE, + "show_highlighted_hover_slot_control": T.IMAGE, + "inactive_background": T.IMAGE, + "unselectable_button": T.BUTTON, + "unselectable_button/default": T.IMAGE, + "unselectable_button/hover": T.IMAGE, + "unselectable_button/pressed": T.IMAGE, + "unselectable_button/enchant_cost": T.LABEL, + "selectable_button": T.BUTTON, + "selectable_button/default": T.IMAGE, + "selectable_button/hover": T.IMAGE, + "selectable_button/pressed": T.IMAGE, + "selectable_button/enchant_cost": T.LABEL, + "enchant_button_panel": T.PANEL, + "enchant_button_panel/inactive_background": T.IMAGE, + "enchant_button_panel/unselectable_button": T.BUTTON, + "enchant_button_panel/selectable_button": T.BUTTON, + "enchant_button_panel/dust": T.PANEL, + "enchant_button_panel/rune_text": T.LABEL, + "enchant_button_panel/highlight": T.IMAGE, + "enchant_selection_panel": T.PANEL, + "enchant_selection_panel/grid": T.GRID, + "enchant_selection_panel/grid/button1": T.PANEL, + "enchant_selection_panel/grid/button2": T.PANEL, + "enchant_selection_panel/grid/button3": T.PANEL, + "item_renderer": T.CUSTOM, + "confirm_default_control": T.IMAGE, + "enchanting_confirm_button": T.BUTTON, + "enchanting_confirm_button/default": T.IMAGE, + "enchanting_confirm_button/hover": T.IMAGE, + "enchanting_confirm_button/pressed": T.IMAGE, + "enchanting_confirm_button/arrow_active": T.IMAGE, + "enchanting_confirm_button/arrow_inactive": T.IMAGE, + "enchanting_confirm_button/input_item_renderer": T.CUSTOM, + "enchanting_confirm_button/output_item_renderer": T.CUSTOM, + "enchanting_confirm_panel": T.PANEL, + "enchanting_confirm_panel/confirm": T.BUTTON, + "enchanting_confirm_panel/enchantment_hint_text": T.LABEL, + "enchanting_book_contents_panel": T.PANEL, + "enchanting_book_contents_panel/enchanting_book": T.CUSTOM, + "enchanting_book_contents_panel/player_level_label": T.LABEL, + "enchanting_book_contents_panel/level_label": T.LABEL, + "enchanting_book_panel": T.PANEL, + "enchanting_book_panel/enchanting_slots_panel": T.PANEL, + "enchanting_slots_and_selection": T.STACK_PANEL, + "enchanting_slots_and_selection/enchanting_slots_panel": T.PANEL, + "enchanting_slots_and_selection/pad1": T.PANEL, + "enchanting_slots_and_selection/enchant_selection_panel": T.PANEL, + "enchanting_contents_panel": T.STACK_PANEL, + "enchanting_contents_panel/fill1": T.PANEL, + "enchanting_contents_panel/enchanting_book_panel": T.PANEL, + "enchanting_contents_panel/pad1": T.PANEL, + "enchanting_contents_panel/enchanting_slots_and_selection": T.STACK_PANEL, + "enchanting_contents_panel/pad2": T.PANEL, + "enchanting_contents_panel/enchanting_confirm_panel": T.PANEL, + "enchanting_contents_panel/fill2": T.PANEL, + "header": T.PANEL, + "header/header_background": T.IMAGE, + "header/legacy_pocket_close_button": T.BUTTON, + "header/panel": T.PANEL, + "header/panel/title_label": T.LABEL, + "inventory_and_enchanting_panel": T.PANEL, + "inventory_and_enchanting_panel/inventory_half_screen": T.PANEL, + "inventory_and_enchanting_panel/inventory_half_screen/inventory_content": T.PANEL, + "inventory_and_enchanting_panel/enchanting_half_screen": T.PANEL, + "inventory_and_enchanting_panel/enchanting_half_screen/enchanting_content": T.STACK_PANEL, + "header_and_content_stack_panel": T.STACK_PANEL, + "header_and_content_stack_panel/header": T.PANEL, + "header_and_content_stack_panel/inventory_and_enchanting_panel": T.PANEL, + "error_text_panel": T.PANEL, + "error_text_panel/item_text_label": T.LABEL, + "enchanting_panel": T.PANEL, + "enchanting_panel/bg": T.IMAGE, + "enchanting_panel/root_panel": T.INPUT_PANEL, + "enchanting_panel/header_and_content_stack_panel": T.STACK_PANEL, + "enchanting_panel/container_gamepad_helpers": T.STACK_PANEL, + "enchanting_panel/inventory_selected_icon_button": T.BUTTON, + "enchanting_panel/hold_icon": T.BUTTON, + "enchanting_panel/selected_item_details_factory": T.FACTORY, + "enchanting_panel/item_lock_notification_factory": T.FACTORY, + "enchanting_panel/flying_item_renderer": T.CUSTOM, } export type EncyclopediaType = { - encyclopedia_screen: T.SCREEN - encyclopedia_selector_stack_panel: T.STACK_PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane": T.STACK_PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/overworld_category": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_stand_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/banners_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beacons_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beds_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/blocks_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/book_and_quill_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/chests_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/conduits_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dyes_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/farming_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fireworks_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fishing_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jigsaw_blocks_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mounts_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/navigation_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/nether_portals_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/pets_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/raids_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/ranching_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/scaffolding_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/structure_blocks_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/tools_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/transportation_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/trading_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/weapons_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/stands_and_tables_category": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/anvil_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/brewing_stand_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/cauldron_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/crafting_table_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/enchanting_table_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/furnace_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/loom_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/smithing_table_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_engineering_category": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/droppers_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dispensers_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/hoppers_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jukebox_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_dimension_category": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/eye_of_ender_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/end_cities_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/elytra_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/shulker_boxes_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/options_and_cheats_category": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/game_settings_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/difficulty_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/adventure_mode_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/creative_mode_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/commands_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/host_and_player_options_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/command_blocks_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_category": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_stories_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/marketplace_category": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/minecoins_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/addons_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/worlds_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/textures_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/skins_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mashups_button": T.PANEL - encyclopedia_section_content_panels: T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/section_contents_header": T.INPUT_PANEL - "encyclopedia_section_content_panels/general_tips_sections/armor_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/armor_stand_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/banners_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/beacons_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/beds_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/blocks_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/book_and_quill_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/chests_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/conduits_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/dyes_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/farming_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/fireworks_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/fishing_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/jigsaw": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/mounts_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/navigation_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/nether_portals_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/pets_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/raids_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/ranching_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/scaffolding_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/structure_blocks_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/tools_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/transportation_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/trading_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/weapons_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/anvil_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/brewing_stand_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/cauldron_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/crafting_table_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/enchanting_table_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/furnace_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/loom_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/smithing_table_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/droppers_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/dispensers_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/hoppers_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/jukebox_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/redstone_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/the_end_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/eye_of_ender_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/end_cities_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/elytra_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/shulker_boxes_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/game_settings_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/difficulty_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/adventure_mode_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/creative_mode_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/commands_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/host_and_player_options_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/command_blocks_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/realms_stories_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/minecoins_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/addons_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/worlds_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/textures_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/skins_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/mashups_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/section_contents_footer": T.INPUT_PANEL - adventure_mode_button: T.PANEL - adventure_mode_section: T.STACK_PANEL - "adventure_mode_section/paragraph_1": T.PANEL - "adventure_mode_section/padding_1": T.PANEL - "adventure_mode_section/paragraph_2": T.PANEL - anvil_button: T.PANEL - anvil_section: T.STACK_PANEL - "anvil_section/paragraph_1": T.PANEL - "anvil_section/padding_1": T.PANEL - "anvil_section/header_1": T.PANEL - "anvil_section/paragraph_2": T.PANEL - "anvil_section/padding_2": T.PANEL - "anvil_section/header_2": T.PANEL - "anvil_section/paragraph_3": T.PANEL - "anvil_section/padding_3": T.PANEL - "anvil_section/paragraph_4": T.PANEL - "anvil_section/padding_4": T.PANEL - "anvil_section/paragraph_5": T.PANEL - armor_button: T.PANEL - armor_section: T.STACK_PANEL - "armor_section/paragraph_1": T.PANEL - "armor_section/padding_1": T.PANEL - "armor_section/header_1": T.PANEL - "armor_section/paragraph_2": T.PANEL - "armor_section/padding_2": T.PANEL - "armor_section/paragraph_3": T.PANEL - "armor_section/padding_3": T.PANEL - "armor_section/paragraph_4": T.PANEL - "armor_section/padding_4": T.PANEL - "armor_section/header_2": T.PANEL - "armor_section/paragraph_5_keyboard": T.PANEL - "armor_section/paragraph_5_gamepad": T.PANEL - "armor_section/paragraph_5a_touch": T.PANEL - "armor_section/padding_5a_touch": T.PANEL - "armor_section/paragraph_5b_touch": T.PANEL - "armor_section/padding_5b_touch": T.PANEL - "armor_section/paragraph_5c_touch": T.PANEL - "armor_section/padding_5": T.PANEL - "armor_section/paragraph_6": T.PANEL - "armor_section/padding_6": T.PANEL - "armor_section/header_3": T.PANEL - "armor_section/paragraph_7": T.PANEL - armor_stand_button: T.PANEL - armor_stand_section: T.STACK_PANEL - "armor_stand_section/paragraph_1": T.PANEL - "armor_stand_section/padding_1": T.PANEL - "armor_stand_section/header_1": T.PANEL - "armor_stand_section/paragraph_2_keyboard": T.PANEL - "armor_stand_section/paragraph_2_gamepad": T.PANEL - "armor_stand_section/paragraph_2_touch": T.PANEL - "armor_stand_section/padding_2": T.PANEL - "armor_stand_section/paragraph_3_keyboard": T.PANEL - "armor_stand_section/paragraph_3_gamepad": T.PANEL - "armor_stand_section/paragraph_3_touch": T.PANEL - "armor_stand_section/padding_3": T.PANEL - "armor_stand_section/header_2": T.PANEL - "armor_stand_section/paragraph_4_keyboard": T.PANEL - "armor_stand_section/paragraph_4_gamepad": T.PANEL - "armor_stand_section/paragraph_4_touch": T.PANEL - "armor_stand_section/padding_4": T.PANEL - "armor_stand_section/header_3": T.PANEL - "armor_stand_section/paragraph_5": T.PANEL - banners_button: T.PANEL - banners_section: T.STACK_PANEL - "banners_section/paragraph_1": T.PANEL - "banners_section/padding_1": T.PANEL - "banners_section/paragraph_2": T.PANEL - "banners_section/padding_2": T.PANEL - "banners_section/header_1": T.PANEL - "banners_section/paragraph_3": T.PANEL - "banners_section/padding_3": T.PANEL - "banners_section/paragraph_4": T.PANEL - "banners_section/padding_4": T.PANEL - "banners_section/paragraph_5": T.PANEL - "banners_section/padding_5": T.PANEL - "banners_section/paragraph_6": T.PANEL - "banners_section/padding_6": T.PANEL - "banners_section/paragraph_7": T.PANEL - "banners_section/padding_7": T.PANEL - "banners_section/header_2": T.PANEL - "banners_section/paragraph_8": T.PANEL - "banners_section/padding_8": T.PANEL - "banners_section/header_3": T.PANEL - "banners_section/paragraph_9": T.PANEL - beacons_button: T.PANEL - beacons_section: T.STACK_PANEL - "beacons_section/paragraph_1": T.PANEL - "beacons_section/padding_1": T.PANEL - "beacons_section/paragraph_2": T.PANEL - "beacons_section/padding_2": T.PANEL - "beacons_section/header_1": T.PANEL - "beacons_section/paragraph_3": T.PANEL - "beacons_section/padding_3": T.PANEL - "beacons_section/paragraph_4": T.PANEL - "beacons_section/padding_4": T.PANEL - "beacons_section/header_2": T.PANEL - "beacons_section/paragraph_5": T.PANEL - "beacons_section/padding_5": T.PANEL - "beacons_section/paragraph_6": T.PANEL - "beacons_section/padding_6": T.PANEL - "beacons_section/paragraph_7": T.PANEL - "beacons_section/padding_7": T.PANEL - "beacons_section/paragraph_8": T.PANEL - conduits_button: T.PANEL - conduits_section: T.STACK_PANEL - "conduits_section/paragraph_1": T.PANEL - "conduits_section/padding_1": T.PANEL - "conduits_section/paragraph_2": T.PANEL - "conduits_section/padding_2": T.PANEL - "conduits_section/header_1": T.PANEL - "conduits_section/paragraph_3": T.PANEL - "conduits_section/padding_3": T.PANEL - "conduits_section/paragraph_4": T.PANEL - beds_button: T.PANEL - beds_section: T.STACK_PANEL - "beds_section/paragraph_1": T.PANEL - "beds_section/padding_1": T.PANEL - "beds_section/paragraph_2_keyboard": T.PANEL - "beds_section/paragraph_2_gamepad": T.PANEL - "beds_section/paragraph_2_touch": T.PANEL - "beds_section/padding_2": T.PANEL - "beds_section/paragraph_3": T.PANEL - "beds_section/padding_3": T.PANEL - "beds_section/paragraph_4": T.PANEL - "beds_section/padding_4": T.PANEL - "beds_section/paragraph_5": T.PANEL - blocks_button: T.PANEL - blocks_section: T.STACK_PANEL - "blocks_section/paragraph_1": T.PANEL - "blocks_section/padding_1": T.PANEL - "blocks_section/paragraph_2": T.PANEL - "blocks_section/padding_2": T.PANEL - "blocks_section/header_1": T.PANEL - "blocks_section/paragraph_3": T.PANEL - "blocks_section/padding_3": T.PANEL - "blocks_section/header_2": T.PANEL - "blocks_section/paragraph_4": T.PANEL - "blocks_section/padding_4": T.PANEL - "blocks_section/paragraph_5": T.PANEL - "blocks_section/padding_5": T.PANEL - "blocks_section/paragraph_6": T.PANEL - "blocks_section/padding_6": T.PANEL - "blocks_section/paragraph_7": T.PANEL - "blocks_section/padding_7": T.PANEL - "blocks_section/paragraph_8": T.PANEL - "blocks_section/padding_8": T.PANEL - "blocks_section/paragraph_9": T.PANEL - book_and_quill_button: T.PANEL - book_and_quill_section: T.STACK_PANEL - "book_and_quill_section/paragraph_1": T.PANEL - brewing_stand_button: T.PANEL - brewing_stand_section: T.STACK_PANEL - "brewing_stand_section/paragraph_1": T.PANEL - "brewing_stand_section/padding_1": T.PANEL - "brewing_stand_section/header_1": T.PANEL - "brewing_stand_section/paragraph_2": T.PANEL - "brewing_stand_section/padding_2": T.PANEL - "brewing_stand_section/header_2": T.PANEL - "brewing_stand_section/paragraph_3": T.PANEL - "brewing_stand_section/padding_3": T.PANEL - "brewing_stand_section/paragraph_4": T.PANEL - cauldron_button: T.PANEL - cauldron_section: T.STACK_PANEL - "cauldron_section/paragraph_1": T.PANEL - "cauldron_section/padding_1": T.PANEL - "cauldron_section/header_1": T.PANEL - "cauldron_section/paragraph_2_keyboard": T.PANEL - "cauldron_section/paragraph_2_gamepad": T.PANEL - "cauldron_section/paragraph_2_touch": T.PANEL - "cauldron_section/padding_2": T.PANEL - "cauldron_section/paragraph_3": T.PANEL - "cauldron_section/padding_3": T.PANEL - "cauldron_section/header_2": T.PANEL - "cauldron_section/paragraph_4_keyboard": T.PANEL - "cauldron_section/paragraph_4_gamepad": T.PANEL - "cauldron_section/paragraph_4_touch": T.PANEL - "cauldron_section/padding_4": T.PANEL - "cauldron_section/header_3": T.PANEL - "cauldron_section/paragraph_5_keyboard": T.PANEL - "cauldron_section/paragraph_5_gamepad": T.PANEL - "cauldron_section/paragraph_5_touch": T.PANEL - "cauldron_section/padding_5": T.PANEL - "cauldron_section/paragraph_6": T.PANEL - chests_button: T.PANEL - chests_section: T.STACK_PANEL - "chests_section/paragraph_1_keyboard": T.PANEL - "chests_section/paragraph_1_gamepad": T.PANEL - "chests_section/paragraph_1_touch": T.PANEL - "chests_section/padding_1": T.PANEL - "chests_section/paragraph_2": T.PANEL - "chests_section/padding_2": T.PANEL - "chests_section/paragraph_3": T.PANEL - command_blocks_button: T.PANEL - command_blocks_section: T.STACK_PANEL - "command_blocks_section/paragraph_1": T.PANEL - "command_blocks_section/padding_1": T.PANEL - "command_blocks_section/paragraph_2": T.PANEL - "command_blocks_section/padding_2": T.PANEL - "command_blocks_section/paragraph_3": T.PANEL - "command_blocks_section/padding_3": T.PANEL - "command_blocks_section/paragraph_4": T.PANEL - "command_blocks_section/padding_4": T.PANEL - "command_blocks_section/paragraph_5": T.PANEL - "command_blocks_section/paragraph_5_1": T.PANEL - "command_blocks_section/paragraph_5_2": T.PANEL - "command_blocks_section/paragraph_5_3": T.PANEL - "command_blocks_section/padding_5": T.PANEL - "command_blocks_section/paragraph_6": T.PANEL - "command_blocks_section/paragraph_6_1": T.PANEL - "command_blocks_section/paragraph_6_2": T.PANEL - "command_blocks_section/padding_6": T.PANEL - "command_blocks_section/paragraph_7": T.PANEL - "command_blocks_section/paragraph_7_1": T.PANEL - "command_blocks_section/paragraph_7_2": T.PANEL - "command_blocks_section/padding_7": T.PANEL - "command_blocks_section/paragraph_8": T.PANEL - commands_button: T.PANEL - commands_section: T.STACK_PANEL - "commands_section/paragraph_1": T.PANEL - "commands_section/padding_1": T.PANEL - "commands_section/paragraph_2": T.PANEL - crafting_table_button: T.PANEL - crafting_table_section: T.STACK_PANEL - "crafting_table_section/paragraph_1": T.PANEL - "crafting_table_section/padding_1": T.PANEL - "crafting_table_section/paragraph_2_keyboard": T.PANEL - "crafting_table_section/paragraph_2_gamepad": T.PANEL - "crafting_table_section/paragraph_2_touch": T.PANEL - creative_mode_button: T.PANEL - creative_mode_section: T.STACK_PANEL - "creative_mode_section/paragraph_1": T.PANEL - "creative_mode_section/padding_1": T.PANEL - "creative_mode_section/header_1": T.PANEL - "creative_mode_section/paragraph_2": T.PANEL - "creative_mode_section/padding_2": T.PANEL - "creative_mode_section/paragraph_3": T.PANEL - "creative_mode_section/padding_3": T.PANEL - "creative_mode_section/header_2": T.PANEL - "creative_mode_section/paragraph_4_keyboard": T.PANEL - "creative_mode_section/paragraph_4_gamepad": T.PANEL - "creative_mode_section/paragraph_4a_touch_joystick_tap": T.PANEL - "creative_mode_section/paragraph_4a_touch_classic_dpad": T.PANEL - "creative_mode_section/paragraph_4a_touch_joystick_crosshair": T.PANEL - "creative_mode_section/padding_4a_touch": T.PANEL - "creative_mode_section/paragraph_4b_touch_joystick_tap": T.PANEL - "creative_mode_section/paragraph_4b_touch_classic_dpad": T.PANEL - "creative_mode_section/paragraph_4b_touch_joystick_crosshair": T.PANEL - difficulty_button: T.PANEL - difficulty_section: T.STACK_PANEL - "difficulty_section/paragraph_1": T.PANEL - "difficulty_section/padding_1": T.PANEL - "difficulty_section/header_1": T.PANEL - "difficulty_section/paragraph_2": T.PANEL - "difficulty_section/padding_2": T.PANEL - "difficulty_section/header_2": T.PANEL - "difficulty_section/paragraph_3": T.PANEL - "difficulty_section/padding_3": T.PANEL - "difficulty_section/header_3": T.PANEL - "difficulty_section/paragraph_4": T.PANEL - "difficulty_section/padding_4": T.PANEL - "difficulty_section/header_4": T.PANEL - "difficulty_section/paragraph_5": T.PANEL - dispensers_button: T.PANEL - dispensers_section: T.STACK_PANEL - "dispensers_section/paragraph_1": T.PANEL - "dispensers_section/padding_1": T.PANEL - "dispensers_section/paragraph_2_keyboard": T.PANEL - "dispensers_section/paragraph_2_gamepad": T.PANEL - "dispensers_section/paragraph_2_touch": T.PANEL - "dispensers_section/padding_2": T.PANEL - "dispensers_section/header_1": T.PANEL - "dispensers_section/paragraph_3": T.PANEL - "dispensers_section/padding_3": T.PANEL - "dispensers_section/paragraph_4": T.PANEL - droppers_button: T.PANEL - droppers_section: T.STACK_PANEL - "droppers_section/paragraph_1_keyboard": T.PANEL - "droppers_section/paragraph_1_gamepad": T.PANEL - "droppers_section/paragraph_1_touch": T.PANEL - "droppers_section/padding_1": T.PANEL - "droppers_section/header_1": T.PANEL - "droppers_section/paragraph_2": T.PANEL - dyes_button: T.PANEL - dyes_section: T.STACK_PANEL - "dyes_section/paragraph_1": T.PANEL - "dyes_section/padding_1": T.PANEL - "dyes_section/paragraph_2": T.PANEL - "dyes_section/padding_2": T.PANEL - "dyes_section/paragraph_3": T.PANEL - "dyes_section/padding_3": T.PANEL - "dyes_section/paragraph_4": T.PANEL - "dyes_section/padding_4": T.PANEL - "dyes_section/paragraph_5": T.PANEL - "dyes_section/padding_5": T.PANEL - "dyes_section/paragraph_6": T.PANEL - "dyes_section/padding_6": T.PANEL - "dyes_section/paragraph_7": T.PANEL - elytra_button: T.PANEL - elytra_section: T.STACK_PANEL - "elytra_section/paragraph_1": T.PANEL - "elytra_section/padding_1": T.PANEL - "elytra_section/paragraph_2": T.PANEL - "elytra_section/padding_2": T.PANEL - "elytra_section/header_1": T.PANEL - "elytra_section/paragraph_3_keyboard": T.PANEL - "elytra_section/paragraph_3_gamepad": T.PANEL - "elytra_section/paragraph_3_touch": T.PANEL - "elytra_section/padding_3": T.PANEL - "elytra_section/paragraph_4": T.PANEL - "elytra_section/paragraph_4_touch": T.PANEL - "elytra_section/padding_4": T.PANEL - "elytra_section/paragraph_5": T.PANEL - "elytra_section/padding_5": T.PANEL - "elytra_section/header_2": T.PANEL - "elytra_section/paragraph_6": T.PANEL - enchanting_table_button: T.PANEL - enchanting_table_section: T.STACK_PANEL - "enchanting_table_section/paragraph_1": T.PANEL - "enchanting_table_section/padding_1": T.PANEL - "enchanting_table_section/header_1": T.PANEL - "enchanting_table_section/paragraph_2": T.PANEL - "enchanting_table_section/padding_2": T.PANEL - "enchanting_table_section/paragraph_3": T.PANEL - "enchanting_table_section/padding_3": T.PANEL - "enchanting_table_section/header_2": T.PANEL - "enchanting_table_section/paragraph_4": T.PANEL - "enchanting_table_section/padding_4": T.PANEL - "enchanting_table_section/header_3": T.PANEL - "enchanting_table_section/paragraph_5": T.PANEL - end_cities_button: T.PANEL - end_cities_section: T.STACK_PANEL - "end_cities_section/paragraph_1": T.PANEL - "end_cities_section/padding_1": T.PANEL - "end_cities_section/paragraph_2": T.PANEL - eye_of_ender_button: T.PANEL - eye_of_ender_section: T.STACK_PANEL - "eye_of_ender_section/paragraph_1": T.PANEL - "eye_of_ender_section/padding_1": T.PANEL - "eye_of_ender_section/paragraph_2": T.PANEL - farming_button: T.PANEL - farming_section: T.STACK_PANEL - "farming_section/paragraph_1": T.PANEL - "farming_section/padding_1": T.PANEL - "farming_section/header_1": T.PANEL - "farming_section/paragraph_2": T.PANEL - "farming_section/padding_2": T.PANEL - "farming_section/paragraph_3": T.PANEL - "farming_section/padding_3": T.PANEL - "farming_section/header_2": T.PANEL - "farming_section/paragraph_4": T.PANEL - "farming_section/padding_4": T.PANEL - "farming_section/paragraph_5": T.PANEL - "farming_section/padding_5": T.PANEL - "farming_section/paragraph_6": T.PANEL - "farming_section/padding_6": T.PANEL - "farming_section/paragraph_7": T.PANEL - fireworks_button: T.PANEL - fireworks_section: T.STACK_PANEL - "fireworks_section/paragraph_1": T.PANEL - "fireworks_section/padding_1": T.PANEL - "fireworks_section/paragraph_2": T.PANEL - "fireworks_section/padding_2": T.PANEL - "fireworks_section/header_1": T.PANEL - "fireworks_section/paragraph_3_keyboard": T.PANEL - "fireworks_section/paragraph_3_gamepad": T.PANEL - "fireworks_section/paragraph_3_touch": T.PANEL - "fireworks_section/padding_3": T.PANEL - "fireworks_section/paragraph_4": T.PANEL - "fireworks_section/padding_4": T.PANEL - "fireworks_section/header_2": T.PANEL - "fireworks_section/paragraph_5": T.PANEL - "fireworks_section/padding_5": T.PANEL - "fireworks_section/paragraph_6": T.PANEL - "fireworks_section/padding_5a": T.PANEL - "fireworks_section/paragraph_6_1": T.PANEL - "fireworks_section/padding_5b": T.PANEL - "fireworks_section/paragraph_6_2": T.PANEL - "fireworks_section/padding_5c": T.PANEL - "fireworks_section/paragraph_6_3": T.PANEL - "fireworks_section/padding_5d": T.PANEL - "fireworks_section/paragraph_6_4": T.PANEL - "fireworks_section/padding_5e": T.PANEL - "fireworks_section/paragraph_6_5": T.PANEL - "fireworks_section/padding_5f": T.PANEL - "fireworks_section/paragraph_6_6": T.PANEL - "fireworks_section/padding_6": T.PANEL - "fireworks_section/header_3": T.PANEL - "fireworks_section/paragraph_7": T.PANEL - jigsaw_blocks_button: T.PANEL - jigsaw_blocks_section: T.STACK_PANEL - "jigsaw_blocks_section/paragraph_1": T.PANEL - "jigsaw_blocks_section/padding_1": T.PANEL - "jigsaw_blocks_section/header_1": T.PANEL - "jigsaw_blocks_section/paragraph_2": T.PANEL - "jigsaw_blocks_section/padding_2": T.PANEL - "jigsaw_blocks_section/header_2": T.PANEL - "jigsaw_blocks_section/paragraph_3": T.PANEL - "jigsaw_blocks_section/padding_3": T.PANEL - "jigsaw_blocks_section/paragraph_4": T.PANEL - "jigsaw_blocks_section/padding_4": T.PANEL - "jigsaw_blocks_section/paragraph_5": T.PANEL - "jigsaw_blocks_section/padding_5": T.PANEL - "jigsaw_blocks_section/paragraph_6": T.PANEL - "jigsaw_blocks_section/padding_6": T.PANEL - "jigsaw_blocks_section/paragraph_7": T.PANEL - "jigsaw_blocks_section/padding_7": T.PANEL - "jigsaw_blocks_section/paragraph_8": T.PANEL - "jigsaw_blocks_section/padding_8": T.PANEL - "jigsaw_blocks_section/paragraph_9": T.PANEL - fishing_button: T.PANEL - fishing_section: T.STACK_PANEL - "fishing_section/paragraph_1": T.PANEL - "fishing_section/padding_1": T.PANEL - "fishing_section/header_1": T.PANEL - "fishing_section/paragraph_2_keyboard": T.PANEL - "fishing_section/paragraph_2_gamepad": T.PANEL - "fishing_section/paragraph_2_touch": T.PANEL - "fishing_section/padding_2": T.PANEL - "fishing_section/header_2": T.PANEL - "fishing_section/paragraph_3": T.PANEL - "fishing_section/padding_3": T.PANEL - "fishing_section/paragraph_4_keyboard": T.PANEL - "fishing_section/paragraph_4_gamepad": T.PANEL - "fishing_section/paragraph_4_touch": T.PANEL - furnace_button: T.PANEL - furnace_section: T.STACK_PANEL - "furnace_section/paragraph_1": T.PANEL - "furnace_section/padding_1": T.PANEL - "furnace_section/paragraph_2_keyboard": T.PANEL - "furnace_section/paragraph_2_gamepad": T.PANEL - "furnace_section/paragraph_2_touch": T.PANEL - "furnace_section/padding_2": T.PANEL - "furnace_section/paragraph_3": T.PANEL - game_settings_button: T.PANEL - game_settings_section: T.STACK_PANEL - "game_settings_section/paragraph_1": T.PANEL - "game_settings_section/padding_1": T.PANEL - "game_settings_section/paragraph_2": T.PANEL - "game_settings_section/padding_2": T.PANEL - "game_settings_section/paragraph_3": T.PANEL - "game_settings_section/padding_3": T.PANEL - "game_settings_section/paragraph_4": T.PANEL - "game_settings_section/padding_4": T.PANEL - "game_settings_section/header_1": T.PANEL - "game_settings_section/paragraph_5": T.PANEL - "game_settings_section/padding_5": T.PANEL - "game_settings_section/paragraph_6": T.PANEL - "game_settings_section/padding_6": T.PANEL - "game_settings_section/paragraph_7": T.PANEL - "game_settings_section/paragraph_7_1": T.PANEL - "game_settings_section/paragraph_7_2": T.PANEL - "game_settings_section/padding_7": T.PANEL - "game_settings_section/paragraph_8": T.PANEL - "game_settings_section/padding_8": T.PANEL - "game_settings_section/header_2": T.PANEL - "game_settings_section/paragraph_9": T.PANEL - "game_settings_section/padding_9": T.PANEL - "game_settings_section/paragraph_10": T.PANEL - "game_settings_section/padding_10": T.PANEL - "game_settings_section/paragraph_11": T.PANEL - "game_settings_section/padding_11": T.PANEL - "game_settings_section/paragraph_12": T.PANEL - "game_settings_section/padding_12": T.PANEL - "game_settings_section/paragraph_13": T.PANEL - "game_settings_section/padding_13": T.PANEL - "game_settings_section/paragraph_14": T.PANEL - "game_settings_section/padding_14": T.PANEL - "game_settings_section/paragraph_15": T.PANEL - "game_settings_section/padding_15": T.PANEL - "game_settings_section/paragraph_16": T.PANEL - "game_settings_section/padding_16": T.PANEL - "game_settings_section/paragraph_17": T.PANEL - hoppers_button: T.PANEL - hoppers_section: T.STACK_PANEL - "hoppers_section/paragraph_1": T.PANEL - "hoppers_section/padding_1": T.PANEL - "hoppers_section/paragraph_2": T.PANEL - "hoppers_section/padding_2": T.PANEL - "hoppers_section/header_1": T.PANEL - "hoppers_section/paragraph_3": T.PANEL - "hoppers_section/padding_3": T.PANEL - "hoppers_section/paragraph_4": T.PANEL - host_and_player_options_button: T.PANEL - host_and_player_options_section: T.STACK_PANEL - "host_and_player_options_section/paragraph_1_not_touch": T.PANEL - "host_and_player_options_section/paragraph_1_touch": T.PANEL - jukebox_button: T.PANEL - jukebox_section: T.STACK_PANEL - "jukebox_section/paragraph_1": T.PANEL - "jukebox_section/padding_1": T.PANEL - "jukebox_section/header_1": T.PANEL - "jukebox_section/paragraph_2_not_touch": T.PANEL - "jukebox_section/paragraph_2_touch": T.PANEL - "jukebox_section/padding_2": T.PANEL - "jukebox_section/header_2": T.PANEL - "jukebox_section/paragraph_3": T.PANEL - "jukebox_section/padding_3": T.PANEL - "jukebox_section/paragraph_4": T.PANEL - "jukebox_section/padding_4": T.PANEL - "jukebox_section/paragraph_5": T.PANEL - "jukebox_section/padding_5": T.PANEL - "jukebox_section/paragraph_6": T.PANEL - "jukebox_section/padding_6": T.PANEL - "jukebox_section/header_3": T.PANEL - "jukebox_section/paragraph_7": T.PANEL - "jukebox_section/padding_7": T.PANEL - "jukebox_section/paragraph_8": T.PANEL - loom_button: T.PANEL - loom_section: T.STACK_PANEL - "loom_section/paragraph_1": T.PANEL - "loom_section/padding_1": T.PANEL - "loom_section/header_1": T.PANEL - "loom_section/paragraph_2": T.PANEL - "loom_section/padding_2": T.PANEL - "loom_section/paragraph_3": T.PANEL - "loom_section/padding_3": T.PANEL - "loom_section/header_2": T.PANEL - "loom_section/paragraph_4": T.PANEL - realms_stories_button: T.PANEL - realms_stories_section: T.STACK_PANEL - "realms_stories_section/paragraph_1": T.PANEL - "realms_stories_section/padding_1": T.PANEL - "realms_stories_section/header_1": T.PANEL - "realms_stories_section/paragraph_2": T.PANEL - "realms_stories_section/padding_2": T.PANEL - "realms_stories_section/header_2": T.PANEL - "realms_stories_section/paragraph_3": T.PANEL - "realms_stories_section/padding_3": T.PANEL - "realms_stories_section/header_3": T.PANEL - "realms_stories_section/paragraph_4": T.PANEL - "realms_stories_section/padding_4": T.PANEL - "realms_stories_section/header_4": T.PANEL - "realms_stories_section/paragraph_5": T.PANEL - "realms_stories_section/padding_5": T.PANEL - "realms_stories_section/header_5": T.PANEL - "realms_stories_section/paragraph_6": T.PANEL - smithing_table_button: T.PANEL - smithing_table_section: T.STACK_PANEL - "smithing_table_section/paragraph_1": T.PANEL - "smithing_table_section/padding_1": T.PANEL - "smithing_table_section/paragraph_2": T.PANEL - "smithing_table_section/padding_2": T.PANEL - "smithing_table_section/header_1": T.PANEL - "smithing_table_section/paragraph_3": T.PANEL - "smithing_table_section/padding_3": T.PANEL - "smithing_table_section/paragraph_4": T.PANEL - "smithing_table_section/padding_4": T.PANEL - "smithing_table_section/paragraph_5": T.PANEL - "smithing_table_section/padding_5": T.PANEL - "smithing_table_section/paragraph_6": T.PANEL - "smithing_table_section/padding_6": T.PANEL - "smithing_table_section/header_2": T.PANEL - "smithing_table_section/paragraph_7": T.PANEL - "smithing_table_section/padding_7": T.PANEL - "smithing_table_section/paragraph_8": T.PANEL - "smithing_table_section/padding_8": T.PANEL - "smithing_table_section/paragraph_9": T.PANEL - mounts_button: T.PANEL - mounts_section: T.STACK_PANEL - "mounts_section/paragraph_1": T.PANEL - "mounts_section/padding_1": T.PANEL - "mounts_section/paragraph_2": T.PANEL - "mounts_section/padding_2": T.PANEL - "mounts_section/header_1": T.PANEL - "mounts_section/paragraph_3_not_touch": T.PANEL - "mounts_section/paragraph_3_touch": T.PANEL - "mounts_section/padding_3": T.PANEL - "mounts_section/paragraph_4": T.PANEL - "mounts_section/padding_4": T.PANEL - "mounts_section/header_2": T.PANEL - "mounts_section/paragraph_5": T.PANEL - "mounts_section/padding_5": T.PANEL - "mounts_section/paragraph_6": T.PANEL - "mounts_section/padding_6": T.PANEL - "mounts_section/paragraph_6b": T.PANEL - "mounts_section/padding_6b": T.PANEL - "mounts_section/paragraph_7": T.PANEL - "mounts_section/padding_7": T.PANEL - "mounts_section/paragraph_8": T.PANEL - "mounts_section/padding_8": T.PANEL - "mounts_section/header_3": T.PANEL - "mounts_section/paragraph_9": T.PANEL - "mounts_section/padding_9": T.PANEL - "mounts_section/paragraph_10": T.PANEL - "mounts_section/padding_10": T.PANEL - "mounts_section/paragraph_11": T.PANEL - "mounts_section/padding_11": T.PANEL - "mounts_section/paragraph_12": T.PANEL - "mounts_section/padding_12": T.PANEL - "mounts_section/header_4": T.PANEL - "mounts_section/paragraph_13": T.PANEL - "mounts_section/padding_13": T.PANEL - "mounts_section/paragraph_14": T.PANEL - "mounts_section/padding_14": T.PANEL - "mounts_section/header_5": T.PANEL - "mounts_section/paragraph_15_not_touch": T.PANEL - "mounts_section/paragraph_15a_touch": T.PANEL - "mounts_section/padding_15": T.PANEL - "mounts_section/paragraph_15b_touch": T.PANEL - navigation_button: T.PANEL - navigation_section: T.STACK_PANEL - "navigation_section/paragraph_1": T.PANEL - "navigation_section/padding_1": T.PANEL - "navigation_section/paragraph_2": T.PANEL - "navigation_section/padding_2": T.PANEL - "navigation_section/header_1": T.PANEL - "navigation_section/paragraph_3": T.PANEL - "navigation_section/padding_3": T.PANEL - "navigation_section/paragraph_4": T.PANEL - "navigation_section/padding_4": T.PANEL - "navigation_section/paragraph_5": T.PANEL - "navigation_section/padding_5": T.PANEL - "navigation_section/paragraph_6": T.PANEL - "navigation_section/padding_6": T.PANEL - "navigation_section/paragraph_7": T.PANEL - "navigation_section/padding_7": T.PANEL - "navigation_section/header_2": T.PANEL - "navigation_section/paragraph_8": T.PANEL - "navigation_section/padding_8": T.PANEL - "navigation_section/paragraph_9": T.PANEL - "navigation_section/padding_9": T.PANEL - "navigation_section/header_3": T.PANEL - "navigation_section/paragraph_10": T.PANEL - nether_portals_button: T.PANEL - nether_portals_section: T.STACK_PANEL - "nether_portals_section/paragraph_1": T.PANEL - "nether_portals_section/padding_1": T.PANEL - "nether_portals_section/paragraph_2": T.PANEL - "nether_portals_section/padding_2": T.PANEL - "nether_portals_section/paragraph_3": T.PANEL - "nether_portals_section/padding_3": T.PANEL - "nether_portals_section/image_1": T.IMAGE - pets_button: T.PANEL - pets_section: T.STACK_PANEL - "pets_section/header_1": T.PANEL - "pets_section/paragraph_1_not_touch": T.PANEL - "pets_section/paragraph_1_touch": T.PANEL - "pets_section/padding_1": T.PANEL - "pets_section/header_2": T.PANEL - "pets_section/paragraph_2": T.PANEL - "pets_section/padding_2": T.PANEL - "pets_section/header_3": T.PANEL - "pets_section/paragraph_3": T.PANEL - "pets_section/padding_3": T.PANEL - "pets_section/header_4": T.PANEL - "pets_section/paragraph_4": T.PANEL - raids_button: T.PANEL - raids_section: T.STACK_PANEL - "raids_section/paragraph_1": T.PANEL - "raids_section/padding_1": T.PANEL - "raids_section/paragraph_2": T.PANEL - "raids_section/padding_2": T.PANEL - "raids_section/header_1": T.PANEL - "raids_section/paragraph_3": T.PANEL - ranching_button: T.PANEL - ranching_section: T.STACK_PANEL - "ranching_section/paragraph_1": T.PANEL - "ranching_section/padding_1": T.PANEL - "ranching_section/header_1": T.PANEL - "ranching_section/paragraph_2": T.PANEL - "ranching_section/padding_2": T.PANEL - "ranching_section/paragraph_3": T.PANEL - "ranching_section/padding_3": T.PANEL - "ranching_section/header_2": T.PANEL - "ranching_section/paragraph_4": T.PANEL - "ranching_section/padding_4": T.PANEL - "ranching_section/paragraph_5": T.PANEL - redstone_button: T.PANEL - redstone_section: T.STACK_PANEL - "redstone_section/paragraph_1": T.PANEL - "redstone_section/padding_1": T.PANEL - "redstone_section/header_1": T.PANEL - "redstone_section/paragraph_2": T.PANEL - "redstone_section/padding_2": T.PANEL - "redstone_section/paragraph_3": T.PANEL - "redstone_section/padding_3": T.PANEL - "redstone_section/paragraph_4": T.PANEL - "redstone_section/padding_4": T.PANEL - "redstone_section/paragraph_5": T.PANEL - scaffolding_button: T.PANEL - scaffolding_section: T.STACK_PANEL - "scaffolding_section/header_1": T.PANEL - "scaffolding_section/paragraph_1_keyboard": T.PANEL - "scaffolding_section/paragraph_1_gamepad": T.PANEL - "scaffolding_section/paragraph_1a_touch": T.PANEL - "scaffolding_section/padding_1a_touch": T.PANEL - "scaffolding_section/paragraph_1b_touch": T.PANEL - "scaffolding_section/padding_1b_touch": T.PANEL - "scaffolding_section/paragraph_1c_touch": T.PANEL - "scaffolding_section/padding_1": T.PANEL - "scaffolding_section/header_2": T.PANEL - "scaffolding_section/paragraph_2": T.PANEL - "scaffolding_section/image_1": T.IMAGE - "scaffolding_section/padding_2": T.PANEL - "scaffolding_section/header_3": T.PANEL - "scaffolding_section/paragraph_3": T.PANEL - "scaffolding_section/padding_3": T.PANEL - structure_blocks_button: T.PANEL - structure_blocks_section: T.STACK_PANEL - "structure_blocks_section/paragraph_1": T.PANEL - "structure_blocks_section/padding_1": T.PANEL - "structure_blocks_section/header_1": T.PANEL - "structure_blocks_section/paragraph_2": T.PANEL - "structure_blocks_section/padding_2": T.PANEL - "structure_blocks_section/header_2": T.PANEL - "structure_blocks_section/paragraph_3": T.PANEL - "structure_blocks_section/padding_3": T.PANEL - "structure_blocks_section/paragraph_4": T.PANEL - "structure_blocks_section/padding_4": T.PANEL - "structure_blocks_section/paragraph_5": T.PANEL - "structure_blocks_section/padding_5": T.PANEL - "structure_blocks_section/paragraph_6": T.PANEL - "structure_blocks_section/padding_6": T.PANEL - "structure_blocks_section/paragraph_7": T.PANEL - "structure_blocks_section/padding_7": T.PANEL - "structure_blocks_section/header_3": T.PANEL - "structure_blocks_section/paragraph_8": T.PANEL - "structure_blocks_section/padding_8": T.PANEL - "structure_blocks_section/paragraph_9_keyboard": T.PANEL - "structure_blocks_section/paragraph_9_gamepad": T.PANEL - "structure_blocks_section/paragraph_9_touch": T.PANEL - "structure_blocks_section/padding_9": T.PANEL - "structure_blocks_section/header_4": T.PANEL - "structure_blocks_section/paragraph_10": T.PANEL - "structure_blocks_section/padding_10": T.PANEL - "structure_blocks_section/header_5": T.PANEL - "structure_blocks_section/paragraph_11": T.PANEL - "structure_blocks_section/padding_11": T.PANEL - "structure_blocks_section/paragraph_12": T.PANEL - "structure_blocks_section/padding_12": T.PANEL - "structure_blocks_section/paragraph_13": T.PANEL - "structure_blocks_section/padding_13": T.PANEL - "structure_blocks_section/header_6": T.PANEL - "structure_blocks_section/paragraph_14": T.PANEL - "structure_blocks_section/padding_14": T.PANEL - "structure_blocks_section/paragraph_15": T.PANEL - "structure_blocks_section/padding_15": T.PANEL - "structure_blocks_section/header_7": T.PANEL - "structure_blocks_section/paragraph_16": T.PANEL - "structure_blocks_section/padding_16": T.PANEL - "structure_blocks_section/paragraph_17": T.PANEL - shulker_boxes_button: T.PANEL - shulker_boxes_section: T.STACK_PANEL - "shulker_boxes_section/paragraph_1": T.PANEL - the_end_button: T.PANEL - the_end_section: T.STACK_PANEL - "the_end_section/paragraph_1": T.PANEL - "the_end_section/padding_1": T.PANEL - "the_end_section/paragraph_2": T.PANEL - "the_end_section/padding_2": T.PANEL - "the_end_section/header_1": T.PANEL - "the_end_section/paragraph_3": T.PANEL - "the_end_section/padding_3": T.PANEL - "the_end_section/paragraph_4": T.PANEL - "the_end_section/padding_4": T.PANEL - "the_end_section/paragraph_5": T.PANEL - tools_button: T.PANEL - tools_section: T.STACK_PANEL - "tools_section/paragraph_1": T.PANEL - "tools_section/padding_1": T.PANEL - "tools_section/paragraph_2": T.PANEL - "tools_section/padding_2": T.PANEL - "tools_section/header_1": T.PANEL - "tools_section/paragraph_3": T.PANEL - "tools_section/padding_3": T.PANEL - "tools_section/paragraph_4": T.PANEL - "tools_section/padding_4": T.PANEL - "tools_section/paragraph_5_not_touch": T.PANEL - "tools_section/paragraph_5_touch": T.PANEL - "tools_section/padding_5": T.PANEL - "tools_section/paragraph_6_not_touch": T.PANEL - "tools_section/paragraph_6_touch": T.PANEL - "tools_section/padding_6": T.PANEL - "tools_section/paragraph_7": T.PANEL - "tools_section/padding_7": T.PANEL - "tools_section/header_2": T.PANEL - "tools_section/paragraph_8": T.PANEL - "tools_section/padding_8": T.PANEL - "tools_section/paragraph_9": T.PANEL - "tools_section/padding_9": T.PANEL - "tools_section/paragraph_10": T.PANEL - "tools_section/padding_10": T.PANEL - "tools_section/paragraph_11": T.PANEL - "tools_section/padding_11": T.PANEL - "tools_section/paragraph_12": T.PANEL - trading_button: T.PANEL - trading_section: T.STACK_PANEL - "trading_section/paragraph_1": T.PANEL - "trading_section/padding_1": T.PANEL - "trading_section/header_1": T.PANEL - "trading_section/paragraph_2": T.PANEL - "trading_section/padding_2": T.PANEL - "trading_section/paragraph_3": T.PANEL - "trading_section/padding_3": T.PANEL - "trading_section/paragraph_4": T.PANEL - transportation_button: T.PANEL - transportation_section: T.STACK_PANEL - "transportation_section/paragraph_1": T.PANEL - "transportation_section/padding_1": T.PANEL - "transportation_section/header_1": T.PANEL - "transportation_section/paragraph_2": T.PANEL - "transportation_section/paragraph_2_touch": T.PANEL - "transportation_section/padding_2": T.PANEL - "transportation_section/paragraph_3_keyboard": T.PANEL - "transportation_section/paragraph_3_gamepad": T.PANEL - "transportation_section/paragraph_3a_touch": T.PANEL - "transportation_section/padding_3a": T.PANEL - "transportation_section/paragraph_3b_touch": T.PANEL - "transportation_section/padding_3b": T.PANEL - "transportation_section/paragraph_3c_touch": T.PANEL - "transportation_section/padding_3": T.PANEL - "transportation_section/header_2": T.PANEL - "transportation_section/paragraph_4": T.PANEL - "transportation_section/paragraph_4_touch": T.PANEL - "transportation_section/padding_4": T.PANEL - "transportation_section/paragraph_5_keyboard": T.PANEL - "transportation_section/paragraph_5_gamepad": T.PANEL - "transportation_section/paragraph_5a_touch": T.PANEL - "transportation_section/padding_5a": T.PANEL - "transportation_section/paragraph_5b_touch": T.PANEL - "transportation_section/padding_5b": T.PANEL - "transportation_section/paragraph_5c_touch": T.PANEL - weapons_button: T.PANEL - weapons_section: T.STACK_PANEL - "weapons_section/header_1": T.PANEL - "weapons_section/paragraph_1": T.PANEL - "weapons_section/padding_1": T.PANEL - "weapons_section/paragraph_2_not_touch": T.PANEL - "weapons_section/paragraph_2_touch": T.PANEL - "weapons_section/padding_2": T.PANEL - "weapons_section/header_2": T.PANEL - "weapons_section/paragraph_3_not_touch": T.PANEL - "weapons_section/paragraph_3_touch": T.PANEL - "weapons_section/padding_3": T.PANEL - "weapons_section/paragraph_4": T.PANEL - "weapons_section/padding_5": T.PANEL - "weapons_section/header_3": T.PANEL - "weapons_section/paragraph_5_not_touch": T.PANEL - "weapons_section/paragraph_5a_touch": T.PANEL - "weapons_section/padding_5a_touch": T.PANEL - "weapons_section/paragraph_5b_touch": T.PANEL - "weapons_section/padding_5b_touch": T.PANEL - "weapons_section/paragraph_5c_touch": T.PANEL - "weapons_section/padding_5c_touch": T.PANEL - "weapons_section/paragraph_5d_touch": T.PANEL - "weapons_section/padding_6": T.PANEL - "weapons_section/header_4": T.PANEL - "weapons_section/paragraph_6_not_touch": T.PANEL - "weapons_section/paragraph_6_touch": T.PANEL - "weapons_section/padding_7": T.PANEL - "weapons_section/header_5": T.PANEL - "weapons_section/paragraph_7": T.PANEL - minecoins_button: T.PANEL - minecoins_section: T.STACK_PANEL - "minecoins_section/paragraph_1": T.PANEL - "minecoins_section/padding_1": T.PANEL - "minecoins_section/paragraph_2": T.PANEL - "minecoins_section/padding_2": T.PANEL - "minecoins_section/get_minecoins_button": T.BUTTON - "minecoins_section/padding_3": T.PANEL - "minecoins_section/header_1": T.PANEL - "minecoins_section/paragraph_3": T.PANEL - addons_button: T.PANEL - addons_section: T.STACK_PANEL - "addons_section/paragraph_1": T.PANEL - "addons_section/padding_1": T.PANEL - "addons_section/paragraph_2": T.PANEL - "addons_section/padding_2": T.PANEL - "addons_section/header_1": T.PANEL - "addons_section/paragraph_3": T.PANEL - "addons_section/padding_3": T.PANEL - "addons_section/paragraph_4": T.PANEL - "addons_section/padding_4": T.PANEL - "addons_section/paragraph_5": T.PANEL - "addons_section/addons_faq_button": T.BUTTON - worlds_button: T.PANEL - worlds_section: T.STACK_PANEL - "worlds_section/paragraph_1": T.PANEL - "worlds_section/padding_1": T.PANEL - "worlds_section/paragraph_2": T.PANEL - "worlds_section/padding_2": T.PANEL - "worlds_section/paragraph_3": T.PANEL - "worlds_section/padding_3": T.PANEL - "worlds_section/paragraph_4": T.PANEL - "worlds_section/padding_4": T.PANEL - "worlds_section/header_1": T.PANEL - "worlds_section/paragraph_5": T.PANEL - "worlds_section/padding_5": T.PANEL - "worlds_section/paragraph_6": T.PANEL - "worlds_section/padding_6": T.PANEL - "worlds_section/header_2": T.PANEL - "worlds_section/paragraph_7": T.PANEL - "worlds_section/padding_7": T.PANEL - "worlds_section/paragraph_8": T.PANEL - "worlds_section/padding_8": T.PANEL - "worlds_section/header_3": T.PANEL - "worlds_section/paragraph_9": T.PANEL - "worlds_section/padding_9": T.PANEL - "worlds_section/paragraph_10": T.PANEL - "worlds_section/padding_10": T.PANEL - "worlds_section/header_4": T.PANEL - "worlds_section/paragraph_11": T.PANEL - "worlds_section/padding_11": T.PANEL - "worlds_section/paragraph_12": T.PANEL - "worlds_section/padding_12": T.PANEL - textures_button: T.PANEL - textures_section: T.STACK_PANEL - "textures_section/paragraph_1": T.PANEL - skins_button: T.PANEL - skins_section: T.STACK_PANEL - "skins_section/paragraph_1": T.PANEL - mashups_button: T.PANEL - mashups_section: T.STACK_PANEL - "mashups_section/paragraph_1": T.PANEL + "encyclopedia_screen": T.SCREEN, + "encyclopedia_selector_stack_panel": T.STACK_PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane": T.STACK_PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/overworld_category": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_stand_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/banners_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beacons_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beds_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/blocks_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/book_and_quill_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/chests_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/conduits_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dyes_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/farming_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fireworks_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fishing_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jigsaw_blocks_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mounts_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/navigation_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/nether_portals_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/pets_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/raids_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/ranching_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/scaffolding_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/structure_blocks_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/tools_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/transportation_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/trading_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/weapons_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/stands_and_tables_category": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/anvil_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/brewing_stand_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/cauldron_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/crafting_table_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/enchanting_table_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/furnace_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/loom_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/smithing_table_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_engineering_category": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/droppers_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dispensers_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/hoppers_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jukebox_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_dimension_category": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/eye_of_ender_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/end_cities_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/elytra_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/shulker_boxes_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/options_and_cheats_category": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/game_settings_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/difficulty_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/adventure_mode_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/creative_mode_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/commands_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/host_and_player_options_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/command_blocks_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_category": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_stories_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/marketplace_category": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/minecoins_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/addons_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/worlds_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/textures_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/skins_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mashups_button": T.PANEL, + "encyclopedia_section_content_panels": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/section_contents_header": T.INPUT_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/armor_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/armor_stand_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/banners_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/beacons_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/beds_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/blocks_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/book_and_quill_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/chests_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/conduits_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/dyes_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/farming_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/fireworks_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/fishing_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/jigsaw": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/mounts_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/navigation_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/nether_portals_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/pets_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/raids_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/ranching_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/scaffolding_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/structure_blocks_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/tools_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/transportation_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/trading_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/weapons_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/anvil_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/brewing_stand_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/cauldron_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/crafting_table_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/enchanting_table_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/furnace_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/loom_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/smithing_table_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/droppers_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/dispensers_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/hoppers_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/jukebox_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/redstone_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/the_end_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/eye_of_ender_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/end_cities_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/elytra_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/shulker_boxes_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/game_settings_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/difficulty_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/adventure_mode_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/creative_mode_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/commands_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/host_and_player_options_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/command_blocks_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/realms_stories_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/minecoins_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/addons_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/worlds_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/textures_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/skins_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/mashups_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/section_contents_footer": T.INPUT_PANEL, + "adventure_mode_button": T.PANEL, + "adventure_mode_section": T.STACK_PANEL, + "adventure_mode_section/paragraph_1": T.PANEL, + "adventure_mode_section/padding_1": T.PANEL, + "adventure_mode_section/paragraph_2": T.PANEL, + "anvil_button": T.PANEL, + "anvil_section": T.STACK_PANEL, + "anvil_section/paragraph_1": T.PANEL, + "anvil_section/padding_1": T.PANEL, + "anvil_section/header_1": T.PANEL, + "anvil_section/paragraph_2": T.PANEL, + "anvil_section/padding_2": T.PANEL, + "anvil_section/header_2": T.PANEL, + "anvil_section/paragraph_3": T.PANEL, + "anvil_section/padding_3": T.PANEL, + "anvil_section/paragraph_4": T.PANEL, + "anvil_section/padding_4": T.PANEL, + "anvil_section/paragraph_5": T.PANEL, + "armor_button": T.PANEL, + "armor_section": T.STACK_PANEL, + "armor_section/paragraph_1": T.PANEL, + "armor_section/padding_1": T.PANEL, + "armor_section/header_1": T.PANEL, + "armor_section/paragraph_2": T.PANEL, + "armor_section/padding_2": T.PANEL, + "armor_section/paragraph_3": T.PANEL, + "armor_section/padding_3": T.PANEL, + "armor_section/paragraph_4": T.PANEL, + "armor_section/padding_4": T.PANEL, + "armor_section/header_2": T.PANEL, + "armor_section/paragraph_5_keyboard": T.PANEL, + "armor_section/paragraph_5_gamepad": T.PANEL, + "armor_section/paragraph_5a_touch": T.PANEL, + "armor_section/padding_5a_touch": T.PANEL, + "armor_section/paragraph_5b_touch": T.PANEL, + "armor_section/padding_5b_touch": T.PANEL, + "armor_section/paragraph_5c_touch": T.PANEL, + "armor_section/padding_5": T.PANEL, + "armor_section/paragraph_6": T.PANEL, + "armor_section/padding_6": T.PANEL, + "armor_section/header_3": T.PANEL, + "armor_section/paragraph_7": T.PANEL, + "armor_stand_button": T.PANEL, + "armor_stand_section": T.STACK_PANEL, + "armor_stand_section/paragraph_1": T.PANEL, + "armor_stand_section/padding_1": T.PANEL, + "armor_stand_section/header_1": T.PANEL, + "armor_stand_section/paragraph_2_keyboard": T.PANEL, + "armor_stand_section/paragraph_2_gamepad": T.PANEL, + "armor_stand_section/paragraph_2_touch": T.PANEL, + "armor_stand_section/padding_2": T.PANEL, + "armor_stand_section/paragraph_3_keyboard": T.PANEL, + "armor_stand_section/paragraph_3_gamepad": T.PANEL, + "armor_stand_section/paragraph_3_touch": T.PANEL, + "armor_stand_section/padding_3": T.PANEL, + "armor_stand_section/header_2": T.PANEL, + "armor_stand_section/paragraph_4_keyboard": T.PANEL, + "armor_stand_section/paragraph_4_gamepad": T.PANEL, + "armor_stand_section/paragraph_4_touch": T.PANEL, + "armor_stand_section/padding_4": T.PANEL, + "armor_stand_section/header_3": T.PANEL, + "armor_stand_section/paragraph_5": T.PANEL, + "banners_button": T.PANEL, + "banners_section": T.STACK_PANEL, + "banners_section/paragraph_1": T.PANEL, + "banners_section/padding_1": T.PANEL, + "banners_section/paragraph_2": T.PANEL, + "banners_section/padding_2": T.PANEL, + "banners_section/header_1": T.PANEL, + "banners_section/paragraph_3": T.PANEL, + "banners_section/padding_3": T.PANEL, + "banners_section/paragraph_4": T.PANEL, + "banners_section/padding_4": T.PANEL, + "banners_section/paragraph_5": T.PANEL, + "banners_section/padding_5": T.PANEL, + "banners_section/paragraph_6": T.PANEL, + "banners_section/padding_6": T.PANEL, + "banners_section/paragraph_7": T.PANEL, + "banners_section/padding_7": T.PANEL, + "banners_section/header_2": T.PANEL, + "banners_section/paragraph_8": T.PANEL, + "banners_section/padding_8": T.PANEL, + "banners_section/header_3": T.PANEL, + "banners_section/paragraph_9": T.PANEL, + "beacons_button": T.PANEL, + "beacons_section": T.STACK_PANEL, + "beacons_section/paragraph_1": T.PANEL, + "beacons_section/padding_1": T.PANEL, + "beacons_section/paragraph_2": T.PANEL, + "beacons_section/padding_2": T.PANEL, + "beacons_section/header_1": T.PANEL, + "beacons_section/paragraph_3": T.PANEL, + "beacons_section/padding_3": T.PANEL, + "beacons_section/paragraph_4": T.PANEL, + "beacons_section/padding_4": T.PANEL, + "beacons_section/header_2": T.PANEL, + "beacons_section/paragraph_5": T.PANEL, + "beacons_section/padding_5": T.PANEL, + "beacons_section/paragraph_6": T.PANEL, + "beacons_section/padding_6": T.PANEL, + "beacons_section/paragraph_7": T.PANEL, + "beacons_section/padding_7": T.PANEL, + "beacons_section/paragraph_8": T.PANEL, + "conduits_button": T.PANEL, + "conduits_section": T.STACK_PANEL, + "conduits_section/paragraph_1": T.PANEL, + "conduits_section/padding_1": T.PANEL, + "conduits_section/paragraph_2": T.PANEL, + "conduits_section/padding_2": T.PANEL, + "conduits_section/header_1": T.PANEL, + "conduits_section/paragraph_3": T.PANEL, + "conduits_section/padding_3": T.PANEL, + "conduits_section/paragraph_4": T.PANEL, + "beds_button": T.PANEL, + "beds_section": T.STACK_PANEL, + "beds_section/paragraph_1": T.PANEL, + "beds_section/padding_1": T.PANEL, + "beds_section/paragraph_2_keyboard": T.PANEL, + "beds_section/paragraph_2_gamepad": T.PANEL, + "beds_section/paragraph_2_touch": T.PANEL, + "beds_section/padding_2": T.PANEL, + "beds_section/paragraph_3": T.PANEL, + "beds_section/padding_3": T.PANEL, + "beds_section/paragraph_4": T.PANEL, + "beds_section/padding_4": T.PANEL, + "beds_section/paragraph_5": T.PANEL, + "blocks_button": T.PANEL, + "blocks_section": T.STACK_PANEL, + "blocks_section/paragraph_1": T.PANEL, + "blocks_section/padding_1": T.PANEL, + "blocks_section/paragraph_2": T.PANEL, + "blocks_section/padding_2": T.PANEL, + "blocks_section/header_1": T.PANEL, + "blocks_section/paragraph_3": T.PANEL, + "blocks_section/padding_3": T.PANEL, + "blocks_section/header_2": T.PANEL, + "blocks_section/paragraph_4": T.PANEL, + "blocks_section/padding_4": T.PANEL, + "blocks_section/paragraph_5": T.PANEL, + "blocks_section/padding_5": T.PANEL, + "blocks_section/paragraph_6": T.PANEL, + "blocks_section/padding_6": T.PANEL, + "blocks_section/paragraph_7": T.PANEL, + "blocks_section/padding_7": T.PANEL, + "blocks_section/paragraph_8": T.PANEL, + "blocks_section/padding_8": T.PANEL, + "blocks_section/paragraph_9": T.PANEL, + "book_and_quill_button": T.PANEL, + "book_and_quill_section": T.STACK_PANEL, + "book_and_quill_section/paragraph_1": T.PANEL, + "brewing_stand_button": T.PANEL, + "brewing_stand_section": T.STACK_PANEL, + "brewing_stand_section/paragraph_1": T.PANEL, + "brewing_stand_section/padding_1": T.PANEL, + "brewing_stand_section/header_1": T.PANEL, + "brewing_stand_section/paragraph_2": T.PANEL, + "brewing_stand_section/padding_2": T.PANEL, + "brewing_stand_section/header_2": T.PANEL, + "brewing_stand_section/paragraph_3": T.PANEL, + "brewing_stand_section/padding_3": T.PANEL, + "brewing_stand_section/paragraph_4": T.PANEL, + "cauldron_button": T.PANEL, + "cauldron_section": T.STACK_PANEL, + "cauldron_section/paragraph_1": T.PANEL, + "cauldron_section/padding_1": T.PANEL, + "cauldron_section/header_1": T.PANEL, + "cauldron_section/paragraph_2_keyboard": T.PANEL, + "cauldron_section/paragraph_2_gamepad": T.PANEL, + "cauldron_section/paragraph_2_touch": T.PANEL, + "cauldron_section/padding_2": T.PANEL, + "cauldron_section/paragraph_3": T.PANEL, + "cauldron_section/padding_3": T.PANEL, + "cauldron_section/header_2": T.PANEL, + "cauldron_section/paragraph_4_keyboard": T.PANEL, + "cauldron_section/paragraph_4_gamepad": T.PANEL, + "cauldron_section/paragraph_4_touch": T.PANEL, + "cauldron_section/padding_4": T.PANEL, + "cauldron_section/header_3": T.PANEL, + "cauldron_section/paragraph_5_keyboard": T.PANEL, + "cauldron_section/paragraph_5_gamepad": T.PANEL, + "cauldron_section/paragraph_5_touch": T.PANEL, + "cauldron_section/padding_5": T.PANEL, + "cauldron_section/paragraph_6": T.PANEL, + "chests_button": T.PANEL, + "chests_section": T.STACK_PANEL, + "chests_section/paragraph_1_keyboard": T.PANEL, + "chests_section/paragraph_1_gamepad": T.PANEL, + "chests_section/paragraph_1_touch": T.PANEL, + "chests_section/padding_1": T.PANEL, + "chests_section/paragraph_2": T.PANEL, + "chests_section/padding_2": T.PANEL, + "chests_section/paragraph_3": T.PANEL, + "command_blocks_button": T.PANEL, + "command_blocks_section": T.STACK_PANEL, + "command_blocks_section/paragraph_1": T.PANEL, + "command_blocks_section/padding_1": T.PANEL, + "command_blocks_section/paragraph_2": T.PANEL, + "command_blocks_section/padding_2": T.PANEL, + "command_blocks_section/paragraph_3": T.PANEL, + "command_blocks_section/padding_3": T.PANEL, + "command_blocks_section/paragraph_4": T.PANEL, + "command_blocks_section/padding_4": T.PANEL, + "command_blocks_section/paragraph_5": T.PANEL, + "command_blocks_section/paragraph_5_1": T.PANEL, + "command_blocks_section/paragraph_5_2": T.PANEL, + "command_blocks_section/paragraph_5_3": T.PANEL, + "command_blocks_section/padding_5": T.PANEL, + "command_blocks_section/paragraph_6": T.PANEL, + "command_blocks_section/paragraph_6_1": T.PANEL, + "command_blocks_section/paragraph_6_2": T.PANEL, + "command_blocks_section/padding_6": T.PANEL, + "command_blocks_section/paragraph_7": T.PANEL, + "command_blocks_section/paragraph_7_1": T.PANEL, + "command_blocks_section/paragraph_7_2": T.PANEL, + "command_blocks_section/padding_7": T.PANEL, + "command_blocks_section/paragraph_8": T.PANEL, + "commands_button": T.PANEL, + "commands_section": T.STACK_PANEL, + "commands_section/paragraph_1": T.PANEL, + "commands_section/padding_1": T.PANEL, + "commands_section/paragraph_2": T.PANEL, + "crafting_table_button": T.PANEL, + "crafting_table_section": T.STACK_PANEL, + "crafting_table_section/paragraph_1": T.PANEL, + "crafting_table_section/padding_1": T.PANEL, + "crafting_table_section/paragraph_2_keyboard": T.PANEL, + "crafting_table_section/paragraph_2_gamepad": T.PANEL, + "crafting_table_section/paragraph_2_touch": T.PANEL, + "creative_mode_button": T.PANEL, + "creative_mode_section": T.STACK_PANEL, + "creative_mode_section/paragraph_1": T.PANEL, + "creative_mode_section/padding_1": T.PANEL, + "creative_mode_section/header_1": T.PANEL, + "creative_mode_section/paragraph_2": T.PANEL, + "creative_mode_section/padding_2": T.PANEL, + "creative_mode_section/paragraph_3": T.PANEL, + "creative_mode_section/padding_3": T.PANEL, + "creative_mode_section/header_2": T.PANEL, + "creative_mode_section/paragraph_4_keyboard": T.PANEL, + "creative_mode_section/paragraph_4_gamepad": T.PANEL, + "creative_mode_section/paragraph_4a_touch_joystick_tap": T.PANEL, + "creative_mode_section/paragraph_4a_touch_classic_dpad": T.PANEL, + "creative_mode_section/paragraph_4a_touch_joystick_crosshair": T.PANEL, + "creative_mode_section/padding_4a_touch": T.PANEL, + "creative_mode_section/paragraph_4b_touch_joystick_tap": T.PANEL, + "creative_mode_section/paragraph_4b_touch_classic_dpad": T.PANEL, + "creative_mode_section/paragraph_4b_touch_joystick_crosshair": T.PANEL, + "difficulty_button": T.PANEL, + "difficulty_section": T.STACK_PANEL, + "difficulty_section/paragraph_1": T.PANEL, + "difficulty_section/padding_1": T.PANEL, + "difficulty_section/header_1": T.PANEL, + "difficulty_section/paragraph_2": T.PANEL, + "difficulty_section/padding_2": T.PANEL, + "difficulty_section/header_2": T.PANEL, + "difficulty_section/paragraph_3": T.PANEL, + "difficulty_section/padding_3": T.PANEL, + "difficulty_section/header_3": T.PANEL, + "difficulty_section/paragraph_4": T.PANEL, + "difficulty_section/padding_4": T.PANEL, + "difficulty_section/header_4": T.PANEL, + "difficulty_section/paragraph_5": T.PANEL, + "dispensers_button": T.PANEL, + "dispensers_section": T.STACK_PANEL, + "dispensers_section/paragraph_1": T.PANEL, + "dispensers_section/padding_1": T.PANEL, + "dispensers_section/paragraph_2_keyboard": T.PANEL, + "dispensers_section/paragraph_2_gamepad": T.PANEL, + "dispensers_section/paragraph_2_touch": T.PANEL, + "dispensers_section/padding_2": T.PANEL, + "dispensers_section/header_1": T.PANEL, + "dispensers_section/paragraph_3": T.PANEL, + "dispensers_section/padding_3": T.PANEL, + "dispensers_section/paragraph_4": T.PANEL, + "droppers_button": T.PANEL, + "droppers_section": T.STACK_PANEL, + "droppers_section/paragraph_1_keyboard": T.PANEL, + "droppers_section/paragraph_1_gamepad": T.PANEL, + "droppers_section/paragraph_1_touch": T.PANEL, + "droppers_section/padding_1": T.PANEL, + "droppers_section/header_1": T.PANEL, + "droppers_section/paragraph_2": T.PANEL, + "dyes_button": T.PANEL, + "dyes_section": T.STACK_PANEL, + "dyes_section/paragraph_1": T.PANEL, + "dyes_section/padding_1": T.PANEL, + "dyes_section/paragraph_2": T.PANEL, + "dyes_section/padding_2": T.PANEL, + "dyes_section/paragraph_3": T.PANEL, + "dyes_section/padding_3": T.PANEL, + "dyes_section/paragraph_4": T.PANEL, + "dyes_section/padding_4": T.PANEL, + "dyes_section/paragraph_5": T.PANEL, + "dyes_section/padding_5": T.PANEL, + "dyes_section/paragraph_6": T.PANEL, + "dyes_section/padding_6": T.PANEL, + "dyes_section/paragraph_7": T.PANEL, + "elytra_button": T.PANEL, + "elytra_section": T.STACK_PANEL, + "elytra_section/paragraph_1": T.PANEL, + "elytra_section/padding_1": T.PANEL, + "elytra_section/paragraph_2": T.PANEL, + "elytra_section/padding_2": T.PANEL, + "elytra_section/header_1": T.PANEL, + "elytra_section/paragraph_3_keyboard": T.PANEL, + "elytra_section/paragraph_3_gamepad": T.PANEL, + "elytra_section/paragraph_3_touch": T.PANEL, + "elytra_section/padding_3": T.PANEL, + "elytra_section/paragraph_4": T.PANEL, + "elytra_section/paragraph_4_touch": T.PANEL, + "elytra_section/padding_4": T.PANEL, + "elytra_section/paragraph_5": T.PANEL, + "elytra_section/padding_5": T.PANEL, + "elytra_section/header_2": T.PANEL, + "elytra_section/paragraph_6": T.PANEL, + "enchanting_table_button": T.PANEL, + "enchanting_table_section": T.STACK_PANEL, + "enchanting_table_section/paragraph_1": T.PANEL, + "enchanting_table_section/padding_1": T.PANEL, + "enchanting_table_section/header_1": T.PANEL, + "enchanting_table_section/paragraph_2": T.PANEL, + "enchanting_table_section/padding_2": T.PANEL, + "enchanting_table_section/paragraph_3": T.PANEL, + "enchanting_table_section/padding_3": T.PANEL, + "enchanting_table_section/header_2": T.PANEL, + "enchanting_table_section/paragraph_4": T.PANEL, + "enchanting_table_section/padding_4": T.PANEL, + "enchanting_table_section/header_3": T.PANEL, + "enchanting_table_section/paragraph_5": T.PANEL, + "end_cities_button": T.PANEL, + "end_cities_section": T.STACK_PANEL, + "end_cities_section/paragraph_1": T.PANEL, + "end_cities_section/padding_1": T.PANEL, + "end_cities_section/paragraph_2": T.PANEL, + "eye_of_ender_button": T.PANEL, + "eye_of_ender_section": T.STACK_PANEL, + "eye_of_ender_section/paragraph_1": T.PANEL, + "eye_of_ender_section/padding_1": T.PANEL, + "eye_of_ender_section/paragraph_2": T.PANEL, + "farming_button": T.PANEL, + "farming_section": T.STACK_PANEL, + "farming_section/paragraph_1": T.PANEL, + "farming_section/padding_1": T.PANEL, + "farming_section/header_1": T.PANEL, + "farming_section/paragraph_2": T.PANEL, + "farming_section/padding_2": T.PANEL, + "farming_section/paragraph_3": T.PANEL, + "farming_section/padding_3": T.PANEL, + "farming_section/header_2": T.PANEL, + "farming_section/paragraph_4": T.PANEL, + "farming_section/padding_4": T.PANEL, + "farming_section/paragraph_5": T.PANEL, + "farming_section/padding_5": T.PANEL, + "farming_section/paragraph_6": T.PANEL, + "farming_section/padding_6": T.PANEL, + "farming_section/paragraph_7": T.PANEL, + "fireworks_button": T.PANEL, + "fireworks_section": T.STACK_PANEL, + "fireworks_section/paragraph_1": T.PANEL, + "fireworks_section/padding_1": T.PANEL, + "fireworks_section/paragraph_2": T.PANEL, + "fireworks_section/padding_2": T.PANEL, + "fireworks_section/header_1": T.PANEL, + "fireworks_section/paragraph_3_keyboard": T.PANEL, + "fireworks_section/paragraph_3_gamepad": T.PANEL, + "fireworks_section/paragraph_3_touch": T.PANEL, + "fireworks_section/padding_3": T.PANEL, + "fireworks_section/paragraph_4": T.PANEL, + "fireworks_section/padding_4": T.PANEL, + "fireworks_section/header_2": T.PANEL, + "fireworks_section/paragraph_5": T.PANEL, + "fireworks_section/padding_5": T.PANEL, + "fireworks_section/paragraph_6": T.PANEL, + "fireworks_section/padding_5a": T.PANEL, + "fireworks_section/paragraph_6_1": T.PANEL, + "fireworks_section/padding_5b": T.PANEL, + "fireworks_section/paragraph_6_2": T.PANEL, + "fireworks_section/padding_5c": T.PANEL, + "fireworks_section/paragraph_6_3": T.PANEL, + "fireworks_section/padding_5d": T.PANEL, + "fireworks_section/paragraph_6_4": T.PANEL, + "fireworks_section/padding_5e": T.PANEL, + "fireworks_section/paragraph_6_5": T.PANEL, + "fireworks_section/padding_5f": T.PANEL, + "fireworks_section/paragraph_6_6": T.PANEL, + "fireworks_section/padding_6": T.PANEL, + "fireworks_section/header_3": T.PANEL, + "fireworks_section/paragraph_7": T.PANEL, + "jigsaw_blocks_button": T.PANEL, + "jigsaw_blocks_section": T.STACK_PANEL, + "jigsaw_blocks_section/paragraph_1": T.PANEL, + "jigsaw_blocks_section/padding_1": T.PANEL, + "jigsaw_blocks_section/header_1": T.PANEL, + "jigsaw_blocks_section/paragraph_2": T.PANEL, + "jigsaw_blocks_section/padding_2": T.PANEL, + "jigsaw_blocks_section/header_2": T.PANEL, + "jigsaw_blocks_section/paragraph_3": T.PANEL, + "jigsaw_blocks_section/padding_3": T.PANEL, + "jigsaw_blocks_section/paragraph_4": T.PANEL, + "jigsaw_blocks_section/padding_4": T.PANEL, + "jigsaw_blocks_section/paragraph_5": T.PANEL, + "jigsaw_blocks_section/padding_5": T.PANEL, + "jigsaw_blocks_section/paragraph_6": T.PANEL, + "jigsaw_blocks_section/padding_6": T.PANEL, + "jigsaw_blocks_section/paragraph_7": T.PANEL, + "jigsaw_blocks_section/padding_7": T.PANEL, + "jigsaw_blocks_section/paragraph_8": T.PANEL, + "jigsaw_blocks_section/padding_8": T.PANEL, + "jigsaw_blocks_section/paragraph_9": T.PANEL, + "fishing_button": T.PANEL, + "fishing_section": T.STACK_PANEL, + "fishing_section/paragraph_1": T.PANEL, + "fishing_section/padding_1": T.PANEL, + "fishing_section/header_1": T.PANEL, + "fishing_section/paragraph_2_keyboard": T.PANEL, + "fishing_section/paragraph_2_gamepad": T.PANEL, + "fishing_section/paragraph_2_touch": T.PANEL, + "fishing_section/padding_2": T.PANEL, + "fishing_section/header_2": T.PANEL, + "fishing_section/paragraph_3": T.PANEL, + "fishing_section/padding_3": T.PANEL, + "fishing_section/paragraph_4_keyboard": T.PANEL, + "fishing_section/paragraph_4_gamepad": T.PANEL, + "fishing_section/paragraph_4_touch": T.PANEL, + "furnace_button": T.PANEL, + "furnace_section": T.STACK_PANEL, + "furnace_section/paragraph_1": T.PANEL, + "furnace_section/padding_1": T.PANEL, + "furnace_section/paragraph_2_keyboard": T.PANEL, + "furnace_section/paragraph_2_gamepad": T.PANEL, + "furnace_section/paragraph_2_touch": T.PANEL, + "furnace_section/padding_2": T.PANEL, + "furnace_section/paragraph_3": T.PANEL, + "game_settings_button": T.PANEL, + "game_settings_section": T.STACK_PANEL, + "game_settings_section/paragraph_1": T.PANEL, + "game_settings_section/padding_1": T.PANEL, + "game_settings_section/paragraph_2": T.PANEL, + "game_settings_section/padding_2": T.PANEL, + "game_settings_section/paragraph_3": T.PANEL, + "game_settings_section/padding_3": T.PANEL, + "game_settings_section/paragraph_4": T.PANEL, + "game_settings_section/padding_4": T.PANEL, + "game_settings_section/header_1": T.PANEL, + "game_settings_section/paragraph_5": T.PANEL, + "game_settings_section/padding_5": T.PANEL, + "game_settings_section/paragraph_6": T.PANEL, + "game_settings_section/padding_6": T.PANEL, + "game_settings_section/paragraph_7": T.PANEL, + "game_settings_section/paragraph_7_1": T.PANEL, + "game_settings_section/paragraph_7_2": T.PANEL, + "game_settings_section/padding_7": T.PANEL, + "game_settings_section/paragraph_8": T.PANEL, + "game_settings_section/padding_8": T.PANEL, + "game_settings_section/header_2": T.PANEL, + "game_settings_section/paragraph_9": T.PANEL, + "game_settings_section/padding_9": T.PANEL, + "game_settings_section/paragraph_10": T.PANEL, + "game_settings_section/padding_10": T.PANEL, + "game_settings_section/paragraph_11": T.PANEL, + "game_settings_section/padding_11": T.PANEL, + "game_settings_section/paragraph_12": T.PANEL, + "game_settings_section/padding_12": T.PANEL, + "game_settings_section/paragraph_13": T.PANEL, + "game_settings_section/padding_13": T.PANEL, + "game_settings_section/paragraph_14": T.PANEL, + "game_settings_section/padding_14": T.PANEL, + "game_settings_section/paragraph_15": T.PANEL, + "game_settings_section/padding_15": T.PANEL, + "game_settings_section/paragraph_16": T.PANEL, + "game_settings_section/padding_16": T.PANEL, + "game_settings_section/paragraph_17": T.PANEL, + "hoppers_button": T.PANEL, + "hoppers_section": T.STACK_PANEL, + "hoppers_section/paragraph_1": T.PANEL, + "hoppers_section/padding_1": T.PANEL, + "hoppers_section/paragraph_2": T.PANEL, + "hoppers_section/padding_2": T.PANEL, + "hoppers_section/header_1": T.PANEL, + "hoppers_section/paragraph_3": T.PANEL, + "hoppers_section/padding_3": T.PANEL, + "hoppers_section/paragraph_4": T.PANEL, + "host_and_player_options_button": T.PANEL, + "host_and_player_options_section": T.STACK_PANEL, + "host_and_player_options_section/paragraph_1_not_touch": T.PANEL, + "host_and_player_options_section/paragraph_1_touch": T.PANEL, + "jukebox_button": T.PANEL, + "jukebox_section": T.STACK_PANEL, + "jukebox_section/paragraph_1": T.PANEL, + "jukebox_section/padding_1": T.PANEL, + "jukebox_section/header_1": T.PANEL, + "jukebox_section/paragraph_2_not_touch": T.PANEL, + "jukebox_section/paragraph_2_touch": T.PANEL, + "jukebox_section/padding_2": T.PANEL, + "jukebox_section/header_2": T.PANEL, + "jukebox_section/paragraph_3": T.PANEL, + "jukebox_section/padding_3": T.PANEL, + "jukebox_section/paragraph_4": T.PANEL, + "jukebox_section/padding_4": T.PANEL, + "jukebox_section/paragraph_5": T.PANEL, + "jukebox_section/padding_5": T.PANEL, + "jukebox_section/paragraph_6": T.PANEL, + "jukebox_section/padding_6": T.PANEL, + "jukebox_section/header_3": T.PANEL, + "jukebox_section/paragraph_7": T.PANEL, + "jukebox_section/padding_7": T.PANEL, + "jukebox_section/paragraph_8": T.PANEL, + "loom_button": T.PANEL, + "loom_section": T.STACK_PANEL, + "loom_section/paragraph_1": T.PANEL, + "loom_section/padding_1": T.PANEL, + "loom_section/header_1": T.PANEL, + "loom_section/paragraph_2": T.PANEL, + "loom_section/padding_2": T.PANEL, + "loom_section/paragraph_3": T.PANEL, + "loom_section/padding_3": T.PANEL, + "loom_section/header_2": T.PANEL, + "loom_section/paragraph_4": T.PANEL, + "realms_stories_button": T.PANEL, + "realms_stories_section": T.STACK_PANEL, + "realms_stories_section/paragraph_1": T.PANEL, + "realms_stories_section/padding_1": T.PANEL, + "realms_stories_section/header_1": T.PANEL, + "realms_stories_section/paragraph_2": T.PANEL, + "realms_stories_section/padding_2": T.PANEL, + "realms_stories_section/header_2": T.PANEL, + "realms_stories_section/paragraph_3": T.PANEL, + "realms_stories_section/padding_3": T.PANEL, + "realms_stories_section/header_3": T.PANEL, + "realms_stories_section/paragraph_4": T.PANEL, + "realms_stories_section/padding_4": T.PANEL, + "realms_stories_section/header_4": T.PANEL, + "realms_stories_section/paragraph_5": T.PANEL, + "realms_stories_section/padding_5": T.PANEL, + "realms_stories_section/header_5": T.PANEL, + "realms_stories_section/paragraph_6": T.PANEL, + "smithing_table_button": T.PANEL, + "smithing_table_section": T.STACK_PANEL, + "smithing_table_section/paragraph_1": T.PANEL, + "smithing_table_section/padding_1": T.PANEL, + "smithing_table_section/paragraph_2": T.PANEL, + "smithing_table_section/padding_2": T.PANEL, + "smithing_table_section/header_1": T.PANEL, + "smithing_table_section/paragraph_3": T.PANEL, + "smithing_table_section/padding_3": T.PANEL, + "smithing_table_section/paragraph_4": T.PANEL, + "smithing_table_section/padding_4": T.PANEL, + "smithing_table_section/paragraph_5": T.PANEL, + "smithing_table_section/padding_5": T.PANEL, + "smithing_table_section/paragraph_6": T.PANEL, + "smithing_table_section/padding_6": T.PANEL, + "smithing_table_section/header_2": T.PANEL, + "smithing_table_section/paragraph_7": T.PANEL, + "smithing_table_section/padding_7": T.PANEL, + "smithing_table_section/paragraph_8": T.PANEL, + "smithing_table_section/padding_8": T.PANEL, + "smithing_table_section/paragraph_9": T.PANEL, + "mounts_button": T.PANEL, + "mounts_section": T.STACK_PANEL, + "mounts_section/paragraph_1": T.PANEL, + "mounts_section/padding_1": T.PANEL, + "mounts_section/paragraph_2": T.PANEL, + "mounts_section/padding_2": T.PANEL, + "mounts_section/header_1": T.PANEL, + "mounts_section/paragraph_3_not_touch": T.PANEL, + "mounts_section/paragraph_3_touch": T.PANEL, + "mounts_section/padding_3": T.PANEL, + "mounts_section/paragraph_4": T.PANEL, + "mounts_section/padding_4": T.PANEL, + "mounts_section/header_2": T.PANEL, + "mounts_section/paragraph_5": T.PANEL, + "mounts_section/padding_5": T.PANEL, + "mounts_section/paragraph_6": T.PANEL, + "mounts_section/padding_6": T.PANEL, + "mounts_section/paragraph_6b": T.PANEL, + "mounts_section/padding_6b": T.PANEL, + "mounts_section/paragraph_7": T.PANEL, + "mounts_section/padding_7": T.PANEL, + "mounts_section/paragraph_8": T.PANEL, + "mounts_section/padding_8": T.PANEL, + "mounts_section/header_3": T.PANEL, + "mounts_section/paragraph_9": T.PANEL, + "mounts_section/padding_9": T.PANEL, + "mounts_section/paragraph_10": T.PANEL, + "mounts_section/padding_10": T.PANEL, + "mounts_section/paragraph_11": T.PANEL, + "mounts_section/padding_11": T.PANEL, + "mounts_section/paragraph_12": T.PANEL, + "mounts_section/padding_12": T.PANEL, + "mounts_section/header_4": T.PANEL, + "mounts_section/paragraph_13": T.PANEL, + "mounts_section/padding_13": T.PANEL, + "mounts_section/paragraph_14": T.PANEL, + "mounts_section/padding_14": T.PANEL, + "mounts_section/header_5": T.PANEL, + "mounts_section/paragraph_15_not_touch": T.PANEL, + "mounts_section/paragraph_15a_touch": T.PANEL, + "mounts_section/padding_15": T.PANEL, + "mounts_section/paragraph_15b_touch": T.PANEL, + "navigation_button": T.PANEL, + "navigation_section": T.STACK_PANEL, + "navigation_section/paragraph_1": T.PANEL, + "navigation_section/padding_1": T.PANEL, + "navigation_section/paragraph_2": T.PANEL, + "navigation_section/padding_2": T.PANEL, + "navigation_section/header_1": T.PANEL, + "navigation_section/paragraph_3": T.PANEL, + "navigation_section/padding_3": T.PANEL, + "navigation_section/paragraph_4": T.PANEL, + "navigation_section/padding_4": T.PANEL, + "navigation_section/paragraph_5": T.PANEL, + "navigation_section/padding_5": T.PANEL, + "navigation_section/paragraph_6": T.PANEL, + "navigation_section/padding_6": T.PANEL, + "navigation_section/paragraph_7": T.PANEL, + "navigation_section/padding_7": T.PANEL, + "navigation_section/header_2": T.PANEL, + "navigation_section/paragraph_8": T.PANEL, + "navigation_section/padding_8": T.PANEL, + "navigation_section/paragraph_9": T.PANEL, + "navigation_section/padding_9": T.PANEL, + "navigation_section/header_3": T.PANEL, + "navigation_section/paragraph_10": T.PANEL, + "nether_portals_button": T.PANEL, + "nether_portals_section": T.STACK_PANEL, + "nether_portals_section/paragraph_1": T.PANEL, + "nether_portals_section/padding_1": T.PANEL, + "nether_portals_section/paragraph_2": T.PANEL, + "nether_portals_section/padding_2": T.PANEL, + "nether_portals_section/paragraph_3": T.PANEL, + "nether_portals_section/padding_3": T.PANEL, + "nether_portals_section/image_1": T.IMAGE, + "pets_button": T.PANEL, + "pets_section": T.STACK_PANEL, + "pets_section/header_1": T.PANEL, + "pets_section/paragraph_1_not_touch": T.PANEL, + "pets_section/paragraph_1_touch": T.PANEL, + "pets_section/padding_1": T.PANEL, + "pets_section/header_2": T.PANEL, + "pets_section/paragraph_2": T.PANEL, + "pets_section/padding_2": T.PANEL, + "pets_section/header_3": T.PANEL, + "pets_section/paragraph_3": T.PANEL, + "pets_section/padding_3": T.PANEL, + "pets_section/header_4": T.PANEL, + "pets_section/paragraph_4": T.PANEL, + "raids_button": T.PANEL, + "raids_section": T.STACK_PANEL, + "raids_section/paragraph_1": T.PANEL, + "raids_section/padding_1": T.PANEL, + "raids_section/paragraph_2": T.PANEL, + "raids_section/padding_2": T.PANEL, + "raids_section/header_1": T.PANEL, + "raids_section/paragraph_3": T.PANEL, + "ranching_button": T.PANEL, + "ranching_section": T.STACK_PANEL, + "ranching_section/paragraph_1": T.PANEL, + "ranching_section/padding_1": T.PANEL, + "ranching_section/header_1": T.PANEL, + "ranching_section/paragraph_2": T.PANEL, + "ranching_section/padding_2": T.PANEL, + "ranching_section/paragraph_3": T.PANEL, + "ranching_section/padding_3": T.PANEL, + "ranching_section/header_2": T.PANEL, + "ranching_section/paragraph_4": T.PANEL, + "ranching_section/padding_4": T.PANEL, + "ranching_section/paragraph_5": T.PANEL, + "redstone_button": T.PANEL, + "redstone_section": T.STACK_PANEL, + "redstone_section/paragraph_1": T.PANEL, + "redstone_section/padding_1": T.PANEL, + "redstone_section/header_1": T.PANEL, + "redstone_section/paragraph_2": T.PANEL, + "redstone_section/padding_2": T.PANEL, + "redstone_section/paragraph_3": T.PANEL, + "redstone_section/padding_3": T.PANEL, + "redstone_section/paragraph_4": T.PANEL, + "redstone_section/padding_4": T.PANEL, + "redstone_section/paragraph_5": T.PANEL, + "scaffolding_button": T.PANEL, + "scaffolding_section": T.STACK_PANEL, + "scaffolding_section/header_1": T.PANEL, + "scaffolding_section/paragraph_1_keyboard": T.PANEL, + "scaffolding_section/paragraph_1_gamepad": T.PANEL, + "scaffolding_section/paragraph_1a_touch": T.PANEL, + "scaffolding_section/padding_1a_touch": T.PANEL, + "scaffolding_section/paragraph_1b_touch": T.PANEL, + "scaffolding_section/padding_1b_touch": T.PANEL, + "scaffolding_section/paragraph_1c_touch": T.PANEL, + "scaffolding_section/padding_1": T.PANEL, + "scaffolding_section/header_2": T.PANEL, + "scaffolding_section/paragraph_2": T.PANEL, + "scaffolding_section/image_1": T.IMAGE, + "scaffolding_section/padding_2": T.PANEL, + "scaffolding_section/header_3": T.PANEL, + "scaffolding_section/paragraph_3": T.PANEL, + "scaffolding_section/padding_3": T.PANEL, + "structure_blocks_button": T.PANEL, + "structure_blocks_section": T.STACK_PANEL, + "structure_blocks_section/paragraph_1": T.PANEL, + "structure_blocks_section/padding_1": T.PANEL, + "structure_blocks_section/header_1": T.PANEL, + "structure_blocks_section/paragraph_2": T.PANEL, + "structure_blocks_section/padding_2": T.PANEL, + "structure_blocks_section/header_2": T.PANEL, + "structure_blocks_section/paragraph_3": T.PANEL, + "structure_blocks_section/padding_3": T.PANEL, + "structure_blocks_section/paragraph_4": T.PANEL, + "structure_blocks_section/padding_4": T.PANEL, + "structure_blocks_section/paragraph_5": T.PANEL, + "structure_blocks_section/padding_5": T.PANEL, + "structure_blocks_section/paragraph_6": T.PANEL, + "structure_blocks_section/padding_6": T.PANEL, + "structure_blocks_section/paragraph_7": T.PANEL, + "structure_blocks_section/padding_7": T.PANEL, + "structure_blocks_section/header_3": T.PANEL, + "structure_blocks_section/paragraph_8": T.PANEL, + "structure_blocks_section/padding_8": T.PANEL, + "structure_blocks_section/paragraph_9_keyboard": T.PANEL, + "structure_blocks_section/paragraph_9_gamepad": T.PANEL, + "structure_blocks_section/paragraph_9_touch": T.PANEL, + "structure_blocks_section/padding_9": T.PANEL, + "structure_blocks_section/header_4": T.PANEL, + "structure_blocks_section/paragraph_10": T.PANEL, + "structure_blocks_section/padding_10": T.PANEL, + "structure_blocks_section/header_5": T.PANEL, + "structure_blocks_section/paragraph_11": T.PANEL, + "structure_blocks_section/padding_11": T.PANEL, + "structure_blocks_section/paragraph_12": T.PANEL, + "structure_blocks_section/padding_12": T.PANEL, + "structure_blocks_section/paragraph_13": T.PANEL, + "structure_blocks_section/padding_13": T.PANEL, + "structure_blocks_section/header_6": T.PANEL, + "structure_blocks_section/paragraph_14": T.PANEL, + "structure_blocks_section/padding_14": T.PANEL, + "structure_blocks_section/paragraph_15": T.PANEL, + "structure_blocks_section/padding_15": T.PANEL, + "structure_blocks_section/header_7": T.PANEL, + "structure_blocks_section/paragraph_16": T.PANEL, + "structure_blocks_section/padding_16": T.PANEL, + "structure_blocks_section/paragraph_17": T.PANEL, + "shulker_boxes_button": T.PANEL, + "shulker_boxes_section": T.STACK_PANEL, + "shulker_boxes_section/paragraph_1": T.PANEL, + "the_end_button": T.PANEL, + "the_end_section": T.STACK_PANEL, + "the_end_section/paragraph_1": T.PANEL, + "the_end_section/padding_1": T.PANEL, + "the_end_section/paragraph_2": T.PANEL, + "the_end_section/padding_2": T.PANEL, + "the_end_section/header_1": T.PANEL, + "the_end_section/paragraph_3": T.PANEL, + "the_end_section/padding_3": T.PANEL, + "the_end_section/paragraph_4": T.PANEL, + "the_end_section/padding_4": T.PANEL, + "the_end_section/paragraph_5": T.PANEL, + "tools_button": T.PANEL, + "tools_section": T.STACK_PANEL, + "tools_section/paragraph_1": T.PANEL, + "tools_section/padding_1": T.PANEL, + "tools_section/paragraph_2": T.PANEL, + "tools_section/padding_2": T.PANEL, + "tools_section/header_1": T.PANEL, + "tools_section/paragraph_3": T.PANEL, + "tools_section/padding_3": T.PANEL, + "tools_section/paragraph_4": T.PANEL, + "tools_section/padding_4": T.PANEL, + "tools_section/paragraph_5_not_touch": T.PANEL, + "tools_section/paragraph_5_touch": T.PANEL, + "tools_section/padding_5": T.PANEL, + "tools_section/paragraph_6_not_touch": T.PANEL, + "tools_section/paragraph_6_touch": T.PANEL, + "tools_section/padding_6": T.PANEL, + "tools_section/paragraph_7": T.PANEL, + "tools_section/padding_7": T.PANEL, + "tools_section/header_2": T.PANEL, + "tools_section/paragraph_8": T.PANEL, + "tools_section/padding_8": T.PANEL, + "tools_section/paragraph_9": T.PANEL, + "tools_section/padding_9": T.PANEL, + "tools_section/paragraph_10": T.PANEL, + "tools_section/padding_10": T.PANEL, + "tools_section/paragraph_11": T.PANEL, + "tools_section/padding_11": T.PANEL, + "tools_section/paragraph_12": T.PANEL, + "trading_button": T.PANEL, + "trading_section": T.STACK_PANEL, + "trading_section/paragraph_1": T.PANEL, + "trading_section/padding_1": T.PANEL, + "trading_section/header_1": T.PANEL, + "trading_section/paragraph_2": T.PANEL, + "trading_section/padding_2": T.PANEL, + "trading_section/paragraph_3": T.PANEL, + "trading_section/padding_3": T.PANEL, + "trading_section/paragraph_4": T.PANEL, + "transportation_button": T.PANEL, + "transportation_section": T.STACK_PANEL, + "transportation_section/paragraph_1": T.PANEL, + "transportation_section/padding_1": T.PANEL, + "transportation_section/header_1": T.PANEL, + "transportation_section/paragraph_2": T.PANEL, + "transportation_section/paragraph_2_touch": T.PANEL, + "transportation_section/padding_2": T.PANEL, + "transportation_section/paragraph_3_keyboard": T.PANEL, + "transportation_section/paragraph_3_gamepad": T.PANEL, + "transportation_section/paragraph_3a_touch": T.PANEL, + "transportation_section/padding_3a": T.PANEL, + "transportation_section/paragraph_3b_touch": T.PANEL, + "transportation_section/padding_3b": T.PANEL, + "transportation_section/paragraph_3c_touch": T.PANEL, + "transportation_section/padding_3": T.PANEL, + "transportation_section/header_2": T.PANEL, + "transportation_section/paragraph_4": T.PANEL, + "transportation_section/paragraph_4_touch": T.PANEL, + "transportation_section/padding_4": T.PANEL, + "transportation_section/paragraph_5_keyboard": T.PANEL, + "transportation_section/paragraph_5_gamepad": T.PANEL, + "transportation_section/paragraph_5a_touch": T.PANEL, + "transportation_section/padding_5a": T.PANEL, + "transportation_section/paragraph_5b_touch": T.PANEL, + "transportation_section/padding_5b": T.PANEL, + "transportation_section/paragraph_5c_touch": T.PANEL, + "weapons_button": T.PANEL, + "weapons_section": T.STACK_PANEL, + "weapons_section/header_1": T.PANEL, + "weapons_section/paragraph_1": T.PANEL, + "weapons_section/padding_1": T.PANEL, + "weapons_section/paragraph_2_not_touch": T.PANEL, + "weapons_section/paragraph_2_touch": T.PANEL, + "weapons_section/padding_2": T.PANEL, + "weapons_section/header_2": T.PANEL, + "weapons_section/paragraph_3_not_touch": T.PANEL, + "weapons_section/paragraph_3_touch": T.PANEL, + "weapons_section/padding_3": T.PANEL, + "weapons_section/paragraph_4": T.PANEL, + "weapons_section/padding_5": T.PANEL, + "weapons_section/header_3": T.PANEL, + "weapons_section/paragraph_5_not_touch": T.PANEL, + "weapons_section/paragraph_5a_touch": T.PANEL, + "weapons_section/padding_5a_touch": T.PANEL, + "weapons_section/paragraph_5b_touch": T.PANEL, + "weapons_section/padding_5b_touch": T.PANEL, + "weapons_section/paragraph_5c_touch": T.PANEL, + "weapons_section/padding_5c_touch": T.PANEL, + "weapons_section/paragraph_5d_touch": T.PANEL, + "weapons_section/padding_6": T.PANEL, + "weapons_section/header_4": T.PANEL, + "weapons_section/paragraph_6_not_touch": T.PANEL, + "weapons_section/paragraph_6_touch": T.PANEL, + "weapons_section/padding_7": T.PANEL, + "weapons_section/header_5": T.PANEL, + "weapons_section/paragraph_7": T.PANEL, + "minecoins_button": T.PANEL, + "minecoins_section": T.STACK_PANEL, + "minecoins_section/paragraph_1": T.PANEL, + "minecoins_section/padding_1": T.PANEL, + "minecoins_section/paragraph_2": T.PANEL, + "minecoins_section/padding_2": T.PANEL, + "minecoins_section/get_minecoins_button": T.BUTTON, + "minecoins_section/padding_3": T.PANEL, + "minecoins_section/header_1": T.PANEL, + "minecoins_section/paragraph_3": T.PANEL, + "addons_button": T.PANEL, + "addons_section": T.STACK_PANEL, + "addons_section/paragraph_1": T.PANEL, + "addons_section/padding_1": T.PANEL, + "addons_section/paragraph_2": T.PANEL, + "addons_section/padding_2": T.PANEL, + "addons_section/header_1": T.PANEL, + "addons_section/paragraph_3": T.PANEL, + "addons_section/padding_3": T.PANEL, + "addons_section/paragraph_4": T.PANEL, + "addons_section/padding_4": T.PANEL, + "addons_section/paragraph_5": T.PANEL, + "addons_section/addons_faq_button": T.BUTTON, + "worlds_button": T.PANEL, + "worlds_section": T.STACK_PANEL, + "worlds_section/paragraph_1": T.PANEL, + "worlds_section/padding_1": T.PANEL, + "worlds_section/paragraph_2": T.PANEL, + "worlds_section/padding_2": T.PANEL, + "worlds_section/paragraph_3": T.PANEL, + "worlds_section/padding_3": T.PANEL, + "worlds_section/paragraph_4": T.PANEL, + "worlds_section/padding_4": T.PANEL, + "worlds_section/header_1": T.PANEL, + "worlds_section/paragraph_5": T.PANEL, + "worlds_section/padding_5": T.PANEL, + "worlds_section/paragraph_6": T.PANEL, + "worlds_section/padding_6": T.PANEL, + "worlds_section/header_2": T.PANEL, + "worlds_section/paragraph_7": T.PANEL, + "worlds_section/padding_7": T.PANEL, + "worlds_section/paragraph_8": T.PANEL, + "worlds_section/padding_8": T.PANEL, + "worlds_section/header_3": T.PANEL, + "worlds_section/paragraph_9": T.PANEL, + "worlds_section/padding_9": T.PANEL, + "worlds_section/paragraph_10": T.PANEL, + "worlds_section/padding_10": T.PANEL, + "worlds_section/header_4": T.PANEL, + "worlds_section/paragraph_11": T.PANEL, + "worlds_section/padding_11": T.PANEL, + "worlds_section/paragraph_12": T.PANEL, + "worlds_section/padding_12": T.PANEL, + "textures_button": T.PANEL, + "textures_section": T.STACK_PANEL, + "textures_section/paragraph_1": T.PANEL, + "skins_button": T.PANEL, + "skins_section": T.STACK_PANEL, + "skins_section/paragraph_1": T.PANEL, + "mashups_button": T.PANEL, + "mashups_section": T.STACK_PANEL, + "mashups_section/paragraph_1": T.PANEL, } export type ExpandedSkinPackType = { - banner_fill: T.IMAGE - title_label: T.LABEL - label: T.LABEL - undo_image: T.IMAGE - lock_icon: T.IMAGE - skin_button: T.BUTTON - "skin_button/hover": T.IMAGE - "skin_button/pressed": T.IMAGE - skin_rotation_arrows: T.IMAGE - skin_viewer_panel: T.INPUT_PANEL - "skin_viewer_panel/skin_model_panel": T.PANEL - "skin_viewer_panel/skin_model_panel/skin_model": T.CUSTOM - "skin_viewer_panel/lock": T.IMAGE - undo_skin_button: T.BUTTON - confirm_skin_button: T.BUTTON - stack_item: T.PANEL - accept_skin_panel: T.STACK_PANEL - "accept_skin_panel/stack_item_0": T.PANEL - "accept_skin_panel/stack_item_0/undo_btn": T.BUTTON - "accept_skin_panel/stack_item_1": T.PANEL - "accept_skin_panel/stack_item_1/confirm_button": T.BUTTON - preview_skin_panel: T.PANEL - "preview_skin_panel/preview": T.INPUT_PANEL - "preview_skin_panel/button_frame": T.STACK_PANEL - "preview_skin_panel/button_frame/stack_item_0": T.PANEL - "preview_skin_panel/button_frame/stack_item_0/rotation": T.IMAGE - "preview_skin_panel/button_frame/stack_item_1": T.PANEL - "preview_skin_panel/button_frame/stack_item_1/accept": T.STACK_PANEL - skin_model: T.CUSTOM - scrolling_content: T.STACK_PANEL - "scrolling_content/padding_0": T.PANEL - "scrolling_content/pack_info_panel": T.PANEL - "scrolling_content/pack_info_panel/pack_info_panel": T.STACK_PANEL - "scrolling_content/skin_grid_panel": T.PANEL - "scrolling_content/skin_grid_panel/skins_grid": T.GRID - pack_info_panel: T.STACK_PANEL - "pack_info_panel/lock_icon_panel": T.PANEL - "pack_info_panel/lock_icon_panel/lock_icon": T.IMAGE - "pack_info_panel/pack_info_panel": T.STACK_PANEL - "pack_info_panel/pack_info_panel/pack_name": T.LABEL - "pack_info_panel/pack_info_panel/creator_name": T.LABEL - skins_grid_item: T.PANEL - "skins_grid_item/clip": T.PANEL - "skins_grid_item/clip/model": T.CUSTOM - "skins_grid_item/lock": T.IMAGE - "skins_grid_item/button": T.BUTTON - skins_grid: T.GRID - select_skin_button: T.BUTTON - "select_skin_button/default": T.PANEL - "select_skin_button/hover": T.IMAGE - "select_skin_button/pressed": T.IMAGE - all_skins_content: T.INPUT_PANEL - "all_skins_content/scrolling_frame": T.PANEL - "all_skins_content/scrolling_frame/change_skin_scroll": T.PANEL - all_skins_frame: T.PANEL - "all_skins_frame/all_skins_content": T.INPUT_PANEL - title_bar: T.STACK_PANEL - "title_bar/padding_0": T.PANEL - "title_bar/fill_panel": T.PANEL - "title_bar/fill_panel/title_holder": T.PANEL - "title_bar/fill_panel/title_holder/change_skin_title": T.LABEL - "title_bar/padding_1": T.PANEL - "title_bar/skin_name_holder": T.PANEL - "title_bar/skin_name_holder/preview_skin_name": T.LABEL - "title_bar/padding_2": T.PANEL - content: T.PANEL - "content/title": T.STACK_PANEL - "content/selector_area": T.INPUT_PANEL - "content/content_area": T.INPUT_PANEL - "content/section_divider": T.IMAGE - expanded_skin_pack_screen: T.SCREEN - skin_picker_screen_content: T.PANEL - "skin_picker_screen_content/bg": T.STACK_PANEL - "skin_picker_screen_content/container": T.PANEL - "skin_picker_screen_content/container/content": T.PANEL - scrollable_selector_area_content: T.PANEL - selector_area: T.INPUT_PANEL - "selector_area/all_skins": T.PANEL - "selector_area/inactive_modal_pane_fade": T.IMAGE - content_area: T.INPUT_PANEL - "content_area/preview_skin": T.PANEL - "content_area/inactive_modal_pane_fade": T.IMAGE - section_divider: T.IMAGE + "banner_fill": T.IMAGE, + "title_label": T.LABEL, + "label": T.LABEL, + "undo_image": T.IMAGE, + "lock_icon": T.IMAGE, + "skin_button": T.BUTTON, + "skin_button/hover": T.IMAGE, + "skin_button/pressed": T.IMAGE, + "skin_rotation_arrows": T.IMAGE, + "skin_viewer_panel": T.INPUT_PANEL, + "skin_viewer_panel/skin_model_panel": T.PANEL, + "skin_viewer_panel/skin_model_panel/skin_model": T.CUSTOM, + "skin_viewer_panel/lock": T.IMAGE, + "undo_skin_button": T.BUTTON, + "confirm_skin_button": T.BUTTON, + "stack_item": T.PANEL, + "accept_skin_panel": T.STACK_PANEL, + "accept_skin_panel/stack_item_0": T.PANEL, + "accept_skin_panel/stack_item_0/undo_btn": T.BUTTON, + "accept_skin_panel/stack_item_1": T.PANEL, + "accept_skin_panel/stack_item_1/confirm_button": T.BUTTON, + "preview_skin_panel": T.PANEL, + "preview_skin_panel/preview": T.INPUT_PANEL, + "preview_skin_panel/button_frame": T.STACK_PANEL, + "preview_skin_panel/button_frame/stack_item_0": T.PANEL, + "preview_skin_panel/button_frame/stack_item_0/rotation": T.IMAGE, + "preview_skin_panel/button_frame/stack_item_1": T.PANEL, + "preview_skin_panel/button_frame/stack_item_1/accept": T.STACK_PANEL, + "skin_model": T.CUSTOM, + "scrolling_content": T.STACK_PANEL, + "scrolling_content/padding_0": T.PANEL, + "scrolling_content/pack_info_panel": T.PANEL, + "scrolling_content/pack_info_panel/pack_info_panel": T.STACK_PANEL, + "scrolling_content/skin_grid_panel": T.PANEL, + "scrolling_content/skin_grid_panel/skins_grid": T.GRID, + "pack_info_panel": T.STACK_PANEL, + "pack_info_panel/lock_icon_panel": T.PANEL, + "pack_info_panel/lock_icon_panel/lock_icon": T.IMAGE, + "pack_info_panel/pack_info_panel": T.STACK_PANEL, + "pack_info_panel/pack_info_panel/pack_name": T.LABEL, + "pack_info_panel/pack_info_panel/creator_name": T.LABEL, + "skins_grid_item": T.PANEL, + "skins_grid_item/clip": T.PANEL, + "skins_grid_item/clip/model": T.CUSTOM, + "skins_grid_item/lock": T.IMAGE, + "skins_grid_item/button": T.BUTTON, + "skins_grid": T.GRID, + "select_skin_button": T.BUTTON, + "select_skin_button/default": T.PANEL, + "select_skin_button/hover": T.IMAGE, + "select_skin_button/pressed": T.IMAGE, + "all_skins_content": T.INPUT_PANEL, + "all_skins_content/scrolling_frame": T.PANEL, + "all_skins_content/scrolling_frame/change_skin_scroll": T.PANEL, + "all_skins_frame": T.PANEL, + "all_skins_frame/all_skins_content": T.INPUT_PANEL, + "title_bar": T.STACK_PANEL, + "title_bar/padding_0": T.PANEL, + "title_bar/fill_panel": T.PANEL, + "title_bar/fill_panel/title_holder": T.PANEL, + "title_bar/fill_panel/title_holder/change_skin_title": T.LABEL, + "title_bar/padding_1": T.PANEL, + "title_bar/skin_name_holder": T.PANEL, + "title_bar/skin_name_holder/preview_skin_name": T.LABEL, + "title_bar/padding_2": T.PANEL, + "content": T.PANEL, + "content/title": T.STACK_PANEL, + "content/selector_area": T.INPUT_PANEL, + "content/content_area": T.INPUT_PANEL, + "content/section_divider": T.IMAGE, + "expanded_skin_pack_screen": T.SCREEN, + "skin_picker_screen_content": T.PANEL, + "skin_picker_screen_content/bg": T.STACK_PANEL, + "skin_picker_screen_content/container": T.PANEL, + "skin_picker_screen_content/container/content": T.PANEL, + "scrollable_selector_area_content": T.PANEL, + "selector_area": T.INPUT_PANEL, + "selector_area/all_skins": T.PANEL, + "selector_area/inactive_modal_pane_fade": T.IMAGE, + "content_area": T.INPUT_PANEL, + "content_area/preview_skin": T.PANEL, + "content_area/inactive_modal_pane_fade": T.IMAGE, + "section_divider": T.IMAGE, } export type FeedCommonType = { - top_bar_gradient: T.CUSTOM - label: T.LABEL - smooth_label: T.LABEL - share_label: T.LABEL - title_label: T.LABEL - feed_label: T.LABEL - item_label: T.LABEL - return_label: T.LABEL - prev_label: T.LABEL - next_label: T.LABEL - delete_label: T.LABEL - report_to_club_label: T.LABEL - report_to_xbox_label: T.LABEL - new_post_header_text: T.LABEL - feed_button: T.BUTTON - return_button: T.BUTTON - prev_button: T.BUTTON - prev_panel: T.STACK_PANEL - "prev_panel/padding_1": T.PANEL - "prev_panel/lab_panel": T.STACK_PANEL - "prev_panel/lab_panel/vert_pad": T.PANEL - "prev_panel/lab_panel/prevlab": T.LABEL - next_button: T.BUTTON - next_panel: T.STACK_PANEL - "next_panel/lab_panel2": T.STACK_PANEL - "next_panel/lab_panel2/vert_pad2": T.PANEL - "next_panel/lab_panel2/nextlab": T.LABEL - "next_panel/padding_2": T.PANEL - like_button: T.BUTTON - delete_button: T.BUTTON - report_to_xbox_button: T.BUTTON - report_to_club_button: T.BUTTON - options_button: T.BUTTON - options_close_button_high_contrast: T.BUTTON - "options_close_button_high_contrast/background": T.IMAGE - "options_close_button_high_contrast/default": T.PANEL - "options_close_button_high_contrast/hover": T.PANEL - "options_close_button_high_contrast/pressed": T.PANEL - share_button: T.BUTTON - spacing_gap: T.PANEL - platform_icon: T.IMAGE - platform_icon_panel: T.PANEL - "platform_icon_panel/platform_icon": T.IMAGE - account_link_image: T.IMAGE - account_link_icon: T.STACK_PANEL - "account_link_icon/space_01": T.PANEL - "account_link_icon/account_link_image": T.IMAGE - "account_link_icon/space_02": T.PANEL - player_pic_bevel: T.IMAGE - no_feed_item_content: T.LABEL - gamepad_helpers: T.STACK_PANEL - share_text_box: T.EDIT_BOX - progress_loading_bars: T.IMAGE - popup_dialog_bg: T.IMAGE - pagination_panel: T.PANEL - "pagination_panel/prev_button": T.BUTTON - "pagination_panel/page_text": T.LABEL - "pagination_panel/next_button": T.BUTTON - pagination_panel_gamepad: T.PANEL - "pagination_panel_gamepad/prev_panel": T.STACK_PANEL - "pagination_panel_gamepad/page_text": T.LABEL - "pagination_panel_gamepad/next_panel": T.STACK_PANEL - like_image: T.IMAGE - like_image_default: T.IMAGE - like_image_panel: T.PANEL - "like_image_panel/like_image_instance": T.IMAGE - "like_image_panel/like_image_default": T.IMAGE - feed_like_content_panel: T.STACK_PANEL - "feed_like_content_panel/like_image_panel": T.PANEL - "feed_like_content_panel/like_label": T.LABEL - white_banner: T.IMAGE - page_text: T.LABEL - options_icon: T.IMAGE - transparent_background: T.IMAGE - black_arrow: T.IMAGE - faded_background_image: T.IMAGE - unviewed_post_badge: T.IMAGE - "unviewed_post_badge/unviewed_post_text": T.LABEL + "top_bar_gradient": T.CUSTOM, + "label": T.LABEL, + "smooth_label": T.LABEL, + "share_label": T.LABEL, + "title_label": T.LABEL, + "feed_label": T.LABEL, + "item_label": T.LABEL, + "return_label": T.LABEL, + "prev_label": T.LABEL, + "next_label": T.LABEL, + "delete_label": T.LABEL, + "report_to_club_label": T.LABEL, + "report_to_xbox_label": T.LABEL, + "new_post_header_text": T.LABEL, + "feed_button": T.BUTTON, + "return_button": T.BUTTON, + "prev_button": T.BUTTON, + "prev_panel": T.STACK_PANEL, + "prev_panel/padding_1": T.PANEL, + "prev_panel/lab_panel": T.STACK_PANEL, + "prev_panel/lab_panel/vert_pad": T.PANEL, + "prev_panel/lab_panel/prevlab": T.LABEL, + "next_button": T.BUTTON, + "next_panel": T.STACK_PANEL, + "next_panel/lab_panel2": T.STACK_PANEL, + "next_panel/lab_panel2/vert_pad2": T.PANEL, + "next_panel/lab_panel2/nextlab": T.LABEL, + "next_panel/padding_2": T.PANEL, + "like_button": T.BUTTON, + "delete_button": T.BUTTON, + "report_to_xbox_button": T.BUTTON, + "report_to_club_button": T.BUTTON, + "options_button": T.BUTTON, + "options_close_button_high_contrast": T.BUTTON, + "options_close_button_high_contrast/background": T.IMAGE, + "options_close_button_high_contrast/default": T.PANEL, + "options_close_button_high_contrast/hover": T.PANEL, + "options_close_button_high_contrast/pressed": T.PANEL, + "share_button": T.BUTTON, + "spacing_gap": T.PANEL, + "platform_icon": T.IMAGE, + "platform_icon_panel": T.PANEL, + "platform_icon_panel/platform_icon": T.IMAGE, + "account_link_image": T.IMAGE, + "account_link_icon": T.STACK_PANEL, + "account_link_icon/space_01": T.PANEL, + "account_link_icon/account_link_image": T.IMAGE, + "account_link_icon/space_02": T.PANEL, + "player_pic_bevel": T.IMAGE, + "no_feed_item_content": T.LABEL, + "gamepad_helpers": T.STACK_PANEL, + "share_text_box": T.EDIT_BOX, + "progress_loading_bars": T.IMAGE, + "popup_dialog_bg": T.IMAGE, + "pagination_panel": T.PANEL, + "pagination_panel/prev_button": T.BUTTON, + "pagination_panel/page_text": T.LABEL, + "pagination_panel/next_button": T.BUTTON, + "pagination_panel_gamepad": T.PANEL, + "pagination_panel_gamepad/prev_panel": T.STACK_PANEL, + "pagination_panel_gamepad/page_text": T.LABEL, + "pagination_panel_gamepad/next_panel": T.STACK_PANEL, + "like_image": T.IMAGE, + "like_image_default": T.IMAGE, + "like_image_panel": T.PANEL, + "like_image_panel/like_image_instance": T.IMAGE, + "like_image_panel/like_image_default": T.IMAGE, + "feed_like_content_panel": T.STACK_PANEL, + "feed_like_content_panel/like_image_panel": T.PANEL, + "feed_like_content_panel/like_label": T.LABEL, + "white_banner": T.IMAGE, + "page_text": T.LABEL, + "options_icon": T.IMAGE, + "transparent_background": T.IMAGE, + "black_arrow": T.IMAGE, + "faded_background_image": T.IMAGE, + "unviewed_post_badge": T.IMAGE, + "unviewed_post_badge/unviewed_post_text": T.LABEL, } export type FileUploadType = { - empty_progress_bar_icon: T.IMAGE - full_progress_bar_icon: T.IMAGE - progress_bar_nub: T.IMAGE - progress_bar_icon: T.PANEL - "progress_bar_icon/empty_progress_bar_icon": T.IMAGE - "progress_bar_icon/progress_percent_panel": T.PANEL - "progress_bar_icon/progress_percent_panel/full_progress_bar_icon": T.IMAGE - "progress_bar_icon/progress_percent_panel/progress_bar_nub": T.IMAGE - common_label: T.LABEL - progress_text_panel: T.PANEL - "progress_text_panel/progress": T.LABEL - "progress_text_panel/total": T.LABEL - message_text_panel: T.PANEL - "message_text_panel/message_text": T.LABEL - button_common: T.BUTTON - lets_go_button: T.BUTTON - cancel_button: T.BUTTON - continue_button: T.BUTTON - continue_or_cancel_button: T.PANEL - "continue_or_cancel_button/continue": T.BUTTON - "continue_or_cancel_button/cancel": T.BUTTON - single_title_panel: T.PANEL - "single_title_panel/center": T.LABEL - dual_title_panel: T.PANEL - "dual_title_panel/left": T.LABEL - "dual_title_panel/right": T.LABEL - upload_title_panel: T.PANEL - "upload_title_panel/single_label": T.PANEL - "upload_title_panel/dual_label": T.PANEL - content_panel: T.PANEL - "content_panel/stack_panel_0": T.STACK_PANEL - "content_panel/stack_panel_1": T.PANEL - content_stack_panel: T.STACK_PANEL - "content_stack_panel/message": T.PANEL - "content_stack_panel/description": T.PANEL - "content_stack_panel/progress": T.PANEL - warning_content_panel: T.PANEL - "warning_content_panel/message": T.LABEL - button_panel: T.PANEL - "button_panel/play": T.BUTTON - "button_panel/cancel": T.BUTTON - "button_panel/continue_cancel": T.PANEL - file_upload_content: T.PANEL - "file_upload_content/title_panel_content": T.PANEL - "file_upload_content/content": T.PANEL - "file_upload_content/content/background": T.PANEL - "file_upload_content/content/title": T.PANEL - "file_upload_content/content/content": T.PANEL - "file_upload_content/content/buttons": T.PANEL - file_transmission_screen: T.SCREEN + "empty_progress_bar_icon": T.IMAGE, + "full_progress_bar_icon": T.IMAGE, + "progress_bar_nub": T.IMAGE, + "progress_bar_icon": T.PANEL, + "progress_bar_icon/empty_progress_bar_icon": T.IMAGE, + "progress_bar_icon/progress_percent_panel": T.PANEL, + "progress_bar_icon/progress_percent_panel/full_progress_bar_icon": T.IMAGE, + "progress_bar_icon/progress_percent_panel/progress_bar_nub": T.IMAGE, + "common_label": T.LABEL, + "progress_text_panel": T.PANEL, + "progress_text_panel/progress": T.LABEL, + "progress_text_panel/total": T.LABEL, + "message_text_panel": T.PANEL, + "message_text_panel/message_text": T.LABEL, + "button_common": T.BUTTON, + "lets_go_button": T.BUTTON, + "cancel_button": T.BUTTON, + "continue_button": T.BUTTON, + "continue_or_cancel_button": T.PANEL, + "continue_or_cancel_button/continue": T.BUTTON, + "continue_or_cancel_button/cancel": T.BUTTON, + "single_title_panel": T.PANEL, + "single_title_panel/center": T.LABEL, + "dual_title_panel": T.PANEL, + "dual_title_panel/left": T.LABEL, + "dual_title_panel/right": T.LABEL, + "upload_title_panel": T.PANEL, + "upload_title_panel/single_label": T.PANEL, + "upload_title_panel/dual_label": T.PANEL, + "content_panel": T.PANEL, + "content_panel/stack_panel_0": T.STACK_PANEL, + "content_panel/stack_panel_1": T.PANEL, + "content_stack_panel": T.STACK_PANEL, + "content_stack_panel/message": T.PANEL, + "content_stack_panel/description": T.PANEL, + "content_stack_panel/progress": T.PANEL, + "warning_content_panel": T.PANEL, + "warning_content_panel/message": T.LABEL, + "button_panel": T.PANEL, + "button_panel/play": T.BUTTON, + "button_panel/cancel": T.BUTTON, + "button_panel/continue_cancel": T.PANEL, + "file_upload_content": T.PANEL, + "file_upload_content/title_panel_content": T.PANEL, + "file_upload_content/content": T.PANEL, + "file_upload_content/content/background": T.PANEL, + "file_upload_content/content/title": T.PANEL, + "file_upload_content/content/content": T.PANEL, + "file_upload_content/content/buttons": T.PANEL, + "file_transmission_screen": T.SCREEN, } export type FurnaceType = { - flame_panel: T.PANEL - "flame_panel/flame_empty_image": T.IMAGE - "flame_panel/flame_full_image": T.IMAGE - furnace_arrow_empty_image: T.IMAGE - furnace_arrow_full_image: T.IMAGE - flame_empty_image: T.IMAGE - flame_full_image: T.IMAGE - furnace_label: T.LABEL - furnace_input_panel: T.PANEL - "furnace_input_panel/panel": T.PANEL - "furnace_input_panel/panel/furnace_ingredient_panel": T.PANEL - "furnace_input_panel/panel/flame_panel": T.PANEL - "furnace_input_panel/panel/furnace_fuel_panel": T.PANEL - furnace_ingredient_panel: T.PANEL - "furnace_ingredient_panel/ingredient_item": T.INPUT_PANEL - furnace_fuel_panel: T.PANEL - "furnace_fuel_panel/fuel_item": T.INPUT_PANEL - furnace_output_panel: T.PANEL - "furnace_output_panel/output_item": T.INPUT_PANEL - furnace_panel_top_half: T.PANEL - "furnace_panel_top_half/furnace_label": T.LABEL - "furnace_panel_top_half/input": T.PANEL - "furnace_panel_top_half/furnace_arrow_empty_image": T.IMAGE - "furnace_panel_top_half/furnace_arrow_full_image": T.IMAGE - "furnace_panel_top_half/output": T.PANEL - furnace_panel: T.PANEL - "furnace_panel/container_gamepad_helpers": T.STACK_PANEL - "furnace_panel/selected_item_details_factory": T.FACTORY - "furnace_panel/item_lock_notification_factory": T.FACTORY - "furnace_panel/root_panel": T.INPUT_PANEL - "furnace_panel/root_panel/common_panel": T.PANEL - "furnace_panel/root_panel/furnace_screen_inventory": T.PANEL - "furnace_panel/root_panel/furnace_screen_inventory/furnace_panel_top_half": T.PANEL - "furnace_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL - "furnace_panel/root_panel/furnace_screen_inventory/hotbar_grid": T.GRID - "furnace_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button": T.BUTTON - "furnace_panel/root_panel/inventory_selected_icon_button": T.BUTTON - "furnace_panel/root_panel/gamepad_cursor": T.BUTTON - "furnace_panel/flying_item_renderer": T.CUSTOM - furnace_screen: T.SCREEN + "flame_panel": T.PANEL, + "flame_panel/flame_empty_image": T.IMAGE, + "flame_panel/flame_full_image": T.IMAGE, + "furnace_arrow_empty_image": T.IMAGE, + "furnace_arrow_full_image": T.IMAGE, + "flame_empty_image": T.IMAGE, + "flame_full_image": T.IMAGE, + "furnace_label": T.LABEL, + "furnace_input_panel": T.PANEL, + "furnace_input_panel/panel": T.PANEL, + "furnace_input_panel/panel/furnace_ingredient_panel": T.PANEL, + "furnace_input_panel/panel/flame_panel": T.PANEL, + "furnace_input_panel/panel/furnace_fuel_panel": T.PANEL, + "furnace_ingredient_panel": T.PANEL, + "furnace_ingredient_panel/ingredient_item": T.INPUT_PANEL, + "furnace_fuel_panel": T.PANEL, + "furnace_fuel_panel/fuel_item": T.INPUT_PANEL, + "furnace_output_panel": T.PANEL, + "furnace_output_panel/output_item": T.INPUT_PANEL, + "furnace_panel_top_half": T.PANEL, + "furnace_panel_top_half/furnace_label": T.LABEL, + "furnace_panel_top_half/input": T.PANEL, + "furnace_panel_top_half/furnace_arrow_empty_image": T.IMAGE, + "furnace_panel_top_half/furnace_arrow_full_image": T.IMAGE, + "furnace_panel_top_half/output": T.PANEL, + "furnace_panel": T.PANEL, + "furnace_panel/container_gamepad_helpers": T.STACK_PANEL, + "furnace_panel/selected_item_details_factory": T.FACTORY, + "furnace_panel/item_lock_notification_factory": T.FACTORY, + "furnace_panel/root_panel": T.INPUT_PANEL, + "furnace_panel/root_panel/common_panel": T.PANEL, + "furnace_panel/root_panel/furnace_screen_inventory": T.PANEL, + "furnace_panel/root_panel/furnace_screen_inventory/furnace_panel_top_half": T.PANEL, + "furnace_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL, + "furnace_panel/root_panel/furnace_screen_inventory/hotbar_grid": T.GRID, + "furnace_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button": T.BUTTON, + "furnace_panel/root_panel/inventory_selected_icon_button": T.BUTTON, + "furnace_panel/root_panel/gamepad_cursor": T.BUTTON, + "furnace_panel/flying_item_renderer": T.CUSTOM, + "furnace_screen": T.SCREEN, } export type FurnacePocketType = { - generic_label: T.LABEL - background_image: T.IMAGE - empty_arrow: T.IMAGE - full_arrow: T.IMAGE - flame_empty: T.IMAGE - flame_full: T.IMAGE - input_label: T.LABEL - fuel_label: T.LABEL - result_label: T.LABEL - result_name_label: T.LABEL - furnace_content: T.PANEL - "furnace_content/input_panel": T.PANEL - "furnace_content/input_panel/input_label": T.LABEL - "furnace_content/input_panel/ingredient_item": T.INPUT_PANEL - "furnace_content/flame_empty": T.IMAGE - "furnace_content/flame_full": T.IMAGE - "furnace_content/fuel_panel": T.PANEL - "furnace_content/fuel_panel/fuel_label": T.LABEL - "furnace_content/fuel_panel/fuel_item": T.INPUT_PANEL - "furnace_content/empty_arrow": T.IMAGE - "furnace_content/full_arrow": T.IMAGE - "furnace_content/output_panel": T.PANEL - "furnace_content/output_panel/result_label": T.LABEL - "furnace_content/output_panel/result_name_label": T.LABEL - "furnace_content/output_panel/output_item": T.INPUT_PANEL - inventory_grid: T.GRID - inventory_content: T.PANEL - "inventory_content/scrolling_panel": T.PANEL - header: T.PANEL - "header/header_background": T.IMAGE - "header/close_button": T.BUTTON - "header/panel": T.PANEL - "header/panel/title_label": T.LABEL - inventory_and_furnace_panel: T.PANEL - "inventory_and_furnace_panel/inventory_half_screen": T.PANEL - "inventory_and_furnace_panel/inventory_half_screen/inventory_content": T.PANEL - "inventory_and_furnace_panel/furnace_half_screen": T.PANEL - "inventory_and_furnace_panel/furnace_half_screen/furnace_content": T.PANEL - header_and_content_stack_panel: T.STACK_PANEL - "header_and_content_stack_panel/header": T.PANEL - "header_and_content_stack_panel/inventory_and_furnace_panel": T.PANEL - furnace_panel: T.PANEL - "furnace_panel/bg": T.IMAGE - "furnace_panel/root_panel": T.INPUT_PANEL - "furnace_panel/header_and_content_stack_panel": T.STACK_PANEL - "furnace_panel/container_gamepad_helpers": T.STACK_PANEL - "furnace_panel/inventory_selected_icon_button": T.BUTTON - "furnace_panel/hold_icon": T.BUTTON - "furnace_panel/selected_item_details_factory": T.FACTORY - "furnace_panel/item_lock_notification_factory": T.FACTORY - "furnace_panel/flying_item_renderer": T.CUSTOM + "generic_label": T.LABEL, + "background_image": T.IMAGE, + "empty_arrow": T.IMAGE, + "full_arrow": T.IMAGE, + "flame_empty": T.IMAGE, + "flame_full": T.IMAGE, + "input_label": T.LABEL, + "fuel_label": T.LABEL, + "result_label": T.LABEL, + "result_name_label": T.LABEL, + "furnace_content": T.PANEL, + "furnace_content/input_panel": T.PANEL, + "furnace_content/input_panel/input_label": T.LABEL, + "furnace_content/input_panel/ingredient_item": T.INPUT_PANEL, + "furnace_content/flame_empty": T.IMAGE, + "furnace_content/flame_full": T.IMAGE, + "furnace_content/fuel_panel": T.PANEL, + "furnace_content/fuel_panel/fuel_label": T.LABEL, + "furnace_content/fuel_panel/fuel_item": T.INPUT_PANEL, + "furnace_content/empty_arrow": T.IMAGE, + "furnace_content/full_arrow": T.IMAGE, + "furnace_content/output_panel": T.PANEL, + "furnace_content/output_panel/result_label": T.LABEL, + "furnace_content/output_panel/result_name_label": T.LABEL, + "furnace_content/output_panel/output_item": T.INPUT_PANEL, + "inventory_grid": T.GRID, + "inventory_content": T.PANEL, + "inventory_content/scrolling_panel": T.PANEL, + "header": T.PANEL, + "header/header_background": T.IMAGE, + "header/close_button": T.BUTTON, + "header/panel": T.PANEL, + "header/panel/title_label": T.LABEL, + "inventory_and_furnace_panel": T.PANEL, + "inventory_and_furnace_panel/inventory_half_screen": T.PANEL, + "inventory_and_furnace_panel/inventory_half_screen/inventory_content": T.PANEL, + "inventory_and_furnace_panel/furnace_half_screen": T.PANEL, + "inventory_and_furnace_panel/furnace_half_screen/furnace_content": T.PANEL, + "header_and_content_stack_panel": T.STACK_PANEL, + "header_and_content_stack_panel/header": T.PANEL, + "header_and_content_stack_panel/inventory_and_furnace_panel": T.PANEL, + "furnace_panel": T.PANEL, + "furnace_panel/bg": T.IMAGE, + "furnace_panel/root_panel": T.INPUT_PANEL, + "furnace_panel/header_and_content_stack_panel": T.STACK_PANEL, + "furnace_panel/container_gamepad_helpers": T.STACK_PANEL, + "furnace_panel/inventory_selected_icon_button": T.BUTTON, + "furnace_panel/hold_icon": T.BUTTON, + "furnace_panel/selected_item_details_factory": T.FACTORY, + "furnace_panel/item_lock_notification_factory": T.FACTORY, + "furnace_panel/flying_item_renderer": T.CUSTOM, } export type GameTipType = { - game_tip_animation: T.IMAGE - game_tip_animation_panel: T.PANEL - "game_tip_animation_panel/animated_icon": T.IMAGE - game_tip_label: T.LABEL - game_tip_text_panel: T.STACK_PANEL - "game_tip_text_panel/upper_padding": T.PANEL - "game_tip_text_panel/label": T.LABEL - "game_tip_text_panel/lower_padding": T.PANEL - game_tip_arrow_image: T.IMAGE - game_tip_arrow_panel: T.PANEL - "game_tip_arrow_panel/tip_arrow": T.IMAGE - game_tip_panel: T.STACK_PANEL - "game_tip_panel/animated_panel": T.PANEL - "game_tip_panel/middle_padding": T.PANEL - "game_tip_panel/label": T.STACK_PANEL - "game_tip_panel/right_padding": T.PANEL - game_tip_item_background: T.IMAGE - "game_tip_item_background/horizontal_container": T.STACK_PANEL - "game_tip_item_background/arrow_panel": T.PANEL - chat_stack_game_tip_panel: T.STACK_PANEL - "chat_stack_game_tip_panel/top_padding": T.PANEL - "chat_stack_game_tip_panel/game_tip_background": T.IMAGE - game_tip_factory: T.PANEL - game_tip_chat_stack_factory: T.PANEL + "game_tip_animation": T.IMAGE, + "game_tip_animation_panel": T.PANEL, + "game_tip_animation_panel/animated_icon": T.IMAGE, + "game_tip_label": T.LABEL, + "game_tip_text_panel": T.STACK_PANEL, + "game_tip_text_panel/upper_padding": T.PANEL, + "game_tip_text_panel/label": T.LABEL, + "game_tip_text_panel/lower_padding": T.PANEL, + "game_tip_arrow_image": T.IMAGE, + "game_tip_arrow_panel": T.PANEL, + "game_tip_arrow_panel/tip_arrow": T.IMAGE, + "game_tip_panel": T.STACK_PANEL, + "game_tip_panel/animated_panel": T.PANEL, + "game_tip_panel/middle_padding": T.PANEL, + "game_tip_panel/label": T.STACK_PANEL, + "game_tip_panel/right_padding": T.PANEL, + "game_tip_item_background": T.IMAGE, + "game_tip_item_background/horizontal_container": T.STACK_PANEL, + "game_tip_item_background/arrow_panel": T.PANEL, + "chat_stack_game_tip_panel": T.STACK_PANEL, + "chat_stack_game_tip_panel/top_padding": T.PANEL, + "chat_stack_game_tip_panel/game_tip_background": T.IMAGE, + "game_tip_factory": T.PANEL, + "game_tip_chat_stack_factory": T.PANEL, } export type GamepadDisconnectedType = { - gamepad_disconnected_modal: T.PANEL - "gamepad_disconnected_modal/dialog_background_hollow_3": T.IMAGE - "gamepad_disconnected_modal/dialog_background_hollow_3/control": T.IMAGE - "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel": T.STACK_PANEL - "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_0": T.PANEL - "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/title": T.LABEL - "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_1": T.PANEL - "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/description": T.LABEL - gamepad_disconnected_screen: T.SCREEN + "gamepad_disconnected_modal": T.PANEL, + "gamepad_disconnected_modal/dialog_background_hollow_3": T.IMAGE, + "gamepad_disconnected_modal/dialog_background_hollow_3/control": T.IMAGE, + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel": T.STACK_PANEL, + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_0": T.PANEL, + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/title": T.LABEL, + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_1": T.PANEL, + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/description": T.LABEL, + "gamepad_disconnected_screen": T.SCREEN, } export type GameplayType = { - bundle_selected_item_icon: T.CUSTOM - bundle_open_icon_back: T.CUSTOM - bundle_open_icon_front: T.CUSTOM - bundle_selected_item_background: T.PANEL - "bundle_selected_item_background/bundle_selected_item_background_colour_green": T.IMAGE - "bundle_selected_item_background/bundle_selected_item_background_colour": T.IMAGE - "bundle_selected_item_background/bundle_selected_item_frame": T.IMAGE - bundle_selected_item_panel: T.PANEL - "bundle_selected_item_panel/bundle_selected_item_background": T.PANEL - "bundle_selected_item_panel/bundle_open_icon_back": T.CUSTOM - "bundle_selected_item_panel/bundle_selected_item_icon": T.CUSTOM - "bundle_selected_item_panel/bundle_open_icon_front": T.CUSTOM - "bundle_selected_item_panel/storage_bar": T.CUSTOM - bundle_slot_panel: T.PANEL - "bundle_slot_panel/bundle_selected_item_panel": T.PANEL - bundle_cell_image: T.PANEL - "bundle_cell_image/background_panel": T.PANEL - "bundle_cell_image/background_panel/item_background": T.IMAGE - "bundle_cell_image/highlight_panel": T.PANEL - "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_green": T.IMAGE - "bundle_cell_image/highlight_panel/bundle_selected_item_background_border_white": T.IMAGE - "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_blue": T.IMAGE - bundle_tooltip_slot_button: T.BUTTON - bundle_tooltip_slot_pocket: T.PANEL - "bundle_tooltip_slot_pocket/item_in_bundle_tooltip_pocket": T.INPUT_PANEL - "bundle_tooltip_slot_pocket/more_hidden_items_label": T.LABEL - bundle_tooltip_slot_classic: T.PANEL - "bundle_tooltip_slot_classic/item_in_bundle_tooltip_pocket": T.INPUT_PANEL - "bundle_tooltip_slot_classic/more_hidden_items_label": T.LABEL - bundle_tooltip: T.PANEL - "bundle_tooltip/background": T.IMAGE - "bundle_tooltip/background/empty_button": T.BUTTON - "bundle_tooltip/background/empty_button/default": T.PANEL - "bundle_tooltip/background/empty_button/hover": T.PANEL - "bundle_tooltip/background/empty_button/pressed": T.PANEL - "bundle_tooltip/background/selected_item_tooltip": T.IMAGE - "bundle_tooltip/background/selected_item_tooltip/item_text_label": T.LABEL - "bundle_tooltip/header_stack": T.STACK_PANEL - "bundle_tooltip/header_stack/bundle_label": T.LABEL - "bundle_tooltip/header_stack/close_button": T.BUTTON - "bundle_tooltip/header_stack/close_button/default": T.PANEL - "bundle_tooltip/header_stack/close_button/hover": T.PANEL - "bundle_tooltip/header_stack/close_button/pressed": T.PANEL - "bundle_tooltip/wrapper": T.PANEL - "bundle_tooltip/wrapper/vertical_layout_stack": T.STACK_PANEL - "bundle_tooltip/wrapper/vertical_layout_stack/header_padding": T.PANEL - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack": T.STACK_PANEL - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/left_padding": T.PANEL - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack": T.STACK_PANEL - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/item_grid": T.GRID - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/info_message": T.LABEL - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel": T.PANEL - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar": T.PANEL - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/empty_message": T.LABEL - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_fill": T.IMAGE - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full": T.IMAGE - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full/full_label": T.LABEL - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_border": T.IMAGE - bundle_touch_tooltip: T.PANEL - bundle_tooltip_factory_wrapper: T.PANEL - "bundle_tooltip_factory_wrapper/bundle_cursor_tooltip": T.CUSTOM - bundle_cursor_tooltip: T.CUSTOM - "bundle_cursor_tooltip/tooltip": T.PANEL + "bundle_selected_item_icon": T.CUSTOM, + "bundle_open_icon_back": T.CUSTOM, + "bundle_open_icon_front": T.CUSTOM, + "bundle_selected_item_background": T.PANEL, + "bundle_selected_item_background/bundle_selected_item_background_colour_green": T.IMAGE, + "bundle_selected_item_background/bundle_selected_item_background_colour": T.IMAGE, + "bundle_selected_item_background/bundle_selected_item_frame": T.IMAGE, + "bundle_selected_item_panel": T.PANEL, + "bundle_selected_item_panel/bundle_selected_item_background": T.PANEL, + "bundle_selected_item_panel/bundle_open_icon_back": T.CUSTOM, + "bundle_selected_item_panel/bundle_selected_item_icon": T.CUSTOM, + "bundle_selected_item_panel/bundle_open_icon_front": T.CUSTOM, + "bundle_selected_item_panel/storage_bar": T.CUSTOM, + "bundle_slot_panel": T.PANEL, + "bundle_slot_panel/bundle_selected_item_panel": T.PANEL, + "bundle_cell_image": T.PANEL, + "bundle_cell_image/background_panel": T.PANEL, + "bundle_cell_image/background_panel/item_background": T.IMAGE, + "bundle_cell_image/highlight_panel": T.PANEL, + "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_green": T.IMAGE, + "bundle_cell_image/highlight_panel/bundle_selected_item_background_border_white": T.IMAGE, + "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_blue": T.IMAGE, + "bundle_tooltip_slot_button": T.BUTTON, + "bundle_tooltip_slot_pocket": T.PANEL, + "bundle_tooltip_slot_pocket/item_in_bundle_tooltip_pocket": T.INPUT_PANEL, + "bundle_tooltip_slot_pocket/more_hidden_items_label": T.LABEL, + "bundle_tooltip_slot_classic": T.PANEL, + "bundle_tooltip_slot_classic/item_in_bundle_tooltip_pocket": T.INPUT_PANEL, + "bundle_tooltip_slot_classic/more_hidden_items_label": T.LABEL, + "bundle_tooltip": T.PANEL, + "bundle_tooltip/background": T.IMAGE, + "bundle_tooltip/background/empty_button": T.BUTTON, + "bundle_tooltip/background/empty_button/default": T.PANEL, + "bundle_tooltip/background/empty_button/hover": T.PANEL, + "bundle_tooltip/background/empty_button/pressed": T.PANEL, + "bundle_tooltip/background/selected_item_tooltip": T.IMAGE, + "bundle_tooltip/background/selected_item_tooltip/item_text_label": T.LABEL, + "bundle_tooltip/header_stack": T.STACK_PANEL, + "bundle_tooltip/header_stack/bundle_label": T.LABEL, + "bundle_tooltip/header_stack/close_button": T.BUTTON, + "bundle_tooltip/header_stack/close_button/default": T.PANEL, + "bundle_tooltip/header_stack/close_button/hover": T.PANEL, + "bundle_tooltip/header_stack/close_button/pressed": T.PANEL, + "bundle_tooltip/wrapper": T.PANEL, + "bundle_tooltip/wrapper/vertical_layout_stack": T.STACK_PANEL, + "bundle_tooltip/wrapper/vertical_layout_stack/header_padding": T.PANEL, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack": T.STACK_PANEL, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/left_padding": T.PANEL, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack": T.STACK_PANEL, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/item_grid": T.GRID, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/info_message": T.LABEL, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel": T.PANEL, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar": T.PANEL, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/empty_message": T.LABEL, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_fill": T.IMAGE, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full": T.IMAGE, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full/full_label": T.LABEL, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_border": T.IMAGE, + "bundle_touch_tooltip": T.PANEL, + "bundle_tooltip_factory_wrapper": T.PANEL, + "bundle_tooltip_factory_wrapper/bundle_cursor_tooltip": T.CUSTOM, + "bundle_cursor_tooltip": T.CUSTOM, + "bundle_cursor_tooltip/tooltip": T.PANEL, } export type GatheringInfoType = { - gathering_info_screen: T.SCREEN - info_content: T.PANEL - "info_content/header": T.STACK_PANEL - "info_content/left_panel": T.PANEL - "info_content/left_panel/stack": T.STACK_PANEL - "info_content/left_panel/stack/event_image": T.IMAGE - "info_content/left_panel/stack/pad_2": T.PANEL - "info_content/left_panel/stack/button_and_caption": T.PANEL - "info_content/left_panel/stack/button_and_caption/caption": T.IMAGE - "info_content/left_panel/stack/button_and_caption/action_button": T.BUTTON - "info_content/left_panel/stack/pad_3": T.PANEL - "info_content/left_panel/stack/info_button": T.BUTTON - "info_content/left_panel/stack/pad_4": T.PANEL - "info_content/left_panel/stack/gamepad_helper_panel": T.PANEL - "info_content/left_panel/stack/gamepad_helper_panel/gamepad_helpers": T.STACK_PANEL - "info_content/left_panel/stack/pad_fill": T.PANEL - "info_content/left_panel/stack/gathering_id_label": T.LABEL - "info_content/left_panel/stack/pad_5": T.PANEL - "info_content/section_divider": T.IMAGE - "info_content/right_panel": T.PANEL - "info_content/right_panel/scroll": T.PANEL - right_panel_content: T.STACK_PANEL - "right_panel_content/pad": T.PANEL - "right_panel_content/sign_in_panel": T.STACK_PANEL - "right_panel_content/sign_in_panel/sign_in_image": T.IMAGE - "right_panel_content/sign_in_panel/horizontal_pad": T.PANEL - "right_panel_content/sign_in_panel/text_stack": T.STACK_PANEL - "right_panel_content/sign_in_panel/text_stack/sign_in_title": T.PANEL - "right_panel_content/sign_in_panel/text_stack/text_pad": T.PANEL - "right_panel_content/sign_in_panel/text_stack/sign_in_body": T.PANEL - "right_panel_content/sign_in_pad": T.PANEL - "right_panel_content/qr_panel": T.STACK_PANEL - "right_panel_content/qr_panel/qr_background": T.IMAGE - "right_panel_content/qr_panel/qr_background/qr_image": T.IMAGE - "right_panel_content/qr_panel/horizontal_pad": T.PANEL - "right_panel_content/qr_panel/text_stack": T.STACK_PANEL - "right_panel_content/qr_panel/text_stack/qr_title": T.PANEL - "right_panel_content/qr_panel/text_stack/text_pad": T.PANEL - "right_panel_content/qr_panel/text_stack/qr_body": T.PANEL - "right_panel_content/qr_pad": T.PANEL - "right_panel_content/title": T.PANEL - "right_panel_content/pad_1": T.PANEL - "right_panel_content/body": T.PANEL - "right_panel_content/pad_2": T.PANEL - "right_panel_content/body_image": T.IMAGE - "right_panel_content/footer": T.INPUT_PANEL - tts_label: T.PANEL - tts_label_title: T.PANEL - sign_in_title: T.LABEL - sign_in_body: T.LABEL - qr_title: T.LABEL - qr_body: T.LABEL - title_panel: T.LABEL - body_panel: T.LABEL - section_divider: T.IMAGE - gamepad_helpers: T.STACK_PANEL - "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL - "gamepad_helpers/gamepad_helper_b": T.STACK_PANEL + "gathering_info_screen": T.SCREEN, + "info_content": T.PANEL, + "info_content/header": T.STACK_PANEL, + "info_content/left_panel": T.PANEL, + "info_content/left_panel/stack": T.STACK_PANEL, + "info_content/left_panel/stack/event_image": T.IMAGE, + "info_content/left_panel/stack/pad_2": T.PANEL, + "info_content/left_panel/stack/button_and_caption": T.PANEL, + "info_content/left_panel/stack/button_and_caption/caption": T.IMAGE, + "info_content/left_panel/stack/button_and_caption/action_button": T.BUTTON, + "info_content/left_panel/stack/pad_3": T.PANEL, + "info_content/left_panel/stack/info_button": T.BUTTON, + "info_content/left_panel/stack/pad_4": T.PANEL, + "info_content/left_panel/stack/gamepad_helper_panel": T.PANEL, + "info_content/left_panel/stack/gamepad_helper_panel/gamepad_helpers": T.STACK_PANEL, + "info_content/left_panel/stack/pad_fill": T.PANEL, + "info_content/left_panel/stack/gathering_id_label": T.LABEL, + "info_content/left_panel/stack/pad_5": T.PANEL, + "info_content/section_divider": T.IMAGE, + "info_content/right_panel": T.PANEL, + "info_content/right_panel/scroll": T.PANEL, + "right_panel_content": T.STACK_PANEL, + "right_panel_content/pad": T.PANEL, + "right_panel_content/sign_in_panel": T.STACK_PANEL, + "right_panel_content/sign_in_panel/sign_in_image": T.IMAGE, + "right_panel_content/sign_in_panel/horizontal_pad": T.PANEL, + "right_panel_content/sign_in_panel/text_stack": T.STACK_PANEL, + "right_panel_content/sign_in_panel/text_stack/sign_in_title": T.PANEL, + "right_panel_content/sign_in_panel/text_stack/text_pad": T.PANEL, + "right_panel_content/sign_in_panel/text_stack/sign_in_body": T.PANEL, + "right_panel_content/sign_in_pad": T.PANEL, + "right_panel_content/qr_panel": T.STACK_PANEL, + "right_panel_content/qr_panel/qr_background": T.IMAGE, + "right_panel_content/qr_panel/qr_background/qr_image": T.IMAGE, + "right_panel_content/qr_panel/horizontal_pad": T.PANEL, + "right_panel_content/qr_panel/text_stack": T.STACK_PANEL, + "right_panel_content/qr_panel/text_stack/qr_title": T.PANEL, + "right_panel_content/qr_panel/text_stack/text_pad": T.PANEL, + "right_panel_content/qr_panel/text_stack/qr_body": T.PANEL, + "right_panel_content/qr_pad": T.PANEL, + "right_panel_content/title": T.PANEL, + "right_panel_content/pad_1": T.PANEL, + "right_panel_content/body": T.PANEL, + "right_panel_content/pad_2": T.PANEL, + "right_panel_content/body_image": T.IMAGE, + "right_panel_content/footer": T.INPUT_PANEL, + "tts_label": T.PANEL, + "tts_label_title": T.PANEL, + "sign_in_title": T.LABEL, + "sign_in_body": T.LABEL, + "qr_title": T.LABEL, + "qr_body": T.LABEL, + "title_panel": T.LABEL, + "body_panel": T.LABEL, + "section_divider": T.IMAGE, + "gamepad_helpers": T.STACK_PANEL, + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL, + "gamepad_helpers/gamepad_helper_b": T.STACK_PANEL, } export type GlobalpauseType = { - message: T.LABEL - quit_button: T.BUTTON - globalpause_screen: T.SCREEN - pause_screen_content: T.PANEL - "pause_screen_content/transparentFill": T.IMAGE - "pause_screen_content/message": T.LABEL - "pause_screen_content/quit_button": T.BUTTON + "message": T.LABEL, + "quit_button": T.BUTTON, + "globalpause_screen": T.SCREEN, + "pause_screen_content": T.PANEL, + "pause_screen_content/transparentFill": T.IMAGE, + "pause_screen_content/message": T.LABEL, + "pause_screen_content/quit_button": T.BUTTON, } export type GrindstoneType = { - title_label: T.LABEL - arrow_icon: T.IMAGE - cross_out_icon: T.IMAGE - grindstone_output_slot_button: T.BUTTON - grindstone_item_slot: T.PANEL - "grindstone_item_slot/container_item": T.INPUT_PANEL - grindstone_middle_panel: T.PANEL - "grindstone_middle_panel/input_item_slot": T.PANEL - "grindstone_middle_panel/additional_item_slot": T.PANEL - grindstone_slots_panel: T.PANEL - "grindstone_slots_panel/grindstone_middle_panel": T.PANEL - "grindstone_slots_panel/yields": T.PANEL - "grindstone_slots_panel/yields/arrow_icon": T.IMAGE - "grindstone_slots_panel/yields/cross_out_icon": T.IMAGE - "grindstone_slots_panel/result_item_slot": T.PANEL - top_half_panel: T.PANEL - "top_half_panel/title_label": T.LABEL - "top_half_panel/grindstone_slots_panel": T.PANEL - grindstone_panel: T.PANEL - "grindstone_panel/container_gamepad_helpers": T.STACK_PANEL - "grindstone_panel/selected_item_details_factory": T.FACTORY - "grindstone_panel/item_lock_notification_factory": T.FACTORY - "grindstone_panel/root_panel": T.INPUT_PANEL - "grindstone_panel/root_panel/common_panel": T.PANEL - "grindstone_panel/root_panel/grindstone_screen_inventory": T.PANEL - "grindstone_panel/root_panel/grindstone_screen_inventory/top_half_panel": T.PANEL - "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL - "grindstone_panel/root_panel/grindstone_screen_inventory/hotbar_grid": T.GRID - "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_take_progress_icon_button": T.BUTTON - "grindstone_panel/root_panel/inventory_selected_icon_button": T.BUTTON - "grindstone_panel/root_panel/gamepad_cursor": T.BUTTON - "grindstone_panel/flying_item_renderer": T.CUSTOM - grindstone_screen: T.SCREEN + "title_label": T.LABEL, + "arrow_icon": T.IMAGE, + "cross_out_icon": T.IMAGE, + "grindstone_output_slot_button": T.BUTTON, + "grindstone_item_slot": T.PANEL, + "grindstone_item_slot/container_item": T.INPUT_PANEL, + "grindstone_middle_panel": T.PANEL, + "grindstone_middle_panel/input_item_slot": T.PANEL, + "grindstone_middle_panel/additional_item_slot": T.PANEL, + "grindstone_slots_panel": T.PANEL, + "grindstone_slots_panel/grindstone_middle_panel": T.PANEL, + "grindstone_slots_panel/yields": T.PANEL, + "grindstone_slots_panel/yields/arrow_icon": T.IMAGE, + "grindstone_slots_panel/yields/cross_out_icon": T.IMAGE, + "grindstone_slots_panel/result_item_slot": T.PANEL, + "top_half_panel": T.PANEL, + "top_half_panel/title_label": T.LABEL, + "top_half_panel/grindstone_slots_panel": T.PANEL, + "grindstone_panel": T.PANEL, + "grindstone_panel/container_gamepad_helpers": T.STACK_PANEL, + "grindstone_panel/selected_item_details_factory": T.FACTORY, + "grindstone_panel/item_lock_notification_factory": T.FACTORY, + "grindstone_panel/root_panel": T.INPUT_PANEL, + "grindstone_panel/root_panel/common_panel": T.PANEL, + "grindstone_panel/root_panel/grindstone_screen_inventory": T.PANEL, + "grindstone_panel/root_panel/grindstone_screen_inventory/top_half_panel": T.PANEL, + "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL, + "grindstone_panel/root_panel/grindstone_screen_inventory/hotbar_grid": T.GRID, + "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_take_progress_icon_button": T.BUTTON, + "grindstone_panel/root_panel/inventory_selected_icon_button": T.BUTTON, + "grindstone_panel/root_panel/gamepad_cursor": T.BUTTON, + "grindstone_panel/flying_item_renderer": T.CUSTOM, + "grindstone_screen": T.SCREEN, } export type GrindstonePocketType = { - background_image: T.IMAGE - repair_title_label: T.LABEL - grindstone_middle_panel: T.PANEL - "grindstone_middle_panel/input_slot": T.INPUT_PANEL - "grindstone_middle_panel/additional_slot": T.INPUT_PANEL - slots_panel: T.PANEL - "slots_panel/grindstone_middle_panel": T.PANEL - "slots_panel/arrow": T.IMAGE - "slots_panel/arrow/cross_out": T.IMAGE - "slots_panel/result_slot": T.INPUT_PANEL - grindstone_contents_panel: T.PANEL - "grindstone_contents_panel/repair_title_label": T.LABEL - "grindstone_contents_panel/slots_panel": T.PANEL - inventory_grid: T.GRID - inventory_content: T.PANEL - "inventory_content/scrolling_panel": T.PANEL - header: T.PANEL - "header/header_background": T.IMAGE - "header/legacy_pocket_close_button": T.BUTTON - "header/panel": T.PANEL - "header/panel/title_label": T.LABEL - inventory_and_grindstone_panel: T.PANEL - "inventory_and_grindstone_panel/inventory_half_screen": T.PANEL - "inventory_and_grindstone_panel/inventory_half_screen/inventory_content": T.PANEL - "inventory_and_grindstone_panel/grindstone_half_screen": T.PANEL - "inventory_and_grindstone_panel/grindstone_half_screen/grindstone_content": T.PANEL - header_and_content_stack_panel: T.STACK_PANEL - "header_and_content_stack_panel/header": T.PANEL - "header_and_content_stack_panel/inventory_and_grindstone_panel": T.PANEL - grindstone_panel: T.PANEL - "grindstone_panel/bg": T.IMAGE - "grindstone_panel/root_panel": T.INPUT_PANEL - "grindstone_panel/header_and_content_stack_panel": T.STACK_PANEL - "grindstone_panel/container_gamepad_helpers": T.STACK_PANEL - "grindstone_panel/inventory_selected_icon_button": T.BUTTON - "grindstone_panel/hold_icon": T.BUTTON - "grindstone_panel/selected_item_details_factory": T.FACTORY - "grindstone_panel/item_lock_notification_factory": T.FACTORY - "grindstone_panel/flying_item_renderer": T.CUSTOM + "background_image": T.IMAGE, + "repair_title_label": T.LABEL, + "grindstone_middle_panel": T.PANEL, + "grindstone_middle_panel/input_slot": T.INPUT_PANEL, + "grindstone_middle_panel/additional_slot": T.INPUT_PANEL, + "slots_panel": T.PANEL, + "slots_panel/grindstone_middle_panel": T.PANEL, + "slots_panel/arrow": T.IMAGE, + "slots_panel/arrow/cross_out": T.IMAGE, + "slots_panel/result_slot": T.INPUT_PANEL, + "grindstone_contents_panel": T.PANEL, + "grindstone_contents_panel/repair_title_label": T.LABEL, + "grindstone_contents_panel/slots_panel": T.PANEL, + "inventory_grid": T.GRID, + "inventory_content": T.PANEL, + "inventory_content/scrolling_panel": T.PANEL, + "header": T.PANEL, + "header/header_background": T.IMAGE, + "header/legacy_pocket_close_button": T.BUTTON, + "header/panel": T.PANEL, + "header/panel/title_label": T.LABEL, + "inventory_and_grindstone_panel": T.PANEL, + "inventory_and_grindstone_panel/inventory_half_screen": T.PANEL, + "inventory_and_grindstone_panel/inventory_half_screen/inventory_content": T.PANEL, + "inventory_and_grindstone_panel/grindstone_half_screen": T.PANEL, + "inventory_and_grindstone_panel/grindstone_half_screen/grindstone_content": T.PANEL, + "header_and_content_stack_panel": T.STACK_PANEL, + "header_and_content_stack_panel/header": T.PANEL, + "header_and_content_stack_panel/inventory_and_grindstone_panel": T.PANEL, + "grindstone_panel": T.PANEL, + "grindstone_panel/bg": T.IMAGE, + "grindstone_panel/root_panel": T.INPUT_PANEL, + "grindstone_panel/header_and_content_stack_panel": T.STACK_PANEL, + "grindstone_panel/container_gamepad_helpers": T.STACK_PANEL, + "grindstone_panel/inventory_selected_icon_button": T.BUTTON, + "grindstone_panel/hold_icon": T.BUTTON, + "grindstone_panel/selected_item_details_factory": T.FACTORY, + "grindstone_panel/item_lock_notification_factory": T.FACTORY, + "grindstone_panel/flying_item_renderer": T.CUSTOM, } export type GammaCalibrationType = { - stack_panel_centering_panel: T.PANEL - "stack_panel_centering_panel/child": T.UNKNOWN - stack_panel_align_left_panel: T.PANEL - "stack_panel_align_left_panel/child": T.UNKNOWN - stack_panel_align_right_panel: T.PANEL - "stack_panel_align_right_panel/child": T.UNKNOWN - image_panel: T.STACK_PANEL - "image_panel/padding": T.PANEL - "image_panel/image": T.IMAGE - horizontal_padding: T.PANEL - image_stack: T.STACK_PANEL - "image_stack/not_visible_image": T.STACK_PANEL - "image_stack/padding_0": T.PANEL - "image_stack/barely_visible_image": T.STACK_PANEL - "image_stack/padding_1": T.PANEL - "image_stack/easily_visible_image": T.STACK_PANEL - button_stack: T.STACK_PANEL - "button_stack/continue_button_panel": T.PANEL - "button_stack/padding": T.PANEL - "button_stack/reset_button_panel": T.PANEL - message_panel: T.PANEL - "message_panel/message_label": T.LABEL - calibration_slider: T.PANEL - "calibration_slider/slider": T.PANEL - continue_button: T.BUTTON - reset_button: T.BUTTON - main_panel: T.STACK_PANEL - "main_panel/hdr_message_panel": T.PANEL - "main_panel/image_stack_panel": T.PANEL - "main_panel/padding_0": T.PANEL - "main_panel/slider_panel": T.PANEL - "main_panel/padding_1": T.PANEL - "main_panel/button_stack_panel": T.PANEL - gamma_calibration_screen: T.SCREEN + "stack_panel_centering_panel": T.PANEL, + "stack_panel_centering_panel/child": T.UNKNOWN, + "stack_panel_align_left_panel": T.PANEL, + "stack_panel_align_left_panel/child": T.UNKNOWN, + "stack_panel_align_right_panel": T.PANEL, + "stack_panel_align_right_panel/child": T.UNKNOWN, + "image_panel": T.STACK_PANEL, + "image_panel/padding": T.PANEL, + "image_panel/image": T.IMAGE, + "horizontal_padding": T.PANEL, + "image_stack": T.STACK_PANEL, + "image_stack/not_visible_image": T.STACK_PANEL, + "image_stack/padding_0": T.PANEL, + "image_stack/barely_visible_image": T.STACK_PANEL, + "image_stack/padding_1": T.PANEL, + "image_stack/easily_visible_image": T.STACK_PANEL, + "button_stack": T.STACK_PANEL, + "button_stack/continue_button_panel": T.PANEL, + "button_stack/padding": T.PANEL, + "button_stack/reset_button_panel": T.PANEL, + "message_panel": T.PANEL, + "message_panel/message_label": T.LABEL, + "calibration_slider": T.PANEL, + "calibration_slider/slider": T.PANEL, + "continue_button": T.BUTTON, + "reset_button": T.BUTTON, + "main_panel": T.STACK_PANEL, + "main_panel/hdr_message_panel": T.PANEL, + "main_panel/image_stack_panel": T.PANEL, + "main_panel/padding_0": T.PANEL, + "main_panel/slider_panel": T.PANEL, + "main_panel/padding_1": T.PANEL, + "main_panel/button_stack_panel": T.PANEL, + "gamma_calibration_screen": T.SCREEN, } export type HorseType = { - renderer_bg: T.IMAGE - overlay_image: T.IMAGE - saddle_image: T.IMAGE - horse_armor_image: T.IMAGE - carpet_image: T.IMAGE - nautilus_armor_image: T.IMAGE - horse_label: T.LABEL - equip_grid: T.GRID - inv_grid: T.GRID - inv_bg_panel: T.PANEL - "inv_bg_panel/cell_image": T.IMAGE - equip_panel: T.PANEL - "equip_panel/equip_grid": T.GRID - "equip_panel/saddle": T.IMAGE - "equip_panel/horse_armor_0": T.IMAGE - "equip_panel/carpet_0": T.IMAGE - "equip_panel/nautilus_armor_0": T.IMAGE - "equip_panel/horse_armor_1": T.IMAGE - "equip_panel/carpet_1": T.IMAGE - "equip_panel/nautilus_armor_1": T.IMAGE - inv_panel: T.PANEL - "inv_panel/inv_bg_panel": T.PANEL - "inv_panel/inv_grid": T.GRID - horse_renderer: T.PANEL - "horse_renderer/renderer_bg": T.IMAGE - "horse_renderer/horse_custom_panel": T.PANEL - "horse_renderer/horse_custom_panel/horse_custom": T.CUSTOM - horse_panel: T.PANEL - "horse_panel/container_gamepad_helpers": T.STACK_PANEL - "horse_panel/selected_item_details_factory": T.FACTORY - "horse_panel/item_lock_notification_factory": T.FACTORY - "horse_panel/root_panel": T.INPUT_PANEL - "horse_panel/root_panel/common_panel": T.PANEL - "horse_panel/root_panel/horse_section_label": T.LABEL - "horse_panel/root_panel/inv_panel": T.PANEL - "horse_panel/root_panel/equipment": T.PANEL - "horse_panel/root_panel/renderer": T.PANEL - "horse_panel/root_panel/inventory_panel_bottom_half_with_label": T.PANEL - "horse_panel/root_panel/hotbar_grid_template": T.GRID - "horse_panel/root_panel/inventory_selected_icon_button": T.BUTTON - "horse_panel/root_panel/gamepad_cursor": T.BUTTON - "horse_panel/flying_item_renderer": T.CUSTOM - horse_screen: T.SCREEN + "renderer_bg": T.IMAGE, + "overlay_image": T.IMAGE, + "saddle_image": T.IMAGE, + "horse_armor_image": T.IMAGE, + "carpet_image": T.IMAGE, + "nautilus_armor_image": T.IMAGE, + "horse_label": T.LABEL, + "equip_grid": T.GRID, + "inv_grid": T.GRID, + "inv_bg_panel": T.PANEL, + "inv_bg_panel/cell_image": T.IMAGE, + "equip_panel": T.PANEL, + "equip_panel/equip_grid": T.GRID, + "equip_panel/saddle": T.IMAGE, + "equip_panel/horse_armor_0": T.IMAGE, + "equip_panel/carpet_0": T.IMAGE, + "equip_panel/nautilus_armor_0": T.IMAGE, + "equip_panel/horse_armor_1": T.IMAGE, + "equip_panel/carpet_1": T.IMAGE, + "equip_panel/nautilus_armor_1": T.IMAGE, + "inv_panel": T.PANEL, + "inv_panel/inv_bg_panel": T.PANEL, + "inv_panel/inv_grid": T.GRID, + "horse_renderer": T.PANEL, + "horse_renderer/renderer_bg": T.IMAGE, + "horse_renderer/horse_custom_panel": T.PANEL, + "horse_renderer/horse_custom_panel/horse_custom": T.CUSTOM, + "horse_panel": T.PANEL, + "horse_panel/container_gamepad_helpers": T.STACK_PANEL, + "horse_panel/selected_item_details_factory": T.FACTORY, + "horse_panel/item_lock_notification_factory": T.FACTORY, + "horse_panel/root_panel": T.INPUT_PANEL, + "horse_panel/root_panel/common_panel": T.PANEL, + "horse_panel/root_panel/horse_section_label": T.LABEL, + "horse_panel/root_panel/inv_panel": T.PANEL, + "horse_panel/root_panel/equipment": T.PANEL, + "horse_panel/root_panel/renderer": T.PANEL, + "horse_panel/root_panel/inventory_panel_bottom_half_with_label": T.PANEL, + "horse_panel/root_panel/hotbar_grid_template": T.GRID, + "horse_panel/root_panel/inventory_selected_icon_button": T.BUTTON, + "horse_panel/root_panel/gamepad_cursor": T.BUTTON, + "horse_panel/flying_item_renderer": T.CUSTOM, + "horse_screen": T.SCREEN, } export type HorsePocketType = { - horse_panel: T.PANEL - "horse_panel/gamepad_helpers": T.STACK_PANEL - "horse_panel/inventory_selected_icon_button": T.BUTTON - "horse_panel/gamepad_cursor": T.BUTTON - "horse_panel/selected_item_details_factory": T.FACTORY - "horse_panel/item_lock_notification_factory": T.FACTORY - "horse_panel/base_panel": T.PANEL - "horse_panel/base_panel/root_panel": T.INPUT_PANEL - "horse_panel/base_panel/hold_icon": T.BUTTON - "horse_panel/base_panel/bg": T.PANEL - "horse_panel/base_panel/interactive_tabs": T.PANEL - "horse_panel/base_panel/close_button": T.BUTTON - "horse_panel/base_panel/inventory": T.PANEL - "horse_panel/base_panel/equipment": T.PANEL - "horse_panel/base_panel/chest_tab": T.PANEL - "horse_panel/base_panel/chest_tab/visual_tabs_chest": T.PANEL - "horse_panel/base_panel/chest_tab/chest": T.PANEL - "horse_panel/base_panel/renderer_tab": T.PANEL - "horse_panel/base_panel/renderer_tab/visual_tabs_equip": T.PANEL - "horse_panel/base_panel/renderer_tab/renderer": T.PANEL - "horse_panel/flying_item_renderer": T.CUSTOM - background_image: T.IMAGE - dark_bg: T.IMAGE - renderer_bg: T.IMAGE - saddle_image: T.IMAGE - horse_armor_image: T.IMAGE - carpet_image: T.IMAGE - nautilus_armor_image: T.IMAGE - panel_outline: T.IMAGE - close_button_default: T.IMAGE - close_button_pressed: T.IMAGE - close_button: T.BUTTON - "close_button/default": T.IMAGE - "close_button/hover": T.IMAGE - "close_button/pressed": T.IMAGE - base_grid: T.GRID - inventory_grid: T.GRID - chest_grid: T.GRID - base_grid_panel: T.PANEL - "base_grid_panel/panel_outline": T.IMAGE - "base_grid_panel/dark_bg": T.IMAGE - "base_grid_panel/scrolling_panel": T.PANEL - inventory_panel: T.PANEL - chest_panel: T.PANEL - half_screen: T.PANEL - middle_screen: T.PANEL - half_screen_inventory: T.PANEL - "half_screen_inventory/inventory_panel": T.PANEL - half_screen_chest: T.PANEL - "half_screen_chest/chest_panel": T.PANEL - horse_renderer: T.PANEL - "horse_renderer/horse_custom": T.CUSTOM - half_screen_renderer: T.PANEL - "half_screen_renderer/renderer_bg": T.IMAGE - "half_screen_renderer/horse_custom_panel": T.PANEL - "half_screen_renderer/camel_custom_panel": T.PANEL - equip_item_panel: T.PANEL - "equip_item_panel/equip_container_item": T.INPUT_PANEL - equip_grid: T.GRID - equip_middle_screen: T.PANEL - "equip_middle_screen/equip_grid_panel": T.PANEL - "equip_middle_screen/equip_grid_panel/equip_grid": T.GRID - "equip_middle_screen/equip_grid_panel/centered_0": T.IMAGE - "equip_middle_screen/equip_grid_panel/offset": T.IMAGE - "equip_middle_screen/equip_grid_panel/centered_1": T.IMAGE - "equip_middle_screen/equip_grid_panel/centered_2": T.IMAGE - "equip_middle_screen/equip_grid_panel/horse_armor_image": T.IMAGE - "equip_middle_screen/equip_grid_panel/carpet_image": T.IMAGE - horse_screen_tab_toggle: T.TOGGLE - interactive_tabs: T.PANEL - "interactive_tabs/renderer_tab_interactive": T.TOGGLE - "interactive_tabs/chest_tab_interactive": T.TOGGLE - tab_front: T.IMAGE - tab_back: T.IMAGE - close_tab: T.IMAGE - item_icon_renderer: T.CUSTOM - saddle_icon_front: T.CUSTOM - chest_icon_front: T.CUSTOM - visual_tabs_equip: T.PANEL - "visual_tabs_equip/close_tab": T.IMAGE - "visual_tabs_equip/close_tab/nodrop_zone": T.INPUT_PANEL - "visual_tabs_equip/chest": T.IMAGE - "visual_tabs_equip/chest/chest_icon": T.CUSTOM - "visual_tabs_equip/equip": T.IMAGE - "visual_tabs_equip/equip/equip_icon": T.CUSTOM - visual_tabs_chest: T.PANEL - "visual_tabs_chest/close_tab": T.IMAGE - "visual_tabs_chest/chest": T.IMAGE - "visual_tabs_chest/chest/chest_icon": T.CUSTOM - "visual_tabs_chest/equip": T.IMAGE - "visual_tabs_chest/equip/equip_icon": T.CUSTOM + "horse_panel": T.PANEL, + "horse_panel/gamepad_helpers": T.STACK_PANEL, + "horse_panel/inventory_selected_icon_button": T.BUTTON, + "horse_panel/gamepad_cursor": T.BUTTON, + "horse_panel/selected_item_details_factory": T.FACTORY, + "horse_panel/item_lock_notification_factory": T.FACTORY, + "horse_panel/base_panel": T.PANEL, + "horse_panel/base_panel/root_panel": T.INPUT_PANEL, + "horse_panel/base_panel/hold_icon": T.BUTTON, + "horse_panel/base_panel/bg": T.PANEL, + "horse_panel/base_panel/interactive_tabs": T.PANEL, + "horse_panel/base_panel/close_button": T.BUTTON, + "horse_panel/base_panel/inventory": T.PANEL, + "horse_panel/base_panel/equipment": T.PANEL, + "horse_panel/base_panel/chest_tab": T.PANEL, + "horse_panel/base_panel/chest_tab/visual_tabs_chest": T.PANEL, + "horse_panel/base_panel/chest_tab/chest": T.PANEL, + "horse_panel/base_panel/renderer_tab": T.PANEL, + "horse_panel/base_panel/renderer_tab/visual_tabs_equip": T.PANEL, + "horse_panel/base_panel/renderer_tab/renderer": T.PANEL, + "horse_panel/flying_item_renderer": T.CUSTOM, + "background_image": T.IMAGE, + "dark_bg": T.IMAGE, + "renderer_bg": T.IMAGE, + "saddle_image": T.IMAGE, + "horse_armor_image": T.IMAGE, + "carpet_image": T.IMAGE, + "nautilus_armor_image": T.IMAGE, + "panel_outline": T.IMAGE, + "close_button_default": T.IMAGE, + "close_button_pressed": T.IMAGE, + "close_button": T.BUTTON, + "close_button/default": T.IMAGE, + "close_button/hover": T.IMAGE, + "close_button/pressed": T.IMAGE, + "base_grid": T.GRID, + "inventory_grid": T.GRID, + "chest_grid": T.GRID, + "base_grid_panel": T.PANEL, + "base_grid_panel/panel_outline": T.IMAGE, + "base_grid_panel/dark_bg": T.IMAGE, + "base_grid_panel/scrolling_panel": T.PANEL, + "inventory_panel": T.PANEL, + "chest_panel": T.PANEL, + "half_screen": T.PANEL, + "middle_screen": T.PANEL, + "half_screen_inventory": T.PANEL, + "half_screen_inventory/inventory_panel": T.PANEL, + "half_screen_chest": T.PANEL, + "half_screen_chest/chest_panel": T.PANEL, + "horse_renderer": T.PANEL, + "horse_renderer/horse_custom": T.CUSTOM, + "half_screen_renderer": T.PANEL, + "half_screen_renderer/renderer_bg": T.IMAGE, + "half_screen_renderer/horse_custom_panel": T.PANEL, + "half_screen_renderer/camel_custom_panel": T.PANEL, + "equip_item_panel": T.PANEL, + "equip_item_panel/equip_container_item": T.INPUT_PANEL, + "equip_grid": T.GRID, + "equip_middle_screen": T.PANEL, + "equip_middle_screen/equip_grid_panel": T.PANEL, + "equip_middle_screen/equip_grid_panel/equip_grid": T.GRID, + "equip_middle_screen/equip_grid_panel/centered_0": T.IMAGE, + "equip_middle_screen/equip_grid_panel/offset": T.IMAGE, + "equip_middle_screen/equip_grid_panel/centered_1": T.IMAGE, + "equip_middle_screen/equip_grid_panel/centered_2": T.IMAGE, + "equip_middle_screen/equip_grid_panel/horse_armor_image": T.IMAGE, + "equip_middle_screen/equip_grid_panel/carpet_image": T.IMAGE, + "horse_screen_tab_toggle": T.TOGGLE, + "interactive_tabs": T.PANEL, + "interactive_tabs/renderer_tab_interactive": T.TOGGLE, + "interactive_tabs/chest_tab_interactive": T.TOGGLE, + "tab_front": T.IMAGE, + "tab_back": T.IMAGE, + "close_tab": T.IMAGE, + "item_icon_renderer": T.CUSTOM, + "saddle_icon_front": T.CUSTOM, + "chest_icon_front": T.CUSTOM, + "visual_tabs_equip": T.PANEL, + "visual_tabs_equip/close_tab": T.IMAGE, + "visual_tabs_equip/close_tab/nodrop_zone": T.INPUT_PANEL, + "visual_tabs_equip/chest": T.IMAGE, + "visual_tabs_equip/chest/chest_icon": T.CUSTOM, + "visual_tabs_equip/equip": T.IMAGE, + "visual_tabs_equip/equip/equip_icon": T.CUSTOM, + "visual_tabs_chest": T.PANEL, + "visual_tabs_chest/close_tab": T.IMAGE, + "visual_tabs_chest/chest": T.IMAGE, + "visual_tabs_chest/chest/chest_icon": T.CUSTOM, + "visual_tabs_chest/equip": T.IMAGE, + "visual_tabs_chest/equip/equip_icon": T.CUSTOM, } export type HowToPlayCommonType = { - dynamic_dialog_screen: T.SCREEN - screen_background: T.IMAGE - top_bar: T.IMAGE - button_panel: T.LABEL - light_text_button: T.BUTTON - action_button: T.BUTTON - topic_category: T.PANEL - "topic_category/top_padding": T.PANEL - "topic_category/category_text": T.LABEL - toggle_button_control: T.PANEL - "toggle_button_control/tab_button_text": T.LABEL - glyph_button_control: T.PANEL - "glyph_button_control/tab_button_text": T.LABEL - "glyph_button_control/glyph": T.IMAGE - section_toggle_button: T.PANEL - "section_toggle_button/section_toggle_button": T.PANEL - edu_section_toggle_button: T.PANEL - padding: T.PANEL - touch_padding: T.PANEL - small_padding: T.PANEL - large_padding: T.PANEL - section_contents_header: T.INPUT_PANEL - section_contents_footer: T.INPUT_PANEL - main_sections: T.STACK_PANEL - splitscreen_only_content: T.STACK_PANEL - "splitscreen_only_content/0": T.UNKNOWN - tts_focus_border: T.BUTTON - header_tts_focus_border: T.BUTTON - header_background: T.IMAGE - "header_background/header_label": T.LABEL - "header_background/focus_border": T.BUTTON - header: T.PANEL - "header/header": T.IMAGE - paragraph_panel: T.PANEL - paragraph_label: T.LABEL - paragraph_tts_focus_border: T.BUTTON - paragraph: T.PANEL - "paragraph/label": T.LABEL - "paragraph/focus_border": T.BUTTON - paragraph_with_icons: T.PANEL - "paragraph_with_icons/label": T.LABEL - "paragraph_with_icons/focus_border": T.BUTTON - input_conditional_paragraph: T.PANEL - input_conditional_paragraph_with_icons: T.PANEL - paragraph_keyboard: T.PANEL - paragraph_gamepad: T.PANEL - paragraph_gamepad_no_icons: T.PANEL - paragraph_touch: T.PANEL - paragraph_touch_classic_dpad_spacing: T.PANEL - paragraph_touch_no_icons: T.PANEL - paragraph_touch_joystick_tap: T.PANEL - paragraph_touch_classic_dpad: T.PANEL - paragraph_touch_joystick_crosshair: T.PANEL - paragraph_not_touch: T.PANEL - image: T.IMAGE - how_to_play_header: T.PANEL - "how_to_play_header/top_bar": T.IMAGE - "how_to_play_header/top_bar/back_button": T.STACK_PANEL - "how_to_play_header/top_bar/how_to_play_title": T.PANEL - "how_to_play_header/top_bar/gamepad_bumper_helpers": T.STACK_PANEL - how_to_play_content: T.PANEL - "how_to_play_content/header": T.PANEL - "how_to_play_content/container": T.PANEL - dialog_content: T.PANEL - "dialog_content/selector_area": T.PANEL - "dialog_content/content_area": T.PANEL - "dialog_content/section_divider": T.IMAGE - scrollable_selector_area_content: T.PANEL - selector_area: T.PANEL - "selector_area/scrolling_panel": T.PANEL - section_divider: T.IMAGE - content_area_wrapper: T.PANEL - "content_area_wrapper/content_area": T.PANEL - content_area: T.PANEL - "content_area/control": T.STACK_PANEL - "content_area/control/scrolling_panel": T.PANEL - screen_base: T.SCREEN - gamepad_bumper_helper_description: T.LABEL - gamepad_bumper_helpers: T.STACK_PANEL - "gamepad_bumper_helpers/gamepad_helper_left_bumper": T.STACK_PANEL - "gamepad_bumper_helpers/padding": T.PANEL - "gamepad_bumper_helpers/gamepad_helper_right_bumper": T.STACK_PANEL + "dynamic_dialog_screen": T.SCREEN, + "screen_background": T.IMAGE, + "top_bar": T.IMAGE, + "button_panel": T.LABEL, + "light_text_button": T.BUTTON, + "action_button": T.BUTTON, + "topic_category": T.PANEL, + "topic_category/top_padding": T.PANEL, + "topic_category/category_text": T.LABEL, + "toggle_button_control": T.PANEL, + "toggle_button_control/tab_button_text": T.LABEL, + "glyph_button_control": T.PANEL, + "glyph_button_control/tab_button_text": T.LABEL, + "glyph_button_control/glyph": T.IMAGE, + "section_toggle_button": T.PANEL, + "section_toggle_button/section_toggle_button": T.PANEL, + "edu_section_toggle_button": T.PANEL, + "padding": T.PANEL, + "touch_padding": T.PANEL, + "small_padding": T.PANEL, + "large_padding": T.PANEL, + "section_contents_header": T.INPUT_PANEL, + "section_contents_footer": T.INPUT_PANEL, + "main_sections": T.STACK_PANEL, + "splitscreen_only_content": T.STACK_PANEL, + "splitscreen_only_content/0": T.UNKNOWN, + "tts_focus_border": T.BUTTON, + "header_tts_focus_border": T.BUTTON, + "header_background": T.IMAGE, + "header_background/header_label": T.LABEL, + "header_background/focus_border": T.BUTTON, + "header": T.PANEL, + "header/header": T.IMAGE, + "paragraph_panel": T.PANEL, + "paragraph_label": T.LABEL, + "paragraph_tts_focus_border": T.BUTTON, + "paragraph": T.PANEL, + "paragraph/label": T.LABEL, + "paragraph/focus_border": T.BUTTON, + "paragraph_with_icons": T.PANEL, + "paragraph_with_icons/label": T.LABEL, + "paragraph_with_icons/focus_border": T.BUTTON, + "input_conditional_paragraph": T.PANEL, + "input_conditional_paragraph_with_icons": T.PANEL, + "paragraph_keyboard": T.PANEL, + "paragraph_gamepad": T.PANEL, + "paragraph_gamepad_no_icons": T.PANEL, + "paragraph_touch": T.PANEL, + "paragraph_touch_classic_dpad_spacing": T.PANEL, + "paragraph_touch_no_icons": T.PANEL, + "paragraph_touch_joystick_tap": T.PANEL, + "paragraph_touch_classic_dpad": T.PANEL, + "paragraph_touch_joystick_crosshair": T.PANEL, + "paragraph_not_touch": T.PANEL, + "image": T.IMAGE, + "how_to_play_header": T.PANEL, + "how_to_play_header/top_bar": T.IMAGE, + "how_to_play_header/top_bar/back_button": T.STACK_PANEL, + "how_to_play_header/top_bar/how_to_play_title": T.PANEL, + "how_to_play_header/top_bar/gamepad_bumper_helpers": T.STACK_PANEL, + "how_to_play_content": T.PANEL, + "how_to_play_content/header": T.PANEL, + "how_to_play_content/container": T.PANEL, + "dialog_content": T.PANEL, + "dialog_content/selector_area": T.PANEL, + "dialog_content/content_area": T.PANEL, + "dialog_content/section_divider": T.IMAGE, + "scrollable_selector_area_content": T.PANEL, + "selector_area": T.PANEL, + "selector_area/scrolling_panel": T.PANEL, + "section_divider": T.IMAGE, + "content_area_wrapper": T.PANEL, + "content_area_wrapper/content_area": T.PANEL, + "content_area": T.PANEL, + "content_area/control": T.STACK_PANEL, + "content_area/control/scrolling_panel": T.PANEL, + "screen_base": T.SCREEN, + "gamepad_bumper_helper_description": T.LABEL, + "gamepad_bumper_helpers": T.STACK_PANEL, + "gamepad_bumper_helpers/gamepad_helper_left_bumper": T.STACK_PANEL, + "gamepad_bumper_helpers/padding": T.PANEL, + "gamepad_bumper_helpers/gamepad_helper_right_bumper": T.STACK_PANEL, } export type HowToPlayType = { - how_to_play_screen: T.SCREEN - how_to_play_selector_stack_panel: T.STACK_PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane": T.STACK_PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_started_category": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/moving_around_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/gathering_resources_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/selecting_items_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/placing_blocks_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/inventory_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/preparing_for_the_night_category": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/your_first_craft_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/recipe_book_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/the_crafting_table_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/crafting_a_tool_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/mining_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/surviving_the_first_night_category": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/nightfall_new_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/building_a_shelter_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/death_and_respawn_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_settled_category": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/food_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/beds_new_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/improved_tools_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/education_category": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/world_builder_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/permission_blocks_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/chalkboard_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/chemistry_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/npc_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/camera_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/portfolio_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/classroom_mode_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/code_builder_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/padding_1": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/playing_together_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/encyclopedia_button": T.PANEL - how_to_play_section_content_panels: T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/section_contents_header": T.INPUT_PANEL - "how_to_play_section_content_panels/general_tips_sections/moving_around_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/gathering_resources_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/selecting_items_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/placing_blocks_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/inventory_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/your_first_craft_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/recipe_book_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/the_crafting_table_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/crafting_a_tool_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/mining_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/nightfall_new_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/building_a_shelter_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/death_and_respawn_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/food_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/beds_new_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/improved_tools_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/world_builder_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/permission_blocks_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/chalkboard_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/chemistry_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/npc_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/camera_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/portfolio_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/classroom_mode_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/code_builder_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/playing_together_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/encyclopedia_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/section_contents_footer": T.INPUT_PANEL - moving_around_button: T.PANEL - moving_around_section: T.STACK_PANEL - "moving_around_section/paragraph_1": T.PANEL - "moving_around_section/padding_1": T.PANEL - "moving_around_section/paragraph_2_keyboard": T.PANEL - "moving_around_section/paragraph_2_gamepad": T.PANEL - "moving_around_section/paragraph_touch_joystick_tap": T.PANEL - "moving_around_section/padding_2": T.PANEL - "moving_around_section/paragraph_3a_keyboard": T.PANEL - "moving_around_section/paragraph_3b_keyboard": T.PANEL - "moving_around_section/paragraph_3a_gamepad": T.PANEL - "moving_around_section/paragraph_3b_gamepad": T.PANEL - "moving_around_section/paragraph_3_touch_joystick_tap": T.PANEL - "moving_around_section/paragraph_3a_touch_classic_dpad": T.PANEL - "moving_around_section/paragraph_3b_touch_classic_dpad": T.PANEL - "moving_around_section/paragraph_3c_touch_classic_dpad": T.PANEL - "moving_around_section/paragraph_3d_touch_classic_dpad": T.PANEL - "moving_around_section/paragraph_3e_touch_classic_dpad": T.PANEL - "moving_around_section/paragraph_3_touch_joystick_crosshair": T.PANEL - "moving_around_section/image_1": T.IMAGE - gathering_resources_button: T.PANEL - gathering_resources_section: T.STACK_PANEL - "gathering_resources_section/paragraph_1": T.PANEL - "gathering_resources_section/padding_1": T.PANEL - "gathering_resources_section/paragraph_2_keyboard": T.PANEL - "gathering_resources_section/paragraph_2_gamepad": T.PANEL - "gathering_resources_section/paragraph_2_touch_joystick_tap": T.PANEL - "gathering_resources_section/paragraph_2_touch_classic_dpad": T.PANEL - "gathering_resources_section/paragraph_2_touch_joystick_crosshair": T.PANEL - "gathering_resources_section/padding_2": T.PANEL - "gathering_resources_section/paragraph_3": T.PANEL - selecting_items_button: T.PANEL - selecting_items_section: T.STACK_PANEL - "selecting_items_section/paragraph_1": T.PANEL - "selecting_items_section/padding_1": T.PANEL - "selecting_items_section/paragraph_2_keyboard": T.PANEL - "selecting_items_section/paragraph_2_gamepad": T.PANEL - "selecting_items_section/paragraph_touch_joystick_tap": T.PANEL - "selecting_items_section/padding_2": T.PANEL - "selecting_items_section/paragraph_3_keyboard": T.PANEL - "selecting_items_section/paragraph_3_gamepad": T.PANEL - "selecting_items_section/paragraph_3_touch_joystick_tap": T.PANEL - "selecting_items_section/paragraph_3_touch_classic_dpad": T.PANEL - "selecting_items_section/paragraph_3_touch_joystick_crosshair": T.PANEL - "selecting_items_section/padding_3": T.PANEL - "selecting_items_section/header_1": T.PANEL - "selecting_items_section/image_1_not_touch": T.IMAGE - "selecting_items_section/image_1_touch": T.IMAGE - placing_blocks_button: T.PANEL - placing_blocks_section: T.STACK_PANEL - "placing_blocks_section/paragraph_1": T.PANEL - "placing_blocks_section/padding_1": T.PANEL - "placing_blocks_section/paragraph_2_keyboard": T.PANEL - "placing_blocks_section/paragraph_2_gamepad": T.PANEL - "placing_blocks_section/paragraph_2_touch_joystick_tap": T.PANEL - "placing_blocks_section/paragraph_2_touch_classic_dpad": T.PANEL - "placing_blocks_section/paragraph_2_touch_joystick_crosshair": T.PANEL - "placing_blocks_section/padding_2": T.PANEL - "placing_blocks_section/paragraph_3": T.PANEL - inventory_button: T.PANEL - inventory_section: T.STACK_PANEL - "inventory_section/image_1_not_touch": T.IMAGE - "inventory_section/image_1_touch": T.IMAGE - "inventory_section/header_1": T.PANEL - "inventory_section/paragraph_1_keyboard": T.PANEL - "inventory_section/paragraph_1_gamepad": T.PANEL - "inventory_section/paragraph_1_touch": T.PANEL - "inventory_section/padding_2": T.PANEL - "inventory_section/header_2": T.PANEL - "inventory_section/paragraph_2_keyboard": T.PANEL - "inventory_section/paragraph_2_gamepad": T.PANEL - "inventory_section/paragraph_2_touch": T.PANEL - your_first_craft_button: T.PANEL - your_first_craft_section: T.STACK_PANEL - "your_first_craft_section/image_1_not_touch": T.IMAGE - "your_first_craft_section/image_1_touch": T.IMAGE - "your_first_craft_section/header_1": T.PANEL - "your_first_craft_section/paragraph_1": T.PANEL - "your_first_craft_section/padding_2": T.PANEL - "your_first_craft_section/paragraph_2": T.PANEL - "your_first_craft_section/padding_3": T.PANEL - "your_first_craft_section/paragraph_3_touch": T.PANEL - "your_first_craft_section/paragraph_3_keyboard": T.PANEL - "your_first_craft_section/paragraph_3_gamepad": T.PANEL - "your_first_craft_section/padding_4": T.PANEL - "your_first_craft_section/header_2": T.PANEL - "your_first_craft_section/paragraph_4": T.PANEL - "your_first_craft_section/padding_5": T.PANEL - "your_first_craft_section/paragraph_5": T.PANEL - recipe_book_button: T.PANEL - recipe_book_section: T.STACK_PANEL - "recipe_book_section/paragraph_1_keyboard": T.PANEL - "recipe_book_section/paragraph_1_gamepad": T.PANEL - "recipe_book_section/paragraph_1_touch": T.PANEL - "recipe_book_section/padding_1": T.PANEL - "recipe_book_section/paragraph_2_keyboard": T.PANEL - "recipe_book_section/paragraph_2_gamepad": T.PANEL - "recipe_book_section/paragraph_2_touch": T.PANEL - the_crafting_table_button: T.PANEL - the_crafting_table_section: T.STACK_PANEL - "the_crafting_table_section/image_1": T.IMAGE - "the_crafting_table_section/paragraph_1": T.PANEL - "the_crafting_table_section/padding_2": T.PANEL - "the_crafting_table_section/paragraph_2_keyboard": T.PANEL - "the_crafting_table_section/paragraph_2_gamepad": T.PANEL - "the_crafting_table_section/paragraph_2_touch": T.PANEL - crafting_a_tool_button: T.PANEL - crafting_a_tool_section: T.STACK_PANEL - "crafting_a_tool_section/paragraph_1": T.PANEL - "crafting_a_tool_section/padding_1": T.PANEL - "crafting_a_tool_section/paragraph_2_keyboard": T.PANEL - "crafting_a_tool_section/paragraph_2_gamepad": T.PANEL - "crafting_a_tool_section/paragraph_2_touch": T.PANEL - mining_button: T.PANEL - mining_section: T.STACK_PANEL - "mining_section/image_1": T.IMAGE - "mining_section/paragraph_1": T.PANEL - "mining_section/padding_2": T.PANEL - "mining_section/paragraph_2": T.PANEL - "mining_section/padding_3": T.PANEL - "mining_section/paragraph_3": T.PANEL - nightfall_new_button: T.PANEL - nightfall_new_section: T.STACK_PANEL - "nightfall_new_section/paragraph_1": T.PANEL - "nightfall_new_section/padding_1": T.PANEL - "nightfall_new_section/paragraph_2": T.PANEL - "nightfall_new_section/padding_2": T.PANEL - "nightfall_new_section/paragraph_3": T.PANEL - "nightfall_new_section/padding_3": T.PANEL - "nightfall_new_section/paragraph_4_keyboard": T.PANEL - "nightfall_new_section/paragraph_4_gamepad": T.PANEL - "nightfall_new_section/paragraph_4_touch_joystick_tap": T.PANEL - "nightfall_new_section/paragraph_4_touch_classic_dpad": T.PANEL - "nightfall_new_section/paragraph_4_touch_joystick_crosshair": T.PANEL - building_a_shelter_button: T.PANEL - building_a_shelter_section: T.STACK_PANEL - "building_a_shelter_section/image_1": T.IMAGE - "building_a_shelter_section/paragraph_1": T.PANEL - "building_a_shelter_section/padding_2": T.PANEL - "building_a_shelter_section/paragraph_2": T.PANEL - "building_a_shelter_section/padding_3": T.PANEL - "building_a_shelter_section/paragraph_3": T.PANEL - death_and_respawn_button: T.PANEL - death_and_respawn_section: T.STACK_PANEL - "death_and_respawn_section/paragraph_1": T.PANEL - "death_and_respawn_section/padding_1": T.PANEL - "death_and_respawn_section/paragraph_2": T.PANEL - food_button: T.PANEL - food_section: T.STACK_PANEL - "food_section/paragraph_1": T.PANEL - "food_section/padding_1": T.PANEL - "food_section/paragraph_2_keyboard": T.PANEL - "food_section/paragraph_2_gamepad": T.PANEL - "food_section/paragraph_2_touch": T.PANEL - "food_section/padding_2": T.PANEL - "food_section/paragraph_3": T.PANEL - beds_new_button: T.PANEL - beds_new_section: T.STACK_PANEL - "beds_new_section/paragraph_1": T.PANEL - "beds_new_section/padding_1": T.PANEL - "beds_new_section/paragraph_2": T.PANEL - "beds_new_section/padding_2": T.PANEL - "beds_new_section/paragraph_3": T.PANEL - improved_tools_button: T.PANEL - improved_tools_section: T.STACK_PANEL - "improved_tools_section/paragraph_1": T.PANEL - "improved_tools_section/padding_1": T.PANEL - "improved_tools_section/paragraph_2": T.PANEL - world_builder_button: T.PANEL - world_builder_section: T.STACK_PANEL - "world_builder_section/paragraph_1": T.PANEL - "world_builder_section/padding_1": T.PANEL - "world_builder_section/paragraph_2": T.PANEL - "world_builder_section/padding_2": T.PANEL - "world_builder_section/paragraph_3": T.PANEL - "world_builder_section/padding_3": T.PANEL - "world_builder_section/paragraph_4": T.PANEL - "world_builder_section/padding_4": T.PANEL - "world_builder_section/paragraph_5": T.PANEL - "world_builder_section/padding_5": T.PANEL - "world_builder_section/paragraph_6": T.PANEL - "world_builder_section/paragraph_7": T.PANEL - "world_builder_section/padding_7": T.PANEL - "world_builder_section/paragraph_8": T.PANEL - "world_builder_section/padding_8": T.PANEL - "world_builder_section/paragraph_9": T.PANEL - permission_blocks_button: T.PANEL - permission_blocks_section: T.STACK_PANEL - "permission_blocks_section/paragraph_1": T.PANEL - "permission_blocks_section/padding_1": T.PANEL - "permission_blocks_section/header_1": T.PANEL - "permission_blocks_section/paragraph_2": T.PANEL - "permission_blocks_section/padding_3": T.PANEL - "permission_blocks_section/paragraph_3": T.PANEL - "permission_blocks_section/padding_4": T.PANEL - "permission_blocks_section/paragraph_4": T.PANEL - "permission_blocks_section/padding_5": T.PANEL - "permission_blocks_section/paragraph_5": T.PANEL - "permission_blocks_section/padding_7": T.PANEL - "permission_blocks_section/header_2": T.PANEL - "permission_blocks_section/paragraph_6": T.PANEL - chalkboard_button: T.PANEL - chalkboard_section: T.STACK_PANEL - "chalkboard_section/paragraph_1_keyboard": T.PANEL - "chalkboard_section/paragraph_1_gamepad": T.PANEL - "chalkboard_section/paragraph_1_touch": T.PANEL - chemistry_button: T.PANEL - chemistry_section: T.STACK_PANEL - "chemistry_section/paragraph_1": T.PANEL - "chemistry_section/padding_1": T.PANEL - "chemistry_section/paragraph_2": T.PANEL - npc_button: T.PANEL - npc_section: T.STACK_PANEL - "npc_section/paragraph_1": T.PANEL - "npc_section/padding_1": T.PANEL - "npc_section/paragraph_2": T.PANEL - "npc_section/padding_2": T.PANEL - "npc_section/paragraph_3": T.PANEL - camera_button: T.PANEL - camera_section: T.STACK_PANEL - "camera_section/paragraph_1": T.PANEL - "camera_section/padding_1": T.PANEL - "camera_section/paragraph_2_keyboard": T.PANEL - "camera_section/paragraph_2_gamepad": T.PANEL - "camera_section/paragraph_2_touch": T.PANEL - "camera_section/padding_2": T.PANEL - "camera_section/paragraph_3_keyboard": T.PANEL - "camera_section/paragraph_3_gamepad": T.PANEL - "camera_section/paragraph_3_touch": T.PANEL - "camera_section/padding_3": T.PANEL - "camera_section/paragraph_4": T.PANEL - portfolio_button: T.PANEL - portfolio_section: T.STACK_PANEL - "portfolio_section/paragraph_1_keyboard": T.PANEL - "portfolio_section/paragraph_1_gamepad": T.PANEL - "portfolio_section/paragraph_1_touch": T.PANEL - classroom_mode_button: T.PANEL - classroom_mode_section: T.STACK_PANEL - "classroom_mode_section/paragraph_1": T.PANEL - "classroom_mode_section/padding_1": T.PANEL - "classroom_mode_section/paragraph_2": T.PANEL - code_builder_button: T.PANEL - code_builder_section: T.STACK_PANEL - "code_builder_section/paragraph_1": T.PANEL - "code_builder_section/padding_1": T.PANEL - "code_builder_section/paragraph_2_keyboard": T.PANEL - "code_builder_section/paragraph_2_gamepad": T.PANEL - "code_builder_section/paragraph_2_touch": T.PANEL - playing_together_button: T.PANEL - playing_together_section: T.STACK_PANEL - "playing_together_section/paragraph_1": T.PANEL - "playing_together_section/padding_1": T.PANEL - "playing_together_section/header_1": T.PANEL - "playing_together_section/paragraph_2": T.PANEL - "playing_together_section/padding_2": T.PANEL - "playing_together_section/header_2": T.PANEL - "playing_together_section/paragraph_3": T.PANEL - "playing_together_section/padding_3": T.PANEL - "playing_together_section/paragraph_4": T.PANEL - "playing_together_section/padding_4": T.PANEL - "playing_together_section/paragraph_5": T.PANEL - "playing_together_section/padding_5": T.PANEL - "playing_together_section/header_3": T.PANEL - "playing_together_section/paragraph_6": T.PANEL - "playing_together_section/padding_6": T.PANEL - "playing_together_section/paragraph_7": T.PANEL - "playing_together_section/padding_7": T.PANEL - "playing_together_section/paragraph_8": T.PANEL - "playing_together_section/realms_button": T.BUTTON - "playing_together_section/sign_in_button": T.BUTTON - "playing_together_section/padding_8": T.PANEL - "playing_together_section/header_4": T.PANEL - "playing_together_section/paragraph_9": T.PANEL - "playing_together_section/padding_9": T.PANEL - "playing_together_section/paragraph_10": T.PANEL - try_realms_action_button: T.BUTTON - encyclopedia_button: T.PANEL - encyclopedia_section: T.STACK_PANEL - "encyclopedia_section/paragraph_1": T.PANEL + "how_to_play_screen": T.SCREEN, + "how_to_play_selector_stack_panel": T.STACK_PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane": T.STACK_PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_started_category": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/moving_around_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/gathering_resources_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/selecting_items_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/placing_blocks_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/inventory_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/preparing_for_the_night_category": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/your_first_craft_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/recipe_book_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/the_crafting_table_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/crafting_a_tool_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/mining_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/surviving_the_first_night_category": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/nightfall_new_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/building_a_shelter_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/death_and_respawn_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_settled_category": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/food_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/beds_new_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/improved_tools_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/education_category": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/world_builder_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/permission_blocks_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/chalkboard_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/chemistry_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/npc_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/camera_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/portfolio_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/classroom_mode_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/code_builder_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/padding_1": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/playing_together_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/encyclopedia_button": T.PANEL, + "how_to_play_section_content_panels": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/section_contents_header": T.INPUT_PANEL, + "how_to_play_section_content_panels/general_tips_sections/moving_around_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/gathering_resources_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/selecting_items_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/placing_blocks_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/inventory_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/your_first_craft_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/recipe_book_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/the_crafting_table_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/crafting_a_tool_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/mining_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/nightfall_new_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/building_a_shelter_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/death_and_respawn_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/food_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/beds_new_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/improved_tools_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/world_builder_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/permission_blocks_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/chalkboard_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/chemistry_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/npc_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/camera_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/portfolio_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/classroom_mode_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/code_builder_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/playing_together_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/encyclopedia_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/section_contents_footer": T.INPUT_PANEL, + "moving_around_button": T.PANEL, + "moving_around_section": T.STACK_PANEL, + "moving_around_section/paragraph_1": T.PANEL, + "moving_around_section/padding_1": T.PANEL, + "moving_around_section/paragraph_2_keyboard": T.PANEL, + "moving_around_section/paragraph_2_gamepad": T.PANEL, + "moving_around_section/paragraph_touch_joystick_tap": T.PANEL, + "moving_around_section/padding_2": T.PANEL, + "moving_around_section/paragraph_3a_keyboard": T.PANEL, + "moving_around_section/paragraph_3b_keyboard": T.PANEL, + "moving_around_section/paragraph_3a_gamepad": T.PANEL, + "moving_around_section/paragraph_3b_gamepad": T.PANEL, + "moving_around_section/paragraph_3_touch_joystick_tap": T.PANEL, + "moving_around_section/paragraph_3a_touch_classic_dpad": T.PANEL, + "moving_around_section/paragraph_3b_touch_classic_dpad": T.PANEL, + "moving_around_section/paragraph_3c_touch_classic_dpad": T.PANEL, + "moving_around_section/paragraph_3d_touch_classic_dpad": T.PANEL, + "moving_around_section/paragraph_3e_touch_classic_dpad": T.PANEL, + "moving_around_section/paragraph_3_touch_joystick_crosshair": T.PANEL, + "moving_around_section/image_1": T.IMAGE, + "gathering_resources_button": T.PANEL, + "gathering_resources_section": T.STACK_PANEL, + "gathering_resources_section/paragraph_1": T.PANEL, + "gathering_resources_section/padding_1": T.PANEL, + "gathering_resources_section/paragraph_2_keyboard": T.PANEL, + "gathering_resources_section/paragraph_2_gamepad": T.PANEL, + "gathering_resources_section/paragraph_2_touch_joystick_tap": T.PANEL, + "gathering_resources_section/paragraph_2_touch_classic_dpad": T.PANEL, + "gathering_resources_section/paragraph_2_touch_joystick_crosshair": T.PANEL, + "gathering_resources_section/padding_2": T.PANEL, + "gathering_resources_section/paragraph_3": T.PANEL, + "selecting_items_button": T.PANEL, + "selecting_items_section": T.STACK_PANEL, + "selecting_items_section/paragraph_1": T.PANEL, + "selecting_items_section/padding_1": T.PANEL, + "selecting_items_section/paragraph_2_keyboard": T.PANEL, + "selecting_items_section/paragraph_2_gamepad": T.PANEL, + "selecting_items_section/paragraph_touch_joystick_tap": T.PANEL, + "selecting_items_section/padding_2": T.PANEL, + "selecting_items_section/paragraph_3_keyboard": T.PANEL, + "selecting_items_section/paragraph_3_gamepad": T.PANEL, + "selecting_items_section/paragraph_3_touch_joystick_tap": T.PANEL, + "selecting_items_section/paragraph_3_touch_classic_dpad": T.PANEL, + "selecting_items_section/paragraph_3_touch_joystick_crosshair": T.PANEL, + "selecting_items_section/padding_3": T.PANEL, + "selecting_items_section/header_1": T.PANEL, + "selecting_items_section/image_1_not_touch": T.IMAGE, + "selecting_items_section/image_1_touch": T.IMAGE, + "placing_blocks_button": T.PANEL, + "placing_blocks_section": T.STACK_PANEL, + "placing_blocks_section/paragraph_1": T.PANEL, + "placing_blocks_section/padding_1": T.PANEL, + "placing_blocks_section/paragraph_2_keyboard": T.PANEL, + "placing_blocks_section/paragraph_2_gamepad": T.PANEL, + "placing_blocks_section/paragraph_2_touch_joystick_tap": T.PANEL, + "placing_blocks_section/paragraph_2_touch_classic_dpad": T.PANEL, + "placing_blocks_section/paragraph_2_touch_joystick_crosshair": T.PANEL, + "placing_blocks_section/padding_2": T.PANEL, + "placing_blocks_section/paragraph_3": T.PANEL, + "inventory_button": T.PANEL, + "inventory_section": T.STACK_PANEL, + "inventory_section/image_1_not_touch": T.IMAGE, + "inventory_section/image_1_touch": T.IMAGE, + "inventory_section/header_1": T.PANEL, + "inventory_section/paragraph_1_keyboard": T.PANEL, + "inventory_section/paragraph_1_gamepad": T.PANEL, + "inventory_section/paragraph_1_touch": T.PANEL, + "inventory_section/padding_2": T.PANEL, + "inventory_section/header_2": T.PANEL, + "inventory_section/paragraph_2_keyboard": T.PANEL, + "inventory_section/paragraph_2_gamepad": T.PANEL, + "inventory_section/paragraph_2_touch": T.PANEL, + "your_first_craft_button": T.PANEL, + "your_first_craft_section": T.STACK_PANEL, + "your_first_craft_section/image_1_not_touch": T.IMAGE, + "your_first_craft_section/image_1_touch": T.IMAGE, + "your_first_craft_section/header_1": T.PANEL, + "your_first_craft_section/paragraph_1": T.PANEL, + "your_first_craft_section/padding_2": T.PANEL, + "your_first_craft_section/paragraph_2": T.PANEL, + "your_first_craft_section/padding_3": T.PANEL, + "your_first_craft_section/paragraph_3_touch": T.PANEL, + "your_first_craft_section/paragraph_3_keyboard": T.PANEL, + "your_first_craft_section/paragraph_3_gamepad": T.PANEL, + "your_first_craft_section/padding_4": T.PANEL, + "your_first_craft_section/header_2": T.PANEL, + "your_first_craft_section/paragraph_4": T.PANEL, + "your_first_craft_section/padding_5": T.PANEL, + "your_first_craft_section/paragraph_5": T.PANEL, + "recipe_book_button": T.PANEL, + "recipe_book_section": T.STACK_PANEL, + "recipe_book_section/paragraph_1_keyboard": T.PANEL, + "recipe_book_section/paragraph_1_gamepad": T.PANEL, + "recipe_book_section/paragraph_1_touch": T.PANEL, + "recipe_book_section/padding_1": T.PANEL, + "recipe_book_section/paragraph_2_keyboard": T.PANEL, + "recipe_book_section/paragraph_2_gamepad": T.PANEL, + "recipe_book_section/paragraph_2_touch": T.PANEL, + "the_crafting_table_button": T.PANEL, + "the_crafting_table_section": T.STACK_PANEL, + "the_crafting_table_section/image_1": T.IMAGE, + "the_crafting_table_section/paragraph_1": T.PANEL, + "the_crafting_table_section/padding_2": T.PANEL, + "the_crafting_table_section/paragraph_2_keyboard": T.PANEL, + "the_crafting_table_section/paragraph_2_gamepad": T.PANEL, + "the_crafting_table_section/paragraph_2_touch": T.PANEL, + "crafting_a_tool_button": T.PANEL, + "crafting_a_tool_section": T.STACK_PANEL, + "crafting_a_tool_section/paragraph_1": T.PANEL, + "crafting_a_tool_section/padding_1": T.PANEL, + "crafting_a_tool_section/paragraph_2_keyboard": T.PANEL, + "crafting_a_tool_section/paragraph_2_gamepad": T.PANEL, + "crafting_a_tool_section/paragraph_2_touch": T.PANEL, + "mining_button": T.PANEL, + "mining_section": T.STACK_PANEL, + "mining_section/image_1": T.IMAGE, + "mining_section/paragraph_1": T.PANEL, + "mining_section/padding_2": T.PANEL, + "mining_section/paragraph_2": T.PANEL, + "mining_section/padding_3": T.PANEL, + "mining_section/paragraph_3": T.PANEL, + "nightfall_new_button": T.PANEL, + "nightfall_new_section": T.STACK_PANEL, + "nightfall_new_section/paragraph_1": T.PANEL, + "nightfall_new_section/padding_1": T.PANEL, + "nightfall_new_section/paragraph_2": T.PANEL, + "nightfall_new_section/padding_2": T.PANEL, + "nightfall_new_section/paragraph_3": T.PANEL, + "nightfall_new_section/padding_3": T.PANEL, + "nightfall_new_section/paragraph_4_keyboard": T.PANEL, + "nightfall_new_section/paragraph_4_gamepad": T.PANEL, + "nightfall_new_section/paragraph_4_touch_joystick_tap": T.PANEL, + "nightfall_new_section/paragraph_4_touch_classic_dpad": T.PANEL, + "nightfall_new_section/paragraph_4_touch_joystick_crosshair": T.PANEL, + "building_a_shelter_button": T.PANEL, + "building_a_shelter_section": T.STACK_PANEL, + "building_a_shelter_section/image_1": T.IMAGE, + "building_a_shelter_section/paragraph_1": T.PANEL, + "building_a_shelter_section/padding_2": T.PANEL, + "building_a_shelter_section/paragraph_2": T.PANEL, + "building_a_shelter_section/padding_3": T.PANEL, + "building_a_shelter_section/paragraph_3": T.PANEL, + "death_and_respawn_button": T.PANEL, + "death_and_respawn_section": T.STACK_PANEL, + "death_and_respawn_section/paragraph_1": T.PANEL, + "death_and_respawn_section/padding_1": T.PANEL, + "death_and_respawn_section/paragraph_2": T.PANEL, + "food_button": T.PANEL, + "food_section": T.STACK_PANEL, + "food_section/paragraph_1": T.PANEL, + "food_section/padding_1": T.PANEL, + "food_section/paragraph_2_keyboard": T.PANEL, + "food_section/paragraph_2_gamepad": T.PANEL, + "food_section/paragraph_2_touch": T.PANEL, + "food_section/padding_2": T.PANEL, + "food_section/paragraph_3": T.PANEL, + "beds_new_button": T.PANEL, + "beds_new_section": T.STACK_PANEL, + "beds_new_section/paragraph_1": T.PANEL, + "beds_new_section/padding_1": T.PANEL, + "beds_new_section/paragraph_2": T.PANEL, + "beds_new_section/padding_2": T.PANEL, + "beds_new_section/paragraph_3": T.PANEL, + "improved_tools_button": T.PANEL, + "improved_tools_section": T.STACK_PANEL, + "improved_tools_section/paragraph_1": T.PANEL, + "improved_tools_section/padding_1": T.PANEL, + "improved_tools_section/paragraph_2": T.PANEL, + "world_builder_button": T.PANEL, + "world_builder_section": T.STACK_PANEL, + "world_builder_section/paragraph_1": T.PANEL, + "world_builder_section/padding_1": T.PANEL, + "world_builder_section/paragraph_2": T.PANEL, + "world_builder_section/padding_2": T.PANEL, + "world_builder_section/paragraph_3": T.PANEL, + "world_builder_section/padding_3": T.PANEL, + "world_builder_section/paragraph_4": T.PANEL, + "world_builder_section/padding_4": T.PANEL, + "world_builder_section/paragraph_5": T.PANEL, + "world_builder_section/padding_5": T.PANEL, + "world_builder_section/paragraph_6": T.PANEL, + "world_builder_section/paragraph_7": T.PANEL, + "world_builder_section/padding_7": T.PANEL, + "world_builder_section/paragraph_8": T.PANEL, + "world_builder_section/padding_8": T.PANEL, + "world_builder_section/paragraph_9": T.PANEL, + "permission_blocks_button": T.PANEL, + "permission_blocks_section": T.STACK_PANEL, + "permission_blocks_section/paragraph_1": T.PANEL, + "permission_blocks_section/padding_1": T.PANEL, + "permission_blocks_section/header_1": T.PANEL, + "permission_blocks_section/paragraph_2": T.PANEL, + "permission_blocks_section/padding_3": T.PANEL, + "permission_blocks_section/paragraph_3": T.PANEL, + "permission_blocks_section/padding_4": T.PANEL, + "permission_blocks_section/paragraph_4": T.PANEL, + "permission_blocks_section/padding_5": T.PANEL, + "permission_blocks_section/paragraph_5": T.PANEL, + "permission_blocks_section/padding_7": T.PANEL, + "permission_blocks_section/header_2": T.PANEL, + "permission_blocks_section/paragraph_6": T.PANEL, + "chalkboard_button": T.PANEL, + "chalkboard_section": T.STACK_PANEL, + "chalkboard_section/paragraph_1_keyboard": T.PANEL, + "chalkboard_section/paragraph_1_gamepad": T.PANEL, + "chalkboard_section/paragraph_1_touch": T.PANEL, + "chemistry_button": T.PANEL, + "chemistry_section": T.STACK_PANEL, + "chemistry_section/paragraph_1": T.PANEL, + "chemistry_section/padding_1": T.PANEL, + "chemistry_section/paragraph_2": T.PANEL, + "npc_button": T.PANEL, + "npc_section": T.STACK_PANEL, + "npc_section/paragraph_1": T.PANEL, + "npc_section/padding_1": T.PANEL, + "npc_section/paragraph_2": T.PANEL, + "npc_section/padding_2": T.PANEL, + "npc_section/paragraph_3": T.PANEL, + "camera_button": T.PANEL, + "camera_section": T.STACK_PANEL, + "camera_section/paragraph_1": T.PANEL, + "camera_section/padding_1": T.PANEL, + "camera_section/paragraph_2_keyboard": T.PANEL, + "camera_section/paragraph_2_gamepad": T.PANEL, + "camera_section/paragraph_2_touch": T.PANEL, + "camera_section/padding_2": T.PANEL, + "camera_section/paragraph_3_keyboard": T.PANEL, + "camera_section/paragraph_3_gamepad": T.PANEL, + "camera_section/paragraph_3_touch": T.PANEL, + "camera_section/padding_3": T.PANEL, + "camera_section/paragraph_4": T.PANEL, + "portfolio_button": T.PANEL, + "portfolio_section": T.STACK_PANEL, + "portfolio_section/paragraph_1_keyboard": T.PANEL, + "portfolio_section/paragraph_1_gamepad": T.PANEL, + "portfolio_section/paragraph_1_touch": T.PANEL, + "classroom_mode_button": T.PANEL, + "classroom_mode_section": T.STACK_PANEL, + "classroom_mode_section/paragraph_1": T.PANEL, + "classroom_mode_section/padding_1": T.PANEL, + "classroom_mode_section/paragraph_2": T.PANEL, + "code_builder_button": T.PANEL, + "code_builder_section": T.STACK_PANEL, + "code_builder_section/paragraph_1": T.PANEL, + "code_builder_section/padding_1": T.PANEL, + "code_builder_section/paragraph_2_keyboard": T.PANEL, + "code_builder_section/paragraph_2_gamepad": T.PANEL, + "code_builder_section/paragraph_2_touch": T.PANEL, + "playing_together_button": T.PANEL, + "playing_together_section": T.STACK_PANEL, + "playing_together_section/paragraph_1": T.PANEL, + "playing_together_section/padding_1": T.PANEL, + "playing_together_section/header_1": T.PANEL, + "playing_together_section/paragraph_2": T.PANEL, + "playing_together_section/padding_2": T.PANEL, + "playing_together_section/header_2": T.PANEL, + "playing_together_section/paragraph_3": T.PANEL, + "playing_together_section/padding_3": T.PANEL, + "playing_together_section/paragraph_4": T.PANEL, + "playing_together_section/padding_4": T.PANEL, + "playing_together_section/paragraph_5": T.PANEL, + "playing_together_section/padding_5": T.PANEL, + "playing_together_section/header_3": T.PANEL, + "playing_together_section/paragraph_6": T.PANEL, + "playing_together_section/padding_6": T.PANEL, + "playing_together_section/paragraph_7": T.PANEL, + "playing_together_section/padding_7": T.PANEL, + "playing_together_section/paragraph_8": T.PANEL, + "playing_together_section/realms_button": T.BUTTON, + "playing_together_section/sign_in_button": T.BUTTON, + "playing_together_section/padding_8": T.PANEL, + "playing_together_section/header_4": T.PANEL, + "playing_together_section/paragraph_9": T.PANEL, + "playing_together_section/padding_9": T.PANEL, + "playing_together_section/paragraph_10": T.PANEL, + "try_realms_action_button": T.BUTTON, + "encyclopedia_button": T.PANEL, + "encyclopedia_section": T.STACK_PANEL, + "encyclopedia_section/paragraph_1": T.PANEL, } export type HudType = { - hud_player_renderer: T.PANEL - "hud_player_renderer/hud_player": T.CUSTOM - hotbar_renderer: T.CUSTOM - "hotbar_renderer/hotbar_slot_image": T.IMAGE - cooldown_renderer: T.CUSTOM - heart_renderer: T.CUSTOM - horse_heart_renderer: T.CUSTOM - armor_renderer: T.CUSTOM - exp_progress_bar_and_hotbar: T.PANEL - "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar": T.PANEL - "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar": T.IMAGE - "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar": T.IMAGE - "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub": T.IMAGE - "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend": T.CUSTOM - "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend/dash_rend": T.CUSTOM - "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend/dash_rend/hotbar": T.PANEL - "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/progress_text_label": T.LABEL - "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar": T.PANEL - "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend": T.CUSTOM - "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend": T.CUSTOM - "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend/hotbar": T.PANEL - "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar": T.PANEL - "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner": T.PANEL - "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/hotbar": T.PANEL - "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/size_without_hotbar": T.PANEL - "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/horse_jump_rend": T.CUSTOM - "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/dash_rend": T.CUSTOM - "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/locator_bar": T.CUSTOM - "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/progress_text_label": T.LABEL - "exp_progress_bar_and_hotbar/item_text_factory": T.FACTORY - exp_progress_bar_and_hotbar_pocket: T.PANEL - "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar": T.PANEL - "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar": T.IMAGE - "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar": T.IMAGE - "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub": T.IMAGE - "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/progress_text_label": T.LABEL - "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar": T.PANEL - "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/locator_bar": T.CUSTOM - "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/progress_text_label": T.LABEL - "exp_progress_bar_and_hotbar_pocket/hotbar_panel": T.STACK_PANEL - "exp_progress_bar_and_hotbar_pocket/item_text": T.PANEL - "exp_progress_bar_and_hotbar_pocket/item_text/item_text_factory": T.FACTORY - "exp_progress_bar_and_hotbar_pocket/horse_jump_rend": T.CUSTOM - "exp_progress_bar_and_hotbar_pocket/dash_rend": T.CUSTOM - full_progress_bar: T.IMAGE - empty_progress_bar: T.IMAGE - progress_bar_nub: T.IMAGE - progress_text_label: T.LABEL - horse_jump_renderer: T.CUSTOM - dash_renderer: T.CUSTOM - locator_bar: T.CUSTOM - hunger_renderer: T.CUSTOM - bubbles_renderer: T.CUSTOM - mob_effects_renderer: T.CUSTOM - vignette_renderer: T.CUSTOM - editor_gizmo_renderer: T.CUSTOM - cursor_renderer: T.CUSTOM - progress_indicator_renderer: T.CUSTOM - camera_renderer: T.CUSTOM - editor_volume_highlight_renderer: T.CUSTOM - editor_compass_renderer: T.CUSTOM - hotbar_hud_item_icon: T.CUSTOM - elipses_image: T.IMAGE - bound_button_label: T.UNKNOWN - default_borderless_button_layout: T.IMAGE - hover_borderless_button_layout: T.IMAGE - pressed_borderless_button_layout: T.IMAGE - borderless_button: T.BUTTON - "borderless_button/default": T.IMAGE - "borderless_button/hover": T.IMAGE - "borderless_button/pressed": T.IMAGE - "borderless_button/elipses": T.IMAGE - hotbar_elipses_button: T.BUTTON - start_cap_image: T.IMAGE - end_cap_image: T.IMAGE - hotbar_start_cap: T.PANEL - "hotbar_start_cap/start_cap_image": T.IMAGE - hotbar_end_cap: T.PANEL - "hotbar_end_cap/end_cap_image": T.IMAGE - heart_image: T.IMAGE - hotbar_slot_image: T.IMAGE - hotbar_slot_selected_image: T.IMAGE - gui_hotbar_slot_button_prototype: T.BUTTON - player_position: T.IMAGE - "player_position/player_position_text": T.LABEL - number_of_days_played: T.IMAGE - "number_of_days_played/number_of_days_played_text": T.LABEL - chat_label: T.LABEL - chat_grid_item: T.PANEL - "chat_grid_item/chat_background": T.IMAGE - "chat_grid_item/chat_background/chat_text": T.LABEL - chat_panel: T.PANEL - "chat_panel/stack_panel": T.STACK_PANEL - item_durability: T.CUSTOM - item_storage: T.CUSTOM - container_item_lock_overlay: T.PANEL - item_lock_cell_image: T.IMAGE - gui_hotbar_grid_item: T.PANEL - "gui_hotbar_grid_item/hotbar_slot_selected_image": T.IMAGE - "gui_hotbar_grid_item/hotbar_renderer": T.CUSTOM - "gui_hotbar_grid_item/hotbar_parent": T.PANEL - "gui_hotbar_grid_item/hotbar_parent/item_icon": T.CUSTOM - "gui_hotbar_grid_item/hotbar_parent/item_count": T.LABEL - "gui_hotbar_grid_item/hotbar_parent/hotbar_hint": T.PANEL - "gui_hotbar_grid_item/hotbar_parent/item_dura": T.CUSTOM - "gui_hotbar_grid_item/hotbar_parent/item_store": T.CUSTOM - "gui_hotbar_grid_item/hotbar_parent/container_item_lock_overlay": T.PANEL - "gui_hotbar_grid_item/cooldown_renderer": T.CUSTOM - "gui_hotbar_grid_item/hotbar_slot_button": T.BUTTON - gui_hotbar_grid_item_pocket: T.PANEL - "gui_hotbar_grid_item_pocket/hotbar_slot_selected_image": T.IMAGE - "gui_hotbar_grid_item_pocket/hotbar_renderer": T.CUSTOM - "gui_hotbar_grid_item_pocket/hotbar_parent": T.PANEL - "gui_hotbar_grid_item_pocket/hotbar_parent/item_icon": T.CUSTOM - "gui_hotbar_grid_item_pocket/hotbar_parent/item_count": T.LABEL - "gui_hotbar_grid_item_pocket/hotbar_parent/item_dura": T.CUSTOM - "gui_hotbar_grid_item_pocket/hotbar_parent/item_store": T.CUSTOM - "gui_hotbar_grid_item_pocket/hotbar_parent/container_item_lock_overlay": T.PANEL - "gui_hotbar_grid_item_pocket/cooldown_renderer": T.CUSTOM - "gui_hotbar_grid_item_pocket/hotbar_slot_button": T.BUTTON - centered_gui_elements: T.PANEL - "centered_gui_elements/hud_player_rend_desktop": T.PANEL - centered_gui_elements_at_bottom_middle: T.PANEL - "centered_gui_elements_at_bottom_middle/heart_rend": T.CUSTOM - "centered_gui_elements_at_bottom_middle/horse_heart_rend_0": T.CUSTOM - "centered_gui_elements_at_bottom_middle/horse_heart_rend_1": T.CUSTOM - "centered_gui_elements_at_bottom_middle/armor_rend": T.CUSTOM - "centered_gui_elements_at_bottom_middle/hunger_rend": T.CUSTOM - "centered_gui_elements_at_bottom_middle/bubbles_rend_0": T.CUSTOM - "centered_gui_elements_at_bottom_middle/bubbles_rend_1": T.CUSTOM - "centered_gui_elements_at_bottom_middle/exp_rend": T.PANEL - centered_gui_elements_at_bottom_middle_touch: T.PANEL - "centered_gui_elements_at_bottom_middle_touch/heart_rend": T.CUSTOM - "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_0": T.CUSTOM - "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_1": T.CUSTOM - "centered_gui_elements_at_bottom_middle_touch/armor_rend": T.CUSTOM - "centered_gui_elements_at_bottom_middle_touch/hunger_rend": T.CUSTOM - "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_0": T.CUSTOM - "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_1": T.CUSTOM - "centered_gui_elements_at_bottom_middle_touch/exp_rend": T.PANEL - not_centered_gui_elements: T.PANEL - "not_centered_gui_elements/heart_rend": T.CUSTOM - "not_centered_gui_elements/horse_heart_rend": T.CUSTOM - "not_centered_gui_elements/hunger_rend": T.CUSTOM - "not_centered_gui_elements/armor_rend": T.CUSTOM - "not_centered_gui_elements/hud_player_rend_pocket": T.PANEL - "not_centered_gui_elements/bubbles_rend_0": T.CUSTOM - "not_centered_gui_elements/bubbles_rend_1": T.CUSTOM - hotbar_chooser: T.PANEL - "hotbar_chooser/desktop_hotbar": T.STACK_PANEL - "hotbar_chooser/pocket_hotbar": T.STACK_PANEL - hotbar_elipses_panel_right_content: T.STACK_PANEL - "hotbar_elipses_panel_right_content/elipses_content": T.PANEL - hotbar_elipses_panel_right_art: T.PANEL - "hotbar_elipses_panel_right_art/slot": T.IMAGE - "hotbar_elipses_panel_right_art/button": T.BUTTON - hotbar_elipses_panel_left_content: T.STACK_PANEL - "hotbar_elipses_panel_left_content/button": T.PANEL - hotbar_elipses_panel_left_art: T.PANEL - "hotbar_elipses_panel_left_art/slot": T.IMAGE - "hotbar_elipses_panel_left_art/button": T.BUTTON - hotbar_panel: T.STACK_PANEL - "hotbar_panel/hotbar_start_cap": T.PANEL - "hotbar_panel/hotbar_elipses_panel_left": T.STACK_PANEL - "hotbar_panel/hotbar_grid": T.GRID - "hotbar_panel/hotbar_elipses_panel_right": T.STACK_PANEL - "hotbar_panel/hotbar_end_cap": T.PANEL - hotbar_panel_pocket: T.STACK_PANEL - "hotbar_panel_pocket/hotbar_start_cap_frame": T.PANEL - "hotbar_panel_pocket/hotbar_start_cap_frame/hotbar_start_cap": T.PANEL - "hotbar_panel_pocket/hotbar_elipses_panel_left": T.PANEL - "hotbar_panel_pocket/hotbar_elipses_panel_left/hotbar_elipses_panel_left": T.PANEL - "hotbar_panel_pocket/hotbar_grid": T.GRID - "hotbar_panel_pocket/hotbar_elipses_panel_right": T.PANEL - "hotbar_panel_pocket/hotbar_elipses_panel_right/hotbar_elipses_panel_right": T.PANEL - "hotbar_panel_pocket/hotbar_end_cap_frame": T.PANEL - "hotbar_panel_pocket/hotbar_end_cap_frame/hotbar_end_cap": T.PANEL - hotbar_grid: T.GRID - edu_hotbar_grid: T.GRID - item_name_text_root: T.PANEL - "item_name_text_root/item_text_aligner": T.STACK_PANEL - "item_name_text_root/item_text_aligner/item_text_control": T.PANEL - "item_name_text_root/item_text_aligner/item_text_control/item_text_background": T.IMAGE - "item_name_text_root/item_text_aligner/item_text_control/item_text_label": T.LABEL - "item_name_text_root/item_text_aligner/interact_padding": T.PANEL - "item_name_text_root/item_text_aligner/survival_buffer": T.PANEL - item_name_text: T.PANEL - jukebox_popup_text: T.PANEL - hud_tip_text: T.IMAGE - "hud_tip_text/item_text_label": T.LABEL - auto_save: T.IMAGE - hud_actionbar_text: T.IMAGE - "hud_actionbar_text/actionbar_message": T.LABEL - hud_title_text: T.STACK_PANEL - "hud_title_text/title_frame": T.PANEL - "hud_title_text/title_frame/title_background": T.IMAGE - "hud_title_text/title_frame/title": T.LABEL - "hud_title_text/subtitle_frame": T.PANEL - "hud_title_text/subtitle_frame/subtitle_background": T.IMAGE - "hud_title_text/subtitle_frame/subtitle": T.LABEL - boss_name_panel: T.PANEL - "boss_name_panel/boss_name": T.LABEL - tooltip_helper_icon_description: T.LABEL - "tooltip_helper_icon_description/label_background": T.IMAGE - tooltip_helper: T.STACK_PANEL - "tooltip_helper/icon": T.UNKNOWN - "tooltip_helper/padding": T.PANEL - "tooltip_helper/centerer": T.PANEL - "tooltip_helper/centerer/desc": T.LABEL - tooltip_helper_form_fitting: T.STACK_PANEL - "tooltip_helper_form_fitting/icon": T.UNKNOWN - "tooltip_helper_form_fitting/padding": T.PANEL - "tooltip_helper_form_fitting/centerer": T.PANEL - "tooltip_helper_form_fitting/centerer/desc": T.LABEL - keyboard_tooltip_helper: T.STACK_PANEL - keyboard_tooltip_helper_form_fitting: T.STACK_PANEL - mixed_tooltip_helper: T.PANEL - "mixed_tooltip_helper/gamepad_tooltip": T.STACK_PANEL - "mixed_tooltip_helper/keyboard_tooltip": T.STACK_PANEL - mixed_tooltip_helper_form_fitting: T.PANEL - "mixed_tooltip_helper_form_fitting/gamepad_tooltip": T.STACK_PANEL - "mixed_tooltip_helper_form_fitting/keyboard_tooltip": T.STACK_PANEL - base_icon_image: T.STACK_PANEL - "base_icon_image/icon": T.IMAGE - "base_icon_image/postfix_label_wrapper": T.PANEL - "base_icon_image/postfix_label_wrapper/label": T.LABEL - base_keyboard_icon: T.PANEL - "base_keyboard_icon/icon": T.PANEL - "base_keyboard_icon/icon/key_backing": T.IMAGE - "base_keyboard_icon/icon/key_backing/key_label": T.LABEL - "base_keyboard_icon/icon/mouse_buttons": T.LABEL - left_helpers_edu: T.STACK_PANEL - "left_helpers_edu/tip_window": T.IMAGE - "left_helpers_edu/tip_window/stack_panel": T.STACK_PANEL - "left_helpers_edu/tip_paddding": T.PANEL - "left_helpers_edu/controls_toggle_label": T.PANEL - "left_helpers_edu/controls_toggle_label/tip": T.PANEL - "left_helpers_edu/controls_inventory_label": T.PANEL - "left_helpers_edu/controls_inventory_label/tip": T.PANEL - "left_helpers_edu/controls_menu_label": T.PANEL - "left_helpers_edu/controls_menu_label/tip": T.PANEL - left_helpers: T.PANEL - "left_helpers/stack_panel": T.STACK_PANEL - emote_label_background: T.IMAGE - emote_tip: T.IMAGE - "emote_tip/emote_keyboard_centerer": T.PANEL - "emote_tip/emote_keyboard_centerer/emote_keyboard_helper": T.STACK_PANEL - "emote_tip/emote_gamepad_helper": T.UNKNOWN - emote_expediate_helpers: T.PANEL - "emote_expediate_helpers/stack_panel": T.STACK_PANEL - "emote_expediate_helpers/stack_panel/emote_tip_0": T.IMAGE - "emote_expediate_helpers/stack_panel/emote_tip_1": T.IMAGE - "emote_expediate_helpers/stack_panel/emote_tip_2": T.IMAGE - "emote_expediate_helpers/stack_panel/emote_tip_3": T.IMAGE - right_helpers: T.PANEL - "right_helpers/stack_panel": T.STACK_PANEL - boss_health_panel: T.PANEL - "boss_health_panel/boss_name": T.PANEL - "boss_health_panel/progress_bar_for_collections": T.PANEL - boss_health_grid: T.GRID - wysiwyg_reset_modal_ok: T.BUTTON - wysiwyg_reset_modal_cancel: T.BUTTON - wysiwyg_close_without_saving_modal_ok: T.BUTTON - wysiwyg_close_without_saving_modal_cancel: T.BUTTON - root_panel: T.PANEL - "root_panel/layout_customization_reset": T.IMAGE - "root_panel/layout_customization_reset/layout_customization_reset_modal": T.PANEL - "root_panel/layout_customization_close_without_saving": T.IMAGE - "root_panel/layout_customization_close_without_saving/layout_customization_close_without_saving_modal": T.PANEL - "root_panel/layout_customization_main_panel": T.PANEL - "root_panel/layout_customization_sub_panel": T.PANEL - "root_panel/layout_customization_hint_drag_frame": T.IMAGE - "root_panel/layout_customization_hint_drag_frame/layout_customization_hint_drag": T.LABEL - "root_panel/layout_customization_hint_deselect_frame": T.IMAGE - "root_panel/layout_customization_hint_deselect_frame/layout_customization_hint_deselect": T.LABEL - "root_panel/layout_customization_hint_saved": T.IMAGE - "root_panel/layout_customization_hint_saved/layout_customization_hint_saved": T.LABEL - "root_panel/left_helpers": T.UNKNOWN - "root_panel/right_helpers": T.PANEL - "root_panel/emote_expediate_helpers": T.PANEL - "root_panel/centered_gui_elements": T.PANEL - "root_panel/centered_gui_elements_at_bottom_middle": T.PANEL - "root_panel/centered_gui_elements_at_bottom_middle_touch": T.PANEL - "root_panel/not_centered_gui_elements": T.PANEL - "root_panel/gamertag_label_for_splitscreen": T.LABEL - "root_panel/exp_rend": T.PANEL - "root_panel/exp_rend_resizable": T.PANEL - "root_panel/hud_tip_text_factory": T.FACTORY - "root_panel/hud_actionbar_text_area": T.PANEL - "root_panel/hud_title_text_area": T.PANEL - "root_panel/mob_effects_renderer": T.CUSTOM - "root_panel/vignette_rend": T.CUSTOM - "root_panel/curor_rend": T.CUSTOM - "root_panel/game_tip": T.PANEL - "root_panel/sidebar": T.PANEL - "root_panel/progress_rend": T.CUSTOM - "root_panel/chat_stack": T.STACK_PANEL - "root_panel/chat_stack/paper_doll_padding": T.PANEL - "root_panel/chat_stack/non_centered_gui_padding": T.PANEL - "root_panel/chat_stack/player_position": T.IMAGE - "root_panel/chat_stack/number_of_days_played": T.IMAGE - "root_panel/chat_stack/game_tip": T.PANEL - "root_panel/chat_stack/chat_panel": T.PANEL - "root_panel/boss_health_panel": T.STACK_PANEL - "root_panel/boss_health_panel/boss_hud_padding": T.PANEL - "root_panel/boss_health_panel/boss_hud_touch_padding": T.PANEL - "root_panel/boss_health_panel/boss_hud_panel": T.PANEL - "root_panel/boss_health_panel/boss_hud_panel/boss_health_grid": T.GRID - "root_panel/save_icon": T.IMAGE - hud_screen: T.SCREEN - hud_content: T.PANEL - "hud_content/root_panel": T.PANEL - "hud_content/editor_gizmo_renderer": T.CUSTOM - "hud_content/editor_compass_renderer": T.CUSTOM - "hud_content/editor_volume_highlight_renderer": T.CUSTOM - "hud_content/camera_renderer": T.CUSTOM - layout_customization_main_panel_button: T.PANEL - "layout_customization_main_panel_button/button": T.BUTTON - layout_customization_main_panel: T.PANEL - "layout_customization_main_panel/main_panel_frame": T.IMAGE - "layout_customization_main_panel/main_panel_frame/main_panel_content": T.STACK_PANEL - "layout_customization_main_panel/main_panel_frame/main_panel_content/reset_button": T.PANEL - "layout_customization_main_panel/main_panel_frame/main_panel_content/exit_button": T.PANEL - "layout_customization_main_panel/main_panel_frame/main_panel_content/opacity_button": T.PANEL - "layout_customization_main_panel/main_panel_frame/main_panel_content/size_button": T.PANEL - layout_customization_option_slider: T.STACK_PANEL - "layout_customization_option_slider/slider": T.PANEL - "layout_customization_option_slider/reset": T.PANEL - "layout_customization_option_slider/reset/reset_button": T.BUTTON - "layout_customization_option_slider/reset/reset_button/default": T.IMAGE - "layout_customization_option_slider/reset/reset_button/hover": T.IMAGE - "layout_customization_option_slider/reset/reset_button/pressed": T.IMAGE - layout_customization_option_content: T.PANEL - "layout_customization_option_content/scale_option": T.STACK_PANEL - "layout_customization_option_content/opacity_option": T.STACK_PANEL - "layout_customization_option_content/apply_to_all_toggle": T.STACK_PANEL - "layout_customization_option_content/apply_to_all_toggle/checkbox_frame": T.PANEL - "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_unchecked": T.IMAGE - "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_checked": T.IMAGE - "layout_customization_option_content/apply_to_all_toggle/caption_frame": T.PANEL - "layout_customization_option_content/apply_to_all_toggle/caption_frame/caption": T.LABEL - layout_customization_option: T.PANEL - "layout_customization_option/content": T.PANEL - layout_customization_sub_panel: T.PANEL - "layout_customization_sub_panel/background": T.IMAGE - "layout_customization_sub_panel/background/sub_panel_content": T.GRID + "hud_player_renderer": T.PANEL, + "hud_player_renderer/hud_player": T.CUSTOM, + "hotbar_renderer": T.CUSTOM, + "hotbar_renderer/hotbar_slot_image": T.IMAGE, + "cooldown_renderer": T.CUSTOM, + "heart_renderer": T.CUSTOM, + "horse_heart_renderer": T.CUSTOM, + "armor_renderer": T.CUSTOM, + "exp_progress_bar_and_hotbar": T.PANEL, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar": T.PANEL, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar": T.IMAGE, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar": T.IMAGE, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub": T.IMAGE, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend": T.CUSTOM, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend/dash_rend": T.CUSTOM, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend/dash_rend/hotbar": T.PANEL, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/progress_text_label": T.LABEL, + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar": T.PANEL, + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend": T.CUSTOM, + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend": T.CUSTOM, + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend/hotbar": T.PANEL, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar": T.PANEL, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner": T.PANEL, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/hotbar": T.PANEL, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/size_without_hotbar": T.PANEL, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/horse_jump_rend": T.CUSTOM, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/dash_rend": T.CUSTOM, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/locator_bar": T.CUSTOM, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/progress_text_label": T.LABEL, + "exp_progress_bar_and_hotbar/item_text_factory": T.FACTORY, + "exp_progress_bar_and_hotbar_pocket": T.PANEL, + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar": T.PANEL, + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar": T.IMAGE, + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar": T.IMAGE, + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub": T.IMAGE, + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/progress_text_label": T.LABEL, + "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar": T.PANEL, + "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/locator_bar": T.CUSTOM, + "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/progress_text_label": T.LABEL, + "exp_progress_bar_and_hotbar_pocket/hotbar_panel": T.STACK_PANEL, + "exp_progress_bar_and_hotbar_pocket/item_text": T.PANEL, + "exp_progress_bar_and_hotbar_pocket/item_text/item_text_factory": T.FACTORY, + "exp_progress_bar_and_hotbar_pocket/horse_jump_rend": T.CUSTOM, + "exp_progress_bar_and_hotbar_pocket/dash_rend": T.CUSTOM, + "full_progress_bar": T.IMAGE, + "empty_progress_bar": T.IMAGE, + "progress_bar_nub": T.IMAGE, + "progress_text_label": T.LABEL, + "horse_jump_renderer": T.CUSTOM, + "dash_renderer": T.CUSTOM, + "locator_bar": T.CUSTOM, + "hunger_renderer": T.CUSTOM, + "bubbles_renderer": T.CUSTOM, + "mob_effects_renderer": T.CUSTOM, + "vignette_renderer": T.CUSTOM, + "editor_gizmo_renderer": T.CUSTOM, + "cursor_renderer": T.CUSTOM, + "progress_indicator_renderer": T.CUSTOM, + "camera_renderer": T.CUSTOM, + "editor_volume_highlight_renderer": T.CUSTOM, + "editor_compass_renderer": T.CUSTOM, + "hotbar_hud_item_icon": T.CUSTOM, + "elipses_image": T.IMAGE, + "bound_button_label": T.UNKNOWN, + "default_borderless_button_layout": T.IMAGE, + "hover_borderless_button_layout": T.IMAGE, + "pressed_borderless_button_layout": T.IMAGE, + "borderless_button": T.BUTTON, + "borderless_button/default": T.IMAGE, + "borderless_button/hover": T.IMAGE, + "borderless_button/pressed": T.IMAGE, + "borderless_button/elipses": T.IMAGE, + "hotbar_elipses_button": T.BUTTON, + "start_cap_image": T.IMAGE, + "end_cap_image": T.IMAGE, + "hotbar_start_cap": T.PANEL, + "hotbar_start_cap/start_cap_image": T.IMAGE, + "hotbar_end_cap": T.PANEL, + "hotbar_end_cap/end_cap_image": T.IMAGE, + "heart_image": T.IMAGE, + "hotbar_slot_image": T.IMAGE, + "hotbar_slot_selected_image": T.IMAGE, + "gui_hotbar_slot_button_prototype": T.BUTTON, + "player_position": T.IMAGE, + "player_position/player_position_text": T.LABEL, + "number_of_days_played": T.IMAGE, + "number_of_days_played/number_of_days_played_text": T.LABEL, + "chat_label": T.LABEL, + "chat_grid_item": T.PANEL, + "chat_grid_item/chat_background": T.IMAGE, + "chat_grid_item/chat_background/chat_text": T.LABEL, + "chat_panel": T.PANEL, + "chat_panel/stack_panel": T.STACK_PANEL, + "item_durability": T.CUSTOM, + "item_storage": T.CUSTOM, + "container_item_lock_overlay": T.PANEL, + "item_lock_cell_image": T.IMAGE, + "gui_hotbar_grid_item": T.PANEL, + "gui_hotbar_grid_item/hotbar_slot_selected_image": T.IMAGE, + "gui_hotbar_grid_item/hotbar_renderer": T.CUSTOM, + "gui_hotbar_grid_item/hotbar_parent": T.PANEL, + "gui_hotbar_grid_item/hotbar_parent/item_icon": T.CUSTOM, + "gui_hotbar_grid_item/hotbar_parent/item_count": T.LABEL, + "gui_hotbar_grid_item/hotbar_parent/hotbar_hint": T.PANEL, + "gui_hotbar_grid_item/hotbar_parent/item_dura": T.CUSTOM, + "gui_hotbar_grid_item/hotbar_parent/item_store": T.CUSTOM, + "gui_hotbar_grid_item/hotbar_parent/container_item_lock_overlay": T.PANEL, + "gui_hotbar_grid_item/cooldown_renderer": T.CUSTOM, + "gui_hotbar_grid_item/hotbar_slot_button": T.BUTTON, + "gui_hotbar_grid_item_pocket": T.PANEL, + "gui_hotbar_grid_item_pocket/hotbar_slot_selected_image": T.IMAGE, + "gui_hotbar_grid_item_pocket/hotbar_renderer": T.CUSTOM, + "gui_hotbar_grid_item_pocket/hotbar_parent": T.PANEL, + "gui_hotbar_grid_item_pocket/hotbar_parent/item_icon": T.CUSTOM, + "gui_hotbar_grid_item_pocket/hotbar_parent/item_count": T.LABEL, + "gui_hotbar_grid_item_pocket/hotbar_parent/item_dura": T.CUSTOM, + "gui_hotbar_grid_item_pocket/hotbar_parent/item_store": T.CUSTOM, + "gui_hotbar_grid_item_pocket/hotbar_parent/container_item_lock_overlay": T.PANEL, + "gui_hotbar_grid_item_pocket/cooldown_renderer": T.CUSTOM, + "gui_hotbar_grid_item_pocket/hotbar_slot_button": T.BUTTON, + "centered_gui_elements": T.PANEL, + "centered_gui_elements/hud_player_rend_desktop": T.PANEL, + "centered_gui_elements_at_bottom_middle": T.PANEL, + "centered_gui_elements_at_bottom_middle/heart_rend": T.CUSTOM, + "centered_gui_elements_at_bottom_middle/horse_heart_rend_0": T.CUSTOM, + "centered_gui_elements_at_bottom_middle/horse_heart_rend_1": T.CUSTOM, + "centered_gui_elements_at_bottom_middle/armor_rend": T.CUSTOM, + "centered_gui_elements_at_bottom_middle/hunger_rend": T.CUSTOM, + "centered_gui_elements_at_bottom_middle/bubbles_rend_0": T.CUSTOM, + "centered_gui_elements_at_bottom_middle/bubbles_rend_1": T.CUSTOM, + "centered_gui_elements_at_bottom_middle/exp_rend": T.PANEL, + "centered_gui_elements_at_bottom_middle_touch": T.PANEL, + "centered_gui_elements_at_bottom_middle_touch/heart_rend": T.CUSTOM, + "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_0": T.CUSTOM, + "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_1": T.CUSTOM, + "centered_gui_elements_at_bottom_middle_touch/armor_rend": T.CUSTOM, + "centered_gui_elements_at_bottom_middle_touch/hunger_rend": T.CUSTOM, + "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_0": T.CUSTOM, + "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_1": T.CUSTOM, + "centered_gui_elements_at_bottom_middle_touch/exp_rend": T.PANEL, + "not_centered_gui_elements": T.PANEL, + "not_centered_gui_elements/heart_rend": T.CUSTOM, + "not_centered_gui_elements/horse_heart_rend": T.CUSTOM, + "not_centered_gui_elements/hunger_rend": T.CUSTOM, + "not_centered_gui_elements/armor_rend": T.CUSTOM, + "not_centered_gui_elements/hud_player_rend_pocket": T.PANEL, + "not_centered_gui_elements/bubbles_rend_0": T.CUSTOM, + "not_centered_gui_elements/bubbles_rend_1": T.CUSTOM, + "hotbar_chooser": T.PANEL, + "hotbar_chooser/desktop_hotbar": T.STACK_PANEL, + "hotbar_chooser/pocket_hotbar": T.STACK_PANEL, + "hotbar_elipses_panel_right_content": T.STACK_PANEL, + "hotbar_elipses_panel_right_content/elipses_content": T.PANEL, + "hotbar_elipses_panel_right_art": T.PANEL, + "hotbar_elipses_panel_right_art/slot": T.IMAGE, + "hotbar_elipses_panel_right_art/button": T.BUTTON, + "hotbar_elipses_panel_left_content": T.STACK_PANEL, + "hotbar_elipses_panel_left_content/button": T.PANEL, + "hotbar_elipses_panel_left_art": T.PANEL, + "hotbar_elipses_panel_left_art/slot": T.IMAGE, + "hotbar_elipses_panel_left_art/button": T.BUTTON, + "hotbar_panel": T.STACK_PANEL, + "hotbar_panel/hotbar_start_cap": T.PANEL, + "hotbar_panel/hotbar_elipses_panel_left": T.STACK_PANEL, + "hotbar_panel/hotbar_grid": T.GRID, + "hotbar_panel/hotbar_elipses_panel_right": T.STACK_PANEL, + "hotbar_panel/hotbar_end_cap": T.PANEL, + "hotbar_panel_pocket": T.STACK_PANEL, + "hotbar_panel_pocket/hotbar_start_cap_frame": T.PANEL, + "hotbar_panel_pocket/hotbar_start_cap_frame/hotbar_start_cap": T.PANEL, + "hotbar_panel_pocket/hotbar_elipses_panel_left": T.PANEL, + "hotbar_panel_pocket/hotbar_elipses_panel_left/hotbar_elipses_panel_left": T.PANEL, + "hotbar_panel_pocket/hotbar_grid": T.GRID, + "hotbar_panel_pocket/hotbar_elipses_panel_right": T.PANEL, + "hotbar_panel_pocket/hotbar_elipses_panel_right/hotbar_elipses_panel_right": T.PANEL, + "hotbar_panel_pocket/hotbar_end_cap_frame": T.PANEL, + "hotbar_panel_pocket/hotbar_end_cap_frame/hotbar_end_cap": T.PANEL, + "hotbar_grid": T.GRID, + "edu_hotbar_grid": T.GRID, + "item_name_text_root": T.PANEL, + "item_name_text_root/item_text_aligner": T.STACK_PANEL, + "item_name_text_root/item_text_aligner/item_text_control": T.PANEL, + "item_name_text_root/item_text_aligner/item_text_control/item_text_background": T.IMAGE, + "item_name_text_root/item_text_aligner/item_text_control/item_text_label": T.LABEL, + "item_name_text_root/item_text_aligner/interact_padding": T.PANEL, + "item_name_text_root/item_text_aligner/survival_buffer": T.PANEL, + "item_name_text": T.PANEL, + "jukebox_popup_text": T.PANEL, + "hud_tip_text": T.IMAGE, + "hud_tip_text/item_text_label": T.LABEL, + "auto_save": T.IMAGE, + "hud_actionbar_text": T.IMAGE, + "hud_actionbar_text/actionbar_message": T.LABEL, + "hud_title_text": T.STACK_PANEL, + "hud_title_text/title_frame": T.PANEL, + "hud_title_text/title_frame/title_background": T.IMAGE, + "hud_title_text/title_frame/title": T.LABEL, + "hud_title_text/subtitle_frame": T.PANEL, + "hud_title_text/subtitle_frame/subtitle_background": T.IMAGE, + "hud_title_text/subtitle_frame/subtitle": T.LABEL, + "boss_name_panel": T.PANEL, + "boss_name_panel/boss_name": T.LABEL, + "tooltip_helper_icon_description": T.LABEL, + "tooltip_helper_icon_description/label_background": T.IMAGE, + "tooltip_helper": T.STACK_PANEL, + "tooltip_helper/icon": T.UNKNOWN, + "tooltip_helper/padding": T.PANEL, + "tooltip_helper/centerer": T.PANEL, + "tooltip_helper/centerer/desc": T.LABEL, + "tooltip_helper_form_fitting": T.STACK_PANEL, + "tooltip_helper_form_fitting/icon": T.UNKNOWN, + "tooltip_helper_form_fitting/padding": T.PANEL, + "tooltip_helper_form_fitting/centerer": T.PANEL, + "tooltip_helper_form_fitting/centerer/desc": T.LABEL, + "keyboard_tooltip_helper": T.STACK_PANEL, + "keyboard_tooltip_helper_form_fitting": T.STACK_PANEL, + "mixed_tooltip_helper": T.PANEL, + "mixed_tooltip_helper/gamepad_tooltip": T.STACK_PANEL, + "mixed_tooltip_helper/keyboard_tooltip": T.STACK_PANEL, + "mixed_tooltip_helper_form_fitting": T.PANEL, + "mixed_tooltip_helper_form_fitting/gamepad_tooltip": T.STACK_PANEL, + "mixed_tooltip_helper_form_fitting/keyboard_tooltip": T.STACK_PANEL, + "base_icon_image": T.STACK_PANEL, + "base_icon_image/icon": T.IMAGE, + "base_icon_image/postfix_label_wrapper": T.PANEL, + "base_icon_image/postfix_label_wrapper/label": T.LABEL, + "base_keyboard_icon": T.PANEL, + "base_keyboard_icon/icon": T.PANEL, + "base_keyboard_icon/icon/key_backing": T.IMAGE, + "base_keyboard_icon/icon/key_backing/key_label": T.LABEL, + "base_keyboard_icon/icon/mouse_buttons": T.LABEL, + "left_helpers_edu": T.STACK_PANEL, + "left_helpers_edu/tip_window": T.IMAGE, + "left_helpers_edu/tip_window/stack_panel": T.STACK_PANEL, + "left_helpers_edu/tip_paddding": T.PANEL, + "left_helpers_edu/controls_toggle_label": T.PANEL, + "left_helpers_edu/controls_toggle_label/tip": T.PANEL, + "left_helpers_edu/controls_inventory_label": T.PANEL, + "left_helpers_edu/controls_inventory_label/tip": T.PANEL, + "left_helpers_edu/controls_menu_label": T.PANEL, + "left_helpers_edu/controls_menu_label/tip": T.PANEL, + "left_helpers": T.PANEL, + "left_helpers/stack_panel": T.STACK_PANEL, + "emote_label_background": T.IMAGE, + "emote_tip": T.IMAGE, + "emote_tip/emote_keyboard_centerer": T.PANEL, + "emote_tip/emote_keyboard_centerer/emote_keyboard_helper": T.STACK_PANEL, + "emote_tip/emote_gamepad_helper": T.UNKNOWN, + "emote_expediate_helpers": T.PANEL, + "emote_expediate_helpers/stack_panel": T.STACK_PANEL, + "emote_expediate_helpers/stack_panel/emote_tip_0": T.IMAGE, + "emote_expediate_helpers/stack_panel/emote_tip_1": T.IMAGE, + "emote_expediate_helpers/stack_panel/emote_tip_2": T.IMAGE, + "emote_expediate_helpers/stack_panel/emote_tip_3": T.IMAGE, + "right_helpers": T.PANEL, + "right_helpers/stack_panel": T.STACK_PANEL, + "boss_health_panel": T.PANEL, + "boss_health_panel/boss_name": T.PANEL, + "boss_health_panel/progress_bar_for_collections": T.PANEL, + "boss_health_grid": T.GRID, + "wysiwyg_reset_modal_ok": T.BUTTON, + "wysiwyg_reset_modal_cancel": T.BUTTON, + "wysiwyg_close_without_saving_modal_ok": T.BUTTON, + "wysiwyg_close_without_saving_modal_cancel": T.BUTTON, + "root_panel": T.PANEL, + "root_panel/layout_customization_reset": T.IMAGE, + "root_panel/layout_customization_reset/layout_customization_reset_modal": T.PANEL, + "root_panel/layout_customization_close_without_saving": T.IMAGE, + "root_panel/layout_customization_close_without_saving/layout_customization_close_without_saving_modal": T.PANEL, + "root_panel/layout_customization_main_panel": T.PANEL, + "root_panel/layout_customization_sub_panel": T.PANEL, + "root_panel/layout_customization_hint_drag_frame": T.IMAGE, + "root_panel/layout_customization_hint_drag_frame/layout_customization_hint_drag": T.LABEL, + "root_panel/layout_customization_hint_deselect_frame": T.IMAGE, + "root_panel/layout_customization_hint_deselect_frame/layout_customization_hint_deselect": T.LABEL, + "root_panel/layout_customization_hint_saved": T.IMAGE, + "root_panel/layout_customization_hint_saved/layout_customization_hint_saved": T.LABEL, + "root_panel/left_helpers": T.UNKNOWN, + "root_panel/right_helpers": T.PANEL, + "root_panel/emote_expediate_helpers": T.PANEL, + "root_panel/centered_gui_elements": T.PANEL, + "root_panel/centered_gui_elements_at_bottom_middle": T.PANEL, + "root_panel/centered_gui_elements_at_bottom_middle_touch": T.PANEL, + "root_panel/not_centered_gui_elements": T.PANEL, + "root_panel/gamertag_label_for_splitscreen": T.LABEL, + "root_panel/exp_rend": T.PANEL, + "root_panel/exp_rend_resizable": T.PANEL, + "root_panel/hud_tip_text_factory": T.FACTORY, + "root_panel/hud_actionbar_text_area": T.PANEL, + "root_panel/hud_title_text_area": T.PANEL, + "root_panel/mob_effects_renderer": T.CUSTOM, + "root_panel/vignette_rend": T.CUSTOM, + "root_panel/curor_rend": T.CUSTOM, + "root_panel/game_tip": T.PANEL, + "root_panel/sidebar": T.PANEL, + "root_panel/progress_rend": T.CUSTOM, + "root_panel/chat_stack": T.STACK_PANEL, + "root_panel/chat_stack/paper_doll_padding": T.PANEL, + "root_panel/chat_stack/non_centered_gui_padding": T.PANEL, + "root_panel/chat_stack/player_position": T.IMAGE, + "root_panel/chat_stack/number_of_days_played": T.IMAGE, + "root_panel/chat_stack/game_tip": T.PANEL, + "root_panel/chat_stack/chat_panel": T.PANEL, + "root_panel/boss_health_panel": T.STACK_PANEL, + "root_panel/boss_health_panel/boss_hud_padding": T.PANEL, + "root_panel/boss_health_panel/boss_hud_touch_padding": T.PANEL, + "root_panel/boss_health_panel/boss_hud_panel": T.PANEL, + "root_panel/boss_health_panel/boss_hud_panel/boss_health_grid": T.GRID, + "root_panel/save_icon": T.IMAGE, + "hud_screen": T.SCREEN, + "hud_content": T.PANEL, + "hud_content/root_panel": T.PANEL, + "hud_content/editor_gizmo_renderer": T.CUSTOM, + "hud_content/editor_compass_renderer": T.CUSTOM, + "hud_content/editor_volume_highlight_renderer": T.CUSTOM, + "hud_content/camera_renderer": T.CUSTOM, + "layout_customization_main_panel_button": T.PANEL, + "layout_customization_main_panel_button/button": T.BUTTON, + "layout_customization_main_panel": T.PANEL, + "layout_customization_main_panel/main_panel_frame": T.IMAGE, + "layout_customization_main_panel/main_panel_frame/main_panel_content": T.STACK_PANEL, + "layout_customization_main_panel/main_panel_frame/main_panel_content/reset_button": T.PANEL, + "layout_customization_main_panel/main_panel_frame/main_panel_content/exit_button": T.PANEL, + "layout_customization_main_panel/main_panel_frame/main_panel_content/opacity_button": T.PANEL, + "layout_customization_main_panel/main_panel_frame/main_panel_content/size_button": T.PANEL, + "layout_customization_option_slider": T.STACK_PANEL, + "layout_customization_option_slider/slider": T.PANEL, + "layout_customization_option_slider/reset": T.PANEL, + "layout_customization_option_slider/reset/reset_button": T.BUTTON, + "layout_customization_option_slider/reset/reset_button/default": T.IMAGE, + "layout_customization_option_slider/reset/reset_button/hover": T.IMAGE, + "layout_customization_option_slider/reset/reset_button/pressed": T.IMAGE, + "layout_customization_option_content": T.PANEL, + "layout_customization_option_content/scale_option": T.STACK_PANEL, + "layout_customization_option_content/opacity_option": T.STACK_PANEL, + "layout_customization_option_content/apply_to_all_toggle": T.STACK_PANEL, + "layout_customization_option_content/apply_to_all_toggle/checkbox_frame": T.PANEL, + "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_unchecked": T.IMAGE, + "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_checked": T.IMAGE, + "layout_customization_option_content/apply_to_all_toggle/caption_frame": T.PANEL, + "layout_customization_option_content/apply_to_all_toggle/caption_frame/caption": T.LABEL, + "layout_customization_option": T.PANEL, + "layout_customization_option/content": T.PANEL, + "layout_customization_sub_panel": T.PANEL, + "layout_customization_sub_panel/background": T.IMAGE, + "layout_customization_sub_panel/background/sub_panel_content": T.GRID, } export type HostOptionsType = { - button_label: T.LABEL - host_image_panel: T.PANEL - "host_image_panel/host_image": T.LABEL - host_glyph_panel: T.IMAGE - scrollable_selector_area: T.PANEL - host_main_button: T.BUTTON - scrolling_panel: T.PANEL - "scrolling_panel/background": T.IMAGE - "scrolling_panel/scrollable_tab": T.PANEL - button_content: T.PANEL - "button_content/button_label": T.LABEL - "button_content/image": T.IMAGE - main_light_button: T.BUTTON - main_dark_button: T.BUTTON - host_grid: T.GRID - host_sub_command_grid_item: T.PANEL - "host_sub_command_grid_item/host_option_banner": T.BUTTON - return_from_sub_command_button: T.BUTTON - platform_icon_panel: T.PANEL - gamertag_wrapper: T.PANEL - player_pic_panel: T.PANEL - "player_pic_panel/player_gamer_pic": T.IMAGE - "player_pic_panel/player_local_icon": T.IMAGE - player_button_content: T.STACK_PANEL - "player_button_content/player_pic_panel": T.PANEL - "player_button_content/player_gamertag": T.PANEL - "player_button_content/platform_icon": T.PANEL - player_grid_item: T.PANEL - "player_grid_item/player_banner": T.BUTTON - host_friends_tab: T.PANEL - "host_friends_tab/players_grid": T.GRID - host_teleport_grid_item: T.PANEL - "host_teleport_grid_item/host_option_toggle": T.PANEL - "host_teleport_grid_item/host_option_button": T.BUTTON - host_teleport_buttons: T.STACK_PANEL - "host_teleport_buttons/return": T.BUTTON - "host_teleport_buttons/sub_tab": T.PANEL - "host_teleport_buttons/sub_tab/host_main_grid": T.GRID - host_teleport_player_list_buttons: T.STACK_PANEL - "host_teleport_player_list_buttons/toggle": T.PANEL - "host_teleport_player_list_buttons/toggle/host_time_panel": T.PANEL - host_teleport_player_buttons: T.STACK_PANEL - host_time_buttons: T.STACK_PANEL - "host_time_buttons/return": T.BUTTON - "host_time_buttons/sub_tab": T.PANEL - "host_time_buttons/sub_tab/scrolli_scrolli_ravioli": T.PANEL - host_weather_buttons: T.STACK_PANEL - "host_weather_buttons/return": T.BUTTON - "host_weather_buttons/sub_tab": T.PANEL - "host_weather_buttons/sub_tab/host_main_grid": T.GRID - host_menu_grid_item: T.PANEL - "host_menu_grid_item/host_option_banner": T.BUTTON - host_main_buttons: T.STACK_PANEL - "host_main_buttons/host_main_grid": T.GRID - host_panel: T.PANEL - "host_panel/host_main_panel": T.STACK_PANEL - "host_panel/host_teleport_panel": T.STACK_PANEL - "host_panel/host_teleport_player_panel": T.STACK_PANEL - "host_panel/host_time_panel": T.STACK_PANEL - "host_panel/host_weather_panel": T.STACK_PANEL + "button_label": T.LABEL, + "host_image_panel": T.PANEL, + "host_image_panel/host_image": T.LABEL, + "host_glyph_panel": T.IMAGE, + "scrollable_selector_area": T.PANEL, + "host_main_button": T.BUTTON, + "scrolling_panel": T.PANEL, + "scrolling_panel/background": T.IMAGE, + "scrolling_panel/scrollable_tab": T.PANEL, + "button_content": T.PANEL, + "button_content/button_label": T.LABEL, + "button_content/image": T.IMAGE, + "main_light_button": T.BUTTON, + "main_dark_button": T.BUTTON, + "host_grid": T.GRID, + "host_sub_command_grid_item": T.PANEL, + "host_sub_command_grid_item/host_option_banner": T.BUTTON, + "return_from_sub_command_button": T.BUTTON, + "platform_icon_panel": T.PANEL, + "gamertag_wrapper": T.PANEL, + "player_pic_panel": T.PANEL, + "player_pic_panel/player_gamer_pic": T.IMAGE, + "player_pic_panel/player_local_icon": T.IMAGE, + "player_button_content": T.STACK_PANEL, + "player_button_content/player_pic_panel": T.PANEL, + "player_button_content/player_gamertag": T.PANEL, + "player_button_content/platform_icon": T.PANEL, + "player_grid_item": T.PANEL, + "player_grid_item/player_banner": T.BUTTON, + "host_friends_tab": T.PANEL, + "host_friends_tab/players_grid": T.GRID, + "host_teleport_grid_item": T.PANEL, + "host_teleport_grid_item/host_option_toggle": T.PANEL, + "host_teleport_grid_item/host_option_button": T.BUTTON, + "host_teleport_buttons": T.STACK_PANEL, + "host_teleport_buttons/return": T.BUTTON, + "host_teleport_buttons/sub_tab": T.PANEL, + "host_teleport_buttons/sub_tab/host_main_grid": T.GRID, + "host_teleport_player_list_buttons": T.STACK_PANEL, + "host_teleport_player_list_buttons/toggle": T.PANEL, + "host_teleport_player_list_buttons/toggle/host_time_panel": T.PANEL, + "host_teleport_player_buttons": T.STACK_PANEL, + "host_time_buttons": T.STACK_PANEL, + "host_time_buttons/return": T.BUTTON, + "host_time_buttons/sub_tab": T.PANEL, + "host_time_buttons/sub_tab/scrolli_scrolli_ravioli": T.PANEL, + "host_weather_buttons": T.STACK_PANEL, + "host_weather_buttons/return": T.BUTTON, + "host_weather_buttons/sub_tab": T.PANEL, + "host_weather_buttons/sub_tab/host_main_grid": T.GRID, + "host_menu_grid_item": T.PANEL, + "host_menu_grid_item/host_option_banner": T.BUTTON, + "host_main_buttons": T.STACK_PANEL, + "host_main_buttons/host_main_grid": T.GRID, + "host_panel": T.PANEL, + "host_panel/host_main_panel": T.STACK_PANEL, + "host_panel/host_teleport_panel": T.STACK_PANEL, + "host_panel/host_teleport_player_panel": T.STACK_PANEL, + "host_panel/host_time_panel": T.STACK_PANEL, + "host_panel/host_weather_panel": T.STACK_PANEL, } export type BedType = { - in_bed_screen: T.SCREEN - in_bed_screen_content: T.PANEL - "in_bed_screen_content/wake_up_button_panel": T.STACK_PANEL - "in_bed_screen_content/wake_up_button_panel/wake_up_button": T.BUTTON - "in_bed_screen_content/wake_up_button_panel/spacer": T.PANEL - "in_bed_screen_content/wake_up_button_panel/chat_button": T.BUTTON - "in_bed_screen_content/wake_up_label_panel": T.LABEL - "in_bed_screen_content/select_button": T.PANEL - background: T.IMAGE + "in_bed_screen": T.SCREEN, + "in_bed_screen_content": T.PANEL, + "in_bed_screen_content/wake_up_button_panel": T.STACK_PANEL, + "in_bed_screen_content/wake_up_button_panel/wake_up_button": T.BUTTON, + "in_bed_screen_content/wake_up_button_panel/spacer": T.PANEL, + "in_bed_screen_content/wake_up_button_panel/chat_button": T.BUTTON, + "in_bed_screen_content/wake_up_label_panel": T.LABEL, + "in_bed_screen_content/select_button": T.PANEL, + "background": T.IMAGE, } export type ImReaderType = { - reader_button_contents: T.IMAGE - reader_button: T.BUTTON - webview: T.CUSTOM - loading: T.STACK_PANEL - "loading/animation_item": T.PANEL - "loading/animation_item/animation": T.IMAGE - "loading/loading_text_item": T.PANEL - "loading/loading_text_item/loading_text": T.LABEL - "loading/bottom_padding": T.PANEL - "loading/cancel_button": T.BUTTON - no_retry_error_button: T.BUTTON - retry_error_buttons: T.STACK_PANEL - "retry_error_buttons/try_again": T.BUTTON - "retry_error_buttons/middle_padding": T.PANEL - "retry_error_buttons/cancel": T.BUTTON - error: T.STACK_PANEL - "error/error_text": T.LABEL - "error/error_buttons": T.PANEL - "error/error_buttons/retry": T.STACK_PANEL - "error/error_buttons/no_retry": T.BUTTON - loading_and_error_panel: T.PANEL - "loading_and_error_panel/loading": T.STACK_PANEL - "loading_and_error_panel/error": T.STACK_PANEL - immersive_reader_screen_content: T.PANEL - "immersive_reader_screen_content/loading_and_error": T.PANEL - "immersive_reader_screen_content/webview": T.CUSTOM - immersive_reader_screen: T.SCREEN + "reader_button_contents": T.IMAGE, + "reader_button": T.BUTTON, + "webview": T.CUSTOM, + "loading": T.STACK_PANEL, + "loading/animation_item": T.PANEL, + "loading/animation_item/animation": T.IMAGE, + "loading/loading_text_item": T.PANEL, + "loading/loading_text_item/loading_text": T.LABEL, + "loading/bottom_padding": T.PANEL, + "loading/cancel_button": T.BUTTON, + "no_retry_error_button": T.BUTTON, + "retry_error_buttons": T.STACK_PANEL, + "retry_error_buttons/try_again": T.BUTTON, + "retry_error_buttons/middle_padding": T.PANEL, + "retry_error_buttons/cancel": T.BUTTON, + "error": T.STACK_PANEL, + "error/error_text": T.LABEL, + "error/error_buttons": T.PANEL, + "error/error_buttons/retry": T.STACK_PANEL, + "error/error_buttons/no_retry": T.BUTTON, + "loading_and_error_panel": T.PANEL, + "loading_and_error_panel/loading": T.STACK_PANEL, + "loading_and_error_panel/error": T.STACK_PANEL, + "immersive_reader_screen_content": T.PANEL, + "immersive_reader_screen_content/loading_and_error": T.PANEL, + "immersive_reader_screen_content/webview": T.CUSTOM, + "immersive_reader_screen": T.SCREEN, } export type CraftingType = { - inventory_x_gamepad_helper: T.STACK_PANEL - inventory_y_gamepad_helper: T.STACK_PANEL - inventory_a_gamepad_helper: T.STACK_PANEL - inventory_b_gamepad_helper: T.STACK_PANEL - gamepad_helper_bumpers: T.PANEL - "gamepad_helper_bumpers/gamepad_helper_left_bumper": T.STACK_PANEL - "gamepad_helper_bumpers/gamepad_helper_right_bumper": T.STACK_PANEL - gamepad_helper_left_trigger: T.STACK_PANEL - gamepad_helper_right_trigger: T.STACK_PANEL - container_gamepad_helpers_second_row: T.STACK_PANEL - "container_gamepad_helpers_second_row/buffer_panel_left": T.PANEL - "container_gamepad_helpers_second_row/left_thumbstick_visibility": T.PANEL - "container_gamepad_helpers_second_row/left_thumbstick_visibility/gamepad_helper_thumbstick_left": T.STACK_PANEL - "container_gamepad_helpers_second_row/fill_panel": T.PANEL - "container_gamepad_helpers_second_row/right_thumbstick_visibility": T.PANEL - "container_gamepad_helpers_second_row/right_thumbstick_visibility/gamepad_helper_thumbstick_right": T.STACK_PANEL - "container_gamepad_helpers_second_row/buffer_panel_right": T.PANEL - crafting_root_panel: T.INPUT_PANEL - drop_item_panel: T.INPUT_PANEL - inventory_container_slot_button: T.BUTTON - creative_hotbar_container_slot_button: T.BUTTON - no_coalesce_container_slot_button: T.BUTTON - creative_no_coalesce_container_slot_button: T.BUTTON - output_no_coalesce_container_slot_button: T.BUTTON - tab_image: T.IMAGE - item_renderer: T.CUSTOM - inventory_icon: T.IMAGE - recipe_book_icon: T.IMAGE - creative_icon: T.IMAGE - icon_image: T.IMAGE - tab_front: T.IMAGE - tab_back: T.IMAGE - equipment_icon: T.IMAGE - construction_icon: T.IMAGE - nature_icon: T.IMAGE - search_icon: T.IMAGE - miscellaneous_icon: T.IMAGE - empty_tab_panel: T.PANEL - "empty_tab_panel/img": T.UNKNOWN - top_tab: T.PANEL - search_tab: T.PANEL - construction_tab: T.PANEL - equipment_tab: T.PANEL - nature_tab: T.PANEL - items_tab: T.PANEL - tab_navigation_panel_layout: T.STACK_PANEL - "tab_navigation_panel_layout/navigation_tabs": T.PANEL - "tab_navigation_panel_layout/navigation_tabs/content": T.STACK_PANEL - "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel": T.PANEL - "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel/construction_tab_factory": T.FACTORY - "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel": T.PANEL - "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel/equipment_tab_factory": T.FACTORY - "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel": T.PANEL - "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel/items_tab_factory": T.FACTORY - "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel": T.PANEL - "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel/nature_tab_factory": T.FACTORY - "tab_navigation_panel_layout/navigation_tabs/content/fill_panel_0": T.PANEL - "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder": T.PANEL - "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_end_creative": T.PANEL - "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_creative": T.PANEL - "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_survival": T.PANEL - tab_content_padding: T.PANEL - tab_content: T.PANEL - "tab_content/tab_content_search_bar_panel": T.STACK_PANEL - "tab_content/tab_content_search_bar_panel/vertical_padding_1": T.PANEL - "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder": T.STACK_PANEL - "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_1": T.PANEL - "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/creative_label": T.LABEL - "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_2": T.PANEL - "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder": T.PANEL - "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder/filter_toggle": T.PANEL - "tab_content/tab_content_search_bar_panel/vertical_padding_2": T.PANEL - "tab_content/tab_content_search_bar_panel/search_and_filter_panel": T.STACK_PANEL - "tab_content/tab_content_search_bar_panel/search_and_filter_panel/text_edit_control": T.EDIT_BOX - "tab_content/tab_content_search_bar_panel/search_and_filter_panel/padding_1": T.PANEL - "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder": T.PANEL - "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder/filter_toggle": T.PANEL - "tab_content/tab_content_search_bar_panel/vertical_padding_3": T.PANEL - "tab_content/tab_content_search_bar_panel/scroll_pane": T.UNKNOWN - "tab_content/nodrop_zone": T.INPUT_PANEL - armor_overlay: T.IMAGE - offhand_overlay: T.IMAGE - armor_overlay_helmet: T.IMAGE - armor_overlay_chest: T.IMAGE - armor_overlay_legs: T.IMAGE - armor_image_feet: T.IMAGE - armor_overlay_shield: T.IMAGE - player_armor_panel: T.PANEL - "player_armor_panel/player_bg": T.IMAGE - "player_armor_panel/player_bg/player_renderer_panel": T.PANEL - "player_armor_panel/player_bg/player_renderer_panel/player_renderer": T.CUSTOM - "player_armor_panel/player_preview_border": T.IMAGE - "player_armor_panel/armor_grid": T.GRID - "player_armor_panel/armor_grid/head_grid_item": T.INPUT_PANEL - "player_armor_panel/armor_grid/chest_grid_item": T.INPUT_PANEL - "player_armor_panel/armor_grid/legs_grid_item": T.INPUT_PANEL - "player_armor_panel/armor_grid/feet_grid_item": T.INPUT_PANEL - "player_armor_panel/offhand_grid": T.GRID - "player_armor_panel/offhand_grid/offhand_grid_item": T.INPUT_PANEL - crafting_label: T.LABEL - inventory_label: T.LABEL - crafting_arrow: T.IMAGE - crafting_arrow_large: T.IMAGE - crafting_input_grid_item: T.INPUT_PANEL - crafting_grid_3x3: T.GRID - "crafting_grid_3x3/crafting_input_item_top_left": T.INPUT_PANEL - "crafting_grid_3x3/crafting_input_item_top_mid": T.INPUT_PANEL - "crafting_grid_3x3/crafting_input_item_top_right": T.INPUT_PANEL - "crafting_grid_3x3/crafting_input_item_mid_left": T.INPUT_PANEL - "crafting_grid_3x3/crafting_input_item_middle": T.INPUT_PANEL - "crafting_grid_3x3/crafting_input_item_mid_right": T.INPUT_PANEL - "crafting_grid_3x3/crafting_input_item_bot_left": T.INPUT_PANEL - "crafting_grid_3x3/crafting_input_item_bot_mid": T.INPUT_PANEL - "crafting_grid_3x3/crafting_input_item_bot_right": T.INPUT_PANEL - crafting_grid_2x2: T.GRID - "crafting_grid_2x2/crafting_input_item_top_left": T.INPUT_PANEL - "crafting_grid_2x2/crafting_input_item_top_right": T.INPUT_PANEL - "crafting_grid_2x2/crafting_input_item_bot_left": T.INPUT_PANEL - "crafting_grid_2x2/crafting_input_item_bot_right": T.INPUT_PANEL - output_grid_3x3: T.GRID - "output_grid_3x3/work_bench_output": T.INPUT_PANEL - output_grid_2x2: T.GRID - "output_grid_2x2/work_bench_output": T.INPUT_PANEL - work_bench_panel_3x3: T.PANEL - "work_bench_panel_3x3/inventory_label": T.LABEL - "work_bench_panel_3x3/crafting_arrow_large": T.IMAGE - "work_bench_panel_3x3/crafting_grid_3x3_with_label_0": T.PANEL - "work_bench_panel_3x3/work_bench_output_grid": T.GRID - crafting_grid_3x3_with_label: T.PANEL - "crafting_grid_3x3_with_label/crafting_label": T.LABEL - "crafting_grid_3x3_with_label/crafting_grid_3x3": T.GRID - crafting_grid_2x2_with_label: T.PANEL - "crafting_grid_2x2_with_label/crafting_label": T.LABEL - "crafting_grid_2x2_with_label/crafting_grid_2x2": T.GRID - crafting_panel_2x2: T.PANEL - "crafting_panel_2x2/crafting_arrow": T.IMAGE - "crafting_panel_2x2/crafting_table": T.CUSTOM - "crafting_panel_2x2/crafting_grid_2x2": T.PANEL - "crafting_panel_2x2/survival_crafting_output_grid": T.GRID - survival_panel_top_half: T.PANEL - "survival_panel_top_half/player_armor_panel": T.PANEL - "survival_panel_top_half/crafting_panel": T.PANEL - crafting_panel_top_half: T.PANEL - "crafting_panel_top_half/crafting_panel": T.PANEL - recipe_container_cell_images: T.IMAGE - cell_image_recipe_default: T.IMAGE - cell_image_recipe_group_head_collapsed: T.IMAGE - cell_image_recipe_group_head_expanded: T.IMAGE - cell_image_recipe_group_item: T.IMAGE - cell_image_recipe_selected: T.IMAGE - cell_image_recipe_default_red: T.IMAGE - container_cell_images: T.PANEL - "container_cell_images/cell_classic": T.IMAGE - "container_cell_images/cell_normal": T.IMAGE - "container_cell_images/cell_invert": T.IMAGE - "container_cell_images/cell_red": T.IMAGE - "container_cell_images/cell_selected": T.IMAGE - "container_cell_images/cell_darkgrey": T.IMAGE - crafting_container_cell_images: T.PANEL - cell_image: T.IMAGE - cell_image_classic: T.IMAGE - cell_image_normal: T.IMAGE - cell_image_invert: T.IMAGE - cell_image_red: T.IMAGE - cell_image_selected: T.IMAGE - cell_image_darkgrey: T.IMAGE - container_overlay_images: T.PANEL - "container_overlay_images/expand": T.IMAGE - "container_overlay_images/contract": T.IMAGE - item_overlay_image: T.IMAGE - item_overlay_contract: T.IMAGE - item_overlay_expand: T.IMAGE - inventory_container_item: T.INPUT_PANEL - "inventory_container_item/item_cell": T.PANEL - "inventory_container_item/item_cell/item": T.PANEL - "inventory_container_item/item_cell/item/stack_count_label": T.LABEL - "inventory_container_item/item_cell/durability_bar": T.CUSTOM - "inventory_container_item/item_cell/storage_bar": T.CUSTOM - "inventory_container_item/item_cell_overlay_ref": T.UNKNOWN - "inventory_container_item/item_selected_image": T.IMAGE - "inventory_container_item/item_button_ref": T.UNKNOWN - "inventory_container_item/container_item_lock_overlay": T.PANEL - "inventory_container_item/item_lock_cell_image": T.IMAGE - "inventory_container_item/bundle_slot_panel": T.PANEL - grid_item_for_recipe_book: T.INPUT_PANEL - scroll_grid_panel: T.INPUT_PANEL - "scroll_grid_panel/grid": T.GRID - scroll_grid: T.GRID - scroll_panel: T.PANEL - recipe_book_scroll_panel: T.PANEL - creative_label: T.LABEL - filter_toggle: T.PANEL - toolbar_background: T.IMAGE - layout_toggle_content: T.PANEL - "layout_toggle_content/image": T.UNKNOWN - "layout_toggle_content/icon": T.UNKNOWN - layout_template_toggle: T.TOGGLE - layout_toggle: T.PANEL - creative_layout_toggle: T.PANEL - recipe_book_layout_toggle: T.PANEL - survival_layout_toggle: T.PANEL - help_button: T.BUTTON - "help_button/default": T.IMAGE - "help_button/hover": T.IMAGE - "help_button/pressed": T.IMAGE - player_inventory: T.INPUT_PANEL - "player_inventory/common_panel": T.PANEL - "player_inventory/inventory_panel_top_half": T.UNKNOWN - "player_inventory/inventory_panel_bottom_half": T.PANEL - "player_inventory/hotbar_grid": T.GRID - recipe_book: T.INPUT_PANEL - "recipe_book/gamepad_helper_bumpers": T.PANEL - "recipe_book/tab_navigation_panel": T.STACK_PANEL - "recipe_book/bg": T.PANEL - "recipe_book/tab_content_panel": T.PANEL - "recipe_book/creative_hotbar_panel": T.INPUT_PANEL - creative_hotbar_panel: T.INPUT_PANEL - "creative_hotbar_panel/creative_hotbar_background": T.IMAGE - "creative_hotbar_panel/creative_hotbar_background/hotbar_grid": T.GRID - center_fold: T.INPUT_PANEL - "center_fold/center_bg": T.IMAGE - toolbar_panel: T.INPUT_PANEL - "toolbar_panel/toolbar_background": T.IMAGE - "toolbar_panel/toolbar_background/toolbar_stack_panel": T.STACK_PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor/gamepad_helper_left_trigger": T.STACK_PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_0": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel/creative_layout_toggle": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival/recipe_book_layout_toggle": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative/recipe_book_layout_toggle": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel/survival_layout_toggle": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_3": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": T.BUTTON - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": T.BUTTON - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_4": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor/gamepad_helper_right_trigger": T.STACK_PANEL - inventory_screen_base: T.SCREEN - crafting_screen: T.SCREEN - inventory_screen: T.SCREEN - recipe_book_toggle_image: T.IMAGE - recipe_inventory_screen_content: T.PANEL - "recipe_inventory_screen_content/content_stack_panel": T.STACK_PANEL - "recipe_inventory_screen_content/content_stack_panel/recipe_book": T.INPUT_PANEL - "recipe_inventory_screen_content/content_stack_panel/center_fold": T.INPUT_PANEL - "recipe_inventory_screen_content/content_stack_panel/survival_padding": T.PANEL - "recipe_inventory_screen_content/content_stack_panel/player_inventory": T.INPUT_PANEL - "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor": T.PANEL - "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor/toolbar_panel": T.INPUT_PANEL - "recipe_inventory_screen_content/inventory_take_progress_icon_button": T.BUTTON - "recipe_inventory_screen_content/inventory_selected_icon_button": T.BUTTON - "recipe_inventory_screen_content/hold_icon": T.BUTTON - "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel": T.STACK_PANEL - "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers_second_row": T.STACK_PANEL - "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers": T.STACK_PANEL - "recipe_inventory_screen_content/selected_item_details_factory": T.FACTORY - "recipe_inventory_screen_content/item_lock_notification_factory": T.FACTORY - "recipe_inventory_screen_content/flying_item_renderer": T.CUSTOM + "inventory_x_gamepad_helper": T.STACK_PANEL, + "inventory_y_gamepad_helper": T.STACK_PANEL, + "inventory_a_gamepad_helper": T.STACK_PANEL, + "inventory_b_gamepad_helper": T.STACK_PANEL, + "gamepad_helper_bumpers": T.PANEL, + "gamepad_helper_bumpers/gamepad_helper_left_bumper": T.STACK_PANEL, + "gamepad_helper_bumpers/gamepad_helper_right_bumper": T.STACK_PANEL, + "gamepad_helper_left_trigger": T.STACK_PANEL, + "gamepad_helper_right_trigger": T.STACK_PANEL, + "container_gamepad_helpers_second_row": T.STACK_PANEL, + "container_gamepad_helpers_second_row/buffer_panel_left": T.PANEL, + "container_gamepad_helpers_second_row/left_thumbstick_visibility": T.PANEL, + "container_gamepad_helpers_second_row/left_thumbstick_visibility/gamepad_helper_thumbstick_left": T.STACK_PANEL, + "container_gamepad_helpers_second_row/fill_panel": T.PANEL, + "container_gamepad_helpers_second_row/right_thumbstick_visibility": T.PANEL, + "container_gamepad_helpers_second_row/right_thumbstick_visibility/gamepad_helper_thumbstick_right": T.STACK_PANEL, + "container_gamepad_helpers_second_row/buffer_panel_right": T.PANEL, + "crafting_root_panel": T.INPUT_PANEL, + "drop_item_panel": T.INPUT_PANEL, + "inventory_container_slot_button": T.BUTTON, + "creative_hotbar_container_slot_button": T.BUTTON, + "no_coalesce_container_slot_button": T.BUTTON, + "creative_no_coalesce_container_slot_button": T.BUTTON, + "output_no_coalesce_container_slot_button": T.BUTTON, + "tab_image": T.IMAGE, + "item_renderer": T.CUSTOM, + "inventory_icon": T.IMAGE, + "recipe_book_icon": T.IMAGE, + "creative_icon": T.IMAGE, + "icon_image": T.IMAGE, + "tab_front": T.IMAGE, + "tab_back": T.IMAGE, + "equipment_icon": T.IMAGE, + "construction_icon": T.IMAGE, + "nature_icon": T.IMAGE, + "search_icon": T.IMAGE, + "miscellaneous_icon": T.IMAGE, + "empty_tab_panel": T.PANEL, + "empty_tab_panel/img": T.UNKNOWN, + "top_tab": T.PANEL, + "search_tab": T.PANEL, + "construction_tab": T.PANEL, + "equipment_tab": T.PANEL, + "nature_tab": T.PANEL, + "items_tab": T.PANEL, + "tab_navigation_panel_layout": T.STACK_PANEL, + "tab_navigation_panel_layout/navigation_tabs": T.PANEL, + "tab_navigation_panel_layout/navigation_tabs/content": T.STACK_PANEL, + "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel": T.PANEL, + "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel/construction_tab_factory": T.FACTORY, + "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel": T.PANEL, + "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel/equipment_tab_factory": T.FACTORY, + "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel": T.PANEL, + "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel/items_tab_factory": T.FACTORY, + "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel": T.PANEL, + "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel/nature_tab_factory": T.FACTORY, + "tab_navigation_panel_layout/navigation_tabs/content/fill_panel_0": T.PANEL, + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder": T.PANEL, + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_end_creative": T.PANEL, + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_creative": T.PANEL, + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_survival": T.PANEL, + "tab_content_padding": T.PANEL, + "tab_content": T.PANEL, + "tab_content/tab_content_search_bar_panel": T.STACK_PANEL, + "tab_content/tab_content_search_bar_panel/vertical_padding_1": T.PANEL, + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder": T.STACK_PANEL, + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_1": T.PANEL, + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/creative_label": T.LABEL, + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_2": T.PANEL, + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder": T.PANEL, + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder/filter_toggle": T.PANEL, + "tab_content/tab_content_search_bar_panel/vertical_padding_2": T.PANEL, + "tab_content/tab_content_search_bar_panel/search_and_filter_panel": T.STACK_PANEL, + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/text_edit_control": T.EDIT_BOX, + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/padding_1": T.PANEL, + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder": T.PANEL, + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder/filter_toggle": T.PANEL, + "tab_content/tab_content_search_bar_panel/vertical_padding_3": T.PANEL, + "tab_content/tab_content_search_bar_panel/scroll_pane": T.UNKNOWN, + "tab_content/nodrop_zone": T.INPUT_PANEL, + "armor_overlay": T.IMAGE, + "offhand_overlay": T.IMAGE, + "armor_overlay_helmet": T.IMAGE, + "armor_overlay_chest": T.IMAGE, + "armor_overlay_legs": T.IMAGE, + "armor_image_feet": T.IMAGE, + "armor_overlay_shield": T.IMAGE, + "player_armor_panel": T.PANEL, + "player_armor_panel/player_bg": T.IMAGE, + "player_armor_panel/player_bg/player_renderer_panel": T.PANEL, + "player_armor_panel/player_bg/player_renderer_panel/player_renderer": T.CUSTOM, + "player_armor_panel/player_preview_border": T.IMAGE, + "player_armor_panel/armor_grid": T.GRID, + "player_armor_panel/armor_grid/head_grid_item": T.INPUT_PANEL, + "player_armor_panel/armor_grid/chest_grid_item": T.INPUT_PANEL, + "player_armor_panel/armor_grid/legs_grid_item": T.INPUT_PANEL, + "player_armor_panel/armor_grid/feet_grid_item": T.INPUT_PANEL, + "player_armor_panel/offhand_grid": T.GRID, + "player_armor_panel/offhand_grid/offhand_grid_item": T.INPUT_PANEL, + "crafting_label": T.LABEL, + "inventory_label": T.LABEL, + "crafting_arrow": T.IMAGE, + "crafting_arrow_large": T.IMAGE, + "crafting_input_grid_item": T.INPUT_PANEL, + "crafting_grid_3x3": T.GRID, + "crafting_grid_3x3/crafting_input_item_top_left": T.INPUT_PANEL, + "crafting_grid_3x3/crafting_input_item_top_mid": T.INPUT_PANEL, + "crafting_grid_3x3/crafting_input_item_top_right": T.INPUT_PANEL, + "crafting_grid_3x3/crafting_input_item_mid_left": T.INPUT_PANEL, + "crafting_grid_3x3/crafting_input_item_middle": T.INPUT_PANEL, + "crafting_grid_3x3/crafting_input_item_mid_right": T.INPUT_PANEL, + "crafting_grid_3x3/crafting_input_item_bot_left": T.INPUT_PANEL, + "crafting_grid_3x3/crafting_input_item_bot_mid": T.INPUT_PANEL, + "crafting_grid_3x3/crafting_input_item_bot_right": T.INPUT_PANEL, + "crafting_grid_2x2": T.GRID, + "crafting_grid_2x2/crafting_input_item_top_left": T.INPUT_PANEL, + "crafting_grid_2x2/crafting_input_item_top_right": T.INPUT_PANEL, + "crafting_grid_2x2/crafting_input_item_bot_left": T.INPUT_PANEL, + "crafting_grid_2x2/crafting_input_item_bot_right": T.INPUT_PANEL, + "output_grid_3x3": T.GRID, + "output_grid_3x3/work_bench_output": T.INPUT_PANEL, + "output_grid_2x2": T.GRID, + "output_grid_2x2/work_bench_output": T.INPUT_PANEL, + "work_bench_panel_3x3": T.PANEL, + "work_bench_panel_3x3/inventory_label": T.LABEL, + "work_bench_panel_3x3/crafting_arrow_large": T.IMAGE, + "work_bench_panel_3x3/crafting_grid_3x3_with_label_0": T.PANEL, + "work_bench_panel_3x3/work_bench_output_grid": T.GRID, + "crafting_grid_3x3_with_label": T.PANEL, + "crafting_grid_3x3_with_label/crafting_label": T.LABEL, + "crafting_grid_3x3_with_label/crafting_grid_3x3": T.GRID, + "crafting_grid_2x2_with_label": T.PANEL, + "crafting_grid_2x2_with_label/crafting_label": T.LABEL, + "crafting_grid_2x2_with_label/crafting_grid_2x2": T.GRID, + "crafting_panel_2x2": T.PANEL, + "crafting_panel_2x2/crafting_arrow": T.IMAGE, + "crafting_panel_2x2/crafting_table": T.CUSTOM, + "crafting_panel_2x2/crafting_grid_2x2": T.PANEL, + "crafting_panel_2x2/survival_crafting_output_grid": T.GRID, + "survival_panel_top_half": T.PANEL, + "survival_panel_top_half/player_armor_panel": T.PANEL, + "survival_panel_top_half/crafting_panel": T.PANEL, + "crafting_panel_top_half": T.PANEL, + "crafting_panel_top_half/crafting_panel": T.PANEL, + "recipe_container_cell_images": T.IMAGE, + "cell_image_recipe_default": T.IMAGE, + "cell_image_recipe_group_head_collapsed": T.IMAGE, + "cell_image_recipe_group_head_expanded": T.IMAGE, + "cell_image_recipe_group_item": T.IMAGE, + "cell_image_recipe_selected": T.IMAGE, + "cell_image_recipe_default_red": T.IMAGE, + "container_cell_images": T.PANEL, + "container_cell_images/cell_classic": T.IMAGE, + "container_cell_images/cell_normal": T.IMAGE, + "container_cell_images/cell_invert": T.IMAGE, + "container_cell_images/cell_red": T.IMAGE, + "container_cell_images/cell_selected": T.IMAGE, + "container_cell_images/cell_darkgrey": T.IMAGE, + "crafting_container_cell_images": T.PANEL, + "cell_image": T.IMAGE, + "cell_image_classic": T.IMAGE, + "cell_image_normal": T.IMAGE, + "cell_image_invert": T.IMAGE, + "cell_image_red": T.IMAGE, + "cell_image_selected": T.IMAGE, + "cell_image_darkgrey": T.IMAGE, + "container_overlay_images": T.PANEL, + "container_overlay_images/expand": T.IMAGE, + "container_overlay_images/contract": T.IMAGE, + "item_overlay_image": T.IMAGE, + "item_overlay_contract": T.IMAGE, + "item_overlay_expand": T.IMAGE, + "inventory_container_item": T.INPUT_PANEL, + "inventory_container_item/item_cell": T.PANEL, + "inventory_container_item/item_cell/item": T.PANEL, + "inventory_container_item/item_cell/item/stack_count_label": T.LABEL, + "inventory_container_item/item_cell/durability_bar": T.CUSTOM, + "inventory_container_item/item_cell/storage_bar": T.CUSTOM, + "inventory_container_item/item_cell_overlay_ref": T.UNKNOWN, + "inventory_container_item/item_selected_image": T.IMAGE, + "inventory_container_item/item_button_ref": T.UNKNOWN, + "inventory_container_item/container_item_lock_overlay": T.PANEL, + "inventory_container_item/item_lock_cell_image": T.IMAGE, + "inventory_container_item/bundle_slot_panel": T.PANEL, + "grid_item_for_recipe_book": T.INPUT_PANEL, + "scroll_grid_panel": T.INPUT_PANEL, + "scroll_grid_panel/grid": T.GRID, + "scroll_grid": T.GRID, + "scroll_panel": T.PANEL, + "recipe_book_scroll_panel": T.PANEL, + "creative_label": T.LABEL, + "filter_toggle": T.PANEL, + "toolbar_background": T.IMAGE, + "layout_toggle_content": T.PANEL, + "layout_toggle_content/image": T.UNKNOWN, + "layout_toggle_content/icon": T.UNKNOWN, + "layout_template_toggle": T.TOGGLE, + "layout_toggle": T.PANEL, + "creative_layout_toggle": T.PANEL, + "recipe_book_layout_toggle": T.PANEL, + "survival_layout_toggle": T.PANEL, + "help_button": T.BUTTON, + "help_button/default": T.IMAGE, + "help_button/hover": T.IMAGE, + "help_button/pressed": T.IMAGE, + "player_inventory": T.INPUT_PANEL, + "player_inventory/common_panel": T.PANEL, + "player_inventory/inventory_panel_top_half": T.UNKNOWN, + "player_inventory/inventory_panel_bottom_half": T.PANEL, + "player_inventory/hotbar_grid": T.GRID, + "recipe_book": T.INPUT_PANEL, + "recipe_book/gamepad_helper_bumpers": T.PANEL, + "recipe_book/tab_navigation_panel": T.STACK_PANEL, + "recipe_book/bg": T.PANEL, + "recipe_book/tab_content_panel": T.PANEL, + "recipe_book/creative_hotbar_panel": T.INPUT_PANEL, + "creative_hotbar_panel": T.INPUT_PANEL, + "creative_hotbar_panel/creative_hotbar_background": T.IMAGE, + "creative_hotbar_panel/creative_hotbar_background/hotbar_grid": T.GRID, + "center_fold": T.INPUT_PANEL, + "center_fold/center_bg": T.IMAGE, + "toolbar_panel": T.INPUT_PANEL, + "toolbar_panel/toolbar_background": T.IMAGE, + "toolbar_panel/toolbar_background/toolbar_stack_panel": T.STACK_PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor/gamepad_helper_left_trigger": T.STACK_PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_0": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel/creative_layout_toggle": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival/recipe_book_layout_toggle": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative/recipe_book_layout_toggle": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel/survival_layout_toggle": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_3": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": T.BUTTON, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": T.BUTTON, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_4": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor/gamepad_helper_right_trigger": T.STACK_PANEL, + "inventory_screen_base": T.SCREEN, + "crafting_screen": T.SCREEN, + "inventory_screen": T.SCREEN, + "recipe_book_toggle_image": T.IMAGE, + "recipe_inventory_screen_content": T.PANEL, + "recipe_inventory_screen_content/content_stack_panel": T.STACK_PANEL, + "recipe_inventory_screen_content/content_stack_panel/recipe_book": T.INPUT_PANEL, + "recipe_inventory_screen_content/content_stack_panel/center_fold": T.INPUT_PANEL, + "recipe_inventory_screen_content/content_stack_panel/survival_padding": T.PANEL, + "recipe_inventory_screen_content/content_stack_panel/player_inventory": T.INPUT_PANEL, + "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor": T.PANEL, + "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor/toolbar_panel": T.INPUT_PANEL, + "recipe_inventory_screen_content/inventory_take_progress_icon_button": T.BUTTON, + "recipe_inventory_screen_content/inventory_selected_icon_button": T.BUTTON, + "recipe_inventory_screen_content/hold_icon": T.BUTTON, + "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel": T.STACK_PANEL, + "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers_second_row": T.STACK_PANEL, + "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers": T.STACK_PANEL, + "recipe_inventory_screen_content/selected_item_details_factory": T.FACTORY, + "recipe_inventory_screen_content/item_lock_notification_factory": T.FACTORY, + "recipe_inventory_screen_content/flying_item_renderer": T.CUSTOM, } export type CraftingPocketType = { - survival_icon: T.CUSTOM - full_screen_icon: T.IMAGE - crafting_icon: T.IMAGE - armor_icon: T.IMAGE - crafting_arrow_down: T.IMAGE - empty_tab_panel: T.PANEL - left_tab: T.PANEL - right_tab: T.PANEL - full_screen_tab: T.PANEL - crafting_tab: T.PANEL - armor_tab: T.PANEL - search_tab: T.PANEL - construction_tab: T.PANEL - equipment_tab: T.PANEL - items_tab: T.PANEL - nature_tab: T.PANEL - inventory_tab: T.PANEL - left_tab_navigation_panel_pocket: T.PANEL - "left_tab_navigation_panel_pocket/content": T.STACK_PANEL - "left_tab_navigation_panel_pocket/content/search_tab_panel": T.PANEL - "left_tab_navigation_panel_pocket/content/search_tab_panel/search_tab": T.PANEL - "left_tab_navigation_panel_pocket/content/construction_tab_panel": T.PANEL - "left_tab_navigation_panel_pocket/content/construction_tab_panel/construction_tab_factory": T.FACTORY - "left_tab_navigation_panel_pocket/content/equipment_tab_panel": T.PANEL - "left_tab_navigation_panel_pocket/content/equipment_tab_panel/equipment_tab_factory": T.FACTORY - "left_tab_navigation_panel_pocket/content/items_tab_panel": T.PANEL - "left_tab_navigation_panel_pocket/content/items_tab_panel/items_tab_factory": T.FACTORY - "left_tab_navigation_panel_pocket/content/nature_tab_panel": T.PANEL - "left_tab_navigation_panel_pocket/content/nature_tab_panel/nature_tab_factory": T.FACTORY - "left_tab_navigation_panel_pocket/content/fill": T.PANEL - "left_tab_navigation_panel_pocket/content/inventory_tab": T.PANEL - right_tab_navigation_panel_pocket: T.PANEL - "right_tab_navigation_panel_pocket/content": T.STACK_PANEL - "right_tab_navigation_panel_pocket/content/close": T.IMAGE - "right_tab_navigation_panel_pocket/content/close/nodrop_zone": T.INPUT_PANEL - "right_tab_navigation_panel_pocket/content/close/close_button": T.BUTTON - "right_tab_navigation_panel_pocket/content/fill": T.PANEL - "right_tab_navigation_panel_pocket/content/full_screen_tab": T.PANEL - "right_tab_navigation_panel_pocket/content/crafting_tab": T.PANEL - "right_tab_navigation_panel_pocket/content/armor_tab": T.PANEL - recipe_book_tab_content: T.PANEL - inventory_tab_content: T.PANEL - right_tab_content: T.PANEL - "right_tab_content/bg": T.PANEL - "right_tab_content/content": T.UNKNOWN - crafting_input_grid_item: T.INPUT_PANEL - crafting_grid_3x3: T.GRID - crafting_grid_2x2: T.GRID - output_grid_and_label: T.PANEL - "output_grid_and_label/recipe_item_label": T.LABEL - "output_grid_and_label/output_grid": T.GRID - output_grid: T.GRID - "output_grid/work_bench_output": T.INPUT_PANEL - crafting_grid_3x3_with_label: T.PANEL - "crafting_grid_3x3_with_label/crafting_label": T.LABEL - "crafting_grid_3x3_with_label/crafting_grid_3x3": T.GRID - crafting_grid_2x2_with_label: T.PANEL - "crafting_grid_2x2_with_label/crafting_label": T.LABEL - "crafting_grid_2x2_with_label/crafting_grid_2x2": T.GRID - scroll_background_image: T.IMAGE - grid_item_for_inventory: T.INPUT_PANEL - survival_inventory_grid: T.INPUT_PANEL - scroll_panel_pocket: T.PANEL - recipe_book_scroll_panel_pocket: T.PANEL - survival_scroll_panel: T.PANEL - pocket_armor_tab_content: T.STACK_PANEL - "pocket_armor_tab_content/label_and_renderer": T.PANEL - "pocket_armor_tab_content/label_and_renderer/label_panel": T.PANEL - "pocket_armor_tab_content/label_and_renderer/label_panel/armor_label": T.LABEL - "pocket_armor_tab_content/label_and_renderer/renderer_panel": T.PANEL - "pocket_armor_tab_content/label_and_renderer/renderer_panel/armor_renderer": T.CUSTOM - "pocket_armor_tab_content/equipment_and_renderer": T.STACK_PANEL - "pocket_armor_tab_content/equipment_and_renderer/equipment": T.STACK_PANEL - "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid": T.GRID - "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/head_grid_item": T.INPUT_PANEL - "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/chest_grid_item": T.INPUT_PANEL - "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/legs_grid_item": T.INPUT_PANEL - "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/feet_grid_item": T.INPUT_PANEL - "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid": T.GRID - "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid/offhand_grid_item": T.INPUT_PANEL - "pocket_armor_tab_content/equipment_and_renderer/armor_panel": T.PANEL - "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player": T.PANEL - "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border": T.IMAGE - "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg": T.IMAGE - "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg/player_renderer_panel": T.PANEL - "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg/player_renderer_panel/player_renderer": T.CUSTOM - hotbar_panel: T.INPUT_PANEL - "hotbar_panel/bg": T.PANEL - "hotbar_panel/hotbar_grid": T.GRID - hotbar_grid_item: T.INPUT_PANEL - survival_panel_pocket: T.PANEL - "survival_panel_pocket/crafting_panel": T.PANEL - "survival_panel_pocket/crafting_arrow_down": T.IMAGE - "survival_panel_pocket/crafting_table": T.CUSTOM - "survival_panel_pocket/output": T.PANEL - survival_panel_crafting_pocket: T.PANEL - "survival_panel_crafting_pocket/crafting_panel": T.PANEL - "survival_panel_crafting_pocket/crafting_arrow_down": T.IMAGE - "survival_panel_crafting_pocket/output": T.PANEL - inventory_screen_pocket_base: T.SCREEN - crafting_screen_pocket: T.SCREEN - inventory_screen_pocket: T.SCREEN - left_panel: T.PANEL - "left_panel/left_background": T.PANEL - "left_panel/recipe_book_tab_content": T.PANEL - "left_panel/inventory_tab_content": T.PANEL - right_panel: T.INPUT_PANEL - "right_panel/right_background": T.PANEL - "right_panel/help_button": T.BUTTON - "right_panel/crafting_tab_content": T.PANEL - "right_panel/armor_tab_content": T.PANEL - both_panels: T.STACK_PANEL - "both_panels/left_tab_navigation_panel_pocket": T.PANEL - "both_panels/left_panel": T.PANEL - "both_panels/offset_panel": T.PANEL - "both_panels/offset_panel/center_bg": T.IMAGE - "both_panels/right_panel": T.INPUT_PANEL - "both_panels/right_tab_navigation_panel_pocket": T.PANEL - gamepad_helper_border: T.STACK_PANEL - "gamepad_helper_border/left_gamepad_panel": T.PANEL - "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_bumper": T.STACK_PANEL - "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_trigger": T.STACK_PANEL - "gamepad_helper_border/both_panels": T.STACK_PANEL - "gamepad_helper_border/right_gamepad_panel": T.PANEL - "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper_creative": T.STACK_PANEL - "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper": T.STACK_PANEL - "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_trigger": T.STACK_PANEL - hotbar_and_panels: T.STACK_PANEL - "hotbar_and_panels/padding_1": T.PANEL - "hotbar_and_panels/gamepad_helper_border": T.STACK_PANEL - "hotbar_and_panels/hotbar_section_panel": T.INPUT_PANEL - "hotbar_and_panels/hotbar_section_panel/hotbar": T.INPUT_PANEL - recipe_inventory_screen_content_pocket: T.INPUT_PANEL - "recipe_inventory_screen_content_pocket/container_gamepad_helpers_pocket": T.STACK_PANEL - "recipe_inventory_screen_content_pocket/toast_screen_content": T.PANEL - "recipe_inventory_screen_content_pocket/selected_item_details_factory": T.FACTORY - "recipe_inventory_screen_content_pocket/item_lock_notification_factory": T.FACTORY - "recipe_inventory_screen_content_pocket/base_panel": T.PANEL - "recipe_inventory_screen_content_pocket/base_panel/root_panel": T.INPUT_PANEL - "recipe_inventory_screen_content_pocket/base_panel/inventory_selected_icon_button": T.BUTTON - "recipe_inventory_screen_content_pocket/base_panel/gamepad_cursor": T.BUTTON - "recipe_inventory_screen_content_pocket/base_panel/hold_icon": T.BUTTON - "recipe_inventory_screen_content_pocket/base_panel/hotbar_and_panels": T.STACK_PANEL - "recipe_inventory_screen_content_pocket/flying_item_renderer": T.CUSTOM + "survival_icon": T.CUSTOM, + "full_screen_icon": T.IMAGE, + "crafting_icon": T.IMAGE, + "armor_icon": T.IMAGE, + "crafting_arrow_down": T.IMAGE, + "empty_tab_panel": T.PANEL, + "left_tab": T.PANEL, + "right_tab": T.PANEL, + "full_screen_tab": T.PANEL, + "crafting_tab": T.PANEL, + "armor_tab": T.PANEL, + "search_tab": T.PANEL, + "construction_tab": T.PANEL, + "equipment_tab": T.PANEL, + "items_tab": T.PANEL, + "nature_tab": T.PANEL, + "inventory_tab": T.PANEL, + "left_tab_navigation_panel_pocket": T.PANEL, + "left_tab_navigation_panel_pocket/content": T.STACK_PANEL, + "left_tab_navigation_panel_pocket/content/search_tab_panel": T.PANEL, + "left_tab_navigation_panel_pocket/content/search_tab_panel/search_tab": T.PANEL, + "left_tab_navigation_panel_pocket/content/construction_tab_panel": T.PANEL, + "left_tab_navigation_panel_pocket/content/construction_tab_panel/construction_tab_factory": T.FACTORY, + "left_tab_navigation_panel_pocket/content/equipment_tab_panel": T.PANEL, + "left_tab_navigation_panel_pocket/content/equipment_tab_panel/equipment_tab_factory": T.FACTORY, + "left_tab_navigation_panel_pocket/content/items_tab_panel": T.PANEL, + "left_tab_navigation_panel_pocket/content/items_tab_panel/items_tab_factory": T.FACTORY, + "left_tab_navigation_panel_pocket/content/nature_tab_panel": T.PANEL, + "left_tab_navigation_panel_pocket/content/nature_tab_panel/nature_tab_factory": T.FACTORY, + "left_tab_navigation_panel_pocket/content/fill": T.PANEL, + "left_tab_navigation_panel_pocket/content/inventory_tab": T.PANEL, + "right_tab_navigation_panel_pocket": T.PANEL, + "right_tab_navigation_panel_pocket/content": T.STACK_PANEL, + "right_tab_navigation_panel_pocket/content/close": T.IMAGE, + "right_tab_navigation_panel_pocket/content/close/nodrop_zone": T.INPUT_PANEL, + "right_tab_navigation_panel_pocket/content/close/close_button": T.BUTTON, + "right_tab_navigation_panel_pocket/content/fill": T.PANEL, + "right_tab_navigation_panel_pocket/content/full_screen_tab": T.PANEL, + "right_tab_navigation_panel_pocket/content/crafting_tab": T.PANEL, + "right_tab_navigation_panel_pocket/content/armor_tab": T.PANEL, + "recipe_book_tab_content": T.PANEL, + "inventory_tab_content": T.PANEL, + "right_tab_content": T.PANEL, + "right_tab_content/bg": T.PANEL, + "right_tab_content/content": T.UNKNOWN, + "crafting_input_grid_item": T.INPUT_PANEL, + "crafting_grid_3x3": T.GRID, + "crafting_grid_2x2": T.GRID, + "output_grid_and_label": T.PANEL, + "output_grid_and_label/recipe_item_label": T.LABEL, + "output_grid_and_label/output_grid": T.GRID, + "output_grid": T.GRID, + "output_grid/work_bench_output": T.INPUT_PANEL, + "crafting_grid_3x3_with_label": T.PANEL, + "crafting_grid_3x3_with_label/crafting_label": T.LABEL, + "crafting_grid_3x3_with_label/crafting_grid_3x3": T.GRID, + "crafting_grid_2x2_with_label": T.PANEL, + "crafting_grid_2x2_with_label/crafting_label": T.LABEL, + "crafting_grid_2x2_with_label/crafting_grid_2x2": T.GRID, + "scroll_background_image": T.IMAGE, + "grid_item_for_inventory": T.INPUT_PANEL, + "survival_inventory_grid": T.INPUT_PANEL, + "scroll_panel_pocket": T.PANEL, + "recipe_book_scroll_panel_pocket": T.PANEL, + "survival_scroll_panel": T.PANEL, + "pocket_armor_tab_content": T.STACK_PANEL, + "pocket_armor_tab_content/label_and_renderer": T.PANEL, + "pocket_armor_tab_content/label_and_renderer/label_panel": T.PANEL, + "pocket_armor_tab_content/label_and_renderer/label_panel/armor_label": T.LABEL, + "pocket_armor_tab_content/label_and_renderer/renderer_panel": T.PANEL, + "pocket_armor_tab_content/label_and_renderer/renderer_panel/armor_renderer": T.CUSTOM, + "pocket_armor_tab_content/equipment_and_renderer": T.STACK_PANEL, + "pocket_armor_tab_content/equipment_and_renderer/equipment": T.STACK_PANEL, + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid": T.GRID, + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/head_grid_item": T.INPUT_PANEL, + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/chest_grid_item": T.INPUT_PANEL, + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/legs_grid_item": T.INPUT_PANEL, + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/feet_grid_item": T.INPUT_PANEL, + "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid": T.GRID, + "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid/offhand_grid_item": T.INPUT_PANEL, + "pocket_armor_tab_content/equipment_and_renderer/armor_panel": T.PANEL, + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player": T.PANEL, + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border": T.IMAGE, + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg": T.IMAGE, + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg/player_renderer_panel": T.PANEL, + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg/player_renderer_panel/player_renderer": T.CUSTOM, + "hotbar_panel": T.INPUT_PANEL, + "hotbar_panel/bg": T.PANEL, + "hotbar_panel/hotbar_grid": T.GRID, + "hotbar_grid_item": T.INPUT_PANEL, + "survival_panel_pocket": T.PANEL, + "survival_panel_pocket/crafting_panel": T.PANEL, + "survival_panel_pocket/crafting_arrow_down": T.IMAGE, + "survival_panel_pocket/crafting_table": T.CUSTOM, + "survival_panel_pocket/output": T.PANEL, + "survival_panel_crafting_pocket": T.PANEL, + "survival_panel_crafting_pocket/crafting_panel": T.PANEL, + "survival_panel_crafting_pocket/crafting_arrow_down": T.IMAGE, + "survival_panel_crafting_pocket/output": T.PANEL, + "inventory_screen_pocket_base": T.SCREEN, + "crafting_screen_pocket": T.SCREEN, + "inventory_screen_pocket": T.SCREEN, + "left_panel": T.PANEL, + "left_panel/left_background": T.PANEL, + "left_panel/recipe_book_tab_content": T.PANEL, + "left_panel/inventory_tab_content": T.PANEL, + "right_panel": T.INPUT_PANEL, + "right_panel/right_background": T.PANEL, + "right_panel/help_button": T.BUTTON, + "right_panel/crafting_tab_content": T.PANEL, + "right_panel/armor_tab_content": T.PANEL, + "both_panels": T.STACK_PANEL, + "both_panels/left_tab_navigation_panel_pocket": T.PANEL, + "both_panels/left_panel": T.PANEL, + "both_panels/offset_panel": T.PANEL, + "both_panels/offset_panel/center_bg": T.IMAGE, + "both_panels/right_panel": T.INPUT_PANEL, + "both_panels/right_tab_navigation_panel_pocket": T.PANEL, + "gamepad_helper_border": T.STACK_PANEL, + "gamepad_helper_border/left_gamepad_panel": T.PANEL, + "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_bumper": T.STACK_PANEL, + "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_trigger": T.STACK_PANEL, + "gamepad_helper_border/both_panels": T.STACK_PANEL, + "gamepad_helper_border/right_gamepad_panel": T.PANEL, + "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper_creative": T.STACK_PANEL, + "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper": T.STACK_PANEL, + "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_trigger": T.STACK_PANEL, + "hotbar_and_panels": T.STACK_PANEL, + "hotbar_and_panels/padding_1": T.PANEL, + "hotbar_and_panels/gamepad_helper_border": T.STACK_PANEL, + "hotbar_and_panels/hotbar_section_panel": T.INPUT_PANEL, + "hotbar_and_panels/hotbar_section_panel/hotbar": T.INPUT_PANEL, + "recipe_inventory_screen_content_pocket": T.INPUT_PANEL, + "recipe_inventory_screen_content_pocket/container_gamepad_helpers_pocket": T.STACK_PANEL, + "recipe_inventory_screen_content_pocket/toast_screen_content": T.PANEL, + "recipe_inventory_screen_content_pocket/selected_item_details_factory": T.FACTORY, + "recipe_inventory_screen_content_pocket/item_lock_notification_factory": T.FACTORY, + "recipe_inventory_screen_content_pocket/base_panel": T.PANEL, + "recipe_inventory_screen_content_pocket/base_panel/root_panel": T.INPUT_PANEL, + "recipe_inventory_screen_content_pocket/base_panel/inventory_selected_icon_button": T.BUTTON, + "recipe_inventory_screen_content_pocket/base_panel/gamepad_cursor": T.BUTTON, + "recipe_inventory_screen_content_pocket/base_panel/hold_icon": T.BUTTON, + "recipe_inventory_screen_content_pocket/base_panel/hotbar_and_panels": T.STACK_PANEL, + "recipe_inventory_screen_content_pocket/flying_item_renderer": T.CUSTOM, } export type InviteType = { - black_border: T.IMAGE - black_border_hover: T.IMAGE - platform_icon: T.IMAGE - grey_borderless_locked: T.IMAGE - checked_locked_image: T.IMAGE - unchecked_locked_image: T.IMAGE - left_arrow_image: T.IMAGE - right_arrow_image: T.IMAGE - account_link_image: T.IMAGE - panel_text: T.LABEL - loading_friends: T.LABEL - account_link_icon: T.STACK_PANEL - "account_link_icon/space_01": T.PANEL - "account_link_icon/account_link_image": T.IMAGE - "account_link_icon/space_03": T.PANEL - gamerpic: T.CUSTOM - third_party_profile_pic: T.IMAGE - gamerpic_panel: T.PANEL - "gamerpic_panel/black_border": T.IMAGE - "gamerpic_panel/gamerpic": T.CUSTOM - "gamerpic_panel/online_indication_positioner": T.PANEL - "gamerpic_panel/online_indication_positioner/indicator_images": T.PANEL - third_party_profile_pic_panel: T.PANEL - "third_party_profile_pic_panel/black_border": T.IMAGE - "third_party_profile_pic_panel/third_party_profile_pic": T.IMAGE - platform_icon_panel: T.PANEL - "platform_icon_panel/platform_icon": T.IMAGE - status_image: T.IMAGE - online_image: T.IMAGE - offline_image: T.IMAGE - online_indicator: T.PANEL - "online_indicator/online_image": T.IMAGE - checkbox_panel: T.PANEL - checked_panel: T.PANEL - "checked_panel/checked_image": T.IMAGE - unchecked_panel: T.PANEL - "unchecked_panel/unchecked_image": T.IMAGE - checked_locked_panel: T.PANEL - "checked_locked_panel/checked_image": T.IMAGE - unchecked_locked_panel: T.PANEL - "unchecked_locked_panel/unchecked_image": T.IMAGE - checked_hover_panel: T.PANEL - "checked_hover_panel/checked_hover_image": T.IMAGE - unchecked_hover_panel: T.PANEL - "unchecked_hover_panel/unchecked_hover_image": T.IMAGE - friend_label: T.LABEL - friend_grid_xbl_gamertag: T.LABEL - friend_grid_current_game_label: T.LABEL - friend_grid_third_party_tag: T.LABEL - friend_background: T.IMAGE - friend_background_hover: T.IMAGE - friend_background_borderless: T.IMAGE - hover_friend_button: T.PANEL - "hover_friend_button/friend_button_layout": T.UNKNOWN - "hover_friend_button/hover_text": T.CUSTOM - linked_hover_friend_button: T.PANEL - "linked_hover_friend_button/hover_text": T.CUSTOM - msa_friend_button_layout: T.STACK_PANEL - "msa_friend_button_layout/spacer01": T.PANEL - "msa_friend_button_layout/platform_icon_spacer": T.PANEL - "msa_friend_button_layout/spacer_02": T.PANEL - "msa_friend_button_layout/friend_grid_label_layout": T.STACK_PANEL - "msa_friend_button_layout/friend_grid_label_layout/spacer_01": T.PANEL - "msa_friend_button_layout/friend_grid_label_layout/friend_grid_xbl_gamertag": T.LABEL - "msa_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label": T.LABEL - platform_friend_button_layout: T.STACK_PANEL - "platform_friend_button_layout/spacer01": T.PANEL - "platform_friend_button_layout/platform_icon_spacer": T.PANEL - "platform_friend_button_layout/third_party_pic_panel_positioner": T.PANEL - "platform_friend_button_layout/third_party_pic_panel_positioner/pp": T.PANEL - "platform_friend_button_layout/spacer_02": T.PANEL - "platform_friend_button_layout/friend_grid_label_layout": T.STACK_PANEL - "platform_friend_button_layout/friend_grid_label_layout/spacer_01": T.PANEL - "platform_friend_button_layout/friend_grid_label_layout/friend_grid_third_party_tag": T.LABEL - "platform_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label": T.LABEL - "platform_friend_button_layout/platform_icon_positioner": T.PANEL - "platform_friend_button_layout/platform_icon_positioner/platform_icon": T.PANEL - "platform_friend_button_layout/online_indication_positioner": T.PANEL - "platform_friend_button_layout/online_indication_positioner/indicator_images": T.PANEL - linked_friend_button_layout: T.STACK_PANEL - "linked_friend_button_layout/spacer01": T.PANEL - "linked_friend_button_layout/platform_icon_positioner": T.PANEL - "linked_friend_button_layout/platform_icon_positioner/platform_icon": T.PANEL - "linked_friend_button_layout/spacer02": T.PANEL - "linked_friend_button_layout/platform_profile_pictures": T.STACK_PANEL - "linked_friend_button_layout/platform_profile_pictures/spacer_01": T.PANEL - "linked_friend_button_layout/platform_profile_pictures/pp2": T.PANEL - "linked_friend_button_layout/platform_profile_pictures/account_link": T.STACK_PANEL - "linked_friend_button_layout/platform_profile_pictures/pp1": T.PANEL - "linked_friend_button_layout/platform_profile_pictures/spacer_03": T.PANEL - "linked_friend_button_layout/spacer03": T.PANEL - "linked_friend_button_layout/platform_profile_names": T.STACK_PANEL - "linked_friend_button_layout/platform_profile_names/spacer_01": T.PANEL - "linked_friend_button_layout/platform_profile_names/friend_grid_third_party_tag": T.LABEL - "linked_friend_button_layout/platform_profile_names/spacer_02": T.PANEL - "linked_friend_button_layout/platform_profile_names/friend_grid_xbl_gamertag": T.LABEL - "linked_friend_button_layout/platform_profile_names/friend_grid_current_game_label": T.LABEL - "linked_friend_button_layout/online_indication_positioner": T.PANEL - "linked_friend_button_layout/online_indication_positioner/indicator_images": T.PANEL - template_msa_friend_button_layout: T.PANEL - "template_msa_friend_button_layout/friend_background": T.IMAGE - "template_msa_friend_button_layout/friend_button_layout": T.STACK_PANEL - "template_msa_friend_button_layout/unchecked": T.UNKNOWN - template_platform_friend_button_layout: T.PANEL - "template_platform_friend_button_layout/friend_background": T.IMAGE - "template_platform_friend_button_layout/friend_button_layout": T.STACK_PANEL - "template_platform_friend_button_layout/unchecked": T.UNKNOWN - template_linked_friend_button_layout: T.PANEL - "template_linked_friend_button_layout/friend_background": T.IMAGE - "template_linked_friend_button_layout/horizontal_spacer_panel": T.STACK_PANEL - "template_linked_friend_button_layout/horizontal_spacer_panel/unchecked_locked": T.UNKNOWN - "template_linked_friend_button_layout/horizontal_spacer_panel/friend_button_layout": T.STACK_PANEL - msa_friend_button: T.TOGGLE - "msa_friend_button/checked": T.PANEL - "msa_friend_button/unchecked": T.PANEL - "msa_friend_button/checked_hover": T.PANEL - "msa_friend_button/unchecked_hover": T.PANEL - "msa_friend_button/checked_locked": T.PANEL - "msa_friend_button/unchecked_locked": T.PANEL - "msa_friend_button/checked_locked_hover": T.PANEL - "msa_friend_button/unchecked_locked_hover": T.PANEL - platform_friend_button: T.TOGGLE - "platform_friend_button/checked": T.PANEL - "platform_friend_button/unchecked": T.PANEL - "platform_friend_button/checked_hover": T.PANEL - "platform_friend_button/unchecked_hover": T.PANEL - "platform_friend_button/checked_locked": T.PANEL - "platform_friend_button/unchecked_locked": T.PANEL - "platform_friend_button/checked_locked_hover": T.PANEL - "platform_friend_button/unchecked_locked_hover": T.PANEL - linked_friend_button: T.TOGGLE - "linked_friend_button/checked": T.PANEL - "linked_friend_button/unchecked": T.PANEL - "linked_friend_button/checked_hover": T.PANEL - "linked_friend_button/unchecked_hover": T.PANEL - "linked_friend_button/checked_locked": T.PANEL - "linked_friend_button/unchecked_locked": T.PANEL - "linked_friend_button/checked_locked_hover": T.PANEL - "linked_friend_button/unchecked_locked_hover": T.PANEL - msa_friend_grid_item_template: T.STACK_PANEL - "msa_friend_grid_item_template/friend_button_Panel": T.PANEL - "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner": T.PANEL - "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner/pp": T.PANEL - "msa_friend_grid_item_template/friend_button_Panel/friend_button": T.TOGGLE - "msa_friend_grid_item_template/profile_button_pannel": T.PANEL - "msa_friend_grid_item_template/profile_button_pannel/view_profile_button": T.BUTTON - "msa_friend_grid_item_template/spacer_03": T.PANEL - platform_friend_grid_item_template: T.PANEL - "platform_friend_grid_item_template/friend_button": T.TOGGLE - friend_linked_account_grid_item_template: T.PANEL - "friend_linked_account_grid_item_template/friend_button": T.TOGGLE - online_xbox_live_friend_grid_item: T.STACK_PANEL - offline_xbox_live_friend_grid_item: T.STACK_PANEL - online_linked_account_friend_grid_item: T.PANEL - offline_linked_account_friend_grid_item: T.PANEL - online_platform_friend_grid_item: T.PANEL - offline_platform_friend_grid_item: T.PANEL - online_xbox_live_friend_list_grid: T.GRID - offline_xbox_live_friend_list_grid: T.GRID - online_platform_friend_list_grid: T.GRID - offline_platform_friend_list_grid: T.GRID - online_linked_account_friend_list_grid: T.GRID - offline_linked_account_friend_list_grid: T.GRID - friends_pagination_controls: T.STACK_PANEL - "friends_pagination_controls/previous_button": T.BUTTON - "friends_pagination_controls/center_panel": T.PANEL - "friends_pagination_controls/center_panel/page_counter": T.LABEL - "friends_pagination_controls/next_button": T.BUTTON - friends_category: T.STACK_PANEL - "friends_category/friends_grid": T.UNKNOWN - "friends_category/pagination_stack_panel": T.STACK_PANEL - "friends_category/pagination_stack_panel/padding_1": T.PANEL - "friends_category/pagination_stack_panel/pagination_controls": T.STACK_PANEL - "friends_category/pagination_stack_panel/padding_2": T.PANEL - "friends_category/pagination_stack_panel/divider": T.PANEL - "friends_category/padding": T.PANEL - frame_label: T.LABEL - friend_panel: T.PANEL - scrolling_content_stack: T.STACK_PANEL - "scrolling_content_stack/message": T.PANEL - "scrolling_content_stack/message/frame_label": T.LABEL - "scrolling_content_stack/online_platform": T.PANEL - "scrolling_content_stack/online_platform/frame_label": T.LABEL - "scrolling_content_stack/vertical_padding_0": T.PANEL - "scrolling_content_stack/online_platform_friend_list_category": T.STACK_PANEL - "scrolling_content_stack/crossplatform_disabled_panel": T.IMAGE - "scrolling_content_stack/crossplatform_disabled_panel/disable_text": T.LABEL - "scrolling_content_stack/crossplatform_disable_spacer": T.PANEL - "scrolling_content_stack/online_cross_platform": T.PANEL - "scrolling_content_stack/online_cross_platform/frame_label": T.LABEL - "scrolling_content_stack/vertical_padding_1": T.PANEL - "scrolling_content_stack/online_linked_account_friend_list_category": T.STACK_PANEL - "scrolling_content_stack/online_xbox_live_friend_list_category": T.STACK_PANEL - "scrolling_content_stack/offline_platform": T.PANEL - "scrolling_content_stack/offline_platform/frame_label": T.LABEL - "scrolling_content_stack/vertical_padding_2": T.PANEL - "scrolling_content_stack/offline_platform_friend_list_category": T.STACK_PANEL - "scrolling_content_stack/no_platform_friends": T.PANEL - "scrolling_content_stack/no_platform_friends/no_friends_tts_wrapper": T.PANEL - "scrolling_content_stack/offline_cross_platform": T.PANEL - "scrolling_content_stack/offline_cross_platform/frame_label": T.LABEL - "scrolling_content_stack/vertical_padding_3": T.PANEL - "scrolling_content_stack/offline_linked_account_friend_list_category": T.STACK_PANEL - "scrolling_content_stack/offline_xbox_live_friend_list_category": T.STACK_PANEL - "scrolling_content_stack/no_xbox_live_friends": T.PANEL - "scrolling_content_stack/no_xbox_live_friends/no_friends_tts_wrapper": T.PANEL - progress_bar_and_scrolling_content_panel: T.PANEL - "progress_bar_and_scrolling_content_panel/progress_loading_bars": T.IMAGE - "progress_bar_and_scrolling_content_panel/invite_scrolling_area": T.STACK_PANEL - no_xbox_live_friends_frame_label: T.LABEL - no_platform_friends_frame_label: T.LABEL - horizontal_invite_panel: T.PANEL - vertical_invite_panel: T.PANEL - scrolling_area: T.PANEL - invite_button_content: T.PANEL - "invite_button_content/gameplay_helper": T.UNKNOWN - "invite_button_content/button_label": T.LABEL - invite_button_content_hover: T.PANEL - invite_button_content_pressed: T.PANEL - invite_button_content_locked: T.PANEL - add_friend_button: T.BUTTON - profile_button_content: T.PANEL - "profile_button_content/button_label": T.LABEL - profile_button_content_hover: T.PANEL - profile_button_content_pressed: T.PANEL - profile_button_content_locked: T.PANEL - add_member_button: T.BUTTON - send_button: T.BUTTON - profile_button: T.BUTTON - horizontal_button_stack_panel: T.STACK_PANEL - "horizontal_button_stack_panel/add_friend_button": T.BUTTON - "horizontal_button_stack_panel/add_member_button": T.BUTTON - "horizontal_button_stack_panel/padding": T.PANEL - "horizontal_button_stack_panel/send_button": T.BUTTON - vertical_buttons_top_panel: T.PANEL - "vertical_buttons_top_panel/add_friend_button": T.BUTTON - "vertical_buttons_top_panel/add_member_button": T.BUTTON - vertical_buttons_bottom_panel: T.PANEL - "vertical_buttons_bottom_panel/send_button": T.BUTTON - gamepad_helpers: T.PANEL - "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL - invite_screen: T.SCREEN - invite_screen_content: T.PANEL - "invite_screen_content/gamepad_helpers": T.PANEL - "invite_screen_content/invite_panel": T.UNKNOWN + "black_border": T.IMAGE, + "black_border_hover": T.IMAGE, + "platform_icon": T.IMAGE, + "grey_borderless_locked": T.IMAGE, + "checked_locked_image": T.IMAGE, + "unchecked_locked_image": T.IMAGE, + "left_arrow_image": T.IMAGE, + "right_arrow_image": T.IMAGE, + "account_link_image": T.IMAGE, + "panel_text": T.LABEL, + "loading_friends": T.LABEL, + "account_link_icon": T.STACK_PANEL, + "account_link_icon/space_01": T.PANEL, + "account_link_icon/account_link_image": T.IMAGE, + "account_link_icon/space_03": T.PANEL, + "gamerpic": T.CUSTOM, + "third_party_profile_pic": T.IMAGE, + "gamerpic_panel": T.PANEL, + "gamerpic_panel/black_border": T.IMAGE, + "gamerpic_panel/gamerpic": T.CUSTOM, + "gamerpic_panel/online_indication_positioner": T.PANEL, + "gamerpic_panel/online_indication_positioner/indicator_images": T.PANEL, + "third_party_profile_pic_panel": T.PANEL, + "third_party_profile_pic_panel/black_border": T.IMAGE, + "third_party_profile_pic_panel/third_party_profile_pic": T.IMAGE, + "platform_icon_panel": T.PANEL, + "platform_icon_panel/platform_icon": T.IMAGE, + "status_image": T.IMAGE, + "online_image": T.IMAGE, + "offline_image": T.IMAGE, + "online_indicator": T.PANEL, + "online_indicator/online_image": T.IMAGE, + "checkbox_panel": T.PANEL, + "checked_panel": T.PANEL, + "checked_panel/checked_image": T.IMAGE, + "unchecked_panel": T.PANEL, + "unchecked_panel/unchecked_image": T.IMAGE, + "checked_locked_panel": T.PANEL, + "checked_locked_panel/checked_image": T.IMAGE, + "unchecked_locked_panel": T.PANEL, + "unchecked_locked_panel/unchecked_image": T.IMAGE, + "checked_hover_panel": T.PANEL, + "checked_hover_panel/checked_hover_image": T.IMAGE, + "unchecked_hover_panel": T.PANEL, + "unchecked_hover_panel/unchecked_hover_image": T.IMAGE, + "friend_label": T.LABEL, + "friend_grid_xbl_gamertag": T.LABEL, + "friend_grid_current_game_label": T.LABEL, + "friend_grid_third_party_tag": T.LABEL, + "friend_background": T.IMAGE, + "friend_background_hover": T.IMAGE, + "friend_background_borderless": T.IMAGE, + "hover_friend_button": T.PANEL, + "hover_friend_button/friend_button_layout": T.UNKNOWN, + "hover_friend_button/hover_text": T.CUSTOM, + "linked_hover_friend_button": T.PANEL, + "linked_hover_friend_button/hover_text": T.CUSTOM, + "msa_friend_button_layout": T.STACK_PANEL, + "msa_friend_button_layout/spacer01": T.PANEL, + "msa_friend_button_layout/platform_icon_spacer": T.PANEL, + "msa_friend_button_layout/spacer_02": T.PANEL, + "msa_friend_button_layout/friend_grid_label_layout": T.STACK_PANEL, + "msa_friend_button_layout/friend_grid_label_layout/spacer_01": T.PANEL, + "msa_friend_button_layout/friend_grid_label_layout/friend_grid_xbl_gamertag": T.LABEL, + "msa_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label": T.LABEL, + "platform_friend_button_layout": T.STACK_PANEL, + "platform_friend_button_layout/spacer01": T.PANEL, + "platform_friend_button_layout/platform_icon_spacer": T.PANEL, + "platform_friend_button_layout/third_party_pic_panel_positioner": T.PANEL, + "platform_friend_button_layout/third_party_pic_panel_positioner/pp": T.PANEL, + "platform_friend_button_layout/spacer_02": T.PANEL, + "platform_friend_button_layout/friend_grid_label_layout": T.STACK_PANEL, + "platform_friend_button_layout/friend_grid_label_layout/spacer_01": T.PANEL, + "platform_friend_button_layout/friend_grid_label_layout/friend_grid_third_party_tag": T.LABEL, + "platform_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label": T.LABEL, + "platform_friend_button_layout/platform_icon_positioner": T.PANEL, + "platform_friend_button_layout/platform_icon_positioner/platform_icon": T.PANEL, + "platform_friend_button_layout/online_indication_positioner": T.PANEL, + "platform_friend_button_layout/online_indication_positioner/indicator_images": T.PANEL, + "linked_friend_button_layout": T.STACK_PANEL, + "linked_friend_button_layout/spacer01": T.PANEL, + "linked_friend_button_layout/platform_icon_positioner": T.PANEL, + "linked_friend_button_layout/platform_icon_positioner/platform_icon": T.PANEL, + "linked_friend_button_layout/spacer02": T.PANEL, + "linked_friend_button_layout/platform_profile_pictures": T.STACK_PANEL, + "linked_friend_button_layout/platform_profile_pictures/spacer_01": T.PANEL, + "linked_friend_button_layout/platform_profile_pictures/pp2": T.PANEL, + "linked_friend_button_layout/platform_profile_pictures/account_link": T.STACK_PANEL, + "linked_friend_button_layout/platform_profile_pictures/pp1": T.PANEL, + "linked_friend_button_layout/platform_profile_pictures/spacer_03": T.PANEL, + "linked_friend_button_layout/spacer03": T.PANEL, + "linked_friend_button_layout/platform_profile_names": T.STACK_PANEL, + "linked_friend_button_layout/platform_profile_names/spacer_01": T.PANEL, + "linked_friend_button_layout/platform_profile_names/friend_grid_third_party_tag": T.LABEL, + "linked_friend_button_layout/platform_profile_names/spacer_02": T.PANEL, + "linked_friend_button_layout/platform_profile_names/friend_grid_xbl_gamertag": T.LABEL, + "linked_friend_button_layout/platform_profile_names/friend_grid_current_game_label": T.LABEL, + "linked_friend_button_layout/online_indication_positioner": T.PANEL, + "linked_friend_button_layout/online_indication_positioner/indicator_images": T.PANEL, + "template_msa_friend_button_layout": T.PANEL, + "template_msa_friend_button_layout/friend_background": T.IMAGE, + "template_msa_friend_button_layout/friend_button_layout": T.STACK_PANEL, + "template_msa_friend_button_layout/unchecked": T.UNKNOWN, + "template_platform_friend_button_layout": T.PANEL, + "template_platform_friend_button_layout/friend_background": T.IMAGE, + "template_platform_friend_button_layout/friend_button_layout": T.STACK_PANEL, + "template_platform_friend_button_layout/unchecked": T.UNKNOWN, + "template_linked_friend_button_layout": T.PANEL, + "template_linked_friend_button_layout/friend_background": T.IMAGE, + "template_linked_friend_button_layout/horizontal_spacer_panel": T.STACK_PANEL, + "template_linked_friend_button_layout/horizontal_spacer_panel/unchecked_locked": T.UNKNOWN, + "template_linked_friend_button_layout/horizontal_spacer_panel/friend_button_layout": T.STACK_PANEL, + "msa_friend_button": T.TOGGLE, + "msa_friend_button/checked": T.PANEL, + "msa_friend_button/unchecked": T.PANEL, + "msa_friend_button/checked_hover": T.PANEL, + "msa_friend_button/unchecked_hover": T.PANEL, + "msa_friend_button/checked_locked": T.PANEL, + "msa_friend_button/unchecked_locked": T.PANEL, + "msa_friend_button/checked_locked_hover": T.PANEL, + "msa_friend_button/unchecked_locked_hover": T.PANEL, + "platform_friend_button": T.TOGGLE, + "platform_friend_button/checked": T.PANEL, + "platform_friend_button/unchecked": T.PANEL, + "platform_friend_button/checked_hover": T.PANEL, + "platform_friend_button/unchecked_hover": T.PANEL, + "platform_friend_button/checked_locked": T.PANEL, + "platform_friend_button/unchecked_locked": T.PANEL, + "platform_friend_button/checked_locked_hover": T.PANEL, + "platform_friend_button/unchecked_locked_hover": T.PANEL, + "linked_friend_button": T.TOGGLE, + "linked_friend_button/checked": T.PANEL, + "linked_friend_button/unchecked": T.PANEL, + "linked_friend_button/checked_hover": T.PANEL, + "linked_friend_button/unchecked_hover": T.PANEL, + "linked_friend_button/checked_locked": T.PANEL, + "linked_friend_button/unchecked_locked": T.PANEL, + "linked_friend_button/checked_locked_hover": T.PANEL, + "linked_friend_button/unchecked_locked_hover": T.PANEL, + "msa_friend_grid_item_template": T.STACK_PANEL, + "msa_friend_grid_item_template/friend_button_Panel": T.PANEL, + "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner": T.PANEL, + "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner/pp": T.PANEL, + "msa_friend_grid_item_template/friend_button_Panel/friend_button": T.TOGGLE, + "msa_friend_grid_item_template/profile_button_pannel": T.PANEL, + "msa_friend_grid_item_template/profile_button_pannel/view_profile_button": T.BUTTON, + "msa_friend_grid_item_template/spacer_03": T.PANEL, + "platform_friend_grid_item_template": T.PANEL, + "platform_friend_grid_item_template/friend_button": T.TOGGLE, + "friend_linked_account_grid_item_template": T.PANEL, + "friend_linked_account_grid_item_template/friend_button": T.TOGGLE, + "online_xbox_live_friend_grid_item": T.STACK_PANEL, + "offline_xbox_live_friend_grid_item": T.STACK_PANEL, + "online_linked_account_friend_grid_item": T.PANEL, + "offline_linked_account_friend_grid_item": T.PANEL, + "online_platform_friend_grid_item": T.PANEL, + "offline_platform_friend_grid_item": T.PANEL, + "online_xbox_live_friend_list_grid": T.GRID, + "offline_xbox_live_friend_list_grid": T.GRID, + "online_platform_friend_list_grid": T.GRID, + "offline_platform_friend_list_grid": T.GRID, + "online_linked_account_friend_list_grid": T.GRID, + "offline_linked_account_friend_list_grid": T.GRID, + "friends_pagination_controls": T.STACK_PANEL, + "friends_pagination_controls/previous_button": T.BUTTON, + "friends_pagination_controls/center_panel": T.PANEL, + "friends_pagination_controls/center_panel/page_counter": T.LABEL, + "friends_pagination_controls/next_button": T.BUTTON, + "friends_category": T.STACK_PANEL, + "friends_category/friends_grid": T.UNKNOWN, + "friends_category/pagination_stack_panel": T.STACK_PANEL, + "friends_category/pagination_stack_panel/padding_1": T.PANEL, + "friends_category/pagination_stack_panel/pagination_controls": T.STACK_PANEL, + "friends_category/pagination_stack_panel/padding_2": T.PANEL, + "friends_category/pagination_stack_panel/divider": T.PANEL, + "friends_category/padding": T.PANEL, + "frame_label": T.LABEL, + "friend_panel": T.PANEL, + "scrolling_content_stack": T.STACK_PANEL, + "scrolling_content_stack/message": T.PANEL, + "scrolling_content_stack/message/frame_label": T.LABEL, + "scrolling_content_stack/online_platform": T.PANEL, + "scrolling_content_stack/online_platform/frame_label": T.LABEL, + "scrolling_content_stack/vertical_padding_0": T.PANEL, + "scrolling_content_stack/online_platform_friend_list_category": T.STACK_PANEL, + "scrolling_content_stack/crossplatform_disabled_panel": T.IMAGE, + "scrolling_content_stack/crossplatform_disabled_panel/disable_text": T.LABEL, + "scrolling_content_stack/crossplatform_disable_spacer": T.PANEL, + "scrolling_content_stack/online_cross_platform": T.PANEL, + "scrolling_content_stack/online_cross_platform/frame_label": T.LABEL, + "scrolling_content_stack/vertical_padding_1": T.PANEL, + "scrolling_content_stack/online_linked_account_friend_list_category": T.STACK_PANEL, + "scrolling_content_stack/online_xbox_live_friend_list_category": T.STACK_PANEL, + "scrolling_content_stack/offline_platform": T.PANEL, + "scrolling_content_stack/offline_platform/frame_label": T.LABEL, + "scrolling_content_stack/vertical_padding_2": T.PANEL, + "scrolling_content_stack/offline_platform_friend_list_category": T.STACK_PANEL, + "scrolling_content_stack/no_platform_friends": T.PANEL, + "scrolling_content_stack/no_platform_friends/no_friends_tts_wrapper": T.PANEL, + "scrolling_content_stack/offline_cross_platform": T.PANEL, + "scrolling_content_stack/offline_cross_platform/frame_label": T.LABEL, + "scrolling_content_stack/vertical_padding_3": T.PANEL, + "scrolling_content_stack/offline_linked_account_friend_list_category": T.STACK_PANEL, + "scrolling_content_stack/offline_xbox_live_friend_list_category": T.STACK_PANEL, + "scrolling_content_stack/no_xbox_live_friends": T.PANEL, + "scrolling_content_stack/no_xbox_live_friends/no_friends_tts_wrapper": T.PANEL, + "progress_bar_and_scrolling_content_panel": T.PANEL, + "progress_bar_and_scrolling_content_panel/progress_loading_bars": T.IMAGE, + "progress_bar_and_scrolling_content_panel/invite_scrolling_area": T.STACK_PANEL, + "no_xbox_live_friends_frame_label": T.LABEL, + "no_platform_friends_frame_label": T.LABEL, + "horizontal_invite_panel": T.PANEL, + "vertical_invite_panel": T.PANEL, + "scrolling_area": T.PANEL, + "invite_button_content": T.PANEL, + "invite_button_content/gameplay_helper": T.UNKNOWN, + "invite_button_content/button_label": T.LABEL, + "invite_button_content_hover": T.PANEL, + "invite_button_content_pressed": T.PANEL, + "invite_button_content_locked": T.PANEL, + "add_friend_button": T.BUTTON, + "profile_button_content": T.PANEL, + "profile_button_content/button_label": T.LABEL, + "profile_button_content_hover": T.PANEL, + "profile_button_content_pressed": T.PANEL, + "profile_button_content_locked": T.PANEL, + "add_member_button": T.BUTTON, + "send_button": T.BUTTON, + "profile_button": T.BUTTON, + "horizontal_button_stack_panel": T.STACK_PANEL, + "horizontal_button_stack_panel/add_friend_button": T.BUTTON, + "horizontal_button_stack_panel/add_member_button": T.BUTTON, + "horizontal_button_stack_panel/padding": T.PANEL, + "horizontal_button_stack_panel/send_button": T.BUTTON, + "vertical_buttons_top_panel": T.PANEL, + "vertical_buttons_top_panel/add_friend_button": T.BUTTON, + "vertical_buttons_top_panel/add_member_button": T.BUTTON, + "vertical_buttons_bottom_panel": T.PANEL, + "vertical_buttons_bottom_panel/send_button": T.BUTTON, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL, + "invite_screen": T.SCREEN, + "invite_screen_content": T.PANEL, + "invite_screen_content/gamepad_helpers": T.PANEL, + "invite_screen_content/invite_panel": T.UNKNOWN, } export type JigsawEditorType = { - horizontal_buffer: T.PANEL - vertical_buffer: T.PANEL - common_text_label: T.LABEL - text_edit_box: T.EDIT_BOX - help_icon: T.IMAGE - toggle_with_label: T.STACK_PANEL - "toggle_with_label/toggle": T.TOGGLE - "toggle_with_label/toggle_label_padding": T.PANEL - "toggle_with_label/toggle_label_wrapper": T.PANEL - "toggle_with_label/toggle_label_wrapper/toggle_label": T.LABEL - "toggle_with_label/toggle_label_wrapper/toggle_label_disabled": T.LABEL - data_item_title_and_edit: T.STACK_PANEL - "data_item_title_and_edit/data_title": T.LABEL - "data_item_title_and_edit/data_text_edit": T.EDIT_BOX - data_item_title_and_edit_fill: T.STACK_PANEL - data_item_title_and_toggle: T.STACK_PANEL - "data_item_title_and_toggle/data_title": T.LABEL - "data_item_title_and_toggle/toggle": T.STACK_PANEL - exit_buttons: T.STACK_PANEL - "exit_buttons/done_button": T.BUTTON - "exit_buttons/buffer": T.PANEL - "exit_buttons/help_button": T.BUTTON - scrolling_panel_wrapper: T.IMAGE - "scrolling_panel_wrapper/scrolling_panel": T.PANEL - scrolling_panel: T.PANEL - scroll_panel_content: T.STACK_PANEL - "scroll_panel_content/target_pool_title_and_edit": T.STACK_PANEL - "scroll_panel_content/buffer_1": T.PANEL - "scroll_panel_content/name_title_and_edit": T.STACK_PANEL - "scroll_panel_content/buffer_2": T.PANEL - "scroll_panel_content/target_title_and_edit": T.STACK_PANEL - "scroll_panel_content/buffer_3": T.PANEL - "scroll_panel_content/final_block_title_and_edit": T.STACK_PANEL - "scroll_panel_content/buffer_4": T.PANEL - "scroll_panel_content/selection_and_placement_priority": T.STACK_PANEL - "scroll_panel_content/buffer_5": T.PANEL - "scroll_panel_content/joint_type_title_and_toggle": T.STACK_PANEL - "scroll_panel_content/buffer_6": T.PANEL - selection_and_placement_priority: T.STACK_PANEL - "selection_and_placement_priority/selection_priority_title_and_edit": T.STACK_PANEL - "selection_and_placement_priority/buffer_1": T.PANEL - "selection_and_placement_priority/placement_priority_title_and_edit": T.STACK_PANEL - button_panel_wrapper: T.IMAGE - "button_panel_wrapper/exit_buttons": T.STACK_PANEL - jigsaw_editor_panel: T.STACK_PANEL - "jigsaw_editor_panel/scrolling_panel": T.IMAGE - "jigsaw_editor_panel/button_wrapper": T.PANEL - "jigsaw_editor_panel/button_wrapper/buttons": T.IMAGE - jigsaw_editor_content: T.PANEL - "jigsaw_editor_content/background_panel": T.STACK_PANEL - "jigsaw_editor_content/title": T.LABEL - "jigsaw_editor_content/jigsaw_editor_panel": T.STACK_PANEL - jigsaw_editor_screen: T.SCREEN + "horizontal_buffer": T.PANEL, + "vertical_buffer": T.PANEL, + "common_text_label": T.LABEL, + "text_edit_box": T.EDIT_BOX, + "help_icon": T.IMAGE, + "toggle_with_label": T.STACK_PANEL, + "toggle_with_label/toggle": T.TOGGLE, + "toggle_with_label/toggle_label_padding": T.PANEL, + "toggle_with_label/toggle_label_wrapper": T.PANEL, + "toggle_with_label/toggle_label_wrapper/toggle_label": T.LABEL, + "toggle_with_label/toggle_label_wrapper/toggle_label_disabled": T.LABEL, + "data_item_title_and_edit": T.STACK_PANEL, + "data_item_title_and_edit/data_title": T.LABEL, + "data_item_title_and_edit/data_text_edit": T.EDIT_BOX, + "data_item_title_and_edit_fill": T.STACK_PANEL, + "data_item_title_and_toggle": T.STACK_PANEL, + "data_item_title_and_toggle/data_title": T.LABEL, + "data_item_title_and_toggle/toggle": T.STACK_PANEL, + "exit_buttons": T.STACK_PANEL, + "exit_buttons/done_button": T.BUTTON, + "exit_buttons/buffer": T.PANEL, + "exit_buttons/help_button": T.BUTTON, + "scrolling_panel_wrapper": T.IMAGE, + "scrolling_panel_wrapper/scrolling_panel": T.PANEL, + "scrolling_panel": T.PANEL, + "scroll_panel_content": T.STACK_PANEL, + "scroll_panel_content/target_pool_title_and_edit": T.STACK_PANEL, + "scroll_panel_content/buffer_1": T.PANEL, + "scroll_panel_content/name_title_and_edit": T.STACK_PANEL, + "scroll_panel_content/buffer_2": T.PANEL, + "scroll_panel_content/target_title_and_edit": T.STACK_PANEL, + "scroll_panel_content/buffer_3": T.PANEL, + "scroll_panel_content/final_block_title_and_edit": T.STACK_PANEL, + "scroll_panel_content/buffer_4": T.PANEL, + "scroll_panel_content/selection_and_placement_priority": T.STACK_PANEL, + "scroll_panel_content/buffer_5": T.PANEL, + "scroll_panel_content/joint_type_title_and_toggle": T.STACK_PANEL, + "scroll_panel_content/buffer_6": T.PANEL, + "selection_and_placement_priority": T.STACK_PANEL, + "selection_and_placement_priority/selection_priority_title_and_edit": T.STACK_PANEL, + "selection_and_placement_priority/buffer_1": T.PANEL, + "selection_and_placement_priority/placement_priority_title_and_edit": T.STACK_PANEL, + "button_panel_wrapper": T.IMAGE, + "button_panel_wrapper/exit_buttons": T.STACK_PANEL, + "jigsaw_editor_panel": T.STACK_PANEL, + "jigsaw_editor_panel/scrolling_panel": T.IMAGE, + "jigsaw_editor_panel/button_wrapper": T.PANEL, + "jigsaw_editor_panel/button_wrapper/buttons": T.IMAGE, + "jigsaw_editor_content": T.PANEL, + "jigsaw_editor_content/background_panel": T.STACK_PANEL, + "jigsaw_editor_content/title": T.LABEL, + "jigsaw_editor_content/jigsaw_editor_panel": T.STACK_PANEL, + "jigsaw_editor_screen": T.SCREEN, } export type LateJoinType = { - animation_panel: T.PANEL - "animation_panel/stacked_column": T.STACK_PANEL - "animation_panel/stacked_column/waiting_animating_text": T.LABEL - gamepad_helpers: T.STACK_PANEL - "gamepad_helpers/gamepad_helper_b_and_padding": T.PANEL - "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b": T.STACK_PANEL - late_join_pregame_screen: T.SCREEN - late_join_screen_content: T.PANEL - "late_join_screen_content/animation_panel": T.PANEL - "late_join_screen_content/gamepad_helpers": T.STACK_PANEL + "animation_panel": T.PANEL, + "animation_panel/stacked_column": T.STACK_PANEL, + "animation_panel/stacked_column/waiting_animating_text": T.LABEL, + "gamepad_helpers": T.STACK_PANEL, + "gamepad_helpers/gamepad_helper_b_and_padding": T.PANEL, + "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b": T.STACK_PANEL, + "late_join_pregame_screen": T.SCREEN, + "late_join_screen_content": T.PANEL, + "late_join_screen_content/animation_panel": T.PANEL, + "late_join_screen_content/gamepad_helpers": T.STACK_PANEL, } export type LibraryModalType = { - modal_button: T.BUTTON - modal_text_content: T.LABEL - modal_ok: T.BUTTON - modal_cancel: T.BUTTON - in_game_prompt: T.PANEL - fetch_error: T.PANEL - content: T.PANEL - "content/fetch": T.PANEL - "content/ingame": T.PANEL - content_wrapper: T.INPUT_PANEL - "content_wrapper/content": T.PANEL - background: T.IMAGE - library_modal_screen: T.SCREEN - text_panel: T.STACK_PANEL - edu_icon: T.IMAGE - continue_button: T.BUTTON - paragraph: T.LABEL - welcome_text_panel: T.STACK_PANEL - "welcome_text_panel/padding_1": T.PANEL - "welcome_text_panel/paragraph_1_wrapper": T.STACK_PANEL - "welcome_text_panel/paragraph_1_wrapper/edu_icon": T.IMAGE - "welcome_text_panel/paragraph_1_wrapper/stack_buffer1": T.PANEL - "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel": T.PANEL - "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel/paragraph_1": T.LABEL - "welcome_text_panel/padding_2": T.PANEL - "welcome_text_panel/paragraph_two": T.LABEL - "welcome_text_panel/padding_3": T.PANEL - "welcome_text_panel/paragraph_three": T.LABEL - welcome_scrolling_panel: T.PANEL - welcome_panel_content: T.PANEL - "welcome_panel_content/background_panel": T.PANEL - "welcome_panel_content/welcome_scrolling_panel": T.PANEL - "welcome_panel_content/continue_button": T.BUTTON - welcome_panel: T.INPUT_PANEL - "welcome_panel/welcome": T.PANEL + "modal_button": T.BUTTON, + "modal_text_content": T.LABEL, + "modal_ok": T.BUTTON, + "modal_cancel": T.BUTTON, + "in_game_prompt": T.PANEL, + "fetch_error": T.PANEL, + "content": T.PANEL, + "content/fetch": T.PANEL, + "content/ingame": T.PANEL, + "content_wrapper": T.INPUT_PANEL, + "content_wrapper/content": T.PANEL, + "background": T.IMAGE, + "library_modal_screen": T.SCREEN, + "text_panel": T.STACK_PANEL, + "edu_icon": T.IMAGE, + "continue_button": T.BUTTON, + "paragraph": T.LABEL, + "welcome_text_panel": T.STACK_PANEL, + "welcome_text_panel/padding_1": T.PANEL, + "welcome_text_panel/paragraph_1_wrapper": T.STACK_PANEL, + "welcome_text_panel/paragraph_1_wrapper/edu_icon": T.IMAGE, + "welcome_text_panel/paragraph_1_wrapper/stack_buffer1": T.PANEL, + "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel": T.PANEL, + "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel/paragraph_1": T.LABEL, + "welcome_text_panel/padding_2": T.PANEL, + "welcome_text_panel/paragraph_two": T.LABEL, + "welcome_text_panel/padding_3": T.PANEL, + "welcome_text_panel/paragraph_three": T.LABEL, + "welcome_scrolling_panel": T.PANEL, + "welcome_panel_content": T.PANEL, + "welcome_panel_content/background_panel": T.PANEL, + "welcome_panel_content/welcome_scrolling_panel": T.PANEL, + "welcome_panel_content/continue_button": T.BUTTON, + "welcome_panel": T.INPUT_PANEL, + "welcome_panel/welcome": T.PANEL, } export type LocalWorldPickerType = { - local_world_picker_screen: T.SCREEN - local_world_picker_content: T.PANEL - "local_world_picker_content/background": T.PANEL - "local_world_picker_content/panel_label": T.LABEL - "local_world_picker_content/content": T.INPUT_PANEL + "local_world_picker_screen": T.SCREEN, + "local_world_picker_content": T.PANEL, + "local_world_picker_content/background": T.PANEL, + "local_world_picker_content/panel_label": T.LABEL, + "local_world_picker_content/content": T.INPUT_PANEL, } export type LoomType = { - loom_label: T.LABEL - arrow_icon: T.IMAGE - pattern_cell_image: T.IMAGE - container_cell_image: T.IMAGE - banner_outline: T.IMAGE - item_empty_image: T.IMAGE - banner_empty_image: T.IMAGE - dye_empty_image: T.IMAGE - pattern_item_empty_image: T.IMAGE - toolbar_background: T.IMAGE - highlight_slot_panel: T.PANEL - "highlight_slot_panel/highlight": T.IMAGE - "highlight_slot_panel/white_border": T.IMAGE - pattern_slot_button: T.BUTTON - "pattern_slot_button/hover": T.UNKNOWN - banner_pattern: T.CUSTOM - pattern_button: T.INPUT_PANEL - "pattern_button/banner_pattern": T.UNKNOWN - "pattern_button/item_button_ref": T.UNKNOWN - scroll_grid: T.GRID - scroll_grid_panel: T.INPUT_PANEL - "scroll_grid_panel/grid": T.GRID - scroll_panel: T.PANEL - pattern_book_panel: T.INPUT_PANEL - "pattern_book_panel/bg": T.PANEL - "pattern_book_panel/scroll_panel": T.PANEL - result_slot_button: T.BUTTON - input_item_slot: T.INPUT_PANEL - dye_item_slot: T.INPUT_PANEL - material_item_slot: T.INPUT_PANEL - result_item_slot: T.INPUT_PANEL - input_slots_stack_panel: T.STACK_PANEL - "input_slots_stack_panel/input_item_slot": T.INPUT_PANEL - "input_slots_stack_panel/padding_1": T.PANEL - "input_slots_stack_panel/dye_item_slot": T.INPUT_PANEL - "input_slots_stack_panel/padding_2": T.PANEL - "input_slots_stack_panel/material_item_slot": T.INPUT_PANEL - result_banner_renderer: T.CUSTOM - top_half_stack_panel: T.STACK_PANEL - "top_half_stack_panel/input_slots_holder": T.PANEL - "top_half_stack_panel/input_slots_holder/input_slots_stack_panel": T.STACK_PANEL - "top_half_stack_panel/padding_1": T.PANEL - "top_half_stack_panel/arrow_holder": T.PANEL - "top_half_stack_panel/arrow_holder/arrow_icon": T.IMAGE - "top_half_stack_panel/padding_2": T.PANEL - "top_half_stack_panel/result_item_slot_holder": T.PANEL - "top_half_stack_panel/result_item_slot_holder/result_item_slot": T.INPUT_PANEL - "top_half_stack_panel/padding_3": T.PANEL - "top_half_stack_panel/result_banner_outline": T.IMAGE - "top_half_stack_panel/result_banner_outline/result_banner_renderer": T.CUSTOM - top_half_panel: T.PANEL - "top_half_panel/top_half_stack_panel": T.STACK_PANEL - right_panel: T.INPUT_PANEL - "right_panel/common_panel": T.PANEL - "right_panel/loom_screen_inventory": T.PANEL - "right_panel/loom_screen_inventory/loom_label": T.LABEL - "right_panel/loom_screen_inventory/top_half_panel": T.PANEL - "right_panel/loom_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL - "right_panel/loom_screen_inventory/hotbar_grid": T.GRID - help_button: T.BUTTON - toolbar_panel: T.INPUT_PANEL - "toolbar_panel/toolbar_background": T.IMAGE - "toolbar_panel/toolbar_background/toolbar_stack_panel": T.STACK_PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": T.BUTTON - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": T.BUTTON - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": T.PANEL - toolbar_anchor: T.PANEL - "toolbar_anchor/toolbar_panel": T.INPUT_PANEL - center_fold: T.INPUT_PANEL - "center_fold/center_bg": T.IMAGE - screen_stack_panel: T.STACK_PANEL - "screen_stack_panel/pattern_book_panel": T.INPUT_PANEL - "screen_stack_panel/center_fold": T.INPUT_PANEL - "screen_stack_panel/right_panel": T.INPUT_PANEL - "screen_stack_panel/toolbar_anchor": T.PANEL - loom_panel: T.PANEL - "loom_panel/screen_stack_panel": T.STACK_PANEL - "loom_panel/container_gamepad_helpers": T.STACK_PANEL - "loom_panel/selected_item_details_factory": T.FACTORY - "loom_panel/item_lock_notification_factory": T.FACTORY - "loom_panel/inventory_selected_icon_button": T.BUTTON - "loom_panel/inventory_take_progress_icon_button": T.BUTTON - "loom_panel/flying_item_renderer": T.CUSTOM - loom_screen: T.SCREEN + "loom_label": T.LABEL, + "arrow_icon": T.IMAGE, + "pattern_cell_image": T.IMAGE, + "container_cell_image": T.IMAGE, + "banner_outline": T.IMAGE, + "item_empty_image": T.IMAGE, + "banner_empty_image": T.IMAGE, + "dye_empty_image": T.IMAGE, + "pattern_item_empty_image": T.IMAGE, + "toolbar_background": T.IMAGE, + "highlight_slot_panel": T.PANEL, + "highlight_slot_panel/highlight": T.IMAGE, + "highlight_slot_panel/white_border": T.IMAGE, + "pattern_slot_button": T.BUTTON, + "pattern_slot_button/hover": T.UNKNOWN, + "banner_pattern": T.CUSTOM, + "pattern_button": T.INPUT_PANEL, + "pattern_button/banner_pattern": T.UNKNOWN, + "pattern_button/item_button_ref": T.UNKNOWN, + "scroll_grid": T.GRID, + "scroll_grid_panel": T.INPUT_PANEL, + "scroll_grid_panel/grid": T.GRID, + "scroll_panel": T.PANEL, + "pattern_book_panel": T.INPUT_PANEL, + "pattern_book_panel/bg": T.PANEL, + "pattern_book_panel/scroll_panel": T.PANEL, + "result_slot_button": T.BUTTON, + "input_item_slot": T.INPUT_PANEL, + "dye_item_slot": T.INPUT_PANEL, + "material_item_slot": T.INPUT_PANEL, + "result_item_slot": T.INPUT_PANEL, + "input_slots_stack_panel": T.STACK_PANEL, + "input_slots_stack_panel/input_item_slot": T.INPUT_PANEL, + "input_slots_stack_panel/padding_1": T.PANEL, + "input_slots_stack_panel/dye_item_slot": T.INPUT_PANEL, + "input_slots_stack_panel/padding_2": T.PANEL, + "input_slots_stack_panel/material_item_slot": T.INPUT_PANEL, + "result_banner_renderer": T.CUSTOM, + "top_half_stack_panel": T.STACK_PANEL, + "top_half_stack_panel/input_slots_holder": T.PANEL, + "top_half_stack_panel/input_slots_holder/input_slots_stack_panel": T.STACK_PANEL, + "top_half_stack_panel/padding_1": T.PANEL, + "top_half_stack_panel/arrow_holder": T.PANEL, + "top_half_stack_panel/arrow_holder/arrow_icon": T.IMAGE, + "top_half_stack_panel/padding_2": T.PANEL, + "top_half_stack_panel/result_item_slot_holder": T.PANEL, + "top_half_stack_panel/result_item_slot_holder/result_item_slot": T.INPUT_PANEL, + "top_half_stack_panel/padding_3": T.PANEL, + "top_half_stack_panel/result_banner_outline": T.IMAGE, + "top_half_stack_panel/result_banner_outline/result_banner_renderer": T.CUSTOM, + "top_half_panel": T.PANEL, + "top_half_panel/top_half_stack_panel": T.STACK_PANEL, + "right_panel": T.INPUT_PANEL, + "right_panel/common_panel": T.PANEL, + "right_panel/loom_screen_inventory": T.PANEL, + "right_panel/loom_screen_inventory/loom_label": T.LABEL, + "right_panel/loom_screen_inventory/top_half_panel": T.PANEL, + "right_panel/loom_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL, + "right_panel/loom_screen_inventory/hotbar_grid": T.GRID, + "help_button": T.BUTTON, + "toolbar_panel": T.INPUT_PANEL, + "toolbar_panel/toolbar_background": T.IMAGE, + "toolbar_panel/toolbar_background/toolbar_stack_panel": T.STACK_PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": T.BUTTON, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": T.BUTTON, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": T.PANEL, + "toolbar_anchor": T.PANEL, + "toolbar_anchor/toolbar_panel": T.INPUT_PANEL, + "center_fold": T.INPUT_PANEL, + "center_fold/center_bg": T.IMAGE, + "screen_stack_panel": T.STACK_PANEL, + "screen_stack_panel/pattern_book_panel": T.INPUT_PANEL, + "screen_stack_panel/center_fold": T.INPUT_PANEL, + "screen_stack_panel/right_panel": T.INPUT_PANEL, + "screen_stack_panel/toolbar_anchor": T.PANEL, + "loom_panel": T.PANEL, + "loom_panel/screen_stack_panel": T.STACK_PANEL, + "loom_panel/container_gamepad_helpers": T.STACK_PANEL, + "loom_panel/selected_item_details_factory": T.FACTORY, + "loom_panel/item_lock_notification_factory": T.FACTORY, + "loom_panel/inventory_selected_icon_button": T.BUTTON, + "loom_panel/inventory_take_progress_icon_button": T.BUTTON, + "loom_panel/flying_item_renderer": T.CUSTOM, + "loom_screen": T.SCREEN, } export type LoomPocketType = { - vertical_arrow_icon: T.IMAGE - banner_empty_image: T.IMAGE - dye_empty_image: T.IMAGE - pattern_item_empty_image: T.IMAGE - chest_item_renderer: T.CUSTOM - banner_item_renderer: T.CUSTOM - loom_item_renderer: T.CUSTOM - input_item_slot: T.INPUT_PANEL - dye_item_slot: T.INPUT_PANEL - material_item_slot: T.INPUT_PANEL - result_item_slot: T.INPUT_PANEL - right_panel: T.STACK_PANEL - "right_panel/content": T.INPUT_PANEL - "right_panel/content/bg": T.PANEL - "right_panel/content/loom_content_stack_panel": T.STACK_PANEL - "right_panel/navigation_tabs_holder": T.PANEL - "right_panel/navigation_tabs_holder/right_navigation_tabs": T.STACK_PANEL - right_tab_loom: T.PANEL - right_navigation_tabs: T.STACK_PANEL - "right_navigation_tabs/pocket_tab_close_and_help_button": T.IMAGE - "right_navigation_tabs/fill": T.PANEL - "right_navigation_tabs/right_tab_loom": T.PANEL - input_slots_stack_panel: T.STACK_PANEL - "input_slots_stack_panel/input_item_slot": T.INPUT_PANEL - "input_slots_stack_panel/padding_1": T.PANEL - "input_slots_stack_panel/dye_item_slot": T.INPUT_PANEL - "input_slots_stack_panel/padding_2": T.PANEL - "input_slots_stack_panel/material_item_slot": T.INPUT_PANEL - result_banner_outline: T.IMAGE - "result_banner_outline/result_banner_renderer": T.CUSTOM - loom_content_stack_panel: T.STACK_PANEL - "loom_content_stack_panel/label_holder": T.PANEL - "loom_content_stack_panel/label_holder/loom_label": T.LABEL - "loom_content_stack_panel/padding_1": T.PANEL - "loom_content_stack_panel/input_slots_holder": T.PANEL - "loom_content_stack_panel/input_slots_holder/input_slots_stack_panel": T.STACK_PANEL - "loom_content_stack_panel/padding_2": T.PANEL - "loom_content_stack_panel/banner_pattern_holder": T.PANEL - "loom_content_stack_panel/banner_pattern_holder/result_banner_outline": T.IMAGE - "loom_content_stack_panel/padding_3": T.PANEL - "loom_content_stack_panel/arrow_holder": T.PANEL - "loom_content_stack_panel/arrow_holder/vertical_arrow_icon": T.IMAGE - "loom_content_stack_panel/padding_4": T.PANEL - "loom_content_stack_panel/result_item_slot_holder": T.PANEL - "loom_content_stack_panel/result_item_slot_holder/result_item_slot": T.INPUT_PANEL - "loom_content_stack_panel/padding_5": T.PANEL - inventory_scroll_panel: T.PANEL - pattern_button: T.INPUT_PANEL - banner_pattern: T.CUSTOM - pattern_scroll_panel: T.PANEL - left_panel: T.STACK_PANEL - "left_panel/gamepad_helpers_and_tabs_holder": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": T.STACK_PANEL - "left_panel/content": T.INPUT_PANEL - "left_panel/content/bg": T.PANEL - "left_panel/content/inventory_scroll_panel": T.PANEL - "left_panel/content/pattern_scroll_panel": T.PANEL - left_tab_patterns: T.PANEL - left_tab_inventory: T.PANEL - left_navigation_tabs: T.STACK_PANEL - "left_navigation_tabs/left_tab_patterns": T.PANEL - "left_navigation_tabs/padding": T.PANEL - "left_navigation_tabs/left_tab_inventory": T.PANEL - pocket_hotbar_and_content_panels: T.STACK_PANEL - loom_panel: T.PANEL - "loom_panel/pocket_hotbar_and_content_panels": T.STACK_PANEL - "loom_panel/container_gamepad_helpers": T.STACK_PANEL - "loom_panel/selected_item_details_factory": T.FACTORY - "loom_panel/item_lock_notification_factory": T.FACTORY - "loom_panel/inventory_selected_icon_button": T.BUTTON - "loom_panel/inventory_take_progress_icon_button": T.BUTTON - "loom_panel/flying_item_renderer": T.CUSTOM + "vertical_arrow_icon": T.IMAGE, + "banner_empty_image": T.IMAGE, + "dye_empty_image": T.IMAGE, + "pattern_item_empty_image": T.IMAGE, + "chest_item_renderer": T.CUSTOM, + "banner_item_renderer": T.CUSTOM, + "loom_item_renderer": T.CUSTOM, + "input_item_slot": T.INPUT_PANEL, + "dye_item_slot": T.INPUT_PANEL, + "material_item_slot": T.INPUT_PANEL, + "result_item_slot": T.INPUT_PANEL, + "right_panel": T.STACK_PANEL, + "right_panel/content": T.INPUT_PANEL, + "right_panel/content/bg": T.PANEL, + "right_panel/content/loom_content_stack_panel": T.STACK_PANEL, + "right_panel/navigation_tabs_holder": T.PANEL, + "right_panel/navigation_tabs_holder/right_navigation_tabs": T.STACK_PANEL, + "right_tab_loom": T.PANEL, + "right_navigation_tabs": T.STACK_PANEL, + "right_navigation_tabs/pocket_tab_close_and_help_button": T.IMAGE, + "right_navigation_tabs/fill": T.PANEL, + "right_navigation_tabs/right_tab_loom": T.PANEL, + "input_slots_stack_panel": T.STACK_PANEL, + "input_slots_stack_panel/input_item_slot": T.INPUT_PANEL, + "input_slots_stack_panel/padding_1": T.PANEL, + "input_slots_stack_panel/dye_item_slot": T.INPUT_PANEL, + "input_slots_stack_panel/padding_2": T.PANEL, + "input_slots_stack_panel/material_item_slot": T.INPUT_PANEL, + "result_banner_outline": T.IMAGE, + "result_banner_outline/result_banner_renderer": T.CUSTOM, + "loom_content_stack_panel": T.STACK_PANEL, + "loom_content_stack_panel/label_holder": T.PANEL, + "loom_content_stack_panel/label_holder/loom_label": T.LABEL, + "loom_content_stack_panel/padding_1": T.PANEL, + "loom_content_stack_panel/input_slots_holder": T.PANEL, + "loom_content_stack_panel/input_slots_holder/input_slots_stack_panel": T.STACK_PANEL, + "loom_content_stack_panel/padding_2": T.PANEL, + "loom_content_stack_panel/banner_pattern_holder": T.PANEL, + "loom_content_stack_panel/banner_pattern_holder/result_banner_outline": T.IMAGE, + "loom_content_stack_panel/padding_3": T.PANEL, + "loom_content_stack_panel/arrow_holder": T.PANEL, + "loom_content_stack_panel/arrow_holder/vertical_arrow_icon": T.IMAGE, + "loom_content_stack_panel/padding_4": T.PANEL, + "loom_content_stack_panel/result_item_slot_holder": T.PANEL, + "loom_content_stack_panel/result_item_slot_holder/result_item_slot": T.INPUT_PANEL, + "loom_content_stack_panel/padding_5": T.PANEL, + "inventory_scroll_panel": T.PANEL, + "pattern_button": T.INPUT_PANEL, + "banner_pattern": T.CUSTOM, + "pattern_scroll_panel": T.PANEL, + "left_panel": T.STACK_PANEL, + "left_panel/gamepad_helpers_and_tabs_holder": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": T.STACK_PANEL, + "left_panel/content": T.INPUT_PANEL, + "left_panel/content/bg": T.PANEL, + "left_panel/content/inventory_scroll_panel": T.PANEL, + "left_panel/content/pattern_scroll_panel": T.PANEL, + "left_tab_patterns": T.PANEL, + "left_tab_inventory": T.PANEL, + "left_navigation_tabs": T.STACK_PANEL, + "left_navigation_tabs/left_tab_patterns": T.PANEL, + "left_navigation_tabs/padding": T.PANEL, + "left_navigation_tabs/left_tab_inventory": T.PANEL, + "pocket_hotbar_and_content_panels": T.STACK_PANEL, + "loom_panel": T.PANEL, + "loom_panel/pocket_hotbar_and_content_panels": T.STACK_PANEL, + "loom_panel/container_gamepad_helpers": T.STACK_PANEL, + "loom_panel/selected_item_details_factory": T.FACTORY, + "loom_panel/item_lock_notification_factory": T.FACTORY, + "loom_panel/inventory_selected_icon_button": T.BUTTON, + "loom_panel/inventory_take_progress_icon_button": T.BUTTON, + "loom_panel/flying_item_renderer": T.CUSTOM, } export type ManageFeedType = { - manage_feed_item_scrolling_panel: T.PANEL - "manage_feed_item_scrolling_panel/manage_feed_item_scrolling_panel_content": T.PANEL - manage_feed_item_scrolling_panel_content: T.PANEL - grid_panel: T.STACK_PANEL - "grid_panel/top_spacing_gap": T.PANEL - "grid_panel/manage_feed_loading_grid_item": T.PANEL - "grid_panel/manage_feed_grid": T.GRID - "grid_panel/spacing_gap2": T.PANEL - "grid_panel/pagination_panel": T.PANEL - pagination_panel: T.PANEL - manage_feed_grid: T.GRID - manage_feed_grid_item: T.PANEL - "manage_feed_grid_item/image_panel_instance": T.PANEL - "manage_feed_grid_item/manage_feed_buttons_panel": T.STACK_PANEL - "manage_feed_grid_item/manage_feed_text_instance": T.LABEL - "manage_feed_grid_item/feed_timesince_instance": T.LABEL - "manage_feed_grid_item/nr_of_reports": T.LABEL - "manage_feed_grid_item/manage_player_pic_panel": T.PANEL - "manage_feed_grid_item/manage_feed_gamertag_instance": T.LABEL - manage_feed_buttons_panel: T.STACK_PANEL - "manage_feed_buttons_panel/ignore_button": T.BUTTON - "manage_feed_buttons_panel/delete_button": T.BUTTON - manage_feed_loading_grid_item: T.PANEL - "manage_feed_loading_grid_item/loading_image_panel": T.PANEL - feed_buttons_panel_loading: T.STACK_PANEL - "feed_buttons_panel_loading/like_button_loading": T.UNKNOWN - "feed_buttons_panel_loading/spacing_gap1": T.PANEL - "feed_buttons_panel_loading/comment_button_loading": T.UNKNOWN - "feed_buttons_panel_loading/spacing_gap2": T.PANEL - "feed_buttons_panel_loading/options_button_loading": T.UNKNOWN - like_button_loading: T.IMAGE - comment_button_loading: T.IMAGE - options_button_loading: T.IMAGE - player_pic_panel_loading: T.PANEL - "player_pic_panel_loading/player_gamer_pic_loading": T.UNKNOWN - player_gamer_pic_loading: T.IMAGE - loading_image_panel: T.PANEL - "loading_image_panel/progress_loading_bars": T.IMAGE - "loading_image_panel/manage_feed_image_loading": T.IMAGE - "loading_image_panel/no_feed_item_content": T.LABEL - manage_feed_image_loading: T.IMAGE - ignore_button: T.BUTTON - ignore_content_panel: T.PANEL - "ignore_content_panel/ignore_label": T.LABEL - delete_button: T.BUTTON - delete_content_panel: T.PANEL - "delete_content_panel/delete_label": T.LABEL - manage_feed_image: T.IMAGE - manage_feed_image_content_panel: T.PANEL - "manage_feed_image_content_panel/manage_feed_image": T.IMAGE - "manage_feed_image_content_panel/textpost_content": T.LABEL - textpost_content: T.LABEL - image_panel: T.PANEL - "image_panel/manage_feed_image_content_panel": T.PANEL - manage_player_pic_panel: T.PANEL - "manage_player_pic_panel/manage_player_gamer_pic": T.CUSTOM - manage_player_gamer_pic: T.CUSTOM - content: T.PANEL - "content/top_bar_gradient": T.CUSTOM - "content/gamepad_helpers": T.STACK_PANEL - "content/return_button": T.BUTTON - "content/reported_items_label": T.LABEL - "content/manage_feed_item_scrolling_panel_instance": T.PANEL - manage_feed_screen: T.SCREEN - manage_feed_screen_content: T.PANEL - "manage_feed_screen_content/transparent_background": T.IMAGE - "manage_feed_screen_content/container": T.PANEL - "manage_feed_screen_content/container/content": T.PANEL + "manage_feed_item_scrolling_panel": T.PANEL, + "manage_feed_item_scrolling_panel/manage_feed_item_scrolling_panel_content": T.PANEL, + "manage_feed_item_scrolling_panel_content": T.PANEL, + "grid_panel": T.STACK_PANEL, + "grid_panel/top_spacing_gap": T.PANEL, + "grid_panel/manage_feed_loading_grid_item": T.PANEL, + "grid_panel/manage_feed_grid": T.GRID, + "grid_panel/spacing_gap2": T.PANEL, + "grid_panel/pagination_panel": T.PANEL, + "pagination_panel": T.PANEL, + "manage_feed_grid": T.GRID, + "manage_feed_grid_item": T.PANEL, + "manage_feed_grid_item/image_panel_instance": T.PANEL, + "manage_feed_grid_item/manage_feed_buttons_panel": T.STACK_PANEL, + "manage_feed_grid_item/manage_feed_text_instance": T.LABEL, + "manage_feed_grid_item/feed_timesince_instance": T.LABEL, + "manage_feed_grid_item/nr_of_reports": T.LABEL, + "manage_feed_grid_item/manage_player_pic_panel": T.PANEL, + "manage_feed_grid_item/manage_feed_gamertag_instance": T.LABEL, + "manage_feed_buttons_panel": T.STACK_PANEL, + "manage_feed_buttons_panel/ignore_button": T.BUTTON, + "manage_feed_buttons_panel/delete_button": T.BUTTON, + "manage_feed_loading_grid_item": T.PANEL, + "manage_feed_loading_grid_item/loading_image_panel": T.PANEL, + "feed_buttons_panel_loading": T.STACK_PANEL, + "feed_buttons_panel_loading/like_button_loading": T.UNKNOWN, + "feed_buttons_panel_loading/spacing_gap1": T.PANEL, + "feed_buttons_panel_loading/comment_button_loading": T.UNKNOWN, + "feed_buttons_panel_loading/spacing_gap2": T.PANEL, + "feed_buttons_panel_loading/options_button_loading": T.UNKNOWN, + "like_button_loading": T.IMAGE, + "comment_button_loading": T.IMAGE, + "options_button_loading": T.IMAGE, + "player_pic_panel_loading": T.PANEL, + "player_pic_panel_loading/player_gamer_pic_loading": T.UNKNOWN, + "player_gamer_pic_loading": T.IMAGE, + "loading_image_panel": T.PANEL, + "loading_image_panel/progress_loading_bars": T.IMAGE, + "loading_image_panel/manage_feed_image_loading": T.IMAGE, + "loading_image_panel/no_feed_item_content": T.LABEL, + "manage_feed_image_loading": T.IMAGE, + "ignore_button": T.BUTTON, + "ignore_content_panel": T.PANEL, + "ignore_content_panel/ignore_label": T.LABEL, + "delete_button": T.BUTTON, + "delete_content_panel": T.PANEL, + "delete_content_panel/delete_label": T.LABEL, + "manage_feed_image": T.IMAGE, + "manage_feed_image_content_panel": T.PANEL, + "manage_feed_image_content_panel/manage_feed_image": T.IMAGE, + "manage_feed_image_content_panel/textpost_content": T.LABEL, + "textpost_content": T.LABEL, + "image_panel": T.PANEL, + "image_panel/manage_feed_image_content_panel": T.PANEL, + "manage_player_pic_panel": T.PANEL, + "manage_player_pic_panel/manage_player_gamer_pic": T.CUSTOM, + "manage_player_gamer_pic": T.CUSTOM, + "content": T.PANEL, + "content/top_bar_gradient": T.CUSTOM, + "content/gamepad_helpers": T.STACK_PANEL, + "content/return_button": T.BUTTON, + "content/reported_items_label": T.LABEL, + "content/manage_feed_item_scrolling_panel_instance": T.PANEL, + "manage_feed_screen": T.SCREEN, + "manage_feed_screen_content": T.PANEL, + "manage_feed_screen_content/transparent_background": T.IMAGE, + "manage_feed_screen_content/container": T.PANEL, + "manage_feed_screen_content/container/content": T.PANEL, } export type ManifestValidationType = { - clipboard_icon: T.IMAGE - clipboard_icon_wrapper: T.PANEL - "clipboard_icon_wrapper/icon": T.IMAGE - trash_icon: T.IMAGE - trash_icon_wrapper: T.PANEL - "trash_icon_wrapper/icon": T.IMAGE - "trash_icon_wrapper/progress_loading_bars": T.IMAGE - refresh_icon: T.IMAGE - refresh_icon_wrapper: T.PANEL - "refresh_icon_wrapper/icon": T.IMAGE - "refresh_icon_wrapper/progress_loading_bars": T.IMAGE - section_divider: T.PANEL - "section_divider/divider_image": T.IMAGE - text_label: T.LABEL - icon_image: T.IMAGE - progress_loading_bars: T.IMAGE - background: T.IMAGE - black_background_fill: T.IMAGE - error_pack_secondary_layout: T.PANEL - "error_pack_secondary_layout/black": T.IMAGE - "error_pack_secondary_layout/black/stack_panel": T.PANEL - "error_pack_secondary_layout/black/stack_panel/stack_panel": T.STACK_PANEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background": T.IMAGE - "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background/icon": T.IMAGE - "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info": T.PANEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top": T.STACK_PANEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/title": T.LABEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/padding": T.PANEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/pack_size": T.LABEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom": T.STACK_PANEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/description": T.LABEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/padding": T.PANEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel": T.STACK_PANEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/top_pad": T.PANEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh": T.PANEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh/button": T.BUTTON - "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/pad": T.PANEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete": T.PANEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete/button": T.BUTTON - "error_pack_secondary_layout/black/stack_panel/stack_panel/pad": T.PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel": T.STACK_PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_0": T.PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel": T.STACK_PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/title_text": T.LABEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/space": T.PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset": T.PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset/title": T.LABEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_0": T.PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_1": T.PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel": T.STACK_PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/version_text": T.LABEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/space": T.PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset": T.PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset/version": T.LABEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_1": T.PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_2": T.PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel": T.STACK_PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/path_text": T.LABEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/space": T.PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset": T.PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset/description": T.LABEL - error_pack_content_layout: T.PANEL - "error_pack_content_layout/black": T.IMAGE - "error_pack_content_layout/black/error_panel": T.STACK_PANEL - "error_pack_content_layout/black/error_panel/error_header_panel": T.PANEL - "error_pack_content_layout/black/error_panel/error_header_panel/error_type_panel": T.LABEL - "error_pack_content_layout/black/error_panel/error_header_panel/button": T.BUTTON - "error_pack_content_layout/black/error_panel/padding_0": T.PANEL - "error_pack_content_layout/black/error_panel/error_text_panel": T.STACK_PANEL - "error_pack_content_layout/black/error_panel/error_text_panel/error_text": T.LABEL - "error_pack_content_layout/black/error_panel/error_text_panel/space": T.PANEL - "error_pack_content_layout/black/error_panel/error_text_panel/offset": T.PANEL - "error_pack_content_layout/black/error_panel/error_text_panel/offset/error_label": T.LABEL - delete_button: T.BUTTON - delete_text_button: T.BUTTON - clipboard_button: T.BUTTON - refresh_button: T.BUTTON - refresh_text_button: T.BUTTON - pack_secondary_info: T.PANEL - "pack_secondary_info/layout": T.PANEL - error_content_grid: T.STACK_PANEL - pack_error_item: T.STACK_PANEL - "pack_error_item/secondary": T.PANEL - "pack_error_item/error_header": T.PANEL - "pack_error_item/error_header/error_text": T.LABEL - "pack_error_item/error": T.STACK_PANEL - pack_error_group: T.STACK_PANEL - "pack_error_group/top_padding": T.PANEL - "pack_error_group/errors": T.STACK_PANEL - "pack_error_group/padding": T.PANEL - common_scrolling_panel: T.PANEL - common_content: T.INPUT_PANEL - scrolling_offsets: T.PANEL - manifest_validation_scroll_content: T.INPUT_PANEL - "manifest_validation_scroll_content/scrolling_panel": T.PANEL - common_scroll_panel: T.PANEL - manifest_validation_scroll_panel: T.PANEL - "manifest_validation_scroll_panel/pack_error_group": T.STACK_PANEL - manifest_validation_screen: T.SCREEN - manifest_validation_screen_content: T.PANEL - "manifest_validation_screen_content/background": T.PANEL + "clipboard_icon": T.IMAGE, + "clipboard_icon_wrapper": T.PANEL, + "clipboard_icon_wrapper/icon": T.IMAGE, + "trash_icon": T.IMAGE, + "trash_icon_wrapper": T.PANEL, + "trash_icon_wrapper/icon": T.IMAGE, + "trash_icon_wrapper/progress_loading_bars": T.IMAGE, + "refresh_icon": T.IMAGE, + "refresh_icon_wrapper": T.PANEL, + "refresh_icon_wrapper/icon": T.IMAGE, + "refresh_icon_wrapper/progress_loading_bars": T.IMAGE, + "section_divider": T.PANEL, + "section_divider/divider_image": T.IMAGE, + "text_label": T.LABEL, + "icon_image": T.IMAGE, + "progress_loading_bars": T.IMAGE, + "background": T.IMAGE, + "black_background_fill": T.IMAGE, + "error_pack_secondary_layout": T.PANEL, + "error_pack_secondary_layout/black": T.IMAGE, + "error_pack_secondary_layout/black/stack_panel": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel": T.STACK_PANEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background": T.IMAGE, + "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background/icon": T.IMAGE, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top": T.STACK_PANEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/title": T.LABEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/padding": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/pack_size": T.LABEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom": T.STACK_PANEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/description": T.LABEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/padding": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel": T.STACK_PANEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/top_pad": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh/button": T.BUTTON, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/pad": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete/button": T.BUTTON, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pad": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel": T.STACK_PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_0": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel": T.STACK_PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/title_text": T.LABEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/space": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset/title": T.LABEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_0": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_1": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel": T.STACK_PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/version_text": T.LABEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/space": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset/version": T.LABEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_1": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_2": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel": T.STACK_PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/path_text": T.LABEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/space": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset/description": T.LABEL, + "error_pack_content_layout": T.PANEL, + "error_pack_content_layout/black": T.IMAGE, + "error_pack_content_layout/black/error_panel": T.STACK_PANEL, + "error_pack_content_layout/black/error_panel/error_header_panel": T.PANEL, + "error_pack_content_layout/black/error_panel/error_header_panel/error_type_panel": T.LABEL, + "error_pack_content_layout/black/error_panel/error_header_panel/button": T.BUTTON, + "error_pack_content_layout/black/error_panel/padding_0": T.PANEL, + "error_pack_content_layout/black/error_panel/error_text_panel": T.STACK_PANEL, + "error_pack_content_layout/black/error_panel/error_text_panel/error_text": T.LABEL, + "error_pack_content_layout/black/error_panel/error_text_panel/space": T.PANEL, + "error_pack_content_layout/black/error_panel/error_text_panel/offset": T.PANEL, + "error_pack_content_layout/black/error_panel/error_text_panel/offset/error_label": T.LABEL, + "delete_button": T.BUTTON, + "delete_text_button": T.BUTTON, + "clipboard_button": T.BUTTON, + "refresh_button": T.BUTTON, + "refresh_text_button": T.BUTTON, + "pack_secondary_info": T.PANEL, + "pack_secondary_info/layout": T.PANEL, + "error_content_grid": T.STACK_PANEL, + "pack_error_item": T.STACK_PANEL, + "pack_error_item/secondary": T.PANEL, + "pack_error_item/error_header": T.PANEL, + "pack_error_item/error_header/error_text": T.LABEL, + "pack_error_item/error": T.STACK_PANEL, + "pack_error_group": T.STACK_PANEL, + "pack_error_group/top_padding": T.PANEL, + "pack_error_group/errors": T.STACK_PANEL, + "pack_error_group/padding": T.PANEL, + "common_scrolling_panel": T.PANEL, + "common_content": T.INPUT_PANEL, + "scrolling_offsets": T.PANEL, + "manifest_validation_scroll_content": T.INPUT_PANEL, + "manifest_validation_scroll_content/scrolling_panel": T.PANEL, + "common_scroll_panel": T.PANEL, + "manifest_validation_scroll_panel": T.PANEL, + "manifest_validation_scroll_panel/pack_error_group": T.STACK_PANEL, + "manifest_validation_screen": T.SCREEN, + "manifest_validation_screen_content": T.PANEL, + "manifest_validation_screen_content/background": T.PANEL, } export type SdlLabelType = { - sdl_label_factory: T.STACK_PANEL - sdl_label: T.LABEL - sdl_mc_ten_label: T.LABEL + "sdl_label_factory": T.STACK_PANEL, + "sdl_label": T.LABEL, + "sdl_mc_ten_label": T.LABEL, } export type SdlDropdownsType = { - sdl_dropdown_rows: T.PANEL - "sdl_dropdown_rows/container_panel": T.STACK_PANEL - "sdl_dropdown_rows/container_panel/toggle": T.PANEL - "sdl_dropdown_rows/container_panel/pad": T.PANEL - sdl_rows_toggle: T.PANEL + "sdl_dropdown_rows": T.PANEL, + "sdl_dropdown_rows/container_panel": T.STACK_PANEL, + "sdl_dropdown_rows/container_panel/toggle": T.PANEL, + "sdl_dropdown_rows/container_panel/pad": T.PANEL, + "sdl_rows_toggle": T.PANEL, } export type SdlImageRowType = { - image_row_factory: T.STACK_PANEL - buffer_panel: T.PANEL - single_image: T.PANEL - "single_image/image_with_border": T.PANEL - "single_image/image_with_border/screenshot_image": T.IMAGE - "single_image/image_with_border/dark_border": T.IMAGE - "single_image/image_with_border/progress_loading": T.PANEL - "single_image/image_selector": T.BUTTON - double_image: T.PANEL - triple_image_with_buffer: T.STACK_PANEL - "triple_image_with_buffer/buffer_panel_in_1": T.PANEL - "triple_image_with_buffer/buffer_panel_in_2": T.PANEL - "triple_image_with_buffer/triple_image": T.PANEL - "triple_image_with_buffer/buffer_panel_out_1": T.PANEL - "triple_image_with_buffer/buffer_panel_out_2": T.PANEL + "image_row_factory": T.STACK_PANEL, + "buffer_panel": T.PANEL, + "single_image": T.PANEL, + "single_image/image_with_border": T.PANEL, + "single_image/image_with_border/screenshot_image": T.IMAGE, + "single_image/image_with_border/dark_border": T.IMAGE, + "single_image/image_with_border/progress_loading": T.PANEL, + "single_image/image_selector": T.BUTTON, + "double_image": T.PANEL, + "triple_image_with_buffer": T.STACK_PANEL, + "triple_image_with_buffer/buffer_panel_in_1": T.PANEL, + "triple_image_with_buffer/buffer_panel_in_2": T.PANEL, + "triple_image_with_buffer/triple_image": T.PANEL, + "triple_image_with_buffer/buffer_panel_out_1": T.PANEL, + "triple_image_with_buffer/buffer_panel_out_2": T.PANEL, } export type SdlTextRowType = { - sdl_text_row_factory: T.STACK_PANEL - sdl_header_component_factory: T.STACK_PANEL - label_button: T.BUTTON - sdl_header_component_panel: T.PANEL - "sdl_header_component_panel/header_background": T.IMAGE - "sdl_header_component_panel/header_internals": T.BUTTON - "sdl_header_component_panel/header_highlight": T.IMAGE - "sdl_header_component_panel/text_row_header_text": T.STACK_PANEL - sdl_text_row_component_panel: T.PANEL - "sdl_text_row_component_panel/text_background": T.IMAGE - "sdl_text_row_component_panel/text_row_selector": T.BUTTON - "sdl_text_row_component_panel/text_row_background": T.IMAGE - "sdl_text_row_component_panel/text_row_component_text": T.STACK_PANEL - solo_text_row: T.STACK_PANEL - "solo_text_row/buffer_panel_front": T.PANEL - "solo_text_row/headercomp_and_textcomp_panel": T.STACK_PANEL - "solo_text_row/headercomp_and_textcomp_panel/text_row_header_text_panel": T.PANEL - "solo_text_row/headercomp_and_textcomp_panel/text_row_text_panel": T.PANEL - "solo_text_row/buffer_panel_back": T.PANEL + "sdl_text_row_factory": T.STACK_PANEL, + "sdl_header_component_factory": T.STACK_PANEL, + "label_button": T.BUTTON, + "sdl_header_component_panel": T.PANEL, + "sdl_header_component_panel/header_background": T.IMAGE, + "sdl_header_component_panel/header_internals": T.BUTTON, + "sdl_header_component_panel/header_highlight": T.IMAGE, + "sdl_header_component_panel/text_row_header_text": T.STACK_PANEL, + "sdl_text_row_component_panel": T.PANEL, + "sdl_text_row_component_panel/text_background": T.IMAGE, + "sdl_text_row_component_panel/text_row_selector": T.BUTTON, + "sdl_text_row_component_panel/text_row_background": T.IMAGE, + "sdl_text_row_component_panel/text_row_component_text": T.STACK_PANEL, + "solo_text_row": T.STACK_PANEL, + "solo_text_row/buffer_panel_front": T.PANEL, + "solo_text_row/headercomp_and_textcomp_panel": T.STACK_PANEL, + "solo_text_row/headercomp_and_textcomp_panel/text_row_header_text_panel": T.PANEL, + "solo_text_row/headercomp_and_textcomp_panel/text_row_text_panel": T.PANEL, + "solo_text_row/buffer_panel_back": T.PANEL, } export type MobEffectType = { - effect_background: T.IMAGE - main_background: T.IMAGE - button_background: T.IMAGE - effect_name: T.LABEL - effect_timer: T.LABEL - effect_icon: T.IMAGE - mob_effect_grid_panel: T.PANEL - "mob_effect_grid_panel/mob_effect_grid": T.GRID - mob_effect_grid: T.GRID - mob_effect_grid_item: T.PANEL - "mob_effect_grid_item/bg": T.IMAGE - "mob_effect_grid_item/name": T.LABEL - "mob_effect_grid_item/timer": T.LABEL - "mob_effect_grid_item/icon": T.IMAGE - mob_effect_list_content_panel: T.PANEL - "mob_effect_list_content_panel/scrolling_panel": T.PANEL - mob_effect_screen_close_button: T.BUTTON - close_button_panel: T.PANEL - "close_button_panel/bg": T.IMAGE - "close_button_panel/close_button": T.BUTTON - mob_effect_content: T.PANEL - "mob_effect_content/bg": T.IMAGE - "mob_effect_content/close_panel": T.PANEL - "mob_effect_content/content_panel": T.PANEL - main_screen: T.PANEL - "main_screen/main_screen": T.PANEL - mob_effect_screen: T.SCREEN + "effect_background": T.IMAGE, + "main_background": T.IMAGE, + "button_background": T.IMAGE, + "effect_name": T.LABEL, + "effect_timer": T.LABEL, + "effect_icon": T.IMAGE, + "mob_effect_grid_panel": T.PANEL, + "mob_effect_grid_panel/mob_effect_grid": T.GRID, + "mob_effect_grid": T.GRID, + "mob_effect_grid_item": T.PANEL, + "mob_effect_grid_item/bg": T.IMAGE, + "mob_effect_grid_item/name": T.LABEL, + "mob_effect_grid_item/timer": T.LABEL, + "mob_effect_grid_item/icon": T.IMAGE, + "mob_effect_list_content_panel": T.PANEL, + "mob_effect_list_content_panel/scrolling_panel": T.PANEL, + "mob_effect_screen_close_button": T.BUTTON, + "close_button_panel": T.PANEL, + "close_button_panel/bg": T.IMAGE, + "close_button_panel/close_button": T.BUTTON, + "mob_effect_content": T.PANEL, + "mob_effect_content/bg": T.IMAGE, + "mob_effect_content/close_panel": T.PANEL, + "mob_effect_content/content_panel": T.PANEL, + "main_screen": T.PANEL, + "main_screen/main_screen": T.PANEL, + "mob_effect_screen": T.SCREEN, } export type NonXblUserManagementType = { - black_tint_image: T.IMAGE - modal_title_text: T.LABEL - modal_label_text: T.STACK_PANEL - "modal_label_text/padding": T.PANEL - "modal_label_text/text": T.LABEL - modal_label_panel: T.PANEL - modal_left_button: T.BUTTON - modal_middle_button: T.BUTTON - modal_rightcancel_button: T.BUTTON - three_buttons_panel: T.PANEL - "three_buttons_panel/left": T.BUTTON - "three_buttons_panel/middle": T.BUTTON - "three_buttons_panel/right": T.BUTTON - two_buttons_panel: T.PANEL - "two_buttons_panel/left": T.BUTTON - "two_buttons_panel/right": T.BUTTON - single_button_panel: T.PANEL - "single_button_panel/left": T.BUTTON - modal_dialog_with_buttons: T.PANEL - "modal_dialog_with_buttons/background_with_buttons": T.PANEL - "modal_dialog_with_buttons/title": T.LABEL - "modal_dialog_with_buttons/text_with_buttons": T.PANEL - "modal_dialog_with_buttons/button_panel": T.UNKNOWN - modal_input_panel: T.INPUT_PANEL - "modal_input_panel/black_tint_image": T.IMAGE - user_confirm_dialog_screen_content: T.PANEL - "user_confirm_dialog_screen_content/modal_input": T.INPUT_PANEL - "user_confirm_dialog_screen_content/modal_input/modal_bg_buttons": T.PANEL - user_confirm_dialog_screen: T.SCREEN + "black_tint_image": T.IMAGE, + "modal_title_text": T.LABEL, + "modal_label_text": T.STACK_PANEL, + "modal_label_text/padding": T.PANEL, + "modal_label_text/text": T.LABEL, + "modal_label_panel": T.PANEL, + "modal_left_button": T.BUTTON, + "modal_middle_button": T.BUTTON, + "modal_rightcancel_button": T.BUTTON, + "three_buttons_panel": T.PANEL, + "three_buttons_panel/left": T.BUTTON, + "three_buttons_panel/middle": T.BUTTON, + "three_buttons_panel/right": T.BUTTON, + "two_buttons_panel": T.PANEL, + "two_buttons_panel/left": T.BUTTON, + "two_buttons_panel/right": T.BUTTON, + "single_button_panel": T.PANEL, + "single_button_panel/left": T.BUTTON, + "modal_dialog_with_buttons": T.PANEL, + "modal_dialog_with_buttons/background_with_buttons": T.PANEL, + "modal_dialog_with_buttons/title": T.LABEL, + "modal_dialog_with_buttons/text_with_buttons": T.PANEL, + "modal_dialog_with_buttons/button_panel": T.UNKNOWN, + "modal_input_panel": T.INPUT_PANEL, + "modal_input_panel/black_tint_image": T.IMAGE, + "user_confirm_dialog_screen_content": T.PANEL, + "user_confirm_dialog_screen_content/modal_input": T.INPUT_PANEL, + "user_confirm_dialog_screen_content/modal_input/modal_bg_buttons": T.PANEL, + "user_confirm_dialog_screen": T.SCREEN, } export type NpcInteractType = { - multiline_text_edit_control: T.EDIT_BOX - text_edit_control: T.EDIT_BOX - label_padding: T.PANEL - main_stack_panel: T.STACK_PANEL - skin_button: T.BUTTON - skin_model: T.CUSTOM - skin_model_clipper: T.PANEL - skins_grid_item: T.PANEL - "skins_grid_item/clip": T.PANEL - "skins_grid_item/clip/model": T.CUSTOM - "skins_grid_item/button": T.BUTTON - "skins_grid_item/selectFrame": T.IMAGE - skins_grid: T.GRID - cycle_pack_button: T.BUTTON - cycle_pack_left_button: T.BUTTON - cycle_pack_right_button: T.BUTTON - banner_fill: T.IMAGE - skin_picker: T.IMAGE - "skin_picker/left": T.BUTTON - "skin_picker/sg": T.GRID - "skin_picker/right": T.BUTTON - name_edit: T.EDIT_BOX - advanced_button: T.PANEL - "advanced_button/button": T.BUTTON - dialog_button: T.PANEL - "dialog_button/button": T.BUTTON - basic_stack_panel: T.STACK_PANEL - "basic_stack_panel/top_pad": T.PANEL - "basic_stack_panel/name_label": T.LABEL - "basic_stack_panel/name_padding": T.PANEL - "basic_stack_panel/name_edit": T.EDIT_BOX - "basic_stack_panel/dialog_pre_padding": T.PANEL - "basic_stack_panel/dialog_label": T.LABEL - "basic_stack_panel/dialog_post_padding": T.PANEL - "basic_stack_panel/dialog__padding": T.PANEL - "basic_stack_panel/dialog_button": T.PANEL - "basic_stack_panel/appearance_pre_padding": T.PANEL - "basic_stack_panel/appearance_label": T.LABEL - "basic_stack_panel/appearance_post_padding": T.PANEL - "basic_stack_panel/skins": T.IMAGE - "basic_stack_panel/advanced_button": T.PANEL - basic_content: T.PANEL - "basic_content/basic": T.STACK_PANEL - advanced_stack_panel: T.STACK_PANEL - "advanced_stack_panel/top_pad": T.PANEL - "advanced_stack_panel/add_help_text": T.STACK_PANEL - "advanced_stack_panel/middle_pad": T.PANEL - "advanced_stack_panel/actions": T.STACK_PANEL - "advanced_stack_panel/add_buttons": T.STACK_PANEL - "advanced_stack_panel/bottom_pad": T.PANEL - action_title: T.LABEL - plus_icon: T.IMAGE - plus_button: T.BUTTON - action_text_edit: T.EDIT_BOX - maximized_action_edit: T.EDIT_BOX - action_edit: T.STACK_PANEL - "action_edit/text_edit": T.EDIT_BOX - "action_edit/expand": T.BUTTON - button_name_edit: T.EDIT_BOX - command_toggle: T.TOGGLE - command_toggle_panel: T.PANEL - "command_toggle_panel/command_toggle": T.TOGGLE - "command_toggle_panel/toggle_label": T.LABEL - action_mode: T.STACK_PANEL - "action_mode/button_mode_toggle_panel": T.PANEL - "action_mode/on_enter_toggle_panel": T.PANEL - "action_mode/on_exit_toggle_panel": T.PANEL - button_name_label: T.LABEL - url_notifications: T.STACK_PANEL - "url_notifications/empty_uri_warning": T.IMAGE - "url_notifications/invalid_uri_warning": T.IMAGE - action_template: T.STACK_PANEL - "action_template/title": T.LABEL - "action_template/label_pad": T.PANEL - "action_template/edit": T.STACK_PANEL - "action_template/edit_pad": T.PANEL - "action_template/url_warning": T.STACK_PANEL - "action_template/url_pad": T.PANEL - "action_template/action_mode": T.STACK_PANEL - "action_template/mode_pad": T.PANEL - "action_template/button_name_label": T.LABEL - "action_template/button_name": T.EDIT_BOX - action_command: T.STACK_PANEL - action_url: T.STACK_PANEL - padded_action: T.STACK_PANEL - "padded_action/action": T.IMAGE - "padded_action/padding": T.PANEL - action: T.IMAGE - "action/trash": T.BUTTON - "action/command": T.STACK_PANEL - "action/url": T.STACK_PANEL - action_panel: T.STACK_PANEL - add_button: T.BUTTON - help_label: T.LABEL - add_help_section: T.STACK_PANEL - "add_help_section/text_url": T.PANEL - "add_help_section/text_url/tts_border": T.BUTTON - "add_help_section/text_url/wrapper_panel_url": T.STACK_PANEL - "add_help_section/text_url/wrapper_panel_url/text_url_a": T.LABEL - "add_help_section/text_url/wrapper_panel_url/padding": T.PANEL - "add_help_section/text_url/wrapper_panel_url/text_url_b": T.LABEL - "add_help_section/padding": T.PANEL - "add_help_section/text_command": T.PANEL - "add_help_section/text_command/tts_border": T.BUTTON - "add_help_section/text_command/wrapper_panel_command": T.STACK_PANEL - "add_help_section/text_command/wrapper_panel_command/text_command_a": T.LABEL - "add_help_section/text_command/wrapper_panel_command/padding": T.PANEL - "add_help_section/text_command/wrapper_panel_command/text_command_b": T.LABEL - add_help_text: T.STACK_PANEL - add_buttons: T.STACK_PANEL - "add_buttons/add_url": T.BUTTON - "add_buttons/padding": T.PANEL - "add_buttons/add_command": T.BUTTON - advanced_scrolling_panel: T.PANEL - advanced_scrolling_content: T.PANEL - "advanced_scrolling_content/advanced": T.STACK_PANEL - message_model: T.PANEL - "message_model/model": T.CUSTOM - clipped_message_model: T.PANEL - "clipped_message_model/model": T.PANEL - message_model_window: T.IMAGE - "message_model_window/model": T.PANEL - "message_model_window/immersive_reader_button": T.BUTTON - edit_box_background: T.PANEL - npc_message: T.EDIT_BOX - "npc_message/label": T.LABEL - "npc_message/visibility_panel": T.PANEL - "npc_message/visibility_panel/place_holder": T.LABEL - "npc_message/background": T.PANEL - text_scroll: T.PANEL - student_message_bubble: T.IMAGE - "student_message_bubble/dialog_panel": T.PANEL - "student_message_bubble/dialog_panel/text_scroll": T.PANEL - bubble_point: T.IMAGE - student_message_section: T.PANEL - "student_message_section/model": T.IMAGE - "student_message_section/point": T.IMAGE - "student_message_section/message": T.IMAGE - student_button_label: T.LABEL - student_button_label_panel: T.PANEL - "student_button_label_panel/url": T.LABEL - "student_button_label_panel/command": T.LABEL - student_button: T.PANEL - "student_button/button": T.BUTTON - student_buttons: T.PANEL - "student_buttons/buttons": T.STACK_PANEL - "student_buttons/buttons/actions": T.GRID - student_stack_panel: T.STACK_PANEL - "student_stack_panel/top_pad": T.PANEL - "student_stack_panel/message": T.PANEL - "student_stack_panel/message_pad": T.PANEL - "student_stack_panel/buttons": T.PANEL - student_view_content: T.PANEL - "student_view_content/student": T.STACK_PANEL - "student_view_content/close": T.PANEL - close_button_base: T.BUTTON - "close_button_base/default": T.PANEL - "close_button_base/hover": T.PANEL - "close_button_base/pressed": T.PANEL - x_close_button: T.BUTTON - ignorable_x_close_button: T.PANEL - "ignorable_x_close_button/button": T.BUTTON - close_button_holder: T.PANEL - "close_button_holder/close_basic": T.BUTTON - "close_button_holder/close_student_edit": T.PANEL - "close_button_holder/close_student": T.PANEL - "close_button_holder/close_maximized_action_edit": T.BUTTON - "close_button_holder/close_advanced": T.BUTTON - main_content: T.PANEL - "main_content/basic": T.PANEL - "main_content/advanced": T.PANEL - "main_content/maximized_action_edit": T.EDIT_BOX - "main_content/close": T.PANEL - root_panel: T.PANEL - gamepad_helper_exit_text: T.LABEL - close_text: T.STACK_PANEL - npc_screen_contents: T.PANEL - "npc_screen_contents/teacher": T.PANEL - "npc_screen_contents/student": T.PANEL - "npc_screen_contents/npc_screen_close": T.STACK_PANEL - npc_screen: T.SCREEN + "multiline_text_edit_control": T.EDIT_BOX, + "text_edit_control": T.EDIT_BOX, + "label_padding": T.PANEL, + "main_stack_panel": T.STACK_PANEL, + "skin_button": T.BUTTON, + "skin_model": T.CUSTOM, + "skin_model_clipper": T.PANEL, + "skins_grid_item": T.PANEL, + "skins_grid_item/clip": T.PANEL, + "skins_grid_item/clip/model": T.CUSTOM, + "skins_grid_item/button": T.BUTTON, + "skins_grid_item/selectFrame": T.IMAGE, + "skins_grid": T.GRID, + "cycle_pack_button": T.BUTTON, + "cycle_pack_left_button": T.BUTTON, + "cycle_pack_right_button": T.BUTTON, + "banner_fill": T.IMAGE, + "skin_picker": T.IMAGE, + "skin_picker/left": T.BUTTON, + "skin_picker/sg": T.GRID, + "skin_picker/right": T.BUTTON, + "name_edit": T.EDIT_BOX, + "advanced_button": T.PANEL, + "advanced_button/button": T.BUTTON, + "dialog_button": T.PANEL, + "dialog_button/button": T.BUTTON, + "basic_stack_panel": T.STACK_PANEL, + "basic_stack_panel/top_pad": T.PANEL, + "basic_stack_panel/name_label": T.LABEL, + "basic_stack_panel/name_padding": T.PANEL, + "basic_stack_panel/name_edit": T.EDIT_BOX, + "basic_stack_panel/dialog_pre_padding": T.PANEL, + "basic_stack_panel/dialog_label": T.LABEL, + "basic_stack_panel/dialog_post_padding": T.PANEL, + "basic_stack_panel/dialog__padding": T.PANEL, + "basic_stack_panel/dialog_button": T.PANEL, + "basic_stack_panel/appearance_pre_padding": T.PANEL, + "basic_stack_panel/appearance_label": T.LABEL, + "basic_stack_panel/appearance_post_padding": T.PANEL, + "basic_stack_panel/skins": T.IMAGE, + "basic_stack_panel/advanced_button": T.PANEL, + "basic_content": T.PANEL, + "basic_content/basic": T.STACK_PANEL, + "advanced_stack_panel": T.STACK_PANEL, + "advanced_stack_panel/top_pad": T.PANEL, + "advanced_stack_panel/add_help_text": T.STACK_PANEL, + "advanced_stack_panel/middle_pad": T.PANEL, + "advanced_stack_panel/actions": T.STACK_PANEL, + "advanced_stack_panel/add_buttons": T.STACK_PANEL, + "advanced_stack_panel/bottom_pad": T.PANEL, + "action_title": T.LABEL, + "plus_icon": T.IMAGE, + "plus_button": T.BUTTON, + "action_text_edit": T.EDIT_BOX, + "maximized_action_edit": T.EDIT_BOX, + "action_edit": T.STACK_PANEL, + "action_edit/text_edit": T.EDIT_BOX, + "action_edit/expand": T.BUTTON, + "button_name_edit": T.EDIT_BOX, + "command_toggle": T.TOGGLE, + "command_toggle_panel": T.PANEL, + "command_toggle_panel/command_toggle": T.TOGGLE, + "command_toggle_panel/toggle_label": T.LABEL, + "action_mode": T.STACK_PANEL, + "action_mode/button_mode_toggle_panel": T.PANEL, + "action_mode/on_enter_toggle_panel": T.PANEL, + "action_mode/on_exit_toggle_panel": T.PANEL, + "button_name_label": T.LABEL, + "url_notifications": T.STACK_PANEL, + "url_notifications/empty_uri_warning": T.IMAGE, + "url_notifications/invalid_uri_warning": T.IMAGE, + "action_template": T.STACK_PANEL, + "action_template/title": T.LABEL, + "action_template/label_pad": T.PANEL, + "action_template/edit": T.STACK_PANEL, + "action_template/edit_pad": T.PANEL, + "action_template/url_warning": T.STACK_PANEL, + "action_template/url_pad": T.PANEL, + "action_template/action_mode": T.STACK_PANEL, + "action_template/mode_pad": T.PANEL, + "action_template/button_name_label": T.LABEL, + "action_template/button_name": T.EDIT_BOX, + "action_command": T.STACK_PANEL, + "action_url": T.STACK_PANEL, + "padded_action": T.STACK_PANEL, + "padded_action/action": T.IMAGE, + "padded_action/padding": T.PANEL, + "action": T.IMAGE, + "action/trash": T.BUTTON, + "action/command": T.STACK_PANEL, + "action/url": T.STACK_PANEL, + "action_panel": T.STACK_PANEL, + "add_button": T.BUTTON, + "help_label": T.LABEL, + "add_help_section": T.STACK_PANEL, + "add_help_section/text_url": T.PANEL, + "add_help_section/text_url/tts_border": T.BUTTON, + "add_help_section/text_url/wrapper_panel_url": T.STACK_PANEL, + "add_help_section/text_url/wrapper_panel_url/text_url_a": T.LABEL, + "add_help_section/text_url/wrapper_panel_url/padding": T.PANEL, + "add_help_section/text_url/wrapper_panel_url/text_url_b": T.LABEL, + "add_help_section/padding": T.PANEL, + "add_help_section/text_command": T.PANEL, + "add_help_section/text_command/tts_border": T.BUTTON, + "add_help_section/text_command/wrapper_panel_command": T.STACK_PANEL, + "add_help_section/text_command/wrapper_panel_command/text_command_a": T.LABEL, + "add_help_section/text_command/wrapper_panel_command/padding": T.PANEL, + "add_help_section/text_command/wrapper_panel_command/text_command_b": T.LABEL, + "add_help_text": T.STACK_PANEL, + "add_buttons": T.STACK_PANEL, + "add_buttons/add_url": T.BUTTON, + "add_buttons/padding": T.PANEL, + "add_buttons/add_command": T.BUTTON, + "advanced_scrolling_panel": T.PANEL, + "advanced_scrolling_content": T.PANEL, + "advanced_scrolling_content/advanced": T.STACK_PANEL, + "message_model": T.PANEL, + "message_model/model": T.CUSTOM, + "clipped_message_model": T.PANEL, + "clipped_message_model/model": T.PANEL, + "message_model_window": T.IMAGE, + "message_model_window/model": T.PANEL, + "message_model_window/immersive_reader_button": T.BUTTON, + "edit_box_background": T.PANEL, + "npc_message": T.EDIT_BOX, + "npc_message/label": T.LABEL, + "npc_message/visibility_panel": T.PANEL, + "npc_message/visibility_panel/place_holder": T.LABEL, + "npc_message/background": T.PANEL, + "text_scroll": T.PANEL, + "student_message_bubble": T.IMAGE, + "student_message_bubble/dialog_panel": T.PANEL, + "student_message_bubble/dialog_panel/text_scroll": T.PANEL, + "bubble_point": T.IMAGE, + "student_message_section": T.PANEL, + "student_message_section/model": T.IMAGE, + "student_message_section/point": T.IMAGE, + "student_message_section/message": T.IMAGE, + "student_button_label": T.LABEL, + "student_button_label_panel": T.PANEL, + "student_button_label_panel/url": T.LABEL, + "student_button_label_panel/command": T.LABEL, + "student_button": T.PANEL, + "student_button/button": T.BUTTON, + "student_buttons": T.PANEL, + "student_buttons/buttons": T.STACK_PANEL, + "student_buttons/buttons/actions": T.GRID, + "student_stack_panel": T.STACK_PANEL, + "student_stack_panel/top_pad": T.PANEL, + "student_stack_panel/message": T.PANEL, + "student_stack_panel/message_pad": T.PANEL, + "student_stack_panel/buttons": T.PANEL, + "student_view_content": T.PANEL, + "student_view_content/student": T.STACK_PANEL, + "student_view_content/close": T.PANEL, + "close_button_base": T.BUTTON, + "close_button_base/default": T.PANEL, + "close_button_base/hover": T.PANEL, + "close_button_base/pressed": T.PANEL, + "x_close_button": T.BUTTON, + "ignorable_x_close_button": T.PANEL, + "ignorable_x_close_button/button": T.BUTTON, + "close_button_holder": T.PANEL, + "close_button_holder/close_basic": T.BUTTON, + "close_button_holder/close_student_edit": T.PANEL, + "close_button_holder/close_student": T.PANEL, + "close_button_holder/close_maximized_action_edit": T.BUTTON, + "close_button_holder/close_advanced": T.BUTTON, + "main_content": T.PANEL, + "main_content/basic": T.PANEL, + "main_content/advanced": T.PANEL, + "main_content/maximized_action_edit": T.EDIT_BOX, + "main_content/close": T.PANEL, + "root_panel": T.PANEL, + "gamepad_helper_exit_text": T.LABEL, + "close_text": T.STACK_PANEL, + "npc_screen_contents": T.PANEL, + "npc_screen_contents/teacher": T.PANEL, + "npc_screen_contents/student": T.PANEL, + "npc_screen_contents/npc_screen_close": T.STACK_PANEL, + "npc_screen": T.SCREEN, } export type OnlineSafetyType = { - online_safety_proceed_button: T.BUTTON - online_safety_back_button: T.BUTTON - online_safety_description: T.LABEL - ip_safety_description: T.LABEL - online_safety_label_panel: T.PANEL - ip_safety_label_panel: T.PANEL - do_not_show_checkbox: T.TOGGLE - "do_not_show_checkbox/header_description_stack_panel": T.STACK_PANEL - "do_not_show_checkbox/header_description_stack_panel/checkbox_visuals": T.PANEL - "do_not_show_checkbox/header_description_stack_panel/buffer_panel": T.PANEL - "do_not_show_checkbox/header_description_stack_panel/buffer_panel/label": T.LABEL - "do_not_show_checkbox/header_description_stack_panel/another_panel": T.PANEL - online_safety_dialog: T.PANEL - ip_safety_dialog: T.PANEL - gamepad_helpers: T.PANEL - "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL - online_safety_screen: T.SCREEN - online_safety_screen_content: T.PANEL - "online_safety_screen_content/online_safety_dialog": T.PANEL - "online_safety_screen_content/gamepad_helpers": T.PANEL - ip_safety_screen: T.SCREEN - ip_safety_screen_content: T.PANEL - "ip_safety_screen_content/ip_safety_dialog": T.PANEL - "ip_safety_screen_content/gamepad_helpers": T.PANEL + "online_safety_proceed_button": T.BUTTON, + "online_safety_back_button": T.BUTTON, + "online_safety_description": T.LABEL, + "ip_safety_description": T.LABEL, + "online_safety_label_panel": T.PANEL, + "ip_safety_label_panel": T.PANEL, + "do_not_show_checkbox": T.TOGGLE, + "do_not_show_checkbox/header_description_stack_panel": T.STACK_PANEL, + "do_not_show_checkbox/header_description_stack_panel/checkbox_visuals": T.PANEL, + "do_not_show_checkbox/header_description_stack_panel/buffer_panel": T.PANEL, + "do_not_show_checkbox/header_description_stack_panel/buffer_panel/label": T.LABEL, + "do_not_show_checkbox/header_description_stack_panel/another_panel": T.PANEL, + "online_safety_dialog": T.PANEL, + "ip_safety_dialog": T.PANEL, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL, + "online_safety_screen": T.SCREEN, + "online_safety_screen_content": T.PANEL, + "online_safety_screen_content/online_safety_dialog": T.PANEL, + "online_safety_screen_content/gamepad_helpers": T.PANEL, + "ip_safety_screen": T.SCREEN, + "ip_safety_screen_content": T.PANEL, + "ip_safety_screen_content/ip_safety_dialog": T.PANEL, + "ip_safety_screen_content/gamepad_helpers": T.PANEL, } export type PackSettingsType = { - background: T.IMAGE - screen: T.SCREEN - main_screen_content: T.PANEL - pack_scroll_panel: T.PANEL - scrolling_content: T.STACK_PANEL - "scrolling_content/content_tiering_panel": T.STACK_PANEL - "scrolling_content/generated_form": T.STACK_PANEL - content_tiering_panel: T.STACK_PANEL - "content_tiering_panel/label_panel": T.PANEL - "content_tiering_panel/label_panel/content_tier_label": T.LABEL - "content_tiering_panel/label_panel/unsupported_content_tier_label": T.LABEL - "content_tiering_panel/slider_panel": T.PANEL - "content_tiering_panel/slider_panel/content_tier_slider": T.SLIDER - "content_tiering_panel/incompatible_label_panel": T.PANEL - "content_tiering_panel/incompatible_label_panel/label": T.LABEL + "background": T.IMAGE, + "screen": T.SCREEN, + "main_screen_content": T.PANEL, + "pack_scroll_panel": T.PANEL, + "scrolling_content": T.STACK_PANEL, + "scrolling_content/content_tiering_panel": T.STACK_PANEL, + "scrolling_content/generated_form": T.STACK_PANEL, + "content_tiering_panel": T.STACK_PANEL, + "content_tiering_panel/label_panel": T.PANEL, + "content_tiering_panel/label_panel/content_tier_label": T.LABEL, + "content_tiering_panel/label_panel/unsupported_content_tier_label": T.LABEL, + "content_tiering_panel/slider_panel": T.PANEL, + "content_tiering_panel/slider_panel/content_tier_slider": T.SLIDER, + "content_tiering_panel/incompatible_label_panel": T.PANEL, + "content_tiering_panel/incompatible_label_panel/label": T.LABEL, } export type PanoramaType = { - panorama_view: T.PANEL - "panorama_view/pan_left": T.BUTTON - "panorama_view/screenshot": T.INPUT_PANEL - "panorama_view/pan_right": T.BUTTON - panorama_input_panel: T.INPUT_PANEL - "panorama_input_panel/image_border": T.IMAGE - "panorama_input_panel/image_border/panorama_key_art": T.CUSTOM - "panorama_input_panel/image_border/progress_loading": T.PANEL - pan_left_button: T.BUTTON - pan_right_button: T.BUTTON + "panorama_view": T.PANEL, + "panorama_view/pan_left": T.BUTTON, + "panorama_view/screenshot": T.INPUT_PANEL, + "panorama_view/pan_right": T.BUTTON, + "panorama_input_panel": T.INPUT_PANEL, + "panorama_input_panel/image_border": T.IMAGE, + "panorama_input_panel/image_border/panorama_key_art": T.CUSTOM, + "panorama_input_panel/image_border/progress_loading": T.PANEL, + "pan_left_button": T.BUTTON, + "pan_right_button": T.BUTTON, } export type PatchNotesType = { - solid_texture: T.IMAGE - image_with_background: T.IMAGE - "image_with_background/image": T.UNKNOWN - "image_with_background/image/loading_animation": T.PANEL - white_image: T.IMAGE - patch_main_image: T.IMAGE - store_image: T.IMAGE - patch_notes_header_background: T.PANEL - "patch_notes_header_background/black_background": T.IMAGE - "patch_notes_header_background/black_background/content": T.UNKNOWN - button_label_panel: T.PANEL - "button_label_panel/text_label": T.LABEL - button_content: T.PANEL - "button_content/button_label2": T.PANEL - patch_image: T.IMAGE - patch_notes_header_content_without_offer: T.PANEL - "patch_notes_header_content_without_offer/patch_image": T.IMAGE - patch_notes_header_content_with_offer: T.STACK_PANEL - "patch_notes_header_content_with_offer/patch_image": T.IMAGE - "patch_notes_header_content_with_offer/padding": T.PANEL - "patch_notes_header_content_with_offer/store_item_section": T.STACK_PANEL - "patch_notes_header_content_with_offer/store_item_section/store_image": T.IMAGE - "patch_notes_header_content_with_offer/store_item_section/padding": T.PANEL - "patch_notes_header_content_with_offer/store_item_section/store_button": T.PANEL - store_button: T.PANEL - "store_button/store_button": T.BUTTON - "store_button/loading_animation": T.BUTTON - patch_notes_header: T.PANEL - "patch_notes_header/patch_notes_background": T.PANEL - scroll_content: T.STACK_PANEL - "scroll_content/padding_0": T.PANEL - "scroll_content/patch_notes_header": T.PANEL - "scroll_content/padding_1": T.PANEL - "scroll_content/tts_label_wrapper": T.PANEL - patch_notes_panel: T.PANEL - "patch_notes_panel/patch_notes_text": T.LABEL - "patch_notes_panel/patch_notes_text/loading_animation": T.PANEL - patch_notes_content: T.PANEL - "patch_notes_content/scrolling_panel": T.PANEL - continue_button: T.BUTTON - patch_notes_dialog: T.PANEL - patch_notes_screen: T.SCREEN - sunsetting_button_panel: T.STACK_PANEL - "sunsetting_button_panel/padding_0": T.PANEL - "sunsetting_button_panel/more_info_button": T.BUTTON - "sunsetting_button_panel/padding_1": T.PANEL - "sunsetting_button_panel/continue_button": T.BUTTON - "sunsetting_button_panel/padding_2": T.PANEL - "sunsetting_button_panel/sunsetting_toggle_panel": T.TOGGLE - "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel": T.STACK_PANEL - "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/checkbox_visuals": T.PANEL - "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel": T.PANEL - "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel/label": T.LABEL - "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/another_panel": T.PANEL - sunsetting_content: T.PANEL - "sunsetting_content/scrolling_panel": T.PANEL - sunsetting_dialog: T.PANEL - sunsetting_screen: T.SCREEN + "solid_texture": T.IMAGE, + "image_with_background": T.IMAGE, + "image_with_background/image": T.UNKNOWN, + "image_with_background/image/loading_animation": T.PANEL, + "white_image": T.IMAGE, + "patch_main_image": T.IMAGE, + "store_image": T.IMAGE, + "patch_notes_header_background": T.PANEL, + "patch_notes_header_background/black_background": T.IMAGE, + "patch_notes_header_background/black_background/content": T.UNKNOWN, + "button_label_panel": T.PANEL, + "button_label_panel/text_label": T.LABEL, + "button_content": T.PANEL, + "button_content/button_label2": T.PANEL, + "patch_image": T.IMAGE, + "patch_notes_header_content_without_offer": T.PANEL, + "patch_notes_header_content_without_offer/patch_image": T.IMAGE, + "patch_notes_header_content_with_offer": T.STACK_PANEL, + "patch_notes_header_content_with_offer/patch_image": T.IMAGE, + "patch_notes_header_content_with_offer/padding": T.PANEL, + "patch_notes_header_content_with_offer/store_item_section": T.STACK_PANEL, + "patch_notes_header_content_with_offer/store_item_section/store_image": T.IMAGE, + "patch_notes_header_content_with_offer/store_item_section/padding": T.PANEL, + "patch_notes_header_content_with_offer/store_item_section/store_button": T.PANEL, + "store_button": T.PANEL, + "store_button/store_button": T.BUTTON, + "store_button/loading_animation": T.BUTTON, + "patch_notes_header": T.PANEL, + "patch_notes_header/patch_notes_background": T.PANEL, + "scroll_content": T.STACK_PANEL, + "scroll_content/padding_0": T.PANEL, + "scroll_content/patch_notes_header": T.PANEL, + "scroll_content/padding_1": T.PANEL, + "scroll_content/tts_label_wrapper": T.PANEL, + "patch_notes_panel": T.PANEL, + "patch_notes_panel/patch_notes_text": T.LABEL, + "patch_notes_panel/patch_notes_text/loading_animation": T.PANEL, + "patch_notes_content": T.PANEL, + "patch_notes_content/scrolling_panel": T.PANEL, + "continue_button": T.BUTTON, + "patch_notes_dialog": T.PANEL, + "patch_notes_screen": T.SCREEN, + "sunsetting_button_panel": T.STACK_PANEL, + "sunsetting_button_panel/padding_0": T.PANEL, + "sunsetting_button_panel/more_info_button": T.BUTTON, + "sunsetting_button_panel/padding_1": T.PANEL, + "sunsetting_button_panel/continue_button": T.BUTTON, + "sunsetting_button_panel/padding_2": T.PANEL, + "sunsetting_button_panel/sunsetting_toggle_panel": T.TOGGLE, + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel": T.STACK_PANEL, + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/checkbox_visuals": T.PANEL, + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel": T.PANEL, + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel/label": T.LABEL, + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/another_panel": T.PANEL, + "sunsetting_content": T.PANEL, + "sunsetting_content/scrolling_panel": T.PANEL, + "sunsetting_dialog": T.PANEL, + "sunsetting_screen": T.SCREEN, } export type PauseType = { - pause_icon: T.IMAGE - feedback_icon: T.IMAGE - change_skin_icon: T.IMAGE - take_screenshot_icon: T.IMAGE - settings_icon: T.IMAGE - achievements_icon: T.IMAGE - alex_icon: T.IMAGE - profile_gamerpic: T.CUSTOM - button_x: T.STACK_PANEL - dressing_room_controller_button_content: T.PANEL - "dressing_room_controller_button_content/button_x": T.STACK_PANEL - "dressing_room_controller_button_content/button_label_panel": T.PANEL - "dressing_room_controller_button_content/button_label_panel/button_label_text_left": T.LABEL - controller_button_label: T.LABEL - column_frame: T.PANEL - dressing_room_button_gamepad: T.BUTTON - dressing_room_button: T.BUTTON - profile_button_content: T.STACK_PANEL - "profile_button_content/button_offset_wrapper": T.PANEL - "profile_button_content/button_offset_wrapper/button_x": T.STACK_PANEL - "profile_button_content/gamerpic_offset_wrapper": T.PANEL - "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border": T.PANEL - "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic": T.CUSTOM - "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon": T.IMAGE - "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black": T.IMAGE - "profile_button_content/padding_middle": T.PANEL - "profile_button_content/vertically_central_text": T.STACK_PANEL - "profile_button_content/vertically_central_text/top_padding": T.PANEL - "profile_button_content/vertically_central_text/profile_button_label": T.LABEL - "profile_button_content/padding_right": T.PANEL - profile_button: T.BUTTON - skin_viewer_panel: T.INPUT_PANEL - "skin_viewer_panel/paper_doll_panel": T.PANEL - "skin_viewer_panel/paper_doll_panel/paper_doll": T.CUSTOM - "skin_viewer_panel/paper_doll_name_tag": T.CUSTOM - skin_panel: T.PANEL - "skin_panel/interior": T.STACK_PANEL - skin_panel_interior: T.STACK_PANEL - "skin_panel_interior/offset_panel": T.PANEL - "skin_panel_interior/offset_panel/viewer_panel": T.INPUT_PANEL - "skin_panel_interior/fill_1": T.PANEL - "skin_panel_interior/change_profile_panel": T.STACK_PANEL - "skin_panel_interior/change_profile_panel/centering_panel_1": T.PANEL - "skin_panel_interior/change_profile_panel/centering_panel_1/dressing_room_button": T.BUTTON - "skin_panel_interior/change_profile_panel/centering_panel_2": T.INPUT_PANEL - "skin_panel_interior/change_profile_panel/centering_panel_2/dressing_room_button_gamepad": T.BUTTON - "skin_panel_interior/change_profile_panel/centering_panel_3": T.INPUT_PANEL - "skin_panel_interior/change_profile_panel/centering_panel_3/profile_button": T.BUTTON - pause_button_template: T.BUTTON - grid_button_template: T.BUTTON - return_to_game_button: T.BUTTON - realms_stories_button_panel: T.PANEL - "realms_stories_button_panel/realms_stories_button": T.BUTTON - "realms_stories_button_panel/unread_story_count_panel": T.PANEL - realms_stories_button: T.BUTTON - unread_story_count_panel: T.PANEL - "unread_story_count_panel/text": T.LABEL - "unread_story_count_panel/text/background": T.IMAGE - store_button_panel: T.PANEL - "store_button_panel/store_button": T.BUTTON - "store_button_panel/store_error_button": T.BUTTON - store_button: T.BUTTON - store_error_button: T.BUTTON - store_error_button_content: T.IMAGE - "store_error_button_content/marketplace_button_label": T.LABEL - settings_button: T.BUTTON - how_to_play_button: T.BUTTON - invite_players_button: T.BUTTON - buy_button: T.BUTTON - quit_button: T.BUTTON - feedback_button: T.BUTTON - feedback_icon_button: T.PANEL - "feedback_icon_button/feedback_button": T.BUTTON - take_screenshot_gamepad_button_content: T.PANEL - "take_screenshot_gamepad_button_content/button_y": T.STACK_PANEL - "take_screenshot_gamepad_button_content/take_screenshot_icon": T.IMAGE - take_screenshot_gamepad_button: T.BUTTON - achievements_button_small: T.BUTTON - settings_button_small: T.BUTTON - take_screenshot_button: T.BUTTON - pause_screen: T.SCREEN - pause_screen_content: T.PANEL - "pause_screen_content/pause_screen_main_panels": T.STACK_PANEL - "pause_screen_content/skin_panel": T.PANEL - "pause_screen_content/friendsdrawer_button_panel": T.PANEL - "pause_screen_content/gamepad_helpers": T.PANEL - "pause_screen_content/keyboard_helpers": T.PANEL - friendsdrawer_button_panel: T.PANEL - "friendsdrawer_button_panel/friendsdrawer_container_stack_panel": T.PANEL - "friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friendsdrawer_button": T.BUTTON - "friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friends_drawer_ftue_popup": T.BUTTON - pause_screen_main_panels: T.STACK_PANEL - "pause_screen_main_panels/menu": T.IMAGE - left_buttons_panel: T.IMAGE - "left_buttons_panel/filler": T.PANEL - "left_buttons_panel/trialTime": T.CUSTOM - "left_buttons_panel/the_rest_panel": T.STACK_PANEL - smaller_buttons_panel: T.STACK_PANEL - "smaller_buttons_panel/stacked_column": T.STACK_PANEL - "smaller_buttons_panel/stacked_column/fill_1": T.PANEL - "smaller_buttons_panel/stacked_column/side_padding": T.PANEL - "smaller_buttons_panel/stacked_column/small_settings_button": T.INPUT_PANEL - "smaller_buttons_panel/stacked_column/small_settings_button/small_settings_btn": T.BUTTON - "smaller_buttons_panel/stacked_column/small_settings_padding": T.PANEL - "smaller_buttons_panel/stacked_column/small_achievements_button": T.INPUT_PANEL - "smaller_buttons_panel/stacked_column/small_achievements_button/small_achievements_btn": T.BUTTON - "smaller_buttons_panel/stacked_column/small_achievements_padding": T.PANEL - "smaller_buttons_panel/stacked_column/take_screenshot_btn": T.INPUT_PANEL - "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_button": T.BUTTON - "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_gamepad_button": T.BUTTON - "smaller_buttons_panel/stacked_column/screenshot_padding": T.PANEL - "smaller_buttons_panel/stacked_column/fill_3": T.PANEL - "smaller_buttons_panel/padding_bottom": T.PANEL - social_buttons_panel: T.STACK_PANEL - "social_buttons_panel/friendsbutton_panel": T.PANEL - "social_buttons_panel/friendsbutton_panel/friendsdrawer_button": T.BUTTON - "social_buttons_panel/friendsbutton_panel/friends_drawer__ftue_popup": T.BUTTON - "social_buttons_panel/invitebutton_panel": T.STACK_PANEL - "social_buttons_panel/invitebutton_panel/invite_button": T.BUTTON - "social_buttons_panel/invitebutton_panel/vertical_padding_2": T.PANEL - the_rest_panel: T.STACK_PANEL - "the_rest_panel/fill_1": T.PANEL - "the_rest_panel/pause_menu": T.PANEL - "the_rest_panel/fill_3": T.PANEL - paused_text: T.LABEL - green_tag: T.IMAGE - paused_text_panel: T.IMAGE - "paused_text_panel/pause": T.LABEL - "paused_text_panel/horizontal_stack": T.STACK_PANEL - "paused_text_panel/horizontal_stack/pause_icon": T.IMAGE - "paused_text_panel/horizontal_stack/fill_1": T.PANEL - "paused_text_panel/horizontal_stack/pause": T.LABEL - transparent_background: T.IMAGE - non_transparent_background: T.IMAGE - menu_the_rest_panel: T.PANEL - "menu_the_rest_panel/menu_button_control": T.IMAGE - menu_button_control: T.IMAGE - "menu_button_control/menu_background": T.IMAGE - pause_announcement_panel_type: T.STACK_PANEL - "pause_announcement_panel_type/horizontal_stack": T.STACK_PANEL - "pause_announcement_panel_type/horizontal_stack/fill_1": T.PANEL - "pause_announcement_panel_type/horizontal_stack/pause_text": T.IMAGE - "pause_announcement_panel_type/horizontal_stack/fill_2": T.PANEL - menu_background: T.IMAGE - "menu_background/button_panel": T.STACK_PANEL - "menu_background/button_panel/title_image": T.PANEL - "menu_background/button_panel/title_image/image": T.IMAGE - "menu_background/button_panel/fill_1": T.PANEL - "menu_background/button_panel/return_to_game_button": T.BUTTON - "menu_background/button_panel/return": T.PANEL - "menu_background/button_panel/realms_stories_button_panel": T.PANEL - "menu_background/button_panel/realms_stories": T.PANEL - "menu_background/button_panel/buy_button": T.BUTTON - "menu_background/button_panel/buy": T.PANEL - "menu_background/button_panel/store_button_panel": T.PANEL - "menu_background/button_panel/store_button_panel_padding": T.PANEL - "menu_background/button_panel/quit_button": T.BUTTON - "menu_background/button_panel/smaller_buttons": T.STACK_PANEL - "menu_background/button_panel/pause_panel": T.STACK_PANEL - info_panel_content_list: T.STACK_PANEL - "info_panel_content_list/player_list_scrolling_panel": T.PANEL - "info_panel_content_list/vertical_padding": T.PANEL - info_panel_background: T.IMAGE - info_panel: T.IMAGE - "info_panel/info_panel_background": T.IMAGE - "info_panel/info_panel_list": T.STACK_PANEL - player_panel_background: T.IMAGE - "player_panel_background/player_list_scrolling_panel": T.PANEL - player_list: T.STACK_PANEL - "player_list/vertical_padding_0": T.PANEL - "player_list/social_buttons_panel": T.STACK_PANEL - "player_list/players_label": T.LABEL - "player_list/vertical_padding_4": T.PANEL - "player_list/players_grid_panel": T.GRID - "player_list/vertical_padding_5": T.PANEL - "player_list/invite_players_button_panel": T.PANEL - "player_list/vertical_padding_6": T.PANEL - "player_list/disconnected_from_multiplayer_label_panel": T.STACK_PANEL - "player_list/vertical_padding_7": T.PANEL - player_lists: T.PANEL - "player_lists/normal_list": T.STACK_PANEL - "player_lists/scoreboard_list": T.STACK_PANEL - player_list_scrolling_panel: T.PANEL - disconnected_label: T.LABEL - disconnected_from_multiplayer_label_panel: T.STACK_PANEL - "disconnected_from_multiplayer_label_panel/disconnected_from_xbox_live_label": T.LABEL - "disconnected_from_multiplayer_label_panel/disconnected_from_third_party_label": T.LABEL - "disconnected_from_multiplayer_label_panel/disconnected_from_adhoc_label": T.LABEL - "disconnected_from_multiplayer_label_panel/disconnected_from_crossplatform_multiplayer": T.LABEL - "disconnected_from_multiplayer_label_panel/disconnected_from_multiplayer": T.LABEL - invite_players_button_panel: T.PANEL - "invite_players_button_panel/invite_players_button": T.BUTTON - ip_label: T.LABEL - players_label: T.LABEL - players_grid: T.GRID - player_grid_item: T.PANEL - "player_grid_item/player_grid_item_content": T.PANEL - player_grid_item_content: T.PANEL - "player_grid_item_content/player_button_panel": T.STACK_PANEL - "player_grid_item_content/player_button_panel/player_button_banner": T.PANEL - "player_grid_item_content/player_button_panel/player_button_banner/player_button": T.BUTTON - "player_grid_item_content/player_button_panel/player_button_banner/player_banner": T.PANEL - "player_grid_item_content/player_button_panel/player_permission_button_padding": T.PANEL - "player_grid_item_content/player_permission_button_panel": T.PANEL - "player_grid_item_content/player_permission_button_panel/player_permission_button": T.BUTTON - player_permission_button: T.BUTTON - player_permission_button_content: T.PANEL - "player_permission_button_content/permission_icon_image": T.IMAGE - vertical_padding: T.PANEL - horizontal_padding: T.PANEL - player_button_content: T.STACK_PANEL - "player_button_content/player_pic_panel": T.PANEL - "player_button_content/player_gamertag": T.PANEL - "player_button_content/platform_icon": T.PANEL - player_button: T.BUTTON - player_banner: T.PANEL - player_pic_panel: T.PANEL - "player_pic_panel/player_gamer_pic": T.IMAGE - "player_pic_panel/player_local_icon": T.IMAGE - player_local_icon: T.IMAGE - player_gamer_pic: T.IMAGE - "player_gamer_pic/player_panel_black_border": T.IMAGE - gametag_wrapper: T.PANEL - "gametag_wrapper/gamertag": T.LABEL - platform_icon_panel: T.PANEL - "platform_icon_panel/platform_icon": T.IMAGE - player_gamertag: T.LABEL - platform_icon: T.IMAGE - player_grid_banner_no_focus: T.IMAGE - player_grid_banner: T.PANEL - "player_grid_banner/player_grid_banner_no_focus": T.IMAGE - "player_grid_banner/player_grid_banner_no_focus/player_button_content": T.STACK_PANEL - "player_grid_banner/focus_border_button": T.BUTTON - focus_border_button: T.BUTTON - "focus_border_button/default": T.PANEL - "focus_border_button/hover": T.IMAGE - "focus_border_button/pressed": T.IMAGE - focus_border: T.IMAGE - pause_screen_border: T.IMAGE - filler_panel: T.PANEL - gamepad_helpers: T.PANEL - "gamepad_helpers/gamepad_helper_y": T.STACK_PANEL - keyboard_helpers: T.PANEL - "keyboard_helpers/keyboard_helper_keys": T.STACK_PANEL + "pause_icon": T.IMAGE, + "feedback_icon": T.IMAGE, + "change_skin_icon": T.IMAGE, + "take_screenshot_icon": T.IMAGE, + "settings_icon": T.IMAGE, + "achievements_icon": T.IMAGE, + "alex_icon": T.IMAGE, + "profile_gamerpic": T.CUSTOM, + "button_x": T.STACK_PANEL, + "dressing_room_controller_button_content": T.PANEL, + "dressing_room_controller_button_content/button_x": T.STACK_PANEL, + "dressing_room_controller_button_content/button_label_panel": T.PANEL, + "dressing_room_controller_button_content/button_label_panel/button_label_text_left": T.LABEL, + "controller_button_label": T.LABEL, + "column_frame": T.PANEL, + "dressing_room_button_gamepad": T.BUTTON, + "dressing_room_button": T.BUTTON, + "profile_button_content": T.STACK_PANEL, + "profile_button_content/button_offset_wrapper": T.PANEL, + "profile_button_content/button_offset_wrapper/button_x": T.STACK_PANEL, + "profile_button_content/gamerpic_offset_wrapper": T.PANEL, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border": T.PANEL, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic": T.CUSTOM, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon": T.IMAGE, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black": T.IMAGE, + "profile_button_content/padding_middle": T.PANEL, + "profile_button_content/vertically_central_text": T.STACK_PANEL, + "profile_button_content/vertically_central_text/top_padding": T.PANEL, + "profile_button_content/vertically_central_text/profile_button_label": T.LABEL, + "profile_button_content/padding_right": T.PANEL, + "profile_button": T.BUTTON, + "skin_viewer_panel": T.INPUT_PANEL, + "skin_viewer_panel/paper_doll_panel": T.PANEL, + "skin_viewer_panel/paper_doll_panel/paper_doll": T.CUSTOM, + "skin_viewer_panel/paper_doll_name_tag": T.CUSTOM, + "skin_panel": T.PANEL, + "skin_panel/interior": T.STACK_PANEL, + "skin_panel_interior": T.STACK_PANEL, + "skin_panel_interior/offset_panel": T.PANEL, + "skin_panel_interior/offset_panel/viewer_panel": T.INPUT_PANEL, + "skin_panel_interior/fill_1": T.PANEL, + "skin_panel_interior/change_profile_panel": T.STACK_PANEL, + "skin_panel_interior/change_profile_panel/centering_panel_1": T.PANEL, + "skin_panel_interior/change_profile_panel/centering_panel_1/dressing_room_button": T.BUTTON, + "skin_panel_interior/change_profile_panel/centering_panel_2": T.INPUT_PANEL, + "skin_panel_interior/change_profile_panel/centering_panel_2/dressing_room_button_gamepad": T.BUTTON, + "skin_panel_interior/change_profile_panel/centering_panel_3": T.INPUT_PANEL, + "skin_panel_interior/change_profile_panel/centering_panel_3/profile_button": T.BUTTON, + "pause_button_template": T.BUTTON, + "grid_button_template": T.BUTTON, + "return_to_game_button": T.BUTTON, + "realms_stories_button_panel": T.PANEL, + "realms_stories_button_panel/realms_stories_button": T.BUTTON, + "realms_stories_button_panel/unread_story_count_panel": T.PANEL, + "realms_stories_button": T.BUTTON, + "unread_story_count_panel": T.PANEL, + "unread_story_count_panel/text": T.LABEL, + "unread_story_count_panel/text/background": T.IMAGE, + "store_button_panel": T.PANEL, + "store_button_panel/store_button": T.BUTTON, + "store_button_panel/store_error_button": T.BUTTON, + "store_button": T.BUTTON, + "store_error_button": T.BUTTON, + "store_error_button_content": T.IMAGE, + "store_error_button_content/marketplace_button_label": T.LABEL, + "settings_button": T.BUTTON, + "how_to_play_button": T.BUTTON, + "invite_players_button": T.BUTTON, + "buy_button": T.BUTTON, + "quit_button": T.BUTTON, + "feedback_button": T.BUTTON, + "feedback_icon_button": T.PANEL, + "feedback_icon_button/feedback_button": T.BUTTON, + "take_screenshot_gamepad_button_content": T.PANEL, + "take_screenshot_gamepad_button_content/button_y": T.STACK_PANEL, + "take_screenshot_gamepad_button_content/take_screenshot_icon": T.IMAGE, + "take_screenshot_gamepad_button": T.BUTTON, + "achievements_button_small": T.BUTTON, + "settings_button_small": T.BUTTON, + "take_screenshot_button": T.BUTTON, + "pause_screen": T.SCREEN, + "pause_screen_content": T.PANEL, + "pause_screen_content/pause_screen_main_panels": T.STACK_PANEL, + "pause_screen_content/skin_panel": T.PANEL, + "pause_screen_content/friendsdrawer_button_panel": T.PANEL, + "pause_screen_content/gamepad_helpers": T.PANEL, + "pause_screen_content/keyboard_helpers": T.PANEL, + "friendsdrawer_button_panel": T.PANEL, + "friendsdrawer_button_panel/friendsdrawer_container_stack_panel": T.PANEL, + "friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friendsdrawer_button": T.BUTTON, + "friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friends_drawer_ftue_popup": T.BUTTON, + "pause_screen_main_panels": T.STACK_PANEL, + "pause_screen_main_panels/menu": T.IMAGE, + "left_buttons_panel": T.IMAGE, + "left_buttons_panel/filler": T.PANEL, + "left_buttons_panel/trialTime": T.CUSTOM, + "left_buttons_panel/the_rest_panel": T.STACK_PANEL, + "smaller_buttons_panel": T.STACK_PANEL, + "smaller_buttons_panel/stacked_column": T.STACK_PANEL, + "smaller_buttons_panel/stacked_column/fill_1": T.PANEL, + "smaller_buttons_panel/stacked_column/side_padding": T.PANEL, + "smaller_buttons_panel/stacked_column/small_settings_button": T.INPUT_PANEL, + "smaller_buttons_panel/stacked_column/small_settings_button/small_settings_btn": T.BUTTON, + "smaller_buttons_panel/stacked_column/small_settings_padding": T.PANEL, + "smaller_buttons_panel/stacked_column/small_achievements_button": T.INPUT_PANEL, + "smaller_buttons_panel/stacked_column/small_achievements_button/small_achievements_btn": T.BUTTON, + "smaller_buttons_panel/stacked_column/small_achievements_padding": T.PANEL, + "smaller_buttons_panel/stacked_column/take_screenshot_btn": T.INPUT_PANEL, + "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_button": T.BUTTON, + "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_gamepad_button": T.BUTTON, + "smaller_buttons_panel/stacked_column/screenshot_padding": T.PANEL, + "smaller_buttons_panel/stacked_column/fill_3": T.PANEL, + "smaller_buttons_panel/padding_bottom": T.PANEL, + "social_buttons_panel": T.STACK_PANEL, + "social_buttons_panel/friendsbutton_panel": T.PANEL, + "social_buttons_panel/friendsbutton_panel/friendsdrawer_button": T.BUTTON, + "social_buttons_panel/friendsbutton_panel/friends_drawer__ftue_popup": T.BUTTON, + "social_buttons_panel/invitebutton_panel": T.STACK_PANEL, + "social_buttons_panel/invitebutton_panel/invite_button": T.BUTTON, + "social_buttons_panel/invitebutton_panel/vertical_padding_2": T.PANEL, + "the_rest_panel": T.STACK_PANEL, + "the_rest_panel/fill_1": T.PANEL, + "the_rest_panel/pause_menu": T.PANEL, + "the_rest_panel/fill_3": T.PANEL, + "paused_text": T.LABEL, + "green_tag": T.IMAGE, + "paused_text_panel": T.IMAGE, + "paused_text_panel/pause": T.LABEL, + "paused_text_panel/horizontal_stack": T.STACK_PANEL, + "paused_text_panel/horizontal_stack/pause_icon": T.IMAGE, + "paused_text_panel/horizontal_stack/fill_1": T.PANEL, + "paused_text_panel/horizontal_stack/pause": T.LABEL, + "transparent_background": T.IMAGE, + "non_transparent_background": T.IMAGE, + "menu_the_rest_panel": T.PANEL, + "menu_the_rest_panel/menu_button_control": T.IMAGE, + "menu_button_control": T.IMAGE, + "menu_button_control/menu_background": T.IMAGE, + "pause_announcement_panel_type": T.STACK_PANEL, + "pause_announcement_panel_type/horizontal_stack": T.STACK_PANEL, + "pause_announcement_panel_type/horizontal_stack/fill_1": T.PANEL, + "pause_announcement_panel_type/horizontal_stack/pause_text": T.IMAGE, + "pause_announcement_panel_type/horizontal_stack/fill_2": T.PANEL, + "menu_background": T.IMAGE, + "menu_background/button_panel": T.STACK_PANEL, + "menu_background/button_panel/title_image": T.PANEL, + "menu_background/button_panel/title_image/image": T.IMAGE, + "menu_background/button_panel/fill_1": T.PANEL, + "menu_background/button_panel/return_to_game_button": T.BUTTON, + "menu_background/button_panel/return": T.PANEL, + "menu_background/button_panel/realms_stories_button_panel": T.PANEL, + "menu_background/button_panel/realms_stories": T.PANEL, + "menu_background/button_panel/buy_button": T.BUTTON, + "menu_background/button_panel/buy": T.PANEL, + "menu_background/button_panel/store_button_panel": T.PANEL, + "menu_background/button_panel/store_button_panel_padding": T.PANEL, + "menu_background/button_panel/quit_button": T.BUTTON, + "menu_background/button_panel/smaller_buttons": T.STACK_PANEL, + "menu_background/button_panel/pause_panel": T.STACK_PANEL, + "info_panel_content_list": T.STACK_PANEL, + "info_panel_content_list/player_list_scrolling_panel": T.PANEL, + "info_panel_content_list/vertical_padding": T.PANEL, + "info_panel_background": T.IMAGE, + "info_panel": T.IMAGE, + "info_panel/info_panel_background": T.IMAGE, + "info_panel/info_panel_list": T.STACK_PANEL, + "player_panel_background": T.IMAGE, + "player_panel_background/player_list_scrolling_panel": T.PANEL, + "player_list": T.STACK_PANEL, + "player_list/vertical_padding_0": T.PANEL, + "player_list/social_buttons_panel": T.STACK_PANEL, + "player_list/players_label": T.LABEL, + "player_list/vertical_padding_4": T.PANEL, + "player_list/players_grid_panel": T.GRID, + "player_list/vertical_padding_5": T.PANEL, + "player_list/invite_players_button_panel": T.PANEL, + "player_list/vertical_padding_6": T.PANEL, + "player_list/disconnected_from_multiplayer_label_panel": T.STACK_PANEL, + "player_list/vertical_padding_7": T.PANEL, + "player_lists": T.PANEL, + "player_lists/normal_list": T.STACK_PANEL, + "player_lists/scoreboard_list": T.STACK_PANEL, + "player_list_scrolling_panel": T.PANEL, + "disconnected_label": T.LABEL, + "disconnected_from_multiplayer_label_panel": T.STACK_PANEL, + "disconnected_from_multiplayer_label_panel/disconnected_from_xbox_live_label": T.LABEL, + "disconnected_from_multiplayer_label_panel/disconnected_from_third_party_label": T.LABEL, + "disconnected_from_multiplayer_label_panel/disconnected_from_adhoc_label": T.LABEL, + "disconnected_from_multiplayer_label_panel/disconnected_from_crossplatform_multiplayer": T.LABEL, + "disconnected_from_multiplayer_label_panel/disconnected_from_multiplayer": T.LABEL, + "invite_players_button_panel": T.PANEL, + "invite_players_button_panel/invite_players_button": T.BUTTON, + "ip_label": T.LABEL, + "players_label": T.LABEL, + "players_grid": T.GRID, + "player_grid_item": T.PANEL, + "player_grid_item/player_grid_item_content": T.PANEL, + "player_grid_item_content": T.PANEL, + "player_grid_item_content/player_button_panel": T.STACK_PANEL, + "player_grid_item_content/player_button_panel/player_button_banner": T.PANEL, + "player_grid_item_content/player_button_panel/player_button_banner/player_button": T.BUTTON, + "player_grid_item_content/player_button_panel/player_button_banner/player_banner": T.PANEL, + "player_grid_item_content/player_button_panel/player_permission_button_padding": T.PANEL, + "player_grid_item_content/player_permission_button_panel": T.PANEL, + "player_grid_item_content/player_permission_button_panel/player_permission_button": T.BUTTON, + "player_permission_button": T.BUTTON, + "player_permission_button_content": T.PANEL, + "player_permission_button_content/permission_icon_image": T.IMAGE, + "vertical_padding": T.PANEL, + "horizontal_padding": T.PANEL, + "player_button_content": T.STACK_PANEL, + "player_button_content/player_pic_panel": T.PANEL, + "player_button_content/player_gamertag": T.PANEL, + "player_button_content/platform_icon": T.PANEL, + "player_button": T.BUTTON, + "player_banner": T.PANEL, + "player_pic_panel": T.PANEL, + "player_pic_panel/player_gamer_pic": T.IMAGE, + "player_pic_panel/player_local_icon": T.IMAGE, + "player_local_icon": T.IMAGE, + "player_gamer_pic": T.IMAGE, + "player_gamer_pic/player_panel_black_border": T.IMAGE, + "gametag_wrapper": T.PANEL, + "gametag_wrapper/gamertag": T.LABEL, + "platform_icon_panel": T.PANEL, + "platform_icon_panel/platform_icon": T.IMAGE, + "player_gamertag": T.LABEL, + "platform_icon": T.IMAGE, + "player_grid_banner_no_focus": T.IMAGE, + "player_grid_banner": T.PANEL, + "player_grid_banner/player_grid_banner_no_focus": T.IMAGE, + "player_grid_banner/player_grid_banner_no_focus/player_button_content": T.STACK_PANEL, + "player_grid_banner/focus_border_button": T.BUTTON, + "focus_border_button": T.BUTTON, + "focus_border_button/default": T.PANEL, + "focus_border_button/hover": T.IMAGE, + "focus_border_button/pressed": T.IMAGE, + "focus_border": T.IMAGE, + "pause_screen_border": T.IMAGE, + "filler_panel": T.PANEL, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/gamepad_helper_y": T.STACK_PANEL, + "keyboard_helpers": T.PANEL, + "keyboard_helpers/keyboard_helper_keys": T.STACK_PANEL, } export type PdpType = { - download_progress: T.IMAGE - "download_progress/stacker": T.STACK_PANEL - "download_progress/stacker/sizer_text": T.PANEL - "download_progress/stacker/sizer_text/download_progress_text": T.LABEL - "download_progress/stacker/sizer_bar": T.PANEL - "download_progress/stacker/sizer_bar/download_progress_bar": T.PANEL - summary_box_button_panel: T.PANEL - "summary_box_button_panel/buttons_panel": T.STACK_PANEL - "summary_box_button_panel/download_buttons_panel": T.STACK_PANEL - "summary_box_button_panel/focus_border": T.BUTTON - interaction_button_content: T.STACK_PANEL - "interaction_button_content/line1_panel": T.PANEL - "interaction_button_content/line1_panel/upsell_text": T.LABEL - interaction_button_panel: T.PANEL - "interaction_button_panel/content_action_button": T.BUTTON - "interaction_button_panel/progress_bar": T.IMAGE - "interaction_button_panel/focus_border": T.BUTTON - download_progress_small: T.IMAGE - "download_progress_small/stacker": T.STACK_PANEL - "download_progress_small/stacker/sizer_text": T.PANEL - "download_progress_small/stacker/sizer_text/download_progress_text": T.LABEL - "download_progress_small/stacker/sizer_bar": T.PANEL - "download_progress_small/stacker/sizer_bar/download_progress_bar": T.PANEL - progress_loading_anim: T.PANEL - focus_border: T.BUTTON - "focus_border/default": T.IMAGE - "focus_border/default/loading_anim": T.PANEL - "focus_border/hover": T.IMAGE - "focus_border/hover/loading_anim": T.PANEL - "focus_border/pressed": T.IMAGE - "focus_border/pressed/loading_anim": T.PANEL - purchase_button_base: T.BUTTON - deactivated_purchase_button_base: T.BUTTON - download_buttons_panel: T.STACK_PANEL - "download_buttons_panel/progress_panel": T.STACK_PANEL - "download_buttons_panel/progress_panel/progress_bar": T.IMAGE - smooth_purchase_buttons_panel: T.STACK_PANEL - "smooth_purchase_buttons_panel/activated_purchase_buttons_panel": T.STACK_PANEL - "smooth_purchase_buttons_panel/deactivated_purchase_buttons_panel": T.STACK_PANEL - smooth_buttons_panel: T.STACK_PANEL - "smooth_buttons_panel/purchase_buttons_panel": T.STACK_PANEL - "smooth_buttons_panel/interact_filling_button": T.BUTTON - "smooth_buttons_panel/interact_exit_world_filling_button": T.BUTTON - disabled_interact_label_formfitting: T.STACK_PANEL - "disabled_interact_label_formfitting/info_icon": T.STACK_PANEL - "disabled_interact_label_formfitting/info_icon_pad": T.PANEL - "disabled_interact_label_formfitting/interact_label_panel": T.PANEL - "disabled_interact_label_formfitting/interact_label_panel/interact_label_text_left": T.LABEL - "disabled_interact_label_formfitting/pad": T.PANEL - interact_label_text: T.LABEL - activated_smooth_purchase_buttons_panel: T.STACK_PANEL - "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel": T.PANEL - "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel/smooth_purchase_with_coins_button": T.BUTTON - "activated_smooth_purchase_buttons_panel/pad_h1": T.PANEL - "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel": T.PANEL - "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel/purchase_with_currency_button": T.BUTTON - deactivated_purchase_hover_popup: T.IMAGE - deactivated_smooth_purchase_buttons_panel: T.STACK_PANEL - "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button": T.IMAGE - "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/deactivated_purchase_hover_popup": T.IMAGE - "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/content": T.STACK_PANEL - "deactivated_smooth_purchase_buttons_panel/pad_h1": T.PANEL - "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel": T.PANEL - "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel/deactivated_purchase_with_currency_button": T.BUTTON - smooth_save_share_button_panel: T.STACK_PANEL - "smooth_save_share_button_panel/pad_0": T.PANEL - "smooth_save_share_button_panel/share_button": T.BUTTON - "smooth_save_share_button_panel/pad_1": T.PANEL - "smooth_save_share_button_panel/save_button": T.BUTTON - currency_purchase_label: T.PANEL - "currency_purchase_label/currency_purchase_label_text": T.LABEL - coin_image: T.IMAGE - smooth_currency_purchase_label: T.PANEL - "smooth_currency_purchase_label/currency_purchase_label_text": T.LABEL - discount_label: T.STACK_PANEL - "discount_label/label_panel": T.PANEL - "discount_label/label_panel/label": T.LABEL - "discount_label/icon_panel": T.PANEL - "discount_label/icon_panel/icon": T.IMAGE - coin_purchase_label_text: T.LABEL - smooth_coin_purchase_label_formfitting: T.STACK_PANEL - "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel": T.PANEL - "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel": T.PANEL - "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner": T.STACK_PANEL - "smooth_coin_purchase_label_formfitting/markdown_panel": T.PANEL - "smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label": T.PANEL - "smooth_coin_purchase_label_formfitting/fill_pad_left": T.PANEL - "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel": T.PANEL - "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin": T.IMAGE - "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel": T.PANEL - "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left": T.LABEL - "smooth_coin_purchase_label_formfitting/pad": T.PANEL - "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel": T.PANEL - "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin": T.IMAGE - "smooth_coin_purchase_label_formfitting/fill_pad_right": T.PANEL - disabled_smooth_coin_purchase_label_formfitting: T.STACK_PANEL - "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel": T.PANEL - "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel": T.PANEL - "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner": T.STACK_PANEL - "disabled_smooth_coin_purchase_label_formfitting/markdown_panel": T.PANEL - "disabled_smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label": T.PANEL - "disabled_smooth_coin_purchase_label_formfitting/fill_pad_left": T.PANEL - "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel": T.INPUT_PANEL - "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel/info_bulb": T.STACK_PANEL - "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel": T.PANEL - "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin": T.IMAGE - "disabled_smooth_coin_purchase_label_formfitting/info_icon_pad": T.PANEL - "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel": T.PANEL - "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left": T.LABEL - "disabled_smooth_coin_purchase_label_formfitting/pad": T.PANEL - "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel": T.PANEL - "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin": T.IMAGE - "disabled_smooth_coin_purchase_label_formfitting/fill_pad_right": T.PANEL - share_icon: T.IMAGE - share_label: T.STACK_PANEL - "share_label/share_image_offset_panel": T.PANEL - "share_label/share_image_offset_panel/link_share": T.IMAGE - save_label_panel: T.PANEL - "save_label_panel/heart_image": T.PANEL - "save_label_panel/progress_loading": T.IMAGE - save_label: T.PANEL - "save_label/save_image_offset_panel": T.PANEL - "save_label/save_image_offset_panel/full_heart": T.IMAGE - "save_label/save_image_offset_panel/empty_heart": T.IMAGE - large_button_coin_purchase_label: T.STACK_PANEL - "large_button_coin_purchase_label/markdown_banner_filler_panel": T.PANEL - "large_button_coin_purchase_label/center_markdown_panel": T.PANEL - "large_button_coin_purchase_label/center_markdown_panel/markdown_banner": T.STACK_PANEL - "large_button_coin_purchase_label/sales_padding_0": T.PANEL - "large_button_coin_purchase_label/price_markdown_panel": T.PANEL - "large_button_coin_purchase_label/price_markdown_panel/price_markdown_label": T.PANEL - "large_button_coin_purchase_label/sales_padding_1": T.PANEL - "large_button_coin_purchase_label/left_coin_image_offset_panel": T.PANEL - "large_button_coin_purchase_label/left_coin_image_offset_panel/coin": T.IMAGE - "large_button_coin_purchase_label/coin_purchase_label_panel": T.PANEL - "large_button_coin_purchase_label/coin_purchase_label_panel/coin_purchase_label_text": T.LABEL - "large_button_coin_purchase_label/right_coin_image_offset_panel": T.PANEL - "large_button_coin_purchase_label/right_coin_image_offset_panel/coin": T.IMAGE - "large_button_coin_purchase_label/fill_padding_1": T.PANEL - price_markdown_panel: T.PANEL - "price_markdown_panel/offer_price": T.LABEL - "price_markdown_panel/offer_price/text_strike_through": T.IMAGE - vertical_padding_2px: T.PANEL - vertical_padding_4px: T.PANEL - vertical_padding_fill: T.PANEL - horizontal_padding_2px: T.PANEL - horizontal_padding_4px: T.PANEL - horizontal_padding_8px: T.PANEL - horizontal_padding_fill: T.PANEL - empty_content_panel: T.PANEL - section_header: T.PANEL - "section_header/header_label": T.LABEL - content_section_bg: T.STACK_PANEL - "content_section_bg/pad": T.PANEL - "content_section_bg/section_header": T.PANEL - "content_section_bg/bg_and_content": T.PANEL - "content_section_bg/bg_and_content/bg": T.IMAGE - content_section_boarder_bg: T.STACK_PANEL - "content_section_boarder_bg/pad": T.PANEL - "content_section_boarder_bg/bg_and_content": T.PANEL - "content_section_boarder_bg/bg_and_content/bg": T.IMAGE - "content_section_boarder_bg/bg_and_content/bg/inner": T.IMAGE - "content_section_boarder_bg/pad_3": T.PANEL - "content_section_boarder_bg/divider_3": T.PANEL - summary_factory_object: T.STACK_PANEL - "summary_factory_object/summary": T.STACK_PANEL - "summary_factory_object/navigation_tab_section": T.PANEL - "summary_factory_object/update_notification_section": T.STACK_PANEL - screenshot_carousel_factory_object: T.STACK_PANEL - "screenshot_carousel_factory_object/resource_pack_content_panel": T.STACK_PANEL - "screenshot_carousel_factory_object/pad_3": T.PANEL - "screenshot_carousel_factory_object/divider_3": T.PANEL - image_gallery_factory_object: T.STACK_PANEL - "image_gallery_factory_object/resource_pack_content_panel": T.PANEL - left_text_right_image_factory_object: T.STACK_PANEL - "left_text_right_image_factory_object/resource_pack_content_panel": T.STACK_PANEL - right_text_left_image_factory_object: T.STACK_PANEL - "right_text_left_image_factory_object/resource_pack_content_panel": T.STACK_PANEL - skin_pack_section_factory_object: T.PANEL - "skin_pack_section_factory_object/skin_pack_section_factory_content": T.STACK_PANEL - "skin_pack_section_factory_object/skin_pack_section_factory_content/skin_pack_content_panel": T.STACK_PANEL - "skin_pack_section_factory_object/skin_pack_section_factory_content/pad_3": T.PANEL - "skin_pack_section_factory_object/skin_pack_section_factory_content/divider_3": T.PANEL - panorama_view_factory_object: T.STACK_PANEL - "panorama_view_factory_object/panorama_view_content_panel": T.STACK_PANEL - "panorama_view_factory_object/pad_3": T.PANEL - "panorama_view_factory_object/divider_3": T.PANEL - ratings_factory_object: T.PANEL - "ratings_factory_object/rating_factory_object_content": T.STACK_PANEL - focus_container_button: T.BUTTON - "focus_container_button/default": T.PANEL - bundle_summary_factory_object: T.PANEL - "bundle_summary_factory_object/bundle_summary_factory_object_content": T.PANEL - pdp_cycle_offer_row_content: T.STACK_PANEL - "pdp_cycle_offer_row_content/store_row_panel": T.STACK_PANEL - "pdp_cycle_offer_row_content/pad_3": T.PANEL - "pdp_cycle_offer_row_content/divider_3": T.PANEL - pdp_cycle_offer_row_section: T.PANEL - recently_viewed_viewed_factory_object: T.PANEL - scrolling_content_stack: T.STACK_PANEL - warning_image: T.IMAGE - scaling_rating: T.PANEL - "scaling_rating/empty_rating": T.IMAGE - "scaling_rating/empty_rating/full_rating": T.IMAGE - scaling_rating_new: T.PANEL - "scaling_rating_new/empty_rating": T.IMAGE - "scaling_rating_new/empty_rating/full_rating": T.IMAGE - chart_section: T.PANEL - "chart_section/stack": T.STACK_PANEL - "chart_section/stack/star_number_panel": T.PANEL - "chart_section/stack/star_number_panel/star_number": T.LABEL - "chart_section/stack/star_panel": T.PANEL - "chart_section/stack/star_panel/star_img": T.IMAGE - "chart_section/stack/pad_0": T.PANEL - "chart_section/stack/bar_panel": T.PANEL - "chart_section/stack/bar_panel/bar": T.IMAGE - "chart_section/stack/bar_panel/bar/full_bar": T.IMAGE - "chart_section/stack/pad_1": T.PANEL - "chart_section/stack/percent": T.LABEL - ratings_chart: T.STACK_PANEL - "ratings_chart/5_star": T.PANEL - "ratings_chart/4_star": T.PANEL - "ratings_chart/3_star": T.PANEL - "ratings_chart/2_star": T.PANEL - "ratings_chart/1_star": T.PANEL - ratings_chart_panel: T.PANEL - "ratings_chart_panel/ratings_chart_content": T.STACK_PANEL - "ratings_chart_panel/ratings_chart_content/pad_0": T.PANEL - "ratings_chart_panel/ratings_chart_content/title": T.PANEL - "ratings_chart_panel/ratings_chart_content/title/title_text": T.LABEL - "ratings_chart_panel/ratings_chart_content/pad_1": T.PANEL - "ratings_chart_panel/ratings_chart_content/rating_panel": T.PANEL - "ratings_chart_panel/ratings_chart_content/rating_panel/rating": T.STACK_PANEL - "ratings_chart_panel/ratings_chart_content/rating_panel/rating/rating_bar": T.PANEL - "ratings_chart_panel/ratings_chart_content/rating_panel/rating/pad": T.PANEL - "ratings_chart_panel/ratings_chart_content/rating_text_panel": T.PANEL - "ratings_chart_panel/ratings_chart_content/rating_text_panel/rating_text": T.LABEL - "ratings_chart_panel/ratings_chart_content/count_panel": T.PANEL - "ratings_chart_panel/ratings_chart_content/count_panel/count": T.LABEL - "ratings_chart_panel/ratings_chart_content/pad_2": T.PANEL - "ratings_chart_panel/ratings_chart_content/chart": T.STACK_PANEL - "ratings_chart_panel/ratings_chart_content/pad_3": T.PANEL - ratings_box: T.PANEL - "ratings_box/ratings_panel_focus_point": T.BUTTON - "ratings_box/ratings_full_panel": T.PANEL - "ratings_box/ratings_full_panel/ratings_chart_and_button": T.STACK_PANEL - "ratings_box/ratings_full_panel/ratings_chart_and_button/chart": T.PANEL - "ratings_box/ratings_full_panel/ratings_chart_and_button/pad_1": T.PANEL - "ratings_box/divider": T.IMAGE - user_rating_star_button: T.BUTTON - "user_rating_star_button/default": T.PANEL - "user_rating_star_button/default/default_user_rating_star": T.IMAGE - "user_rating_star_button/hover": T.PANEL - "user_rating_star_button/hover/hover_user_rating_star": T.IMAGE - user_rating_star_list_grid: T.GRID - ratings_interact_panel: T.STACK_PANEL - "ratings_interact_panel/title_text": T.LABEL - "ratings_interact_panel/pad_vertical_4px": T.PANEL - "ratings_interact_panel/rating_stars_and_button_panel": T.STACK_PANEL - "ratings_interact_panel/rating_stars_and_button_panel/fill_stars": T.PANEL - "ratings_interact_panel/rating_stars_and_button_panel/fill_stars/rating_buttons": T.GRID - "ratings_interact_panel/rating_stars_and_button_panel/pad_3_percent": T.PANEL - "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel": T.PANEL - "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel/submit": T.BUTTON - "ratings_interact_panel/pad_vertical_8px": T.PANEL - "ratings_interact_panel/fill_pad": T.PANEL - "ratings_interact_panel/fill_pad/text": T.LABEL - "ratings_interact_panel/send_feedback_button": T.BUTTON - "ratings_interact_panel/pad_1": T.PANEL - ratings_info_panel: T.PANEL - "ratings_info_panel/ratings": T.PANEL - "ratings_info_panel/ratings_right": T.PANEL - "ratings_info_panel/ratings_right/ratings_interact_panel": T.STACK_PANEL - ratings_content_panel: T.STACK_PANEL - panorama_view_content: T.STACK_PANEL - "panorama_view_content/panorama_panel": T.PANEL - "panorama_view_content/panorama_panel/panorama_content": T.PANEL - skins: T.PANEL - skin_pack_content_panel: T.STACK_PANEL - resource_pack_content: T.PANEL - "resource_pack_content/screenshots": T.PANEL - image_row_left_text_content: T.STACK_PANEL - "image_row_left_text_content/buffer_panel_front": T.PANEL - "image_row_left_text_content/text_section": T.STACK_PANEL - "image_row_left_text_content/text_section/left_header": T.PANEL - "image_row_left_text_content/text_section/left_text": T.PANEL - "image_row_left_text_content/text_section/buffer_panel_bottom": T.PANEL - "image_row_left_text_content/buffer_panel_mid": T.PANEL - "image_row_left_text_content/screenshots_single": T.PANEL - "image_row_left_text_content/buffer_panel_back": T.PANEL - image_row_right_text_content: T.STACK_PANEL - "image_row_right_text_content/buffer_panel_front": T.PANEL - "image_row_right_text_content/screenshots_single": T.PANEL - "image_row_right_text_content/buffer_panel_mid": T.PANEL - "image_row_right_text_content/text_section": T.STACK_PANEL - "image_row_right_text_content/text_section/right_header": T.PANEL - "image_row_right_text_content/text_section/right_text": T.PANEL - "image_row_right_text_content/text_section/buffer_panel_bottom": T.PANEL - "image_row_right_text_content/buffer_panel_back": T.PANEL - image_row_content: T.PANEL - "image_row_content/screenshots_triple": T.STACK_PANEL - play_button: T.IMAGE - csb_expiration: T.PANEL - "csb_expiration/background": T.IMAGE - "csb_expiration/background/content_stack_panel": T.STACK_PANEL - "csb_expiration/background/content_stack_panel/icon_wrapper": T.PANEL - "csb_expiration/background/content_stack_panel/icon_wrapper/icon": T.IMAGE - "csb_expiration/background/content_stack_panel/text_wrapper": T.PANEL - "csb_expiration/background/content_stack_panel/text_wrapper/text": T.LABEL - summary_content_left_side: T.STACK_PANEL - "summary_content_left_side/pad_left": T.PANEL - "summary_content_left_side/full_content": T.STACK_PANEL - "summary_content_left_side/full_content/top": T.STACK_PANEL - "summary_content_left_side/full_content/top/image": T.PANEL - "summary_content_left_side/full_content/top/image/key_image": T.IMAGE - "summary_content_left_side/full_content/top/image/key_image/border": T.IMAGE - "summary_content_left_side/full_content/top/image/key_image/csb_expiration_banner": T.PANEL - "summary_content_left_side/full_content/top/image/key_image/video_overlay_button": T.BUTTON - "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/mask": T.IMAGE - "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/default": T.IMAGE - "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/hover": T.IMAGE - "summary_content_left_side/full_content/top/image/key_image/rtx_label": T.PANEL - "summary_content_left_side/full_content/top/divider": T.PANEL - "summary_content_left_side/full_content/top/info": T.STACK_PANEL - "summary_content_left_side/full_content/top/info/summary_title_and_author_panel": T.STACK_PANEL - "summary_content_left_side/full_content/top/info/pad_fill": T.PANEL - "summary_content_left_side/full_content/top/info/glyph_section": T.PANEL - "summary_content_left_side/full_content/top/info/glyph_section/glyph_section_panel": T.STACK_PANEL - "summary_content_left_side/full_content/top/info/ratings_summary": T.STACK_PANEL - "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display": T.STACK_PANEL - "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel": T.PANEL - "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel/rating": T.PANEL - "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/summary_rating_button": T.BUTTON - "summary_content_left_side/full_content/top/info/vibrant_visuals_badge_and_hover": T.PANEL - "summary_content_left_side/full_content/bottom": T.PANEL - offer_title_label: T.PANEL - title_and_author_panel: T.STACK_PANEL - "title_and_author_panel/title_panel": T.PANEL - "title_and_author_panel/author_button_panel": T.PANEL - "title_and_author_panel/author_button_panel/summary_author_button": T.BUTTON - description_label: T.LABEL - warning_stack_panel: T.STACK_PANEL - "warning_stack_panel/warning_icon": T.IMAGE - "warning_stack_panel/pad_0": T.PANEL - "warning_stack_panel/warning_text_panel": T.PANEL - "warning_stack_panel/warning_text_panel/warning_text": T.LABEL - warning_panel: T.PANEL - "warning_panel/background": T.IMAGE - "warning_panel/content_stack_panel": T.STACK_PANEL - description_toggle_show_button_panel: T.PANEL - "description_toggle_show_button_panel/description_bottom_right_button_border": T.IMAGE - "description_toggle_show_button_panel/description_toggle_show_button": T.BUTTON - "description_toggle_show_button_panel/warning_icon": T.IMAGE - vibrant_visuals_underline_button: T.BUTTON - vibrant_visuals_hover_popup: T.IMAGE - vibrant_visuals_badge_display: T.IMAGE - "vibrant_visuals_badge_display/vibrant_visuals_underline_button": T.BUTTON - vibrant_visuals_badge_and_hover: T.PANEL - "vibrant_visuals_badge_and_hover/vibrant_visuals_hover_popup": T.IMAGE - "vibrant_visuals_badge_and_hover/vibrant_visuals_badge_display": T.IMAGE - glyph_icon: T.IMAGE - glyph_count_label: T.LABEL - glyph_count_underline_button: T.BUTTON - glyph_count_hover_underline_button_panel: T.PANEL - "glyph_count_hover_underline_button_panel/glyph_hover_popup": T.UNKNOWN - "glyph_count_hover_underline_button_panel/glyph_count_underline_button": T.BUTTON - glyph_icon_with_count: T.STACK_PANEL - "glyph_icon_with_count/glyph_icon": T.IMAGE - "glyph_icon_with_count/horizontal_padding": T.PANEL - "glyph_icon_with_count/item_glyph_count_panel_label": T.UNKNOWN - glyph_panel_hover_popup: T.IMAGE - glyph_panel_mashup_hover_popup: T.IMAGE - mashup_glyph_tooltip_content: T.STACK_PANEL - "mashup_glyph_tooltip_content/mashup_text_row": T.STACK_PANEL - "mashup_glyph_tooltip_content/mashup_text_row/info_icon": T.STACK_PANEL - "mashup_glyph_tooltip_content/mashup_text_row/mashup_line_one": T.PANEL - "mashup_glyph_tooltip_content/mashup_line_two": T.PANEL - "mashup_glyph_tooltip_content/offset_panel": T.PANEL - "mashup_glyph_tooltip_content/offset_panel/basic_vertical_glyph_section_panel": T.STACK_PANEL - glyph_section_mashup: T.STACK_PANEL - glyph_section_skin: T.STACK_PANEL - glyph_section_resource_pack: T.STACK_PANEL - glyph_section_world: T.STACK_PANEL - glyph_section_addon: T.STACK_PANEL - basic_vertical_glyph_section_panel: T.STACK_PANEL - "basic_vertical_glyph_section_panel/glyph_section_skin": T.STACK_PANEL - "basic_vertical_glyph_section_panel/glyph_section_world": T.STACK_PANEL - "basic_vertical_glyph_section_panel/glyph_section_resource_pack": T.STACK_PANEL - "basic_vertical_glyph_section_panel/glyph_section_addon": T.STACK_PANEL - vertical_glyph_section_panel: T.STACK_PANEL - "vertical_glyph_section_panel/glyph_section_mashup": T.STACK_PANEL - "vertical_glyph_section_panel/basic_vertical_glyph_section_panel": T.STACK_PANEL - summary_text_panel: T.STACK_PANEL - "summary_text_panel/top_interact_button_stack": T.STACK_PANEL - "summary_text_panel/top_interact_button_stack/top_interact": T.PANEL - "summary_text_panel/apply_to_realm_panel": T.PANEL - "summary_text_panel/apply_to_realm_panel/apply_to_realm_button": T.BUTTON - "summary_text_panel/in_csb_panel": T.PANEL - "summary_text_panel/in_csb_panel/in_csb_button": T.BUTTON - "summary_text_panel/progress_loading_anim_panel": T.PANEL - "summary_text_panel/progress_loading_anim_panel/progress_loading_anim": T.PANEL - "summary_text_panel/pad_0": T.PANEL - "summary_text_panel/disclaimer_panel": T.PANEL - "summary_text_panel/pad_1": T.PANEL - "summary_text_panel/save_share_button_panel": T.STACK_PANEL - "summary_text_panel/pad_2": T.PANEL - info_bulb_image: T.IMAGE - info_bulb_image_small: T.IMAGE - info_bulb_image_small_centered: T.STACK_PANEL - "info_bulb_image_small_centered/top_filler": T.PANEL - "info_bulb_image_small_centered/middle_panel": T.STACK_PANEL - "info_bulb_image_small_centered/middle_panel/front_filler": T.PANEL - "info_bulb_image_small_centered/middle_panel/info_bulb": T.IMAGE - "info_bulb_image_small_centered/middle_panel/bottom_filler": T.PANEL - "info_bulb_image_small_centered/bottom_filler": T.PANEL - realms_incompatable_content: T.IMAGE - "realms_incompatable_content/realms_content_stack_panel": T.STACK_PANEL - "realms_incompatable_content/realms_content_stack_panel/info_bulb_image": T.IMAGE - "realms_incompatable_content/realms_content_stack_panel/padding": T.PANEL - "realms_incompatable_content/realms_content_stack_panel/realms_incompatable_button_label": T.LABEL - apply_to_realm_button: T.BUTTON - in_csb_button: T.BUTTON - read_more_button: T.BUTTON - "read_more_button/default": T.PANEL - "read_more_button/hover": T.IMAGE - "read_more_button/pressed": T.IMAGE - summary_content_right_side: T.STACK_PANEL - "summary_content_right_side/pad_middle": T.PANEL - "summary_content_right_side/text": T.STACK_PANEL - "summary_content_right_side/entitlements_progress_panel": T.PANEL - "summary_content_right_side/entitlements_progress_panel/progress_loading": T.IMAGE - "summary_content_right_side/pad_right": T.PANEL - summary_content_whole_stack_panel: T.STACK_PANEL - "summary_content_whole_stack_panel/left_side": T.STACK_PANEL - "summary_content_whole_stack_panel/divider_panel": T.PANEL - "summary_content_whole_stack_panel/right_side": T.STACK_PANEL - summary_content_panel: T.STACK_PANEL - "summary_content_panel/pad_top": T.PANEL - "summary_content_panel/summary_content_whole_stack": T.STACK_PANEL - "summary_content_panel/pad_3": T.PANEL - "summary_content_panel/divider_3": T.PANEL - appearance_status_image_panel: T.PANEL - "appearance_status_image_panel/limited_status_image": T.IMAGE - "appearance_status_image_panel/no_restrictions_status_image": T.IMAGE - appearance_status_content: T.STACK_PANEL - "appearance_status_content/appearance_status_image_panel": T.PANEL - "appearance_status_content/last_update_panel": T.PANEL - "appearance_status_content/last_update_panel/last_update_label": T.LABEL - dynamic_tooltip_notification_panel: T.BUTTON - "dynamic_tooltip_notification_panel/default": T.PANEL - "dynamic_tooltip_notification_panel/hover": T.IMAGE - "dynamic_tooltip_notification_panel/pressed": T.IMAGE - update_notification_content: T.PANEL - "update_notification_content/dynamic_tooltip_notification_panel": T.BUTTON - "update_notification_content/status": T.STACK_PANEL - update_notification_stack_panel: T.STACK_PANEL - "update_notification_stack_panel/pad_0": T.PANEL - "update_notification_stack_panel/content": T.PANEL - "update_notification_stack_panel/pad_1": T.PANEL - tag_base: T.IMAGE - tag_button_panel: T.PANEL - "tag_button_panel/button": T.BUTTON - "tag_button_panel/button/default": T.IMAGE - "tag_button_panel/button/hover": T.IMAGE - "tag_button_panel/button/pressed": T.IMAGE - "tag_button_panel/button/label": T.LABEL - tag_row_factory: T.STACK_PANEL - player_count_button_panel: T.PANEL - "player_count_button_panel/player_count_button": T.BUTTON - "player_count_button_panel/comma": T.LABEL - player_count_factory: T.STACK_PANEL - language_button_panel: T.PANEL - "language_button_panel/language_button": T.BUTTON - "language_button_panel/comma": T.LABEL - language_row_factory: T.STACK_PANEL - description_inner_panel: T.PANEL - "description_inner_panel/description_stack_panel": T.STACK_PANEL - "description_inner_panel/description_stack_panel/pad_0": T.PANEL - "description_inner_panel/description_stack_panel/title_stack_panel": T.STACK_PANEL - "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel": T.STACK_PANEL - "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_label_icon": T.IMAGE - "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/pad_0": T.PANEL - "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel": T.PANEL - "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel/title_label": T.LABEL - "description_inner_panel/description_stack_panel/title_stack_panel/pad_0": T.PANEL - "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel": T.PANEL - "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel/divider": T.PANEL - "description_inner_panel/description_stack_panel/title_stack_panel/pad_1": T.PANEL - "description_inner_panel/description_stack_panel/description_text_panel_full": T.STACK_PANEL - "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded": T.STACK_PANEL - "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/description_label": T.LABEL - "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/pad_0": T.PANEL - "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/warning_panel": T.PANEL - "description_inner_panel/description_stack_panel/description_text_panel_full/button_panel": T.PANEL - "description_inner_panel/description_stack_panel/description_text_panel_collapsed": T.STACK_PANEL - "description_inner_panel/description_stack_panel/description_text_panel_collapsed/description_text_collapsed": T.LABEL - "description_inner_panel/description_stack_panel/description_text_panel_collapsed/collapsed_show_more_panel": T.PANEL - "description_inner_panel/description_stack_panel/pad_1": T.PANEL - "description_inner_panel/description_stack_panel/divider_panel": T.PANEL - "description_inner_panel/description_stack_panel/divider_panel/divider": T.PANEL - "description_inner_panel/description_stack_panel/pad_2": T.PANEL - "description_inner_panel/description_stack_panel/tags_panel": T.STACK_PANEL - "description_inner_panel/description_stack_panel/tags_panel/label_text_panel": T.PANEL - "description_inner_panel/description_stack_panel/tags_panel/label_text_panel/label_text": T.LABEL - "description_inner_panel/description_stack_panel/tags_panel/pad": T.PANEL - "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel": T.PANEL - "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory_with_rows": T.STACK_PANEL - "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory": T.STACK_PANEL - "description_inner_panel/description_stack_panel/genre_panel": T.STACK_PANEL - "description_inner_panel/description_stack_panel/genre_panel/label_text": T.LABEL - "description_inner_panel/description_stack_panel/genre_panel/pad": T.PANEL - "description_inner_panel/description_stack_panel/genre_panel/text_panel": T.PANEL - "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel": T.STACK_PANEL - "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/genre_button": T.BUTTON - "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/pad_0": T.PANEL - "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/slash_divider": T.LABEL - "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/subgenre_button": T.BUTTON - "description_inner_panel/description_stack_panel/players_panel": T.STACK_PANEL - "description_inner_panel/description_stack_panel/players_panel/label_text": T.LABEL - "description_inner_panel/description_stack_panel/players_panel/pad": T.PANEL - "description_inner_panel/description_stack_panel/players_panel/text_panel": T.PANEL - "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel": T.STACK_PANEL - "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel": T.STACK_PANEL - "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_button_factory": T.STACK_PANEL - "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/pad": T.PANEL - "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_range_panel": T.PANEL - "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_range_panel/player_count_range_text": T.LABEL - "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/note_text": T.LABEL - "description_inner_panel/description_stack_panel/languages_panel": T.STACK_PANEL - "description_inner_panel/description_stack_panel/languages_panel/label_text_panel": T.PANEL - "description_inner_panel/description_stack_panel/languages_panel/label_text_panel/label_text": T.LABEL - "description_inner_panel/description_stack_panel/languages_panel/pad": T.PANEL - "description_inner_panel/description_stack_panel/languages_panel/languages_factory": T.STACK_PANEL - "description_inner_panel/description_stack_panel/pad_3": T.PANEL - "description_inner_panel/description_stack_panel/show_less_button_panel": T.PANEL - description_section: T.STACK_PANEL - changelog_section: T.STACK_PANEL - bundle_thumbnail: T.IMAGE - bundle_thumbnail_section_content: T.PANEL - "bundle_thumbnail_section_content/bundle_thumbnail_grid": T.GRID - bundle_thumbnail_section: T.STACK_PANEL - price_panel: T.STACK_PANEL - "price_panel/coin_non_sale_price_label": T.PANEL - "price_panel/price_padding": T.PANEL - "price_panel/offer_prompt_panel": T.PANEL - "price_panel/offer_prompt_panel/offer_status_text": T.LABEL - "price_panel/padding_3": T.PANEL - "price_panel/coin_panel": T.PANEL - "price_panel/coin_panel/offer_coin_icon": T.IMAGE - rating_and_coins_panel: T.STACK_PANEL - "rating_and_coins_panel/rating_panel": T.STACK_PANEL - "rating_and_coins_panel/rating_padding_coin": T.PANEL - "rating_and_coins_panel/price_panel": T.STACK_PANEL - bundle_offer_texture: T.PANEL - "bundle_offer_texture/texture": T.IMAGE - "bundle_offer_texture/texture/border": T.IMAGE - bundle_offer_info: T.STACK_PANEL - "bundle_offer_info/top_padding": T.PANEL - "bundle_offer_info/offer_title_and_author_panel": T.STACK_PANEL - "bundle_offer_info/glyph_section": T.UNKNOWN - "bundle_offer_info/glyph_description_padding": T.PANEL - "bundle_offer_info/description_panel": T.UNKNOWN - "bundle_offer_info/description_padding": T.PANEL - "bundle_offer_info/description_padding_bottom": T.PANEL - "bundle_offer_info/rating_and_price_panel": T.STACK_PANEL - "bundle_offer_info/bottom_padding": T.PANEL - bundle_offer_summary_grid_item_content: T.IMAGE - "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel": T.PANEL - "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/focus_border": T.IMAGE - "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel": T.STACK_PANEL - "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/key_art": T.PANEL - "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/mid_padding": T.PANEL - "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/info": T.STACK_PANEL - "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/right_padding": T.PANEL - bundle_offer_summary_grid_item: T.PANEL - "bundle_offer_summary_grid_item/bundle_offer_summary_button": T.BUTTON - bundle_offer_content_section: T.PANEL - "bundle_offer_content_section/bundle_grid": T.GRID - bundle_summary_section_panel: T.PANEL - "bundle_summary_section_panel/bundle_summary_section": T.STACK_PANEL - "bundle_summary_section_panel/bundle_summary_section/bundle_header_and_thumnails_section": T.STACK_PANEL - "bundle_summary_section_panel/bundle_summary_section/mid_padding": T.PANEL - "bundle_summary_section_panel/bundle_summary_section/bundle_offers_info_section": T.PANEL - "bundle_summary_section_panel/bundle_summary_section/mid_padding_2": T.PANEL - "bundle_summary_section_panel/bundle_summary_section/interact_panel": T.PANEL - "bundle_summary_section_panel/bundle_summary_section/interact_panel/bundle_interact": T.PANEL - "bundle_summary_section_panel/divider_3": T.PANEL - pdp_screen: T.SCREEN - mashup_screen_content: T.PANEL - "mashup_screen_content/header": T.STACK_PANEL - "mashup_screen_content/popup_dialog_factory": T.FACTORY - mashup_screen_main: T.INPUT_PANEL - "mashup_screen_main/pack_content": T.PANEL - "mashup_screen_main/progress_loading": T.PANEL + "download_progress": T.IMAGE, + "download_progress/stacker": T.STACK_PANEL, + "download_progress/stacker/sizer_text": T.PANEL, + "download_progress/stacker/sizer_text/download_progress_text": T.LABEL, + "download_progress/stacker/sizer_bar": T.PANEL, + "download_progress/stacker/sizer_bar/download_progress_bar": T.PANEL, + "summary_box_button_panel": T.PANEL, + "summary_box_button_panel/buttons_panel": T.STACK_PANEL, + "summary_box_button_panel/download_buttons_panel": T.STACK_PANEL, + "summary_box_button_panel/focus_border": T.BUTTON, + "interaction_button_content": T.STACK_PANEL, + "interaction_button_content/line1_panel": T.PANEL, + "interaction_button_content/line1_panel/upsell_text": T.LABEL, + "interaction_button_panel": T.PANEL, + "interaction_button_panel/content_action_button": T.BUTTON, + "interaction_button_panel/progress_bar": T.IMAGE, + "interaction_button_panel/focus_border": T.BUTTON, + "download_progress_small": T.IMAGE, + "download_progress_small/stacker": T.STACK_PANEL, + "download_progress_small/stacker/sizer_text": T.PANEL, + "download_progress_small/stacker/sizer_text/download_progress_text": T.LABEL, + "download_progress_small/stacker/sizer_bar": T.PANEL, + "download_progress_small/stacker/sizer_bar/download_progress_bar": T.PANEL, + "progress_loading_anim": T.PANEL, + "focus_border": T.BUTTON, + "focus_border/default": T.IMAGE, + "focus_border/default/loading_anim": T.PANEL, + "focus_border/hover": T.IMAGE, + "focus_border/hover/loading_anim": T.PANEL, + "focus_border/pressed": T.IMAGE, + "focus_border/pressed/loading_anim": T.PANEL, + "purchase_button_base": T.BUTTON, + "deactivated_purchase_button_base": T.BUTTON, + "download_buttons_panel": T.STACK_PANEL, + "download_buttons_panel/progress_panel": T.STACK_PANEL, + "download_buttons_panel/progress_panel/progress_bar": T.IMAGE, + "smooth_purchase_buttons_panel": T.STACK_PANEL, + "smooth_purchase_buttons_panel/activated_purchase_buttons_panel": T.STACK_PANEL, + "smooth_purchase_buttons_panel/deactivated_purchase_buttons_panel": T.STACK_PANEL, + "smooth_buttons_panel": T.STACK_PANEL, + "smooth_buttons_panel/purchase_buttons_panel": T.STACK_PANEL, + "smooth_buttons_panel/interact_filling_button": T.BUTTON, + "smooth_buttons_panel/interact_exit_world_filling_button": T.BUTTON, + "disabled_interact_label_formfitting": T.STACK_PANEL, + "disabled_interact_label_formfitting/info_icon": T.STACK_PANEL, + "disabled_interact_label_formfitting/info_icon_pad": T.PANEL, + "disabled_interact_label_formfitting/interact_label_panel": T.PANEL, + "disabled_interact_label_formfitting/interact_label_panel/interact_label_text_left": T.LABEL, + "disabled_interact_label_formfitting/pad": T.PANEL, + "interact_label_text": T.LABEL, + "activated_smooth_purchase_buttons_panel": T.STACK_PANEL, + "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel": T.PANEL, + "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel/smooth_purchase_with_coins_button": T.BUTTON, + "activated_smooth_purchase_buttons_panel/pad_h1": T.PANEL, + "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel": T.PANEL, + "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel/purchase_with_currency_button": T.BUTTON, + "deactivated_purchase_hover_popup": T.IMAGE, + "deactivated_smooth_purchase_buttons_panel": T.STACK_PANEL, + "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button": T.IMAGE, + "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/deactivated_purchase_hover_popup": T.IMAGE, + "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/content": T.STACK_PANEL, + "deactivated_smooth_purchase_buttons_panel/pad_h1": T.PANEL, + "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel": T.PANEL, + "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel/deactivated_purchase_with_currency_button": T.BUTTON, + "smooth_save_share_button_panel": T.STACK_PANEL, + "smooth_save_share_button_panel/pad_0": T.PANEL, + "smooth_save_share_button_panel/share_button": T.BUTTON, + "smooth_save_share_button_panel/pad_1": T.PANEL, + "smooth_save_share_button_panel/save_button": T.BUTTON, + "currency_purchase_label": T.PANEL, + "currency_purchase_label/currency_purchase_label_text": T.LABEL, + "coin_image": T.IMAGE, + "smooth_currency_purchase_label": T.PANEL, + "smooth_currency_purchase_label/currency_purchase_label_text": T.LABEL, + "discount_label": T.STACK_PANEL, + "discount_label/label_panel": T.PANEL, + "discount_label/label_panel/label": T.LABEL, + "discount_label/icon_panel": T.PANEL, + "discount_label/icon_panel/icon": T.IMAGE, + "coin_purchase_label_text": T.LABEL, + "smooth_coin_purchase_label_formfitting": T.STACK_PANEL, + "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel": T.PANEL, + "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel": T.PANEL, + "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner": T.STACK_PANEL, + "smooth_coin_purchase_label_formfitting/markdown_panel": T.PANEL, + "smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label": T.PANEL, + "smooth_coin_purchase_label_formfitting/fill_pad_left": T.PANEL, + "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel": T.PANEL, + "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin": T.IMAGE, + "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel": T.PANEL, + "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left": T.LABEL, + "smooth_coin_purchase_label_formfitting/pad": T.PANEL, + "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel": T.PANEL, + "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin": T.IMAGE, + "smooth_coin_purchase_label_formfitting/fill_pad_right": T.PANEL, + "disabled_smooth_coin_purchase_label_formfitting": T.STACK_PANEL, + "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel": T.PANEL, + "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel": T.PANEL, + "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner": T.STACK_PANEL, + "disabled_smooth_coin_purchase_label_formfitting/markdown_panel": T.PANEL, + "disabled_smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label": T.PANEL, + "disabled_smooth_coin_purchase_label_formfitting/fill_pad_left": T.PANEL, + "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel": T.INPUT_PANEL, + "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel/info_bulb": T.STACK_PANEL, + "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel": T.PANEL, + "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin": T.IMAGE, + "disabled_smooth_coin_purchase_label_formfitting/info_icon_pad": T.PANEL, + "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel": T.PANEL, + "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left": T.LABEL, + "disabled_smooth_coin_purchase_label_formfitting/pad": T.PANEL, + "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel": T.PANEL, + "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin": T.IMAGE, + "disabled_smooth_coin_purchase_label_formfitting/fill_pad_right": T.PANEL, + "share_icon": T.IMAGE, + "share_label": T.STACK_PANEL, + "share_label/share_image_offset_panel": T.PANEL, + "share_label/share_image_offset_panel/link_share": T.IMAGE, + "save_label_panel": T.PANEL, + "save_label_panel/heart_image": T.PANEL, + "save_label_panel/progress_loading": T.IMAGE, + "save_label": T.PANEL, + "save_label/save_image_offset_panel": T.PANEL, + "save_label/save_image_offset_panel/full_heart": T.IMAGE, + "save_label/save_image_offset_panel/empty_heart": T.IMAGE, + "large_button_coin_purchase_label": T.STACK_PANEL, + "large_button_coin_purchase_label/markdown_banner_filler_panel": T.PANEL, + "large_button_coin_purchase_label/center_markdown_panel": T.PANEL, + "large_button_coin_purchase_label/center_markdown_panel/markdown_banner": T.STACK_PANEL, + "large_button_coin_purchase_label/sales_padding_0": T.PANEL, + "large_button_coin_purchase_label/price_markdown_panel": T.PANEL, + "large_button_coin_purchase_label/price_markdown_panel/price_markdown_label": T.PANEL, + "large_button_coin_purchase_label/sales_padding_1": T.PANEL, + "large_button_coin_purchase_label/left_coin_image_offset_panel": T.PANEL, + "large_button_coin_purchase_label/left_coin_image_offset_panel/coin": T.IMAGE, + "large_button_coin_purchase_label/coin_purchase_label_panel": T.PANEL, + "large_button_coin_purchase_label/coin_purchase_label_panel/coin_purchase_label_text": T.LABEL, + "large_button_coin_purchase_label/right_coin_image_offset_panel": T.PANEL, + "large_button_coin_purchase_label/right_coin_image_offset_panel/coin": T.IMAGE, + "large_button_coin_purchase_label/fill_padding_1": T.PANEL, + "price_markdown_panel": T.PANEL, + "price_markdown_panel/offer_price": T.LABEL, + "price_markdown_panel/offer_price/text_strike_through": T.IMAGE, + "vertical_padding_2px": T.PANEL, + "vertical_padding_4px": T.PANEL, + "vertical_padding_fill": T.PANEL, + "horizontal_padding_2px": T.PANEL, + "horizontal_padding_4px": T.PANEL, + "horizontal_padding_8px": T.PANEL, + "horizontal_padding_fill": T.PANEL, + "empty_content_panel": T.PANEL, + "section_header": T.PANEL, + "section_header/header_label": T.LABEL, + "content_section_bg": T.STACK_PANEL, + "content_section_bg/pad": T.PANEL, + "content_section_bg/section_header": T.PANEL, + "content_section_bg/bg_and_content": T.PANEL, + "content_section_bg/bg_and_content/bg": T.IMAGE, + "content_section_boarder_bg": T.STACK_PANEL, + "content_section_boarder_bg/pad": T.PANEL, + "content_section_boarder_bg/bg_and_content": T.PANEL, + "content_section_boarder_bg/bg_and_content/bg": T.IMAGE, + "content_section_boarder_bg/bg_and_content/bg/inner": T.IMAGE, + "content_section_boarder_bg/pad_3": T.PANEL, + "content_section_boarder_bg/divider_3": T.PANEL, + "summary_factory_object": T.STACK_PANEL, + "summary_factory_object/summary": T.STACK_PANEL, + "summary_factory_object/navigation_tab_section": T.PANEL, + "summary_factory_object/update_notification_section": T.STACK_PANEL, + "screenshot_carousel_factory_object": T.STACK_PANEL, + "screenshot_carousel_factory_object/resource_pack_content_panel": T.STACK_PANEL, + "screenshot_carousel_factory_object/pad_3": T.PANEL, + "screenshot_carousel_factory_object/divider_3": T.PANEL, + "image_gallery_factory_object": T.STACK_PANEL, + "image_gallery_factory_object/resource_pack_content_panel": T.PANEL, + "left_text_right_image_factory_object": T.STACK_PANEL, + "left_text_right_image_factory_object/resource_pack_content_panel": T.STACK_PANEL, + "right_text_left_image_factory_object": T.STACK_PANEL, + "right_text_left_image_factory_object/resource_pack_content_panel": T.STACK_PANEL, + "skin_pack_section_factory_object": T.PANEL, + "skin_pack_section_factory_object/skin_pack_section_factory_content": T.STACK_PANEL, + "skin_pack_section_factory_object/skin_pack_section_factory_content/skin_pack_content_panel": T.STACK_PANEL, + "skin_pack_section_factory_object/skin_pack_section_factory_content/pad_3": T.PANEL, + "skin_pack_section_factory_object/skin_pack_section_factory_content/divider_3": T.PANEL, + "panorama_view_factory_object": T.STACK_PANEL, + "panorama_view_factory_object/panorama_view_content_panel": T.STACK_PANEL, + "panorama_view_factory_object/pad_3": T.PANEL, + "panorama_view_factory_object/divider_3": T.PANEL, + "ratings_factory_object": T.PANEL, + "ratings_factory_object/rating_factory_object_content": T.STACK_PANEL, + "focus_container_button": T.BUTTON, + "focus_container_button/default": T.PANEL, + "bundle_summary_factory_object": T.PANEL, + "bundle_summary_factory_object/bundle_summary_factory_object_content": T.PANEL, + "pdp_cycle_offer_row_content": T.STACK_PANEL, + "pdp_cycle_offer_row_content/store_row_panel": T.STACK_PANEL, + "pdp_cycle_offer_row_content/pad_3": T.PANEL, + "pdp_cycle_offer_row_content/divider_3": T.PANEL, + "pdp_cycle_offer_row_section": T.PANEL, + "recently_viewed_viewed_factory_object": T.PANEL, + "scrolling_content_stack": T.STACK_PANEL, + "warning_image": T.IMAGE, + "scaling_rating": T.PANEL, + "scaling_rating/empty_rating": T.IMAGE, + "scaling_rating/empty_rating/full_rating": T.IMAGE, + "scaling_rating_new": T.PANEL, + "scaling_rating_new/empty_rating": T.IMAGE, + "scaling_rating_new/empty_rating/full_rating": T.IMAGE, + "chart_section": T.PANEL, + "chart_section/stack": T.STACK_PANEL, + "chart_section/stack/star_number_panel": T.PANEL, + "chart_section/stack/star_number_panel/star_number": T.LABEL, + "chart_section/stack/star_panel": T.PANEL, + "chart_section/stack/star_panel/star_img": T.IMAGE, + "chart_section/stack/pad_0": T.PANEL, + "chart_section/stack/bar_panel": T.PANEL, + "chart_section/stack/bar_panel/bar": T.IMAGE, + "chart_section/stack/bar_panel/bar/full_bar": T.IMAGE, + "chart_section/stack/pad_1": T.PANEL, + "chart_section/stack/percent": T.LABEL, + "ratings_chart": T.STACK_PANEL, + "ratings_chart/5_star": T.PANEL, + "ratings_chart/4_star": T.PANEL, + "ratings_chart/3_star": T.PANEL, + "ratings_chart/2_star": T.PANEL, + "ratings_chart/1_star": T.PANEL, + "ratings_chart_panel": T.PANEL, + "ratings_chart_panel/ratings_chart_content": T.STACK_PANEL, + "ratings_chart_panel/ratings_chart_content/pad_0": T.PANEL, + "ratings_chart_panel/ratings_chart_content/title": T.PANEL, + "ratings_chart_panel/ratings_chart_content/title/title_text": T.LABEL, + "ratings_chart_panel/ratings_chart_content/pad_1": T.PANEL, + "ratings_chart_panel/ratings_chart_content/rating_panel": T.PANEL, + "ratings_chart_panel/ratings_chart_content/rating_panel/rating": T.STACK_PANEL, + "ratings_chart_panel/ratings_chart_content/rating_panel/rating/rating_bar": T.PANEL, + "ratings_chart_panel/ratings_chart_content/rating_panel/rating/pad": T.PANEL, + "ratings_chart_panel/ratings_chart_content/rating_text_panel": T.PANEL, + "ratings_chart_panel/ratings_chart_content/rating_text_panel/rating_text": T.LABEL, + "ratings_chart_panel/ratings_chart_content/count_panel": T.PANEL, + "ratings_chart_panel/ratings_chart_content/count_panel/count": T.LABEL, + "ratings_chart_panel/ratings_chart_content/pad_2": T.PANEL, + "ratings_chart_panel/ratings_chart_content/chart": T.STACK_PANEL, + "ratings_chart_panel/ratings_chart_content/pad_3": T.PANEL, + "ratings_box": T.PANEL, + "ratings_box/ratings_panel_focus_point": T.BUTTON, + "ratings_box/ratings_full_panel": T.PANEL, + "ratings_box/ratings_full_panel/ratings_chart_and_button": T.STACK_PANEL, + "ratings_box/ratings_full_panel/ratings_chart_and_button/chart": T.PANEL, + "ratings_box/ratings_full_panel/ratings_chart_and_button/pad_1": T.PANEL, + "ratings_box/divider": T.IMAGE, + "user_rating_star_button": T.BUTTON, + "user_rating_star_button/default": T.PANEL, + "user_rating_star_button/default/default_user_rating_star": T.IMAGE, + "user_rating_star_button/hover": T.PANEL, + "user_rating_star_button/hover/hover_user_rating_star": T.IMAGE, + "user_rating_star_list_grid": T.GRID, + "ratings_interact_panel": T.STACK_PANEL, + "ratings_interact_panel/title_text": T.LABEL, + "ratings_interact_panel/pad_vertical_4px": T.PANEL, + "ratings_interact_panel/rating_stars_and_button_panel": T.STACK_PANEL, + "ratings_interact_panel/rating_stars_and_button_panel/fill_stars": T.PANEL, + "ratings_interact_panel/rating_stars_and_button_panel/fill_stars/rating_buttons": T.GRID, + "ratings_interact_panel/rating_stars_and_button_panel/pad_3_percent": T.PANEL, + "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel": T.PANEL, + "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel/submit": T.BUTTON, + "ratings_interact_panel/pad_vertical_8px": T.PANEL, + "ratings_interact_panel/fill_pad": T.PANEL, + "ratings_interact_panel/fill_pad/text": T.LABEL, + "ratings_interact_panel/send_feedback_button": T.BUTTON, + "ratings_interact_panel/pad_1": T.PANEL, + "ratings_info_panel": T.PANEL, + "ratings_info_panel/ratings": T.PANEL, + "ratings_info_panel/ratings_right": T.PANEL, + "ratings_info_panel/ratings_right/ratings_interact_panel": T.STACK_PANEL, + "ratings_content_panel": T.STACK_PANEL, + "panorama_view_content": T.STACK_PANEL, + "panorama_view_content/panorama_panel": T.PANEL, + "panorama_view_content/panorama_panel/panorama_content": T.PANEL, + "skins": T.PANEL, + "skin_pack_content_panel": T.STACK_PANEL, + "resource_pack_content": T.PANEL, + "resource_pack_content/screenshots": T.PANEL, + "image_row_left_text_content": T.STACK_PANEL, + "image_row_left_text_content/buffer_panel_front": T.PANEL, + "image_row_left_text_content/text_section": T.STACK_PANEL, + "image_row_left_text_content/text_section/left_header": T.PANEL, + "image_row_left_text_content/text_section/left_text": T.PANEL, + "image_row_left_text_content/text_section/buffer_panel_bottom": T.PANEL, + "image_row_left_text_content/buffer_panel_mid": T.PANEL, + "image_row_left_text_content/screenshots_single": T.PANEL, + "image_row_left_text_content/buffer_panel_back": T.PANEL, + "image_row_right_text_content": T.STACK_PANEL, + "image_row_right_text_content/buffer_panel_front": T.PANEL, + "image_row_right_text_content/screenshots_single": T.PANEL, + "image_row_right_text_content/buffer_panel_mid": T.PANEL, + "image_row_right_text_content/text_section": T.STACK_PANEL, + "image_row_right_text_content/text_section/right_header": T.PANEL, + "image_row_right_text_content/text_section/right_text": T.PANEL, + "image_row_right_text_content/text_section/buffer_panel_bottom": T.PANEL, + "image_row_right_text_content/buffer_panel_back": T.PANEL, + "image_row_content": T.PANEL, + "image_row_content/screenshots_triple": T.STACK_PANEL, + "play_button": T.IMAGE, + "csb_expiration": T.PANEL, + "csb_expiration/background": T.IMAGE, + "csb_expiration/background/content_stack_panel": T.STACK_PANEL, + "csb_expiration/background/content_stack_panel/icon_wrapper": T.PANEL, + "csb_expiration/background/content_stack_panel/icon_wrapper/icon": T.IMAGE, + "csb_expiration/background/content_stack_panel/text_wrapper": T.PANEL, + "csb_expiration/background/content_stack_panel/text_wrapper/text": T.LABEL, + "summary_content_left_side": T.STACK_PANEL, + "summary_content_left_side/pad_left": T.PANEL, + "summary_content_left_side/full_content": T.STACK_PANEL, + "summary_content_left_side/full_content/top": T.STACK_PANEL, + "summary_content_left_side/full_content/top/image": T.PANEL, + "summary_content_left_side/full_content/top/image/key_image": T.IMAGE, + "summary_content_left_side/full_content/top/image/key_image/border": T.IMAGE, + "summary_content_left_side/full_content/top/image/key_image/csb_expiration_banner": T.PANEL, + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button": T.BUTTON, + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/mask": T.IMAGE, + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/default": T.IMAGE, + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/hover": T.IMAGE, + "summary_content_left_side/full_content/top/image/key_image/rtx_label": T.PANEL, + "summary_content_left_side/full_content/top/divider": T.PANEL, + "summary_content_left_side/full_content/top/info": T.STACK_PANEL, + "summary_content_left_side/full_content/top/info/summary_title_and_author_panel": T.STACK_PANEL, + "summary_content_left_side/full_content/top/info/pad_fill": T.PANEL, + "summary_content_left_side/full_content/top/info/glyph_section": T.PANEL, + "summary_content_left_side/full_content/top/info/glyph_section/glyph_section_panel": T.STACK_PANEL, + "summary_content_left_side/full_content/top/info/ratings_summary": T.STACK_PANEL, + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display": T.STACK_PANEL, + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel": T.PANEL, + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel/rating": T.PANEL, + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/summary_rating_button": T.BUTTON, + "summary_content_left_side/full_content/top/info/vibrant_visuals_badge_and_hover": T.PANEL, + "summary_content_left_side/full_content/bottom": T.PANEL, + "offer_title_label": T.PANEL, + "title_and_author_panel": T.STACK_PANEL, + "title_and_author_panel/title_panel": T.PANEL, + "title_and_author_panel/author_button_panel": T.PANEL, + "title_and_author_panel/author_button_panel/summary_author_button": T.BUTTON, + "description_label": T.LABEL, + "warning_stack_panel": T.STACK_PANEL, + "warning_stack_panel/warning_icon": T.IMAGE, + "warning_stack_panel/pad_0": T.PANEL, + "warning_stack_panel/warning_text_panel": T.PANEL, + "warning_stack_panel/warning_text_panel/warning_text": T.LABEL, + "warning_panel": T.PANEL, + "warning_panel/background": T.IMAGE, + "warning_panel/content_stack_panel": T.STACK_PANEL, + "description_toggle_show_button_panel": T.PANEL, + "description_toggle_show_button_panel/description_bottom_right_button_border": T.IMAGE, + "description_toggle_show_button_panel/description_toggle_show_button": T.BUTTON, + "description_toggle_show_button_panel/warning_icon": T.IMAGE, + "vibrant_visuals_underline_button": T.BUTTON, + "vibrant_visuals_hover_popup": T.IMAGE, + "vibrant_visuals_badge_display": T.IMAGE, + "vibrant_visuals_badge_display/vibrant_visuals_underline_button": T.BUTTON, + "vibrant_visuals_badge_and_hover": T.PANEL, + "vibrant_visuals_badge_and_hover/vibrant_visuals_hover_popup": T.IMAGE, + "vibrant_visuals_badge_and_hover/vibrant_visuals_badge_display": T.IMAGE, + "glyph_icon": T.IMAGE, + "glyph_count_label": T.LABEL, + "glyph_count_underline_button": T.BUTTON, + "glyph_count_hover_underline_button_panel": T.PANEL, + "glyph_count_hover_underline_button_panel/glyph_hover_popup": T.UNKNOWN, + "glyph_count_hover_underline_button_panel/glyph_count_underline_button": T.BUTTON, + "glyph_icon_with_count": T.STACK_PANEL, + "glyph_icon_with_count/glyph_icon": T.IMAGE, + "glyph_icon_with_count/horizontal_padding": T.PANEL, + "glyph_icon_with_count/item_glyph_count_panel_label": T.UNKNOWN, + "glyph_panel_hover_popup": T.IMAGE, + "glyph_panel_mashup_hover_popup": T.IMAGE, + "mashup_glyph_tooltip_content": T.STACK_PANEL, + "mashup_glyph_tooltip_content/mashup_text_row": T.STACK_PANEL, + "mashup_glyph_tooltip_content/mashup_text_row/info_icon": T.STACK_PANEL, + "mashup_glyph_tooltip_content/mashup_text_row/mashup_line_one": T.PANEL, + "mashup_glyph_tooltip_content/mashup_line_two": T.PANEL, + "mashup_glyph_tooltip_content/offset_panel": T.PANEL, + "mashup_glyph_tooltip_content/offset_panel/basic_vertical_glyph_section_panel": T.STACK_PANEL, + "glyph_section_mashup": T.STACK_PANEL, + "glyph_section_skin": T.STACK_PANEL, + "glyph_section_resource_pack": T.STACK_PANEL, + "glyph_section_world": T.STACK_PANEL, + "glyph_section_addon": T.STACK_PANEL, + "basic_vertical_glyph_section_panel": T.STACK_PANEL, + "basic_vertical_glyph_section_panel/glyph_section_skin": T.STACK_PANEL, + "basic_vertical_glyph_section_panel/glyph_section_world": T.STACK_PANEL, + "basic_vertical_glyph_section_panel/glyph_section_resource_pack": T.STACK_PANEL, + "basic_vertical_glyph_section_panel/glyph_section_addon": T.STACK_PANEL, + "vertical_glyph_section_panel": T.STACK_PANEL, + "vertical_glyph_section_panel/glyph_section_mashup": T.STACK_PANEL, + "vertical_glyph_section_panel/basic_vertical_glyph_section_panel": T.STACK_PANEL, + "summary_text_panel": T.STACK_PANEL, + "summary_text_panel/top_interact_button_stack": T.STACK_PANEL, + "summary_text_panel/top_interact_button_stack/top_interact": T.PANEL, + "summary_text_panel/apply_to_realm_panel": T.PANEL, + "summary_text_panel/apply_to_realm_panel/apply_to_realm_button": T.BUTTON, + "summary_text_panel/in_csb_panel": T.PANEL, + "summary_text_panel/in_csb_panel/in_csb_button": T.BUTTON, + "summary_text_panel/progress_loading_anim_panel": T.PANEL, + "summary_text_panel/progress_loading_anim_panel/progress_loading_anim": T.PANEL, + "summary_text_panel/pad_0": T.PANEL, + "summary_text_panel/disclaimer_panel": T.PANEL, + "summary_text_panel/pad_1": T.PANEL, + "summary_text_panel/save_share_button_panel": T.STACK_PANEL, + "summary_text_panel/pad_2": T.PANEL, + "info_bulb_image": T.IMAGE, + "info_bulb_image_small": T.IMAGE, + "info_bulb_image_small_centered": T.STACK_PANEL, + "info_bulb_image_small_centered/top_filler": T.PANEL, + "info_bulb_image_small_centered/middle_panel": T.STACK_PANEL, + "info_bulb_image_small_centered/middle_panel/front_filler": T.PANEL, + "info_bulb_image_small_centered/middle_panel/info_bulb": T.IMAGE, + "info_bulb_image_small_centered/middle_panel/bottom_filler": T.PANEL, + "info_bulb_image_small_centered/bottom_filler": T.PANEL, + "realms_incompatable_content": T.IMAGE, + "realms_incompatable_content/realms_content_stack_panel": T.STACK_PANEL, + "realms_incompatable_content/realms_content_stack_panel/info_bulb_image": T.IMAGE, + "realms_incompatable_content/realms_content_stack_panel/padding": T.PANEL, + "realms_incompatable_content/realms_content_stack_panel/realms_incompatable_button_label": T.LABEL, + "apply_to_realm_button": T.BUTTON, + "in_csb_button": T.BUTTON, + "read_more_button": T.BUTTON, + "read_more_button/default": T.PANEL, + "read_more_button/hover": T.IMAGE, + "read_more_button/pressed": T.IMAGE, + "summary_content_right_side": T.STACK_PANEL, + "summary_content_right_side/pad_middle": T.PANEL, + "summary_content_right_side/text": T.STACK_PANEL, + "summary_content_right_side/entitlements_progress_panel": T.PANEL, + "summary_content_right_side/entitlements_progress_panel/progress_loading": T.IMAGE, + "summary_content_right_side/pad_right": T.PANEL, + "summary_content_whole_stack_panel": T.STACK_PANEL, + "summary_content_whole_stack_panel/left_side": T.STACK_PANEL, + "summary_content_whole_stack_panel/divider_panel": T.PANEL, + "summary_content_whole_stack_panel/right_side": T.STACK_PANEL, + "summary_content_panel": T.STACK_PANEL, + "summary_content_panel/pad_top": T.PANEL, + "summary_content_panel/summary_content_whole_stack": T.STACK_PANEL, + "summary_content_panel/pad_3": T.PANEL, + "summary_content_panel/divider_3": T.PANEL, + "appearance_status_image_panel": T.PANEL, + "appearance_status_image_panel/limited_status_image": T.IMAGE, + "appearance_status_image_panel/no_restrictions_status_image": T.IMAGE, + "appearance_status_content": T.STACK_PANEL, + "appearance_status_content/appearance_status_image_panel": T.PANEL, + "appearance_status_content/last_update_panel": T.PANEL, + "appearance_status_content/last_update_panel/last_update_label": T.LABEL, + "dynamic_tooltip_notification_panel": T.BUTTON, + "dynamic_tooltip_notification_panel/default": T.PANEL, + "dynamic_tooltip_notification_panel/hover": T.IMAGE, + "dynamic_tooltip_notification_panel/pressed": T.IMAGE, + "update_notification_content": T.PANEL, + "update_notification_content/dynamic_tooltip_notification_panel": T.BUTTON, + "update_notification_content/status": T.STACK_PANEL, + "update_notification_stack_panel": T.STACK_PANEL, + "update_notification_stack_panel/pad_0": T.PANEL, + "update_notification_stack_panel/content": T.PANEL, + "update_notification_stack_panel/pad_1": T.PANEL, + "tag_base": T.IMAGE, + "tag_button_panel": T.PANEL, + "tag_button_panel/button": T.BUTTON, + "tag_button_panel/button/default": T.IMAGE, + "tag_button_panel/button/hover": T.IMAGE, + "tag_button_panel/button/pressed": T.IMAGE, + "tag_button_panel/button/label": T.LABEL, + "tag_row_factory": T.STACK_PANEL, + "player_count_button_panel": T.PANEL, + "player_count_button_panel/player_count_button": T.BUTTON, + "player_count_button_panel/comma": T.LABEL, + "player_count_factory": T.STACK_PANEL, + "language_button_panel": T.PANEL, + "language_button_panel/language_button": T.BUTTON, + "language_button_panel/comma": T.LABEL, + "language_row_factory": T.STACK_PANEL, + "description_inner_panel": T.PANEL, + "description_inner_panel/description_stack_panel": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/pad_0": T.PANEL, + "description_inner_panel/description_stack_panel/title_stack_panel": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_label_icon": T.IMAGE, + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/pad_0": T.PANEL, + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel": T.PANEL, + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel/title_label": T.LABEL, + "description_inner_panel/description_stack_panel/title_stack_panel/pad_0": T.PANEL, + "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel": T.PANEL, + "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel/divider": T.PANEL, + "description_inner_panel/description_stack_panel/title_stack_panel/pad_1": T.PANEL, + "description_inner_panel/description_stack_panel/description_text_panel_full": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/description_label": T.LABEL, + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/pad_0": T.PANEL, + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/warning_panel": T.PANEL, + "description_inner_panel/description_stack_panel/description_text_panel_full/button_panel": T.PANEL, + "description_inner_panel/description_stack_panel/description_text_panel_collapsed": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/description_text_panel_collapsed/description_text_collapsed": T.LABEL, + "description_inner_panel/description_stack_panel/description_text_panel_collapsed/collapsed_show_more_panel": T.PANEL, + "description_inner_panel/description_stack_panel/pad_1": T.PANEL, + "description_inner_panel/description_stack_panel/divider_panel": T.PANEL, + "description_inner_panel/description_stack_panel/divider_panel/divider": T.PANEL, + "description_inner_panel/description_stack_panel/pad_2": T.PANEL, + "description_inner_panel/description_stack_panel/tags_panel": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/tags_panel/label_text_panel": T.PANEL, + "description_inner_panel/description_stack_panel/tags_panel/label_text_panel/label_text": T.LABEL, + "description_inner_panel/description_stack_panel/tags_panel/pad": T.PANEL, + "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel": T.PANEL, + "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory_with_rows": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/genre_panel": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/genre_panel/label_text": T.LABEL, + "description_inner_panel/description_stack_panel/genre_panel/pad": T.PANEL, + "description_inner_panel/description_stack_panel/genre_panel/text_panel": T.PANEL, + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/genre_button": T.BUTTON, + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/pad_0": T.PANEL, + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/slash_divider": T.LABEL, + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/subgenre_button": T.BUTTON, + "description_inner_panel/description_stack_panel/players_panel": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/players_panel/label_text": T.LABEL, + "description_inner_panel/description_stack_panel/players_panel/pad": T.PANEL, + "description_inner_panel/description_stack_panel/players_panel/text_panel": T.PANEL, + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_button_factory": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/pad": T.PANEL, + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_range_panel": T.PANEL, + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_range_panel/player_count_range_text": T.LABEL, + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/note_text": T.LABEL, + "description_inner_panel/description_stack_panel/languages_panel": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/languages_panel/label_text_panel": T.PANEL, + "description_inner_panel/description_stack_panel/languages_panel/label_text_panel/label_text": T.LABEL, + "description_inner_panel/description_stack_panel/languages_panel/pad": T.PANEL, + "description_inner_panel/description_stack_panel/languages_panel/languages_factory": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/pad_3": T.PANEL, + "description_inner_panel/description_stack_panel/show_less_button_panel": T.PANEL, + "description_section": T.STACK_PANEL, + "changelog_section": T.STACK_PANEL, + "bundle_thumbnail": T.IMAGE, + "bundle_thumbnail_section_content": T.PANEL, + "bundle_thumbnail_section_content/bundle_thumbnail_grid": T.GRID, + "bundle_thumbnail_section": T.STACK_PANEL, + "price_panel": T.STACK_PANEL, + "price_panel/coin_non_sale_price_label": T.PANEL, + "price_panel/price_padding": T.PANEL, + "price_panel/offer_prompt_panel": T.PANEL, + "price_panel/offer_prompt_panel/offer_status_text": T.LABEL, + "price_panel/padding_3": T.PANEL, + "price_panel/coin_panel": T.PANEL, + "price_panel/coin_panel/offer_coin_icon": T.IMAGE, + "rating_and_coins_panel": T.STACK_PANEL, + "rating_and_coins_panel/rating_panel": T.STACK_PANEL, + "rating_and_coins_panel/rating_padding_coin": T.PANEL, + "rating_and_coins_panel/price_panel": T.STACK_PANEL, + "bundle_offer_texture": T.PANEL, + "bundle_offer_texture/texture": T.IMAGE, + "bundle_offer_texture/texture/border": T.IMAGE, + "bundle_offer_info": T.STACK_PANEL, + "bundle_offer_info/top_padding": T.PANEL, + "bundle_offer_info/offer_title_and_author_panel": T.STACK_PANEL, + "bundle_offer_info/glyph_section": T.UNKNOWN, + "bundle_offer_info/glyph_description_padding": T.PANEL, + "bundle_offer_info/description_panel": T.UNKNOWN, + "bundle_offer_info/description_padding": T.PANEL, + "bundle_offer_info/description_padding_bottom": T.PANEL, + "bundle_offer_info/rating_and_price_panel": T.STACK_PANEL, + "bundle_offer_info/bottom_padding": T.PANEL, + "bundle_offer_summary_grid_item_content": T.IMAGE, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel": T.PANEL, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/focus_border": T.IMAGE, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel": T.STACK_PANEL, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/key_art": T.PANEL, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/mid_padding": T.PANEL, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/info": T.STACK_PANEL, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/right_padding": T.PANEL, + "bundle_offer_summary_grid_item": T.PANEL, + "bundle_offer_summary_grid_item/bundle_offer_summary_button": T.BUTTON, + "bundle_offer_content_section": T.PANEL, + "bundle_offer_content_section/bundle_grid": T.GRID, + "bundle_summary_section_panel": T.PANEL, + "bundle_summary_section_panel/bundle_summary_section": T.STACK_PANEL, + "bundle_summary_section_panel/bundle_summary_section/bundle_header_and_thumnails_section": T.STACK_PANEL, + "bundle_summary_section_panel/bundle_summary_section/mid_padding": T.PANEL, + "bundle_summary_section_panel/bundle_summary_section/bundle_offers_info_section": T.PANEL, + "bundle_summary_section_panel/bundle_summary_section/mid_padding_2": T.PANEL, + "bundle_summary_section_panel/bundle_summary_section/interact_panel": T.PANEL, + "bundle_summary_section_panel/bundle_summary_section/interact_panel/bundle_interact": T.PANEL, + "bundle_summary_section_panel/divider_3": T.PANEL, + "pdp_screen": T.SCREEN, + "mashup_screen_content": T.PANEL, + "mashup_screen_content/header": T.STACK_PANEL, + "mashup_screen_content/popup_dialog_factory": T.FACTORY, + "mashup_screen_main": T.INPUT_PANEL, + "mashup_screen_main/pack_content": T.PANEL, + "mashup_screen_main/progress_loading": T.PANEL, } export type PdpScreenshotsType = { - banner_empty: T.IMAGE - screenshot_carousel: T.PANEL - "screenshot_carousel/screenshot_carousel_content": T.PANEL - "screenshot_carousel/screenshot_carousel_content/cycle_pack_left_button": T.BUTTON - "screenshot_carousel/screenshot_carousel_content/screenshots_grid": T.STACK_PANEL - "screenshot_carousel/screenshot_carousel_content/cycle_pack_right_button": T.BUTTON - screenshots_grid: T.STACK_PANEL - "screenshots_grid/left_image_panel": T.PANEL - "screenshots_grid/middle_image_panel": T.PANEL - "screenshots_grid/right_image_panel": T.PANEL - screenshots_grid_item: T.PANEL - "screenshots_grid_item/frame": T.IMAGE - "screenshots_grid_item/frame/screenshot_button": T.BUTTON - "screenshots_grid_item/frame/screenshot_button/hover": T.IMAGE - "screenshots_grid_item/frame/screenshot_button/pressed": T.IMAGE - "screenshots_grid_item/screenshot_image": T.IMAGE - "screenshots_grid_item/progress_loading": T.PANEL + "banner_empty": T.IMAGE, + "screenshot_carousel": T.PANEL, + "screenshot_carousel/screenshot_carousel_content": T.PANEL, + "screenshot_carousel/screenshot_carousel_content/cycle_pack_left_button": T.BUTTON, + "screenshot_carousel/screenshot_carousel_content/screenshots_grid": T.STACK_PANEL, + "screenshot_carousel/screenshot_carousel_content/cycle_pack_right_button": T.BUTTON, + "screenshots_grid": T.STACK_PANEL, + "screenshots_grid/left_image_panel": T.PANEL, + "screenshots_grid/middle_image_panel": T.PANEL, + "screenshots_grid/right_image_panel": T.PANEL, + "screenshots_grid_item": T.PANEL, + "screenshots_grid_item/frame": T.IMAGE, + "screenshots_grid_item/frame/screenshot_button": T.BUTTON, + "screenshots_grid_item/frame/screenshot_button/hover": T.IMAGE, + "screenshots_grid_item/frame/screenshot_button/pressed": T.IMAGE, + "screenshots_grid_item/screenshot_image": T.IMAGE, + "screenshots_grid_item/progress_loading": T.PANEL, } export type PermissionsType = { - permissions_screen: T.SCREEN - permissions_screen_content: T.STACK_PANEL - "permissions_screen_content/top_bar_panel": T.PANEL - "permissions_screen_content/content_panel": T.PANEL - top_bar_panel: T.PANEL - "top_bar_panel/top_bar": T.IMAGE - "top_bar_panel/back_button": T.BUTTON - "top_bar_panel/gamepad_helper_b": T.STACK_PANEL - "top_bar_panel/title_label": T.LABEL - content_panel: T.PANEL - "content_panel/content_stack_panel": T.STACK_PANEL - "content_panel/content_stack_panel/content_padding_1": T.PANEL - "content_panel/content_stack_panel/ip_label": T.LABEL - "content_panel/content_stack_panel/world_label": T.LABEL - "content_panel/content_stack_panel/content_padding_2": T.PANEL - "content_panel/content_stack_panel/player_and_permissions_panel": T.STACK_PANEL - player_and_permissions_panel: T.STACK_PANEL - "player_and_permissions_panel/selector_area": T.INPUT_PANEL - "player_and_permissions_panel/content_area": T.INPUT_PANEL - selector_area: T.INPUT_PANEL - "selector_area/player_scrolling_panel": T.PANEL - content_area: T.INPUT_PANEL - "content_area/permissions_options_background": T.PANEL - "content_area/permissions_options_background/permissions_options_background_image": T.IMAGE - "content_area/permissions_options_background/permissions_options_background_image/permissions_options_scrolling_panel": T.PANEL - "content_area/inactive_modal_pane_fade": T.IMAGE - kick_button: T.BUTTON - ban_button: T.BUTTON - players_grid_panel: T.PANEL - "players_grid_panel/players_grid": T.GRID - players_grid: T.GRID - player_grid_item: T.PANEL - "player_grid_item/player_toggle": T.PANEL - "player_grid_item/inactive_modal_pane_fade": T.IMAGE - permissions_options_scrolling_panel: T.PANEL - permissions_options_panel: T.PANEL - "permissions_options_panel/inner_permissions_options_panel": T.PANEL - "permissions_options_panel/inner_permissions_options_panel/permissions_options_stack_panel": T.STACK_PANEL - permissions_options_stack_panel: T.STACK_PANEL - "permissions_options_stack_panel/permissions_padding_0": T.PANEL - "permissions_options_stack_panel/world_template_option_lock_panel": T.PANEL - "permissions_options_stack_panel/world_template_option_lock_panel/option_info_label": T.PANEL - "permissions_options_stack_panel/permissions_padding_1": T.PANEL - "permissions_options_stack_panel/permission_level_dropdown": T.PANEL - "permissions_options_stack_panel/permissions_padding_2": T.PANEL - "permissions_options_stack_panel/permissions_options_grid": T.GRID - "permissions_options_stack_panel/permissions_padding_3": T.PANEL - "permissions_options_stack_panel/permissions_kick_button_panel": T.PANEL - "permissions_options_stack_panel/permissions_padding_4": T.PANEL - "permissions_options_stack_panel/permissions_ban_button_panel": T.PANEL - "permissions_options_stack_panel/permissions_padding_5": T.PANEL - permissions_options_grid: T.GRID - permissions_options_grid_item: T.STACK_PANEL - "permissions_options_grid_item/option_label_panel": T.PANEL - "permissions_options_grid_item/option_label_panel/option_label": T.LABEL - "permissions_options_grid_item/option_state_label_panel": T.PANEL - "permissions_options_grid_item/option_state_label_panel/option_state_label": T.LABEL - "permissions_options_grid_item/option_toggle": T.PANEL - permissions_kick_button_panel: T.PANEL - "permissions_kick_button_panel/kick_button": T.BUTTON - permissions_ban_button_panel: T.PANEL - "permissions_ban_button_panel/ban_button": T.BUTTON - title_label: T.LABEL - ip_label: T.LABEL - world_label: T.LABEL - gamertag_label: T.LABEL - option_state_label: T.LABEL - option_label: T.LABEL - top_bar: T.IMAGE - banner_background: T.IMAGE - player_local_icon: T.IMAGE - player_gamer_pic: T.IMAGE - "player_gamer_pic/player_panel_black_border": T.IMAGE - back_button: T.BUTTON - back_button_content: T.STACK_PANEL - "back_button_content/chevron_panel": T.PANEL - "back_button_content/chevron_panel/left_chevron": T.IMAGE - "back_button_content/back_button_padding": T.PANEL - "back_button_content/label_panel": T.PANEL - "back_button_content/label_panel/label": T.LABEL - player_toggle: T.PANEL - player_button_content: T.STACK_PANEL - "player_button_content/player_pic_panel": T.PANEL - "player_button_content/player_button_padding_1": T.PANEL - "player_button_content/gamertag_panel": T.PANEL - "player_button_content/gamertag_panel/gamertag_label": T.LABEL - "player_button_content/icon_panel": T.PANEL - "player_button_content/icon_panel/dropdown_icon_image": T.IMAGE - "player_button_content/player_button_padding_2": T.PANEL - player_pic_panel: T.PANEL - "player_pic_panel/player_gamer_pic": T.IMAGE - "player_pic_panel/player_local_icon": T.IMAGE - option_toggle: T.PANEL - permission_level_dropdown: T.PANEL - radio_title_and_icon: T.PANEL - "radio_title_and_icon/radio_icon": T.IMAGE - "radio_title_and_icon/radio_title": T.LABEL - radio_content_with_title_bar: T.STACK_PANEL - "radio_content_with_title_bar/title_and_icon": T.PANEL - "radio_content_with_title_bar/helper_text": T.LABEL - "radio_content_with_title_bar/bottom_padding": T.PANEL - radio_visuals_with_title: T.PANEL - "radio_visuals_with_title/radio_content": T.STACK_PANEL - radio_visuals_with_title_hover: T.IMAGE - "radio_visuals_with_title_hover/radio_content": T.STACK_PANEL - permissions_visitor_visuals_with_title_normal: T.PANEL - permissions_visitor_visuals_with_title_hover: T.IMAGE - permissions_member_visuals_with_title_normal: T.PANEL - permissions_member_visuals_with_title_hover: T.IMAGE - permissions_op_visuals_with_title_normal: T.PANEL - permissions_op_visuals_with_title_hover: T.IMAGE - permissions_visitor_radio_visuals_normal: T.PANEL - permissions_visitor_radio_visuals_hover: T.PANEL - permissions_member_radio_visuals_normal: T.PANEL - permissions_member_radio_visuals_hover: T.PANEL - permissions_op_radio_visuals_normal: T.PANEL - permissions_op_radio_visuals_hover: T.PANEL - permissions_custom_radio_visuals_normal: T.PANEL - permissions_custom_radio_visuals_hover: T.PANEL - permission_level_radio: T.PANEL - "permission_level_radio/radio_with_label_core": T.TOGGLE - permission_level_dropdown_content: T.PANEL - permission_level_dropdown_state_content: T.STACK_PANEL - "permission_level_dropdown_state_content/icon_panel": T.PANEL - "permission_level_dropdown_state_content/icon_panel/dropdown_icon_image": T.IMAGE - "permission_level_dropdown_state_content/dropdown_label_padding": T.PANEL - "permission_level_dropdown_state_content/label_panel": T.PANEL - "permission_level_dropdown_state_content/label_panel/label": T.LABEL - "permission_level_dropdown_state_content/arrow_panel": T.PANEL - "permission_level_dropdown_state_content/arrow_panel/arrow_image": T.IMAGE + "permissions_screen": T.SCREEN, + "permissions_screen_content": T.STACK_PANEL, + "permissions_screen_content/top_bar_panel": T.PANEL, + "permissions_screen_content/content_panel": T.PANEL, + "top_bar_panel": T.PANEL, + "top_bar_panel/top_bar": T.IMAGE, + "top_bar_panel/back_button": T.BUTTON, + "top_bar_panel/gamepad_helper_b": T.STACK_PANEL, + "top_bar_panel/title_label": T.LABEL, + "content_panel": T.PANEL, + "content_panel/content_stack_panel": T.STACK_PANEL, + "content_panel/content_stack_panel/content_padding_1": T.PANEL, + "content_panel/content_stack_panel/ip_label": T.LABEL, + "content_panel/content_stack_panel/world_label": T.LABEL, + "content_panel/content_stack_panel/content_padding_2": T.PANEL, + "content_panel/content_stack_panel/player_and_permissions_panel": T.STACK_PANEL, + "player_and_permissions_panel": T.STACK_PANEL, + "player_and_permissions_panel/selector_area": T.INPUT_PANEL, + "player_and_permissions_panel/content_area": T.INPUT_PANEL, + "selector_area": T.INPUT_PANEL, + "selector_area/player_scrolling_panel": T.PANEL, + "content_area": T.INPUT_PANEL, + "content_area/permissions_options_background": T.PANEL, + "content_area/permissions_options_background/permissions_options_background_image": T.IMAGE, + "content_area/permissions_options_background/permissions_options_background_image/permissions_options_scrolling_panel": T.PANEL, + "content_area/inactive_modal_pane_fade": T.IMAGE, + "kick_button": T.BUTTON, + "ban_button": T.BUTTON, + "players_grid_panel": T.PANEL, + "players_grid_panel/players_grid": T.GRID, + "players_grid": T.GRID, + "player_grid_item": T.PANEL, + "player_grid_item/player_toggle": T.PANEL, + "player_grid_item/inactive_modal_pane_fade": T.IMAGE, + "permissions_options_scrolling_panel": T.PANEL, + "permissions_options_panel": T.PANEL, + "permissions_options_panel/inner_permissions_options_panel": T.PANEL, + "permissions_options_panel/inner_permissions_options_panel/permissions_options_stack_panel": T.STACK_PANEL, + "permissions_options_stack_panel": T.STACK_PANEL, + "permissions_options_stack_panel/permissions_padding_0": T.PANEL, + "permissions_options_stack_panel/world_template_option_lock_panel": T.PANEL, + "permissions_options_stack_panel/world_template_option_lock_panel/option_info_label": T.PANEL, + "permissions_options_stack_panel/permissions_padding_1": T.PANEL, + "permissions_options_stack_panel/permission_level_dropdown": T.PANEL, + "permissions_options_stack_panel/permissions_padding_2": T.PANEL, + "permissions_options_stack_panel/permissions_options_grid": T.GRID, + "permissions_options_stack_panel/permissions_padding_3": T.PANEL, + "permissions_options_stack_panel/permissions_kick_button_panel": T.PANEL, + "permissions_options_stack_panel/permissions_padding_4": T.PANEL, + "permissions_options_stack_panel/permissions_ban_button_panel": T.PANEL, + "permissions_options_stack_panel/permissions_padding_5": T.PANEL, + "permissions_options_grid": T.GRID, + "permissions_options_grid_item": T.STACK_PANEL, + "permissions_options_grid_item/option_label_panel": T.PANEL, + "permissions_options_grid_item/option_label_panel/option_label": T.LABEL, + "permissions_options_grid_item/option_state_label_panel": T.PANEL, + "permissions_options_grid_item/option_state_label_panel/option_state_label": T.LABEL, + "permissions_options_grid_item/option_toggle": T.PANEL, + "permissions_kick_button_panel": T.PANEL, + "permissions_kick_button_panel/kick_button": T.BUTTON, + "permissions_ban_button_panel": T.PANEL, + "permissions_ban_button_panel/ban_button": T.BUTTON, + "title_label": T.LABEL, + "ip_label": T.LABEL, + "world_label": T.LABEL, + "gamertag_label": T.LABEL, + "option_state_label": T.LABEL, + "option_label": T.LABEL, + "top_bar": T.IMAGE, + "banner_background": T.IMAGE, + "player_local_icon": T.IMAGE, + "player_gamer_pic": T.IMAGE, + "player_gamer_pic/player_panel_black_border": T.IMAGE, + "back_button": T.BUTTON, + "back_button_content": T.STACK_PANEL, + "back_button_content/chevron_panel": T.PANEL, + "back_button_content/chevron_panel/left_chevron": T.IMAGE, + "back_button_content/back_button_padding": T.PANEL, + "back_button_content/label_panel": T.PANEL, + "back_button_content/label_panel/label": T.LABEL, + "player_toggle": T.PANEL, + "player_button_content": T.STACK_PANEL, + "player_button_content/player_pic_panel": T.PANEL, + "player_button_content/player_button_padding_1": T.PANEL, + "player_button_content/gamertag_panel": T.PANEL, + "player_button_content/gamertag_panel/gamertag_label": T.LABEL, + "player_button_content/icon_panel": T.PANEL, + "player_button_content/icon_panel/dropdown_icon_image": T.IMAGE, + "player_button_content/player_button_padding_2": T.PANEL, + "player_pic_panel": T.PANEL, + "player_pic_panel/player_gamer_pic": T.IMAGE, + "player_pic_panel/player_local_icon": T.IMAGE, + "option_toggle": T.PANEL, + "permission_level_dropdown": T.PANEL, + "radio_title_and_icon": T.PANEL, + "radio_title_and_icon/radio_icon": T.IMAGE, + "radio_title_and_icon/radio_title": T.LABEL, + "radio_content_with_title_bar": T.STACK_PANEL, + "radio_content_with_title_bar/title_and_icon": T.PANEL, + "radio_content_with_title_bar/helper_text": T.LABEL, + "radio_content_with_title_bar/bottom_padding": T.PANEL, + "radio_visuals_with_title": T.PANEL, + "radio_visuals_with_title/radio_content": T.STACK_PANEL, + "radio_visuals_with_title_hover": T.IMAGE, + "radio_visuals_with_title_hover/radio_content": T.STACK_PANEL, + "permissions_visitor_visuals_with_title_normal": T.PANEL, + "permissions_visitor_visuals_with_title_hover": T.IMAGE, + "permissions_member_visuals_with_title_normal": T.PANEL, + "permissions_member_visuals_with_title_hover": T.IMAGE, + "permissions_op_visuals_with_title_normal": T.PANEL, + "permissions_op_visuals_with_title_hover": T.IMAGE, + "permissions_visitor_radio_visuals_normal": T.PANEL, + "permissions_visitor_radio_visuals_hover": T.PANEL, + "permissions_member_radio_visuals_normal": T.PANEL, + "permissions_member_radio_visuals_hover": T.PANEL, + "permissions_op_radio_visuals_normal": T.PANEL, + "permissions_op_radio_visuals_hover": T.PANEL, + "permissions_custom_radio_visuals_normal": T.PANEL, + "permissions_custom_radio_visuals_hover": T.PANEL, + "permission_level_radio": T.PANEL, + "permission_level_radio/radio_with_label_core": T.TOGGLE, + "permission_level_dropdown_content": T.PANEL, + "permission_level_dropdown_state_content": T.STACK_PANEL, + "permission_level_dropdown_state_content/icon_panel": T.PANEL, + "permission_level_dropdown_state_content/icon_panel/dropdown_icon_image": T.IMAGE, + "permission_level_dropdown_state_content/dropdown_label_padding": T.PANEL, + "permission_level_dropdown_state_content/label_panel": T.PANEL, + "permission_level_dropdown_state_content/label_panel/label": T.LABEL, + "permission_level_dropdown_state_content/arrow_panel": T.PANEL, + "permission_level_dropdown_state_content/arrow_panel/arrow_image": T.IMAGE, } export type PersonaCastCharacterScreenType = { - cast_modal_bottom_bar: T.STACK_PANEL - "cast_modal_bottom_bar/0": T.UNKNOWN - cast_common_dialog_background: T.IMAGE - "cast_common_dialog_background/top_bar": T.PANEL - "cast_common_dialog_background/popup_inner_contents": T.UNKNOWN - "cast_common_dialog_background/cast_modal_bottom_bar": T.STACK_PANEL - cast_modal_panel: T.INPUT_PANEL - "cast_modal_panel/cast_preview_modal_content": T.IMAGE - popup_dialog__cast_character_select: T.INPUT_PANEL - "popup_dialog__cast_character_select/background": T.IMAGE - "popup_dialog__cast_character_select/popup_background": T.INPUT_PANEL - common_dcast_popup_framework: T.INPUT_PANEL - common_cast_modal_top_bar: T.PANEL - "common_cast_modal_top_bar/title_panel": T.LABEL - "common_cast_modal_top_bar/close_button_holder": T.STACK_PANEL - cast_character_select_main: T.PANEL - "cast_character_select_main/modal_inner_background": T.IMAGE - "cast_character_select_main/main_content_horizontal_stack": T.STACK_PANEL - "cast_character_select_main/main_content_horizontal_stack/cast_grid": T.PANEL - "cast_character_select_main/main_content_horizontal_stack/vertical_centerer": T.PANEL - "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/top_fill": T.PANEL - "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/skin_viewer_panel": T.PANEL - "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_fill": T.PANEL - "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_padding": T.PANEL - cast_scroll_view_panel: T.PANEL - cast_grid_with_buttons: T.STACK_PANEL - "cast_grid_with_buttons/top_spacing": T.PANEL - "cast_grid_with_buttons/cast_grid": T.GRID - "cast_grid_with_buttons/bottom_spacing": T.PANEL - cast_grid_panel: T.PANEL - "cast_grid_panel/cast_grid": T.STACK_PANEL - cast_single_character_button_panel: T.PANEL - "cast_single_character_button_panel/cast_character_button": T.BUTTON - "cast_single_character_button_panel/cast_character_button/background_image": T.IMAGE - "cast_single_character_button_panel/cast_character_button/selected": T.IMAGE - "cast_single_character_button_panel/cast_character_button/default": T.PANEL - "cast_single_character_button_panel/cast_character_button/hover": T.IMAGE - "cast_single_character_button_panel/cast_character_button/pressed": T.IMAGE - "cast_single_character_button_panel/cast_character_button/button_outline": T.IMAGE - "cast_single_character_button_panel/cast_character_button/button_outline/cast_character_content": T.PANEL - cast_character_button_content_panel: T.PANEL - "cast_character_button_content_panel/cast_single_character_content_visible_panel": T.PANEL - "cast_character_button_content_panel/cast_single_character_content_visible_panel/cast_single_character_button_content": T.IMAGE - in_use_grid_item: T.IMAGE - persona_cast_paper_doll_panel: T.PANEL - "persona_cast_paper_doll_panel/preset_input_panel": T.INPUT_PANEL - character_loading_anim: T.IMAGE - character_loading_anim_panel: T.IMAGE - "character_loading_anim_panel/character_loading_anim": T.IMAGE - skin_viewer_panel_skin_model: T.PANEL - "skin_viewer_panel_skin_model/skin_model": T.CUSTOM - cast_character_screen_right_side_model: T.INPUT_PANEL - "cast_character_screen_right_side_model/skin_model_panel": T.PANEL - "cast_character_screen_right_side_model/skin_model_loading_anim": T.IMAGE - "cast_character_screen_right_side_model/skin_model_label": T.LABEL - common_background_blocker: T.IMAGE - "common_background_blocker/modal_background_button": T.BUTTON - common_preview_page_framework: T.INPUT_PANEL - "common_preview_page_framework/background": T.IMAGE - "common_preview_page_framework/cast_preview_modal": T.INPUT_PANEL - cast_preview_page_one: T.INPUT_PANEL - cast_preview_page_two: T.INPUT_PANEL - cast_preview_page_one_inner_section: T.PANEL - "cast_preview_page_one_inner_section/modal_inner_background": T.IMAGE - "cast_preview_page_one_inner_section/cast_content": T.INPUT_PANEL - "cast_preview_page_one_inner_section/cast_content/cast_image_cycler": T.IMAGE_CYCLER - "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel": T.STACK_PANEL - "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel": T.PANEL - "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel/text_cycler": T.LABEL_CYCLER - "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/buffer_panel": T.PANEL - "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_shoulder_button_display_panel": T.PANEL - chevron_image_panel: T.PANEL - "chevron_image_panel/chevron_image": T.IMAGE - chevron_button: T.BUTTON - shift_page_panel: T.PANEL - "shift_page_panel/centering_panel": T.PANEL - "shift_page_panel/centering_panel/0": T.UNKNOWN - shift_page_left_panel: T.PANEL - shift_page_right_panel: T.PANEL - horizontal_8px_padding: T.PANEL - horizontal_20px_padding: T.PANEL - ftue_subpage_indicator_panel: T.PANEL - "ftue_subpage_indicator_panel/controls_shoulder_button_display": T.STACK_PANEL - "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_padding": T.PANEL - "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_panel": T.PANEL - "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_padding": T.PANEL - "ftue_subpage_indicator_panel/controls_shoulder_button_display/page_indicator_grid": T.GRID_PAGE_INDICATOR - "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_padding": T.PANEL - "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_panel": T.PANEL - "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_padding": T.PANEL - individaul_cast_page_indicator: T.PANEL - "individaul_cast_page_indicator/panel_when_current_page": T.PANEL - "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding": T.PANEL - "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding/cast_dot": T.IMAGE - "individaul_cast_page_indicator/panel_when_not_current_page": T.PANEL - "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding": T.PANEL - "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding/cast_dot": T.IMAGE - how_to_section: T.STACK_PANEL - "how_to_section/how_to_image": T.IMAGE - "how_to_section/how_to_label_section": T.PANEL - "how_to_section/how_to_label_section/how_to_label": T.LABEL - cast_preview_page_two_inner_section: T.IMAGE - "cast_preview_page_two_inner_section/how_to_section_stack": T.STACK_PANEL - "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_left": T.STACK_PANEL - "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel": T.PANEL - "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel/divider": T.IMAGE - "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_right": T.STACK_PANEL + "cast_modal_bottom_bar": T.STACK_PANEL, + "cast_modal_bottom_bar/0": T.UNKNOWN, + "cast_common_dialog_background": T.IMAGE, + "cast_common_dialog_background/top_bar": T.PANEL, + "cast_common_dialog_background/popup_inner_contents": T.UNKNOWN, + "cast_common_dialog_background/cast_modal_bottom_bar": T.STACK_PANEL, + "cast_modal_panel": T.INPUT_PANEL, + "cast_modal_panel/cast_preview_modal_content": T.IMAGE, + "popup_dialog__cast_character_select": T.INPUT_PANEL, + "popup_dialog__cast_character_select/background": T.IMAGE, + "popup_dialog__cast_character_select/popup_background": T.INPUT_PANEL, + "common_dcast_popup_framework": T.INPUT_PANEL, + "common_cast_modal_top_bar": T.PANEL, + "common_cast_modal_top_bar/title_panel": T.LABEL, + "common_cast_modal_top_bar/close_button_holder": T.STACK_PANEL, + "cast_character_select_main": T.PANEL, + "cast_character_select_main/modal_inner_background": T.IMAGE, + "cast_character_select_main/main_content_horizontal_stack": T.STACK_PANEL, + "cast_character_select_main/main_content_horizontal_stack/cast_grid": T.PANEL, + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer": T.PANEL, + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/top_fill": T.PANEL, + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/skin_viewer_panel": T.PANEL, + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_fill": T.PANEL, + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_padding": T.PANEL, + "cast_scroll_view_panel": T.PANEL, + "cast_grid_with_buttons": T.STACK_PANEL, + "cast_grid_with_buttons/top_spacing": T.PANEL, + "cast_grid_with_buttons/cast_grid": T.GRID, + "cast_grid_with_buttons/bottom_spacing": T.PANEL, + "cast_grid_panel": T.PANEL, + "cast_grid_panel/cast_grid": T.STACK_PANEL, + "cast_single_character_button_panel": T.PANEL, + "cast_single_character_button_panel/cast_character_button": T.BUTTON, + "cast_single_character_button_panel/cast_character_button/background_image": T.IMAGE, + "cast_single_character_button_panel/cast_character_button/selected": T.IMAGE, + "cast_single_character_button_panel/cast_character_button/default": T.PANEL, + "cast_single_character_button_panel/cast_character_button/hover": T.IMAGE, + "cast_single_character_button_panel/cast_character_button/pressed": T.IMAGE, + "cast_single_character_button_panel/cast_character_button/button_outline": T.IMAGE, + "cast_single_character_button_panel/cast_character_button/button_outline/cast_character_content": T.PANEL, + "cast_character_button_content_panel": T.PANEL, + "cast_character_button_content_panel/cast_single_character_content_visible_panel": T.PANEL, + "cast_character_button_content_panel/cast_single_character_content_visible_panel/cast_single_character_button_content": T.IMAGE, + "in_use_grid_item": T.IMAGE, + "persona_cast_paper_doll_panel": T.PANEL, + "persona_cast_paper_doll_panel/preset_input_panel": T.INPUT_PANEL, + "character_loading_anim": T.IMAGE, + "character_loading_anim_panel": T.IMAGE, + "character_loading_anim_panel/character_loading_anim": T.IMAGE, + "skin_viewer_panel_skin_model": T.PANEL, + "skin_viewer_panel_skin_model/skin_model": T.CUSTOM, + "cast_character_screen_right_side_model": T.INPUT_PANEL, + "cast_character_screen_right_side_model/skin_model_panel": T.PANEL, + "cast_character_screen_right_side_model/skin_model_loading_anim": T.IMAGE, + "cast_character_screen_right_side_model/skin_model_label": T.LABEL, + "common_background_blocker": T.IMAGE, + "common_background_blocker/modal_background_button": T.BUTTON, + "common_preview_page_framework": T.INPUT_PANEL, + "common_preview_page_framework/background": T.IMAGE, + "common_preview_page_framework/cast_preview_modal": T.INPUT_PANEL, + "cast_preview_page_one": T.INPUT_PANEL, + "cast_preview_page_two": T.INPUT_PANEL, + "cast_preview_page_one_inner_section": T.PANEL, + "cast_preview_page_one_inner_section/modal_inner_background": T.IMAGE, + "cast_preview_page_one_inner_section/cast_content": T.INPUT_PANEL, + "cast_preview_page_one_inner_section/cast_content/cast_image_cycler": T.IMAGE_CYCLER, + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel": T.STACK_PANEL, + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel": T.PANEL, + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel/text_cycler": T.LABEL_CYCLER, + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/buffer_panel": T.PANEL, + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_shoulder_button_display_panel": T.PANEL, + "chevron_image_panel": T.PANEL, + "chevron_image_panel/chevron_image": T.IMAGE, + "chevron_button": T.BUTTON, + "shift_page_panel": T.PANEL, + "shift_page_panel/centering_panel": T.PANEL, + "shift_page_panel/centering_panel/0": T.UNKNOWN, + "shift_page_left_panel": T.PANEL, + "shift_page_right_panel": T.PANEL, + "horizontal_8px_padding": T.PANEL, + "horizontal_20px_padding": T.PANEL, + "ftue_subpage_indicator_panel": T.PANEL, + "ftue_subpage_indicator_panel/controls_shoulder_button_display": T.STACK_PANEL, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_padding": T.PANEL, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_panel": T.PANEL, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_padding": T.PANEL, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/page_indicator_grid": T.GRID_PAGE_INDICATOR, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_padding": T.PANEL, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_panel": T.PANEL, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_padding": T.PANEL, + "individaul_cast_page_indicator": T.PANEL, + "individaul_cast_page_indicator/panel_when_current_page": T.PANEL, + "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding": T.PANEL, + "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding/cast_dot": T.IMAGE, + "individaul_cast_page_indicator/panel_when_not_current_page": T.PANEL, + "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding": T.PANEL, + "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding/cast_dot": T.IMAGE, + "how_to_section": T.STACK_PANEL, + "how_to_section/how_to_image": T.IMAGE, + "how_to_section/how_to_label_section": T.PANEL, + "how_to_section/how_to_label_section/how_to_label": T.LABEL, + "cast_preview_page_two_inner_section": T.IMAGE, + "cast_preview_page_two_inner_section/how_to_section_stack": T.STACK_PANEL, + "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_left": T.STACK_PANEL, + "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel": T.PANEL, + "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel/divider": T.IMAGE, + "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_right": T.STACK_PANEL, } export type PersonaCommonType = { - icon_image: T.IMAGE - mashup_world: T.IMAGE - mashup_hangar: T.IMAGE - mashup_paintbrush: T.IMAGE - info_bulb_icon: T.IMAGE - green_checkmark_icon: T.IMAGE - persona_screen_background_content: T.IMAGE - loading_icon: T.IMAGE - focus_border: T.IMAGE - selected_border: T.IMAGE - equipped_border: T.IMAGE - progress_loading: T.IMAGE - "progress_loading/progress_loading": T.PANEL - title_rarity_positionable_title: T.LABEL - generic_title_panel: T.IMAGE - "generic_title_panel/title_label": T.LABEL - rarity_bar: T.IMAGE - item_rarity_color_background: T.IMAGE - piece_item_display: T.PANEL - "piece_item_display/item_renderer": T.PANEL - "piece_item_display/item_renderer/background": T.IMAGE - "piece_item_display/item_renderer/item_image": T.IMAGE - "piece_item_display/item_renderer/rarity_bar_panel": T.IMAGE - "piece_item_display/item_renderer/extra_control": T.PANEL - "piece_item_display/item_renderer/extra_control/control_instance": T.UNKNOWN - "piece_item_display/loading_progress_spinner": T.IMAGE - wheel_state: T.IMAGE - emote_label: T.LABEL - touch_name_label: T.LABEL - emote_image: T.PANEL - "emote_image/empty": T.IMAGE - "emote_image/emote_preview": T.PANEL - "emote_image/emote_preview/valid": T.IMAGE - "emote_image/emote_preview/valid_no_image": T.PANEL - "emote_image/emote_preview/valid_no_image/valid_text": T.LABEL - keyboard_hotkey_helpers: T.PANEL - "keyboard_hotkey_helpers/keyboard_1": T.STACK_PANEL - "keyboard_hotkey_helpers/keyboard_2": T.STACK_PANEL - "keyboard_hotkey_helpers/keyboard_3": T.STACK_PANEL - "keyboard_hotkey_helpers/keyboard_4": T.STACK_PANEL - gamepad_hotkey_helpers: T.PANEL - "gamepad_hotkey_helpers/quick_select_gamepad_helpers": T.PANEL - "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_y": T.STACK_PANEL - "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_b": T.UNKNOWN - "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_a": T.UNKNOWN - "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_x": T.STACK_PANEL - "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel": T.PANEL - "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel/analog_select_gamepad_helper": T.STACK_PANEL - emote_wheel_slot_content: T.PANEL - "emote_wheel_slot_content/image_0": T.PANEL - "emote_wheel_slot_content/touch_label_0": T.LABEL - selection_wheel: T.SELECTION_WHEEL - emote_selection_wheel: T.SELECTION_WHEEL - "emote_selection_wheel/default_state": T.IMAGE - "emote_selection_wheel/emote_slot_0_content": T.PANEL - "emote_selection_wheel/emote_slot_1_content": T.PANEL - "emote_selection_wheel/emote_slot_2_content": T.PANEL - "emote_selection_wheel/emote_slot_3_content": T.PANEL - emote_wheel_panel: T.PANEL - "emote_wheel_panel/emote_name": T.LABEL - "emote_wheel_panel/emote_wheel_content_panel": T.PANEL - "emote_wheel_panel/emote_wheel_content_panel/gamepad_helpers": T.PANEL - "emote_wheel_panel/emote_wheel_content_panel/keyboard_helpers": T.PANEL - "emote_wheel_panel/emote_wheel_content_panel/emote_wheel": T.SELECTION_WHEEL + "icon_image": T.IMAGE, + "mashup_world": T.IMAGE, + "mashup_hangar": T.IMAGE, + "mashup_paintbrush": T.IMAGE, + "info_bulb_icon": T.IMAGE, + "green_checkmark_icon": T.IMAGE, + "persona_screen_background_content": T.IMAGE, + "loading_icon": T.IMAGE, + "focus_border": T.IMAGE, + "selected_border": T.IMAGE, + "equipped_border": T.IMAGE, + "progress_loading": T.IMAGE, + "progress_loading/progress_loading": T.PANEL, + "title_rarity_positionable_title": T.LABEL, + "generic_title_panel": T.IMAGE, + "generic_title_panel/title_label": T.LABEL, + "rarity_bar": T.IMAGE, + "item_rarity_color_background": T.IMAGE, + "piece_item_display": T.PANEL, + "piece_item_display/item_renderer": T.PANEL, + "piece_item_display/item_renderer/background": T.IMAGE, + "piece_item_display/item_renderer/item_image": T.IMAGE, + "piece_item_display/item_renderer/rarity_bar_panel": T.IMAGE, + "piece_item_display/item_renderer/extra_control": T.PANEL, + "piece_item_display/item_renderer/extra_control/control_instance": T.UNKNOWN, + "piece_item_display/loading_progress_spinner": T.IMAGE, + "wheel_state": T.IMAGE, + "emote_label": T.LABEL, + "touch_name_label": T.LABEL, + "emote_image": T.PANEL, + "emote_image/empty": T.IMAGE, + "emote_image/emote_preview": T.PANEL, + "emote_image/emote_preview/valid": T.IMAGE, + "emote_image/emote_preview/valid_no_image": T.PANEL, + "emote_image/emote_preview/valid_no_image/valid_text": T.LABEL, + "keyboard_hotkey_helpers": T.PANEL, + "keyboard_hotkey_helpers/keyboard_1": T.STACK_PANEL, + "keyboard_hotkey_helpers/keyboard_2": T.STACK_PANEL, + "keyboard_hotkey_helpers/keyboard_3": T.STACK_PANEL, + "keyboard_hotkey_helpers/keyboard_4": T.STACK_PANEL, + "gamepad_hotkey_helpers": T.PANEL, + "gamepad_hotkey_helpers/quick_select_gamepad_helpers": T.PANEL, + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_y": T.STACK_PANEL, + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_b": T.UNKNOWN, + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_a": T.UNKNOWN, + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_x": T.STACK_PANEL, + "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel": T.PANEL, + "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel/analog_select_gamepad_helper": T.STACK_PANEL, + "emote_wheel_slot_content": T.PANEL, + "emote_wheel_slot_content/image_0": T.PANEL, + "emote_wheel_slot_content/touch_label_0": T.LABEL, + "selection_wheel": T.SELECTION_WHEEL, + "emote_selection_wheel": T.SELECTION_WHEEL, + "emote_selection_wheel/default_state": T.IMAGE, + "emote_selection_wheel/emote_slot_0_content": T.PANEL, + "emote_selection_wheel/emote_slot_1_content": T.PANEL, + "emote_selection_wheel/emote_slot_2_content": T.PANEL, + "emote_selection_wheel/emote_slot_3_content": T.PANEL, + "emote_wheel_panel": T.PANEL, + "emote_wheel_panel/emote_name": T.LABEL, + "emote_wheel_panel/emote_wheel_content_panel": T.PANEL, + "emote_wheel_panel/emote_wheel_content_panel/gamepad_helpers": T.PANEL, + "emote_wheel_panel/emote_wheel_content_panel/keyboard_helpers": T.PANEL, + "emote_wheel_panel/emote_wheel_content_panel/emote_wheel": T.SELECTION_WHEEL, } export type PersonaPopupsType = { - no_content_panel: T.PANEL - common_image: T.IMAGE - common_icon: T.IMAGE - create_persona_choice_checked_image: T.IMAGE - create_persona_choice_unchecked_image: T.IMAGE - modal_window_input_blocker: T.IMAGE - modal_popup_background: T.IMAGE - general_text_field: T.LABEL - title_text: T.LABEL - popup_title: T.LABEL - popup_content: T.PANEL - popup_ok_button: T.BUTTON - popup_frame: T.IMAGE - "popup_frame/title_label": T.LABEL - "popup_frame/close_button": T.BUTTON - "popup_frame/content": T.PANEL - "popup_frame/ok_button": T.BUTTON - popup_info_panel: T.PANEL - "popup_info_panel/background": T.IMAGE - "popup_info_panel/frame": T.IMAGE - common_dialog: T.INPUT_PANEL - "common_dialog/background": T.IMAGE - "common_dialog/panel": T.PANEL - popup_dialog_bg: T.IMAGE - "popup_dialog_bg/background_image": T.IMAGE - "popup_dialog_bg/title_panel": T.PANEL - "popup_dialog_bg/title_panel/title": T.LABEL - "popup_dialog_bg/popup_content": T.UNKNOWN - icon_title_bar: T.STACK_PANEL - "icon_title_bar/icon": T.IMAGE - "icon_title_bar/padding": T.PANEL - "icon_title_bar/text_title_panel": T.LABEL - popup_common: T.INPUT_PANEL - "popup_common/background": T.IMAGE - "popup_common/background/text_stack_panel": T.LABEL - popup_dialog__difference_information: T.INPUT_PANEL - differences_left_details: T.LABEL - differences_left_section: T.STACK_PANEL - "differences_left_section/title_bar": T.STACK_PANEL - "differences_left_section/padding_1": T.PANEL - "differences_left_section/details": T.LABEL - differences_detail_image: T.IMAGE - differences_title_card_display: T.STACK_PANEL - "differences_title_card_display/left": T.STACK_PANEL - "differences_title_card_display/padding_1": T.PANEL - "differences_title_card_display/right": T.IMAGE - differences_persona_detail_section: T.STACK_PANEL - differences_classic_skin_detail_section: T.STACK_PANEL - different_info_panel_contents: T.STACK_PANEL - "different_info_panel_contents/character_display": T.STACK_PANEL - "different_info_panel_contents/item_1_padding": T.PANEL - "different_info_panel_contents/divider": T.PANEL - "different_info_panel_contents/item_2_padding": T.PANEL - "different_info_panel_contents/classic_skin_display": T.STACK_PANEL - popup_dialog__preview_difference_information: T.INPUT_PANEL - popup_dialog__delete_persona: T.INPUT_PANEL - "popup_dialog__delete_persona/popup_dialog_bg": T.IMAGE - popup_dialog_delete_persona_content: T.PANEL - "popup_dialog_delete_persona_content/image": T.IMAGE - "popup_dialog_delete_persona_content/message": T.LABEL - "popup_dialog_delete_persona_content/buttons": T.STACK_PANEL - alex_warning: T.IMAGE - delete_popup_dialog_message: T.LABEL - delete_persona_button_stack: T.STACK_PANEL - "delete_persona_button_stack/left_button": T.BUTTON - "delete_persona_button_stack/padding": T.PANEL - "delete_persona_button_stack/right_button": T.BUTTON - delete_persona_left_button: T.BUTTON - delete_persona_right_button: T.BUTTON - popup_dialog__create_persona: T.INPUT_PANEL - create_persona_display: T.STACK_PANEL - "create_persona_display/vertical_padding_2px": T.PANEL - "create_persona_display/stack_content": T.STACK_PANEL - create_persona_choice_stack: T.STACK_PANEL - "create_persona_choice_stack/background1": T.PANEL - "create_persona_choice_stack/background2": T.PANEL - create_persona_choice_character: T.PANEL - "create_persona_choice_character/create_persona_choice_character": T.PANEL - select_default_character_button_vertical_panel: T.STACK_PANEL - "select_default_character_button_vertical_panel/padding": T.PANEL - "select_default_character_button_vertical_panel/select_default_character_button_panel": T.PANEL - "select_default_character_button_vertical_panel/select_default_character_button_panel/select_default_character_button": T.BUTTON - select_default_character_button: T.BUTTON - create_persona_choice_classic_skin: T.PANEL - create_persona_choice_button: T.PANEL - "create_persona_choice_button/choice_toggle": T.PANEL - create_persona_choice_background: T.STACK_PANEL - "create_persona_choice_background/choice_title_bar": T.STACK_PANEL - "create_persona_choice_background/choice_details_body": T.STACK_PANEL - "create_persona_choice_background/choice_bottom_content": T.UNKNOWN - create_persona_choice_title_bar: T.STACK_PANEL - "create_persona_choice_title_bar/checkbox": T.PANEL - "create_persona_choice_title_bar/spacing": T.PANEL - "create_persona_choice_title_bar/icon_title": T.STACK_PANEL - create_persona_choice_check_positioning: T.PANEL - "create_persona_choice_check_positioning/toggle_image": T.UNKNOWN - create_persona_choice_icon_title: T.STACK_PANEL - create_persona_choice_detail_panel: T.STACK_PANEL - "create_persona_choice_detail_panel/spacing": T.PANEL - "create_persona_choice_detail_panel/choice_details_body": T.LABEL - create_persona_choice_detail: T.LABEL - popup_dialog__invalid_custom_skin: T.INPUT_PANEL - "popup_dialog__invalid_custom_skin/popup_dialog_bg": T.IMAGE - popup_dialog_invalid_custom_skin_content: T.PANEL - "popup_dialog_invalid_custom_skin_content/popup_dialog_message": T.LABEL - "popup_dialog_invalid_custom_skin_content/popup_dialog_middle_button": T.BUTTON - popup_dialog__upsell_without_store: T.INPUT_PANEL - popup_dialog__choose_skin_type: T.INPUT_PANEL - "popup_dialog__choose_skin_type/popup_dialog_bg": T.IMAGE - popup_dialog_choose_skin_type_content: T.PANEL - "popup_dialog_choose_skin_type_content/popup_dialog_message": T.LABEL - "popup_dialog_choose_skin_type_content/left": T.PANEL - "popup_dialog_choose_skin_type_content/right": T.PANEL - popup_dialog_choose_skin_type_panel: T.PANEL - "popup_dialog_choose_skin_type_panel/choose_skin_type_button": T.BUTTON - popup_dialog_skin_model: T.PANEL - "popup_dialog_skin_model/paper_doll": T.CUSTOM - popup_dialog__custom_skin_info: T.INPUT_PANEL - "popup_dialog__custom_skin_info/background_image": T.IMAGE - "popup_dialog__custom_skin_info/popup_dialog_bg": T.IMAGE - custom_skin_info_panel_text: T.LABEL - custom_skin_info_panel: T.PANEL - "custom_skin_info_panel/message": T.LABEL - "custom_skin_info_panel/button_group": T.STACK_PANEL - custom_skin_info_button_collection: T.STACK_PANEL - "custom_skin_info_button_collection/settings": T.BUTTON - "custom_skin_info_button_collection/vertical_4_padding": T.PANEL - "custom_skin_info_button_collection/close": T.BUTTON - popup_dialog_close_button: T.BUTTON - usage_limited_settings_profile_button: T.BUTTON - custom_skin_popup_dialog_bg: T.IMAGE - "custom_skin_popup_dialog_bg/background_image": T.IMAGE - "custom_skin_popup_dialog_bg/vertical_align_title": T.PANEL - "custom_skin_popup_dialog_bg/vertical_align_title/title": T.LABEL - "custom_skin_popup_dialog_bg/popup_content": T.UNKNOWN - popup_dialog__emote_equip_slot_editor: T.INPUT_PANEL - "popup_dialog__emote_equip_slot_editor/background_image": T.IMAGE - "popup_dialog__emote_equip_slot_editor/popup_emote_wheel_dialog": T.PANEL - popup_emote_wheel_dialog: T.PANEL - "popup_emote_wheel_dialog/popup_background": T.IMAGE - emote_equip_slot_content: T.PANEL - "emote_equip_slot_content/close": T.BUTTON - "emote_equip_slot_content/emote_wheel_content_panel": T.PANEL - "emote_equip_slot_content/emote_wheel_content_panel/cancel": T.PANEL - "emote_equip_slot_content/emote_wheel_content_panel/emote_wheel_prompt_content": T.PANEL - close_emote_popup_controller: T.PANEL - "close_emote_popup_controller/close_ui": T.STACK_PANEL - emote_wheel_content: T.PANEL - popup_dialog__realms_plus_extra_info: T.INPUT_PANEL - "popup_dialog__realms_plus_extra_info/background_image": T.IMAGE - "popup_dialog__realms_plus_extra_info/dialog_bg": T.IMAGE - realms_plus_extra_info_popup_dialog_bg: T.IMAGE - "realms_plus_extra_info_popup_dialog_bg/background_image": T.IMAGE - "realms_plus_extra_info_popup_dialog_bg/title": T.LABEL - "realms_plus_extra_info_popup_dialog_bg/popup_content": T.UNKNOWN - realms_extra_info_panel_text: T.LABEL - realms_extra_info_panel: T.PANEL - "realms_extra_info_panel/realms_extra": T.PANEL - "realms_extra_info_panel/button_group": T.STACK_PANEL - realms_extra_info_button_collection: T.STACK_PANEL - "realms_extra_info_button_collection/close": T.BUTTON - realms_extra_info_content: T.PANEL - "realms_extra_info_content/the_spread": T.STACK_PANEL - "realms_extra_info_content/the_spread/pack_image": T.IMAGE - "realms_extra_info_content/the_spread/horizontal_6_padding": T.PANEL - "realms_extra_info_content/the_spread/the_info_stack": T.STACK_PANEL - "realms_extra_info_content/the_spread/the_info_stack/skins_and_world": T.STACK_PANEL - "realms_extra_info_content/the_spread/the_info_stack/padding": T.PANEL - "realms_extra_info_content/the_spread/the_info_stack/textures_and_usage": T.STACK_PANEL - pack_information_textures_and_usage_tooltip: T.STACK_PANEL - "pack_information_textures_and_usage_tooltip/textures": T.PANEL - "pack_information_textures_and_usage_tooltip/mid_padding": T.PANEL - "pack_information_textures_and_usage_tooltip/appearance_status": T.INPUT_PANEL - roamable_status_notification_panel: T.INPUT_PANEL - "roamable_status_notification_panel/appearance_status_notification": T.BUTTON - "roamable_status_notification_panel/roamable_status": T.PANEL - appearance_status_image_panel: T.PANEL - "appearance_status_image_panel/usage_limited": T.IMAGE - "appearance_status_image_panel/usage_not_limited": T.IMAGE - pack_information_skins_and_world: T.STACK_PANEL - "pack_information_skins_and_world/skins": T.PANEL - "pack_information_skins_and_world/mid_padding": T.PANEL - "pack_information_skins_and_world/worlds": T.PANEL - skin_info_label_and_image: T.PANEL - "skin_info_label_and_image/content_stack": T.STACK_PANEL - skin_info_image_panel: T.PANEL - "skin_info_image_panel/image": T.UNKNOWN - skin_info_label_panel_label: T.LABEL - skin_info_label_panel: T.PANEL - "skin_info_label_panel/label": T.LABEL - skin_info_content_stack: T.STACK_PANEL - "skin_info_content_stack/image_panel": T.PANEL - "skin_info_content_stack/horizontal_2_padding": T.PANEL - "skin_info_content_stack/label_panel": T.PANEL - realms_extra_info_pack_info: T.IMAGE - popup_toast: T.INPUT_PANEL + "no_content_panel": T.PANEL, + "common_image": T.IMAGE, + "common_icon": T.IMAGE, + "create_persona_choice_checked_image": T.IMAGE, + "create_persona_choice_unchecked_image": T.IMAGE, + "modal_window_input_blocker": T.IMAGE, + "modal_popup_background": T.IMAGE, + "general_text_field": T.LABEL, + "title_text": T.LABEL, + "popup_title": T.LABEL, + "popup_content": T.PANEL, + "popup_ok_button": T.BUTTON, + "popup_frame": T.IMAGE, + "popup_frame/title_label": T.LABEL, + "popup_frame/close_button": T.BUTTON, + "popup_frame/content": T.PANEL, + "popup_frame/ok_button": T.BUTTON, + "popup_info_panel": T.PANEL, + "popup_info_panel/background": T.IMAGE, + "popup_info_panel/frame": T.IMAGE, + "common_dialog": T.INPUT_PANEL, + "common_dialog/background": T.IMAGE, + "common_dialog/panel": T.PANEL, + "popup_dialog_bg": T.IMAGE, + "popup_dialog_bg/background_image": T.IMAGE, + "popup_dialog_bg/title_panel": T.PANEL, + "popup_dialog_bg/title_panel/title": T.LABEL, + "popup_dialog_bg/popup_content": T.UNKNOWN, + "icon_title_bar": T.STACK_PANEL, + "icon_title_bar/icon": T.IMAGE, + "icon_title_bar/padding": T.PANEL, + "icon_title_bar/text_title_panel": T.LABEL, + "popup_common": T.INPUT_PANEL, + "popup_common/background": T.IMAGE, + "popup_common/background/text_stack_panel": T.LABEL, + "popup_dialog__difference_information": T.INPUT_PANEL, + "differences_left_details": T.LABEL, + "differences_left_section": T.STACK_PANEL, + "differences_left_section/title_bar": T.STACK_PANEL, + "differences_left_section/padding_1": T.PANEL, + "differences_left_section/details": T.LABEL, + "differences_detail_image": T.IMAGE, + "differences_title_card_display": T.STACK_PANEL, + "differences_title_card_display/left": T.STACK_PANEL, + "differences_title_card_display/padding_1": T.PANEL, + "differences_title_card_display/right": T.IMAGE, + "differences_persona_detail_section": T.STACK_PANEL, + "differences_classic_skin_detail_section": T.STACK_PANEL, + "different_info_panel_contents": T.STACK_PANEL, + "different_info_panel_contents/character_display": T.STACK_PANEL, + "different_info_panel_contents/item_1_padding": T.PANEL, + "different_info_panel_contents/divider": T.PANEL, + "different_info_panel_contents/item_2_padding": T.PANEL, + "different_info_panel_contents/classic_skin_display": T.STACK_PANEL, + "popup_dialog__preview_difference_information": T.INPUT_PANEL, + "popup_dialog__delete_persona": T.INPUT_PANEL, + "popup_dialog__delete_persona/popup_dialog_bg": T.IMAGE, + "popup_dialog_delete_persona_content": T.PANEL, + "popup_dialog_delete_persona_content/image": T.IMAGE, + "popup_dialog_delete_persona_content/message": T.LABEL, + "popup_dialog_delete_persona_content/buttons": T.STACK_PANEL, + "alex_warning": T.IMAGE, + "delete_popup_dialog_message": T.LABEL, + "delete_persona_button_stack": T.STACK_PANEL, + "delete_persona_button_stack/left_button": T.BUTTON, + "delete_persona_button_stack/padding": T.PANEL, + "delete_persona_button_stack/right_button": T.BUTTON, + "delete_persona_left_button": T.BUTTON, + "delete_persona_right_button": T.BUTTON, + "popup_dialog__create_persona": T.INPUT_PANEL, + "create_persona_display": T.STACK_PANEL, + "create_persona_display/vertical_padding_2px": T.PANEL, + "create_persona_display/stack_content": T.STACK_PANEL, + "create_persona_choice_stack": T.STACK_PANEL, + "create_persona_choice_stack/background1": T.PANEL, + "create_persona_choice_stack/background2": T.PANEL, + "create_persona_choice_character": T.PANEL, + "create_persona_choice_character/create_persona_choice_character": T.PANEL, + "select_default_character_button_vertical_panel": T.STACK_PANEL, + "select_default_character_button_vertical_panel/padding": T.PANEL, + "select_default_character_button_vertical_panel/select_default_character_button_panel": T.PANEL, + "select_default_character_button_vertical_panel/select_default_character_button_panel/select_default_character_button": T.BUTTON, + "select_default_character_button": T.BUTTON, + "create_persona_choice_classic_skin": T.PANEL, + "create_persona_choice_button": T.PANEL, + "create_persona_choice_button/choice_toggle": T.PANEL, + "create_persona_choice_background": T.STACK_PANEL, + "create_persona_choice_background/choice_title_bar": T.STACK_PANEL, + "create_persona_choice_background/choice_details_body": T.STACK_PANEL, + "create_persona_choice_background/choice_bottom_content": T.UNKNOWN, + "create_persona_choice_title_bar": T.STACK_PANEL, + "create_persona_choice_title_bar/checkbox": T.PANEL, + "create_persona_choice_title_bar/spacing": T.PANEL, + "create_persona_choice_title_bar/icon_title": T.STACK_PANEL, + "create_persona_choice_check_positioning": T.PANEL, + "create_persona_choice_check_positioning/toggle_image": T.UNKNOWN, + "create_persona_choice_icon_title": T.STACK_PANEL, + "create_persona_choice_detail_panel": T.STACK_PANEL, + "create_persona_choice_detail_panel/spacing": T.PANEL, + "create_persona_choice_detail_panel/choice_details_body": T.LABEL, + "create_persona_choice_detail": T.LABEL, + "popup_dialog__invalid_custom_skin": T.INPUT_PANEL, + "popup_dialog__invalid_custom_skin/popup_dialog_bg": T.IMAGE, + "popup_dialog_invalid_custom_skin_content": T.PANEL, + "popup_dialog_invalid_custom_skin_content/popup_dialog_message": T.LABEL, + "popup_dialog_invalid_custom_skin_content/popup_dialog_middle_button": T.BUTTON, + "popup_dialog__upsell_without_store": T.INPUT_PANEL, + "popup_dialog__choose_skin_type": T.INPUT_PANEL, + "popup_dialog__choose_skin_type/popup_dialog_bg": T.IMAGE, + "popup_dialog_choose_skin_type_content": T.PANEL, + "popup_dialog_choose_skin_type_content/popup_dialog_message": T.LABEL, + "popup_dialog_choose_skin_type_content/left": T.PANEL, + "popup_dialog_choose_skin_type_content/right": T.PANEL, + "popup_dialog_choose_skin_type_panel": T.PANEL, + "popup_dialog_choose_skin_type_panel/choose_skin_type_button": T.BUTTON, + "popup_dialog_skin_model": T.PANEL, + "popup_dialog_skin_model/paper_doll": T.CUSTOM, + "popup_dialog__custom_skin_info": T.INPUT_PANEL, + "popup_dialog__custom_skin_info/background_image": T.IMAGE, + "popup_dialog__custom_skin_info/popup_dialog_bg": T.IMAGE, + "custom_skin_info_panel_text": T.LABEL, + "custom_skin_info_panel": T.PANEL, + "custom_skin_info_panel/message": T.LABEL, + "custom_skin_info_panel/button_group": T.STACK_PANEL, + "custom_skin_info_button_collection": T.STACK_PANEL, + "custom_skin_info_button_collection/settings": T.BUTTON, + "custom_skin_info_button_collection/vertical_4_padding": T.PANEL, + "custom_skin_info_button_collection/close": T.BUTTON, + "popup_dialog_close_button": T.BUTTON, + "usage_limited_settings_profile_button": T.BUTTON, + "custom_skin_popup_dialog_bg": T.IMAGE, + "custom_skin_popup_dialog_bg/background_image": T.IMAGE, + "custom_skin_popup_dialog_bg/vertical_align_title": T.PANEL, + "custom_skin_popup_dialog_bg/vertical_align_title/title": T.LABEL, + "custom_skin_popup_dialog_bg/popup_content": T.UNKNOWN, + "popup_dialog__emote_equip_slot_editor": T.INPUT_PANEL, + "popup_dialog__emote_equip_slot_editor/background_image": T.IMAGE, + "popup_dialog__emote_equip_slot_editor/popup_emote_wheel_dialog": T.PANEL, + "popup_emote_wheel_dialog": T.PANEL, + "popup_emote_wheel_dialog/popup_background": T.IMAGE, + "emote_equip_slot_content": T.PANEL, + "emote_equip_slot_content/close": T.BUTTON, + "emote_equip_slot_content/emote_wheel_content_panel": T.PANEL, + "emote_equip_slot_content/emote_wheel_content_panel/cancel": T.PANEL, + "emote_equip_slot_content/emote_wheel_content_panel/emote_wheel_prompt_content": T.PANEL, + "close_emote_popup_controller": T.PANEL, + "close_emote_popup_controller/close_ui": T.STACK_PANEL, + "emote_wheel_content": T.PANEL, + "popup_dialog__realms_plus_extra_info": T.INPUT_PANEL, + "popup_dialog__realms_plus_extra_info/background_image": T.IMAGE, + "popup_dialog__realms_plus_extra_info/dialog_bg": T.IMAGE, + "realms_plus_extra_info_popup_dialog_bg": T.IMAGE, + "realms_plus_extra_info_popup_dialog_bg/background_image": T.IMAGE, + "realms_plus_extra_info_popup_dialog_bg/title": T.LABEL, + "realms_plus_extra_info_popup_dialog_bg/popup_content": T.UNKNOWN, + "realms_extra_info_panel_text": T.LABEL, + "realms_extra_info_panel": T.PANEL, + "realms_extra_info_panel/realms_extra": T.PANEL, + "realms_extra_info_panel/button_group": T.STACK_PANEL, + "realms_extra_info_button_collection": T.STACK_PANEL, + "realms_extra_info_button_collection/close": T.BUTTON, + "realms_extra_info_content": T.PANEL, + "realms_extra_info_content/the_spread": T.STACK_PANEL, + "realms_extra_info_content/the_spread/pack_image": T.IMAGE, + "realms_extra_info_content/the_spread/horizontal_6_padding": T.PANEL, + "realms_extra_info_content/the_spread/the_info_stack": T.STACK_PANEL, + "realms_extra_info_content/the_spread/the_info_stack/skins_and_world": T.STACK_PANEL, + "realms_extra_info_content/the_spread/the_info_stack/padding": T.PANEL, + "realms_extra_info_content/the_spread/the_info_stack/textures_and_usage": T.STACK_PANEL, + "pack_information_textures_and_usage_tooltip": T.STACK_PANEL, + "pack_information_textures_and_usage_tooltip/textures": T.PANEL, + "pack_information_textures_and_usage_tooltip/mid_padding": T.PANEL, + "pack_information_textures_and_usage_tooltip/appearance_status": T.INPUT_PANEL, + "roamable_status_notification_panel": T.INPUT_PANEL, + "roamable_status_notification_panel/appearance_status_notification": T.BUTTON, + "roamable_status_notification_panel/roamable_status": T.PANEL, + "appearance_status_image_panel": T.PANEL, + "appearance_status_image_panel/usage_limited": T.IMAGE, + "appearance_status_image_panel/usage_not_limited": T.IMAGE, + "pack_information_skins_and_world": T.STACK_PANEL, + "pack_information_skins_and_world/skins": T.PANEL, + "pack_information_skins_and_world/mid_padding": T.PANEL, + "pack_information_skins_and_world/worlds": T.PANEL, + "skin_info_label_and_image": T.PANEL, + "skin_info_label_and_image/content_stack": T.STACK_PANEL, + "skin_info_image_panel": T.PANEL, + "skin_info_image_panel/image": T.UNKNOWN, + "skin_info_label_panel_label": T.LABEL, + "skin_info_label_panel": T.PANEL, + "skin_info_label_panel/label": T.LABEL, + "skin_info_content_stack": T.STACK_PANEL, + "skin_info_content_stack/image_panel": T.PANEL, + "skin_info_content_stack/horizontal_2_padding": T.PANEL, + "skin_info_content_stack/label_panel": T.PANEL, + "realms_extra_info_pack_info": T.IMAGE, + "popup_toast": T.INPUT_PANEL, } export type PlayType = { - label_background: T.IMAGE - dark_label_background: T.IMAGE - world_screenshot_base: T.IMAGE - collection_world_screenshot: T.IMAGE - "collection_world_screenshot/screenshot_picture": T.IMAGE - "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel": T.STACK_PANEL - "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/gradient_image_realmsplus_expired": T.IMAGE - "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired": T.IMAGE - "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired/exclamationmark": T.LABEL - world_item_grid_base: T.GRID - edit_icon: T.IMAGE - realms_stories_icon: T.IMAGE - realms_stories_icon_animated: T.IMAGE - realms_slots_edit_icon: T.IMAGE - worlds_icon: T.IMAGE - realms_icon: T.IMAGE - realms_chevron: T.IMAGE - friends_icon_1: T.IMAGE - friends_icon_2: T.IMAGE - bell_icon: T.IMAGE - invite_icon: T.IMAGE - delete_icon: T.IMAGE - world_download_icon: T.IMAGE - third_party_servers_icon: T.IMAGE - lan_icon: T.IMAGE - friends_server_icon: T.IMAGE - cross_platform_friends_server_icon: T.IMAGE - realms_remove_icon: T.IMAGE - game_online_icon: T.IMAGE - game_offline_icon: T.IMAGE - game_unavailable_icon: T.IMAGE - import_icon: T.IMAGE - add_server_icon: T.IMAGE - server_tab_icon: T.IMAGE - realms_art_icon: T.IMAGE - realms_text_background: T.IMAGE - connected_storage: T.IMAGE - feedback_icon: T.IMAGE - local_only_storage: T.IMAGE - local_and_cloud_storage: T.IMAGE - cloud_only_storage: T.IMAGE - left_arrow_icon: T.IMAGE - right_arrow_icon: T.IMAGE - small_progress_panel: T.IMAGE - sign_in_realms_image: T.PANEL - "sign_in_realms_image/chevron": T.IMAGE - "sign_in_realms_image/portal": T.IMAGE - realms_sign_in_prompt_label: T.LABEL - realms_sign_in_prompt: T.PANEL - "realms_sign_in_prompt/realms_sign_in_prompt_label": T.LABEL - realms_sign_in_prompt_friends: T.PANEL - "realms_sign_in_prompt_friends/realms_sign_in_prompt_label_friends": T.LABEL - sign_in_to_view_realms_content_panel: T.STACK_PANEL - "sign_in_to_view_realms_content_panel/sign_in_realms_image": T.PANEL - "sign_in_to_view_realms_content_panel/realms_sign_in_prompt": T.UNKNOWN - sign_in_to_view_realms_content_panel_friends: T.STACK_PANEL - sign_in_to_view_realms_button: T.BUTTON - sign_in_to_view_realms_button_friends: T.BUTTON - realms_list_text: T.LABEL - realms_world_header: T.LABEL - realms_world_details: T.LABEL - realms_world_type: T.LABEL - realms_world_player_count: T.LABEL - realms_world_game_status_icon: T.PANEL - "realms_world_game_status_icon/game_online_icon": T.IMAGE - "realms_world_game_status_icon/game_unavailable_icon": T.IMAGE - "realms_world_game_status_icon/game_offline_icon": T.IMAGE - realms_world_text_panel: T.PANEL - "realms_world_text_panel/realms_world_header": T.LABEL - "realms_world_text_panel/realms_world_details": T.LABEL - realms_world_trial_text_panel: T.PANEL - "realms_world_trial_text_panel/realms_world_header_text": T.LABEL - "realms_world_trial_text_panel/realms_world_details": T.LABEL - realms_world_content_text_area_panel: T.PANEL - "realms_world_content_text_area_panel/realms_world_text_panel": T.PANEL - realms_trial_content_text_area_panel: T.PANEL - "realms_trial_content_text_area_panel/realms_world_trial_text_panel": T.PANEL - realms_world_content_status_area_panel: T.STACK_PANEL - "realms_world_content_status_area_panel/world_player_count_text_panel": T.PANEL - "realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count": T.LABEL - "realms_world_content_status_area_panel/padding": T.PANEL - "realms_world_content_status_area_panel/realms_world_game_status_icon": T.PANEL - realms_world_content_status_area_panel_container: T.STACK_PANEL - "realms_world_content_status_area_panel_container/realms_world_status_panel": T.PANEL - "realms_world_content_status_area_panel_container/realms_world_status_panel/realms_world_content_status_area_panel": T.STACK_PANEL - "realms_world_content_status_area_panel_container/realms_world_type": T.LABEL - realms_world_content_panel: T.STACK_PANEL - "realms_world_content_panel/realm_screenshot": T.IMAGE - "realms_world_content_panel/padding": T.PANEL - "realms_world_content_panel/realms_world_content_text_area_panel": T.PANEL - "realms_world_content_panel/realms_world_content_status_area_panel": T.PANEL - "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_content_status_area_panel_container": T.STACK_PANEL - realms_trial_content_panel: T.STACK_PANEL - "realms_trial_content_panel/realm_screenshot": T.IMAGE - "realms_trial_content_panel/padding": T.PANEL - "realms_trial_content_panel/realms_trial_content_text_area_panel": T.PANEL - realms_world_item_button: T.BUTTON - realms_world_edit_button: T.BUTTON - realms_feed_button_content: T.IMAGE - "realms_feed_button_content/default_icon": T.IMAGE - "realms_feed_button_content/unread_icon_active": T.IMAGE - persistent_realms_feed_button_control: T.PANEL - realms_feed_button: T.BUTTON - leave_friends_realm_button: T.BUTTON - unread_story_count_text: T.LABEL - unread_story_count_text_background: T.IMAGE - unread_story_count_panel: T.PANEL - "unread_story_count_panel/text": T.LABEL - "unread_story_count_panel/text/background": T.IMAGE - realms_world_item: T.STACK_PANEL - "realms_world_item/realms_button_panel": T.PANEL - "realms_world_item/realms_button_panel/realms_world_item_button": T.BUTTON - "realms_world_item/realms_button_panel/tts_border": T.BUTTON - "realms_world_item/edit_panel": T.PANEL - "realms_world_item/edit_panel/realms_world_edit_button": T.BUTTON - "realms_world_item/edit_panel/realms_world_expiry_notification_image": T.IMAGE - "realms_world_item/feed_panel_with_unread_count": T.PANEL - "realms_world_item/feed_panel_with_unread_count/feed_panel": T.PANEL - "realms_world_item/feed_panel_with_unread_count/feed_panel/realms_feed_button": T.BUTTON - "realms_world_item/feed_panel_with_unread_count/unread_story_count": T.PANEL - "realms_world_item/leave_realm_panel": T.PANEL - "realms_world_item/leave_realm_panel/leave_friends_realm_button": T.BUTTON - realms_world_item_grid: T.GRID - network_world_header: T.STACK_PANEL - "network_world_header/network_world_header_icon": T.IMAGE - "network_world_header/spacer": T.PANEL - "network_world_header/header_panel": T.PANEL - "network_world_header/header_panel/network_world_header_text": T.LABEL - network_world_details: T.LABEL - network_world_player_count: T.PANEL - "network_world_player_count/count": T.LABEL - network_world_game_status_icon: T.PANEL - "network_world_game_status_icon/game_online_icon": T.IMAGE - "network_world_game_status_icon/game_unavailable_icon": T.IMAGE - "network_world_game_status_icon/game_offline_icon": T.IMAGE - network_world_text_panel: T.PANEL - "network_world_text_panel/network_world_header": T.STACK_PANEL - "network_world_text_panel/network_world_details": T.LABEL - network_world_content_text_area_panel: T.PANEL - "network_world_content_text_area_panel/network_world_text_panel": T.PANEL - network_world_content_status_area_panel: T.STACK_PANEL - "network_world_content_status_area_panel/network_player_count_text_panel": T.PANEL - "network_world_content_status_area_panel/network_player_count_text_panel/network_world_player_count": T.PANEL - "network_world_content_status_area_panel/padding": T.PANEL - "network_world_content_status_area_panel/network_world_game_status_icon": T.PANEL - network_world_content_status_area_panel_container: T.STACK_PANEL - "network_world_content_status_area_panel_container/network_world_status_panel": T.PANEL - "network_world_content_status_area_panel_container/network_world_status_panel/network_world_content_status_area_panel": T.STACK_PANEL - "network_world_content_status_area_panel_container/network_world_type": T.PANEL - network_world_type: T.PANEL - "network_world_type/type": T.LABEL - network_world_item_button_content: T.STACK_PANEL - "network_world_item_button_content/network_world_content_text_area_panel": T.PANEL - "network_world_item_button_content/network_status_area_panel": T.PANEL - "network_world_item_button_content/network_status_area_panel/network_world_content_status_area_panel_container": T.STACK_PANEL - "network_world_item_button_content/network_world_type_icon": T.LABEL - "network_world_item_button_content/network_world_type_icon/padding": T.PANEL - network_world_item_button: T.BUTTON - network_server_world_edit_button: T.BUTTON - network_world_item: T.PANEL - "network_world_item/network_world_item_button": T.BUTTON - "network_world_item/tts_border": T.BUTTON - network_world_item_grid: T.GRID - network_world_item_ignore_crossplay: T.PANEL - "network_world_item_ignore_crossplay/network_world_item_button": T.BUTTON - label_content_template: T.STACK_PANEL - "label_content_template/label_panel": T.PANEL - "label_content_template/label_panel/label_panel_layout": T.PANEL - "label_content_template/label_panel/label_panel_layout/label": T.LABEL - "label_content_template/content": T.UNKNOWN - information_panel: T.PANEL - "information_panel/background": T.IMAGE - "information_panel/background/label_panel_layout": T.PANEL - "information_panel/background/label_panel_layout/label": T.LABEL - "information_panel/focus_button": T.BUTTON - blocked_multiplayer_privileges_panel: T.PANEL - "blocked_multiplayer_privileges_panel/background": T.IMAGE - "blocked_multiplayer_privileges_panel/background/label_panel_layout": T.PANEL - "blocked_multiplayer_privileges_panel/background/label_panel_layout/label": T.LABEL - more_servers_grid: T.GRID - additional_server_toggle_content: T.STACK_PANEL - "additional_server_toggle_content/network_world_content_text_area_panel": T.PANEL - more_servers_label_panel: T.PANEL - "more_servers_label_panel/list_label": T.LABEL - more_servers_world_item: T.STACK_PANEL - "more_servers_world_item/additional_server_toggle_base": T.PANEL - "more_servers_world_item/network_server_world_edit_button": T.BUTTON - additional_server_info_panel: T.PANEL - "additional_server_info_panel/server_info_stack_panel": T.STACK_PANEL - "additional_server_info_panel/server_info_stack_panel/padding_1": T.PANEL - "additional_server_info_panel/server_info_stack_panel/server_name": T.LABEL - "additional_server_info_panel/server_info_stack_panel/padding_2": T.PANEL - "additional_server_info_panel/server_info_stack_panel/player_count": T.STACK_PANEL - "additional_server_info_panel/server_info_stack_panel/padding_3": T.PANEL - "additional_server_info_panel/server_info_stack_panel/ping": T.STACK_PANEL - "additional_server_info_panel/server_info_stack_panel/padding_4": T.PANEL - "additional_server_info_panel/server_info_stack_panel/join_server_button": T.BUTTON - ping_rate_icon: T.IMAGE - ping_rate_panel: T.PANEL - "ping_rate_panel/concurrency_stack": T.STACK_PANEL - "ping_rate_panel/concurrency_stack/player_count": T.LABEL - "ping_rate_panel/concurrency_stack/padding_0": T.PANEL - "ping_rate_panel/concurrency_stack/ping_rate_icon": T.IMAGE - add_server_info_panel: T.PANEL - "add_server_info_panel/server_info_stack_panel": T.STACK_PANEL - "add_server_info_panel/server_info_stack_panel/padding_0": T.PANEL - "add_server_info_panel/server_info_stack_panel/add_server_title": T.LABEL - "add_server_info_panel/server_info_stack_panel/padding_1": T.PANEL - "add_server_info_panel/server_info_stack_panel/add_server_description": T.LABEL - third_party_featured_server_grid: T.GRID - featured_server_world_item: T.PANEL - "featured_server_world_item/server_button": T.PANEL - server_button_content_panel: T.STACK_PANEL - "server_button_content_panel/top_panel": T.STACK_PANEL - "server_button_content_panel/top_panel/third_party_server_screenshot": T.IMAGE - "server_button_content_panel/top_panel/padding_0": T.PANEL - "server_button_content_panel/top_panel/title_panel": T.PANEL - "server_button_content_panel/top_panel/title_panel/third_party_server_name": T.LABEL - "server_button_content_panel/top_panel/title_panel/progress": T.IMAGE - "server_button_content_panel/padding": T.PANEL - "server_button_content_panel/bottom_panel": T.PANEL - "server_button_content_panel/bottom_panel/third_party_server_message": T.LABEL - third_party_server_content_panel: T.STACK_PANEL - "third_party_server_content_panel/ping_rate_panel": T.PANEL - loading_featured_servers_panel: T.PANEL - "loading_featured_servers_panel/load_bars": T.PANEL - "loading_featured_servers_panel/load_bars/progress_loading_bars": T.IMAGE - third_party_server_screenshot: T.IMAGE - "third_party_server_screenshot/picture": T.IMAGE - third_party_server_info_panel: T.PANEL - "third_party_server_info_panel/server_info_stack_panel": T.STACK_PANEL - "third_party_server_info_panel/server_info_stack_panel/padding_0": T.PANEL - "third_party_server_info_panel/server_info_stack_panel/server_screenshot": T.IMAGE - "third_party_server_info_panel/server_info_stack_panel/padding_1": T.PANEL - "third_party_server_info_panel/server_info_stack_panel/server_name": T.LABEL - "third_party_server_info_panel/server_info_stack_panel/padding_2": T.PANEL - "third_party_server_info_panel/server_info_stack_panel/player_count": T.STACK_PANEL - "third_party_server_info_panel/server_info_stack_panel/padding_3": T.PANEL - "third_party_server_info_panel/server_info_stack_panel/ping": T.STACK_PANEL - "third_party_server_info_panel/server_info_stack_panel/padding_4": T.PANEL - "third_party_server_info_panel/server_info_stack_panel/join_server_button": T.BUTTON - "third_party_server_info_panel/server_info_stack_panel/view_offers_button": T.BUTTON - "third_party_server_info_panel/server_info_stack_panel/padding_5": T.PANEL - "third_party_server_info_panel/server_info_stack_panel/screenshots_section": T.STACK_PANEL - "third_party_server_info_panel/server_info_stack_panel/description_section": T.STACK_PANEL - "third_party_server_info_panel/server_info_stack_panel/games_section": T.STACK_PANEL - "third_party_server_info_panel/server_info_stack_panel/news_section": T.STACK_PANEL - "third_party_server_info_panel/progress": T.IMAGE - text_icon_number_panel: T.STACK_PANEL - "text_icon_number_panel/text": T.LABEL - "text_icon_number_panel/padding_0": T.PANEL - "text_icon_number_panel/stack_panel": T.STACK_PANEL - "text_icon_number_panel/stack_panel/icon_panel": T.PANEL - "text_icon_number_panel/stack_panel/icon_panel/icon": T.IMAGE - "text_icon_number_panel/stack_panel/padding_1": T.PANEL - "text_icon_number_panel/stack_panel/number": T.LABEL - grey_bar_panel: T.STACK_PANEL - "grey_bar_panel/grey_bar": T.IMAGE - "grey_bar_panel/green_bar": T.IMAGE - "grey_bar_panel/padding": T.PANEL - screenshots_section_panel: T.STACK_PANEL - "screenshots_section_panel/divider_0": T.PANEL - "screenshots_section_panel/padding_0": T.PANEL - "screenshots_section_panel/screenshots_label": T.LABEL - "screenshots_section_panel/padding_1": T.PANEL - "screenshots_section_panel/screenshots": T.IMAGE - "screenshots_section_panel/padding_2": T.PANEL - "screenshots_section_panel/navigation_panel": T.STACK_PANEL - "screenshots_section_panel/navigation_panel/left_arrow_button": T.BUTTON - "screenshots_section_panel/navigation_panel/padding_0": T.PANEL - "screenshots_section_panel/navigation_panel/navigation_bar": T.PANEL - "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar": T.IMAGE - "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar/grey_bar_factory_panel": T.STACK_PANEL - "screenshots_section_panel/navigation_panel/padding_1": T.PANEL - "screenshots_section_panel/navigation_panel/right_arrow_button": T.BUTTON - "screenshots_section_panel/padding_3": T.PANEL - description_text_panel: T.PANEL - "description_text_panel/contents_description": T.LABEL - description_section_panel: T.STACK_PANEL - "description_section_panel/divider_0": T.PANEL - "description_section_panel/padding_0": T.PANEL - "description_section_panel/description_label": T.LABEL - "description_section_panel/padding_1": T.PANEL - "description_section_panel/read_more_panel": T.IMAGE - "description_section_panel/read_more_panel/description_text_small": T.PANEL - "description_section_panel/read_more_panel/description_text_full": T.PANEL - "description_section_panel/read_more_panel/description_read_more_button_panel": T.PANEL - "description_section_panel/read_more_panel/description_read_less_button_panel": T.PANEL - "description_section_panel/padding_3": T.PANEL - games_factory_object: T.STACK_PANEL - "games_factory_object/games_factory_panel": T.IMAGE - "games_factory_object/games_factory_panel/top_panel": T.STACK_PANEL - "games_factory_object/games_factory_panel/top_panel/game_image_panel": T.PANEL - "games_factory_object/games_factory_panel/top_panel/game_image_panel/game_image": T.IMAGE - "games_factory_object/games_factory_panel/top_panel/padding": T.PANEL - "games_factory_object/games_factory_panel/top_panel/game_title_panel": T.STACK_PANEL - "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_title": T.LABEL - "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_subtitle": T.LABEL - "games_factory_object/games_factory_panel/bottom_panel": T.PANEL - "games_factory_object/games_factory_panel/bottom_panel/bottom_panel": T.LABEL - "games_factory_object/padding": T.PANEL - games_section_panel: T.STACK_PANEL - "games_section_panel/divider_0": T.PANEL - "games_section_panel/padding_0": T.PANEL - "games_section_panel/description_label": T.LABEL - "games_section_panel/padding_1": T.PANEL - "games_section_panel/games_factory_panel": T.STACK_PANEL - "games_section_panel/padding_3": T.PANEL - news_text_panel: T.PANEL - "news_text_panel/contents_news": T.LABEL - news_section_panel: T.STACK_PANEL - "news_section_panel/divider_0": T.PANEL - "news_section_panel/padding_0": T.PANEL - "news_section_panel/news_label": T.LABEL - "news_section_panel/padding_1": T.PANEL - "news_section_panel/read_more_panel": T.IMAGE - "news_section_panel/read_more_panel/text_stack_panel": T.STACK_PANEL - "news_section_panel/read_more_panel/text_stack_panel/news_title_text": T.LABEL - "news_section_panel/read_more_panel/text_stack_panel/divider_panel": T.PANEL - "news_section_panel/read_more_panel/text_stack_panel/divider_panel/divider_0": T.PANEL - "news_section_panel/read_more_panel/text_stack_panel/news_text_small": T.PANEL - "news_section_panel/read_more_panel/text_stack_panel/news_text_full": T.PANEL - "news_section_panel/read_more_panel/news_read_more_button_panel": T.PANEL - "news_section_panel/read_more_panel/news_read_less_button_panel": T.PANEL - "news_section_panel/padding_3": T.PANEL - divider: T.IMAGE - blue_diskspace_bar: T.IMAGE - green_diskspace_bar: T.IMAGE - empty_diskspace_bar: T.IMAGE - legacy_world_content_status_area_panel: T.PANEL - "legacy_world_content_status_area_panel/world_storage_content_panel": T.PANEL - "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_separator": T.IMAGE - "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information": T.STACK_PANEL - "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_label": T.LABEL - "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/padding": T.PANEL - "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar": T.PANEL - "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/local_diskspace_bar": T.IMAGE - "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/legacy_diskspace_bar": T.IMAGE - "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/empty_diskspace_bar": T.IMAGE - world_list_text: T.LABEL - realm_screenshot: T.IMAGE - "realm_screenshot/picture": T.IMAGE - local_world_name: T.LABEL - legacy_world_name: T.LABEL - world_lock: T.IMAGE - local_world_game_mode: T.LABEL - legacy_world_game_mode: T.LABEL - local_world_date: T.LABEL - legacy_world_date: T.LABEL - local_world_filesize: T.LABEL - legacy_world_filesize: T.LABEL - local_world_connected_storage: T.PANEL - "local_world_connected_storage/local_and_cloud": T.IMAGE - "local_world_connected_storage/local_only": T.IMAGE - "local_world_connected_storage/cloud_only": T.IMAGE - local_world_lock_panel: T.PANEL - "local_world_lock_panel/lock": T.IMAGE - realms_plus_banner: T.PANEL - "realms_plus_banner/realms_banner": T.STACK_PANEL - local_world_text_panel: T.PANEL - "local_world_text_panel/text_indent": T.PANEL - "local_world_text_panel/text_indent/top_side": T.STACK_PANEL - "local_world_text_panel/text_indent/top_side/local_world_name": T.LABEL - "local_world_text_panel/text_indent/top_side/lock_1": T.PANEL - "local_world_text_panel/text_indent/top_side/local_world_date": T.LABEL - "local_world_text_panel/text_indent/bottom_side": T.STACK_PANEL - "local_world_text_panel/text_indent/bottom_side/realms_plus_icon": T.PANEL - "local_world_text_panel/text_indent/bottom_side/pad": T.PANEL - "local_world_text_panel/text_indent/bottom_side/local_world_game_mode": T.LABEL - "local_world_text_panel/text_indent/bottom_side/local_world_connected_storage": T.PANEL - "local_world_text_panel/text_indent/bottom_side/local_world_filesize": T.LABEL - legacy_world_text_panel: T.PANEL - "legacy_world_text_panel/text_indent": T.PANEL - "legacy_world_text_panel/text_indent/top_side": T.STACK_PANEL - "legacy_world_text_panel/text_indent/top_side/legacy_world_name": T.LABEL - "legacy_world_text_panel/text_indent/top_side/legacy_world_date": T.LABEL - "legacy_world_text_panel/text_indent/bottom_side": T.STACK_PANEL - "legacy_world_text_panel/text_indent/bottom_side/legacy_world_game_mode": T.LABEL - "legacy_world_text_panel/text_indent/bottom_side/legacy_world_filesize": T.LABEL - beta_retail_world_text_panel: T.PANEL - "beta_retail_world_text_panel/text_indent": T.PANEL - "beta_retail_world_text_panel/text_indent/top_side": T.STACK_PANEL - "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_name": T.LABEL - "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_date": T.LABEL - "beta_retail_world_text_panel/text_indent/bottom_side": T.STACK_PANEL - "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_game_mode": T.LABEL - "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_filesize": T.LABEL - world_content_panel: T.STACK_PANEL - "world_content_panel/world_screenshot": T.IMAGE - "world_content_panel/world_text_panel": T.UNKNOWN - ownership_verification_in_progress_content: T.STACK_PANEL - "ownership_verification_in_progress_content/top_padding": T.PANEL - "ownership_verification_in_progress_content/loading_bar_panel": T.PANEL - "ownership_verification_in_progress_content/loading_bar_panel/loading_bar_animation": T.IMAGE - "ownership_verification_in_progress_content/mid_padding": T.PANEL - "ownership_verification_in_progress_content/loading_label": T.LABEL - "ownership_verification_in_progress_content/bottom_padding": T.PANEL - ownership_verification_in_progress_panel: T.IMAGE - "ownership_verification_in_progress_panel/ownership_verification_in_progress_content": T.STACK_PANEL - local_world_item_button: T.BUTTON - legacy_world_item_button: T.BUTTON - beta_retail_world_item_button: T.BUTTON - local_world_edit_button: T.BUTTON - legacy_world_delete_button: T.BUTTON - legacy_world_migrate_button: T.BUTTON - local_world_item: T.PANEL - "local_world_item/header_button_panel": T.PANEL - "local_world_item/signin_in_progress_panel": T.IMAGE - legacy_world_item: T.STACK_PANEL - "legacy_world_item/header_button_panel_with_delete": T.PANEL - "legacy_world_item/header_button_panel_with_migrate": T.PANEL - "legacy_world_item/header_button_panel_no_delete": T.PANEL - beta_retail_world_item: T.PANEL - local_world_item_grid: T.GRID - legacy_world_item_grid: T.GRID - beta_retail_local_world_item_grid: T.GRID - beta_retail_legacy_world_item_grid: T.GRID - common_button_template: T.BUTTON - common_button_text: T.LABEL - add_friend_and_invite_panel: T.STACK_PANEL - "add_friend_and_invite_panel/add_friend_button": T.BUTTON - "add_friend_and_invite_panel/padding_1": T.PANEL - "add_friend_and_invite_panel/join_by_code_button": T.BUTTON - "add_friend_and_invite_panel/padding_2": T.PANEL - "add_friend_and_invite_panel/notification_button_panel": T.PANEL - "add_friend_and_invite_panel/notification_button_panel/notification_button": T.BUTTON - add_friend_button: T.BUTTON - join_by_code_button: T.BUTTON - add_server_toggle_button: T.PANEL - server_toggle_base: T.PANEL - quick_play_button: T.BUTTON - create_new_world_button: T.BUTTON - create_on_realms_button_panel: T.PANEL - "create_on_realms_button_panel/create_on_realms_button": T.BUTTON - import_world_button: T.BUTTON - sync_legacy_worlds_button: T.BUTTON - notification_button_text_layout: T.PANEL - "notification_button_text_layout/image1": T.IMAGE - "notification_button_text_layout/image2": T.IMAGE - "notification_button_text_layout/count": T.PANEL - notification_button_label_panel: T.PANEL - "notification_button_label_panel/notification_button_label": T.LABEL - notification_content: T.PANEL - notification_button: T.BUTTON - header_button_panel: T.PANEL - "header_button_panel/buttons": T.STACK_PANEL - "header_button_panel/buttons/primary_panel": T.PANEL - "header_button_panel/buttons/primary_panel/primary": T.UNKNOWN - "header_button_panel/buttons/secondary": T.UNKNOWN - header_button_panel_opt_in: T.PANEL - "header_button_panel_opt_in/buttons": T.STACK_PANEL - "header_button_panel_opt_in/buttons/primary_panel": T.PANEL - "header_button_panel_opt_in/buttons/primary_panel/primary": T.UNKNOWN - "header_button_panel_opt_in/buttons/secondary": T.UNKNOWN - "header_button_panel_opt_in/buttons/ternary": T.UNKNOWN - header_single_button_panel: T.PANEL - "header_single_button_panel/buttons": T.STACK_PANEL - "header_single_button_panel/buttons/primary": T.UNKNOWN - open_account_setting_button_gamecore: T.BUTTON - common_scroll_pane: T.PANEL - worlds_scroll_panel: T.PANEL - "worlds_scroll_panel/worlds_list_stack_panel": T.STACK_PANEL - game_tip_item_panel: T.STACK_PANEL - "game_tip_item_panel/info_bulb": T.IMAGE - "game_tip_item_panel/padding_1": T.PANEL - "game_tip_item_panel/label_panel": T.STACK_PANEL - "game_tip_item_panel/label_panel/padding_vertical": T.PANEL - "game_tip_item_panel/label_panel/realms_warning_text": T.LABEL - "game_tip_item_panel/label_panel/padding_vertical_1": T.PANEL - "game_tip_item_panel/more_info_button": T.BUTTON - realm_warning_tip: T.IMAGE - "realm_warning_tip/padding_vertical": T.PANEL - "realm_warning_tip/info_panel": T.STACK_PANEL - new_ui_switch_button_options_panel: T.STACK_PANEL - "new_ui_switch_button_options_panel/unlock_template_options_button": T.BUTTON - new_ui_servers_switch_button_options_panel: T.STACK_PANEL - "new_ui_servers_switch_button_options_panel/unlock_template_options_button": T.BUTTON - "new_ui_servers_switch_button_options_panel/padding_0": T.PANEL - worlds_stack_panel: T.STACK_PANEL - "worlds_stack_panel/padding_0": T.PANEL - "worlds_stack_panel/play_screen_warning": T.IMAGE - "worlds_stack_panel/header_button": T.STACK_PANEL - "worlds_stack_panel/header_button/quick_play": T.BUTTON - "worlds_stack_panel/header_button/buttons": T.PANEL - "worlds_stack_panel/worlds_crossplatform_disabled_panel": T.PANEL - "worlds_stack_panel/worlds_crossplatform_disable_spacer": T.PANEL - "worlds_stack_panel/realms_panel": T.STACK_PANEL - "worlds_stack_panel/realms_panel/realms_label": T.PANEL - "worlds_stack_panel/realms_panel/sign_in_to_view_realms_button": T.BUTTON - "worlds_stack_panel/realms_panel/realms_previews_panel": T.PANEL - "worlds_stack_panel/realms_panel/realms_previews_panel/new_offers_icon": T.IMAGE - "worlds_stack_panel/realms_panel/realms_previews_panel/realms_world_item_button": T.BUTTON - "worlds_stack_panel/realms_panel/create_on_realms_button_panel": T.PANEL - "worlds_stack_panel/realms_panel/personal_realms": T.GRID - "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel": T.IMAGE - "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/placeholder_loading_personal_realms": T.GRID - "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/loading_friends_realms_label": T.LABEL - "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/padding": T.PANEL - "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/progress_loading_bars": T.IMAGE - "worlds_stack_panel/realms_panel/realms_trial_panel": T.PANEL - "worlds_stack_panel/realms_panel/realms_trial_panel/realms_world_item_button": T.BUTTON - "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel": T.PANEL - "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel/realms_world_item_button": T.BUTTON - "worlds_stack_panel/realms_panel/padding_1": T.PANEL - "worlds_stack_panel/realms_multiplayer_blocked_panel": T.STACK_PANEL - "worlds_stack_panel/realms_multiplayer_blocked_panel/text_panel": T.STACK_PANEL - "worlds_stack_panel/realms_multiplayer_blocked_panel/open_uri_button": T.BUTTON - "worlds_stack_panel/realms_multiplayer_blocked_panel/open_account_setting_button_gamecore": T.BUTTON - "worlds_stack_panel/worlds_label": T.STACK_PANEL - "worlds_stack_panel/grid": T.GRID - "worlds_stack_panel/no_local_worlds_label": T.STACK_PANEL - "worlds_stack_panel/no_local_worlds_switch_setting": T.PANEL - "worlds_stack_panel/beta_retail_local_padding": T.PANEL - "worlds_stack_panel/beta_retail_local_worlds_label": T.PANEL - "worlds_stack_panel/beta_retail_local_grid": T.GRID - "worlds_stack_panel/loading_legacy_worlds_panel_padding": T.PANEL - "worlds_stack_panel/legacy_worlds_button": T.STACK_PANEL - "worlds_stack_panel/legacy_worlds_button/legacy_worlds_label": T.PANEL - "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel": T.PANEL - "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel/button": T.BUTTON - "worlds_stack_panel/loading_legacy_worlds_panel": T.IMAGE - "worlds_stack_panel/loading_legacy_worlds_panel/loading_legacy_worlds_label": T.LABEL - "worlds_stack_panel/loading_legacy_worlds_panel/padding": T.PANEL - "worlds_stack_panel/loading_legacy_worlds_panel/progress_loading_bars": T.IMAGE - "worlds_stack_panel/padding_2": T.PANEL - "worlds_stack_panel/upgrade_legacy_worlds_label": T.STACK_PANEL - "worlds_stack_panel/legacy_world_item_grid": T.GRID - "worlds_stack_panel/beta_retail_legacy_padding": T.PANEL - "worlds_stack_panel/beta_retail_legacy_worlds_label": T.PANEL - "worlds_stack_panel/beta_retail_legacy_grid": T.GRID - "worlds_stack_panel/pad_hack_panel": T.PANEL - no_local_worlds_switch_setting: T.PANEL - "no_local_worlds_switch_setting/bg": T.IMAGE - "no_local_worlds_switch_setting/bg/no_local_worlds_switch_setting": T.STACK_PANEL - "no_local_worlds_switch_setting/bg/no_local_worlds_get_help": T.STACK_PANEL - no_local_worlds_launch_help: T.BUTTON - storage_location_dropdown_panel: T.STACK_PANEL - "storage_location_dropdown_panel/padding1": T.PANEL - "storage_location_dropdown_panel/storage_location_dropdown": T.PANEL - storage_location_dropdown: T.PANEL - switch_storage_type_content: T.PANEL - light_centered_loading_label: T.LABEL - light_loading_label: T.LABEL - loading_label: T.LABEL - progress_loading_bars: T.IMAGE - world_list_label_panel: T.PANEL - "world_list_label_panel/list_label": T.LABEL - world_list_label_with_color_panel: T.STACK_PANEL - "world_list_label_with_color_panel/colored_square_sizer": T.PANEL - "world_list_label_with_color_panel/colored_square_sizer/colored_square": T.IMAGE - "world_list_label_with_color_panel/padding": T.PANEL - "world_list_label_with_color_panel/list_label": T.LABEL - empty_panel: T.PANEL - empty_grid: T.PANEL - lan_servers_scroll_content: T.STACK_PANEL - friends_scroll_panel: T.PANEL - "friends_scroll_panel/stack_panel": T.STACK_PANEL - "friends_scroll_panel/stack_panel/padding_0": T.PANEL - "friends_scroll_panel/stack_panel/friends_screen_warning": T.IMAGE - "friends_scroll_panel/stack_panel/header_button": T.STACK_PANEL - "friends_scroll_panel/stack_panel/header_button/add_friend_and_invite_panel": T.STACK_PANEL - "friends_scroll_panel/stack_panel/friends_crossplatform_disabled_panel": T.PANEL - "friends_scroll_panel/stack_panel/friends_crossplatform_disable_spacer": T.PANEL - "friends_scroll_panel/stack_panel/joinable_realms_panel": T.STACK_PANEL - "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms_label": T.PANEL - "friends_scroll_panel/stack_panel/joinable_realms_panel/sign_in_to_view_realms_button_friends": T.BUTTON - "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms": T.GRID - "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel": T.IMAGE - "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/placeholder_loading_friends_realms": T.GRID - "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/loading_friends_realms_label": T.LABEL - "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/padding": T.PANEL - "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/progress_loading_bars": T.IMAGE - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel": T.IMAGE - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack": T.STACK_PANEL - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel": T.PANEL - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel/message_label": T.LABEL - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel": T.PANEL - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel/link_image": T.IMAGE - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border": T.BUTTON - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/hover": T.IMAGE - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/pressed": T.IMAGE - "friends_scroll_panel/stack_panel/joinable_realms_panel/no_realms_grid": T.STACK_PANEL - "friends_scroll_panel/stack_panel/joinable_realms_panel/padding_1": T.PANEL - "friends_scroll_panel/stack_panel/friends_grid": T.STACK_PANEL - "friends_scroll_panel/stack_panel/pad_hack_panel": T.PANEL - "friends_scroll_panel/stack_panel/no_friends_grid_message": T.STACK_PANEL - "friends_scroll_panel/stack_panel/switch_find_cross_platform_friend_button": T.BUTTON - "friends_scroll_panel/stack_panel/add_friend_button_padding": T.PANEL - "friends_scroll_panel/stack_panel/cross_platform_friends_grid": T.STACK_PANEL - "friends_scroll_panel/stack_panel/no_cross_platform_friends_grid_message": T.STACK_PANEL - "friends_scroll_panel/stack_panel/general_no_multiplayer_grid_message": T.STACK_PANEL - "friends_scroll_panel/stack_panel/lan_grid": T.STACK_PANEL - "friends_scroll_panel/stack_panel/open_account_setting_button_gamecore": T.BUTTON - manually_added_servers_scrolling_content: T.STACK_PANEL - "manually_added_servers_scrolling_content/padding_0": T.PANEL - "manually_added_servers_scrolling_content/more_servers_label": T.LABEL - "manually_added_servers_scrolling_content/padding_1": T.PANEL - "manually_added_servers_scrolling_content/more_servers_grid": T.GRID - "manually_added_servers_scrolling_content/padding_3": T.PANEL - servers_content_panel: T.STACK_PANEL - "servers_content_panel/new_ui_servers_switch_button_options_panel": T.STACK_PANEL - "servers_content_panel/featured_servers_panel": T.STACK_PANEL - "servers_content_panel/featured_servers_panel/loading_featured_panel": T.IMAGE - "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_friends_realms_label": T.LABEL - "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_featured_servers_panel": T.PANEL - "servers_content_panel/featured_servers_panel/padding_1": T.PANEL - "servers_content_panel/featured_servers_panel/featured_servers_label": T.LABEL - "servers_content_panel/featured_servers_panel/padding_2": T.PANEL - "servers_content_panel/featured_servers_panel/third_party_featured_grid": T.GRID - "servers_content_panel/featured_servers_panel/padding_3": T.PANEL - "servers_content_panel/more_servers_divider": T.PANEL - "servers_content_panel/more_servers_panel": T.STACK_PANEL - server_scroll_panel: T.PANEL - "server_scroll_panel/stack_panel": T.STACK_PANEL - "server_scroll_panel/stack_panel/padding_0": T.PANEL - "server_scroll_panel/stack_panel/servers_crossplatform_disabled_panel": T.PANEL - "server_scroll_panel/stack_panel/no_featured_server_connection": T.PANEL - "server_scroll_panel/stack_panel/more_servers_blocked_panel": T.STACK_PANEL - "server_scroll_panel/stack_panel/more_servers_blocked_panel/server_multiplayer_privileges_blocked": T.PANEL - "server_scroll_panel/stack_panel/more_servers_blocked_panel/open_uri_button": T.BUTTON - "server_scroll_panel/stack_panel/padding_1": T.PANEL - "server_scroll_panel/stack_panel/server_content": T.UNKNOWN - "server_scroll_panel/stack_panel/add_server_button": T.PANEL - crossplatform_disabled_panel: T.PANEL - crossplatform_disable_spacer: T.PANEL - common_scrolling_panel: T.PANEL - common_content: T.INPUT_PANEL - scrolling_offsets: T.PANEL - worlds_scroll_content: T.INPUT_PANEL - "worlds_scroll_content/worlds_stack_panel": T.STACK_PANEL - "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer": T.PANEL - "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer/scrolling_panel": T.PANEL - "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer": T.PANEL - "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer/scrolling_panel": T.PANEL - friends_scroll_content: T.INPUT_PANEL - "friends_scroll_content/scrolling_panel": T.PANEL - show_servers_panel: T.STACK_PANEL - "show_servers_panel/left_panel": T.PANEL - "show_servers_panel/left_panel/scrolling_panel": T.PANEL - "show_servers_panel/divider_panel": T.PANEL - "show_servers_panel/divider_panel/main_divider": T.IMAGE - "show_servers_panel/right_panel": T.PANEL - server_scroll_content: T.INPUT_PANEL - "server_scroll_content/severs_panel": T.STACK_PANEL - "server_scroll_content/severs_panel/offset_panel": T.PANEL - "server_scroll_content/severs_panel/offset_panel/servers_sunsetting_warning": T.IMAGE - "server_scroll_content/severs_panel/show_servers_panel": T.STACK_PANEL - "server_scroll_content/feature_server_message_panel": T.STACK_PANEL - "server_scroll_content/feature_server_message_panel/featured_servers_label": T.LABEL - "server_scroll_content/feature_server_message_panel/pad": T.PANEL - "server_scroll_content/feature_server_message_panel/feature_server_message_panel": T.IMAGE - "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout": T.PANEL - "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout/label": T.LABEL - "server_scroll_content/feature_server_message_panel/open_account_setting_button_gamecore": T.BUTTON - server_content_area: T.PANEL - "server_content_area/third_party_scrolling_panel": T.PANEL - "server_content_area/additional_server_scrolling_panel": T.PANEL - "server_content_area/add_server_pane": T.PANEL - tab_front: T.IMAGE - tab_front_middle: T.IMAGE - tab_back: T.IMAGE - X_tab_back: T.IMAGE - tab_text_stack_panel: T.STACK_PANEL - "tab_text_stack_panel/padding": T.PANEL - "tab_text_stack_panel/text_section": T.PANEL - "tab_text_stack_panel/text_section/text": T.LABEL - "tab_text_stack_panel/count_section": T.PANEL - "tab_text_stack_panel/count_section/count_background_image": T.IMAGE - "tab_text_stack_panel/count_section/count_background_image/count": T.LABEL - common_navigation_tab_content: T.STACK_PANEL - "common_navigation_tab_content/padding_0": T.PANEL - "common_navigation_tab_content/icon_section": T.PANEL - "common_navigation_tab_content/icon_section/icon": T.UNKNOWN - "common_navigation_tab_content/padding_1": T.PANEL - "common_navigation_tab_content/count_text": T.STACK_PANEL - friends_navigation_tab_content: T.STACK_PANEL - "friends_navigation_tab_content/padding": T.PANEL - "friends_navigation_tab_content/icon_section": T.PANEL - "friends_navigation_tab_content/icon_section/icon": T.UNKNOWN - "friends_navigation_tab_content/icon_section_2": T.PANEL - "friends_navigation_tab_content/icon_section_2/icon": T.UNKNOWN - "friends_navigation_tab_content/icon_section_nobounce": T.PANEL - "friends_navigation_tab_content/icon_section_nobounce/icon": T.UNKNOWN - "friends_navigation_tab_content/icon_section_nobounce_2": T.PANEL - "friends_navigation_tab_content/icon_section_nobounce_2/icon": T.UNKNOWN - "friends_navigation_tab_content/icon_section_notification": T.PANEL - "friends_navigation_tab_content/icon_section_notification/icon1": T.IMAGE - "friends_navigation_tab_content/icon_section_notification/icon2": T.IMAGE - "friends_navigation_tab_content/count_text": T.STACK_PANEL - top_tab: T.PANEL - world_navigation_tab: T.PANEL - friends_navigation_tab: T.PANEL - server_navigation_tab: T.PANEL - close_navigation_tab: T.PANEL - "close_navigation_tab/background": T.IMAGE - "close_navigation_tab/x_image": T.BUTTON - common_tab_content_panel: T.PANEL - "common_tab_content_panel/background": T.PANEL - "common_tab_content_panel/content": T.UNKNOWN - worlds_tab_content_panel: T.PANEL - friends_tab_content_panel: T.PANEL - server_tab_content_panel: T.PANEL - common_tab_content_panel_type: T.INPUT_PANEL - edu_tab_content_panel_layout: T.INPUT_PANEL - "edu_tab_content_panel_layout/worlds_tab_content": T.PANEL - "edu_tab_content_panel_layout/friends_tab_content": T.PANEL - "edu_tab_content_panel_layout/server_tab_content_panel": T.PANEL - trial_tab_content_panel_layout: T.INPUT_PANEL - "trial_tab_content_panel_layout/worlds_tab_content": T.PANEL - default_tab_content_panel_layout: T.INPUT_PANEL - "default_tab_content_panel_layout/worlds_tab_content": T.PANEL - "default_tab_content_panel_layout/friends_tab_content": T.PANEL - "default_tab_content_panel_layout/server_tab_content_panel": T.PANEL - tab_navigation_panel_layout: T.STACK_PANEL - "tab_navigation_panel_layout/navigation_tabs": T.PANEL - "tab_navigation_panel_layout/navigation_tabs/content": T.UNKNOWN - "tab_navigation_panel_layout/close_navigation_tab": T.PANEL - "tab_navigation_panel_layout/close_navigation_tab/close_button": T.UNKNOWN - common_tab_navigation_panel_layout: T.STACK_PANEL - edu_tab_navigation_panel_layout: T.STACK_PANEL - "edu_tab_navigation_panel_layout/world_navigation_tab": T.PANEL - "edu_tab_navigation_panel_layout/friends_navigation_tab": T.PANEL - "edu_tab_navigation_panel_layout/server_navigation_tab": T.PANEL - trial_tab_navigation_panel_layout: T.STACK_PANEL - "trial_tab_navigation_panel_layout/world_navigation_tab": T.PANEL - default_tab_navigation_panel_layout: T.STACK_PANEL - "default_tab_navigation_panel_layout/world_navigation_tab": T.PANEL - "default_tab_navigation_panel_layout/friends_navigation_tab": T.PANEL - "default_tab_navigation_panel_layout/server_navigation_tab": T.PANEL - common_play_screen_panel: T.PANEL - play_screen_panel: T.PANEL - "play_screen_panel/tab_navigation_panel": T.STACK_PANEL - "play_screen_panel/tab_content_panel": T.UNKNOWN - "play_screen_panel/gamepad_helper_left_bumper": T.STACK_PANEL - "play_screen_panel/gamepad_helper_right_bumper": T.STACK_PANEL - "play_screen_panel/keyboard_helper_left_bracket": T.STACK_PANEL - "play_screen_panel/keyboard_helper_right_bracket": T.STACK_PANEL - default_play_screen_panel: T.PANEL - trial_play_screen_panel: T.PANEL - edu_play_screen_panel: T.PANEL - play_screen: T.SCREEN - play_screen_content: T.PANEL - "play_screen_content/main_control": T.UNKNOWN - "play_screen_content/editor_text_panel": T.PANEL - "play_screen_content/popup_dialog_factory": T.FACTORY - popup_dialog_join_by_code: T.INPUT_PANEL - "popup_dialog_join_by_code/join_by_code_popup_background": T.IMAGE - "popup_dialog_join_by_code/join_by_code_popup_content": T.PANEL - "popup_dialog_join_by_code/gamepad_helpers": T.STACK_PANEL - join_by_code_popup_background: T.IMAGE - join_by_code_popup_content: T.PANEL - "join_by_code_popup_content/popup_dialog_bg": T.IMAGE - "join_by_code_popup_content/popup_stack_panel": T.STACK_PANEL - "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_header": T.PANEL - "join_by_code_popup_content/popup_stack_panel/spacing_1": T.PANEL - "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_upper_body": T.STACK_PANEL - "join_by_code_popup_content/popup_stack_panel/spacing_2": T.PANEL - "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_lower_body": T.PANEL - join_by_code_popup_dialog_header: T.PANEL - "join_by_code_popup_dialog_header/join_by_code_popup_header_text": T.LABEL - "join_by_code_popup_dialog_header/close_button": T.BUTTON - join_by_code_popup_header_text: T.LABEL - join_by_code_popup_dialog_upper_body: T.STACK_PANEL - "join_by_code_popup_dialog_upper_body/margin1": T.PANEL - "join_by_code_popup_dialog_upper_body/join_by_code_popup_code_text_field": T.EDIT_BOX - "join_by_code_popup_dialog_upper_body/spacing": T.PANEL - "join_by_code_popup_dialog_upper_body/join_by_code_popup_join_button": T.BUTTON - "join_by_code_popup_dialog_upper_body/margin2": T.PANEL - join_by_code_popup_code_text_field: T.EDIT_BOX - join_by_code_popup_join_button: T.BUTTON - join_by_code_popup_help_text: T.LABEL - lower_body_default_content: T.PANEL - "lower_body_default_content/info_text": T.LABEL - join_by_code_popup_dialog_lower_body: T.PANEL - "join_by_code_popup_dialog_lower_body/default": T.PANEL - open_account_setting_button: T.BUTTON - popup_dialog_high_ping: T.INPUT_PANEL - "popup_dialog_high_ping/high_ping_popup_background": T.IMAGE - "popup_dialog_high_ping/high_ping_popup_content": T.PANEL - "popup_dialog_high_ping/gamepad_helpers": T.STACK_PANEL - popup_two_buttons: T.PANEL - "popup_two_buttons/common_panel": T.PANEL - "popup_two_buttons/title_label": T.PANEL - "popup_two_buttons/panel_indent": T.PANEL - "popup_two_buttons/panel_indent/inside_header_panel": T.UNKNOWN - "popup_two_buttons/button_panel": T.STACK_PANEL - "popup_two_buttons/button_panel/left_button_panel": T.BUTTON - "popup_two_buttons/button_panel/pad": T.PANEL - "popup_two_buttons/button_panel/right_button_panel": T.BUTTON - high_ping_popup_content_stack_panel: T.STACK_PANEL - "high_ping_popup_content_stack_panel/pad_0": T.PANEL - "high_ping_popup_content_stack_panel/ping_images_panel": T.PANEL - "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel": T.STACK_PANEL - "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/medium_connection": T.IMAGE - "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/pad": T.PANEL - "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/low_connection": T.IMAGE - "high_ping_popup_content_stack_panel/pad_1": T.PANEL - "high_ping_popup_content_stack_panel/text_line_1": T.LABEL - "high_ping_popup_content_stack_panel/pad_2": T.PANEL - "high_ping_popup_content_stack_panel/text_line_2": T.LABEL - "high_ping_popup_content_stack_panel/pad_3": T.PANEL - high_ping_popup_join_button: T.BUTTON - high_ping_popup_cancel_button: T.BUTTON - copyright: T.LABEL - development_version: T.LABEL - version: T.LABEL - editor_text_panel: T.PANEL - "editor_text_panel/copyright": T.LABEL - "editor_text_panel/development_version": T.LABEL - "editor_text_panel/version": T.LABEL - editor_settings_image_content: T.IMAGE - editor_settings_menu_button: T.BUTTON - editor_server_content_panel: T.STACK_PANEL - "editor_server_content_panel/more_servers_panel": T.STACK_PANEL - editor_tab_content_panel_layout: T.INPUT_PANEL - "editor_tab_content_panel_layout/worlds_tab_content": T.PANEL - "editor_tab_content_panel_layout/friends_tab_content": T.PANEL - "editor_tab_content_panel_layout/server_tab_content_panel": T.PANEL - editor_play_screen_panel: T.PANEL + "label_background": T.IMAGE, + "dark_label_background": T.IMAGE, + "world_screenshot_base": T.IMAGE, + "collection_world_screenshot": T.IMAGE, + "collection_world_screenshot/screenshot_picture": T.IMAGE, + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel": T.STACK_PANEL, + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/gradient_image_realmsplus_expired": T.IMAGE, + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired": T.IMAGE, + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired/exclamationmark": T.LABEL, + "world_item_grid_base": T.GRID, + "edit_icon": T.IMAGE, + "realms_stories_icon": T.IMAGE, + "realms_stories_icon_animated": T.IMAGE, + "realms_slots_edit_icon": T.IMAGE, + "worlds_icon": T.IMAGE, + "realms_icon": T.IMAGE, + "realms_chevron": T.IMAGE, + "friends_icon_1": T.IMAGE, + "friends_icon_2": T.IMAGE, + "bell_icon": T.IMAGE, + "invite_icon": T.IMAGE, + "delete_icon": T.IMAGE, + "world_download_icon": T.IMAGE, + "third_party_servers_icon": T.IMAGE, + "lan_icon": T.IMAGE, + "friends_server_icon": T.IMAGE, + "cross_platform_friends_server_icon": T.IMAGE, + "realms_remove_icon": T.IMAGE, + "game_online_icon": T.IMAGE, + "game_offline_icon": T.IMAGE, + "game_unavailable_icon": T.IMAGE, + "import_icon": T.IMAGE, + "add_server_icon": T.IMAGE, + "server_tab_icon": T.IMAGE, + "realms_art_icon": T.IMAGE, + "realms_text_background": T.IMAGE, + "connected_storage": T.IMAGE, + "feedback_icon": T.IMAGE, + "local_only_storage": T.IMAGE, + "local_and_cloud_storage": T.IMAGE, + "cloud_only_storage": T.IMAGE, + "left_arrow_icon": T.IMAGE, + "right_arrow_icon": T.IMAGE, + "small_progress_panel": T.IMAGE, + "sign_in_realms_image": T.PANEL, + "sign_in_realms_image/chevron": T.IMAGE, + "sign_in_realms_image/portal": T.IMAGE, + "realms_sign_in_prompt_label": T.LABEL, + "realms_sign_in_prompt": T.PANEL, + "realms_sign_in_prompt/realms_sign_in_prompt_label": T.LABEL, + "realms_sign_in_prompt_friends": T.PANEL, + "realms_sign_in_prompt_friends/realms_sign_in_prompt_label_friends": T.LABEL, + "sign_in_to_view_realms_content_panel": T.STACK_PANEL, + "sign_in_to_view_realms_content_panel/sign_in_realms_image": T.PANEL, + "sign_in_to_view_realms_content_panel/realms_sign_in_prompt": T.UNKNOWN, + "sign_in_to_view_realms_content_panel_friends": T.STACK_PANEL, + "sign_in_to_view_realms_button": T.BUTTON, + "sign_in_to_view_realms_button_friends": T.BUTTON, + "realms_list_text": T.LABEL, + "realms_world_header": T.LABEL, + "realms_world_details": T.LABEL, + "realms_world_type": T.LABEL, + "realms_world_player_count": T.LABEL, + "realms_world_game_status_icon": T.PANEL, + "realms_world_game_status_icon/game_online_icon": T.IMAGE, + "realms_world_game_status_icon/game_unavailable_icon": T.IMAGE, + "realms_world_game_status_icon/game_offline_icon": T.IMAGE, + "realms_world_text_panel": T.PANEL, + "realms_world_text_panel/realms_world_header": T.LABEL, + "realms_world_text_panel/realms_world_details": T.LABEL, + "realms_world_trial_text_panel": T.PANEL, + "realms_world_trial_text_panel/realms_world_header_text": T.LABEL, + "realms_world_trial_text_panel/realms_world_details": T.LABEL, + "realms_world_content_text_area_panel": T.PANEL, + "realms_world_content_text_area_panel/realms_world_text_panel": T.PANEL, + "realms_trial_content_text_area_panel": T.PANEL, + "realms_trial_content_text_area_panel/realms_world_trial_text_panel": T.PANEL, + "realms_world_content_status_area_panel": T.STACK_PANEL, + "realms_world_content_status_area_panel/world_player_count_text_panel": T.PANEL, + "realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count": T.LABEL, + "realms_world_content_status_area_panel/padding": T.PANEL, + "realms_world_content_status_area_panel/realms_world_game_status_icon": T.PANEL, + "realms_world_content_status_area_panel_container": T.STACK_PANEL, + "realms_world_content_status_area_panel_container/realms_world_status_panel": T.PANEL, + "realms_world_content_status_area_panel_container/realms_world_status_panel/realms_world_content_status_area_panel": T.STACK_PANEL, + "realms_world_content_status_area_panel_container/realms_world_type": T.LABEL, + "realms_world_content_panel": T.STACK_PANEL, + "realms_world_content_panel/realm_screenshot": T.IMAGE, + "realms_world_content_panel/padding": T.PANEL, + "realms_world_content_panel/realms_world_content_text_area_panel": T.PANEL, + "realms_world_content_panel/realms_world_content_status_area_panel": T.PANEL, + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_content_status_area_panel_container": T.STACK_PANEL, + "realms_trial_content_panel": T.STACK_PANEL, + "realms_trial_content_panel/realm_screenshot": T.IMAGE, + "realms_trial_content_panel/padding": T.PANEL, + "realms_trial_content_panel/realms_trial_content_text_area_panel": T.PANEL, + "realms_world_item_button": T.BUTTON, + "realms_world_edit_button": T.BUTTON, + "realms_feed_button_content": T.IMAGE, + "realms_feed_button_content/default_icon": T.IMAGE, + "realms_feed_button_content/unread_icon_active": T.IMAGE, + "persistent_realms_feed_button_control": T.PANEL, + "realms_feed_button": T.BUTTON, + "leave_friends_realm_button": T.BUTTON, + "unread_story_count_text": T.LABEL, + "unread_story_count_text_background": T.IMAGE, + "unread_story_count_panel": T.PANEL, + "unread_story_count_panel/text": T.LABEL, + "unread_story_count_panel/text/background": T.IMAGE, + "realms_world_item": T.STACK_PANEL, + "realms_world_item/realms_button_panel": T.PANEL, + "realms_world_item/realms_button_panel/realms_world_item_button": T.BUTTON, + "realms_world_item/realms_button_panel/tts_border": T.BUTTON, + "realms_world_item/edit_panel": T.PANEL, + "realms_world_item/edit_panel/realms_world_edit_button": T.BUTTON, + "realms_world_item/edit_panel/realms_world_expiry_notification_image": T.IMAGE, + "realms_world_item/feed_panel_with_unread_count": T.PANEL, + "realms_world_item/feed_panel_with_unread_count/feed_panel": T.PANEL, + "realms_world_item/feed_panel_with_unread_count/feed_panel/realms_feed_button": T.BUTTON, + "realms_world_item/feed_panel_with_unread_count/unread_story_count": T.PANEL, + "realms_world_item/leave_realm_panel": T.PANEL, + "realms_world_item/leave_realm_panel/leave_friends_realm_button": T.BUTTON, + "realms_world_item_grid": T.GRID, + "network_world_header": T.STACK_PANEL, + "network_world_header/network_world_header_icon": T.IMAGE, + "network_world_header/spacer": T.PANEL, + "network_world_header/header_panel": T.PANEL, + "network_world_header/header_panel/network_world_header_text": T.LABEL, + "network_world_details": T.LABEL, + "network_world_player_count": T.PANEL, + "network_world_player_count/count": T.LABEL, + "network_world_game_status_icon": T.PANEL, + "network_world_game_status_icon/game_online_icon": T.IMAGE, + "network_world_game_status_icon/game_unavailable_icon": T.IMAGE, + "network_world_game_status_icon/game_offline_icon": T.IMAGE, + "network_world_text_panel": T.PANEL, + "network_world_text_panel/network_world_header": T.STACK_PANEL, + "network_world_text_panel/network_world_details": T.LABEL, + "network_world_content_text_area_panel": T.PANEL, + "network_world_content_text_area_panel/network_world_text_panel": T.PANEL, + "network_world_content_status_area_panel": T.STACK_PANEL, + "network_world_content_status_area_panel/network_player_count_text_panel": T.PANEL, + "network_world_content_status_area_panel/network_player_count_text_panel/network_world_player_count": T.PANEL, + "network_world_content_status_area_panel/padding": T.PANEL, + "network_world_content_status_area_panel/network_world_game_status_icon": T.PANEL, + "network_world_content_status_area_panel_container": T.STACK_PANEL, + "network_world_content_status_area_panel_container/network_world_status_panel": T.PANEL, + "network_world_content_status_area_panel_container/network_world_status_panel/network_world_content_status_area_panel": T.STACK_PANEL, + "network_world_content_status_area_panel_container/network_world_type": T.PANEL, + "network_world_type": T.PANEL, + "network_world_type/type": T.LABEL, + "network_world_item_button_content": T.STACK_PANEL, + "network_world_item_button_content/network_world_content_text_area_panel": T.PANEL, + "network_world_item_button_content/network_status_area_panel": T.PANEL, + "network_world_item_button_content/network_status_area_panel/network_world_content_status_area_panel_container": T.STACK_PANEL, + "network_world_item_button_content/network_world_type_icon": T.LABEL, + "network_world_item_button_content/network_world_type_icon/padding": T.PANEL, + "network_world_item_button": T.BUTTON, + "network_server_world_edit_button": T.BUTTON, + "network_world_item": T.PANEL, + "network_world_item/network_world_item_button": T.BUTTON, + "network_world_item/tts_border": T.BUTTON, + "network_world_item_grid": T.GRID, + "network_world_item_ignore_crossplay": T.PANEL, + "network_world_item_ignore_crossplay/network_world_item_button": T.BUTTON, + "label_content_template": T.STACK_PANEL, + "label_content_template/label_panel": T.PANEL, + "label_content_template/label_panel/label_panel_layout": T.PANEL, + "label_content_template/label_panel/label_panel_layout/label": T.LABEL, + "label_content_template/content": T.UNKNOWN, + "information_panel": T.PANEL, + "information_panel/background": T.IMAGE, + "information_panel/background/label_panel_layout": T.PANEL, + "information_panel/background/label_panel_layout/label": T.LABEL, + "information_panel/focus_button": T.BUTTON, + "blocked_multiplayer_privileges_panel": T.PANEL, + "blocked_multiplayer_privileges_panel/background": T.IMAGE, + "blocked_multiplayer_privileges_panel/background/label_panel_layout": T.PANEL, + "blocked_multiplayer_privileges_panel/background/label_panel_layout/label": T.LABEL, + "more_servers_grid": T.GRID, + "additional_server_toggle_content": T.STACK_PANEL, + "additional_server_toggle_content/network_world_content_text_area_panel": T.PANEL, + "more_servers_label_panel": T.PANEL, + "more_servers_label_panel/list_label": T.LABEL, + "more_servers_world_item": T.STACK_PANEL, + "more_servers_world_item/additional_server_toggle_base": T.PANEL, + "more_servers_world_item/network_server_world_edit_button": T.BUTTON, + "additional_server_info_panel": T.PANEL, + "additional_server_info_panel/server_info_stack_panel": T.STACK_PANEL, + "additional_server_info_panel/server_info_stack_panel/padding_1": T.PANEL, + "additional_server_info_panel/server_info_stack_panel/server_name": T.LABEL, + "additional_server_info_panel/server_info_stack_panel/padding_2": T.PANEL, + "additional_server_info_panel/server_info_stack_panel/player_count": T.STACK_PANEL, + "additional_server_info_panel/server_info_stack_panel/padding_3": T.PANEL, + "additional_server_info_panel/server_info_stack_panel/ping": T.STACK_PANEL, + "additional_server_info_panel/server_info_stack_panel/padding_4": T.PANEL, + "additional_server_info_panel/server_info_stack_panel/join_server_button": T.BUTTON, + "ping_rate_icon": T.IMAGE, + "ping_rate_panel": T.PANEL, + "ping_rate_panel/concurrency_stack": T.STACK_PANEL, + "ping_rate_panel/concurrency_stack/player_count": T.LABEL, + "ping_rate_panel/concurrency_stack/padding_0": T.PANEL, + "ping_rate_panel/concurrency_stack/ping_rate_icon": T.IMAGE, + "add_server_info_panel": T.PANEL, + "add_server_info_panel/server_info_stack_panel": T.STACK_PANEL, + "add_server_info_panel/server_info_stack_panel/padding_0": T.PANEL, + "add_server_info_panel/server_info_stack_panel/add_server_title": T.LABEL, + "add_server_info_panel/server_info_stack_panel/padding_1": T.PANEL, + "add_server_info_panel/server_info_stack_panel/add_server_description": T.LABEL, + "third_party_featured_server_grid": T.GRID, + "featured_server_world_item": T.PANEL, + "featured_server_world_item/server_button": T.PANEL, + "server_button_content_panel": T.STACK_PANEL, + "server_button_content_panel/top_panel": T.STACK_PANEL, + "server_button_content_panel/top_panel/third_party_server_screenshot": T.IMAGE, + "server_button_content_panel/top_panel/padding_0": T.PANEL, + "server_button_content_panel/top_panel/title_panel": T.PANEL, + "server_button_content_panel/top_panel/title_panel/third_party_server_name": T.LABEL, + "server_button_content_panel/top_panel/title_panel/progress": T.IMAGE, + "server_button_content_panel/padding": T.PANEL, + "server_button_content_panel/bottom_panel": T.PANEL, + "server_button_content_panel/bottom_panel/third_party_server_message": T.LABEL, + "third_party_server_content_panel": T.STACK_PANEL, + "third_party_server_content_panel/ping_rate_panel": T.PANEL, + "loading_featured_servers_panel": T.PANEL, + "loading_featured_servers_panel/load_bars": T.PANEL, + "loading_featured_servers_panel/load_bars/progress_loading_bars": T.IMAGE, + "third_party_server_screenshot": T.IMAGE, + "third_party_server_screenshot/picture": T.IMAGE, + "third_party_server_info_panel": T.PANEL, + "third_party_server_info_panel/server_info_stack_panel": T.STACK_PANEL, + "third_party_server_info_panel/server_info_stack_panel/padding_0": T.PANEL, + "third_party_server_info_panel/server_info_stack_panel/server_screenshot": T.IMAGE, + "third_party_server_info_panel/server_info_stack_panel/padding_1": T.PANEL, + "third_party_server_info_panel/server_info_stack_panel/server_name": T.LABEL, + "third_party_server_info_panel/server_info_stack_panel/padding_2": T.PANEL, + "third_party_server_info_panel/server_info_stack_panel/player_count": T.STACK_PANEL, + "third_party_server_info_panel/server_info_stack_panel/padding_3": T.PANEL, + "third_party_server_info_panel/server_info_stack_panel/ping": T.STACK_PANEL, + "third_party_server_info_panel/server_info_stack_panel/padding_4": T.PANEL, + "third_party_server_info_panel/server_info_stack_panel/join_server_button": T.BUTTON, + "third_party_server_info_panel/server_info_stack_panel/view_offers_button": T.BUTTON, + "third_party_server_info_panel/server_info_stack_panel/padding_5": T.PANEL, + "third_party_server_info_panel/server_info_stack_panel/screenshots_section": T.STACK_PANEL, + "third_party_server_info_panel/server_info_stack_panel/description_section": T.STACK_PANEL, + "third_party_server_info_panel/server_info_stack_panel/games_section": T.STACK_PANEL, + "third_party_server_info_panel/server_info_stack_panel/news_section": T.STACK_PANEL, + "third_party_server_info_panel/progress": T.IMAGE, + "text_icon_number_panel": T.STACK_PANEL, + "text_icon_number_panel/text": T.LABEL, + "text_icon_number_panel/padding_0": T.PANEL, + "text_icon_number_panel/stack_panel": T.STACK_PANEL, + "text_icon_number_panel/stack_panel/icon_panel": T.PANEL, + "text_icon_number_panel/stack_panel/icon_panel/icon": T.IMAGE, + "text_icon_number_panel/stack_panel/padding_1": T.PANEL, + "text_icon_number_panel/stack_panel/number": T.LABEL, + "grey_bar_panel": T.STACK_PANEL, + "grey_bar_panel/grey_bar": T.IMAGE, + "grey_bar_panel/green_bar": T.IMAGE, + "grey_bar_panel/padding": T.PANEL, + "screenshots_section_panel": T.STACK_PANEL, + "screenshots_section_panel/divider_0": T.PANEL, + "screenshots_section_panel/padding_0": T.PANEL, + "screenshots_section_panel/screenshots_label": T.LABEL, + "screenshots_section_panel/padding_1": T.PANEL, + "screenshots_section_panel/screenshots": T.IMAGE, + "screenshots_section_panel/padding_2": T.PANEL, + "screenshots_section_panel/navigation_panel": T.STACK_PANEL, + "screenshots_section_panel/navigation_panel/left_arrow_button": T.BUTTON, + "screenshots_section_panel/navigation_panel/padding_0": T.PANEL, + "screenshots_section_panel/navigation_panel/navigation_bar": T.PANEL, + "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar": T.IMAGE, + "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar/grey_bar_factory_panel": T.STACK_PANEL, + "screenshots_section_panel/navigation_panel/padding_1": T.PANEL, + "screenshots_section_panel/navigation_panel/right_arrow_button": T.BUTTON, + "screenshots_section_panel/padding_3": T.PANEL, + "description_text_panel": T.PANEL, + "description_text_panel/contents_description": T.LABEL, + "description_section_panel": T.STACK_PANEL, + "description_section_panel/divider_0": T.PANEL, + "description_section_panel/padding_0": T.PANEL, + "description_section_panel/description_label": T.LABEL, + "description_section_panel/padding_1": T.PANEL, + "description_section_panel/read_more_panel": T.IMAGE, + "description_section_panel/read_more_panel/description_text_small": T.PANEL, + "description_section_panel/read_more_panel/description_text_full": T.PANEL, + "description_section_panel/read_more_panel/description_read_more_button_panel": T.PANEL, + "description_section_panel/read_more_panel/description_read_less_button_panel": T.PANEL, + "description_section_panel/padding_3": T.PANEL, + "games_factory_object": T.STACK_PANEL, + "games_factory_object/games_factory_panel": T.IMAGE, + "games_factory_object/games_factory_panel/top_panel": T.STACK_PANEL, + "games_factory_object/games_factory_panel/top_panel/game_image_panel": T.PANEL, + "games_factory_object/games_factory_panel/top_panel/game_image_panel/game_image": T.IMAGE, + "games_factory_object/games_factory_panel/top_panel/padding": T.PANEL, + "games_factory_object/games_factory_panel/top_panel/game_title_panel": T.STACK_PANEL, + "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_title": T.LABEL, + "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_subtitle": T.LABEL, + "games_factory_object/games_factory_panel/bottom_panel": T.PANEL, + "games_factory_object/games_factory_panel/bottom_panel/bottom_panel": T.LABEL, + "games_factory_object/padding": T.PANEL, + "games_section_panel": T.STACK_PANEL, + "games_section_panel/divider_0": T.PANEL, + "games_section_panel/padding_0": T.PANEL, + "games_section_panel/description_label": T.LABEL, + "games_section_panel/padding_1": T.PANEL, + "games_section_panel/games_factory_panel": T.STACK_PANEL, + "games_section_panel/padding_3": T.PANEL, + "news_text_panel": T.PANEL, + "news_text_panel/contents_news": T.LABEL, + "news_section_panel": T.STACK_PANEL, + "news_section_panel/divider_0": T.PANEL, + "news_section_panel/padding_0": T.PANEL, + "news_section_panel/news_label": T.LABEL, + "news_section_panel/padding_1": T.PANEL, + "news_section_panel/read_more_panel": T.IMAGE, + "news_section_panel/read_more_panel/text_stack_panel": T.STACK_PANEL, + "news_section_panel/read_more_panel/text_stack_panel/news_title_text": T.LABEL, + "news_section_panel/read_more_panel/text_stack_panel/divider_panel": T.PANEL, + "news_section_panel/read_more_panel/text_stack_panel/divider_panel/divider_0": T.PANEL, + "news_section_panel/read_more_panel/text_stack_panel/news_text_small": T.PANEL, + "news_section_panel/read_more_panel/text_stack_panel/news_text_full": T.PANEL, + "news_section_panel/read_more_panel/news_read_more_button_panel": T.PANEL, + "news_section_panel/read_more_panel/news_read_less_button_panel": T.PANEL, + "news_section_panel/padding_3": T.PANEL, + "divider": T.IMAGE, + "blue_diskspace_bar": T.IMAGE, + "green_diskspace_bar": T.IMAGE, + "empty_diskspace_bar": T.IMAGE, + "legacy_world_content_status_area_panel": T.PANEL, + "legacy_world_content_status_area_panel/world_storage_content_panel": T.PANEL, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_separator": T.IMAGE, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information": T.STACK_PANEL, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_label": T.LABEL, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/padding": T.PANEL, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar": T.PANEL, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/local_diskspace_bar": T.IMAGE, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/legacy_diskspace_bar": T.IMAGE, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/empty_diskspace_bar": T.IMAGE, + "world_list_text": T.LABEL, + "realm_screenshot": T.IMAGE, + "realm_screenshot/picture": T.IMAGE, + "local_world_name": T.LABEL, + "legacy_world_name": T.LABEL, + "world_lock": T.IMAGE, + "local_world_game_mode": T.LABEL, + "legacy_world_game_mode": T.LABEL, + "local_world_date": T.LABEL, + "legacy_world_date": T.LABEL, + "local_world_filesize": T.LABEL, + "legacy_world_filesize": T.LABEL, + "local_world_connected_storage": T.PANEL, + "local_world_connected_storage/local_and_cloud": T.IMAGE, + "local_world_connected_storage/local_only": T.IMAGE, + "local_world_connected_storage/cloud_only": T.IMAGE, + "local_world_lock_panel": T.PANEL, + "local_world_lock_panel/lock": T.IMAGE, + "realms_plus_banner": T.PANEL, + "realms_plus_banner/realms_banner": T.STACK_PANEL, + "local_world_text_panel": T.PANEL, + "local_world_text_panel/text_indent": T.PANEL, + "local_world_text_panel/text_indent/top_side": T.STACK_PANEL, + "local_world_text_panel/text_indent/top_side/local_world_name": T.LABEL, + "local_world_text_panel/text_indent/top_side/lock_1": T.PANEL, + "local_world_text_panel/text_indent/top_side/local_world_date": T.LABEL, + "local_world_text_panel/text_indent/bottom_side": T.STACK_PANEL, + "local_world_text_panel/text_indent/bottom_side/realms_plus_icon": T.PANEL, + "local_world_text_panel/text_indent/bottom_side/pad": T.PANEL, + "local_world_text_panel/text_indent/bottom_side/local_world_game_mode": T.LABEL, + "local_world_text_panel/text_indent/bottom_side/local_world_connected_storage": T.PANEL, + "local_world_text_panel/text_indent/bottom_side/local_world_filesize": T.LABEL, + "legacy_world_text_panel": T.PANEL, + "legacy_world_text_panel/text_indent": T.PANEL, + "legacy_world_text_panel/text_indent/top_side": T.STACK_PANEL, + "legacy_world_text_panel/text_indent/top_side/legacy_world_name": T.LABEL, + "legacy_world_text_panel/text_indent/top_side/legacy_world_date": T.LABEL, + "legacy_world_text_panel/text_indent/bottom_side": T.STACK_PANEL, + "legacy_world_text_panel/text_indent/bottom_side/legacy_world_game_mode": T.LABEL, + "legacy_world_text_panel/text_indent/bottom_side/legacy_world_filesize": T.LABEL, + "beta_retail_world_text_panel": T.PANEL, + "beta_retail_world_text_panel/text_indent": T.PANEL, + "beta_retail_world_text_panel/text_indent/top_side": T.STACK_PANEL, + "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_name": T.LABEL, + "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_date": T.LABEL, + "beta_retail_world_text_panel/text_indent/bottom_side": T.STACK_PANEL, + "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_game_mode": T.LABEL, + "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_filesize": T.LABEL, + "world_content_panel": T.STACK_PANEL, + "world_content_panel/world_screenshot": T.IMAGE, + "world_content_panel/world_text_panel": T.UNKNOWN, + "ownership_verification_in_progress_content": T.STACK_PANEL, + "ownership_verification_in_progress_content/top_padding": T.PANEL, + "ownership_verification_in_progress_content/loading_bar_panel": T.PANEL, + "ownership_verification_in_progress_content/loading_bar_panel/loading_bar_animation": T.IMAGE, + "ownership_verification_in_progress_content/mid_padding": T.PANEL, + "ownership_verification_in_progress_content/loading_label": T.LABEL, + "ownership_verification_in_progress_content/bottom_padding": T.PANEL, + "ownership_verification_in_progress_panel": T.IMAGE, + "ownership_verification_in_progress_panel/ownership_verification_in_progress_content": T.STACK_PANEL, + "local_world_item_button": T.BUTTON, + "legacy_world_item_button": T.BUTTON, + "beta_retail_world_item_button": T.BUTTON, + "local_world_edit_button": T.BUTTON, + "legacy_world_delete_button": T.BUTTON, + "legacy_world_migrate_button": T.BUTTON, + "local_world_item": T.PANEL, + "local_world_item/header_button_panel": T.PANEL, + "local_world_item/signin_in_progress_panel": T.IMAGE, + "legacy_world_item": T.STACK_PANEL, + "legacy_world_item/header_button_panel_with_delete": T.PANEL, + "legacy_world_item/header_button_panel_with_migrate": T.PANEL, + "legacy_world_item/header_button_panel_no_delete": T.PANEL, + "beta_retail_world_item": T.PANEL, + "local_world_item_grid": T.GRID, + "legacy_world_item_grid": T.GRID, + "beta_retail_local_world_item_grid": T.GRID, + "beta_retail_legacy_world_item_grid": T.GRID, + "common_button_template": T.BUTTON, + "common_button_text": T.LABEL, + "add_friend_and_invite_panel": T.STACK_PANEL, + "add_friend_and_invite_panel/add_friend_button": T.BUTTON, + "add_friend_and_invite_panel/padding_1": T.PANEL, + "add_friend_and_invite_panel/join_by_code_button": T.BUTTON, + "add_friend_and_invite_panel/padding_2": T.PANEL, + "add_friend_and_invite_panel/notification_button_panel": T.PANEL, + "add_friend_and_invite_panel/notification_button_panel/notification_button": T.BUTTON, + "add_friend_button": T.BUTTON, + "join_by_code_button": T.BUTTON, + "add_server_toggle_button": T.PANEL, + "server_toggle_base": T.PANEL, + "quick_play_button": T.BUTTON, + "create_new_world_button": T.BUTTON, + "create_on_realms_button_panel": T.PANEL, + "create_on_realms_button_panel/create_on_realms_button": T.BUTTON, + "import_world_button": T.BUTTON, + "sync_legacy_worlds_button": T.BUTTON, + "notification_button_text_layout": T.PANEL, + "notification_button_text_layout/image1": T.IMAGE, + "notification_button_text_layout/image2": T.IMAGE, + "notification_button_text_layout/count": T.PANEL, + "notification_button_label_panel": T.PANEL, + "notification_button_label_panel/notification_button_label": T.LABEL, + "notification_content": T.PANEL, + "notification_button": T.BUTTON, + "header_button_panel": T.PANEL, + "header_button_panel/buttons": T.STACK_PANEL, + "header_button_panel/buttons/primary_panel": T.PANEL, + "header_button_panel/buttons/primary_panel/primary": T.UNKNOWN, + "header_button_panel/buttons/secondary": T.UNKNOWN, + "header_button_panel_opt_in": T.PANEL, + "header_button_panel_opt_in/buttons": T.STACK_PANEL, + "header_button_panel_opt_in/buttons/primary_panel": T.PANEL, + "header_button_panel_opt_in/buttons/primary_panel/primary": T.UNKNOWN, + "header_button_panel_opt_in/buttons/secondary": T.UNKNOWN, + "header_button_panel_opt_in/buttons/ternary": T.UNKNOWN, + "header_single_button_panel": T.PANEL, + "header_single_button_panel/buttons": T.STACK_PANEL, + "header_single_button_panel/buttons/primary": T.UNKNOWN, + "open_account_setting_button_gamecore": T.BUTTON, + "common_scroll_pane": T.PANEL, + "worlds_scroll_panel": T.PANEL, + "worlds_scroll_panel/worlds_list_stack_panel": T.STACK_PANEL, + "game_tip_item_panel": T.STACK_PANEL, + "game_tip_item_panel/info_bulb": T.IMAGE, + "game_tip_item_panel/padding_1": T.PANEL, + "game_tip_item_panel/label_panel": T.STACK_PANEL, + "game_tip_item_panel/label_panel/padding_vertical": T.PANEL, + "game_tip_item_panel/label_panel/realms_warning_text": T.LABEL, + "game_tip_item_panel/label_panel/padding_vertical_1": T.PANEL, + "game_tip_item_panel/more_info_button": T.BUTTON, + "realm_warning_tip": T.IMAGE, + "realm_warning_tip/padding_vertical": T.PANEL, + "realm_warning_tip/info_panel": T.STACK_PANEL, + "new_ui_switch_button_options_panel": T.STACK_PANEL, + "new_ui_switch_button_options_panel/unlock_template_options_button": T.BUTTON, + "new_ui_servers_switch_button_options_panel": T.STACK_PANEL, + "new_ui_servers_switch_button_options_panel/unlock_template_options_button": T.BUTTON, + "new_ui_servers_switch_button_options_panel/padding_0": T.PANEL, + "worlds_stack_panel": T.STACK_PANEL, + "worlds_stack_panel/padding_0": T.PANEL, + "worlds_stack_panel/play_screen_warning": T.IMAGE, + "worlds_stack_panel/header_button": T.STACK_PANEL, + "worlds_stack_panel/header_button/quick_play": T.BUTTON, + "worlds_stack_panel/header_button/buttons": T.PANEL, + "worlds_stack_panel/worlds_crossplatform_disabled_panel": T.PANEL, + "worlds_stack_panel/worlds_crossplatform_disable_spacer": T.PANEL, + "worlds_stack_panel/realms_panel": T.STACK_PANEL, + "worlds_stack_panel/realms_panel/realms_label": T.PANEL, + "worlds_stack_panel/realms_panel/sign_in_to_view_realms_button": T.BUTTON, + "worlds_stack_panel/realms_panel/realms_previews_panel": T.PANEL, + "worlds_stack_panel/realms_panel/realms_previews_panel/new_offers_icon": T.IMAGE, + "worlds_stack_panel/realms_panel/realms_previews_panel/realms_world_item_button": T.BUTTON, + "worlds_stack_panel/realms_panel/create_on_realms_button_panel": T.PANEL, + "worlds_stack_panel/realms_panel/personal_realms": T.GRID, + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel": T.IMAGE, + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/placeholder_loading_personal_realms": T.GRID, + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/loading_friends_realms_label": T.LABEL, + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/padding": T.PANEL, + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/progress_loading_bars": T.IMAGE, + "worlds_stack_panel/realms_panel/realms_trial_panel": T.PANEL, + "worlds_stack_panel/realms_panel/realms_trial_panel/realms_world_item_button": T.BUTTON, + "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel": T.PANEL, + "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel/realms_world_item_button": T.BUTTON, + "worlds_stack_panel/realms_panel/padding_1": T.PANEL, + "worlds_stack_panel/realms_multiplayer_blocked_panel": T.STACK_PANEL, + "worlds_stack_panel/realms_multiplayer_blocked_panel/text_panel": T.STACK_PANEL, + "worlds_stack_panel/realms_multiplayer_blocked_panel/open_uri_button": T.BUTTON, + "worlds_stack_panel/realms_multiplayer_blocked_panel/open_account_setting_button_gamecore": T.BUTTON, + "worlds_stack_panel/worlds_label": T.STACK_PANEL, + "worlds_stack_panel/grid": T.GRID, + "worlds_stack_panel/no_local_worlds_label": T.STACK_PANEL, + "worlds_stack_panel/no_local_worlds_switch_setting": T.PANEL, + "worlds_stack_panel/beta_retail_local_padding": T.PANEL, + "worlds_stack_panel/beta_retail_local_worlds_label": T.PANEL, + "worlds_stack_panel/beta_retail_local_grid": T.GRID, + "worlds_stack_panel/loading_legacy_worlds_panel_padding": T.PANEL, + "worlds_stack_panel/legacy_worlds_button": T.STACK_PANEL, + "worlds_stack_panel/legacy_worlds_button/legacy_worlds_label": T.PANEL, + "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel": T.PANEL, + "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel/button": T.BUTTON, + "worlds_stack_panel/loading_legacy_worlds_panel": T.IMAGE, + "worlds_stack_panel/loading_legacy_worlds_panel/loading_legacy_worlds_label": T.LABEL, + "worlds_stack_panel/loading_legacy_worlds_panel/padding": T.PANEL, + "worlds_stack_panel/loading_legacy_worlds_panel/progress_loading_bars": T.IMAGE, + "worlds_stack_panel/padding_2": T.PANEL, + "worlds_stack_panel/upgrade_legacy_worlds_label": T.STACK_PANEL, + "worlds_stack_panel/legacy_world_item_grid": T.GRID, + "worlds_stack_panel/beta_retail_legacy_padding": T.PANEL, + "worlds_stack_panel/beta_retail_legacy_worlds_label": T.PANEL, + "worlds_stack_panel/beta_retail_legacy_grid": T.GRID, + "worlds_stack_panel/pad_hack_panel": T.PANEL, + "no_local_worlds_switch_setting": T.PANEL, + "no_local_worlds_switch_setting/bg": T.IMAGE, + "no_local_worlds_switch_setting/bg/no_local_worlds_switch_setting": T.STACK_PANEL, + "no_local_worlds_switch_setting/bg/no_local_worlds_get_help": T.STACK_PANEL, + "no_local_worlds_launch_help": T.BUTTON, + "storage_location_dropdown_panel": T.STACK_PANEL, + "storage_location_dropdown_panel/padding1": T.PANEL, + "storage_location_dropdown_panel/storage_location_dropdown": T.PANEL, + "storage_location_dropdown": T.PANEL, + "switch_storage_type_content": T.PANEL, + "light_centered_loading_label": T.LABEL, + "light_loading_label": T.LABEL, + "loading_label": T.LABEL, + "progress_loading_bars": T.IMAGE, + "world_list_label_panel": T.PANEL, + "world_list_label_panel/list_label": T.LABEL, + "world_list_label_with_color_panel": T.STACK_PANEL, + "world_list_label_with_color_panel/colored_square_sizer": T.PANEL, + "world_list_label_with_color_panel/colored_square_sizer/colored_square": T.IMAGE, + "world_list_label_with_color_panel/padding": T.PANEL, + "world_list_label_with_color_panel/list_label": T.LABEL, + "empty_panel": T.PANEL, + "empty_grid": T.PANEL, + "lan_servers_scroll_content": T.STACK_PANEL, + "friends_scroll_panel": T.PANEL, + "friends_scroll_panel/stack_panel": T.STACK_PANEL, + "friends_scroll_panel/stack_panel/padding_0": T.PANEL, + "friends_scroll_panel/stack_panel/friends_screen_warning": T.IMAGE, + "friends_scroll_panel/stack_panel/header_button": T.STACK_PANEL, + "friends_scroll_panel/stack_panel/header_button/add_friend_and_invite_panel": T.STACK_PANEL, + "friends_scroll_panel/stack_panel/friends_crossplatform_disabled_panel": T.PANEL, + "friends_scroll_panel/stack_panel/friends_crossplatform_disable_spacer": T.PANEL, + "friends_scroll_panel/stack_panel/joinable_realms_panel": T.STACK_PANEL, + "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms_label": T.PANEL, + "friends_scroll_panel/stack_panel/joinable_realms_panel/sign_in_to_view_realms_button_friends": T.BUTTON, + "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms": T.GRID, + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel": T.IMAGE, + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/placeholder_loading_friends_realms": T.GRID, + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/loading_friends_realms_label": T.LABEL, + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/padding": T.PANEL, + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/progress_loading_bars": T.IMAGE, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel": T.IMAGE, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack": T.STACK_PANEL, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel": T.PANEL, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel/message_label": T.LABEL, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel": T.PANEL, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel/link_image": T.IMAGE, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border": T.BUTTON, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/hover": T.IMAGE, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/pressed": T.IMAGE, + "friends_scroll_panel/stack_panel/joinable_realms_panel/no_realms_grid": T.STACK_PANEL, + "friends_scroll_panel/stack_panel/joinable_realms_panel/padding_1": T.PANEL, + "friends_scroll_panel/stack_panel/friends_grid": T.STACK_PANEL, + "friends_scroll_panel/stack_panel/pad_hack_panel": T.PANEL, + "friends_scroll_panel/stack_panel/no_friends_grid_message": T.STACK_PANEL, + "friends_scroll_panel/stack_panel/switch_find_cross_platform_friend_button": T.BUTTON, + "friends_scroll_panel/stack_panel/add_friend_button_padding": T.PANEL, + "friends_scroll_panel/stack_panel/cross_platform_friends_grid": T.STACK_PANEL, + "friends_scroll_panel/stack_panel/no_cross_platform_friends_grid_message": T.STACK_PANEL, + "friends_scroll_panel/stack_panel/general_no_multiplayer_grid_message": T.STACK_PANEL, + "friends_scroll_panel/stack_panel/lan_grid": T.STACK_PANEL, + "friends_scroll_panel/stack_panel/open_account_setting_button_gamecore": T.BUTTON, + "manually_added_servers_scrolling_content": T.STACK_PANEL, + "manually_added_servers_scrolling_content/padding_0": T.PANEL, + "manually_added_servers_scrolling_content/more_servers_label": T.LABEL, + "manually_added_servers_scrolling_content/padding_1": T.PANEL, + "manually_added_servers_scrolling_content/more_servers_grid": T.GRID, + "manually_added_servers_scrolling_content/padding_3": T.PANEL, + "servers_content_panel": T.STACK_PANEL, + "servers_content_panel/new_ui_servers_switch_button_options_panel": T.STACK_PANEL, + "servers_content_panel/featured_servers_panel": T.STACK_PANEL, + "servers_content_panel/featured_servers_panel/loading_featured_panel": T.IMAGE, + "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_friends_realms_label": T.LABEL, + "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_featured_servers_panel": T.PANEL, + "servers_content_panel/featured_servers_panel/padding_1": T.PANEL, + "servers_content_panel/featured_servers_panel/featured_servers_label": T.LABEL, + "servers_content_panel/featured_servers_panel/padding_2": T.PANEL, + "servers_content_panel/featured_servers_panel/third_party_featured_grid": T.GRID, + "servers_content_panel/featured_servers_panel/padding_3": T.PANEL, + "servers_content_panel/more_servers_divider": T.PANEL, + "servers_content_panel/more_servers_panel": T.STACK_PANEL, + "server_scroll_panel": T.PANEL, + "server_scroll_panel/stack_panel": T.STACK_PANEL, + "server_scroll_panel/stack_panel/padding_0": T.PANEL, + "server_scroll_panel/stack_panel/servers_crossplatform_disabled_panel": T.PANEL, + "server_scroll_panel/stack_panel/no_featured_server_connection": T.PANEL, + "server_scroll_panel/stack_panel/more_servers_blocked_panel": T.STACK_PANEL, + "server_scroll_panel/stack_panel/more_servers_blocked_panel/server_multiplayer_privileges_blocked": T.PANEL, + "server_scroll_panel/stack_panel/more_servers_blocked_panel/open_uri_button": T.BUTTON, + "server_scroll_panel/stack_panel/padding_1": T.PANEL, + "server_scroll_panel/stack_panel/server_content": T.UNKNOWN, + "server_scroll_panel/stack_panel/add_server_button": T.PANEL, + "crossplatform_disabled_panel": T.PANEL, + "crossplatform_disable_spacer": T.PANEL, + "common_scrolling_panel": T.PANEL, + "common_content": T.INPUT_PANEL, + "scrolling_offsets": T.PANEL, + "worlds_scroll_content": T.INPUT_PANEL, + "worlds_scroll_content/worlds_stack_panel": T.STACK_PANEL, + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer": T.PANEL, + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer/scrolling_panel": T.PANEL, + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer": T.PANEL, + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer/scrolling_panel": T.PANEL, + "friends_scroll_content": T.INPUT_PANEL, + "friends_scroll_content/scrolling_panel": T.PANEL, + "show_servers_panel": T.STACK_PANEL, + "show_servers_panel/left_panel": T.PANEL, + "show_servers_panel/left_panel/scrolling_panel": T.PANEL, + "show_servers_panel/divider_panel": T.PANEL, + "show_servers_panel/divider_panel/main_divider": T.IMAGE, + "show_servers_panel/right_panel": T.PANEL, + "server_scroll_content": T.INPUT_PANEL, + "server_scroll_content/severs_panel": T.STACK_PANEL, + "server_scroll_content/severs_panel/offset_panel": T.PANEL, + "server_scroll_content/severs_panel/offset_panel/servers_sunsetting_warning": T.IMAGE, + "server_scroll_content/severs_panel/show_servers_panel": T.STACK_PANEL, + "server_scroll_content/feature_server_message_panel": T.STACK_PANEL, + "server_scroll_content/feature_server_message_panel/featured_servers_label": T.LABEL, + "server_scroll_content/feature_server_message_panel/pad": T.PANEL, + "server_scroll_content/feature_server_message_panel/feature_server_message_panel": T.IMAGE, + "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout": T.PANEL, + "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout/label": T.LABEL, + "server_scroll_content/feature_server_message_panel/open_account_setting_button_gamecore": T.BUTTON, + "server_content_area": T.PANEL, + "server_content_area/third_party_scrolling_panel": T.PANEL, + "server_content_area/additional_server_scrolling_panel": T.PANEL, + "server_content_area/add_server_pane": T.PANEL, + "tab_front": T.IMAGE, + "tab_front_middle": T.IMAGE, + "tab_back": T.IMAGE, + "X_tab_back": T.IMAGE, + "tab_text_stack_panel": T.STACK_PANEL, + "tab_text_stack_panel/padding": T.PANEL, + "tab_text_stack_panel/text_section": T.PANEL, + "tab_text_stack_panel/text_section/text": T.LABEL, + "tab_text_stack_panel/count_section": T.PANEL, + "tab_text_stack_panel/count_section/count_background_image": T.IMAGE, + "tab_text_stack_panel/count_section/count_background_image/count": T.LABEL, + "common_navigation_tab_content": T.STACK_PANEL, + "common_navigation_tab_content/padding_0": T.PANEL, + "common_navigation_tab_content/icon_section": T.PANEL, + "common_navigation_tab_content/icon_section/icon": T.UNKNOWN, + "common_navigation_tab_content/padding_1": T.PANEL, + "common_navigation_tab_content/count_text": T.STACK_PANEL, + "friends_navigation_tab_content": T.STACK_PANEL, + "friends_navigation_tab_content/padding": T.PANEL, + "friends_navigation_tab_content/icon_section": T.PANEL, + "friends_navigation_tab_content/icon_section/icon": T.UNKNOWN, + "friends_navigation_tab_content/icon_section_2": T.PANEL, + "friends_navigation_tab_content/icon_section_2/icon": T.UNKNOWN, + "friends_navigation_tab_content/icon_section_nobounce": T.PANEL, + "friends_navigation_tab_content/icon_section_nobounce/icon": T.UNKNOWN, + "friends_navigation_tab_content/icon_section_nobounce_2": T.PANEL, + "friends_navigation_tab_content/icon_section_nobounce_2/icon": T.UNKNOWN, + "friends_navigation_tab_content/icon_section_notification": T.PANEL, + "friends_navigation_tab_content/icon_section_notification/icon1": T.IMAGE, + "friends_navigation_tab_content/icon_section_notification/icon2": T.IMAGE, + "friends_navigation_tab_content/count_text": T.STACK_PANEL, + "top_tab": T.PANEL, + "world_navigation_tab": T.PANEL, + "friends_navigation_tab": T.PANEL, + "server_navigation_tab": T.PANEL, + "close_navigation_tab": T.PANEL, + "close_navigation_tab/background": T.IMAGE, + "close_navigation_tab/x_image": T.BUTTON, + "common_tab_content_panel": T.PANEL, + "common_tab_content_panel/background": T.PANEL, + "common_tab_content_panel/content": T.UNKNOWN, + "worlds_tab_content_panel": T.PANEL, + "friends_tab_content_panel": T.PANEL, + "server_tab_content_panel": T.PANEL, + "common_tab_content_panel_type": T.INPUT_PANEL, + "edu_tab_content_panel_layout": T.INPUT_PANEL, + "edu_tab_content_panel_layout/worlds_tab_content": T.PANEL, + "edu_tab_content_panel_layout/friends_tab_content": T.PANEL, + "edu_tab_content_panel_layout/server_tab_content_panel": T.PANEL, + "trial_tab_content_panel_layout": T.INPUT_PANEL, + "trial_tab_content_panel_layout/worlds_tab_content": T.PANEL, + "default_tab_content_panel_layout": T.INPUT_PANEL, + "default_tab_content_panel_layout/worlds_tab_content": T.PANEL, + "default_tab_content_panel_layout/friends_tab_content": T.PANEL, + "default_tab_content_panel_layout/server_tab_content_panel": T.PANEL, + "tab_navigation_panel_layout": T.STACK_PANEL, + "tab_navigation_panel_layout/navigation_tabs": T.PANEL, + "tab_navigation_panel_layout/navigation_tabs/content": T.UNKNOWN, + "tab_navigation_panel_layout/close_navigation_tab": T.PANEL, + "tab_navigation_panel_layout/close_navigation_tab/close_button": T.UNKNOWN, + "common_tab_navigation_panel_layout": T.STACK_PANEL, + "edu_tab_navigation_panel_layout": T.STACK_PANEL, + "edu_tab_navigation_panel_layout/world_navigation_tab": T.PANEL, + "edu_tab_navigation_panel_layout/friends_navigation_tab": T.PANEL, + "edu_tab_navigation_panel_layout/server_navigation_tab": T.PANEL, + "trial_tab_navigation_panel_layout": T.STACK_PANEL, + "trial_tab_navigation_panel_layout/world_navigation_tab": T.PANEL, + "default_tab_navigation_panel_layout": T.STACK_PANEL, + "default_tab_navigation_panel_layout/world_navigation_tab": T.PANEL, + "default_tab_navigation_panel_layout/friends_navigation_tab": T.PANEL, + "default_tab_navigation_panel_layout/server_navigation_tab": T.PANEL, + "common_play_screen_panel": T.PANEL, + "play_screen_panel": T.PANEL, + "play_screen_panel/tab_navigation_panel": T.STACK_PANEL, + "play_screen_panel/tab_content_panel": T.UNKNOWN, + "play_screen_panel/gamepad_helper_left_bumper": T.STACK_PANEL, + "play_screen_panel/gamepad_helper_right_bumper": T.STACK_PANEL, + "play_screen_panel/keyboard_helper_left_bracket": T.STACK_PANEL, + "play_screen_panel/keyboard_helper_right_bracket": T.STACK_PANEL, + "default_play_screen_panel": T.PANEL, + "trial_play_screen_panel": T.PANEL, + "edu_play_screen_panel": T.PANEL, + "play_screen": T.SCREEN, + "play_screen_content": T.PANEL, + "play_screen_content/main_control": T.UNKNOWN, + "play_screen_content/editor_text_panel": T.PANEL, + "play_screen_content/popup_dialog_factory": T.FACTORY, + "popup_dialog_join_by_code": T.INPUT_PANEL, + "popup_dialog_join_by_code/join_by_code_popup_background": T.IMAGE, + "popup_dialog_join_by_code/join_by_code_popup_content": T.PANEL, + "popup_dialog_join_by_code/gamepad_helpers": T.STACK_PANEL, + "join_by_code_popup_background": T.IMAGE, + "join_by_code_popup_content": T.PANEL, + "join_by_code_popup_content/popup_dialog_bg": T.IMAGE, + "join_by_code_popup_content/popup_stack_panel": T.STACK_PANEL, + "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_header": T.PANEL, + "join_by_code_popup_content/popup_stack_panel/spacing_1": T.PANEL, + "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_upper_body": T.STACK_PANEL, + "join_by_code_popup_content/popup_stack_panel/spacing_2": T.PANEL, + "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_lower_body": T.PANEL, + "join_by_code_popup_dialog_header": T.PANEL, + "join_by_code_popup_dialog_header/join_by_code_popup_header_text": T.LABEL, + "join_by_code_popup_dialog_header/close_button": T.BUTTON, + "join_by_code_popup_header_text": T.LABEL, + "join_by_code_popup_dialog_upper_body": T.STACK_PANEL, + "join_by_code_popup_dialog_upper_body/margin1": T.PANEL, + "join_by_code_popup_dialog_upper_body/join_by_code_popup_code_text_field": T.EDIT_BOX, + "join_by_code_popup_dialog_upper_body/spacing": T.PANEL, + "join_by_code_popup_dialog_upper_body/join_by_code_popup_join_button": T.BUTTON, + "join_by_code_popup_dialog_upper_body/margin2": T.PANEL, + "join_by_code_popup_code_text_field": T.EDIT_BOX, + "join_by_code_popup_join_button": T.BUTTON, + "join_by_code_popup_help_text": T.LABEL, + "lower_body_default_content": T.PANEL, + "lower_body_default_content/info_text": T.LABEL, + "join_by_code_popup_dialog_lower_body": T.PANEL, + "join_by_code_popup_dialog_lower_body/default": T.PANEL, + "open_account_setting_button": T.BUTTON, + "popup_dialog_high_ping": T.INPUT_PANEL, + "popup_dialog_high_ping/high_ping_popup_background": T.IMAGE, + "popup_dialog_high_ping/high_ping_popup_content": T.PANEL, + "popup_dialog_high_ping/gamepad_helpers": T.STACK_PANEL, + "popup_two_buttons": T.PANEL, + "popup_two_buttons/common_panel": T.PANEL, + "popup_two_buttons/title_label": T.PANEL, + "popup_two_buttons/panel_indent": T.PANEL, + "popup_two_buttons/panel_indent/inside_header_panel": T.UNKNOWN, + "popup_two_buttons/button_panel": T.STACK_PANEL, + "popup_two_buttons/button_panel/left_button_panel": T.BUTTON, + "popup_two_buttons/button_panel/pad": T.PANEL, + "popup_two_buttons/button_panel/right_button_panel": T.BUTTON, + "high_ping_popup_content_stack_panel": T.STACK_PANEL, + "high_ping_popup_content_stack_panel/pad_0": T.PANEL, + "high_ping_popup_content_stack_panel/ping_images_panel": T.PANEL, + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel": T.STACK_PANEL, + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/medium_connection": T.IMAGE, + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/pad": T.PANEL, + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/low_connection": T.IMAGE, + "high_ping_popup_content_stack_panel/pad_1": T.PANEL, + "high_ping_popup_content_stack_panel/text_line_1": T.LABEL, + "high_ping_popup_content_stack_panel/pad_2": T.PANEL, + "high_ping_popup_content_stack_panel/text_line_2": T.LABEL, + "high_ping_popup_content_stack_panel/pad_3": T.PANEL, + "high_ping_popup_join_button": T.BUTTON, + "high_ping_popup_cancel_button": T.BUTTON, + "copyright": T.LABEL, + "development_version": T.LABEL, + "version": T.LABEL, + "editor_text_panel": T.PANEL, + "editor_text_panel/copyright": T.LABEL, + "editor_text_panel/development_version": T.LABEL, + "editor_text_panel/version": T.LABEL, + "editor_settings_image_content": T.IMAGE, + "editor_settings_menu_button": T.BUTTON, + "editor_server_content_panel": T.STACK_PANEL, + "editor_server_content_panel/more_servers_panel": T.STACK_PANEL, + "editor_tab_content_panel_layout": T.INPUT_PANEL, + "editor_tab_content_panel_layout/worlds_tab_content": T.PANEL, + "editor_tab_content_panel_layout/friends_tab_content": T.PANEL, + "editor_tab_content_panel_layout/server_tab_content_panel": T.PANEL, + "editor_play_screen_panel": T.PANEL, } export type PerfTurtleType = { - perf_turtle_panel: T.PANEL - "perf_turtle_panel/perf_turtle_background": T.IMAGE - "perf_turtle_panel/stack_panel": T.STACK_PANEL - "perf_turtle_panel/stack_panel/turtle": T.IMAGE - "perf_turtle_panel/stack_panel/turtle_text": T.LABEL + "perf_turtle_panel": T.PANEL, + "perf_turtle_panel/perf_turtle_background": T.IMAGE, + "perf_turtle_panel/stack_panel": T.STACK_PANEL, + "perf_turtle_panel/stack_panel/turtle": T.IMAGE, + "perf_turtle_panel/stack_panel/turtle_text": T.LABEL, } export type PocketContainersType = { - generic_label: T.LABEL - header_panel: T.PANEL - "header_panel/header_background": T.IMAGE - "header_panel/title_label": T.LABEL - header_area: T.PANEL - "header_area/x": T.BUTTON - "header_area/inventory_header": T.PANEL - "header_area/container_header": T.PANEL - dark_bg: T.IMAGE - panel_outline: T.IMAGE - background_panel: T.IMAGE - inventory_grid: T.GRID - inventory_panel: T.PANEL - "inventory_panel/scrolling_panel": T.PANEL - half_screen: T.PANEL - "half_screen/inventory_panel": T.PANEL - panel: T.PANEL - "panel/container_gamepad_helpers": T.STACK_PANEL - "panel/header": T.PANEL - "panel/bg": T.IMAGE - "panel/inventory": T.PANEL - "panel/container": T.PANEL - "panel/selected_item_details_factory": T.FACTORY - "panel/item_lock_notification_factory": T.FACTORY - "panel/gamepad_cursor": T.BUTTON - "panel/inventory_selected_icon_button": T.BUTTON - "panel/hold_icon": T.BUTTON - "panel/flying_item_renderer": T.CUSTOM - small_chest_panel: T.PANEL - large_chest_panel: T.PANEL - hopper_panel: T.PANEL - dispenser_panel: T.PANEL - dropper_panel: T.PANEL - ender_chest_panel: T.PANEL - shulker_box_panel: T.PANEL - barrel_panel: T.PANEL + "generic_label": T.LABEL, + "header_panel": T.PANEL, + "header_panel/header_background": T.IMAGE, + "header_panel/title_label": T.LABEL, + "header_area": T.PANEL, + "header_area/x": T.BUTTON, + "header_area/inventory_header": T.PANEL, + "header_area/container_header": T.PANEL, + "dark_bg": T.IMAGE, + "panel_outline": T.IMAGE, + "background_panel": T.IMAGE, + "inventory_grid": T.GRID, + "inventory_panel": T.PANEL, + "inventory_panel/scrolling_panel": T.PANEL, + "half_screen": T.PANEL, + "half_screen/inventory_panel": T.PANEL, + "panel": T.PANEL, + "panel/container_gamepad_helpers": T.STACK_PANEL, + "panel/header": T.PANEL, + "panel/bg": T.IMAGE, + "panel/inventory": T.PANEL, + "panel/container": T.PANEL, + "panel/selected_item_details_factory": T.FACTORY, + "panel/item_lock_notification_factory": T.FACTORY, + "panel/gamepad_cursor": T.BUTTON, + "panel/inventory_selected_icon_button": T.BUTTON, + "panel/hold_icon": T.BUTTON, + "panel/flying_item_renderer": T.CUSTOM, + "small_chest_panel": T.PANEL, + "large_chest_panel": T.PANEL, + "hopper_panel": T.PANEL, + "dispenser_panel": T.PANEL, + "dropper_panel": T.PANEL, + "ender_chest_panel": T.PANEL, + "shulker_box_panel": T.PANEL, + "barrel_panel": T.PANEL, } export type PopupDialogType = { - popup_dialog_bg: T.IMAGE - popup_dialog_message: T.LABEL - popup_dialog_button: T.BUTTON - popup_dialog_button_with_binding: T.BUTTON - popup_dialog_left_button: T.BUTTON - popup_dialog_middle_button: T.BUTTON - popup_dialog_right_button: T.BUTTON - popup_dialog: T.INPUT_PANEL - modal_background_image: T.IMAGE - black_tint_image: T.IMAGE - modal_title_text: T.LABEL - modal_label_text: T.STACK_PANEL - "modal_label_text/padding": T.PANEL - "modal_label_text/text": T.LABEL - modal_checkbox_button: T.TOGGLE - "modal_checkbox_button/header_description_stack_panel": T.STACK_PANEL - "modal_checkbox_button/header_description_stack_panel/checkbox_visuals": T.PANEL - "modal_checkbox_button/header_description_stack_panel/buffer_panel": T.PANEL - "modal_checkbox_button/header_description_stack_panel/buffer_panel/label": T.LABEL - "modal_checkbox_button/header_description_stack_panel/padding_panel": T.PANEL - dialog_text_wrapper: T.PANEL - modal_label_panel: T.PANEL - modal_left_button: T.BUTTON - modal_middle_button: T.BUTTON - modal_rightcancel_button: T.BUTTON - three_buttons_panel: T.PANEL - "three_buttons_panel/left": T.BUTTON - "three_buttons_panel/middle": T.BUTTON - "three_buttons_panel/right": T.BUTTON - two_buttons_checkbox_panel: T.PANEL - "two_buttons_checkbox_panel/left": T.BUTTON - "two_buttons_checkbox_panel/middle": T.BUTTON - "two_buttons_checkbox_panel/checkbox": T.TOGGLE - destructive_three_buttons_panel: T.PANEL - "destructive_three_buttons_panel/left": T.BUTTON - "destructive_three_buttons_panel/middle": T.BUTTON - "destructive_three_buttons_panel/right": T.BUTTON - two_buttons_panel: T.PANEL - "two_buttons_panel/left": T.BUTTON - "two_buttons_panel/right": T.BUTTON - destructive_two_buttons_panel: T.PANEL - "destructive_two_buttons_panel/left": T.BUTTON - "destructive_two_buttons_panel/right": T.BUTTON - single_button_panel: T.PANEL - "single_button_panel/left": T.BUTTON - single_button_checkbox_panel: T.PANEL - "single_button_checkbox_panel/left": T.BUTTON - "single_button_checkbox_panel/checkbox": T.TOGGLE - modal_dialog_base: T.UNKNOWN - modal_dialog_with_buttons: T.PANEL - "modal_dialog_with_buttons/background_with_buttons": T.PANEL - "modal_dialog_with_buttons/title": T.LABEL - "modal_dialog_with_buttons/text": T.PANEL - "modal_dialog_with_buttons/button_panel": T.UNKNOWN - modal_input_panel: T.INPUT_PANEL - "modal_input_panel/black_tint_image": T.IMAGE - modal_dialog_popup: T.PANEL - "modal_dialog_popup/modal_input": T.INPUT_PANEL - "modal_dialog_popup/modal_input/modal_bg_buttons": T.PANEL - "modal_dialog_popup/modal_input/black_background": T.IMAGE - hollow_2_bottom_button_panel: T.PANEL - "hollow_2_bottom_button_panel/lower_button_controls": T.UNKNOWN - form_fit_screen_with_title_and_close_and_bottom_buttons: T.PANEL - form_fit_screen_with_title_and_close: T.PANEL - "form_fit_screen_with_title_and_close/panel_background": T.UNKNOWN - "form_fit_screen_with_title_and_close/panel_content": T.PANEL - "form_fit_screen_with_title_and_close/panel_content/header": T.PANEL - "form_fit_screen_with_title_and_close/panel_content/header/header_content": T.LABEL - "form_fit_screen_with_title_and_close/panel_content/close_button_panel": T.PANEL - "form_fit_screen_with_title_and_close/panel_content/close_button_panel/close": T.BUTTON - "form_fit_screen_with_title_and_close/panel_content/contents": T.PANEL - "form_fit_screen_with_title_and_close/panel_content/contents/contents": T.UNKNOWN - "form_fit_screen_with_title_and_close/panel_content/contents/content_padding": T.PANEL - "form_fit_screen_with_title_and_close/panel_content/lower_contents": T.PANEL - "form_fit_screen_with_title_and_close/panel_content/lower_contents/contents": T.UNKNOWN - form_fit_modal_dialog_popup: T.INPUT_PANEL - "form_fit_modal_dialog_popup/background": T.UNKNOWN - "form_fit_modal_dialog_popup/content": T.UNKNOWN - progress_dialog_popup: T.PANEL - "progress_dialog_popup/background": T.PANEL - "progress_dialog_popup/title": T.LABEL - "progress_dialog_popup/progress_content": T.STACK_PANEL - "progress_dialog_popup/button": T.PANEL - progress_content: T.STACK_PANEL - "progress_content/progress_titles": T.PANEL - "progress_content/progress_titles/current_progress_label": T.LABEL - "progress_content/progress_titles/total_progress_label": T.LABEL - "progress_content/progress_bar": T.PANEL - progress_label: T.LABEL - current_progress_label: T.LABEL - total_progress_label: T.LABEL - progress_bar_icon: T.PANEL - "progress_bar_icon/full_progress_bar_icon": T.IMAGE - "progress_bar_icon/empty_progress_bar_icon": T.IMAGE - "progress_bar_icon/progress_bar_nub": T.IMAGE - empty_progress_bar_icon: T.IMAGE - full_progress_bar_icon: T.IMAGE - progress_bar_nub: T.IMAGE + "popup_dialog_bg": T.IMAGE, + "popup_dialog_message": T.LABEL, + "popup_dialog_button": T.BUTTON, + "popup_dialog_button_with_binding": T.BUTTON, + "popup_dialog_left_button": T.BUTTON, + "popup_dialog_middle_button": T.BUTTON, + "popup_dialog_right_button": T.BUTTON, + "popup_dialog": T.INPUT_PANEL, + "modal_background_image": T.IMAGE, + "black_tint_image": T.IMAGE, + "modal_title_text": T.LABEL, + "modal_label_text": T.STACK_PANEL, + "modal_label_text/padding": T.PANEL, + "modal_label_text/text": T.LABEL, + "modal_checkbox_button": T.TOGGLE, + "modal_checkbox_button/header_description_stack_panel": T.STACK_PANEL, + "modal_checkbox_button/header_description_stack_panel/checkbox_visuals": T.PANEL, + "modal_checkbox_button/header_description_stack_panel/buffer_panel": T.PANEL, + "modal_checkbox_button/header_description_stack_panel/buffer_panel/label": T.LABEL, + "modal_checkbox_button/header_description_stack_panel/padding_panel": T.PANEL, + "dialog_text_wrapper": T.PANEL, + "modal_label_panel": T.PANEL, + "modal_left_button": T.BUTTON, + "modal_middle_button": T.BUTTON, + "modal_rightcancel_button": T.BUTTON, + "three_buttons_panel": T.PANEL, + "three_buttons_panel/left": T.BUTTON, + "three_buttons_panel/middle": T.BUTTON, + "three_buttons_panel/right": T.BUTTON, + "two_buttons_checkbox_panel": T.PANEL, + "two_buttons_checkbox_panel/left": T.BUTTON, + "two_buttons_checkbox_panel/middle": T.BUTTON, + "two_buttons_checkbox_panel/checkbox": T.TOGGLE, + "destructive_three_buttons_panel": T.PANEL, + "destructive_three_buttons_panel/left": T.BUTTON, + "destructive_three_buttons_panel/middle": T.BUTTON, + "destructive_three_buttons_panel/right": T.BUTTON, + "two_buttons_panel": T.PANEL, + "two_buttons_panel/left": T.BUTTON, + "two_buttons_panel/right": T.BUTTON, + "destructive_two_buttons_panel": T.PANEL, + "destructive_two_buttons_panel/left": T.BUTTON, + "destructive_two_buttons_panel/right": T.BUTTON, + "single_button_panel": T.PANEL, + "single_button_panel/left": T.BUTTON, + "single_button_checkbox_panel": T.PANEL, + "single_button_checkbox_panel/left": T.BUTTON, + "single_button_checkbox_panel/checkbox": T.TOGGLE, + "modal_dialog_base": T.UNKNOWN, + "modal_dialog_with_buttons": T.PANEL, + "modal_dialog_with_buttons/background_with_buttons": T.PANEL, + "modal_dialog_with_buttons/title": T.LABEL, + "modal_dialog_with_buttons/text": T.PANEL, + "modal_dialog_with_buttons/button_panel": T.UNKNOWN, + "modal_input_panel": T.INPUT_PANEL, + "modal_input_panel/black_tint_image": T.IMAGE, + "modal_dialog_popup": T.PANEL, + "modal_dialog_popup/modal_input": T.INPUT_PANEL, + "modal_dialog_popup/modal_input/modal_bg_buttons": T.PANEL, + "modal_dialog_popup/modal_input/black_background": T.IMAGE, + "hollow_2_bottom_button_panel": T.PANEL, + "hollow_2_bottom_button_panel/lower_button_controls": T.UNKNOWN, + "form_fit_screen_with_title_and_close_and_bottom_buttons": T.PANEL, + "form_fit_screen_with_title_and_close": T.PANEL, + "form_fit_screen_with_title_and_close/panel_background": T.UNKNOWN, + "form_fit_screen_with_title_and_close/panel_content": T.PANEL, + "form_fit_screen_with_title_and_close/panel_content/header": T.PANEL, + "form_fit_screen_with_title_and_close/panel_content/header/header_content": T.LABEL, + "form_fit_screen_with_title_and_close/panel_content/close_button_panel": T.PANEL, + "form_fit_screen_with_title_and_close/panel_content/close_button_panel/close": T.BUTTON, + "form_fit_screen_with_title_and_close/panel_content/contents": T.PANEL, + "form_fit_screen_with_title_and_close/panel_content/contents/contents": T.UNKNOWN, + "form_fit_screen_with_title_and_close/panel_content/contents/content_padding": T.PANEL, + "form_fit_screen_with_title_and_close/panel_content/lower_contents": T.PANEL, + "form_fit_screen_with_title_and_close/panel_content/lower_contents/contents": T.UNKNOWN, + "form_fit_modal_dialog_popup": T.INPUT_PANEL, + "form_fit_modal_dialog_popup/background": T.UNKNOWN, + "form_fit_modal_dialog_popup/content": T.UNKNOWN, + "progress_dialog_popup": T.PANEL, + "progress_dialog_popup/background": T.PANEL, + "progress_dialog_popup/title": T.LABEL, + "progress_dialog_popup/progress_content": T.STACK_PANEL, + "progress_dialog_popup/button": T.PANEL, + "progress_content": T.STACK_PANEL, + "progress_content/progress_titles": T.PANEL, + "progress_content/progress_titles/current_progress_label": T.LABEL, + "progress_content/progress_titles/total_progress_label": T.LABEL, + "progress_content/progress_bar": T.PANEL, + "progress_label": T.LABEL, + "current_progress_label": T.LABEL, + "total_progress_label": T.LABEL, + "progress_bar_icon": T.PANEL, + "progress_bar_icon/full_progress_bar_icon": T.IMAGE, + "progress_bar_icon/empty_progress_bar_icon": T.IMAGE, + "progress_bar_icon/progress_bar_nub": T.IMAGE, + "empty_progress_bar_icon": T.IMAGE, + "full_progress_bar_icon": T.IMAGE, + "progress_bar_nub": T.IMAGE, } export type PortfolioType = { - screenshot: T.IMAGE - screenshot_frame: T.IMAGE - trash_default: T.IMAGE - trash_hover: T.IMAGE - trash_pressed: T.IMAGE - photo_trash_button_left: T.BUTTON - "photo_trash_button_left/default": T.IMAGE - "photo_trash_button_left/hover": T.IMAGE - "photo_trash_button_left/pressed": T.IMAGE - photo_trash_button_right: T.BUTTON - "photo_trash_button_right/default": T.IMAGE - "photo_trash_button_right/hover": T.IMAGE - "photo_trash_button_right/pressed": T.IMAGE - photo_number: T.LABEL - photo_number_left: T.LABEL - photo_number_right: T.LABEL - photo_corner_bl: T.IMAGE - photo_corner_br: T.IMAGE - photo_corner_tr: T.IMAGE - photo_corner_tl: T.IMAGE - page_photo: T.PANEL - "page_photo/screenshot": T.IMAGE - "page_photo/screenshot_frame": T.IMAGE - "page_photo/photo_corner_bl": T.IMAGE - "page_photo/photo_corner_br": T.IMAGE - "page_photo/photo_corner_tl": T.IMAGE - "page_photo/photo_corner_tr": T.IMAGE - pick_item: T.PANEL - "pick_item/photo": T.PANEL - "pick_item/button": T.BUTTON - header: T.LABEL - screenshot_grid: T.STACK_PANEL - text_centering_panel: T.PANEL - "text_centering_panel/header": T.LABEL - pick_scrolling_content: T.STACK_PANEL - "pick_scrolling_content/header": T.PANEL - "pick_scrolling_content/portfolio_grid": T.STACK_PANEL - no_pick_photos_alert_label: T.LABEL - pick_panel: T.IMAGE - "pick_panel/scroll": T.PANEL - "pick_panel/close_button": T.BUTTON - "pick_panel/no_pick_photos_alert_label": T.LABEL - text_edit_box_default_indent: T.PANEL - text_edit_box_hover_indent: T.PANEL - "text_edit_box_hover_indent/focus_border_white": T.IMAGE - text_edit_control: T.EDIT_BOX - "text_edit_control/clipper_panel": T.PANEL - "text_edit_control/clipper_panel/display_text": T.LABEL - "text_edit_control/clipper_panel/place_holder_control": T.UNKNOWN - "text_edit_control/locked": T.PANEL - "text_edit_control/locked/edit_box_indent": T.IMAGE - "text_edit_control/default": T.PANEL - "text_edit_control/hover": T.PANEL - "text_edit_control/pressed": T.PANEL - photo_item: T.PANEL - "photo_item/screenshot": T.IMAGE - "photo_item/screenshot_frame": T.IMAGE - "photo_item/text_edit_control": T.EDIT_BOX - "photo_item/photo_corner_bl": T.IMAGE - "photo_item/photo_corner_br": T.IMAGE - "photo_item/photo_corner_tl": T.IMAGE - "photo_item/photo_corner_tr": T.IMAGE - photo_grid_item: T.PANEL - "photo_grid_item/photo_item": T.PANEL - photo_list_grid: T.GRID - prev_button_default: T.IMAGE - prev_button_hover: T.IMAGE - prev_button_pressed: T.IMAGE - photo_page_prev_button: T.BUTTON - "photo_page_prev_button/default": T.IMAGE - "photo_page_prev_button/hover": T.IMAGE - "photo_page_prev_button/pressed": T.IMAGE - next_button_default: T.IMAGE - next_button_hover: T.IMAGE - next_button_pressed: T.IMAGE - photo_page_next_button: T.BUTTON - "photo_page_next_button/default": T.IMAGE - "photo_page_next_button/hover": T.IMAGE - "photo_page_next_button/pressed": T.IMAGE - convert_button_default: T.IMAGE - convert_button_hover: T.IMAGE - convert_button_pressed: T.IMAGE - photo_convert_left_button: T.BUTTON - "photo_convert_left_button/default": T.IMAGE - "photo_convert_left_button/hover": T.IMAGE - "photo_convert_left_button/pressed": T.IMAGE - photo_convert_right_button: T.BUTTON - "photo_convert_right_button/default": T.IMAGE - "photo_convert_right_button/hover": T.IMAGE - "photo_convert_right_button/pressed": T.IMAGE - bottom_button_panel: T.PANEL - "bottom_button_panel/export_button": T.BUTTON - "bottom_button_panel/im_content_button": T.BUTTON - "bottom_button_panel/add_photo_button": T.BUTTON - im_content_button: T.BUTTON - export_button: T.BUTTON - add_photo_button: T.BUTTON - book_binding: T.IMAGE - book_spine: T.IMAGE - book_background: T.IMAGE - "book_background/book_binding": T.IMAGE - "book_background/top_spine": T.IMAGE - "book_background/bottom_spine": T.IMAGE - header_panel: T.PANEL - "header_panel/header_background": T.IMAGE - close_button_default: T.IMAGE - close_button_hover: T.IMAGE - close_button_pressed: T.IMAGE - close_button: T.BUTTON - "close_button/default": T.IMAGE - "close_button/hover": T.IMAGE - "close_button/pressed": T.IMAGE - no_photos_alert_label: T.LABEL - book_and_buttons_panel: T.PANEL - "book_and_buttons_panel/book_panel": T.PANEL - "book_and_buttons_panel/book_panel/book_background": T.IMAGE - "book_and_buttons_panel/book_panel/close_button": T.BUTTON - "book_and_buttons_panel/book_panel/photo_list_grid": T.GRID - "book_and_buttons_panel/book_panel/photo_number_left": T.LABEL - "book_and_buttons_panel/book_panel/photo_number_right": T.LABEL - "book_and_buttons_panel/book_panel/photo_trash_button_left": T.BUTTON - "book_and_buttons_panel/book_panel/photo_trash_button_right": T.BUTTON - "book_and_buttons_panel/book_panel/photo_page_prev_button": T.BUTTON - "book_and_buttons_panel/book_panel/photo_page_next_button": T.BUTTON - "book_and_buttons_panel/book_panel/photo_convert_left_button": T.BUTTON - "book_and_buttons_panel/book_panel/photo_convert_right_button": T.BUTTON - "book_and_buttons_panel/book_panel/no_photos_alert_label": T.LABEL - "book_and_buttons_panel/bottom_button_panel": T.PANEL - root_panel: T.PANEL - portfolio_screen: T.SCREEN - portfolio_screen_content: T.PANEL - "portfolio_screen_content/root_panel": T.PANEL - "portfolio_screen_content/root_panel/book_and_buttons_panel": T.PANEL - "portfolio_screen_content/root_panel/pick_panel": T.IMAGE + "screenshot": T.IMAGE, + "screenshot_frame": T.IMAGE, + "trash_default": T.IMAGE, + "trash_hover": T.IMAGE, + "trash_pressed": T.IMAGE, + "photo_trash_button_left": T.BUTTON, + "photo_trash_button_left/default": T.IMAGE, + "photo_trash_button_left/hover": T.IMAGE, + "photo_trash_button_left/pressed": T.IMAGE, + "photo_trash_button_right": T.BUTTON, + "photo_trash_button_right/default": T.IMAGE, + "photo_trash_button_right/hover": T.IMAGE, + "photo_trash_button_right/pressed": T.IMAGE, + "photo_number": T.LABEL, + "photo_number_left": T.LABEL, + "photo_number_right": T.LABEL, + "photo_corner_bl": T.IMAGE, + "photo_corner_br": T.IMAGE, + "photo_corner_tr": T.IMAGE, + "photo_corner_tl": T.IMAGE, + "page_photo": T.PANEL, + "page_photo/screenshot": T.IMAGE, + "page_photo/screenshot_frame": T.IMAGE, + "page_photo/photo_corner_bl": T.IMAGE, + "page_photo/photo_corner_br": T.IMAGE, + "page_photo/photo_corner_tl": T.IMAGE, + "page_photo/photo_corner_tr": T.IMAGE, + "pick_item": T.PANEL, + "pick_item/photo": T.PANEL, + "pick_item/button": T.BUTTON, + "header": T.LABEL, + "screenshot_grid": T.STACK_PANEL, + "text_centering_panel": T.PANEL, + "text_centering_panel/header": T.LABEL, + "pick_scrolling_content": T.STACK_PANEL, + "pick_scrolling_content/header": T.PANEL, + "pick_scrolling_content/portfolio_grid": T.STACK_PANEL, + "no_pick_photos_alert_label": T.LABEL, + "pick_panel": T.IMAGE, + "pick_panel/scroll": T.PANEL, + "pick_panel/close_button": T.BUTTON, + "pick_panel/no_pick_photos_alert_label": T.LABEL, + "text_edit_box_default_indent": T.PANEL, + "text_edit_box_hover_indent": T.PANEL, + "text_edit_box_hover_indent/focus_border_white": T.IMAGE, + "text_edit_control": T.EDIT_BOX, + "text_edit_control/clipper_panel": T.PANEL, + "text_edit_control/clipper_panel/display_text": T.LABEL, + "text_edit_control/clipper_panel/place_holder_control": T.UNKNOWN, + "text_edit_control/locked": T.PANEL, + "text_edit_control/locked/edit_box_indent": T.IMAGE, + "text_edit_control/default": T.PANEL, + "text_edit_control/hover": T.PANEL, + "text_edit_control/pressed": T.PANEL, + "photo_item": T.PANEL, + "photo_item/screenshot": T.IMAGE, + "photo_item/screenshot_frame": T.IMAGE, + "photo_item/text_edit_control": T.EDIT_BOX, + "photo_item/photo_corner_bl": T.IMAGE, + "photo_item/photo_corner_br": T.IMAGE, + "photo_item/photo_corner_tl": T.IMAGE, + "photo_item/photo_corner_tr": T.IMAGE, + "photo_grid_item": T.PANEL, + "photo_grid_item/photo_item": T.PANEL, + "photo_list_grid": T.GRID, + "prev_button_default": T.IMAGE, + "prev_button_hover": T.IMAGE, + "prev_button_pressed": T.IMAGE, + "photo_page_prev_button": T.BUTTON, + "photo_page_prev_button/default": T.IMAGE, + "photo_page_prev_button/hover": T.IMAGE, + "photo_page_prev_button/pressed": T.IMAGE, + "next_button_default": T.IMAGE, + "next_button_hover": T.IMAGE, + "next_button_pressed": T.IMAGE, + "photo_page_next_button": T.BUTTON, + "photo_page_next_button/default": T.IMAGE, + "photo_page_next_button/hover": T.IMAGE, + "photo_page_next_button/pressed": T.IMAGE, + "convert_button_default": T.IMAGE, + "convert_button_hover": T.IMAGE, + "convert_button_pressed": T.IMAGE, + "photo_convert_left_button": T.BUTTON, + "photo_convert_left_button/default": T.IMAGE, + "photo_convert_left_button/hover": T.IMAGE, + "photo_convert_left_button/pressed": T.IMAGE, + "photo_convert_right_button": T.BUTTON, + "photo_convert_right_button/default": T.IMAGE, + "photo_convert_right_button/hover": T.IMAGE, + "photo_convert_right_button/pressed": T.IMAGE, + "bottom_button_panel": T.PANEL, + "bottom_button_panel/export_button": T.BUTTON, + "bottom_button_panel/im_content_button": T.BUTTON, + "bottom_button_panel/add_photo_button": T.BUTTON, + "im_content_button": T.BUTTON, + "export_button": T.BUTTON, + "add_photo_button": T.BUTTON, + "book_binding": T.IMAGE, + "book_spine": T.IMAGE, + "book_background": T.IMAGE, + "book_background/book_binding": T.IMAGE, + "book_background/top_spine": T.IMAGE, + "book_background/bottom_spine": T.IMAGE, + "header_panel": T.PANEL, + "header_panel/header_background": T.IMAGE, + "close_button_default": T.IMAGE, + "close_button_hover": T.IMAGE, + "close_button_pressed": T.IMAGE, + "close_button": T.BUTTON, + "close_button/default": T.IMAGE, + "close_button/hover": T.IMAGE, + "close_button/pressed": T.IMAGE, + "no_photos_alert_label": T.LABEL, + "book_and_buttons_panel": T.PANEL, + "book_and_buttons_panel/book_panel": T.PANEL, + "book_and_buttons_panel/book_panel/book_background": T.IMAGE, + "book_and_buttons_panel/book_panel/close_button": T.BUTTON, + "book_and_buttons_panel/book_panel/photo_list_grid": T.GRID, + "book_and_buttons_panel/book_panel/photo_number_left": T.LABEL, + "book_and_buttons_panel/book_panel/photo_number_right": T.LABEL, + "book_and_buttons_panel/book_panel/photo_trash_button_left": T.BUTTON, + "book_and_buttons_panel/book_panel/photo_trash_button_right": T.BUTTON, + "book_and_buttons_panel/book_panel/photo_page_prev_button": T.BUTTON, + "book_and_buttons_panel/book_panel/photo_page_next_button": T.BUTTON, + "book_and_buttons_panel/book_panel/photo_convert_left_button": T.BUTTON, + "book_and_buttons_panel/book_panel/photo_convert_right_button": T.BUTTON, + "book_and_buttons_panel/book_panel/no_photos_alert_label": T.LABEL, + "book_and_buttons_panel/bottom_button_panel": T.PANEL, + "root_panel": T.PANEL, + "portfolio_screen": T.SCREEN, + "portfolio_screen_content": T.PANEL, + "portfolio_screen_content/root_panel": T.PANEL, + "portfolio_screen_content/root_panel/book_and_buttons_panel": T.PANEL, + "portfolio_screen_content/root_panel/pick_panel": T.IMAGE, } export type ProgressType = { - popup_dialog_base: T.INPUT_PANEL - "popup_dialog_base/background": T.IMAGE - "popup_dialog_base/scrolling_panel": T.PANEL - "popup_dialog_base/totalSelected": T.LABEL - "popup_dialog_base/totalSelectedSize": T.LABEL - "popup_dialog_base/left": T.BUTTON - "popup_dialog_base/right": T.BUTTON - checkbox_visual: T.PANEL - "checkbox_visual/control": T.LABEL - checkbox_visuals_unchecked: T.PANEL - checkbox_visuals_checked: T.PANEL - checkbox_visuals_unchecked_locked: T.PANEL - checkbox_visuals_checked_locked: T.PANEL - checkbox_visuals_unchecked_hover: T.PANEL - checkbox_visuals_checked_hover: T.PANEL - checkbox_with_label_core: T.TOGGLE - checkbox_with_label: T.PANEL - "checkbox_with_label/checkbox_with_label_core": T.TOGGLE - resource_pack_grid_item: T.PANEL - resource_pack_section: T.STACK_PANEL - "resource_pack_section/required_resource_pack_list_grid": T.GRID - "resource_pack_section/optional_resource_pack_list_grid": T.GRID - simple_popup_dialog_base: T.INPUT_PANEL - "simple_popup_dialog_base/dialog_background_hollow_3": T.IMAGE - "simple_popup_dialog_base/dialog_background_hollow_3/control": T.IMAGE - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel": T.STACK_PANEL - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_0": T.PANEL - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/title": T.LABEL - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_1": T.PANEL - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description": T.LABEL - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_2": T.PANEL - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description2": T.LABEL - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_3": T.PANEL - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/top_optional_button": T.BUTTON - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_4": T.PANEL - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/middle_button": T.BUTTON - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_5": T.PANEL - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/bottom_button": T.BUTTON - resource_pack_download_popup_base: T.INPUT_PANEL - resource_pack_download_server_required: T.INPUT_PANEL - resource_pack_download_optional_and_required: T.INPUT_PANEL - resource_pack_download_optional: T.INPUT_PANEL - resource_pack_download_required: T.INPUT_PANEL - normal_stroke_button: T.IMAGE - progress_screen_text: T.LABEL - progress_title_text: T.LABEL - progress_bar_text: T.LABEL - code_text: T.LABEL - code_number: T.LABEL - progress_loading_bars: T.IMAGE - progress_loading_spinner: T.IMAGE - fancy_progress_loading_bars: T.PANEL - "fancy_progress_loading_bars/full_progress_bar_icon": T.IMAGE - "fancy_progress_loading_bars/empty_progress_bar_icon": T.IMAGE - "fancy_progress_loading_bars/progress_bar_nub": T.IMAGE - progress_bar: T.CUSTOM - progress_bar_nub: T.IMAGE - thick_progress_bar_icon_base: T.IMAGE - thick_progress_bar_icon_empty: T.IMAGE - thick_progress_bar: T.PANEL - "thick_progress_bar/full_progress_bar_icon": T.IMAGE - "thick_progress_bar/empty_progress_bar_icon": T.IMAGE - edu_cloud_upload_progress_bar: T.PANEL - "edu_cloud_upload_progress_bar/waveform_loading_bar": T.IMAGE - "edu_cloud_upload_progress_bar/determinate_loading_bar": T.PANEL - cancel_button: T.BUTTON - retry_button: T.BUTTON - abort_button: T.BUTTON - ok_button: T.BUTTON - title_panel: T.PANEL - "title_panel/progress_title_text": T.LABEL - "title_panel/progress_bar_text": T.LABEL - "title_panel/progress_bar": T.CUSTOM - button_panel: T.PANEL - "button_panel/cancel_button": T.BUTTON - modal_button_panel: T.PANEL - "modal_button_panel/cancel_button": T.BUTTON - modal_button_panel_with_retry: T.PANEL - "modal_button_panel_with_retry/abort_button": T.BUTTON - "modal_button_panel_with_retry/cancel_button": T.BUTTON - "modal_button_panel_with_retry/retry_button": T.BUTTON - modal_ok_button_panel: T.PANEL - "modal_ok_button_panel/ok_button": T.BUTTON - gamepad_helpers: T.PANEL - "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL - world_image: T.IMAGE - cloud_image: T.IMAGE - server_image: T.IMAGE - edu_cloud_upload_image: T.STACK_PANEL - "edu_cloud_upload_image/world_image_wrapper": T.PANEL - "edu_cloud_upload_image/world_image_wrapper/fetch_world_image": T.IMAGE - "edu_cloud_upload_image/arrow_image_wrapper": T.PANEL - "edu_cloud_upload_image/arrow_image_wrapper/arrow_image": T.IMAGE - "edu_cloud_upload_image/cloud_image_wrapper": T.PANEL - "edu_cloud_upload_image/cloud_image_wrapper/upload_cloud_image": T.IMAGE - edu_cloud_fetch_image: T.STACK_PANEL - "edu_cloud_fetch_image/cloud_image_wrapper": T.PANEL - "edu_cloud_fetch_image/cloud_image_wrapper/fetch_cloud_image": T.IMAGE - "edu_cloud_fetch_image/spyglass_image_wrapper": T.PANEL - "edu_cloud_fetch_image/spyglass_image_wrapper/spyglass_image": T.IMAGE - "edu_cloud_fetch_image/world_image_wrapper": T.PANEL - "edu_cloud_fetch_image/world_image_wrapper/fetch_world_image": T.IMAGE - edu_cloud_download_image: T.STACK_PANEL - "edu_cloud_download_image/cloud_image_wrapper": T.PANEL - "edu_cloud_download_image/cloud_image_wrapper/download_cloud_image": T.IMAGE - "edu_cloud_download_image/arrow_image_wrapper": T.PANEL - "edu_cloud_download_image/arrow_image_wrapper/arrow_image": T.IMAGE - "edu_cloud_download_image/world_image_wrapper": T.PANEL - "edu_cloud_download_image/world_image_wrapper/download_world_image": T.IMAGE - edu_server_fetch_image: T.STACK_PANEL - "edu_server_fetch_image/server_image_wrapper_left": T.PANEL - "edu_server_fetch_image/server_image_wrapper_left/server_image": T.IMAGE - "edu_server_fetch_image/spyglass_image_wrapper": T.PANEL - "edu_server_fetch_image/spyglass_image_wrapper/spyglass_image": T.IMAGE - "edu_server_fetch_image/server_image_wrapper_right": T.PANEL - "edu_server_fetch_image/server_image_wrapper_right/server_image": T.IMAGE - modal_progress_panel_no_cancel: T.PANEL - "modal_progress_panel_no_cancel/common_panel": T.PANEL - "modal_progress_panel_no_cancel/content": T.PANEL - "modal_progress_panel_no_cancel/content/title_panel": T.PANEL - "modal_progress_panel_no_cancel/content/progress_loading_bars": T.IMAGE - modal_progress_panel_with_cancel: T.PANEL - "modal_progress_panel_with_cancel/common_panel": T.PANEL - "modal_progress_panel_with_cancel/content": T.PANEL - "modal_progress_panel_with_cancel/content/title_panel": T.PANEL - "modal_progress_panel_with_cancel/content/progress_loading_bars": T.IMAGE - "modal_progress_panel_with_cancel/modal_button_panel": T.PANEL - progress_panel: T.PANEL - "progress_panel/progress_loading_bars": T.IMAGE - "progress_panel/title_panel": T.PANEL - "progress_panel/button_panel": T.PANEL - modal_progress_screen: T.SCREEN - delete_progress_screen: T.SCREEN - realms_loading_background: T.PANEL - "realms_loading_background/solid_blue": T.IMAGE - "realms_loading_background/solid_blue/gradient": T.IMAGE - realms_stories_loading_progress_screen: T.SCREEN - world_loading_progress_screen: T.SCREEN - world_loading_screen_background: T.IMAGE - overworld_loading_background: T.IMAGE - "overworld_loading_background/background_gradient": T.CUSTOM - overworld_loading_progress_screen: T.SCREEN - nether_loading_background: T.IMAGE - "nether_loading_background/background_gradient": T.CUSTOM - nether_loading_progress_screen: T.SCREEN - theend_loading_background: T.IMAGE - "theend_loading_background/background_gradient": T.CUSTOM - theend_loading_progress_screen: T.SCREEN - world_saving_progress_screen: T.SCREEN - fetching_edu_cloud_worlds: T.SCREEN - edu_cloud_download_progress_screen: T.SCREEN - fetching_edu_servers: T.SCREEN - world_convert_modal_progress_screen: T.SCREEN - progress_screen: T.SCREEN - popup_dialog_factory: T.FACTORY - progress_screen_content: T.PANEL - "progress_screen_content/progress_content_panel": T.PANEL - "progress_screen_content/popup_dialog_factory": T.FACTORY - progress_content_panel: T.PANEL - "progress_content_panel/progress_panel": T.PANEL - "progress_content_panel/gamepad_helpers": T.PANEL - modal_screen_content: T.PANEL - "modal_screen_content/modal_progress_panel": T.PANEL - world_modal_progress_panel: T.PANEL - "world_modal_progress_panel/common_panel": T.PANEL - "world_modal_progress_panel/base_content": T.PANEL - "world_modal_progress_panel/base_content/progress_title_text": T.LABEL - "world_modal_progress_panel/base_content/progress_bar_text": T.LABEL - "world_modal_progress_panel/inside_content": T.STACK_PANEL - "world_modal_progress_panel/inside_content/loading_bar_panel": T.PANEL - "world_modal_progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": T.PANEL - "world_modal_progress_panel/inside_content/loading_bar_panel/progress_loading_bars": T.IMAGE - "world_modal_progress_panel/inside_content/vertical_padding": T.PANEL - "world_modal_progress_panel/inside_content/modal_button_panel": T.UNKNOWN - "world_modal_progress_panel/inside_content/vertical_padding_2": T.PANEL - cloud_upload_panel: T.PANEL - "cloud_upload_panel/common_panel": T.PANEL - "cloud_upload_panel/base_content": T.PANEL - "cloud_upload_panel/base_content/progress_title_text": T.LABEL - "cloud_upload_panel/base_content/progress_text": T.LABEL - "cloud_upload_panel/base_content/edu_cloud_upload_image": T.STACK_PANEL - "cloud_upload_panel/base_content/loading_bar_panel": T.PANEL - "cloud_upload_panel/base_content/loading_bar_panel/progress_loading_bars": T.PANEL - cloud_error_panel: T.PANEL - "cloud_error_panel/common_panel": T.PANEL - "cloud_error_panel/content_wrapper": T.PANEL - "cloud_error_panel/content_wrapper/title_wrapper": T.PANEL - "cloud_error_panel/content_wrapper/title_wrapper/progress_title_text": T.LABEL - "cloud_error_panel/content_wrapper/error_text_tts_wrapper": T.PANEL - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/tts_border": T.BUTTON - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper": T.STACK_PANEL - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/edu_cloud_error_text": T.LABEL - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding": T.PANEL - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code": T.STACK_PANEL - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_text": T.LABEL - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_number": T.LABEL - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding_2": T.PANEL - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link": T.STACK_PANEL - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/cloud_support_hypertext": T.BUTTON - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon": T.PANEL - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon/icon": T.IMAGE - "cloud_error_panel/content_wrapper/button_content": T.STACK_PANEL - "cloud_error_panel/content_wrapper/button_content/modal_button_panel": T.UNKNOWN - "cloud_error_panel/content_wrapper/error_button_content": T.STACK_PANEL - "cloud_error_panel/content_wrapper/error_button_content/download_ok_button": T.BUTTON - "cloud_error_panel/content_wrapper/error_button_content/download_cancel_button": T.BUTTON - cloud_fetch_panel: T.PANEL - "cloud_fetch_panel/common_panel": T.PANEL - "cloud_fetch_panel/base_content": T.PANEL - "cloud_fetch_panel/base_content/progress_title_text": T.LABEL - "cloud_fetch_panel/base_content/progress_text": T.LABEL - "cloud_fetch_panel/base_content/edu_cloud_fetch_image": T.STACK_PANEL - "cloud_fetch_panel/base_content/loading_bar_panel": T.PANEL - "cloud_fetch_panel/base_content/loading_bar_panel/progress_loading_bars": T.IMAGE - server_fetch_panel: T.PANEL - "server_fetch_panel/common_panel": T.PANEL - "server_fetch_panel/base_content": T.PANEL - "server_fetch_panel/base_content/progress_title_text": T.LABEL - "server_fetch_panel/base_content/progress_text": T.LABEL - "server_fetch_panel/base_content/edu_server_fetch_image": T.STACK_PANEL - "server_fetch_panel/base_content/loading_bar_panel": T.PANEL - "server_fetch_panel/base_content/loading_bar_panel/progress_loading_bars": T.IMAGE - cloud_download_panel: T.PANEL - "cloud_download_panel/common_panel": T.PANEL - "cloud_download_panel/base_content": T.PANEL - "cloud_download_panel/base_content/progress_title_text": T.LABEL - "cloud_download_panel/base_content/progress_bar_text": T.LABEL - "cloud_download_panel/base_content/edu_cloud_download_image": T.STACK_PANEL - "cloud_download_panel/loading_bar_panel": T.PANEL - "cloud_download_panel/loading_bar_panel/progress_loading_bars": T.IMAGE - world_convert_modal_progress_screen_content: T.PANEL - "world_convert_modal_progress_screen_content/mobile_data_icon": T.PANEL - "world_convert_modal_progress_screen_content/title_panel_content": T.PANEL - "world_convert_modal_progress_screen_content/world_modal_progress_panel": T.PANEL - "world_convert_modal_progress_screen_content/popup_dialog_factory": T.FACTORY - realms_loading_world_modal_progress_screen_content: T.PANEL - "realms_loading_world_modal_progress_screen_content/mobile_data_icon": T.PANEL - "realms_loading_world_modal_progress_screen_content/realms_title_image": T.IMAGE - "realms_loading_world_modal_progress_screen_content/world_modal_progress_panel": T.PANEL - "realms_loading_world_modal_progress_screen_content/popup_dialog_factory": T.FACTORY - "realms_loading_world_modal_progress_screen_content/server_region_connected": T.STACK_PANEL - "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_label": T.LABEL - "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_connected_text": T.LABEL - "realms_loading_world_modal_progress_screen_content/server_region_connected/padding": T.PANEL - "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_ping_icon": T.IMAGE - world_save_modal_progress_screen_content: T.PANEL - "world_save_modal_progress_screen_content/title_panel_content": T.PANEL - "world_save_modal_progress_screen_content/world_modal_progress_panel": T.PANEL - "world_save_modal_progress_screen_content/save_icon": T.IMAGE - "world_save_modal_progress_screen_content/popup_dialog_factory": T.FACTORY - cloud_upload_screen_content: T.PANEL - "cloud_upload_screen_content/title_panel_content": T.PANEL - "cloud_upload_screen_content/cloud_upload_panel": T.PANEL - "cloud_upload_screen_content/cloud_upload_error_panel": T.PANEL - "cloud_upload_screen_content/popup_dialog_factory": T.FACTORY - "cloud_upload_screen_content/cloud_conflict_resolution_popup_factory": T.FACTORY - edu_cloud_fetch_screen_content: T.PANEL - "edu_cloud_fetch_screen_content/cloud_fetch_panel": T.PANEL - "edu_cloud_fetch_screen_content/popup_dialog_factory": T.FACTORY - edu_server_fetch_screen_content: T.PANEL - "edu_server_fetch_screen_content/server_fetch_panel": T.PANEL - "edu_server_fetch_screen_content/popup_dialog_factory": T.FACTORY - cloud_download_screen_content: T.PANEL - "cloud_download_screen_content/background": T.IMAGE - "cloud_download_screen_content/cloud_download_panel": T.PANEL - "cloud_download_screen_content/cloud_download_error_panel": T.PANEL - "cloud_download_screen_content/popup_dialog_factory": T.FACTORY - auto_save: T.IMAGE - mobile_data_ios_icon: T.IMAGE - mobile_data_android_icon: T.IMAGE - mobile_data_icon_text: T.LABEL - mobile_data_icon: T.PANEL - "mobile_data_icon/icon_android": T.IMAGE - "mobile_data_icon/icon_ios": T.IMAGE - "mobile_data_icon/text": T.LABEL + "popup_dialog_base": T.INPUT_PANEL, + "popup_dialog_base/background": T.IMAGE, + "popup_dialog_base/scrolling_panel": T.PANEL, + "popup_dialog_base/totalSelected": T.LABEL, + "popup_dialog_base/totalSelectedSize": T.LABEL, + "popup_dialog_base/left": T.BUTTON, + "popup_dialog_base/right": T.BUTTON, + "checkbox_visual": T.PANEL, + "checkbox_visual/control": T.LABEL, + "checkbox_visuals_unchecked": T.PANEL, + "checkbox_visuals_checked": T.PANEL, + "checkbox_visuals_unchecked_locked": T.PANEL, + "checkbox_visuals_checked_locked": T.PANEL, + "checkbox_visuals_unchecked_hover": T.PANEL, + "checkbox_visuals_checked_hover": T.PANEL, + "checkbox_with_label_core": T.TOGGLE, + "checkbox_with_label": T.PANEL, + "checkbox_with_label/checkbox_with_label_core": T.TOGGLE, + "resource_pack_grid_item": T.PANEL, + "resource_pack_section": T.STACK_PANEL, + "resource_pack_section/required_resource_pack_list_grid": T.GRID, + "resource_pack_section/optional_resource_pack_list_grid": T.GRID, + "simple_popup_dialog_base": T.INPUT_PANEL, + "simple_popup_dialog_base/dialog_background_hollow_3": T.IMAGE, + "simple_popup_dialog_base/dialog_background_hollow_3/control": T.IMAGE, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel": T.STACK_PANEL, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_0": T.PANEL, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/title": T.LABEL, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_1": T.PANEL, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description": T.LABEL, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_2": T.PANEL, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description2": T.LABEL, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_3": T.PANEL, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/top_optional_button": T.BUTTON, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_4": T.PANEL, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/middle_button": T.BUTTON, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_5": T.PANEL, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/bottom_button": T.BUTTON, + "resource_pack_download_popup_base": T.INPUT_PANEL, + "resource_pack_download_server_required": T.INPUT_PANEL, + "resource_pack_download_optional_and_required": T.INPUT_PANEL, + "resource_pack_download_optional": T.INPUT_PANEL, + "resource_pack_download_required": T.INPUT_PANEL, + "normal_stroke_button": T.IMAGE, + "progress_screen_text": T.LABEL, + "progress_title_text": T.LABEL, + "progress_bar_text": T.LABEL, + "code_text": T.LABEL, + "code_number": T.LABEL, + "progress_loading_bars": T.IMAGE, + "progress_loading_spinner": T.IMAGE, + "fancy_progress_loading_bars": T.PANEL, + "fancy_progress_loading_bars/full_progress_bar_icon": T.IMAGE, + "fancy_progress_loading_bars/empty_progress_bar_icon": T.IMAGE, + "fancy_progress_loading_bars/progress_bar_nub": T.IMAGE, + "progress_bar": T.CUSTOM, + "progress_bar_nub": T.IMAGE, + "thick_progress_bar_icon_base": T.IMAGE, + "thick_progress_bar_icon_empty": T.IMAGE, + "thick_progress_bar": T.PANEL, + "thick_progress_bar/full_progress_bar_icon": T.IMAGE, + "thick_progress_bar/empty_progress_bar_icon": T.IMAGE, + "edu_cloud_upload_progress_bar": T.PANEL, + "edu_cloud_upload_progress_bar/waveform_loading_bar": T.IMAGE, + "edu_cloud_upload_progress_bar/determinate_loading_bar": T.PANEL, + "cancel_button": T.BUTTON, + "retry_button": T.BUTTON, + "abort_button": T.BUTTON, + "ok_button": T.BUTTON, + "title_panel": T.PANEL, + "title_panel/progress_title_text": T.LABEL, + "title_panel/progress_bar_text": T.LABEL, + "title_panel/progress_bar": T.CUSTOM, + "button_panel": T.PANEL, + "button_panel/cancel_button": T.BUTTON, + "modal_button_panel": T.PANEL, + "modal_button_panel/cancel_button": T.BUTTON, + "modal_button_panel_with_retry": T.PANEL, + "modal_button_panel_with_retry/abort_button": T.BUTTON, + "modal_button_panel_with_retry/cancel_button": T.BUTTON, + "modal_button_panel_with_retry/retry_button": T.BUTTON, + "modal_ok_button_panel": T.PANEL, + "modal_ok_button_panel/ok_button": T.BUTTON, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL, + "world_image": T.IMAGE, + "cloud_image": T.IMAGE, + "server_image": T.IMAGE, + "edu_cloud_upload_image": T.STACK_PANEL, + "edu_cloud_upload_image/world_image_wrapper": T.PANEL, + "edu_cloud_upload_image/world_image_wrapper/fetch_world_image": T.IMAGE, + "edu_cloud_upload_image/arrow_image_wrapper": T.PANEL, + "edu_cloud_upload_image/arrow_image_wrapper/arrow_image": T.IMAGE, + "edu_cloud_upload_image/cloud_image_wrapper": T.PANEL, + "edu_cloud_upload_image/cloud_image_wrapper/upload_cloud_image": T.IMAGE, + "edu_cloud_fetch_image": T.STACK_PANEL, + "edu_cloud_fetch_image/cloud_image_wrapper": T.PANEL, + "edu_cloud_fetch_image/cloud_image_wrapper/fetch_cloud_image": T.IMAGE, + "edu_cloud_fetch_image/spyglass_image_wrapper": T.PANEL, + "edu_cloud_fetch_image/spyglass_image_wrapper/spyglass_image": T.IMAGE, + "edu_cloud_fetch_image/world_image_wrapper": T.PANEL, + "edu_cloud_fetch_image/world_image_wrapper/fetch_world_image": T.IMAGE, + "edu_cloud_download_image": T.STACK_PANEL, + "edu_cloud_download_image/cloud_image_wrapper": T.PANEL, + "edu_cloud_download_image/cloud_image_wrapper/download_cloud_image": T.IMAGE, + "edu_cloud_download_image/arrow_image_wrapper": T.PANEL, + "edu_cloud_download_image/arrow_image_wrapper/arrow_image": T.IMAGE, + "edu_cloud_download_image/world_image_wrapper": T.PANEL, + "edu_cloud_download_image/world_image_wrapper/download_world_image": T.IMAGE, + "edu_server_fetch_image": T.STACK_PANEL, + "edu_server_fetch_image/server_image_wrapper_left": T.PANEL, + "edu_server_fetch_image/server_image_wrapper_left/server_image": T.IMAGE, + "edu_server_fetch_image/spyglass_image_wrapper": T.PANEL, + "edu_server_fetch_image/spyglass_image_wrapper/spyglass_image": T.IMAGE, + "edu_server_fetch_image/server_image_wrapper_right": T.PANEL, + "edu_server_fetch_image/server_image_wrapper_right/server_image": T.IMAGE, + "modal_progress_panel_no_cancel": T.PANEL, + "modal_progress_panel_no_cancel/common_panel": T.PANEL, + "modal_progress_panel_no_cancel/content": T.PANEL, + "modal_progress_panel_no_cancel/content/title_panel": T.PANEL, + "modal_progress_panel_no_cancel/content/progress_loading_bars": T.IMAGE, + "modal_progress_panel_with_cancel": T.PANEL, + "modal_progress_panel_with_cancel/common_panel": T.PANEL, + "modal_progress_panel_with_cancel/content": T.PANEL, + "modal_progress_panel_with_cancel/content/title_panel": T.PANEL, + "modal_progress_panel_with_cancel/content/progress_loading_bars": T.IMAGE, + "modal_progress_panel_with_cancel/modal_button_panel": T.PANEL, + "progress_panel": T.PANEL, + "progress_panel/progress_loading_bars": T.IMAGE, + "progress_panel/title_panel": T.PANEL, + "progress_panel/button_panel": T.PANEL, + "modal_progress_screen": T.SCREEN, + "delete_progress_screen": T.SCREEN, + "realms_loading_background": T.PANEL, + "realms_loading_background/solid_blue": T.IMAGE, + "realms_loading_background/solid_blue/gradient": T.IMAGE, + "realms_stories_loading_progress_screen": T.SCREEN, + "world_loading_progress_screen": T.SCREEN, + "world_loading_screen_background": T.IMAGE, + "overworld_loading_background": T.IMAGE, + "overworld_loading_background/background_gradient": T.CUSTOM, + "overworld_loading_progress_screen": T.SCREEN, + "nether_loading_background": T.IMAGE, + "nether_loading_background/background_gradient": T.CUSTOM, + "nether_loading_progress_screen": T.SCREEN, + "theend_loading_background": T.IMAGE, + "theend_loading_background/background_gradient": T.CUSTOM, + "theend_loading_progress_screen": T.SCREEN, + "world_saving_progress_screen": T.SCREEN, + "fetching_edu_cloud_worlds": T.SCREEN, + "edu_cloud_download_progress_screen": T.SCREEN, + "fetching_edu_servers": T.SCREEN, + "world_convert_modal_progress_screen": T.SCREEN, + "progress_screen": T.SCREEN, + "popup_dialog_factory": T.FACTORY, + "progress_screen_content": T.PANEL, + "progress_screen_content/progress_content_panel": T.PANEL, + "progress_screen_content/popup_dialog_factory": T.FACTORY, + "progress_content_panel": T.PANEL, + "progress_content_panel/progress_panel": T.PANEL, + "progress_content_panel/gamepad_helpers": T.PANEL, + "modal_screen_content": T.PANEL, + "modal_screen_content/modal_progress_panel": T.PANEL, + "world_modal_progress_panel": T.PANEL, + "world_modal_progress_panel/common_panel": T.PANEL, + "world_modal_progress_panel/base_content": T.PANEL, + "world_modal_progress_panel/base_content/progress_title_text": T.LABEL, + "world_modal_progress_panel/base_content/progress_bar_text": T.LABEL, + "world_modal_progress_panel/inside_content": T.STACK_PANEL, + "world_modal_progress_panel/inside_content/loading_bar_panel": T.PANEL, + "world_modal_progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": T.PANEL, + "world_modal_progress_panel/inside_content/loading_bar_panel/progress_loading_bars": T.IMAGE, + "world_modal_progress_panel/inside_content/vertical_padding": T.PANEL, + "world_modal_progress_panel/inside_content/modal_button_panel": T.UNKNOWN, + "world_modal_progress_panel/inside_content/vertical_padding_2": T.PANEL, + "cloud_upload_panel": T.PANEL, + "cloud_upload_panel/common_panel": T.PANEL, + "cloud_upload_panel/base_content": T.PANEL, + "cloud_upload_panel/base_content/progress_title_text": T.LABEL, + "cloud_upload_panel/base_content/progress_text": T.LABEL, + "cloud_upload_panel/base_content/edu_cloud_upload_image": T.STACK_PANEL, + "cloud_upload_panel/base_content/loading_bar_panel": T.PANEL, + "cloud_upload_panel/base_content/loading_bar_panel/progress_loading_bars": T.PANEL, + "cloud_error_panel": T.PANEL, + "cloud_error_panel/common_panel": T.PANEL, + "cloud_error_panel/content_wrapper": T.PANEL, + "cloud_error_panel/content_wrapper/title_wrapper": T.PANEL, + "cloud_error_panel/content_wrapper/title_wrapper/progress_title_text": T.LABEL, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper": T.PANEL, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/tts_border": T.BUTTON, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper": T.STACK_PANEL, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/edu_cloud_error_text": T.LABEL, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding": T.PANEL, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code": T.STACK_PANEL, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_text": T.LABEL, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_number": T.LABEL, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding_2": T.PANEL, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link": T.STACK_PANEL, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/cloud_support_hypertext": T.BUTTON, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon": T.PANEL, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon/icon": T.IMAGE, + "cloud_error_panel/content_wrapper/button_content": T.STACK_PANEL, + "cloud_error_panel/content_wrapper/button_content/modal_button_panel": T.UNKNOWN, + "cloud_error_panel/content_wrapper/error_button_content": T.STACK_PANEL, + "cloud_error_panel/content_wrapper/error_button_content/download_ok_button": T.BUTTON, + "cloud_error_panel/content_wrapper/error_button_content/download_cancel_button": T.BUTTON, + "cloud_fetch_panel": T.PANEL, + "cloud_fetch_panel/common_panel": T.PANEL, + "cloud_fetch_panel/base_content": T.PANEL, + "cloud_fetch_panel/base_content/progress_title_text": T.LABEL, + "cloud_fetch_panel/base_content/progress_text": T.LABEL, + "cloud_fetch_panel/base_content/edu_cloud_fetch_image": T.STACK_PANEL, + "cloud_fetch_panel/base_content/loading_bar_panel": T.PANEL, + "cloud_fetch_panel/base_content/loading_bar_panel/progress_loading_bars": T.IMAGE, + "server_fetch_panel": T.PANEL, + "server_fetch_panel/common_panel": T.PANEL, + "server_fetch_panel/base_content": T.PANEL, + "server_fetch_panel/base_content/progress_title_text": T.LABEL, + "server_fetch_panel/base_content/progress_text": T.LABEL, + "server_fetch_panel/base_content/edu_server_fetch_image": T.STACK_PANEL, + "server_fetch_panel/base_content/loading_bar_panel": T.PANEL, + "server_fetch_panel/base_content/loading_bar_panel/progress_loading_bars": T.IMAGE, + "cloud_download_panel": T.PANEL, + "cloud_download_panel/common_panel": T.PANEL, + "cloud_download_panel/base_content": T.PANEL, + "cloud_download_panel/base_content/progress_title_text": T.LABEL, + "cloud_download_panel/base_content/progress_bar_text": T.LABEL, + "cloud_download_panel/base_content/edu_cloud_download_image": T.STACK_PANEL, + "cloud_download_panel/loading_bar_panel": T.PANEL, + "cloud_download_panel/loading_bar_panel/progress_loading_bars": T.IMAGE, + "world_convert_modal_progress_screen_content": T.PANEL, + "world_convert_modal_progress_screen_content/mobile_data_icon": T.PANEL, + "world_convert_modal_progress_screen_content/title_panel_content": T.PANEL, + "world_convert_modal_progress_screen_content/world_modal_progress_panel": T.PANEL, + "world_convert_modal_progress_screen_content/popup_dialog_factory": T.FACTORY, + "realms_loading_world_modal_progress_screen_content": T.PANEL, + "realms_loading_world_modal_progress_screen_content/mobile_data_icon": T.PANEL, + "realms_loading_world_modal_progress_screen_content/realms_title_image": T.IMAGE, + "realms_loading_world_modal_progress_screen_content/world_modal_progress_panel": T.PANEL, + "realms_loading_world_modal_progress_screen_content/popup_dialog_factory": T.FACTORY, + "realms_loading_world_modal_progress_screen_content/server_region_connected": T.STACK_PANEL, + "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_label": T.LABEL, + "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_connected_text": T.LABEL, + "realms_loading_world_modal_progress_screen_content/server_region_connected/padding": T.PANEL, + "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_ping_icon": T.IMAGE, + "world_save_modal_progress_screen_content": T.PANEL, + "world_save_modal_progress_screen_content/title_panel_content": T.PANEL, + "world_save_modal_progress_screen_content/world_modal_progress_panel": T.PANEL, + "world_save_modal_progress_screen_content/save_icon": T.IMAGE, + "world_save_modal_progress_screen_content/popup_dialog_factory": T.FACTORY, + "cloud_upload_screen_content": T.PANEL, + "cloud_upload_screen_content/title_panel_content": T.PANEL, + "cloud_upload_screen_content/cloud_upload_panel": T.PANEL, + "cloud_upload_screen_content/cloud_upload_error_panel": T.PANEL, + "cloud_upload_screen_content/popup_dialog_factory": T.FACTORY, + "cloud_upload_screen_content/cloud_conflict_resolution_popup_factory": T.FACTORY, + "edu_cloud_fetch_screen_content": T.PANEL, + "edu_cloud_fetch_screen_content/cloud_fetch_panel": T.PANEL, + "edu_cloud_fetch_screen_content/popup_dialog_factory": T.FACTORY, + "edu_server_fetch_screen_content": T.PANEL, + "edu_server_fetch_screen_content/server_fetch_panel": T.PANEL, + "edu_server_fetch_screen_content/popup_dialog_factory": T.FACTORY, + "cloud_download_screen_content": T.PANEL, + "cloud_download_screen_content/background": T.IMAGE, + "cloud_download_screen_content/cloud_download_panel": T.PANEL, + "cloud_download_screen_content/cloud_download_error_panel": T.PANEL, + "cloud_download_screen_content/popup_dialog_factory": T.FACTORY, + "auto_save": T.IMAGE, + "mobile_data_ios_icon": T.IMAGE, + "mobile_data_android_icon": T.IMAGE, + "mobile_data_icon_text": T.LABEL, + "mobile_data_icon": T.PANEL, + "mobile_data_icon/icon_android": T.IMAGE, + "mobile_data_icon/icon_ios": T.IMAGE, + "mobile_data_icon/text": T.LABEL, } export type RatingPromptType = { - padding_horizontal: T.PANEL - padding_vertical: T.PANEL - rating_prompt_yes_label: T.PANEL - "rating_prompt_yes_label/button_label": T.LABEL - rating_prompt_no_label: T.PANEL - "rating_prompt_no_label/button_label": T.LABEL - rating_prompt_yes_button: T.BUTTON - rating_prompt_no_button: T.BUTTON - dialog_image: T.IMAGE - dialog_image_with_border: T.IMAGE - "dialog_image_with_border/dialog_image": T.IMAGE - button_panel: T.STACK_PANEL - "button_panel/padding_3": T.PANEL - "button_panel/yes_button": T.BUTTON - "button_panel/no_button": T.BUTTON - image_panel: T.STACK_PANEL - "image_panel/padding_2": T.PANEL - "image_panel/dialog_image_with_border": T.IMAGE - main_panel: T.STACK_PANEL - "main_panel/padding_0": T.PANEL - "main_panel/image_panel": T.STACK_PANEL - "main_panel/padding_1": T.PANEL - "main_panel/button_panel": T.STACK_PANEL - rating_prompt_screen: T.SCREEN - rating_prompt_screen_content: T.PANEL + "padding_horizontal": T.PANEL, + "padding_vertical": T.PANEL, + "rating_prompt_yes_label": T.PANEL, + "rating_prompt_yes_label/button_label": T.LABEL, + "rating_prompt_no_label": T.PANEL, + "rating_prompt_no_label/button_label": T.LABEL, + "rating_prompt_yes_button": T.BUTTON, + "rating_prompt_no_button": T.BUTTON, + "dialog_image": T.IMAGE, + "dialog_image_with_border": T.IMAGE, + "dialog_image_with_border/dialog_image": T.IMAGE, + "button_panel": T.STACK_PANEL, + "button_panel/padding_3": T.PANEL, + "button_panel/yes_button": T.BUTTON, + "button_panel/no_button": T.BUTTON, + "image_panel": T.STACK_PANEL, + "image_panel/padding_2": T.PANEL, + "image_panel/dialog_image_with_border": T.IMAGE, + "main_panel": T.STACK_PANEL, + "main_panel/padding_0": T.PANEL, + "main_panel/image_panel": T.STACK_PANEL, + "main_panel/padding_1": T.PANEL, + "main_panel/button_panel": T.STACK_PANEL, + "rating_prompt_screen": T.SCREEN, + "rating_prompt_screen_content": T.PANEL, } export type RealmsCommonType = { - pending_invites_icon: T.IMAGE - dark_banner: T.IMAGE - dark_banner_hover: T.IMAGE - legacy_banner: T.IMAGE - main_banner: T.IMAGE - hollow_banner: T.IMAGE - popup_dialog_bg: T.IMAGE - popup_dialog__play_on_realm: T.INPUT_PANEL - "popup_dialog__play_on_realm/play_on_realm_popup_background": T.IMAGE - "popup_dialog__play_on_realm/gamepad_helpers": T.STACK_PANEL - "popup_dialog__play_on_realm/play_on_realm_popup_content": T.PANEL - play_on_realm_popup_background: T.IMAGE - play_on_realm_popup_content: T.PANEL - "play_on_realm_popup_content/popup_dialog_bg": T.IMAGE - "play_on_realm_popup_content/play_on_realm_popup_dialog_header": T.PANEL - "play_on_realm_popup_content/play_on_realm_popup_dialog_upper_body": T.PANEL - "play_on_realm_popup_content/play_on_realm_popup_dialog_lower_body": T.PANEL - play_on_realm_popup_dialog_header: T.PANEL - "play_on_realm_popup_dialog_header/play_on_realm_popup_dialog_header_text": T.LABEL - "play_on_realm_popup_dialog_header/close_button": T.BUTTON - play_on_realm_popup_dialog_header_text: T.LABEL - play_on_realm_popup_dialog_upper_body: T.PANEL - "play_on_realm_popup_dialog_upper_body/play_on_realm_banner": T.IMAGE - "play_on_realm_popup_dialog_upper_body/play_on_realm_panel": T.PANEL - "play_on_realm_popup_dialog_upper_body/background_panel": T.PANEL - "play_on_realm_popup_dialog_upper_body/background_panel/black_background": T.IMAGE - play_on_realm_panel: T.PANEL - "play_on_realm_panel/play_on_realm_content_panel": T.STACK_PANEL - "play_on_realm_panel/play_on_realm_content_panel/play_image_panel": T.STACK_PANEL - "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/spacing_gap_image": T.PANEL - "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/realms_image": T.IMAGE - "play_on_realm_panel/play_on_realm_content_panel/play_text_panel": T.STACK_PANEL - "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_1": T.PANEL - "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_1": T.LABEL - "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_2": T.PANEL - "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_2": T.LABEL - play_on_realm_popup_dialog_lower_body: T.PANEL - "play_on_realm_popup_dialog_lower_body/button_panel": T.STACK_PANEL - "play_on_realm_popup_dialog_lower_body/button_panel/play_with_friends_button": T.BUTTON - "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap1": T.PANEL - "play_on_realm_popup_dialog_lower_body/button_panel/play_solo_button": T.BUTTON - "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap2": T.PANEL - "play_on_realm_popup_dialog_lower_body/button_panel/go_back_button": T.BUTTON + "pending_invites_icon": T.IMAGE, + "dark_banner": T.IMAGE, + "dark_banner_hover": T.IMAGE, + "legacy_banner": T.IMAGE, + "main_banner": T.IMAGE, + "hollow_banner": T.IMAGE, + "popup_dialog_bg": T.IMAGE, + "popup_dialog__play_on_realm": T.INPUT_PANEL, + "popup_dialog__play_on_realm/play_on_realm_popup_background": T.IMAGE, + "popup_dialog__play_on_realm/gamepad_helpers": T.STACK_PANEL, + "popup_dialog__play_on_realm/play_on_realm_popup_content": T.PANEL, + "play_on_realm_popup_background": T.IMAGE, + "play_on_realm_popup_content": T.PANEL, + "play_on_realm_popup_content/popup_dialog_bg": T.IMAGE, + "play_on_realm_popup_content/play_on_realm_popup_dialog_header": T.PANEL, + "play_on_realm_popup_content/play_on_realm_popup_dialog_upper_body": T.PANEL, + "play_on_realm_popup_content/play_on_realm_popup_dialog_lower_body": T.PANEL, + "play_on_realm_popup_dialog_header": T.PANEL, + "play_on_realm_popup_dialog_header/play_on_realm_popup_dialog_header_text": T.LABEL, + "play_on_realm_popup_dialog_header/close_button": T.BUTTON, + "play_on_realm_popup_dialog_header_text": T.LABEL, + "play_on_realm_popup_dialog_upper_body": T.PANEL, + "play_on_realm_popup_dialog_upper_body/play_on_realm_banner": T.IMAGE, + "play_on_realm_popup_dialog_upper_body/play_on_realm_panel": T.PANEL, + "play_on_realm_popup_dialog_upper_body/background_panel": T.PANEL, + "play_on_realm_popup_dialog_upper_body/background_panel/black_background": T.IMAGE, + "play_on_realm_panel": T.PANEL, + "play_on_realm_panel/play_on_realm_content_panel": T.STACK_PANEL, + "play_on_realm_panel/play_on_realm_content_panel/play_image_panel": T.STACK_PANEL, + "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/spacing_gap_image": T.PANEL, + "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/realms_image": T.IMAGE, + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel": T.STACK_PANEL, + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_1": T.PANEL, + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_1": T.LABEL, + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_2": T.PANEL, + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_2": T.LABEL, + "play_on_realm_popup_dialog_lower_body": T.PANEL, + "play_on_realm_popup_dialog_lower_body/button_panel": T.STACK_PANEL, + "play_on_realm_popup_dialog_lower_body/button_panel/play_with_friends_button": T.BUTTON, + "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap1": T.PANEL, + "play_on_realm_popup_dialog_lower_body/button_panel/play_solo_button": T.BUTTON, + "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap2": T.PANEL, + "play_on_realm_popup_dialog_lower_body/button_panel/go_back_button": T.BUTTON, } export type RealmsCreateType = { - title_label: T.LABEL - label: T.LABEL - enter_name_panel: T.PANEL - "enter_name_panel/name_label_0": T.LABEL - "enter_name_panel/name_edit": T.EDIT_BOX - selected_option_checkbox: T.IMAGE - selected_option_checkbox_empty: T.IMAGE - selected_option_checkbox_filled: T.IMAGE - checkbox_panel: T.PANEL - "checkbox_panel/selected_option_checkbox_empty": T.IMAGE - "checkbox_panel/selected_option_checkbox_filled": T.IMAGE - "checkbox_panel/button_label": T.LABEL - realms_option_button: T.BUTTON - choose_duration_panel: T.PANEL - "choose_duration_panel/name_label": T.LABEL - "choose_duration_panel/choose_duration_stack_panel": T.INPUT_PANEL - "choose_duration_panel/choose_duration_stack_panel/short": T.BUTTON - "choose_duration_panel/choose_duration_stack_panel/long": T.BUTTON - choose_tier_panel: T.PANEL - "choose_tier_panel/name_label": T.LABEL - "choose_tier_panel/choose_tier_stack_panel": T.INPUT_PANEL - "choose_tier_panel/choose_tier_stack_panel/player_count_2": T.BUTTON - view_terms_button: T.BUTTON - privacy_policy_button: T.BUTTON - terms_and_conditions_panel: T.PANEL - "terms_and_conditions_panel/name_label": T.LABEL - "terms_and_conditions_panel/terms_string_panel": T.PANEL - "terms_and_conditions_panel/terms_string_panel/banner_fill": T.IMAGE - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": T.STACK_PANEL - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": T.PANEL - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": T.TOGGLE - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": T.BUTTON - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": T.BUTTON - confirmation_panel: T.PANEL - "confirmation_panel/create_realms_button": T.BUTTON - create_realms_stack_panel: T.STACK_PANEL - "create_realms_stack_panel/padding_0": T.PANEL - "create_realms_stack_panel/create_realms_text_panel": T.PANEL - create_realms_text_panel: T.PANEL - "create_realms_text_panel/create": T.LABEL - stack_item: T.PANEL - scroll_stack_panel: T.STACK_PANEL - "scroll_stack_panel/name": T.PANEL - "scroll_stack_panel/name/enter_name_panel": T.PANEL - "scroll_stack_panel/padding_0": T.PANEL - "scroll_stack_panel/duration": T.PANEL - "scroll_stack_panel/duration/choose_duration_panel": T.PANEL - "scroll_stack_panel/tier": T.PANEL - "scroll_stack_panel/tier/choose_tier_panel": T.PANEL - "scroll_stack_panel/toc": T.PANEL - "scroll_stack_panel/toc/terms_and_conditions_panel": T.PANEL - "scroll_stack_panel/padding_1": T.PANEL - "scroll_stack_panel/realms_terms_info": T.IMAGE - "scroll_stack_panel/realms_terms_info/label_panel": T.STACK_PANEL - "scroll_stack_panel/realms_terms_info/label_panel/padding_1": T.PANEL - "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper": T.PANEL - "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper_extra": T.PANEL - "scroll_stack_panel/realms_terms_info/label_panel/padding_2": T.PANEL - "scroll_stack_panel/realms_switch_nso_info": T.PANEL - terms_section: T.PANEL - "terms_section/terms_section_label": T.LABEL - terms_section_extra: T.PANEL - "terms_section_extra/terms_section_label": T.LABEL - main_panel: T.STACK_PANEL - "main_panel/scrolling_panel": T.PANEL - "main_panel/padding_0": T.PANEL - "main_panel/confirmation_panel": T.PANEL - "main_panel/padding_1": T.PANEL - content: T.PANEL - "content/main_panel": T.STACK_PANEL - realms_create_screen: T.SCREEN - realms_create_content_and_factory: T.PANEL - "realms_create_content_and_factory/realms_create_content": T.PANEL - "realms_create_content_and_factory/popup_dialog_factory": T.FACTORY + "title_label": T.LABEL, + "label": T.LABEL, + "enter_name_panel": T.PANEL, + "enter_name_panel/name_label_0": T.LABEL, + "enter_name_panel/name_edit": T.EDIT_BOX, + "selected_option_checkbox": T.IMAGE, + "selected_option_checkbox_empty": T.IMAGE, + "selected_option_checkbox_filled": T.IMAGE, + "checkbox_panel": T.PANEL, + "checkbox_panel/selected_option_checkbox_empty": T.IMAGE, + "checkbox_panel/selected_option_checkbox_filled": T.IMAGE, + "checkbox_panel/button_label": T.LABEL, + "realms_option_button": T.BUTTON, + "choose_duration_panel": T.PANEL, + "choose_duration_panel/name_label": T.LABEL, + "choose_duration_panel/choose_duration_stack_panel": T.INPUT_PANEL, + "choose_duration_panel/choose_duration_stack_panel/short": T.BUTTON, + "choose_duration_panel/choose_duration_stack_panel/long": T.BUTTON, + "choose_tier_panel": T.PANEL, + "choose_tier_panel/name_label": T.LABEL, + "choose_tier_panel/choose_tier_stack_panel": T.INPUT_PANEL, + "choose_tier_panel/choose_tier_stack_panel/player_count_2": T.BUTTON, + "view_terms_button": T.BUTTON, + "privacy_policy_button": T.BUTTON, + "terms_and_conditions_panel": T.PANEL, + "terms_and_conditions_panel/name_label": T.LABEL, + "terms_and_conditions_panel/terms_string_panel": T.PANEL, + "terms_and_conditions_panel/terms_string_panel/banner_fill": T.IMAGE, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": T.STACK_PANEL, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": T.PANEL, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": T.TOGGLE, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": T.BUTTON, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": T.BUTTON, + "confirmation_panel": T.PANEL, + "confirmation_panel/create_realms_button": T.BUTTON, + "create_realms_stack_panel": T.STACK_PANEL, + "create_realms_stack_panel/padding_0": T.PANEL, + "create_realms_stack_panel/create_realms_text_panel": T.PANEL, + "create_realms_text_panel": T.PANEL, + "create_realms_text_panel/create": T.LABEL, + "stack_item": T.PANEL, + "scroll_stack_panel": T.STACK_PANEL, + "scroll_stack_panel/name": T.PANEL, + "scroll_stack_panel/name/enter_name_panel": T.PANEL, + "scroll_stack_panel/padding_0": T.PANEL, + "scroll_stack_panel/duration": T.PANEL, + "scroll_stack_panel/duration/choose_duration_panel": T.PANEL, + "scroll_stack_panel/tier": T.PANEL, + "scroll_stack_panel/tier/choose_tier_panel": T.PANEL, + "scroll_stack_panel/toc": T.PANEL, + "scroll_stack_panel/toc/terms_and_conditions_panel": T.PANEL, + "scroll_stack_panel/padding_1": T.PANEL, + "scroll_stack_panel/realms_terms_info": T.IMAGE, + "scroll_stack_panel/realms_terms_info/label_panel": T.STACK_PANEL, + "scroll_stack_panel/realms_terms_info/label_panel/padding_1": T.PANEL, + "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper": T.PANEL, + "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper_extra": T.PANEL, + "scroll_stack_panel/realms_terms_info/label_panel/padding_2": T.PANEL, + "scroll_stack_panel/realms_switch_nso_info": T.PANEL, + "terms_section": T.PANEL, + "terms_section/terms_section_label": T.LABEL, + "terms_section_extra": T.PANEL, + "terms_section_extra/terms_section_label": T.LABEL, + "main_panel": T.STACK_PANEL, + "main_panel/scrolling_panel": T.PANEL, + "main_panel/padding_0": T.PANEL, + "main_panel/confirmation_panel": T.PANEL, + "main_panel/padding_1": T.PANEL, + "content": T.PANEL, + "content/main_panel": T.STACK_PANEL, + "realms_create_screen": T.SCREEN, + "realms_create_content_and_factory": T.PANEL, + "realms_create_content_and_factory/realms_create_content": T.PANEL, + "realms_create_content_and_factory/popup_dialog_factory": T.FACTORY, } export type RealmsPendingInvitationsType = { - panel_text: T.LABEL - banner_panel_base: T.PANEL - "banner_panel_base/background": T.UNKNOWN - "banner_panel_base/indent_panel": T.PANEL - "banner_panel_base/indent_panel/content": T.UNKNOWN - banner_panel: T.PANEL - banner_panel_hover: T.PANEL - realm_invite_button: T.BUTTON - realm_name_label: T.LABEL - realm_owner_label: T.LABEL - tts_gamertag_item_info_wrapper: T.PANEL - gamertag_item_info: T.PANEL - "gamertag_item_info/rnl": T.LABEL - "gamertag_item_info/rol": T.LABEL - accept_button_content: T.IMAGE - decline_button_content: T.IMAGE - realm_accept_button: T.BUTTON - realm_decline_button: T.BUTTON - realm_accepted_panel: T.LABEL - gamertag_item_content: T.PANEL - "gamertag_item_content/lb": T.PANEL - "gamertag_item_content/a": T.BUTTON - "gamertag_item_content/d": T.BUTTON - "gamertag_item_content/ap": T.LABEL - gamertag_item: T.PANEL - gamertag_item_grid: T.GRID - show_friends_only_toggle_state_content: T.STACK_PANEL - "show_friends_only_toggle_state_content/checkbox_holding_panel": T.PANEL - "show_friends_only_toggle_state_content/checkbox_holding_panel/hide_invites": T.UNKNOWN - "show_friends_only_toggle_state_content/hide_invites_text_panel": T.PANEL - "show_friends_only_toggle_state_content/hide_invites_text_panel/hide_invites_text": T.LABEL - show_friends_only_toggle_on_state_content: T.STACK_PANEL - show_friends_only_toggle_on_state: T.PANEL - show_friends_only_toggle_off_state_content: T.STACK_PANEL - show_friends_only_toggle_off_state: T.PANEL - show_friends_only_toggle_on_hover_state_content: T.STACK_PANEL - show_friends_only_toggle_on_hover_state: T.PANEL - show_friends_only_toggle_off_hover_state_content: T.STACK_PANEL - show_friends_only_toggle_off_hover_state: T.PANEL - show_friends_only_toggle_on_locked_state_content: T.STACK_PANEL - show_friends_only_toggle_on_locked_state: T.PANEL - show_friends_only_toggle_off_locked_state_content: T.STACK_PANEL - show_friends_only_toggle_off_locked_state: T.PANEL - show_friends_only_toggle: T.TOGGLE - gamepad_helpers: T.PANEL - "gamepad_helpers/a": T.STACK_PANEL - "gamepad_helpers/b": T.STACK_PANEL - no_invites_label_wrapper: T.PANEL - no_invites_label: T.PANEL - "no_invites_label/label": T.LABEL - realms_pending_invitation_list: T.STACK_PANEL - "realms_pending_invitation_list/upper_padding": T.PANEL - "realms_pending_invitation_list/sfop": T.TOGGLE - "realms_pending_invitation_list/gig": T.GRID - "realms_pending_invitation_list/lower_padding": T.PANEL - "realms_pending_invitation_list/nil": T.PANEL - content_panel: T.PANEL - realms_pending_invitations_screen: T.SCREEN - realms_invitation_screen_content: T.PANEL - "realms_invitation_screen_content/root_panel": T.INPUT_PANEL - "realms_invitation_screen_content/root_panel/main_panel": T.PANEL - "realms_invitation_screen_content/root_panel/sgh": T.PANEL + "panel_text": T.LABEL, + "banner_panel_base": T.PANEL, + "banner_panel_base/background": T.UNKNOWN, + "banner_panel_base/indent_panel": T.PANEL, + "banner_panel_base/indent_panel/content": T.UNKNOWN, + "banner_panel": T.PANEL, + "banner_panel_hover": T.PANEL, + "realm_invite_button": T.BUTTON, + "realm_name_label": T.LABEL, + "realm_owner_label": T.LABEL, + "tts_gamertag_item_info_wrapper": T.PANEL, + "gamertag_item_info": T.PANEL, + "gamertag_item_info/rnl": T.LABEL, + "gamertag_item_info/rol": T.LABEL, + "accept_button_content": T.IMAGE, + "decline_button_content": T.IMAGE, + "realm_accept_button": T.BUTTON, + "realm_decline_button": T.BUTTON, + "realm_accepted_panel": T.LABEL, + "gamertag_item_content": T.PANEL, + "gamertag_item_content/lb": T.PANEL, + "gamertag_item_content/a": T.BUTTON, + "gamertag_item_content/d": T.BUTTON, + "gamertag_item_content/ap": T.LABEL, + "gamertag_item": T.PANEL, + "gamertag_item_grid": T.GRID, + "show_friends_only_toggle_state_content": T.STACK_PANEL, + "show_friends_only_toggle_state_content/checkbox_holding_panel": T.PANEL, + "show_friends_only_toggle_state_content/checkbox_holding_panel/hide_invites": T.UNKNOWN, + "show_friends_only_toggle_state_content/hide_invites_text_panel": T.PANEL, + "show_friends_only_toggle_state_content/hide_invites_text_panel/hide_invites_text": T.LABEL, + "show_friends_only_toggle_on_state_content": T.STACK_PANEL, + "show_friends_only_toggle_on_state": T.PANEL, + "show_friends_only_toggle_off_state_content": T.STACK_PANEL, + "show_friends_only_toggle_off_state": T.PANEL, + "show_friends_only_toggle_on_hover_state_content": T.STACK_PANEL, + "show_friends_only_toggle_on_hover_state": T.PANEL, + "show_friends_only_toggle_off_hover_state_content": T.STACK_PANEL, + "show_friends_only_toggle_off_hover_state": T.PANEL, + "show_friends_only_toggle_on_locked_state_content": T.STACK_PANEL, + "show_friends_only_toggle_on_locked_state": T.PANEL, + "show_friends_only_toggle_off_locked_state_content": T.STACK_PANEL, + "show_friends_only_toggle_off_locked_state": T.PANEL, + "show_friends_only_toggle": T.TOGGLE, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/a": T.STACK_PANEL, + "gamepad_helpers/b": T.STACK_PANEL, + "no_invites_label_wrapper": T.PANEL, + "no_invites_label": T.PANEL, + "no_invites_label/label": T.LABEL, + "realms_pending_invitation_list": T.STACK_PANEL, + "realms_pending_invitation_list/upper_padding": T.PANEL, + "realms_pending_invitation_list/sfop": T.TOGGLE, + "realms_pending_invitation_list/gig": T.GRID, + "realms_pending_invitation_list/lower_padding": T.PANEL, + "realms_pending_invitation_list/nil": T.PANEL, + "content_panel": T.PANEL, + "realms_pending_invitations_screen": T.SCREEN, + "realms_invitation_screen_content": T.PANEL, + "realms_invitation_screen_content/root_panel": T.INPUT_PANEL, + "realms_invitation_screen_content/root_panel/main_panel": T.PANEL, + "realms_invitation_screen_content/root_panel/sgh": T.PANEL, } export type RealmsSlotsType = { - vertical_padding: T.PANEL - horizontal_padding: T.PANEL - horizontal_padding_sibling_height: T.PANEL - realms_background: T.PANEL - "realms_background/gradient": T.IMAGE - "realms_background/particle_1": T.IMAGE - "realms_background/particle_2": T.IMAGE - plus: T.IMAGE - check: T.IMAGE - world_thumbnail: T.IMAGE - realms_stories_icon_glyph: T.IMAGE - "realms_stories_icon_glyph/realms_stories_icon": T.IMAGE - play_button: T.BUTTON - edit_realm_button: T.BUTTON - realms_feed_button: T.BUTTON - unread_story_count_text: T.LABEL - unread_story_count_text_background: T.IMAGE - unread_story_count_panel: T.PANEL - "unread_story_count_panel/text": T.LABEL - "unread_story_count_panel/text/background": T.IMAGE - edit_world_button_panel: T.STACK_PANEL - "edit_world_button_panel/edit_world_button": T.BUTTON - "edit_world_button_panel/padding": T.PANEL - "edit_world_button_panel/activate_world_button": T.BUTTON - world_slot_button: T.BUTTON - world_slot_button_content: T.STACK_PANEL - "world_slot_button_content/world_slot_top": T.PANEL - "world_slot_button_content/world_slot_top/background": T.IMAGE - "world_slot_button_content/world_slot_top/add_world_image_panel": T.PANEL - "world_slot_button_content/world_slot_top/add_world_image_panel/plus_image": T.IMAGE - "world_slot_button_content/world_slot_top/world_thumbnail_image_panel": T.PANEL - "world_slot_button_content/world_slot_top/world_thumbnail_image_panel/world_thumbnail": T.IMAGE - "world_slot_button_content/world_slot_top/edit_world_button_panel": T.STACK_PANEL - "world_slot_button_content/world_slot_top/foreground": T.IMAGE - "world_slot_button_content/world_slot_top/check_image": T.IMAGE - "world_slot_button_content/world_slot_bottom": T.PANEL - "world_slot_button_content/world_slot_bottom/divider_line_black": T.IMAGE - "world_slot_button_content/world_slot_bottom/divider_line_white": T.IMAGE - "world_slot_button_content/world_slot_bottom/add_world_text_panel": T.PANEL - "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_grey": T.IMAGE - "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_green": T.IMAGE - "world_slot_button_content/world_slot_bottom/add_world_text_panel/add_world_text": T.LABEL - "world_slot_button_content/world_slot_bottom/world_info_panel": T.PANEL - "world_slot_button_content/world_slot_bottom/world_info_panel/background": T.IMAGE - "world_slot_button_content/world_slot_bottom/world_info_panel/background_green": T.IMAGE - "world_slot_button_content/world_slot_bottom/world_info_panel/world_info_stack_panel": T.STACK_PANEL - world_info_stack_panel: T.STACK_PANEL - "world_info_stack_panel/world_name_panel": T.PANEL - "world_info_stack_panel/world_name_panel/world_name": T.LABEL - "world_info_stack_panel/world_type_panel": T.PANEL - "world_info_stack_panel/world_type_panel/world_type": T.LABEL - "world_info_stack_panel/bottom_padding": T.PANEL - main_stack_panel: T.STACK_PANEL - "main_stack_panel/padding_0": T.PANEL - "main_stack_panel/button_panel": T.STACK_PANEL - "main_stack_panel/button_panel/play_button": T.BUTTON - "main_stack_panel/button_panel/left_padding": T.PANEL - "main_stack_panel/button_panel/edit_realm_button": T.BUTTON - "main_stack_panel/button_panel/right_padding": T.PANEL - "main_stack_panel/button_panel/feed_panel_with_unread_count": T.PANEL - "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel": T.PANEL - "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel/realms_feed_button": T.BUTTON - "main_stack_panel/button_panel/feed_panel_with_unread_count/unread_story_count": T.PANEL - "main_stack_panel/padding_1": T.PANEL - "main_stack_panel/text_panel_0": T.PANEL - "main_stack_panel/text_panel_0/text": T.LABEL - "main_stack_panel/padding_2": T.PANEL - "main_stack_panel/worlds_panel": T.STACK_PANEL - "main_stack_panel/worlds_panel/world_slot_1": T.BUTTON - "main_stack_panel/worlds_panel/padding_0": T.PANEL - "main_stack_panel/worlds_panel/world_slot_2": T.BUTTON - "main_stack_panel/worlds_panel/padding_1": T.PANEL - "main_stack_panel/worlds_panel/world_slot_3": T.BUTTON - "main_stack_panel/padding_3": T.PANEL - "main_stack_panel/text_panel_1": T.PANEL - "main_stack_panel/text_panel_1/text": T.LABEL - realms_slots_screen: T.SCREEN - realms_slots_screen_content: T.PANEL - "realms_slots_screen_content/background": T.STACK_PANEL - realms_slots_screen_content_panel: T.PANEL - "realms_slots_screen_content_panel/main_scroll_panel": T.PANEL + "vertical_padding": T.PANEL, + "horizontal_padding": T.PANEL, + "horizontal_padding_sibling_height": T.PANEL, + "realms_background": T.PANEL, + "realms_background/gradient": T.IMAGE, + "realms_background/particle_1": T.IMAGE, + "realms_background/particle_2": T.IMAGE, + "plus": T.IMAGE, + "check": T.IMAGE, + "world_thumbnail": T.IMAGE, + "realms_stories_icon_glyph": T.IMAGE, + "realms_stories_icon_glyph/realms_stories_icon": T.IMAGE, + "play_button": T.BUTTON, + "edit_realm_button": T.BUTTON, + "realms_feed_button": T.BUTTON, + "unread_story_count_text": T.LABEL, + "unread_story_count_text_background": T.IMAGE, + "unread_story_count_panel": T.PANEL, + "unread_story_count_panel/text": T.LABEL, + "unread_story_count_panel/text/background": T.IMAGE, + "edit_world_button_panel": T.STACK_PANEL, + "edit_world_button_panel/edit_world_button": T.BUTTON, + "edit_world_button_panel/padding": T.PANEL, + "edit_world_button_panel/activate_world_button": T.BUTTON, + "world_slot_button": T.BUTTON, + "world_slot_button_content": T.STACK_PANEL, + "world_slot_button_content/world_slot_top": T.PANEL, + "world_slot_button_content/world_slot_top/background": T.IMAGE, + "world_slot_button_content/world_slot_top/add_world_image_panel": T.PANEL, + "world_slot_button_content/world_slot_top/add_world_image_panel/plus_image": T.IMAGE, + "world_slot_button_content/world_slot_top/world_thumbnail_image_panel": T.PANEL, + "world_slot_button_content/world_slot_top/world_thumbnail_image_panel/world_thumbnail": T.IMAGE, + "world_slot_button_content/world_slot_top/edit_world_button_panel": T.STACK_PANEL, + "world_slot_button_content/world_slot_top/foreground": T.IMAGE, + "world_slot_button_content/world_slot_top/check_image": T.IMAGE, + "world_slot_button_content/world_slot_bottom": T.PANEL, + "world_slot_button_content/world_slot_bottom/divider_line_black": T.IMAGE, + "world_slot_button_content/world_slot_bottom/divider_line_white": T.IMAGE, + "world_slot_button_content/world_slot_bottom/add_world_text_panel": T.PANEL, + "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_grey": T.IMAGE, + "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_green": T.IMAGE, + "world_slot_button_content/world_slot_bottom/add_world_text_panel/add_world_text": T.LABEL, + "world_slot_button_content/world_slot_bottom/world_info_panel": T.PANEL, + "world_slot_button_content/world_slot_bottom/world_info_panel/background": T.IMAGE, + "world_slot_button_content/world_slot_bottom/world_info_panel/background_green": T.IMAGE, + "world_slot_button_content/world_slot_bottom/world_info_panel/world_info_stack_panel": T.STACK_PANEL, + "world_info_stack_panel": T.STACK_PANEL, + "world_info_stack_panel/world_name_panel": T.PANEL, + "world_info_stack_panel/world_name_panel/world_name": T.LABEL, + "world_info_stack_panel/world_type_panel": T.PANEL, + "world_info_stack_panel/world_type_panel/world_type": T.LABEL, + "world_info_stack_panel/bottom_padding": T.PANEL, + "main_stack_panel": T.STACK_PANEL, + "main_stack_panel/padding_0": T.PANEL, + "main_stack_panel/button_panel": T.STACK_PANEL, + "main_stack_panel/button_panel/play_button": T.BUTTON, + "main_stack_panel/button_panel/left_padding": T.PANEL, + "main_stack_panel/button_panel/edit_realm_button": T.BUTTON, + "main_stack_panel/button_panel/right_padding": T.PANEL, + "main_stack_panel/button_panel/feed_panel_with_unread_count": T.PANEL, + "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel": T.PANEL, + "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel/realms_feed_button": T.BUTTON, + "main_stack_panel/button_panel/feed_panel_with_unread_count/unread_story_count": T.PANEL, + "main_stack_panel/padding_1": T.PANEL, + "main_stack_panel/text_panel_0": T.PANEL, + "main_stack_panel/text_panel_0/text": T.LABEL, + "main_stack_panel/padding_2": T.PANEL, + "main_stack_panel/worlds_panel": T.STACK_PANEL, + "main_stack_panel/worlds_panel/world_slot_1": T.BUTTON, + "main_stack_panel/worlds_panel/padding_0": T.PANEL, + "main_stack_panel/worlds_panel/world_slot_2": T.BUTTON, + "main_stack_panel/worlds_panel/padding_1": T.PANEL, + "main_stack_panel/worlds_panel/world_slot_3": T.BUTTON, + "main_stack_panel/padding_3": T.PANEL, + "main_stack_panel/text_panel_1": T.PANEL, + "main_stack_panel/text_panel_1/text": T.LABEL, + "realms_slots_screen": T.SCREEN, + "realms_slots_screen_content": T.PANEL, + "realms_slots_screen_content/background": T.STACK_PANEL, + "realms_slots_screen_content_panel": T.PANEL, + "realms_slots_screen_content_panel/main_scroll_panel": T.PANEL, } export type RealmsSettingsType = { - settings_screen: T.SCREEN - generic_section: T.STACK_PANEL - generic_section_wrapper: T.PANEL - "generic_section_wrapper/generic_section": T.STACK_PANEL - checkbox_image: T.IMAGE - checkbox_unchecked_state: T.IMAGE - checkbox_checked_state: T.IMAGE - checkbox_unchecked_hover_state: T.IMAGE - checkbox_checked_hover_state: T.IMAGE - checkbox_unchecked_locked_state: T.IMAGE - checkbox_checked_locked_state: T.IMAGE - player_count_label: T.PANEL - realm_duration_label: T.PANEL - realm_subscription_origin_label: T.IMAGE - realm_consumable_to_subscription_info_label: T.PANEL - manage_subscriptions_button: T.BUTTON - delete_realm_button: T.BUTTON - open_realm_button: T.BUTTON - close_realm_button: T.BUTTON - subscriptions_section: T.PANEL - "subscriptions_section/loading_view": T.LABEL - "subscriptions_section/loading_failed_view": T.LABEL - "subscriptions_section/loaded_view": T.STACK_PANEL - "subscriptions_section/loaded_view/player_count_label": T.PANEL - "subscriptions_section/loaded_view/realm_duration_label": T.PANEL - "subscriptions_section/loaded_view/possible_store_mismatch": T.PANEL - "subscriptions_section/loaded_view/realm_subscription_origin_label": T.IMAGE - "subscriptions_section/loaded_view/realm_consumable_to_subscription_info_label": T.PANEL - "subscriptions_section/loaded_view/_0": T.PANEL - "subscriptions_section/loaded_view/delete_realm_button": T.BUTTON - "subscriptions_section/loaded_view/open_realm_button": T.BUTTON - "subscriptions_section/loaded_view/close_realm_button": T.BUTTON - "subscriptions_section/loaded_view/_1": T.PANEL - "subscriptions_section/loaded_view/manage_subscriptions_button": T.BUTTON - invite_link_item_content: T.STACK_PANEL - "invite_link_item_content/invite_link_item_name_and_expiry_text": T.STACK_PANEL - "invite_link_item_content/invite_link_item_name_and_expiry_text/name_text": T.LABEL - "invite_link_item_content/invite_link_item_name_and_expiry_text/spacing_gap": T.PANEL - "invite_link_item_content/invite_link_item_name_and_expiry_text/expiry_text": T.LABEL - "invite_link_item_content/invite_link_item_state_text": T.PANEL - "invite_link_item_content/invite_link_item_state_text/state_text": T.LABEL - "invite_link_item_content/spacing_gap": T.PANEL - invite_link_item_template: T.PANEL - "invite_link_item_template/invite_link_item_button": T.BUTTON - invite_links_section: T.PANEL - "invite_links_section/loading_view": T.LABEL - "invite_links_section/loading_failed_view": T.LABEL - "invite_links_section/loaded_view": T.STACK_PANEL - "invite_links_section/loaded_view/spacing_gap_0": T.PANEL - "invite_links_section/loaded_view/invite_links_info": T.PANEL - "invite_links_section/loaded_view/invite_links_grid": T.STACK_PANEL - "invite_links_section/loaded_view/spacing_gap_1": T.PANEL - "invite_links_section/loaded_view/add_invite_link_button": T.BUTTON - advanced_section: T.PANEL - "advanced_section/loading_view": T.LABEL - "advanced_section/loading_failed_view": T.LABEL - "advanced_section/loaded_view": T.STACK_PANEL - "advanced_section/loaded_view/spacing_gap_0": T.PANEL - "advanced_section/loaded_view/server_preference": T.PANEL - "advanced_section/loaded_view/set_region_content": T.PANEL - "advanced_section/loaded_view/changes_not_applied_panel": T.STACK_PANEL - "advanced_section/loaded_view/changes_not_applied_panel/changes_not_applied_label": T.LABEL - "advanced_section/loaded_view/spacing_gap_1": T.PANEL - "advanced_section/loaded_view/region_help_button": T.BUTTON - set_region_dropdown: T.PANEL - region_dropdown_content: T.PANEL - region_dropdown_radio: T.PANEL - region_help_button_content: T.STACK_PANEL - "region_help_button_content/external_link_icon": T.IMAGE - "region_help_button_content/spacing_gap_1": T.PANEL - "region_help_button_content/help_text": T.LABEL - tts_focus_border: T.BUTTON - saves_section: T.STACK_PANEL - "saves_section/padding_saves_section_top": T.PANEL - "saves_section/loaded_view": T.STACK_PANEL - "saves_section/loaded_view/storage_bar_header_panel": T.PANEL - "saves_section/loaded_view/storage_bar_header_panel/storage_bar_with_header": T.STACK_PANEL - "saves_section/loaded_view/storage_bar_header_panel/focus_border": T.BUTTON - "saves_section/loaded_view/padding3": T.PANEL - "saves_section/loaded_view/save_active_world_button": T.BUTTON - "saves_section/loaded_view/padding4": T.PANEL - "saves_section/loaded_view/active_world_info": T.PANEL - "saves_section/loaded_view/padding5": T.PANEL - "saves_section/loaded_view/storage_warning": T.PANEL - "saves_section/loaded_view/storage_warning/warning_text_panel": T.STACK_PANEL - "saves_section/loaded_view/storage_warning/focus_border": T.BUTTON - "saves_section/loaded_view/padding6": T.PANEL - "saves_section/loaded_view/save_list_container": T.PANEL - "saves_section/loaded_view/save_list_container/tab_buttons": T.STACK_PANEL - "saves_section/loaded_view/save_list_container/tab_content_panel": T.IMAGE - "saves_section/loaded_view/padding_loaded_view_bottom": T.PANEL - "saves_section/loaded_view/restore_info": T.PANEL - "saves_section/loaded_view/saves_help_panel": T.STACK_PANEL - "saves_section/loading_indicator": T.STACK_PANEL - "saves_section/loading_indicator/restore_info": T.PANEL - "saves_section/loading_indicator/loading_text_panel": T.PANEL - "saves_section/loading_indicator/loading_text_panel/loading_text": T.LABEL - "saves_section/loading_indicator/loading_text_panel/loading_text_padding": T.PANEL - "saves_section/loading_indicator/loading_bars": T.PANEL - "saves_section/loading_indicator/loading_bars/progress_loading_bars": T.IMAGE - "saves_section/loading_failed_panel": T.STACK_PANEL - "saves_section/loading_failed_panel/restore_info": T.PANEL - "saves_section/loading_failed_panel/saves_help_panel": T.STACK_PANEL - "saves_section/loading_failed_panel/loading_failed_message": T.PANEL - saves_help_panel: T.STACK_PANEL - "saves_help_panel/padding_help_button_top": T.PANEL - "saves_help_panel/saves_help_button": T.BUTTON - "saves_help_panel/padding_help_button_bottom": T.PANEL - saves_help_button_content: T.STACK_PANEL - "saves_help_button_content/external_link_icon": T.IMAGE - "saves_help_button_content/spacing_gap_1": T.PANEL - "saves_help_button_content/help_text": T.LABEL - storage_bar_label_stack_panel: T.STACK_PANEL - "storage_bar_label_stack_panel/text_left": T.LABEL - "storage_bar_label_stack_panel/padding": T.PANEL - "storage_bar_label_stack_panel/text_right": T.LABEL - storage_bar_panel_with_header: T.STACK_PANEL - "storage_bar_panel_with_header/label_panel": T.PANEL - "storage_bar_panel_with_header/label_panel/heading_label": T.UNKNOWN - "storage_bar_panel_with_header/padding2": T.PANEL - "storage_bar_panel_with_header/storage_bar_panel": T.STACK_PANEL - realm_storage_heading_label: T.LABEL - storage_bar_panel: T.STACK_PANEL - "storage_bar_panel/storage_bar_label": T.STACK_PANEL - "storage_bar_panel/padding": T.PANEL - "storage_bar_panel/storage_bar": T.PANEL - storage_bar_panel_with_tts_focus_border: T.PANEL - "storage_bar_panel_with_tts_focus_border/storage_bar_panel": T.STACK_PANEL - "storage_bar_panel_with_tts_focus_border/focus_border": T.BUTTON - storage_bar: T.PANEL - "storage_bar/empty_progress_bar_beveled": T.IMAGE - "storage_bar/storage_fill": T.IMAGE - "storage_bar/storage_bar_beveled_overlay": T.IMAGE - active_world_info_panel: T.PANEL - "active_world_info_panel/active_world_info_label_stack_panel": T.STACK_PANEL - "active_world_info_panel/active_world_info_label_stack_panel/active_world_name_label": T.LABEL - "active_world_info_panel/active_world_info_label_stack_panel/active_world_size_label": T.LABEL - "active_world_info_panel/focus_border": T.BUTTON - warning_text_panel: T.STACK_PANEL - "warning_text_panel/warning_panel": T.STACK_PANEL - "warning_text_panel/warning_panel/padding1": T.PANEL - "warning_text_panel/warning_panel/warning_image": T.IMAGE - "warning_text_panel/warning_panel/padding2": T.PANEL - "warning_text_panel/padding1": T.PANEL - "warning_text_panel/text_label": T.LABEL - popup_dialog_background: T.IMAGE - popup_dialog_label: T.LABEL - delete_selected_saves_button: T.BUTTON - cancel_popup_button: T.BUTTON - free_up_space_popup_content: T.PANEL - "free_up_space_popup_content/common_panel": T.PANEL - "free_up_space_popup_content/title_label": T.PANEL - "free_up_space_popup_content/panel_indent": T.PANEL - "free_up_space_popup_content/panel_indent/inside_header_panel": T.UNKNOWN - "free_up_space_popup_content/button_panel": T.STACK_PANEL - "free_up_space_popup_content/button_panel/left_button_panel": T.BUTTON - "free_up_space_popup_content/button_panel/pad": T.PANEL - "free_up_space_popup_content/button_panel/right_button_panel": T.BUTTON - free_up_space_popup_scrolling_panel: T.PANEL - free_up_space_text_description: T.LABEL - free_up_space_popup_content_stack_panel: T.STACK_PANEL - "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel": T.PANEL - "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/free_up_space_storage_bar_panel": T.STACK_PANEL - "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/focus_border": T.BUTTON - "free_up_space_popup_content_stack_panel/padding_1": T.PANEL - "free_up_space_popup_content_stack_panel/free_up_space_manual_save_list_stack_panel": T.STACK_PANEL - popup_dialog__free_up_space: T.INPUT_PANEL - "popup_dialog__free_up_space/free_up_space_popup_background": T.IMAGE - "popup_dialog__free_up_space/free_up_space_popup_content": T.PANEL - top_tab: T.PANEL - tab_content: T.PANEL - "tab_content/text": T.LABEL - manual_navigation_tab: T.PANEL - automatic_navigation_tab: T.PANEL - tab_navigation_panel_layout: T.PANEL - "tab_navigation_panel_layout/content": T.UNKNOWN - button_tabs_container: T.STACK_PANEL - "button_tabs_container/manual_navigation_tab": T.PANEL - "button_tabs_container/automatic_navigation_tab": T.PANEL - tab_content_panel: T.IMAGE - "tab_content_panel/background": T.IMAGE - "tab_content_panel/background/manual_save_list": T.PANEL - "tab_content_panel/background/automatic_save_list": T.PANEL - save_list_panel: T.PANEL - "save_list_panel/save_list": T.UNKNOWN - manual_save_list_panel: T.PANEL - manual_tab_info_panel: T.PANEL - "manual_tab_info_panel/info_label": T.LABEL - manual_save_list_stack_panel: T.STACK_PANEL - "manual_save_list_stack_panel/padding1": T.PANEL - "manual_save_list_stack_panel/save_tab_info_label": T.PANEL - "manual_save_list_stack_panel/padding2": T.PANEL - "manual_save_list_stack_panel/stack_panel": T.STACK_PANEL - "manual_save_list_stack_panel/padding3": T.PANEL - automatic_save_list_panel: T.PANEL - automatic_tab_info_panel: T.PANEL - "automatic_tab_info_panel/info_label": T.LABEL - automatic_save_list_stack_panel: T.STACK_PANEL - "automatic_save_list_stack_panel/padding1": T.PANEL - "automatic_save_list_stack_panel/save_tab_info_label": T.PANEL - "automatic_save_list_stack_panel/padding2": T.PANEL - "automatic_save_list_stack_panel/stack_panel": T.STACK_PANEL - "automatic_save_list_stack_panel/padding3": T.PANEL - options_icon: T.IMAGE - saves_info_accordian: T.STACK_PANEL - "saves_info_accordian/main_content_panel": T.STACK_PANEL - "saves_info_accordian/main_content_panel/checkbox_button": T.BUTTON - "saves_info_accordian/main_content_panel/main_item_toggle": T.PANEL - "saves_info_accordian/main_content_panel/options_button": T.BUTTON - "saves_info_accordian/sub_content_panel": T.PANEL - "saves_info_accordian/sub_content_panel/saves_content": T.PANEL - saves_info_accordion_checkbox: T.PANEL - "saves_info_accordion_checkbox/unchecked_control": T.UNKNOWN - "saves_info_accordion_checkbox/checked_control": T.UNKNOWN - "saves_info_accordion_checkbox/unchecked_hover_control": T.UNKNOWN - "saves_info_accordion_checkbox/checked__hover_control": T.UNKNOWN - main_item_content: T.STACK_PANEL - "main_item_content/date_and_name": T.PANEL - "main_item_content/date_and_name/date_saved_label": T.LABEL - "main_item_content/date_and_name/world_name_label": T.LABEL - "main_item_content/time_and_size": T.PANEL - "main_item_content/time_and_size/save_data_time_label": T.LABEL - "main_item_content/time_and_size/save_data_size_label": T.LABEL - "main_item_content/padding_left_down_icon": T.PANEL - "main_item_content/down_icon": T.PANEL - "main_item_content/down_icon/options_icon": T.IMAGE - "main_item_content/padding_right_down_icon": T.PANEL - option_saves_info_label: T.PANEL - saves_info_container: T.IMAGE - "saves_info_container/saves_info_content": T.STACK_PANEL - saves_info_content: T.STACK_PANEL - "saves_info_content/version_panel": T.PANEL - "saves_info_content/pack_header_panel": T.PANEL - "saves_info_content/world_packs_label": T.LABEL - version_panel: T.PANEL - "version_panel/left_content": T.STACK_PANEL - "version_panel/left_content/save_version_label": T.LABEL - pack_header_panel: T.PANEL - "pack_header_panel/left_content": T.STACK_PANEL - "pack_header_panel/left_content/packs_label": T.LABEL - label_text: T.LABEL - branch_grid_item_content: T.STACK_PANEL - "branch_grid_item_content/branch_text": T.LABEL - "branch_grid_item_content/commit_text": T.LABEL - matching_item_button_content: T.STACK_PANEL - "matching_item_button_content/branch_text": T.LABEL - "matching_item_button_content/commit_text": T.LABEL - branch_item_template: T.PANEL - "branch_item_template/branch_item_button": T.BUTTON - branches_grid: T.GRID - branch_set_panel: T.STACK_PANEL - "branch_set_panel/set_branch_id_label": T.LABEL - version_filter_text_box: T.EDIT_BOX - branch_page_panel: T.PANEL - "branch_page_panel/prev_button": T.BUTTON - "branch_page_panel/page_text": T.LABEL - "branch_page_panel/next_button": T.BUTTON - branches_panel: T.STACK_PANEL - "branches_panel/branch_label": T.LABEL - "branches_panel/spacing_gap_1": T.PANEL - "branches_panel/set_branch_version_label": T.LABEL - "branches_panel/branch_set_panel": T.STACK_PANEL - "branches_panel/spacing_gap_2": T.PANEL - "branches_panel/matching_version_label": T.LABEL - "branches_panel/matching_item_button": T.BUTTON - "branches_panel/spacing_gap_3": T.PANEL - "branches_panel/all_commits_label": T.LABEL - "branches_panel/version_filter_text_box": T.EDIT_BOX - "branches_panel/branches_grid": T.GRID - "branches_panel/spacing_gap": T.PANEL - "branches_panel/branch_page_panel": T.PANEL - branch_section: T.STACK_PANEL - "branch_section/branches_panel": T.STACK_PANEL - popup_dialog__backups: T.INPUT_PANEL - "popup_dialog__backups/transparent_close_button": T.BUTTON - "popup_dialog__backups/backup_restore_popup_content": T.PANEL - backup_restore_popup_content: T.PANEL - "backup_restore_popup_content/popup_dialog_bg": T.IMAGE - "backup_restore_popup_content/backup_restore_popup_dialog_header": T.PANEL - "backup_restore_popup_content/backup_restore_popup_dialog_body": T.PANEL - backup_restore_popup_dialog_header: T.PANEL - "backup_restore_popup_dialog_header/backup_restore_popup_dialog_header_text": T.LABEL - backup_restore_popup_dialog_header_text: T.LABEL - backup_restore_popup_dialog_body: T.PANEL - "backup_restore_popup_dialog_body/backup_restore_loading_panel": T.IMAGE - backup_restore_loading_panel: T.IMAGE - "backup_restore_loading_panel/backup_restore_loading_stack_panel": T.STACK_PANEL - backup_restore_loading_stack_panel: T.STACK_PANEL - "backup_restore_loading_stack_panel/padding": T.PANEL - "backup_restore_loading_stack_panel/backup_restore_text_panel": T.PANEL - "backup_restore_loading_stack_panel/backup_restore_loading_bar_panel": T.PANEL - "backup_restore_loading_stack_panel/padding2": T.PANEL - backup_restore_text_panel: T.PANEL - "backup_restore_text_panel/loading_text": T.LABEL - backup_restore_loading_bar_panel: T.PANEL - "backup_restore_loading_bar_panel/progress_loading_bars": T.IMAGE - backup_replace_icon: T.IMAGE - backup_download_icon: T.IMAGE - backup_grid_item_content: T.STACK_PANEL - "backup_grid_item_content/backup_grid_item_icon_panel": T.PANEL - "backup_grid_item_content/backup_grid_item_name_and_time_since": T.STACK_PANEL - "backup_grid_item_content/backup_grid_item_date_and_time": T.STACK_PANEL - "backup_grid_item_content/spacing_gap": T.PANEL - backup_grid_item_name_and_time_since: T.STACK_PANEL - "backup_grid_item_name_and_time_since/date_text": T.LABEL - "backup_grid_item_name_and_time_since/spacing_gap": T.PANEL - "backup_grid_item_name_and_time_since/version_text": T.LABEL - backup_grid_item_date_and_time: T.STACK_PANEL - "backup_grid_item_date_and_time/time_text": T.LABEL - "backup_grid_item_date_and_time/spacing_gap": T.PANEL - "backup_grid_item_date_and_time/size_text": T.LABEL - backup_grid_item_icon_panel: T.PANEL - "backup_grid_item_icon_panel/backup_replace_icon": T.IMAGE - backup_item_template: T.STACK_PANEL - "backup_item_template/backup_item_button": T.BUTTON - "backup_item_template/download_backup_panel": T.PANEL - "backup_item_template/download_backup_panel/download_backup_button": T.BUTTON - download_backup_button: T.BUTTON - backup_grid: T.GRID - backup_section: T.STACK_PANEL - "backup_section/backup_panel": T.STACK_PANEL - backup_info_label: T.PANEL - backup_network_error_label: T.PANEL - backup_panel: T.STACK_PANEL - "backup_panel/spacing_gap": T.PANEL - "backup_panel/backup_info_label": T.PANEL - "backup_panel/spacing_gap2": T.PANEL - "backup_panel/progress_panel": T.PANEL - "backup_panel/progress_panel/progress_loading_bars": T.IMAGE - "backup_panel/backup_grid": T.GRID - "backup_panel/backup_network_error_label": T.PANEL - test_content: T.PANEL - "test_content/realms_allowlist_content_panel": T.PANEL - "test_content/gamepad_helpers": T.UNKNOWN - selector_panel: T.STACK_PANEL - "selector_panel/play_button": T.BUTTON - "selector_panel/disabled_play_button": T.BUTTON - "selector_panel/expired_play_button": T.BUTTON - "selector_panel/padding": T.PANEL - "selector_panel/selector_group_label": T.LABEL - "selector_panel/world_button": T.PANEL - "selector_panel/members_button": T.PANEL - "selector_panel/saves_button": T.PANEL - "selector_panel/subscription_button": T.PANEL - "selector_panel/backup_button": T.PANEL - "selector_panel/dev_options_button": T.PANEL - "selector_panel/invite_links_button": T.PANEL - "selector_panel/advanced_button": T.PANEL - section_content_panels: T.PANEL - "section_content_panels/world_section": T.PANEL - "section_content_panels/players_section": T.PANEL - "section_content_panels/subscription_section": T.PANEL - "section_content_panels/invite_links_section": T.PANEL - "section_content_panels/advanced_section": T.PANEL - "section_content_panels/dev_options_section": T.PANEL - "section_content_panels/backup_section": T.PANEL - "section_content_panels/saves_section": T.PANEL - popup_dialog__save_options: T.INPUT_PANEL - save_options_popup_content: T.STACK_PANEL - "save_options_popup_content/restore_button": T.BUTTON - "save_options_popup_content/spacing_1": T.PANEL - "save_options_popup_content/download_button": T.BUTTON - "save_options_popup_content/spacing_2": T.PANEL - "save_options_popup_content/save_button_container": T.STACK_PANEL - "save_options_popup_content/save_button_container/save_button": T.BUTTON - "save_options_popup_content/save_button_container/spacing_3": T.PANEL - "save_options_popup_content/delete_button_container": T.STACK_PANEL - "save_options_popup_content/delete_button_container/delete_button": T.BUTTON - standalone_dialog_title: T.STACK_PANEL - "standalone_dialog_title/left_padding": T.PANEL - "standalone_dialog_title/dialog_title_label": T.LABEL - "standalone_dialog_title/right_padding": T.PANEL - standalone_dialog_content: T.PANEL - "standalone_dialog_content/dialog_title": T.STACK_PANEL - "standalone_dialog_content/content_area": T.PANEL - standalone_content_area: T.PANEL - "standalone_content_area/control": T.STACK_PANEL - "standalone_content_area/control/scrolling_panel": T.PANEL - realms_settings_screen_base_no_selector_area: T.SCREEN - screen_realm_hub_manage_members: T.SCREEN - screen_realm_hub_invite_links: T.SCREEN + "settings_screen": T.SCREEN, + "generic_section": T.STACK_PANEL, + "generic_section_wrapper": T.PANEL, + "generic_section_wrapper/generic_section": T.STACK_PANEL, + "checkbox_image": T.IMAGE, + "checkbox_unchecked_state": T.IMAGE, + "checkbox_checked_state": T.IMAGE, + "checkbox_unchecked_hover_state": T.IMAGE, + "checkbox_checked_hover_state": T.IMAGE, + "checkbox_unchecked_locked_state": T.IMAGE, + "checkbox_checked_locked_state": T.IMAGE, + "player_count_label": T.PANEL, + "realm_duration_label": T.PANEL, + "realm_subscription_origin_label": T.IMAGE, + "realm_consumable_to_subscription_info_label": T.PANEL, + "manage_subscriptions_button": T.BUTTON, + "delete_realm_button": T.BUTTON, + "open_realm_button": T.BUTTON, + "close_realm_button": T.BUTTON, + "subscriptions_section": T.PANEL, + "subscriptions_section/loading_view": T.LABEL, + "subscriptions_section/loading_failed_view": T.LABEL, + "subscriptions_section/loaded_view": T.STACK_PANEL, + "subscriptions_section/loaded_view/player_count_label": T.PANEL, + "subscriptions_section/loaded_view/realm_duration_label": T.PANEL, + "subscriptions_section/loaded_view/possible_store_mismatch": T.PANEL, + "subscriptions_section/loaded_view/realm_subscription_origin_label": T.IMAGE, + "subscriptions_section/loaded_view/realm_consumable_to_subscription_info_label": T.PANEL, + "subscriptions_section/loaded_view/_0": T.PANEL, + "subscriptions_section/loaded_view/delete_realm_button": T.BUTTON, + "subscriptions_section/loaded_view/open_realm_button": T.BUTTON, + "subscriptions_section/loaded_view/close_realm_button": T.BUTTON, + "subscriptions_section/loaded_view/_1": T.PANEL, + "subscriptions_section/loaded_view/manage_subscriptions_button": T.BUTTON, + "invite_link_item_content": T.STACK_PANEL, + "invite_link_item_content/invite_link_item_name_and_expiry_text": T.STACK_PANEL, + "invite_link_item_content/invite_link_item_name_and_expiry_text/name_text": T.LABEL, + "invite_link_item_content/invite_link_item_name_and_expiry_text/spacing_gap": T.PANEL, + "invite_link_item_content/invite_link_item_name_and_expiry_text/expiry_text": T.LABEL, + "invite_link_item_content/invite_link_item_state_text": T.PANEL, + "invite_link_item_content/invite_link_item_state_text/state_text": T.LABEL, + "invite_link_item_content/spacing_gap": T.PANEL, + "invite_link_item_template": T.PANEL, + "invite_link_item_template/invite_link_item_button": T.BUTTON, + "invite_links_section": T.PANEL, + "invite_links_section/loading_view": T.LABEL, + "invite_links_section/loading_failed_view": T.LABEL, + "invite_links_section/loaded_view": T.STACK_PANEL, + "invite_links_section/loaded_view/spacing_gap_0": T.PANEL, + "invite_links_section/loaded_view/invite_links_info": T.PANEL, + "invite_links_section/loaded_view/invite_links_grid": T.STACK_PANEL, + "invite_links_section/loaded_view/spacing_gap_1": T.PANEL, + "invite_links_section/loaded_view/add_invite_link_button": T.BUTTON, + "advanced_section": T.PANEL, + "advanced_section/loading_view": T.LABEL, + "advanced_section/loading_failed_view": T.LABEL, + "advanced_section/loaded_view": T.STACK_PANEL, + "advanced_section/loaded_view/spacing_gap_0": T.PANEL, + "advanced_section/loaded_view/server_preference": T.PANEL, + "advanced_section/loaded_view/set_region_content": T.PANEL, + "advanced_section/loaded_view/changes_not_applied_panel": T.STACK_PANEL, + "advanced_section/loaded_view/changes_not_applied_panel/changes_not_applied_label": T.LABEL, + "advanced_section/loaded_view/spacing_gap_1": T.PANEL, + "advanced_section/loaded_view/region_help_button": T.BUTTON, + "set_region_dropdown": T.PANEL, + "region_dropdown_content": T.PANEL, + "region_dropdown_radio": T.PANEL, + "region_help_button_content": T.STACK_PANEL, + "region_help_button_content/external_link_icon": T.IMAGE, + "region_help_button_content/spacing_gap_1": T.PANEL, + "region_help_button_content/help_text": T.LABEL, + "tts_focus_border": T.BUTTON, + "saves_section": T.STACK_PANEL, + "saves_section/padding_saves_section_top": T.PANEL, + "saves_section/loaded_view": T.STACK_PANEL, + "saves_section/loaded_view/storage_bar_header_panel": T.PANEL, + "saves_section/loaded_view/storage_bar_header_panel/storage_bar_with_header": T.STACK_PANEL, + "saves_section/loaded_view/storage_bar_header_panel/focus_border": T.BUTTON, + "saves_section/loaded_view/padding3": T.PANEL, + "saves_section/loaded_view/save_active_world_button": T.BUTTON, + "saves_section/loaded_view/padding4": T.PANEL, + "saves_section/loaded_view/active_world_info": T.PANEL, + "saves_section/loaded_view/padding5": T.PANEL, + "saves_section/loaded_view/storage_warning": T.PANEL, + "saves_section/loaded_view/storage_warning/warning_text_panel": T.STACK_PANEL, + "saves_section/loaded_view/storage_warning/focus_border": T.BUTTON, + "saves_section/loaded_view/padding6": T.PANEL, + "saves_section/loaded_view/save_list_container": T.PANEL, + "saves_section/loaded_view/save_list_container/tab_buttons": T.STACK_PANEL, + "saves_section/loaded_view/save_list_container/tab_content_panel": T.IMAGE, + "saves_section/loaded_view/padding_loaded_view_bottom": T.PANEL, + "saves_section/loaded_view/restore_info": T.PANEL, + "saves_section/loaded_view/saves_help_panel": T.STACK_PANEL, + "saves_section/loading_indicator": T.STACK_PANEL, + "saves_section/loading_indicator/restore_info": T.PANEL, + "saves_section/loading_indicator/loading_text_panel": T.PANEL, + "saves_section/loading_indicator/loading_text_panel/loading_text": T.LABEL, + "saves_section/loading_indicator/loading_text_panel/loading_text_padding": T.PANEL, + "saves_section/loading_indicator/loading_bars": T.PANEL, + "saves_section/loading_indicator/loading_bars/progress_loading_bars": T.IMAGE, + "saves_section/loading_failed_panel": T.STACK_PANEL, + "saves_section/loading_failed_panel/restore_info": T.PANEL, + "saves_section/loading_failed_panel/saves_help_panel": T.STACK_PANEL, + "saves_section/loading_failed_panel/loading_failed_message": T.PANEL, + "saves_help_panel": T.STACK_PANEL, + "saves_help_panel/padding_help_button_top": T.PANEL, + "saves_help_panel/saves_help_button": T.BUTTON, + "saves_help_panel/padding_help_button_bottom": T.PANEL, + "saves_help_button_content": T.STACK_PANEL, + "saves_help_button_content/external_link_icon": T.IMAGE, + "saves_help_button_content/spacing_gap_1": T.PANEL, + "saves_help_button_content/help_text": T.LABEL, + "storage_bar_label_stack_panel": T.STACK_PANEL, + "storage_bar_label_stack_panel/text_left": T.LABEL, + "storage_bar_label_stack_panel/padding": T.PANEL, + "storage_bar_label_stack_panel/text_right": T.LABEL, + "storage_bar_panel_with_header": T.STACK_PANEL, + "storage_bar_panel_with_header/label_panel": T.PANEL, + "storage_bar_panel_with_header/label_panel/heading_label": T.UNKNOWN, + "storage_bar_panel_with_header/padding2": T.PANEL, + "storage_bar_panel_with_header/storage_bar_panel": T.STACK_PANEL, + "realm_storage_heading_label": T.LABEL, + "storage_bar_panel": T.STACK_PANEL, + "storage_bar_panel/storage_bar_label": T.STACK_PANEL, + "storage_bar_panel/padding": T.PANEL, + "storage_bar_panel/storage_bar": T.PANEL, + "storage_bar_panel_with_tts_focus_border": T.PANEL, + "storage_bar_panel_with_tts_focus_border/storage_bar_panel": T.STACK_PANEL, + "storage_bar_panel_with_tts_focus_border/focus_border": T.BUTTON, + "storage_bar": T.PANEL, + "storage_bar/empty_progress_bar_beveled": T.IMAGE, + "storage_bar/storage_fill": T.IMAGE, + "storage_bar/storage_bar_beveled_overlay": T.IMAGE, + "active_world_info_panel": T.PANEL, + "active_world_info_panel/active_world_info_label_stack_panel": T.STACK_PANEL, + "active_world_info_panel/active_world_info_label_stack_panel/active_world_name_label": T.LABEL, + "active_world_info_panel/active_world_info_label_stack_panel/active_world_size_label": T.LABEL, + "active_world_info_panel/focus_border": T.BUTTON, + "warning_text_panel": T.STACK_PANEL, + "warning_text_panel/warning_panel": T.STACK_PANEL, + "warning_text_panel/warning_panel/padding1": T.PANEL, + "warning_text_panel/warning_panel/warning_image": T.IMAGE, + "warning_text_panel/warning_panel/padding2": T.PANEL, + "warning_text_panel/padding1": T.PANEL, + "warning_text_panel/text_label": T.LABEL, + "popup_dialog_background": T.IMAGE, + "popup_dialog_label": T.LABEL, + "delete_selected_saves_button": T.BUTTON, + "cancel_popup_button": T.BUTTON, + "free_up_space_popup_content": T.PANEL, + "free_up_space_popup_content/common_panel": T.PANEL, + "free_up_space_popup_content/title_label": T.PANEL, + "free_up_space_popup_content/panel_indent": T.PANEL, + "free_up_space_popup_content/panel_indent/inside_header_panel": T.UNKNOWN, + "free_up_space_popup_content/button_panel": T.STACK_PANEL, + "free_up_space_popup_content/button_panel/left_button_panel": T.BUTTON, + "free_up_space_popup_content/button_panel/pad": T.PANEL, + "free_up_space_popup_content/button_panel/right_button_panel": T.BUTTON, + "free_up_space_popup_scrolling_panel": T.PANEL, + "free_up_space_text_description": T.LABEL, + "free_up_space_popup_content_stack_panel": T.STACK_PANEL, + "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel": T.PANEL, + "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/free_up_space_storage_bar_panel": T.STACK_PANEL, + "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/focus_border": T.BUTTON, + "free_up_space_popup_content_stack_panel/padding_1": T.PANEL, + "free_up_space_popup_content_stack_panel/free_up_space_manual_save_list_stack_panel": T.STACK_PANEL, + "popup_dialog__free_up_space": T.INPUT_PANEL, + "popup_dialog__free_up_space/free_up_space_popup_background": T.IMAGE, + "popup_dialog__free_up_space/free_up_space_popup_content": T.PANEL, + "top_tab": T.PANEL, + "tab_content": T.PANEL, + "tab_content/text": T.LABEL, + "manual_navigation_tab": T.PANEL, + "automatic_navigation_tab": T.PANEL, + "tab_navigation_panel_layout": T.PANEL, + "tab_navigation_panel_layout/content": T.UNKNOWN, + "button_tabs_container": T.STACK_PANEL, + "button_tabs_container/manual_navigation_tab": T.PANEL, + "button_tabs_container/automatic_navigation_tab": T.PANEL, + "tab_content_panel": T.IMAGE, + "tab_content_panel/background": T.IMAGE, + "tab_content_panel/background/manual_save_list": T.PANEL, + "tab_content_panel/background/automatic_save_list": T.PANEL, + "save_list_panel": T.PANEL, + "save_list_panel/save_list": T.UNKNOWN, + "manual_save_list_panel": T.PANEL, + "manual_tab_info_panel": T.PANEL, + "manual_tab_info_panel/info_label": T.LABEL, + "manual_save_list_stack_panel": T.STACK_PANEL, + "manual_save_list_stack_panel/padding1": T.PANEL, + "manual_save_list_stack_panel/save_tab_info_label": T.PANEL, + "manual_save_list_stack_panel/padding2": T.PANEL, + "manual_save_list_stack_panel/stack_panel": T.STACK_PANEL, + "manual_save_list_stack_panel/padding3": T.PANEL, + "automatic_save_list_panel": T.PANEL, + "automatic_tab_info_panel": T.PANEL, + "automatic_tab_info_panel/info_label": T.LABEL, + "automatic_save_list_stack_panel": T.STACK_PANEL, + "automatic_save_list_stack_panel/padding1": T.PANEL, + "automatic_save_list_stack_panel/save_tab_info_label": T.PANEL, + "automatic_save_list_stack_panel/padding2": T.PANEL, + "automatic_save_list_stack_panel/stack_panel": T.STACK_PANEL, + "automatic_save_list_stack_panel/padding3": T.PANEL, + "options_icon": T.IMAGE, + "saves_info_accordian": T.STACK_PANEL, + "saves_info_accordian/main_content_panel": T.STACK_PANEL, + "saves_info_accordian/main_content_panel/checkbox_button": T.BUTTON, + "saves_info_accordian/main_content_panel/main_item_toggle": T.PANEL, + "saves_info_accordian/main_content_panel/options_button": T.BUTTON, + "saves_info_accordian/sub_content_panel": T.PANEL, + "saves_info_accordian/sub_content_panel/saves_content": T.PANEL, + "saves_info_accordion_checkbox": T.PANEL, + "saves_info_accordion_checkbox/unchecked_control": T.UNKNOWN, + "saves_info_accordion_checkbox/checked_control": T.UNKNOWN, + "saves_info_accordion_checkbox/unchecked_hover_control": T.UNKNOWN, + "saves_info_accordion_checkbox/checked__hover_control": T.UNKNOWN, + "main_item_content": T.STACK_PANEL, + "main_item_content/date_and_name": T.PANEL, + "main_item_content/date_and_name/date_saved_label": T.LABEL, + "main_item_content/date_and_name/world_name_label": T.LABEL, + "main_item_content/time_and_size": T.PANEL, + "main_item_content/time_and_size/save_data_time_label": T.LABEL, + "main_item_content/time_and_size/save_data_size_label": T.LABEL, + "main_item_content/padding_left_down_icon": T.PANEL, + "main_item_content/down_icon": T.PANEL, + "main_item_content/down_icon/options_icon": T.IMAGE, + "main_item_content/padding_right_down_icon": T.PANEL, + "option_saves_info_label": T.PANEL, + "saves_info_container": T.IMAGE, + "saves_info_container/saves_info_content": T.STACK_PANEL, + "saves_info_content": T.STACK_PANEL, + "saves_info_content/version_panel": T.PANEL, + "saves_info_content/pack_header_panel": T.PANEL, + "saves_info_content/world_packs_label": T.LABEL, + "version_panel": T.PANEL, + "version_panel/left_content": T.STACK_PANEL, + "version_panel/left_content/save_version_label": T.LABEL, + "pack_header_panel": T.PANEL, + "pack_header_panel/left_content": T.STACK_PANEL, + "pack_header_panel/left_content/packs_label": T.LABEL, + "label_text": T.LABEL, + "branch_grid_item_content": T.STACK_PANEL, + "branch_grid_item_content/branch_text": T.LABEL, + "branch_grid_item_content/commit_text": T.LABEL, + "matching_item_button_content": T.STACK_PANEL, + "matching_item_button_content/branch_text": T.LABEL, + "matching_item_button_content/commit_text": T.LABEL, + "branch_item_template": T.PANEL, + "branch_item_template/branch_item_button": T.BUTTON, + "branches_grid": T.GRID, + "branch_set_panel": T.STACK_PANEL, + "branch_set_panel/set_branch_id_label": T.LABEL, + "version_filter_text_box": T.EDIT_BOX, + "branch_page_panel": T.PANEL, + "branch_page_panel/prev_button": T.BUTTON, + "branch_page_panel/page_text": T.LABEL, + "branch_page_panel/next_button": T.BUTTON, + "branches_panel": T.STACK_PANEL, + "branches_panel/branch_label": T.LABEL, + "branches_panel/spacing_gap_1": T.PANEL, + "branches_panel/set_branch_version_label": T.LABEL, + "branches_panel/branch_set_panel": T.STACK_PANEL, + "branches_panel/spacing_gap_2": T.PANEL, + "branches_panel/matching_version_label": T.LABEL, + "branches_panel/matching_item_button": T.BUTTON, + "branches_panel/spacing_gap_3": T.PANEL, + "branches_panel/all_commits_label": T.LABEL, + "branches_panel/version_filter_text_box": T.EDIT_BOX, + "branches_panel/branches_grid": T.GRID, + "branches_panel/spacing_gap": T.PANEL, + "branches_panel/branch_page_panel": T.PANEL, + "branch_section": T.STACK_PANEL, + "branch_section/branches_panel": T.STACK_PANEL, + "popup_dialog__backups": T.INPUT_PANEL, + "popup_dialog__backups/transparent_close_button": T.BUTTON, + "popup_dialog__backups/backup_restore_popup_content": T.PANEL, + "backup_restore_popup_content": T.PANEL, + "backup_restore_popup_content/popup_dialog_bg": T.IMAGE, + "backup_restore_popup_content/backup_restore_popup_dialog_header": T.PANEL, + "backup_restore_popup_content/backup_restore_popup_dialog_body": T.PANEL, + "backup_restore_popup_dialog_header": T.PANEL, + "backup_restore_popup_dialog_header/backup_restore_popup_dialog_header_text": T.LABEL, + "backup_restore_popup_dialog_header_text": T.LABEL, + "backup_restore_popup_dialog_body": T.PANEL, + "backup_restore_popup_dialog_body/backup_restore_loading_panel": T.IMAGE, + "backup_restore_loading_panel": T.IMAGE, + "backup_restore_loading_panel/backup_restore_loading_stack_panel": T.STACK_PANEL, + "backup_restore_loading_stack_panel": T.STACK_PANEL, + "backup_restore_loading_stack_panel/padding": T.PANEL, + "backup_restore_loading_stack_panel/backup_restore_text_panel": T.PANEL, + "backup_restore_loading_stack_panel/backup_restore_loading_bar_panel": T.PANEL, + "backup_restore_loading_stack_panel/padding2": T.PANEL, + "backup_restore_text_panel": T.PANEL, + "backup_restore_text_panel/loading_text": T.LABEL, + "backup_restore_loading_bar_panel": T.PANEL, + "backup_restore_loading_bar_panel/progress_loading_bars": T.IMAGE, + "backup_replace_icon": T.IMAGE, + "backup_download_icon": T.IMAGE, + "backup_grid_item_content": T.STACK_PANEL, + "backup_grid_item_content/backup_grid_item_icon_panel": T.PANEL, + "backup_grid_item_content/backup_grid_item_name_and_time_since": T.STACK_PANEL, + "backup_grid_item_content/backup_grid_item_date_and_time": T.STACK_PANEL, + "backup_grid_item_content/spacing_gap": T.PANEL, + "backup_grid_item_name_and_time_since": T.STACK_PANEL, + "backup_grid_item_name_and_time_since/date_text": T.LABEL, + "backup_grid_item_name_and_time_since/spacing_gap": T.PANEL, + "backup_grid_item_name_and_time_since/version_text": T.LABEL, + "backup_grid_item_date_and_time": T.STACK_PANEL, + "backup_grid_item_date_and_time/time_text": T.LABEL, + "backup_grid_item_date_and_time/spacing_gap": T.PANEL, + "backup_grid_item_date_and_time/size_text": T.LABEL, + "backup_grid_item_icon_panel": T.PANEL, + "backup_grid_item_icon_panel/backup_replace_icon": T.IMAGE, + "backup_item_template": T.STACK_PANEL, + "backup_item_template/backup_item_button": T.BUTTON, + "backup_item_template/download_backup_panel": T.PANEL, + "backup_item_template/download_backup_panel/download_backup_button": T.BUTTON, + "download_backup_button": T.BUTTON, + "backup_grid": T.GRID, + "backup_section": T.STACK_PANEL, + "backup_section/backup_panel": T.STACK_PANEL, + "backup_info_label": T.PANEL, + "backup_network_error_label": T.PANEL, + "backup_panel": T.STACK_PANEL, + "backup_panel/spacing_gap": T.PANEL, + "backup_panel/backup_info_label": T.PANEL, + "backup_panel/spacing_gap2": T.PANEL, + "backup_panel/progress_panel": T.PANEL, + "backup_panel/progress_panel/progress_loading_bars": T.IMAGE, + "backup_panel/backup_grid": T.GRID, + "backup_panel/backup_network_error_label": T.PANEL, + "test_content": T.PANEL, + "test_content/realms_allowlist_content_panel": T.PANEL, + "test_content/gamepad_helpers": T.UNKNOWN, + "selector_panel": T.STACK_PANEL, + "selector_panel/play_button": T.BUTTON, + "selector_panel/disabled_play_button": T.BUTTON, + "selector_panel/expired_play_button": T.BUTTON, + "selector_panel/padding": T.PANEL, + "selector_panel/selector_group_label": T.LABEL, + "selector_panel/world_button": T.PANEL, + "selector_panel/members_button": T.PANEL, + "selector_panel/saves_button": T.PANEL, + "selector_panel/subscription_button": T.PANEL, + "selector_panel/backup_button": T.PANEL, + "selector_panel/dev_options_button": T.PANEL, + "selector_panel/invite_links_button": T.PANEL, + "selector_panel/advanced_button": T.PANEL, + "section_content_panels": T.PANEL, + "section_content_panels/world_section": T.PANEL, + "section_content_panels/players_section": T.PANEL, + "section_content_panels/subscription_section": T.PANEL, + "section_content_panels/invite_links_section": T.PANEL, + "section_content_panels/advanced_section": T.PANEL, + "section_content_panels/dev_options_section": T.PANEL, + "section_content_panels/backup_section": T.PANEL, + "section_content_panels/saves_section": T.PANEL, + "popup_dialog__save_options": T.INPUT_PANEL, + "save_options_popup_content": T.STACK_PANEL, + "save_options_popup_content/restore_button": T.BUTTON, + "save_options_popup_content/spacing_1": T.PANEL, + "save_options_popup_content/download_button": T.BUTTON, + "save_options_popup_content/spacing_2": T.PANEL, + "save_options_popup_content/save_button_container": T.STACK_PANEL, + "save_options_popup_content/save_button_container/save_button": T.BUTTON, + "save_options_popup_content/save_button_container/spacing_3": T.PANEL, + "save_options_popup_content/delete_button_container": T.STACK_PANEL, + "save_options_popup_content/delete_button_container/delete_button": T.BUTTON, + "standalone_dialog_title": T.STACK_PANEL, + "standalone_dialog_title/left_padding": T.PANEL, + "standalone_dialog_title/dialog_title_label": T.LABEL, + "standalone_dialog_title/right_padding": T.PANEL, + "standalone_dialog_content": T.PANEL, + "standalone_dialog_content/dialog_title": T.STACK_PANEL, + "standalone_dialog_content/content_area": T.PANEL, + "standalone_content_area": T.PANEL, + "standalone_content_area/control": T.STACK_PANEL, + "standalone_content_area/control/scrolling_panel": T.PANEL, + "realms_settings_screen_base_no_selector_area": T.SCREEN, + "screen_realm_hub_manage_members": T.SCREEN, + "screen_realm_hub_invite_links": T.SCREEN, } export type RealmsAllowlistType = { - spacing_gap: T.PANEL - friends_containing_panel: T.PANEL - "friends_containing_panel/friends_panel": T.STACK_PANEL - friends_panel: T.STACK_PANEL - "friends_panel/add_friends_and_invite_link_panel": T.PANEL - "friends_panel/option_dropdown_permissions": T.PANEL - "friends_panel/player_filter_label": T.PANEL - "friends_panel/player_filter_text_box": T.EDIT_BOX - "friends_panel/spacing_gap_members_top": T.PANEL - "friends_panel/lists": T.STACK_PANEL - "friends_panel/lists/members_label": T.STACK_PANEL - "friends_panel/lists/members_stack": T.STACK_PANEL - "friends_panel/lists/spacing_gap_members_bottom": T.PANEL - "friends_panel/lists/members_page_panel": T.PANEL - "friends_panel/lists/invited_friends_label": T.PANEL - "friends_panel/lists/invited_stack": T.STACK_PANEL - "friends_panel/lists/spacing_gap_invited_friends": T.PANEL - "friends_panel/lists/invited_friends_page_panel": T.PANEL - "friends_panel/lists/uninvited_friends_label": T.PANEL - "friends_panel/lists/uninvited_stack": T.STACK_PANEL - "friends_panel/lists/spacing_gap_uninvited_friends": T.PANEL - "friends_panel/lists/uninvited_friends_page_panel": T.PANEL - "friends_panel/lists/blocked_players_label": T.PANEL - "friends_panel/lists/blocked_players_stack": T.STACK_PANEL - "friends_panel/lists/spacing_gap_blocked_players": T.PANEL - "friends_panel/lists/blocked_players_page_panel": T.PANEL - "friends_panel/lists/no_invites_label": T.LABEL - "friends_panel/loading_friends": T.LABEL - add_friends_and_invite_link_panel: T.PANEL - "add_friends_and_invite_link_panel/allowlist_stack_panel": T.STACK_PANEL - "add_friends_and_invite_link_panel/allowlist_stack_panel/find_friends_button_panel": T.PANEL - "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_1": T.PANEL - "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel": T.PANEL - "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel/invite_links_button": T.BUTTON - "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_2": T.PANEL - "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel": T.PANEL - "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel/clear_members_button": T.BUTTON - options_icon: T.IMAGE - account_link_image: T.IMAGE - account_link_icon: T.STACK_PANEL - "account_link_icon/space_01": T.PANEL - "account_link_icon/account_link_image": T.IMAGE - "account_link_icon/space_03": T.PANEL - find_friends_button_panel: T.PANEL - "find_friends_button_panel/find_friends_button": T.BUTTON - invited_friends_label: T.PANEL - "invited_friends_label/friend_title": T.LABEL - player_filter_label: T.PANEL - "player_filter_label/player_filter_title": T.LABEL - members_label: T.STACK_PANEL - "members_label/friend_title": T.LABEL - "members_label/padding_panel": T.PANEL - "members_label/loading_text": T.LABEL - blocked_players_label: T.PANEL - "blocked_players_label/friend_title": T.LABEL - uninvited_friends_label: T.PANEL - "uninvited_friends_label/friend_title": T.LABEL - no_invites_label: T.LABEL - loading_friends: T.LABEL - blocked_grid_item: T.PANEL - "blocked_grid_item/blocked_panel": T.IMAGE - factory_stack: T.STACK_PANEL - member_factory_xbl_profile: T.STACK_PANEL - member_factory_linked_account: T.STACK_PANEL - invited_factory_xbl_profile: T.STACK_PANEL - invited_factory_linked_account: T.STACK_PANEL - uninvited_factory_xbl_profile: T.STACK_PANEL - uninvited_factory_linked_account: T.STACK_PANEL - blocked_factory_xbl_profile: T.STACK_PANEL - blocked_factory_linked_account: T.STACK_PANEL - xbl_profile_panel_factory: T.STACK_PANEL - xbl_profile_blocked_panel_factory: T.STACK_PANEL - linked_account_panel_factory: T.STACK_PANEL - linked_account_blocked_panel_factory: T.STACK_PANEL - xbl_profile_panel: T.IMAGE - "xbl_profile_panel/player_status_panel": T.PANEL - "xbl_profile_panel/xbl_user_panel": T.STACK_PANEL - "xbl_profile_panel/right_controls_panel": T.PANEL - "xbl_profile_panel/progress": T.IMAGE - factory_gap_template: T.STACK_PANEL - "factory_gap_template/gapped_control": T.UNKNOWN - "factory_gap_template/spacing1": T.PANEL - gapped_xbl_profile_panel: T.STACK_PANEL - gapped_linked_account_panel: T.STACK_PANEL - gapped_blocked_xbl_profile_panel: T.STACK_PANEL - gapped_blocked_linked_account_panel: T.STACK_PANEL - blocked_panel: T.IMAGE - "blocked_panel/xbl_user_panel": T.STACK_PANEL - "blocked_panel/unblock_button": T.BUTTON - linked_account_panel: T.IMAGE - "linked_account_panel/linked_account_positioning_panel": T.STACK_PANEL - "linked_account_panel/right_controls_panel": T.PANEL - "linked_account_panel/progress": T.IMAGE - linked_account_blocked_panel: T.IMAGE - "linked_account_blocked_panel/linked_account_positioning_panel": T.STACK_PANEL - "linked_account_blocked_panel/unblock_button": T.BUTTON - "linked_account_blocked_panel/progress": T.IMAGE - xbl_user_panel: T.STACK_PANEL - "xbl_user_panel/spacing1": T.PANEL - "xbl_user_panel/platform_icon_positioner": T.PANEL - "xbl_user_panel/gamerpic_panel": T.PANEL - "xbl_user_panel/spacing2": T.PANEL - "xbl_user_panel/gamertag_label_panel": T.PANEL - third_party_user_panel: T.STACK_PANEL - "third_party_user_panel/spacing1": T.PANEL - "third_party_user_panel/profile_picture": T.PANEL - "third_party_user_panel/spacing2": T.PANEL - "third_party_user_panel/third_party_profile_label": T.PANEL - linked_profile_pictures_panel: T.STACK_PANEL - "linked_profile_pictures_panel/pp2": T.PANEL - "linked_profile_pictures_panel/account_link": T.STACK_PANEL - "linked_profile_pictures_panel/pp1": T.PANEL - platform_profile_names: T.STACK_PANEL - "platform_profile_names/friend_grid_third_party_tag": T.PANEL - "platform_profile_names/spacer_02": T.PANEL - "platform_profile_names/friend_grid_xbl_gamertag": T.PANEL - "platform_profile_names/spacer_03": T.PANEL - linked_user_stack_panel: T.STACK_PANEL - "linked_user_stack_panel/allow_offset_control": T.PANEL - "linked_user_stack_panel/allow_offset_control/player_status_panel": T.PANEL - "linked_user_stack_panel/platform_icon_positioner": T.PANEL - "linked_user_stack_panel/platform_icon_positioner/platform_icon": T.PANEL - "linked_user_stack_panel/spacing1": T.PANEL - "linked_user_stack_panel/profile_picture": T.STACK_PANEL - "linked_user_stack_panel/spacing2": T.PANEL - "linked_user_stack_panel/platform_names_label": T.STACK_PANEL - "linked_user_stack_panel/spacing3": T.PANEL - horizontal_indent: T.PANEL - vertical_indent: T.PANEL - gamerpic_panel: T.PANEL - "gamerpic_panel/black_border": T.IMAGE - "gamerpic_panel/gamer_pic": T.CUSTOM - third_party_profile_pic_panel: T.PANEL - "third_party_profile_pic_panel/black_border": T.IMAGE - "third_party_profile_pic_panel/third_party_profile_picture": T.IMAGE - gamertag_label_panel: T.PANEL - "gamertag_label_panel/gamertag_label": T.LABEL - "gamertag_label_panel/real_name_label": T.LABEL - third_party_profile_label: T.PANEL - "third_party_profile_label/profile_name_label": T.LABEL - panel_text: T.LABEL - gamertag_label: T.LABEL - third_party_profile_name_label: T.LABEL - real_name_label: T.LABEL - right_settings_panel: T.STACK_PANEL - "right_settings_panel/member_settings": T.STACK_PANEL - member_settings: T.STACK_PANEL - "member_settings/minus_button": T.BUTTON - "member_settings/horizontal_space": T.PANEL - "member_settings/member_permissions": T.STACK_PANEL - "member_settings/op_deop_button": T.PANEL - right_controls_panel: T.PANEL - "right_controls_panel/right_settings_panel": T.STACK_PANEL - "right_controls_panel/uninvited_friends_invite_button": T.BUTTON - player_status_panel: T.PANEL - "player_status_panel/player_online_icon": T.IMAGE - "player_status_panel/player_offline_icon": T.IMAGE - permissions_dropdown: T.STACK_PANEL - "permissions_dropdown/vertical_space": T.PANEL - "permissions_dropdown/option_dropdown_permissions": T.PANEL - invite_button: T.BUTTON - minus_button: T.BUTTON - unblock_label: T.LABEL - unblock_button: T.BUTTON - op_deop_button: T.PANEL - find_friends_button: T.BUTTON - black_border: T.IMAGE - gamer_pic: T.CUSTOM - third_party_profile_picture: T.IMAGE - player_online_icon: T.IMAGE - player_offline_icon: T.IMAGE - plus_icon: T.IMAGE - more_icon: T.IMAGE - share_icon: T.IMAGE - minus_icon: T.IMAGE - op_icon: T.IMAGE - deop_icon: T.IMAGE - player_filter_text_box: T.EDIT_BOX - page_panel: T.PANEL - "page_panel/prev_button": T.BUTTON - "page_panel/page_text": T.LABEL - "page_panel/next_button": T.BUTTON - realms_allowlist_panel_content: T.PANEL - realms_allowlist_content_panel: T.PANEL - realms_allowlist_content_panel_children: T.PANEL - "realms_allowlist_content_panel_children/realms_allowlist_panel_content": T.PANEL - "realms_allowlist_content_panel_children/done_button": T.BUTTON - realms_allowlist_screen: T.SCREEN - realms_allowlist_content: T.PANEL - "realms_allowlist_content/root_panel": T.INPUT_PANEL - "realms_allowlist_content/root_panel/realms_allowlist_content_panel": T.PANEL - transparent_close_button: T.BUTTON + "spacing_gap": T.PANEL, + "friends_containing_panel": T.PANEL, + "friends_containing_panel/friends_panel": T.STACK_PANEL, + "friends_panel": T.STACK_PANEL, + "friends_panel/add_friends_and_invite_link_panel": T.PANEL, + "friends_panel/option_dropdown_permissions": T.PANEL, + "friends_panel/player_filter_label": T.PANEL, + "friends_panel/player_filter_text_box": T.EDIT_BOX, + "friends_panel/spacing_gap_members_top": T.PANEL, + "friends_panel/lists": T.STACK_PANEL, + "friends_panel/lists/members_label": T.STACK_PANEL, + "friends_panel/lists/members_stack": T.STACK_PANEL, + "friends_panel/lists/spacing_gap_members_bottom": T.PANEL, + "friends_panel/lists/members_page_panel": T.PANEL, + "friends_panel/lists/invited_friends_label": T.PANEL, + "friends_panel/lists/invited_stack": T.STACK_PANEL, + "friends_panel/lists/spacing_gap_invited_friends": T.PANEL, + "friends_panel/lists/invited_friends_page_panel": T.PANEL, + "friends_panel/lists/uninvited_friends_label": T.PANEL, + "friends_panel/lists/uninvited_stack": T.STACK_PANEL, + "friends_panel/lists/spacing_gap_uninvited_friends": T.PANEL, + "friends_panel/lists/uninvited_friends_page_panel": T.PANEL, + "friends_panel/lists/blocked_players_label": T.PANEL, + "friends_panel/lists/blocked_players_stack": T.STACK_PANEL, + "friends_panel/lists/spacing_gap_blocked_players": T.PANEL, + "friends_panel/lists/blocked_players_page_panel": T.PANEL, + "friends_panel/lists/no_invites_label": T.LABEL, + "friends_panel/loading_friends": T.LABEL, + "add_friends_and_invite_link_panel": T.PANEL, + "add_friends_and_invite_link_panel/allowlist_stack_panel": T.STACK_PANEL, + "add_friends_and_invite_link_panel/allowlist_stack_panel/find_friends_button_panel": T.PANEL, + "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_1": T.PANEL, + "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel": T.PANEL, + "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel/invite_links_button": T.BUTTON, + "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_2": T.PANEL, + "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel": T.PANEL, + "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel/clear_members_button": T.BUTTON, + "options_icon": T.IMAGE, + "account_link_image": T.IMAGE, + "account_link_icon": T.STACK_PANEL, + "account_link_icon/space_01": T.PANEL, + "account_link_icon/account_link_image": T.IMAGE, + "account_link_icon/space_03": T.PANEL, + "find_friends_button_panel": T.PANEL, + "find_friends_button_panel/find_friends_button": T.BUTTON, + "invited_friends_label": T.PANEL, + "invited_friends_label/friend_title": T.LABEL, + "player_filter_label": T.PANEL, + "player_filter_label/player_filter_title": T.LABEL, + "members_label": T.STACK_PANEL, + "members_label/friend_title": T.LABEL, + "members_label/padding_panel": T.PANEL, + "members_label/loading_text": T.LABEL, + "blocked_players_label": T.PANEL, + "blocked_players_label/friend_title": T.LABEL, + "uninvited_friends_label": T.PANEL, + "uninvited_friends_label/friend_title": T.LABEL, + "no_invites_label": T.LABEL, + "loading_friends": T.LABEL, + "blocked_grid_item": T.PANEL, + "blocked_grid_item/blocked_panel": T.IMAGE, + "factory_stack": T.STACK_PANEL, + "member_factory_xbl_profile": T.STACK_PANEL, + "member_factory_linked_account": T.STACK_PANEL, + "invited_factory_xbl_profile": T.STACK_PANEL, + "invited_factory_linked_account": T.STACK_PANEL, + "uninvited_factory_xbl_profile": T.STACK_PANEL, + "uninvited_factory_linked_account": T.STACK_PANEL, + "blocked_factory_xbl_profile": T.STACK_PANEL, + "blocked_factory_linked_account": T.STACK_PANEL, + "xbl_profile_panel_factory": T.STACK_PANEL, + "xbl_profile_blocked_panel_factory": T.STACK_PANEL, + "linked_account_panel_factory": T.STACK_PANEL, + "linked_account_blocked_panel_factory": T.STACK_PANEL, + "xbl_profile_panel": T.IMAGE, + "xbl_profile_panel/player_status_panel": T.PANEL, + "xbl_profile_panel/xbl_user_panel": T.STACK_PANEL, + "xbl_profile_panel/right_controls_panel": T.PANEL, + "xbl_profile_panel/progress": T.IMAGE, + "factory_gap_template": T.STACK_PANEL, + "factory_gap_template/gapped_control": T.UNKNOWN, + "factory_gap_template/spacing1": T.PANEL, + "gapped_xbl_profile_panel": T.STACK_PANEL, + "gapped_linked_account_panel": T.STACK_PANEL, + "gapped_blocked_xbl_profile_panel": T.STACK_PANEL, + "gapped_blocked_linked_account_panel": T.STACK_PANEL, + "blocked_panel": T.IMAGE, + "blocked_panel/xbl_user_panel": T.STACK_PANEL, + "blocked_panel/unblock_button": T.BUTTON, + "linked_account_panel": T.IMAGE, + "linked_account_panel/linked_account_positioning_panel": T.STACK_PANEL, + "linked_account_panel/right_controls_panel": T.PANEL, + "linked_account_panel/progress": T.IMAGE, + "linked_account_blocked_panel": T.IMAGE, + "linked_account_blocked_panel/linked_account_positioning_panel": T.STACK_PANEL, + "linked_account_blocked_panel/unblock_button": T.BUTTON, + "linked_account_blocked_panel/progress": T.IMAGE, + "xbl_user_panel": T.STACK_PANEL, + "xbl_user_panel/spacing1": T.PANEL, + "xbl_user_panel/platform_icon_positioner": T.PANEL, + "xbl_user_panel/gamerpic_panel": T.PANEL, + "xbl_user_panel/spacing2": T.PANEL, + "xbl_user_panel/gamertag_label_panel": T.PANEL, + "third_party_user_panel": T.STACK_PANEL, + "third_party_user_panel/spacing1": T.PANEL, + "third_party_user_panel/profile_picture": T.PANEL, + "third_party_user_panel/spacing2": T.PANEL, + "third_party_user_panel/third_party_profile_label": T.PANEL, + "linked_profile_pictures_panel": T.STACK_PANEL, + "linked_profile_pictures_panel/pp2": T.PANEL, + "linked_profile_pictures_panel/account_link": T.STACK_PANEL, + "linked_profile_pictures_panel/pp1": T.PANEL, + "platform_profile_names": T.STACK_PANEL, + "platform_profile_names/friend_grid_third_party_tag": T.PANEL, + "platform_profile_names/spacer_02": T.PANEL, + "platform_profile_names/friend_grid_xbl_gamertag": T.PANEL, + "platform_profile_names/spacer_03": T.PANEL, + "linked_user_stack_panel": T.STACK_PANEL, + "linked_user_stack_panel/allow_offset_control": T.PANEL, + "linked_user_stack_panel/allow_offset_control/player_status_panel": T.PANEL, + "linked_user_stack_panel/platform_icon_positioner": T.PANEL, + "linked_user_stack_panel/platform_icon_positioner/platform_icon": T.PANEL, + "linked_user_stack_panel/spacing1": T.PANEL, + "linked_user_stack_panel/profile_picture": T.STACK_PANEL, + "linked_user_stack_panel/spacing2": T.PANEL, + "linked_user_stack_panel/platform_names_label": T.STACK_PANEL, + "linked_user_stack_panel/spacing3": T.PANEL, + "horizontal_indent": T.PANEL, + "vertical_indent": T.PANEL, + "gamerpic_panel": T.PANEL, + "gamerpic_panel/black_border": T.IMAGE, + "gamerpic_panel/gamer_pic": T.CUSTOM, + "third_party_profile_pic_panel": T.PANEL, + "third_party_profile_pic_panel/black_border": T.IMAGE, + "third_party_profile_pic_panel/third_party_profile_picture": T.IMAGE, + "gamertag_label_panel": T.PANEL, + "gamertag_label_panel/gamertag_label": T.LABEL, + "gamertag_label_panel/real_name_label": T.LABEL, + "third_party_profile_label": T.PANEL, + "third_party_profile_label/profile_name_label": T.LABEL, + "panel_text": T.LABEL, + "gamertag_label": T.LABEL, + "third_party_profile_name_label": T.LABEL, + "real_name_label": T.LABEL, + "right_settings_panel": T.STACK_PANEL, + "right_settings_panel/member_settings": T.STACK_PANEL, + "member_settings": T.STACK_PANEL, + "member_settings/minus_button": T.BUTTON, + "member_settings/horizontal_space": T.PANEL, + "member_settings/member_permissions": T.STACK_PANEL, + "member_settings/op_deop_button": T.PANEL, + "right_controls_panel": T.PANEL, + "right_controls_panel/right_settings_panel": T.STACK_PANEL, + "right_controls_panel/uninvited_friends_invite_button": T.BUTTON, + "player_status_panel": T.PANEL, + "player_status_panel/player_online_icon": T.IMAGE, + "player_status_panel/player_offline_icon": T.IMAGE, + "permissions_dropdown": T.STACK_PANEL, + "permissions_dropdown/vertical_space": T.PANEL, + "permissions_dropdown/option_dropdown_permissions": T.PANEL, + "invite_button": T.BUTTON, + "minus_button": T.BUTTON, + "unblock_label": T.LABEL, + "unblock_button": T.BUTTON, + "op_deop_button": T.PANEL, + "find_friends_button": T.BUTTON, + "black_border": T.IMAGE, + "gamer_pic": T.CUSTOM, + "third_party_profile_picture": T.IMAGE, + "player_online_icon": T.IMAGE, + "player_offline_icon": T.IMAGE, + "plus_icon": T.IMAGE, + "more_icon": T.IMAGE, + "share_icon": T.IMAGE, + "minus_icon": T.IMAGE, + "op_icon": T.IMAGE, + "deop_icon": T.IMAGE, + "player_filter_text_box": T.EDIT_BOX, + "page_panel": T.PANEL, + "page_panel/prev_button": T.BUTTON, + "page_panel/page_text": T.LABEL, + "page_panel/next_button": T.BUTTON, + "realms_allowlist_panel_content": T.PANEL, + "realms_allowlist_content_panel": T.PANEL, + "realms_allowlist_content_panel_children": T.PANEL, + "realms_allowlist_content_panel_children/realms_allowlist_panel_content": T.PANEL, + "realms_allowlist_content_panel_children/done_button": T.BUTTON, + "realms_allowlist_screen": T.SCREEN, + "realms_allowlist_content": T.PANEL, + "realms_allowlist_content/root_panel": T.INPUT_PANEL, + "realms_allowlist_content/root_panel/realms_allowlist_content_panel": T.PANEL, + "transparent_close_button": T.BUTTON, } export type RealmsInviteLinkSettingsType = { - generic_section_wrapper: T.PANEL - "generic_section_wrapper/generic_section": T.STACK_PANEL - link_banner: T.IMAGE - clipboard_icon: T.IMAGE - description_wrap: T.PANEL - "description_wrap/description": T.LABEL - invite_link_url: T.LABEL - link_panel: T.IMAGE - "link_panel/invite_link_url_wrapper": T.PANEL - "link_panel/link_copy_container": T.PANEL - "link_panel/link_copy_container/link_copy": T.BUTTON - general_content: T.STACK_PANEL - "general_content/spacing_gap_0": T.PANEL - "general_content/invite_link_title": T.LABEL - "general_content/invite_link_description": T.PANEL - "general_content/spacing_gap_1": T.PANEL - "general_content/link_panel": T.IMAGE - "general_content/spacing_gap_2": T.PANEL - "general_content/activate_link_toggle": T.PANEL - "general_content/activate_link_description": T.PANEL - "general_content/spacing_gap_3": T.PANEL - "general_content/infinite_link_toggle": T.PANEL - "general_content/spacing_gap_4": T.PANEL - "general_content/share_link_title": T.LABEL - "general_content/share_link_description": T.PANEL - "general_content/spacing_gap_5": T.PANEL - "general_content/share_link_button": T.BUTTON - "general_content/spacing_gap_6": T.PANEL - "general_content/remove_link_title": T.LABEL - "general_content/remove_invite_link_button": T.BUTTON - invite_link_expiration: T.LABEL - advanced_content: T.STACK_PANEL - "advanced_content/spacing_gap_0": T.PANEL - "advanced_content/expiry_title": T.LABEL - "advanced_content/spacing_gap_1": T.PANEL - "advanced_content/expiration_description": T.PANEL - "advanced_content/spacing_gap_2": T.PANEL - "advanced_content/expiration_panel": T.IMAGE - "advanced_content/expiration_panel/invite_link_expiration_wrapper": T.PANEL - "advanced_content/expiration_dropdown": T.PANEL - expiration_dropdown_content: T.PANEL - selector_panel: T.STACK_PANEL - "selector_panel/spacing_gap_0": T.PANEL - "selector_panel/general_button": T.PANEL - "selector_panel/advanced_button": T.PANEL - section_content_panels: T.PANEL - "section_content_panels/general_section": T.PANEL - "section_content_panels/advanced_section": T.PANEL + "generic_section_wrapper": T.PANEL, + "generic_section_wrapper/generic_section": T.STACK_PANEL, + "link_banner": T.IMAGE, + "clipboard_icon": T.IMAGE, + "description_wrap": T.PANEL, + "description_wrap/description": T.LABEL, + "invite_link_url": T.LABEL, + "link_panel": T.IMAGE, + "link_panel/invite_link_url_wrapper": T.PANEL, + "link_panel/link_copy_container": T.PANEL, + "link_panel/link_copy_container/link_copy": T.BUTTON, + "general_content": T.STACK_PANEL, + "general_content/spacing_gap_0": T.PANEL, + "general_content/invite_link_title": T.LABEL, + "general_content/invite_link_description": T.PANEL, + "general_content/spacing_gap_1": T.PANEL, + "general_content/link_panel": T.IMAGE, + "general_content/spacing_gap_2": T.PANEL, + "general_content/activate_link_toggle": T.PANEL, + "general_content/activate_link_description": T.PANEL, + "general_content/spacing_gap_3": T.PANEL, + "general_content/infinite_link_toggle": T.PANEL, + "general_content/spacing_gap_4": T.PANEL, + "general_content/share_link_title": T.LABEL, + "general_content/share_link_description": T.PANEL, + "general_content/spacing_gap_5": T.PANEL, + "general_content/share_link_button": T.BUTTON, + "general_content/spacing_gap_6": T.PANEL, + "general_content/remove_link_title": T.LABEL, + "general_content/remove_invite_link_button": T.BUTTON, + "invite_link_expiration": T.LABEL, + "advanced_content": T.STACK_PANEL, + "advanced_content/spacing_gap_0": T.PANEL, + "advanced_content/expiry_title": T.LABEL, + "advanced_content/spacing_gap_1": T.PANEL, + "advanced_content/expiration_description": T.PANEL, + "advanced_content/spacing_gap_2": T.PANEL, + "advanced_content/expiration_panel": T.IMAGE, + "advanced_content/expiration_panel/invite_link_expiration_wrapper": T.PANEL, + "advanced_content/expiration_dropdown": T.PANEL, + "expiration_dropdown_content": T.PANEL, + "selector_panel": T.STACK_PANEL, + "selector_panel/spacing_gap_0": T.PANEL, + "selector_panel/general_button": T.PANEL, + "selector_panel/advanced_button": T.PANEL, + "section_content_panels": T.PANEL, + "section_content_panels/general_section": T.PANEL, + "section_content_panels/advanced_section": T.PANEL, } export type RealmsPlusEndedType = { - subscription_ended_screen: T.SCREEN - subscription_ended_screen_content: T.PANEL - "subscription_ended_screen_content/root_panel": T.PANEL - "subscription_ended_screen_content/root_panel/gamepad_helpers": T.PANEL - "subscription_ended_screen_content/root_panel/main_panel": T.INPUT_PANEL - main_panel: T.INPUT_PANEL - "main_panel/dialog": T.PANEL - gamepad_helpers: T.PANEL - "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL - content_stack_panel: T.STACK_PANEL - "content_stack_panel/pad_0": T.PANEL - "content_stack_panel/main_content": T.PANEL - "content_stack_panel/pad_1": T.PANEL - "content_stack_panel/button_center_panel": T.PANEL - "content_stack_panel/button_center_panel/buttons": T.STACK_PANEL - "content_stack_panel/pad_2": T.PANEL - main_content_panel: T.PANEL - "main_content_panel/main_content_stack_panel": T.STACK_PANEL - "main_content_panel/main_content_stack_panel/image_panel": T.PANEL - "main_content_panel/main_content_stack_panel/pad": T.PANEL - "main_content_panel/main_content_stack_panel/text_panel": T.PANEL - "main_content_panel/main_content_stack_panel/text_panel/text": T.LABEL - buttons_panel: T.STACK_PANEL - "buttons_panel/more_info_button": T.BUTTON - "buttons_panel/pad": T.PANEL - "buttons_panel/renew_subscription_button": T.BUTTON + "subscription_ended_screen": T.SCREEN, + "subscription_ended_screen_content": T.PANEL, + "subscription_ended_screen_content/root_panel": T.PANEL, + "subscription_ended_screen_content/root_panel/gamepad_helpers": T.PANEL, + "subscription_ended_screen_content/root_panel/main_panel": T.INPUT_PANEL, + "main_panel": T.INPUT_PANEL, + "main_panel/dialog": T.PANEL, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL, + "content_stack_panel": T.STACK_PANEL, + "content_stack_panel/pad_0": T.PANEL, + "content_stack_panel/main_content": T.PANEL, + "content_stack_panel/pad_1": T.PANEL, + "content_stack_panel/button_center_panel": T.PANEL, + "content_stack_panel/button_center_panel/buttons": T.STACK_PANEL, + "content_stack_panel/pad_2": T.PANEL, + "main_content_panel": T.PANEL, + "main_content_panel/main_content_stack_panel": T.STACK_PANEL, + "main_content_panel/main_content_stack_panel/image_panel": T.PANEL, + "main_content_panel/main_content_stack_panel/pad": T.PANEL, + "main_content_panel/main_content_stack_panel/text_panel": T.PANEL, + "main_content_panel/main_content_stack_panel/text_panel/text": T.LABEL, + "buttons_panel": T.STACK_PANEL, + "buttons_panel/more_info_button": T.BUTTON, + "buttons_panel/pad": T.PANEL, + "buttons_panel/renew_subscription_button": T.BUTTON, } export type RealmsPlusType = { - realms_plus_pdp_screen: T.SCREEN - realms_plus_upgrade_notice_screen: T.SCREEN - purple_background: T.IMAGE - "purple_background/bottom_left_particles": T.IMAGE - "purple_background/top_right_particles": T.IMAGE - main_background: T.PANEL - "main_background/dark_blue": T.IMAGE - "main_background/grey_gradient": T.IMAGE - dark_blue_background: T.IMAGE - gradient_image_stack: T.STACK_PANEL - "gradient_image_stack/solid_pink": T.IMAGE - "gradient_image_stack/gradient": T.IMAGE - gradient_content_panel: T.PANEL - "gradient_content_panel/gradient": T.STACK_PANEL - "gradient_content_panel/content_panel": T.UNKNOWN - realmsPlus_screen_main_panel: T.INPUT_PANEL - realmsPlus_main_panel: T.PANEL - "realmsPlus_main_panel/root_panel": T.PANEL - "realmsPlus_main_panel/root_panel/main_panel": T.STACK_PANEL - "realmsPlus_main_panel/popup_dialog_factory": T.FACTORY - dialog_content: T.PANEL - "dialog_content/selector_area": T.PANEL - "dialog_content/content_area": T.PANEL - "dialog_content/left_right_pane_divider": T.IMAGE - selector_area: T.PANEL - "selector_area/scrolling_panel": T.PANEL - scrollable_selector_area_content: T.STACK_PANEL - "scrollable_selector_area_content/realmsPlus_toggle": T.STACK_PANEL - "scrollable_selector_area_content/content_toggle": T.STACK_PANEL - "scrollable_selector_area_content/faq_toggle": T.STACK_PANEL - "scrollable_selector_area_content/toggle_section_divider": T.STACK_PANEL - "scrollable_selector_area_content/buy_now_toggle": T.STACK_PANEL - "scrollable_selector_area_content/xbl_btn_panel": T.PANEL - "scrollable_selector_area_content/xbl_btn_panel/xbl_btn": T.BUTTON - "scrollable_selector_area_content/focus_reset_input_panel": T.INPUT_PANEL - section_toggle_base: T.PANEL - tab_button_text: T.LABEL - toggle_base: T.STACK_PANEL - "toggle_base/toggle": T.PANEL - "toggle_base/padding": T.PANEL - realmsPlus_toggle: T.STACK_PANEL - content_toggle: T.STACK_PANEL - faq_toggle: T.STACK_PANEL - buy_now_toggle: T.STACK_PANEL - left_right_pane_divider: T.IMAGE - content_area: T.PANEL - "content_area/control": T.STACK_PANEL - "content_area/control/scrolling_panel": T.PANEL - section_content_panels: T.STACK_PANEL - content_section_top_padding: T.PANEL - section_base: T.STACK_PANEL - buy_now_content_section: T.STACK_PANEL - "buy_now_content_section/content_section_top_padding": T.PANEL - "buy_now_content_section/content": T.STACK_PANEL - markdown_background_animated: T.PANEL - "markdown_background_animated/realms_banner": T.STACK_PANEL - "markdown_background_animated/realms_plus_normal": T.IMAGE - "markdown_background_animated/realms_plus_hover": T.IMAGE - markdown_background: T.STACK_PANEL - "markdown_background/banner_panel": T.PANEL - "markdown_background/banner_panel/banner": T.IMAGE - "markdown_background/banner_panel/banner/banner_stack_panel": T.STACK_PANEL - "markdown_background/banner_panel/banner/banner_stack_panel/0": T.UNKNOWN - "markdown_background/triangle_panel": T.PANEL - "markdown_background/triangle_panel/triangle": T.IMAGE - empty_label: T.PANEL - full_width_section_divider: T.STACK_PANEL + "realms_plus_pdp_screen": T.SCREEN, + "realms_plus_upgrade_notice_screen": T.SCREEN, + "purple_background": T.IMAGE, + "purple_background/bottom_left_particles": T.IMAGE, + "purple_background/top_right_particles": T.IMAGE, + "main_background": T.PANEL, + "main_background/dark_blue": T.IMAGE, + "main_background/grey_gradient": T.IMAGE, + "dark_blue_background": T.IMAGE, + "gradient_image_stack": T.STACK_PANEL, + "gradient_image_stack/solid_pink": T.IMAGE, + "gradient_image_stack/gradient": T.IMAGE, + "gradient_content_panel": T.PANEL, + "gradient_content_panel/gradient": T.STACK_PANEL, + "gradient_content_panel/content_panel": T.UNKNOWN, + "realmsPlus_screen_main_panel": T.INPUT_PANEL, + "realmsPlus_main_panel": T.PANEL, + "realmsPlus_main_panel/root_panel": T.PANEL, + "realmsPlus_main_panel/root_panel/main_panel": T.STACK_PANEL, + "realmsPlus_main_panel/popup_dialog_factory": T.FACTORY, + "dialog_content": T.PANEL, + "dialog_content/selector_area": T.PANEL, + "dialog_content/content_area": T.PANEL, + "dialog_content/left_right_pane_divider": T.IMAGE, + "selector_area": T.PANEL, + "selector_area/scrolling_panel": T.PANEL, + "scrollable_selector_area_content": T.STACK_PANEL, + "scrollable_selector_area_content/realmsPlus_toggle": T.STACK_PANEL, + "scrollable_selector_area_content/content_toggle": T.STACK_PANEL, + "scrollable_selector_area_content/faq_toggle": T.STACK_PANEL, + "scrollable_selector_area_content/toggle_section_divider": T.STACK_PANEL, + "scrollable_selector_area_content/buy_now_toggle": T.STACK_PANEL, + "scrollable_selector_area_content/xbl_btn_panel": T.PANEL, + "scrollable_selector_area_content/xbl_btn_panel/xbl_btn": T.BUTTON, + "scrollable_selector_area_content/focus_reset_input_panel": T.INPUT_PANEL, + "section_toggle_base": T.PANEL, + "tab_button_text": T.LABEL, + "toggle_base": T.STACK_PANEL, + "toggle_base/toggle": T.PANEL, + "toggle_base/padding": T.PANEL, + "realmsPlus_toggle": T.STACK_PANEL, + "content_toggle": T.STACK_PANEL, + "faq_toggle": T.STACK_PANEL, + "buy_now_toggle": T.STACK_PANEL, + "left_right_pane_divider": T.IMAGE, + "content_area": T.PANEL, + "content_area/control": T.STACK_PANEL, + "content_area/control/scrolling_panel": T.PANEL, + "section_content_panels": T.STACK_PANEL, + "content_section_top_padding": T.PANEL, + "section_base": T.STACK_PANEL, + "buy_now_content_section": T.STACK_PANEL, + "buy_now_content_section/content_section_top_padding": T.PANEL, + "buy_now_content_section/content": T.STACK_PANEL, + "markdown_background_animated": T.PANEL, + "markdown_background_animated/realms_banner": T.STACK_PANEL, + "markdown_background_animated/realms_plus_normal": T.IMAGE, + "markdown_background_animated/realms_plus_hover": T.IMAGE, + "markdown_background": T.STACK_PANEL, + "markdown_background/banner_panel": T.PANEL, + "markdown_background/banner_panel/banner": T.IMAGE, + "markdown_background/banner_panel/banner/banner_stack_panel": T.STACK_PANEL, + "markdown_background/banner_panel/banner/banner_stack_panel/0": T.UNKNOWN, + "markdown_background/triangle_panel": T.PANEL, + "markdown_background/triangle_panel/triangle": T.IMAGE, + "empty_label": T.PANEL, + "full_width_section_divider": T.STACK_PANEL, } export type RealmsPlusContentType = { - realmsPlus_content_section: T.STACK_PANEL - "realmsPlus_content_section/content_section_top_padding": T.PANEL - "realmsPlus_content_section/content_sections": T.STACK_PANEL - "realmsPlus_content_section/content_section_bottom_padding": T.PANEL - content_pack_types_section: T.STACK_PANEL - "content_pack_types_section/includes_marketplace_pass_wrapper": T.PANEL - "content_pack_types_section/padding_contentSub": T.PANEL - "content_pack_types_section/pack_types_wrapper": T.PANEL - content_packs_included_section: T.STACK_PANEL - "content_packs_included_section/popular_packs": T.STACK_PANEL - "content_packs_included_section/section_divider": T.STACK_PANEL - persona_row: T.PANEL - "persona_row/persona": T.STACK_PANEL - worlds_row: T.STACK_PANEL - pack_types: T.STACK_PANEL - "pack_types/middle_row": T.PANEL - "pack_types/middle_row/worlds_contentSub": T.STACK_PANEL - "pack_types/middle_row/textures": T.STACK_PANEL - "pack_types/bottom_row": T.PANEL - "pack_types/bottom_row/skins_persona_contentSub": T.STACK_PANEL - "pack_types/bottom_row/mashups": T.STACK_PANEL - "pack_types/bottom_contentSub": T.PANEL - skins: T.STACK_PANEL - friends_get_access: T.LABEL - pack_type_row_panel: T.PANEL - pack_type_description: T.STACK_PANEL - "pack_type_description/image_nesting_panel": T.PANEL - "pack_type_description/image_nesting_panel/texture": T.UNKNOWN - "pack_type_description/padding_0": T.PANEL - "pack_type_description/description_nesting_panel": T.PANEL - "pack_type_description/description_nesting_panel/description_label": T.LABEL - popular_packs: T.STACK_PANEL - "popular_packs/padding_0": T.PANEL - "popular_packs/pack_grid": T.STACK_PANEL - "popular_packs/view_all_packs_panel": T.PANEL - "popular_packs/view_all_packs_panel/view_all_packs_button": T.BUTTON - "popular_packs/padding_1": T.PANEL - "popular_packs/view_character_creator_items_button": T.BUTTON - "popular_packs/padding_2": T.PANEL - popular_packs_label: T.LABEL - includes_marketplace_pass: T.PANEL - includes_marketplace_pass_label: T.LABEL - packs_collection: T.STACK_PANEL - "packs_collection/row_1": T.STACK_PANEL - "packs_collection/row_1/pack_image_grid_item_0": T.PANEL - "packs_collection/row_1/padding": T.PANEL - "packs_collection/row_1/pack_image_grid_item_1": T.PANEL - "packs_collection/padding_1": T.PANEL - "packs_collection/row_2": T.STACK_PANEL - "packs_collection/row_2/pack_image_grid_item_0": T.PANEL - "packs_collection/row_2/padding": T.PANEL - "packs_collection/row_2/pack_image_grid_item_1": T.PANEL - "packs_collection/padding_2": T.PANEL - pack_image_grid_item: T.PANEL - "pack_image_grid_item/bg": T.IMAGE - "pack_image_grid_item/bg/featured_key_art": T.IMAGE - "pack_image_grid_item/bg/progress_loading": T.PANEL - "pack_image_grid_item/offer_button": T.BUTTON - "pack_image_grid_item/offer_button/default": T.IMAGE - "pack_image_grid_item/offer_button/hover": T.IMAGE - "pack_image_grid_item/offer_button/pressed": T.IMAGE + "realmsPlus_content_section": T.STACK_PANEL, + "realmsPlus_content_section/content_section_top_padding": T.PANEL, + "realmsPlus_content_section/content_sections": T.STACK_PANEL, + "realmsPlus_content_section/content_section_bottom_padding": T.PANEL, + "content_pack_types_section": T.STACK_PANEL, + "content_pack_types_section/includes_marketplace_pass_wrapper": T.PANEL, + "content_pack_types_section/padding_contentSub": T.PANEL, + "content_pack_types_section/pack_types_wrapper": T.PANEL, + "content_packs_included_section": T.STACK_PANEL, + "content_packs_included_section/popular_packs": T.STACK_PANEL, + "content_packs_included_section/section_divider": T.STACK_PANEL, + "persona_row": T.PANEL, + "persona_row/persona": T.STACK_PANEL, + "worlds_row": T.STACK_PANEL, + "pack_types": T.STACK_PANEL, + "pack_types/middle_row": T.PANEL, + "pack_types/middle_row/worlds_contentSub": T.STACK_PANEL, + "pack_types/middle_row/textures": T.STACK_PANEL, + "pack_types/bottom_row": T.PANEL, + "pack_types/bottom_row/skins_persona_contentSub": T.STACK_PANEL, + "pack_types/bottom_row/mashups": T.STACK_PANEL, + "pack_types/bottom_contentSub": T.PANEL, + "skins": T.STACK_PANEL, + "friends_get_access": T.LABEL, + "pack_type_row_panel": T.PANEL, + "pack_type_description": T.STACK_PANEL, + "pack_type_description/image_nesting_panel": T.PANEL, + "pack_type_description/image_nesting_panel/texture": T.UNKNOWN, + "pack_type_description/padding_0": T.PANEL, + "pack_type_description/description_nesting_panel": T.PANEL, + "pack_type_description/description_nesting_panel/description_label": T.LABEL, + "popular_packs": T.STACK_PANEL, + "popular_packs/padding_0": T.PANEL, + "popular_packs/pack_grid": T.STACK_PANEL, + "popular_packs/view_all_packs_panel": T.PANEL, + "popular_packs/view_all_packs_panel/view_all_packs_button": T.BUTTON, + "popular_packs/padding_1": T.PANEL, + "popular_packs/view_character_creator_items_button": T.BUTTON, + "popular_packs/padding_2": T.PANEL, + "popular_packs_label": T.LABEL, + "includes_marketplace_pass": T.PANEL, + "includes_marketplace_pass_label": T.LABEL, + "packs_collection": T.STACK_PANEL, + "packs_collection/row_1": T.STACK_PANEL, + "packs_collection/row_1/pack_image_grid_item_0": T.PANEL, + "packs_collection/row_1/padding": T.PANEL, + "packs_collection/row_1/pack_image_grid_item_1": T.PANEL, + "packs_collection/padding_1": T.PANEL, + "packs_collection/row_2": T.STACK_PANEL, + "packs_collection/row_2/pack_image_grid_item_0": T.PANEL, + "packs_collection/row_2/padding": T.PANEL, + "packs_collection/row_2/pack_image_grid_item_1": T.PANEL, + "packs_collection/padding_2": T.PANEL, + "pack_image_grid_item": T.PANEL, + "pack_image_grid_item/bg": T.IMAGE, + "pack_image_grid_item/bg/featured_key_art": T.IMAGE, + "pack_image_grid_item/bg/progress_loading": T.PANEL, + "pack_image_grid_item/offer_button": T.BUTTON, + "pack_image_grid_item/offer_button/default": T.IMAGE, + "pack_image_grid_item/offer_button/hover": T.IMAGE, + "pack_image_grid_item/offer_button/pressed": T.IMAGE, } export type RealmsPlusFaqType = { - faq_image_section: T.PANEL - faq_image_local: T.IMAGE - faq_image_type: T.PANEL - "faq_image_type/0": T.UNKNOWN - faq_text_section_body: T.STACK_PANEL - faq_text_question: T.LABEL - faq_text_section: T.STACK_PANEL - "faq_text_section/faq_text_question": T.LABEL - "faq_text_section/faq_text_answer": T.LABEL - faq_price_bound_text_section: T.STACK_PANEL - "faq_price_bound_text_section/faq_text_question": T.LABEL - "faq_price_bound_text_section/faq_text_answer": T.LABEL - faq_question_body: T.STACK_PANEL - "faq_question_body/0": T.UNKNOWN - faq_question_body_stack: T.STACK_PANEL - faq_question_body_horz_padding: T.PANEL - image_left_faq_question_body: T.BUTTON - image_right_faq_question_body: T.BUTTON - image_left_faq_question_body_flip: T.PANEL - "image_left_faq_question_body_flip/faq_question_left": T.BUTTON - image_right_faq_question_body_flip: T.PANEL - "image_right_faq_question_body_flip/faq_question_right": T.BUTTON - image_left_faq_price_bound: T.BUTTON - faq_section_header_space: T.PANEL - faq_section_divider: T.STACK_PANEL - faq_content_section: T.STACK_PANEL - "faq_content_section/content_section_top_padding_1": T.PANEL - "faq_content_section/faq_header": T.LABEL - "faq_content_section/content_section_top_padding_2": T.PANEL - "faq_content_section/faq_question_1": T.BUTTON - "faq_content_section/faq_question_1_divider": T.STACK_PANEL - "faq_content_section/faq_question_2": T.BUTTON - "faq_content_section/faq_question_2_divider": T.STACK_PANEL - "faq_content_section/faq_question_3": T.BUTTON - "faq_content_section/faq_question_3_divider": T.STACK_PANEL - "faq_content_section/faq_question_4": T.BUTTON - "faq_content_section/faq_question_4_divider": T.STACK_PANEL - "faq_content_section/faq_question_5": T.PANEL - "faq_content_section/faq_question_5_divider": T.STACK_PANEL - "faq_content_section/faq_question_6": T.PANEL - "faq_content_section/faq_question_6_divider": T.STACK_PANEL - "faq_content_section/faq_question_7": T.PANEL - "faq_content_section/faq_question_7_divider": T.STACK_PANEL - "faq_content_section/faq_question_8": T.PANEL - "faq_content_section/faq_question_8_divider": T.STACK_PANEL - "faq_content_section/faq_question_9": T.PANEL - "faq_content_section/faq_question_9_divider": T.STACK_PANEL - "faq_content_section/faq_question_10": T.PANEL - "faq_content_section/faq_question_10_divider": T.STACK_PANEL - "faq_content_section/faq_question_11": T.PANEL - "faq_content_section/content_section_top_padding_3": T.PANEL + "faq_image_section": T.PANEL, + "faq_image_local": T.IMAGE, + "faq_image_type": T.PANEL, + "faq_image_type/0": T.UNKNOWN, + "faq_text_section_body": T.STACK_PANEL, + "faq_text_question": T.LABEL, + "faq_text_section": T.STACK_PANEL, + "faq_text_section/faq_text_question": T.LABEL, + "faq_text_section/faq_text_answer": T.LABEL, + "faq_price_bound_text_section": T.STACK_PANEL, + "faq_price_bound_text_section/faq_text_question": T.LABEL, + "faq_price_bound_text_section/faq_text_answer": T.LABEL, + "faq_question_body": T.STACK_PANEL, + "faq_question_body/0": T.UNKNOWN, + "faq_question_body_stack": T.STACK_PANEL, + "faq_question_body_horz_padding": T.PANEL, + "image_left_faq_question_body": T.BUTTON, + "image_right_faq_question_body": T.BUTTON, + "image_left_faq_question_body_flip": T.PANEL, + "image_left_faq_question_body_flip/faq_question_left": T.BUTTON, + "image_right_faq_question_body_flip": T.PANEL, + "image_right_faq_question_body_flip/faq_question_right": T.BUTTON, + "image_left_faq_price_bound": T.BUTTON, + "faq_section_header_space": T.PANEL, + "faq_section_divider": T.STACK_PANEL, + "faq_content_section": T.STACK_PANEL, + "faq_content_section/content_section_top_padding_1": T.PANEL, + "faq_content_section/faq_header": T.LABEL, + "faq_content_section/content_section_top_padding_2": T.PANEL, + "faq_content_section/faq_question_1": T.BUTTON, + "faq_content_section/faq_question_1_divider": T.STACK_PANEL, + "faq_content_section/faq_question_2": T.BUTTON, + "faq_content_section/faq_question_2_divider": T.STACK_PANEL, + "faq_content_section/faq_question_3": T.BUTTON, + "faq_content_section/faq_question_3_divider": T.STACK_PANEL, + "faq_content_section/faq_question_4": T.BUTTON, + "faq_content_section/faq_question_4_divider": T.STACK_PANEL, + "faq_content_section/faq_question_5": T.PANEL, + "faq_content_section/faq_question_5_divider": T.STACK_PANEL, + "faq_content_section/faq_question_6": T.PANEL, + "faq_content_section/faq_question_6_divider": T.STACK_PANEL, + "faq_content_section/faq_question_7": T.PANEL, + "faq_content_section/faq_question_7_divider": T.STACK_PANEL, + "faq_content_section/faq_question_8": T.PANEL, + "faq_content_section/faq_question_8_divider": T.STACK_PANEL, + "faq_content_section/faq_question_9": T.PANEL, + "faq_content_section/faq_question_9_divider": T.STACK_PANEL, + "faq_content_section/faq_question_10": T.PANEL, + "faq_content_section/faq_question_10_divider": T.STACK_PANEL, + "faq_content_section/faq_question_11": T.PANEL, + "faq_content_section/content_section_top_padding_3": T.PANEL, } export type RealmsPlusLandingType = { - landing_content_section: T.STACK_PANEL - "landing_content_section/landing_content": T.STACK_PANEL - "landing_content_section/landing_content/title_stack": T.STACK_PANEL - "landing_content_section/landing_content/vertical_small_spacer_0": T.PANEL - "landing_content_section/landing_content/divider_panel": T.PANEL - "landing_content_section/landing_content/divider_panel/section_divider": T.STACK_PANEL - "landing_content_section/landing_content/vertical_small_spacer_1": T.PANEL - "landing_content_section/landing_content/info_stack": T.STACK_PANEL - "landing_content_section/landing_content/vertical_small_spacer_2": T.PANEL - horizontal_small_spacer: T.PANEL - vertical_small_spacer: T.PANEL - vertical_med_spacer: T.PANEL - vertical_large_spacer: T.PANEL - title_stack: T.STACK_PANEL - "title_stack/title_image_panel": T.PANEL - "title_stack/gradient_panel": T.PANEL - "title_stack/gradient_panel/label_with_gradient_wrapper": T.PANEL - "title_stack/vertical_space": T.PANEL - "title_stack/action_button": T.PANEL - "title_stack/sign_in_button": T.PANEL - "title_stack/vertical_space2": T.PANEL - label_with_gradient: T.PANEL - free_trial_text: T.LABEL - title_image_panel: T.PANEL - "title_image_panel/title_image_container": T.STACK_PANEL - "title_image_panel/title_image_container/title_image": T.IMAGE - "title_image_panel/title_image_container/title_art_image": T.IMAGE - "title_image_panel/title_image_pre_release_container": T.PANEL - "title_image_panel/title_image_pre_release_container/title_image_pre_release": T.IMAGE - info_stack: T.STACK_PANEL - "info_stack/info_stack": T.PANEL - "info_stack/info_stack/info_description_stack_retail": T.STACK_PANEL - "info_stack/info_stack/info_description_stack_preview": T.PANEL - info_description_stack_retail: T.STACK_PANEL - "info_description_stack_retail/info_section_stack_1": T.STACK_PANEL - "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer": T.PANEL - "info_description_stack_retail/info_section_stack_1/info_section_text_1_wrapper": T.PANEL - "info_description_stack_retail/vertical_med_spacer0": T.PANEL - "info_description_stack_retail/divider_centering_panel": T.PANEL - "info_description_stack_retail/divider_centering_panel/divider": T.STACK_PANEL - "info_description_stack_retail/vertical_med_spacer1": T.PANEL - "info_description_stack_retail/info_section_stack_recently_added": T.STACK_PANEL - "info_description_stack_retail/info_section_stack_recently_added/horizontal_small_spacer": T.PANEL - "info_description_stack_retail/info_section_stack_recently_added/info_section_text_recently_added_wrapper": T.PANEL - "info_description_stack_retail/vertical_med_spacer2": T.PANEL - "info_description_stack_retail/divider_centering_panel2": T.PANEL - "info_description_stack_retail/divider_centering_panel2/divider2": T.STACK_PANEL - "info_description_stack_retail/vertical_med_spacer3": T.PANEL - "info_description_stack_retail/info_section_stack_2": T.STACK_PANEL - "info_description_stack_retail/info_section_stack_2/horizontal_small_spacer": T.PANEL - "info_description_stack_retail/info_section_stack_2/info_section_text_2_wrapper": T.PANEL - info_description_stack_prerelease: T.PANEL - "info_description_stack_prerelease/info_section_stack": T.STACK_PANEL - "info_description_stack_prerelease/info_section_stack/horizontal_large_spacer": T.PANEL - "info_description_stack_prerelease/info_section_stack/info_section_text_3_wrapper": T.PANEL - info_section_stack: T.STACK_PANEL - info_section_text_1: T.STACK_PANEL - "info_section_text_1/info_text_bullet_1": T.STACK_PANEL - "info_section_text_1/vertical_small_spacer_0": T.PANEL - "info_section_text_1/info_text_bullet_2": T.STACK_PANEL - "info_section_text_1/vertical_small_spacer_1": T.PANEL - "info_section_text_1/info_text_bullet_3": T.STACK_PANEL - info_section_text_recently_added: T.STACK_PANEL - "info_section_text_recently_added/recently_added_header": T.LABEL - "info_section_text_recently_added/info_text_bullet_contentSub": T.STACK_PANEL - "info_section_text_recently_added/info_text_bullet_contentSub/vertical_small_spacer_0": T.PANEL - "info_section_text_recently_added/info_text_bullet_contentSub/info_text_bullet_0": T.STACK_PANEL - "info_section_text_recently_added/vertical_small_spacer_1": T.PANEL - "info_section_text_recently_added/info_text_bullet_1": T.STACK_PANEL - "info_section_text_recently_added/vertical_small_spacer_2": T.PANEL - "info_section_text_recently_added/info_text_bullet_2": T.STACK_PANEL - info_section_text_2: T.STACK_PANEL - "info_section_text_2/info_text_bullet_2": T.STACK_PANEL - "info_section_text_2/vertical_small_spacer_0": T.PANEL - "info_section_text_2/info_text_bullet_3": T.STACK_PANEL - "info_section_text_2/vertical_small_spacer_1": T.PANEL - "info_section_text_2/info_text_bullet_4": T.STACK_PANEL - "info_section_text_2/info_text_bullet_notFreeTrial": T.STACK_PANEL - "info_section_text_2/info_text_bullet_notFreeTrial/vertical_small_spacer": T.PANEL - "info_section_text_2/info_text_bullet_notFreeTrial/info_text_bullet_4": T.STACK_PANEL - info_section_text_3: T.STACK_PANEL - "info_section_text_3/info_text_unbulletted_1": T.PANEL - "info_section_text_3/vertical_large_spacer_0": T.PANEL - "info_section_text_3/info_text_unbulletted_2": T.PANEL - "info_section_text_3/vertical_large_spacer_1": T.PANEL - "info_section_text_3/info_text_unbulletted_3": T.PANEL - "info_section_text_3/vertical_large_spacer_2": T.PANEL - "info_section_text_3/info_text_unbulletted_4": T.PANEL - info_section_text: T.STACK_PANEL - info_text_bullet: T.STACK_PANEL - "info_text_bullet/info_text_bullet_bullet": T.LABEL - "info_text_bullet/info_text_bullet_body": T.LABEL - info_text_unbulletted: T.PANEL - "info_text_unbulletted/info_text_bullet_body": T.LABEL + "landing_content_section": T.STACK_PANEL, + "landing_content_section/landing_content": T.STACK_PANEL, + "landing_content_section/landing_content/title_stack": T.STACK_PANEL, + "landing_content_section/landing_content/vertical_small_spacer_0": T.PANEL, + "landing_content_section/landing_content/divider_panel": T.PANEL, + "landing_content_section/landing_content/divider_panel/section_divider": T.STACK_PANEL, + "landing_content_section/landing_content/vertical_small_spacer_1": T.PANEL, + "landing_content_section/landing_content/info_stack": T.STACK_PANEL, + "landing_content_section/landing_content/vertical_small_spacer_2": T.PANEL, + "horizontal_small_spacer": T.PANEL, + "vertical_small_spacer": T.PANEL, + "vertical_med_spacer": T.PANEL, + "vertical_large_spacer": T.PANEL, + "title_stack": T.STACK_PANEL, + "title_stack/title_image_panel": T.PANEL, + "title_stack/gradient_panel": T.PANEL, + "title_stack/gradient_panel/label_with_gradient_wrapper": T.PANEL, + "title_stack/vertical_space": T.PANEL, + "title_stack/action_button": T.PANEL, + "title_stack/sign_in_button": T.PANEL, + "title_stack/vertical_space2": T.PANEL, + "label_with_gradient": T.PANEL, + "free_trial_text": T.LABEL, + "title_image_panel": T.PANEL, + "title_image_panel/title_image_container": T.STACK_PANEL, + "title_image_panel/title_image_container/title_image": T.IMAGE, + "title_image_panel/title_image_container/title_art_image": T.IMAGE, + "title_image_panel/title_image_pre_release_container": T.PANEL, + "title_image_panel/title_image_pre_release_container/title_image_pre_release": T.IMAGE, + "info_stack": T.STACK_PANEL, + "info_stack/info_stack": T.PANEL, + "info_stack/info_stack/info_description_stack_retail": T.STACK_PANEL, + "info_stack/info_stack/info_description_stack_preview": T.PANEL, + "info_description_stack_retail": T.STACK_PANEL, + "info_description_stack_retail/info_section_stack_1": T.STACK_PANEL, + "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer": T.PANEL, + "info_description_stack_retail/info_section_stack_1/info_section_text_1_wrapper": T.PANEL, + "info_description_stack_retail/vertical_med_spacer0": T.PANEL, + "info_description_stack_retail/divider_centering_panel": T.PANEL, + "info_description_stack_retail/divider_centering_panel/divider": T.STACK_PANEL, + "info_description_stack_retail/vertical_med_spacer1": T.PANEL, + "info_description_stack_retail/info_section_stack_recently_added": T.STACK_PANEL, + "info_description_stack_retail/info_section_stack_recently_added/horizontal_small_spacer": T.PANEL, + "info_description_stack_retail/info_section_stack_recently_added/info_section_text_recently_added_wrapper": T.PANEL, + "info_description_stack_retail/vertical_med_spacer2": T.PANEL, + "info_description_stack_retail/divider_centering_panel2": T.PANEL, + "info_description_stack_retail/divider_centering_panel2/divider2": T.STACK_PANEL, + "info_description_stack_retail/vertical_med_spacer3": T.PANEL, + "info_description_stack_retail/info_section_stack_2": T.STACK_PANEL, + "info_description_stack_retail/info_section_stack_2/horizontal_small_spacer": T.PANEL, + "info_description_stack_retail/info_section_stack_2/info_section_text_2_wrapper": T.PANEL, + "info_description_stack_prerelease": T.PANEL, + "info_description_stack_prerelease/info_section_stack": T.STACK_PANEL, + "info_description_stack_prerelease/info_section_stack/horizontal_large_spacer": T.PANEL, + "info_description_stack_prerelease/info_section_stack/info_section_text_3_wrapper": T.PANEL, + "info_section_stack": T.STACK_PANEL, + "info_section_text_1": T.STACK_PANEL, + "info_section_text_1/info_text_bullet_1": T.STACK_PANEL, + "info_section_text_1/vertical_small_spacer_0": T.PANEL, + "info_section_text_1/info_text_bullet_2": T.STACK_PANEL, + "info_section_text_1/vertical_small_spacer_1": T.PANEL, + "info_section_text_1/info_text_bullet_3": T.STACK_PANEL, + "info_section_text_recently_added": T.STACK_PANEL, + "info_section_text_recently_added/recently_added_header": T.LABEL, + "info_section_text_recently_added/info_text_bullet_contentSub": T.STACK_PANEL, + "info_section_text_recently_added/info_text_bullet_contentSub/vertical_small_spacer_0": T.PANEL, + "info_section_text_recently_added/info_text_bullet_contentSub/info_text_bullet_0": T.STACK_PANEL, + "info_section_text_recently_added/vertical_small_spacer_1": T.PANEL, + "info_section_text_recently_added/info_text_bullet_1": T.STACK_PANEL, + "info_section_text_recently_added/vertical_small_spacer_2": T.PANEL, + "info_section_text_recently_added/info_text_bullet_2": T.STACK_PANEL, + "info_section_text_2": T.STACK_PANEL, + "info_section_text_2/info_text_bullet_2": T.STACK_PANEL, + "info_section_text_2/vertical_small_spacer_0": T.PANEL, + "info_section_text_2/info_text_bullet_3": T.STACK_PANEL, + "info_section_text_2/vertical_small_spacer_1": T.PANEL, + "info_section_text_2/info_text_bullet_4": T.STACK_PANEL, + "info_section_text_2/info_text_bullet_notFreeTrial": T.STACK_PANEL, + "info_section_text_2/info_text_bullet_notFreeTrial/vertical_small_spacer": T.PANEL, + "info_section_text_2/info_text_bullet_notFreeTrial/info_text_bullet_4": T.STACK_PANEL, + "info_section_text_3": T.STACK_PANEL, + "info_section_text_3/info_text_unbulletted_1": T.PANEL, + "info_section_text_3/vertical_large_spacer_0": T.PANEL, + "info_section_text_3/info_text_unbulletted_2": T.PANEL, + "info_section_text_3/vertical_large_spacer_1": T.PANEL, + "info_section_text_3/info_text_unbulletted_3": T.PANEL, + "info_section_text_3/vertical_large_spacer_2": T.PANEL, + "info_section_text_3/info_text_unbulletted_4": T.PANEL, + "info_section_text": T.STACK_PANEL, + "info_text_bullet": T.STACK_PANEL, + "info_text_bullet/info_text_bullet_bullet": T.LABEL, + "info_text_bullet/info_text_bullet_body": T.LABEL, + "info_text_unbulletted": T.PANEL, + "info_text_unbulletted/info_text_bullet_body": T.LABEL, } export type RealmsPlusBuyType = { - buy_now_content: T.STACK_PANEL - "buy_now_content/description_stack": T.STACK_PANEL - "buy_now_content/realm_name": T.STACK_PANEL - "buy_now_content/terms_and_conditions": T.PANEL - "buy_now_content/padding_2": T.PANEL - "buy_now_content/buy_button": T.PANEL - "buy_now_content/padding_3": T.PANEL - "buy_now_content/platform_terms_factory": T.STACK_PANEL - content_text_section: T.STACK_PANEL - "content_text_section/text_description_wrapper": T.PANEL - "content_text_section/padding": T.PANEL - content_description: T.PANEL - "content_description/content_description_label": T.LABEL - trial_image_and_description: T.STACK_PANEL - "trial_image_and_description/realms_image": T.IMAGE - "trial_image_and_description/padding": T.PANEL - "trial_image_and_description/description_text_wrapper": T.PANEL - description_text: T.LABEL - title_text: T.LABEL - title_with_gradient: T.PANEL - description_stack: T.STACK_PANEL - "description_stack/title_with_gradient_wrapper": T.PANEL - "description_stack/padding": T.PANEL - "description_stack/image_and_description": T.STACK_PANEL - realm_name_stack: T.STACK_PANEL - "realm_name_stack/realm_name_label": T.LABEL - "realm_name_stack/padding_0": T.PANEL - "realm_name_stack/realm_name_text_box": T.EDIT_BOX - terms_and_conditions: T.PANEL - "terms_and_conditions/terms_panel": T.PANEL - terms_and_conditions_panel: T.PANEL - "terms_and_conditions_panel/name_label": T.LABEL - "terms_and_conditions_panel/terms_string_panel": T.PANEL - "terms_and_conditions_panel/terms_string_panel/banner_fill": T.IMAGE - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": T.STACK_PANEL - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": T.PANEL - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": T.TOGGLE - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": T.BUTTON - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": T.BUTTON - button_text: T.LABEL - view_terms_button: T.BUTTON - privacy_policy_button: T.BUTTON - buy_button_panel: T.PANEL - "buy_button_panel/buy_button": T.BUTTON - buy_button_content: T.PANEL - "buy_button_content/button_chevron_panel": T.STACK_PANEL - "buy_button_content/button_chevron_panel/buy_button_chevron": T.PANEL - "buy_button_content/button_text": T.LABEL + "buy_now_content": T.STACK_PANEL, + "buy_now_content/description_stack": T.STACK_PANEL, + "buy_now_content/realm_name": T.STACK_PANEL, + "buy_now_content/terms_and_conditions": T.PANEL, + "buy_now_content/padding_2": T.PANEL, + "buy_now_content/buy_button": T.PANEL, + "buy_now_content/padding_3": T.PANEL, + "buy_now_content/platform_terms_factory": T.STACK_PANEL, + "content_text_section": T.STACK_PANEL, + "content_text_section/text_description_wrapper": T.PANEL, + "content_text_section/padding": T.PANEL, + "content_description": T.PANEL, + "content_description/content_description_label": T.LABEL, + "trial_image_and_description": T.STACK_PANEL, + "trial_image_and_description/realms_image": T.IMAGE, + "trial_image_and_description/padding": T.PANEL, + "trial_image_and_description/description_text_wrapper": T.PANEL, + "description_text": T.LABEL, + "title_text": T.LABEL, + "title_with_gradient": T.PANEL, + "description_stack": T.STACK_PANEL, + "description_stack/title_with_gradient_wrapper": T.PANEL, + "description_stack/padding": T.PANEL, + "description_stack/image_and_description": T.STACK_PANEL, + "realm_name_stack": T.STACK_PANEL, + "realm_name_stack/realm_name_label": T.LABEL, + "realm_name_stack/padding_0": T.PANEL, + "realm_name_stack/realm_name_text_box": T.EDIT_BOX, + "terms_and_conditions": T.PANEL, + "terms_and_conditions/terms_panel": T.PANEL, + "terms_and_conditions_panel": T.PANEL, + "terms_and_conditions_panel/name_label": T.LABEL, + "terms_and_conditions_panel/terms_string_panel": T.PANEL, + "terms_and_conditions_panel/terms_string_panel/banner_fill": T.IMAGE, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": T.STACK_PANEL, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": T.PANEL, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": T.TOGGLE, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": T.BUTTON, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": T.BUTTON, + "button_text": T.LABEL, + "view_terms_button": T.BUTTON, + "privacy_policy_button": T.BUTTON, + "buy_button_panel": T.PANEL, + "buy_button_panel/buy_button": T.BUTTON, + "buy_button_content": T.PANEL, + "buy_button_content/button_chevron_panel": T.STACK_PANEL, + "buy_button_content/button_chevron_panel/buy_button_chevron": T.PANEL, + "buy_button_content/button_text": T.LABEL, } export type RealmsPlusPacksType = { - view_all_packs_screen: T.SCREEN - view_packs_screen_content: T.PANEL - "view_packs_screen_content/main_panel": T.STACK_PANEL - realmsPlus_view_packs_screen_main_panel: T.INPUT_PANEL - main_panel: T.INPUT_PANEL - "main_panel/offers": T.PANEL - "main_panel/progress_loading": T.PANEL - scrolling_content_stack: T.STACK_PANEL - "scrolling_content_stack/padding_0": T.PANEL - "scrolling_content_stack/store_factory": T.STACK_PANEL + "view_all_packs_screen": T.SCREEN, + "view_packs_screen_content": T.PANEL, + "view_packs_screen_content/main_panel": T.STACK_PANEL, + "realmsPlus_view_packs_screen_main_panel": T.INPUT_PANEL, + "main_panel": T.INPUT_PANEL, + "main_panel/offers": T.PANEL, + "main_panel/progress_loading": T.PANEL, + "scrolling_content_stack": T.STACK_PANEL, + "scrolling_content_stack/padding_0": T.PANEL, + "scrolling_content_stack/store_factory": T.STACK_PANEL, } export type RealmsPlusPurchaseWarningType = { - realmsPlus_purchase_warning_screen: T.SCREEN - purchase_warning_screen_content: T.PANEL - "purchase_warning_screen_content/main_panel": T.PANEL - warning_modal_main_panel: T.STACK_PANEL - "warning_modal_main_panel/art_panel": T.PANEL - "warning_modal_main_panel/art_panel/art": T.IMAGE - "warning_modal_main_panel/padding": T.PANEL - "warning_modal_main_panel/text_panel": T.STACK_PANEL - "warning_modal_main_panel/text_panel/description_panel": T.PANEL - "warning_modal_main_panel/text_panel/description_panel/description_text": T.LABEL - "warning_modal_main_panel/text_panel/padding": T.PANEL - "warning_modal_main_panel/text_panel/checkbox_with_label_panel": T.STACK_PANEL - "warning_modal_main_panel/text_panel/checkbox_with_label_panel/checkbox_panel": T.TOGGLE - "warning_modal_main_panel/text_panel/checkbox_with_label_panel/padding": T.PANEL - "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel": T.PANEL - "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel/label_text": T.LABEL - warning_modal_button_panel: T.STACK_PANEL - "warning_modal_button_panel/back_button": T.BUTTON - "warning_modal_button_panel/padding": T.PANEL - "warning_modal_button_panel/continue_button": T.BUTTON + "realmsPlus_purchase_warning_screen": T.SCREEN, + "purchase_warning_screen_content": T.PANEL, + "purchase_warning_screen_content/main_panel": T.PANEL, + "warning_modal_main_panel": T.STACK_PANEL, + "warning_modal_main_panel/art_panel": T.PANEL, + "warning_modal_main_panel/art_panel/art": T.IMAGE, + "warning_modal_main_panel/padding": T.PANEL, + "warning_modal_main_panel/text_panel": T.STACK_PANEL, + "warning_modal_main_panel/text_panel/description_panel": T.PANEL, + "warning_modal_main_panel/text_panel/description_panel/description_text": T.LABEL, + "warning_modal_main_panel/text_panel/padding": T.PANEL, + "warning_modal_main_panel/text_panel/checkbox_with_label_panel": T.STACK_PANEL, + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/checkbox_panel": T.TOGGLE, + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/padding": T.PANEL, + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel": T.PANEL, + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel/label_text": T.LABEL, + "warning_modal_button_panel": T.STACK_PANEL, + "warning_modal_button_panel/back_button": T.BUTTON, + "warning_modal_button_panel/padding": T.PANEL, + "warning_modal_button_panel/continue_button": T.BUTTON, } export type RealmsStoriesTransitionType = { - realms_stories_transition_screen: T.SCREEN + "realms_stories_transition_screen": T.SCREEN, } export type RedstoneType = { - item_dropper_label: T.LABEL - dispenser_label: T.LABEL - crafter_label: T.LABEL - dropper_label: T.LABEL - hopper_label: T.LABEL - redstone_input_grid: T.GRID - redstone_panel_top_half: T.PANEL - "redstone_panel_top_half/redstone_input_grid": T.GRID - panel: T.PANEL - "panel/container_gamepad_helpers": T.STACK_PANEL - "panel/selected_item_details_factory": T.FACTORY - "panel/item_lock_notification_factory": T.FACTORY - "panel/root_panel": T.INPUT_PANEL - "panel/root_panel/common_panel": T.PANEL - "panel/root_panel/redstone_screen_inventory": T.PANEL - "panel/root_panel/redstone_screen_inventory/red_panel": T.PANEL - "panel/root_panel/redstone_screen_inventory/red_bottom_half": T.PANEL - "panel/root_panel/redstone_screen_inventory/hotbar_grid": T.GRID - "panel/root_panel/redstone_screen_inventory/red_hold_icon": T.BUTTON - "panel/root_panel/red_icon": T.BUTTON - "panel/root_panel/gamepad_cursor": T.BUTTON - "panel/flying_item_renderer": T.CUSTOM - crafter_input_grid: T.GRID - cell_image: T.IMAGE - crafter_highlight_slot: T.IMAGE - crafter_container_slot_button_prototype: T.BUTTON - crafter_highlight_slot_panel: T.PANEL - "crafter_highlight_slot_panel/highlight": T.IMAGE - "crafter_highlight_slot_panel/highlight/hover_text": T.CUSTOM - "crafter_highlight_slot_panel/white_border": T.IMAGE - crafter_enabled_slot_template: T.INPUT_PANEL - crafter_disabled_slot: T.BUTTON - "crafter_disabled_slot/default": T.IMAGE - "crafter_disabled_slot/hover": T.IMAGE - "crafter_disabled_slot/pressed": T.IMAGE - output_slot_hover_info: T.BUTTON - "output_slot_hover_info/hover": T.CUSTOM - "output_slot_hover_info/output_slot": T.CUSTOM - "output_slot_hover_info/output_slot_border": T.IMAGE - "output_slot_hover_info/output_count": T.LABEL - panel_crafter: T.PANEL - "panel_crafter/container_gamepad_helpers": T.STACK_PANEL - "panel_crafter/selected_item_details_factory": T.FACTORY - "panel_crafter/item_lock_notification_factory": T.FACTORY - "panel_crafter/root_panel": T.INPUT_PANEL - "panel_crafter/root_panel/common_panel": T.PANEL - "panel_crafter/root_panel/disabled_slot_0_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_1_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_2_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_3_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_4_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_5_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_6_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_7_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_8_button": T.BUTTON - "panel_crafter/root_panel/redstone_screen_inventory": T.PANEL - "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid": T.PANEL - "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid": T.GRID - "panel_crafter/root_panel/redstone_screen_inventory/red_bottom_half": T.PANEL - "panel_crafter/root_panel/redstone_screen_inventory/hotbar_grid": T.GRID - "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon": T.BUTTON - "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line": T.IMAGE - "panel_crafter/root_panel/redstone_screen_inventory/crafter_output": T.BUTTON - "panel_crafter/root_panel/red_icon": T.BUTTON - "panel_crafter/root_panel/gamepad_cursor": T.BUTTON - "panel_crafter/flying_item_renderer": T.CUSTOM - hopper_screen: T.SCREEN - dispenser_screen: T.SCREEN - crafter_screen: T.SCREEN - dropper_screen: T.SCREEN + "item_dropper_label": T.LABEL, + "dispenser_label": T.LABEL, + "crafter_label": T.LABEL, + "dropper_label": T.LABEL, + "hopper_label": T.LABEL, + "redstone_input_grid": T.GRID, + "redstone_panel_top_half": T.PANEL, + "redstone_panel_top_half/redstone_input_grid": T.GRID, + "panel": T.PANEL, + "panel/container_gamepad_helpers": T.STACK_PANEL, + "panel/selected_item_details_factory": T.FACTORY, + "panel/item_lock_notification_factory": T.FACTORY, + "panel/root_panel": T.INPUT_PANEL, + "panel/root_panel/common_panel": T.PANEL, + "panel/root_panel/redstone_screen_inventory": T.PANEL, + "panel/root_panel/redstone_screen_inventory/red_panel": T.PANEL, + "panel/root_panel/redstone_screen_inventory/red_bottom_half": T.PANEL, + "panel/root_panel/redstone_screen_inventory/hotbar_grid": T.GRID, + "panel/root_panel/redstone_screen_inventory/red_hold_icon": T.BUTTON, + "panel/root_panel/red_icon": T.BUTTON, + "panel/root_panel/gamepad_cursor": T.BUTTON, + "panel/flying_item_renderer": T.CUSTOM, + "crafter_input_grid": T.GRID, + "cell_image": T.IMAGE, + "crafter_highlight_slot": T.IMAGE, + "crafter_container_slot_button_prototype": T.BUTTON, + "crafter_highlight_slot_panel": T.PANEL, + "crafter_highlight_slot_panel/highlight": T.IMAGE, + "crafter_highlight_slot_panel/highlight/hover_text": T.CUSTOM, + "crafter_highlight_slot_panel/white_border": T.IMAGE, + "crafter_enabled_slot_template": T.INPUT_PANEL, + "crafter_disabled_slot": T.BUTTON, + "crafter_disabled_slot/default": T.IMAGE, + "crafter_disabled_slot/hover": T.IMAGE, + "crafter_disabled_slot/pressed": T.IMAGE, + "output_slot_hover_info": T.BUTTON, + "output_slot_hover_info/hover": T.CUSTOM, + "output_slot_hover_info/output_slot": T.CUSTOM, + "output_slot_hover_info/output_slot_border": T.IMAGE, + "output_slot_hover_info/output_count": T.LABEL, + "panel_crafter": T.PANEL, + "panel_crafter/container_gamepad_helpers": T.STACK_PANEL, + "panel_crafter/selected_item_details_factory": T.FACTORY, + "panel_crafter/item_lock_notification_factory": T.FACTORY, + "panel_crafter/root_panel": T.INPUT_PANEL, + "panel_crafter/root_panel/common_panel": T.PANEL, + "panel_crafter/root_panel/disabled_slot_0_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_1_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_2_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_3_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_4_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_5_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_6_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_7_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_8_button": T.BUTTON, + "panel_crafter/root_panel/redstone_screen_inventory": T.PANEL, + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid": T.PANEL, + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid": T.GRID, + "panel_crafter/root_panel/redstone_screen_inventory/red_bottom_half": T.PANEL, + "panel_crafter/root_panel/redstone_screen_inventory/hotbar_grid": T.GRID, + "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon": T.BUTTON, + "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line": T.IMAGE, + "panel_crafter/root_panel/redstone_screen_inventory/crafter_output": T.BUTTON, + "panel_crafter/root_panel/red_icon": T.BUTTON, + "panel_crafter/root_panel/gamepad_cursor": T.BUTTON, + "panel_crafter/flying_item_renderer": T.CUSTOM, + "hopper_screen": T.SCREEN, + "dispenser_screen": T.SCREEN, + "crafter_screen": T.SCREEN, + "dropper_screen": T.SCREEN, } export type ResourcePacksType = { - black_image: T.IMAGE - gray_image: T.IMAGE - yellow_image: T.IMAGE - white_image: T.PANEL - "white_image/border": T.IMAGE - icon_image: T.IMAGE - resource_packs_toggle_button_control: T.PANEL - "resource_packs_toggle_button_control/icon_border": T.PANEL - "resource_packs_toggle_button_control/cycling_icon": T.IMAGE - "resource_packs_toggle_button_control/tab_button_text": T.LABEL - resource_packs_section_toggle_base: T.PANEL - selected_icon_image: T.IMAGE - available_icon_image: T.IMAGE - realms_icon_image: T.IMAGE - unowned_icon_image: T.IMAGE - invalid_icon_image: T.IMAGE - minus_image: T.IMAGE - plus_image: T.IMAGE - minus_text: T.LABEL - plus_text: T.LABEL - store_text: T.LABEL - error_image: T.IMAGE - error_image_hover: T.IMAGE - error_image_panel: T.PANEL - "error_image_panel/default": T.IMAGE - "error_image_panel/hover": T.IMAGE - warning_image: T.IMAGE - warning_image_hover: T.IMAGE - warning_panel: T.PANEL - "warning_panel/default": T.IMAGE - "warning_panel/hover": T.IMAGE - no_error_image: T.IMAGE - no_error_image_hover: T.IMAGE - no_error_panel: T.PANEL - "no_error_panel/default": T.IMAGE - "no_error_panel/hover": T.IMAGE - up_arrow_image: T.IMAGE - down_arrow_image: T.IMAGE - up_arrow_image_hover: T.IMAGE - down_arrow_image_hover: T.IMAGE - up_arrow_panel: T.PANEL - "up_arrow_panel/default": T.IMAGE - "up_arrow_panel/hover": T.IMAGE - up_arrow_wrapper: T.PANEL - "up_arrow_wrapper/down_arrow": T.PANEL - "up_arrow_wrapper/divider_right": T.PANEL - down_arrow_panel: T.PANEL - "down_arrow_panel/default": T.IMAGE - "down_arrow_panel/hover": T.IMAGE - down_arrow_wrapper: T.PANEL - "down_arrow_wrapper/down_arrow": T.PANEL - "down_arrow_wrapper/divider_right": T.PANEL - progress_loading_bars: T.IMAGE - warning_image_wrapper: T.PANEL - "warning_image_wrapper/error_image": T.PANEL - "warning_image_wrapper/warning_image": T.PANEL - "warning_image_wrapper/no_error_panel": T.PANEL - "warning_image_wrapper/progress_loading_bars": T.IMAGE - tooltip_image_wrapper: T.PANEL - "tooltip_image_wrapper/error_image": T.IMAGE - "tooltip_image_wrapper/warning_image": T.IMAGE - options_image: T.IMAGE - options_image_hover: T.IMAGE - options_image_panel: T.PANEL - "options_image_panel/default": T.IMAGE - "options_image_panel/hover": T.PANEL - "options_image_panel/hover/image": T.IMAGE - "options_image_panel/hover/border": T.IMAGE - options_wrapper: T.PANEL - "options_wrapper/options": T.PANEL - "options_wrapper/divider_right": T.PANEL - common_pack_button: T.BUTTON - available_text_panel: T.STACK_PANEL - "available_text_panel/name_panel": T.STACK_PANEL - "available_text_panel/name_panel/available_pack_name_label": T.LABEL - "available_text_panel/name_panel/available_file_size_label": T.LABEL - "available_text_panel/full_panel": T.STACK_PANEL - "available_text_panel/full_panel/description_panel": T.PANEL - "available_text_panel/full_panel/description_panel/available_pack_description_label": T.LABEL - realms_text_panel: T.STACK_PANEL - "realms_text_panel/name_panel": T.STACK_PANEL - "realms_text_panel/name_panel/realms_pack_name_label": T.LABEL - "realms_text_panel/name_panel/realms_file_size_label": T.LABEL - "realms_text_panel/description_panel": T.PANEL - "realms_text_panel/description_panel/realms_pack_description_label": T.LABEL - unowned_text_panel: T.STACK_PANEL - "unowned_text_panel/name_panel": T.STACK_PANEL - "unowned_text_panel/name_panel/unowned_pack_name_label": T.LABEL - "unowned_text_panel/name_panel/unowned_file_size_label": T.LABEL - "unowned_text_panel/description_panel": T.PANEL - "unowned_text_panel/description_panel/unowned_pack_description_label": T.LABEL - selected_text_panel: T.STACK_PANEL - "selected_text_panel/name_panel": T.STACK_PANEL - "selected_text_panel/name_panel/selected_pack_name_label": T.LABEL - "selected_text_panel/name_panel/selected_file_size_label": T.LABEL - "selected_text_panel/name_panel/active_dot_panel": T.PANEL - "selected_text_panel/name_panel/active_dot_panel/active_dot": T.IMAGE - "selected_text_panel/full_panel": T.STACK_PANEL - "selected_text_panel/full_panel/warning_line": T.STACK_PANEL - "selected_text_panel/full_panel/warning_line/warning_text": T.LABEL - "selected_text_panel/full_panel/warning_line/warning_number": T.LABEL - "selected_text_panel/full_panel/error_line": T.STACK_PANEL - "selected_text_panel/full_panel/error_line/error_text": T.LABEL - "selected_text_panel/full_panel/error_line/error_number": T.LABEL - "selected_text_panel/full_panel/expired_line": T.PANEL - "selected_text_panel/full_panel/expired_line/expired_text": T.LABEL - "selected_text_panel/full_panel/description_panel": T.PANEL - "selected_text_panel/full_panel/description_panel/selected_pack_description_label": T.LABEL - invalid_text_panel: T.STACK_PANEL - "invalid_text_panel/full_panel": T.STACK_PANEL - "invalid_text_panel/full_panel/error_line": T.STACK_PANEL - "invalid_text_panel/full_panel/error_line/error_text": T.LABEL - "invalid_text_panel/full_panel/error_line/error_number": T.LABEL - available_pack_button_layout: T.PANEL - "available_pack_button_layout/available_icon_image": T.IMAGE - "available_pack_button_layout/text_panel_small": T.STACK_PANEL - "available_pack_button_layout/text_panel_full": T.STACK_PANEL - "available_pack_button_layout/read_more_button_panel": T.PANEL - "available_pack_button_layout/read_less_button_panel": T.PANEL - available_pack_button_layout_hover: T.PANEL - "available_pack_button_layout_hover/hover_small": T.IMAGE - "available_pack_button_layout_hover/available_icon_image": T.IMAGE - "available_pack_button_layout_hover/text_panel_small": T.STACK_PANEL - "available_pack_button_layout_hover/text_panel_full_hover": T.PANEL - "available_pack_button_layout_hover/text_panel_full_hover/text_panel_full": T.STACK_PANEL - "available_pack_button_layout_hover/read_more_button_panel": T.PANEL - "available_pack_button_layout_hover/read_less_button_panel": T.PANEL - available_pack_button: T.BUTTON - "available_pack_button/default": T.PANEL - "available_pack_button/pressed": T.PANEL - "available_pack_button/hover": T.PANEL - realms_pack_button_layout: T.PANEL - "realms_pack_button_layout/realms_icon_image": T.IMAGE - "realms_pack_button_layout/text_panel_small": T.STACK_PANEL - "realms_pack_button_layout/text_panel_full": T.STACK_PANEL - "realms_pack_button_layout/read_more_button_panel": T.PANEL - "realms_pack_button_layout/read_less_button_panel": T.PANEL - realms_pack_button_layout_hover: T.PANEL - "realms_pack_button_layout_hover/hover_small": T.IMAGE - "realms_pack_button_layout_hover/realms_icon_image": T.IMAGE - "realms_pack_button_layout_hover/text_panel_small": T.STACK_PANEL - "realms_pack_button_layout_hover/text_panel_full_hover": T.PANEL - "realms_pack_button_layout_hover/text_panel_full_hover/text_panel_full": T.STACK_PANEL - "realms_pack_button_layout_hover/read_more_button_panel": T.PANEL - "realms_pack_button_layout_hover/read_less_button_panel": T.PANEL - realms_pack_button: T.BUTTON - "realms_pack_button/default": T.PANEL - "realms_pack_button/pressed": T.PANEL - "realms_pack_button/hover": T.PANEL - unowned_pack_button_layout: T.PANEL - "unowned_pack_button_layout/unowned_icon_image": T.IMAGE - "unowned_pack_button_layout/text_panel_small": T.STACK_PANEL - "unowned_pack_button_layout/text_panel_full": T.STACK_PANEL - "unowned_pack_button_layout/read_more_button_panel": T.PANEL - "unowned_pack_button_layout/read_less_button_panel": T.PANEL - unowned_pack_button_layout_hover: T.PANEL - "unowned_pack_button_layout_hover/hover_small": T.IMAGE - "unowned_pack_button_layout_hover/unowned_icon_image": T.IMAGE - "unowned_pack_button_layout_hover/text_panel_small": T.STACK_PANEL - "unowned_pack_button_layout_hover/text_panel_full_hover": T.PANEL - "unowned_pack_button_layout_hover/text_panel_full_hover/text_panel_full": T.STACK_PANEL - "unowned_pack_button_layout_hover/read_more_button_panel": T.PANEL - "unowned_pack_button_layout_hover/read_less_button_panel": T.PANEL - unowned_pack_button: T.BUTTON - "unowned_pack_button/default": T.PANEL - "unowned_pack_button/pressed": T.PANEL - "unowned_pack_button/hover": T.PANEL - invalid_pack_button_layout: T.PANEL - "invalid_pack_button_layout/invalid_icon_image": T.IMAGE - "invalid_pack_button_layout/text_panel": T.STACK_PANEL - invalid_pack_button_layout_hover: T.PANEL - "invalid_pack_button_layout_hover/hover_small": T.IMAGE - "invalid_pack_button_layout_hover/invalid_icon_image": T.IMAGE - "invalid_pack_button_layout_hover/text_panel_full_hover": T.PANEL - "invalid_pack_button_layout_hover/text_panel_full_hover/text_panel": T.STACK_PANEL - invalid_pack_button: T.BUTTON - "invalid_pack_button/default": T.PANEL - "invalid_pack_button/pressed": T.PANEL - "invalid_pack_button/hover": T.PANEL - empty_resource_pack_button: T.PANEL - resource_pack_button_padding: T.PANEL - input_button_panel: T.INPUT_PANEL - "input_button_panel/border_image": T.IMAGE - "input_button_panel/border_image/button_panel": T.STACK_PANEL - "input_button_panel/border_image/button_panel/padding_0": T.PANEL - "input_button_panel/border_image/button_panel/padding_1": T.PANEL - "input_button_panel/border_image/button_panel/padding_2": T.PANEL - "input_button_panel/border_image/button_panel/padding_3": T.PANEL - "input_button_panel/border_image/button_panel/padding_4": T.PANEL - "input_button_panel/background": T.IMAGE - selected_pack_button_layout: T.PANEL - "selected_pack_button_layout/selected_icon_image": T.IMAGE - "selected_pack_button_layout/text_panel_small": T.STACK_PANEL - "selected_pack_button_layout/text_panel_full": T.STACK_PANEL - "selected_pack_button_layout/read_more_button_panel": T.PANEL - "selected_pack_button_layout/read_less_button_panel": T.PANEL - selected_pack_button_layout_hover: T.PANEL - "selected_pack_button_layout_hover/hover_small": T.IMAGE - "selected_pack_button_layout_hover/selected_icon_image": T.IMAGE - "selected_pack_button_layout_hover/text_panel_small": T.STACK_PANEL - "selected_pack_button_layout_hover/text_panel_full_hover": T.PANEL - "selected_pack_button_layout_hover/text_panel_full_hover/text_panel_full": T.STACK_PANEL - "selected_pack_button_layout_hover/read_more_button_panel": T.PANEL - "selected_pack_button_layout_hover/read_less_button_panel": T.PANEL - selected_pack_button: T.BUTTON - "selected_pack_button/default": T.PANEL - "selected_pack_button/pressed": T.PANEL - "selected_pack_button/hover": T.PANEL - selected_pack_movement_button: T.BUTTON - selected_pack_transparent_movement_button: T.BUTTON - selected_pack_minus_button: T.BUTTON - selected_pack_plus_button: T.BUTTON - selected_pack_store_button: T.BUTTON - selected_pack_store_button_fill: T.BUTTON - selected_pack_up_button: T.BUTTON - selected_pack_down_button: T.BUTTON - selected_pack_warning_button: T.BUTTON - selected_pack_options_button: T.BUTTON - white_label: T.LABEL - gray_label: T.LABEL - suggested_content_offers_title_label: T.LABEL - available_packs_title_content: T.STACK_PANEL - realms_packs_title_content: T.STACK_PANEL - unowned_packs_title_content: T.STACK_PANEL - selected_packs_title_content: T.STACK_PANEL - "selected_packs_title_content/selected_packs_title_label": T.LABEL - "selected_packs_title_content/fill_pad": T.PANEL - "selected_packs_title_content/icon_panel": T.PANEL - "selected_packs_title_content/icon_panel/block_icon": T.IMAGE - "selected_packs_title_content/pad_0": T.PANEL - "selected_packs_title_content/count": T.LABEL - "selected_packs_title_content/pad_1": T.PANEL - "selected_packs_title_content/plus_panel": T.PANEL - "selected_packs_title_content/plus_panel/plus": T.IMAGE - "selected_packs_title_content/minus_panel": T.PANEL - "selected_packs_title_content/minus_panel/minus": T.IMAGE - available_packs_title_button: T.BUTTON - realms_packs_title_button: T.BUTTON - unowned_packs_title_button: T.BUTTON - selected_packs_title_button: T.BUTTON - name_label: T.LABEL - size_label: T.LABEL - description_label: T.LABEL - pack_label: T.LABEL - selected_pack_description_label: T.LABEL - available_pack_description_label: T.LABEL - realms_pack_description_label: T.LABEL - unowned_pack_description_label: T.LABEL - selected_pack_name_label: T.LABEL - selected_file_size_label: T.LABEL - available_pack_name_label: T.LABEL - available_file_size_label: T.LABEL - realms_pack_name_label: T.LABEL - realms_file_size_label: T.LABEL - unowned_pack_name_label: T.LABEL - unowned_file_size_label: T.LABEL - invalid_pack_name_label: T.LABEL - invalid_pack_description_label: T.LABEL - available_panel: T.PANEL - "available_panel/selected_packs": T.PANEL - checkbox_visuals: T.PANEL - header_control: T.TOGGLE - "header_control/header_description_stack_panel": T.STACK_PANEL - "header_control/header_description_stack_panel/checkbox_visuals": T.PANEL - "header_control/header_description_stack_panel/buffer_panel": T.PANEL - "header_control/header_description_stack_panel/buffer_panel/label": T.LABEL - addon_header_control: T.PANEL - "addon_header_control/header_description_stack_panel": T.STACK_PANEL - "addon_header_control/header_description_stack_panel/padding_0": T.PANEL - "addon_header_control/header_description_stack_panel/description_center_panel": T.PANEL - "addon_header_control/header_description_stack_panel/description_center_panel/label": T.LABEL - "addon_header_control/header_description_stack_panel/padding_1": T.PANEL - "addon_header_control/header_description_stack_panel/link_center_panel": T.PANEL - "addon_header_control/header_description_stack_panel/link_center_panel/addon_link_button": T.BUTTON - "addon_header_control/header_description_stack_panel/padding_2": T.PANEL - panel_bg: T.PANEL - "panel_bg/black_background": T.IMAGE - "panel_bg/gray": T.IMAGE - addon_panel_bg: T.PANEL - "addon_panel_bg/black_background": T.IMAGE - "addon_panel_bg/yellow": T.IMAGE - error_panel: T.PANEL - "error_panel/black_background": T.IMAGE - "error_panel/black_background/gray": T.IMAGE - "error_panel/black_background/gray/panel": T.PANEL - "error_panel/black_background/gray/panel/error_label": T.LABEL - selected_stack_panel: T.STACK_PANEL - "selected_stack_panel/world_template_option_lock_panel": T.PANEL - "selected_stack_panel/world_template_option_lock_panel/option_info_label": T.PANEL - "selected_stack_panel/top_panel": T.PANEL - "selected_stack_panel/top_panel/panel_bg": T.PANEL - "selected_stack_panel/top_panel/header_control": T.TOGGLE - "selected_stack_panel/offset_0": T.PANEL - "selected_stack_panel/addon_stacking_warning_panel": T.PANEL - "selected_stack_panel/addon_stacking_warning_panel/addon_panel_bg": T.PANEL - "selected_stack_panel/addon_stacking_warning_panel/header_control": T.PANEL - "selected_stack_panel/offset_1": T.PANEL - "selected_stack_panel/selected_packs_title_panel": T.STACK_PANEL - "selected_stack_panel/selected_packs_title_panel/selected_packs_title_button": T.BUTTON - "selected_stack_panel/selected_packs_title_panel/tooltip": T.PANEL - "selected_stack_panel/selected_packs_title_panel/tooltip/button": T.BUTTON - "selected_stack_panel/selected_pack_section": T.STACK_PANEL - "selected_stack_panel/selected_pack_section/offset": T.PANEL - "selected_stack_panel/selected_pack_section/selected_pack_grid": T.STACK_PANEL - "selected_stack_panel/selected_pack_section/default_item": T.PANEL - "selected_stack_panel/selected_pack_section/default_item/icon_image": T.IMAGE - "selected_stack_panel/selected_pack_section/default_item/name_panel": T.PANEL - "selected_stack_panel/selected_pack_section/default_item/name_panel/white_label": T.LABEL - "selected_stack_panel/selected_pack_section/default_item/description_panel": T.PANEL - "selected_stack_panel/selected_pack_section/default_item/description_panel/white_label": T.LABEL - "selected_stack_panel/selected_pack_section/filler_panel": T.PANEL - "selected_stack_panel/selected_pack_section/filler_panel/description_label": T.LABEL - "selected_stack_panel/offset_2": T.PANEL - "selected_stack_panel/available_packs_title_panel": T.STACK_PANEL - "selected_stack_panel/available_packs_title_panel/available_packs_title_button": T.BUTTON - "selected_stack_panel/available_packs_title_panel/tooltip": T.PANEL - "selected_stack_panel/available_packs_title_panel/tooltip/button": T.BUTTON - "selected_stack_panel/available_packs_section": T.STACK_PANEL - "selected_stack_panel/available_packs_section/offset": T.PANEL - "selected_stack_panel/available_packs_section/empty_panel": T.STACK_PANEL - "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel": T.PANEL - "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel/no_packs_text": T.LABEL - "selected_stack_panel/available_packs_section/empty_panel/to_store_button": T.BUTTON - "selected_stack_panel/available_packs_section/available_pack_grid": T.STACK_PANEL - "selected_stack_panel/available_packs_section/invalid_pack_grid": T.STACK_PANEL - "selected_stack_panel/offset_3": T.PANEL - "selected_stack_panel/realms_packs_title_button": T.BUTTON - "selected_stack_panel/realms_packs_section": T.STACK_PANEL - "selected_stack_panel/realms_packs_section/offset": T.PANEL - "selected_stack_panel/realms_packs_section/realms_pack_grid": T.STACK_PANEL - "selected_stack_panel/realms_packs_section/offset_4": T.PANEL - "selected_stack_panel/offset_4": T.PANEL - "selected_stack_panel/unowned_packs_title_button": T.BUTTON - "selected_stack_panel/unowned_packs_section": T.STACK_PANEL - "selected_stack_panel/unowned_packs_section/offset": T.PANEL - "selected_stack_panel/unowned_packs_section/unowned_pack_grid": T.STACK_PANEL - "selected_stack_panel/unowned_packs_section/to_store_button": T.BUTTON - "selected_stack_panel/unowned_packs_section/offset_4": T.PANEL - available_stack_panel: T.STACK_PANEL - "available_stack_panel/available_packs_title_button": T.BUTTON - "available_stack_panel/available_pack_grid": T.STACK_PANEL - pack_background: T.PANEL - "pack_background/white_image": T.PANEL - "pack_background/gray_image": T.IMAGE - selected_pack_panel: T.STACK_PANEL - "selected_pack_panel/selected_pack_button": T.BUTTON - "selected_pack_panel/pad_0": T.PANEL - "selected_pack_panel/center_panel": T.PANEL - "selected_pack_panel/center_panel/visibility_panel": T.PANEL - "selected_pack_panel/center_panel/visibility_panel/selected_pack_direction_buttons": T.INPUT_PANEL - "selected_pack_panel/divider": T.PANEL - "selected_pack_panel/pad_1": T.PANEL - available_pack_panel: T.STACK_PANEL - "available_pack_panel/available_pack_button": T.BUTTON - "available_pack_panel/pad_0": T.PANEL - "available_pack_panel/center_panel": T.PANEL - "available_pack_panel/center_panel/available_pack_direction_buttons": T.INPUT_PANEL - "available_pack_panel/divider": T.PANEL - "available_pack_panel/pad_1": T.PANEL - realms_pack_panel: T.STACK_PANEL - "realms_pack_panel/realms_pack_button": T.BUTTON - "realms_pack_panel/pad_0": T.PANEL - "realms_pack_panel/center_panel": T.PANEL - "realms_pack_panel/center_panel/realms_pack_direction_buttons": T.INPUT_PANEL - "realms_pack_panel/divider": T.PANEL - "realms_pack_panel/pad_1": T.PANEL - unowned_pack_panel: T.STACK_PANEL - "unowned_pack_panel/unowned_pack_button": T.BUTTON - "unowned_pack_panel/pad_0": T.PANEL - "unowned_pack_panel/center_panel": T.PANEL - "unowned_pack_panel/center_panel/realms_pack_direction_buttons": T.INPUT_PANEL - "unowned_pack_panel/divider": T.PANEL - "unowned_pack_panel/pad_1": T.PANEL - invalid_pack_panel: T.STACK_PANEL - "invalid_pack_panel/invalid_pack_button": T.BUTTON - "invalid_pack_panel/pad_0": T.PANEL - "invalid_pack_panel/divider": T.PANEL - "invalid_pack_panel/pad_1": T.PANEL - selected_pack_grid: T.STACK_PANEL - available_pack_grid: T.STACK_PANEL - realms_pack_grid: T.STACK_PANEL - unowned_pack_grid: T.STACK_PANEL - invalid_pack_grid: T.STACK_PANEL + "black_image": T.IMAGE, + "gray_image": T.IMAGE, + "yellow_image": T.IMAGE, + "white_image": T.PANEL, + "white_image/border": T.IMAGE, + "icon_image": T.IMAGE, + "resource_packs_toggle_button_control": T.PANEL, + "resource_packs_toggle_button_control/icon_border": T.PANEL, + "resource_packs_toggle_button_control/cycling_icon": T.IMAGE, + "resource_packs_toggle_button_control/tab_button_text": T.LABEL, + "resource_packs_section_toggle_base": T.PANEL, + "selected_icon_image": T.IMAGE, + "available_icon_image": T.IMAGE, + "realms_icon_image": T.IMAGE, + "unowned_icon_image": T.IMAGE, + "invalid_icon_image": T.IMAGE, + "minus_image": T.IMAGE, + "plus_image": T.IMAGE, + "minus_text": T.LABEL, + "plus_text": T.LABEL, + "store_text": T.LABEL, + "error_image": T.IMAGE, + "error_image_hover": T.IMAGE, + "error_image_panel": T.PANEL, + "error_image_panel/default": T.IMAGE, + "error_image_panel/hover": T.IMAGE, + "warning_image": T.IMAGE, + "warning_image_hover": T.IMAGE, + "warning_panel": T.PANEL, + "warning_panel/default": T.IMAGE, + "warning_panel/hover": T.IMAGE, + "no_error_image": T.IMAGE, + "no_error_image_hover": T.IMAGE, + "no_error_panel": T.PANEL, + "no_error_panel/default": T.IMAGE, + "no_error_panel/hover": T.IMAGE, + "up_arrow_image": T.IMAGE, + "down_arrow_image": T.IMAGE, + "up_arrow_image_hover": T.IMAGE, + "down_arrow_image_hover": T.IMAGE, + "up_arrow_panel": T.PANEL, + "up_arrow_panel/default": T.IMAGE, + "up_arrow_panel/hover": T.IMAGE, + "up_arrow_wrapper": T.PANEL, + "up_arrow_wrapper/down_arrow": T.PANEL, + "up_arrow_wrapper/divider_right": T.PANEL, + "down_arrow_panel": T.PANEL, + "down_arrow_panel/default": T.IMAGE, + "down_arrow_panel/hover": T.IMAGE, + "down_arrow_wrapper": T.PANEL, + "down_arrow_wrapper/down_arrow": T.PANEL, + "down_arrow_wrapper/divider_right": T.PANEL, + "progress_loading_bars": T.IMAGE, + "warning_image_wrapper": T.PANEL, + "warning_image_wrapper/error_image": T.PANEL, + "warning_image_wrapper/warning_image": T.PANEL, + "warning_image_wrapper/no_error_panel": T.PANEL, + "warning_image_wrapper/progress_loading_bars": T.IMAGE, + "tooltip_image_wrapper": T.PANEL, + "tooltip_image_wrapper/error_image": T.IMAGE, + "tooltip_image_wrapper/warning_image": T.IMAGE, + "options_image": T.IMAGE, + "options_image_hover": T.IMAGE, + "options_image_panel": T.PANEL, + "options_image_panel/default": T.IMAGE, + "options_image_panel/hover": T.PANEL, + "options_image_panel/hover/image": T.IMAGE, + "options_image_panel/hover/border": T.IMAGE, + "options_wrapper": T.PANEL, + "options_wrapper/options": T.PANEL, + "options_wrapper/divider_right": T.PANEL, + "common_pack_button": T.BUTTON, + "available_text_panel": T.STACK_PANEL, + "available_text_panel/name_panel": T.STACK_PANEL, + "available_text_panel/name_panel/available_pack_name_label": T.LABEL, + "available_text_panel/name_panel/available_file_size_label": T.LABEL, + "available_text_panel/full_panel": T.STACK_PANEL, + "available_text_panel/full_panel/description_panel": T.PANEL, + "available_text_panel/full_panel/description_panel/available_pack_description_label": T.LABEL, + "realms_text_panel": T.STACK_PANEL, + "realms_text_panel/name_panel": T.STACK_PANEL, + "realms_text_panel/name_panel/realms_pack_name_label": T.LABEL, + "realms_text_panel/name_panel/realms_file_size_label": T.LABEL, + "realms_text_panel/description_panel": T.PANEL, + "realms_text_panel/description_panel/realms_pack_description_label": T.LABEL, + "unowned_text_panel": T.STACK_PANEL, + "unowned_text_panel/name_panel": T.STACK_PANEL, + "unowned_text_panel/name_panel/unowned_pack_name_label": T.LABEL, + "unowned_text_panel/name_panel/unowned_file_size_label": T.LABEL, + "unowned_text_panel/description_panel": T.PANEL, + "unowned_text_panel/description_panel/unowned_pack_description_label": T.LABEL, + "selected_text_panel": T.STACK_PANEL, + "selected_text_panel/name_panel": T.STACK_PANEL, + "selected_text_panel/name_panel/selected_pack_name_label": T.LABEL, + "selected_text_panel/name_panel/selected_file_size_label": T.LABEL, + "selected_text_panel/name_panel/active_dot_panel": T.PANEL, + "selected_text_panel/name_panel/active_dot_panel/active_dot": T.IMAGE, + "selected_text_panel/full_panel": T.STACK_PANEL, + "selected_text_panel/full_panel/warning_line": T.STACK_PANEL, + "selected_text_panel/full_panel/warning_line/warning_text": T.LABEL, + "selected_text_panel/full_panel/warning_line/warning_number": T.LABEL, + "selected_text_panel/full_panel/error_line": T.STACK_PANEL, + "selected_text_panel/full_panel/error_line/error_text": T.LABEL, + "selected_text_panel/full_panel/error_line/error_number": T.LABEL, + "selected_text_panel/full_panel/expired_line": T.PANEL, + "selected_text_panel/full_panel/expired_line/expired_text": T.LABEL, + "selected_text_panel/full_panel/description_panel": T.PANEL, + "selected_text_panel/full_panel/description_panel/selected_pack_description_label": T.LABEL, + "invalid_text_panel": T.STACK_PANEL, + "invalid_text_panel/full_panel": T.STACK_PANEL, + "invalid_text_panel/full_panel/error_line": T.STACK_PANEL, + "invalid_text_panel/full_panel/error_line/error_text": T.LABEL, + "invalid_text_panel/full_panel/error_line/error_number": T.LABEL, + "available_pack_button_layout": T.PANEL, + "available_pack_button_layout/available_icon_image": T.IMAGE, + "available_pack_button_layout/text_panel_small": T.STACK_PANEL, + "available_pack_button_layout/text_panel_full": T.STACK_PANEL, + "available_pack_button_layout/read_more_button_panel": T.PANEL, + "available_pack_button_layout/read_less_button_panel": T.PANEL, + "available_pack_button_layout_hover": T.PANEL, + "available_pack_button_layout_hover/hover_small": T.IMAGE, + "available_pack_button_layout_hover/available_icon_image": T.IMAGE, + "available_pack_button_layout_hover/text_panel_small": T.STACK_PANEL, + "available_pack_button_layout_hover/text_panel_full_hover": T.PANEL, + "available_pack_button_layout_hover/text_panel_full_hover/text_panel_full": T.STACK_PANEL, + "available_pack_button_layout_hover/read_more_button_panel": T.PANEL, + "available_pack_button_layout_hover/read_less_button_panel": T.PANEL, + "available_pack_button": T.BUTTON, + "available_pack_button/default": T.PANEL, + "available_pack_button/pressed": T.PANEL, + "available_pack_button/hover": T.PANEL, + "realms_pack_button_layout": T.PANEL, + "realms_pack_button_layout/realms_icon_image": T.IMAGE, + "realms_pack_button_layout/text_panel_small": T.STACK_PANEL, + "realms_pack_button_layout/text_panel_full": T.STACK_PANEL, + "realms_pack_button_layout/read_more_button_panel": T.PANEL, + "realms_pack_button_layout/read_less_button_panel": T.PANEL, + "realms_pack_button_layout_hover": T.PANEL, + "realms_pack_button_layout_hover/hover_small": T.IMAGE, + "realms_pack_button_layout_hover/realms_icon_image": T.IMAGE, + "realms_pack_button_layout_hover/text_panel_small": T.STACK_PANEL, + "realms_pack_button_layout_hover/text_panel_full_hover": T.PANEL, + "realms_pack_button_layout_hover/text_panel_full_hover/text_panel_full": T.STACK_PANEL, + "realms_pack_button_layout_hover/read_more_button_panel": T.PANEL, + "realms_pack_button_layout_hover/read_less_button_panel": T.PANEL, + "realms_pack_button": T.BUTTON, + "realms_pack_button/default": T.PANEL, + "realms_pack_button/pressed": T.PANEL, + "realms_pack_button/hover": T.PANEL, + "unowned_pack_button_layout": T.PANEL, + "unowned_pack_button_layout/unowned_icon_image": T.IMAGE, + "unowned_pack_button_layout/text_panel_small": T.STACK_PANEL, + "unowned_pack_button_layout/text_panel_full": T.STACK_PANEL, + "unowned_pack_button_layout/read_more_button_panel": T.PANEL, + "unowned_pack_button_layout/read_less_button_panel": T.PANEL, + "unowned_pack_button_layout_hover": T.PANEL, + "unowned_pack_button_layout_hover/hover_small": T.IMAGE, + "unowned_pack_button_layout_hover/unowned_icon_image": T.IMAGE, + "unowned_pack_button_layout_hover/text_panel_small": T.STACK_PANEL, + "unowned_pack_button_layout_hover/text_panel_full_hover": T.PANEL, + "unowned_pack_button_layout_hover/text_panel_full_hover/text_panel_full": T.STACK_PANEL, + "unowned_pack_button_layout_hover/read_more_button_panel": T.PANEL, + "unowned_pack_button_layout_hover/read_less_button_panel": T.PANEL, + "unowned_pack_button": T.BUTTON, + "unowned_pack_button/default": T.PANEL, + "unowned_pack_button/pressed": T.PANEL, + "unowned_pack_button/hover": T.PANEL, + "invalid_pack_button_layout": T.PANEL, + "invalid_pack_button_layout/invalid_icon_image": T.IMAGE, + "invalid_pack_button_layout/text_panel": T.STACK_PANEL, + "invalid_pack_button_layout_hover": T.PANEL, + "invalid_pack_button_layout_hover/hover_small": T.IMAGE, + "invalid_pack_button_layout_hover/invalid_icon_image": T.IMAGE, + "invalid_pack_button_layout_hover/text_panel_full_hover": T.PANEL, + "invalid_pack_button_layout_hover/text_panel_full_hover/text_panel": T.STACK_PANEL, + "invalid_pack_button": T.BUTTON, + "invalid_pack_button/default": T.PANEL, + "invalid_pack_button/pressed": T.PANEL, + "invalid_pack_button/hover": T.PANEL, + "empty_resource_pack_button": T.PANEL, + "resource_pack_button_padding": T.PANEL, + "input_button_panel": T.INPUT_PANEL, + "input_button_panel/border_image": T.IMAGE, + "input_button_panel/border_image/button_panel": T.STACK_PANEL, + "input_button_panel/border_image/button_panel/padding_0": T.PANEL, + "input_button_panel/border_image/button_panel/padding_1": T.PANEL, + "input_button_panel/border_image/button_panel/padding_2": T.PANEL, + "input_button_panel/border_image/button_panel/padding_3": T.PANEL, + "input_button_panel/border_image/button_panel/padding_4": T.PANEL, + "input_button_panel/background": T.IMAGE, + "selected_pack_button_layout": T.PANEL, + "selected_pack_button_layout/selected_icon_image": T.IMAGE, + "selected_pack_button_layout/text_panel_small": T.STACK_PANEL, + "selected_pack_button_layout/text_panel_full": T.STACK_PANEL, + "selected_pack_button_layout/read_more_button_panel": T.PANEL, + "selected_pack_button_layout/read_less_button_panel": T.PANEL, + "selected_pack_button_layout_hover": T.PANEL, + "selected_pack_button_layout_hover/hover_small": T.IMAGE, + "selected_pack_button_layout_hover/selected_icon_image": T.IMAGE, + "selected_pack_button_layout_hover/text_panel_small": T.STACK_PANEL, + "selected_pack_button_layout_hover/text_panel_full_hover": T.PANEL, + "selected_pack_button_layout_hover/text_panel_full_hover/text_panel_full": T.STACK_PANEL, + "selected_pack_button_layout_hover/read_more_button_panel": T.PANEL, + "selected_pack_button_layout_hover/read_less_button_panel": T.PANEL, + "selected_pack_button": T.BUTTON, + "selected_pack_button/default": T.PANEL, + "selected_pack_button/pressed": T.PANEL, + "selected_pack_button/hover": T.PANEL, + "selected_pack_movement_button": T.BUTTON, + "selected_pack_transparent_movement_button": T.BUTTON, + "selected_pack_minus_button": T.BUTTON, + "selected_pack_plus_button": T.BUTTON, + "selected_pack_store_button": T.BUTTON, + "selected_pack_store_button_fill": T.BUTTON, + "selected_pack_up_button": T.BUTTON, + "selected_pack_down_button": T.BUTTON, + "selected_pack_warning_button": T.BUTTON, + "selected_pack_options_button": T.BUTTON, + "white_label": T.LABEL, + "gray_label": T.LABEL, + "suggested_content_offers_title_label": T.LABEL, + "available_packs_title_content": T.STACK_PANEL, + "realms_packs_title_content": T.STACK_PANEL, + "unowned_packs_title_content": T.STACK_PANEL, + "selected_packs_title_content": T.STACK_PANEL, + "selected_packs_title_content/selected_packs_title_label": T.LABEL, + "selected_packs_title_content/fill_pad": T.PANEL, + "selected_packs_title_content/icon_panel": T.PANEL, + "selected_packs_title_content/icon_panel/block_icon": T.IMAGE, + "selected_packs_title_content/pad_0": T.PANEL, + "selected_packs_title_content/count": T.LABEL, + "selected_packs_title_content/pad_1": T.PANEL, + "selected_packs_title_content/plus_panel": T.PANEL, + "selected_packs_title_content/plus_panel/plus": T.IMAGE, + "selected_packs_title_content/minus_panel": T.PANEL, + "selected_packs_title_content/minus_panel/minus": T.IMAGE, + "available_packs_title_button": T.BUTTON, + "realms_packs_title_button": T.BUTTON, + "unowned_packs_title_button": T.BUTTON, + "selected_packs_title_button": T.BUTTON, + "name_label": T.LABEL, + "size_label": T.LABEL, + "description_label": T.LABEL, + "pack_label": T.LABEL, + "selected_pack_description_label": T.LABEL, + "available_pack_description_label": T.LABEL, + "realms_pack_description_label": T.LABEL, + "unowned_pack_description_label": T.LABEL, + "selected_pack_name_label": T.LABEL, + "selected_file_size_label": T.LABEL, + "available_pack_name_label": T.LABEL, + "available_file_size_label": T.LABEL, + "realms_pack_name_label": T.LABEL, + "realms_file_size_label": T.LABEL, + "unowned_pack_name_label": T.LABEL, + "unowned_file_size_label": T.LABEL, + "invalid_pack_name_label": T.LABEL, + "invalid_pack_description_label": T.LABEL, + "available_panel": T.PANEL, + "available_panel/selected_packs": T.PANEL, + "checkbox_visuals": T.PANEL, + "header_control": T.TOGGLE, + "header_control/header_description_stack_panel": T.STACK_PANEL, + "header_control/header_description_stack_panel/checkbox_visuals": T.PANEL, + "header_control/header_description_stack_panel/buffer_panel": T.PANEL, + "header_control/header_description_stack_panel/buffer_panel/label": T.LABEL, + "addon_header_control": T.PANEL, + "addon_header_control/header_description_stack_panel": T.STACK_PANEL, + "addon_header_control/header_description_stack_panel/padding_0": T.PANEL, + "addon_header_control/header_description_stack_panel/description_center_panel": T.PANEL, + "addon_header_control/header_description_stack_panel/description_center_panel/label": T.LABEL, + "addon_header_control/header_description_stack_panel/padding_1": T.PANEL, + "addon_header_control/header_description_stack_panel/link_center_panel": T.PANEL, + "addon_header_control/header_description_stack_panel/link_center_panel/addon_link_button": T.BUTTON, + "addon_header_control/header_description_stack_panel/padding_2": T.PANEL, + "panel_bg": T.PANEL, + "panel_bg/black_background": T.IMAGE, + "panel_bg/gray": T.IMAGE, + "addon_panel_bg": T.PANEL, + "addon_panel_bg/black_background": T.IMAGE, + "addon_panel_bg/yellow": T.IMAGE, + "error_panel": T.PANEL, + "error_panel/black_background": T.IMAGE, + "error_panel/black_background/gray": T.IMAGE, + "error_panel/black_background/gray/panel": T.PANEL, + "error_panel/black_background/gray/panel/error_label": T.LABEL, + "selected_stack_panel": T.STACK_PANEL, + "selected_stack_panel/world_template_option_lock_panel": T.PANEL, + "selected_stack_panel/world_template_option_lock_panel/option_info_label": T.PANEL, + "selected_stack_panel/top_panel": T.PANEL, + "selected_stack_panel/top_panel/panel_bg": T.PANEL, + "selected_stack_panel/top_panel/header_control": T.TOGGLE, + "selected_stack_panel/offset_0": T.PANEL, + "selected_stack_panel/addon_stacking_warning_panel": T.PANEL, + "selected_stack_panel/addon_stacking_warning_panel/addon_panel_bg": T.PANEL, + "selected_stack_panel/addon_stacking_warning_panel/header_control": T.PANEL, + "selected_stack_panel/offset_1": T.PANEL, + "selected_stack_panel/selected_packs_title_panel": T.STACK_PANEL, + "selected_stack_panel/selected_packs_title_panel/selected_packs_title_button": T.BUTTON, + "selected_stack_panel/selected_packs_title_panel/tooltip": T.PANEL, + "selected_stack_panel/selected_packs_title_panel/tooltip/button": T.BUTTON, + "selected_stack_panel/selected_pack_section": T.STACK_PANEL, + "selected_stack_panel/selected_pack_section/offset": T.PANEL, + "selected_stack_panel/selected_pack_section/selected_pack_grid": T.STACK_PANEL, + "selected_stack_panel/selected_pack_section/default_item": T.PANEL, + "selected_stack_panel/selected_pack_section/default_item/icon_image": T.IMAGE, + "selected_stack_panel/selected_pack_section/default_item/name_panel": T.PANEL, + "selected_stack_panel/selected_pack_section/default_item/name_panel/white_label": T.LABEL, + "selected_stack_panel/selected_pack_section/default_item/description_panel": T.PANEL, + "selected_stack_panel/selected_pack_section/default_item/description_panel/white_label": T.LABEL, + "selected_stack_panel/selected_pack_section/filler_panel": T.PANEL, + "selected_stack_panel/selected_pack_section/filler_panel/description_label": T.LABEL, + "selected_stack_panel/offset_2": T.PANEL, + "selected_stack_panel/available_packs_title_panel": T.STACK_PANEL, + "selected_stack_panel/available_packs_title_panel/available_packs_title_button": T.BUTTON, + "selected_stack_panel/available_packs_title_panel/tooltip": T.PANEL, + "selected_stack_panel/available_packs_title_panel/tooltip/button": T.BUTTON, + "selected_stack_panel/available_packs_section": T.STACK_PANEL, + "selected_stack_panel/available_packs_section/offset": T.PANEL, + "selected_stack_panel/available_packs_section/empty_panel": T.STACK_PANEL, + "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel": T.PANEL, + "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel/no_packs_text": T.LABEL, + "selected_stack_panel/available_packs_section/empty_panel/to_store_button": T.BUTTON, + "selected_stack_panel/available_packs_section/available_pack_grid": T.STACK_PANEL, + "selected_stack_panel/available_packs_section/invalid_pack_grid": T.STACK_PANEL, + "selected_stack_panel/offset_3": T.PANEL, + "selected_stack_panel/realms_packs_title_button": T.BUTTON, + "selected_stack_panel/realms_packs_section": T.STACK_PANEL, + "selected_stack_panel/realms_packs_section/offset": T.PANEL, + "selected_stack_panel/realms_packs_section/realms_pack_grid": T.STACK_PANEL, + "selected_stack_panel/realms_packs_section/offset_4": T.PANEL, + "selected_stack_panel/offset_4": T.PANEL, + "selected_stack_panel/unowned_packs_title_button": T.BUTTON, + "selected_stack_panel/unowned_packs_section": T.STACK_PANEL, + "selected_stack_panel/unowned_packs_section/offset": T.PANEL, + "selected_stack_panel/unowned_packs_section/unowned_pack_grid": T.STACK_PANEL, + "selected_stack_panel/unowned_packs_section/to_store_button": T.BUTTON, + "selected_stack_panel/unowned_packs_section/offset_4": T.PANEL, + "available_stack_panel": T.STACK_PANEL, + "available_stack_panel/available_packs_title_button": T.BUTTON, + "available_stack_panel/available_pack_grid": T.STACK_PANEL, + "pack_background": T.PANEL, + "pack_background/white_image": T.PANEL, + "pack_background/gray_image": T.IMAGE, + "selected_pack_panel": T.STACK_PANEL, + "selected_pack_panel/selected_pack_button": T.BUTTON, + "selected_pack_panel/pad_0": T.PANEL, + "selected_pack_panel/center_panel": T.PANEL, + "selected_pack_panel/center_panel/visibility_panel": T.PANEL, + "selected_pack_panel/center_panel/visibility_panel/selected_pack_direction_buttons": T.INPUT_PANEL, + "selected_pack_panel/divider": T.PANEL, + "selected_pack_panel/pad_1": T.PANEL, + "available_pack_panel": T.STACK_PANEL, + "available_pack_panel/available_pack_button": T.BUTTON, + "available_pack_panel/pad_0": T.PANEL, + "available_pack_panel/center_panel": T.PANEL, + "available_pack_panel/center_panel/available_pack_direction_buttons": T.INPUT_PANEL, + "available_pack_panel/divider": T.PANEL, + "available_pack_panel/pad_1": T.PANEL, + "realms_pack_panel": T.STACK_PANEL, + "realms_pack_panel/realms_pack_button": T.BUTTON, + "realms_pack_panel/pad_0": T.PANEL, + "realms_pack_panel/center_panel": T.PANEL, + "realms_pack_panel/center_panel/realms_pack_direction_buttons": T.INPUT_PANEL, + "realms_pack_panel/divider": T.PANEL, + "realms_pack_panel/pad_1": T.PANEL, + "unowned_pack_panel": T.STACK_PANEL, + "unowned_pack_panel/unowned_pack_button": T.BUTTON, + "unowned_pack_panel/pad_0": T.PANEL, + "unowned_pack_panel/center_panel": T.PANEL, + "unowned_pack_panel/center_panel/realms_pack_direction_buttons": T.INPUT_PANEL, + "unowned_pack_panel/divider": T.PANEL, + "unowned_pack_panel/pad_1": T.PANEL, + "invalid_pack_panel": T.STACK_PANEL, + "invalid_pack_panel/invalid_pack_button": T.BUTTON, + "invalid_pack_panel/pad_0": T.PANEL, + "invalid_pack_panel/divider": T.PANEL, + "invalid_pack_panel/pad_1": T.PANEL, + "selected_pack_grid": T.STACK_PANEL, + "available_pack_grid": T.STACK_PANEL, + "realms_pack_grid": T.STACK_PANEL, + "unowned_pack_grid": T.STACK_PANEL, + "invalid_pack_grid": T.STACK_PANEL, } export type SafeZoneType = { - corner_image_common: T.IMAGE - corner_bl: T.IMAGE - corner_br: T.IMAGE - corner_tr: T.IMAGE - corner_tl: T.IMAGE - confirm_button: T.BUTTON - title_text: T.LABEL - instructions_text: T.PANEL - "instructions_text/inner_label": T.LABEL - label_button: T.BUTTON - label_button_hover: T.PANEL - "label_button_hover/hover": T.IMAGE - "label_button_hover/hover/button_hover_text": T.PANEL - content_panel: T.STACK_PANEL - "content_panel/safe_zone_slider_all": T.PANEL - "content_panel/safe_zone_slider_x": T.PANEL - "content_panel/safe_zone_slider_y": T.PANEL - "content_panel/screen_position_slider_x": T.PANEL - "content_panel/screen_position_slider_y": T.PANEL - "content_panel/instruction_text_button": T.BUTTON - "content_panel/instruction_text_button/default": T.PANEL - "content_panel/instruction_text_button/pressed": T.PANEL - "content_panel/instruction_text_button/hover": T.PANEL - safe_zone_screen: T.SCREEN - "safe_zone_screen/safe_zone_bounds_markers": T.PANEL - "safe_zone_screen/safe_zone_bounds_markers/top_left_marker": T.IMAGE - "safe_zone_screen/safe_zone_bounds_markers/top_right_marker": T.IMAGE - "safe_zone_screen/safe_zone_bounds_markers/bottom_left_marker": T.IMAGE - "safe_zone_screen/safe_zone_bounds_markers/bottom_right_marker": T.IMAGE - "safe_zone_screen/main_content_panel": T.PANEL - "safe_zone_screen/main_content_panel/common_panel": T.PANEL - "safe_zone_screen/main_content_panel/title_text": T.LABEL - "safe_zone_screen/main_content_panel/scrolling_panel": T.PANEL - "safe_zone_screen/main_content_panel/confirm_button": T.BUTTON + "corner_image_common": T.IMAGE, + "corner_bl": T.IMAGE, + "corner_br": T.IMAGE, + "corner_tr": T.IMAGE, + "corner_tl": T.IMAGE, + "confirm_button": T.BUTTON, + "title_text": T.LABEL, + "instructions_text": T.PANEL, + "instructions_text/inner_label": T.LABEL, + "label_button": T.BUTTON, + "label_button_hover": T.PANEL, + "label_button_hover/hover": T.IMAGE, + "label_button_hover/hover/button_hover_text": T.PANEL, + "content_panel": T.STACK_PANEL, + "content_panel/safe_zone_slider_all": T.PANEL, + "content_panel/safe_zone_slider_x": T.PANEL, + "content_panel/safe_zone_slider_y": T.PANEL, + "content_panel/screen_position_slider_x": T.PANEL, + "content_panel/screen_position_slider_y": T.PANEL, + "content_panel/instruction_text_button": T.BUTTON, + "content_panel/instruction_text_button/default": T.PANEL, + "content_panel/instruction_text_button/pressed": T.PANEL, + "content_panel/instruction_text_button/hover": T.PANEL, + "safe_zone_screen": T.SCREEN, + "safe_zone_screen/safe_zone_bounds_markers": T.PANEL, + "safe_zone_screen/safe_zone_bounds_markers/top_left_marker": T.IMAGE, + "safe_zone_screen/safe_zone_bounds_markers/top_right_marker": T.IMAGE, + "safe_zone_screen/safe_zone_bounds_markers/bottom_left_marker": T.IMAGE, + "safe_zone_screen/safe_zone_bounds_markers/bottom_right_marker": T.IMAGE, + "safe_zone_screen/main_content_panel": T.PANEL, + "safe_zone_screen/main_content_panel/common_panel": T.PANEL, + "safe_zone_screen/main_content_panel/title_text": T.LABEL, + "safe_zone_screen/main_content_panel/scrolling_panel": T.PANEL, + "safe_zone_screen/main_content_panel/confirm_button": T.BUTTON, } export type StorageMigrationCommonType = { - progress_panel: T.PANEL - "progress_panel/common_panel": T.PANEL - "progress_panel/base_content": T.PANEL - "progress_panel/base_content/progress_title_text": T.LABEL - "progress_panel/base_content/progress_bar_text": T.LABEL - "progress_panel/inside_content": T.STACK_PANEL - "progress_panel/inside_content/size_label": T.LABEL - "progress_panel/inside_content/padding_1": T.PANEL - "progress_panel/inside_content/loading_bar_panel": T.PANEL - "progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": T.PANEL - "progress_panel/inside_content/loading_bar_panel/progress_loading_bars": T.IMAGE - "progress_panel/inside_content/padding_3": T.PANEL - label: T.LABEL - base_button: T.BUTTON - retry_button: T.BUTTON - go_to_faq_button: T.BUTTON - next_button: T.BUTTON - get_started_button: T.BUTTON - start_transfer_button: T.BUTTON - finished_main_menu_button: T.BUTTON - start_transfer_out_of_space_button: T.BUTTON - continue_out_of_space_button: T.BUTTON - resume_transfer_button: T.BUTTON - exit_button: T.BUTTON - retry_help_button_panel: T.STACK_PANEL - "retry_help_button_panel/retry": T.BUTTON - "retry_help_button_panel/padding": T.PANEL - "retry_help_button_panel/help": T.BUTTON - modal_no_buttons: T.PANEL - modal_one_button: T.PANEL - modal_two_buttons: T.PANEL - base_child_control: T.PANEL - "base_child_control/scrolling_panel": T.PANEL - file_size_description: T.STACK_PANEL - "file_size_description/description": T.LABEL - "file_size_description/padding": T.PANEL - "file_size_description/size_stack": T.STACK_PANEL - "file_size_description/size_stack/file_text": T.LABEL - "file_size_description/size_stack/padding_1": T.PANEL - "file_size_description/size_stack/file_size_total": T.LABEL - "file_size_description/size_stack/padding_2": T.PANEL - "file_size_description/size_stack/file_size_available": T.LABEL - "file_size_description/file_location": T.LABEL - error_icon_and_description: T.STACK_PANEL - "error_icon_and_description/error_image": T.IMAGE - "error_icon_and_description/description": T.LABEL - file_size_description_with_error: T.STACK_PANEL - "file_size_description_with_error/file_size": T.STACK_PANEL - "file_size_description_with_error/padding": T.PANEL - "file_size_description_with_error/error_icon_and_description": T.STACK_PANEL - start_transfer: T.PANEL - start_transfer_content: T.STACK_PANEL - resume_transfer: T.PANEL - resume_transfer_content: T.STACK_PANEL - "resume_transfer_content/file_size": T.STACK_PANEL - transfer_error_out_of_space: T.PANEL - transfer_error_out_of_space_content: T.STACK_PANEL + "progress_panel": T.PANEL, + "progress_panel/common_panel": T.PANEL, + "progress_panel/base_content": T.PANEL, + "progress_panel/base_content/progress_title_text": T.LABEL, + "progress_panel/base_content/progress_bar_text": T.LABEL, + "progress_panel/inside_content": T.STACK_PANEL, + "progress_panel/inside_content/size_label": T.LABEL, + "progress_panel/inside_content/padding_1": T.PANEL, + "progress_panel/inside_content/loading_bar_panel": T.PANEL, + "progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": T.PANEL, + "progress_panel/inside_content/loading_bar_panel/progress_loading_bars": T.IMAGE, + "progress_panel/inside_content/padding_3": T.PANEL, + "label": T.LABEL, + "base_button": T.BUTTON, + "retry_button": T.BUTTON, + "go_to_faq_button": T.BUTTON, + "next_button": T.BUTTON, + "get_started_button": T.BUTTON, + "start_transfer_button": T.BUTTON, + "finished_main_menu_button": T.BUTTON, + "start_transfer_out_of_space_button": T.BUTTON, + "continue_out_of_space_button": T.BUTTON, + "resume_transfer_button": T.BUTTON, + "exit_button": T.BUTTON, + "retry_help_button_panel": T.STACK_PANEL, + "retry_help_button_panel/retry": T.BUTTON, + "retry_help_button_panel/padding": T.PANEL, + "retry_help_button_panel/help": T.BUTTON, + "modal_no_buttons": T.PANEL, + "modal_one_button": T.PANEL, + "modal_two_buttons": T.PANEL, + "base_child_control": T.PANEL, + "base_child_control/scrolling_panel": T.PANEL, + "file_size_description": T.STACK_PANEL, + "file_size_description/description": T.LABEL, + "file_size_description/padding": T.PANEL, + "file_size_description/size_stack": T.STACK_PANEL, + "file_size_description/size_stack/file_text": T.LABEL, + "file_size_description/size_stack/padding_1": T.PANEL, + "file_size_description/size_stack/file_size_total": T.LABEL, + "file_size_description/size_stack/padding_2": T.PANEL, + "file_size_description/size_stack/file_size_available": T.LABEL, + "file_size_description/file_location": T.LABEL, + "error_icon_and_description": T.STACK_PANEL, + "error_icon_and_description/error_image": T.IMAGE, + "error_icon_and_description/description": T.LABEL, + "file_size_description_with_error": T.STACK_PANEL, + "file_size_description_with_error/file_size": T.STACK_PANEL, + "file_size_description_with_error/padding": T.PANEL, + "file_size_description_with_error/error_icon_and_description": T.STACK_PANEL, + "start_transfer": T.PANEL, + "start_transfer_content": T.STACK_PANEL, + "resume_transfer": T.PANEL, + "resume_transfer_content": T.STACK_PANEL, + "resume_transfer_content/file_size": T.STACK_PANEL, + "transfer_error_out_of_space": T.PANEL, + "transfer_error_out_of_space_content": T.STACK_PANEL, } export type StorageMigrationGenericType = { - storage_migration_generic_screen: T.SCREEN - modal_screen_content: T.PANEL - "modal_screen_content/modal_progress_panel_no_cancel": T.PANEL - "modal_screen_content/popup_dialog_factory": T.FACTORY - start_transfer: T.PANEL - start_transfer_out_of_space: T.PANEL - start_transfer_out_of_space_content: T.STACK_PANEL - "start_transfer_out_of_space_content/base_start_content": T.STACK_PANEL - "start_transfer_out_of_space_content/padding": T.PANEL - "start_transfer_out_of_space_content/error_icon_and_description": T.STACK_PANEL - finished: T.PANEL - finished_content: T.STACK_PANEL - "finished_content/description": T.LABEL - resume_transfer_out_of_space: T.PANEL - resume_transfer_out_of_space_content: T.STACK_PANEL - transfer_error: T.PANEL - transfer_error_content: T.STACK_PANEL - "transfer_error_content/description": T.LABEL - transfer_error_out_of_space: T.PANEL + "storage_migration_generic_screen": T.SCREEN, + "modal_screen_content": T.PANEL, + "modal_screen_content/modal_progress_panel_no_cancel": T.PANEL, + "modal_screen_content/popup_dialog_factory": T.FACTORY, + "start_transfer": T.PANEL, + "start_transfer_out_of_space": T.PANEL, + "start_transfer_out_of_space_content": T.STACK_PANEL, + "start_transfer_out_of_space_content/base_start_content": T.STACK_PANEL, + "start_transfer_out_of_space_content/padding": T.PANEL, + "start_transfer_out_of_space_content/error_icon_and_description": T.STACK_PANEL, + "finished": T.PANEL, + "finished_content": T.STACK_PANEL, + "finished_content/description": T.LABEL, + "resume_transfer_out_of_space": T.PANEL, + "resume_transfer_out_of_space_content": T.STACK_PANEL, + "transfer_error": T.PANEL, + "transfer_error_content": T.STACK_PANEL, + "transfer_error_content/description": T.LABEL, + "transfer_error_out_of_space": T.PANEL, } export type ScoreboardType = { - scoreboard_sidebar_score: T.LABEL - scoreboard_sidebar_player: T.LABEL - scoreboard_sidebar: T.PANEL - "scoreboard_sidebar/main": T.IMAGE - "scoreboard_sidebar/main/displayed_objective": T.LABEL - "scoreboard_sidebar/main/lists": T.PANEL - "scoreboard_sidebar/main/lists/players": T.STACK_PANEL - "scoreboard_sidebar/main/lists/horizontal_padding": T.PANEL - "scoreboard_sidebar/main/lists/scores": T.STACK_PANEL - "scoreboard_sidebar/displayed_objective_background": T.IMAGE - scoreboard_player_list: T.STACK_PANEL - "scoreboard_player_list/vertical_padding_0": T.PANEL - "scoreboard_player_list/social_buttons_panel": T.STACK_PANEL - "scoreboard_player_list/vertical_padding_1": T.PANEL - "scoreboard_player_list/permissions_button": T.BUTTON - "scoreboard_player_list/vertical_padding_2": T.PANEL - "scoreboard_player_list/players_label": T.LABEL - "scoreboard_player_list/vertical_padding_3": T.PANEL - "scoreboard_player_list/scored_players_grid_panel": T.STACK_PANEL - "scoreboard_player_list/vertical_padding_4": T.PANEL - "scoreboard_player_list/unscored_players_grid_panel": T.STACK_PANEL - "scoreboard_player_list/vertical_padding_5": T.PANEL - "scoreboard_player_list/invite_players_button_panel": T.PANEL - "scoreboard_player_list/vertical_padding_6": T.PANEL - "scoreboard_player_list/disconnected_from_multiplayer_label_panel": T.STACK_PANEL - "scoreboard_player_list/vertical_padding_7": T.PANEL - list_objective_label: T.LABEL - player_rank_panel: T.PANEL - "player_rank_panel/player_rank_bg": T.IMAGE - "player_rank_panel/player_rank_bg/player_rank": T.LABEL - player_icon_panel: T.PANEL - "player_icon_panel/player_icon": T.IMAGE - "player_icon_panel/player_icon/player_panel_black_border": T.IMAGE - "player_icon_panel/permission_icon": T.IMAGE - player_name: T.LABEL - player_score: T.LABEL - player_details: T.STACK_PANEL - "player_details/name_panel": T.PANEL - "player_details/name_panel/name": T.LABEL - "player_details/score_panel": T.PANEL - "player_details/score_panel/score": T.LABEL - player_content: T.STACK_PANEL - "player_content/icon": T.PANEL - "player_content/padding": T.PANEL - "player_content/details": T.STACK_PANEL - base_player_button: T.BUTTON - player_panel: T.STACK_PANEL - "player_panel/rank_base": T.PANEL - "player_panel/rank_base/player_rank": T.PANEL - "player_panel/player_button": T.BUTTON - players_grid_list: T.STACK_PANEL - players_unscored_grid_list: T.STACK_PANEL - players_scored_grid_list: T.STACK_PANEL + "scoreboard_sidebar_score": T.LABEL, + "scoreboard_sidebar_player": T.LABEL, + "scoreboard_sidebar": T.PANEL, + "scoreboard_sidebar/main": T.IMAGE, + "scoreboard_sidebar/main/displayed_objective": T.LABEL, + "scoreboard_sidebar/main/lists": T.PANEL, + "scoreboard_sidebar/main/lists/players": T.STACK_PANEL, + "scoreboard_sidebar/main/lists/horizontal_padding": T.PANEL, + "scoreboard_sidebar/main/lists/scores": T.STACK_PANEL, + "scoreboard_sidebar/displayed_objective_background": T.IMAGE, + "scoreboard_player_list": T.STACK_PANEL, + "scoreboard_player_list/vertical_padding_0": T.PANEL, + "scoreboard_player_list/social_buttons_panel": T.STACK_PANEL, + "scoreboard_player_list/vertical_padding_1": T.PANEL, + "scoreboard_player_list/permissions_button": T.BUTTON, + "scoreboard_player_list/vertical_padding_2": T.PANEL, + "scoreboard_player_list/players_label": T.LABEL, + "scoreboard_player_list/vertical_padding_3": T.PANEL, + "scoreboard_player_list/scored_players_grid_panel": T.STACK_PANEL, + "scoreboard_player_list/vertical_padding_4": T.PANEL, + "scoreboard_player_list/unscored_players_grid_panel": T.STACK_PANEL, + "scoreboard_player_list/vertical_padding_5": T.PANEL, + "scoreboard_player_list/invite_players_button_panel": T.PANEL, + "scoreboard_player_list/vertical_padding_6": T.PANEL, + "scoreboard_player_list/disconnected_from_multiplayer_label_panel": T.STACK_PANEL, + "scoreboard_player_list/vertical_padding_7": T.PANEL, + "list_objective_label": T.LABEL, + "player_rank_panel": T.PANEL, + "player_rank_panel/player_rank_bg": T.IMAGE, + "player_rank_panel/player_rank_bg/player_rank": T.LABEL, + "player_icon_panel": T.PANEL, + "player_icon_panel/player_icon": T.IMAGE, + "player_icon_panel/player_icon/player_panel_black_border": T.IMAGE, + "player_icon_panel/permission_icon": T.IMAGE, + "player_name": T.LABEL, + "player_score": T.LABEL, + "player_details": T.STACK_PANEL, + "player_details/name_panel": T.PANEL, + "player_details/name_panel/name": T.LABEL, + "player_details/score_panel": T.PANEL, + "player_details/score_panel/score": T.LABEL, + "player_content": T.STACK_PANEL, + "player_content/icon": T.PANEL, + "player_content/padding": T.PANEL, + "player_content/details": T.STACK_PANEL, + "base_player_button": T.BUTTON, + "player_panel": T.STACK_PANEL, + "player_panel/rank_base": T.PANEL, + "player_panel/rank_base/player_rank": T.PANEL, + "player_panel/player_button": T.BUTTON, + "players_grid_list": T.STACK_PANEL, + "players_unscored_grid_list": T.STACK_PANEL, + "players_scored_grid_list": T.STACK_PANEL, } export type ScreenshotType = { - screenshot_flash_image: T.IMAGE - screenshot_screen: T.SCREEN - screenshot_screen_content: T.PANEL - "screenshot_screen_content/transparent_background": T.IMAGE - "screenshot_screen_content/screenshot_flash": T.IMAGE + "screenshot_flash_image": T.IMAGE, + "screenshot_screen": T.SCREEN, + "screenshot_screen_content": T.PANEL, + "screenshot_screen_content/transparent_background": T.IMAGE, + "screenshot_screen_content/screenshot_flash": T.IMAGE, } export type SelectWorldType = { - popup_dialog__add_on_common: T.INPUT_PANEL - popup_dialog__add_on_common_no_buttons: T.INPUT_PANEL - "popup_dialog__add_on_common_no_buttons/popup_dialog_bg": T.IMAGE - "popup_dialog__add_on_common_no_buttons/popup_dialog_message": T.LABEL - "popup_dialog__add_on_common_no_buttons/close_button": T.BUTTON - "popup_dialog__add_on_common_no_buttons/add_on_popup_content_panel": T.PANEL - popup_dialog__add_on_common_two_buttons: T.INPUT_PANEL - "popup_dialog__add_on_common_two_buttons/popup_dialog_bg": T.IMAGE - "popup_dialog__add_on_common_two_buttons/popup_dialog_message": T.LABEL - "popup_dialog__add_on_common_two_buttons/close_button": T.BUTTON - "popup_dialog__add_on_common_two_buttons/add_on_popup_content_panel": T.PANEL - "popup_dialog__add_on_common_two_buttons/button_copy": T.BUTTON - "popup_dialog__add_on_common_two_buttons/button_continue": T.BUTTON - add_on_button_copy: T.BUTTON - add_on_button_continue: T.BUTTON - add_on_popup_content_panel: T.PANEL - "add_on_popup_content_panel/popup_content": T.UNKNOWN - popup_dialog__activate_add_on: T.INPUT_PANEL - popup_dialog__activate_add_on_select_world: T.INPUT_PANEL - popup_dialog__copy_local_world: T.INPUT_PANEL - popup_dialog__copy_realms_world: T.INPUT_PANEL - copy_local_world_panel: T.STACK_PANEL - "copy_local_world_panel/padding_top": T.PANEL - "copy_local_world_panel/text_box": T.LABEL - "copy_local_world_panel/padding_middle": T.PANEL - "copy_local_world_panel/text_box2": T.LABEL - copy_realms_world_panel: T.STACK_PANEL - "copy_realms_world_panel/padding_top": T.PANEL - "copy_realms_world_panel/text_box": T.LABEL - "copy_realms_world_panel/padding_middle": T.PANEL - "copy_realms_world_panel/text_box2": T.LABEL - new_or_existing_world_panel: T.STACK_PANEL - "new_or_existing_world_panel/padding_left": T.PANEL - "new_or_existing_world_panel/world_icon_existing": T.STACK_PANEL - "new_or_existing_world_panel/padding_middle": T.PANEL - "new_or_existing_world_panel/world_icon_new": T.STACK_PANEL - "new_or_existing_world_panel/padding_right": T.PANEL - world_icon_with_button: T.STACK_PANEL - "world_icon_with_button/padding_top": T.PANEL - "world_icon_with_button/world_icon": T.PANEL - "world_icon_with_button/button": T.BUTTON - "world_icon_with_button/padding_bottom": T.PANEL - world_icon_new: T.IMAGE - "world_icon_new/plus_button": T.IMAGE - world_icon_existing: T.IMAGE - select_world_panel: T.PANEL - select_world_list: T.STACK_PANEL - "select_world_list/realms_world_label": T.LABEL - "select_world_list/realms_world_list": T.GRID - "select_world_list/padding_middle": T.PANEL - "select_world_list/local_world_label": T.LABEL - "select_world_list/local_world_list": T.GRID - "select_world_list/padding_end": T.PANEL - local_world_item_button: T.BUTTON - realms_world_item_button: T.BUTTON - select_world_screen_content: T.PANEL - "select_world_screen_content/popup_dialog_factory": T.FACTORY - select_world_popup_screen: T.SCREEN + "popup_dialog__add_on_common": T.INPUT_PANEL, + "popup_dialog__add_on_common_no_buttons": T.INPUT_PANEL, + "popup_dialog__add_on_common_no_buttons/popup_dialog_bg": T.IMAGE, + "popup_dialog__add_on_common_no_buttons/popup_dialog_message": T.LABEL, + "popup_dialog__add_on_common_no_buttons/close_button": T.BUTTON, + "popup_dialog__add_on_common_no_buttons/add_on_popup_content_panel": T.PANEL, + "popup_dialog__add_on_common_two_buttons": T.INPUT_PANEL, + "popup_dialog__add_on_common_two_buttons/popup_dialog_bg": T.IMAGE, + "popup_dialog__add_on_common_two_buttons/popup_dialog_message": T.LABEL, + "popup_dialog__add_on_common_two_buttons/close_button": T.BUTTON, + "popup_dialog__add_on_common_two_buttons/add_on_popup_content_panel": T.PANEL, + "popup_dialog__add_on_common_two_buttons/button_copy": T.BUTTON, + "popup_dialog__add_on_common_two_buttons/button_continue": T.BUTTON, + "add_on_button_copy": T.BUTTON, + "add_on_button_continue": T.BUTTON, + "add_on_popup_content_panel": T.PANEL, + "add_on_popup_content_panel/popup_content": T.UNKNOWN, + "popup_dialog__activate_add_on": T.INPUT_PANEL, + "popup_dialog__activate_add_on_select_world": T.INPUT_PANEL, + "popup_dialog__copy_local_world": T.INPUT_PANEL, + "popup_dialog__copy_realms_world": T.INPUT_PANEL, + "copy_local_world_panel": T.STACK_PANEL, + "copy_local_world_panel/padding_top": T.PANEL, + "copy_local_world_panel/text_box": T.LABEL, + "copy_local_world_panel/padding_middle": T.PANEL, + "copy_local_world_panel/text_box2": T.LABEL, + "copy_realms_world_panel": T.STACK_PANEL, + "copy_realms_world_panel/padding_top": T.PANEL, + "copy_realms_world_panel/text_box": T.LABEL, + "copy_realms_world_panel/padding_middle": T.PANEL, + "copy_realms_world_panel/text_box2": T.LABEL, + "new_or_existing_world_panel": T.STACK_PANEL, + "new_or_existing_world_panel/padding_left": T.PANEL, + "new_or_existing_world_panel/world_icon_existing": T.STACK_PANEL, + "new_or_existing_world_panel/padding_middle": T.PANEL, + "new_or_existing_world_panel/world_icon_new": T.STACK_PANEL, + "new_or_existing_world_panel/padding_right": T.PANEL, + "world_icon_with_button": T.STACK_PANEL, + "world_icon_with_button/padding_top": T.PANEL, + "world_icon_with_button/world_icon": T.PANEL, + "world_icon_with_button/button": T.BUTTON, + "world_icon_with_button/padding_bottom": T.PANEL, + "world_icon_new": T.IMAGE, + "world_icon_new/plus_button": T.IMAGE, + "world_icon_existing": T.IMAGE, + "select_world_panel": T.PANEL, + "select_world_list": T.STACK_PANEL, + "select_world_list/realms_world_label": T.LABEL, + "select_world_list/realms_world_list": T.GRID, + "select_world_list/padding_middle": T.PANEL, + "select_world_list/local_world_label": T.LABEL, + "select_world_list/local_world_list": T.GRID, + "select_world_list/padding_end": T.PANEL, + "local_world_item_button": T.BUTTON, + "realms_world_item_button": T.BUTTON, + "select_world_screen_content": T.PANEL, + "select_world_screen_content/popup_dialog_factory": T.FACTORY, + "select_world_popup_screen": T.SCREEN, } export type ServerFormType = { - third_party_server_screen: T.SCREEN - main_screen_content: T.PANEL - "main_screen_content/server_form_factory": T.FACTORY - long_form: T.PANEL - long_form_panel: T.STACK_PANEL - "long_form_panel/scrolling_panel": T.PANEL - long_form_scrolling_content: T.STACK_PANEL - "long_form_scrolling_content/label_offset_panel": T.PANEL - "long_form_scrolling_content/label_offset_panel/main_label": T.LABEL - "long_form_scrolling_content/padding": T.PANEL - "long_form_scrolling_content/wrapping_panel": T.PANEL - "long_form_scrolling_content/wrapping_panel/long_form_dynamic_buttons_panel": T.STACK_PANEL - long_form_dynamic_buttons_panel: T.STACK_PANEL - dynamic_button: T.STACK_PANEL - "dynamic_button/panel_name": T.PANEL - "dynamic_button/panel_name/image": T.IMAGE - "dynamic_button/panel_name/progress": T.IMAGE - "dynamic_button/form_button": T.BUTTON - dynamic_label: T.PANEL - dynamic_header: T.PANEL - custom_form: T.PANEL - custom_form_panel: T.PANEL - generated_contents: T.STACK_PANEL - custom_form_scrolling_content: T.STACK_PANEL - "custom_form_scrolling_content/generated_form": T.STACK_PANEL - "custom_form_scrolling_content/submit_button": T.BUTTON - custom_label: T.PANEL - custom_header: T.PANEL - custom_toggle: T.PANEL - custom_slider: T.PANEL - custom_step_slider: T.PANEL - custom_dropdown: T.PANEL - "custom_dropdown/dropdown": T.PANEL - custom_dropdown_content: T.PANEL - custom_dropdown_radio: T.PANEL - custom_input: T.PANEL + "third_party_server_screen": T.SCREEN, + "main_screen_content": T.PANEL, + "main_screen_content/server_form_factory": T.FACTORY, + "long_form": T.PANEL, + "long_form_panel": T.STACK_PANEL, + "long_form_panel/scrolling_panel": T.PANEL, + "long_form_scrolling_content": T.STACK_PANEL, + "long_form_scrolling_content/label_offset_panel": T.PANEL, + "long_form_scrolling_content/label_offset_panel/main_label": T.LABEL, + "long_form_scrolling_content/padding": T.PANEL, + "long_form_scrolling_content/wrapping_panel": T.PANEL, + "long_form_scrolling_content/wrapping_panel/long_form_dynamic_buttons_panel": T.STACK_PANEL, + "long_form_dynamic_buttons_panel": T.STACK_PANEL, + "dynamic_button": T.STACK_PANEL, + "dynamic_button/panel_name": T.PANEL, + "dynamic_button/panel_name/image": T.IMAGE, + "dynamic_button/panel_name/progress": T.IMAGE, + "dynamic_button/form_button": T.BUTTON, + "dynamic_label": T.PANEL, + "dynamic_header": T.PANEL, + "custom_form": T.PANEL, + "custom_form_panel": T.PANEL, + "generated_contents": T.STACK_PANEL, + "custom_form_scrolling_content": T.STACK_PANEL, + "custom_form_scrolling_content/generated_form": T.STACK_PANEL, + "custom_form_scrolling_content/submit_button": T.BUTTON, + "custom_label": T.PANEL, + "custom_header": T.PANEL, + "custom_toggle": T.PANEL, + "custom_slider": T.PANEL, + "custom_step_slider": T.PANEL, + "custom_dropdown": T.PANEL, + "custom_dropdown/dropdown": T.PANEL, + "custom_dropdown_content": T.PANEL, + "custom_dropdown_radio": T.PANEL, + "custom_input": T.PANEL, } export type SettingsType = { - settings_screen_base: T.SCREEN - screen_world_create: T.SCREEN - screen_template_create: T.SCREEN - screen_world_edit: T.SCREEN - screen_controls_and_settings: T.SCREEN - screen_world_controls_and_settings: T.SCREEN - screen_realm_controls_and_settings: T.SCREEN - screen_realm_member_controls_and_settings: T.SCREEN - screen_realm_settings: T.SCREEN - screen_world_slot_edit: T.SCREEN - screen_realm_manage: T.SCREEN - screen_realm_invite_link_settings: T.SCREEN - selector_stack_panel: T.STACK_PANEL - "selector_stack_panel/spacer_0": T.PANEL - "selector_stack_panel/accessibility_button": T.PANEL - "selector_stack_panel/spacer_1": T.PANEL - "selector_stack_panel/how_to_play_button": T.PANEL - "selector_stack_panel/spacer_01": T.PANEL - "selector_stack_panel/world_selector_pane": T.STACK_PANEL - "selector_stack_panel/realm_selector_pane": T.STACK_PANEL - "selector_stack_panel/controls_and_settings_selector_pane": T.STACK_PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_1": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_1_no_spatial": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_1": T.LABEL - "selector_stack_panel/controls_and_settings_selector_pane/keyboard_and_mouse_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_01": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/controller_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_02": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/switch_controller_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_03": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/touch_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_04": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_04_no_spatial": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_2": T.LABEL - "selector_stack_panel/controls_and_settings_selector_pane/party_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_05": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_05_no_spatial": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_3": T.LABEL - "selector_stack_panel/controls_and_settings_selector_pane/general_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_06": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/video_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_07": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/sound_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_08": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/account_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_09": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/view_subscriptions_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_10": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/global_texture_pack_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_11": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/storage_management_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_12": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/edu_cloud_storage_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_13": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/language_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_14": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/creator_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_15": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/preview_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_4": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_4_no_spatial": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_4": T.LABEL - "selector_stack_panel/controls_and_settings_selector_pane/debug_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_16": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/discovery_debug_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_17": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/ui_debug_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_18": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/edu_debug_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_19": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/marketplace_debug_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_20": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/gatherings_debug_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_21": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/flighting_debug_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_22": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/realms_debug_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_23": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/automation_button": T.PANEL - "selector_stack_panel/spacer_24": T.PANEL - "selector_stack_panel/addons_selector_panel": T.STACK_PANEL - "selector_stack_panel/realms_invite_link_settings_pane": T.STACK_PANEL - section_content_panels: T.PANEL - "section_content_panels/realm_invite_link_settings_content_panels": T.PANEL - "section_content_panels/world_sections": T.STACK_PANEL - "section_content_panels/world_sections/game_section": T.STACK_PANEL - "section_content_panels/world_sections/classroom_section_panel": T.PANEL - "section_content_panels/world_sections/classroom_section_panel/classroom_section": T.UNKNOWN - "section_content_panels/world_sections/server_section": T.STACK_PANEL - "section_content_panels/world_sections/multiplayer_section": T.STACK_PANEL - "section_content_panels/world_sections/edu_cloud_section": T.STACK_PANEL - "section_content_panels/world_sections/debug_section": T.STACK_PANEL - "section_content_panels/packs_sections": T.STACK_PANEL - "section_content_panels/packs_sections/level_texture_pack_section": T.STACK_PANEL - "section_content_panels/packs_sections/addon_section": T.STACK_PANEL - "section_content_panels/section_content_panels": T.PANEL - "section_content_panels/general_and_controls_sections": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/accessibility_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/accessibility_section_ore_ui": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section_ore_ui": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/controller_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/touch_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/party_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/general_tab_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/general_tab_section_ore_ui": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/account_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/account_section_ore_ui": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/global_texture_pack_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/storage_management_header": T.PANEL - "section_content_panels/general_and_controls_sections/storage_management_section": T.PANEL - "section_content_panels/general_and_controls_sections/edu_cloud_storage_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/creator_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/video_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/video_section_ore_ui": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/view_subscriptions_prerelease_section": T.PANEL - "section_content_panels/general_and_controls_sections/view_subscriptions_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/sound_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/sound_section_ore_ui": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/language_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/language_section_ore_ui": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/preview_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/debug_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/ui_debug_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/edu_debug_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/marketplace_debug_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/gatherings_debug_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/flighting_debug_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/realms_debug_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/automation_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/discovery_debug_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/how_to_play_section": T.STACK_PANEL - section_header_panels: T.PANEL - "section_header_panels/world_sections": T.STACK_PANEL - "section_header_panels/general_and_controls_sections": T.STACK_PANEL - section_footer_panels: T.PANEL - "section_footer_panels/world_sections": T.STACK_PANEL - "section_footer_panels/general_and_controls_sections": T.STACK_PANEL - "section_footer_panels/general_and_controls_sections/storage_management_footer": T.PANEL + "settings_screen_base": T.SCREEN, + "screen_world_create": T.SCREEN, + "screen_template_create": T.SCREEN, + "screen_world_edit": T.SCREEN, + "screen_controls_and_settings": T.SCREEN, + "screen_world_controls_and_settings": T.SCREEN, + "screen_realm_controls_and_settings": T.SCREEN, + "screen_realm_member_controls_and_settings": T.SCREEN, + "screen_realm_settings": T.SCREEN, + "screen_world_slot_edit": T.SCREEN, + "screen_realm_manage": T.SCREEN, + "screen_realm_invite_link_settings": T.SCREEN, + "selector_stack_panel": T.STACK_PANEL, + "selector_stack_panel/spacer_0": T.PANEL, + "selector_stack_panel/accessibility_button": T.PANEL, + "selector_stack_panel/spacer_1": T.PANEL, + "selector_stack_panel/how_to_play_button": T.PANEL, + "selector_stack_panel/spacer_01": T.PANEL, + "selector_stack_panel/world_selector_pane": T.STACK_PANEL, + "selector_stack_panel/realm_selector_pane": T.STACK_PANEL, + "selector_stack_panel/controls_and_settings_selector_pane": T.STACK_PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_1": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_1_no_spatial": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_1": T.LABEL, + "selector_stack_panel/controls_and_settings_selector_pane/keyboard_and_mouse_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_01": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/controller_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_02": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/switch_controller_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_03": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/touch_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_04": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_04_no_spatial": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_2": T.LABEL, + "selector_stack_panel/controls_and_settings_selector_pane/party_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_05": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_05_no_spatial": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_3": T.LABEL, + "selector_stack_panel/controls_and_settings_selector_pane/general_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_06": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/video_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_07": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/sound_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_08": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/account_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_09": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/view_subscriptions_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_10": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/global_texture_pack_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_11": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/storage_management_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_12": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/edu_cloud_storage_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_13": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/language_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_14": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/creator_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_15": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/preview_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_4": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_4_no_spatial": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_4": T.LABEL, + "selector_stack_panel/controls_and_settings_selector_pane/debug_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_16": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/discovery_debug_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_17": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/ui_debug_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_18": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/edu_debug_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_19": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/marketplace_debug_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_20": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/gatherings_debug_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_21": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/flighting_debug_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_22": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/realms_debug_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_23": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/automation_button": T.PANEL, + "selector_stack_panel/spacer_24": T.PANEL, + "selector_stack_panel/addons_selector_panel": T.STACK_PANEL, + "selector_stack_panel/realms_invite_link_settings_pane": T.STACK_PANEL, + "section_content_panels": T.PANEL, + "section_content_panels/realm_invite_link_settings_content_panels": T.PANEL, + "section_content_panels/world_sections": T.STACK_PANEL, + "section_content_panels/world_sections/game_section": T.STACK_PANEL, + "section_content_panels/world_sections/classroom_section_panel": T.PANEL, + "section_content_panels/world_sections/classroom_section_panel/classroom_section": T.UNKNOWN, + "section_content_panels/world_sections/server_section": T.STACK_PANEL, + "section_content_panels/world_sections/multiplayer_section": T.STACK_PANEL, + "section_content_panels/world_sections/edu_cloud_section": T.STACK_PANEL, + "section_content_panels/world_sections/debug_section": T.STACK_PANEL, + "section_content_panels/packs_sections": T.STACK_PANEL, + "section_content_panels/packs_sections/level_texture_pack_section": T.STACK_PANEL, + "section_content_panels/packs_sections/addon_section": T.STACK_PANEL, + "section_content_panels/section_content_panels": T.PANEL, + "section_content_panels/general_and_controls_sections": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/accessibility_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/accessibility_section_ore_ui": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section_ore_ui": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/controller_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/touch_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/party_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/general_tab_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/general_tab_section_ore_ui": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/account_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/account_section_ore_ui": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/global_texture_pack_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/storage_management_header": T.PANEL, + "section_content_panels/general_and_controls_sections/storage_management_section": T.PANEL, + "section_content_panels/general_and_controls_sections/edu_cloud_storage_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/creator_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/video_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/video_section_ore_ui": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/view_subscriptions_prerelease_section": T.PANEL, + "section_content_panels/general_and_controls_sections/view_subscriptions_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/sound_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/sound_section_ore_ui": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/language_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/language_section_ore_ui": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/preview_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/debug_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/ui_debug_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/edu_debug_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/marketplace_debug_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/gatherings_debug_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/flighting_debug_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/realms_debug_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/automation_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/discovery_debug_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/how_to_play_section": T.STACK_PANEL, + "section_header_panels": T.PANEL, + "section_header_panels/world_sections": T.STACK_PANEL, + "section_header_panels/general_and_controls_sections": T.STACK_PANEL, + "section_footer_panels": T.PANEL, + "section_footer_panels/world_sections": T.STACK_PANEL, + "section_footer_panels/general_and_controls_sections": T.STACK_PANEL, + "section_footer_panels/general_and_controls_sections/storage_management_footer": T.PANEL, } export type ControlsSectionType = { - binding_button: T.BUTTON - binding_button_content: T.PANEL - "binding_button_content/default_label": T.LABEL - image_binding_button: T.BUTTON - image_binding_button_content: T.PANEL - "image_binding_button_content/base_icon_image": T.IMAGE - "image_binding_button_content/default_label": T.LABEL - arrow_reset: T.IMAGE - reset_binding_button: T.BUTTON - keymapping_item_parent: T.STACK_PANEL - "keymapping_item_parent/keymapping_row": T.STACK_PANEL - keymapping_item: T.STACK_PANEL - "keymapping_item/option_info_label_control": T.IMAGE - "keymapping_item/option_info_label_control/keymapping_label_control": T.LABEL - "keymapping_item/keymapping_button_0": T.BUTTON - "keymapping_item/keymapping_button_1": T.BUTTON - keymapping_grid: T.GRID - full_keymapping_grid: T.GRID - gamepad_mapping_item: T.STACK_PANEL - "gamepad_mapping_item/option_info_label_control": T.IMAGE - "gamepad_mapping_item/option_info_label_control/keymapping_label_control": T.LABEL - "gamepad_mapping_item/keymapping_button_0": T.BUTTON - "gamepad_mapping_item/keymapping_button_1": T.BUTTON - gamepad_mapping_grid: T.GRID - keyboard_and_mouse_button: T.PANEL - keyboard_and_mouse_section_ore_ui: T.STACK_PANEL - "keyboard_and_mouse_section_ore_ui/spacer_0": T.PANEL - "keyboard_and_mouse_section_ore_ui/generic_label": T.LABEL - "keyboard_and_mouse_section_ore_ui/spacer_1": T.PANEL - "keyboard_and_mouse_section_ore_ui/gamepad_helper_label": T.LABEL - keyboard_and_mouse_section: T.STACK_PANEL - "keyboard_and_mouse_section/option_slider_0": T.PANEL - "keyboard_and_mouse_section/option_slider_damen": T.PANEL - "keyboard_and_mouse_section/option_toggle_0": T.PANEL - "keyboard_and_mouse_section/option_toggle_1": T.PANEL - "keyboard_and_mouse_section/option_toggle_2": T.PANEL - "keyboard_and_mouse_section/option_toggle_full_keyboard_gameplay": T.PANEL - "keyboard_and_mouse_section/option_toggle_show_keyboard_prompts": T.PANEL - "keyboard_and_mouse_section/option_toggle_show_learning_prompts": T.PANEL - "keyboard_and_mouse_section/keyboard_section": T.STACK_PANEL - "keyboard_and_mouse_section/keyboard_section/option_group_label": T.PANEL - "keyboard_and_mouse_section/keyboard_section/keyboard_keymapping_grid": T.GRID - "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section": T.STACK_PANEL - "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/option_group_label": T.PANEL - "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/control_alt_chord_keymapping_grid": T.GRID - "keyboard_and_mouse_section/full_keyboard_section": T.STACK_PANEL - "keyboard_and_mouse_section/full_keyboard_section/option_slider_smooth_rotation_speed": T.PANEL - "keyboard_and_mouse_section/full_keyboard_section/full_keyboard_label": T.PANEL - "keyboard_and_mouse_section/full_keyboard_section/keyboard_full_keymapping_grid": T.GRID - "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section": T.STACK_PANEL - "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/option_group_label": T.PANEL - "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/control_alt_chord_keymapping_grid": T.GRID - "keyboard_and_mouse_section/reset_button": T.BUTTON - controller_button: T.PANEL - controller_section: T.STACK_PANEL - "controller_section/option_slider_0": T.PANEL - "controller_section/option_slider_damen": T.PANEL - "controller_section/option_toggle_0": T.PANEL - "controller_section/option_toggle_1": T.PANEL - "controller_section/option_toggle9": T.PANEL - "controller_section/option_toggle10": T.PANEL - "controller_section/option_toggle_11": T.PANEL - "controller_section/gamepad_swap_ab": T.PANEL - "controller_section/gamepad_swap_xy": T.PANEL - "controller_section/gamepad_cursor_sensitivity_option_slider": T.PANEL - "controller_section/option_toggle_3": T.PANEL - "controller_section/option_toggle_4": T.PANEL - "controller_section/option_toggle_5": T.PANEL - "controller_section/option_group_label": T.PANEL - "controller_section/gamepad_keymapping_grid": T.GRID - "controller_section/reset_button": T.BUTTON - touch_button: T.PANEL - touch_section: T.STACK_PANEL - "touch_section/common_touch_settings": T.STACK_PANEL - "touch_section/common_touch_settings/option_enable_new_touch_control_schemes_button": T.PANEL - "touch_section/common_touch_settings/control_scheme_section": T.STACK_PANEL - "touch_section/common_touch_settings/control_scheme_section/section_label": T.LABEL - "touch_section/common_touch_settings/control_scheme_section/padding_0": T.PANEL - "touch_section/common_touch_settings/control_scheme_section/image_and_button": T.STACK_PANEL - "touch_section/common_touch_settings/control_scheme_section/image_and_button/images": T.PANEL - "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/touch_image": T.IMAGE - "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/crosshair_image": T.IMAGE - "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/classic_image": T.IMAGE - "touch_section/common_touch_settings/control_scheme_section/image_and_button/padding": T.PANEL - "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section": T.PANEL - "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption": T.STACK_PANEL - "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_label": T.LABEL - "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_control": T.LABEL - "touch_section/common_touch_settings/control_scheme_section/padding_1": T.PANEL - "touch_section/common_touch_settings/control_scheme_section/select_control_mode": T.BUTTON - "touch_section/common_touch_settings/control_scheme_section/padding_2": T.PANEL - "touch_section/common_touch_settings/modify_control_layout_section": T.STACK_PANEL - "touch_section/common_touch_settings/modify_control_layout_section/modify_control_layout_button": T.BUTTON - "touch_section/common_touch_settings/modify_control_layout_section/customize_tooltip_option": T.PANEL - "touch_section/common_touch_settings/modify_control_layout_section/padding": T.PANEL - "touch_section/common_touch_settings/option_slider_0": T.PANEL - "touch_section/common_touch_settings/option_slider_damen": T.PANEL - "touch_section/common_touch_settings/option_show_action_button": T.PANEL - "touch_section/common_touch_settings/option_show_block_select_button": T.PANEL - "touch_section/common_touch_settings/option_toggle_left_handed": T.PANEL - "touch_section/common_touch_settings/option_toggle_auto_jump": T.PANEL - "touch_section/common_touch_settings/option_bool_sprint_on_movement": T.PANEL - "touch_section/common_touch_settings/option_show_toggle_camera_perspective_button": T.PANEL - "touch_section/common_touch_settings/joystick_visibility_dropdown": T.PANEL - "touch_section/common_touch_settings/top_button_scale": T.PANEL - "touch_section/common_touch_settings/sneak_dropdown": T.PANEL - "touch_section/common_touch_settings/option_toggle_destroy_vibration": T.PANEL - "touch_section/common_touch_settings/option_toggle_split_vibration": T.PANEL - "touch_section/common_touch_settings/option_creative_delayed_block_breaking": T.PANEL - "touch_section/common_touch_settings/option_toggle_invert_y": T.PANEL - "touch_section/common_touch_settings/option_always_highlight_hovering_box_in_crosshair": T.PANEL - "touch_section/common_touch_settings/option_toggle_use_touchpad": T.PANEL - "touch_section/common_touch_settings/option_toggle_swap_jump_and_sneak": T.PANEL - "touch_section/common_touch_settings/hotbar_only_touch_toggle": T.PANEL - "touch_section/reset_button": T.BUTTON - joystick_visibility_dropdown_content: T.PANEL - top_button_scale_dropdown_content: T.PANEL - sneak_dropdown_content: T.PANEL - customize_tooltip_option_image: T.IMAGE - customize_tooltip_option_popup: T.IMAGE - customize_tooltip_option: T.PANEL - "customize_tooltip_option/customize_tooltip_option_image": T.IMAGE - "customize_tooltip_option/customize_tooltip_option_image/hover_detection_input_panel": T.INPUT_PANEL - "customize_tooltip_option/customize_tooltip_option_popup": T.IMAGE + "binding_button": T.BUTTON, + "binding_button_content": T.PANEL, + "binding_button_content/default_label": T.LABEL, + "image_binding_button": T.BUTTON, + "image_binding_button_content": T.PANEL, + "image_binding_button_content/base_icon_image": T.IMAGE, + "image_binding_button_content/default_label": T.LABEL, + "arrow_reset": T.IMAGE, + "reset_binding_button": T.BUTTON, + "keymapping_item_parent": T.STACK_PANEL, + "keymapping_item_parent/keymapping_row": T.STACK_PANEL, + "keymapping_item": T.STACK_PANEL, + "keymapping_item/option_info_label_control": T.IMAGE, + "keymapping_item/option_info_label_control/keymapping_label_control": T.LABEL, + "keymapping_item/keymapping_button_0": T.BUTTON, + "keymapping_item/keymapping_button_1": T.BUTTON, + "keymapping_grid": T.GRID, + "full_keymapping_grid": T.GRID, + "gamepad_mapping_item": T.STACK_PANEL, + "gamepad_mapping_item/option_info_label_control": T.IMAGE, + "gamepad_mapping_item/option_info_label_control/keymapping_label_control": T.LABEL, + "gamepad_mapping_item/keymapping_button_0": T.BUTTON, + "gamepad_mapping_item/keymapping_button_1": T.BUTTON, + "gamepad_mapping_grid": T.GRID, + "keyboard_and_mouse_button": T.PANEL, + "keyboard_and_mouse_section_ore_ui": T.STACK_PANEL, + "keyboard_and_mouse_section_ore_ui/spacer_0": T.PANEL, + "keyboard_and_mouse_section_ore_ui/generic_label": T.LABEL, + "keyboard_and_mouse_section_ore_ui/spacer_1": T.PANEL, + "keyboard_and_mouse_section_ore_ui/gamepad_helper_label": T.LABEL, + "keyboard_and_mouse_section": T.STACK_PANEL, + "keyboard_and_mouse_section/option_slider_0": T.PANEL, + "keyboard_and_mouse_section/option_slider_damen": T.PANEL, + "keyboard_and_mouse_section/option_toggle_0": T.PANEL, + "keyboard_and_mouse_section/option_toggle_1": T.PANEL, + "keyboard_and_mouse_section/option_toggle_2": T.PANEL, + "keyboard_and_mouse_section/option_toggle_full_keyboard_gameplay": T.PANEL, + "keyboard_and_mouse_section/option_toggle_show_keyboard_prompts": T.PANEL, + "keyboard_and_mouse_section/option_toggle_show_learning_prompts": T.PANEL, + "keyboard_and_mouse_section/keyboard_section": T.STACK_PANEL, + "keyboard_and_mouse_section/keyboard_section/option_group_label": T.PANEL, + "keyboard_and_mouse_section/keyboard_section/keyboard_keymapping_grid": T.GRID, + "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section": T.STACK_PANEL, + "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/option_group_label": T.PANEL, + "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/control_alt_chord_keymapping_grid": T.GRID, + "keyboard_and_mouse_section/full_keyboard_section": T.STACK_PANEL, + "keyboard_and_mouse_section/full_keyboard_section/option_slider_smooth_rotation_speed": T.PANEL, + "keyboard_and_mouse_section/full_keyboard_section/full_keyboard_label": T.PANEL, + "keyboard_and_mouse_section/full_keyboard_section/keyboard_full_keymapping_grid": T.GRID, + "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section": T.STACK_PANEL, + "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/option_group_label": T.PANEL, + "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/control_alt_chord_keymapping_grid": T.GRID, + "keyboard_and_mouse_section/reset_button": T.BUTTON, + "controller_button": T.PANEL, + "controller_section": T.STACK_PANEL, + "controller_section/option_slider_0": T.PANEL, + "controller_section/option_slider_damen": T.PANEL, + "controller_section/option_toggle_0": T.PANEL, + "controller_section/option_toggle_1": T.PANEL, + "controller_section/option_toggle9": T.PANEL, + "controller_section/option_toggle10": T.PANEL, + "controller_section/option_toggle_11": T.PANEL, + "controller_section/gamepad_swap_ab": T.PANEL, + "controller_section/gamepad_swap_xy": T.PANEL, + "controller_section/gamepad_cursor_sensitivity_option_slider": T.PANEL, + "controller_section/option_toggle_3": T.PANEL, + "controller_section/option_toggle_4": T.PANEL, + "controller_section/option_toggle_5": T.PANEL, + "controller_section/option_group_label": T.PANEL, + "controller_section/gamepad_keymapping_grid": T.GRID, + "controller_section/reset_button": T.BUTTON, + "touch_button": T.PANEL, + "touch_section": T.STACK_PANEL, + "touch_section/common_touch_settings": T.STACK_PANEL, + "touch_section/common_touch_settings/option_enable_new_touch_control_schemes_button": T.PANEL, + "touch_section/common_touch_settings/control_scheme_section": T.STACK_PANEL, + "touch_section/common_touch_settings/control_scheme_section/section_label": T.LABEL, + "touch_section/common_touch_settings/control_scheme_section/padding_0": T.PANEL, + "touch_section/common_touch_settings/control_scheme_section/image_and_button": T.STACK_PANEL, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images": T.PANEL, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/touch_image": T.IMAGE, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/crosshair_image": T.IMAGE, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/classic_image": T.IMAGE, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/padding": T.PANEL, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section": T.PANEL, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption": T.STACK_PANEL, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_label": T.LABEL, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_control": T.LABEL, + "touch_section/common_touch_settings/control_scheme_section/padding_1": T.PANEL, + "touch_section/common_touch_settings/control_scheme_section/select_control_mode": T.BUTTON, + "touch_section/common_touch_settings/control_scheme_section/padding_2": T.PANEL, + "touch_section/common_touch_settings/modify_control_layout_section": T.STACK_PANEL, + "touch_section/common_touch_settings/modify_control_layout_section/modify_control_layout_button": T.BUTTON, + "touch_section/common_touch_settings/modify_control_layout_section/customize_tooltip_option": T.PANEL, + "touch_section/common_touch_settings/modify_control_layout_section/padding": T.PANEL, + "touch_section/common_touch_settings/option_slider_0": T.PANEL, + "touch_section/common_touch_settings/option_slider_damen": T.PANEL, + "touch_section/common_touch_settings/option_show_action_button": T.PANEL, + "touch_section/common_touch_settings/option_show_block_select_button": T.PANEL, + "touch_section/common_touch_settings/option_toggle_left_handed": T.PANEL, + "touch_section/common_touch_settings/option_toggle_auto_jump": T.PANEL, + "touch_section/common_touch_settings/option_bool_sprint_on_movement": T.PANEL, + "touch_section/common_touch_settings/option_show_toggle_camera_perspective_button": T.PANEL, + "touch_section/common_touch_settings/joystick_visibility_dropdown": T.PANEL, + "touch_section/common_touch_settings/top_button_scale": T.PANEL, + "touch_section/common_touch_settings/sneak_dropdown": T.PANEL, + "touch_section/common_touch_settings/option_toggle_destroy_vibration": T.PANEL, + "touch_section/common_touch_settings/option_toggle_split_vibration": T.PANEL, + "touch_section/common_touch_settings/option_creative_delayed_block_breaking": T.PANEL, + "touch_section/common_touch_settings/option_toggle_invert_y": T.PANEL, + "touch_section/common_touch_settings/option_always_highlight_hovering_box_in_crosshair": T.PANEL, + "touch_section/common_touch_settings/option_toggle_use_touchpad": T.PANEL, + "touch_section/common_touch_settings/option_toggle_swap_jump_and_sneak": T.PANEL, + "touch_section/common_touch_settings/hotbar_only_touch_toggle": T.PANEL, + "touch_section/reset_button": T.BUTTON, + "joystick_visibility_dropdown_content": T.PANEL, + "top_button_scale_dropdown_content": T.PANEL, + "sneak_dropdown_content": T.PANEL, + "customize_tooltip_option_image": T.IMAGE, + "customize_tooltip_option_popup": T.IMAGE, + "customize_tooltip_option": T.PANEL, + "customize_tooltip_option/customize_tooltip_option_image": T.IMAGE, + "customize_tooltip_option/customize_tooltip_option_image/hover_detection_input_panel": T.INPUT_PANEL, + "customize_tooltip_option/customize_tooltip_option_popup": T.IMAGE, } export type GeneralSectionType = { - general_button: T.PANEL - general_tab_section_ore_ui: T.STACK_PANEL - "general_tab_section_ore_ui/spacer_0": T.PANEL - "general_tab_section_ore_ui/generic_label": T.LABEL - "general_tab_section_ore_ui/spacer_1": T.PANEL - "general_tab_section_ore_ui/gamepad_helper_label": T.LABEL - general_tab_section: T.STACK_PANEL - "general_tab_section/option_toggle_fail_realms_purchase_fulfillment": T.PANEL - "general_tab_section/network_label_header": T.LABEL - "general_tab_section/paddingCrossPlatform": T.PANEL - "general_tab_section/cross_platform_enabled_toggle": T.PANEL - "general_tab_section/paddingCellularData": T.PANEL - "general_tab_section/mobile_data_option_toggle": T.PANEL - "general_tab_section/paddingWebSockets": T.PANEL - "general_tab_section/websockets_enabled_toggle": T.PANEL - "general_tab_section/websocket_encryption_toggle": T.PANEL - "general_tab_section/paddingAutoUpdate": T.PANEL - "general_tab_section/auto_update_mode_dropdown": T.PANEL - "general_tab_section/paddingAutoUpdateToggle": T.PANEL - "general_tab_section/auto_update_enabled_toggle": T.PANEL - "general_tab_section/paddingGameTipsFeature": T.PANEL - "general_tab_section/tutorial_toggle": T.PANEL - "general_tab_section/tutorial_animation_toggle": T.PANEL - "general_tab_section/tutorial_restart_button": T.BUTTON - "general_tab_section/paddingTrustedSkins": T.PANEL - "general_tab_section/only_allow_trusted_skins_toggle": T.PANEL - "general_tab_section/paddingFilterProfanity": T.PANEL - "general_tab_section/filter_profanity_toggle": T.PANEL - "general_tab_section/filter_profanity_toggle/option_generic_core": T.STACK_PANEL - "general_tab_section/pause_label_header": T.LABEL - "general_tab_section/paddingPauseFeature": T.PANEL - "general_tab_section/pause_toggle": T.PANEL - "general_tab_section/paddingLinkEduSupport": T.PANEL - "general_tab_section/link_button": T.BUTTON - "general_tab_section/paddingDividerSustainability": T.PANEL - "general_tab_section/ecomode_label_header": T.LABEL - "general_tab_section/paddingEcoMode": T.PANEL - "general_tab_section/ecomode_enabled_toggle": T.PANEL - "general_tab_section/paddingDividerTermsCreditsAttribution": T.PANEL - "general_tab_section/dividerTermsCreditsAttribution": T.PANEL - "general_tab_section/dividerTermsCreditsAttribution/section_divider": T.IMAGE - "general_tab_section/paddingDividerTermsCreditsAttributionAfter": T.PANEL - "general_tab_section/paddingTermsNConditions": T.PANEL - "general_tab_section/terms_and_conditions_link_button": T.BUTTON - "general_tab_section/paddingCreditsButton": T.PANEL - "general_tab_section/credits_button": T.BUTTON - "general_tab_section/paddingAttribution": T.PANEL - "general_tab_section/attribution_link_button": T.BUTTON - "general_tab_section/paddingfeedback": T.PANEL - "general_tab_section/feedback_link_button": T.BUTTON - "general_tab_section/paddingLicenses": T.PANEL - "general_tab_section/dividerLicenses": T.PANEL - "general_tab_section/dividerLicenses/section_divider": T.IMAGE - "general_tab_section/paddingLicensesAfter": T.PANEL - "general_tab_section/paddingLicensesHeader": T.PANEL - "general_tab_section/licenses_label_header": T.LABEL - "general_tab_section/paddingLicensedContent": T.PANEL - "general_tab_section/licensed_content_link_button": T.BUTTON - "general_tab_section/paddingFontLicense": T.PANEL - "general_tab_section/font_license_popup_button": T.BUTTON - "general_tab_section/third_party_copyright_info_label_panel": T.STACK_PANEL - "general_tab_section/third_party_copyright_info_label_panel/spacer_0": T.PANEL - "general_tab_section/third_party_copyright_info_label_panel/copyright_label": T.LABEL - "general_tab_section/third_party_copyright_info_label_panel/spacer_1": T.PANEL - "general_tab_section/third_party_copyright_info_label_panel/copyright_icon": T.IMAGE - "general_tab_section/paddingSectionDividerContentLog": T.PANEL - "general_tab_section/build_info_label_panel": T.BUTTON - "general_tab_section/build_info_label_panel/build_info_label": T.LABEL - "general_tab_section/paddingSectionDividerBuildInfo": T.PANEL - "general_tab_section/treatment_ids_label": T.LABEL - account_section_ore_ui: T.STACK_PANEL - "account_section_ore_ui/spacer_0": T.PANEL - "account_section_ore_ui/generic_label": T.LABEL - "account_section_ore_ui/spacer_1": T.PANEL - "account_section_ore_ui/gamepad_helper_label": T.LABEL - account_button: T.PANEL - view_account_errors_button_content: T.LABEL - switch_accounts_button_content: T.STACK_PANEL - "switch_accounts_button_content/padded_icon": T.PANEL - "switch_accounts_button_content/padded_icon/icon": T.IMAGE - "switch_accounts_button_content/padded_label": T.PANEL - "switch_accounts_button_content/padded_label/label": T.LABEL - sign_out_button_content: T.STACK_PANEL - "sign_out_button_content/padded_label": T.PANEL - "sign_out_button_content/padded_label/label": T.LABEL - switch_accounts_panel: T.STACK_PANEL - "switch_accounts_panel/name_label": T.LABEL - "switch_accounts_panel/paddingSwitchAccounts": T.PANEL - "switch_accounts_panel/switch_accounts": T.BUTTON - sign_out_panel: T.STACK_PANEL - "sign_out_panel/sign_out": T.BUTTON - sign_out_fail_popup: T.INPUT_PANEL - sign_out_fail_body_panel: T.PANEL - sign_out_fail_body_content_stack: T.STACK_PANEL - "sign_out_fail_body_content_stack/body_text_centering_panel1": T.PANEL - "sign_out_fail_body_content_stack/body_text_centering_panel1/body_text1": T.LABEL - "sign_out_fail_body_content_stack/body_text_centering_panel2": T.PANEL - "sign_out_fail_body_content_stack/body_text_centering_panel2/body_text2": T.LABEL - "sign_out_fail_body_content_stack/padding1": T.PANEL - "sign_out_fail_body_content_stack/learn_more_button": T.BUTTON - "sign_out_fail_body_content_stack/padding2": T.PANEL - "sign_out_fail_body_content_stack/close_button": T.BUTTON - account_section: T.STACK_PANEL - "account_section/use_edu_remember_me": T.PANEL - "account_section/paddingUseSSO": T.PANEL - "account_section/switch_accounts": T.STACK_PANEL - "account_section/sign_out": T.STACK_PANEL - "account_section/paddingNameControls": T.PANEL - "account_section/name_controls": T.PANEL - "account_section/paddingSignInControls": T.PANEL - "account_section/signin_controls": T.PANEL - "account_section/paddingGamerTagControls": T.PANEL - "account_section/gamertag_controls": T.PANEL - "account_section/paddingClearMSAToken": T.PANEL - "account_section/clear_msa_token": T.PANEL - "account_section/clear_msa_token/clear_msa_token_button": T.BUTTON - "account_section/paddingUnlinkMSAAccount": T.PANEL - "account_section/unlink_msa_account": T.BUTTON - "account_section/unlink_msa_account_nx": T.BUTTON - "account_section/paddingDeleteAccount": T.PANEL - "account_section/delete_account": T.BUTTON - "account_section/paddingUseRemoteConnect": T.PANEL - "account_section/remote_connect_toggle": T.PANEL - "account_section/paddingInfoLabels": T.PANEL - "account_section/account_info_buttom": T.BUTTON - "account_section/account_info_buttom/account_info_label": T.LABEL - name_controls: T.STACK_PANEL - "name_controls/option_text_edit_control": T.EDIT_BOX - signin_controls: T.STACK_PANEL - "signin_controls/sign_in": T.PANEL - "signin_controls/sign_in/action_button": T.BUTTON - signin_subscription: T.STACK_PANEL - "signin_subscription/sign_in": T.PANEL - "signin_subscription/sign_in/please_signin_label": T.LABEL - gamertag_controls: T.STACK_PANEL - "gamertag_controls/gamertag_label": T.STACK_PANEL - "gamertag_controls/gamertag_label/panel_descriptor": T.PANEL - "gamertag_controls/gamertag_label/panel_descriptor/label_descriptor": T.LABEL - "gamertag_controls/gamertag_label/spacer": T.PANEL - "gamertag_controls/gamertag_label/gamerpic": T.CUSTOM - "gamertag_controls/gamertag_label/spacer_2": T.PANEL - "gamertag_controls/gamertag_label/panel_gamertag": T.PANEL - "gamertag_controls/gamertag_label/panel_gamertag/gamertag_label": T.LABEL - "gamertag_controls/paddingXboxAccountButtons": T.PANEL - "gamertag_controls/xboxlive_deep_link_buttons": T.PANEL - "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button": T.BUTTON - "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button_mobile": T.BUTTON - "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button": T.BUTTON - "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button_mobile": T.BUTTON - "gamertag_controls/xboxlive_deep_link_buttons/paddingXboxSettingsPrivacyControl": T.PANEL - "gamertag_controls/xboxlive_deep_link_buttons/link_button": T.BUTTON - "gamertag_controls/paddingSignOut": T.PANEL - "gamertag_controls/realms_invites": T.PANEL - "gamertag_controls/realms_invites/check_realms_invites_button": T.BUTTON - "gamertag_controls/sign_out": T.PANEL - "gamertag_controls/sign_out/action_button": T.BUTTON - "gamertag_controls/offline_token_authorization": T.PANEL - "gamertag_controls/offline_token_authorization/request_psn_authorization_button": T.BUTTON - auto_update_mode_dropdown_content: T.PANEL - global_texture_pack_button: T.PANEL - global_texture_pack_section: T.STACK_PANEL - storage_management_button: T.PANEL - storage_management_section: T.PANEL - storage_management_header: T.PANEL - storage_management_footer: T.PANEL - edu_cloud_storage_button: T.PANEL - edu_cloud_storage_section: T.STACK_PANEL - "edu_cloud_storage_section/spacing1": T.PANEL - "edu_cloud_storage_section/edu_cloud_backup_toggle": T.PANEL - "edu_cloud_storage_section/spacing2": T.PANEL - "edu_cloud_storage_section/body_wrapper_panel": T.PANEL - "edu_cloud_storage_section/body_wrapper_panel/tts_border": T.BUTTON - "edu_cloud_storage_section/body_wrapper_panel/edu_cloud_storage_body_label": T.LABEL - "edu_cloud_storage_section/spacing3": T.PANEL - "edu_cloud_storage_section/edu_cloud_onedrive_button": T.BUTTON - "edu_cloud_storage_section/spacing4": T.PANEL - "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel": T.STACK_PANEL - "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/learn_more_button": T.BUTTON - "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon": T.PANEL - "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon/icon": T.IMAGE - edu_cloud_onedrive_button_content: T.STACK_PANEL - "edu_cloud_onedrive_button_content/padded_label": T.PANEL - "edu_cloud_onedrive_button_content/padded_label/label": T.LABEL - "edu_cloud_onedrive_button_content/padded_icon": T.PANEL - "edu_cloud_onedrive_button_content/padded_icon/icon": T.IMAGE - edu_cloud_onedrive_error_popup: T.INPUT_PANEL - edu_cloud_onedrive_error_content: T.STACK_PANEL - "edu_cloud_onedrive_error_content/body_text_centering_panel2": T.PANEL - "edu_cloud_onedrive_error_content/body_text_centering_panel2/body_text2": T.LABEL - "edu_cloud_onedrive_error_content/padding2": T.PANEL - "edu_cloud_onedrive_error_content/learn_more_button": T.BUTTON - "edu_cloud_onedrive_error_content/padding3": T.PANEL - "edu_cloud_onedrive_error_content/ok_button": T.BUTTON - creator_button: T.PANEL - editor_toggle_panel: T.STACK_PANEL - "editor_toggle_panel/editor_confirmation_panel": T.STACK_PANEL - "editor_toggle_panel/editor_confirmation_panel/editor_active_label": T.LABEL - "editor_toggle_panel/editor_confirmation_panel/toggle_spacer": T.PANEL - "editor_toggle_panel/editor_confirmation_panel/editor_confirmation_section_label": T.LABEL - "editor_toggle_panel/editor_toggle_spacer": T.PANEL - "editor_toggle_panel/editor_image_panel": T.STACK_PANEL - "editor_toggle_panel/editor_image_panel/editor_icon": T.IMAGE - creator_toggles_panel: T.STACK_PANEL - "creator_toggles_panel/section_panel_1": T.PANEL - "creator_toggles_panel/section_panel_1/section_divider": T.IMAGE - "creator_toggles_panel/copy_coordinate_section_stack_panel": T.STACK_PANEL - "creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label": T.LABEL - "creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label_spacer": T.PANEL - "creator_toggles_panel/copy_coordinate_section_stack_panel/option_content_file_log": T.PANEL - "creator_toggles_panel/creator_setting_button": T.STACK_PANEL - "creator_toggles_panel/creator_setting_button/go_to_keybinds": T.BUTTON - "creator_toggles_panel/creator_setting_button/creator_settings_section_label_spacer": T.PANEL - debugger_toggles_panel: T.STACK_PANEL - "debugger_toggles_panel/section_panel_1": T.PANEL - "debugger_toggles_panel/section_panel_1/section_divider": T.IMAGE - "debugger_toggles_panel/primary_panel": T.STACK_PANEL - "debugger_toggles_panel/primary_panel/heading": T.LABEL - "debugger_toggles_panel/primary_panel/spacer": T.PANEL - "debugger_toggles_panel/primary_panel/passcode_required_toggle": T.PANEL - "debugger_toggles_panel/primary_panel/passcode_input": T.PANEL - "debugger_toggles_panel/primary_panel/auto_attach_toggle": T.PANEL - "debugger_toggles_panel/primary_panel/all_options_panel": T.STACK_PANEL - "debugger_toggles_panel/primary_panel/all_options_panel/attach_mode_option": T.PANEL - "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel": T.STACK_PANEL - "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/host_input": T.PANEL - "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/spacer": T.PANEL - "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/port_input": T.PANEL - "debugger_toggles_panel/primary_panel/all_options_panel/auto_attach_timeout_slider": T.PANEL - diagnostics_toggles_panel: T.STACK_PANEL - "diagnostics_toggles_panel/section_panel_1": T.PANEL - "diagnostics_toggles_panel/section_panel_1/section_divider": T.IMAGE - "diagnostics_toggles_panel/primary_panel": T.STACK_PANEL - "diagnostics_toggles_panel/primary_panel/heading": T.LABEL - "diagnostics_toggles_panel/primary_panel/spacer": T.PANEL - "diagnostics_toggles_panel/primary_panel/serverbound_client_diagnostics_toggle": T.PANEL - "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons": T.STACK_PANEL - "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons/clear_diagnostics_capture_files": T.BUTTON - watchdog_toggles_panel: T.STACK_PANEL - "watchdog_toggles_panel/section_panel_1": T.PANEL - "watchdog_toggles_panel/section_panel_1/section_divider": T.IMAGE - "watchdog_toggles_panel/primary_panel": T.STACK_PANEL - "watchdog_toggles_panel/primary_panel/heading": T.LABEL - "watchdog_toggles_panel/primary_panel/spacer": T.PANEL - "watchdog_toggles_panel/primary_panel/hang_threshold_slider": T.PANEL - "watchdog_toggles_panel/primary_panel/spike_warning_toggle": T.PANEL - "watchdog_toggles_panel/primary_panel/spike_threshold_slider": T.PANEL - "watchdog_toggles_panel/primary_panel/slow_warning_toggle": T.PANEL - "watchdog_toggles_panel/primary_panel/slow_threshold_slider": T.PANEL - device_info_toggles_panel: T.STACK_PANEL - "device_info_toggles_panel/section_panel_1": T.PANEL - "device_info_toggles_panel/section_panel_1/section_divider": T.IMAGE - "device_info_toggles_panel/primary_panel": T.STACK_PANEL - "device_info_toggles_panel/primary_panel/heading": T.LABEL - "device_info_toggles_panel/primary_panel/spacer": T.PANEL - "device_info_toggles_panel/primary_panel/device_info_memory_tier_use_override_toggle": T.PANEL - "device_info_toggles_panel/device_info_memory_tier_dropdown": T.PANEL - content_memory_tier_dropdown_content: T.PANEL - content_log_gui_level_content: T.PANEL - content_log_panel: T.STACK_PANEL - "content_log_panel/section_panel_1": T.PANEL - "content_log_panel/section_panel_1/section_divider": T.IMAGE - "content_log_panel/content_log_section_label": T.LABEL - "content_log_panel/content_log_section_label_spacer": T.PANEL - "content_log_panel/option_content_file_log": T.PANEL - "content_log_panel/option_content_gui_log": T.PANEL - "content_log_panel/option_content_gui_log_show_on_errors": T.PANEL - "content_log_panel/option_content_log_gui_level": T.PANEL - "content_log_panel/content_log_buttons": T.STACK_PANEL - "content_log_panel/content_log_buttons/open_content_log_history": T.BUTTON - "content_log_panel/content_log_buttons/content_log_section_label_spacer": T.PANEL - "content_log_panel/content_log_buttons/clear_content_log_files": T.BUTTON - "content_log_panel/content_log_section_label_spacer_2": T.PANEL - "content_log_panel/content_log_location_label_header": T.LABEL - "content_log_panel/content_log_location_label": T.LABEL - creator_section: T.STACK_PANEL - "creator_section/editor_toggle": T.STACK_PANEL - "creator_section/creator_toggles": T.STACK_PANEL - "creator_section/debugger_toggles_panel": T.STACK_PANEL - "creator_section/diagnostics_toggle_panel": T.STACK_PANEL - "creator_section/watchdog_toggles_panel": T.STACK_PANEL - "creator_section/device_info_toggles_panel": T.STACK_PANEL - "creator_section/content_log_panel": T.STACK_PANEL - video_button: T.PANEL - advanced_video_options_toggle: T.TOGGLE - video_section_ore_ui: T.STACK_PANEL - "video_section_ore_ui/spacer_0": T.PANEL - "video_section_ore_ui/generic_label": T.LABEL - "video_section_ore_ui/spacer_1": T.PANEL - "video_section_ore_ui/gamepad_helper_label": T.LABEL - video_menu_slider_step_progress: T.IMAGE - video_menu_slider_progress: T.IMAGE - video_menu_slider_bar_default: T.IMAGE - video_menu_customization_slider_control: T.PANEL - "video_menu_customization_slider_control/slider": T.SLIDER - "video_menu_customization_slider_control/slider/slider_box": T.SLIDER_BOX - "video_menu_customization_slider_control/slider/slider_bar_default": T.IMAGE - "video_menu_customization_slider_control/slider/slider_bar_hover": T.IMAGE - video_menu_customization_option_slider: T.PANEL - video_section: T.STACK_PANEL - "video_section/advanced_graphics_options_panel": T.STACK_PANEL - "video_section/advanced_graphics_options_panel/graphics_mode": T.PANEL - "video_section/advanced_graphics_options_panel/graphics_quality_preset_mode_dropdown_content": T.PANEL - "video_section/advanced_graphics_options_panel/spacer_0": T.PANEL - "video_section/advanced_graphics_options_panel/advanced_graphics_options_button": T.BUTTON - "video_section/advanced_graphics_options_panel/advanced_graphics_options_section": T.STACK_PANEL - "video_section/spacer_1": T.PANEL - "video_section/graphics_api_dropdown": T.PANEL - "video_section/raytracing_render_distance_slider": T.PANEL - "video_section/raytracing_render_distance_slider/option_generic_core": T.STACK_PANEL - "video_section/deferred_render_distance_slider": T.PANEL - "video_section/deferred_render_distance_slider/option_generic_core": T.STACK_PANEL - "video_section/render_distance_slider": T.PANEL - "video_section/render_distance_slider/render_distance_warning": T.PANEL - "video_section/render_distance_slider/option_generic_core": T.STACK_PANEL - "video_section/render_distance_warning_text": T.PANEL - "video_section/render_distance_warning_text/render_distance_popup": T.IMAGE - "video_section/spacer_2": T.PANEL - "video_section/brightness_slider": T.PANEL - "video_section/spacer_3": T.PANEL - "video_section/perspective_dropdown": T.PANEL - "video_section/spacer_4": T.PANEL - "video_section/fullscreen_toggle": T.PANEL - "video_section/spacer_5": T.PANEL - "video_section/option_toggle_hidehand": T.PANEL - "video_section/spacer_6": T.PANEL - "video_section/hide_paperdoll_toggle": T.PANEL - "video_section/spacer_7": T.PANEL - "video_section/option_toggle_hidehud": T.PANEL - "video_section/spacer_8": T.PANEL - "video_section/option_toggle_screen_animations": T.PANEL - "video_section/spacer_9": T.PANEL - "video_section/hud_opacity_slider": T.PANEL - "video_section/spacer_10": T.PANEL - "video_section/splitscreen_hud_opacity_slider": T.PANEL - "video_section/spacer_11": T.PANEL - "video_section/setup_safe_zone": T.PANEL - "video_section/setup_safe_zone/action_button": T.BUTTON - "video_section/spacer_12": T.PANEL - "video_section/fov_slider": T.PANEL - "video_section/spacer_13": T.PANEL - "video_section/split_screen_dropdown": T.PANEL - "video_section/spacer_14": T.PANEL - "video_section/auto_save_icon_toggle": T.PANEL - "video_section/spacer_15": T.PANEL - "video_section/outline_selection_toggle": T.PANEL - "video_section/spacer_16": T.PANEL - "video_section/player_names_toggle": T.PANEL - "video_section/spacer_17": T.PANEL - "video_section/splitscreen_player_names_toggle": T.PANEL - "video_section/spacer_18": T.PANEL - "video_section/view_bobbing_toggle": T.PANEL - "video_section/spacer_19": T.PANEL - "video_section/camera_shake_toggle": T.PANEL - "video_section/spacer_20": T.PANEL - "video_section/fancy_leaves_toggle": T.PANEL - "video_section/spacer_21": T.PANEL - "video_section/fancy_bubbles_toggle": T.PANEL - "video_section/spacer_22": T.PANEL - "video_section/render_clouds_toggle": T.PANEL - "video_section/spacer_23": T.PANEL - "video_section/fancy_clouds_toggle": T.PANEL - "video_section/spacer_24": T.PANEL - "video_section/smooth_lighting_toggle": T.PANEL - "video_section/spacer_25": T.PANEL - "video_section/rendering_profile_option_slider": T.PANEL - "video_section/field_of_view_toggle": T.PANEL - "video_section/spacer_26": T.PANEL - "video_section/damage_bob_option_slider": T.PANEL - "video_section/spacer_26.5": T.PANEL - "video_section/super_fancy_panel": T.PANEL - "video_section/super_fancy_panel/super_fancy_section": T.IMAGE - "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents": T.STACK_PANEL - "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/atmospherics_toggle": T.PANEL - "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/edge_highlight_toggle": T.PANEL - "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/bloom_toggle": T.PANEL - "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/terrain_shadows_toggle": T.PANEL - "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/super_fancy_water_toggle": T.PANEL - "video_section/ui_profile_dropdown": T.PANEL - "video_section/spacer_27": T.PANEL - "video_section/gui_scale_slider": T.PANEL - "video_section/gui_scale_slider/option_generic_core": T.STACK_PANEL - "video_section/spacer_28": T.PANEL - "video_section/gui_accessibility_scaling_toggle": T.PANEL - "video_section/gui_accessibility_scaling_toggle/option_generic_core": T.STACK_PANEL - "video_section/spacer_29": T.PANEL - "video_section/option_toggle_improved_input_response": T.PANEL - "video_section/option_toggle_improved_input_response/option_generic_core": T.STACK_PANEL - "video_section/spacer_30": T.PANEL - "video_section/frame_pacing_toggle": T.PANEL - "video_section/frame_pacing_toggle/option_generic_core": T.STACK_PANEL - "video_section/spacer_31": T.PANEL - "video_section/graphics_mode_switch_toggle": T.PANEL - "video_section/spacer_32": T.PANEL - "video_section/upscaling_toggle": T.PANEL - "video_section/spacer_33": T.PANEL - "video_section/max_framerate_slider": T.PANEL - "video_section/spacer_34": T.PANEL - "video_section/msaa_slider": T.PANEL - "video_section/spacer_35": T.PANEL - "video_section/texel_anti_aliasing_toggle": T.PANEL - "video_section/spacer_36": T.PANEL - "video_section/reset_button": T.BUTTON - max_framerate_slider: T.PANEL - "max_framerate_slider/option_generic_core": T.STACK_PANEL - msaa_slider: T.PANEL - upscaling_toggle: T.PANEL - "upscaling_toggle/option_generic_core": T.STACK_PANEL - render_distance_warning_image: T.IMAGE - render_distance_warning: T.PANEL - "render_distance_warning/render_distance_warning_image": T.IMAGE - ui_profile_dropdown_content: T.PANEL - split_screen_dropdown_content: T.PANEL - third_person_dropdown_content: T.PANEL - toast_notification_duration_dropdown_content: T.PANEL - chat_message_duration_dropdown_content: T.PANEL - file_storage_location_content: T.PANEL - background: T.PANEL - "background/fill": T.IMAGE - "background/border": T.IMAGE - left_button_label: T.LABEL - right_button_label: T.LABEL - realms_button_panel: T.STACK_PANEL - "realms_button_panel/pad_0": T.PANEL - "realms_button_panel/left_button_panel": T.PANEL - "realms_button_panel/left_button_panel/left_button": T.BUTTON - "realms_button_panel/left_button_panel/left_button_loading": T.PANEL - "realms_button_panel/pad_1": T.PANEL - "realms_button_panel/right_button": T.BUTTON - "realms_button_panel/pad_2": T.PANEL - consumable_not_extendable: T.PANEL - "consumable_not_extendable/panel_content": T.STACK_PANEL - "consumable_not_extendable/panel_content/padded_icon_0": T.PANEL - "consumable_not_extendable/panel_content/limited_status_image": T.IMAGE - "consumable_not_extendable/panel_content/padded_icon_1": T.PANEL - "consumable_not_extendable/panel_content/label_panel": T.PANEL - "consumable_not_extendable/panel_content/label_panel/name_label2": T.LABEL - possible_store_mismatch: T.PANEL - "possible_store_mismatch/panel_content": T.STACK_PANEL - "possible_store_mismatch/panel_content/padded_icon_0": T.PANEL - "possible_store_mismatch/panel_content/limited_status_image": T.IMAGE - "possible_store_mismatch/panel_content/padded_icon_1": T.PANEL - "possible_store_mismatch/panel_content/label_panel": T.PANEL - "possible_store_mismatch/panel_content/label_panel/name_label2": T.LABEL - realms_subscription_stack: T.STACK_PANEL - "realms_subscription_stack/image_panel": T.PANEL - "realms_subscription_stack/image_panel/0": T.UNKNOWN - "realms_subscription_stack/pad": T.PANEL - "realms_subscription_stack/info": T.STACK_PANEL - "realms_subscription_stack/info/realm_name": T.LABEL - "realms_subscription_stack/info/realms_desc_label": T.LABEL - "realms_subscription_stack/info/bottom_pad": T.PANEL - realms_subscription_main: T.PANEL - "realms_subscription_main/black_background": T.PANEL - "realms_subscription_main/realms_plus_subscription_stack": T.STACK_PANEL - "realms_subscription_main/realms_plus_subscription_stack/realms_plus_subscription_top_stack": T.STACK_PANEL - "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack": T.STACK_PANEL - "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/top_pad": T.PANEL - "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/realms_plus_bottom_button_panel": T.STACK_PANEL - "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/bottom_pad": T.PANEL - realms_subscription_panel: T.STACK_PANEL - "realms_subscription_panel/top_panel": T.PANEL - "realms_subscription_panel/pad_1": T.PANEL - "realms_subscription_panel/middle_panel": T.PANEL - "realms_subscription_panel/middle_panel/black_background": T.PANEL - "realms_subscription_panel/middle_panel/renews_text": T.LABEL - "realms_subscription_panel/pad_2": T.PANEL - "realms_subscription_panel/lower_panel": T.PANEL - "realms_subscription_panel/lower_panel/black_background": T.PANEL - "realms_subscription_panel/lower_panel/consumable_not_extendable": T.PANEL - "realms_subscription_panel/pad_3": T.PANEL - "realms_subscription_panel/platform_mismatch_container": T.PANEL - "realms_subscription_panel/platform_mismatch_container/black_background": T.PANEL - "realms_subscription_panel/platform_mismatch_container/possible_store_mismatch": T.PANEL - "realms_subscription_panel/pad_4": T.PANEL - realms_plus_subscription_panel: T.STACK_PANEL - additional_subscription_panel: T.STACK_PANEL - view_subscriptions_button: T.PANEL - view_subscriptions_prerelease_section: T.PANEL - "view_subscriptions_prerelease_section/black_background": T.PANEL - "view_subscriptions_prerelease_section/renews_text": T.LABEL - view_subscriptions_section: T.STACK_PANEL - "view_subscriptions_section/sunsetting_label": T.IMAGE - "view_subscriptions_section/failed_loading_subscriptions_label": T.LABEL - "view_subscriptions_section/loading_subscriptions_label": T.LABEL - "view_subscriptions_section/no_active_subscriptions_panel": T.PANEL - "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions": T.PANEL - "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions/text": T.LABEL - "view_subscriptions_section/no_active_subscriptions_panel/background_panel": T.IMAGE - "view_subscriptions_section/realms_plus_header_my_subscriptions": T.PANEL - "view_subscriptions_section/realms_plus_header_my_subscriptions/text": T.LABEL - "view_subscriptions_section/realms_plus_subscriptions_grid": T.STACK_PANEL - "view_subscriptions_section/csb_purchased_with_cancel": T.PANEL - "view_subscriptions_section/csb_purchased_with_buy": T.PANEL - "view_subscriptions_section/csb_purchased_padding": T.PANEL - "view_subscriptions_section/platform_mismatch_container": T.PANEL - "view_subscriptions_section/platform_mismatch_container/black_background": T.PANEL - "view_subscriptions_section/platform_mismatch_container/possible_store_mismatch": T.PANEL - "view_subscriptions_section/csb_expiration_container": T.PANEL - "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container": T.STACK_PANEL - "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration_text_padding": T.PANEL - "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration": T.LABEL - "view_subscriptions_section/csb_expiration_container/background_panel": T.IMAGE - "view_subscriptions_section/csb_expiration_and_platform_mismatch_padding": T.PANEL - "view_subscriptions_section/additional_realms_subscriptions_grid": T.STACK_PANEL - "view_subscriptions_section/settings_additional_subscription_offers_section": T.STACK_PANEL - "view_subscriptions_section/pad_3": T.PANEL - settings_additional_subscription_offers_section: T.STACK_PANEL - "settings_additional_subscription_offers_section/active_available_divider": T.STACK_PANEL - "settings_additional_subscription_offers_section/realms_plus_header_label": T.LABEL - "settings_additional_subscription_offers_section/pad_0": T.PANEL - "settings_additional_subscription_offers_section/additional_realms_buy_offer": T.PANEL - "settings_additional_subscription_offers_section/pad_8": T.PANEL - "settings_additional_subscription_offers_section/csb_buy_panel": T.PANEL - accessibility_button: T.PANEL - toast_notification_duration_label: T.LABEL - toast_notification_duration_info_label: T.LABEL - toast_notification_duration_info_edu_label: T.LABEL - chat_message_duration_label: T.LABEL - chat_message_duration_info_label: T.LABEL - accessibility_section: T.STACK_PANEL - "accessibility_section/option_toggle0": T.PANEL - "accessibility_section/option_toggle1": T.PANEL - "accessibility_section/option_toggle2": T.PANEL - "accessibility_section/option_slider_0": T.PANEL - "accessibility_section/option_toggle3": T.PANEL - "accessibility_section/hud_text_background_opacity_slider": T.PANEL - "accessibility_section/chat_opacity_slider": T.PANEL - "accessibility_section/actionbar_text_background_opacity_slider": T.PANEL - "accessibility_section/camera_shake_toggle": T.PANEL - "accessibility_section/hide_endflash_toggle": T.PANEL - "accessibility_section/enable_dithering_blocks_toggle": T.PANEL - "accessibility_section/enable_dithering_mobs_toggle": T.PANEL - "accessibility_section/darkness_slider": T.PANEL - "accessibility_section/glint_strength_slider": T.PANEL - "accessibility_section/glint_speed_slider": T.PANEL - "accessibility_section/toast_notification_duration_options_panel": T.STACK_PANEL - "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_label_wrapper": T.PANEL - "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_wrapper": T.PANEL - "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_edu_wrapper": T.PANEL - "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown_spacer_pre": T.PANEL - "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown": T.PANEL - "accessibility_section/chat_message_duration_options_panel": T.STACK_PANEL - "accessibility_section/chat_message_duration_options_panel/chat_message_duration_label_wrapper": T.PANEL - "accessibility_section/chat_message_duration_options_panel/chat_message_duration_info_label_wrapper": T.PANEL - "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown_spacer_pre": T.PANEL - "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown": T.PANEL - "accessibility_section/gui_scale_slider": T.PANEL - "accessibility_section/gui_scale_slider/option_generic_core": T.STACK_PANEL - "accessibility_section/gui_accessibility_scaling_toggle": T.PANEL - "accessibility_section/gui_accessibility_scaling_toggle/option_generic_core": T.STACK_PANEL - "accessibility_section/reset_button": T.BUTTON - accessibility_section_ore_ui: T.STACK_PANEL - "accessibility_section_ore_ui/spacer_0": T.PANEL - "accessibility_section_ore_ui/generic_label": T.LABEL - "accessibility_section_ore_ui/spacer_1": T.PANEL - "accessibility_section_ore_ui/gamepad_helper_label": T.LABEL - "accessibility_section_ore_ui/accessibility_button": T.BUTTON - sound_button: T.PANEL - sound_section_ore_ui: T.STACK_PANEL - "sound_section_ore_ui/spacer_0": T.PANEL - "sound_section_ore_ui/generic_label": T.LABEL - "sound_section_ore_ui/spacer_1": T.PANEL - "sound_section_ore_ui/gamepad_helper_label": T.LABEL - sound_section: T.STACK_PANEL - "sound_section/paddingMainVolume": T.PANEL - "sound_section/option_slider_0": T.PANEL - "sound_section/paddingDividerAudioSettings": T.PANEL - "sound_section/dividerAudioSettings": T.PANEL - "sound_section/dividerAudioSettings/section_divider": T.IMAGE - "sound_section/paddingMusic": T.PANEL - "sound_section/option_slider_1": T.PANEL - "sound_section/paddingSound": T.PANEL - "sound_section/option_slider_2": T.PANEL - "sound_section/paddingAmbient": T.PANEL - "sound_section/option_slider_3": T.PANEL - "sound_section/paddingBlockVolume": T.PANEL - "sound_section/option_slider_4": T.PANEL - "sound_section/paddingHostile": T.PANEL - "sound_section/option_slider_5": T.PANEL - "sound_section/paddingNeutralVolume": T.PANEL - "sound_section/option_slider_6": T.PANEL - "sound_section/paddingPlayervolume": T.PANEL - "sound_section/option_slider_7": T.PANEL - "sound_section/paddingRecordVolume": T.PANEL - "sound_section/option_slider_8": T.PANEL - "sound_section/paddingWeatherVolume": T.PANEL - "sound_section/option_slider_9": T.PANEL - "sound_section/paddingTTSVolume": T.PANEL - "sound_section/option_slider_10": T.PANEL - "sound_section/paddingResetVolumes": T.PANEL - "sound_section/reset_button": T.BUTTON - "sound_section/paddingEndOfList": T.PANEL - language_button: T.PANEL - language_grid_item: T.PANEL - language_section: T.STACK_PANEL - "language_section/language_list_grid": T.GRID - language_section_ore_ui: T.STACK_PANEL - "language_section_ore_ui/spacer_0": T.PANEL - "language_section_ore_ui/generic_label": T.LABEL - "language_section_ore_ui/spacer_1": T.PANEL - "language_section_ore_ui/gamepad_helper_label": T.LABEL - preview_button: T.PANEL - preview_section: T.STACK_PANEL - "preview_section/spacer_0": T.PANEL - "preview_section/generic_label": T.LABEL - "preview_section/preview_store_launch_app1_button": T.BUTTON - "preview_section/preview_store_launch_app2_button": T.BUTTON - override_date_panel: T.STACK_PANEL - "override_date_panel/year_text_box": T.PANEL - "override_date_panel/year_month_slash": T.LABEL - "override_date_panel/month_text_box": T.PANEL - "override_date_panel/month_day_slash": T.LABEL - "override_date_panel/day_text_box": T.PANEL - "override_date_panel/day_hour_slash": T.LABEL - "override_date_panel/hour_text_box": T.PANEL - "override_date_panel/hour_minute_slash": T.LABEL - "override_date_panel/minute_text_box": T.PANEL - timezonetype_dropdown_content: T.PANEL - date_options_panel: T.STACK_PANEL - "date_options_panel/padding0": T.PANEL - "date_options_panel/display_override_datetime_option_toggle": T.PANEL - "date_options_panel/option_toggle_date_override": T.PANEL - "date_options_panel/override_date_options_panel": T.PANEL - override_date_options_panel: T.PANEL - "override_date_options_panel/override_date_options_background_panel": T.STACK_PANEL - "override_date_options_panel/override_date_options_background_panel/load_override_date_option_toggle": T.PANEL - "override_date_options_panel/override_date_options_background_panel/select_dropdown": T.PANEL - "override_date_options_panel/override_date_options_background_panel/override_date_panel": T.STACK_PANEL - "override_date_options_panel/override_date_options_background_panel/padding1": T.PANEL - "override_date_options_panel/override_date_options_background_panel/override_time_scale_option": T.PANEL - "override_date_options_panel/override_date_options_background_panel/reset_time_button": T.BUTTON - "override_date_options_panel/override_date_options_background_panel/padding2": T.PANEL - debug_display_logged_error_panel: T.PANEL - "debug_display_logged_error_panel/debug_display_logged_error_panel_background": T.STACK_PANEL - "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_marketplace": T.PANEL - "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_ui": T.PANEL - "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_osi": T.PANEL - "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_other": T.PANEL - "debug_display_logged_error_panel/debug_display_logged_error_panel_background/spacer_0": T.PANEL - xbox_sandbox_panel: T.STACK_PANEL - "xbox_sandbox_panel/padding0": T.PANEL - "xbox_sandbox_panel/display_override_xbox_sandbox_toggle_windows": T.PANEL - "xbox_sandbox_panel/display_override_xbox_sandbox_toggle": T.PANEL - "xbox_sandbox_panel/override_xbox_options_panel": T.PANEL - override_xbox_options_panel: T.PANEL - "override_xbox_options_panel/override_xbox_options": T.STACK_PANEL - "override_xbox_options_panel/override_xbox_options/option_dropdown_xbox": T.PANEL - override_version_options_panel: T.STACK_PANEL - "override_version_options_panel/override_version_panel": T.STACK_PANEL - "override_version_options_panel/override_version_button_panel": T.PANEL - "override_version_options_panel/override_version_button_panel/update_override_version_button": T.BUTTON - "override_version_options_panel/override_date_panel_bottom_padding": T.PANEL - override_version_panel: T.STACK_PANEL - "override_version_panel/major_version_text_box": T.PANEL - "override_version_panel/first_dot": T.LABEL - "override_version_panel/minor_version_text_box": T.PANEL - "override_version_panel/second_dot": T.LABEL - "override_version_panel/patch_version_text_box": T.PANEL - dot_label: T.LABEL - debug_override_treatments_panel: T.PANEL - "debug_override_treatments_panel/override_treatments_panel_background": T.STACK_PANEL - "debug_override_treatments_panel/override_treatments_panel_background/option_toggle_treatment_override": T.PANEL - "debug_override_treatments_panel/override_treatments_panel_background/spacer_0": T.PANEL - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel": T.STACK_PANEL - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/apply_treatments_button": T.BUTTON - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel": T.STACK_PANEL - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/text_edit_treatment": T.PANEL - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel": T.PANEL - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel/add_button": T.BUTTON - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel": T.STACK_PANEL - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/reset_to_default": T.BUTTON - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/clear_treatments": T.BUTTON - "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel": T.IMAGE - "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel/treatments_label": T.LABEL - "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1": T.PANEL - "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1/progress_loading_spinner_1": T.IMAGE - "debug_override_treatments_panel/override_treatments_panel_background/treatment_grid": T.GRID - "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel": T.IMAGE - "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel/treatments_label": T.LABEL - "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2": T.PANEL - "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2/progress_loading_spinner_2": T.IMAGE - "debug_override_treatments_panel/override_treatments_panel_background/unused_treatment_grid": T.GRID - "debug_override_treatments_panel/override_treatments_panel_background/spacer_1": T.PANEL - debug_override_configurations_panel: T.PANEL - "debug_override_configurations_panel/override_configurations_panel_background": T.STACK_PANEL - "debug_override_configurations_panel/override_configurations_panel_background/option_toggle_configuration_override": T.PANEL - "debug_override_configurations_panel/override_configurations_panel_background/spacer_0": T.PANEL - "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel": T.STACK_PANEL - "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel": T.STACK_PANEL - "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/text_edit_configuration": T.PANEL - "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel": T.PANEL - "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel/add_button": T.BUTTON - "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel": T.STACK_PANEL - "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/reset_to_default": T.BUTTON - "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/clear_configurations": T.BUTTON - "debug_override_configurations_panel/override_configurations_panel_background/configuration_grid": T.GRID - debug_override_realms_features_panel: T.PANEL - "debug_override_realms_features_panel/override_realms_features_panel_background": T.STACK_PANEL - "debug_override_realms_features_panel/override_realms_features_panel_background/option_toggle_realms_feature_override": T.PANEL - "debug_override_realms_features_panel/override_realms_features_panel_background/spacer_0": T.PANEL - "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel": T.STACK_PANEL - "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel": T.STACK_PANEL - "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/text_edit_realms_features": T.PANEL - "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/add_button_panel": T.PANEL - "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/add_button_panel/add_button": T.BUTTON - "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel": T.STACK_PANEL - "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/reset_to_default": T.BUTTON - "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/clear_realms_features": T.BUTTON - "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel": T.IMAGE - "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel/realms_features_label": T.LABEL - "debug_override_realms_features_panel/override_realms_features_panel_background/realms_features_grid": T.GRID - "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel": T.IMAGE - "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel/realms_features_label": T.LABEL - "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_grid": T.GRID - configuration_grid_item: T.STACK_PANEL - "configuration_grid_item/configuration_id_panel": T.IMAGE - "configuration_grid_item/configuration_id_panel/configuration_id": T.LABEL - "configuration_grid_item/remove_button": T.BUTTON - remove_configuration_icon: T.IMAGE - realms_feature_grid_item: T.STACK_PANEL - "realms_feature_grid_item/realms_feature_id_panel": T.IMAGE - "realms_feature_grid_item/realms_feature_id_panel/realms_feature_id": T.LABEL - "realms_feature_grid_item/disable_button": T.BUTTON - disable_realms_feature_icon: T.IMAGE - unused_realms_feature_grid_item: T.STACK_PANEL - "unused_realms_feature_grid_item/unused_realms_feature_id_panel": T.IMAGE - "unused_realms_feature_grid_item/unused_realms_feature_id_panel/unused_realms_feature_id": T.LABEL - "unused_realms_feature_grid_item/enable_button": T.BUTTON - enable_realms_feature_icon: T.IMAGE - treatment_grid_item: T.STACK_PANEL - "treatment_grid_item/treatment_id_panel": T.IMAGE - "treatment_grid_item/treatment_id_panel/treatment_id": T.LABEL - "treatment_grid_item/remove_button": T.BUTTON - remove_treatment_icon: T.IMAGE - unused_treatment_grid_item: T.STACK_PANEL - "unused_treatment_grid_item/unused_treatment_id_panel": T.IMAGE - "unused_treatment_grid_item/unused_treatment_id_panel/unused_treatment_id": T.LABEL - "unused_treatment_grid_item/add_button": T.BUTTON - add_treatment_icon: T.IMAGE - debug_select_windows_store_panel: T.STACK_PANEL - "debug_select_windows_store_panel/select_store_dropdown": T.PANEL - "debug_select_windows_store_panel/stores_label": T.LABEL - "debug_select_windows_store_panel/sandbox_label": T.LABEL - windows_store_dropdown_content: T.PANEL - mock_http_panel: T.STACK_PANEL - "mock_http_panel/display_mock_http_panel_toggle": T.PANEL - "mock_http_panel/mock_http_panel_content": T.PANEL - mock_http_panel_content: T.PANEL - "mock_http_panel_content/mock_http_panel_background": T.STACK_PANEL - "mock_http_panel_content/mock_http_panel_background/add_mock_rules_button": T.BUTTON - "mock_http_panel_content/mock_http_panel_background/remove_all_mock_rules_button": T.BUTTON - "mock_http_panel_content/mock_http_panel_background/active_rules_label": T.LABEL - "mock_http_panel_content/mock_http_panel_background/rule_list": T.STACK_PANEL - "mock_http_panel_content/mock_http_panel_background/divider": T.STACK_PANEL - mock_http_rule_list: T.STACK_PANEL - mock_http_rule: T.STACK_PANEL - "mock_http_rule/rule_details_label": T.LABEL - "mock_http_rule/rule_spacer": T.PANEL - automation_button: T.PANEL - automation_section: T.STACK_PANEL - "automation_section/automation_tab_label": T.LABEL - "automation_section/padding": T.PANEL - "automation_section/automation_test_asset_sas_text_box": T.PANEL - "automation_section/automation_functional_test_tags_text_box": T.PANEL - "automation_section/automation_server_test_tags_text_box": T.PANEL - "automation_section/automation_unit_test_tags_text_box": T.PANEL - "automation_section/automation_broken_functional_test_tags_text_box": T.PANEL - "automation_section/automation_broken_server_test_tags_text_box": T.PANEL - "automation_section/automation_broken_unit_test_tags_text_box": T.PANEL - "automation_section/automation_repeat_count_text_box": T.PANEL - "automation_section/automation_soak_test_duration_minutes_text_box": T.PANEL - "automation_section/automation_repeat_failures_only_toggle": T.PANEL - "automation_section/automation_run_entire_server_test_group": T.PANEL - "automation_section/automation_testbuild_id_text_box": T.PANEL - "automation_section/automation_functional_test_block_input_toggle": T.PANEL - "automation_section/automation_server_test_assert_on_level_diff_toggle": T.PANEL - discovery_debug_button: T.PANEL - discovery_debug_section: T.STACK_PANEL - "discovery_debug_section/option_discovery_environment": T.PANEL - "discovery_debug_section/debug_override_discovery_panel": T.PANEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background": T.STACK_PANEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/option_toggle_discovery_override": T.PANEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/spacer_0": T.PANEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel": T.STACK_PANEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_name": T.PANEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_type": T.PANEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_branch": T.PANEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_custom": T.PANEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel": T.STACK_PANEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/reset_endpoint_override": T.BUTTON - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/apply_endpoint_override": T.BUTTON - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_1": T.PANEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/active_service_overrides_label": T.LABEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_2": T.PANEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/reset_all_endpoint_overrides_button": T.BUTTON - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/discovery_overrides_do_not_save_label": T.LABEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_3": T.PANEL - debug_button: T.PANEL - feature_toggle: T.PANEL - debug_section: T.STACK_PANEL - "debug_section/options_for_qa_convenience": T.LABEL - "debug_section/options_for_qa_convenience_spacer": T.PANEL - "debug_section/option_toggle_dev_console_button_0": T.PANEL - "debug_section/option_toggle_assertions_debug_break": T.PANEL - "debug_section/option_toggle_assertions_show_dialog": T.PANEL - "debug_section/option_dev_show_display_logged_error": T.PANEL - "debug_section/display_logged_error_panel": T.PANEL - "debug_section/option_dev_force_trial_mode": T.PANEL - "debug_section/option_dev_force_trial_mode_spacer": T.PANEL - "debug_section/debug_overlay_pages_label": T.LABEL - "debug_section/debug_overlay_button_panel": T.PANEL - "debug_section/debug_overlay_button_panel/debug_overlay_previous_button": T.BUTTON - "debug_section/debug_overlay_button_panel/debug_overlay_next_button": T.BUTTON - "debug_section/pre_feature_toggles_label_spacer": T.PANEL - "debug_section/feature_toggles_label": T.LABEL - "debug_section/feature_toggles_label_spacer": T.PANEL - "debug_section/feature_toggles": T.STACK_PANEL - "debug_section/end_of_feature_toggles_label_spacer": T.PANEL - "debug_section/option_toggle_dev_disable_lan_signaling": T.PANEL - "debug_section/option_dropdown_nethernet_logging_verbosity": T.PANEL - "debug_section/option_dropdown_http_logging_verbosity": T.PANEL - "debug_section/option_dropdown_xsapi_logging_verbosity": T.PANEL - "debug_section/option_toggle_remote_imgui": T.PANEL - "debug_section/option_dropdown_0": T.PANEL - "debug_section/option_toggle_extra_debug_hud_info": T.PANEL - "debug_section/option_toggle_0_1": T.PANEL - "debug_section/option_toggle_0_2": T.PANEL - "debug_section/option_slider_0": T.PANEL - "debug_section/option_toggle_3": T.PANEL - "debug_section/option_toggle_4": T.PANEL - "debug_section/option_toggle_5": T.PANEL - "debug_section/option_toggle_6": T.PANEL - "debug_section/option_dropdown_server_chunk_map": T.PANEL - "debug_section/option_toggle_9": T.PANEL - "debug_section/option_toggle_disable_render_terrain": T.PANEL - "debug_section/option_toggle_disable_render_entities": T.PANEL - "debug_section/option_toggle_disable_render_blockentities": T.PANEL - "debug_section/option_toggle_disable_render_particles": T.PANEL - "debug_section/option_toggle_disable_render_sky": T.PANEL - "debug_section/option_toggle_disable_render_weather": T.PANEL - "debug_section/option_toggle_disable_render_hud": T.PANEL - "debug_section/option_toggle_disable_render_item_in_hand": T.PANEL - "debug_section/option_toggle_disable_render_main_menu_cubemap": T.PANEL - "debug_section/option_toggle_disable_render_main_menu_paperdoll_animation": T.PANEL - "debug_section/leak_memory": T.PANEL - "debug_section/log_area": T.PANEL - "debug_section/log_priority": T.PANEL - "debug_section/option_toggle_build_info": T.PANEL - "debug_section/option_perf_turtle": T.PANEL - "debug_section/option_default_profiling_option": T.PANEL - "debug_section/option_toggle_7": T.PANEL - "debug_section/option_toggle_8": T.PANEL - "debug_section/option_toggle_game_tip": T.PANEL - "debug_section/option_toggle_10": T.PANEL - "debug_section/dev_disable_client_blob_cache_toggle": T.PANEL - "debug_section/dev_force_client_blob_cache_toggle": T.PANEL - "debug_section/devquality_dropdown": T.PANEL - "debug_section/dev_add_http_delay_seconds": T.PANEL - "debug_section/dev_show_latency_graph_toggle": T.PANEL - "debug_section/xbox_sandbox_panel": T.STACK_PANEL - "debug_section/multithreaded_rendering_toggle": T.PANEL - "debug_section/filewatcher_rendering_toggle": T.PANEL - "debug_section/enable_texture_hot_reloader_toggle": T.PANEL - "debug_section/mock_http_panel": T.STACK_PANEL - "debug_section/vsync_dropdown": T.PANEL - "debug_section/sunsetting_use_overrides_toggle": T.PANEL - "debug_section/padding_sunsetting": T.PANEL - "debug_section/sunseting_state_toggle": T.PANEL - "debug_section/sunsetting_tier_dropdown": T.PANEL - "debug_section/padding_sunsetting_2": T.PANEL - "debug_section/padding1": T.PANEL - "debug_section/copy_internal_settings_folder_to_external": T.BUTTON - "debug_section/padding_reset_day_one": T.PANEL - "debug_section/reset_new_player_flow": T.BUTTON - "debug_section/reset_day_one_experience": T.BUTTON - "debug_section/option_text_edit_1": T.PANEL - "debug_section/option_text_edit_2": T.PANEL - "debug_section/option_text_edit_3": T.PANEL - "debug_section/reset_report_timer_option": T.BUTTON - "debug_section/reset_online_safety_option": T.BUTTON - "debug_section/reset_ip_safety_option": T.BUTTON - "debug_section/padding_graphics_options": T.PANEL - "debug_section/option_shadersdk_service_ip": T.PANEL - "debug_section/option_shadersdk_service_port": T.PANEL - "debug_section/option_shadersdk_target_port": T.PANEL - "debug_section/padding_graphics_buttons": T.PANEL - "debug_section/trigger_graphics_device_loss": T.BUTTON - "debug_section/allocate_texture_handles": T.BUTTON - "debug_section/padding_deferred_debug": T.PANEL - "debug_section/deferred_platform_override": T.PANEL - realms_debug_button: T.PANEL - realms_debug_section: T.STACK_PANEL - "realms_debug_section/realms_menu_title": T.LABEL - "realms_debug_section/realms_title_spacer": T.PANEL - "realms_debug_section/feature_toggles_label": T.LABEL - "realms_debug_section/feature_toggles_label_spacer": T.PANEL - "realms_debug_section/feature_toggles": T.STACK_PANEL - "realms_debug_section/end_of_feature_toggles_label_spacer": T.PANEL - "realms_debug_section/realms_dev_toggles_title": T.LABEL - "realms_debug_section/realms_dev_toggle_spacer": T.PANEL - "realms_debug_section/realms_without_purchase_toggle": T.PANEL - "realms_debug_section/realms_debug_options_title": T.LABEL - "realms_debug_section/realms_debug_options_spacer": T.PANEL - "realms_debug_section/option_dropdown_1": T.PANEL - "realms_debug_section/option_dropdown_2": T.PANEL - "realms_debug_section/option_text_edit_0": T.PANEL - "realms_debug_section/realms_features_override_panel": T.STACK_PANEL - "realms_debug_section/realms_features_override_panel/option_toggle_realms_features_override": T.PANEL - "realms_debug_section/realms_features_override_panel/override_realms_features_panel": T.PANEL - "realms_debug_section/realms_debug_options_spacer_2": T.PANEL - realms_feature_toggle: T.PANEL - marketplace_debug_button: T.PANEL - marketplace_debug_section: T.STACK_PANEL - "marketplace_debug_section/marketplace_feature_toggles_label": T.LABEL - "marketplace_debug_section/marketplace_feature_toggles_label_spacer": T.PANEL - "marketplace_debug_section/marketplace_feature_toggles": T.STACK_PANEL - "marketplace_debug_section/playfab_token_refresh_threshold": T.PANEL - "marketplace_debug_section/option_dropdown_skin_rotation_speed": T.PANEL - "marketplace_debug_section/option_toggle_all_skins_rotate": T.PANEL - "marketplace_debug_section/option_toggle_display_marketplace_document_id": T.PANEL - "marketplace_debug_section/option_toggle_display_platform_offer_check": T.PANEL - "marketplace_debug_section/version_options_panel": T.STACK_PANEL - "marketplace_debug_section/version_options_panel/option_version_override": T.PANEL - "marketplace_debug_section/version_options_panel/override_version_options_panel": T.STACK_PANEL - "marketplace_debug_section/select_windows_store_panel": T.STACK_PANEL - "marketplace_debug_section/date_options_panel": T.STACK_PANEL - "marketplace_debug_section/option_clear_store_cache_button": T.BUTTON - "marketplace_debug_section/option_clear_all_cache_button": T.BUTTON - "marketplace_debug_section/option_delete_all_personas_button": T.BUTTON - "marketplace_debug_section/option_delete_legacy_personas_button": T.BUTTON - "marketplace_debug_section/padding2": T.PANEL - "marketplace_debug_section/enable_coin_debug_switch_toggle": T.PANEL - "marketplace_debug_section/add_500_coins": T.BUTTON - "marketplace_debug_section/add_100000_coins": T.BUTTON - "marketplace_debug_section/padding3": T.PANEL - "marketplace_debug_section/reset_entitlements": T.BUTTON - "marketplace_debug_section/reset_wallet": T.BUTTON - marketplace_feature_toggle: T.PANEL - gatherings_debug_button: T.PANEL - gatherings_debug_section: T.STACK_PANEL - "gatherings_debug_section/refresh_gatherings_button": T.BUTTON - "gatherings_debug_section/spacer_1": T.PANEL - "gatherings_debug_section/clear_system_service_pack_cache_button": T.BUTTON - "gatherings_debug_section/spacer_2": T.PANEL - "gatherings_debug_section/active_gathering_label": T.LABEL - "gatherings_debug_section/spacer_3": T.PANEL - "gatherings_debug_section/text_edit_filter_gatherings": T.PANEL - "gatherings_debug_section/spacer_4": T.PANEL - "gatherings_debug_section/available_gatherings_section": T.STACK_PANEL - gathering_grid_item_content: T.STACK_PANEL - "gathering_grid_item_content/gathering_name": T.LABEL - "gathering_grid_item_content/gathering_uuid": T.LABEL - gathering_item_template: T.PANEL - "gathering_item_template/gathering_item_button": T.BUTTON - available_gatherings_grid: T.GRID - available_gatherings_panel: T.STACK_PANEL - "available_gatherings_panel/available_label": T.LABEL - "available_gatherings_panel/gatherings_grid": T.GRID - "available_gatherings_panel/spacing_gap": T.PANEL - available_gatherings_section: T.STACK_PANEL - "available_gatherings_section/available_gatherings_panel": T.STACK_PANEL - ui_debug_button: T.PANEL - ui_feature_toggle: T.PANEL - edu_debug_button: T.PANEL - edu_feature_toggle: T.PANEL - new_create_world_grid_item: T.PANEL - new_edu_create_world_screen_grid_item: T.PANEL - new_play_screen_grid_item: T.PANEL - new_edit_world_screen_grid_item: T.PANEL - new_player_permissions_screen_grid_item: T.PANEL - new_send_invites_screen_grid_item: T.PANEL - new_death_grid_item: T.PANEL - new_bed_grid_item: T.PANEL - ore_ui_gameplay_ui_grid_item: T.PANEL - new_settings_screen_grid_item: T.PANEL - ui_debug_section: T.STACK_PANEL - "ui_debug_section/ui_feature_toggles_label": T.LABEL - "ui_debug_section/ui_feature_toggles_info_label": T.LABEL - "ui_debug_section/ui_feature_toggles_label_spacer": T.PANEL - "ui_debug_section/ui_feature_toggles": T.STACK_PANEL - "ui_debug_section/end_of_ui_feature_toggles_label_divider": T.PANEL - "ui_debug_section/end_of_ui_feature_toggles_label_divider/section_divider": T.IMAGE - "ui_debug_section/end_of_ui_feature_toggles_label_divider_spacer": T.PANEL - "ui_debug_section/end_of_ui_feature_toggles_label_spacer": T.PANEL - "ui_debug_section/screen_override_label": T.LABEL - "ui_debug_section/screen_override_info_label": T.LABEL - "ui_debug_section/screen_override_label_spacer": T.PANEL - "ui_debug_section/new_edu_create_world_screen_radio_label": T.LABEL - "ui_debug_section/new_edu_create_world_screen_radio_label_spacer": T.PANEL - "ui_debug_section/new_edu_create_world_screen_radio_button": T.GRID - "ui_debug_section/new_edu_create_world_screen_radio_button_spacer": T.PANEL - "ui_debug_section/new_play_screen_radio_label": T.LABEL - "ui_debug_section/new_play_screen_radio_label_spacer": T.PANEL - "ui_debug_section/new_play_screen_radio_button": T.GRID - "ui_debug_section/new_play_screen_radio_button_spacer": T.PANEL - "ui_debug_section/new_edit_world_screen_radio_label": T.LABEL - "ui_debug_section/new_edit_world_screen_radio_label_spacer": T.PANEL - "ui_debug_section/new_edit_world_screen_radio_button": T.GRID - "ui_debug_section/new_edit_world_screen_radio_button_spacer": T.PANEL - "ui_debug_section/new_send_invites_radio_label": T.LABEL - "ui_debug_section/new_send_invites_screen_radio_label_spacer": T.PANEL - "ui_debug_section/new_send_invites_screen_radio_button": T.GRID - "ui_debug_section/new_send_invites_screen_radio_button_spacer": T.PANEL - "ui_debug_section/new_death_screen_radio_label": T.LABEL - "ui_debug_section/new_death_screen_radio_label_spacer": T.PANEL - "ui_debug_section/new_death_screen_radio_button": T.GRID - "ui_debug_section/new_death_screen_radio_button_spacer": T.PANEL - "ui_debug_section/new_bed_screen_radio_label": T.LABEL - "ui_debug_section/new_bed_screen_radio_label_spacer": T.PANEL - "ui_debug_section/new_bed_screen_radio_button": T.GRID - "ui_debug_section/new_bed_screen_radio_button_spacer": T.PANEL - "ui_debug_section/ore_ui_gameplay_ui_radio_label": T.LABEL - "ui_debug_section/ore_ui_gameplay_ui_radio_label_spacer": T.PANEL - "ui_debug_section/ore_ui_gameplay_ui_radio_button": T.GRID - "ui_debug_section/ore_ui_gameplay_ui_radio_button_spacer": T.PANEL - "ui_debug_section/end_of_ui_screen_override_divider": T.PANEL - "ui_debug_section/end_of_ui_screen_override_divider/section_divider": T.IMAGE - "ui_debug_section/end_of_ui_sceen_override_divider_spacer": T.PANEL - "ui_debug_section/new_settings_screen_radio_label": T.LABEL - "ui_debug_section/new_settings_screen_radio_label_spacer": T.PANEL - "ui_debug_section/new_settings_screen_radio_button": T.GRID - "ui_debug_section/new_settings_screen_radio_button_spacer": T.PANEL - "ui_debug_section/screen_opt_in_options_label": T.LABEL - "ui_debug_section/screen_opt_in_info_label": T.LABEL - "ui_debug_section/screen_opt_in_options_label_spacer": T.PANEL - "ui_debug_section/end_of_ui_screen_opt_in_divider": T.PANEL - "ui_debug_section/end_of_ui_screen_opt_in_divider/section_divider": T.IMAGE - "ui_debug_section/end_of_ui_sceen_opt_in_divider_spacer": T.PANEL - "ui_debug_section/other_ui_options_label": T.LABEL - "ui_debug_section/other_ui_options_label_spacer": T.PANEL - "ui_debug_section/option_toggle_default_font_override": T.PANEL - "ui_debug_section/option_toggle_dev_show_tcui_replacement": T.PANEL - "ui_debug_section/option_toggle_use_mobile_data_blocked_modal": T.PANEL - "ui_debug_section/ui_feature_toggles_spacer": T.PANEL - "ui_debug_section/option_show_touch_control_selection_screen": T.PANEL - "ui_debug_section/option_reset_on_start": T.PANEL - "ui_debug_section/option_slider_drag_dwell": T.PANEL - "ui_debug_section/option_slider_stack_splitting": T.PANEL - "ui_debug_section/reset_render_distance_warning_modal_label": T.LABEL - "ui_debug_section/reset_render_distance_warning_modal_label_spacer": T.PANEL - "ui_debug_section/reset_render_distance_warning_modal": T.BUTTON - "ui_debug_section/reset_render_distance_warning_modal_spacer": T.PANEL - "ui_debug_section/ore_ui_developer_pages_divider": T.PANEL - "ui_debug_section/ore_ui_developer_pages_divider/section_divider": T.IMAGE - "ui_debug_section/ore_ui_developer_pages_spacer": T.PANEL - "ui_debug_section/open_ore_ui_label": T.LABEL - "ui_debug_section/open_ore_ui_info_label": T.LABEL - "ui_debug_section/open_ore_ui_label_spacer": T.PANEL - "ui_debug_section/open_ore_ui_docs": T.BUTTON - "ui_debug_section/open_ore_ui_tests": T.BUTTON - "ui_debug_section/open_ore_ui_perf": T.BUTTON - "ui_debug_section/open_ore_ui_test_modal": T.BUTTON - "ui_debug_section/open_ore_ui_tests_spacer": T.PANEL - edu_debug_section: T.STACK_PANEL - "edu_debug_section/edu_feature_toggles_label": T.LABEL - "edu_debug_section/edu_feature_toggles_label_spacer": T.PANEL - "edu_debug_section/edu_demo": T.PANEL - "edu_debug_section/edu_ad_debug_panel": T.PANEL - "edu_debug_section/edu_ad_token_refresh_threshold": T.PANEL - "edu_debug_section/edu_ad_max_signin_token_refresh": T.PANEL - "edu_debug_section/edu_ad_max_graph_token_refresh": T.PANEL - "edu_debug_section/edu_environment_divider": T.PANEL - "edu_debug_section/edu_environment_divider/section_divider": T.IMAGE - "edu_debug_section/edu_environment_spacer": T.PANEL - "edu_debug_section/edu_env_dropdown": T.PANEL - flighting_debug_button: T.PANEL - flighting_debug_section: T.STACK_PANEL - "flighting_debug_section/treatment_override_panel": T.STACK_PANEL - "flighting_debug_section/treatment_override_panel/option_toggle_treatment_override": T.PANEL - "flighting_debug_section/treatment_override_panel/override_treatments_panel": T.PANEL - "flighting_debug_section/configuration_override_panel": T.STACK_PANEL - "flighting_debug_section/configuration_override_panel/option_toggle_configuration_override": T.PANEL - "flighting_debug_section/configuration_override_panel/override_configurations_panel": T.PANEL - how_to_play_button: T.PANEL - how_to_play_section: T.STACK_PANEL - "how_to_play_section/spacer_0": T.PANEL - "how_to_play_section/generic_label": T.LABEL - "how_to_play_section/spacer_1": T.PANEL - "how_to_play_section/gamepad_helper_label": T.LABEL - dev_xbox_environment_dropdown_content: T.PANEL - dev_discovery_environment_dropdown_content: T.PANEL - dev_service_override_type_dropdown_content: T.PANEL - dev_realms_environment_dropdown_content: T.PANEL - dev_realms_sku_dropdown_content: T.PANEL - default_profiling_group_dropdown_content: T.PANEL - dev_nethernet_logging_verbosity_dropdown_content: T.PANEL - dev_http_logging_verbosity_dropdown_content: T.PANEL - dev_xsapi_logging_verbosity_dropdown_content: T.PANEL - dev_debug_speed_multiplier_options: T.PANEL - dev_debug_hud_dropdown_content: T.PANEL - dev_chunkMapMode_content: T.PANEL - dev_quality_dropdown_content: T.PANEL - vysnc_dropdown_content: T.PANEL - deferred_platform_override_dropdown_content: T.PANEL - dev_education_environment_dropdown_content: T.PANEL - dev_sunsetting_tier_dropdown_content: T.PANEL - graphics_api_dropdown_content: T.PANEL - graphics_mode_dropdown_content: T.PANEL - upscaling_mode_dropdown_content: T.PANEL - advanced_graphics_options_button_content: T.STACK_PANEL - "advanced_graphics_options_button_content/advanced_graphics_options_label": T.LABEL - "advanced_graphics_options_button_content/fill_pad": T.PANEL - "advanced_graphics_options_button_content/plus_panel": T.PANEL - "advanced_graphics_options_button_content/plus_panel/plus": T.IMAGE - "advanced_graphics_options_button_content/minus_panel": T.PANEL - "advanced_graphics_options_button_content/minus_panel/minus": T.IMAGE - advanced_graphics_options_section: T.STACK_PANEL - "advanced_graphics_options_section/spacer_0": T.PANEL - "advanced_graphics_options_section/gamma_calibration": T.BUTTON - "advanced_graphics_options_section/spacer_1": T.PANEL - "advanced_graphics_options_section/max_framerate_slider": T.PANEL - "advanced_graphics_options_section/spacer_2": T.PANEL - "advanced_graphics_options_section/msaa_slider": T.PANEL - "advanced_graphics_options_section/spacer_3": T.PANEL - "advanced_graphics_options_section/shadow_quality_slider": T.PANEL - "advanced_graphics_options_section/spacer_4": T.PANEL - "advanced_graphics_options_section/point_light_shadow_quality_slider": T.PANEL - "advanced_graphics_options_section/spacer_5": T.PANEL - "advanced_graphics_options_section/point_light_loding_quality_slider": T.PANEL - "advanced_graphics_options_section/spacer_6": T.PANEL - "advanced_graphics_options_section/cloud_quality_slider": T.PANEL - "advanced_graphics_options_section/spacer_7": T.PANEL - "advanced_graphics_options_section/volumetric_fog_quality_slider": T.PANEL - "advanced_graphics_options_section/spacer_8": T.PANEL - "advanced_graphics_options_section/reflections_quality_slider": T.PANEL - "advanced_graphics_options_section/spacer_9": T.PANEL - "advanced_graphics_options_section/bloom_strength": T.PANEL - "advanced_graphics_options_section/spacer_10": T.PANEL - "advanced_graphics_options_section/upscaling_toggle": T.PANEL - "advanced_graphics_options_section/spacer_11": T.PANEL - "advanced_graphics_options_section/upscaling_mode": T.PANEL - "advanced_graphics_options_section/spacer_12": T.PANEL - "advanced_graphics_options_section/upscaling_percentage": T.PANEL - "advanced_graphics_options_section/fancy_clouds_toggle": T.PANEL - "advanced_graphics_options_section/spacer_13": T.PANEL - "advanced_graphics_options_section/smooth_lighting_toggle": T.PANEL + "general_button": T.PANEL, + "general_tab_section_ore_ui": T.STACK_PANEL, + "general_tab_section_ore_ui/spacer_0": T.PANEL, + "general_tab_section_ore_ui/generic_label": T.LABEL, + "general_tab_section_ore_ui/spacer_1": T.PANEL, + "general_tab_section_ore_ui/gamepad_helper_label": T.LABEL, + "general_tab_section": T.STACK_PANEL, + "general_tab_section/option_toggle_fail_realms_purchase_fulfillment": T.PANEL, + "general_tab_section/network_label_header": T.LABEL, + "general_tab_section/paddingCrossPlatform": T.PANEL, + "general_tab_section/cross_platform_enabled_toggle": T.PANEL, + "general_tab_section/paddingCellularData": T.PANEL, + "general_tab_section/mobile_data_option_toggle": T.PANEL, + "general_tab_section/paddingWebSockets": T.PANEL, + "general_tab_section/websockets_enabled_toggle": T.PANEL, + "general_tab_section/websocket_encryption_toggle": T.PANEL, + "general_tab_section/paddingAutoUpdate": T.PANEL, + "general_tab_section/auto_update_mode_dropdown": T.PANEL, + "general_tab_section/paddingAutoUpdateToggle": T.PANEL, + "general_tab_section/auto_update_enabled_toggle": T.PANEL, + "general_tab_section/paddingGameTipsFeature": T.PANEL, + "general_tab_section/tutorial_toggle": T.PANEL, + "general_tab_section/tutorial_animation_toggle": T.PANEL, + "general_tab_section/tutorial_restart_button": T.BUTTON, + "general_tab_section/paddingTrustedSkins": T.PANEL, + "general_tab_section/only_allow_trusted_skins_toggle": T.PANEL, + "general_tab_section/paddingFilterProfanity": T.PANEL, + "general_tab_section/filter_profanity_toggle": T.PANEL, + "general_tab_section/filter_profanity_toggle/option_generic_core": T.STACK_PANEL, + "general_tab_section/pause_label_header": T.LABEL, + "general_tab_section/paddingPauseFeature": T.PANEL, + "general_tab_section/pause_toggle": T.PANEL, + "general_tab_section/paddingLinkEduSupport": T.PANEL, + "general_tab_section/link_button": T.BUTTON, + "general_tab_section/paddingDividerSustainability": T.PANEL, + "general_tab_section/ecomode_label_header": T.LABEL, + "general_tab_section/paddingEcoMode": T.PANEL, + "general_tab_section/ecomode_enabled_toggle": T.PANEL, + "general_tab_section/paddingDividerTermsCreditsAttribution": T.PANEL, + "general_tab_section/dividerTermsCreditsAttribution": T.PANEL, + "general_tab_section/dividerTermsCreditsAttribution/section_divider": T.IMAGE, + "general_tab_section/paddingDividerTermsCreditsAttributionAfter": T.PANEL, + "general_tab_section/paddingTermsNConditions": T.PANEL, + "general_tab_section/terms_and_conditions_link_button": T.BUTTON, + "general_tab_section/paddingCreditsButton": T.PANEL, + "general_tab_section/credits_button": T.BUTTON, + "general_tab_section/paddingAttribution": T.PANEL, + "general_tab_section/attribution_link_button": T.BUTTON, + "general_tab_section/paddingfeedback": T.PANEL, + "general_tab_section/feedback_link_button": T.BUTTON, + "general_tab_section/paddingLicenses": T.PANEL, + "general_tab_section/dividerLicenses": T.PANEL, + "general_tab_section/dividerLicenses/section_divider": T.IMAGE, + "general_tab_section/paddingLicensesAfter": T.PANEL, + "general_tab_section/paddingLicensesHeader": T.PANEL, + "general_tab_section/licenses_label_header": T.LABEL, + "general_tab_section/paddingLicensedContent": T.PANEL, + "general_tab_section/licensed_content_link_button": T.BUTTON, + "general_tab_section/paddingFontLicense": T.PANEL, + "general_tab_section/font_license_popup_button": T.BUTTON, + "general_tab_section/third_party_copyright_info_label_panel": T.STACK_PANEL, + "general_tab_section/third_party_copyright_info_label_panel/spacer_0": T.PANEL, + "general_tab_section/third_party_copyright_info_label_panel/copyright_label": T.LABEL, + "general_tab_section/third_party_copyright_info_label_panel/spacer_1": T.PANEL, + "general_tab_section/third_party_copyright_info_label_panel/copyright_icon": T.IMAGE, + "general_tab_section/paddingSectionDividerContentLog": T.PANEL, + "general_tab_section/build_info_label_panel": T.BUTTON, + "general_tab_section/build_info_label_panel/build_info_label": T.LABEL, + "general_tab_section/paddingSectionDividerBuildInfo": T.PANEL, + "general_tab_section/treatment_ids_label": T.LABEL, + "account_section_ore_ui": T.STACK_PANEL, + "account_section_ore_ui/spacer_0": T.PANEL, + "account_section_ore_ui/generic_label": T.LABEL, + "account_section_ore_ui/spacer_1": T.PANEL, + "account_section_ore_ui/gamepad_helper_label": T.LABEL, + "account_button": T.PANEL, + "view_account_errors_button_content": T.LABEL, + "switch_accounts_button_content": T.STACK_PANEL, + "switch_accounts_button_content/padded_icon": T.PANEL, + "switch_accounts_button_content/padded_icon/icon": T.IMAGE, + "switch_accounts_button_content/padded_label": T.PANEL, + "switch_accounts_button_content/padded_label/label": T.LABEL, + "sign_out_button_content": T.STACK_PANEL, + "sign_out_button_content/padded_label": T.PANEL, + "sign_out_button_content/padded_label/label": T.LABEL, + "switch_accounts_panel": T.STACK_PANEL, + "switch_accounts_panel/name_label": T.LABEL, + "switch_accounts_panel/paddingSwitchAccounts": T.PANEL, + "switch_accounts_panel/switch_accounts": T.BUTTON, + "sign_out_panel": T.STACK_PANEL, + "sign_out_panel/sign_out": T.BUTTON, + "sign_out_fail_popup": T.INPUT_PANEL, + "sign_out_fail_body_panel": T.PANEL, + "sign_out_fail_body_content_stack": T.STACK_PANEL, + "sign_out_fail_body_content_stack/body_text_centering_panel1": T.PANEL, + "sign_out_fail_body_content_stack/body_text_centering_panel1/body_text1": T.LABEL, + "sign_out_fail_body_content_stack/body_text_centering_panel2": T.PANEL, + "sign_out_fail_body_content_stack/body_text_centering_panel2/body_text2": T.LABEL, + "sign_out_fail_body_content_stack/padding1": T.PANEL, + "sign_out_fail_body_content_stack/learn_more_button": T.BUTTON, + "sign_out_fail_body_content_stack/padding2": T.PANEL, + "sign_out_fail_body_content_stack/close_button": T.BUTTON, + "account_section": T.STACK_PANEL, + "account_section/use_edu_remember_me": T.PANEL, + "account_section/paddingUseSSO": T.PANEL, + "account_section/switch_accounts": T.STACK_PANEL, + "account_section/sign_out": T.STACK_PANEL, + "account_section/paddingNameControls": T.PANEL, + "account_section/name_controls": T.PANEL, + "account_section/paddingSignInControls": T.PANEL, + "account_section/signin_controls": T.PANEL, + "account_section/paddingGamerTagControls": T.PANEL, + "account_section/gamertag_controls": T.PANEL, + "account_section/paddingClearMSAToken": T.PANEL, + "account_section/clear_msa_token": T.PANEL, + "account_section/clear_msa_token/clear_msa_token_button": T.BUTTON, + "account_section/paddingUnlinkMSAAccount": T.PANEL, + "account_section/unlink_msa_account": T.BUTTON, + "account_section/unlink_msa_account_nx": T.BUTTON, + "account_section/paddingDeleteAccount": T.PANEL, + "account_section/delete_account": T.BUTTON, + "account_section/paddingUseRemoteConnect": T.PANEL, + "account_section/remote_connect_toggle": T.PANEL, + "account_section/paddingInfoLabels": T.PANEL, + "account_section/account_info_buttom": T.BUTTON, + "account_section/account_info_buttom/account_info_label": T.LABEL, + "name_controls": T.STACK_PANEL, + "name_controls/option_text_edit_control": T.EDIT_BOX, + "signin_controls": T.STACK_PANEL, + "signin_controls/sign_in": T.PANEL, + "signin_controls/sign_in/action_button": T.BUTTON, + "signin_subscription": T.STACK_PANEL, + "signin_subscription/sign_in": T.PANEL, + "signin_subscription/sign_in/please_signin_label": T.LABEL, + "gamertag_controls": T.STACK_PANEL, + "gamertag_controls/gamertag_label": T.STACK_PANEL, + "gamertag_controls/gamertag_label/panel_descriptor": T.PANEL, + "gamertag_controls/gamertag_label/panel_descriptor/label_descriptor": T.LABEL, + "gamertag_controls/gamertag_label/spacer": T.PANEL, + "gamertag_controls/gamertag_label/gamerpic": T.CUSTOM, + "gamertag_controls/gamertag_label/spacer_2": T.PANEL, + "gamertag_controls/gamertag_label/panel_gamertag": T.PANEL, + "gamertag_controls/gamertag_label/panel_gamertag/gamertag_label": T.LABEL, + "gamertag_controls/paddingXboxAccountButtons": T.PANEL, + "gamertag_controls/xboxlive_deep_link_buttons": T.PANEL, + "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button": T.BUTTON, + "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button_mobile": T.BUTTON, + "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button": T.BUTTON, + "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button_mobile": T.BUTTON, + "gamertag_controls/xboxlive_deep_link_buttons/paddingXboxSettingsPrivacyControl": T.PANEL, + "gamertag_controls/xboxlive_deep_link_buttons/link_button": T.BUTTON, + "gamertag_controls/paddingSignOut": T.PANEL, + "gamertag_controls/realms_invites": T.PANEL, + "gamertag_controls/realms_invites/check_realms_invites_button": T.BUTTON, + "gamertag_controls/sign_out": T.PANEL, + "gamertag_controls/sign_out/action_button": T.BUTTON, + "gamertag_controls/offline_token_authorization": T.PANEL, + "gamertag_controls/offline_token_authorization/request_psn_authorization_button": T.BUTTON, + "auto_update_mode_dropdown_content": T.PANEL, + "global_texture_pack_button": T.PANEL, + "global_texture_pack_section": T.STACK_PANEL, + "storage_management_button": T.PANEL, + "storage_management_section": T.PANEL, + "storage_management_header": T.PANEL, + "storage_management_footer": T.PANEL, + "edu_cloud_storage_button": T.PANEL, + "edu_cloud_storage_section": T.STACK_PANEL, + "edu_cloud_storage_section/spacing1": T.PANEL, + "edu_cloud_storage_section/edu_cloud_backup_toggle": T.PANEL, + "edu_cloud_storage_section/spacing2": T.PANEL, + "edu_cloud_storage_section/body_wrapper_panel": T.PANEL, + "edu_cloud_storage_section/body_wrapper_panel/tts_border": T.BUTTON, + "edu_cloud_storage_section/body_wrapper_panel/edu_cloud_storage_body_label": T.LABEL, + "edu_cloud_storage_section/spacing3": T.PANEL, + "edu_cloud_storage_section/edu_cloud_onedrive_button": T.BUTTON, + "edu_cloud_storage_section/spacing4": T.PANEL, + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel": T.STACK_PANEL, + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/learn_more_button": T.BUTTON, + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon": T.PANEL, + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon/icon": T.IMAGE, + "edu_cloud_onedrive_button_content": T.STACK_PANEL, + "edu_cloud_onedrive_button_content/padded_label": T.PANEL, + "edu_cloud_onedrive_button_content/padded_label/label": T.LABEL, + "edu_cloud_onedrive_button_content/padded_icon": T.PANEL, + "edu_cloud_onedrive_button_content/padded_icon/icon": T.IMAGE, + "edu_cloud_onedrive_error_popup": T.INPUT_PANEL, + "edu_cloud_onedrive_error_content": T.STACK_PANEL, + "edu_cloud_onedrive_error_content/body_text_centering_panel2": T.PANEL, + "edu_cloud_onedrive_error_content/body_text_centering_panel2/body_text2": T.LABEL, + "edu_cloud_onedrive_error_content/padding2": T.PANEL, + "edu_cloud_onedrive_error_content/learn_more_button": T.BUTTON, + "edu_cloud_onedrive_error_content/padding3": T.PANEL, + "edu_cloud_onedrive_error_content/ok_button": T.BUTTON, + "creator_button": T.PANEL, + "editor_toggle_panel": T.STACK_PANEL, + "editor_toggle_panel/editor_confirmation_panel": T.STACK_PANEL, + "editor_toggle_panel/editor_confirmation_panel/editor_active_label": T.LABEL, + "editor_toggle_panel/editor_confirmation_panel/toggle_spacer": T.PANEL, + "editor_toggle_panel/editor_confirmation_panel/editor_confirmation_section_label": T.LABEL, + "editor_toggle_panel/editor_toggle_spacer": T.PANEL, + "editor_toggle_panel/editor_image_panel": T.STACK_PANEL, + "editor_toggle_panel/editor_image_panel/editor_icon": T.IMAGE, + "creator_toggles_panel": T.STACK_PANEL, + "creator_toggles_panel/section_panel_1": T.PANEL, + "creator_toggles_panel/section_panel_1/section_divider": T.IMAGE, + "creator_toggles_panel/copy_coordinate_section_stack_panel": T.STACK_PANEL, + "creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label": T.LABEL, + "creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label_spacer": T.PANEL, + "creator_toggles_panel/copy_coordinate_section_stack_panel/option_content_file_log": T.PANEL, + "creator_toggles_panel/creator_setting_button": T.STACK_PANEL, + "creator_toggles_panel/creator_setting_button/go_to_keybinds": T.BUTTON, + "creator_toggles_panel/creator_setting_button/creator_settings_section_label_spacer": T.PANEL, + "debugger_toggles_panel": T.STACK_PANEL, + "debugger_toggles_panel/section_panel_1": T.PANEL, + "debugger_toggles_panel/section_panel_1/section_divider": T.IMAGE, + "debugger_toggles_panel/primary_panel": T.STACK_PANEL, + "debugger_toggles_panel/primary_panel/heading": T.LABEL, + "debugger_toggles_panel/primary_panel/spacer": T.PANEL, + "debugger_toggles_panel/primary_panel/passcode_required_toggle": T.PANEL, + "debugger_toggles_panel/primary_panel/passcode_input": T.PANEL, + "debugger_toggles_panel/primary_panel/auto_attach_toggle": T.PANEL, + "debugger_toggles_panel/primary_panel/all_options_panel": T.STACK_PANEL, + "debugger_toggles_panel/primary_panel/all_options_panel/attach_mode_option": T.PANEL, + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel": T.STACK_PANEL, + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/host_input": T.PANEL, + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/spacer": T.PANEL, + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/port_input": T.PANEL, + "debugger_toggles_panel/primary_panel/all_options_panel/auto_attach_timeout_slider": T.PANEL, + "diagnostics_toggles_panel": T.STACK_PANEL, + "diagnostics_toggles_panel/section_panel_1": T.PANEL, + "diagnostics_toggles_panel/section_panel_1/section_divider": T.IMAGE, + "diagnostics_toggles_panel/primary_panel": T.STACK_PANEL, + "diagnostics_toggles_panel/primary_panel/heading": T.LABEL, + "diagnostics_toggles_panel/primary_panel/spacer": T.PANEL, + "diagnostics_toggles_panel/primary_panel/serverbound_client_diagnostics_toggle": T.PANEL, + "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons": T.STACK_PANEL, + "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons/clear_diagnostics_capture_files": T.BUTTON, + "watchdog_toggles_panel": T.STACK_PANEL, + "watchdog_toggles_panel/section_panel_1": T.PANEL, + "watchdog_toggles_panel/section_panel_1/section_divider": T.IMAGE, + "watchdog_toggles_panel/primary_panel": T.STACK_PANEL, + "watchdog_toggles_panel/primary_panel/heading": T.LABEL, + "watchdog_toggles_panel/primary_panel/spacer": T.PANEL, + "watchdog_toggles_panel/primary_panel/hang_threshold_slider": T.PANEL, + "watchdog_toggles_panel/primary_panel/spike_warning_toggle": T.PANEL, + "watchdog_toggles_panel/primary_panel/spike_threshold_slider": T.PANEL, + "watchdog_toggles_panel/primary_panel/slow_warning_toggle": T.PANEL, + "watchdog_toggles_panel/primary_panel/slow_threshold_slider": T.PANEL, + "device_info_toggles_panel": T.STACK_PANEL, + "device_info_toggles_panel/section_panel_1": T.PANEL, + "device_info_toggles_panel/section_panel_1/section_divider": T.IMAGE, + "device_info_toggles_panel/primary_panel": T.STACK_PANEL, + "device_info_toggles_panel/primary_panel/heading": T.LABEL, + "device_info_toggles_panel/primary_panel/spacer": T.PANEL, + "device_info_toggles_panel/primary_panel/device_info_memory_tier_use_override_toggle": T.PANEL, + "device_info_toggles_panel/device_info_memory_tier_dropdown": T.PANEL, + "content_memory_tier_dropdown_content": T.PANEL, + "content_log_gui_level_content": T.PANEL, + "content_log_panel": T.STACK_PANEL, + "content_log_panel/section_panel_1": T.PANEL, + "content_log_panel/section_panel_1/section_divider": T.IMAGE, + "content_log_panel/content_log_section_label": T.LABEL, + "content_log_panel/content_log_section_label_spacer": T.PANEL, + "content_log_panel/option_content_file_log": T.PANEL, + "content_log_panel/option_content_gui_log": T.PANEL, + "content_log_panel/option_content_gui_log_show_on_errors": T.PANEL, + "content_log_panel/option_content_log_gui_level": T.PANEL, + "content_log_panel/content_log_buttons": T.STACK_PANEL, + "content_log_panel/content_log_buttons/open_content_log_history": T.BUTTON, + "content_log_panel/content_log_buttons/content_log_section_label_spacer": T.PANEL, + "content_log_panel/content_log_buttons/clear_content_log_files": T.BUTTON, + "content_log_panel/content_log_section_label_spacer_2": T.PANEL, + "content_log_panel/content_log_location_label_header": T.LABEL, + "content_log_panel/content_log_location_label": T.LABEL, + "creator_section": T.STACK_PANEL, + "creator_section/editor_toggle": T.STACK_PANEL, + "creator_section/creator_toggles": T.STACK_PANEL, + "creator_section/debugger_toggles_panel": T.STACK_PANEL, + "creator_section/diagnostics_toggle_panel": T.STACK_PANEL, + "creator_section/watchdog_toggles_panel": T.STACK_PANEL, + "creator_section/device_info_toggles_panel": T.STACK_PANEL, + "creator_section/content_log_panel": T.STACK_PANEL, + "video_button": T.PANEL, + "advanced_video_options_toggle": T.TOGGLE, + "video_section_ore_ui": T.STACK_PANEL, + "video_section_ore_ui/spacer_0": T.PANEL, + "video_section_ore_ui/generic_label": T.LABEL, + "video_section_ore_ui/spacer_1": T.PANEL, + "video_section_ore_ui/gamepad_helper_label": T.LABEL, + "video_menu_slider_step_progress": T.IMAGE, + "video_menu_slider_progress": T.IMAGE, + "video_menu_slider_bar_default": T.IMAGE, + "video_menu_customization_slider_control": T.PANEL, + "video_menu_customization_slider_control/slider": T.SLIDER, + "video_menu_customization_slider_control/slider/slider_box": T.SLIDER_BOX, + "video_menu_customization_slider_control/slider/slider_bar_default": T.IMAGE, + "video_menu_customization_slider_control/slider/slider_bar_hover": T.IMAGE, + "video_menu_customization_option_slider": T.PANEL, + "video_section": T.STACK_PANEL, + "video_section/advanced_graphics_options_panel": T.STACK_PANEL, + "video_section/advanced_graphics_options_panel/graphics_mode": T.PANEL, + "video_section/advanced_graphics_options_panel/graphics_quality_preset_mode_dropdown_content": T.PANEL, + "video_section/advanced_graphics_options_panel/spacer_0": T.PANEL, + "video_section/advanced_graphics_options_panel/advanced_graphics_options_button": T.BUTTON, + "video_section/advanced_graphics_options_panel/advanced_graphics_options_section": T.STACK_PANEL, + "video_section/spacer_1": T.PANEL, + "video_section/graphics_api_dropdown": T.PANEL, + "video_section/raytracing_render_distance_slider": T.PANEL, + "video_section/raytracing_render_distance_slider/option_generic_core": T.STACK_PANEL, + "video_section/deferred_render_distance_slider": T.PANEL, + "video_section/deferred_render_distance_slider/option_generic_core": T.STACK_PANEL, + "video_section/render_distance_slider": T.PANEL, + "video_section/render_distance_slider/render_distance_warning": T.PANEL, + "video_section/render_distance_slider/option_generic_core": T.STACK_PANEL, + "video_section/render_distance_warning_text": T.PANEL, + "video_section/render_distance_warning_text/render_distance_popup": T.IMAGE, + "video_section/spacer_2": T.PANEL, + "video_section/brightness_slider": T.PANEL, + "video_section/spacer_3": T.PANEL, + "video_section/perspective_dropdown": T.PANEL, + "video_section/spacer_4": T.PANEL, + "video_section/fullscreen_toggle": T.PANEL, + "video_section/spacer_5": T.PANEL, + "video_section/option_toggle_hidehand": T.PANEL, + "video_section/spacer_6": T.PANEL, + "video_section/hide_paperdoll_toggle": T.PANEL, + "video_section/spacer_7": T.PANEL, + "video_section/option_toggle_hidehud": T.PANEL, + "video_section/spacer_8": T.PANEL, + "video_section/option_toggle_screen_animations": T.PANEL, + "video_section/spacer_9": T.PANEL, + "video_section/hud_opacity_slider": T.PANEL, + "video_section/spacer_10": T.PANEL, + "video_section/splitscreen_hud_opacity_slider": T.PANEL, + "video_section/spacer_11": T.PANEL, + "video_section/setup_safe_zone": T.PANEL, + "video_section/setup_safe_zone/action_button": T.BUTTON, + "video_section/spacer_12": T.PANEL, + "video_section/fov_slider": T.PANEL, + "video_section/spacer_13": T.PANEL, + "video_section/split_screen_dropdown": T.PANEL, + "video_section/spacer_14": T.PANEL, + "video_section/auto_save_icon_toggle": T.PANEL, + "video_section/spacer_15": T.PANEL, + "video_section/outline_selection_toggle": T.PANEL, + "video_section/spacer_16": T.PANEL, + "video_section/player_names_toggle": T.PANEL, + "video_section/spacer_17": T.PANEL, + "video_section/splitscreen_player_names_toggle": T.PANEL, + "video_section/spacer_18": T.PANEL, + "video_section/view_bobbing_toggle": T.PANEL, + "video_section/spacer_19": T.PANEL, + "video_section/camera_shake_toggle": T.PANEL, + "video_section/spacer_20": T.PANEL, + "video_section/fancy_leaves_toggle": T.PANEL, + "video_section/spacer_21": T.PANEL, + "video_section/fancy_bubbles_toggle": T.PANEL, + "video_section/spacer_22": T.PANEL, + "video_section/render_clouds_toggle": T.PANEL, + "video_section/spacer_23": T.PANEL, + "video_section/fancy_clouds_toggle": T.PANEL, + "video_section/spacer_24": T.PANEL, + "video_section/smooth_lighting_toggle": T.PANEL, + "video_section/spacer_25": T.PANEL, + "video_section/rendering_profile_option_slider": T.PANEL, + "video_section/field_of_view_toggle": T.PANEL, + "video_section/spacer_26": T.PANEL, + "video_section/damage_bob_option_slider": T.PANEL, + "video_section/spacer_26.5": T.PANEL, + "video_section/super_fancy_panel": T.PANEL, + "video_section/super_fancy_panel/super_fancy_section": T.IMAGE, + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents": T.STACK_PANEL, + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/atmospherics_toggle": T.PANEL, + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/edge_highlight_toggle": T.PANEL, + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/bloom_toggle": T.PANEL, + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/terrain_shadows_toggle": T.PANEL, + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/super_fancy_water_toggle": T.PANEL, + "video_section/ui_profile_dropdown": T.PANEL, + "video_section/spacer_27": T.PANEL, + "video_section/gui_scale_slider": T.PANEL, + "video_section/gui_scale_slider/option_generic_core": T.STACK_PANEL, + "video_section/spacer_28": T.PANEL, + "video_section/gui_accessibility_scaling_toggle": T.PANEL, + "video_section/gui_accessibility_scaling_toggle/option_generic_core": T.STACK_PANEL, + "video_section/spacer_29": T.PANEL, + "video_section/option_toggle_improved_input_response": T.PANEL, + "video_section/option_toggle_improved_input_response/option_generic_core": T.STACK_PANEL, + "video_section/spacer_30": T.PANEL, + "video_section/frame_pacing_toggle": T.PANEL, + "video_section/frame_pacing_toggle/option_generic_core": T.STACK_PANEL, + "video_section/spacer_31": T.PANEL, + "video_section/graphics_mode_switch_toggle": T.PANEL, + "video_section/spacer_32": T.PANEL, + "video_section/upscaling_toggle": T.PANEL, + "video_section/spacer_33": T.PANEL, + "video_section/max_framerate_slider": T.PANEL, + "video_section/spacer_34": T.PANEL, + "video_section/msaa_slider": T.PANEL, + "video_section/spacer_35": T.PANEL, + "video_section/texel_anti_aliasing_toggle": T.PANEL, + "video_section/spacer_36": T.PANEL, + "video_section/reset_button": T.BUTTON, + "max_framerate_slider": T.PANEL, + "max_framerate_slider/option_generic_core": T.STACK_PANEL, + "msaa_slider": T.PANEL, + "upscaling_toggle": T.PANEL, + "upscaling_toggle/option_generic_core": T.STACK_PANEL, + "render_distance_warning_image": T.IMAGE, + "render_distance_warning": T.PANEL, + "render_distance_warning/render_distance_warning_image": T.IMAGE, + "ui_profile_dropdown_content": T.PANEL, + "split_screen_dropdown_content": T.PANEL, + "third_person_dropdown_content": T.PANEL, + "toast_notification_duration_dropdown_content": T.PANEL, + "chat_message_duration_dropdown_content": T.PANEL, + "file_storage_location_content": T.PANEL, + "background": T.PANEL, + "background/fill": T.IMAGE, + "background/border": T.IMAGE, + "left_button_label": T.LABEL, + "right_button_label": T.LABEL, + "realms_button_panel": T.STACK_PANEL, + "realms_button_panel/pad_0": T.PANEL, + "realms_button_panel/left_button_panel": T.PANEL, + "realms_button_panel/left_button_panel/left_button": T.BUTTON, + "realms_button_panel/left_button_panel/left_button_loading": T.PANEL, + "realms_button_panel/pad_1": T.PANEL, + "realms_button_panel/right_button": T.BUTTON, + "realms_button_panel/pad_2": T.PANEL, + "consumable_not_extendable": T.PANEL, + "consumable_not_extendable/panel_content": T.STACK_PANEL, + "consumable_not_extendable/panel_content/padded_icon_0": T.PANEL, + "consumable_not_extendable/panel_content/limited_status_image": T.IMAGE, + "consumable_not_extendable/panel_content/padded_icon_1": T.PANEL, + "consumable_not_extendable/panel_content/label_panel": T.PANEL, + "consumable_not_extendable/panel_content/label_panel/name_label2": T.LABEL, + "possible_store_mismatch": T.PANEL, + "possible_store_mismatch/panel_content": T.STACK_PANEL, + "possible_store_mismatch/panel_content/padded_icon_0": T.PANEL, + "possible_store_mismatch/panel_content/limited_status_image": T.IMAGE, + "possible_store_mismatch/panel_content/padded_icon_1": T.PANEL, + "possible_store_mismatch/panel_content/label_panel": T.PANEL, + "possible_store_mismatch/panel_content/label_panel/name_label2": T.LABEL, + "realms_subscription_stack": T.STACK_PANEL, + "realms_subscription_stack/image_panel": T.PANEL, + "realms_subscription_stack/image_panel/0": T.UNKNOWN, + "realms_subscription_stack/pad": T.PANEL, + "realms_subscription_stack/info": T.STACK_PANEL, + "realms_subscription_stack/info/realm_name": T.LABEL, + "realms_subscription_stack/info/realms_desc_label": T.LABEL, + "realms_subscription_stack/info/bottom_pad": T.PANEL, + "realms_subscription_main": T.PANEL, + "realms_subscription_main/black_background": T.PANEL, + "realms_subscription_main/realms_plus_subscription_stack": T.STACK_PANEL, + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_subscription_top_stack": T.STACK_PANEL, + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack": T.STACK_PANEL, + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/top_pad": T.PANEL, + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/realms_plus_bottom_button_panel": T.STACK_PANEL, + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/bottom_pad": T.PANEL, + "realms_subscription_panel": T.STACK_PANEL, + "realms_subscription_panel/top_panel": T.PANEL, + "realms_subscription_panel/pad_1": T.PANEL, + "realms_subscription_panel/middle_panel": T.PANEL, + "realms_subscription_panel/middle_panel/black_background": T.PANEL, + "realms_subscription_panel/middle_panel/renews_text": T.LABEL, + "realms_subscription_panel/pad_2": T.PANEL, + "realms_subscription_panel/lower_panel": T.PANEL, + "realms_subscription_panel/lower_panel/black_background": T.PANEL, + "realms_subscription_panel/lower_panel/consumable_not_extendable": T.PANEL, + "realms_subscription_panel/pad_3": T.PANEL, + "realms_subscription_panel/platform_mismatch_container": T.PANEL, + "realms_subscription_panel/platform_mismatch_container/black_background": T.PANEL, + "realms_subscription_panel/platform_mismatch_container/possible_store_mismatch": T.PANEL, + "realms_subscription_panel/pad_4": T.PANEL, + "realms_plus_subscription_panel": T.STACK_PANEL, + "additional_subscription_panel": T.STACK_PANEL, + "view_subscriptions_button": T.PANEL, + "view_subscriptions_prerelease_section": T.PANEL, + "view_subscriptions_prerelease_section/black_background": T.PANEL, + "view_subscriptions_prerelease_section/renews_text": T.LABEL, + "view_subscriptions_section": T.STACK_PANEL, + "view_subscriptions_section/sunsetting_label": T.IMAGE, + "view_subscriptions_section/failed_loading_subscriptions_label": T.LABEL, + "view_subscriptions_section/loading_subscriptions_label": T.LABEL, + "view_subscriptions_section/no_active_subscriptions_panel": T.PANEL, + "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions": T.PANEL, + "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions/text": T.LABEL, + "view_subscriptions_section/no_active_subscriptions_panel/background_panel": T.IMAGE, + "view_subscriptions_section/realms_plus_header_my_subscriptions": T.PANEL, + "view_subscriptions_section/realms_plus_header_my_subscriptions/text": T.LABEL, + "view_subscriptions_section/realms_plus_subscriptions_grid": T.STACK_PANEL, + "view_subscriptions_section/csb_purchased_with_cancel": T.PANEL, + "view_subscriptions_section/csb_purchased_with_buy": T.PANEL, + "view_subscriptions_section/csb_purchased_padding": T.PANEL, + "view_subscriptions_section/platform_mismatch_container": T.PANEL, + "view_subscriptions_section/platform_mismatch_container/black_background": T.PANEL, + "view_subscriptions_section/platform_mismatch_container/possible_store_mismatch": T.PANEL, + "view_subscriptions_section/csb_expiration_container": T.PANEL, + "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container": T.STACK_PANEL, + "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration_text_padding": T.PANEL, + "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration": T.LABEL, + "view_subscriptions_section/csb_expiration_container/background_panel": T.IMAGE, + "view_subscriptions_section/csb_expiration_and_platform_mismatch_padding": T.PANEL, + "view_subscriptions_section/additional_realms_subscriptions_grid": T.STACK_PANEL, + "view_subscriptions_section/settings_additional_subscription_offers_section": T.STACK_PANEL, + "view_subscriptions_section/pad_3": T.PANEL, + "settings_additional_subscription_offers_section": T.STACK_PANEL, + "settings_additional_subscription_offers_section/active_available_divider": T.STACK_PANEL, + "settings_additional_subscription_offers_section/realms_plus_header_label": T.LABEL, + "settings_additional_subscription_offers_section/pad_0": T.PANEL, + "settings_additional_subscription_offers_section/additional_realms_buy_offer": T.PANEL, + "settings_additional_subscription_offers_section/pad_8": T.PANEL, + "settings_additional_subscription_offers_section/csb_buy_panel": T.PANEL, + "accessibility_button": T.PANEL, + "toast_notification_duration_label": T.LABEL, + "toast_notification_duration_info_label": T.LABEL, + "toast_notification_duration_info_edu_label": T.LABEL, + "chat_message_duration_label": T.LABEL, + "chat_message_duration_info_label": T.LABEL, + "accessibility_section": T.STACK_PANEL, + "accessibility_section/option_toggle0": T.PANEL, + "accessibility_section/option_toggle1": T.PANEL, + "accessibility_section/option_toggle2": T.PANEL, + "accessibility_section/option_slider_0": T.PANEL, + "accessibility_section/option_toggle3": T.PANEL, + "accessibility_section/hud_text_background_opacity_slider": T.PANEL, + "accessibility_section/chat_opacity_slider": T.PANEL, + "accessibility_section/actionbar_text_background_opacity_slider": T.PANEL, + "accessibility_section/camera_shake_toggle": T.PANEL, + "accessibility_section/hide_endflash_toggle": T.PANEL, + "accessibility_section/enable_dithering_blocks_toggle": T.PANEL, + "accessibility_section/enable_dithering_mobs_toggle": T.PANEL, + "accessibility_section/darkness_slider": T.PANEL, + "accessibility_section/glint_strength_slider": T.PANEL, + "accessibility_section/glint_speed_slider": T.PANEL, + "accessibility_section/toast_notification_duration_options_panel": T.STACK_PANEL, + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_label_wrapper": T.PANEL, + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_wrapper": T.PANEL, + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_edu_wrapper": T.PANEL, + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown_spacer_pre": T.PANEL, + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown": T.PANEL, + "accessibility_section/chat_message_duration_options_panel": T.STACK_PANEL, + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_label_wrapper": T.PANEL, + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_info_label_wrapper": T.PANEL, + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown_spacer_pre": T.PANEL, + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown": T.PANEL, + "accessibility_section/gui_scale_slider": T.PANEL, + "accessibility_section/gui_scale_slider/option_generic_core": T.STACK_PANEL, + "accessibility_section/gui_accessibility_scaling_toggle": T.PANEL, + "accessibility_section/gui_accessibility_scaling_toggle/option_generic_core": T.STACK_PANEL, + "accessibility_section/reset_button": T.BUTTON, + "accessibility_section_ore_ui": T.STACK_PANEL, + "accessibility_section_ore_ui/spacer_0": T.PANEL, + "accessibility_section_ore_ui/generic_label": T.LABEL, + "accessibility_section_ore_ui/spacer_1": T.PANEL, + "accessibility_section_ore_ui/gamepad_helper_label": T.LABEL, + "accessibility_section_ore_ui/accessibility_button": T.BUTTON, + "sound_button": T.PANEL, + "sound_section_ore_ui": T.STACK_PANEL, + "sound_section_ore_ui/spacer_0": T.PANEL, + "sound_section_ore_ui/generic_label": T.LABEL, + "sound_section_ore_ui/spacer_1": T.PANEL, + "sound_section_ore_ui/gamepad_helper_label": T.LABEL, + "sound_section": T.STACK_PANEL, + "sound_section/paddingMainVolume": T.PANEL, + "sound_section/option_slider_0": T.PANEL, + "sound_section/paddingDividerAudioSettings": T.PANEL, + "sound_section/dividerAudioSettings": T.PANEL, + "sound_section/dividerAudioSettings/section_divider": T.IMAGE, + "sound_section/paddingMusic": T.PANEL, + "sound_section/option_slider_1": T.PANEL, + "sound_section/paddingSound": T.PANEL, + "sound_section/option_slider_2": T.PANEL, + "sound_section/paddingAmbient": T.PANEL, + "sound_section/option_slider_3": T.PANEL, + "sound_section/paddingBlockVolume": T.PANEL, + "sound_section/option_slider_4": T.PANEL, + "sound_section/paddingHostile": T.PANEL, + "sound_section/option_slider_5": T.PANEL, + "sound_section/paddingNeutralVolume": T.PANEL, + "sound_section/option_slider_6": T.PANEL, + "sound_section/paddingPlayervolume": T.PANEL, + "sound_section/option_slider_7": T.PANEL, + "sound_section/paddingRecordVolume": T.PANEL, + "sound_section/option_slider_8": T.PANEL, + "sound_section/paddingWeatherVolume": T.PANEL, + "sound_section/option_slider_9": T.PANEL, + "sound_section/paddingTTSVolume": T.PANEL, + "sound_section/option_slider_10": T.PANEL, + "sound_section/paddingResetVolumes": T.PANEL, + "sound_section/reset_button": T.BUTTON, + "sound_section/paddingEndOfList": T.PANEL, + "language_button": T.PANEL, + "language_grid_item": T.PANEL, + "language_section": T.STACK_PANEL, + "language_section/language_list_grid": T.GRID, + "language_section_ore_ui": T.STACK_PANEL, + "language_section_ore_ui/spacer_0": T.PANEL, + "language_section_ore_ui/generic_label": T.LABEL, + "language_section_ore_ui/spacer_1": T.PANEL, + "language_section_ore_ui/gamepad_helper_label": T.LABEL, + "preview_button": T.PANEL, + "preview_section": T.STACK_PANEL, + "preview_section/spacer_0": T.PANEL, + "preview_section/generic_label": T.LABEL, + "preview_section/preview_store_launch_app1_button": T.BUTTON, + "preview_section/preview_store_launch_app2_button": T.BUTTON, + "override_date_panel": T.STACK_PANEL, + "override_date_panel/year_text_box": T.PANEL, + "override_date_panel/year_month_slash": T.LABEL, + "override_date_panel/month_text_box": T.PANEL, + "override_date_panel/month_day_slash": T.LABEL, + "override_date_panel/day_text_box": T.PANEL, + "override_date_panel/day_hour_slash": T.LABEL, + "override_date_panel/hour_text_box": T.PANEL, + "override_date_panel/hour_minute_slash": T.LABEL, + "override_date_panel/minute_text_box": T.PANEL, + "timezonetype_dropdown_content": T.PANEL, + "date_options_panel": T.STACK_PANEL, + "date_options_panel/padding0": T.PANEL, + "date_options_panel/display_override_datetime_option_toggle": T.PANEL, + "date_options_panel/option_toggle_date_override": T.PANEL, + "date_options_panel/override_date_options_panel": T.PANEL, + "override_date_options_panel": T.PANEL, + "override_date_options_panel/override_date_options_background_panel": T.STACK_PANEL, + "override_date_options_panel/override_date_options_background_panel/load_override_date_option_toggle": T.PANEL, + "override_date_options_panel/override_date_options_background_panel/select_dropdown": T.PANEL, + "override_date_options_panel/override_date_options_background_panel/override_date_panel": T.STACK_PANEL, + "override_date_options_panel/override_date_options_background_panel/padding1": T.PANEL, + "override_date_options_panel/override_date_options_background_panel/override_time_scale_option": T.PANEL, + "override_date_options_panel/override_date_options_background_panel/reset_time_button": T.BUTTON, + "override_date_options_panel/override_date_options_background_panel/padding2": T.PANEL, + "debug_display_logged_error_panel": T.PANEL, + "debug_display_logged_error_panel/debug_display_logged_error_panel_background": T.STACK_PANEL, + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_marketplace": T.PANEL, + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_ui": T.PANEL, + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_osi": T.PANEL, + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_other": T.PANEL, + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/spacer_0": T.PANEL, + "xbox_sandbox_panel": T.STACK_PANEL, + "xbox_sandbox_panel/padding0": T.PANEL, + "xbox_sandbox_panel/display_override_xbox_sandbox_toggle_windows": T.PANEL, + "xbox_sandbox_panel/display_override_xbox_sandbox_toggle": T.PANEL, + "xbox_sandbox_panel/override_xbox_options_panel": T.PANEL, + "override_xbox_options_panel": T.PANEL, + "override_xbox_options_panel/override_xbox_options": T.STACK_PANEL, + "override_xbox_options_panel/override_xbox_options/option_dropdown_xbox": T.PANEL, + "override_version_options_panel": T.STACK_PANEL, + "override_version_options_panel/override_version_panel": T.STACK_PANEL, + "override_version_options_panel/override_version_button_panel": T.PANEL, + "override_version_options_panel/override_version_button_panel/update_override_version_button": T.BUTTON, + "override_version_options_panel/override_date_panel_bottom_padding": T.PANEL, + "override_version_panel": T.STACK_PANEL, + "override_version_panel/major_version_text_box": T.PANEL, + "override_version_panel/first_dot": T.LABEL, + "override_version_panel/minor_version_text_box": T.PANEL, + "override_version_panel/second_dot": T.LABEL, + "override_version_panel/patch_version_text_box": T.PANEL, + "dot_label": T.LABEL, + "debug_override_treatments_panel": T.PANEL, + "debug_override_treatments_panel/override_treatments_panel_background": T.STACK_PANEL, + "debug_override_treatments_panel/override_treatments_panel_background/option_toggle_treatment_override": T.PANEL, + "debug_override_treatments_panel/override_treatments_panel_background/spacer_0": T.PANEL, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel": T.STACK_PANEL, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/apply_treatments_button": T.BUTTON, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel": T.STACK_PANEL, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/text_edit_treatment": T.PANEL, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel": T.PANEL, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel/add_button": T.BUTTON, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel": T.STACK_PANEL, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/reset_to_default": T.BUTTON, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/clear_treatments": T.BUTTON, + "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel": T.IMAGE, + "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel/treatments_label": T.LABEL, + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1": T.PANEL, + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1/progress_loading_spinner_1": T.IMAGE, + "debug_override_treatments_panel/override_treatments_panel_background/treatment_grid": T.GRID, + "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel": T.IMAGE, + "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel/treatments_label": T.LABEL, + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2": T.PANEL, + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2/progress_loading_spinner_2": T.IMAGE, + "debug_override_treatments_panel/override_treatments_panel_background/unused_treatment_grid": T.GRID, + "debug_override_treatments_panel/override_treatments_panel_background/spacer_1": T.PANEL, + "debug_override_configurations_panel": T.PANEL, + "debug_override_configurations_panel/override_configurations_panel_background": T.STACK_PANEL, + "debug_override_configurations_panel/override_configurations_panel_background/option_toggle_configuration_override": T.PANEL, + "debug_override_configurations_panel/override_configurations_panel_background/spacer_0": T.PANEL, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel": T.STACK_PANEL, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel": T.STACK_PANEL, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/text_edit_configuration": T.PANEL, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel": T.PANEL, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel/add_button": T.BUTTON, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel": T.STACK_PANEL, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/reset_to_default": T.BUTTON, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/clear_configurations": T.BUTTON, + "debug_override_configurations_panel/override_configurations_panel_background/configuration_grid": T.GRID, + "debug_override_realms_features_panel": T.PANEL, + "debug_override_realms_features_panel/override_realms_features_panel_background": T.STACK_PANEL, + "debug_override_realms_features_panel/override_realms_features_panel_background/option_toggle_realms_feature_override": T.PANEL, + "debug_override_realms_features_panel/override_realms_features_panel_background/spacer_0": T.PANEL, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel": T.STACK_PANEL, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel": T.STACK_PANEL, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/text_edit_realms_features": T.PANEL, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/add_button_panel": T.PANEL, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/add_button_panel/add_button": T.BUTTON, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel": T.STACK_PANEL, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/reset_to_default": T.BUTTON, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/clear_realms_features": T.BUTTON, + "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel": T.IMAGE, + "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel/realms_features_label": T.LABEL, + "debug_override_realms_features_panel/override_realms_features_panel_background/realms_features_grid": T.GRID, + "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel": T.IMAGE, + "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel/realms_features_label": T.LABEL, + "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_grid": T.GRID, + "configuration_grid_item": T.STACK_PANEL, + "configuration_grid_item/configuration_id_panel": T.IMAGE, + "configuration_grid_item/configuration_id_panel/configuration_id": T.LABEL, + "configuration_grid_item/remove_button": T.BUTTON, + "remove_configuration_icon": T.IMAGE, + "realms_feature_grid_item": T.STACK_PANEL, + "realms_feature_grid_item/realms_feature_id_panel": T.IMAGE, + "realms_feature_grid_item/realms_feature_id_panel/realms_feature_id": T.LABEL, + "realms_feature_grid_item/disable_button": T.BUTTON, + "disable_realms_feature_icon": T.IMAGE, + "unused_realms_feature_grid_item": T.STACK_PANEL, + "unused_realms_feature_grid_item/unused_realms_feature_id_panel": T.IMAGE, + "unused_realms_feature_grid_item/unused_realms_feature_id_panel/unused_realms_feature_id": T.LABEL, + "unused_realms_feature_grid_item/enable_button": T.BUTTON, + "enable_realms_feature_icon": T.IMAGE, + "treatment_grid_item": T.STACK_PANEL, + "treatment_grid_item/treatment_id_panel": T.IMAGE, + "treatment_grid_item/treatment_id_panel/treatment_id": T.LABEL, + "treatment_grid_item/remove_button": T.BUTTON, + "remove_treatment_icon": T.IMAGE, + "unused_treatment_grid_item": T.STACK_PANEL, + "unused_treatment_grid_item/unused_treatment_id_panel": T.IMAGE, + "unused_treatment_grid_item/unused_treatment_id_panel/unused_treatment_id": T.LABEL, + "unused_treatment_grid_item/add_button": T.BUTTON, + "add_treatment_icon": T.IMAGE, + "debug_select_windows_store_panel": T.STACK_PANEL, + "debug_select_windows_store_panel/select_store_dropdown": T.PANEL, + "debug_select_windows_store_panel/stores_label": T.LABEL, + "debug_select_windows_store_panel/sandbox_label": T.LABEL, + "windows_store_dropdown_content": T.PANEL, + "mock_http_panel": T.STACK_PANEL, + "mock_http_panel/display_mock_http_panel_toggle": T.PANEL, + "mock_http_panel/mock_http_panel_content": T.PANEL, + "mock_http_panel_content": T.PANEL, + "mock_http_panel_content/mock_http_panel_background": T.STACK_PANEL, + "mock_http_panel_content/mock_http_panel_background/add_mock_rules_button": T.BUTTON, + "mock_http_panel_content/mock_http_panel_background/remove_all_mock_rules_button": T.BUTTON, + "mock_http_panel_content/mock_http_panel_background/active_rules_label": T.LABEL, + "mock_http_panel_content/mock_http_panel_background/rule_list": T.STACK_PANEL, + "mock_http_panel_content/mock_http_panel_background/divider": T.STACK_PANEL, + "mock_http_rule_list": T.STACK_PANEL, + "mock_http_rule": T.STACK_PANEL, + "mock_http_rule/rule_details_label": T.LABEL, + "mock_http_rule/rule_spacer": T.PANEL, + "automation_button": T.PANEL, + "automation_section": T.STACK_PANEL, + "automation_section/automation_tab_label": T.LABEL, + "automation_section/padding": T.PANEL, + "automation_section/automation_test_asset_sas_text_box": T.PANEL, + "automation_section/automation_functional_test_tags_text_box": T.PANEL, + "automation_section/automation_server_test_tags_text_box": T.PANEL, + "automation_section/automation_unit_test_tags_text_box": T.PANEL, + "automation_section/automation_broken_functional_test_tags_text_box": T.PANEL, + "automation_section/automation_broken_server_test_tags_text_box": T.PANEL, + "automation_section/automation_broken_unit_test_tags_text_box": T.PANEL, + "automation_section/automation_repeat_count_text_box": T.PANEL, + "automation_section/automation_soak_test_duration_minutes_text_box": T.PANEL, + "automation_section/automation_repeat_failures_only_toggle": T.PANEL, + "automation_section/automation_run_entire_server_test_group": T.PANEL, + "automation_section/automation_testbuild_id_text_box": T.PANEL, + "automation_section/automation_functional_test_block_input_toggle": T.PANEL, + "automation_section/automation_server_test_assert_on_level_diff_toggle": T.PANEL, + "discovery_debug_button": T.PANEL, + "discovery_debug_section": T.STACK_PANEL, + "discovery_debug_section/option_discovery_environment": T.PANEL, + "discovery_debug_section/debug_override_discovery_panel": T.PANEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background": T.STACK_PANEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/option_toggle_discovery_override": T.PANEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/spacer_0": T.PANEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel": T.STACK_PANEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_name": T.PANEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_type": T.PANEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_branch": T.PANEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_custom": T.PANEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel": T.STACK_PANEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/reset_endpoint_override": T.BUTTON, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/apply_endpoint_override": T.BUTTON, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_1": T.PANEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/active_service_overrides_label": T.LABEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_2": T.PANEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/reset_all_endpoint_overrides_button": T.BUTTON, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/discovery_overrides_do_not_save_label": T.LABEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_3": T.PANEL, + "debug_button": T.PANEL, + "feature_toggle": T.PANEL, + "debug_section": T.STACK_PANEL, + "debug_section/options_for_qa_convenience": T.LABEL, + "debug_section/options_for_qa_convenience_spacer": T.PANEL, + "debug_section/option_toggle_dev_console_button_0": T.PANEL, + "debug_section/option_toggle_assertions_debug_break": T.PANEL, + "debug_section/option_toggle_assertions_show_dialog": T.PANEL, + "debug_section/option_dev_show_display_logged_error": T.PANEL, + "debug_section/display_logged_error_panel": T.PANEL, + "debug_section/option_dev_force_trial_mode": T.PANEL, + "debug_section/option_dev_force_trial_mode_spacer": T.PANEL, + "debug_section/debug_overlay_pages_label": T.LABEL, + "debug_section/debug_overlay_button_panel": T.PANEL, + "debug_section/debug_overlay_button_panel/debug_overlay_previous_button": T.BUTTON, + "debug_section/debug_overlay_button_panel/debug_overlay_next_button": T.BUTTON, + "debug_section/pre_feature_toggles_label_spacer": T.PANEL, + "debug_section/feature_toggles_label": T.LABEL, + "debug_section/feature_toggles_label_spacer": T.PANEL, + "debug_section/feature_toggles": T.STACK_PANEL, + "debug_section/end_of_feature_toggles_label_spacer": T.PANEL, + "debug_section/option_toggle_dev_disable_lan_signaling": T.PANEL, + "debug_section/option_dropdown_nethernet_logging_verbosity": T.PANEL, + "debug_section/option_dropdown_http_logging_verbosity": T.PANEL, + "debug_section/option_dropdown_xsapi_logging_verbosity": T.PANEL, + "debug_section/option_toggle_remote_imgui": T.PANEL, + "debug_section/option_dropdown_0": T.PANEL, + "debug_section/option_toggle_extra_debug_hud_info": T.PANEL, + "debug_section/option_toggle_0_1": T.PANEL, + "debug_section/option_toggle_0_2": T.PANEL, + "debug_section/option_slider_0": T.PANEL, + "debug_section/option_toggle_3": T.PANEL, + "debug_section/option_toggle_4": T.PANEL, + "debug_section/option_toggle_5": T.PANEL, + "debug_section/option_toggle_6": T.PANEL, + "debug_section/option_dropdown_server_chunk_map": T.PANEL, + "debug_section/option_toggle_9": T.PANEL, + "debug_section/option_toggle_disable_render_terrain": T.PANEL, + "debug_section/option_toggle_disable_render_entities": T.PANEL, + "debug_section/option_toggle_disable_render_blockentities": T.PANEL, + "debug_section/option_toggle_disable_render_particles": T.PANEL, + "debug_section/option_toggle_disable_render_sky": T.PANEL, + "debug_section/option_toggle_disable_render_weather": T.PANEL, + "debug_section/option_toggle_disable_render_hud": T.PANEL, + "debug_section/option_toggle_disable_render_item_in_hand": T.PANEL, + "debug_section/option_toggle_disable_render_main_menu_cubemap": T.PANEL, + "debug_section/option_toggle_disable_render_main_menu_paperdoll_animation": T.PANEL, + "debug_section/leak_memory": T.PANEL, + "debug_section/log_area": T.PANEL, + "debug_section/log_priority": T.PANEL, + "debug_section/option_toggle_build_info": T.PANEL, + "debug_section/option_perf_turtle": T.PANEL, + "debug_section/option_default_profiling_option": T.PANEL, + "debug_section/option_toggle_7": T.PANEL, + "debug_section/option_toggle_8": T.PANEL, + "debug_section/option_toggle_game_tip": T.PANEL, + "debug_section/option_toggle_10": T.PANEL, + "debug_section/dev_disable_client_blob_cache_toggle": T.PANEL, + "debug_section/dev_force_client_blob_cache_toggle": T.PANEL, + "debug_section/devquality_dropdown": T.PANEL, + "debug_section/dev_add_http_delay_seconds": T.PANEL, + "debug_section/dev_show_latency_graph_toggle": T.PANEL, + "debug_section/xbox_sandbox_panel": T.STACK_PANEL, + "debug_section/multithreaded_rendering_toggle": T.PANEL, + "debug_section/filewatcher_rendering_toggle": T.PANEL, + "debug_section/enable_texture_hot_reloader_toggle": T.PANEL, + "debug_section/mock_http_panel": T.STACK_PANEL, + "debug_section/vsync_dropdown": T.PANEL, + "debug_section/sunsetting_use_overrides_toggle": T.PANEL, + "debug_section/padding_sunsetting": T.PANEL, + "debug_section/sunseting_state_toggle": T.PANEL, + "debug_section/sunsetting_tier_dropdown": T.PANEL, + "debug_section/padding_sunsetting_2": T.PANEL, + "debug_section/padding1": T.PANEL, + "debug_section/copy_internal_settings_folder_to_external": T.BUTTON, + "debug_section/padding_reset_day_one": T.PANEL, + "debug_section/reset_new_player_flow": T.BUTTON, + "debug_section/reset_day_one_experience": T.BUTTON, + "debug_section/option_text_edit_1": T.PANEL, + "debug_section/option_text_edit_2": T.PANEL, + "debug_section/option_text_edit_3": T.PANEL, + "debug_section/reset_report_timer_option": T.BUTTON, + "debug_section/reset_online_safety_option": T.BUTTON, + "debug_section/reset_ip_safety_option": T.BUTTON, + "debug_section/padding_graphics_options": T.PANEL, + "debug_section/option_shadersdk_service_ip": T.PANEL, + "debug_section/option_shadersdk_service_port": T.PANEL, + "debug_section/option_shadersdk_target_port": T.PANEL, + "debug_section/padding_graphics_buttons": T.PANEL, + "debug_section/trigger_graphics_device_loss": T.BUTTON, + "debug_section/allocate_texture_handles": T.BUTTON, + "debug_section/padding_deferred_debug": T.PANEL, + "debug_section/deferred_platform_override": T.PANEL, + "realms_debug_button": T.PANEL, + "realms_debug_section": T.STACK_PANEL, + "realms_debug_section/realms_menu_title": T.LABEL, + "realms_debug_section/realms_title_spacer": T.PANEL, + "realms_debug_section/feature_toggles_label": T.LABEL, + "realms_debug_section/feature_toggles_label_spacer": T.PANEL, + "realms_debug_section/feature_toggles": T.STACK_PANEL, + "realms_debug_section/end_of_feature_toggles_label_spacer": T.PANEL, + "realms_debug_section/realms_dev_toggles_title": T.LABEL, + "realms_debug_section/realms_dev_toggle_spacer": T.PANEL, + "realms_debug_section/realms_without_purchase_toggle": T.PANEL, + "realms_debug_section/realms_debug_options_title": T.LABEL, + "realms_debug_section/realms_debug_options_spacer": T.PANEL, + "realms_debug_section/option_dropdown_1": T.PANEL, + "realms_debug_section/option_dropdown_2": T.PANEL, + "realms_debug_section/option_text_edit_0": T.PANEL, + "realms_debug_section/realms_features_override_panel": T.STACK_PANEL, + "realms_debug_section/realms_features_override_panel/option_toggle_realms_features_override": T.PANEL, + "realms_debug_section/realms_features_override_panel/override_realms_features_panel": T.PANEL, + "realms_debug_section/realms_debug_options_spacer_2": T.PANEL, + "realms_feature_toggle": T.PANEL, + "marketplace_debug_button": T.PANEL, + "marketplace_debug_section": T.STACK_PANEL, + "marketplace_debug_section/marketplace_feature_toggles_label": T.LABEL, + "marketplace_debug_section/marketplace_feature_toggles_label_spacer": T.PANEL, + "marketplace_debug_section/marketplace_feature_toggles": T.STACK_PANEL, + "marketplace_debug_section/playfab_token_refresh_threshold": T.PANEL, + "marketplace_debug_section/option_dropdown_skin_rotation_speed": T.PANEL, + "marketplace_debug_section/option_toggle_all_skins_rotate": T.PANEL, + "marketplace_debug_section/option_toggle_display_marketplace_document_id": T.PANEL, + "marketplace_debug_section/option_toggle_display_platform_offer_check": T.PANEL, + "marketplace_debug_section/version_options_panel": T.STACK_PANEL, + "marketplace_debug_section/version_options_panel/option_version_override": T.PANEL, + "marketplace_debug_section/version_options_panel/override_version_options_panel": T.STACK_PANEL, + "marketplace_debug_section/select_windows_store_panel": T.STACK_PANEL, + "marketplace_debug_section/date_options_panel": T.STACK_PANEL, + "marketplace_debug_section/option_clear_store_cache_button": T.BUTTON, + "marketplace_debug_section/option_clear_all_cache_button": T.BUTTON, + "marketplace_debug_section/option_delete_all_personas_button": T.BUTTON, + "marketplace_debug_section/option_delete_legacy_personas_button": T.BUTTON, + "marketplace_debug_section/padding2": T.PANEL, + "marketplace_debug_section/enable_coin_debug_switch_toggle": T.PANEL, + "marketplace_debug_section/add_500_coins": T.BUTTON, + "marketplace_debug_section/add_100000_coins": T.BUTTON, + "marketplace_debug_section/padding3": T.PANEL, + "marketplace_debug_section/reset_entitlements": T.BUTTON, + "marketplace_debug_section/reset_wallet": T.BUTTON, + "marketplace_feature_toggle": T.PANEL, + "gatherings_debug_button": T.PANEL, + "gatherings_debug_section": T.STACK_PANEL, + "gatherings_debug_section/refresh_gatherings_button": T.BUTTON, + "gatherings_debug_section/spacer_1": T.PANEL, + "gatherings_debug_section/clear_system_service_pack_cache_button": T.BUTTON, + "gatherings_debug_section/spacer_2": T.PANEL, + "gatherings_debug_section/active_gathering_label": T.LABEL, + "gatherings_debug_section/spacer_3": T.PANEL, + "gatherings_debug_section/text_edit_filter_gatherings": T.PANEL, + "gatherings_debug_section/spacer_4": T.PANEL, + "gatherings_debug_section/available_gatherings_section": T.STACK_PANEL, + "gathering_grid_item_content": T.STACK_PANEL, + "gathering_grid_item_content/gathering_name": T.LABEL, + "gathering_grid_item_content/gathering_uuid": T.LABEL, + "gathering_item_template": T.PANEL, + "gathering_item_template/gathering_item_button": T.BUTTON, + "available_gatherings_grid": T.GRID, + "available_gatherings_panel": T.STACK_PANEL, + "available_gatherings_panel/available_label": T.LABEL, + "available_gatherings_panel/gatherings_grid": T.GRID, + "available_gatherings_panel/spacing_gap": T.PANEL, + "available_gatherings_section": T.STACK_PANEL, + "available_gatherings_section/available_gatherings_panel": T.STACK_PANEL, + "ui_debug_button": T.PANEL, + "ui_feature_toggle": T.PANEL, + "edu_debug_button": T.PANEL, + "edu_feature_toggle": T.PANEL, + "new_create_world_grid_item": T.PANEL, + "new_edu_create_world_screen_grid_item": T.PANEL, + "new_play_screen_grid_item": T.PANEL, + "new_edit_world_screen_grid_item": T.PANEL, + "new_player_permissions_screen_grid_item": T.PANEL, + "new_send_invites_screen_grid_item": T.PANEL, + "new_death_grid_item": T.PANEL, + "new_bed_grid_item": T.PANEL, + "ore_ui_gameplay_ui_grid_item": T.PANEL, + "new_settings_screen_grid_item": T.PANEL, + "ui_debug_section": T.STACK_PANEL, + "ui_debug_section/ui_feature_toggles_label": T.LABEL, + "ui_debug_section/ui_feature_toggles_info_label": T.LABEL, + "ui_debug_section/ui_feature_toggles_label_spacer": T.PANEL, + "ui_debug_section/ui_feature_toggles": T.STACK_PANEL, + "ui_debug_section/end_of_ui_feature_toggles_label_divider": T.PANEL, + "ui_debug_section/end_of_ui_feature_toggles_label_divider/section_divider": T.IMAGE, + "ui_debug_section/end_of_ui_feature_toggles_label_divider_spacer": T.PANEL, + "ui_debug_section/end_of_ui_feature_toggles_label_spacer": T.PANEL, + "ui_debug_section/screen_override_label": T.LABEL, + "ui_debug_section/screen_override_info_label": T.LABEL, + "ui_debug_section/screen_override_label_spacer": T.PANEL, + "ui_debug_section/new_edu_create_world_screen_radio_label": T.LABEL, + "ui_debug_section/new_edu_create_world_screen_radio_label_spacer": T.PANEL, + "ui_debug_section/new_edu_create_world_screen_radio_button": T.GRID, + "ui_debug_section/new_edu_create_world_screen_radio_button_spacer": T.PANEL, + "ui_debug_section/new_play_screen_radio_label": T.LABEL, + "ui_debug_section/new_play_screen_radio_label_spacer": T.PANEL, + "ui_debug_section/new_play_screen_radio_button": T.GRID, + "ui_debug_section/new_play_screen_radio_button_spacer": T.PANEL, + "ui_debug_section/new_edit_world_screen_radio_label": T.LABEL, + "ui_debug_section/new_edit_world_screen_radio_label_spacer": T.PANEL, + "ui_debug_section/new_edit_world_screen_radio_button": T.GRID, + "ui_debug_section/new_edit_world_screen_radio_button_spacer": T.PANEL, + "ui_debug_section/new_send_invites_radio_label": T.LABEL, + "ui_debug_section/new_send_invites_screen_radio_label_spacer": T.PANEL, + "ui_debug_section/new_send_invites_screen_radio_button": T.GRID, + "ui_debug_section/new_send_invites_screen_radio_button_spacer": T.PANEL, + "ui_debug_section/new_death_screen_radio_label": T.LABEL, + "ui_debug_section/new_death_screen_radio_label_spacer": T.PANEL, + "ui_debug_section/new_death_screen_radio_button": T.GRID, + "ui_debug_section/new_death_screen_radio_button_spacer": T.PANEL, + "ui_debug_section/new_bed_screen_radio_label": T.LABEL, + "ui_debug_section/new_bed_screen_radio_label_spacer": T.PANEL, + "ui_debug_section/new_bed_screen_radio_button": T.GRID, + "ui_debug_section/new_bed_screen_radio_button_spacer": T.PANEL, + "ui_debug_section/ore_ui_gameplay_ui_radio_label": T.LABEL, + "ui_debug_section/ore_ui_gameplay_ui_radio_label_spacer": T.PANEL, + "ui_debug_section/ore_ui_gameplay_ui_radio_button": T.GRID, + "ui_debug_section/ore_ui_gameplay_ui_radio_button_spacer": T.PANEL, + "ui_debug_section/end_of_ui_screen_override_divider": T.PANEL, + "ui_debug_section/end_of_ui_screen_override_divider/section_divider": T.IMAGE, + "ui_debug_section/end_of_ui_sceen_override_divider_spacer": T.PANEL, + "ui_debug_section/new_settings_screen_radio_label": T.LABEL, + "ui_debug_section/new_settings_screen_radio_label_spacer": T.PANEL, + "ui_debug_section/new_settings_screen_radio_button": T.GRID, + "ui_debug_section/new_settings_screen_radio_button_spacer": T.PANEL, + "ui_debug_section/screen_opt_in_options_label": T.LABEL, + "ui_debug_section/screen_opt_in_info_label": T.LABEL, + "ui_debug_section/screen_opt_in_options_label_spacer": T.PANEL, + "ui_debug_section/end_of_ui_screen_opt_in_divider": T.PANEL, + "ui_debug_section/end_of_ui_screen_opt_in_divider/section_divider": T.IMAGE, + "ui_debug_section/end_of_ui_sceen_opt_in_divider_spacer": T.PANEL, + "ui_debug_section/other_ui_options_label": T.LABEL, + "ui_debug_section/other_ui_options_label_spacer": T.PANEL, + "ui_debug_section/option_toggle_default_font_override": T.PANEL, + "ui_debug_section/option_toggle_dev_show_tcui_replacement": T.PANEL, + "ui_debug_section/option_toggle_use_mobile_data_blocked_modal": T.PANEL, + "ui_debug_section/ui_feature_toggles_spacer": T.PANEL, + "ui_debug_section/option_show_touch_control_selection_screen": T.PANEL, + "ui_debug_section/option_reset_on_start": T.PANEL, + "ui_debug_section/option_slider_drag_dwell": T.PANEL, + "ui_debug_section/option_slider_stack_splitting": T.PANEL, + "ui_debug_section/reset_render_distance_warning_modal_label": T.LABEL, + "ui_debug_section/reset_render_distance_warning_modal_label_spacer": T.PANEL, + "ui_debug_section/reset_render_distance_warning_modal": T.BUTTON, + "ui_debug_section/reset_render_distance_warning_modal_spacer": T.PANEL, + "ui_debug_section/ore_ui_developer_pages_divider": T.PANEL, + "ui_debug_section/ore_ui_developer_pages_divider/section_divider": T.IMAGE, + "ui_debug_section/ore_ui_developer_pages_spacer": T.PANEL, + "ui_debug_section/open_ore_ui_label": T.LABEL, + "ui_debug_section/open_ore_ui_info_label": T.LABEL, + "ui_debug_section/open_ore_ui_label_spacer": T.PANEL, + "ui_debug_section/open_ore_ui_docs": T.BUTTON, + "ui_debug_section/open_ore_ui_tests": T.BUTTON, + "ui_debug_section/open_ore_ui_perf": T.BUTTON, + "ui_debug_section/open_ore_ui_test_modal": T.BUTTON, + "ui_debug_section/open_ore_ui_tests_spacer": T.PANEL, + "edu_debug_section": T.STACK_PANEL, + "edu_debug_section/edu_feature_toggles_label": T.LABEL, + "edu_debug_section/edu_feature_toggles_label_spacer": T.PANEL, + "edu_debug_section/edu_demo": T.PANEL, + "edu_debug_section/edu_ad_debug_panel": T.PANEL, + "edu_debug_section/edu_ad_token_refresh_threshold": T.PANEL, + "edu_debug_section/edu_ad_max_signin_token_refresh": T.PANEL, + "edu_debug_section/edu_ad_max_graph_token_refresh": T.PANEL, + "edu_debug_section/edu_environment_divider": T.PANEL, + "edu_debug_section/edu_environment_divider/section_divider": T.IMAGE, + "edu_debug_section/edu_environment_spacer": T.PANEL, + "edu_debug_section/edu_env_dropdown": T.PANEL, + "flighting_debug_button": T.PANEL, + "flighting_debug_section": T.STACK_PANEL, + "flighting_debug_section/treatment_override_panel": T.STACK_PANEL, + "flighting_debug_section/treatment_override_panel/option_toggle_treatment_override": T.PANEL, + "flighting_debug_section/treatment_override_panel/override_treatments_panel": T.PANEL, + "flighting_debug_section/configuration_override_panel": T.STACK_PANEL, + "flighting_debug_section/configuration_override_panel/option_toggle_configuration_override": T.PANEL, + "flighting_debug_section/configuration_override_panel/override_configurations_panel": T.PANEL, + "how_to_play_button": T.PANEL, + "how_to_play_section": T.STACK_PANEL, + "how_to_play_section/spacer_0": T.PANEL, + "how_to_play_section/generic_label": T.LABEL, + "how_to_play_section/spacer_1": T.PANEL, + "how_to_play_section/gamepad_helper_label": T.LABEL, + "dev_xbox_environment_dropdown_content": T.PANEL, + "dev_discovery_environment_dropdown_content": T.PANEL, + "dev_service_override_type_dropdown_content": T.PANEL, + "dev_realms_environment_dropdown_content": T.PANEL, + "dev_realms_sku_dropdown_content": T.PANEL, + "default_profiling_group_dropdown_content": T.PANEL, + "dev_nethernet_logging_verbosity_dropdown_content": T.PANEL, + "dev_http_logging_verbosity_dropdown_content": T.PANEL, + "dev_xsapi_logging_verbosity_dropdown_content": T.PANEL, + "dev_debug_speed_multiplier_options": T.PANEL, + "dev_debug_hud_dropdown_content": T.PANEL, + "dev_chunkMapMode_content": T.PANEL, + "dev_quality_dropdown_content": T.PANEL, + "vysnc_dropdown_content": T.PANEL, + "deferred_platform_override_dropdown_content": T.PANEL, + "dev_education_environment_dropdown_content": T.PANEL, + "dev_sunsetting_tier_dropdown_content": T.PANEL, + "graphics_api_dropdown_content": T.PANEL, + "graphics_mode_dropdown_content": T.PANEL, + "upscaling_mode_dropdown_content": T.PANEL, + "advanced_graphics_options_button_content": T.STACK_PANEL, + "advanced_graphics_options_button_content/advanced_graphics_options_label": T.LABEL, + "advanced_graphics_options_button_content/fill_pad": T.PANEL, + "advanced_graphics_options_button_content/plus_panel": T.PANEL, + "advanced_graphics_options_button_content/plus_panel/plus": T.IMAGE, + "advanced_graphics_options_button_content/minus_panel": T.PANEL, + "advanced_graphics_options_button_content/minus_panel/minus": T.IMAGE, + "advanced_graphics_options_section": T.STACK_PANEL, + "advanced_graphics_options_section/spacer_0": T.PANEL, + "advanced_graphics_options_section/gamma_calibration": T.BUTTON, + "advanced_graphics_options_section/spacer_1": T.PANEL, + "advanced_graphics_options_section/max_framerate_slider": T.PANEL, + "advanced_graphics_options_section/spacer_2": T.PANEL, + "advanced_graphics_options_section/msaa_slider": T.PANEL, + "advanced_graphics_options_section/spacer_3": T.PANEL, + "advanced_graphics_options_section/shadow_quality_slider": T.PANEL, + "advanced_graphics_options_section/spacer_4": T.PANEL, + "advanced_graphics_options_section/point_light_shadow_quality_slider": T.PANEL, + "advanced_graphics_options_section/spacer_5": T.PANEL, + "advanced_graphics_options_section/point_light_loding_quality_slider": T.PANEL, + "advanced_graphics_options_section/spacer_6": T.PANEL, + "advanced_graphics_options_section/cloud_quality_slider": T.PANEL, + "advanced_graphics_options_section/spacer_7": T.PANEL, + "advanced_graphics_options_section/volumetric_fog_quality_slider": T.PANEL, + "advanced_graphics_options_section/spacer_8": T.PANEL, + "advanced_graphics_options_section/reflections_quality_slider": T.PANEL, + "advanced_graphics_options_section/spacer_9": T.PANEL, + "advanced_graphics_options_section/bloom_strength": T.PANEL, + "advanced_graphics_options_section/spacer_10": T.PANEL, + "advanced_graphics_options_section/upscaling_toggle": T.PANEL, + "advanced_graphics_options_section/spacer_11": T.PANEL, + "advanced_graphics_options_section/upscaling_mode": T.PANEL, + "advanced_graphics_options_section/spacer_12": T.PANEL, + "advanced_graphics_options_section/upscaling_percentage": T.PANEL, + "advanced_graphics_options_section/fancy_clouds_toggle": T.PANEL, + "advanced_graphics_options_section/spacer_13": T.PANEL, + "advanced_graphics_options_section/smooth_lighting_toggle": T.PANEL, } export type RealmsWorldSectionType = { - realm_name_edit: T.PANEL - world_name_edit: T.PANEL - realm_description_edit: T.PANEL - download_world_button: T.BUTTON - upload_world_button: T.BUTTON - reset_world_button: T.BUTTON - manage_feed_button: T.BUTTON - club_info_label: T.PANEL - difficulty_dropdown: T.PANEL - game_mode_dropdown: T.PANEL - panel_content: T.STACK_PANEL - "panel_content/new_edit_world_opt_in_panel": T.STACK_PANEL - "panel_content/new_edit_world_opt_in_panel/panel_title": T.PANEL - "panel_content/new_edit_world_opt_in_panel/panel_text": T.PANEL - "panel_content/new_edit_world_opt_in_panel/opt_in_button": T.BUTTON - "panel_content/new_edit_world_opt_in_divider": T.PANEL - "panel_content/new_edit_world_opt_in_divider/section_divider": T.IMAGE - "panel_content/option_info_label": T.PANEL - "panel_content/hardcore_info_label": T.PANEL - "panel_content/realm_name_edit": T.PANEL - "panel_content/world_name_edit": T.PANEL - "panel_content/realm_description_edit": T.PANEL - "panel_content/difficulty_dropdown": T.PANEL - "panel_content/game_mode_dropdown": T.PANEL - "panel_content/is_hardcore_toggle": T.PANEL - "panel_content/world_options_label": T.PANEL - "panel_content/pvp_toggle": T.PANEL - "panel_content/show_coordinates_toggle": T.PANEL - "panel_content/locator_bar_toggle": T.PANEL - "panel_content/show_days_played_toggle": T.PANEL - "panel_content/fire_spreads_toggle": T.PANEL - "panel_content/recipes_unlock_toggle": T.PANEL - "panel_content/tnt_explodes_toggle": T.PANEL - "panel_content/respawn_blocks_explode_toggle": T.PANEL - "panel_content/mob_loot_toggle": T.PANEL - "panel_content/natural_regeneration_toggle": T.PANEL - "panel_content/tile_drops_toggle": T.PANEL - "panel_content/player_sleep_toggle": T.PANEL - "panel_content/player_sleep_percentage_slider": T.PANEL - "panel_content/immediate_respawn_toggle": T.PANEL - "panel_content/respawn_radius": T.PANEL - "panel_content/world_cheats_label": T.PANEL - "panel_content/allow_cheats_toggle": T.PANEL - "panel_content/daylight_cycle_toggle": T.PANEL - "panel_content/keep_inventory_toggle": T.PANEL - "panel_content/mob_spawn_toggle": T.PANEL - "panel_content/mob_griefing_toggle": T.PANEL - "panel_content/entities_drop_loot_toggle": T.PANEL - "panel_content/weather_cycle_toggle": T.PANEL - "panel_content/command_blocks_enabled_toggle": T.PANEL - "panel_content/random_tick_speed": T.PANEL - "panel_content/download_world_button": T.BUTTON - "panel_content/padding_0": T.PANEL - "panel_content/upload_world_button": T.BUTTON - "panel_content/padding_1": T.PANEL - "panel_content/reset_world_button": T.BUTTON - "panel_content/padding_2": T.PANEL - "panel_content/club_info_label": T.PANEL - "panel_content/manage_feed_button": T.BUTTON + "realm_name_edit": T.PANEL, + "world_name_edit": T.PANEL, + "realm_description_edit": T.PANEL, + "download_world_button": T.BUTTON, + "upload_world_button": T.BUTTON, + "reset_world_button": T.BUTTON, + "manage_feed_button": T.BUTTON, + "club_info_label": T.PANEL, + "difficulty_dropdown": T.PANEL, + "game_mode_dropdown": T.PANEL, + "panel_content": T.STACK_PANEL, + "panel_content/new_edit_world_opt_in_panel": T.STACK_PANEL, + "panel_content/new_edit_world_opt_in_panel/panel_title": T.PANEL, + "panel_content/new_edit_world_opt_in_panel/panel_text": T.PANEL, + "panel_content/new_edit_world_opt_in_panel/opt_in_button": T.BUTTON, + "panel_content/new_edit_world_opt_in_divider": T.PANEL, + "panel_content/new_edit_world_opt_in_divider/section_divider": T.IMAGE, + "panel_content/option_info_label": T.PANEL, + "panel_content/hardcore_info_label": T.PANEL, + "panel_content/realm_name_edit": T.PANEL, + "panel_content/world_name_edit": T.PANEL, + "panel_content/realm_description_edit": T.PANEL, + "panel_content/difficulty_dropdown": T.PANEL, + "panel_content/game_mode_dropdown": T.PANEL, + "panel_content/is_hardcore_toggle": T.PANEL, + "panel_content/world_options_label": T.PANEL, + "panel_content/pvp_toggle": T.PANEL, + "panel_content/show_coordinates_toggle": T.PANEL, + "panel_content/locator_bar_toggle": T.PANEL, + "panel_content/show_days_played_toggle": T.PANEL, + "panel_content/fire_spreads_toggle": T.PANEL, + "panel_content/recipes_unlock_toggle": T.PANEL, + "panel_content/tnt_explodes_toggle": T.PANEL, + "panel_content/respawn_blocks_explode_toggle": T.PANEL, + "panel_content/mob_loot_toggle": T.PANEL, + "panel_content/natural_regeneration_toggle": T.PANEL, + "panel_content/tile_drops_toggle": T.PANEL, + "panel_content/player_sleep_toggle": T.PANEL, + "panel_content/player_sleep_percentage_slider": T.PANEL, + "panel_content/immediate_respawn_toggle": T.PANEL, + "panel_content/respawn_radius": T.PANEL, + "panel_content/world_cheats_label": T.PANEL, + "panel_content/allow_cheats_toggle": T.PANEL, + "panel_content/daylight_cycle_toggle": T.PANEL, + "panel_content/keep_inventory_toggle": T.PANEL, + "panel_content/mob_spawn_toggle": T.PANEL, + "panel_content/mob_griefing_toggle": T.PANEL, + "panel_content/entities_drop_loot_toggle": T.PANEL, + "panel_content/weather_cycle_toggle": T.PANEL, + "panel_content/command_blocks_enabled_toggle": T.PANEL, + "panel_content/random_tick_speed": T.PANEL, + "panel_content/download_world_button": T.BUTTON, + "panel_content/padding_0": T.PANEL, + "panel_content/upload_world_button": T.BUTTON, + "panel_content/padding_1": T.PANEL, + "panel_content/reset_world_button": T.BUTTON, + "panel_content/padding_2": T.PANEL, + "panel_content/club_info_label": T.PANEL, + "panel_content/manage_feed_button": T.BUTTON, } export type SettingsCommonType = { - arrow_image: T.IMAGE - subsection_title: T.STACK_PANEL - "subsection_title/spacer_0": T.PANEL - "subsection_title/sizer_0": T.PANEL - "subsection_title/sizer_0/title": T.LABEL - "subsection_title/spacer_1": T.PANEL - "subsection_title/sizer_1": T.PANEL - "subsection_title/sizer_1/section_divider": T.IMAGE - action_button: T.BUTTON - action_button_dark_text: T.BUTTON - link_button: T.BUTTON - option_group_label: T.PANEL - "option_group_label/text": T.LABEL - option_group_header: T.PANEL - "option_group_header/text": T.PANEL - option_group_spaced_label: T.PANEL - "option_group_spaced_label/text": T.PANEL - option_group_spaced_header: T.PANEL - "option_group_spaced_header/text": T.PANEL - option_group_section_divider: T.PANEL - "option_group_section_divider/background": T.IMAGE - option_generic: T.PANEL - "option_generic/option_generic_core": T.STACK_PANEL - white_label: T.LABEL - option_generic_core: T.STACK_PANEL - "option_generic_core/two_line_layout": T.STACK_PANEL - "option_generic_core/two_line_layout/option_label_panel": T.PANEL - "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01": T.PANEL - "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01/option_label": T.LABEL - "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02": T.PANEL - "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02/option_label": T.LABEL - "option_generic_core/two_line_layout/option_label_panel/option_tooltip": T.PANEL - "option_generic_core/two_line_layout/spacer": T.PANEL - "option_generic_core/two_line_layout/option_descriptive_text_0": T.LABEL - "option_generic_core/two_line_layout/spacer2": T.PANEL - "option_generic_core/one_line_layout": T.PANEL - "option_generic_core/one_line_layout/option_label_subpanel_01": T.PANEL - "option_generic_core/one_line_layout/option_label_subpanel_01/option_label": T.LABEL - "option_generic_core/one_line_layout/option_label_subpanel_02": T.PANEL - "option_generic_core/one_line_layout/option_label_subpanel_02/option_label": T.LABEL - "option_generic_core/one_line_layout/option_descriptive_text": T.LABEL - "option_generic_core/one_line_layout/option_tooltip": T.PANEL - "option_generic_core/spacer": T.PANEL - option_generic_core_label: T.LABEL - option_generic_tooltip_image: T.IMAGE - option_generic_tooltip_top_popup: T.IMAGE - option_generic_tooltip_bottom_popup: T.IMAGE - option_generic_tooltip: T.PANEL - "option_generic_tooltip/focus_detection_input_panel_two_line_layout": T.TOOLTIP_TRIGGER - "option_generic_tooltip/hover_detection_input_panel": T.TOOLTIP_TRIGGER - "option_generic_tooltip/hover_detection_input_panel/option_generic_tooltip_image": T.IMAGE - "option_generic_tooltip/option_generic_tooltip_top_popup": T.IMAGE - "option_generic_tooltip/option_generic_tooltip_bottom_popup": T.IMAGE - option_text_edit_control: T.EDIT_BOX - option_text_edit_control_with_button: T.STACK_PANEL - "option_text_edit_control_with_button/text_box": T.EDIT_BOX - "option_text_edit_control_with_button/button": T.BUTTON - option_text_edit_control_with_text_button: T.STACK_PANEL - "option_text_edit_control_with_text_button/text_box": T.EDIT_BOX - "option_text_edit_control_with_text_button/button": T.BUTTON - option_toggle_state_template: T.IMAGE - option_toggle_on: T.IMAGE - option_toggle_off: T.IMAGE - option_toggle_on_hover: T.IMAGE - option_toggle_off_hover: T.IMAGE - option_toggle_on_locked: T.IMAGE - option_toggle_off_locked: T.IMAGE - option_toggle_control: T.TOGGLE - checkbox_visuals_unchecked: T.PANEL - checkbox_visuals_checked: T.PANEL - checkbox_visuals_unchecked_locked: T.PANEL - checkbox_visuals_checked_locked: T.PANEL - checkbox_visuals_unchecked_hover: T.PANEL - checkbox_visuals_checked_hover: T.PANEL - checkbox_visuals: T.PANEL - "checkbox_visuals/checkbox_image": T.IMAGE - "checkbox_visuals/checkbox_label": T.LABEL - "checkbox_visuals/accessibility_selection_highlight": T.IMAGE - checkbox_with_highlight_and_label: T.TOGGLE - radio_visuals_unchecked: T.PANEL - radio_visuals_checked: T.PANEL - radio_visuals_unchecked_locked: T.PANEL - radio_visuals_checked_locked: T.PANEL - radio_visuals_unchecked_hover: T.PANEL - radio_visuals_checked_hover: T.PANEL - radio_visuals: T.PANEL - "radio_visuals/radio_image": T.IMAGE - "radio_visuals/radio_label": T.LABEL - "radio_visuals/accessibility_selection_highlight": T.IMAGE - radio_with_label_core: T.TOGGLE - option_radio_group_control: T.STACK_PANEL - "option_radio_group_control/0": T.UNKNOWN - radio_with_label: T.PANEL - "radio_with_label/radio_with_label_core": T.TOGGLE - radio_with_label_and_icon: T.PANEL - "radio_with_label_and_icon/radio_with_label_core": T.TOGGLE - "radio_with_label_and_icon/radio_with_label_icon": T.IMAGE - radio_with_label_and_content_unchecked: T.PANEL - radio_with_label_and_content_checked: T.PANEL - radio_with_label_and_content_unchecked_locked: T.PANEL - radio_with_label_and_content_checked_locked: T.PANEL - radio_with_label_and_content_unchecked_hover: T.PANEL - radio_with_label_and_content_checked_hover: T.PANEL - radio_with_label_and_content_stack_item: T.PANEL - radio_with_label_and_content: T.PANEL - "radio_with_label_and_content/radio_background": T.IMAGE - "radio_with_label_and_content/radio_item_with_description_stack": T.STACK_PANEL - "radio_with_label_and_content/radio_item_with_description_stack/radio_icon_and_label": T.STACK_PANEL - "radio_with_label_and_content/radio_item_with_description_stack/radio_description": T.PANEL - radio_item_with_label_and_content_stack: T.STACK_PANEL - "radio_item_with_label_and_content_stack/initial_padding": T.PANEL - "radio_item_with_label_and_content_stack/radio_image_panel": T.PANEL - "radio_item_with_label_and_content_stack/radio_image_panel/image": T.IMAGE - "radio_item_with_label_and_content_stack/radio_to_content_padding": T.PANEL - "radio_item_with_label_and_content_stack/radio_content_panel": T.PANEL - "radio_item_with_label_and_content_stack/radio_content_panel/radio_image": T.UNKNOWN - "radio_item_with_label_and_content_stack/content_to_label_padding": T.PANEL - "radio_item_with_label_and_content_stack/radio_label_panel": T.PANEL - "radio_item_with_label_and_content_stack/radio_label_panel/radio_label": T.LABEL - radio_description_panel: T.PANEL - "radio_description_panel/description": T.LABEL - radio_description: T.LABEL - radio_item_with_label_and_content: T.PANEL - "radio_item_with_label_and_content/radio_with_label_core": T.TOGGLE - option_slider_control: T.PANEL - "option_slider_control/slider": T.SLIDER - default_options_dropdown_toggle_button_state_content: T.STACK_PANEL - "default_options_dropdown_toggle_button_state_content/left_padding": T.PANEL - "default_options_dropdown_toggle_button_state_content/option_content": T.UNKNOWN - "default_options_dropdown_toggle_button_state_content/option_content_padding": T.PANEL - "default_options_dropdown_toggle_button_state_content/label_panel": T.PANEL - "default_options_dropdown_toggle_button_state_content/label_panel/label": T.LABEL - "default_options_dropdown_toggle_button_state_content/arrow_panel": T.PANEL - "default_options_dropdown_toggle_button_state_content/arrow_panel/dropdown_chevron_image": T.IMAGE - "default_options_dropdown_toggle_button_state_content/right_padding": T.PANEL - options_dropdown_toggle_control: T.TOGGLE - options_dropdown_dark_toggle_control: T.TOGGLE - option_dropdown_control: T.PANEL - "option_dropdown_control/dropdown": T.UNKNOWN - option_dropdown_control_no_scroll: T.PANEL - option_info_label_with_icon: T.IMAGE - "option_info_label_with_icon/control": T.LABEL - "option_info_label_with_icon/icon_panel": T.STACK_PANEL - "option_info_label_with_icon/icon_panel/icon_image": T.IMAGE - "option_info_label_with_icon/icon_panel/padding2": T.PANEL - option_info_label_icon: T.PANEL - option_icon_label: T.PANEL - option_info_label_with_bulb: T.IMAGE - "option_info_label_with_bulb/stack_panel": T.STACK_PANEL - "option_info_label_with_bulb/stack_panel/padding1": T.PANEL - "option_info_label_with_bulb/stack_panel/bulb_panel": T.STACK_PANEL - "option_info_label_with_bulb/stack_panel/bulb_panel/padding1": T.PANEL - "option_info_label_with_bulb/stack_panel/bulb_panel/bulb_image": T.IMAGE - "option_info_label_with_bulb/stack_panel/bulb_panel/padding2": T.PANEL - "option_info_label_with_bulb/stack_panel/padding2": T.PANEL - "option_info_label_with_bulb/stack_panel/label_panel": T.STACK_PANEL - "option_info_label_with_bulb/stack_panel/label_panel/info_label1": T.LABEL - "option_info_label_with_bulb/stack_panel/label_panel/padding2": T.PANEL - "option_info_label_with_bulb/stack_panel/label_panel/info_label2": T.LABEL - "option_info_label_with_bulb/stack_panel/padding3": T.PANEL - option_info_label_with_image: T.IMAGE - "option_info_label_with_image/control": T.LABEL - option_info_label_image: T.PANEL - option_toggle: T.PANEL - option_radio_group: T.PANEL - option_radio_dropdown_group: T.PANEL - "option_radio_dropdown_group/radio_control_group": T.STACK_PANEL - option_text_edit: T.PANEL - option_text_edit_with_button: T.PANEL - option_text_edit_with_text_button: T.PANEL - option_slider: T.PANEL - option_dropdown: T.PANEL - option_dropdown_no_scroll: T.PANEL - option_custom_control: T.PANEL - option_info_label: T.PANEL - dynamic_dialog_screen: T.SCREEN - settings_content: T.PANEL - "settings_content/background": T.IMAGE - "settings_content/stack_panel": T.STACK_PANEL - "settings_content/stack_panel/content_panel": T.PANEL - "settings_content/stack_panel/content_panel/common_panel": T.STACK_PANEL - "settings_content/stack_panel/content_panel/container": T.PANEL - "settings_content/popup_dialog_factory": T.FACTORY - toggle_button_control: T.PANEL - "toggle_button_control/glyph": T.IMAGE - "toggle_button_control/glyph_color": T.IMAGE - "toggle_button_control/progress_loading_bars": T.IMAGE - "toggle_button_control/tab_button_text": T.LABEL - section_toggle_base: T.PANEL - section_title_label: T.LABEL - dialog_title_label: T.LABEL - dialog_titles: T.STACK_PANEL - "dialog_titles/left_padding": T.PANEL - "dialog_titles/dialog_title_label": T.LABEL - "dialog_titles/center_padding": T.PANEL - "dialog_titles/section_title_label": T.LABEL - "dialog_titles/right_padding_is_always_right": T.PANEL - dialog_content: T.PANEL - "dialog_content/dialog_titles": T.STACK_PANEL - "dialog_content/selector_area": T.PANEL - "dialog_content/content_area": T.PANEL - "dialog_content/section_divider": T.IMAGE - selector_group_label: T.LABEL - scrollable_selector_area_content: T.PANEL - selector_area: T.PANEL - "selector_area/scrolling_panel": T.PANEL - content_area: T.PANEL - "content_area/control": T.STACK_PANEL - "content_area/control/header_panel": T.PANEL - "content_area/control/header_panel/content": T.UNKNOWN - "content_area/control/scrolling_panel": T.PANEL - "content_area/control/footer_panel": T.PANEL - "content_area/control/footer_panel/content": T.UNKNOWN - section_divider: T.IMAGE - screen_base: T.SCREEN + "arrow_image": T.IMAGE, + "subsection_title": T.STACK_PANEL, + "subsection_title/spacer_0": T.PANEL, + "subsection_title/sizer_0": T.PANEL, + "subsection_title/sizer_0/title": T.LABEL, + "subsection_title/spacer_1": T.PANEL, + "subsection_title/sizer_1": T.PANEL, + "subsection_title/sizer_1/section_divider": T.IMAGE, + "action_button": T.BUTTON, + "action_button_dark_text": T.BUTTON, + "link_button": T.BUTTON, + "option_group_label": T.PANEL, + "option_group_label/text": T.LABEL, + "option_group_header": T.PANEL, + "option_group_header/text": T.PANEL, + "option_group_spaced_label": T.PANEL, + "option_group_spaced_label/text": T.PANEL, + "option_group_spaced_header": T.PANEL, + "option_group_spaced_header/text": T.PANEL, + "option_group_section_divider": T.PANEL, + "option_group_section_divider/background": T.IMAGE, + "option_generic": T.PANEL, + "option_generic/option_generic_core": T.STACK_PANEL, + "white_label": T.LABEL, + "option_generic_core": T.STACK_PANEL, + "option_generic_core/two_line_layout": T.STACK_PANEL, + "option_generic_core/two_line_layout/option_label_panel": T.PANEL, + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01": T.PANEL, + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01/option_label": T.LABEL, + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02": T.PANEL, + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02/option_label": T.LABEL, + "option_generic_core/two_line_layout/option_label_panel/option_tooltip": T.PANEL, + "option_generic_core/two_line_layout/spacer": T.PANEL, + "option_generic_core/two_line_layout/option_descriptive_text_0": T.LABEL, + "option_generic_core/two_line_layout/spacer2": T.PANEL, + "option_generic_core/one_line_layout": T.PANEL, + "option_generic_core/one_line_layout/option_label_subpanel_01": T.PANEL, + "option_generic_core/one_line_layout/option_label_subpanel_01/option_label": T.LABEL, + "option_generic_core/one_line_layout/option_label_subpanel_02": T.PANEL, + "option_generic_core/one_line_layout/option_label_subpanel_02/option_label": T.LABEL, + "option_generic_core/one_line_layout/option_descriptive_text": T.LABEL, + "option_generic_core/one_line_layout/option_tooltip": T.PANEL, + "option_generic_core/spacer": T.PANEL, + "option_generic_core_label": T.LABEL, + "option_generic_tooltip_image": T.IMAGE, + "option_generic_tooltip_top_popup": T.IMAGE, + "option_generic_tooltip_bottom_popup": T.IMAGE, + "option_generic_tooltip": T.PANEL, + "option_generic_tooltip/focus_detection_input_panel_two_line_layout": T.TOOLTIP_TRIGGER, + "option_generic_tooltip/hover_detection_input_panel": T.TOOLTIP_TRIGGER, + "option_generic_tooltip/hover_detection_input_panel/option_generic_tooltip_image": T.IMAGE, + "option_generic_tooltip/option_generic_tooltip_top_popup": T.IMAGE, + "option_generic_tooltip/option_generic_tooltip_bottom_popup": T.IMAGE, + "option_text_edit_control": T.EDIT_BOX, + "option_text_edit_control_with_button": T.STACK_PANEL, + "option_text_edit_control_with_button/text_box": T.EDIT_BOX, + "option_text_edit_control_with_button/button": T.BUTTON, + "option_text_edit_control_with_text_button": T.STACK_PANEL, + "option_text_edit_control_with_text_button/text_box": T.EDIT_BOX, + "option_text_edit_control_with_text_button/button": T.BUTTON, + "option_toggle_state_template": T.IMAGE, + "option_toggle_on": T.IMAGE, + "option_toggle_off": T.IMAGE, + "option_toggle_on_hover": T.IMAGE, + "option_toggle_off_hover": T.IMAGE, + "option_toggle_on_locked": T.IMAGE, + "option_toggle_off_locked": T.IMAGE, + "option_toggle_control": T.TOGGLE, + "checkbox_visuals_unchecked": T.PANEL, + "checkbox_visuals_checked": T.PANEL, + "checkbox_visuals_unchecked_locked": T.PANEL, + "checkbox_visuals_checked_locked": T.PANEL, + "checkbox_visuals_unchecked_hover": T.PANEL, + "checkbox_visuals_checked_hover": T.PANEL, + "checkbox_visuals": T.PANEL, + "checkbox_visuals/checkbox_image": T.IMAGE, + "checkbox_visuals/checkbox_label": T.LABEL, + "checkbox_visuals/accessibility_selection_highlight": T.IMAGE, + "checkbox_with_highlight_and_label": T.TOGGLE, + "radio_visuals_unchecked": T.PANEL, + "radio_visuals_checked": T.PANEL, + "radio_visuals_unchecked_locked": T.PANEL, + "radio_visuals_checked_locked": T.PANEL, + "radio_visuals_unchecked_hover": T.PANEL, + "radio_visuals_checked_hover": T.PANEL, + "radio_visuals": T.PANEL, + "radio_visuals/radio_image": T.IMAGE, + "radio_visuals/radio_label": T.LABEL, + "radio_visuals/accessibility_selection_highlight": T.IMAGE, + "radio_with_label_core": T.TOGGLE, + "option_radio_group_control": T.STACK_PANEL, + "option_radio_group_control/0": T.UNKNOWN, + "radio_with_label": T.PANEL, + "radio_with_label/radio_with_label_core": T.TOGGLE, + "radio_with_label_and_icon": T.PANEL, + "radio_with_label_and_icon/radio_with_label_core": T.TOGGLE, + "radio_with_label_and_icon/radio_with_label_icon": T.IMAGE, + "radio_with_label_and_content_unchecked": T.PANEL, + "radio_with_label_and_content_checked": T.PANEL, + "radio_with_label_and_content_unchecked_locked": T.PANEL, + "radio_with_label_and_content_checked_locked": T.PANEL, + "radio_with_label_and_content_unchecked_hover": T.PANEL, + "radio_with_label_and_content_checked_hover": T.PANEL, + "radio_with_label_and_content_stack_item": T.PANEL, + "radio_with_label_and_content": T.PANEL, + "radio_with_label_and_content/radio_background": T.IMAGE, + "radio_with_label_and_content/radio_item_with_description_stack": T.STACK_PANEL, + "radio_with_label_and_content/radio_item_with_description_stack/radio_icon_and_label": T.STACK_PANEL, + "radio_with_label_and_content/radio_item_with_description_stack/radio_description": T.PANEL, + "radio_item_with_label_and_content_stack": T.STACK_PANEL, + "radio_item_with_label_and_content_stack/initial_padding": T.PANEL, + "radio_item_with_label_and_content_stack/radio_image_panel": T.PANEL, + "radio_item_with_label_and_content_stack/radio_image_panel/image": T.IMAGE, + "radio_item_with_label_and_content_stack/radio_to_content_padding": T.PANEL, + "radio_item_with_label_and_content_stack/radio_content_panel": T.PANEL, + "radio_item_with_label_and_content_stack/radio_content_panel/radio_image": T.UNKNOWN, + "radio_item_with_label_and_content_stack/content_to_label_padding": T.PANEL, + "radio_item_with_label_and_content_stack/radio_label_panel": T.PANEL, + "radio_item_with_label_and_content_stack/radio_label_panel/radio_label": T.LABEL, + "radio_description_panel": T.PANEL, + "radio_description_panel/description": T.LABEL, + "radio_description": T.LABEL, + "radio_item_with_label_and_content": T.PANEL, + "radio_item_with_label_and_content/radio_with_label_core": T.TOGGLE, + "option_slider_control": T.PANEL, + "option_slider_control/slider": T.SLIDER, + "default_options_dropdown_toggle_button_state_content": T.STACK_PANEL, + "default_options_dropdown_toggle_button_state_content/left_padding": T.PANEL, + "default_options_dropdown_toggle_button_state_content/option_content": T.UNKNOWN, + "default_options_dropdown_toggle_button_state_content/option_content_padding": T.PANEL, + "default_options_dropdown_toggle_button_state_content/label_panel": T.PANEL, + "default_options_dropdown_toggle_button_state_content/label_panel/label": T.LABEL, + "default_options_dropdown_toggle_button_state_content/arrow_panel": T.PANEL, + "default_options_dropdown_toggle_button_state_content/arrow_panel/dropdown_chevron_image": T.IMAGE, + "default_options_dropdown_toggle_button_state_content/right_padding": T.PANEL, + "options_dropdown_toggle_control": T.TOGGLE, + "options_dropdown_dark_toggle_control": T.TOGGLE, + "option_dropdown_control": T.PANEL, + "option_dropdown_control/dropdown": T.UNKNOWN, + "option_dropdown_control_no_scroll": T.PANEL, + "option_info_label_with_icon": T.IMAGE, + "option_info_label_with_icon/control": T.LABEL, + "option_info_label_with_icon/icon_panel": T.STACK_PANEL, + "option_info_label_with_icon/icon_panel/icon_image": T.IMAGE, + "option_info_label_with_icon/icon_panel/padding2": T.PANEL, + "option_info_label_icon": T.PANEL, + "option_icon_label": T.PANEL, + "option_info_label_with_bulb": T.IMAGE, + "option_info_label_with_bulb/stack_panel": T.STACK_PANEL, + "option_info_label_with_bulb/stack_panel/padding1": T.PANEL, + "option_info_label_with_bulb/stack_panel/bulb_panel": T.STACK_PANEL, + "option_info_label_with_bulb/stack_panel/bulb_panel/padding1": T.PANEL, + "option_info_label_with_bulb/stack_panel/bulb_panel/bulb_image": T.IMAGE, + "option_info_label_with_bulb/stack_panel/bulb_panel/padding2": T.PANEL, + "option_info_label_with_bulb/stack_panel/padding2": T.PANEL, + "option_info_label_with_bulb/stack_panel/label_panel": T.STACK_PANEL, + "option_info_label_with_bulb/stack_panel/label_panel/info_label1": T.LABEL, + "option_info_label_with_bulb/stack_panel/label_panel/padding2": T.PANEL, + "option_info_label_with_bulb/stack_panel/label_panel/info_label2": T.LABEL, + "option_info_label_with_bulb/stack_panel/padding3": T.PANEL, + "option_info_label_with_image": T.IMAGE, + "option_info_label_with_image/control": T.LABEL, + "option_info_label_image": T.PANEL, + "option_toggle": T.PANEL, + "option_radio_group": T.PANEL, + "option_radio_dropdown_group": T.PANEL, + "option_radio_dropdown_group/radio_control_group": T.STACK_PANEL, + "option_text_edit": T.PANEL, + "option_text_edit_with_button": T.PANEL, + "option_text_edit_with_text_button": T.PANEL, + "option_slider": T.PANEL, + "option_dropdown": T.PANEL, + "option_dropdown_no_scroll": T.PANEL, + "option_custom_control": T.PANEL, + "option_info_label": T.PANEL, + "dynamic_dialog_screen": T.SCREEN, + "settings_content": T.PANEL, + "settings_content/background": T.IMAGE, + "settings_content/stack_panel": T.STACK_PANEL, + "settings_content/stack_panel/content_panel": T.PANEL, + "settings_content/stack_panel/content_panel/common_panel": T.STACK_PANEL, + "settings_content/stack_panel/content_panel/container": T.PANEL, + "settings_content/popup_dialog_factory": T.FACTORY, + "toggle_button_control": T.PANEL, + "toggle_button_control/glyph": T.IMAGE, + "toggle_button_control/glyph_color": T.IMAGE, + "toggle_button_control/progress_loading_bars": T.IMAGE, + "toggle_button_control/tab_button_text": T.LABEL, + "section_toggle_base": T.PANEL, + "section_title_label": T.LABEL, + "dialog_title_label": T.LABEL, + "dialog_titles": T.STACK_PANEL, + "dialog_titles/left_padding": T.PANEL, + "dialog_titles/dialog_title_label": T.LABEL, + "dialog_titles/center_padding": T.PANEL, + "dialog_titles/section_title_label": T.LABEL, + "dialog_titles/right_padding_is_always_right": T.PANEL, + "dialog_content": T.PANEL, + "dialog_content/dialog_titles": T.STACK_PANEL, + "dialog_content/selector_area": T.PANEL, + "dialog_content/content_area": T.PANEL, + "dialog_content/section_divider": T.IMAGE, + "selector_group_label": T.LABEL, + "scrollable_selector_area_content": T.PANEL, + "selector_area": T.PANEL, + "selector_area/scrolling_panel": T.PANEL, + "content_area": T.PANEL, + "content_area/control": T.STACK_PANEL, + "content_area/control/header_panel": T.PANEL, + "content_area/control/header_panel/content": T.UNKNOWN, + "content_area/control/scrolling_panel": T.PANEL, + "content_area/control/footer_panel": T.PANEL, + "content_area/control/footer_panel/content": T.UNKNOWN, + "section_divider": T.IMAGE, + "screen_base": T.SCREEN, } export type WorldSectionType = { - selector_pane_content: T.STACK_PANEL - "selector_pane_content/world_snapshot_image": T.PANEL - "selector_pane_content/world_snapshot_image/thumbnail": T.IMAGE - "selector_pane_content/world_snapshot_image/thumbnail/border": T.IMAGE - "selector_pane_content/play_or_create_panel": T.STACK_PANEL - "selector_pane_content/play_or_host_panel": T.STACK_PANEL - "selector_pane_content/spacer": T.PANEL - "selector_pane_content/server_settings_visibility_panel": T.STACK_PANEL - "selector_pane_content/server_settings_visibility_panel/selector_group_label_0": T.LABEL - "selector_pane_content/server_settings_visibility_panel/server_settings_button": T.PANEL - "selector_pane_content/server_settings_visibility_panel/server_spacer": T.PANEL - "selector_pane_content/selector_group_label_1": T.LABEL - "selector_pane_content/game_button": T.PANEL - "selector_pane_content/spacer_01": T.PANEL - "selector_pane_content/classroom_button": T.PANEL - "selector_pane_content/spacer_02": T.PANEL - "selector_pane_content/switch_game_button": T.PANEL - "selector_pane_content/spacer_03": T.PANEL - "selector_pane_content/multiplayer_button": T.PANEL - "selector_pane_content/spacer_04": T.PANEL - "selector_pane_content/edu_cloud_button": T.PANEL - "selector_pane_content/spacer_05": T.PANEL - "selector_pane_content/debug_button": T.PANEL - launch_world_button_stack_def: T.STACK_PANEL - play_or_create_stack_bedrock: T.STACK_PANEL - "play_or_create_stack_bedrock/create_or_play_button": T.BUTTON - "play_or_create_stack_bedrock/play_on_realm_button": T.BUTTON - edu_play_host_button: T.BUTTON - play_or_host_stack_edu: T.STACK_PANEL - "play_or_host_stack_edu/edu_play_button": T.BUTTON - "play_or_host_stack_edu/edu_host_button": T.BUTTON - addons_selector_panel: T.STACK_PANEL - "addons_selector_panel/spacer_01": T.PANEL - "addons_selector_panel/selector_group_label_2": T.LABEL - "addons_selector_panel/level_texture_pack_button": T.PANEL - "addons_selector_panel/spacer_02": T.PANEL - "addons_selector_panel/addon_button": T.PANEL - server_settings_button: T.PANEL - server_section: T.STACK_PANEL - game_button: T.PANEL - export_world_button: T.BUTTON - delete_world_button: T.BUTTON - export_template_button: T.BUTTON - copy_world_button: T.BUTTON - edit_world_manipulation_buttons: T.STACK_PANEL - "edit_world_manipulation_buttons/export": T.BUTTON - "edit_world_manipulation_buttons/padding": T.PANEL - "edit_world_manipulation_buttons/delete": T.BUTTON - game_section: T.STACK_PANEL - "game_section/new_edit_world_opt_in_panel": T.STACK_PANEL - "game_section/new_edit_world_opt_in_panel/panel_title": T.PANEL - "game_section/new_edit_world_opt_in_panel/panel_text": T.PANEL - "game_section/new_edit_world_opt_in_panel/opt_in_button": T.BUTTON - "game_section/new_edit_world_opt_in_divider": T.PANEL - "game_section/new_edit_world_opt_in_divider/section_divider": T.IMAGE - "game_section/unlock_template_options_panel": T.STACK_PANEL - "game_section/unlock_template_options_panel/option_info_label": T.PANEL - "game_section/unlock_template_options_panel/unlock_template_options_button": T.BUTTON - "game_section/option_info_label": T.PANEL - "game_section/hardcore_info_label": T.PANEL - "game_section/world_settings_label": T.PANEL - "game_section/option_text_edit_0": T.PANEL - "game_section/project_section_divider_1": T.IMAGE - "game_section/project_header_label": T.PANEL - "game_section/project_section_divider_2": T.IMAGE - "game_section/project_spacer": T.PANEL - "game_section/option_text_edit_1": T.PANEL - "game_section/export_settings_section_divider_1": T.IMAGE - "game_section/export_settings_header_label": T.PANEL - "game_section/export_settings_header_description": T.PANEL - "game_section/export_settings_section_divider_2": T.IMAGE - "game_section/export_settings_spacer": T.PANEL - "game_section/option_dropdown_0": T.PANEL - "game_section/option_dropdown_1": T.PANEL - "game_section/is_hardcore_toggle": T.PANEL - "game_section/option_dropdown_2": T.PANEL - "game_section/world_preferences_label": T.PANEL - "game_section/starting_map_toggle": T.PANEL - "game_section/bonus_chest_toggle": T.PANEL - "game_section/option_dropdown_permissions": T.PANEL - "game_section/option_dropdown_3": T.PANEL - "game_section/level_seed_selector_edu": T.PANEL - "game_section/level_seed_selector": T.PANEL - "game_section/level_seed_selector_trial": T.PANEL - "game_section/server_sim_distance_slider": T.PANEL - "game_section/world_options_label": T.PANEL - "game_section/pvp_toggle": T.PANEL - "game_section/show_coordinates_toggle": T.PANEL - "game_section/locator_bar_toggle": T.PANEL - "game_section/show_days_played_toggle": T.PANEL - "game_section/fire_spreads_toggle": T.PANEL - "game_section/recipes_unlock_toggle": T.PANEL - "game_section/tnt_explodes_toggle": T.PANEL - "game_section/respawn_blocks_explode_toggle": T.PANEL - "game_section/mob_loot_toggle": T.PANEL - "game_section/natural_regeneration_toggle": T.PANEL - "game_section/tile_drops_toggle": T.PANEL - "game_section/player_sleep_toggle": T.PANEL - "game_section/player_sleep_percentage_slider": T.PANEL - "game_section/immediate_respawn_toggle": T.PANEL - "game_section/respawn_radius": T.PANEL - "game_section/experimental_toggles_label": T.PANEL - "game_section/experimental_toggles_label_info": T.PANEL - "game_section/experimental_toggles": T.STACK_PANEL - "game_section/world_cheats_label": T.PANEL - "game_section/allow_cheats_toggle": T.PANEL - "game_section/education_toggle": T.PANEL - "game_section/always_day_toggle": T.PANEL - "game_section/daylight_cycle_toggle": T.PANEL - "game_section/keep_inventory_toggle": T.PANEL - "game_section/mob_spawn_toggle": T.PANEL - "game_section/mob_griefing_toggle": T.PANEL - "game_section/entities_drop_loot_toggle": T.PANEL - "game_section/weather_cycle_toggle": T.PANEL - "game_section/command_blocks_enabled_toggle": T.PANEL - "game_section/random_tick_speed": T.PANEL - "game_section/world_management_label": T.PANEL - "game_section/convert_to_infinite_panel": T.PANEL - "game_section/convert_to_infinite_panel/convert_to_infinite_button": T.BUTTON - "game_section/delete_button": T.BUTTON - "game_section/button_panel": T.PANEL - "game_section/button_panel/manipulation_controls": T.UNKNOWN - "game_section/export_template_panel": T.STACK_PANEL - "game_section/export_template_panel/padding": T.PANEL - "game_section/export_template_panel/template_version": T.PANEL - "game_section/export_template_panel/template_buttons": T.STACK_PANEL - "game_section/export_template_panel/template_buttons/template_image_picker_button": T.BUTTON - "game_section/export_template_panel/template_buttons/padding": T.PANEL - "game_section/export_template_panel/template_buttons/template_localization_picker_button": T.BUTTON - "game_section/export_template_panel/export_template": T.BUTTON - "game_section/clear_player_data_panel": T.STACK_PANEL - "game_section/clear_player_data_panel/padding": T.PANEL - "game_section/clear_player_data_panel/clear_player_data_button": T.BUTTON - "game_section/copy_world_panel": T.PANEL - "game_section/copy_world_panel/copy_world": T.BUTTON - "game_section/upload_download_slot_panel": T.PANEL - "game_section/upload_download_slot_panel/upload_download_slot_button": T.BUTTON - "game_section/replace_slot_panel": T.PANEL - "game_section/replace_slot_panel/replace_slot_button": T.BUTTON - level_texture_pack_button: T.PANEL - level_texture_pack_section: T.STACK_PANEL - addon_button: T.PANEL - addon_section: T.STACK_PANEL - world_game_mode_dropdown_content: T.PANEL - xbl_broadcast_dropdown_content: T.PANEL - platform_broadcast_dropdown_content: T.PANEL - player_game_mode_dropdown_content: T.PANEL - world_type_dropdown_content: T.PANEL - world_difficulty_dropdown_content: T.PANEL - multiplayer_button: T.PANEL - cross_platform_warning_label: T.LABEL - multiplayer_section: T.STACK_PANEL - "multiplayer_section/multiplayer_game_toggle": T.PANEL - "multiplayer_section/platform_settings_dropdown": T.PANEL - "multiplayer_section/xbl_settings_dropdown": T.PANEL - "multiplayer_section/server_visible_toggle": T.PANEL - "multiplayer_section/general_multiplayer_warning_label": T.LABEL - "multiplayer_section/open_uri_button": T.BUTTON - "multiplayer_section/platform_multiplayer_warning_label": T.LABEL - "multiplayer_section/xbl_multiplayer_warning_label": T.LABEL - option_text_edit_mock_with_button: T.PANEL - option_text_edit_mock_control_with_button: T.STACK_PANEL - "option_text_edit_mock_control_with_button/trial_text_box_button": T.BUTTON - "option_text_edit_mock_control_with_button/seed_arrow_button": T.BUTTON - experimental_toggle: T.PANEL - open_account_setting_button: T.BUTTON - edu_cloud_button: T.PANEL - edu_cloud_section: T.STACK_PANEL - "edu_cloud_section/edu_cloud_label": T.PANEL - "edu_cloud_section/cloud_file_name": T.PANEL - "edu_cloud_section/cloud_file_last_changed": T.PANEL - "edu_cloud_section/cloud_upload_toggle": T.PANEL - "edu_cloud_section/cloud_help_wrapper_panel": T.STACK_PANEL - "edu_cloud_section/cloud_help_wrapper_panel/cloud_help_button": T.BUTTON - "edu_cloud_section/cloud_help_wrapper_panel/padded_icon": T.PANEL - "edu_cloud_section/cloud_help_wrapper_panel/padded_icon/icon": T.IMAGE - debug_button: T.PANEL - debug_section: T.STACK_PANEL - "debug_section/flat_nether_toggle": T.PANEL - "debug_section/game_version_override_toggle": T.PANEL - "debug_section/game_version_override_textbox": T.PANEL - "debug_section/spawn_dimension_dropdown": T.PANEL - "debug_section/spawn_biome_dropdown": T.PANEL - "debug_section/biome_override_dropdown": T.PANEL - "debug_section/base_game_version_debug_text": T.LABEL - debug_spawn_dimension_dropdown_content: T.PANEL - debug_spawn_biome_dropdown_content: T.PANEL - debug_biome_override_dropdown_content: T.PANEL - editor_edit_world_manipulation_buttons_content: T.STACK_PANEL - "editor_edit_world_manipulation_buttons_content/export_as_project": T.BUTTON - "editor_edit_world_manipulation_buttons_content/padding": T.PANEL - "editor_edit_world_manipulation_buttons_content/export_as_world_buttons": T.STACK_PANEL - "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_world": T.BUTTON - "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/padding": T.PANEL - "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_template": T.BUTTON - "editor_edit_world_manipulation_buttons_content/padding_2": T.PANEL - "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons": T.STACK_PANEL - "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/copy_project": T.BUTTON - "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/padding": T.PANEL - "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/delete_project": T.BUTTON - editor_edit_world_manipulation_buttons: T.PANEL + "selector_pane_content": T.STACK_PANEL, + "selector_pane_content/world_snapshot_image": T.PANEL, + "selector_pane_content/world_snapshot_image/thumbnail": T.IMAGE, + "selector_pane_content/world_snapshot_image/thumbnail/border": T.IMAGE, + "selector_pane_content/play_or_create_panel": T.STACK_PANEL, + "selector_pane_content/play_or_host_panel": T.STACK_PANEL, + "selector_pane_content/spacer": T.PANEL, + "selector_pane_content/server_settings_visibility_panel": T.STACK_PANEL, + "selector_pane_content/server_settings_visibility_panel/selector_group_label_0": T.LABEL, + "selector_pane_content/server_settings_visibility_panel/server_settings_button": T.PANEL, + "selector_pane_content/server_settings_visibility_panel/server_spacer": T.PANEL, + "selector_pane_content/selector_group_label_1": T.LABEL, + "selector_pane_content/game_button": T.PANEL, + "selector_pane_content/spacer_01": T.PANEL, + "selector_pane_content/classroom_button": T.PANEL, + "selector_pane_content/spacer_02": T.PANEL, + "selector_pane_content/switch_game_button": T.PANEL, + "selector_pane_content/spacer_03": T.PANEL, + "selector_pane_content/multiplayer_button": T.PANEL, + "selector_pane_content/spacer_04": T.PANEL, + "selector_pane_content/edu_cloud_button": T.PANEL, + "selector_pane_content/spacer_05": T.PANEL, + "selector_pane_content/debug_button": T.PANEL, + "launch_world_button_stack_def": T.STACK_PANEL, + "play_or_create_stack_bedrock": T.STACK_PANEL, + "play_or_create_stack_bedrock/create_or_play_button": T.BUTTON, + "play_or_create_stack_bedrock/play_on_realm_button": T.BUTTON, + "edu_play_host_button": T.BUTTON, + "play_or_host_stack_edu": T.STACK_PANEL, + "play_or_host_stack_edu/edu_play_button": T.BUTTON, + "play_or_host_stack_edu/edu_host_button": T.BUTTON, + "addons_selector_panel": T.STACK_PANEL, + "addons_selector_panel/spacer_01": T.PANEL, + "addons_selector_panel/selector_group_label_2": T.LABEL, + "addons_selector_panel/level_texture_pack_button": T.PANEL, + "addons_selector_panel/spacer_02": T.PANEL, + "addons_selector_panel/addon_button": T.PANEL, + "server_settings_button": T.PANEL, + "server_section": T.STACK_PANEL, + "game_button": T.PANEL, + "export_world_button": T.BUTTON, + "delete_world_button": T.BUTTON, + "export_template_button": T.BUTTON, + "copy_world_button": T.BUTTON, + "edit_world_manipulation_buttons": T.STACK_PANEL, + "edit_world_manipulation_buttons/export": T.BUTTON, + "edit_world_manipulation_buttons/padding": T.PANEL, + "edit_world_manipulation_buttons/delete": T.BUTTON, + "game_section": T.STACK_PANEL, + "game_section/new_edit_world_opt_in_panel": T.STACK_PANEL, + "game_section/new_edit_world_opt_in_panel/panel_title": T.PANEL, + "game_section/new_edit_world_opt_in_panel/panel_text": T.PANEL, + "game_section/new_edit_world_opt_in_panel/opt_in_button": T.BUTTON, + "game_section/new_edit_world_opt_in_divider": T.PANEL, + "game_section/new_edit_world_opt_in_divider/section_divider": T.IMAGE, + "game_section/unlock_template_options_panel": T.STACK_PANEL, + "game_section/unlock_template_options_panel/option_info_label": T.PANEL, + "game_section/unlock_template_options_panel/unlock_template_options_button": T.BUTTON, + "game_section/option_info_label": T.PANEL, + "game_section/hardcore_info_label": T.PANEL, + "game_section/world_settings_label": T.PANEL, + "game_section/option_text_edit_0": T.PANEL, + "game_section/project_section_divider_1": T.IMAGE, + "game_section/project_header_label": T.PANEL, + "game_section/project_section_divider_2": T.IMAGE, + "game_section/project_spacer": T.PANEL, + "game_section/option_text_edit_1": T.PANEL, + "game_section/export_settings_section_divider_1": T.IMAGE, + "game_section/export_settings_header_label": T.PANEL, + "game_section/export_settings_header_description": T.PANEL, + "game_section/export_settings_section_divider_2": T.IMAGE, + "game_section/export_settings_spacer": T.PANEL, + "game_section/option_dropdown_0": T.PANEL, + "game_section/option_dropdown_1": T.PANEL, + "game_section/is_hardcore_toggle": T.PANEL, + "game_section/option_dropdown_2": T.PANEL, + "game_section/world_preferences_label": T.PANEL, + "game_section/starting_map_toggle": T.PANEL, + "game_section/bonus_chest_toggle": T.PANEL, + "game_section/option_dropdown_permissions": T.PANEL, + "game_section/option_dropdown_3": T.PANEL, + "game_section/level_seed_selector_edu": T.PANEL, + "game_section/level_seed_selector": T.PANEL, + "game_section/level_seed_selector_trial": T.PANEL, + "game_section/server_sim_distance_slider": T.PANEL, + "game_section/world_options_label": T.PANEL, + "game_section/pvp_toggle": T.PANEL, + "game_section/show_coordinates_toggle": T.PANEL, + "game_section/locator_bar_toggle": T.PANEL, + "game_section/show_days_played_toggle": T.PANEL, + "game_section/fire_spreads_toggle": T.PANEL, + "game_section/recipes_unlock_toggle": T.PANEL, + "game_section/tnt_explodes_toggle": T.PANEL, + "game_section/respawn_blocks_explode_toggle": T.PANEL, + "game_section/mob_loot_toggle": T.PANEL, + "game_section/natural_regeneration_toggle": T.PANEL, + "game_section/tile_drops_toggle": T.PANEL, + "game_section/player_sleep_toggle": T.PANEL, + "game_section/player_sleep_percentage_slider": T.PANEL, + "game_section/immediate_respawn_toggle": T.PANEL, + "game_section/respawn_radius": T.PANEL, + "game_section/experimental_toggles_label": T.PANEL, + "game_section/experimental_toggles_label_info": T.PANEL, + "game_section/experimental_toggles": T.STACK_PANEL, + "game_section/world_cheats_label": T.PANEL, + "game_section/allow_cheats_toggle": T.PANEL, + "game_section/education_toggle": T.PANEL, + "game_section/always_day_toggle": T.PANEL, + "game_section/daylight_cycle_toggle": T.PANEL, + "game_section/keep_inventory_toggle": T.PANEL, + "game_section/mob_spawn_toggle": T.PANEL, + "game_section/mob_griefing_toggle": T.PANEL, + "game_section/entities_drop_loot_toggle": T.PANEL, + "game_section/weather_cycle_toggle": T.PANEL, + "game_section/command_blocks_enabled_toggle": T.PANEL, + "game_section/random_tick_speed": T.PANEL, + "game_section/world_management_label": T.PANEL, + "game_section/convert_to_infinite_panel": T.PANEL, + "game_section/convert_to_infinite_panel/convert_to_infinite_button": T.BUTTON, + "game_section/delete_button": T.BUTTON, + "game_section/button_panel": T.PANEL, + "game_section/button_panel/manipulation_controls": T.UNKNOWN, + "game_section/export_template_panel": T.STACK_PANEL, + "game_section/export_template_panel/padding": T.PANEL, + "game_section/export_template_panel/template_version": T.PANEL, + "game_section/export_template_panel/template_buttons": T.STACK_PANEL, + "game_section/export_template_panel/template_buttons/template_image_picker_button": T.BUTTON, + "game_section/export_template_panel/template_buttons/padding": T.PANEL, + "game_section/export_template_panel/template_buttons/template_localization_picker_button": T.BUTTON, + "game_section/export_template_panel/export_template": T.BUTTON, + "game_section/clear_player_data_panel": T.STACK_PANEL, + "game_section/clear_player_data_panel/padding": T.PANEL, + "game_section/clear_player_data_panel/clear_player_data_button": T.BUTTON, + "game_section/copy_world_panel": T.PANEL, + "game_section/copy_world_panel/copy_world": T.BUTTON, + "game_section/upload_download_slot_panel": T.PANEL, + "game_section/upload_download_slot_panel/upload_download_slot_button": T.BUTTON, + "game_section/replace_slot_panel": T.PANEL, + "game_section/replace_slot_panel/replace_slot_button": T.BUTTON, + "level_texture_pack_button": T.PANEL, + "level_texture_pack_section": T.STACK_PANEL, + "addon_button": T.PANEL, + "addon_section": T.STACK_PANEL, + "world_game_mode_dropdown_content": T.PANEL, + "xbl_broadcast_dropdown_content": T.PANEL, + "platform_broadcast_dropdown_content": T.PANEL, + "player_game_mode_dropdown_content": T.PANEL, + "world_type_dropdown_content": T.PANEL, + "world_difficulty_dropdown_content": T.PANEL, + "multiplayer_button": T.PANEL, + "cross_platform_warning_label": T.LABEL, + "multiplayer_section": T.STACK_PANEL, + "multiplayer_section/multiplayer_game_toggle": T.PANEL, + "multiplayer_section/platform_settings_dropdown": T.PANEL, + "multiplayer_section/xbl_settings_dropdown": T.PANEL, + "multiplayer_section/server_visible_toggle": T.PANEL, + "multiplayer_section/general_multiplayer_warning_label": T.LABEL, + "multiplayer_section/open_uri_button": T.BUTTON, + "multiplayer_section/platform_multiplayer_warning_label": T.LABEL, + "multiplayer_section/xbl_multiplayer_warning_label": T.LABEL, + "option_text_edit_mock_with_button": T.PANEL, + "option_text_edit_mock_control_with_button": T.STACK_PANEL, + "option_text_edit_mock_control_with_button/trial_text_box_button": T.BUTTON, + "option_text_edit_mock_control_with_button/seed_arrow_button": T.BUTTON, + "experimental_toggle": T.PANEL, + "open_account_setting_button": T.BUTTON, + "edu_cloud_button": T.PANEL, + "edu_cloud_section": T.STACK_PANEL, + "edu_cloud_section/edu_cloud_label": T.PANEL, + "edu_cloud_section/cloud_file_name": T.PANEL, + "edu_cloud_section/cloud_file_last_changed": T.PANEL, + "edu_cloud_section/cloud_upload_toggle": T.PANEL, + "edu_cloud_section/cloud_help_wrapper_panel": T.STACK_PANEL, + "edu_cloud_section/cloud_help_wrapper_panel/cloud_help_button": T.BUTTON, + "edu_cloud_section/cloud_help_wrapper_panel/padded_icon": T.PANEL, + "edu_cloud_section/cloud_help_wrapper_panel/padded_icon/icon": T.IMAGE, + "debug_button": T.PANEL, + "debug_section": T.STACK_PANEL, + "debug_section/flat_nether_toggle": T.PANEL, + "debug_section/game_version_override_toggle": T.PANEL, + "debug_section/game_version_override_textbox": T.PANEL, + "debug_section/spawn_dimension_dropdown": T.PANEL, + "debug_section/spawn_biome_dropdown": T.PANEL, + "debug_section/biome_override_dropdown": T.PANEL, + "debug_section/base_game_version_debug_text": T.LABEL, + "debug_spawn_dimension_dropdown_content": T.PANEL, + "debug_spawn_biome_dropdown_content": T.PANEL, + "debug_biome_override_dropdown_content": T.PANEL, + "editor_edit_world_manipulation_buttons_content": T.STACK_PANEL, + "editor_edit_world_manipulation_buttons_content/export_as_project": T.BUTTON, + "editor_edit_world_manipulation_buttons_content/padding": T.PANEL, + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons": T.STACK_PANEL, + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_world": T.BUTTON, + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/padding": T.PANEL, + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_template": T.BUTTON, + "editor_edit_world_manipulation_buttons_content/padding_2": T.PANEL, + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons": T.STACK_PANEL, + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/copy_project": T.BUTTON, + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/padding": T.PANEL, + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/delete_project": T.BUTTON, + "editor_edit_world_manipulation_buttons": T.PANEL, } export type SocialSectionType = { - party_button: T.PANEL - party_section: T.STACK_PANEL - "party_section/party_invite_filter_dropdown": T.PANEL - "party_section/party_invite_reset_default_padding": T.PANEL - "party_section/party_invite_send_privileges_dropdown": T.PANEL - "party_section/party_privacy_default_padding": T.PANEL - "party_section/party_privacy_dropdown": T.PANEL - "party_section/party_privacy_label_wrapper": T.PANEL - "party_section/party_settings_reset_default_button_default_padding": T.PANEL - "party_section/party_settings_reset_default_button": T.BUTTON - "party_section/microsoft_account_settings_divider": T.PANEL - "party_section/microsoft_account_settings_divider/section_divider": T.IMAGE - "party_section/microsoft_account_settings_header": T.LABEL - "party_section/microsoft_account_settings_padding": T.PANEL - "party_section/microsoft_account_settings_label_wrapper": T.PANEL - "party_section/privacy_and_online_safety_button_padding": T.PANEL - "party_section/privacy_and_online_safety_button": T.BUTTON - "party_section/microsoft_account_settings_ending_padding": T.PANEL - party_privacy_label: T.LABEL - microsoft_account_settings_label: T.LABEL - platform_settings_label: T.LABEL - party_invite_filter_dropdown_content: T.PANEL - party_privacy_dropdown_content: T.PANEL - party_invite_send_privileges_dropdown_content: T.PANEL + "party_button": T.PANEL, + "party_section": T.STACK_PANEL, + "party_section/party_invite_filter_dropdown": T.PANEL, + "party_section/party_invite_reset_default_padding": T.PANEL, + "party_section/party_invite_send_privileges_dropdown": T.PANEL, + "party_section/party_privacy_default_padding": T.PANEL, + "party_section/party_privacy_dropdown": T.PANEL, + "party_section/party_privacy_label_wrapper": T.PANEL, + "party_section/party_settings_reset_default_button_default_padding": T.PANEL, + "party_section/party_settings_reset_default_button": T.BUTTON, + "party_section/microsoft_account_settings_divider": T.PANEL, + "party_section/microsoft_account_settings_divider/section_divider": T.IMAGE, + "party_section/microsoft_account_settings_header": T.LABEL, + "party_section/microsoft_account_settings_padding": T.PANEL, + "party_section/microsoft_account_settings_label_wrapper": T.PANEL, + "party_section/privacy_and_online_safety_button_padding": T.PANEL, + "party_section/privacy_and_online_safety_button": T.BUTTON, + "party_section/microsoft_account_settings_ending_padding": T.PANEL, + "party_privacy_label": T.LABEL, + "microsoft_account_settings_label": T.LABEL, + "platform_settings_label": T.LABEL, + "party_invite_filter_dropdown_content": T.PANEL, + "party_privacy_dropdown_content": T.PANEL, + "party_invite_send_privileges_dropdown_content": T.PANEL, } export type SidebarNavigationType = { - empty_panel: T.PANEL - empty_fill_x_panel: T.PANEL - empty_default_panel: T.PANEL - vertical_padding_panel: T.PANEL - sidebar_bg: T.IMAGE - sidebar_divider: T.IMAGE - sidebar_divider_panel: T.PANEL - "sidebar_divider_panel/sidebar_divider": T.IMAGE - toggle_content: T.PANEL - "toggle_content/toggle_content": T.UNKNOWN - sidebar_section_scroll_panel: T.PANEL - sidebar_bg_content_panel: T.IMAGE - "sidebar_bg_content_panel/sidebar_bg_content": T.UNKNOWN - sidebar_nav_toggle_image: T.IMAGE - sidebar_nav_toggle_image_panel: T.PANEL - "sidebar_nav_toggle_image_panel/sidebar_nav_toggle_image": T.IMAGE - "sidebar_nav_toggle_image_panel/gamepad_helper_icon": T.UNKNOWN - gamepad_helper_icon_start_toggle: T.STACK_PANEL - verbose_view_toggle_content: T.STACK_PANEL - "verbose_view_toggle_content/left_padding": T.PANEL - "verbose_view_toggle_content/sidebar_nav_toggle_image": T.PANEL - sidebar_toggle_bg: T.IMAGE - sidebar_toggle: T.PANEL - sidebar_option_toggle: T.PANEL - simple_sidebar_toggle: T.PANEL - verbose_toggle: T.PANEL - verbose_sidebar_option: T.PANEL - verbose_expand_option: T.PANEL - verbose_dropdown_option: T.PANEL - verbose_dropdown_expanded_option: T.PANEL - verbose_sidebar_expand_section_bg: T.IMAGE - verbose_sidebar_expand_section_panel: T.STACK_PANEL - verbose_expand_section_panel: T.INPUT_PANEL - verbose_view_toggle: T.PANEL - sidebar_option_factory: T.STACK_PANEL - sidebar_option_factory_panel: T.INPUT_PANEL - "sidebar_option_factory_panel/sidebar_option_factory": T.STACK_PANEL - verbose_button_content: T.PANEL - "verbose_button_content/button_label": T.LABEL - verbose_button: T.BUTTON - verbose_nav_button_panel: T.PANEL - "verbose_nav_button_panel/verbose_nav_button": T.BUTTON - verbose_screen_nav_button: T.BUTTON - verbose_screen_nav_option_panel: T.PANEL - "verbose_screen_nav_option_panel/verbose_nav_button": T.BUTTON - sidebar_option_factory_scroll_panel: T.PANEL - sidebar_screen_nav_option_factory_panel: T.STACK_PANEL - "sidebar_screen_nav_option_factory_panel/fill_panel": T.PANEL - "sidebar_screen_nav_option_factory_panel/button": T.PANEL - "sidebar_screen_nav_option_factory_panel/padding": T.PANEL - "sidebar_screen_nav_option_factory_panel/platform_icon_padding": T.PANEL - root_section_content_panel: T.STACK_PANEL - "root_section_content_panel/sidebar_option_factory": T.PANEL - "root_section_content_panel/verbose_sidebar_screen_Nav": T.STACK_PANEL - edge_bar: T.IMAGE - verbose_view_stack_panel: T.STACK_PANEL - "verbose_view_stack_panel/verbose_view_toggle": T.PANEL - sidebar_section: T.STACK_PANEL - "sidebar_section/left_edge_bar": T.IMAGE - "sidebar_section/verbose_view_stack_panel": T.STACK_PANEL - "sidebar_section/right_edge_bar": T.IMAGE - root_section: T.PANEL - verbose_root_section: T.STACK_PANEL - simple_root_section: T.STACK_PANEL - "simple_root_section/verbose_view_toggle": T.PANEL - "simple_root_section/root_section": T.PANEL - sidebar_section_factory_panel: T.IMAGE - "sidebar_section_factory_panel/sidebar_section_factory": T.STACK_PANEL - sidebar_view_content_panel: T.PANEL - "sidebar_view_content_panel/view_stack_panel": T.STACK_PANEL - "sidebar_view_content_panel/view_stack_panel/sidebar_view": T.IMAGE - "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel": T.PANEL - "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button": T.BUTTON - "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/default": T.PANEL - "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/hover": T.PANEL - "sidebar_view_content_panel/verbose_view_exit": T.PANEL - verbose_sidebar_view_modal: T.INPUT_PANEL - sidebar_views: T.PANEL - "sidebar_views/sidebar_view_conent": T.PANEL - "sidebar_views/sidebar_view_conent/simple_sidebar_view": T.PANEL - "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal": T.INPUT_PANEL - "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal/verbose_sidebar_view": T.PANEL - sidebar_empty_panel: T.PANEL - content_view: T.PANEL - "content_view/content_view_stack": T.STACK_PANEL - "content_view/content_view_stack/sidebar_view_stack": T.STACK_PANEL - "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel": T.PANEL - "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel": T.PANEL - "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button": T.BUTTON - "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/default": T.PANEL - "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/hover": T.PANEL - "content_view/content_view_stack/sidebar_view_stack/divider": T.IMAGE - "content_view/content_view_stack/main_view_content": T.INPUT_PANEL - "content_view/content_view_stack/main_view_content/screen_content": T.UNKNOWN - sidebar_view: T.INPUT_PANEL - "sidebar_view/sidebar_content": T.PANEL - "sidebar_view/content_view": T.PANEL - "sidebar_view/progress_loading": T.PANEL - platform_store_icon_spacing: T.PANEL + "empty_panel": T.PANEL, + "empty_fill_x_panel": T.PANEL, + "empty_default_panel": T.PANEL, + "vertical_padding_panel": T.PANEL, + "sidebar_bg": T.IMAGE, + "sidebar_divider": T.IMAGE, + "sidebar_divider_panel": T.PANEL, + "sidebar_divider_panel/sidebar_divider": T.IMAGE, + "toggle_content": T.PANEL, + "toggle_content/toggle_content": T.UNKNOWN, + "sidebar_section_scroll_panel": T.PANEL, + "sidebar_bg_content_panel": T.IMAGE, + "sidebar_bg_content_panel/sidebar_bg_content": T.UNKNOWN, + "sidebar_nav_toggle_image": T.IMAGE, + "sidebar_nav_toggle_image_panel": T.PANEL, + "sidebar_nav_toggle_image_panel/sidebar_nav_toggle_image": T.IMAGE, + "sidebar_nav_toggle_image_panel/gamepad_helper_icon": T.UNKNOWN, + "gamepad_helper_icon_start_toggle": T.STACK_PANEL, + "verbose_view_toggle_content": T.STACK_PANEL, + "verbose_view_toggle_content/left_padding": T.PANEL, + "verbose_view_toggle_content/sidebar_nav_toggle_image": T.PANEL, + "sidebar_toggle_bg": T.IMAGE, + "sidebar_toggle": T.PANEL, + "sidebar_option_toggle": T.PANEL, + "simple_sidebar_toggle": T.PANEL, + "verbose_toggle": T.PANEL, + "verbose_sidebar_option": T.PANEL, + "verbose_expand_option": T.PANEL, + "verbose_dropdown_option": T.PANEL, + "verbose_dropdown_expanded_option": T.PANEL, + "verbose_sidebar_expand_section_bg": T.IMAGE, + "verbose_sidebar_expand_section_panel": T.STACK_PANEL, + "verbose_expand_section_panel": T.INPUT_PANEL, + "verbose_view_toggle": T.PANEL, + "sidebar_option_factory": T.STACK_PANEL, + "sidebar_option_factory_panel": T.INPUT_PANEL, + "sidebar_option_factory_panel/sidebar_option_factory": T.STACK_PANEL, + "verbose_button_content": T.PANEL, + "verbose_button_content/button_label": T.LABEL, + "verbose_button": T.BUTTON, + "verbose_nav_button_panel": T.PANEL, + "verbose_nav_button_panel/verbose_nav_button": T.BUTTON, + "verbose_screen_nav_button": T.BUTTON, + "verbose_screen_nav_option_panel": T.PANEL, + "verbose_screen_nav_option_panel/verbose_nav_button": T.BUTTON, + "sidebar_option_factory_scroll_panel": T.PANEL, + "sidebar_screen_nav_option_factory_panel": T.STACK_PANEL, + "sidebar_screen_nav_option_factory_panel/fill_panel": T.PANEL, + "sidebar_screen_nav_option_factory_panel/button": T.PANEL, + "sidebar_screen_nav_option_factory_panel/padding": T.PANEL, + "sidebar_screen_nav_option_factory_panel/platform_icon_padding": T.PANEL, + "root_section_content_panel": T.STACK_PANEL, + "root_section_content_panel/sidebar_option_factory": T.PANEL, + "root_section_content_panel/verbose_sidebar_screen_Nav": T.STACK_PANEL, + "edge_bar": T.IMAGE, + "verbose_view_stack_panel": T.STACK_PANEL, + "verbose_view_stack_panel/verbose_view_toggle": T.PANEL, + "sidebar_section": T.STACK_PANEL, + "sidebar_section/left_edge_bar": T.IMAGE, + "sidebar_section/verbose_view_stack_panel": T.STACK_PANEL, + "sidebar_section/right_edge_bar": T.IMAGE, + "root_section": T.PANEL, + "verbose_root_section": T.STACK_PANEL, + "simple_root_section": T.STACK_PANEL, + "simple_root_section/verbose_view_toggle": T.PANEL, + "simple_root_section/root_section": T.PANEL, + "sidebar_section_factory_panel": T.IMAGE, + "sidebar_section_factory_panel/sidebar_section_factory": T.STACK_PANEL, + "sidebar_view_content_panel": T.PANEL, + "sidebar_view_content_panel/view_stack_panel": T.STACK_PANEL, + "sidebar_view_content_panel/view_stack_panel/sidebar_view": T.IMAGE, + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel": T.PANEL, + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button": T.BUTTON, + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/default": T.PANEL, + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/hover": T.PANEL, + "sidebar_view_content_panel/verbose_view_exit": T.PANEL, + "verbose_sidebar_view_modal": T.INPUT_PANEL, + "sidebar_views": T.PANEL, + "sidebar_views/sidebar_view_conent": T.PANEL, + "sidebar_views/sidebar_view_conent/simple_sidebar_view": T.PANEL, + "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal": T.INPUT_PANEL, + "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal/verbose_sidebar_view": T.PANEL, + "sidebar_empty_panel": T.PANEL, + "content_view": T.PANEL, + "content_view/content_view_stack": T.STACK_PANEL, + "content_view/content_view_stack/sidebar_view_stack": T.STACK_PANEL, + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel": T.PANEL, + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel": T.PANEL, + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button": T.BUTTON, + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/default": T.PANEL, + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/hover": T.PANEL, + "content_view/content_view_stack/sidebar_view_stack/divider": T.IMAGE, + "content_view/content_view_stack/main_view_content": T.INPUT_PANEL, + "content_view/content_view_stack/main_view_content/screen_content": T.UNKNOWN, + "sidebar_view": T.INPUT_PANEL, + "sidebar_view/sidebar_content": T.PANEL, + "sidebar_view/content_view": T.PANEL, + "sidebar_view/progress_loading": T.PANEL, + "platform_store_icon_spacing": T.PANEL, } export type SignType = { - sign_background: T.IMAGE - hanging_sign_background: T.IMAGE - base_sign_text_multiline: T.EDIT_BOX - regular_sign_text_multiline: T.EDIT_BOX - hanging_sign_text_multiline: T.EDIT_BOX - sign_screen_content: T.PANEL - "sign_screen_content/input_eating_panel": T.INPUT_PANEL - "sign_screen_content/input_eating_panel/text_edit": T.UNKNOWN - "sign_screen_content/invisible_exit_background": T.INPUT_PANEL - sign_screen: T.SCREEN + "sign_background": T.IMAGE, + "hanging_sign_background": T.IMAGE, + "base_sign_text_multiline": T.EDIT_BOX, + "regular_sign_text_multiline": T.EDIT_BOX, + "hanging_sign_text_multiline": T.EDIT_BOX, + "sign_screen_content": T.PANEL, + "sign_screen_content/input_eating_panel": T.INPUT_PANEL, + "sign_screen_content/input_eating_panel/text_edit": T.UNKNOWN, + "sign_screen_content/invisible_exit_background": T.INPUT_PANEL, + "sign_screen": T.SCREEN, } export type SimpleInprogressType = { - title_text: T.LABEL - main_panel: T.PANEL - "main_panel/common_panel": T.PANEL - "main_panel/title": T.LABEL - "main_panel/main_content": T.LABEL - "main_panel/progress_loading_bars": T.IMAGE - simple_inprogress_screen: T.SCREEN - simple_inprogress_screen_content: T.PANEL - "simple_inprogress_screen_content/root_panel": T.PANEL - "simple_inprogress_screen_content/root_panel/main_panel": T.PANEL + "title_text": T.LABEL, + "main_panel": T.PANEL, + "main_panel/common_panel": T.PANEL, + "main_panel/title": T.LABEL, + "main_panel/main_content": T.LABEL, + "main_panel/progress_loading_bars": T.IMAGE, + "simple_inprogress_screen": T.SCREEN, + "simple_inprogress_screen_content": T.PANEL, + "simple_inprogress_screen_content/root_panel": T.PANEL, + "simple_inprogress_screen_content/root_panel/main_panel": T.PANEL, } export type SkinPackPurchaseType = { - cycle_pack_left_button: T.BUTTON - cycle_pack_right_button: T.BUTTON - skin_model: T.PANEL - "skin_model/paper_doll": T.CUSTOM - skin_lock: T.IMAGE - skin_focus_border: T.IMAGE - "skin_focus_border/equip": T.PANEL - skin_button_panel_gamepad: T.PANEL - "skin_button_panel_gamepad/skin_button": T.BUTTON - "skin_button_panel_gamepad/skin_button/hover": T.IMAGE - "skin_button_panel_gamepad/skin_button/pressed": T.IMAGE - skin_button_panel_not_gamepad: T.PANEL - "skin_button_panel_not_gamepad/skin_button": T.BUTTON - "skin_button_panel_not_gamepad/skin_button/hover": T.IMAGE - "skin_button_panel_not_gamepad/skin_button/pressed": T.IMAGE - "skin_button_panel_not_gamepad/equip_button": T.BUTTON - skin_button_panel: T.STACK_PANEL - "skin_button_panel/gamepad": T.PANEL - "skin_button_panel/not_gamepad": T.PANEL - equip_button_state_panel: T.PANEL - "equip_button_state_panel/button_panel": T.PANEL - equip_button_text: T.PANEL - "equip_button_text/text": T.LABEL - skins_grid_item: T.PANEL - "skins_grid_item/model": T.PANEL - "skins_grid_item/lock": T.IMAGE - "skins_grid_item/button": T.STACK_PANEL - skins_grid: T.GRID - skins_panel: T.PANEL - "skins_panel/bg": T.PANEL - "skins_panel/bg/left": T.BUTTON - "skins_panel/bg/sg": T.GRID - "skins_panel/bg/right": T.BUTTON - "skins_panel/bg/progress_loading_panel": T.PANEL - "skins_panel/bg/progress_loading_panel/progress_loading": T.PANEL - "skins_panel/bg/progress_loading_panel/progress_loading_outline": T.BUTTON - "skins_panel/bg/progress_loading_panel/progress_loading_outline/hover": T.IMAGE - screen_root: T.SCREEN - skin_pack_purchase_upsell_screen: T.SCREEN - skin_pack_purchase_upsell_screen_content: T.PANEL - skin_pack_purchase_upsell_dialog_content: T.PANEL - "skin_pack_purchase_upsell_dialog_content/container": T.PANEL - skin_pack_purchase_standard: T.SCREEN - skin_pack_purchase_standard_content: T.PANEL - skin_pack_purchase_dialog_content: T.PANEL - "skin_pack_purchase_dialog_content/container": T.PANEL + "cycle_pack_left_button": T.BUTTON, + "cycle_pack_right_button": T.BUTTON, + "skin_model": T.PANEL, + "skin_model/paper_doll": T.CUSTOM, + "skin_lock": T.IMAGE, + "skin_focus_border": T.IMAGE, + "skin_focus_border/equip": T.PANEL, + "skin_button_panel_gamepad": T.PANEL, + "skin_button_panel_gamepad/skin_button": T.BUTTON, + "skin_button_panel_gamepad/skin_button/hover": T.IMAGE, + "skin_button_panel_gamepad/skin_button/pressed": T.IMAGE, + "skin_button_panel_not_gamepad": T.PANEL, + "skin_button_panel_not_gamepad/skin_button": T.BUTTON, + "skin_button_panel_not_gamepad/skin_button/hover": T.IMAGE, + "skin_button_panel_not_gamepad/skin_button/pressed": T.IMAGE, + "skin_button_panel_not_gamepad/equip_button": T.BUTTON, + "skin_button_panel": T.STACK_PANEL, + "skin_button_panel/gamepad": T.PANEL, + "skin_button_panel/not_gamepad": T.PANEL, + "equip_button_state_panel": T.PANEL, + "equip_button_state_panel/button_panel": T.PANEL, + "equip_button_text": T.PANEL, + "equip_button_text/text": T.LABEL, + "skins_grid_item": T.PANEL, + "skins_grid_item/model": T.PANEL, + "skins_grid_item/lock": T.IMAGE, + "skins_grid_item/button": T.STACK_PANEL, + "skins_grid": T.GRID, + "skins_panel": T.PANEL, + "skins_panel/bg": T.PANEL, + "skins_panel/bg/left": T.BUTTON, + "skins_panel/bg/sg": T.GRID, + "skins_panel/bg/right": T.BUTTON, + "skins_panel/bg/progress_loading_panel": T.PANEL, + "skins_panel/bg/progress_loading_panel/progress_loading": T.PANEL, + "skins_panel/bg/progress_loading_panel/progress_loading_outline": T.BUTTON, + "skins_panel/bg/progress_loading_panel/progress_loading_outline/hover": T.IMAGE, + "screen_root": T.SCREEN, + "skin_pack_purchase_upsell_screen": T.SCREEN, + "skin_pack_purchase_upsell_screen_content": T.PANEL, + "skin_pack_purchase_upsell_dialog_content": T.PANEL, + "skin_pack_purchase_upsell_dialog_content/container": T.PANEL, + "skin_pack_purchase_standard": T.SCREEN, + "skin_pack_purchase_standard_content": T.PANEL, + "skin_pack_purchase_dialog_content": T.PANEL, + "skin_pack_purchase_dialog_content/container": T.PANEL, } export type SkinPickerType = { - banner_fill: T.IMAGE - title_label: T.LABEL - label: T.LABEL - chevron_image: T.IMAGE - bumper_image: T.IMAGE - undo_image: T.IMAGE - plus_icon: T.IMAGE - direction_button_panel: T.PANEL - "direction_button_panel/chevron_image": T.IMAGE - "direction_button_panel/bumper_image": T.IMAGE - cycle_pack_button: T.BUTTON - cycle_pack_left_button: T.BUTTON - cycle_pack_right_button: T.BUTTON - skin_button: T.BUTTON - "skin_button/hover": T.IMAGE - "skin_button/pressed": T.IMAGE - skin_rotation_arrows: T.IMAGE - skin_viewer_panel: T.INPUT_PANEL - "skin_viewer_panel/custom_skin_button": T.BUTTON - "skin_viewer_panel/skin_model_panel": T.PANEL - "skin_viewer_panel/skin_model_panel/skin_model": T.CUSTOM - "skin_viewer_panel/lock": T.IMAGE - undo_skin_button: T.BUTTON - accept_skin_button: T.BUTTON - stack_item: T.PANEL - accept_skin_panel: T.STACK_PANEL - "accept_skin_panel/stack_item_0": T.PANEL - "accept_skin_panel/stack_item_0/undo_btn": T.BUTTON - "accept_skin_panel/stack_item_1": T.PANEL - "accept_skin_panel/stack_item_1/accept_button": T.BUTTON - appearance_status_image_panel: T.PANEL - "appearance_status_image_panel/limited_status_image": T.IMAGE - "appearance_status_image_panel/no_restrictions_status_image": T.IMAGE - appearance_status_content: T.STACK_PANEL - "appearance_status_content/appearance_status_image_panel": T.PANEL - "appearance_status_content/padding": T.PANEL - "appearance_status_content/appearance_status_label_panel": T.PANEL - "appearance_status_content/appearance_status_label_panel/appearance_status_label": T.LABEL - preview_skin_panel: T.PANEL - "preview_skin_panel/preview": T.INPUT_PANEL - "preview_skin_panel/button_frame": T.STACK_PANEL - "preview_skin_panel/button_frame/stack_item_0": T.PANEL - "preview_skin_panel/button_frame/stack_item_0/rotation": T.IMAGE - "preview_skin_panel/button_frame/padding": T.PANEL - "preview_skin_panel/button_frame/notification_and_accept_input_panel": T.INPUT_PANEL - "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack": T.STACK_PANEL - "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/skin_status_notification_section": T.PANEL - "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/skin_status_notification_section/appearance_status_notification_panel": T.BUTTON - "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1": T.PANEL - "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1/accept": T.STACK_PANEL - skin_model: T.CUSTOM - premium_skin_button: T.BUTTON - skin_lock: T.IMAGE - new_pack_icon: T.PANEL - "new_pack_icon/icon": T.IMAGE - pack_lock: T.PANEL - "pack_lock/locked": T.IMAGE - "pack_lock/unlocked": T.IMAGE - skin_input_panel: T.INPUT_PANEL - "skin_input_panel/sg": T.GRID - skins_grid_item: T.PANEL - "skins_grid_item/clip": T.PANEL - "skins_grid_item/clip/model": T.CUSTOM - "skins_grid_item/lock": T.IMAGE - "skins_grid_item/button": T.BUTTON - skins_grid: T.GRID - pack_name: T.LABEL - pack_grid_item: T.PANEL - "pack_grid_item/header": T.STACK_PANEL - "pack_grid_item/header/padding": T.PANEL - "pack_grid_item/header/pack_lock": T.PANEL - "pack_grid_item/header/pack_name": T.LABEL - "pack_grid_item/header/padding_2": T.PANEL - "pack_grid_item/header/new_pack_icon": T.PANEL - "pack_grid_item/header/padding_3": T.PANEL - "pack_grid_item/bg": T.IMAGE - "pack_grid_item/bg/skin_input_panel": T.INPUT_PANEL - "pack_grid_item/bg/expand_view_button": T.BUTTON - "pack_grid_item/bg/progress_loading_no_connection": T.PANEL - "pack_grid_item/bg/progress_loading": T.PANEL - premium_packs_grid: T.GRID - standard_skin_button: T.BUTTON - default_skins_grid_item: T.PANEL - "default_skins_grid_item/model": T.CUSTOM - "default_skins_grid_item/button": T.BUTTON - default_skins_grid: T.GRID - recent_skins_grid_item: T.PANEL - "recent_skins_grid_item/clip": T.PANEL - "recent_skins_grid_item/clip/model": T.CUSTOM - "recent_skins_grid_item/button": T.BUTTON - recent_skins_grid: T.GRID - standard_frame: T.PANEL - standard_header: T.LABEL - standard_fill: T.IMAGE - standard_panel: T.PANEL - "standard_panel/default_skins": T.PANEL - "standard_panel/default_skins/header": T.LABEL - "standard_panel/default_skins/fill": T.IMAGE - "standard_panel/default_skins/fill/default_skins_grid": T.GRID - "standard_panel/recent_skins": T.PANEL - "standard_panel/recent_skins/header": T.LABEL - "standard_panel/recent_skins/fill": T.IMAGE - "standard_panel/recent_skins/fill/recent_skins_grid": T.GRID - "standard_panel/recent_skins/fill/recent_skins_loading_panel": T.PANEL - scrolling_content_stack: T.STACK_PANEL - "scrolling_content_stack/standard_panel": T.PANEL - "scrolling_content_stack/premium_packs_grid": T.GRID - all_skins_content: T.INPUT_PANEL - "all_skins_content/scrolling_frame": T.PANEL - "all_skins_content/scrolling_frame/change_skin_scroll": T.PANEL - "all_skins_content/scrolling_frame/progress_loading": T.PANEL - all_skins_frame: T.PANEL - "all_skins_frame/all_skins_content": T.INPUT_PANEL - title_bar: T.STACK_PANEL - "title_bar/padding_0": T.PANEL - "title_bar/fill_panel": T.PANEL - "title_bar/fill_panel/title_holder": T.PANEL - "title_bar/fill_panel/title_holder/change_skin_title": T.LABEL - "title_bar/padding_1": T.PANEL - "title_bar/skin_name_holder": T.PANEL - "title_bar/skin_name_holder/preview_skin_name": T.LABEL - "title_bar/padding_2": T.PANEL - popup_dialog_skin_model: T.PANEL - "popup_dialog_skin_model/paper_doll": T.CUSTOM - popup_dialog_choose_skin_type_button: T.BUTTON - "popup_dialog_choose_skin_type_button/hover": T.IMAGE - "popup_dialog_choose_skin_type_button/pressed": T.IMAGE - popup_dialog_choose_skin_type_panel: T.PANEL - "popup_dialog_choose_skin_type_panel/model": T.PANEL - "popup_dialog_choose_skin_type_panel/button_highlight": T.BUTTON - popup_dialog__invalid_custom_skin: T.INPUT_PANEL - "popup_dialog__invalid_custom_skin/popup_dialog_bg": T.IMAGE - "popup_dialog__invalid_custom_skin/popup_dialog_message": T.LABEL - "popup_dialog__invalid_custom_skin/popup_dialog_middle_button": T.BUTTON - popup_dialog__upsell_without_store: T.INPUT_PANEL - popup_dialog__choose_skin_type: T.INPUT_PANEL - "popup_dialog__choose_skin_type/popup_dialog_bg": T.IMAGE - "popup_dialog__choose_skin_type/popup_dialog_message": T.LABEL - "popup_dialog__choose_skin_type/left": T.PANEL - "popup_dialog__choose_skin_type/right": T.PANEL - content: T.PANEL - "content/title": T.STACK_PANEL - "content/selector_area": T.INPUT_PANEL - "content/content_area": T.INPUT_PANEL - "content/section_divider": T.IMAGE - skin_picker_screen: T.SCREEN - skin_picker_screen_content: T.PANEL - "skin_picker_screen_content/bg": T.STACK_PANEL - "skin_picker_screen_content/container": T.PANEL - "skin_picker_screen_content/container/content": T.PANEL - "skin_picker_screen_content/popup_dialog_factory": T.FACTORY - scrollable_selector_area_content: T.PANEL - selector_area: T.INPUT_PANEL - "selector_area/all_skins": T.PANEL - "selector_area/inactive_modal_pane_fade": T.IMAGE - content_area: T.INPUT_PANEL - "content_area/preview_skin": T.PANEL - "content_area/inactive_modal_pane_fade": T.IMAGE - section_divider: T.IMAGE + "banner_fill": T.IMAGE, + "title_label": T.LABEL, + "label": T.LABEL, + "chevron_image": T.IMAGE, + "bumper_image": T.IMAGE, + "undo_image": T.IMAGE, + "plus_icon": T.IMAGE, + "direction_button_panel": T.PANEL, + "direction_button_panel/chevron_image": T.IMAGE, + "direction_button_panel/bumper_image": T.IMAGE, + "cycle_pack_button": T.BUTTON, + "cycle_pack_left_button": T.BUTTON, + "cycle_pack_right_button": T.BUTTON, + "skin_button": T.BUTTON, + "skin_button/hover": T.IMAGE, + "skin_button/pressed": T.IMAGE, + "skin_rotation_arrows": T.IMAGE, + "skin_viewer_panel": T.INPUT_PANEL, + "skin_viewer_panel/custom_skin_button": T.BUTTON, + "skin_viewer_panel/skin_model_panel": T.PANEL, + "skin_viewer_panel/skin_model_panel/skin_model": T.CUSTOM, + "skin_viewer_panel/lock": T.IMAGE, + "undo_skin_button": T.BUTTON, + "accept_skin_button": T.BUTTON, + "stack_item": T.PANEL, + "accept_skin_panel": T.STACK_PANEL, + "accept_skin_panel/stack_item_0": T.PANEL, + "accept_skin_panel/stack_item_0/undo_btn": T.BUTTON, + "accept_skin_panel/stack_item_1": T.PANEL, + "accept_skin_panel/stack_item_1/accept_button": T.BUTTON, + "appearance_status_image_panel": T.PANEL, + "appearance_status_image_panel/limited_status_image": T.IMAGE, + "appearance_status_image_panel/no_restrictions_status_image": T.IMAGE, + "appearance_status_content": T.STACK_PANEL, + "appearance_status_content/appearance_status_image_panel": T.PANEL, + "appearance_status_content/padding": T.PANEL, + "appearance_status_content/appearance_status_label_panel": T.PANEL, + "appearance_status_content/appearance_status_label_panel/appearance_status_label": T.LABEL, + "preview_skin_panel": T.PANEL, + "preview_skin_panel/preview": T.INPUT_PANEL, + "preview_skin_panel/button_frame": T.STACK_PANEL, + "preview_skin_panel/button_frame/stack_item_0": T.PANEL, + "preview_skin_panel/button_frame/stack_item_0/rotation": T.IMAGE, + "preview_skin_panel/button_frame/padding": T.PANEL, + "preview_skin_panel/button_frame/notification_and_accept_input_panel": T.INPUT_PANEL, + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack": T.STACK_PANEL, + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/skin_status_notification_section": T.PANEL, + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/skin_status_notification_section/appearance_status_notification_panel": T.BUTTON, + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1": T.PANEL, + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1/accept": T.STACK_PANEL, + "skin_model": T.CUSTOM, + "premium_skin_button": T.BUTTON, + "skin_lock": T.IMAGE, + "new_pack_icon": T.PANEL, + "new_pack_icon/icon": T.IMAGE, + "pack_lock": T.PANEL, + "pack_lock/locked": T.IMAGE, + "pack_lock/unlocked": T.IMAGE, + "skin_input_panel": T.INPUT_PANEL, + "skin_input_panel/sg": T.GRID, + "skins_grid_item": T.PANEL, + "skins_grid_item/clip": T.PANEL, + "skins_grid_item/clip/model": T.CUSTOM, + "skins_grid_item/lock": T.IMAGE, + "skins_grid_item/button": T.BUTTON, + "skins_grid": T.GRID, + "pack_name": T.LABEL, + "pack_grid_item": T.PANEL, + "pack_grid_item/header": T.STACK_PANEL, + "pack_grid_item/header/padding": T.PANEL, + "pack_grid_item/header/pack_lock": T.PANEL, + "pack_grid_item/header/pack_name": T.LABEL, + "pack_grid_item/header/padding_2": T.PANEL, + "pack_grid_item/header/new_pack_icon": T.PANEL, + "pack_grid_item/header/padding_3": T.PANEL, + "pack_grid_item/bg": T.IMAGE, + "pack_grid_item/bg/skin_input_panel": T.INPUT_PANEL, + "pack_grid_item/bg/expand_view_button": T.BUTTON, + "pack_grid_item/bg/progress_loading_no_connection": T.PANEL, + "pack_grid_item/bg/progress_loading": T.PANEL, + "premium_packs_grid": T.GRID, + "standard_skin_button": T.BUTTON, + "default_skins_grid_item": T.PANEL, + "default_skins_grid_item/model": T.CUSTOM, + "default_skins_grid_item/button": T.BUTTON, + "default_skins_grid": T.GRID, + "recent_skins_grid_item": T.PANEL, + "recent_skins_grid_item/clip": T.PANEL, + "recent_skins_grid_item/clip/model": T.CUSTOM, + "recent_skins_grid_item/button": T.BUTTON, + "recent_skins_grid": T.GRID, + "standard_frame": T.PANEL, + "standard_header": T.LABEL, + "standard_fill": T.IMAGE, + "standard_panel": T.PANEL, + "standard_panel/default_skins": T.PANEL, + "standard_panel/default_skins/header": T.LABEL, + "standard_panel/default_skins/fill": T.IMAGE, + "standard_panel/default_skins/fill/default_skins_grid": T.GRID, + "standard_panel/recent_skins": T.PANEL, + "standard_panel/recent_skins/header": T.LABEL, + "standard_panel/recent_skins/fill": T.IMAGE, + "standard_panel/recent_skins/fill/recent_skins_grid": T.GRID, + "standard_panel/recent_skins/fill/recent_skins_loading_panel": T.PANEL, + "scrolling_content_stack": T.STACK_PANEL, + "scrolling_content_stack/standard_panel": T.PANEL, + "scrolling_content_stack/premium_packs_grid": T.GRID, + "all_skins_content": T.INPUT_PANEL, + "all_skins_content/scrolling_frame": T.PANEL, + "all_skins_content/scrolling_frame/change_skin_scroll": T.PANEL, + "all_skins_content/scrolling_frame/progress_loading": T.PANEL, + "all_skins_frame": T.PANEL, + "all_skins_frame/all_skins_content": T.INPUT_PANEL, + "title_bar": T.STACK_PANEL, + "title_bar/padding_0": T.PANEL, + "title_bar/fill_panel": T.PANEL, + "title_bar/fill_panel/title_holder": T.PANEL, + "title_bar/fill_panel/title_holder/change_skin_title": T.LABEL, + "title_bar/padding_1": T.PANEL, + "title_bar/skin_name_holder": T.PANEL, + "title_bar/skin_name_holder/preview_skin_name": T.LABEL, + "title_bar/padding_2": T.PANEL, + "popup_dialog_skin_model": T.PANEL, + "popup_dialog_skin_model/paper_doll": T.CUSTOM, + "popup_dialog_choose_skin_type_button": T.BUTTON, + "popup_dialog_choose_skin_type_button/hover": T.IMAGE, + "popup_dialog_choose_skin_type_button/pressed": T.IMAGE, + "popup_dialog_choose_skin_type_panel": T.PANEL, + "popup_dialog_choose_skin_type_panel/model": T.PANEL, + "popup_dialog_choose_skin_type_panel/button_highlight": T.BUTTON, + "popup_dialog__invalid_custom_skin": T.INPUT_PANEL, + "popup_dialog__invalid_custom_skin/popup_dialog_bg": T.IMAGE, + "popup_dialog__invalid_custom_skin/popup_dialog_message": T.LABEL, + "popup_dialog__invalid_custom_skin/popup_dialog_middle_button": T.BUTTON, + "popup_dialog__upsell_without_store": T.INPUT_PANEL, + "popup_dialog__choose_skin_type": T.INPUT_PANEL, + "popup_dialog__choose_skin_type/popup_dialog_bg": T.IMAGE, + "popup_dialog__choose_skin_type/popup_dialog_message": T.LABEL, + "popup_dialog__choose_skin_type/left": T.PANEL, + "popup_dialog__choose_skin_type/right": T.PANEL, + "content": T.PANEL, + "content/title": T.STACK_PANEL, + "content/selector_area": T.INPUT_PANEL, + "content/content_area": T.INPUT_PANEL, + "content/section_divider": T.IMAGE, + "skin_picker_screen": T.SCREEN, + "skin_picker_screen_content": T.PANEL, + "skin_picker_screen_content/bg": T.STACK_PANEL, + "skin_picker_screen_content/container": T.PANEL, + "skin_picker_screen_content/container/content": T.PANEL, + "skin_picker_screen_content/popup_dialog_factory": T.FACTORY, + "scrollable_selector_area_content": T.PANEL, + "selector_area": T.INPUT_PANEL, + "selector_area/all_skins": T.PANEL, + "selector_area/inactive_modal_pane_fade": T.IMAGE, + "content_area": T.INPUT_PANEL, + "content_area/preview_skin": T.PANEL, + "content_area/inactive_modal_pane_fade": T.IMAGE, + "section_divider": T.IMAGE, } export type SmithingTableType = { - smithing_image: T.IMAGE - ingot_image: T.IMAGE - smithing_icon: T.IMAGE - upgrade_label: T.LABEL - icon_and_text_panel: T.PANEL - "icon_and_text_panel/smithing_icon_panel": T.PANEL - "icon_and_text_panel/upgrade_label": T.LABEL - smithing_icon_panel: T.PANEL - "smithing_icon_panel/smithing_icon": T.IMAGE - plus_sign_icon: T.IMAGE - arrow_icon: T.IMAGE - cross_out_icon: T.IMAGE - smithing_table_output_slot_button: T.BUTTON - smithing_table_item_slot: T.PANEL - "smithing_table_item_slot/container_item": T.INPUT_PANEL - recipe_grid: T.GRID - "recipe_grid/input_item_slot": T.PANEL - "recipe_grid/plus": T.PANEL - "recipe_grid/plus/plus_sign_icon": T.IMAGE - "recipe_grid/material_item_slot": T.PANEL - "recipe_grid/yields": T.PANEL - "recipe_grid/yields/arrow_icon": T.IMAGE - "recipe_grid/yields/cross_out_icon": T.IMAGE - "recipe_grid/result_item_slot": T.PANEL - recipe_panel: T.PANEL - "recipe_panel/recipe_grid": T.GRID - top_half_panel: T.PANEL - "top_half_panel/icon_and_text_panel": T.PANEL - "top_half_panel/recipe_panel": T.PANEL - smithing_table_panel: T.PANEL - "smithing_table_panel/container_gamepad_helpers": T.STACK_PANEL - "smithing_table_panel/selected_item_details_factory": T.FACTORY - "smithing_table_panel/item_lock_notification_factory": T.FACTORY - "smithing_table_panel/root_panel": T.INPUT_PANEL - "smithing_table_panel/root_panel/common_panel": T.PANEL - "smithing_table_panel/root_panel/smithing_table_screen_inventory": T.PANEL - "smithing_table_panel/root_panel/smithing_table_screen_inventory/top_half_panel": T.PANEL - "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL - "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid": T.GRID - "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button": T.BUTTON - "smithing_table_panel/root_panel/inventory_selected_icon_button": T.BUTTON - "smithing_table_panel/root_panel/gamepad_cursor": T.BUTTON - "smithing_table_panel/flying_item_renderer": T.CUSTOM - smithing_table_screen: T.SCREEN + "smithing_image": T.IMAGE, + "ingot_image": T.IMAGE, + "smithing_icon": T.IMAGE, + "upgrade_label": T.LABEL, + "icon_and_text_panel": T.PANEL, + "icon_and_text_panel/smithing_icon_panel": T.PANEL, + "icon_and_text_panel/upgrade_label": T.LABEL, + "smithing_icon_panel": T.PANEL, + "smithing_icon_panel/smithing_icon": T.IMAGE, + "plus_sign_icon": T.IMAGE, + "arrow_icon": T.IMAGE, + "cross_out_icon": T.IMAGE, + "smithing_table_output_slot_button": T.BUTTON, + "smithing_table_item_slot": T.PANEL, + "smithing_table_item_slot/container_item": T.INPUT_PANEL, + "recipe_grid": T.GRID, + "recipe_grid/input_item_slot": T.PANEL, + "recipe_grid/plus": T.PANEL, + "recipe_grid/plus/plus_sign_icon": T.IMAGE, + "recipe_grid/material_item_slot": T.PANEL, + "recipe_grid/yields": T.PANEL, + "recipe_grid/yields/arrow_icon": T.IMAGE, + "recipe_grid/yields/cross_out_icon": T.IMAGE, + "recipe_grid/result_item_slot": T.PANEL, + "recipe_panel": T.PANEL, + "recipe_panel/recipe_grid": T.GRID, + "top_half_panel": T.PANEL, + "top_half_panel/icon_and_text_panel": T.PANEL, + "top_half_panel/recipe_panel": T.PANEL, + "smithing_table_panel": T.PANEL, + "smithing_table_panel/container_gamepad_helpers": T.STACK_PANEL, + "smithing_table_panel/selected_item_details_factory": T.FACTORY, + "smithing_table_panel/item_lock_notification_factory": T.FACTORY, + "smithing_table_panel/root_panel": T.INPUT_PANEL, + "smithing_table_panel/root_panel/common_panel": T.PANEL, + "smithing_table_panel/root_panel/smithing_table_screen_inventory": T.PANEL, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/top_half_panel": T.PANEL, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid": T.GRID, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button": T.BUTTON, + "smithing_table_panel/root_panel/inventory_selected_icon_button": T.BUTTON, + "smithing_table_panel/root_panel/gamepad_cursor": T.BUTTON, + "smithing_table_panel/flying_item_renderer": T.CUSTOM, + "smithing_table_screen": T.SCREEN, } export type SmithingTable2Type = { - smithing_icon: T.IMAGE - upgrade_label: T.LABEL - icon_and_text_panel: T.PANEL - "icon_and_text_panel/smithing_icon_panel": T.PANEL - "icon_and_text_panel/upgrade_label": T.LABEL - smithing_icon_panel: T.PANEL - "smithing_icon_panel/smithing_icon": T.IMAGE - smithing_image: T.IMAGE - smithing_material_image_ingot: T.IMAGE - arrow_icon: T.IMAGE - cross_out_icon_image: T.IMAGE - cross_out_icon_button: T.BUTTON - "cross_out_icon_button/default": T.IMAGE - "cross_out_icon_button/hover": T.CUSTOM - smithing_input_image_templates: T.IMAGE - smithing_input_image_armors: T.IMAGE - smithing_input_image_armors_and_tools: T.IMAGE - smithing_material_image_all: T.IMAGE - template_overlay_image: T.PANEL - "template_overlay_image/templates": T.IMAGE - input_overlay_image: T.PANEL - "input_overlay_image/armors_and_tools": T.IMAGE - "input_overlay_image/armors": T.IMAGE - material_overlay_image: T.PANEL - "material_overlay_image/all_materials": T.IMAGE - "material_overlay_image/ingot": T.IMAGE - smithing_table_output_slot_button: T.BUTTON - smithing_table_item_slot: T.PANEL - "smithing_table_item_slot/container_item": T.INPUT_PANEL - recipe_grid: T.GRID - "recipe_grid/template_item_slot": T.PANEL - "recipe_grid/input_item_slot": T.PANEL - "recipe_grid/material_item_slot": T.PANEL - "recipe_grid/yields": T.PANEL - "recipe_grid/yields/arrow_icon": T.IMAGE - "recipe_grid/yields/cross_out_icon": T.BUTTON - "recipe_grid/result_item_slot": T.PANEL - "recipe_grid/result_item_preview": T.PANEL - recipe_panel: T.PANEL - "recipe_panel/recipe_grid": T.GRID - result_item_preview: T.PANEL - "result_item_preview/inner": T.PANEL - result_item_preview_inner: T.PANEL - "result_item_preview_inner/smithing_preview_renderer": T.CUSTOM - toolbar_background: T.IMAGE - help_button: T.BUTTON - toolbar_panel: T.INPUT_PANEL - "toolbar_panel/toolbar_background": T.IMAGE - "toolbar_panel/toolbar_background/toolbar_stack_panel": T.STACK_PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": T.BUTTON - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": T.BUTTON - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": T.PANEL - toolbar_anchor: T.PANEL - "toolbar_anchor/toolbar_panel": T.INPUT_PANEL - top_half_panel: T.PANEL - "top_half_panel/icon_and_text_panel": T.PANEL - "top_half_panel/recipe_panel": T.PANEL - smithing_table_panel: T.PANEL - "smithing_table_panel/container_gamepad_helpers": T.STACK_PANEL - "smithing_table_panel/selected_item_details_factory": T.FACTORY - "smithing_table_panel/item_lock_notification_factory": T.FACTORY - "smithing_table_panel/root_panel": T.INPUT_PANEL - "smithing_table_panel/root_panel/common_panel": T.PANEL - "smithing_table_panel/root_panel/smithing_table_screen_inventory": T.PANEL - "smithing_table_panel/root_panel/smithing_table_screen_inventory/top_half_panel": T.PANEL - "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL - "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid": T.GRID - "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button": T.BUTTON - "smithing_table_panel/root_panel/inventory_selected_icon_button": T.BUTTON - "smithing_table_panel/root_panel/toolbar_anchor": T.PANEL - "smithing_table_panel/root_panel/gamepad_cursor": T.BUTTON - "smithing_table_panel/flying_item_renderer": T.CUSTOM + "smithing_icon": T.IMAGE, + "upgrade_label": T.LABEL, + "icon_and_text_panel": T.PANEL, + "icon_and_text_panel/smithing_icon_panel": T.PANEL, + "icon_and_text_panel/upgrade_label": T.LABEL, + "smithing_icon_panel": T.PANEL, + "smithing_icon_panel/smithing_icon": T.IMAGE, + "smithing_image": T.IMAGE, + "smithing_material_image_ingot": T.IMAGE, + "arrow_icon": T.IMAGE, + "cross_out_icon_image": T.IMAGE, + "cross_out_icon_button": T.BUTTON, + "cross_out_icon_button/default": T.IMAGE, + "cross_out_icon_button/hover": T.CUSTOM, + "smithing_input_image_templates": T.IMAGE, + "smithing_input_image_armors": T.IMAGE, + "smithing_input_image_armors_and_tools": T.IMAGE, + "smithing_material_image_all": T.IMAGE, + "template_overlay_image": T.PANEL, + "template_overlay_image/templates": T.IMAGE, + "input_overlay_image": T.PANEL, + "input_overlay_image/armors_and_tools": T.IMAGE, + "input_overlay_image/armors": T.IMAGE, + "material_overlay_image": T.PANEL, + "material_overlay_image/all_materials": T.IMAGE, + "material_overlay_image/ingot": T.IMAGE, + "smithing_table_output_slot_button": T.BUTTON, + "smithing_table_item_slot": T.PANEL, + "smithing_table_item_slot/container_item": T.INPUT_PANEL, + "recipe_grid": T.GRID, + "recipe_grid/template_item_slot": T.PANEL, + "recipe_grid/input_item_slot": T.PANEL, + "recipe_grid/material_item_slot": T.PANEL, + "recipe_grid/yields": T.PANEL, + "recipe_grid/yields/arrow_icon": T.IMAGE, + "recipe_grid/yields/cross_out_icon": T.BUTTON, + "recipe_grid/result_item_slot": T.PANEL, + "recipe_grid/result_item_preview": T.PANEL, + "recipe_panel": T.PANEL, + "recipe_panel/recipe_grid": T.GRID, + "result_item_preview": T.PANEL, + "result_item_preview/inner": T.PANEL, + "result_item_preview_inner": T.PANEL, + "result_item_preview_inner/smithing_preview_renderer": T.CUSTOM, + "toolbar_background": T.IMAGE, + "help_button": T.BUTTON, + "toolbar_panel": T.INPUT_PANEL, + "toolbar_panel/toolbar_background": T.IMAGE, + "toolbar_panel/toolbar_background/toolbar_stack_panel": T.STACK_PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": T.BUTTON, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": T.BUTTON, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": T.PANEL, + "toolbar_anchor": T.PANEL, + "toolbar_anchor/toolbar_panel": T.INPUT_PANEL, + "top_half_panel": T.PANEL, + "top_half_panel/icon_and_text_panel": T.PANEL, + "top_half_panel/recipe_panel": T.PANEL, + "smithing_table_panel": T.PANEL, + "smithing_table_panel/container_gamepad_helpers": T.STACK_PANEL, + "smithing_table_panel/selected_item_details_factory": T.FACTORY, + "smithing_table_panel/item_lock_notification_factory": T.FACTORY, + "smithing_table_panel/root_panel": T.INPUT_PANEL, + "smithing_table_panel/root_panel/common_panel": T.PANEL, + "smithing_table_panel/root_panel/smithing_table_screen_inventory": T.PANEL, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/top_half_panel": T.PANEL, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid": T.GRID, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button": T.BUTTON, + "smithing_table_panel/root_panel/inventory_selected_icon_button": T.BUTTON, + "smithing_table_panel/root_panel/toolbar_anchor": T.PANEL, + "smithing_table_panel/root_panel/gamepad_cursor": T.BUTTON, + "smithing_table_panel/flying_item_renderer": T.CUSTOM, } export type SmithingTablePocketType = { - ingot_image: T.IMAGE - background_image: T.IMAGE - arrow_icon: T.IMAGE - smithing_icon: T.IMAGE - upgrade_label: T.LABEL - smithing_icon_panel: T.PANEL - "smithing_icon_panel/smithing_icon": T.IMAGE - smithing_table_title_and_text_panel: T.PANEL - "smithing_table_title_and_text_panel/smithing_icon_panel": T.PANEL - "smithing_table_title_and_text_panel/upgrade_label": T.LABEL - slots_panel: T.PANEL - "slots_panel/input_slot": T.INPUT_PANEL - "slots_panel/material_slot": T.INPUT_PANEL - "slots_panel/result_slot": T.INPUT_PANEL - "slots_panel/plus_sign": T.LABEL - "slots_panel/arrow": T.IMAGE - "slots_panel/arrow/cross_out": T.IMAGE - smithing_table_contents_panel: T.STACK_PANEL - "smithing_table_contents_panel/smithing_table_title_and_text_panel": T.PANEL - "smithing_table_contents_panel/slots_panel": T.PANEL - inventory_grid: T.GRID - inventory_content: T.PANEL - "inventory_content/scrolling_panel": T.PANEL - inventory_and_smithing_table_panel: T.PANEL - "inventory_and_smithing_table_panel/inventory_half_screen": T.PANEL - "inventory_and_smithing_table_panel/inventory_half_screen/inventory_content": T.PANEL - "inventory_and_smithing_table_panel/smithing_half_screen": T.PANEL - "inventory_and_smithing_table_panel/smithing_half_screen/smithing_table_content": T.STACK_PANEL - header: T.PANEL - "header/header_background": T.IMAGE - "header/close_button": T.BUTTON - "header/panel": T.PANEL - "header/panel/title_label": T.LABEL - header_and_content_stack_panel: T.STACK_PANEL - "header_and_content_stack_panel/header": T.PANEL - "header_and_content_stack_panel/inventory_and_smithing_table_panel": T.PANEL - smithing_table_panel: T.PANEL - "smithing_table_panel/bg": T.IMAGE - "smithing_table_panel/root_panel": T.INPUT_PANEL - "smithing_table_panel/header_and_content_stack_panel": T.STACK_PANEL - "smithing_table_panel/container_gamepad_helpers": T.STACK_PANEL - "smithing_table_panel/inventory_selected_icon_button": T.BUTTON - "smithing_table_panel/hold_icon": T.BUTTON - "smithing_table_panel/selected_item_details_factory": T.FACTORY - "smithing_table_panel/item_lock_notification_factory": T.FACTORY - "smithing_table_panel/flying_item_renderer": T.CUSTOM + "ingot_image": T.IMAGE, + "background_image": T.IMAGE, + "arrow_icon": T.IMAGE, + "smithing_icon": T.IMAGE, + "upgrade_label": T.LABEL, + "smithing_icon_panel": T.PANEL, + "smithing_icon_panel/smithing_icon": T.IMAGE, + "smithing_table_title_and_text_panel": T.PANEL, + "smithing_table_title_and_text_panel/smithing_icon_panel": T.PANEL, + "smithing_table_title_and_text_panel/upgrade_label": T.LABEL, + "slots_panel": T.PANEL, + "slots_panel/input_slot": T.INPUT_PANEL, + "slots_panel/material_slot": T.INPUT_PANEL, + "slots_panel/result_slot": T.INPUT_PANEL, + "slots_panel/plus_sign": T.LABEL, + "slots_panel/arrow": T.IMAGE, + "slots_panel/arrow/cross_out": T.IMAGE, + "smithing_table_contents_panel": T.STACK_PANEL, + "smithing_table_contents_panel/smithing_table_title_and_text_panel": T.PANEL, + "smithing_table_contents_panel/slots_panel": T.PANEL, + "inventory_grid": T.GRID, + "inventory_content": T.PANEL, + "inventory_content/scrolling_panel": T.PANEL, + "inventory_and_smithing_table_panel": T.PANEL, + "inventory_and_smithing_table_panel/inventory_half_screen": T.PANEL, + "inventory_and_smithing_table_panel/inventory_half_screen/inventory_content": T.PANEL, + "inventory_and_smithing_table_panel/smithing_half_screen": T.PANEL, + "inventory_and_smithing_table_panel/smithing_half_screen/smithing_table_content": T.STACK_PANEL, + "header": T.PANEL, + "header/header_background": T.IMAGE, + "header/close_button": T.BUTTON, + "header/panel": T.PANEL, + "header/panel/title_label": T.LABEL, + "header_and_content_stack_panel": T.STACK_PANEL, + "header_and_content_stack_panel/header": T.PANEL, + "header_and_content_stack_panel/inventory_and_smithing_table_panel": T.PANEL, + "smithing_table_panel": T.PANEL, + "smithing_table_panel/bg": T.IMAGE, + "smithing_table_panel/root_panel": T.INPUT_PANEL, + "smithing_table_panel/header_and_content_stack_panel": T.STACK_PANEL, + "smithing_table_panel/container_gamepad_helpers": T.STACK_PANEL, + "smithing_table_panel/inventory_selected_icon_button": T.BUTTON, + "smithing_table_panel/hold_icon": T.BUTTON, + "smithing_table_panel/selected_item_details_factory": T.FACTORY, + "smithing_table_panel/item_lock_notification_factory": T.FACTORY, + "smithing_table_panel/flying_item_renderer": T.CUSTOM, } export type SmithingTable2PocketType = { - smithing_table_item_renderer: T.CUSTOM - smithing_image: T.IMAGE - smithing_material_image_ingot: T.IMAGE - background_image: T.IMAGE - smithing_input_image_templates: T.IMAGE - smithing_material_image_all: T.IMAGE - smithing_input_image_armors: T.IMAGE - smithing_input_image_armors_and_tools: T.IMAGE - template_overlay_image: T.PANEL - "template_overlay_image/templates": T.IMAGE - input_overlay_image: T.PANEL - "input_overlay_image/armors_and_tools": T.IMAGE - "input_overlay_image/armors": T.IMAGE - material_overlay_image: T.PANEL - "material_overlay_image/ingot": T.IMAGE - "material_overlay_image/all_materials": T.IMAGE - arrow_icon: T.IMAGE - smithing_icon: T.IMAGE - upgrade_label: T.LABEL - slot_grid_item: T.PANEL - "slot_grid_item/slot": T.INPUT_PANEL - template_slot: T.PANEL - input_slot: T.PANEL - material_slot: T.PANEL - inputs_stack: T.STACK_PANEL - "inputs_stack/template_slot": T.PANEL - "inputs_stack/padding1": T.PANEL - "inputs_stack/input_slot": T.PANEL - "inputs_stack/padding2": T.PANEL - "inputs_stack/material_slot": T.PANEL - inputs_panel: T.PANEL - "inputs_panel/inputs_stack": T.STACK_PANEL - result_slot: T.PANEL - cross_out_image: T.IMAGE - cross_out_icon: T.BUTTON - "cross_out_icon/default": T.IMAGE - "cross_out_icon/hover": T.CUSTOM - crafting_arrow: T.IMAGE - "crafting_arrow/cross_out": T.BUTTON - crafting_arrow_grid_item: T.PANEL - "crafting_arrow_grid_item/crafting_arrow": T.IMAGE - result_item_preview: T.PANEL - "result_item_preview/smithing_preview_renderer": T.CUSTOM - result_item_preview_grid_item: T.PANEL - "result_item_preview_grid_item/result_preview": T.PANEL - smithing_table_contents_panel: T.GRID - "smithing_table_contents_panel/label_holder": T.PANEL - "smithing_table_contents_panel/label_holder/title_label": T.LABEL - "smithing_table_contents_panel/inputs": T.PANEL - "smithing_table_contents_panel/result_slot": T.PANEL - "smithing_table_contents_panel/crafting_arrow": T.PANEL - "smithing_table_contents_panel/result_item_preview": T.PANEL - chest_item_renderer: T.CUSTOM - left_tab_inventory: T.PANEL - left_navigation_tabs: T.STACK_PANEL - "left_navigation_tabs/left_tab_inventory": T.PANEL - inventory_scroll_panel: T.PANEL - left_panel: T.STACK_PANEL - "left_panel/gamepad_helpers_and_tabs_holder": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": T.STACK_PANEL - "left_panel/content": T.INPUT_PANEL - "left_panel/content/bg": T.PANEL - "left_panel/content/inventory_scroll_panel": T.PANEL - right_tab_smithing_table: T.PANEL - right_navigation_tabs: T.STACK_PANEL - "right_navigation_tabs/pocket_tab_close_and_help_button": T.IMAGE - "right_navigation_tabs/fill": T.PANEL - "right_navigation_tabs/right_tab_smithing_table": T.PANEL - right_panel: T.STACK_PANEL - "right_panel/content": T.INPUT_PANEL - "right_panel/content/bg": T.PANEL - "right_panel/content/smithing_content_stack_panel": T.GRID - "right_panel/navigation_tabs_holder": T.PANEL - "right_panel/navigation_tabs_holder/right_navigation_tabs": T.STACK_PANEL - pocket_hotbar_and_content_panels: T.STACK_PANEL - smithing_table_panel: T.PANEL - "smithing_table_panel/pocket_hotbar_and_content_panels": T.STACK_PANEL - "smithing_table_panel/container_gamepad_helpers": T.STACK_PANEL - "smithing_table_panel/selected_item_details_factory": T.FACTORY - "smithing_table_panel/item_lock_notification_factory": T.FACTORY - "smithing_table_panel/inventory_selected_icon_button": T.BUTTON - "smithing_table_panel/inventory_take_progress_icon_button": T.BUTTON - "smithing_table_panel/flying_item_renderer": T.CUSTOM + "smithing_table_item_renderer": T.CUSTOM, + "smithing_image": T.IMAGE, + "smithing_material_image_ingot": T.IMAGE, + "background_image": T.IMAGE, + "smithing_input_image_templates": T.IMAGE, + "smithing_material_image_all": T.IMAGE, + "smithing_input_image_armors": T.IMAGE, + "smithing_input_image_armors_and_tools": T.IMAGE, + "template_overlay_image": T.PANEL, + "template_overlay_image/templates": T.IMAGE, + "input_overlay_image": T.PANEL, + "input_overlay_image/armors_and_tools": T.IMAGE, + "input_overlay_image/armors": T.IMAGE, + "material_overlay_image": T.PANEL, + "material_overlay_image/ingot": T.IMAGE, + "material_overlay_image/all_materials": T.IMAGE, + "arrow_icon": T.IMAGE, + "smithing_icon": T.IMAGE, + "upgrade_label": T.LABEL, + "slot_grid_item": T.PANEL, + "slot_grid_item/slot": T.INPUT_PANEL, + "template_slot": T.PANEL, + "input_slot": T.PANEL, + "material_slot": T.PANEL, + "inputs_stack": T.STACK_PANEL, + "inputs_stack/template_slot": T.PANEL, + "inputs_stack/padding1": T.PANEL, + "inputs_stack/input_slot": T.PANEL, + "inputs_stack/padding2": T.PANEL, + "inputs_stack/material_slot": T.PANEL, + "inputs_panel": T.PANEL, + "inputs_panel/inputs_stack": T.STACK_PANEL, + "result_slot": T.PANEL, + "cross_out_image": T.IMAGE, + "cross_out_icon": T.BUTTON, + "cross_out_icon/default": T.IMAGE, + "cross_out_icon/hover": T.CUSTOM, + "crafting_arrow": T.IMAGE, + "crafting_arrow/cross_out": T.BUTTON, + "crafting_arrow_grid_item": T.PANEL, + "crafting_arrow_grid_item/crafting_arrow": T.IMAGE, + "result_item_preview": T.PANEL, + "result_item_preview/smithing_preview_renderer": T.CUSTOM, + "result_item_preview_grid_item": T.PANEL, + "result_item_preview_grid_item/result_preview": T.PANEL, + "smithing_table_contents_panel": T.GRID, + "smithing_table_contents_panel/label_holder": T.PANEL, + "smithing_table_contents_panel/label_holder/title_label": T.LABEL, + "smithing_table_contents_panel/inputs": T.PANEL, + "smithing_table_contents_panel/result_slot": T.PANEL, + "smithing_table_contents_panel/crafting_arrow": T.PANEL, + "smithing_table_contents_panel/result_item_preview": T.PANEL, + "chest_item_renderer": T.CUSTOM, + "left_tab_inventory": T.PANEL, + "left_navigation_tabs": T.STACK_PANEL, + "left_navigation_tabs/left_tab_inventory": T.PANEL, + "inventory_scroll_panel": T.PANEL, + "left_panel": T.STACK_PANEL, + "left_panel/gamepad_helpers_and_tabs_holder": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": T.STACK_PANEL, + "left_panel/content": T.INPUT_PANEL, + "left_panel/content/bg": T.PANEL, + "left_panel/content/inventory_scroll_panel": T.PANEL, + "right_tab_smithing_table": T.PANEL, + "right_navigation_tabs": T.STACK_PANEL, + "right_navigation_tabs/pocket_tab_close_and_help_button": T.IMAGE, + "right_navigation_tabs/fill": T.PANEL, + "right_navigation_tabs/right_tab_smithing_table": T.PANEL, + "right_panel": T.STACK_PANEL, + "right_panel/content": T.INPUT_PANEL, + "right_panel/content/bg": T.PANEL, + "right_panel/content/smithing_content_stack_panel": T.GRID, + "right_panel/navigation_tabs_holder": T.PANEL, + "right_panel/navigation_tabs_holder/right_navigation_tabs": T.STACK_PANEL, + "pocket_hotbar_and_content_panels": T.STACK_PANEL, + "smithing_table_panel": T.PANEL, + "smithing_table_panel/pocket_hotbar_and_content_panels": T.STACK_PANEL, + "smithing_table_panel/container_gamepad_helpers": T.STACK_PANEL, + "smithing_table_panel/selected_item_details_factory": T.FACTORY, + "smithing_table_panel/item_lock_notification_factory": T.FACTORY, + "smithing_table_panel/inventory_selected_icon_button": T.BUTTON, + "smithing_table_panel/inventory_take_progress_icon_button": T.BUTTON, + "smithing_table_panel/flying_item_renderer": T.CUSTOM, } export type SmokerType = { - smoker_screen: T.SCREEN + "smoker_screen": T.SCREEN, } export type StartType = { - achievements_icon: T.IMAGE - inbox_bell_animated_icon: T.IMAGE - inbox_icon: T.IMAGE - unread_notification_icon: T.IMAGE - feedback_icon: T.IMAGE - feedback_icon_edu: T.IMAGE - Xbox_icon: T.IMAGE - change_skin_icon: T.IMAGE - manage_accounts_icon: T.IMAGE - new_offers_icon: T.IMAGE - edu_ai_lesson_crafter_button_content: T.STACK_PANEL - "edu_ai_lesson_crafter_button_content/padded_label": T.PANEL - "edu_ai_lesson_crafter_button_content/padded_label/label": T.LABEL - "edu_ai_lesson_crafter_button_content/padded_icon": T.PANEL - "edu_ai_lesson_crafter_button_content/padded_icon/icon": T.IMAGE - preview_tag: T.IMAGE - "preview_tag/preview_label": T.LABEL - update_prompt_icon: T.IMAGE - marketplace_error_icon: T.IMAGE - sale_ribbon_icon: T.IMAGE - alex_icon: T.IMAGE - gamerpic: T.CUSTOM - copyright: T.PANEL - "copyright/label": T.LABEL - "copyright/label_background": T.IMAGE - development_version: T.PANEL - "development_version/label": T.LABEL - "development_version/label_background": T.IMAGE - version: T.PANEL - "version/label": T.LABEL - "version/label_background": T.IMAGE - trial_info: T.PANEL - "trial_info/trial_label": T.LABEL - "trial_info/label_background": T.IMAGE - text_panel: T.PANEL - "text_panel/copyright": T.PANEL - "text_panel/development_version": T.PANEL - "text_panel/version": T.PANEL - skin_or_profile_panel: T.PANEL - "skin_or_profile_panel/change_skin": T.BUTTON - "skin_or_profile_panel/change_skin_button_demo": T.BUTTON - "skin_or_profile_panel/dressing_room_button": T.BUTTON - "skin_or_profile_panel/switch_accounts": T.BUTTON - "skin_or_profile_panel/profile_button": T.BUTTON - change_skin_button: T.BUTTON - change_skin_button_demo: T.BUTTON - switch_accounts_button: T.BUTTON - dressing_room_button: T.BUTTON - profile_button_content: T.STACK_PANEL - "profile_button_content/gamerpic_offset_wrapper": T.PANEL - "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border": T.PANEL - "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic": T.CUSTOM - "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon": T.IMAGE - "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black": T.IMAGE - "profile_button_content/padding_middle": T.PANEL - "profile_button_content/vertically_central_text": T.STACK_PANEL - "profile_button_content/vertically_central_text/top_padding": T.PANEL - "profile_button_content/vertically_central_text/profile_button_label": T.LABEL - "profile_button_content/padding_right": T.PANEL - profile_button: T.BUTTON - skin_viewer_panel: T.INPUT_PANEL - "skin_viewer_panel/paper_doll_panel": T.PANEL - "skin_viewer_panel/paper_doll_panel/paper_doll": T.CUSTOM - "skin_viewer_panel/paper_doll_panel/appearacne_loading_panel": T.PANEL - "skin_viewer_panel/paper_doll_name_tag": T.CUSTOM - skin_panel: T.PANEL - "skin_panel/change_profile_or_skin": T.PANEL - "skin_panel/viewer_panel": T.INPUT_PANEL - friendsdrawer_button_panel: T.PANEL - "friendsdrawer_button_panel/friendsdrawer_button": T.BUTTON - gathering_button: T.BUTTON - badge_and_caption_animated: T.STACK_PANEL - "badge_and_caption_animated/caption_and_padding": T.STACK_PANEL - "badge_and_caption_animated/caption_and_padding/pad": T.PANEL - "badge_and_caption_animated/caption_and_padding/caption": T.IMAGE - "badge_and_caption_animated/badge_and_padding": T.STACK_PANEL - "badge_and_caption_animated/badge_and_padding/badge": T.IMAGE - "badge_and_caption_animated/badge_and_padding/fill": T.PANEL - gathering_badge: T.IMAGE - badge_and_caption: T.STACK_PANEL - "badge_and_caption/caption_and_padding": T.STACK_PANEL - "badge_and_caption/caption_and_padding/pad": T.PANEL - "badge_and_caption/caption_and_padding/caption": T.IMAGE - "badge_and_caption/badge_and_padding": T.STACK_PANEL - "badge_and_caption/badge_and_padding/badge": T.IMAGE - "badge_and_caption/badge_and_padding/fill": T.PANEL - gathering_caption: T.IMAGE - "gathering_caption/countdown_text": T.LABEL - gathering_panel: T.STACK_PANEL - "gathering_panel/horizontal_panel": T.STACK_PANEL - "gathering_panel/horizontal_panel/pad": T.PANEL - "gathering_panel/horizontal_panel/inner_panel": T.STACK_PANEL - "gathering_panel/horizontal_panel/inner_panel/badge_and_caption": T.STACK_PANEL - "gathering_panel/horizontal_panel/inner_panel/badge_and_caption_animated": T.STACK_PANEL - "gathering_panel/horizontal_panel/inner_panel/gathering_button": T.BUTTON - "gathering_panel/bottom_pad": T.PANEL - edu_feedback_button: T.BUTTON - release_feedback_button: T.BUTTON - pre_release_feedback_button: T.BUTTON - feedback_button: T.PANEL - "feedback_button/edu_feedback_button": T.BUTTON - "feedback_button/release_feedback_button": T.BUTTON - "feedback_button/pre_release_feedback_button": T.BUTTON - achievements_button: T.BUTTON - achievements_icon_button: T.PANEL - "achievements_icon_button/achievements_button": T.BUTTON - inbox_button: T.BUTTON - inbox_button_unread_panel: T.PANEL - "inbox_button_unread_panel/background": T.IMAGE - inbox_icon_button: T.PANEL - "inbox_icon_button/inbox_button": T.BUTTON - "inbox_icon_button/inbox_button_unread_panel": T.PANEL - xbl_signin_button: T.BUTTON - platform_signin_button: T.BUTTON - column_frame: T.PANEL - educator_resources_button: T.BUTTON - upper_online_buttons_panel: T.STACK_PANEL - "upper_online_buttons_panel/top_pad": T.PANEL - "upper_online_buttons_panel/stacked_column": T.STACK_PANEL - "upper_online_buttons_panel/stacked_column/xbl_btn_padding": T.PANEL - "upper_online_buttons_panel/stacked_column/xbl_btn": T.PANEL - "upper_online_buttons_panel/stacked_column/xbl_btn/xbl_signin_button": T.BUTTON - "upper_online_buttons_panel/stacked_column/platform_signin_btn": T.PANEL - "upper_online_buttons_panel/stacked_column/platform_signin_btn/platform_signin_button": T.BUTTON - "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label": T.STACK_PANEL - "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border": T.PANEL - "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/gamerpic": T.CUSTOM - "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/border_white": T.IMAGE - "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/spacer": T.PANEL - "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel": T.PANEL - "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel/gamertag_label": T.LABEL - "upper_online_buttons_panel/bottom_pad": T.PANEL - lower_online_buttons_panel: T.STACK_PANEL - "lower_online_buttons_panel/stacked_column": T.STACK_PANEL - "lower_online_buttons_panel/stacked_column/feedback_padding": T.PANEL - "lower_online_buttons_panel/stacked_column/feedback_btn": T.PANEL - "lower_online_buttons_panel/stacked_column/feedback_btn/feedback_button": T.PANEL - "lower_online_buttons_panel/stacked_column/signingin": T.LABEL - "lower_online_buttons_panel/stacked_column/achievements_padding": T.PANEL - "lower_online_buttons_panel/stacked_column/achievements_btn": T.PANEL - "lower_online_buttons_panel/stacked_column/achievements_btn/achievements_icon_button": T.PANEL - "lower_online_buttons_panel/stacked_column/inbox_padding": T.PANEL - "lower_online_buttons_panel/stacked_column/inbox_btn": T.PANEL - "lower_online_buttons_panel/stacked_column/inbox_btn/inbox_icon_button": T.PANEL - "lower_online_buttons_panel/stacked_column/profile_btn_padding": T.PANEL - "lower_online_buttons_panel/stacked_column/profile_btn": T.PANEL - "lower_online_buttons_panel/stacked_column/profile_btn/profile_button": T.BUTTON - main_button: T.BUTTON - main_button_dark: T.BUTTON - main_content_button: T.BUTTON - main_button_gif: T.CUSTOM - main_button_banner: T.IMAGE - "main_button_banner/banner_label": T.LABEL - play_button: T.BUTTON - play_button_art: T.PANEL - "play_button_art/default_background": T.CUSTOM - "play_button_art/hover_background": T.CUSTOM - "play_button_art/label": T.LABEL - "play_button_art/default_foreground": T.CUSTOM - "play_button_art/hover_foreground": T.CUSTOM - play_button_stack: T.PANEL - "play_button_stack/play_button": T.BUTTON - "play_button_stack/play_button_art": T.PANEL - "play_button_stack/play_button_banner": T.IMAGE - get_started_button: T.BUTTON - main_menu_button: T.BUTTON - featured_world_button: T.BUTTON - unlock_full_game_button: T.BUTTON - launch_editions_button: T.BUTTON - ai_lesson_crafter_button: T.BUTTON - settings_button: T.BUTTON - realms_button: T.BUTTON - servers_button: T.BUTTON - store_button: T.BUTTON - error_store_button: T.BUTTON - store_button_sale_banner: T.IMAGE - "store_button_sale_banner/banner_label_padding": T.PANEL - "store_button_sale_banner/banner_label_padding/banner_label": T.LABEL - store_button_content: T.PANEL - "store_button_content/button_label": T.LABEL - "store_button_content/sales_banner": T.IMAGE - store_error_image: T.IMAGE - store_error_content: T.IMAGE - "store_error_content/marketplace_button_label": T.LABEL - store_sale_label: T.LABEL - store_button_art: T.PANEL - "store_button_art/default_background": T.CUSTOM - "store_button_art/hover_background": T.CUSTOM - "store_button_art/label": T.LABEL - "store_button_art/default_foreground": T.CUSTOM - "store_button_art/hover_foreground": T.CUSTOM - store_button_stack: T.PANEL - "store_button_stack/store_button": T.BUTTON - "store_button_stack/store_button_art": T.PANEL - "store_button_stack/store_button_banner": T.IMAGE - "store_button_stack/update_icon": T.IMAGE - "store_button_stack/new_offers_icon": T.IMAGE - buy_game_button: T.BUTTON - stacked_row: T.PANEL - main_buttons_stack_panel: T.STACK_PANEL - "main_buttons_stack_panel/title_offset_padding": T.PANEL - "main_buttons_stack_panel/title_panel_content": T.PANEL - "main_buttons_stack_panel/padding_fill_1": T.PANEL - "main_buttons_stack_panel/main_buttons_panel": T.PANEL - "main_buttons_stack_panel/main_buttons_panel/main_buttons_panel": T.PANEL - "main_buttons_stack_panel/main_buttons_panel_new_player_flow": T.PANEL - "main_buttons_stack_panel/main_buttons_panel_new_player_flow/main_buttons_panel_new_player_flow": T.PANEL - "main_buttons_stack_panel/padding_fill_2": T.PANEL - "main_buttons_stack_panel/padding_fill_2/gamepad_helpers": T.STACK_PANEL - "main_buttons_stack_panel/padding_3": T.PANEL - main_buttons_panel_new_player_flow: T.PANEL - "main_buttons_panel_new_player_flow/stacked_rows": T.STACK_PANEL - "main_buttons_panel_new_player_flow/stacked_rows/test_label_row": T.PANEL - "main_buttons_panel_new_player_flow/stacked_rows/test_label_row/trial_info": T.PANEL - "main_buttons_panel_new_player_flow/stacked_rows/spacer": T.PANEL - "main_buttons_panel_new_player_flow/stacked_rows/get_started_row": T.PANEL - "main_buttons_panel_new_player_flow/stacked_rows/get_started_row/get_started_button": T.BUTTON - "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row": T.PANEL - "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row/main_menu_button": T.BUTTON - main_buttons_panel: T.PANEL - "main_buttons_panel/stacked_rows": T.STACK_PANEL - "main_buttons_panel/stacked_rows/play": T.PANEL - "main_buttons_panel/stacked_rows/featured_world": T.PANEL - "main_buttons_panel/stacked_rows/featured_world/featured_world_button": T.BUTTON - "main_buttons_panel/stacked_rows/stacked_row_2": T.PANEL - "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns": T.STACK_PANEL - "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0": T.PANEL - "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0/settings_button": T.BUTTON - "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1": T.PANEL - "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/store_button": T.BUTTON - "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/update_icon": T.IMAGE - "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/new_offers_icon": T.IMAGE - "main_buttons_panel/stacked_rows/ai_lesson_crafter_row": T.PANEL - "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/ai_lesson_crafter_button": T.BUTTON - "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/lesson_crafter_preview_overlay": T.IMAGE - "main_buttons_panel/stacked_rows/edu_featured_button": T.PANEL - "main_buttons_panel/stacked_rows/edu_featured_button/new_and_featured_button": T.BUTTON - "main_buttons_panel/stacked_rows/settings_and_editions_panel": T.PANEL - "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions": T.STACK_PANEL - "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel": T.PANEL - "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel/settings_button": T.BUTTON - "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel": T.PANEL - "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel/launch_editions_button": T.BUTTON - "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel": T.PANEL - "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel/settings_button": T.BUTTON - "main_buttons_panel/stacked_rows/settings": T.PANEL - "main_buttons_panel/stacked_rows/settings/settings_button": T.BUTTON - "main_buttons_panel/stacked_rows/realms": T.PANEL - "main_buttons_panel/stacked_rows/realms/realms_button": T.BUTTON - "main_buttons_panel/stacked_rows/unlock_full_game_row": T.PANEL - "main_buttons_panel/stacked_rows/unlock_full_game_row/unlock_full_game": T.BUTTON - "main_buttons_panel/stacked_rows/store": T.PANEL - "main_buttons_panel/stacked_rows/buy_game": T.PANEL - "main_buttons_panel/stacked_rows/buy_game/buy_game_button": T.BUTTON - "main_buttons_panel/stacked_rows/launch_editions": T.PANEL - "main_buttons_panel/stacked_rows/launch_editions/launch_editions_button": T.BUTTON - gamepad_helpers: T.STACK_PANEL - "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL - "gamepad_helpers/gamepad_helper_b_and_padding": T.PANEL - "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b": T.STACK_PANEL - "gamepad_helpers/gamepad_helper_y_and_padding": T.PANEL - "gamepad_helpers/gamepad_helper_y_and_padding/gamepad_helper_y": T.STACK_PANEL - "gamepad_helpers/gamepad_helper_x_and_padding": T.PANEL - "gamepad_helpers/gamepad_helper_x_and_padding/gamepad_helper_x": T.STACK_PANEL - invite_notification_icon: T.IMAGE - invite_notification_button: T.BUTTON - notification_button_text: T.LABEL - notification_button_text_background: T.IMAGE - notification_button_text_panel: T.PANEL - "notification_button_text_panel/text": T.LABEL - "notification_button_text_panel/text/background": T.IMAGE - start_screen: T.SCREEN - start_screen_content: T.PANEL - "start_screen_content/main_buttons_and_title_panel": T.STACK_PANEL - "start_screen_content/online_button_stack": T.STACK_PANEL - "start_screen_content/online_button_stack/gathering_panel": T.STACK_PANEL - "start_screen_content/online_button_stack/upper_online_buttons_panel": T.STACK_PANEL - "start_screen_content/online_button_stack/lower_online_buttons_panel": T.STACK_PANEL - "start_screen_content/skin_panel": T.PANEL - "start_screen_content/text_panel": T.PANEL - "start_screen_content/friendsdrawer_button_panel": T.PANEL + "achievements_icon": T.IMAGE, + "inbox_bell_animated_icon": T.IMAGE, + "inbox_icon": T.IMAGE, + "unread_notification_icon": T.IMAGE, + "feedback_icon": T.IMAGE, + "feedback_icon_edu": T.IMAGE, + "Xbox_icon": T.IMAGE, + "change_skin_icon": T.IMAGE, + "manage_accounts_icon": T.IMAGE, + "new_offers_icon": T.IMAGE, + "edu_ai_lesson_crafter_button_content": T.STACK_PANEL, + "edu_ai_lesson_crafter_button_content/padded_label": T.PANEL, + "edu_ai_lesson_crafter_button_content/padded_label/label": T.LABEL, + "edu_ai_lesson_crafter_button_content/padded_icon": T.PANEL, + "edu_ai_lesson_crafter_button_content/padded_icon/icon": T.IMAGE, + "preview_tag": T.IMAGE, + "preview_tag/preview_label": T.LABEL, + "update_prompt_icon": T.IMAGE, + "marketplace_error_icon": T.IMAGE, + "sale_ribbon_icon": T.IMAGE, + "alex_icon": T.IMAGE, + "gamerpic": T.CUSTOM, + "copyright": T.PANEL, + "copyright/label": T.LABEL, + "copyright/label_background": T.IMAGE, + "development_version": T.PANEL, + "development_version/label": T.LABEL, + "development_version/label_background": T.IMAGE, + "version": T.PANEL, + "version/label": T.LABEL, + "version/label_background": T.IMAGE, + "trial_info": T.PANEL, + "trial_info/trial_label": T.LABEL, + "trial_info/label_background": T.IMAGE, + "text_panel": T.PANEL, + "text_panel/copyright": T.PANEL, + "text_panel/development_version": T.PANEL, + "text_panel/version": T.PANEL, + "skin_or_profile_panel": T.PANEL, + "skin_or_profile_panel/change_skin": T.BUTTON, + "skin_or_profile_panel/change_skin_button_demo": T.BUTTON, + "skin_or_profile_panel/dressing_room_button": T.BUTTON, + "skin_or_profile_panel/switch_accounts": T.BUTTON, + "skin_or_profile_panel/profile_button": T.BUTTON, + "change_skin_button": T.BUTTON, + "change_skin_button_demo": T.BUTTON, + "switch_accounts_button": T.BUTTON, + "dressing_room_button": T.BUTTON, + "profile_button_content": T.STACK_PANEL, + "profile_button_content/gamerpic_offset_wrapper": T.PANEL, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border": T.PANEL, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic": T.CUSTOM, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon": T.IMAGE, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black": T.IMAGE, + "profile_button_content/padding_middle": T.PANEL, + "profile_button_content/vertically_central_text": T.STACK_PANEL, + "profile_button_content/vertically_central_text/top_padding": T.PANEL, + "profile_button_content/vertically_central_text/profile_button_label": T.LABEL, + "profile_button_content/padding_right": T.PANEL, + "profile_button": T.BUTTON, + "skin_viewer_panel": T.INPUT_PANEL, + "skin_viewer_panel/paper_doll_panel": T.PANEL, + "skin_viewer_panel/paper_doll_panel/paper_doll": T.CUSTOM, + "skin_viewer_panel/paper_doll_panel/appearacne_loading_panel": T.PANEL, + "skin_viewer_panel/paper_doll_name_tag": T.CUSTOM, + "skin_panel": T.PANEL, + "skin_panel/change_profile_or_skin": T.PANEL, + "skin_panel/viewer_panel": T.INPUT_PANEL, + "friendsdrawer_button_panel": T.PANEL, + "friendsdrawer_button_panel/friendsdrawer_button": T.BUTTON, + "gathering_button": T.BUTTON, + "badge_and_caption_animated": T.STACK_PANEL, + "badge_and_caption_animated/caption_and_padding": T.STACK_PANEL, + "badge_and_caption_animated/caption_and_padding/pad": T.PANEL, + "badge_and_caption_animated/caption_and_padding/caption": T.IMAGE, + "badge_and_caption_animated/badge_and_padding": T.STACK_PANEL, + "badge_and_caption_animated/badge_and_padding/badge": T.IMAGE, + "badge_and_caption_animated/badge_and_padding/fill": T.PANEL, + "gathering_badge": T.IMAGE, + "badge_and_caption": T.STACK_PANEL, + "badge_and_caption/caption_and_padding": T.STACK_PANEL, + "badge_and_caption/caption_and_padding/pad": T.PANEL, + "badge_and_caption/caption_and_padding/caption": T.IMAGE, + "badge_and_caption/badge_and_padding": T.STACK_PANEL, + "badge_and_caption/badge_and_padding/badge": T.IMAGE, + "badge_and_caption/badge_and_padding/fill": T.PANEL, + "gathering_caption": T.IMAGE, + "gathering_caption/countdown_text": T.LABEL, + "gathering_panel": T.STACK_PANEL, + "gathering_panel/horizontal_panel": T.STACK_PANEL, + "gathering_panel/horizontal_panel/pad": T.PANEL, + "gathering_panel/horizontal_panel/inner_panel": T.STACK_PANEL, + "gathering_panel/horizontal_panel/inner_panel/badge_and_caption": T.STACK_PANEL, + "gathering_panel/horizontal_panel/inner_panel/badge_and_caption_animated": T.STACK_PANEL, + "gathering_panel/horizontal_panel/inner_panel/gathering_button": T.BUTTON, + "gathering_panel/bottom_pad": T.PANEL, + "edu_feedback_button": T.BUTTON, + "release_feedback_button": T.BUTTON, + "pre_release_feedback_button": T.BUTTON, + "feedback_button": T.PANEL, + "feedback_button/edu_feedback_button": T.BUTTON, + "feedback_button/release_feedback_button": T.BUTTON, + "feedback_button/pre_release_feedback_button": T.BUTTON, + "achievements_button": T.BUTTON, + "achievements_icon_button": T.PANEL, + "achievements_icon_button/achievements_button": T.BUTTON, + "inbox_button": T.BUTTON, + "inbox_button_unread_panel": T.PANEL, + "inbox_button_unread_panel/background": T.IMAGE, + "inbox_icon_button": T.PANEL, + "inbox_icon_button/inbox_button": T.BUTTON, + "inbox_icon_button/inbox_button_unread_panel": T.PANEL, + "xbl_signin_button": T.BUTTON, + "platform_signin_button": T.BUTTON, + "column_frame": T.PANEL, + "educator_resources_button": T.BUTTON, + "upper_online_buttons_panel": T.STACK_PANEL, + "upper_online_buttons_panel/top_pad": T.PANEL, + "upper_online_buttons_panel/stacked_column": T.STACK_PANEL, + "upper_online_buttons_panel/stacked_column/xbl_btn_padding": T.PANEL, + "upper_online_buttons_panel/stacked_column/xbl_btn": T.PANEL, + "upper_online_buttons_panel/stacked_column/xbl_btn/xbl_signin_button": T.BUTTON, + "upper_online_buttons_panel/stacked_column/platform_signin_btn": T.PANEL, + "upper_online_buttons_panel/stacked_column/platform_signin_btn/platform_signin_button": T.BUTTON, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label": T.STACK_PANEL, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border": T.PANEL, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/gamerpic": T.CUSTOM, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/border_white": T.IMAGE, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/spacer": T.PANEL, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel": T.PANEL, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel/gamertag_label": T.LABEL, + "upper_online_buttons_panel/bottom_pad": T.PANEL, + "lower_online_buttons_panel": T.STACK_PANEL, + "lower_online_buttons_panel/stacked_column": T.STACK_PANEL, + "lower_online_buttons_panel/stacked_column/feedback_padding": T.PANEL, + "lower_online_buttons_panel/stacked_column/feedback_btn": T.PANEL, + "lower_online_buttons_panel/stacked_column/feedback_btn/feedback_button": T.PANEL, + "lower_online_buttons_panel/stacked_column/signingin": T.LABEL, + "lower_online_buttons_panel/stacked_column/achievements_padding": T.PANEL, + "lower_online_buttons_panel/stacked_column/achievements_btn": T.PANEL, + "lower_online_buttons_panel/stacked_column/achievements_btn/achievements_icon_button": T.PANEL, + "lower_online_buttons_panel/stacked_column/inbox_padding": T.PANEL, + "lower_online_buttons_panel/stacked_column/inbox_btn": T.PANEL, + "lower_online_buttons_panel/stacked_column/inbox_btn/inbox_icon_button": T.PANEL, + "lower_online_buttons_panel/stacked_column/profile_btn_padding": T.PANEL, + "lower_online_buttons_panel/stacked_column/profile_btn": T.PANEL, + "lower_online_buttons_panel/stacked_column/profile_btn/profile_button": T.BUTTON, + "main_button": T.BUTTON, + "main_button_dark": T.BUTTON, + "main_content_button": T.BUTTON, + "main_button_gif": T.CUSTOM, + "main_button_banner": T.IMAGE, + "main_button_banner/banner_label": T.LABEL, + "play_button": T.BUTTON, + "play_button_art": T.PANEL, + "play_button_art/default_background": T.CUSTOM, + "play_button_art/hover_background": T.CUSTOM, + "play_button_art/label": T.LABEL, + "play_button_art/default_foreground": T.CUSTOM, + "play_button_art/hover_foreground": T.CUSTOM, + "play_button_stack": T.PANEL, + "play_button_stack/play_button": T.BUTTON, + "play_button_stack/play_button_art": T.PANEL, + "play_button_stack/play_button_banner": T.IMAGE, + "get_started_button": T.BUTTON, + "main_menu_button": T.BUTTON, + "featured_world_button": T.BUTTON, + "unlock_full_game_button": T.BUTTON, + "launch_editions_button": T.BUTTON, + "ai_lesson_crafter_button": T.BUTTON, + "settings_button": T.BUTTON, + "realms_button": T.BUTTON, + "servers_button": T.BUTTON, + "store_button": T.BUTTON, + "error_store_button": T.BUTTON, + "store_button_sale_banner": T.IMAGE, + "store_button_sale_banner/banner_label_padding": T.PANEL, + "store_button_sale_banner/banner_label_padding/banner_label": T.LABEL, + "store_button_content": T.PANEL, + "store_button_content/button_label": T.LABEL, + "store_button_content/sales_banner": T.IMAGE, + "store_error_image": T.IMAGE, + "store_error_content": T.IMAGE, + "store_error_content/marketplace_button_label": T.LABEL, + "store_sale_label": T.LABEL, + "store_button_art": T.PANEL, + "store_button_art/default_background": T.CUSTOM, + "store_button_art/hover_background": T.CUSTOM, + "store_button_art/label": T.LABEL, + "store_button_art/default_foreground": T.CUSTOM, + "store_button_art/hover_foreground": T.CUSTOM, + "store_button_stack": T.PANEL, + "store_button_stack/store_button": T.BUTTON, + "store_button_stack/store_button_art": T.PANEL, + "store_button_stack/store_button_banner": T.IMAGE, + "store_button_stack/update_icon": T.IMAGE, + "store_button_stack/new_offers_icon": T.IMAGE, + "buy_game_button": T.BUTTON, + "stacked_row": T.PANEL, + "main_buttons_stack_panel": T.STACK_PANEL, + "main_buttons_stack_panel/title_offset_padding": T.PANEL, + "main_buttons_stack_panel/title_panel_content": T.PANEL, + "main_buttons_stack_panel/padding_fill_1": T.PANEL, + "main_buttons_stack_panel/main_buttons_panel": T.PANEL, + "main_buttons_stack_panel/main_buttons_panel/main_buttons_panel": T.PANEL, + "main_buttons_stack_panel/main_buttons_panel_new_player_flow": T.PANEL, + "main_buttons_stack_panel/main_buttons_panel_new_player_flow/main_buttons_panel_new_player_flow": T.PANEL, + "main_buttons_stack_panel/padding_fill_2": T.PANEL, + "main_buttons_stack_panel/padding_fill_2/gamepad_helpers": T.STACK_PANEL, + "main_buttons_stack_panel/padding_3": T.PANEL, + "main_buttons_panel_new_player_flow": T.PANEL, + "main_buttons_panel_new_player_flow/stacked_rows": T.STACK_PANEL, + "main_buttons_panel_new_player_flow/stacked_rows/test_label_row": T.PANEL, + "main_buttons_panel_new_player_flow/stacked_rows/test_label_row/trial_info": T.PANEL, + "main_buttons_panel_new_player_flow/stacked_rows/spacer": T.PANEL, + "main_buttons_panel_new_player_flow/stacked_rows/get_started_row": T.PANEL, + "main_buttons_panel_new_player_flow/stacked_rows/get_started_row/get_started_button": T.BUTTON, + "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row": T.PANEL, + "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row/main_menu_button": T.BUTTON, + "main_buttons_panel": T.PANEL, + "main_buttons_panel/stacked_rows": T.STACK_PANEL, + "main_buttons_panel/stacked_rows/play": T.PANEL, + "main_buttons_panel/stacked_rows/featured_world": T.PANEL, + "main_buttons_panel/stacked_rows/featured_world/featured_world_button": T.BUTTON, + "main_buttons_panel/stacked_rows/stacked_row_2": T.PANEL, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns": T.STACK_PANEL, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0": T.PANEL, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0/settings_button": T.BUTTON, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1": T.PANEL, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/store_button": T.BUTTON, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/update_icon": T.IMAGE, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/new_offers_icon": T.IMAGE, + "main_buttons_panel/stacked_rows/ai_lesson_crafter_row": T.PANEL, + "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/ai_lesson_crafter_button": T.BUTTON, + "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/lesson_crafter_preview_overlay": T.IMAGE, + "main_buttons_panel/stacked_rows/edu_featured_button": T.PANEL, + "main_buttons_panel/stacked_rows/edu_featured_button/new_and_featured_button": T.BUTTON, + "main_buttons_panel/stacked_rows/settings_and_editions_panel": T.PANEL, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions": T.STACK_PANEL, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel": T.PANEL, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel/settings_button": T.BUTTON, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel": T.PANEL, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel/launch_editions_button": T.BUTTON, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel": T.PANEL, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel/settings_button": T.BUTTON, + "main_buttons_panel/stacked_rows/settings": T.PANEL, + "main_buttons_panel/stacked_rows/settings/settings_button": T.BUTTON, + "main_buttons_panel/stacked_rows/realms": T.PANEL, + "main_buttons_panel/stacked_rows/realms/realms_button": T.BUTTON, + "main_buttons_panel/stacked_rows/unlock_full_game_row": T.PANEL, + "main_buttons_panel/stacked_rows/unlock_full_game_row/unlock_full_game": T.BUTTON, + "main_buttons_panel/stacked_rows/store": T.PANEL, + "main_buttons_panel/stacked_rows/buy_game": T.PANEL, + "main_buttons_panel/stacked_rows/buy_game/buy_game_button": T.BUTTON, + "main_buttons_panel/stacked_rows/launch_editions": T.PANEL, + "main_buttons_panel/stacked_rows/launch_editions/launch_editions_button": T.BUTTON, + "gamepad_helpers": T.STACK_PANEL, + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL, + "gamepad_helpers/gamepad_helper_b_and_padding": T.PANEL, + "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b": T.STACK_PANEL, + "gamepad_helpers/gamepad_helper_y_and_padding": T.PANEL, + "gamepad_helpers/gamepad_helper_y_and_padding/gamepad_helper_y": T.STACK_PANEL, + "gamepad_helpers/gamepad_helper_x_and_padding": T.PANEL, + "gamepad_helpers/gamepad_helper_x_and_padding/gamepad_helper_x": T.STACK_PANEL, + "invite_notification_icon": T.IMAGE, + "invite_notification_button": T.BUTTON, + "notification_button_text": T.LABEL, + "notification_button_text_background": T.IMAGE, + "notification_button_text_panel": T.PANEL, + "notification_button_text_panel/text": T.LABEL, + "notification_button_text_panel/text/background": T.IMAGE, + "start_screen": T.SCREEN, + "start_screen_content": T.PANEL, + "start_screen_content/main_buttons_and_title_panel": T.STACK_PANEL, + "start_screen_content/online_button_stack": T.STACK_PANEL, + "start_screen_content/online_button_stack/gathering_panel": T.STACK_PANEL, + "start_screen_content/online_button_stack/upper_online_buttons_panel": T.STACK_PANEL, + "start_screen_content/online_button_stack/lower_online_buttons_panel": T.STACK_PANEL, + "start_screen_content/skin_panel": T.PANEL, + "start_screen_content/text_panel": T.PANEL, + "start_screen_content/friendsdrawer_button_panel": T.PANEL, } export type StonecutterType = { - stonecutter_label: T.LABEL - arrow_icon: T.IMAGE - stone_cell_image: T.IMAGE - container_cell_image: T.IMAGE - toolbar_background: T.IMAGE - highlight_slot_panel: T.PANEL - "highlight_slot_panel/hover_text": T.CUSTOM - "highlight_slot_panel/highlight": T.IMAGE - "highlight_slot_panel/white_border": T.IMAGE - stone_slot_button: T.BUTTON - "stone_slot_button/hover": T.UNKNOWN - item_panel: T.PANEL - "item_panel/item_renderer": T.CUSTOM - "item_panel/item_renderer/stack_count_label": T.LABEL - stone_button: T.INPUT_PANEL - "stone_button/banner_pattern": T.UNKNOWN - "stone_button/item_button_ref": T.UNKNOWN - scroll_grid: T.GRID - scroll_grid_panel: T.INPUT_PANEL - "scroll_grid_panel/grid": T.GRID - scroll_panel: T.PANEL - stone_book_panel: T.INPUT_PANEL - "stone_book_panel/bg": T.PANEL - "stone_book_panel/scroll_panel": T.PANEL - result_slot_button: T.BUTTON - input_item_slot: T.INPUT_PANEL - result_item_slot: T.INPUT_PANEL - input_slots_stack_panel: T.STACK_PANEL - "input_slots_stack_panel/input_item_slot": T.INPUT_PANEL - top_half_stack_panel: T.STACK_PANEL - "top_half_stack_panel/input_slots_holder": T.PANEL - "top_half_stack_panel/input_slots_holder/input_slots_stack_panel": T.STACK_PANEL - "top_half_stack_panel/padding_1": T.PANEL - "top_half_stack_panel/arrow_holder": T.PANEL - "top_half_stack_panel/arrow_holder/arrow_icon": T.IMAGE - "top_half_stack_panel/padding_2": T.PANEL - "top_half_stack_panel/result_item_slot_holder": T.PANEL - "top_half_stack_panel/result_item_slot_holder/result_item_slot": T.INPUT_PANEL - top_half_panel: T.PANEL - "top_half_panel/top_half_stack_panel": T.STACK_PANEL - right_panel: T.INPUT_PANEL - "right_panel/common_panel": T.PANEL - "right_panel/stonecutter_screen_inventory": T.PANEL - "right_panel/stonecutter_screen_inventory/stonecutter_label": T.LABEL - "right_panel/stonecutter_screen_inventory/top_half_panel": T.PANEL - "right_panel/stonecutter_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL - "right_panel/stonecutter_screen_inventory/hotbar_grid": T.GRID - toolbar_panel: T.INPUT_PANEL - "toolbar_panel/toolbar_background": T.IMAGE - "toolbar_panel/toolbar_background/toolbar_stack_panel": T.STACK_PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": T.BUTTON - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": T.PANEL - toolbar_anchor: T.PANEL - "toolbar_anchor/toolbar_panel": T.INPUT_PANEL - center_fold: T.INPUT_PANEL - "center_fold/center_bg": T.IMAGE - screen_stack_panel: T.STACK_PANEL - "screen_stack_panel/stone_book_panel": T.INPUT_PANEL - "screen_stack_panel/center_fold": T.INPUT_PANEL - "screen_stack_panel/right_panel": T.INPUT_PANEL - "screen_stack_panel/toolbar_anchor": T.PANEL - stonecutter_panel: T.PANEL - "stonecutter_panel/screen_stack_panel": T.STACK_PANEL - "stonecutter_panel/container_gamepad_helpers": T.STACK_PANEL - "stonecutter_panel/selected_item_details_factory": T.FACTORY - "stonecutter_panel/item_lock_notification_factory": T.FACTORY - "stonecutter_panel/inventory_selected_icon_button": T.BUTTON - "stonecutter_panel/inventory_take_progress_icon_button": T.BUTTON - "stonecutter_panel/flying_item_renderer": T.CUSTOM - stonecutter_screen: T.SCREEN + "stonecutter_label": T.LABEL, + "arrow_icon": T.IMAGE, + "stone_cell_image": T.IMAGE, + "container_cell_image": T.IMAGE, + "toolbar_background": T.IMAGE, + "highlight_slot_panel": T.PANEL, + "highlight_slot_panel/hover_text": T.CUSTOM, + "highlight_slot_panel/highlight": T.IMAGE, + "highlight_slot_panel/white_border": T.IMAGE, + "stone_slot_button": T.BUTTON, + "stone_slot_button/hover": T.UNKNOWN, + "item_panel": T.PANEL, + "item_panel/item_renderer": T.CUSTOM, + "item_panel/item_renderer/stack_count_label": T.LABEL, + "stone_button": T.INPUT_PANEL, + "stone_button/banner_pattern": T.UNKNOWN, + "stone_button/item_button_ref": T.UNKNOWN, + "scroll_grid": T.GRID, + "scroll_grid_panel": T.INPUT_PANEL, + "scroll_grid_panel/grid": T.GRID, + "scroll_panel": T.PANEL, + "stone_book_panel": T.INPUT_PANEL, + "stone_book_panel/bg": T.PANEL, + "stone_book_panel/scroll_panel": T.PANEL, + "result_slot_button": T.BUTTON, + "input_item_slot": T.INPUT_PANEL, + "result_item_slot": T.INPUT_PANEL, + "input_slots_stack_panel": T.STACK_PANEL, + "input_slots_stack_panel/input_item_slot": T.INPUT_PANEL, + "top_half_stack_panel": T.STACK_PANEL, + "top_half_stack_panel/input_slots_holder": T.PANEL, + "top_half_stack_panel/input_slots_holder/input_slots_stack_panel": T.STACK_PANEL, + "top_half_stack_panel/padding_1": T.PANEL, + "top_half_stack_panel/arrow_holder": T.PANEL, + "top_half_stack_panel/arrow_holder/arrow_icon": T.IMAGE, + "top_half_stack_panel/padding_2": T.PANEL, + "top_half_stack_panel/result_item_slot_holder": T.PANEL, + "top_half_stack_panel/result_item_slot_holder/result_item_slot": T.INPUT_PANEL, + "top_half_panel": T.PANEL, + "top_half_panel/top_half_stack_panel": T.STACK_PANEL, + "right_panel": T.INPUT_PANEL, + "right_panel/common_panel": T.PANEL, + "right_panel/stonecutter_screen_inventory": T.PANEL, + "right_panel/stonecutter_screen_inventory/stonecutter_label": T.LABEL, + "right_panel/stonecutter_screen_inventory/top_half_panel": T.PANEL, + "right_panel/stonecutter_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL, + "right_panel/stonecutter_screen_inventory/hotbar_grid": T.GRID, + "toolbar_panel": T.INPUT_PANEL, + "toolbar_panel/toolbar_background": T.IMAGE, + "toolbar_panel/toolbar_background/toolbar_stack_panel": T.STACK_PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": T.BUTTON, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": T.PANEL, + "toolbar_anchor": T.PANEL, + "toolbar_anchor/toolbar_panel": T.INPUT_PANEL, + "center_fold": T.INPUT_PANEL, + "center_fold/center_bg": T.IMAGE, + "screen_stack_panel": T.STACK_PANEL, + "screen_stack_panel/stone_book_panel": T.INPUT_PANEL, + "screen_stack_panel/center_fold": T.INPUT_PANEL, + "screen_stack_panel/right_panel": T.INPUT_PANEL, + "screen_stack_panel/toolbar_anchor": T.PANEL, + "stonecutter_panel": T.PANEL, + "stonecutter_panel/screen_stack_panel": T.STACK_PANEL, + "stonecutter_panel/container_gamepad_helpers": T.STACK_PANEL, + "stonecutter_panel/selected_item_details_factory": T.FACTORY, + "stonecutter_panel/item_lock_notification_factory": T.FACTORY, + "stonecutter_panel/inventory_selected_icon_button": T.BUTTON, + "stonecutter_panel/inventory_take_progress_icon_button": T.BUTTON, + "stonecutter_panel/flying_item_renderer": T.CUSTOM, + "stonecutter_screen": T.SCREEN, } export type StonecutterPocketType = { - vertical_arrow_icon: T.IMAGE - chest_item_renderer: T.CUSTOM - stonecutter_item_renderer: T.CUSTOM - input_item_slot: T.INPUT_PANEL - result_item_slot: T.INPUT_PANEL - right_panel: T.STACK_PANEL - "right_panel/content": T.INPUT_PANEL - "right_panel/content/bg": T.PANEL - "right_panel/content/stonecutter_content_stack_panel": T.STACK_PANEL - "right_panel/navigation_tabs_holder": T.PANEL - "right_panel/navigation_tabs_holder/right_navigation_tabs": T.STACK_PANEL - right_tab_stonecutter: T.PANEL - right_navigation_tabs: T.STACK_PANEL - "right_navigation_tabs/close": T.IMAGE - "right_navigation_tabs/close/nodrop_zone": T.INPUT_PANEL - "right_navigation_tabs/close/close_button": T.BUTTON - "right_navigation_tabs/fill": T.PANEL - "right_navigation_tabs/right_tab_stonecutter": T.PANEL - input_slots_stack_panel: T.STACK_PANEL - "input_slots_stack_panel/input_item_slot": T.INPUT_PANEL - stonecutter_content_stack_panel: T.STACK_PANEL - "stonecutter_content_stack_panel/label_holder": T.PANEL - "stonecutter_content_stack_panel/label_holder/stonecutter_label": T.LABEL - "stonecutter_content_stack_panel/padding_1": T.PANEL - "stonecutter_content_stack_panel/panel": T.PANEL - "stonecutter_content_stack_panel/panel/stack_panel": T.STACK_PANEL - "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder": T.PANEL - "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder/input_slots_stack_panel": T.STACK_PANEL - "stonecutter_content_stack_panel/panel/stack_panel/padding_3": T.PANEL - "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder": T.PANEL - "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder/vertical_arrow_icon": T.IMAGE - "stonecutter_content_stack_panel/panel/stack_panel/padding_4": T.PANEL - "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder": T.PANEL - "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder/result_item_slot": T.INPUT_PANEL - "stonecutter_content_stack_panel/panel/stack_panel/padding_5": T.PANEL - inventory_panel: T.STACK_PANEL - "inventory_panel/inventory_title_label_centerer": T.PANEL - "inventory_panel/inventory_title_label_centerer/inventory_title_label": T.LABEL - "inventory_panel/inventory_scroll_panel": T.PANEL - inventory_scroll_panel: T.PANEL - pattern_button: T.INPUT_PANEL - pattern_scroll_panel: T.PANEL - left_panel: T.STACK_PANEL - "left_panel/gamepad_helpers_and_tabs_holder": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": T.STACK_PANEL - "left_panel/content": T.INPUT_PANEL - "left_panel/content/bg": T.PANEL - "left_panel/content/inventory_panel": T.STACK_PANEL - "left_panel/content/pattern_scroll_panel": T.PANEL - left_tab_stones: T.PANEL - left_tab_inventory: T.PANEL - left_navigation_tabs: T.STACK_PANEL - "left_navigation_tabs/left_tab_stones": T.PANEL - "left_navigation_tabs/padding": T.PANEL - "left_navigation_tabs/left_tab_inventory": T.PANEL - pocket_hotbar_and_content_panels: T.STACK_PANEL - stonecutter_panel: T.PANEL - "stonecutter_panel/pocket_hotbar_and_content_panels": T.STACK_PANEL - "stonecutter_panel/container_gamepad_helpers": T.STACK_PANEL - "stonecutter_panel/selected_item_details_factory": T.FACTORY - "stonecutter_panel/item_lock_notification_factory": T.FACTORY - "stonecutter_panel/inventory_selected_icon_button": T.BUTTON - "stonecutter_panel/inventory_take_progress_icon_button": T.BUTTON - "stonecutter_panel/flying_item_renderer": T.CUSTOM + "vertical_arrow_icon": T.IMAGE, + "chest_item_renderer": T.CUSTOM, + "stonecutter_item_renderer": T.CUSTOM, + "input_item_slot": T.INPUT_PANEL, + "result_item_slot": T.INPUT_PANEL, + "right_panel": T.STACK_PANEL, + "right_panel/content": T.INPUT_PANEL, + "right_panel/content/bg": T.PANEL, + "right_panel/content/stonecutter_content_stack_panel": T.STACK_PANEL, + "right_panel/navigation_tabs_holder": T.PANEL, + "right_panel/navigation_tabs_holder/right_navigation_tabs": T.STACK_PANEL, + "right_tab_stonecutter": T.PANEL, + "right_navigation_tabs": T.STACK_PANEL, + "right_navigation_tabs/close": T.IMAGE, + "right_navigation_tabs/close/nodrop_zone": T.INPUT_PANEL, + "right_navigation_tabs/close/close_button": T.BUTTON, + "right_navigation_tabs/fill": T.PANEL, + "right_navigation_tabs/right_tab_stonecutter": T.PANEL, + "input_slots_stack_panel": T.STACK_PANEL, + "input_slots_stack_panel/input_item_slot": T.INPUT_PANEL, + "stonecutter_content_stack_panel": T.STACK_PANEL, + "stonecutter_content_stack_panel/label_holder": T.PANEL, + "stonecutter_content_stack_panel/label_holder/stonecutter_label": T.LABEL, + "stonecutter_content_stack_panel/padding_1": T.PANEL, + "stonecutter_content_stack_panel/panel": T.PANEL, + "stonecutter_content_stack_panel/panel/stack_panel": T.STACK_PANEL, + "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder": T.PANEL, + "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder/input_slots_stack_panel": T.STACK_PANEL, + "stonecutter_content_stack_panel/panel/stack_panel/padding_3": T.PANEL, + "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder": T.PANEL, + "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder/vertical_arrow_icon": T.IMAGE, + "stonecutter_content_stack_panel/panel/stack_panel/padding_4": T.PANEL, + "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder": T.PANEL, + "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder/result_item_slot": T.INPUT_PANEL, + "stonecutter_content_stack_panel/panel/stack_panel/padding_5": T.PANEL, + "inventory_panel": T.STACK_PANEL, + "inventory_panel/inventory_title_label_centerer": T.PANEL, + "inventory_panel/inventory_title_label_centerer/inventory_title_label": T.LABEL, + "inventory_panel/inventory_scroll_panel": T.PANEL, + "inventory_scroll_panel": T.PANEL, + "pattern_button": T.INPUT_PANEL, + "pattern_scroll_panel": T.PANEL, + "left_panel": T.STACK_PANEL, + "left_panel/gamepad_helpers_and_tabs_holder": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": T.STACK_PANEL, + "left_panel/content": T.INPUT_PANEL, + "left_panel/content/bg": T.PANEL, + "left_panel/content/inventory_panel": T.STACK_PANEL, + "left_panel/content/pattern_scroll_panel": T.PANEL, + "left_tab_stones": T.PANEL, + "left_tab_inventory": T.PANEL, + "left_navigation_tabs": T.STACK_PANEL, + "left_navigation_tabs/left_tab_stones": T.PANEL, + "left_navigation_tabs/padding": T.PANEL, + "left_navigation_tabs/left_tab_inventory": T.PANEL, + "pocket_hotbar_and_content_panels": T.STACK_PANEL, + "stonecutter_panel": T.PANEL, + "stonecutter_panel/pocket_hotbar_and_content_panels": T.STACK_PANEL, + "stonecutter_panel/container_gamepad_helpers": T.STACK_PANEL, + "stonecutter_panel/selected_item_details_factory": T.FACTORY, + "stonecutter_panel/item_lock_notification_factory": T.FACTORY, + "stonecutter_panel/inventory_selected_icon_button": T.BUTTON, + "stonecutter_panel/inventory_take_progress_icon_button": T.BUTTON, + "stonecutter_panel/flying_item_renderer": T.CUSTOM, } export type StorageManagementType = { - lock_icon: T.IMAGE - storage_header_panel: T.PANEL - "storage_header_panel/header_panel": T.STACK_PANEL - "storage_header_panel/header_panel/file_storage_dropdown": T.PANEL - "storage_header_panel/header_panel/file_storage_dropdown_edu": T.PANEL - "storage_header_panel/header_panel/clear_cache_button_panel": T.PANEL - "storage_header_panel/header_panel/clear_cache_button_panel/clear_cache_button": T.BUTTON - "storage_header_panel/header_panel/clear_download_cache_button_panel": T.PANEL - "storage_header_panel/header_panel/clear_download_cache_button_panel/clear_download_button": T.BUTTON - "storage_header_panel/header_panel/clear_screenshots_cache_button_panel": T.PANEL - "storage_header_panel/header_panel/clear_screenshots_cache_button_panel/clear_screenshots_cache_button": T.BUTTON - "storage_header_panel/header_panel/delete_local_screenshots_button_panel": T.PANEL - "storage_header_panel/header_panel/delete_local_screenshots_button_panel/delete_local_screenshots_button": T.BUTTON - "storage_header_panel/header_panel/panel": T.PANEL - "storage_header_panel/header_panel/panel/multiselect_button": T.PANEL - x_button_image: T.IMAGE - storage_main_panel: T.PANEL - "storage_main_panel/scroll_content": T.STACK_PANEL - storage_footer_panel: T.PANEL - "storage_footer_panel/visibleContent": T.STACK_PANEL - "storage_footer_panel/visibleContent/delete_button": T.BUTTON - "storage_footer_panel/visibleContent/share_button": T.BUTTON - delete_checkbox: T.PANEL - "delete_checkbox/selected_checkbox_image": T.IMAGE - generic_button: T.IMAGE - "generic_button/picture": T.IMAGE - "generic_button/text": T.LABEL - common_scroll_pane: T.PANEL - common_label: T.LABEL - main_content_panel: T.STACK_PANEL - "main_content_panel/panel": T.STACK_PANEL - "main_content_panel/panel/spacing": T.PANEL - "main_content_panel/panel/delete_checkbox": T.PANEL - "main_content_panel/panel/image_panel": T.PANEL - "main_content_panel/panel/image_panel/image_border": T.IMAGE - "main_content_panel/panel/image_panel/image_border/image": T.IMAGE - "main_content_panel/panel/text_panel_offset": T.PANEL - "main_content_panel/panel/text_panel_offset/text_panel": T.PANEL - "main_content_panel/panel/text_panel_offset/text_panel/0": T.UNKNOWN - common_main_button: T.PANEL - "common_main_button/background": T.IMAGE - "common_main_button/border": T.IMAGE - "common_main_button/main_content_panel": T.STACK_PANEL - base_glyph: T.STACK_PANEL - "base_glyph/image": T.IMAGE - "base_glyph/padding": T.PANEL - main_item_text: T.STACK_PANEL - grey_button: T.PANEL - icon_item_text: T.PANEL - world_item_text: T.PANEL - storage_main_item_toggle: T.STACK_PANEL - "storage_main_item_toggle/main_item_toggle": T.PANEL - "storage_main_item_toggle/contentPanel": T.STACK_PANEL - "storage_main_item_toggle/padding": T.PANEL - storage_scroll_pane: T.STACK_PANEL - "storage_scroll_pane/category_stack_panel": T.STACK_PANEL - "storage_scroll_pane/category_stack_panel/stack_panel": T.STACK_PANEL - "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel": T.STACK_PANEL - "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel/legacy_world_controls": T.STACK_PANEL - "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel": T.STACK_PANEL - "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel/retailtopreview_world_controls": T.STACK_PANEL - "storage_scroll_pane/multiselect_padding": T.PANEL - world_controls: T.STACK_PANEL - world_template_controls: T.STACK_PANEL - resource_controls: T.STACK_PANEL - behavior_controls: T.STACK_PANEL - skin_controls: T.STACK_PANEL - cached_controls: T.STACK_PANEL - resource_sub_item: T.STACK_PANEL - "resource_sub_item/dummy_panel": T.PANEL - "resource_sub_item/main_panel": T.PANEL - "resource_sub_item/main_panel/content": T.UNKNOWN - resource_toggle: T.STACK_PANEL - "resource_toggle/content_toggle": T.TOGGLE - "resource_toggle/content_toggle/default": T.UNKNOWN - "resource_toggle/content_toggle/hover": T.UNKNOWN - "resource_toggle/content_toggle/unchecked": T.UNKNOWN - "resource_toggle/content_toggle/unchecked_hover": T.UNKNOWN - "resource_toggle/item_button_panel": T.INPUT_PANEL - "resource_toggle/item_button_panel/y_sizing_panel": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border": T.IMAGE - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel": T.STACK_PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_0": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/blank": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/generate_texture_list_button": T.BUTTON - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_1": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/delete_button": T.BUTTON - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_2": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/blank": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/share_button": T.BUTTON - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_3": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank_3": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_4": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/blank": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/dependency_button": T.BUTTON - sub_item_tray_button: T.BUTTON - glyph_sub_icon: T.IMAGE - sub_item_blank_button: T.PANEL - texture_icon_text: T.PANEL - texture_icon_sub_item: T.PANEL - version_sub_item: T.PANEL - pack_description_sub_item: T.PANEL - world_sub_text: T.PANEL - world_template_sub_text: T.PANEL - basic_sub_item: T.PANEL - dropdown_button: T.BUTTON - dropdown_button_content: T.STACK_PANEL - "dropdown_button_content/image_panel": T.PANEL - "dropdown_button_content/image_panel/icon": T.IMAGE - "dropdown_button_content/text_panel": T.PANEL - "dropdown_button_content/text_panel/main_label": T.LABEL - filter_options: T.INPUT_PANEL - "filter_options/0": T.UNKNOWN - light_assets: T.PANEL - button_add: T.IMAGE - sort_panel: T.PANEL - "sort_panel/default": T.PANEL - sort_toggle: T.TOGGLE - storage_scroll_panel: T.PANEL - storage_main_item_legacy_world_toggle: T.STACK_PANEL - "storage_main_item_legacy_world_toggle/main_item_toggle": T.PANEL - "storage_main_item_legacy_world_toggle/contentPanel": T.STACK_PANEL - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel": T.STACK_PANEL - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/dummy_panel": T.PANEL - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/sync_legacy_world_button": T.BUTTON - "storage_main_item_legacy_world_toggle/contentPanel/dummy_panel": T.PANEL - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel": T.STACK_PANEL - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/dummy_panel": T.PANEL - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/sync_legacy_world_description": T.LABEL - "storage_main_item_legacy_world_toggle/contentPanel/itemsPanel": T.STACK_PANEL - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel_dummy_panel": T.PANEL - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel": T.STACK_PANEL - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/dummy_panel": T.PANEL - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/sync_legacy_world_conversion_description": T.LABEL - "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel": T.IMAGE - "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/loading_legacy_worlds_label": T.LABEL - "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/padding": T.PANEL - "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/progress_loading_bars": T.IMAGE - "storage_main_item_legacy_world_toggle/padding": T.PANEL - legacy_world_main_item_text: T.STACK_PANEL - storage_main_item_retailtopreview_world_toggle: T.STACK_PANEL - "storage_main_item_retailtopreview_world_toggle/main_item_toggle": T.PANEL - "storage_main_item_retailtopreview_world_toggle/contentPanel": T.STACK_PANEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel": T.STACK_PANEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/dummy_panel": T.PANEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/sync_retailtopreview_world_button": T.BUTTON - "storage_main_item_retailtopreview_world_toggle/contentPanel/dummy_panel": T.PANEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel": T.STACK_PANEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/dummy_panel": T.PANEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/sync_retailtopreview_world_description": T.LABEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/itemsPanel": T.STACK_PANEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel_dummy_panel": T.PANEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel": T.STACK_PANEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/dummy_panel": T.PANEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/sync_retailtopreview_world_conversion_description": T.LABEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel": T.IMAGE - "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/loading_retailtopreview_worlds_label": T.LABEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/padding": T.PANEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/progress_loading_bars": T.IMAGE - "storage_main_item_retailtopreview_world_toggle/padding": T.PANEL - retailtopreview_world_main_item_text: T.STACK_PANEL + "lock_icon": T.IMAGE, + "storage_header_panel": T.PANEL, + "storage_header_panel/header_panel": T.STACK_PANEL, + "storage_header_panel/header_panel/file_storage_dropdown": T.PANEL, + "storage_header_panel/header_panel/file_storage_dropdown_edu": T.PANEL, + "storage_header_panel/header_panel/clear_cache_button_panel": T.PANEL, + "storage_header_panel/header_panel/clear_cache_button_panel/clear_cache_button": T.BUTTON, + "storage_header_panel/header_panel/clear_download_cache_button_panel": T.PANEL, + "storage_header_panel/header_panel/clear_download_cache_button_panel/clear_download_button": T.BUTTON, + "storage_header_panel/header_panel/clear_screenshots_cache_button_panel": T.PANEL, + "storage_header_panel/header_panel/clear_screenshots_cache_button_panel/clear_screenshots_cache_button": T.BUTTON, + "storage_header_panel/header_panel/delete_local_screenshots_button_panel": T.PANEL, + "storage_header_panel/header_panel/delete_local_screenshots_button_panel/delete_local_screenshots_button": T.BUTTON, + "storage_header_panel/header_panel/panel": T.PANEL, + "storage_header_panel/header_panel/panel/multiselect_button": T.PANEL, + "x_button_image": T.IMAGE, + "storage_main_panel": T.PANEL, + "storage_main_panel/scroll_content": T.STACK_PANEL, + "storage_footer_panel": T.PANEL, + "storage_footer_panel/visibleContent": T.STACK_PANEL, + "storage_footer_panel/visibleContent/delete_button": T.BUTTON, + "storage_footer_panel/visibleContent/share_button": T.BUTTON, + "delete_checkbox": T.PANEL, + "delete_checkbox/selected_checkbox_image": T.IMAGE, + "generic_button": T.IMAGE, + "generic_button/picture": T.IMAGE, + "generic_button/text": T.LABEL, + "common_scroll_pane": T.PANEL, + "common_label": T.LABEL, + "main_content_panel": T.STACK_PANEL, + "main_content_panel/panel": T.STACK_PANEL, + "main_content_panel/panel/spacing": T.PANEL, + "main_content_panel/panel/delete_checkbox": T.PANEL, + "main_content_panel/panel/image_panel": T.PANEL, + "main_content_panel/panel/image_panel/image_border": T.IMAGE, + "main_content_panel/panel/image_panel/image_border/image": T.IMAGE, + "main_content_panel/panel/text_panel_offset": T.PANEL, + "main_content_panel/panel/text_panel_offset/text_panel": T.PANEL, + "main_content_panel/panel/text_panel_offset/text_panel/0": T.UNKNOWN, + "common_main_button": T.PANEL, + "common_main_button/background": T.IMAGE, + "common_main_button/border": T.IMAGE, + "common_main_button/main_content_panel": T.STACK_PANEL, + "base_glyph": T.STACK_PANEL, + "base_glyph/image": T.IMAGE, + "base_glyph/padding": T.PANEL, + "main_item_text": T.STACK_PANEL, + "grey_button": T.PANEL, + "icon_item_text": T.PANEL, + "world_item_text": T.PANEL, + "storage_main_item_toggle": T.STACK_PANEL, + "storage_main_item_toggle/main_item_toggle": T.PANEL, + "storage_main_item_toggle/contentPanel": T.STACK_PANEL, + "storage_main_item_toggle/padding": T.PANEL, + "storage_scroll_pane": T.STACK_PANEL, + "storage_scroll_pane/category_stack_panel": T.STACK_PANEL, + "storage_scroll_pane/category_stack_panel/stack_panel": T.STACK_PANEL, + "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel": T.STACK_PANEL, + "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel/legacy_world_controls": T.STACK_PANEL, + "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel": T.STACK_PANEL, + "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel/retailtopreview_world_controls": T.STACK_PANEL, + "storage_scroll_pane/multiselect_padding": T.PANEL, + "world_controls": T.STACK_PANEL, + "world_template_controls": T.STACK_PANEL, + "resource_controls": T.STACK_PANEL, + "behavior_controls": T.STACK_PANEL, + "skin_controls": T.STACK_PANEL, + "cached_controls": T.STACK_PANEL, + "resource_sub_item": T.STACK_PANEL, + "resource_sub_item/dummy_panel": T.PANEL, + "resource_sub_item/main_panel": T.PANEL, + "resource_sub_item/main_panel/content": T.UNKNOWN, + "resource_toggle": T.STACK_PANEL, + "resource_toggle/content_toggle": T.TOGGLE, + "resource_toggle/content_toggle/default": T.UNKNOWN, + "resource_toggle/content_toggle/hover": T.UNKNOWN, + "resource_toggle/content_toggle/unchecked": T.UNKNOWN, + "resource_toggle/content_toggle/unchecked_hover": T.UNKNOWN, + "resource_toggle/item_button_panel": T.INPUT_PANEL, + "resource_toggle/item_button_panel/y_sizing_panel": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border": T.IMAGE, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel": T.STACK_PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_0": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/blank": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/generate_texture_list_button": T.BUTTON, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_1": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/delete_button": T.BUTTON, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_2": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/blank": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/share_button": T.BUTTON, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_3": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank_3": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_4": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/blank": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/dependency_button": T.BUTTON, + "sub_item_tray_button": T.BUTTON, + "glyph_sub_icon": T.IMAGE, + "sub_item_blank_button": T.PANEL, + "texture_icon_text": T.PANEL, + "texture_icon_sub_item": T.PANEL, + "version_sub_item": T.PANEL, + "pack_description_sub_item": T.PANEL, + "world_sub_text": T.PANEL, + "world_template_sub_text": T.PANEL, + "basic_sub_item": T.PANEL, + "dropdown_button": T.BUTTON, + "dropdown_button_content": T.STACK_PANEL, + "dropdown_button_content/image_panel": T.PANEL, + "dropdown_button_content/image_panel/icon": T.IMAGE, + "dropdown_button_content/text_panel": T.PANEL, + "dropdown_button_content/text_panel/main_label": T.LABEL, + "filter_options": T.INPUT_PANEL, + "filter_options/0": T.UNKNOWN, + "light_assets": T.PANEL, + "button_add": T.IMAGE, + "sort_panel": T.PANEL, + "sort_panel/default": T.PANEL, + "sort_toggle": T.TOGGLE, + "storage_scroll_panel": T.PANEL, + "storage_main_item_legacy_world_toggle": T.STACK_PANEL, + "storage_main_item_legacy_world_toggle/main_item_toggle": T.PANEL, + "storage_main_item_legacy_world_toggle/contentPanel": T.STACK_PANEL, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel": T.STACK_PANEL, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/dummy_panel": T.PANEL, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/sync_legacy_world_button": T.BUTTON, + "storage_main_item_legacy_world_toggle/contentPanel/dummy_panel": T.PANEL, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel": T.STACK_PANEL, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/dummy_panel": T.PANEL, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/sync_legacy_world_description": T.LABEL, + "storage_main_item_legacy_world_toggle/contentPanel/itemsPanel": T.STACK_PANEL, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel_dummy_panel": T.PANEL, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel": T.STACK_PANEL, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/dummy_panel": T.PANEL, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/sync_legacy_world_conversion_description": T.LABEL, + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel": T.IMAGE, + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/loading_legacy_worlds_label": T.LABEL, + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/padding": T.PANEL, + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/progress_loading_bars": T.IMAGE, + "storage_main_item_legacy_world_toggle/padding": T.PANEL, + "legacy_world_main_item_text": T.STACK_PANEL, + "storage_main_item_retailtopreview_world_toggle": T.STACK_PANEL, + "storage_main_item_retailtopreview_world_toggle/main_item_toggle": T.PANEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel": T.STACK_PANEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel": T.STACK_PANEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/dummy_panel": T.PANEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/sync_retailtopreview_world_button": T.BUTTON, + "storage_main_item_retailtopreview_world_toggle/contentPanel/dummy_panel": T.PANEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel": T.STACK_PANEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/dummy_panel": T.PANEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/sync_retailtopreview_world_description": T.LABEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/itemsPanel": T.STACK_PANEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel_dummy_panel": T.PANEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel": T.STACK_PANEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/dummy_panel": T.PANEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/sync_retailtopreview_world_conversion_description": T.LABEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel": T.IMAGE, + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/loading_retailtopreview_worlds_label": T.LABEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/padding": T.PANEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/progress_loading_bars": T.IMAGE, + "storage_main_item_retailtopreview_world_toggle/padding": T.PANEL, + "retailtopreview_world_main_item_text": T.STACK_PANEL, } export type StorageManagementPopupType = { - storage_dependency_modal: T.INPUT_PANEL - "storage_dependency_modal/base": T.UNKNOWN - "storage_dependency_modal/base/background_with_buttons": T.PANEL - "storage_dependency_modal/base/title": T.LABEL - "storage_dependency_modal/base/dependencies": T.PANEL - "storage_dependency_modal/base/two_buttons": T.PANEL - "storage_dependency_modal/base/two_buttons/disabled_left": T.UNKNOWN - "storage_dependency_modal/base/two_buttons/left": T.UNKNOWN - "storage_dependency_modal/base/two_buttons/right": T.UNKNOWN - storage_dependency_panel: T.PANEL - "storage_dependency_panel/scroll": T.PANEL - storage_dependency_scroll_panel: T.PANEL - dependency_item_content: T.PANEL - "dependency_item_content/content": T.UNKNOWN - dependency_scroll_pane: T.STACK_PANEL - "dependency_scroll_pane/main_label": T.LABEL - "dependency_scroll_pane/contentPanel": T.STACK_PANEL - dependency_item: T.PANEL - dependency_item_small: T.PANEL - dependency_resource_item: T.PANEL - dependency_resource_item_small: T.PANEL - dependency_sub_item: T.STACK_PANEL - "dependency_sub_item/border": T.IMAGE - "dependency_sub_item/border/stack": T.STACK_PANEL - "dependency_sub_item/border/stack/padding_0": T.PANEL - "dependency_sub_item/border/stack/wrapper": T.PANEL - "dependency_sub_item/border/stack/wrapper/dependency_item": T.PANEL - "dependency_sub_item/border/stack/panel_0": T.PANEL - "dependency_sub_item/border/stack/panel_0/main_label": T.LABEL - "dependency_sub_item/border/stack/contentPanel": T.STACK_PANEL - "dependency_sub_item/border/stack/panel_1": T.PANEL - "dependency_sub_item/border/stack/panel_1/remove_pack_button": T.BUTTON - "dependency_sub_item/border/stack/padding_1": T.PANEL - "dependency_sub_item/padding": T.PANEL - sharing_popup_content: T.PANEL + "storage_dependency_modal": T.INPUT_PANEL, + "storage_dependency_modal/base": T.UNKNOWN, + "storage_dependency_modal/base/background_with_buttons": T.PANEL, + "storage_dependency_modal/base/title": T.LABEL, + "storage_dependency_modal/base/dependencies": T.PANEL, + "storage_dependency_modal/base/two_buttons": T.PANEL, + "storage_dependency_modal/base/two_buttons/disabled_left": T.UNKNOWN, + "storage_dependency_modal/base/two_buttons/left": T.UNKNOWN, + "storage_dependency_modal/base/two_buttons/right": T.UNKNOWN, + "storage_dependency_panel": T.PANEL, + "storage_dependency_panel/scroll": T.PANEL, + "storage_dependency_scroll_panel": T.PANEL, + "dependency_item_content": T.PANEL, + "dependency_item_content/content": T.UNKNOWN, + "dependency_scroll_pane": T.STACK_PANEL, + "dependency_scroll_pane/main_label": T.LABEL, + "dependency_scroll_pane/contentPanel": T.STACK_PANEL, + "dependency_item": T.PANEL, + "dependency_item_small": T.PANEL, + "dependency_resource_item": T.PANEL, + "dependency_resource_item_small": T.PANEL, + "dependency_sub_item": T.STACK_PANEL, + "dependency_sub_item/border": T.IMAGE, + "dependency_sub_item/border/stack": T.STACK_PANEL, + "dependency_sub_item/border/stack/padding_0": T.PANEL, + "dependency_sub_item/border/stack/wrapper": T.PANEL, + "dependency_sub_item/border/stack/wrapper/dependency_item": T.PANEL, + "dependency_sub_item/border/stack/panel_0": T.PANEL, + "dependency_sub_item/border/stack/panel_0/main_label": T.LABEL, + "dependency_sub_item/border/stack/contentPanel": T.STACK_PANEL, + "dependency_sub_item/border/stack/panel_1": T.PANEL, + "dependency_sub_item/border/stack/panel_1/remove_pack_button": T.BUTTON, + "dependency_sub_item/border/stack/padding_1": T.PANEL, + "dependency_sub_item/padding": T.PANEL, + "sharing_popup_content": T.PANEL, } export type CommonStoreType = { - store_base_screen: T.SCREEN - label: T.LABEL - offer_image_panel: T.IMAGE - banner_fill: T.IMAGE - store_description_background: T.IMAGE - store_description_background_dark: T.IMAGE - text_style_label: T.PANEL - "text_style_label/text_label": T.LABEL - sdl_texture: T.IMAGE - store_offer_grid_button: T.BUTTON - "store_offer_grid_button/hover": T.PANEL - "store_offer_grid_button/hover/key_art_size_panel": T.PANEL - "store_offer_grid_button/hover/key_art_size_panel/key_art_frame": T.IMAGE - "store_offer_grid_button/pressed": T.PANEL - "store_offer_grid_button/pressed/key_art_size_panel": T.PANEL - "store_offer_grid_button/pressed/key_art_size_panel/key_art_frame": T.IMAGE - "store_offer_grid_button/icon_overlay_panel": T.PANEL - ribbon_bar_text_background: T.IMAGE - ribbon_bar_red_hover_text_background: T.IMAGE - store_background: T.IMAGE - coin_icon: T.IMAGE - tag: T.IMAGE - "tag/new_offer_label": T.LABEL - marketplace_error_icon: T.IMAGE - new_offer_icon: T.IMAGE - status_new_offer_icon: T.IMAGE - update_balloon_icon: T.IMAGE - icon_overlay_panel: T.PANEL - "icon_overlay_panel/icon_overlay_position_factory": T.COLLECTION_PANEL - icon_overlay_position_factory: T.COLLECTION_PANEL - top_left_icon_factory: T.STACK_PANEL - top_middle_icon_factory: T.STACK_PANEL - top_right_icon_factory: T.STACK_PANEL - left_middle_icon_factory: T.STACK_PANEL - center_icon_factory: T.STACK_PANEL - right_middle_icon_factory: T.STACK_PANEL - bottom_left_icon_factory: T.STACK_PANEL - bottom_middle_icon_factory: T.STACK_PANEL - bottom_right_icon_factory: T.STACK_PANEL - icon_factory: T.STACK_PANEL - new_offer_icon_panel: T.PANEL - "new_offer_icon_panel/new_icon": T.IMAGE - update_offer_icon_panel: T.PANEL - "update_offer_icon_panel/update_icon": T.IMAGE - icon_overlay_image_panel: T.PANEL - "icon_overlay_image_panel/image_stack_panel": T.STACK_PANEL - "icon_overlay_image_panel/image_stack_panel/icon": T.IMAGE - "icon_overlay_image_panel/image_stack_panel/padding": T.PANEL - icon_overlay_sdl_padding: T.PANEL - status_icon_overlay: T.IMAGE - "status_icon_overlay/icon_overlay_label_panel": T.STACK_PANEL - "status_icon_overlay/icon_overlay_label_panel/left_margin_padding": T.PANEL - "status_icon_overlay/icon_overlay_label_panel/left_padding_1": T.PANEL - "status_icon_overlay/icon_overlay_label_panel/left_padding_2": T.PANEL - "status_icon_overlay/icon_overlay_label_panel/icon_panel": T.PANEL - "status_icon_overlay/icon_overlay_label_panel/icon_panel/icon_overlay_label": T.LABEL - "status_icon_overlay/icon_overlay_label_panel/right_padding_1": T.PANEL - "status_icon_overlay/icon_overlay_label_panel/right_padding_2": T.PANEL - "status_icon_overlay/icon_overlay_label_panel/right_margin_padding": T.PANEL - status_icon_panel: T.PANEL - "status_icon_panel/new_offer_icon": T.IMAGE - "status_icon_panel/update_icon": T.IMAGE - prompt_icon: T.IMAGE - up_arrow_icon: T.IMAGE - plus_icon: T.IMAGE - bang_icon: T.IMAGE - user_icon_small: T.IMAGE - user_icon_hover: T.IMAGE - gamepad_store_helper: T.PANEL - purchase_coins_panel: T.PANEL - "purchase_coins_panel/plus_button": T.BUTTON - inventory_panel: T.INPUT_PANEL - "inventory_panel/inventory_button": T.BUTTON - progress_loading_bars: T.IMAGE - progress_loading_spinner: T.IMAGE - progress_loading: T.PANEL - "progress_loading/centerer": T.PANEL - "progress_loading/centerer/progress_loading_spinner": T.IMAGE - "progress_loading/progress_loading_outline": T.IMAGE - "progress_loading/stack_panel": T.STACK_PANEL - "progress_loading/stack_panel/top_panel": T.STACK_PANEL - "progress_loading/stack_panel/top_panel/error_glyph_panel": T.PANEL - "progress_loading/stack_panel/top_panel/error_glyph_panel/error_image": T.IMAGE - "progress_loading/stack_panel/top_panel/padding": T.PANEL - "progress_loading/stack_panel/top_panel/store_failure_text": T.LABEL - "progress_loading/stack_panel/padding": T.PANEL - "progress_loading/stack_panel/image": T.IMAGE - "progress_loading/store_failure_code": T.LABEL - store_empty_progress_bar_icon: T.IMAGE - store_full_progress_bar_icon: T.IMAGE - store_progress_bar_nub: T.IMAGE - store_progress_bar_icon: T.PANEL - "store_progress_bar_icon/empty_progress_bar_icon": T.IMAGE - "store_progress_bar_icon/progress_percent_panel": T.PANEL - "store_progress_bar_icon/progress_percent_panel/full_progress_bar_icon": T.IMAGE - "store_progress_bar_icon/progress_percent_panel/progress_bar_nub": T.IMAGE - screen_contents_with_gamepad_helpers: T.STACK_PANEL - "screen_contents_with_gamepad_helpers/dialog_panel": T.PANEL - "screen_contents_with_gamepad_helpers/dialog_panel/dialog": T.UNKNOWN - "screen_contents_with_gamepad_helpers/padding": T.PANEL - "screen_contents_with_gamepad_helpers/gamepad_helpers_panel": T.PANEL - "screen_contents_with_gamepad_helpers/gamepad_helpers_panel/gamepad_helpers_a_and_b": T.STACK_PANEL - text_strike_through: T.IMAGE - markdown_banner: T.IMAGE - markdown_triangle: T.IMAGE - timer_panel: T.PANEL - "timer_panel/timer": T.LABEL - store_offer_type_icon: T.IMAGE - addon_pack_icon: T.IMAGE - addon_pack_small_icon: T.IMAGE - realms_plus_icon: T.IMAGE - resource_pack_icon: T.IMAGE - resource_pack_small_icon: T.IMAGE - skinpack_icon: T.IMAGE - skinpack_small_icon: T.IMAGE - world_icon: T.IMAGE - world_small_icon: T.IMAGE - mashup_icon: T.IMAGE - mashup_small_icon: T.IMAGE - persona_icon: T.IMAGE - persona_small_icon: T.IMAGE - small_padding_panel: T.PANEL - resource_pack_small_icon_with_buffer: T.STACK_PANEL - "resource_pack_small_icon_with_buffer/resource_pack_small_icon": T.IMAGE - "resource_pack_small_icon_with_buffer/small_padding_panel": T.PANEL - addon_pack_small_icon_with_buffer: T.STACK_PANEL - "addon_pack_small_icon_with_buffer/addon_pack_small_icon": T.IMAGE - "addon_pack_small_icon_with_buffer/small_padding_panel": T.PANEL - skinpack_small_icon_with_buffer: T.STACK_PANEL - "skinpack_small_icon_with_buffer/skinpack_small_icon": T.IMAGE - "skinpack_small_icon_with_buffer/small_padding_panel": T.PANEL - world_small_icon_with_buffer: T.STACK_PANEL - "world_small_icon_with_buffer/world_small_icon": T.IMAGE - "world_small_icon_with_buffer/small_padding_panel": T.PANEL - mashup_small_icon_with_buffer: T.STACK_PANEL - "mashup_small_icon_with_buffer/mashup_small_icon": T.IMAGE - "mashup_small_icon_with_buffer/small_padding_panel": T.PANEL - persona_small_icon_with_buffer: T.STACK_PANEL - "persona_small_icon_with_buffer/persona_small_icon": T.IMAGE - "persona_small_icon_with_buffer/small_padding_panel": T.PANEL - realms_icon: T.IMAGE - realms_banner_icon: T.IMAGE - csb_banner_icon: T.IMAGE - csb_expiration: T.PANEL - "csb_expiration/background": T.IMAGE - "csb_expiration/contents": T.STACK_PANEL - "csb_expiration/contents/csb_icon": T.IMAGE - "csb_expiration/contents/pad_0": T.PANEL - "csb_expiration/contents/text_panel": T.PANEL - "csb_expiration/contents/text_panel/text": T.LABEL - pack_icon_stack: T.PANEL - "pack_icon_stack/pack_icon_stack_factory": T.STACK_PANEL - pack_icon_stack_factory: T.STACK_PANEL - markdown_background: T.STACK_PANEL - "markdown_background/banner_panel": T.STACK_PANEL - "markdown_background/banner_panel/banner": T.IMAGE - "markdown_background/banner_panel/banner/banner_content_stack_panel": T.STACK_PANEL - "markdown_background/banner_panel/banner/banner_content_stack_panel/timer_panel": T.PANEL - "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel": T.PANEL - "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel/pack_icon_stack": T.PANEL - "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel": T.PANEL - "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel/markdown_label": T.UNKNOWN - "markdown_background/triangle_panel": T.PANEL - "markdown_background/triangle_panel/triangle": T.IMAGE - store_top_bar: T.IMAGE - store_top_bar_filler: T.IMAGE - direction_button_panel: T.PANEL - "direction_button_panel/chevron_image": T.IMAGE - cycle_pack_button: T.BUTTON - cycle_pack_left_button: T.BUTTON - cycle_pack_right_button: T.BUTTON - restore_purchases: T.BUTTON - back_content_panel: T.PANEL - "back_content_panel/back_button": T.STACK_PANEL - unlock_with_coins_button_stack_panel: T.STACK_PANEL - "unlock_with_coins_button_stack_panel/coin_panel": T.PANEL - "unlock_with_coins_button_stack_panel/coin_panel/coin": T.IMAGE - "unlock_with_coins_button_stack_panel/padding_1": T.PANEL - "unlock_with_coins_button_stack_panel/unlock_text": T.LABEL - store_dialog_with_coin_header: T.PANEL - store_coins_title_label: T.LABEL - search_header_stack: T.STACK_PANEL - "search_header_stack/gamepad_helper_y_alignment_hack": T.PANEL - "search_header_stack/gamepad_helper_y_alignment_hack/gamepad_helper_y": T.STACK_PANEL - "search_header_stack/search_header_text_box_panel": T.PANEL - "search_header_stack/search_header_text_box_panel/search_header_text_box": T.EDIT_BOX - "search_header_stack/search_header_text_box_panel/clear_button": T.BUTTON - "search_header_stack/store_layout_search_button": T.BUTTON - "search_header_stack/padding0": T.PANEL - sdl_store_header_with_coins: T.PANEL - "sdl_store_header_with_coins/sdl_store_header_with_coins_content": T.PANEL - top_bar_with_coins_panel: T.PANEL - "top_bar_with_coins_panel/top_bar": T.IMAGE - "top_bar_with_coins_panel/top_bar/title_stack_panel": T.STACK_PANEL - "top_bar_with_coins_panel/top_bar/title_stack_panel/padding1": T.PANEL - "top_bar_with_coins_panel/top_bar/title_stack_panel/back_button_content_panel": T.PANEL - "top_bar_with_coins_panel/top_bar/title_stack_panel/padding2": T.PANEL - "top_bar_with_coins_panel/top_bar/title_stack_panel/header_title_panel": T.PANEL - "top_bar_with_coins_panel/top_bar/title_stack_panel/padding3": T.PANEL - "top_bar_with_coins_panel/top_bar/title_stack_panel/padding4": T.PANEL - "top_bar_with_coins_panel/top_bar/title_stack_panel/status_and_coins": T.STACK_PANEL - "top_bar_with_coins_panel/top_bar/title_stack_panel/padding5": T.PANEL - "top_bar_with_coins_panel/top_bar/title_stack_panel/search_header_stack": T.STACK_PANEL - sdl_store_header_with_coins_content: T.PANEL - "sdl_store_header_with_coins_content/top_bar_coins": T.PANEL - store_header_with_coins: T.STACK_PANEL - "store_header_with_coins/top_bar_coins": T.PANEL - "store_header_with_coins/child_control": T.UNKNOWN - status_with_coins: T.STACK_PANEL - "status_with_coins/inventory_panel": T.PANEL - "status_with_coins/inventory_panel/inventory_button": T.INPUT_PANEL - "status_with_coins/padding0": T.PANEL - "status_with_coins/coin_balance_panel": T.PANEL - "status_with_coins/coin_balance_panel/coin_balance_panel": T.PANEL - "status_with_coins/padding1": T.PANEL - coins_with_title: T.PANEL - "coins_with_title/coin_balance_panel": T.PANEL - "coins_with_title/title_panel": T.UNKNOWN - wallet_button_panel: T.STACK_PANEL - "wallet_button_panel/purchase_coin_panel_alignment_hack": T.PANEL - "wallet_button_panel/purchase_coin_panel_alignment_hack/purchase_coin_panel": T.IMAGE - "wallet_button_panel/plus_image": T.PANEL - "wallet_button_panel/gamepad_helper_x_alignment_hack": T.PANEL - "wallet_button_panel/gamepad_helper_x_alignment_hack/gamepad_helper_x": T.STACK_PANEL - coin_balance_panel: T.IMAGE - "coin_balance_panel/coin_purchase_in_progress_panel": T.PANEL - "coin_balance_panel/coin_purchase_in_progress_panel/coin_purchase_in_progress": T.IMAGE - "coin_balance_panel/horizontal_coin_stack": T.STACK_PANEL - "coin_balance_panel/horizontal_coin_stack/padding": T.PANEL - "coin_balance_panel/horizontal_coin_stack/coin_icon": T.IMAGE - "coin_balance_panel/horizontal_coin_stack/small_filler": T.PANEL - "coin_balance_panel/horizontal_coin_stack/coin_text_holder": T.PANEL - "coin_balance_panel/horizontal_coin_stack/coin_text_holder/coin_balance_text": T.LABEL - my_account_button_content: T.PANEL - "my_account_button_content/my_account_content": T.STACK_PANEL - "my_account_button_content/my_account_content/user_icon": T.IMAGE - "my_account_button_content/my_account_content/my_account_label_panel": T.STACK_PANEL - "my_account_button_content/my_account_content/my_account_label_panel/padding": T.PANEL - "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label": T.PANEL - "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label/my_account_label": T.LABEL - inventory_button_panel: T.STACK_PANEL - "inventory_button_panel/inventory_button": T.PANEL - "inventory_button_panel/inventory_button/status_panel": T.STACK_PANEL - inventory_button: T.STACK_PANEL - "inventory_button/my_content_button": T.PANEL - "inventory_button/my_content_button/library_icon": T.IMAGE - "inventory_button/my_content_button/library_icon_bevel": T.IMAGE - "inventory_button/updates_with_bevel": T.PANEL - "inventory_button/updates_with_bevel/update_glyph": T.IMAGE - "inventory_button/updates_with_bevel/updates_bevel": T.IMAGE - "inventory_button/label_alignment_pannel": T.PANEL - "inventory_button/label_alignment_pannel/label_panel": T.IMAGE - "inventory_button/label_alignment_pannel/label_panel/inventory_label": T.LABEL - xbl_button_content: T.STACK_PANEL - "xbl_button_content/xbl_icon": T.IMAGE - "xbl_button_content/padding_0": T.PANEL - "xbl_button_content/disconnected_label": T.LABEL - "xbl_button_content/padding_1": T.PANEL - "xbl_button_content/error_icon_panel": T.PANEL - "xbl_button_content/error_icon_panel/error_icon": T.IMAGE - disclaimer_panel: T.PANEL - "disclaimer_panel/legal_text_label": T.LABEL - grey_bar_panel: T.STACK_PANEL - "grey_bar_panel/color_panel": T.PANEL - "grey_bar_panel/color_panel/grey_bar": T.IMAGE - "grey_bar_panel/color_panel/green_bar": T.IMAGE - "grey_bar_panel/pad": T.PANEL - tab_name_panel: T.STACK_PANEL - "tab_name_panel/bar_panel": T.PANEL - "tab_name_panel/bar_panel/green_bar": T.IMAGE - "tab_name_panel/button_panel": T.PANEL - "tab_name_panel/button_panel/tab_name_button_grey": T.BUTTON - "tab_name_panel/button_panel/tab_name_button_white": T.BUTTON - "tab_name_panel/pad_1": T.PANEL - store_offer_item_title_panel: T.PANEL - "store_offer_item_title_panel/offer_title": T.LABEL - store_offer_item_creator_panel: T.STACK_PANEL - "store_offer_item_creator_panel/pack_icon_panel": T.PANEL - "store_offer_item_creator_panel/pack_icon_panel/pack_icon_stack": T.PANEL - "store_offer_item_creator_panel/creator_label": T.LABEL - store_offer_ratings: T.PANEL - "store_offer_ratings/rating_text_panel": T.STACK_PANEL - vertical_store_offer_price_info_panel: T.PANEL - "vertical_store_offer_price_info_panel/sales_banner": T.STACK_PANEL - "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels": T.STACK_PANEL - "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/markdown_panel": T.PANEL - "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/padding_markdown_panel_right": T.PANEL - "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel": T.PANEL - "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel/offer_status_text": T.LABEL - "vertical_store_offer_price_info_panel/sales_banner/padding_to_right": T.PANEL - store_offer_price_info_panel: T.STACK_PANEL - "store_offer_price_info_panel/sales_banner": T.STACK_PANEL - "store_offer_price_info_panel/sales_banner/sales_markdown_percentage_panel": T.PANEL - "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown": T.STACK_PANEL - "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/fill_markdown_panel_left": T.PANEL - "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/markdown_panel": T.PANEL - "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/padding_markdown_panel_right": T.PANEL - "store_offer_price_info_panel/sales_banner/coin_panel": T.PANEL - "store_offer_price_info_panel/sales_banner/coin_panel/offer_coin_icon": T.IMAGE - "store_offer_price_info_panel/sales_banner/padding_3": T.PANEL - "store_offer_price_info_panel/sales_banner/offer_prompt_panel": T.PANEL - store_offer_sales_markdown_percentage_panel: T.PANEL - "store_offer_sales_markdown_percentage_panel/markdown_background": T.STACK_PANEL - store_offer_prompt_panel: T.PANEL - "store_offer_prompt_panel/offer_status_text": T.LABEL - featured_key_art: T.PANEL - "featured_key_art/bg": T.IMAGE - "featured_key_art/bg/featured_key_art": T.IMAGE - "featured_key_art/bg/progress_loading": T.PANEL - "featured_key_art/bg/new_offer_icon": T.IMAGE - "featured_key_art/focus_border": T.IMAGE - price_panel: T.STACK_PANEL - "price_panel/featured_icon_panel": T.PANEL - "price_panel/featured_icon_panel/featured_offer_coin_icon": T.IMAGE - "price_panel/price_label_panel": T.PANEL - "price_panel/price_label_panel/price": T.LABEL - "price_panel/padding": T.PANEL - vertical_padding_4: T.PANEL - vertical_padding_2: T.PANEL - sdl_vertical_padding_fill: T.PANEL - footer: T.PANEL - "footer/restore_purchases": T.BUTTON - store_section_panel: T.PANEL - "store_section_panel/store_section_panel_outline": T.IMAGE - "store_section_panel/section_panel": T.STACK_PANEL - "store_section_panel/section_panel/header": T.PANEL - "store_section_panel/section_panel/section_panel": T.PANEL - "store_section_panel/section_panel/section_panel/background": T.IMAGE - store_section_factory: T.STACK_PANEL - store_static_section_factory: T.STACK_PANEL - rtx_label: T.PANEL - "rtx_label/banner": T.IMAGE - "rtx_label/banner/icon": T.IMAGE - subscription_chevron: T.PANEL - "subscription_chevron/subscription_chevron_panel": T.PANEL - "subscription_chevron/subscription_chevron_panel/csb_chevron": T.PANEL - "subscription_chevron/subscription_chevron_panel/sales_banner_background": T.IMAGE - csb_banner: T.PANEL - "csb_banner/banner": T.IMAGE - pagination_content_panel: T.STACK_PANEL - "pagination_content_panel/padding_left": T.PANEL - "pagination_content_panel/first_page_button": T.BUTTON - "pagination_content_panel/pagination_middle_buttons_panel": T.STACK_PANEL - "pagination_content_panel/padding_right_fill": T.PANEL - "pagination_content_panel/go_to_top_button": T.BUTTON - pagination_panel: T.STACK_PANEL - "pagination_panel/top_padding": T.PANEL - "pagination_panel/pagination_content": T.STACK_PANEL - "pagination_panel/bottom_padding": T.PANEL - store_offer_grid_panel_content: T.STACK_PANEL - "store_offer_grid_panel_content/header_centerer_panel": T.PANEL - "store_offer_grid_panel_content/store_offer_grid_factory": T.COLLECTION_PANEL - "store_offer_grid_panel_content/pagination_centerer": T.PANEL - "store_offer_grid_panel_content/divider": T.STACK_PANEL - store_offer_grid_panel: T.PANEL - pagination_top_button_panel: T.PANEL - "pagination_top_button_panel/top_button_image": T.IMAGE - pagination_middle_buttons_panel: T.STACK_PANEL - "pagination_middle_buttons_panel/previous_page_button": T.BUTTON - "pagination_middle_buttons_panel/current_page_number_panel": T.PANEL - "pagination_middle_buttons_panel/current_page_number_panel/current_page_number": T.LABEL - "pagination_middle_buttons_panel/next_page_button": T.BUTTON - vertical_store_offer_grid_panel: T.STACK_PANEL - "vertical_store_offer_grid_panel/header": T.PANEL - "vertical_store_offer_grid_panel/centering_panel": T.PANEL - "vertical_store_offer_grid_panel/centering_panel/vertical_store_offer_grid_content": T.GRID - "vertical_store_offer_grid_panel/padding_0": T.PANEL - "vertical_store_offer_grid_panel/divider": T.STACK_PANEL - carousel_row_panel: T.STACK_PANEL - "carousel_row_panel/top_panel": T.STACK_PANEL - "carousel_row_panel/top_panel/pad_0": T.PANEL - "carousel_row_panel/top_panel/tab_names_factory_panel": T.STACK_PANEL - "carousel_row_panel/top_padding": T.PANEL - "carousel_row_panel/middle_panel": T.STACK_PANEL - "carousel_row_panel/middle_panel/left_button_panel": T.PANEL - "carousel_row_panel/middle_panel/left_button_panel/left_button": T.BUTTON - "carousel_row_panel/middle_panel/left_button_panel/left_bumper": T.STACK_PANEL - "carousel_row_panel/middle_panel/main_panel_factory": T.STACK_PANEL - "carousel_row_panel/middle_panel/right_button_panel": T.PANEL - "carousel_row_panel/middle_panel/right_button_panel/right_button": T.BUTTON - "carousel_row_panel/middle_panel/right_button_panel/right_bumper": T.STACK_PANEL - "carousel_row_panel/bottom_panel": T.PANEL - "carousel_row_panel/bottom_panel/grey_bar_factory_panel": T.STACK_PANEL - "carousel_row_panel/bottom_padding": T.PANEL - "carousel_row_panel/divider_panel": T.PANEL - "carousel_row_panel/divider_panel/divider": T.PANEL - carousel_factory: T.STACK_PANEL - hero_row_l2_panel: T.STACK_PANEL - "hero_row_l2_panel/header": T.PANEL - "hero_row_l2_panel/centering_panel": T.PANEL - "hero_row_l2_panel/centering_panel/l2_featured_stack": T.STACK_PANEL - "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_0": T.PANEL - "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_1": T.PANEL - "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_1": T.PANEL - "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_2": T.PANEL - "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_2": T.PANEL - "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_3": T.PANEL - "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_3": T.PANEL - "hero_row_l2_panel/padding_0": T.PANEL - "hero_row_l2_panel/divider": T.STACK_PANEL - blade_row_key_art: T.PANEL - "blade_row_key_art/blade_row_key_art_image": T.IMAGE - "blade_row_key_art/blade_row_key_art_image/key_art_border": T.IMAGE - one_key_art_screenshot: T.IMAGE - one_key_art_screenshot_panel: T.PANEL - "one_key_art_screenshot_panel/blade_offer_frame": T.UNKNOWN - "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot": T.IMAGE - "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot/one_key_art_frame": T.IMAGE - screenshots_grid: T.COLLECTION_PANEL - "screenshots_grid/screenshot_1": T.PANEL - "screenshots_grid/screenshot_2": T.PANEL - "screenshots_grid/screenshot_3": T.PANEL - "screenshots_grid/screenshot_4": T.PANEL - blade_offer_details_title: T.LABEL - blade_offer_sale_markdown: T.LABEL - blade_offer_description_details: T.STACK_PANEL - "blade_offer_description_details/blade_title_stack": T.STACK_PANEL - "blade_offer_description_details/blade_title_stack/blade_title": T.LABEL - "blade_offer_description_details/blade_offer_creator_label": T.STACK_PANEL - "blade_offer_description_details/blade_offer_description_padding_2": T.PANEL - "blade_offer_description_details/ratings_and_coins": T.STACK_PANEL - "blade_offer_description_details/ratings_and_coins/subscription_panel": T.PANEL - "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel": T.PANEL - "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel/blade_markdown_background": T.STACK_PANEL - "blade_offer_description_details/ratings_and_coins/ratings_panel": T.PANEL - "blade_offer_description_details/ratings_and_coins/ratings_panel/blade_ratings": T.PANEL - "blade_offer_description_details/ratings_and_coins/blade_rating_count_panel": T.PANEL - "blade_offer_description_details/ratings_and_coins/fill_padding": T.PANEL - "blade_offer_description_details/ratings_and_coins/blade_offer_price_markdown_panel": T.PANEL - "blade_offer_description_details/ratings_and_coins/price_panel": T.PANEL - "blade_offer_description_details/ratings_and_coins/price_panel/price": T.STACK_PANEL - "blade_offer_description_details/ratings_and_coins/price_panel_padding_right": T.PANEL - "blade_offer_description_details/blade_offer_description_padding_3": T.PANEL - screenshots_and_offer_details_panel: T.PANEL - "screenshots_and_offer_details_panel/blade_offer_screenshots_grid": T.COLLECTION_PANEL - "screenshots_and_offer_details_panel/blade_offer_description_area": T.IMAGE - "screenshots_and_offer_details_panel/blade_offer_description_area/blade_offer_description_border": T.IMAGE - "screenshots_and_offer_details_panel/blade_offer_description_area/hero_blade_offer_description_details": T.STACK_PANEL - blade_row_featured_panel: T.PANEL - "blade_row_featured_panel/blade_row_featured_key_art": T.PANEL - "blade_row_featured_panel/blade_offer_screenshots_and_details_panel": T.PANEL - transparent_content_button: T.BUTTON - hero_blade_row_panel: T.PANEL - "hero_blade_row_panel/blade_row_transparent_button": T.BUTTON - hero_row_panel: T.STACK_PANEL - "hero_row_panel/header": T.PANEL - "hero_row_panel/centering_panel": T.PANEL - "hero_row_panel/centering_panel/featured_stack": T.STACK_PANEL - "hero_row_panel/centering_panel/featured_stack/hero_offer": T.BUTTON - "hero_row_panel/centering_panel/featured_stack/padding_0": T.PANEL - "hero_row_panel/centering_panel/featured_stack/hero_offer_grid": T.STACK_PANEL - "hero_row_panel/padding_0": T.PANEL - "hero_row_panel/divider": T.STACK_PANEL - hero_offer: T.PANEL - "hero_offer/featured_key_art": T.PANEL - "hero_offer/rtx_label": T.PANEL - "hero_offer/offer_description_area": T.IMAGE - "hero_offer/offer_description_area/hero_offer_description_details": T.STACK_PANEL - hero_offer_details_title: T.LABEL - hero_offer_description_details: T.STACK_PANEL - "hero_offer_description_details/hero_title_stack": T.STACK_PANEL - "hero_offer_description_details/hero_title_stack/title": T.LABEL - "hero_offer_description_details/padding_5": T.PANEL - "hero_offer_description_details/progress": T.PANEL - "hero_offer_description_details/creator_label": T.STACK_PANEL - "hero_offer_description_details/padding_0": T.PANEL - "hero_offer_description_details/durable_offer_info_panel": T.STACK_PANEL - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel": T.STACK_PANEL - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/subscription_panel": T.PANEL - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel": T.PANEL - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner": T.STACK_PANEL - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel": T.PANEL - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel/ratings": T.PANEL - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/rating_count_panel": T.PANEL - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel": T.PANEL - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": T.PANEL - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/fill_padding": T.PANEL - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/offer_price_markdown_panel": T.PANEL - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel": T.PANEL - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel/price": T.STACK_PANEL - "hero_offer_description_details/padding_1": T.PANEL - hero_offer_download_progress: T.PANEL - "hero_offer_download_progress/label": T.LABEL - "hero_offer_download_progress/bar": T.PANEL - rating_text_panel: T.STACK_PANEL - "rating_text_panel/left_padding": T.PANEL - "rating_text_panel/star_panel": T.PANEL - "rating_text_panel/star_panel/rating_star": T.IMAGE - "rating_text_panel/middle_padding": T.PANEL - "rating_text_panel/rating_label": T.LABEL - ratings_description: T.PANEL - "ratings_description/rating_text_panel": T.STACK_PANEL - store_rating_count_panel: T.PANEL - "store_rating_count_panel/rating_count_text": T.LABEL - hero_offer_grid: T.STACK_PANEL - "hero_offer_grid/row_1": T.STACK_PANEL - "hero_offer_grid/row_1/offer_1": T.PANEL - "hero_offer_grid/row_1/padding_0": T.PANEL - "hero_offer_grid/row_1/offer_2": T.PANEL - "hero_offer_grid/padding_0": T.PANEL - "hero_offer_grid/row_2": T.STACK_PANEL - "hero_offer_grid/row_2/offer_1": T.PANEL - "hero_offer_grid/row_2/padding_0": T.PANEL - "hero_offer_grid/row_2/offer_2": T.PANEL - offer_download_progress: T.PANEL - "offer_download_progress/label": T.LABEL - "offer_download_progress/bar": T.PANEL - banner_button: T.PANEL - sdl_text_aligned_panel: T.STACK_PANEL - sdl_text_minecraftTen_aligned_panel: T.STACK_PANEL - sdl_content_aligned_panel: T.STACK_PANEL - "sdl_content_aligned_panel/left__padding_panel": T.PANEL - "sdl_content_aligned_panel/control": T.UNKNOWN - "sdl_content_aligned_panel/right_padding_panel": T.PANEL - sdl_aligned_text: T.LABEL - sdl_aligned_minecraftTen_text: T.LABEL - content_offer_key_art: T.IMAGE - vertical_content_offer_header: T.IMAGE - "vertical_content_offer_header/header": T.STACK_PANEL - vertical_content_offer_panel: T.STACK_PANEL - vertical_offer_grid_panel: T.PANEL - offer_content: T.PANEL - "offer_content/offer_item": T.PANEL - vertical_offer_content: T.PANEL - "vertical_offer_content/offer_item": T.PANEL - vertical_coin_offer_content: T.PANEL - "vertical_coin_offer_content/offer_item": T.PANEL - store_offer_key_art: T.IMAGE - store_offer_grid_show_more: T.PANEL - "store_offer_grid_show_more/frame": T.IMAGE - "store_offer_grid_show_more/frame/title": T.LABEL - "store_offer_grid_show_more/offer_button": T.BUTTON - "store_offer_grid_show_more/offer_button/hover": T.IMAGE - "store_offer_grid_show_more/offer_button/hover/key_art_size_panel": T.PANEL - "store_offer_grid_show_more/offer_button/pressed": T.IMAGE - "store_offer_grid_show_more/offer_button/pressed/key_art_size_panel": T.PANEL - persona_grid_show_more: T.BUTTON - row_offer_sale_markdown: T.LABEL - discount_label: T.STACK_PANEL - "discount_label/label_panel": T.PANEL - "discount_label/label_panel/label": T.LABEL - "discount_label/icon_panel": T.PANEL - "discount_label/icon_panel/icon": T.IMAGE - hero_offer_sale_markdown: T.LABEL - offer_price_markdown_panel: T.PANEL - "offer_price_markdown_panel/offer_price": T.LABEL - "offer_price_markdown_panel/offer_price/text_strike_through": T.IMAGE - store_offer_title: T.LABEL - store_offer_key_art_frame: T.IMAGE - "store_offer_key_art_frame/key_art": T.IMAGE - "store_offer_key_art_frame/key_art/key_art_frame": T.IMAGE - "store_offer_key_art_frame/key_art/csb_expiration_banner": T.PANEL - "store_offer_key_art_frame/progress_loading": T.PANEL - vertical_store_offer_grid_item: T.PANEL - "vertical_store_offer_grid_item/frame": T.IMAGE - "vertical_store_offer_grid_item/frame/horizontal_stack_panel": T.STACK_PANEL - "vertical_store_offer_grid_item/frame/offer_button": T.BUTTON - "vertical_store_offer_grid_item/dark_frame": T.IMAGE - "vertical_store_offer_grid_item/dark_frame/horizontal_stack_panel": T.STACK_PANEL - "vertical_store_offer_grid_item/dark_frame/offer_button": T.BUTTON - vertical_store_offer_grid_inside_frame: T.STACK_PANEL - "vertical_store_offer_grid_inside_frame/key_art_size_panel": T.PANEL - "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art_frame": T.IMAGE - "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art": T.IMAGE - "vertical_store_offer_grid_inside_frame/offer_details_general_panel": T.PANEL - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel": T.STACK_PANEL - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding": T.PANEL - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding/title": T.PANEL - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding": T.PANEL - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding/creator_label": T.STACK_PANEL - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding": T.STACK_PANEL - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/ratings": T.PANEL - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/rating_and_price_padding": T.PANEL - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/offer_price_info_panel": T.PANEL - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/right_side_padding": T.PANEL - vertical_store_coin_offer_grid_item: T.PANEL - "vertical_store_coin_offer_grid_item/frame": T.IMAGE - "vertical_store_coin_offer_grid_item/frame/horizontal_stack_panel": T.STACK_PANEL - "vertical_store_coin_offer_grid_item/dark_frame": T.IMAGE - "vertical_store_coin_offer_grid_item/dark_frame/horizontal_stack_panel": T.STACK_PANEL - "vertical_store_coin_offer_grid_item/dark_frame/offer_button": T.BUTTON - vertical_coin_offer_grid_inside_frame: T.STACK_PANEL - "vertical_coin_offer_grid_inside_frame/key_art_size_panel": T.PANEL - "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art_frame": T.IMAGE - "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art": T.IMAGE - "vertical_coin_offer_grid_inside_frame/padding": T.PANEL - "vertical_coin_offer_grid_inside_frame/coin_panel": T.PANEL - "vertical_coin_offer_grid_inside_frame/coin_panel/offer_coin_icon": T.IMAGE - "vertical_coin_offer_grid_inside_frame/Minecoins_panel": T.PANEL - "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel": T.STACK_PANEL - "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding": T.PANEL - "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel": T.PANEL - "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel/minecoins_offer_status_text": T.LABEL - "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding": T.PANEL - "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding/title": T.PANEL - offer_prompt_panel: T.STACK_PANEL - "offer_prompt_panel/coin_panel": T.PANEL - "offer_prompt_panel/coin_panel/offer_coin_icon": T.IMAGE - "offer_prompt_panel/padding_3": T.PANEL - "offer_prompt_panel/offer_status_text_panel": T.PANEL - "offer_prompt_panel/offer_status_text_panel/offer_status_text": T.LABEL - store_offer_grid_item: T.PANEL - "store_offer_grid_item/frame": T.UNKNOWN - "store_offer_grid_item/frame/key_art": T.IMAGE - "store_offer_grid_item/frame/key_art/key_art_frame": T.IMAGE - "store_offer_grid_item/frame/key_art/csb_plus_expiration_banner": T.PANEL - "store_offer_grid_item/frame/progress_loading": T.PANEL - "store_offer_grid_item/frame/progress": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel": T.STACK_PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel": T.STACK_PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/title": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/creator_label": T.STACK_PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/offer_price_info_panel": T.STACK_PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/no_durable_status_padding": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel": T.STACK_PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner": T.STACK_PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel/markdown_banner": T.STACK_PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/ratings": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rating_count_panel": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel": T.STACK_PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel/sale_timer": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_2": T.PANEL - "store_offer_grid_item/frame/offer_button": T.BUTTON - thumbnail_only_offer: T.PANEL - "thumbnail_only_offer/frame": T.UNKNOWN - "thumbnail_only_offer/frame/key_art": T.IMAGE - "thumbnail_only_offer/frame/key_art/key_art_frame": T.IMAGE - "thumbnail_only_offer/frame/key_art/offer_coin_icon": T.IMAGE - "thumbnail_only_offer/frame/offer_button": T.BUTTON - store_section_header_label: T.LABEL - persona_store_row_offer: T.PANEL - "persona_store_row_offer/persona_offer": T.UNKNOWN - thumnail_only_row_offer: T.PANEL - "thumnail_only_row_offer/generic_store_offer": T.PANEL - generic_store_row_offer_panel: T.PANEL - "generic_store_row_offer_panel/generic_store_offer": T.PANEL - store_row_show_more_button_panel: T.PANEL - "store_row_show_more_button_panel/show_more_button": T.PANEL - persona_show_more_button_panel: T.PANEL - "persona_show_more_button_panel/show_more_button": T.BUTTON - persona_grid_panel_stack: T.STACK_PANEL - "persona_grid_panel_stack/default_piece_button": T.UNKNOWN - "persona_grid_panel_stack/persona_grid_panel": T.PANEL - persona_grid_panel: T.PANEL - "persona_grid_panel/persona_offer_grid": T.GRID - store_offer_grid_factory: T.COLLECTION_PANEL - non_collection_item_horizontal_padding: T.PANEL - horizontal_store_offer_row_factory: T.STACK_PANEL - recently_viewed_row_panel: T.PANEL - static_offer_row_panel: T.PANEL - "static_offer_row_panel/store_row_dropdown_panel": T.PANEL - "static_offer_row_panel/store_row_dropdown_panel/store_row_section_panel": T.PANEL - store_row_panel: T.PANEL - "store_row_panel/store_row_dropdown_panel": T.PANEL - "store_row_panel/store_row_dropdown_panel/store_row_section_panel": T.PANEL - vertical_store_row_panel: T.PANEL - style_header: T.PANEL - "style_header/background": T.IMAGE - "style_header/style_header": T.STACK_PANEL - style_header_panel: T.STACK_PANEL - "style_header_panel/row_header": T.PANEL - "style_header_panel/row_header/label_panel": T.STACK_PANEL - "style_header_panel/row_header/label_panel/indent": T.PANEL - "style_header_panel/row_header/label_panel/row_header_label_centering_panel": T.PANEL - "style_header_panel/row_header/label_panel/row_header_label_centering_panel/row_header_label": T.LABEL - "style_header_panel/row_header/label_panel/on_sale_banner": T.IMAGE - "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel": T.PANEL - "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label": T.LABEL - "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/triangle": T.IMAGE - "style_header_panel/row_header/label_panel/time_remaining_label": T.LABEL - "style_header_panel/row_carousel_padding": T.PANEL - store_row_cycle_button_panel: T.PANEL - "store_row_cycle_button_panel/cycle_button_panel": T.STACK_PANEL - "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel": T.PANEL - "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel/page_indicator": T.PANEL - store_row: T.STACK_PANEL - "store_row/carousel_panel": T.PANEL - "store_row/carousel_panel/progress_loading": T.PANEL - "store_row/carousel_panel/cycle_pack_horizontal_stack": T.STACK_PANEL - "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_left_button_panel": T.PANEL - "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel": T.PANEL - "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel/offer_grid": T.STACK_PANEL - "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_right_button_panel": T.PANEL - "store_row/divider": T.STACK_PANEL - page_indicator_panel: T.PANEL - "page_indicator_panel/first_of_three": T.IMAGE - "page_indicator_panel/second_of_three": T.IMAGE - "page_indicator_panel/third_of_three": T.IMAGE - "page_indicator_panel/first_of_two": T.IMAGE - "page_indicator_panel/second_of_two": T.IMAGE - page_indicator: T.IMAGE - popup_dialog__no_store_connection: T.INPUT_PANEL - "popup_dialog__no_store_connection/popup_dialog_bg": T.IMAGE - "popup_dialog__no_store_connection/popup_dialog_message": T.LABEL - "popup_dialog__no_store_connection/popup_dialog_middle_button": T.BUTTON - popup_dialog__restore_popup: T.INPUT_PANEL - "popup_dialog__restore_popup/popup_dialog_bg": T.IMAGE - "popup_dialog__restore_popup/popup_dialog_message": T.LABEL - popup_dialog__restore_failed: T.INPUT_PANEL - "popup_dialog__restore_failed/popup_dialog_bg": T.IMAGE - "popup_dialog__restore_failed/popup_dialog_message": T.LABEL - "popup_dialog__restore_failed/popup_dialog_middle_button": T.BUTTON - suggested_content_offers_grid_item: T.PANEL - "suggested_content_offers_grid_item/frame": T.IMAGE - "suggested_content_offers_grid_item/frame/key_art": T.IMAGE - "suggested_content_offers_grid_item/frame/key_art/key_art_frame": T.IMAGE - "suggested_content_offers_grid_item/frame/progress_loading": T.PANEL - "suggested_content_offers_grid_item/frame/progress": T.PANEL - "suggested_content_offers_grid_item/frame/title_label_panel": T.STACK_PANEL - "suggested_content_offers_grid_item/frame/title_label_panel/title": T.LABEL - "suggested_content_offers_grid_item/frame/title_label_panel/offer_type": T.LABEL - "suggested_content_offers_grid_item/frame/offer_button": T.BUTTON - "suggested_content_offers_grid_item/frame/offer_button/hover": T.IMAGE - "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel": T.PANEL - "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame": T.IMAGE - "suggested_content_offers_grid_item/frame/offer_button/pressed": T.IMAGE - "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel": T.PANEL - "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame": T.IMAGE - suggested_content_offers_grid: T.GRID - more_suggested_content_offers_button: T.BUTTON - suggested_content_offers_panel_base: T.PANEL - "suggested_content_offers_panel_base/content": T.PANEL - "suggested_content_offers_panel_base/content/suggested_content_offers_grid": T.GRID - "suggested_content_offers_panel_base/content/more_suggested_content_offers_button": T.BUTTON - "suggested_content_offers_panel_base/progress_loading": T.PANEL - suggested_content_offers_panel_3x1: T.PANEL - suggested_content_offers_panel_4x1: T.PANEL - search_text_box_panel: T.PANEL - "search_text_box_panel/search_text_box": T.EDIT_BOX - "search_text_box_panel/clear_button": T.BUTTON - "search_text_box_panel/loading_spinner": T.IMAGE - search_label_panel: T.PANEL - "search_label_panel/offset_panel": T.PANEL - "search_label_panel/offset_panel/label": T.LABEL - error_text_panel: T.IMAGE - "error_text_panel/error_text_content": T.STACK_PANEL - "error_text_panel/error_text_content/top_padding": T.PANEL - "error_text_panel/error_text_content/label_panel": T.PANEL - "error_text_panel/error_text_content/bottom_padding": T.PANEL - results_text_panel: T.IMAGE - "results_text_panel/results_panel": T.STACK_PANEL - "results_text_panel/results_panel/top_padding": T.PANEL - "results_text_panel/results_panel/results_content": T.STACK_PANEL - "results_text_panel/results_panel/results_content/label_panel": T.PANEL - "results_text_panel/results_panel/results_content/mid_padding": T.PANEL - "results_text_panel/results_panel/results_content/results_close_centering_panel": T.PANEL - "results_text_panel/results_panel/results_content/results_close_centering_panel/results_close_button": T.BUTTON - "results_text_panel/results_panel/results_content/right_padding": T.PANEL - "results_text_panel/results_panel/bottom_padding": T.PANEL - filter_logo_content_panel: T.PANEL - "filter_logo_content_panel/filter_logo_image": T.IMAGE - "filter_logo_content_panel/filter_count_label": T.LABEL - filter_sort_toggle: T.PANEL - filter_sort_submenu_scrolling_panel_section: T.PANEL - "filter_sort_submenu_scrolling_panel_section/submenu_scrolling_panel": T.PANEL - filter_sort_grid_panel: T.PANEL - "filter_sort_grid_panel/filter_sort_grid": T.STACK_PANEL - sort_button_content_panel: T.IMAGE - search_panel_filter: T.STACK_PANEL - "search_panel_filter/search_text_box": T.PANEL - "search_panel_filter/filter_button": T.BUTTON - "search_panel_filter/sort_button": T.BUTTON - search_results_and_error_stack: T.STACK_PANEL - "search_results_and_error_stack/mid_padding_1": T.PANEL - "search_results_and_error_stack/error_text_panel": T.IMAGE - "search_results_and_error_stack/mid_padding_2": T.PANEL - "search_results_and_error_stack/results_text_panel": T.IMAGE - search_panel: T.PANEL - "search_panel/search_panel_content": T.STACK_PANEL - "search_panel/search_panel_content/search_text_box": T.STACK_PANEL - "search_panel/search_panel_content/search_results_and_error_panel": T.STACK_PANEL - "search_panel/search_panel_content/bottom_padding": T.PANEL - search_and_offer_content: T.INPUT_PANEL - "search_and_offer_content/search_and_offer_panel": T.PANEL - "search_and_offer_content/search_and_offer_panel/search_and_offer_content": T.STACK_PANEL - "search_and_offer_content/search_and_offer_panel/search_and_offer_content/top_padding": T.PANEL - "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel": T.PANEL - "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel/upper_section": T.UNKNOWN - "search_and_offer_content/search_and_offer_panel/search_and_offer_content/search_panel": T.PANEL - "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel": T.PANEL - "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel/offer_content": T.UNKNOWN - "search_and_offer_content/search_and_offer_panel/search_and_offer_content/bottom_padding": T.PANEL - search_object: T.PANEL - "search_object/search_object_content": T.INPUT_PANEL - sort_and_filter_menu_modal_panel: T.PANEL - "sort_and_filter_menu_modal_panel/filter_menu": T.UNKNOWN - sort_and_filter_menu_modals: T.PANEL - "sort_and_filter_menu_modals/filter_menu_modal": T.PANEL - "sort_and_filter_menu_modals/sort_menu_panel": T.PANEL - search_filter_sort_background: T.IMAGE - search_filter_background_panel: T.PANEL - "search_filter_background_panel/search_filter_sort_background": T.IMAGE - close_bg_button: T.BUTTON - "close_bg_button/default": T.PANEL - "close_bg_button/hover": T.PANEL - "close_bg_button/pressed": T.PANEL - close_bg_panel: T.PANEL - "close_bg_panel/header_close_button": T.BUTTON - "close_bg_panel/main_close_button": T.BUTTON - vertical_line_divider_row: T.STACK_PANEL - "vertical_line_divider_row/vert_line_divider_row_top_buffer": T.PANEL - "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding": T.STACK_PANEL - "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_left_buffer": T.PANEL - "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vertical_line_divider_row_line": T.IMAGE - "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_right_buffer": T.PANEL - "vertical_line_divider_row/vert_line_divider_row_bottom_buffer": T.PANEL - sdl_dropdown_header_row_button: T.PANEL - sdl_subcategory_button: T.UNKNOWN - sdl_dropdown_header_row: T.PANEL - "sdl_dropdown_header_row/drowdown_header_row_content": T.PANEL - "sdl_dropdown_header_row/drowdown_header_row_content/button_aspects": T.PANEL - sdl_dropdown_data_row: T.PANEL - "sdl_dropdown_data_row/row_background": T.IMAGE - "sdl_dropdown_data_row/button_aspects": T.UNKNOWN + "store_base_screen": T.SCREEN, + "label": T.LABEL, + "offer_image_panel": T.IMAGE, + "banner_fill": T.IMAGE, + "store_description_background": T.IMAGE, + "store_description_background_dark": T.IMAGE, + "text_style_label": T.PANEL, + "text_style_label/text_label": T.LABEL, + "sdl_texture": T.IMAGE, + "store_offer_grid_button": T.BUTTON, + "store_offer_grid_button/hover": T.PANEL, + "store_offer_grid_button/hover/key_art_size_panel": T.PANEL, + "store_offer_grid_button/hover/key_art_size_panel/key_art_frame": T.IMAGE, + "store_offer_grid_button/pressed": T.PANEL, + "store_offer_grid_button/pressed/key_art_size_panel": T.PANEL, + "store_offer_grid_button/pressed/key_art_size_panel/key_art_frame": T.IMAGE, + "store_offer_grid_button/icon_overlay_panel": T.PANEL, + "ribbon_bar_text_background": T.IMAGE, + "ribbon_bar_red_hover_text_background": T.IMAGE, + "store_background": T.IMAGE, + "coin_icon": T.IMAGE, + "tag": T.IMAGE, + "tag/new_offer_label": T.LABEL, + "marketplace_error_icon": T.IMAGE, + "new_offer_icon": T.IMAGE, + "status_new_offer_icon": T.IMAGE, + "update_balloon_icon": T.IMAGE, + "icon_overlay_panel": T.PANEL, + "icon_overlay_panel/icon_overlay_position_factory": T.COLLECTION_PANEL, + "icon_overlay_position_factory": T.COLLECTION_PANEL, + "top_left_icon_factory": T.STACK_PANEL, + "top_middle_icon_factory": T.STACK_PANEL, + "top_right_icon_factory": T.STACK_PANEL, + "left_middle_icon_factory": T.STACK_PANEL, + "center_icon_factory": T.STACK_PANEL, + "right_middle_icon_factory": T.STACK_PANEL, + "bottom_left_icon_factory": T.STACK_PANEL, + "bottom_middle_icon_factory": T.STACK_PANEL, + "bottom_right_icon_factory": T.STACK_PANEL, + "icon_factory": T.STACK_PANEL, + "new_offer_icon_panel": T.PANEL, + "new_offer_icon_panel/new_icon": T.IMAGE, + "update_offer_icon_panel": T.PANEL, + "update_offer_icon_panel/update_icon": T.IMAGE, + "icon_overlay_image_panel": T.PANEL, + "icon_overlay_image_panel/image_stack_panel": T.STACK_PANEL, + "icon_overlay_image_panel/image_stack_panel/icon": T.IMAGE, + "icon_overlay_image_panel/image_stack_panel/padding": T.PANEL, + "icon_overlay_sdl_padding": T.PANEL, + "status_icon_overlay": T.IMAGE, + "status_icon_overlay/icon_overlay_label_panel": T.STACK_PANEL, + "status_icon_overlay/icon_overlay_label_panel/left_margin_padding": T.PANEL, + "status_icon_overlay/icon_overlay_label_panel/left_padding_1": T.PANEL, + "status_icon_overlay/icon_overlay_label_panel/left_padding_2": T.PANEL, + "status_icon_overlay/icon_overlay_label_panel/icon_panel": T.PANEL, + "status_icon_overlay/icon_overlay_label_panel/icon_panel/icon_overlay_label": T.LABEL, + "status_icon_overlay/icon_overlay_label_panel/right_padding_1": T.PANEL, + "status_icon_overlay/icon_overlay_label_panel/right_padding_2": T.PANEL, + "status_icon_overlay/icon_overlay_label_panel/right_margin_padding": T.PANEL, + "status_icon_panel": T.PANEL, + "status_icon_panel/new_offer_icon": T.IMAGE, + "status_icon_panel/update_icon": T.IMAGE, + "prompt_icon": T.IMAGE, + "up_arrow_icon": T.IMAGE, + "plus_icon": T.IMAGE, + "bang_icon": T.IMAGE, + "user_icon_small": T.IMAGE, + "user_icon_hover": T.IMAGE, + "gamepad_store_helper": T.PANEL, + "purchase_coins_panel": T.PANEL, + "purchase_coins_panel/plus_button": T.BUTTON, + "inventory_panel": T.INPUT_PANEL, + "inventory_panel/inventory_button": T.BUTTON, + "progress_loading_bars": T.IMAGE, + "progress_loading_spinner": T.IMAGE, + "progress_loading": T.PANEL, + "progress_loading/centerer": T.PANEL, + "progress_loading/centerer/progress_loading_spinner": T.IMAGE, + "progress_loading/progress_loading_outline": T.IMAGE, + "progress_loading/stack_panel": T.STACK_PANEL, + "progress_loading/stack_panel/top_panel": T.STACK_PANEL, + "progress_loading/stack_panel/top_panel/error_glyph_panel": T.PANEL, + "progress_loading/stack_panel/top_panel/error_glyph_panel/error_image": T.IMAGE, + "progress_loading/stack_panel/top_panel/padding": T.PANEL, + "progress_loading/stack_panel/top_panel/store_failure_text": T.LABEL, + "progress_loading/stack_panel/padding": T.PANEL, + "progress_loading/stack_panel/image": T.IMAGE, + "progress_loading/store_failure_code": T.LABEL, + "store_empty_progress_bar_icon": T.IMAGE, + "store_full_progress_bar_icon": T.IMAGE, + "store_progress_bar_nub": T.IMAGE, + "store_progress_bar_icon": T.PANEL, + "store_progress_bar_icon/empty_progress_bar_icon": T.IMAGE, + "store_progress_bar_icon/progress_percent_panel": T.PANEL, + "store_progress_bar_icon/progress_percent_panel/full_progress_bar_icon": T.IMAGE, + "store_progress_bar_icon/progress_percent_panel/progress_bar_nub": T.IMAGE, + "screen_contents_with_gamepad_helpers": T.STACK_PANEL, + "screen_contents_with_gamepad_helpers/dialog_panel": T.PANEL, + "screen_contents_with_gamepad_helpers/dialog_panel/dialog": T.UNKNOWN, + "screen_contents_with_gamepad_helpers/padding": T.PANEL, + "screen_contents_with_gamepad_helpers/gamepad_helpers_panel": T.PANEL, + "screen_contents_with_gamepad_helpers/gamepad_helpers_panel/gamepad_helpers_a_and_b": T.STACK_PANEL, + "text_strike_through": T.IMAGE, + "markdown_banner": T.IMAGE, + "markdown_triangle": T.IMAGE, + "timer_panel": T.PANEL, + "timer_panel/timer": T.LABEL, + "store_offer_type_icon": T.IMAGE, + "addon_pack_icon": T.IMAGE, + "addon_pack_small_icon": T.IMAGE, + "realms_plus_icon": T.IMAGE, + "resource_pack_icon": T.IMAGE, + "resource_pack_small_icon": T.IMAGE, + "skinpack_icon": T.IMAGE, + "skinpack_small_icon": T.IMAGE, + "world_icon": T.IMAGE, + "world_small_icon": T.IMAGE, + "mashup_icon": T.IMAGE, + "mashup_small_icon": T.IMAGE, + "persona_icon": T.IMAGE, + "persona_small_icon": T.IMAGE, + "small_padding_panel": T.PANEL, + "resource_pack_small_icon_with_buffer": T.STACK_PANEL, + "resource_pack_small_icon_with_buffer/resource_pack_small_icon": T.IMAGE, + "resource_pack_small_icon_with_buffer/small_padding_panel": T.PANEL, + "addon_pack_small_icon_with_buffer": T.STACK_PANEL, + "addon_pack_small_icon_with_buffer/addon_pack_small_icon": T.IMAGE, + "addon_pack_small_icon_with_buffer/small_padding_panel": T.PANEL, + "skinpack_small_icon_with_buffer": T.STACK_PANEL, + "skinpack_small_icon_with_buffer/skinpack_small_icon": T.IMAGE, + "skinpack_small_icon_with_buffer/small_padding_panel": T.PANEL, + "world_small_icon_with_buffer": T.STACK_PANEL, + "world_small_icon_with_buffer/world_small_icon": T.IMAGE, + "world_small_icon_with_buffer/small_padding_panel": T.PANEL, + "mashup_small_icon_with_buffer": T.STACK_PANEL, + "mashup_small_icon_with_buffer/mashup_small_icon": T.IMAGE, + "mashup_small_icon_with_buffer/small_padding_panel": T.PANEL, + "persona_small_icon_with_buffer": T.STACK_PANEL, + "persona_small_icon_with_buffer/persona_small_icon": T.IMAGE, + "persona_small_icon_with_buffer/small_padding_panel": T.PANEL, + "realms_icon": T.IMAGE, + "realms_banner_icon": T.IMAGE, + "csb_banner_icon": T.IMAGE, + "csb_expiration": T.PANEL, + "csb_expiration/background": T.IMAGE, + "csb_expiration/contents": T.STACK_PANEL, + "csb_expiration/contents/csb_icon": T.IMAGE, + "csb_expiration/contents/pad_0": T.PANEL, + "csb_expiration/contents/text_panel": T.PANEL, + "csb_expiration/contents/text_panel/text": T.LABEL, + "pack_icon_stack": T.PANEL, + "pack_icon_stack/pack_icon_stack_factory": T.STACK_PANEL, + "pack_icon_stack_factory": T.STACK_PANEL, + "markdown_background": T.STACK_PANEL, + "markdown_background/banner_panel": T.STACK_PANEL, + "markdown_background/banner_panel/banner": T.IMAGE, + "markdown_background/banner_panel/banner/banner_content_stack_panel": T.STACK_PANEL, + "markdown_background/banner_panel/banner/banner_content_stack_panel/timer_panel": T.PANEL, + "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel": T.PANEL, + "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel/pack_icon_stack": T.PANEL, + "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel": T.PANEL, + "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel/markdown_label": T.UNKNOWN, + "markdown_background/triangle_panel": T.PANEL, + "markdown_background/triangle_panel/triangle": T.IMAGE, + "store_top_bar": T.IMAGE, + "store_top_bar_filler": T.IMAGE, + "direction_button_panel": T.PANEL, + "direction_button_panel/chevron_image": T.IMAGE, + "cycle_pack_button": T.BUTTON, + "cycle_pack_left_button": T.BUTTON, + "cycle_pack_right_button": T.BUTTON, + "restore_purchases": T.BUTTON, + "back_content_panel": T.PANEL, + "back_content_panel/back_button": T.STACK_PANEL, + "unlock_with_coins_button_stack_panel": T.STACK_PANEL, + "unlock_with_coins_button_stack_panel/coin_panel": T.PANEL, + "unlock_with_coins_button_stack_panel/coin_panel/coin": T.IMAGE, + "unlock_with_coins_button_stack_panel/padding_1": T.PANEL, + "unlock_with_coins_button_stack_panel/unlock_text": T.LABEL, + "store_dialog_with_coin_header": T.PANEL, + "store_coins_title_label": T.LABEL, + "search_header_stack": T.STACK_PANEL, + "search_header_stack/gamepad_helper_y_alignment_hack": T.PANEL, + "search_header_stack/gamepad_helper_y_alignment_hack/gamepad_helper_y": T.STACK_PANEL, + "search_header_stack/search_header_text_box_panel": T.PANEL, + "search_header_stack/search_header_text_box_panel/search_header_text_box": T.EDIT_BOX, + "search_header_stack/search_header_text_box_panel/clear_button": T.BUTTON, + "search_header_stack/store_layout_search_button": T.BUTTON, + "search_header_stack/padding0": T.PANEL, + "sdl_store_header_with_coins": T.PANEL, + "sdl_store_header_with_coins/sdl_store_header_with_coins_content": T.PANEL, + "top_bar_with_coins_panel": T.PANEL, + "top_bar_with_coins_panel/top_bar": T.IMAGE, + "top_bar_with_coins_panel/top_bar/title_stack_panel": T.STACK_PANEL, + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding1": T.PANEL, + "top_bar_with_coins_panel/top_bar/title_stack_panel/back_button_content_panel": T.PANEL, + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding2": T.PANEL, + "top_bar_with_coins_panel/top_bar/title_stack_panel/header_title_panel": T.PANEL, + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding3": T.PANEL, + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding4": T.PANEL, + "top_bar_with_coins_panel/top_bar/title_stack_panel/status_and_coins": T.STACK_PANEL, + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding5": T.PANEL, + "top_bar_with_coins_panel/top_bar/title_stack_panel/search_header_stack": T.STACK_PANEL, + "sdl_store_header_with_coins_content": T.PANEL, + "sdl_store_header_with_coins_content/top_bar_coins": T.PANEL, + "store_header_with_coins": T.STACK_PANEL, + "store_header_with_coins/top_bar_coins": T.PANEL, + "store_header_with_coins/child_control": T.UNKNOWN, + "status_with_coins": T.STACK_PANEL, + "status_with_coins/inventory_panel": T.PANEL, + "status_with_coins/inventory_panel/inventory_button": T.INPUT_PANEL, + "status_with_coins/padding0": T.PANEL, + "status_with_coins/coin_balance_panel": T.PANEL, + "status_with_coins/coin_balance_panel/coin_balance_panel": T.PANEL, + "status_with_coins/padding1": T.PANEL, + "coins_with_title": T.PANEL, + "coins_with_title/coin_balance_panel": T.PANEL, + "coins_with_title/title_panel": T.UNKNOWN, + "wallet_button_panel": T.STACK_PANEL, + "wallet_button_panel/purchase_coin_panel_alignment_hack": T.PANEL, + "wallet_button_panel/purchase_coin_panel_alignment_hack/purchase_coin_panel": T.IMAGE, + "wallet_button_panel/plus_image": T.PANEL, + "wallet_button_panel/gamepad_helper_x_alignment_hack": T.PANEL, + "wallet_button_panel/gamepad_helper_x_alignment_hack/gamepad_helper_x": T.STACK_PANEL, + "coin_balance_panel": T.IMAGE, + "coin_balance_panel/coin_purchase_in_progress_panel": T.PANEL, + "coin_balance_panel/coin_purchase_in_progress_panel/coin_purchase_in_progress": T.IMAGE, + "coin_balance_panel/horizontal_coin_stack": T.STACK_PANEL, + "coin_balance_panel/horizontal_coin_stack/padding": T.PANEL, + "coin_balance_panel/horizontal_coin_stack/coin_icon": T.IMAGE, + "coin_balance_panel/horizontal_coin_stack/small_filler": T.PANEL, + "coin_balance_panel/horizontal_coin_stack/coin_text_holder": T.PANEL, + "coin_balance_panel/horizontal_coin_stack/coin_text_holder/coin_balance_text": T.LABEL, + "my_account_button_content": T.PANEL, + "my_account_button_content/my_account_content": T.STACK_PANEL, + "my_account_button_content/my_account_content/user_icon": T.IMAGE, + "my_account_button_content/my_account_content/my_account_label_panel": T.STACK_PANEL, + "my_account_button_content/my_account_content/my_account_label_panel/padding": T.PANEL, + "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label": T.PANEL, + "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label/my_account_label": T.LABEL, + "inventory_button_panel": T.STACK_PANEL, + "inventory_button_panel/inventory_button": T.PANEL, + "inventory_button_panel/inventory_button/status_panel": T.STACK_PANEL, + "inventory_button": T.STACK_PANEL, + "inventory_button/my_content_button": T.PANEL, + "inventory_button/my_content_button/library_icon": T.IMAGE, + "inventory_button/my_content_button/library_icon_bevel": T.IMAGE, + "inventory_button/updates_with_bevel": T.PANEL, + "inventory_button/updates_with_bevel/update_glyph": T.IMAGE, + "inventory_button/updates_with_bevel/updates_bevel": T.IMAGE, + "inventory_button/label_alignment_pannel": T.PANEL, + "inventory_button/label_alignment_pannel/label_panel": T.IMAGE, + "inventory_button/label_alignment_pannel/label_panel/inventory_label": T.LABEL, + "xbl_button_content": T.STACK_PANEL, + "xbl_button_content/xbl_icon": T.IMAGE, + "xbl_button_content/padding_0": T.PANEL, + "xbl_button_content/disconnected_label": T.LABEL, + "xbl_button_content/padding_1": T.PANEL, + "xbl_button_content/error_icon_panel": T.PANEL, + "xbl_button_content/error_icon_panel/error_icon": T.IMAGE, + "disclaimer_panel": T.PANEL, + "disclaimer_panel/legal_text_label": T.LABEL, + "grey_bar_panel": T.STACK_PANEL, + "grey_bar_panel/color_panel": T.PANEL, + "grey_bar_panel/color_panel/grey_bar": T.IMAGE, + "grey_bar_panel/color_panel/green_bar": T.IMAGE, + "grey_bar_panel/pad": T.PANEL, + "tab_name_panel": T.STACK_PANEL, + "tab_name_panel/bar_panel": T.PANEL, + "tab_name_panel/bar_panel/green_bar": T.IMAGE, + "tab_name_panel/button_panel": T.PANEL, + "tab_name_panel/button_panel/tab_name_button_grey": T.BUTTON, + "tab_name_panel/button_panel/tab_name_button_white": T.BUTTON, + "tab_name_panel/pad_1": T.PANEL, + "store_offer_item_title_panel": T.PANEL, + "store_offer_item_title_panel/offer_title": T.LABEL, + "store_offer_item_creator_panel": T.STACK_PANEL, + "store_offer_item_creator_panel/pack_icon_panel": T.PANEL, + "store_offer_item_creator_panel/pack_icon_panel/pack_icon_stack": T.PANEL, + "store_offer_item_creator_panel/creator_label": T.LABEL, + "store_offer_ratings": T.PANEL, + "store_offer_ratings/rating_text_panel": T.STACK_PANEL, + "vertical_store_offer_price_info_panel": T.PANEL, + "vertical_store_offer_price_info_panel/sales_banner": T.STACK_PANEL, + "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels": T.STACK_PANEL, + "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/markdown_panel": T.PANEL, + "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/padding_markdown_panel_right": T.PANEL, + "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel": T.PANEL, + "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel/offer_status_text": T.LABEL, + "vertical_store_offer_price_info_panel/sales_banner/padding_to_right": T.PANEL, + "store_offer_price_info_panel": T.STACK_PANEL, + "store_offer_price_info_panel/sales_banner": T.STACK_PANEL, + "store_offer_price_info_panel/sales_banner/sales_markdown_percentage_panel": T.PANEL, + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown": T.STACK_PANEL, + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/fill_markdown_panel_left": T.PANEL, + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/markdown_panel": T.PANEL, + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/padding_markdown_panel_right": T.PANEL, + "store_offer_price_info_panel/sales_banner/coin_panel": T.PANEL, + "store_offer_price_info_panel/sales_banner/coin_panel/offer_coin_icon": T.IMAGE, + "store_offer_price_info_panel/sales_banner/padding_3": T.PANEL, + "store_offer_price_info_panel/sales_banner/offer_prompt_panel": T.PANEL, + "store_offer_sales_markdown_percentage_panel": T.PANEL, + "store_offer_sales_markdown_percentage_panel/markdown_background": T.STACK_PANEL, + "store_offer_prompt_panel": T.PANEL, + "store_offer_prompt_panel/offer_status_text": T.LABEL, + "featured_key_art": T.PANEL, + "featured_key_art/bg": T.IMAGE, + "featured_key_art/bg/featured_key_art": T.IMAGE, + "featured_key_art/bg/progress_loading": T.PANEL, + "featured_key_art/bg/new_offer_icon": T.IMAGE, + "featured_key_art/focus_border": T.IMAGE, + "price_panel": T.STACK_PANEL, + "price_panel/featured_icon_panel": T.PANEL, + "price_panel/featured_icon_panel/featured_offer_coin_icon": T.IMAGE, + "price_panel/price_label_panel": T.PANEL, + "price_panel/price_label_panel/price": T.LABEL, + "price_panel/padding": T.PANEL, + "vertical_padding_4": T.PANEL, + "vertical_padding_2": T.PANEL, + "sdl_vertical_padding_fill": T.PANEL, + "footer": T.PANEL, + "footer/restore_purchases": T.BUTTON, + "store_section_panel": T.PANEL, + "store_section_panel/store_section_panel_outline": T.IMAGE, + "store_section_panel/section_panel": T.STACK_PANEL, + "store_section_panel/section_panel/header": T.PANEL, + "store_section_panel/section_panel/section_panel": T.PANEL, + "store_section_panel/section_panel/section_panel/background": T.IMAGE, + "store_section_factory": T.STACK_PANEL, + "store_static_section_factory": T.STACK_PANEL, + "rtx_label": T.PANEL, + "rtx_label/banner": T.IMAGE, + "rtx_label/banner/icon": T.IMAGE, + "subscription_chevron": T.PANEL, + "subscription_chevron/subscription_chevron_panel": T.PANEL, + "subscription_chevron/subscription_chevron_panel/csb_chevron": T.PANEL, + "subscription_chevron/subscription_chevron_panel/sales_banner_background": T.IMAGE, + "csb_banner": T.PANEL, + "csb_banner/banner": T.IMAGE, + "pagination_content_panel": T.STACK_PANEL, + "pagination_content_panel/padding_left": T.PANEL, + "pagination_content_panel/first_page_button": T.BUTTON, + "pagination_content_panel/pagination_middle_buttons_panel": T.STACK_PANEL, + "pagination_content_panel/padding_right_fill": T.PANEL, + "pagination_content_panel/go_to_top_button": T.BUTTON, + "pagination_panel": T.STACK_PANEL, + "pagination_panel/top_padding": T.PANEL, + "pagination_panel/pagination_content": T.STACK_PANEL, + "pagination_panel/bottom_padding": T.PANEL, + "store_offer_grid_panel_content": T.STACK_PANEL, + "store_offer_grid_panel_content/header_centerer_panel": T.PANEL, + "store_offer_grid_panel_content/store_offer_grid_factory": T.COLLECTION_PANEL, + "store_offer_grid_panel_content/pagination_centerer": T.PANEL, + "store_offer_grid_panel_content/divider": T.STACK_PANEL, + "store_offer_grid_panel": T.PANEL, + "pagination_top_button_panel": T.PANEL, + "pagination_top_button_panel/top_button_image": T.IMAGE, + "pagination_middle_buttons_panel": T.STACK_PANEL, + "pagination_middle_buttons_panel/previous_page_button": T.BUTTON, + "pagination_middle_buttons_panel/current_page_number_panel": T.PANEL, + "pagination_middle_buttons_panel/current_page_number_panel/current_page_number": T.LABEL, + "pagination_middle_buttons_panel/next_page_button": T.BUTTON, + "vertical_store_offer_grid_panel": T.STACK_PANEL, + "vertical_store_offer_grid_panel/header": T.PANEL, + "vertical_store_offer_grid_panel/centering_panel": T.PANEL, + "vertical_store_offer_grid_panel/centering_panel/vertical_store_offer_grid_content": T.GRID, + "vertical_store_offer_grid_panel/padding_0": T.PANEL, + "vertical_store_offer_grid_panel/divider": T.STACK_PANEL, + "carousel_row_panel": T.STACK_PANEL, + "carousel_row_panel/top_panel": T.STACK_PANEL, + "carousel_row_panel/top_panel/pad_0": T.PANEL, + "carousel_row_panel/top_panel/tab_names_factory_panel": T.STACK_PANEL, + "carousel_row_panel/top_padding": T.PANEL, + "carousel_row_panel/middle_panel": T.STACK_PANEL, + "carousel_row_panel/middle_panel/left_button_panel": T.PANEL, + "carousel_row_panel/middle_panel/left_button_panel/left_button": T.BUTTON, + "carousel_row_panel/middle_panel/left_button_panel/left_bumper": T.STACK_PANEL, + "carousel_row_panel/middle_panel/main_panel_factory": T.STACK_PANEL, + "carousel_row_panel/middle_panel/right_button_panel": T.PANEL, + "carousel_row_panel/middle_panel/right_button_panel/right_button": T.BUTTON, + "carousel_row_panel/middle_panel/right_button_panel/right_bumper": T.STACK_PANEL, + "carousel_row_panel/bottom_panel": T.PANEL, + "carousel_row_panel/bottom_panel/grey_bar_factory_panel": T.STACK_PANEL, + "carousel_row_panel/bottom_padding": T.PANEL, + "carousel_row_panel/divider_panel": T.PANEL, + "carousel_row_panel/divider_panel/divider": T.PANEL, + "carousel_factory": T.STACK_PANEL, + "hero_row_l2_panel": T.STACK_PANEL, + "hero_row_l2_panel/header": T.PANEL, + "hero_row_l2_panel/centering_panel": T.PANEL, + "hero_row_l2_panel/centering_panel/l2_featured_stack": T.STACK_PANEL, + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_0": T.PANEL, + "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_1": T.PANEL, + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_1": T.PANEL, + "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_2": T.PANEL, + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_2": T.PANEL, + "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_3": T.PANEL, + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_3": T.PANEL, + "hero_row_l2_panel/padding_0": T.PANEL, + "hero_row_l2_panel/divider": T.STACK_PANEL, + "blade_row_key_art": T.PANEL, + "blade_row_key_art/blade_row_key_art_image": T.IMAGE, + "blade_row_key_art/blade_row_key_art_image/key_art_border": T.IMAGE, + "one_key_art_screenshot": T.IMAGE, + "one_key_art_screenshot_panel": T.PANEL, + "one_key_art_screenshot_panel/blade_offer_frame": T.UNKNOWN, + "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot": T.IMAGE, + "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot/one_key_art_frame": T.IMAGE, + "screenshots_grid": T.COLLECTION_PANEL, + "screenshots_grid/screenshot_1": T.PANEL, + "screenshots_grid/screenshot_2": T.PANEL, + "screenshots_grid/screenshot_3": T.PANEL, + "screenshots_grid/screenshot_4": T.PANEL, + "blade_offer_details_title": T.LABEL, + "blade_offer_sale_markdown": T.LABEL, + "blade_offer_description_details": T.STACK_PANEL, + "blade_offer_description_details/blade_title_stack": T.STACK_PANEL, + "blade_offer_description_details/blade_title_stack/blade_title": T.LABEL, + "blade_offer_description_details/blade_offer_creator_label": T.STACK_PANEL, + "blade_offer_description_details/blade_offer_description_padding_2": T.PANEL, + "blade_offer_description_details/ratings_and_coins": T.STACK_PANEL, + "blade_offer_description_details/ratings_and_coins/subscription_panel": T.PANEL, + "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel": T.PANEL, + "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel/blade_markdown_background": T.STACK_PANEL, + "blade_offer_description_details/ratings_and_coins/ratings_panel": T.PANEL, + "blade_offer_description_details/ratings_and_coins/ratings_panel/blade_ratings": T.PANEL, + "blade_offer_description_details/ratings_and_coins/blade_rating_count_panel": T.PANEL, + "blade_offer_description_details/ratings_and_coins/fill_padding": T.PANEL, + "blade_offer_description_details/ratings_and_coins/blade_offer_price_markdown_panel": T.PANEL, + "blade_offer_description_details/ratings_and_coins/price_panel": T.PANEL, + "blade_offer_description_details/ratings_and_coins/price_panel/price": T.STACK_PANEL, + "blade_offer_description_details/ratings_and_coins/price_panel_padding_right": T.PANEL, + "blade_offer_description_details/blade_offer_description_padding_3": T.PANEL, + "screenshots_and_offer_details_panel": T.PANEL, + "screenshots_and_offer_details_panel/blade_offer_screenshots_grid": T.COLLECTION_PANEL, + "screenshots_and_offer_details_panel/blade_offer_description_area": T.IMAGE, + "screenshots_and_offer_details_panel/blade_offer_description_area/blade_offer_description_border": T.IMAGE, + "screenshots_and_offer_details_panel/blade_offer_description_area/hero_blade_offer_description_details": T.STACK_PANEL, + "blade_row_featured_panel": T.PANEL, + "blade_row_featured_panel/blade_row_featured_key_art": T.PANEL, + "blade_row_featured_panel/blade_offer_screenshots_and_details_panel": T.PANEL, + "transparent_content_button": T.BUTTON, + "hero_blade_row_panel": T.PANEL, + "hero_blade_row_panel/blade_row_transparent_button": T.BUTTON, + "hero_row_panel": T.STACK_PANEL, + "hero_row_panel/header": T.PANEL, + "hero_row_panel/centering_panel": T.PANEL, + "hero_row_panel/centering_panel/featured_stack": T.STACK_PANEL, + "hero_row_panel/centering_panel/featured_stack/hero_offer": T.BUTTON, + "hero_row_panel/centering_panel/featured_stack/padding_0": T.PANEL, + "hero_row_panel/centering_panel/featured_stack/hero_offer_grid": T.STACK_PANEL, + "hero_row_panel/padding_0": T.PANEL, + "hero_row_panel/divider": T.STACK_PANEL, + "hero_offer": T.PANEL, + "hero_offer/featured_key_art": T.PANEL, + "hero_offer/rtx_label": T.PANEL, + "hero_offer/offer_description_area": T.IMAGE, + "hero_offer/offer_description_area/hero_offer_description_details": T.STACK_PANEL, + "hero_offer_details_title": T.LABEL, + "hero_offer_description_details": T.STACK_PANEL, + "hero_offer_description_details/hero_title_stack": T.STACK_PANEL, + "hero_offer_description_details/hero_title_stack/title": T.LABEL, + "hero_offer_description_details/padding_5": T.PANEL, + "hero_offer_description_details/progress": T.PANEL, + "hero_offer_description_details/creator_label": T.STACK_PANEL, + "hero_offer_description_details/padding_0": T.PANEL, + "hero_offer_description_details/durable_offer_info_panel": T.STACK_PANEL, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel": T.STACK_PANEL, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/subscription_panel": T.PANEL, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel": T.PANEL, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner": T.STACK_PANEL, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel": T.PANEL, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel/ratings": T.PANEL, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/rating_count_panel": T.PANEL, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel": T.PANEL, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": T.PANEL, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/fill_padding": T.PANEL, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/offer_price_markdown_panel": T.PANEL, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel": T.PANEL, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel/price": T.STACK_PANEL, + "hero_offer_description_details/padding_1": T.PANEL, + "hero_offer_download_progress": T.PANEL, + "hero_offer_download_progress/label": T.LABEL, + "hero_offer_download_progress/bar": T.PANEL, + "rating_text_panel": T.STACK_PANEL, + "rating_text_panel/left_padding": T.PANEL, + "rating_text_panel/star_panel": T.PANEL, + "rating_text_panel/star_panel/rating_star": T.IMAGE, + "rating_text_panel/middle_padding": T.PANEL, + "rating_text_panel/rating_label": T.LABEL, + "ratings_description": T.PANEL, + "ratings_description/rating_text_panel": T.STACK_PANEL, + "store_rating_count_panel": T.PANEL, + "store_rating_count_panel/rating_count_text": T.LABEL, + "hero_offer_grid": T.STACK_PANEL, + "hero_offer_grid/row_1": T.STACK_PANEL, + "hero_offer_grid/row_1/offer_1": T.PANEL, + "hero_offer_grid/row_1/padding_0": T.PANEL, + "hero_offer_grid/row_1/offer_2": T.PANEL, + "hero_offer_grid/padding_0": T.PANEL, + "hero_offer_grid/row_2": T.STACK_PANEL, + "hero_offer_grid/row_2/offer_1": T.PANEL, + "hero_offer_grid/row_2/padding_0": T.PANEL, + "hero_offer_grid/row_2/offer_2": T.PANEL, + "offer_download_progress": T.PANEL, + "offer_download_progress/label": T.LABEL, + "offer_download_progress/bar": T.PANEL, + "banner_button": T.PANEL, + "sdl_text_aligned_panel": T.STACK_PANEL, + "sdl_text_minecraftTen_aligned_panel": T.STACK_PANEL, + "sdl_content_aligned_panel": T.STACK_PANEL, + "sdl_content_aligned_panel/left__padding_panel": T.PANEL, + "sdl_content_aligned_panel/control": T.UNKNOWN, + "sdl_content_aligned_panel/right_padding_panel": T.PANEL, + "sdl_aligned_text": T.LABEL, + "sdl_aligned_minecraftTen_text": T.LABEL, + "content_offer_key_art": T.IMAGE, + "vertical_content_offer_header": T.IMAGE, + "vertical_content_offer_header/header": T.STACK_PANEL, + "vertical_content_offer_panel": T.STACK_PANEL, + "vertical_offer_grid_panel": T.PANEL, + "offer_content": T.PANEL, + "offer_content/offer_item": T.PANEL, + "vertical_offer_content": T.PANEL, + "vertical_offer_content/offer_item": T.PANEL, + "vertical_coin_offer_content": T.PANEL, + "vertical_coin_offer_content/offer_item": T.PANEL, + "store_offer_key_art": T.IMAGE, + "store_offer_grid_show_more": T.PANEL, + "store_offer_grid_show_more/frame": T.IMAGE, + "store_offer_grid_show_more/frame/title": T.LABEL, + "store_offer_grid_show_more/offer_button": T.BUTTON, + "store_offer_grid_show_more/offer_button/hover": T.IMAGE, + "store_offer_grid_show_more/offer_button/hover/key_art_size_panel": T.PANEL, + "store_offer_grid_show_more/offer_button/pressed": T.IMAGE, + "store_offer_grid_show_more/offer_button/pressed/key_art_size_panel": T.PANEL, + "persona_grid_show_more": T.BUTTON, + "row_offer_sale_markdown": T.LABEL, + "discount_label": T.STACK_PANEL, + "discount_label/label_panel": T.PANEL, + "discount_label/label_panel/label": T.LABEL, + "discount_label/icon_panel": T.PANEL, + "discount_label/icon_panel/icon": T.IMAGE, + "hero_offer_sale_markdown": T.LABEL, + "offer_price_markdown_panel": T.PANEL, + "offer_price_markdown_panel/offer_price": T.LABEL, + "offer_price_markdown_panel/offer_price/text_strike_through": T.IMAGE, + "store_offer_title": T.LABEL, + "store_offer_key_art_frame": T.IMAGE, + "store_offer_key_art_frame/key_art": T.IMAGE, + "store_offer_key_art_frame/key_art/key_art_frame": T.IMAGE, + "store_offer_key_art_frame/key_art/csb_expiration_banner": T.PANEL, + "store_offer_key_art_frame/progress_loading": T.PANEL, + "vertical_store_offer_grid_item": T.PANEL, + "vertical_store_offer_grid_item/frame": T.IMAGE, + "vertical_store_offer_grid_item/frame/horizontal_stack_panel": T.STACK_PANEL, + "vertical_store_offer_grid_item/frame/offer_button": T.BUTTON, + "vertical_store_offer_grid_item/dark_frame": T.IMAGE, + "vertical_store_offer_grid_item/dark_frame/horizontal_stack_panel": T.STACK_PANEL, + "vertical_store_offer_grid_item/dark_frame/offer_button": T.BUTTON, + "vertical_store_offer_grid_inside_frame": T.STACK_PANEL, + "vertical_store_offer_grid_inside_frame/key_art_size_panel": T.PANEL, + "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art_frame": T.IMAGE, + "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art": T.IMAGE, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel": T.PANEL, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel": T.STACK_PANEL, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding": T.PANEL, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding/title": T.PANEL, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding": T.PANEL, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding/creator_label": T.STACK_PANEL, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding": T.STACK_PANEL, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/ratings": T.PANEL, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/rating_and_price_padding": T.PANEL, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/offer_price_info_panel": T.PANEL, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/right_side_padding": T.PANEL, + "vertical_store_coin_offer_grid_item": T.PANEL, + "vertical_store_coin_offer_grid_item/frame": T.IMAGE, + "vertical_store_coin_offer_grid_item/frame/horizontal_stack_panel": T.STACK_PANEL, + "vertical_store_coin_offer_grid_item/dark_frame": T.IMAGE, + "vertical_store_coin_offer_grid_item/dark_frame/horizontal_stack_panel": T.STACK_PANEL, + "vertical_store_coin_offer_grid_item/dark_frame/offer_button": T.BUTTON, + "vertical_coin_offer_grid_inside_frame": T.STACK_PANEL, + "vertical_coin_offer_grid_inside_frame/key_art_size_panel": T.PANEL, + "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art_frame": T.IMAGE, + "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art": T.IMAGE, + "vertical_coin_offer_grid_inside_frame/padding": T.PANEL, + "vertical_coin_offer_grid_inside_frame/coin_panel": T.PANEL, + "vertical_coin_offer_grid_inside_frame/coin_panel/offer_coin_icon": T.IMAGE, + "vertical_coin_offer_grid_inside_frame/Minecoins_panel": T.PANEL, + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel": T.STACK_PANEL, + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding": T.PANEL, + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel": T.PANEL, + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel/minecoins_offer_status_text": T.LABEL, + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding": T.PANEL, + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding/title": T.PANEL, + "offer_prompt_panel": T.STACK_PANEL, + "offer_prompt_panel/coin_panel": T.PANEL, + "offer_prompt_panel/coin_panel/offer_coin_icon": T.IMAGE, + "offer_prompt_panel/padding_3": T.PANEL, + "offer_prompt_panel/offer_status_text_panel": T.PANEL, + "offer_prompt_panel/offer_status_text_panel/offer_status_text": T.LABEL, + "store_offer_grid_item": T.PANEL, + "store_offer_grid_item/frame": T.UNKNOWN, + "store_offer_grid_item/frame/key_art": T.IMAGE, + "store_offer_grid_item/frame/key_art/key_art_frame": T.IMAGE, + "store_offer_grid_item/frame/key_art/csb_plus_expiration_banner": T.PANEL, + "store_offer_grid_item/frame/progress_loading": T.PANEL, + "store_offer_grid_item/frame/progress": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel": T.STACK_PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel": T.STACK_PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/title": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/creator_label": T.STACK_PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/offer_price_info_panel": T.STACK_PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/no_durable_status_padding": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel": T.STACK_PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner": T.STACK_PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel/markdown_banner": T.STACK_PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/ratings": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rating_count_panel": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel": T.STACK_PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel/sale_timer": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_2": T.PANEL, + "store_offer_grid_item/frame/offer_button": T.BUTTON, + "thumbnail_only_offer": T.PANEL, + "thumbnail_only_offer/frame": T.UNKNOWN, + "thumbnail_only_offer/frame/key_art": T.IMAGE, + "thumbnail_only_offer/frame/key_art/key_art_frame": T.IMAGE, + "thumbnail_only_offer/frame/key_art/offer_coin_icon": T.IMAGE, + "thumbnail_only_offer/frame/offer_button": T.BUTTON, + "store_section_header_label": T.LABEL, + "persona_store_row_offer": T.PANEL, + "persona_store_row_offer/persona_offer": T.UNKNOWN, + "thumnail_only_row_offer": T.PANEL, + "thumnail_only_row_offer/generic_store_offer": T.PANEL, + "generic_store_row_offer_panel": T.PANEL, + "generic_store_row_offer_panel/generic_store_offer": T.PANEL, + "store_row_show_more_button_panel": T.PANEL, + "store_row_show_more_button_panel/show_more_button": T.PANEL, + "persona_show_more_button_panel": T.PANEL, + "persona_show_more_button_panel/show_more_button": T.BUTTON, + "persona_grid_panel_stack": T.STACK_PANEL, + "persona_grid_panel_stack/default_piece_button": T.UNKNOWN, + "persona_grid_panel_stack/persona_grid_panel": T.PANEL, + "persona_grid_panel": T.PANEL, + "persona_grid_panel/persona_offer_grid": T.GRID, + "store_offer_grid_factory": T.COLLECTION_PANEL, + "non_collection_item_horizontal_padding": T.PANEL, + "horizontal_store_offer_row_factory": T.STACK_PANEL, + "recently_viewed_row_panel": T.PANEL, + "static_offer_row_panel": T.PANEL, + "static_offer_row_panel/store_row_dropdown_panel": T.PANEL, + "static_offer_row_panel/store_row_dropdown_panel/store_row_section_panel": T.PANEL, + "store_row_panel": T.PANEL, + "store_row_panel/store_row_dropdown_panel": T.PANEL, + "store_row_panel/store_row_dropdown_panel/store_row_section_panel": T.PANEL, + "vertical_store_row_panel": T.PANEL, + "style_header": T.PANEL, + "style_header/background": T.IMAGE, + "style_header/style_header": T.STACK_PANEL, + "style_header_panel": T.STACK_PANEL, + "style_header_panel/row_header": T.PANEL, + "style_header_panel/row_header/label_panel": T.STACK_PANEL, + "style_header_panel/row_header/label_panel/indent": T.PANEL, + "style_header_panel/row_header/label_panel/row_header_label_centering_panel": T.PANEL, + "style_header_panel/row_header/label_panel/row_header_label_centering_panel/row_header_label": T.LABEL, + "style_header_panel/row_header/label_panel/on_sale_banner": T.IMAGE, + "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel": T.PANEL, + "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label": T.LABEL, + "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/triangle": T.IMAGE, + "style_header_panel/row_header/label_panel/time_remaining_label": T.LABEL, + "style_header_panel/row_carousel_padding": T.PANEL, + "store_row_cycle_button_panel": T.PANEL, + "store_row_cycle_button_panel/cycle_button_panel": T.STACK_PANEL, + "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel": T.PANEL, + "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel/page_indicator": T.PANEL, + "store_row": T.STACK_PANEL, + "store_row/carousel_panel": T.PANEL, + "store_row/carousel_panel/progress_loading": T.PANEL, + "store_row/carousel_panel/cycle_pack_horizontal_stack": T.STACK_PANEL, + "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_left_button_panel": T.PANEL, + "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel": T.PANEL, + "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel/offer_grid": T.STACK_PANEL, + "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_right_button_panel": T.PANEL, + "store_row/divider": T.STACK_PANEL, + "page_indicator_panel": T.PANEL, + "page_indicator_panel/first_of_three": T.IMAGE, + "page_indicator_panel/second_of_three": T.IMAGE, + "page_indicator_panel/third_of_three": T.IMAGE, + "page_indicator_panel/first_of_two": T.IMAGE, + "page_indicator_panel/second_of_two": T.IMAGE, + "page_indicator": T.IMAGE, + "popup_dialog__no_store_connection": T.INPUT_PANEL, + "popup_dialog__no_store_connection/popup_dialog_bg": T.IMAGE, + "popup_dialog__no_store_connection/popup_dialog_message": T.LABEL, + "popup_dialog__no_store_connection/popup_dialog_middle_button": T.BUTTON, + "popup_dialog__restore_popup": T.INPUT_PANEL, + "popup_dialog__restore_popup/popup_dialog_bg": T.IMAGE, + "popup_dialog__restore_popup/popup_dialog_message": T.LABEL, + "popup_dialog__restore_failed": T.INPUT_PANEL, + "popup_dialog__restore_failed/popup_dialog_bg": T.IMAGE, + "popup_dialog__restore_failed/popup_dialog_message": T.LABEL, + "popup_dialog__restore_failed/popup_dialog_middle_button": T.BUTTON, + "suggested_content_offers_grid_item": T.PANEL, + "suggested_content_offers_grid_item/frame": T.IMAGE, + "suggested_content_offers_grid_item/frame/key_art": T.IMAGE, + "suggested_content_offers_grid_item/frame/key_art/key_art_frame": T.IMAGE, + "suggested_content_offers_grid_item/frame/progress_loading": T.PANEL, + "suggested_content_offers_grid_item/frame/progress": T.PANEL, + "suggested_content_offers_grid_item/frame/title_label_panel": T.STACK_PANEL, + "suggested_content_offers_grid_item/frame/title_label_panel/title": T.LABEL, + "suggested_content_offers_grid_item/frame/title_label_panel/offer_type": T.LABEL, + "suggested_content_offers_grid_item/frame/offer_button": T.BUTTON, + "suggested_content_offers_grid_item/frame/offer_button/hover": T.IMAGE, + "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel": T.PANEL, + "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame": T.IMAGE, + "suggested_content_offers_grid_item/frame/offer_button/pressed": T.IMAGE, + "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel": T.PANEL, + "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame": T.IMAGE, + "suggested_content_offers_grid": T.GRID, + "more_suggested_content_offers_button": T.BUTTON, + "suggested_content_offers_panel_base": T.PANEL, + "suggested_content_offers_panel_base/content": T.PANEL, + "suggested_content_offers_panel_base/content/suggested_content_offers_grid": T.GRID, + "suggested_content_offers_panel_base/content/more_suggested_content_offers_button": T.BUTTON, + "suggested_content_offers_panel_base/progress_loading": T.PANEL, + "suggested_content_offers_panel_3x1": T.PANEL, + "suggested_content_offers_panel_4x1": T.PANEL, + "search_text_box_panel": T.PANEL, + "search_text_box_panel/search_text_box": T.EDIT_BOX, + "search_text_box_panel/clear_button": T.BUTTON, + "search_text_box_panel/loading_spinner": T.IMAGE, + "search_label_panel": T.PANEL, + "search_label_panel/offset_panel": T.PANEL, + "search_label_panel/offset_panel/label": T.LABEL, + "error_text_panel": T.IMAGE, + "error_text_panel/error_text_content": T.STACK_PANEL, + "error_text_panel/error_text_content/top_padding": T.PANEL, + "error_text_panel/error_text_content/label_panel": T.PANEL, + "error_text_panel/error_text_content/bottom_padding": T.PANEL, + "results_text_panel": T.IMAGE, + "results_text_panel/results_panel": T.STACK_PANEL, + "results_text_panel/results_panel/top_padding": T.PANEL, + "results_text_panel/results_panel/results_content": T.STACK_PANEL, + "results_text_panel/results_panel/results_content/label_panel": T.PANEL, + "results_text_panel/results_panel/results_content/mid_padding": T.PANEL, + "results_text_panel/results_panel/results_content/results_close_centering_panel": T.PANEL, + "results_text_panel/results_panel/results_content/results_close_centering_panel/results_close_button": T.BUTTON, + "results_text_panel/results_panel/results_content/right_padding": T.PANEL, + "results_text_panel/results_panel/bottom_padding": T.PANEL, + "filter_logo_content_panel": T.PANEL, + "filter_logo_content_panel/filter_logo_image": T.IMAGE, + "filter_logo_content_panel/filter_count_label": T.LABEL, + "filter_sort_toggle": T.PANEL, + "filter_sort_submenu_scrolling_panel_section": T.PANEL, + "filter_sort_submenu_scrolling_panel_section/submenu_scrolling_panel": T.PANEL, + "filter_sort_grid_panel": T.PANEL, + "filter_sort_grid_panel/filter_sort_grid": T.STACK_PANEL, + "sort_button_content_panel": T.IMAGE, + "search_panel_filter": T.STACK_PANEL, + "search_panel_filter/search_text_box": T.PANEL, + "search_panel_filter/filter_button": T.BUTTON, + "search_panel_filter/sort_button": T.BUTTON, + "search_results_and_error_stack": T.STACK_PANEL, + "search_results_and_error_stack/mid_padding_1": T.PANEL, + "search_results_and_error_stack/error_text_panel": T.IMAGE, + "search_results_and_error_stack/mid_padding_2": T.PANEL, + "search_results_and_error_stack/results_text_panel": T.IMAGE, + "search_panel": T.PANEL, + "search_panel/search_panel_content": T.STACK_PANEL, + "search_panel/search_panel_content/search_text_box": T.STACK_PANEL, + "search_panel/search_panel_content/search_results_and_error_panel": T.STACK_PANEL, + "search_panel/search_panel_content/bottom_padding": T.PANEL, + "search_and_offer_content": T.INPUT_PANEL, + "search_and_offer_content/search_and_offer_panel": T.PANEL, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content": T.STACK_PANEL, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/top_padding": T.PANEL, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel": T.PANEL, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel/upper_section": T.UNKNOWN, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/search_panel": T.PANEL, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel": T.PANEL, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel/offer_content": T.UNKNOWN, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/bottom_padding": T.PANEL, + "search_object": T.PANEL, + "search_object/search_object_content": T.INPUT_PANEL, + "sort_and_filter_menu_modal_panel": T.PANEL, + "sort_and_filter_menu_modal_panel/filter_menu": T.UNKNOWN, + "sort_and_filter_menu_modals": T.PANEL, + "sort_and_filter_menu_modals/filter_menu_modal": T.PANEL, + "sort_and_filter_menu_modals/sort_menu_panel": T.PANEL, + "search_filter_sort_background": T.IMAGE, + "search_filter_background_panel": T.PANEL, + "search_filter_background_panel/search_filter_sort_background": T.IMAGE, + "close_bg_button": T.BUTTON, + "close_bg_button/default": T.PANEL, + "close_bg_button/hover": T.PANEL, + "close_bg_button/pressed": T.PANEL, + "close_bg_panel": T.PANEL, + "close_bg_panel/header_close_button": T.BUTTON, + "close_bg_panel/main_close_button": T.BUTTON, + "vertical_line_divider_row": T.STACK_PANEL, + "vertical_line_divider_row/vert_line_divider_row_top_buffer": T.PANEL, + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding": T.STACK_PANEL, + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_left_buffer": T.PANEL, + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vertical_line_divider_row_line": T.IMAGE, + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_right_buffer": T.PANEL, + "vertical_line_divider_row/vert_line_divider_row_bottom_buffer": T.PANEL, + "sdl_dropdown_header_row_button": T.PANEL, + "sdl_subcategory_button": T.UNKNOWN, + "sdl_dropdown_header_row": T.PANEL, + "sdl_dropdown_header_row/drowdown_header_row_content": T.PANEL, + "sdl_dropdown_header_row/drowdown_header_row_content/button_aspects": T.PANEL, + "sdl_dropdown_data_row": T.PANEL, + "sdl_dropdown_data_row/row_background": T.IMAGE, + "sdl_dropdown_data_row/button_aspects": T.UNKNOWN, } export type StoreLayoutType = { - sdl_scrolling_content_panel: T.PANEL - "sdl_scrolling_content_panel/sdl_scrolling_content_stack": T.STACK_PANEL - sdl_scrolling_content_stack: T.STACK_PANEL - "sdl_scrolling_content_stack/padding_0": T.PANEL - "sdl_scrolling_content_stack/store_screen_layout_factory": T.STACK_PANEL - "sdl_scrolling_content_stack/footer": T.PANEL - sdl_scrolling_section_panel: T.STACK_PANEL - "sdl_scrolling_section_panel/padding0": T.PANEL - "sdl_scrolling_section_panel/top_static_sdl_section": T.STACK_PANEL - "sdl_scrolling_section_panel/padding1": T.PANEL - "sdl_scrolling_section_panel/sdl_scrolling_section": T.PANEL - sdl_scrolling_section: T.PANEL - character_creator_sdl_scroll_section: T.STACK_PANEL - character_creator_sdl_section: T.STACK_PANEL - "character_creator_sdl_section/sdl_section": T.UNKNOWN - character_creator_panel: T.STACK_PANEL - "character_creator_panel/left_main_panel_padding": T.UNKNOWN - "character_creator_panel/character_creator_sdl_portion": T.STACK_PANEL - "character_creator_panel/middle_main_panel_padding": T.UNKNOWN - "character_creator_panel/right_main_panel": T.STACK_PANEL - "character_creator_panel/right_main_panel_padding": T.UNKNOWN - character_creator_screen_layout: T.PANEL - "character_creator_screen_layout/character_creator_panel": T.STACK_PANEL - main_panel: T.INPUT_PANEL - "main_panel/background": T.IMAGE - "main_panel/main_panel_content": T.PANEL - "main_panel/main_panel_content/sdl_screen_content": T.UNKNOWN - "main_panel/progress_loading": T.PANEL - nav_button_content: T.STACK_PANEL - "nav_button_content/image_panel": T.PANEL - "nav_button_content/small_padding": T.PANEL - "nav_button_content/label_panel": T.UNKNOWN - default_nav_label_panel: T.PANEL - "default_nav_label_panel/button_text_label": T.LABEL - styled_nav_label_panel: T.PANEL - "styled_nav_label_panel/button_text_label": T.LABEL - styled_nav_label_panel_minecraftTen: T.PANEL - "styled_nav_label_panel_minecraftTen/button_text_label": T.LABEL - default_styled_button_text_label: T.LABEL - nav_image_panel: T.PANEL - "nav_image_panel/button_image_panel": T.PANEL - "nav_image_panel/button_animated_panel": T.PANEL - nav_button_image_panel: T.PANEL - "nav_button_image_panel/button_image": T.UNKNOWN - nav_button_image: T.IMAGE - nav_button_animation: T.IMAGE - nav_button_fill: T.PANEL - nav_button_fill_styled: T.PANEL - nav_button_fill_styled_mc10: T.PANEL - nav_button_standard_styled: T.PANEL - nav_button_standard_styled_mc10: T.PANEL - nav_button_standard: T.PANEL - "nav_button_standard/nav_button": T.BUTTON - nav_button_grid_panel: T.PANEL - "nav_button_grid_panel/nav_button_grid": T.STACK_PANEL - store_layout_ribbon_search_button: T.BUTTON - store_layout_ribbon_search_button_content: T.PANEL - "store_layout_ribbon_search_button_content/button_image": T.IMAGE - store_data_driven_screen_base: T.SCREEN - store_screen_modal_panel: T.PANEL - "store_screen_modal_panel/one_button_dialog": T.PANEL - "store_screen_modal_panel/popup_dialog_factory": T.FACTORY - dialog_button: T.BUTTON - store_screen_main_panel: T.PANEL - "store_screen_main_panel/main_content_view": T.INPUT_PANEL - "store_screen_main_panel/sort_and_filter_modals": T.PANEL - store_full_screen_content: T.PANEL - "store_full_screen_content/mouse_input_focus_panel": T.INPUT_PANEL - "store_full_screen_content/screen_content": T.STACK_PANEL - "store_full_screen_content/screen_content/top_bar_section": T.STACK_PANEL - "store_full_screen_content/screen_content/main_panel": T.PANEL - "store_full_screen_content/screen_content/main_panel/main_panel_content": T.PANEL - "store_full_screen_content/popup_dialog_factory": T.FACTORY - "store_full_screen_content/character_selector_dialog_factory": T.FACTORY - "store_full_screen_content/custom_skin_dialog_factory": T.FACTORY - sdl_base_screen: T.SCREEN - character_creator_base_screen: T.SCREEN - store_data_driven_screen: T.SCREEN - character_creator_screen: T.SCREEN - dressing_room_color_picker_screen: T.SCREEN - expanded_appearance_view_screen: T.SCREEN - non_scrollable_sdl_screen: T.SCREEN - skin_selector_screen: T.SCREEN - store_data_driven_modal_one_button_screen: T.SCREEN + "sdl_scrolling_content_panel": T.PANEL, + "sdl_scrolling_content_panel/sdl_scrolling_content_stack": T.STACK_PANEL, + "sdl_scrolling_content_stack": T.STACK_PANEL, + "sdl_scrolling_content_stack/padding_0": T.PANEL, + "sdl_scrolling_content_stack/store_screen_layout_factory": T.STACK_PANEL, + "sdl_scrolling_content_stack/footer": T.PANEL, + "sdl_scrolling_section_panel": T.STACK_PANEL, + "sdl_scrolling_section_panel/padding0": T.PANEL, + "sdl_scrolling_section_panel/top_static_sdl_section": T.STACK_PANEL, + "sdl_scrolling_section_panel/padding1": T.PANEL, + "sdl_scrolling_section_panel/sdl_scrolling_section": T.PANEL, + "sdl_scrolling_section": T.PANEL, + "character_creator_sdl_scroll_section": T.STACK_PANEL, + "character_creator_sdl_section": T.STACK_PANEL, + "character_creator_sdl_section/sdl_section": T.UNKNOWN, + "character_creator_panel": T.STACK_PANEL, + "character_creator_panel/left_main_panel_padding": T.UNKNOWN, + "character_creator_panel/character_creator_sdl_portion": T.STACK_PANEL, + "character_creator_panel/middle_main_panel_padding": T.UNKNOWN, + "character_creator_panel/right_main_panel": T.STACK_PANEL, + "character_creator_panel/right_main_panel_padding": T.UNKNOWN, + "character_creator_screen_layout": T.PANEL, + "character_creator_screen_layout/character_creator_panel": T.STACK_PANEL, + "main_panel": T.INPUT_PANEL, + "main_panel/background": T.IMAGE, + "main_panel/main_panel_content": T.PANEL, + "main_panel/main_panel_content/sdl_screen_content": T.UNKNOWN, + "main_panel/progress_loading": T.PANEL, + "nav_button_content": T.STACK_PANEL, + "nav_button_content/image_panel": T.PANEL, + "nav_button_content/small_padding": T.PANEL, + "nav_button_content/label_panel": T.UNKNOWN, + "default_nav_label_panel": T.PANEL, + "default_nav_label_panel/button_text_label": T.LABEL, + "styled_nav_label_panel": T.PANEL, + "styled_nav_label_panel/button_text_label": T.LABEL, + "styled_nav_label_panel_minecraftTen": T.PANEL, + "styled_nav_label_panel_minecraftTen/button_text_label": T.LABEL, + "default_styled_button_text_label": T.LABEL, + "nav_image_panel": T.PANEL, + "nav_image_panel/button_image_panel": T.PANEL, + "nav_image_panel/button_animated_panel": T.PANEL, + "nav_button_image_panel": T.PANEL, + "nav_button_image_panel/button_image": T.UNKNOWN, + "nav_button_image": T.IMAGE, + "nav_button_animation": T.IMAGE, + "nav_button_fill": T.PANEL, + "nav_button_fill_styled": T.PANEL, + "nav_button_fill_styled_mc10": T.PANEL, + "nav_button_standard_styled": T.PANEL, + "nav_button_standard_styled_mc10": T.PANEL, + "nav_button_standard": T.PANEL, + "nav_button_standard/nav_button": T.BUTTON, + "nav_button_grid_panel": T.PANEL, + "nav_button_grid_panel/nav_button_grid": T.STACK_PANEL, + "store_layout_ribbon_search_button": T.BUTTON, + "store_layout_ribbon_search_button_content": T.PANEL, + "store_layout_ribbon_search_button_content/button_image": T.IMAGE, + "store_data_driven_screen_base": T.SCREEN, + "store_screen_modal_panel": T.PANEL, + "store_screen_modal_panel/one_button_dialog": T.PANEL, + "store_screen_modal_panel/popup_dialog_factory": T.FACTORY, + "dialog_button": T.BUTTON, + "store_screen_main_panel": T.PANEL, + "store_screen_main_panel/main_content_view": T.INPUT_PANEL, + "store_screen_main_panel/sort_and_filter_modals": T.PANEL, + "store_full_screen_content": T.PANEL, + "store_full_screen_content/mouse_input_focus_panel": T.INPUT_PANEL, + "store_full_screen_content/screen_content": T.STACK_PANEL, + "store_full_screen_content/screen_content/top_bar_section": T.STACK_PANEL, + "store_full_screen_content/screen_content/main_panel": T.PANEL, + "store_full_screen_content/screen_content/main_panel/main_panel_content": T.PANEL, + "store_full_screen_content/popup_dialog_factory": T.FACTORY, + "store_full_screen_content/character_selector_dialog_factory": T.FACTORY, + "store_full_screen_content/custom_skin_dialog_factory": T.FACTORY, + "sdl_base_screen": T.SCREEN, + "character_creator_base_screen": T.SCREEN, + "store_data_driven_screen": T.SCREEN, + "character_creator_screen": T.SCREEN, + "dressing_room_color_picker_screen": T.SCREEN, + "expanded_appearance_view_screen": T.SCREEN, + "non_scrollable_sdl_screen": T.SCREEN, + "skin_selector_screen": T.SCREEN, + "store_data_driven_modal_one_button_screen": T.SCREEN, } export type FilterMenuType = { - filter_clear_button_panel: T.PANEL - "filter_clear_button_panel/clear_button": T.BUTTON - chevron_icon_panel: T.PANEL - "chevron_icon_panel/chevron_icon": T.IMAGE - filter_variables_panel: T.PANEL - filter_option_button_content: T.STACK_PANEL - "filter_option_button_content/left_chevron_icon_panel": T.PANEL - "filter_option_button_content/filter_type_and_selected_panel": T.STACK_PANEL - "filter_option_button_content/filter_type_and_selected_panel/top_padding": T.PANEL - "filter_option_button_content/filter_type_and_selected_panel/filter_type_label": T.LABEL - "filter_option_button_content/filter_type_and_selected_panel/middle_padding": T.PANEL - "filter_option_button_content/filter_type_and_selected_panel/selected_label": T.LABEL - "filter_option_button_content/filter_type_and_selected_panel/bottom_padding": T.PANEL - "filter_option_button_content/right_chevron_icon_panel": T.PANEL - filter_options_button_panel: T.PANEL - "filter_options_button_panel/filter_variables_panel": T.PANEL - "filter_options_button_panel/filter_variables_panel/filter_options_button": T.BUTTON - filter_main_menu_options_button_panel: T.PANEL - filter_title_bar_content: T.STACK_PANEL - "filter_title_bar_content/filter_logo_and_count_panel": T.PANEL - "filter_title_bar_content/centered_filter_title_label": T.PANEL - "filter_title_bar_content/centered_filter_title_label/filter_title_label": T.LABEL - "filter_title_bar_content/filter_title_padding_close_button": T.PANEL - "filter_title_bar_content/centered_x": T.PANEL - "filter_title_bar_content/centered_x/close_x_image": T.IMAGE - filter_title_bar: T.BUTTON - filter_checkbox_toggle: T.PANEL - filter_checkbox_no_icon_toggle: T.PANEL - "filter_checkbox_no_icon_toggle/filter_checkbox_no_icon_toggle": T.PANEL - pack_type_sub_menu_panel: T.PANEL - "pack_type_sub_menu_panel/pack_type_sub_menu": T.STACK_PANEL - "pack_type_sub_menu_panel/pack_type_sub_menu/addon_packs_filter": T.PANEL - "pack_type_sub_menu_panel/pack_type_sub_menu/skin_packs_filter": T.PANEL - "pack_type_sub_menu_panel/pack_type_sub_menu/texture_packs_filter": T.PANEL - "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel": T.STACK_PANEL - "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/worlds_template_filter": T.PANEL - "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/world_template_type_filters": T.PANEL - "pack_type_sub_menu_panel/pack_type_sub_menu/mashup_packs_filter": T.PANEL - offer_type_sub_menu_panel: T.STACK_PANEL - "offer_type_sub_menu_panel/bundles_filter": T.PANEL - "offer_type_sub_menu_panel/realms_plus_filter": T.PANEL - "offer_type_sub_menu_panel/csb_filter": T.PANEL - realms_plus_filter: T.PANEL - "realms_plus_filter/realms_plus_filter": T.PANEL - csb_filter: T.PANEL - "csb_filter/csb_filter": T.PANEL - realms_plus_gradient_content_panel: T.PANEL - "realms_plus_gradient_content_panel/gradient": T.IMAGE - "realms_plus_gradient_content_panel/particles": T.IMAGE - "realms_plus_gradient_content_panel/content_panel": T.STACK_PANEL - csb_gradient_content_panel: T.PANEL - "csb_gradient_content_panel/gradient": T.IMAGE - "csb_gradient_content_panel/particles": T.IMAGE - "csb_gradient_content_panel/content_panel": T.STACK_PANEL - filter_section_content: T.STACK_PANEL - "filter_section_content/section_title_button": T.PANEL - "filter_section_content/clear_button": T.PANEL - "filter_section_content/section_sub_menu": T.UNKNOWN - filter_section_content_dynamic: T.PANEL - "filter_section_content_dynamic/filter_section_content": T.STACK_PANEL - filter_main_menu_content: T.STACK_PANEL - "filter_main_menu_content/filter_title_bar_panel": T.BUTTON - "filter_main_menu_content/offer_type_button": T.PANEL - "filter_main_menu_content/pack_type_button": T.PANEL - "filter_main_menu_content/minecoin_button": T.PANEL - "filter_main_menu_content/rating_button": T.PANEL - "filter_main_menu_content/creator_button": T.PANEL - "filter_main_menu_content/graphics_button": T.PANEL - "filter_main_menu_content/installed_state_button": T.PANEL - "filter_main_menu_content/filter_main_menu_filter_toggles_section": T.PANEL - "filter_main_menu_content/filter_main_menu_filter_toggles_section/filter_main_menu_filter_toggle_grid_panel": T.PANEL - "filter_main_menu_content/clear_button_panel": T.PANEL - filter_main_menu_content_persona: T.STACK_PANEL - "filter_main_menu_content_persona/filter_title_bar_panel": T.BUTTON - "filter_main_menu_content_persona/persona_body_button": T.PANEL - "filter_main_menu_content_persona/persona_style_button": T.PANEL - "filter_main_menu_content_persona/emote_filter_section": T.PANEL - "filter_main_menu_content_persona/emote_filter_section/filter_emote_toggle_grid_panel": T.PANEL - "filter_main_menu_content_persona/minecoin_button": T.PANEL - "filter_main_menu_content_persona/clear_button_panel": T.PANEL - filter_section_content_panel: T.PANEL - "filter_section_content_panel/filter_menu_screen": T.UNKNOWN - filter_main_menu_section: T.PANEL - filter_main_menu_section_persona: T.PANEL - filter_pack_type_section: T.PANEL - filter_offer_type_section: T.PANEL - filter_type_section: T.PANEL - filter_menu_content: T.PANEL - "filter_menu_content/filter_main_menu_screen": T.PANEL - "filter_menu_content/filter_offer_type_screen": T.PANEL - "filter_menu_content/filter_pack_type_screen": T.PANEL - "filter_menu_content/filter_minecoin_section": T.PANEL - "filter_menu_content/filter_rating_section": T.PANEL - "filter_menu_content/filter_creator_section": T.PANEL - "filter_menu_content/filter_graphics_section": T.PANEL - "filter_menu_content/filter_installed_state_section": T.PANEL - filter_menu_content_persona: T.PANEL - "filter_menu_content_persona/filter_main_menu_screen": T.PANEL - "filter_menu_content_persona/filter_style_section": T.PANEL - "filter_menu_content_persona/filter_body_section": T.PANEL - "filter_menu_content_persona/filter_minecoin_section": T.PANEL - filter_menu_panel: T.STACK_PANEL - "filter_menu_panel/top_padding": T.PANEL - "filter_menu_panel/alignment_panel": T.STACK_PANEL - "filter_menu_panel/alignment_panel/left_padding": T.PANEL - "filter_menu_panel/alignment_panel/filter_menu_content_scroll": T.PANEL - "filter_menu_panel/alignment_panel/right_padding": T.PANEL - filter_menu_screen_content: T.INPUT_PANEL - "filter_menu_screen_content/filter_main_panel": T.STACK_PANEL - "filter_menu_screen_content/filter_main_panel_persona": T.STACK_PANEL - "filter_menu_screen_content/filter_menu_close_background_button": T.PANEL + "filter_clear_button_panel": T.PANEL, + "filter_clear_button_panel/clear_button": T.BUTTON, + "chevron_icon_panel": T.PANEL, + "chevron_icon_panel/chevron_icon": T.IMAGE, + "filter_variables_panel": T.PANEL, + "filter_option_button_content": T.STACK_PANEL, + "filter_option_button_content/left_chevron_icon_panel": T.PANEL, + "filter_option_button_content/filter_type_and_selected_panel": T.STACK_PANEL, + "filter_option_button_content/filter_type_and_selected_panel/top_padding": T.PANEL, + "filter_option_button_content/filter_type_and_selected_panel/filter_type_label": T.LABEL, + "filter_option_button_content/filter_type_and_selected_panel/middle_padding": T.PANEL, + "filter_option_button_content/filter_type_and_selected_panel/selected_label": T.LABEL, + "filter_option_button_content/filter_type_and_selected_panel/bottom_padding": T.PANEL, + "filter_option_button_content/right_chevron_icon_panel": T.PANEL, + "filter_options_button_panel": T.PANEL, + "filter_options_button_panel/filter_variables_panel": T.PANEL, + "filter_options_button_panel/filter_variables_panel/filter_options_button": T.BUTTON, + "filter_main_menu_options_button_panel": T.PANEL, + "filter_title_bar_content": T.STACK_PANEL, + "filter_title_bar_content/filter_logo_and_count_panel": T.PANEL, + "filter_title_bar_content/centered_filter_title_label": T.PANEL, + "filter_title_bar_content/centered_filter_title_label/filter_title_label": T.LABEL, + "filter_title_bar_content/filter_title_padding_close_button": T.PANEL, + "filter_title_bar_content/centered_x": T.PANEL, + "filter_title_bar_content/centered_x/close_x_image": T.IMAGE, + "filter_title_bar": T.BUTTON, + "filter_checkbox_toggle": T.PANEL, + "filter_checkbox_no_icon_toggle": T.PANEL, + "filter_checkbox_no_icon_toggle/filter_checkbox_no_icon_toggle": T.PANEL, + "pack_type_sub_menu_panel": T.PANEL, + "pack_type_sub_menu_panel/pack_type_sub_menu": T.STACK_PANEL, + "pack_type_sub_menu_panel/pack_type_sub_menu/addon_packs_filter": T.PANEL, + "pack_type_sub_menu_panel/pack_type_sub_menu/skin_packs_filter": T.PANEL, + "pack_type_sub_menu_panel/pack_type_sub_menu/texture_packs_filter": T.PANEL, + "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel": T.STACK_PANEL, + "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/worlds_template_filter": T.PANEL, + "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/world_template_type_filters": T.PANEL, + "pack_type_sub_menu_panel/pack_type_sub_menu/mashup_packs_filter": T.PANEL, + "offer_type_sub_menu_panel": T.STACK_PANEL, + "offer_type_sub_menu_panel/bundles_filter": T.PANEL, + "offer_type_sub_menu_panel/realms_plus_filter": T.PANEL, + "offer_type_sub_menu_panel/csb_filter": T.PANEL, + "realms_plus_filter": T.PANEL, + "realms_plus_filter/realms_plus_filter": T.PANEL, + "csb_filter": T.PANEL, + "csb_filter/csb_filter": T.PANEL, + "realms_plus_gradient_content_panel": T.PANEL, + "realms_plus_gradient_content_panel/gradient": T.IMAGE, + "realms_plus_gradient_content_panel/particles": T.IMAGE, + "realms_plus_gradient_content_panel/content_panel": T.STACK_PANEL, + "csb_gradient_content_panel": T.PANEL, + "csb_gradient_content_panel/gradient": T.IMAGE, + "csb_gradient_content_panel/particles": T.IMAGE, + "csb_gradient_content_panel/content_panel": T.STACK_PANEL, + "filter_section_content": T.STACK_PANEL, + "filter_section_content/section_title_button": T.PANEL, + "filter_section_content/clear_button": T.PANEL, + "filter_section_content/section_sub_menu": T.UNKNOWN, + "filter_section_content_dynamic": T.PANEL, + "filter_section_content_dynamic/filter_section_content": T.STACK_PANEL, + "filter_main_menu_content": T.STACK_PANEL, + "filter_main_menu_content/filter_title_bar_panel": T.BUTTON, + "filter_main_menu_content/offer_type_button": T.PANEL, + "filter_main_menu_content/pack_type_button": T.PANEL, + "filter_main_menu_content/minecoin_button": T.PANEL, + "filter_main_menu_content/rating_button": T.PANEL, + "filter_main_menu_content/creator_button": T.PANEL, + "filter_main_menu_content/graphics_button": T.PANEL, + "filter_main_menu_content/installed_state_button": T.PANEL, + "filter_main_menu_content/filter_main_menu_filter_toggles_section": T.PANEL, + "filter_main_menu_content/filter_main_menu_filter_toggles_section/filter_main_menu_filter_toggle_grid_panel": T.PANEL, + "filter_main_menu_content/clear_button_panel": T.PANEL, + "filter_main_menu_content_persona": T.STACK_PANEL, + "filter_main_menu_content_persona/filter_title_bar_panel": T.BUTTON, + "filter_main_menu_content_persona/persona_body_button": T.PANEL, + "filter_main_menu_content_persona/persona_style_button": T.PANEL, + "filter_main_menu_content_persona/emote_filter_section": T.PANEL, + "filter_main_menu_content_persona/emote_filter_section/filter_emote_toggle_grid_panel": T.PANEL, + "filter_main_menu_content_persona/minecoin_button": T.PANEL, + "filter_main_menu_content_persona/clear_button_panel": T.PANEL, + "filter_section_content_panel": T.PANEL, + "filter_section_content_panel/filter_menu_screen": T.UNKNOWN, + "filter_main_menu_section": T.PANEL, + "filter_main_menu_section_persona": T.PANEL, + "filter_pack_type_section": T.PANEL, + "filter_offer_type_section": T.PANEL, + "filter_type_section": T.PANEL, + "filter_menu_content": T.PANEL, + "filter_menu_content/filter_main_menu_screen": T.PANEL, + "filter_menu_content/filter_offer_type_screen": T.PANEL, + "filter_menu_content/filter_pack_type_screen": T.PANEL, + "filter_menu_content/filter_minecoin_section": T.PANEL, + "filter_menu_content/filter_rating_section": T.PANEL, + "filter_menu_content/filter_creator_section": T.PANEL, + "filter_menu_content/filter_graphics_section": T.PANEL, + "filter_menu_content/filter_installed_state_section": T.PANEL, + "filter_menu_content_persona": T.PANEL, + "filter_menu_content_persona/filter_main_menu_screen": T.PANEL, + "filter_menu_content_persona/filter_style_section": T.PANEL, + "filter_menu_content_persona/filter_body_section": T.PANEL, + "filter_menu_content_persona/filter_minecoin_section": T.PANEL, + "filter_menu_panel": T.STACK_PANEL, + "filter_menu_panel/top_padding": T.PANEL, + "filter_menu_panel/alignment_panel": T.STACK_PANEL, + "filter_menu_panel/alignment_panel/left_padding": T.PANEL, + "filter_menu_panel/alignment_panel/filter_menu_content_scroll": T.PANEL, + "filter_menu_panel/alignment_panel/right_padding": T.PANEL, + "filter_menu_screen_content": T.INPUT_PANEL, + "filter_menu_screen_content/filter_main_panel": T.STACK_PANEL, + "filter_menu_screen_content/filter_main_panel_persona": T.STACK_PANEL, + "filter_menu_screen_content/filter_menu_close_background_button": T.PANEL, } export type StoreInventoryType = { - sign_in_button: T.BUTTON - no_xbl_and_local_content_warning_panel: T.STACK_PANEL - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel": T.IMAGE - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel": T.PANEL - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack": T.STACK_PANEL - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/top_padding": T.PANEL - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1": T.STACK_PANEL - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel": T.PANEL - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel/xbl_sign_in_image": T.IMAGE - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_padding_warning": T.PANEL - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel": T.PANEL - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack": T.STACK_PANEL - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/top_padding": T.PANEL - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/message_text": T.BUTTON - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/xbl_image_padding_warning": T.PANEL - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel": T.PANEL - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel/sigh_in_button": T.BUTTON - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding": T.PANEL - "no_xbl_and_local_content_warning_panel/bottom_padding": T.PANEL - no_xbl_and_no_local_conent_warning_panel: T.STACK_PANEL - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel": T.IMAGE - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel": T.PANEL - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack": T.STACK_PANEL - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/top_padding": T.PANEL - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1": T.STACK_PANEL - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel": T.PANEL - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel/xbl_sign_in_image": T.IMAGE - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_padding_warning": T.PANEL - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel": T.PANEL - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack": T.STACK_PANEL - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/top_padding": T.PANEL - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/message_text": T.BUTTON - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/xbl_image_padding_warning": T.PANEL - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel": T.PANEL - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel/sigh_in_button": T.BUTTON - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding": T.PANEL - "no_xbl_and_no_local_conent_warning_panel/bottom_padding": T.PANEL - inventory_sign_in_panel: T.PANEL - "inventory_sign_in_panel/no_xbl_and_local_content_warning_panel": T.STACK_PANEL - "inventory_sign_in_panel/no_xbl_and_no_local_conent_warning_panel": T.STACK_PANEL - divider_panel: T.STACK_PANEL - "divider_panel/top_pad": T.PANEL - "divider_panel/divider": T.PANEL - "divider_panel/bottom_pad": T.PANEL - right_image: T.IMAGE - down_image: T.IMAGE - section_toggle_base: T.PANEL - owned_toggle: T.PANEL - current_toggle: T.PANEL - removed_toggle: T.PANEL - subscriptions_toggle: T.PANEL - inventory_left_panel: T.STACK_PANEL - "inventory_left_panel/top_pad": T.PANEL - "inventory_left_panel/owned_toggle": T.PANEL - "inventory_left_panel/owned_dropdown_box_panel": T.IMAGE - "inventory_left_panel/owned_dropdown_box_panel/owned_dropdown_box": T.STACK_PANEL - "inventory_left_panel/divider_0": T.STACK_PANEL - "inventory_left_panel/csub_panel": T.PANEL - "inventory_left_panel/csub_panel/csub_stack_panel": T.STACK_PANEL - "inventory_left_panel/divider_1": T.STACK_PANEL - "inventory_left_panel/subscriptions_toggle": T.PANEL - csub_stack_panel: T.STACK_PANEL - "csub_stack_panel/padding_title_vertical": T.PANEL - "csub_stack_panel/section_title": T.STACK_PANEL - "csub_stack_panel/section_title/padding_title_horizontal": T.PANEL - "csub_stack_panel/section_title/testTitle": T.STACK_PANEL - "csub_stack_panel/dropdown_panel": T.PANEL - "csub_stack_panel/dropdown_panel/dropdown_stack_panel": T.STACK_PANEL - "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle": T.PANEL - "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel": T.PANEL - "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box": T.STACK_PANEL - "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1": T.PANEL - "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle": T.PANEL - "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel": T.PANEL - "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box": T.STACK_PANEL - "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2": T.PANEL - subscriptions_text_panel: T.PANEL - "subscriptions_text_panel/subscriptions_text": T.LABEL - realms_plus_stack_panel: T.STACK_PANEL - "realms_plus_stack_panel/section_title": T.IMAGE - "realms_plus_stack_panel/section_title/border": T.IMAGE - "realms_plus_stack_panel/section_title/section_title_label": T.LABEL - "realms_plus_stack_panel/section_title/particles": T.IMAGE - "realms_plus_stack_panel/dropdown_panel": T.PANEL - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel": T.STACK_PANEL - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_0": T.PANEL - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle": T.PANEL - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel": T.PANEL - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box": T.STACK_PANEL - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1": T.PANEL - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle": T.PANEL - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel": T.PANEL - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box": T.STACK_PANEL - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2": T.PANEL - dropdown_button_content: T.STACK_PANEL - "dropdown_button_content/title_label": T.LABEL - "dropdown_button_content/pad_0_fill": T.PANEL - "dropdown_button_content/pad_0": T.PANEL - "dropdown_button_content/icon_panel": T.PANEL - "dropdown_button_content/icon_panel/block_icon": T.IMAGE - "dropdown_button_content/pad_1": T.PANEL - "dropdown_button_content/pad_2": T.PANEL - "dropdown_button_content/count_panel": T.PANEL - "dropdown_button_content/count_panel/count": T.LABEL - "dropdown_button_content/pad_3": T.PANEL - "dropdown_button_content/right_carrot": T.PANEL - "dropdown_button_content/right_carrot/right": T.IMAGE - "dropdown_button_content/down_carrot": T.PANEL - "dropdown_button_content/down_carrot/down": T.IMAGE - owned_dropdown_content: T.STACK_PANEL - current_dropdown_content: T.STACK_PANEL - removed_dropdown_content: T.STACK_PANEL - dropdown_box: T.STACK_PANEL - "dropdown_box/top_pad": T.PANEL - "dropdown_box/all": T.BUTTON - "dropdown_box/divider_0": T.STACK_PANEL - "dropdown_box/addons": T.BUTTON - "dropdown_box/divider_1": T.STACK_PANEL - "dropdown_box/skins": T.BUTTON - "dropdown_box/divider_2": T.STACK_PANEL - "dropdown_box/worlds": T.BUTTON - "dropdown_box/divider_3": T.STACK_PANEL - "dropdown_box/textures": T.BUTTON - "dropdown_box/divider_4": T.STACK_PANEL - "dropdown_box/mashups": T.BUTTON - "dropdown_box/bottom_pad": T.PANEL - category_panel_button: T.BUTTON - "category_panel_button/default": T.STACK_PANEL - "category_panel_button/hover": T.STACK_PANEL - "category_panel_button/pressed": T.STACK_PANEL - category_stack_panel: T.STACK_PANEL - "category_stack_panel/text": T.LABEL - "category_stack_panel/fill_pad": T.PANEL - "category_stack_panel/icon": T.IMAGE - "category_stack_panel/pad_1": T.PANEL - "category_stack_panel/number": T.LABEL - search_object: T.PANEL - list_panel: T.INPUT_PANEL - "list_panel/list_panel_content": T.PANEL - "list_panel/list_panel_content/search_and_offers_grid_scroll_panel": T.PANEL - "list_panel/progress_loading": T.PANEL - items_content_section: T.INPUT_PANEL - subscriptions_content_section: T.STACK_PANEL - "subscriptions_content_section/left_pad": T.PANEL - "subscriptions_content_section/search_and_offers_grid_scroll_panel": T.PANEL - right_pane_factory: T.STACK_PANEL - content_area: T.PANEL - "content_area/control": T.STACK_PANEL - "content_area/control/right_pane_factory": T.STACK_PANEL - main_panel: T.STACK_PANEL - "main_panel/inventory_left_panel": T.PANEL - "main_panel/inventory_left_panel/inventory_left_image": T.IMAGE - "main_panel/inventory_left_panel/left_scrolling_panel": T.PANEL - "main_panel/divider_panel": T.PANEL - "main_panel/divider_panel/main_divider": T.IMAGE - "main_panel/inventory_right_panel": T.PANEL - "main_panel/inventory_right_panel/right_panel_background_image": T.IMAGE - "main_panel/inventory_right_panel/content_right_panel": T.PANEL - store_inventory_screen_main_panel: T.PANEL - "store_inventory_screen_main_panel/main_content_view": T.INPUT_PANEL - "store_inventory_screen_main_panel/sort_and_filter_modals": T.PANEL - store_search_screen_content: T.PANEL - "store_search_screen_content/main_panel": T.STACK_PANEL - "store_search_screen_content/popup_dialog_factory": T.FACTORY - store_inventory_screen: T.SCREEN - signin_text_section_body: T.STACK_PANEL - signin_text: T.LABEL - signin_text_02: T.LABEL - signin_text_section: T.STACK_PANEL - "signin_text_section/signin_text": T.LABEL - "signin_text_section/line_1_padding_line_2": T.PANEL - "signin_text_section/signin_text_02": T.LABEL - sign_in_panel_text_body: T.BUTTON + "sign_in_button": T.BUTTON, + "no_xbl_and_local_content_warning_panel": T.STACK_PANEL, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel": T.IMAGE, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel": T.PANEL, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack": T.STACK_PANEL, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/top_padding": T.PANEL, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1": T.STACK_PANEL, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel": T.PANEL, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel/xbl_sign_in_image": T.IMAGE, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_padding_warning": T.PANEL, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel": T.PANEL, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack": T.STACK_PANEL, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/top_padding": T.PANEL, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/message_text": T.BUTTON, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/xbl_image_padding_warning": T.PANEL, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel": T.PANEL, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel/sigh_in_button": T.BUTTON, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding": T.PANEL, + "no_xbl_and_local_content_warning_panel/bottom_padding": T.PANEL, + "no_xbl_and_no_local_conent_warning_panel": T.STACK_PANEL, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel": T.IMAGE, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel": T.PANEL, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack": T.STACK_PANEL, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/top_padding": T.PANEL, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1": T.STACK_PANEL, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel": T.PANEL, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel/xbl_sign_in_image": T.IMAGE, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_padding_warning": T.PANEL, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel": T.PANEL, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack": T.STACK_PANEL, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/top_padding": T.PANEL, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/message_text": T.BUTTON, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/xbl_image_padding_warning": T.PANEL, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel": T.PANEL, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel/sigh_in_button": T.BUTTON, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding": T.PANEL, + "no_xbl_and_no_local_conent_warning_panel/bottom_padding": T.PANEL, + "inventory_sign_in_panel": T.PANEL, + "inventory_sign_in_panel/no_xbl_and_local_content_warning_panel": T.STACK_PANEL, + "inventory_sign_in_panel/no_xbl_and_no_local_conent_warning_panel": T.STACK_PANEL, + "divider_panel": T.STACK_PANEL, + "divider_panel/top_pad": T.PANEL, + "divider_panel/divider": T.PANEL, + "divider_panel/bottom_pad": T.PANEL, + "right_image": T.IMAGE, + "down_image": T.IMAGE, + "section_toggle_base": T.PANEL, + "owned_toggle": T.PANEL, + "current_toggle": T.PANEL, + "removed_toggle": T.PANEL, + "subscriptions_toggle": T.PANEL, + "inventory_left_panel": T.STACK_PANEL, + "inventory_left_panel/top_pad": T.PANEL, + "inventory_left_panel/owned_toggle": T.PANEL, + "inventory_left_panel/owned_dropdown_box_panel": T.IMAGE, + "inventory_left_panel/owned_dropdown_box_panel/owned_dropdown_box": T.STACK_PANEL, + "inventory_left_panel/divider_0": T.STACK_PANEL, + "inventory_left_panel/csub_panel": T.PANEL, + "inventory_left_panel/csub_panel/csub_stack_panel": T.STACK_PANEL, + "inventory_left_panel/divider_1": T.STACK_PANEL, + "inventory_left_panel/subscriptions_toggle": T.PANEL, + "csub_stack_panel": T.STACK_PANEL, + "csub_stack_panel/padding_title_vertical": T.PANEL, + "csub_stack_panel/section_title": T.STACK_PANEL, + "csub_stack_panel/section_title/padding_title_horizontal": T.PANEL, + "csub_stack_panel/section_title/testTitle": T.STACK_PANEL, + "csub_stack_panel/dropdown_panel": T.PANEL, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel": T.STACK_PANEL, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle": T.PANEL, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel": T.PANEL, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box": T.STACK_PANEL, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1": T.PANEL, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle": T.PANEL, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel": T.PANEL, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box": T.STACK_PANEL, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2": T.PANEL, + "subscriptions_text_panel": T.PANEL, + "subscriptions_text_panel/subscriptions_text": T.LABEL, + "realms_plus_stack_panel": T.STACK_PANEL, + "realms_plus_stack_panel/section_title": T.IMAGE, + "realms_plus_stack_panel/section_title/border": T.IMAGE, + "realms_plus_stack_panel/section_title/section_title_label": T.LABEL, + "realms_plus_stack_panel/section_title/particles": T.IMAGE, + "realms_plus_stack_panel/dropdown_panel": T.PANEL, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel": T.STACK_PANEL, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_0": T.PANEL, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle": T.PANEL, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel": T.PANEL, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box": T.STACK_PANEL, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1": T.PANEL, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle": T.PANEL, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel": T.PANEL, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box": T.STACK_PANEL, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2": T.PANEL, + "dropdown_button_content": T.STACK_PANEL, + "dropdown_button_content/title_label": T.LABEL, + "dropdown_button_content/pad_0_fill": T.PANEL, + "dropdown_button_content/pad_0": T.PANEL, + "dropdown_button_content/icon_panel": T.PANEL, + "dropdown_button_content/icon_panel/block_icon": T.IMAGE, + "dropdown_button_content/pad_1": T.PANEL, + "dropdown_button_content/pad_2": T.PANEL, + "dropdown_button_content/count_panel": T.PANEL, + "dropdown_button_content/count_panel/count": T.LABEL, + "dropdown_button_content/pad_3": T.PANEL, + "dropdown_button_content/right_carrot": T.PANEL, + "dropdown_button_content/right_carrot/right": T.IMAGE, + "dropdown_button_content/down_carrot": T.PANEL, + "dropdown_button_content/down_carrot/down": T.IMAGE, + "owned_dropdown_content": T.STACK_PANEL, + "current_dropdown_content": T.STACK_PANEL, + "removed_dropdown_content": T.STACK_PANEL, + "dropdown_box": T.STACK_PANEL, + "dropdown_box/top_pad": T.PANEL, + "dropdown_box/all": T.BUTTON, + "dropdown_box/divider_0": T.STACK_PANEL, + "dropdown_box/addons": T.BUTTON, + "dropdown_box/divider_1": T.STACK_PANEL, + "dropdown_box/skins": T.BUTTON, + "dropdown_box/divider_2": T.STACK_PANEL, + "dropdown_box/worlds": T.BUTTON, + "dropdown_box/divider_3": T.STACK_PANEL, + "dropdown_box/textures": T.BUTTON, + "dropdown_box/divider_4": T.STACK_PANEL, + "dropdown_box/mashups": T.BUTTON, + "dropdown_box/bottom_pad": T.PANEL, + "category_panel_button": T.BUTTON, + "category_panel_button/default": T.STACK_PANEL, + "category_panel_button/hover": T.STACK_PANEL, + "category_panel_button/pressed": T.STACK_PANEL, + "category_stack_panel": T.STACK_PANEL, + "category_stack_panel/text": T.LABEL, + "category_stack_panel/fill_pad": T.PANEL, + "category_stack_panel/icon": T.IMAGE, + "category_stack_panel/pad_1": T.PANEL, + "category_stack_panel/number": T.LABEL, + "search_object": T.PANEL, + "list_panel": T.INPUT_PANEL, + "list_panel/list_panel_content": T.PANEL, + "list_panel/list_panel_content/search_and_offers_grid_scroll_panel": T.PANEL, + "list_panel/progress_loading": T.PANEL, + "items_content_section": T.INPUT_PANEL, + "subscriptions_content_section": T.STACK_PANEL, + "subscriptions_content_section/left_pad": T.PANEL, + "subscriptions_content_section/search_and_offers_grid_scroll_panel": T.PANEL, + "right_pane_factory": T.STACK_PANEL, + "content_area": T.PANEL, + "content_area/control": T.STACK_PANEL, + "content_area/control/right_pane_factory": T.STACK_PANEL, + "main_panel": T.STACK_PANEL, + "main_panel/inventory_left_panel": T.PANEL, + "main_panel/inventory_left_panel/inventory_left_image": T.IMAGE, + "main_panel/inventory_left_panel/left_scrolling_panel": T.PANEL, + "main_panel/divider_panel": T.PANEL, + "main_panel/divider_panel/main_divider": T.IMAGE, + "main_panel/inventory_right_panel": T.PANEL, + "main_panel/inventory_right_panel/right_panel_background_image": T.IMAGE, + "main_panel/inventory_right_panel/content_right_panel": T.PANEL, + "store_inventory_screen_main_panel": T.PANEL, + "store_inventory_screen_main_panel/main_content_view": T.INPUT_PANEL, + "store_inventory_screen_main_panel/sort_and_filter_modals": T.PANEL, + "store_search_screen_content": T.PANEL, + "store_search_screen_content/main_panel": T.STACK_PANEL, + "store_search_screen_content/popup_dialog_factory": T.FACTORY, + "store_inventory_screen": T.SCREEN, + "signin_text_section_body": T.STACK_PANEL, + "signin_text": T.LABEL, + "signin_text_02": T.LABEL, + "signin_text_section": T.STACK_PANEL, + "signin_text_section/signin_text": T.LABEL, + "signin_text_section/line_1_padding_line_2": T.PANEL, + "signin_text_section/signin_text_02": T.LABEL, + "sign_in_panel_text_body": T.BUTTON, } export type StoreItemListType = { - store_offer_key_art: T.IMAGE - main_panel: T.INPUT_PANEL - "main_panel/search_object": T.PANEL - "main_panel/progress_loading": T.PANEL - scrolling_content_stack: T.STACK_PANEL - "scrolling_content_stack/search_panel": T.UNKNOWN - store_offer_grid: T.GRID - persona_offer_grid: T.GRID - vertical_store_offer_grid: T.GRID - store_offer_title: T.LABEL - store_offer_grid_item: T.PANEL - "store_offer_grid_item/frame": T.IMAGE - "store_offer_grid_item/frame/key_art": T.IMAGE - "store_offer_grid_item/frame/key_art/key_art_frame": T.IMAGE - "store_offer_grid_item/frame/key_art/csb_expiration_banner": T.PANEL - "store_offer_grid_item/frame/progress": T.PANEL - "store_offer_grid_item/frame/title_label_panel": T.PANEL - "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label": T.STACK_PANEL - "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/title": T.LABEL - "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/creator_label": T.STACK_PANEL - "store_offer_grid_item/frame/durable_offer_info_panel": T.STACK_PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel": T.STACK_PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner": T.STACK_PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel": T.STACK_PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6": T.PANEL - "store_offer_grid_item/frame/offer_button": T.BUTTON - "store_offer_grid_item/frame/offer_button/hover": T.PANEL - "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel": T.PANEL - "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame": T.IMAGE - "store_offer_grid_item/frame/offer_button/pressed": T.PANEL - "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel": T.PANEL - "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame": T.IMAGE - "store_offer_grid_item/frame/offer_button/offer_status_icon": T.PANEL - store_screen_content: T.PANEL - "store_screen_content/main_panel": T.STACK_PANEL - "store_screen_content/popup_dialog_factory": T.FACTORY + "store_offer_key_art": T.IMAGE, + "main_panel": T.INPUT_PANEL, + "main_panel/search_object": T.PANEL, + "main_panel/progress_loading": T.PANEL, + "scrolling_content_stack": T.STACK_PANEL, + "scrolling_content_stack/search_panel": T.UNKNOWN, + "store_offer_grid": T.GRID, + "persona_offer_grid": T.GRID, + "vertical_store_offer_grid": T.GRID, + "store_offer_title": T.LABEL, + "store_offer_grid_item": T.PANEL, + "store_offer_grid_item/frame": T.IMAGE, + "store_offer_grid_item/frame/key_art": T.IMAGE, + "store_offer_grid_item/frame/key_art/key_art_frame": T.IMAGE, + "store_offer_grid_item/frame/key_art/csb_expiration_banner": T.PANEL, + "store_offer_grid_item/frame/progress": T.PANEL, + "store_offer_grid_item/frame/title_label_panel": T.PANEL, + "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label": T.STACK_PANEL, + "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/title": T.LABEL, + "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/creator_label": T.STACK_PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel": T.STACK_PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel": T.STACK_PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner": T.STACK_PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel": T.STACK_PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6": T.PANEL, + "store_offer_grid_item/frame/offer_button": T.BUTTON, + "store_offer_grid_item/frame/offer_button/hover": T.PANEL, + "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel": T.PANEL, + "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame": T.IMAGE, + "store_offer_grid_item/frame/offer_button/pressed": T.PANEL, + "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel": T.PANEL, + "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame": T.IMAGE, + "store_offer_grid_item/frame/offer_button/offer_status_icon": T.PANEL, + "store_screen_content": T.PANEL, + "store_screen_content/main_panel": T.STACK_PANEL, + "store_screen_content/popup_dialog_factory": T.FACTORY, } export type StoreProgressType = { - store_progress_screen: T.SCREEN - screen_content: T.PANEL - "screen_content/title_image": T.IMAGE - "screen_content/progress_dialog": T.PANEL - dialog_content: T.STACK_PANEL - "dialog_content/tooltip_panel": T.PANEL - "dialog_content/tooltip_panel/tooltip_text": T.LABEL - "dialog_content/padding": T.PANEL - "dialog_content/progress_panel": T.PANEL - "dialog_content/progress_panel/empty_progress_bar": T.IMAGE - "dialog_content/progress_panel/progress_percent_panel": T.PANEL - "dialog_content/progress_panel/progress_percent_panel/full_progress_bar": T.IMAGE - "dialog_content/progress_panel/progress_percent_panel/progress_bar_nub": T.IMAGE - screen_background: T.IMAGE + "store_progress_screen": T.SCREEN, + "screen_content": T.PANEL, + "screen_content/title_image": T.IMAGE, + "screen_content/progress_dialog": T.PANEL, + "dialog_content": T.STACK_PANEL, + "dialog_content/tooltip_panel": T.PANEL, + "dialog_content/tooltip_panel/tooltip_text": T.LABEL, + "dialog_content/padding": T.PANEL, + "dialog_content/progress_panel": T.PANEL, + "dialog_content/progress_panel/empty_progress_bar": T.IMAGE, + "dialog_content/progress_panel/progress_percent_panel": T.PANEL, + "dialog_content/progress_panel/progress_percent_panel/full_progress_bar": T.IMAGE, + "dialog_content/progress_panel/progress_percent_panel/progress_bar_nub": T.IMAGE, + "screen_background": T.IMAGE, } export type PromoTimelineType = { - promo_banner_factory: T.STACK_PANEL - promo_banner_button_content: T.PANEL - "promo_banner_button_content/promo_banner_button": T.LABEL - "promo_banner_button_content/progress_loading_spinner": T.IMAGE - promo_banner_image: T.IMAGE - promo_banner_panel_content: T.PANEL - "promo_banner_panel_content/banner_image": T.IMAGE - "promo_banner_panel_content/banner_text_panel": T.STACK_PANEL - "promo_banner_panel_content/banner_text_panel/padding_0": T.PANEL - "promo_banner_panel_content/banner_text_panel/title_stack_panel": T.STACK_PANEL - "promo_banner_panel_content/banner_text_panel/title_stack_panel/banner_title": T.STACK_PANEL - "promo_banner_panel_content/banner_text_panel/description": T.STACK_PANEL - "promo_banner_panel_content/button_stack_panel": T.STACK_PANEL - "promo_banner_panel_content/button_stack_panel/left_offset": T.PANEL - "promo_banner_panel_content/button_stack_panel/banner_button": T.STACK_PANEL - "promo_banner_panel_content/button_stack_panel/right_offset": T.PANEL - promo_banner_holiday_panel: T.PANEL - "promo_banner_holiday_panel/banner_full_button": T.BUTTON - "promo_banner_holiday_panel/banner_full_button/default": T.PANEL - "promo_banner_holiday_panel/banner_full_button/hover": T.PANEL - "promo_banner_holiday_panel/banner_full_button/pressed": T.PANEL - image_message_panel: T.STACK_PANEL - "image_message_panel/image_message_row_content": T.PANEL - "image_message_panel/padding_0": T.PANEL - image_message_row_content: T.PANEL - "image_message_row_content/gray_background": T.IMAGE - "image_message_row_content/gray_background/message_text": T.LABEL - "image_message_row_content/gray_background/row_image": T.IMAGE - "image_message_row_content/row_button": T.BUTTON - promo_image_panel: T.IMAGE - "promo_image_panel/button_image_panel": T.PANEL - "promo_image_panel/button_animated_panel": T.PANEL - promo_button_image_panel: T.PANEL - "promo_button_image_panel/button_image": T.UNKNOWN - promo_button_image: T.IMAGE - promo_button_animation: T.IMAGE - banner_button: T.PANEL - sdl_text_aligned_panel: T.STACK_PANEL - sdl_text_minecraftTen_aligned_panel: T.STACK_PANEL - sdl_content_aligned_panel: T.STACK_PANEL - "sdl_content_aligned_panel/left__padding_panel": T.PANEL - "sdl_content_aligned_panel/control": T.UNKNOWN - "sdl_content_aligned_panel/right_padding_panel": T.PANEL - sdl_aligned_text: T.LABEL - sdl_aligned_minecraftTen_text: T.LABEL - colored_direction_button_panel: T.PANEL - "colored_direction_button_panel/chevron_image": T.IMAGE - left_corner_art: T.IMAGE - right_corner_art: T.IMAGE - promo_landing_panel: T.INPUT_PANEL - "promo_landing_panel/promo_landing_panel_content": T.STACK_PANEL - "promo_landing_panel/promo_landing_panel_content/promo_top": T.PANEL - "promo_landing_panel/promo_landing_panel_content/pad_0": T.PANEL - "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel": T.PANEL - "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom": T.IMAGE - "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel": T.INPUT_PANEL - "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/left_button_panel": T.PANEL - "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/left_button_panel/left_button": T.BUTTON - "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/offer_grid": T.STACK_PANEL - "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel": T.PANEL - "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel/right_button": T.BUTTON - "promo_landing_panel/promo_landing_panel_content/pad_1": T.PANEL - "promo_landing_panel/left_corner_art": T.IMAGE - "promo_landing_panel/right_corner_art": T.IMAGE - promotion_screen_top_section: T.PANEL - "promotion_screen_top_section/main_panel": T.IMAGE - promotion_top_main_panel: T.IMAGE - "promotion_top_main_panel/promotion_top_main_stack": T.STACK_PANEL - "promotion_top_main_panel/promotion_top_main_stack/main_panel_title": T.STACK_PANEL - "promotion_top_main_panel/promotion_top_main_stack/promo_single_top": T.INPUT_PANEL - "promotion_top_main_panel/promotion_top_main_stack/promo_single_top/single_item_view": T.STACK_PANEL - "promotion_top_main_panel/promotion_top_main_stack/promo_multi_item": T.PANEL - main_panel_title: T.STACK_PANEL - "main_panel_title/padding_0": T.PANEL - "main_panel_title/header_stack": T.STACK_PANEL - "main_panel_title/header_stack/padding_0": T.PANEL - "main_panel_title/header_stack/back_button_centering_panel": T.PANEL - "main_panel_title/header_stack/back_button_centering_panel/button": T.BUTTON - "main_panel_title/header_stack/padding_1": T.PANEL - "main_panel_title/header_stack/header_panel": T.PANEL - "main_panel_title/header_stack/header_panel/title_and_description": T.LABEL - "main_panel_title/header_stack/padding_2": T.PANEL - "main_panel_title/header_stack/claim_all_button_panel": T.PANEL - "main_panel_title/header_stack/claim_all_button_panel/claim_all_button": T.BUTTON - "main_panel_title/padding_1": T.PANEL - "main_panel_title/divdier_centering_panel": T.PANEL - "main_panel_title/divdier_centering_panel/divider": T.IMAGE - "main_panel_title/padding_2": T.PANEL - promo_multi_item_grid: T.GRID - promo_button: T.BUTTON - "promo_button/default": T.PANEL - "promo_button/default/key_art_size_panel": T.PANEL - "promo_button/default/key_art_size_panel/key_art_frame": T.IMAGE - "promo_button/default/key_art_size_panel/key_art_frame/sizing_panel": T.PANEL - "promo_button/default/key_art_size_panel/key_art_frame/platform_restricted_warning_image": T.IMAGE - "promo_button/default/key_art_size_panel/button_frame": T.IMAGE - "promo_button/hover": T.PANEL - "promo_button/hover/key_art_size_panel": T.PANEL - "promo_button/hover/key_art_size_panel/key_art_frame": T.IMAGE - "promo_button/hover/key_art_size_panel/key_art_frame/sizing_panel": T.PANEL - "promo_button/hover/key_art_size_panel/button_frame": T.IMAGE - "promo_button/pressed": T.PANEL - "promo_button/pressed/key_art_frame": T.IMAGE - "promo_button/pressed/key_art_frame/sizing_panel": T.PANEL - "promo_button/pressed/button_frame": T.IMAGE - promo_grid_item: T.PANEL - "promo_grid_item/background_image": T.IMAGE - "promo_grid_item/background_image/promo_content": T.STACK_PANEL - "promo_grid_item/promo_button": T.BUTTON - "promo_grid_item/platform_restricted_error_multi_item": T.PANEL - platform_restricted_error: T.PANEL - "platform_restricted_error/platform_restricted_error_button": T.BUTTON - "platform_restricted_error/platform_restricted_error_button/default": T.PANEL - "platform_restricted_error/platform_restricted_error_button/hover": T.IMAGE - "platform_restricted_error/platform_restricted_error_button/pressed": T.PANEL - "platform_restricted_error/platform_restricted_error_button/white_overlay_to_gray_out": T.IMAGE - promo_grid_item_content: T.STACK_PANEL - "promo_grid_item_content/thumbnail_image": T.IMAGE - "promo_grid_item_content/persona_key_art_frame": T.PANEL - "promo_grid_item_content/persona_key_art_frame/persona_image_panel": T.IMAGE - "promo_grid_item_content/persona_key_art_frame/background": T.IMAGE - "promo_grid_item_content/persona_key_art_frame/rarity_bar_panel": T.IMAGE - "promo_grid_item_content/padding_0": T.PANEL - "promo_grid_item_content/title_tooltip": T.STACK_PANEL - "promo_grid_item_content/title_tooltip/promo_title": T.LABEL - "promo_grid_item_content/title_tooltip/tooltip": T.STACK_PANEL - promotion_period_grid_panel: T.PANEL - "promotion_period_grid_panel/promotion_offer_grid_image": T.PANEL - "promotion_period_grid_panel/promotion_offer_grid_image/item_selected_bg": T.IMAGE - "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel": T.STACK_PANEL - "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel": T.PANEL - "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel/day_label": T.LABEL - "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/pad": T.PANEL - "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel": T.PANEL - "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel": T.PANEL - "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel/item_button": T.PANEL - promotion_period_offer_panel: T.STACK_PANEL - "promotion_period_offer_panel/period_1": T.PANEL - "promotion_period_offer_panel/padding_0": T.PANEL - "promotion_period_offer_panel/period_2": T.PANEL - "promotion_period_offer_panel/padding_1": T.PANEL - "promotion_period_offer_panel/period_3": T.PANEL - "promotion_period_offer_panel/padding_2": T.PANEL - "promotion_period_offer_panel/period_4": T.PANEL - "promotion_period_offer_panel/padding_3": T.PANEL - "promotion_period_offer_panel/period_5": T.PANEL - "promotion_period_offer_panel/padding_4": T.PANEL - "promotion_period_offer_panel/period_6": T.PANEL - "promotion_period_offer_panel/padding_5": T.PANEL - "promotion_period_offer_panel/period_7": T.PANEL - toggle_button_control: T.PANEL - "toggle_button_control/green_check": T.IMAGE - "toggle_button_control/key_art_image_panel": T.PANEL - "toggle_button_control/key_art_image_panel/image_loading_panel": T.PANEL - "toggle_button_control/key_art_image_panel/key_art_image": T.IMAGE - checked_border: T.PANEL - promotion_period_grid_item: T.PANEL - "promotion_period_grid_item/frame": T.PANEL - "promotion_period_grid_item/frame/offer_button": T.PANEL - "promotion_period_grid_item/frame/offer_button/offer_toggle_button": T.PANEL - vertical_padding_2px: T.PANEL - timer_icon_tooltip_panel: T.PANEL - "timer_icon_tooltip_panel/limited_status_image": T.IMAGE - timer_tooltip_panel_right_extending: T.BUTTON - "timer_tooltip_panel_right_extending/default": T.PANEL - "timer_tooltip_panel_right_extending/hover": T.IMAGE - "timer_tooltip_panel_right_extending/pressed": T.IMAGE - timer_tooltip_panel_left_extending: T.BUTTON - "timer_tooltip_panel_left_extending/default": T.PANEL - "timer_tooltip_panel_left_extending/hover": T.IMAGE - "timer_tooltip_panel_left_extending/pressed": T.IMAGE - no_timer_tooltip_panel: T.BUTTON - "no_timer_tooltip_panel/default": T.PANEL - "no_timer_tooltip_panel/hover": T.PANEL - "no_timer_tooltip_panel/pressed": T.PANEL - promo_timer_panel: T.STACK_PANEL - "promo_timer_panel/timer_icon_and_tooltip_panel": T.PANEL - "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_right_extending": T.BUTTON - "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_left_extending": T.BUTTON - "promo_timer_panel/timer_icon_and_tooltip_panel/notooltip_button": T.BUTTON - "promo_timer_panel/timer_icon_and_tooltip_panel/timer_icon": T.IMAGE - "promo_timer_panel/padding": T.PANEL - "promo_timer_panel/timer_text": T.LABEL - offer_title_panel: T.PANEL - "offer_title_panel/offer_title_label": T.LABEL - title_and_author_panel: T.STACK_PANEL - "title_and_author_panel/author_button_panel": T.PANEL - "title_and_author_panel/author_button_panel/summary_author_button": T.BUTTON - glyph_panel: T.PANEL - "glyph_panel/item_glyph_count_panel": T.STACK_PANEL - "glyph_panel/item_glyph_count_panel/glyph_icon_panel": T.PANEL - "glyph_panel/item_glyph_count_panel/glyph_icon_panel/glyph_icon": T.IMAGE - "glyph_panel/item_glyph_count_panel/center_item_glyph_padding": T.PANEL - "glyph_panel/item_glyph_count_panel/item_glyph_count_panel_label": T.LABEL - "glyph_panel/item_glyph_count_panel/item_glyph_panel_padding": T.PANEL - vertical_glyph_section_content: T.STACK_PANEL - "vertical_glyph_section_content/glyph_content": T.PANEL - "vertical_glyph_section_content/bottom_glyph_content_padding": T.PANEL - glyph_section_panel: T.PANEL - "glyph_section_panel/glyphs": T.STACK_PANEL - "glyph_section_panel/glyphs/skin_glyph_section": T.UNKNOWN - "glyph_section_panel/glyphs/world_glyph_section": T.UNKNOWN - "glyph_section_panel/glyphs/resource_pack_glyph_section": T.UNKNOWN - vertical_glyph_section_panel: T.PANEL - image_glyphs_panel: T.STACK_PANEL - "image_glyphs_panel/world_panel": T.PANEL - "image_glyphs_panel/world_panel/border": T.IMAGE - "image_glyphs_panel/world_panel/world_key_image": T.IMAGE - "image_glyphs_panel/persona_panel": T.PANEL - "image_glyphs_panel/persona_panel/border": T.IMAGE - "image_glyphs_panel/persona_panel/persona_image": T.IMAGE - "image_glyphs_panel/persona_panel/background": T.IMAGE - "image_glyphs_panel/persona_panel/rarity_bar_panel": T.IMAGE - "image_glyphs_panel/divider": T.PANEL - "image_glyphs_panel/info": T.STACK_PANEL - "image_glyphs_panel/info/summary_title_and_author_panel": T.STACK_PANEL - "image_glyphs_panel/info/glyph_section": T.PANEL - "image_glyphs_panel/info/glyph_section/glyph_section_panel": T.PANEL - promo_lower_button_content: T.PANEL - "promo_lower_button_content/promo_banner_button": T.LABEL - "promo_lower_button_content/progress_loading_spinner": T.IMAGE - free_discount_label: T.LABEL - promo_upper_button_content: T.PANEL - "promo_upper_button_content/markdown": T.STACK_PANEL - "promo_upper_button_content/markdown/sales_banner_offset_panel": T.PANEL - "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel": T.PANEL - "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel/markdown_banner": T.STACK_PANEL - "promo_upper_button_content/markdown/price_markdown_panel": T.PANEL - "promo_upper_button_content/markdown/price_markdown_panel/offer_price": T.LABEL - "promo_upper_button_content/markdown/price_markdown_panel/offer_price/text_strike_through": T.IMAGE - "promo_upper_button_content/promo_item_action_text_panel": T.STACK_PANEL - "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel": T.PANEL - "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/platform_restricted_warning_image": T.IMAGE - "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/padding": T.PANEL - "promo_upper_button_content/promo_item_action_text_panel/promo_item_action_text": T.LABEL - "promo_upper_button_content/download_progress_bar": T.PANEL - description_section_panel: T.PANEL - "description_section_panel/contents_description": T.LABEL - offset_title_offer: T.STACK_PANEL - "offset_title_offer/pad_0": T.PANEL - "offset_title_offer/title_panel": T.PANEL - offset_promo_timer: T.STACK_PANEL - "offset_promo_timer/pad_0": T.PANEL - "offset_promo_timer/promo_timer": T.STACK_PANEL - offset_image_glyphs_panel: T.STACK_PANEL - "offset_image_glyphs_panel/pad_0": T.PANEL - "offset_image_glyphs_panel/smaller_panel": T.STACK_PANEL - "offset_image_glyphs_panel/smaller_panel/details": T.STACK_PANEL - "offset_image_glyphs_panel/smaller_panel/description": T.PANEL - promo_pack_detail_panel: T.STACK_PANEL - "promo_pack_detail_panel/offset_title_panel": T.STACK_PANEL - "promo_pack_detail_panel/offsetted_promo_timer": T.STACK_PANEL - "promo_pack_detail_panel/pad_0": T.PANEL - "promo_pack_detail_panel/offsetted_details": T.STACK_PANEL - "promo_pack_detail_panel/pad_1": T.PANEL - promo_left_inner_top_scrolling_content: T.INPUT_PANEL - "promo_left_inner_top_scrolling_content/details": T.STACK_PANEL - promo_left_inner_top: T.STACK_PANEL - "promo_left_inner_top/top": T.PANEL - "promo_left_inner_top/padding2": T.PANEL - promo_left_inner_bottom: T.STACK_PANEL - "promo_left_inner_bottom/banner_button_top_panel": T.PANEL - "promo_left_inner_bottom/banner_button_top_panel/banner_button_top": T.BUTTON - "promo_left_inner_bottom/banner_button_top_panel/platform_restricted_error_single_item": T.PANEL - "promo_left_inner_bottom/banner_button_bottom": T.BUTTON - promo_left_panel: T.STACK_PANEL - "promo_left_panel/top": T.STACK_PANEL - "promo_left_panel/bottom_buttons_padded": T.STACK_PANEL - "promo_left_panel/bottom_buttons_padded/pad_0": T.PANEL - "promo_left_panel/bottom_buttons_padded/bottom": T.STACK_PANEL - "promo_left_panel/padding": T.PANEL - promo_world_image_panel: T.PANEL - "promo_world_image_panel/image": T.PANEL - "promo_world_image_panel/image/key_image": T.IMAGE - "promo_world_image_panel/image/key_image/border": T.IMAGE - promo_grey_bar_panel: T.STACK_PANEL - "promo_grey_bar_panel/grey_bar": T.IMAGE - "promo_grey_bar_panel/green_bar": T.IMAGE - "promo_grey_bar_panel/padding": T.PANEL - promo_world_button_panel: T.STACK_PANEL - "promo_world_button_panel/pan_left_button": T.BUTTON - "promo_world_button_panel/navigation_bar": T.PANEL - "promo_world_button_panel/navigation_bar/grey_bar": T.IMAGE - "promo_world_button_panel/navigation_bar/grey_bar/grey_bar_factory_panel": T.STACK_PANEL - "promo_world_button_panel/pan_right_button": T.BUTTON - promo_world_panel: T.STACK_PANEL - "promo_world_panel/image": T.PANEL - "promo_world_panel/padding1": T.PANEL - "promo_world_panel/buttons": T.STACK_PANEL - "promo_world_panel/padding_3": T.PANEL - promo_skin_panel: T.PANEL - "promo_skin_panel/size_control": T.PANEL - "promo_skin_panel/size_control/background": T.IMAGE - "promo_skin_panel/size_control/skin_button": T.BUTTON - "promo_skin_panel/size_control/skin_button/default": T.PANEL - "promo_skin_panel/size_control/skin_button/hover": T.IMAGE - "promo_skin_panel/size_control/skin_button/pressed": T.PANEL - "promo_skin_panel/size_control/skin_button/content_panel": T.PANEL - "promo_skin_panel/size_control/skin_button/content_panel/paper_doll": T.CUSTOM - promo_skin_grid_panel: T.PANEL - "promo_skin_grid_panel/promo_skin_pack_grid": T.GRID - promo_right_panel_scroll_content: T.STACK_PANEL - "promo_right_panel_scroll_content/world_screenshots_panel": T.PANEL - "promo_right_panel_scroll_content/world_screenshots_panel/world_panel": T.STACK_PANEL - "promo_right_panel_scroll_content/skin_image_panel": T.PANEL - "promo_right_panel_scroll_content/skin_image_panel/skin_panel": T.UNKNOWN - "promo_right_panel_scroll_content/persona_preview": T.INPUT_PANEL - skin_scroll_panel: T.UNKNOWN - persona_classic_skin_grid_panel: T.PANEL - "persona_classic_skin_grid_panel/persona_skin_pack_category_grid": T.GRID - promo_right_panel: T.PANEL - promo_detail_panel: T.STACK_PANEL - "promo_detail_panel/detail": T.STACK_PANEL - "promo_detail_panel/center_spacing": T.PANEL - "promo_detail_panel/right": T.PANEL - promotion_skin_viewer_panel: T.INPUT_PANEL - "promotion_skin_viewer_panel/popup_dialog_factory": T.FACTORY - "promotion_skin_viewer_panel/character_loading_panel": T.IMAGE - "promotion_skin_viewer_panel/skin_model_panel": T.PANEL - "promotion_skin_viewer_panel/skin_model_panel/skin_model": T.CUSTOM - "promotion_skin_viewer_panel/skin_model_panel/arrow_panel": T.PANEL - "promotion_skin_viewer_panel/skin_model_panel/arrow_panel/rotate_arrows": T.IMAGE - promo_popup_toast: T.INPUT_PANEL + "promo_banner_factory": T.STACK_PANEL, + "promo_banner_button_content": T.PANEL, + "promo_banner_button_content/promo_banner_button": T.LABEL, + "promo_banner_button_content/progress_loading_spinner": T.IMAGE, + "promo_banner_image": T.IMAGE, + "promo_banner_panel_content": T.PANEL, + "promo_banner_panel_content/banner_image": T.IMAGE, + "promo_banner_panel_content/banner_text_panel": T.STACK_PANEL, + "promo_banner_panel_content/banner_text_panel/padding_0": T.PANEL, + "promo_banner_panel_content/banner_text_panel/title_stack_panel": T.STACK_PANEL, + "promo_banner_panel_content/banner_text_panel/title_stack_panel/banner_title": T.STACK_PANEL, + "promo_banner_panel_content/banner_text_panel/description": T.STACK_PANEL, + "promo_banner_panel_content/button_stack_panel": T.STACK_PANEL, + "promo_banner_panel_content/button_stack_panel/left_offset": T.PANEL, + "promo_banner_panel_content/button_stack_panel/banner_button": T.STACK_PANEL, + "promo_banner_panel_content/button_stack_panel/right_offset": T.PANEL, + "promo_banner_holiday_panel": T.PANEL, + "promo_banner_holiday_panel/banner_full_button": T.BUTTON, + "promo_banner_holiday_panel/banner_full_button/default": T.PANEL, + "promo_banner_holiday_panel/banner_full_button/hover": T.PANEL, + "promo_banner_holiday_panel/banner_full_button/pressed": T.PANEL, + "image_message_panel": T.STACK_PANEL, + "image_message_panel/image_message_row_content": T.PANEL, + "image_message_panel/padding_0": T.PANEL, + "image_message_row_content": T.PANEL, + "image_message_row_content/gray_background": T.IMAGE, + "image_message_row_content/gray_background/message_text": T.LABEL, + "image_message_row_content/gray_background/row_image": T.IMAGE, + "image_message_row_content/row_button": T.BUTTON, + "promo_image_panel": T.IMAGE, + "promo_image_panel/button_image_panel": T.PANEL, + "promo_image_panel/button_animated_panel": T.PANEL, + "promo_button_image_panel": T.PANEL, + "promo_button_image_panel/button_image": T.UNKNOWN, + "promo_button_image": T.IMAGE, + "promo_button_animation": T.IMAGE, + "banner_button": T.PANEL, + "sdl_text_aligned_panel": T.STACK_PANEL, + "sdl_text_minecraftTen_aligned_panel": T.STACK_PANEL, + "sdl_content_aligned_panel": T.STACK_PANEL, + "sdl_content_aligned_panel/left__padding_panel": T.PANEL, + "sdl_content_aligned_panel/control": T.UNKNOWN, + "sdl_content_aligned_panel/right_padding_panel": T.PANEL, + "sdl_aligned_text": T.LABEL, + "sdl_aligned_minecraftTen_text": T.LABEL, + "colored_direction_button_panel": T.PANEL, + "colored_direction_button_panel/chevron_image": T.IMAGE, + "left_corner_art": T.IMAGE, + "right_corner_art": T.IMAGE, + "promo_landing_panel": T.INPUT_PANEL, + "promo_landing_panel/promo_landing_panel_content": T.STACK_PANEL, + "promo_landing_panel/promo_landing_panel_content/promo_top": T.PANEL, + "promo_landing_panel/promo_landing_panel_content/pad_0": T.PANEL, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel": T.PANEL, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom": T.IMAGE, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel": T.INPUT_PANEL, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/left_button_panel": T.PANEL, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/left_button_panel/left_button": T.BUTTON, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/offer_grid": T.STACK_PANEL, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel": T.PANEL, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel/right_button": T.BUTTON, + "promo_landing_panel/promo_landing_panel_content/pad_1": T.PANEL, + "promo_landing_panel/left_corner_art": T.IMAGE, + "promo_landing_panel/right_corner_art": T.IMAGE, + "promotion_screen_top_section": T.PANEL, + "promotion_screen_top_section/main_panel": T.IMAGE, + "promotion_top_main_panel": T.IMAGE, + "promotion_top_main_panel/promotion_top_main_stack": T.STACK_PANEL, + "promotion_top_main_panel/promotion_top_main_stack/main_panel_title": T.STACK_PANEL, + "promotion_top_main_panel/promotion_top_main_stack/promo_single_top": T.INPUT_PANEL, + "promotion_top_main_panel/promotion_top_main_stack/promo_single_top/single_item_view": T.STACK_PANEL, + "promotion_top_main_panel/promotion_top_main_stack/promo_multi_item": T.PANEL, + "main_panel_title": T.STACK_PANEL, + "main_panel_title/padding_0": T.PANEL, + "main_panel_title/header_stack": T.STACK_PANEL, + "main_panel_title/header_stack/padding_0": T.PANEL, + "main_panel_title/header_stack/back_button_centering_panel": T.PANEL, + "main_panel_title/header_stack/back_button_centering_panel/button": T.BUTTON, + "main_panel_title/header_stack/padding_1": T.PANEL, + "main_panel_title/header_stack/header_panel": T.PANEL, + "main_panel_title/header_stack/header_panel/title_and_description": T.LABEL, + "main_panel_title/header_stack/padding_2": T.PANEL, + "main_panel_title/header_stack/claim_all_button_panel": T.PANEL, + "main_panel_title/header_stack/claim_all_button_panel/claim_all_button": T.BUTTON, + "main_panel_title/padding_1": T.PANEL, + "main_panel_title/divdier_centering_panel": T.PANEL, + "main_panel_title/divdier_centering_panel/divider": T.IMAGE, + "main_panel_title/padding_2": T.PANEL, + "promo_multi_item_grid": T.GRID, + "promo_button": T.BUTTON, + "promo_button/default": T.PANEL, + "promo_button/default/key_art_size_panel": T.PANEL, + "promo_button/default/key_art_size_panel/key_art_frame": T.IMAGE, + "promo_button/default/key_art_size_panel/key_art_frame/sizing_panel": T.PANEL, + "promo_button/default/key_art_size_panel/key_art_frame/platform_restricted_warning_image": T.IMAGE, + "promo_button/default/key_art_size_panel/button_frame": T.IMAGE, + "promo_button/hover": T.PANEL, + "promo_button/hover/key_art_size_panel": T.PANEL, + "promo_button/hover/key_art_size_panel/key_art_frame": T.IMAGE, + "promo_button/hover/key_art_size_panel/key_art_frame/sizing_panel": T.PANEL, + "promo_button/hover/key_art_size_panel/button_frame": T.IMAGE, + "promo_button/pressed": T.PANEL, + "promo_button/pressed/key_art_frame": T.IMAGE, + "promo_button/pressed/key_art_frame/sizing_panel": T.PANEL, + "promo_button/pressed/button_frame": T.IMAGE, + "promo_grid_item": T.PANEL, + "promo_grid_item/background_image": T.IMAGE, + "promo_grid_item/background_image/promo_content": T.STACK_PANEL, + "promo_grid_item/promo_button": T.BUTTON, + "promo_grid_item/platform_restricted_error_multi_item": T.PANEL, + "platform_restricted_error": T.PANEL, + "platform_restricted_error/platform_restricted_error_button": T.BUTTON, + "platform_restricted_error/platform_restricted_error_button/default": T.PANEL, + "platform_restricted_error/platform_restricted_error_button/hover": T.IMAGE, + "platform_restricted_error/platform_restricted_error_button/pressed": T.PANEL, + "platform_restricted_error/platform_restricted_error_button/white_overlay_to_gray_out": T.IMAGE, + "promo_grid_item_content": T.STACK_PANEL, + "promo_grid_item_content/thumbnail_image": T.IMAGE, + "promo_grid_item_content/persona_key_art_frame": T.PANEL, + "promo_grid_item_content/persona_key_art_frame/persona_image_panel": T.IMAGE, + "promo_grid_item_content/persona_key_art_frame/background": T.IMAGE, + "promo_grid_item_content/persona_key_art_frame/rarity_bar_panel": T.IMAGE, + "promo_grid_item_content/padding_0": T.PANEL, + "promo_grid_item_content/title_tooltip": T.STACK_PANEL, + "promo_grid_item_content/title_tooltip/promo_title": T.LABEL, + "promo_grid_item_content/title_tooltip/tooltip": T.STACK_PANEL, + "promotion_period_grid_panel": T.PANEL, + "promotion_period_grid_panel/promotion_offer_grid_image": T.PANEL, + "promotion_period_grid_panel/promotion_offer_grid_image/item_selected_bg": T.IMAGE, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel": T.STACK_PANEL, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel": T.PANEL, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel/day_label": T.LABEL, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/pad": T.PANEL, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel": T.PANEL, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel": T.PANEL, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel/item_button": T.PANEL, + "promotion_period_offer_panel": T.STACK_PANEL, + "promotion_period_offer_panel/period_1": T.PANEL, + "promotion_period_offer_panel/padding_0": T.PANEL, + "promotion_period_offer_panel/period_2": T.PANEL, + "promotion_period_offer_panel/padding_1": T.PANEL, + "promotion_period_offer_panel/period_3": T.PANEL, + "promotion_period_offer_panel/padding_2": T.PANEL, + "promotion_period_offer_panel/period_4": T.PANEL, + "promotion_period_offer_panel/padding_3": T.PANEL, + "promotion_period_offer_panel/period_5": T.PANEL, + "promotion_period_offer_panel/padding_4": T.PANEL, + "promotion_period_offer_panel/period_6": T.PANEL, + "promotion_period_offer_panel/padding_5": T.PANEL, + "promotion_period_offer_panel/period_7": T.PANEL, + "toggle_button_control": T.PANEL, + "toggle_button_control/green_check": T.IMAGE, + "toggle_button_control/key_art_image_panel": T.PANEL, + "toggle_button_control/key_art_image_panel/image_loading_panel": T.PANEL, + "toggle_button_control/key_art_image_panel/key_art_image": T.IMAGE, + "checked_border": T.PANEL, + "promotion_period_grid_item": T.PANEL, + "promotion_period_grid_item/frame": T.PANEL, + "promotion_period_grid_item/frame/offer_button": T.PANEL, + "promotion_period_grid_item/frame/offer_button/offer_toggle_button": T.PANEL, + "vertical_padding_2px": T.PANEL, + "timer_icon_tooltip_panel": T.PANEL, + "timer_icon_tooltip_panel/limited_status_image": T.IMAGE, + "timer_tooltip_panel_right_extending": T.BUTTON, + "timer_tooltip_panel_right_extending/default": T.PANEL, + "timer_tooltip_panel_right_extending/hover": T.IMAGE, + "timer_tooltip_panel_right_extending/pressed": T.IMAGE, + "timer_tooltip_panel_left_extending": T.BUTTON, + "timer_tooltip_panel_left_extending/default": T.PANEL, + "timer_tooltip_panel_left_extending/hover": T.IMAGE, + "timer_tooltip_panel_left_extending/pressed": T.IMAGE, + "no_timer_tooltip_panel": T.BUTTON, + "no_timer_tooltip_panel/default": T.PANEL, + "no_timer_tooltip_panel/hover": T.PANEL, + "no_timer_tooltip_panel/pressed": T.PANEL, + "promo_timer_panel": T.STACK_PANEL, + "promo_timer_panel/timer_icon_and_tooltip_panel": T.PANEL, + "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_right_extending": T.BUTTON, + "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_left_extending": T.BUTTON, + "promo_timer_panel/timer_icon_and_tooltip_panel/notooltip_button": T.BUTTON, + "promo_timer_panel/timer_icon_and_tooltip_panel/timer_icon": T.IMAGE, + "promo_timer_panel/padding": T.PANEL, + "promo_timer_panel/timer_text": T.LABEL, + "offer_title_panel": T.PANEL, + "offer_title_panel/offer_title_label": T.LABEL, + "title_and_author_panel": T.STACK_PANEL, + "title_and_author_panel/author_button_panel": T.PANEL, + "title_and_author_panel/author_button_panel/summary_author_button": T.BUTTON, + "glyph_panel": T.PANEL, + "glyph_panel/item_glyph_count_panel": T.STACK_PANEL, + "glyph_panel/item_glyph_count_panel/glyph_icon_panel": T.PANEL, + "glyph_panel/item_glyph_count_panel/glyph_icon_panel/glyph_icon": T.IMAGE, + "glyph_panel/item_glyph_count_panel/center_item_glyph_padding": T.PANEL, + "glyph_panel/item_glyph_count_panel/item_glyph_count_panel_label": T.LABEL, + "glyph_panel/item_glyph_count_panel/item_glyph_panel_padding": T.PANEL, + "vertical_glyph_section_content": T.STACK_PANEL, + "vertical_glyph_section_content/glyph_content": T.PANEL, + "vertical_glyph_section_content/bottom_glyph_content_padding": T.PANEL, + "glyph_section_panel": T.PANEL, + "glyph_section_panel/glyphs": T.STACK_PANEL, + "glyph_section_panel/glyphs/skin_glyph_section": T.UNKNOWN, + "glyph_section_panel/glyphs/world_glyph_section": T.UNKNOWN, + "glyph_section_panel/glyphs/resource_pack_glyph_section": T.UNKNOWN, + "vertical_glyph_section_panel": T.PANEL, + "image_glyphs_panel": T.STACK_PANEL, + "image_glyphs_panel/world_panel": T.PANEL, + "image_glyphs_panel/world_panel/border": T.IMAGE, + "image_glyphs_panel/world_panel/world_key_image": T.IMAGE, + "image_glyphs_panel/persona_panel": T.PANEL, + "image_glyphs_panel/persona_panel/border": T.IMAGE, + "image_glyphs_panel/persona_panel/persona_image": T.IMAGE, + "image_glyphs_panel/persona_panel/background": T.IMAGE, + "image_glyphs_panel/persona_panel/rarity_bar_panel": T.IMAGE, + "image_glyphs_panel/divider": T.PANEL, + "image_glyphs_panel/info": T.STACK_PANEL, + "image_glyphs_panel/info/summary_title_and_author_panel": T.STACK_PANEL, + "image_glyphs_panel/info/glyph_section": T.PANEL, + "image_glyphs_panel/info/glyph_section/glyph_section_panel": T.PANEL, + "promo_lower_button_content": T.PANEL, + "promo_lower_button_content/promo_banner_button": T.LABEL, + "promo_lower_button_content/progress_loading_spinner": T.IMAGE, + "free_discount_label": T.LABEL, + "promo_upper_button_content": T.PANEL, + "promo_upper_button_content/markdown": T.STACK_PANEL, + "promo_upper_button_content/markdown/sales_banner_offset_panel": T.PANEL, + "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel": T.PANEL, + "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel/markdown_banner": T.STACK_PANEL, + "promo_upper_button_content/markdown/price_markdown_panel": T.PANEL, + "promo_upper_button_content/markdown/price_markdown_panel/offer_price": T.LABEL, + "promo_upper_button_content/markdown/price_markdown_panel/offer_price/text_strike_through": T.IMAGE, + "promo_upper_button_content/promo_item_action_text_panel": T.STACK_PANEL, + "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel": T.PANEL, + "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/platform_restricted_warning_image": T.IMAGE, + "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/padding": T.PANEL, + "promo_upper_button_content/promo_item_action_text_panel/promo_item_action_text": T.LABEL, + "promo_upper_button_content/download_progress_bar": T.PANEL, + "description_section_panel": T.PANEL, + "description_section_panel/contents_description": T.LABEL, + "offset_title_offer": T.STACK_PANEL, + "offset_title_offer/pad_0": T.PANEL, + "offset_title_offer/title_panel": T.PANEL, + "offset_promo_timer": T.STACK_PANEL, + "offset_promo_timer/pad_0": T.PANEL, + "offset_promo_timer/promo_timer": T.STACK_PANEL, + "offset_image_glyphs_panel": T.STACK_PANEL, + "offset_image_glyphs_panel/pad_0": T.PANEL, + "offset_image_glyphs_panel/smaller_panel": T.STACK_PANEL, + "offset_image_glyphs_panel/smaller_panel/details": T.STACK_PANEL, + "offset_image_glyphs_panel/smaller_panel/description": T.PANEL, + "promo_pack_detail_panel": T.STACK_PANEL, + "promo_pack_detail_panel/offset_title_panel": T.STACK_PANEL, + "promo_pack_detail_panel/offsetted_promo_timer": T.STACK_PANEL, + "promo_pack_detail_panel/pad_0": T.PANEL, + "promo_pack_detail_panel/offsetted_details": T.STACK_PANEL, + "promo_pack_detail_panel/pad_1": T.PANEL, + "promo_left_inner_top_scrolling_content": T.INPUT_PANEL, + "promo_left_inner_top_scrolling_content/details": T.STACK_PANEL, + "promo_left_inner_top": T.STACK_PANEL, + "promo_left_inner_top/top": T.PANEL, + "promo_left_inner_top/padding2": T.PANEL, + "promo_left_inner_bottom": T.STACK_PANEL, + "promo_left_inner_bottom/banner_button_top_panel": T.PANEL, + "promo_left_inner_bottom/banner_button_top_panel/banner_button_top": T.BUTTON, + "promo_left_inner_bottom/banner_button_top_panel/platform_restricted_error_single_item": T.PANEL, + "promo_left_inner_bottom/banner_button_bottom": T.BUTTON, + "promo_left_panel": T.STACK_PANEL, + "promo_left_panel/top": T.STACK_PANEL, + "promo_left_panel/bottom_buttons_padded": T.STACK_PANEL, + "promo_left_panel/bottom_buttons_padded/pad_0": T.PANEL, + "promo_left_panel/bottom_buttons_padded/bottom": T.STACK_PANEL, + "promo_left_panel/padding": T.PANEL, + "promo_world_image_panel": T.PANEL, + "promo_world_image_panel/image": T.PANEL, + "promo_world_image_panel/image/key_image": T.IMAGE, + "promo_world_image_panel/image/key_image/border": T.IMAGE, + "promo_grey_bar_panel": T.STACK_PANEL, + "promo_grey_bar_panel/grey_bar": T.IMAGE, + "promo_grey_bar_panel/green_bar": T.IMAGE, + "promo_grey_bar_panel/padding": T.PANEL, + "promo_world_button_panel": T.STACK_PANEL, + "promo_world_button_panel/pan_left_button": T.BUTTON, + "promo_world_button_panel/navigation_bar": T.PANEL, + "promo_world_button_panel/navigation_bar/grey_bar": T.IMAGE, + "promo_world_button_panel/navigation_bar/grey_bar/grey_bar_factory_panel": T.STACK_PANEL, + "promo_world_button_panel/pan_right_button": T.BUTTON, + "promo_world_panel": T.STACK_PANEL, + "promo_world_panel/image": T.PANEL, + "promo_world_panel/padding1": T.PANEL, + "promo_world_panel/buttons": T.STACK_PANEL, + "promo_world_panel/padding_3": T.PANEL, + "promo_skin_panel": T.PANEL, + "promo_skin_panel/size_control": T.PANEL, + "promo_skin_panel/size_control/background": T.IMAGE, + "promo_skin_panel/size_control/skin_button": T.BUTTON, + "promo_skin_panel/size_control/skin_button/default": T.PANEL, + "promo_skin_panel/size_control/skin_button/hover": T.IMAGE, + "promo_skin_panel/size_control/skin_button/pressed": T.PANEL, + "promo_skin_panel/size_control/skin_button/content_panel": T.PANEL, + "promo_skin_panel/size_control/skin_button/content_panel/paper_doll": T.CUSTOM, + "promo_skin_grid_panel": T.PANEL, + "promo_skin_grid_panel/promo_skin_pack_grid": T.GRID, + "promo_right_panel_scroll_content": T.STACK_PANEL, + "promo_right_panel_scroll_content/world_screenshots_panel": T.PANEL, + "promo_right_panel_scroll_content/world_screenshots_panel/world_panel": T.STACK_PANEL, + "promo_right_panel_scroll_content/skin_image_panel": T.PANEL, + "promo_right_panel_scroll_content/skin_image_panel/skin_panel": T.UNKNOWN, + "promo_right_panel_scroll_content/persona_preview": T.INPUT_PANEL, + "skin_scroll_panel": T.UNKNOWN, + "persona_classic_skin_grid_panel": T.PANEL, + "persona_classic_skin_grid_panel/persona_skin_pack_category_grid": T.GRID, + "promo_right_panel": T.PANEL, + "promo_detail_panel": T.STACK_PANEL, + "promo_detail_panel/detail": T.STACK_PANEL, + "promo_detail_panel/center_spacing": T.PANEL, + "promo_detail_panel/right": T.PANEL, + "promotion_skin_viewer_panel": T.INPUT_PANEL, + "promotion_skin_viewer_panel/popup_dialog_factory": T.FACTORY, + "promotion_skin_viewer_panel/character_loading_panel": T.IMAGE, + "promotion_skin_viewer_panel/skin_model_panel": T.PANEL, + "promotion_skin_viewer_panel/skin_model_panel/skin_model": T.CUSTOM, + "promotion_skin_viewer_panel/skin_model_panel/arrow_panel": T.PANEL, + "promotion_skin_viewer_panel/skin_model_panel/arrow_panel/rotate_arrows": T.IMAGE, + "promo_popup_toast": T.INPUT_PANEL, } export type StoreSaleItemListType = { - banner_header: T.PANEL - "banner_header/label_panel": T.PANEL - "banner_header/label_panel/on_sale_banner": T.IMAGE - "banner_header/label_panel/on_sale_banner/padding_panel": T.PANEL - "banner_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label": T.LABEL - "banner_header/label_panel/on_sale_banner/padding_panel/triangle": T.IMAGE - "banner_header/label_panel/time_remaining_label": T.LABEL - sales_offer_content: T.STACK_PANEL - "sales_offer_content/top_padding": T.PANEL - "sales_offer_content/sales_panel": T.STACK_PANEL - "sales_offer_content/sales_panel/sales_banner_panel": T.PANEL - "sales_offer_content/sales_panel/top_sales_grid_padding": T.PANEL - "sales_offer_content/sales_panel/sales_grid_panel": T.PANEL - "sales_offer_content/sales_panel/sales_grid_panel/sales_offer_grid": T.GRID - all_offer_content: T.PANEL - "all_offer_content/store_offer_grid_panel": T.GRID + "banner_header": T.PANEL, + "banner_header/label_panel": T.PANEL, + "banner_header/label_panel/on_sale_banner": T.IMAGE, + "banner_header/label_panel/on_sale_banner/padding_panel": T.PANEL, + "banner_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label": T.LABEL, + "banner_header/label_panel/on_sale_banner/padding_panel/triangle": T.IMAGE, + "banner_header/label_panel/time_remaining_label": T.LABEL, + "sales_offer_content": T.STACK_PANEL, + "sales_offer_content/top_padding": T.PANEL, + "sales_offer_content/sales_panel": T.STACK_PANEL, + "sales_offer_content/sales_panel/sales_banner_panel": T.PANEL, + "sales_offer_content/sales_panel/top_sales_grid_padding": T.PANEL, + "sales_offer_content/sales_panel/sales_grid_panel": T.PANEL, + "sales_offer_content/sales_panel/sales_grid_panel/sales_offer_grid": T.GRID, + "all_offer_content": T.PANEL, + "all_offer_content/store_offer_grid_panel": T.GRID, } export type StoreSearchType = { - store_offer_grid_item: T.PANEL - trending_row_content: T.PANEL - "trending_row_content/trending_row_panel": T.STACK_PANEL - "trending_row_content/trending_row_panel/trending_row_label_panel": T.PANEL - "trending_row_content/trending_row_panel/trending_row_label_panel/trending_row_label": T.LABEL - "trending_row_content/trending_row_panel/mid_padding": T.PANEL - "trending_row_content/trending_row_panel/trending_offers_grid": T.GRID - "trending_row_content/trending_row_panel/bottom_padding": T.PANEL - trending_rows_grid: T.GRID - search_offer_content: T.PANEL - "search_offer_content/trending_grid": T.GRID - "search_offer_content/item_list_panel": T.PANEL - "search_offer_content/item_list_panel/item_list_grid": T.GRID - main_panel: T.INPUT_PANEL - "main_panel/seach_object": T.PANEL - "main_panel/progress_loading": T.PANEL - store_search_screen_content: T.PANEL - "store_search_screen_content/main_panel": T.STACK_PANEL - "store_search_screen_content/popup_dialog_factory": T.FACTORY - store_search_screen: T.SCREEN + "store_offer_grid_item": T.PANEL, + "trending_row_content": T.PANEL, + "trending_row_content/trending_row_panel": T.STACK_PANEL, + "trending_row_content/trending_row_panel/trending_row_label_panel": T.PANEL, + "trending_row_content/trending_row_panel/trending_row_label_panel/trending_row_label": T.LABEL, + "trending_row_content/trending_row_panel/mid_padding": T.PANEL, + "trending_row_content/trending_row_panel/trending_offers_grid": T.GRID, + "trending_row_content/trending_row_panel/bottom_padding": T.PANEL, + "trending_rows_grid": T.GRID, + "search_offer_content": T.PANEL, + "search_offer_content/trending_grid": T.GRID, + "search_offer_content/item_list_panel": T.PANEL, + "search_offer_content/item_list_panel/item_list_grid": T.GRID, + "main_panel": T.INPUT_PANEL, + "main_panel/seach_object": T.PANEL, + "main_panel/progress_loading": T.PANEL, + "store_search_screen_content": T.PANEL, + "store_search_screen_content/main_panel": T.STACK_PANEL, + "store_search_screen_content/popup_dialog_factory": T.FACTORY, + "store_search_screen": T.SCREEN, } export type SortMenuType = { - sort_menu_toggle_panel: T.PANEL - "sort_menu_toggle_panel/sort_menu_toggle_panel": T.PANEL - "sort_menu_toggle_panel/sort_menu_toggle_panel/sort_menu_toggle": T.PANEL - sort_menu_first_button_content_panel: T.STACK_PANEL - "sort_menu_first_button_content_panel/left_padding": T.PANEL - "sort_menu_first_button_content_panel/centered_sort_logo_icon": T.PANEL - "sort_menu_first_button_content_panel/centered_sort_logo_icon/sort_logo_icon": T.IMAGE - "sort_menu_first_button_content_panel/logo_padding_labels": T.PANEL - "sort_menu_first_button_content_panel/labels_stack_panel": T.STACK_PANEL - "sort_menu_first_button_content_panel/labels_stack_panel/top_padding": T.PANEL - "sort_menu_first_button_content_panel/labels_stack_panel/sort_const_word_top": T.LABEL - "sort_menu_first_button_content_panel/labels_stack_panel/middle_padding": T.PANEL - "sort_menu_first_button_content_panel/labels_stack_panel/current_sort_value_label_bottom": T.LABEL - "sort_menu_first_button_content_panel/labels_stack_panel/bottom_padding": T.PANEL - "sort_menu_first_button_content_panel/labels_padding_x_image": T.PANEL - "sort_menu_first_button_content_panel/x_image_panel": T.PANEL - "sort_menu_first_button_content_panel/x_image_panel/x_image": T.IMAGE - sort_menu_toggles: T.STACK_PANEL - "sort_menu_toggles/relevance_toggle_panel": T.PANEL - "sort_menu_toggles/relevance_toggle_panel/relevance_toggle": T.PANEL - "sort_menu_toggles/sort_toggle_grid": T.PANEL - sort_menu_show: T.STACK_PANEL - "sort_menu_show/1st_button_centering_panel": T.PANEL - "sort_menu_show/1st_button_centering_panel/first_button_main": T.BUTTON - "sort_menu_show/sort_scrolling_content_panel": T.PANEL - sort_menu_panel: T.STACK_PANEL - "sort_menu_panel/top_padding": T.PANEL - "sort_menu_panel/alignment_panel": T.STACK_PANEL - "sort_menu_panel/alignment_panel/left_padding": T.PANEL - "sort_menu_panel/alignment_panel/sort_menu_show": T.STACK_PANEL - "sort_menu_panel/alignment_panel/right_padding": T.PANEL - sort_menu_screen_content: T.INPUT_PANEL - "sort_menu_screen_content/sort_menu_main": T.STACK_PANEL - "sort_menu_screen_content/sort_menu_main_persona": T.STACK_PANEL - "sort_menu_screen_content/sort_menu_background": T.PANEL + "sort_menu_toggle_panel": T.PANEL, + "sort_menu_toggle_panel/sort_menu_toggle_panel": T.PANEL, + "sort_menu_toggle_panel/sort_menu_toggle_panel/sort_menu_toggle": T.PANEL, + "sort_menu_first_button_content_panel": T.STACK_PANEL, + "sort_menu_first_button_content_panel/left_padding": T.PANEL, + "sort_menu_first_button_content_panel/centered_sort_logo_icon": T.PANEL, + "sort_menu_first_button_content_panel/centered_sort_logo_icon/sort_logo_icon": T.IMAGE, + "sort_menu_first_button_content_panel/logo_padding_labels": T.PANEL, + "sort_menu_first_button_content_panel/labels_stack_panel": T.STACK_PANEL, + "sort_menu_first_button_content_panel/labels_stack_panel/top_padding": T.PANEL, + "sort_menu_first_button_content_panel/labels_stack_panel/sort_const_word_top": T.LABEL, + "sort_menu_first_button_content_panel/labels_stack_panel/middle_padding": T.PANEL, + "sort_menu_first_button_content_panel/labels_stack_panel/current_sort_value_label_bottom": T.LABEL, + "sort_menu_first_button_content_panel/labels_stack_panel/bottom_padding": T.PANEL, + "sort_menu_first_button_content_panel/labels_padding_x_image": T.PANEL, + "sort_menu_first_button_content_panel/x_image_panel": T.PANEL, + "sort_menu_first_button_content_panel/x_image_panel/x_image": T.IMAGE, + "sort_menu_toggles": T.STACK_PANEL, + "sort_menu_toggles/relevance_toggle_panel": T.PANEL, + "sort_menu_toggles/relevance_toggle_panel/relevance_toggle": T.PANEL, + "sort_menu_toggles/sort_toggle_grid": T.PANEL, + "sort_menu_show": T.STACK_PANEL, + "sort_menu_show/1st_button_centering_panel": T.PANEL, + "sort_menu_show/1st_button_centering_panel/first_button_main": T.BUTTON, + "sort_menu_show/sort_scrolling_content_panel": T.PANEL, + "sort_menu_panel": T.STACK_PANEL, + "sort_menu_panel/top_padding": T.PANEL, + "sort_menu_panel/alignment_panel": T.STACK_PANEL, + "sort_menu_panel/alignment_panel/left_padding": T.PANEL, + "sort_menu_panel/alignment_panel/sort_menu_show": T.STACK_PANEL, + "sort_menu_panel/alignment_panel/right_padding": T.PANEL, + "sort_menu_screen_content": T.INPUT_PANEL, + "sort_menu_screen_content/sort_menu_main": T.STACK_PANEL, + "sort_menu_screen_content/sort_menu_main_persona": T.STACK_PANEL, + "sort_menu_screen_content/sort_menu_background": T.PANEL, } export type StructureEditorType = { - small_padding: T.PANEL - help_icon: T.IMAGE - common_text_label: T.LABEL - text_edit_control: T.EDIT_BOX - axis_selection_panel: T.PANEL - "axis_selection_panel/label": T.LABEL - "axis_selection_panel/edit_box": T.EDIT_BOX - grid_axis_selection_panel: T.STACK_PANEL - "grid_axis_selection_panel/label_container": T.PANEL - "grid_axis_selection_panel/label_container/label": T.LABEL - "grid_axis_selection_panel/axis_grid": T.GRID - "grid_axis_selection_panel/axis_grid/X": T.PANEL - "grid_axis_selection_panel/axis_grid/Y": T.PANEL - "grid_axis_selection_panel/axis_grid/Z": T.PANEL - "3d_export_button": T.BUTTON - save_button: T.BUTTON - export_button: T.BUTTON - load_button: T.BUTTON - detect_button: T.BUTTON - import_button: T.BUTTON - reset_button: T.BUTTON - help_button: T.BUTTON - toggle_option_panel: T.STACK_PANEL - "toggle_option_panel/toggle": T.TOGGLE - "toggle_option_panel/offset_0": T.PANEL - "toggle_option_panel/first_label_wrapper": T.PANEL - "toggle_option_panel/first_label_wrapper/first_label": T.LABEL - "toggle_option_panel/second_label_wrapper": T.PANEL - "toggle_option_panel/second_label_wrapper/second_label": T.LABEL - include_entities_panel: T.STACK_PANEL - "include_entities_panel/label": T.LABEL - "include_entities_panel/toggle_wrapper": T.PANEL - "include_entities_panel/toggle_wrapper/toggle": T.STACK_PANEL - waterlogging_panel: T.STACK_PANEL - "waterlogging_panel/label": T.LABEL - "waterlogging_panel/toggle_wrapper": T.PANEL - "waterlogging_panel/toggle_wrapper/toggle": T.STACK_PANEL - show_bounding_box_panel: T.STACK_PANEL - "show_bounding_box_panel/label": T.LABEL - "show_bounding_box_panel/toggle_wrapper": T.PANEL - "show_bounding_box_panel/toggle_wrapper/toggle": T.STACK_PANEL - include_player_panel: T.STACK_PANEL - "include_player_panel/label": T.LABEL - "include_player_panel/toggle_wrapper": T.PANEL - "include_player_panel/toggle_wrapper/toggle": T.STACK_PANEL - remove_blocks_panel: T.STACK_PANEL - "remove_blocks_panel/label": T.LABEL - "remove_blocks_panel/toggle_wrapper": T.PANEL - "remove_blocks_panel/toggle_wrapper/toggle": T.STACK_PANEL - "3d_export_mode_panel": T.STACK_PANEL - "3d_export_mode_panel/size_offset_panel": T.STACK_PANEL - "3d_export_mode_panel/size_offset_panel/size_panel": T.STACK_PANEL - "3d_export_mode_panel/size_offset_panel/offset_panel": T.STACK_PANEL - "3d_export_mode_panel/offset_0": T.PANEL - "3d_export_mode_panel/offset_2": T.PANEL - "3d_export_mode_panel/remove_blocks": T.STACK_PANEL - save_mode_panel: T.STACK_PANEL - "save_mode_panel/structure_name": T.PANEL - "save_mode_panel/size_offset_panel": T.STACK_PANEL - "save_mode_panel/size_offset_panel/size_panel": T.STACK_PANEL - "save_mode_panel/size_offset_panel/offset_panel": T.STACK_PANEL - "save_mode_panel/detect_offset": T.PANEL - "save_mode_panel/detect": T.PANEL - "save_mode_panel/include_entities_offset": T.PANEL - "save_mode_panel/include_entities": T.STACK_PANEL - "save_mode_panel/remove_blocks_offset": T.PANEL - "save_mode_panel/remove_blocks": T.STACK_PANEL - "save_mode_panel/redstone_save_offset": T.PANEL - "save_mode_panel/redstone_save_mode": T.PANEL - "save_mode_panel/trailing_offset": T.PANEL - mirror_checkbox: T.STACK_PANEL - "mirror_checkbox/label": T.LABEL - "mirror_checkbox/padding": T.PANEL - "mirror_checkbox/check_box": T.TOGGLE - mirror_checkboxes: T.STACK_PANEL - "mirror_checkboxes/mirror_checkbox_x": T.STACK_PANEL - "mirror_checkboxes/padding": T.PANEL - "mirror_checkboxes/mirror_checkbox_z": T.STACK_PANEL - load_mode_panel: T.STACK_PANEL - "load_mode_panel/structure_name": T.PANEL - "load_mode_panel/offset_panel": T.STACK_PANEL - "load_mode_panel/include_entities_offset": T.PANEL - "load_mode_panel/include_entities": T.STACK_PANEL - "load_mode_panel/remove_blocks_offset": T.PANEL - "load_mode_panel/waterlog_blocks": T.STACK_PANEL - "load_mode_panel/waterlog_blocks_offset": T.PANEL - "load_mode_panel/remove_blocks": T.STACK_PANEL - "load_mode_panel/integrity_offset": T.PANEL - "load_mode_panel/integrity_label": T.LABEL - "load_mode_panel/integrity_field": T.EDIT_BOX - "load_mode_panel/offset_1": T.PANEL - "load_mode_panel/seed_label": T.LABEL - "load_mode_panel/seed_field": T.EDIT_BOX - "load_mode_panel/offset_2": T.PANEL - "load_mode_panel/rotation_slider": T.PANEL - "load_mode_panel/mirror_label": T.LABEL - "load_mode_panel/mirror_checkboxes_centerer": T.PANEL - "load_mode_panel/mirror_checkboxes_centerer/mirror_checkboxes": T.STACK_PANEL - "load_mode_panel/checkbox_offset": T.PANEL - "load_mode_panel/animation_mode": T.PANEL - "load_mode_panel/animation_time_label": T.LABEL - "load_mode_panel/animation_time_field": T.EDIT_BOX - data_mode_panel: T.STACK_PANEL - "data_mode_panel/top_offset": T.PANEL - "data_mode_panel/data_label": T.LABEL - "data_mode_panel/data_label_offset": T.PANEL - "data_mode_panel/data_field": T.EDIT_BOX - "data_mode_panel/data_field_offset": T.PANEL - corner_mode_panel: T.STACK_PANEL - "corner_mode_panel/structure_name": T.PANEL - help_button_panel: T.STACK_PANEL - "help_button_panel/help": T.BUTTON - "help_button_panel/help_divider": T.PANEL - save_button_panel: T.STACK_PANEL - "save_button_panel/divider": T.PANEL - "save_button_panel/save": T.BUTTON - "save_button_panel/save_divider": T.PANEL - "save_button_panel/export": T.BUTTON - "save_button_panel/export_divider": T.PANEL - "save_button_panel/import_divider": T.PANEL - "save_button_panel/reset": T.BUTTON - "save_button_panel/reset_divider": T.PANEL - save_button_panel_no_export: T.STACK_PANEL - "save_button_panel_no_export/divider": T.PANEL - "save_button_panel_no_export/save": T.BUTTON - "save_button_panel_no_export/save_divider": T.PANEL - "save_button_panel_no_export/reset": T.BUTTON - "save_button_panel_no_export/reset_divider": T.PANEL - load_button_panel: T.STACK_PANEL - "load_button_panel/divider": T.PANEL - "load_button_panel/load": T.BUTTON - "load_button_panel/load_divider": T.PANEL - "load_button_panel/export_divider": T.PANEL - "load_button_panel/import": T.BUTTON - "load_button_panel/import_divider": T.PANEL - "load_button_panel/reset": T.BUTTON - "load_button_panel/reset_divider": T.PANEL - load_button_panel_no_export: T.STACK_PANEL - "load_button_panel_no_export/divider": T.PANEL - "load_button_panel_no_export/load": T.BUTTON - "load_button_panel_no_export/load_divider": T.PANEL - "load_button_panel_no_export/reset": T.BUTTON - "load_button_panel_no_export/reset_divider": T.PANEL - "3d_export_button_panel": T.STACK_PANEL - "3d_export_button_panel/divider": T.PANEL - "3d_export_button_panel/3d_export": T.BUTTON - "3d_export_button_panel/3d_export_divider": T.PANEL - "3d_export_button_panel/import": T.BUTTON - "3d_export_button_panel/import_divider": T.PANEL - "3d_export_button_panel/reset": T.BUTTON - "3d_export_button_panel/reset_divider": T.PANEL - data_button_panel: T.STACK_PANEL - "data_button_panel/divider": T.PANEL - "data_button_panel/reset": T.BUTTON - "data_button_panel/reset_divider": T.PANEL - corner_button_panel: T.STACK_PANEL - "corner_button_panel/reset_divider": T.PANEL - button_panel_wrapper: T.IMAGE - "button_panel_wrapper/panel": T.PANEL - "button_panel_wrapper/panel/divider": T.PANEL - "button_panel_wrapper/panel/save_panel": T.STACK_PANEL - "button_panel_wrapper/panel/save_panel_no_export": T.STACK_PANEL - "button_panel_wrapper/panel/corner_panel": T.STACK_PANEL - "button_panel_wrapper/panel/load_panel_no_export": T.STACK_PANEL - "button_panel_wrapper/panel/load_panel": T.STACK_PANEL - "button_panel_wrapper/panel/3d_export_panel": T.STACK_PANEL - "button_panel_wrapper/panel/data_panel": T.STACK_PANEL - "button_panel_wrapper/panel/how_to_play_button": T.STACK_PANEL - "button_panel_wrapper/panel/end_divider": T.PANEL - redstone_dropdown_content: T.PANEL - redstone_save_mode_panel: T.PANEL - animation_mode_dropdown_content: T.PANEL - animation_mode_dropdown: T.PANEL - structure_name_wrapper: T.PANEL - "structure_name_wrapper/structure_name": T.EDIT_BOX - "structure_name_wrapper/structure_name_offset": T.PANEL - detect_button_wrapper: T.PANEL - "detect_button_wrapper/detect": T.BUTTON - "detect_button_wrapper/detect_offset": T.PANEL - mode_dropdown_content: T.PANEL - mode_panel: T.PANEL - scrolling_panel_wrapper: T.IMAGE - "scrolling_panel_wrapper/scrolling_panel": T.PANEL - scrolling_panel: T.PANEL - scroll_panel_content: T.PANEL - "scroll_panel_content/content_stack_panel": T.STACK_PANEL - "scroll_panel_content/content_stack_panel/base_offset": T.PANEL - "scroll_panel_content/content_stack_panel/mode_panel": T.PANEL - "scroll_panel_content/content_stack_panel/mode_panel_offset": T.PANEL - "scroll_panel_content/content_stack_panel/3d_export_mode_panel": T.STACK_PANEL - "scroll_panel_content/content_stack_panel/save_mode_panel": T.STACK_PANEL - "scroll_panel_content/content_stack_panel/load_mode_panel": T.STACK_PANEL - "scroll_panel_content/content_stack_panel/data_mode_panel": T.STACK_PANEL - "scroll_panel_content/content_stack_panel/corner_mode_panel": T.STACK_PANEL - "scroll_panel_content/content_stack_panel/base_mode_offset": T.PANEL - "scroll_panel_content/content_stack_panel/show_bounding_box": T.STACK_PANEL - "scroll_panel_content/content_stack_panel/show_bounding_box_offset": T.PANEL - "scroll_panel_content/content_stack_panel/offset_2": T.PANEL - left_divider_content: T.PANEL - "left_divider_content/scrolling_panel": T.IMAGE - save_message_text: T.PANEL - "save_message_text/save_message_label": T.LABEL - import_message_text: T.PANEL - "import_message_text/save_message_label": T.LABEL - import_failed_message_text: T.PANEL - "import_failed_message_text/save_message_label": T.LABEL - export_disabled_label: T.LABEL - image_panel_wrapper: T.IMAGE - "image_panel_wrapper/image_panel": T.PANEL - "image_panel_wrapper/save_message_factory": T.FACTORY - "image_panel_wrapper/import_message_factory": T.FACTORY - "image_panel_wrapper/import_failed_message_factory": T.FACTORY - "image_panel_wrapper/export_disabled": T.LABEL - corner_text: T.IMAGE - "corner_text/image_panel": T.UNKNOWN - image_panel: T.PANEL - "image_panel/border_indent": T.PANEL - "image_panel/border_indent/background_gradient": T.CUSTOM - "image_panel/border_indent/image_outline": T.IMAGE - "image_panel/border_indent/structure_renderer": T.INPUT_PANEL - "image_panel/border_indent/text_corner": T.STACK_PANEL - "image_panel/border_indent/progress_panel": T.INPUT_PANEL - "image_panel/border_indent/rotate_arrows": T.IMAGE - progress_panel: T.INPUT_PANEL - "progress_panel/stack_panel": T.STACK_PANEL - "progress_panel/stack_panel/label_wrapper": T.PANEL - "progress_panel/stack_panel/label_wrapper/progress_label": T.LABEL - "progress_panel/stack_panel/progress_bar": T.PANEL - background_gradient: T.CUSTOM - corner_text_panel: T.STACK_PANEL - "corner_text_panel/paragraph_1_corner": T.PANEL - "corner_text_panel/padding_1": T.PANEL - "corner_text_panel/paragraph_2_corner": T.PANEL - structure_renderer: T.INPUT_PANEL - "structure_renderer/renderer": T.CUSTOM - black_border: T.IMAGE - rotation_arrows: T.IMAGE - right_divider_content: T.STACK_PANEL - "right_divider_content/base_offset": T.PANEL - "right_divider_content/preview": T.IMAGE - "right_divider_content/image_offset": T.PANEL - "right_divider_content/button_wrapper": T.PANEL - "right_divider_content/button_wrapper/buttons": T.IMAGE - divider_content: T.PANEL - "divider_content/left_side": T.PANEL - "divider_content/right_side": T.STACK_PANEL - structure_editor_content: T.PANEL - "structure_editor_content/background_panel": T.STACK_PANEL - "structure_editor_content/title": T.LABEL - "structure_editor_content/content": T.PANEL - structure_editor_screen: T.SCREEN + "small_padding": T.PANEL, + "help_icon": T.IMAGE, + "common_text_label": T.LABEL, + "text_edit_control": T.EDIT_BOX, + "axis_selection_panel": T.PANEL, + "axis_selection_panel/label": T.LABEL, + "axis_selection_panel/edit_box": T.EDIT_BOX, + "grid_axis_selection_panel": T.STACK_PANEL, + "grid_axis_selection_panel/label_container": T.PANEL, + "grid_axis_selection_panel/label_container/label": T.LABEL, + "grid_axis_selection_panel/axis_grid": T.GRID, + "grid_axis_selection_panel/axis_grid/X": T.PANEL, + "grid_axis_selection_panel/axis_grid/Y": T.PANEL, + "grid_axis_selection_panel/axis_grid/Z": T.PANEL, + "3d_export_button": T.BUTTON, + "save_button": T.BUTTON, + "export_button": T.BUTTON, + "load_button": T.BUTTON, + "detect_button": T.BUTTON, + "import_button": T.BUTTON, + "reset_button": T.BUTTON, + "help_button": T.BUTTON, + "toggle_option_panel": T.STACK_PANEL, + "toggle_option_panel/toggle": T.TOGGLE, + "toggle_option_panel/offset_0": T.PANEL, + "toggle_option_panel/first_label_wrapper": T.PANEL, + "toggle_option_panel/first_label_wrapper/first_label": T.LABEL, + "toggle_option_panel/second_label_wrapper": T.PANEL, + "toggle_option_panel/second_label_wrapper/second_label": T.LABEL, + "include_entities_panel": T.STACK_PANEL, + "include_entities_panel/label": T.LABEL, + "include_entities_panel/toggle_wrapper": T.PANEL, + "include_entities_panel/toggle_wrapper/toggle": T.STACK_PANEL, + "waterlogging_panel": T.STACK_PANEL, + "waterlogging_panel/label": T.LABEL, + "waterlogging_panel/toggle_wrapper": T.PANEL, + "waterlogging_panel/toggle_wrapper/toggle": T.STACK_PANEL, + "show_bounding_box_panel": T.STACK_PANEL, + "show_bounding_box_panel/label": T.LABEL, + "show_bounding_box_panel/toggle_wrapper": T.PANEL, + "show_bounding_box_panel/toggle_wrapper/toggle": T.STACK_PANEL, + "include_player_panel": T.STACK_PANEL, + "include_player_panel/label": T.LABEL, + "include_player_panel/toggle_wrapper": T.PANEL, + "include_player_panel/toggle_wrapper/toggle": T.STACK_PANEL, + "remove_blocks_panel": T.STACK_PANEL, + "remove_blocks_panel/label": T.LABEL, + "remove_blocks_panel/toggle_wrapper": T.PANEL, + "remove_blocks_panel/toggle_wrapper/toggle": T.STACK_PANEL, + "3d_export_mode_panel": T.STACK_PANEL, + "3d_export_mode_panel/size_offset_panel": T.STACK_PANEL, + "3d_export_mode_panel/size_offset_panel/size_panel": T.STACK_PANEL, + "3d_export_mode_panel/size_offset_panel/offset_panel": T.STACK_PANEL, + "3d_export_mode_panel/offset_0": T.PANEL, + "3d_export_mode_panel/offset_2": T.PANEL, + "3d_export_mode_panel/remove_blocks": T.STACK_PANEL, + "save_mode_panel": T.STACK_PANEL, + "save_mode_panel/structure_name": T.PANEL, + "save_mode_panel/size_offset_panel": T.STACK_PANEL, + "save_mode_panel/size_offset_panel/size_panel": T.STACK_PANEL, + "save_mode_panel/size_offset_panel/offset_panel": T.STACK_PANEL, + "save_mode_panel/detect_offset": T.PANEL, + "save_mode_panel/detect": T.PANEL, + "save_mode_panel/include_entities_offset": T.PANEL, + "save_mode_panel/include_entities": T.STACK_PANEL, + "save_mode_panel/remove_blocks_offset": T.PANEL, + "save_mode_panel/remove_blocks": T.STACK_PANEL, + "save_mode_panel/redstone_save_offset": T.PANEL, + "save_mode_panel/redstone_save_mode": T.PANEL, + "save_mode_panel/trailing_offset": T.PANEL, + "mirror_checkbox": T.STACK_PANEL, + "mirror_checkbox/label": T.LABEL, + "mirror_checkbox/padding": T.PANEL, + "mirror_checkbox/check_box": T.TOGGLE, + "mirror_checkboxes": T.STACK_PANEL, + "mirror_checkboxes/mirror_checkbox_x": T.STACK_PANEL, + "mirror_checkboxes/padding": T.PANEL, + "mirror_checkboxes/mirror_checkbox_z": T.STACK_PANEL, + "load_mode_panel": T.STACK_PANEL, + "load_mode_panel/structure_name": T.PANEL, + "load_mode_panel/offset_panel": T.STACK_PANEL, + "load_mode_panel/include_entities_offset": T.PANEL, + "load_mode_panel/include_entities": T.STACK_PANEL, + "load_mode_panel/remove_blocks_offset": T.PANEL, + "load_mode_panel/waterlog_blocks": T.STACK_PANEL, + "load_mode_panel/waterlog_blocks_offset": T.PANEL, + "load_mode_panel/remove_blocks": T.STACK_PANEL, + "load_mode_panel/integrity_offset": T.PANEL, + "load_mode_panel/integrity_label": T.LABEL, + "load_mode_panel/integrity_field": T.EDIT_BOX, + "load_mode_panel/offset_1": T.PANEL, + "load_mode_panel/seed_label": T.LABEL, + "load_mode_panel/seed_field": T.EDIT_BOX, + "load_mode_panel/offset_2": T.PANEL, + "load_mode_panel/rotation_slider": T.PANEL, + "load_mode_panel/mirror_label": T.LABEL, + "load_mode_panel/mirror_checkboxes_centerer": T.PANEL, + "load_mode_panel/mirror_checkboxes_centerer/mirror_checkboxes": T.STACK_PANEL, + "load_mode_panel/checkbox_offset": T.PANEL, + "load_mode_panel/animation_mode": T.PANEL, + "load_mode_panel/animation_time_label": T.LABEL, + "load_mode_panel/animation_time_field": T.EDIT_BOX, + "data_mode_panel": T.STACK_PANEL, + "data_mode_panel/top_offset": T.PANEL, + "data_mode_panel/data_label": T.LABEL, + "data_mode_panel/data_label_offset": T.PANEL, + "data_mode_panel/data_field": T.EDIT_BOX, + "data_mode_panel/data_field_offset": T.PANEL, + "corner_mode_panel": T.STACK_PANEL, + "corner_mode_panel/structure_name": T.PANEL, + "help_button_panel": T.STACK_PANEL, + "help_button_panel/help": T.BUTTON, + "help_button_panel/help_divider": T.PANEL, + "save_button_panel": T.STACK_PANEL, + "save_button_panel/divider": T.PANEL, + "save_button_panel/save": T.BUTTON, + "save_button_panel/save_divider": T.PANEL, + "save_button_panel/export": T.BUTTON, + "save_button_panel/export_divider": T.PANEL, + "save_button_panel/import_divider": T.PANEL, + "save_button_panel/reset": T.BUTTON, + "save_button_panel/reset_divider": T.PANEL, + "save_button_panel_no_export": T.STACK_PANEL, + "save_button_panel_no_export/divider": T.PANEL, + "save_button_panel_no_export/save": T.BUTTON, + "save_button_panel_no_export/save_divider": T.PANEL, + "save_button_panel_no_export/reset": T.BUTTON, + "save_button_panel_no_export/reset_divider": T.PANEL, + "load_button_panel": T.STACK_PANEL, + "load_button_panel/divider": T.PANEL, + "load_button_panel/load": T.BUTTON, + "load_button_panel/load_divider": T.PANEL, + "load_button_panel/export_divider": T.PANEL, + "load_button_panel/import": T.BUTTON, + "load_button_panel/import_divider": T.PANEL, + "load_button_panel/reset": T.BUTTON, + "load_button_panel/reset_divider": T.PANEL, + "load_button_panel_no_export": T.STACK_PANEL, + "load_button_panel_no_export/divider": T.PANEL, + "load_button_panel_no_export/load": T.BUTTON, + "load_button_panel_no_export/load_divider": T.PANEL, + "load_button_panel_no_export/reset": T.BUTTON, + "load_button_panel_no_export/reset_divider": T.PANEL, + "3d_export_button_panel": T.STACK_PANEL, + "3d_export_button_panel/divider": T.PANEL, + "3d_export_button_panel/3d_export": T.BUTTON, + "3d_export_button_panel/3d_export_divider": T.PANEL, + "3d_export_button_panel/import": T.BUTTON, + "3d_export_button_panel/import_divider": T.PANEL, + "3d_export_button_panel/reset": T.BUTTON, + "3d_export_button_panel/reset_divider": T.PANEL, + "data_button_panel": T.STACK_PANEL, + "data_button_panel/divider": T.PANEL, + "data_button_panel/reset": T.BUTTON, + "data_button_panel/reset_divider": T.PANEL, + "corner_button_panel": T.STACK_PANEL, + "corner_button_panel/reset_divider": T.PANEL, + "button_panel_wrapper": T.IMAGE, + "button_panel_wrapper/panel": T.PANEL, + "button_panel_wrapper/panel/divider": T.PANEL, + "button_panel_wrapper/panel/save_panel": T.STACK_PANEL, + "button_panel_wrapper/panel/save_panel_no_export": T.STACK_PANEL, + "button_panel_wrapper/panel/corner_panel": T.STACK_PANEL, + "button_panel_wrapper/panel/load_panel_no_export": T.STACK_PANEL, + "button_panel_wrapper/panel/load_panel": T.STACK_PANEL, + "button_panel_wrapper/panel/3d_export_panel": T.STACK_PANEL, + "button_panel_wrapper/panel/data_panel": T.STACK_PANEL, + "button_panel_wrapper/panel/how_to_play_button": T.STACK_PANEL, + "button_panel_wrapper/panel/end_divider": T.PANEL, + "redstone_dropdown_content": T.PANEL, + "redstone_save_mode_panel": T.PANEL, + "animation_mode_dropdown_content": T.PANEL, + "animation_mode_dropdown": T.PANEL, + "structure_name_wrapper": T.PANEL, + "structure_name_wrapper/structure_name": T.EDIT_BOX, + "structure_name_wrapper/structure_name_offset": T.PANEL, + "detect_button_wrapper": T.PANEL, + "detect_button_wrapper/detect": T.BUTTON, + "detect_button_wrapper/detect_offset": T.PANEL, + "mode_dropdown_content": T.PANEL, + "mode_panel": T.PANEL, + "scrolling_panel_wrapper": T.IMAGE, + "scrolling_panel_wrapper/scrolling_panel": T.PANEL, + "scrolling_panel": T.PANEL, + "scroll_panel_content": T.PANEL, + "scroll_panel_content/content_stack_panel": T.STACK_PANEL, + "scroll_panel_content/content_stack_panel/base_offset": T.PANEL, + "scroll_panel_content/content_stack_panel/mode_panel": T.PANEL, + "scroll_panel_content/content_stack_panel/mode_panel_offset": T.PANEL, + "scroll_panel_content/content_stack_panel/3d_export_mode_panel": T.STACK_PANEL, + "scroll_panel_content/content_stack_panel/save_mode_panel": T.STACK_PANEL, + "scroll_panel_content/content_stack_panel/load_mode_panel": T.STACK_PANEL, + "scroll_panel_content/content_stack_panel/data_mode_panel": T.STACK_PANEL, + "scroll_panel_content/content_stack_panel/corner_mode_panel": T.STACK_PANEL, + "scroll_panel_content/content_stack_panel/base_mode_offset": T.PANEL, + "scroll_panel_content/content_stack_panel/show_bounding_box": T.STACK_PANEL, + "scroll_panel_content/content_stack_panel/show_bounding_box_offset": T.PANEL, + "scroll_panel_content/content_stack_panel/offset_2": T.PANEL, + "left_divider_content": T.PANEL, + "left_divider_content/scrolling_panel": T.IMAGE, + "save_message_text": T.PANEL, + "save_message_text/save_message_label": T.LABEL, + "import_message_text": T.PANEL, + "import_message_text/save_message_label": T.LABEL, + "import_failed_message_text": T.PANEL, + "import_failed_message_text/save_message_label": T.LABEL, + "export_disabled_label": T.LABEL, + "image_panel_wrapper": T.IMAGE, + "image_panel_wrapper/image_panel": T.PANEL, + "image_panel_wrapper/save_message_factory": T.FACTORY, + "image_panel_wrapper/import_message_factory": T.FACTORY, + "image_panel_wrapper/import_failed_message_factory": T.FACTORY, + "image_panel_wrapper/export_disabled": T.LABEL, + "corner_text": T.IMAGE, + "corner_text/image_panel": T.UNKNOWN, + "image_panel": T.PANEL, + "image_panel/border_indent": T.PANEL, + "image_panel/border_indent/background_gradient": T.CUSTOM, + "image_panel/border_indent/image_outline": T.IMAGE, + "image_panel/border_indent/structure_renderer": T.INPUT_PANEL, + "image_panel/border_indent/text_corner": T.STACK_PANEL, + "image_panel/border_indent/progress_panel": T.INPUT_PANEL, + "image_panel/border_indent/rotate_arrows": T.IMAGE, + "progress_panel": T.INPUT_PANEL, + "progress_panel/stack_panel": T.STACK_PANEL, + "progress_panel/stack_panel/label_wrapper": T.PANEL, + "progress_panel/stack_panel/label_wrapper/progress_label": T.LABEL, + "progress_panel/stack_panel/progress_bar": T.PANEL, + "background_gradient": T.CUSTOM, + "corner_text_panel": T.STACK_PANEL, + "corner_text_panel/paragraph_1_corner": T.PANEL, + "corner_text_panel/padding_1": T.PANEL, + "corner_text_panel/paragraph_2_corner": T.PANEL, + "structure_renderer": T.INPUT_PANEL, + "structure_renderer/renderer": T.CUSTOM, + "black_border": T.IMAGE, + "rotation_arrows": T.IMAGE, + "right_divider_content": T.STACK_PANEL, + "right_divider_content/base_offset": T.PANEL, + "right_divider_content/preview": T.IMAGE, + "right_divider_content/image_offset": T.PANEL, + "right_divider_content/button_wrapper": T.PANEL, + "right_divider_content/button_wrapper/buttons": T.IMAGE, + "divider_content": T.PANEL, + "divider_content/left_side": T.PANEL, + "divider_content/right_side": T.STACK_PANEL, + "structure_editor_content": T.PANEL, + "structure_editor_content/background_panel": T.STACK_PANEL, + "structure_editor_content/title": T.LABEL, + "structure_editor_content/content": T.PANEL, + "structure_editor_screen": T.SCREEN, } export type SubmitFeedbackType = { - send_feedback_button: T.BUTTON - write_feedback_panel: T.STACK_PANEL - "write_feedback_panel/pad_1": T.PANEL - "write_feedback_panel/write_feedback_label": T.LABEL - "write_feedback_panel/pad_2": T.PANEL - "write_feedback_panel/feedback_textbox": T.EDIT_BOX - "write_feedback_panel/remaining_characters_panel": T.PANEL - "write_feedback_panel/remaining_characters_panel/remaining_characters_count_label": T.LABEL - scroll_panel: T.PANEL - "scroll_panel/write_feedback_panel": T.STACK_PANEL - main_panel: T.PANEL - "main_panel/scrolling_panel": T.PANEL - submit_feedback_screen: T.SCREEN - submit_feedback_content: T.PANEL - "submit_feedback_content/submit_feedback_main_panel": T.PANEL - "submit_feedback_content/progress_loading": T.IMAGE + "send_feedback_button": T.BUTTON, + "write_feedback_panel": T.STACK_PANEL, + "write_feedback_panel/pad_1": T.PANEL, + "write_feedback_panel/write_feedback_label": T.LABEL, + "write_feedback_panel/pad_2": T.PANEL, + "write_feedback_panel/feedback_textbox": T.EDIT_BOX, + "write_feedback_panel/remaining_characters_panel": T.PANEL, + "write_feedback_panel/remaining_characters_panel/remaining_characters_count_label": T.LABEL, + "scroll_panel": T.PANEL, + "scroll_panel/write_feedback_panel": T.STACK_PANEL, + "main_panel": T.PANEL, + "main_panel/scrolling_panel": T.PANEL, + "submit_feedback_screen": T.SCREEN, + "submit_feedback_content": T.PANEL, + "submit_feedback_content/submit_feedback_main_panel": T.PANEL, + "submit_feedback_content/progress_loading": T.IMAGE, } export type TabbedUpsellType = { - padding_horizontal: T.PANEL - padding_vertical: T.PANEL - text_horizontal_padding: T.PANEL - tabbed_upsell_buy_now_button: T.BUTTON - tabbed_buy_now_label: T.PANEL - "tabbed_buy_now_label/button_label": T.LABEL - label_panel: T.PANEL - "label_panel/label_text": T.LABEL - text_panel: T.STACK_PANEL - "text_panel/tab_content_title_panel": T.PANEL - "text_panel/tab_content_description_panel": T.PANEL - "text_panel/tab_content_description_panel_second": T.PANEL - dialog_image: T.IMAGE - dialog_image_with_border: T.IMAGE - "dialog_image_with_border/dialog_image": T.IMAGE - content_image_panel: T.STACK_PANEL - "content_image_panel/minecraft_dialog_image_with_border": T.IMAGE - "content_image_panel/horizontal_padding_01": T.PANEL - "content_image_panel/scrolling_panel": T.PANEL - scroll_text: T.BUTTON - image_panel: T.PANEL - "image_panel/dialog_image_with_border": T.IMAGE - "image_panel/focus_image": T.UNKNOWN - top_tab: T.PANEL - tab_navigation_panel_layout: T.STACK_PANEL - "tab_navigation_panel_layout/navigation_tabs": T.PANEL - "tab_navigation_panel_layout/navigation_tabs/content": T.UNKNOWN - common_tab_navigation_panel_layout: T.STACK_PANEL - tabbed_tab_navigation_panel_layout: T.STACK_PANEL - "tabbed_tab_navigation_panel_layout/minecraft_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_01": T.PANEL - "tabbed_tab_navigation_panel_layout/xbl_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_02": T.PANEL - "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_03": T.PANEL - "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_04": T.PANEL - "tabbed_tab_navigation_panel_layout/server_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_05": T.PANEL - "tabbed_tab_navigation_panel_layout/store_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_06": T.PANEL - "tabbed_tab_navigation_panel_layout/creative_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_07": T.PANEL - "tabbed_tab_navigation_panel_layout/packs_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_08": T.PANEL - "tabbed_tab_navigation_panel_layout/seeds_navigation_tab": T.PANEL - tabbed_tab_content_panel_layout: T.PANEL - "tabbed_tab_content_panel_layout/minecraft_tab_content": T.PANEL - "tabbed_tab_content_panel_layout/xbl_tab_content2": T.PANEL - "tabbed_tab_content_panel_layout/achievements_tab_content3": T.PANEL - "tabbed_tab_content_panel_layout/multiplayer_tab_content4": T.PANEL - "tabbed_tab_content_panel_layout/server_tab_content5": T.PANEL - "tabbed_tab_content_panel_layout/store_tab_content6": T.PANEL - "tabbed_tab_content_panel_layout/creative_tab_content7": T.PANEL - "tabbed_tab_content_panel_layout/packs_tab_content8": T.PANEL - "tabbed_tab_content_panel_layout/seeds_tab_content9": T.PANEL - common_tab_content_panel: T.PANEL - "common_tab_content_panel/content": T.UNKNOWN - minecraft_tab_content_panel: T.PANEL - xbl_tab_content_panel: T.PANEL - achievements_tab_content_panel: T.PANEL - multiplayer_tab_content_panel: T.PANEL - server_tab_content_panel: T.PANEL - store_tab_content_panel: T.PANEL - creative_tab_content_panel: T.PANEL - packs_tab_content_panel: T.PANEL - seeds_tab_content_panel: T.PANEL - common_tab_screen_panel: T.STACK_PANEL - "common_tab_screen_panel/tab_navigation_panel": T.STACK_PANEL - "common_tab_screen_panel/padding_01": T.PANEL - "common_tab_screen_panel/tab_content_panel": T.UNKNOWN - tabbed_screen_panel: T.STACK_PANEL - button_panel: T.STACK_PANEL - "button_panel/padding_5": T.PANEL - "button_panel/buy_now_button": T.BUTTON - "button_panel/padding_6": T.PANEL - tab_panel: T.STACK_PANEL - "tab_panel/padding_3": T.PANEL - "tab_panel/main_control": T.STACK_PANEL - "tab_panel/padding_4": T.PANEL - tabbed_upsell_content: T.STACK_PANEL - "tabbed_upsell_content/padding_0": T.PANEL - "tabbed_upsell_content/tab_panel": T.STACK_PANEL - "tabbed_upsell_content/padding_1": T.PANEL - "tabbed_upsell_content/button_panel": T.STACK_PANEL - "tabbed_upsell_content/padding_2": T.PANEL - tabbed_upsell_screen: T.SCREEN - tabbed_upsell_screen_panel: T.PANEL - "tabbed_upsell_screen_panel/tabbed_upsell_screen_content": T.PANEL - "tabbed_upsell_screen_panel/background": T.IMAGE + "padding_horizontal": T.PANEL, + "padding_vertical": T.PANEL, + "text_horizontal_padding": T.PANEL, + "tabbed_upsell_buy_now_button": T.BUTTON, + "tabbed_buy_now_label": T.PANEL, + "tabbed_buy_now_label/button_label": T.LABEL, + "label_panel": T.PANEL, + "label_panel/label_text": T.LABEL, + "text_panel": T.STACK_PANEL, + "text_panel/tab_content_title_panel": T.PANEL, + "text_panel/tab_content_description_panel": T.PANEL, + "text_panel/tab_content_description_panel_second": T.PANEL, + "dialog_image": T.IMAGE, + "dialog_image_with_border": T.IMAGE, + "dialog_image_with_border/dialog_image": T.IMAGE, + "content_image_panel": T.STACK_PANEL, + "content_image_panel/minecraft_dialog_image_with_border": T.IMAGE, + "content_image_panel/horizontal_padding_01": T.PANEL, + "content_image_panel/scrolling_panel": T.PANEL, + "scroll_text": T.BUTTON, + "image_panel": T.PANEL, + "image_panel/dialog_image_with_border": T.IMAGE, + "image_panel/focus_image": T.UNKNOWN, + "top_tab": T.PANEL, + "tab_navigation_panel_layout": T.STACK_PANEL, + "tab_navigation_panel_layout/navigation_tabs": T.PANEL, + "tab_navigation_panel_layout/navigation_tabs/content": T.UNKNOWN, + "common_tab_navigation_panel_layout": T.STACK_PANEL, + "tabbed_tab_navigation_panel_layout": T.STACK_PANEL, + "tabbed_tab_navigation_panel_layout/minecraft_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_01": T.PANEL, + "tabbed_tab_navigation_panel_layout/xbl_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_02": T.PANEL, + "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_03": T.PANEL, + "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_04": T.PANEL, + "tabbed_tab_navigation_panel_layout/server_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_05": T.PANEL, + "tabbed_tab_navigation_panel_layout/store_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_06": T.PANEL, + "tabbed_tab_navigation_panel_layout/creative_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_07": T.PANEL, + "tabbed_tab_navigation_panel_layout/packs_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_08": T.PANEL, + "tabbed_tab_navigation_panel_layout/seeds_navigation_tab": T.PANEL, + "tabbed_tab_content_panel_layout": T.PANEL, + "tabbed_tab_content_panel_layout/minecraft_tab_content": T.PANEL, + "tabbed_tab_content_panel_layout/xbl_tab_content2": T.PANEL, + "tabbed_tab_content_panel_layout/achievements_tab_content3": T.PANEL, + "tabbed_tab_content_panel_layout/multiplayer_tab_content4": T.PANEL, + "tabbed_tab_content_panel_layout/server_tab_content5": T.PANEL, + "tabbed_tab_content_panel_layout/store_tab_content6": T.PANEL, + "tabbed_tab_content_panel_layout/creative_tab_content7": T.PANEL, + "tabbed_tab_content_panel_layout/packs_tab_content8": T.PANEL, + "tabbed_tab_content_panel_layout/seeds_tab_content9": T.PANEL, + "common_tab_content_panel": T.PANEL, + "common_tab_content_panel/content": T.UNKNOWN, + "minecraft_tab_content_panel": T.PANEL, + "xbl_tab_content_panel": T.PANEL, + "achievements_tab_content_panel": T.PANEL, + "multiplayer_tab_content_panel": T.PANEL, + "server_tab_content_panel": T.PANEL, + "store_tab_content_panel": T.PANEL, + "creative_tab_content_panel": T.PANEL, + "packs_tab_content_panel": T.PANEL, + "seeds_tab_content_panel": T.PANEL, + "common_tab_screen_panel": T.STACK_PANEL, + "common_tab_screen_panel/tab_navigation_panel": T.STACK_PANEL, + "common_tab_screen_panel/padding_01": T.PANEL, + "common_tab_screen_panel/tab_content_panel": T.UNKNOWN, + "tabbed_screen_panel": T.STACK_PANEL, + "button_panel": T.STACK_PANEL, + "button_panel/padding_5": T.PANEL, + "button_panel/buy_now_button": T.BUTTON, + "button_panel/padding_6": T.PANEL, + "tab_panel": T.STACK_PANEL, + "tab_panel/padding_3": T.PANEL, + "tab_panel/main_control": T.STACK_PANEL, + "tab_panel/padding_4": T.PANEL, + "tabbed_upsell_content": T.STACK_PANEL, + "tabbed_upsell_content/padding_0": T.PANEL, + "tabbed_upsell_content/tab_panel": T.STACK_PANEL, + "tabbed_upsell_content/padding_1": T.PANEL, + "tabbed_upsell_content/button_panel": T.STACK_PANEL, + "tabbed_upsell_content/padding_2": T.PANEL, + "tabbed_upsell_screen": T.SCREEN, + "tabbed_upsell_screen_panel": T.PANEL, + "tabbed_upsell_screen_panel/tabbed_upsell_screen_content": T.PANEL, + "tabbed_upsell_screen_panel/background": T.IMAGE, } export type ThanksForTestingType = { - padding_horizontal: T.PANEL - padding_vertical: T.PANEL - text_horizontal_padding: T.PANEL - tabbed_upsell_buy_now_button: T.BUTTON - tabbed_buy_now_label: T.PANEL - "tabbed_buy_now_label/button_label": T.LABEL - label_panel: T.PANEL - "label_panel/label_text": T.LABEL - text_panel: T.STACK_PANEL - "text_panel/tab_content_title_panel": T.PANEL - "text_panel/tab_content_description_panel": T.PANEL - "text_panel/tab_content_description_panel_second": T.PANEL - dialog_image: T.IMAGE - dialog_image_with_border: T.IMAGE - "dialog_image_with_border/dialog_image": T.IMAGE - content_image_panel: T.STACK_PANEL - "content_image_panel/minecraft_dialog_image_with_border": T.IMAGE - "content_image_panel/horizontal_padding_01": T.PANEL - "content_image_panel/scrolling_panel": T.PANEL - scroll_text: T.BUTTON - image_panel: T.PANEL - "image_panel/dialog_image_with_border": T.IMAGE - "image_panel/focus_image": T.UNKNOWN - top_tab: T.PANEL - tab_navigation_panel_layout: T.STACK_PANEL - "tab_navigation_panel_layout/navigation_tabs": T.PANEL - "tab_navigation_panel_layout/navigation_tabs/content": T.UNKNOWN - common_tab_navigation_panel_layout: T.STACK_PANEL - tabbed_tab_navigation_panel_layout: T.STACK_PANEL - "tabbed_tab_navigation_panel_layout/minecraft_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_01": T.PANEL - "tabbed_tab_navigation_panel_layout/xbl_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_02": T.PANEL - "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_03": T.PANEL - "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_04": T.PANEL - "tabbed_tab_navigation_panel_layout/server_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_05": T.PANEL - "tabbed_tab_navigation_panel_layout/store_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_06": T.PANEL - "tabbed_tab_navigation_panel_layout/creative_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_07": T.PANEL - "tabbed_tab_navigation_panel_layout/packs_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_08": T.PANEL - "tabbed_tab_navigation_panel_layout/seeds_navigation_tab": T.PANEL - tabbed_tab_content_panel_layout: T.PANEL - "tabbed_tab_content_panel_layout/minecraft_tab_content": T.PANEL - "tabbed_tab_content_panel_layout/xbl_tab_content2": T.PANEL - "tabbed_tab_content_panel_layout/achievements_tab_content3": T.PANEL - "tabbed_tab_content_panel_layout/multiplayer_tab_content4": T.PANEL - "tabbed_tab_content_panel_layout/server_tab_content5": T.PANEL - "tabbed_tab_content_panel_layout/store_tab_content6": T.PANEL - "tabbed_tab_content_panel_layout/creative_tab_content7": T.PANEL - "tabbed_tab_content_panel_layout/packs_tab_content8": T.PANEL - "tabbed_tab_content_panel_layout/seeds_tab_content9": T.PANEL - common_tab_content_panel: T.PANEL - "common_tab_content_panel/content": T.UNKNOWN - minecraft_tab_content_panel: T.PANEL - xbl_tab_content_panel: T.PANEL - achievements_tab_content_panel: T.PANEL - multiplayer_tab_content_panel: T.PANEL - server_tab_content_panel: T.PANEL - store_tab_content_panel: T.PANEL - creative_tab_content_panel: T.PANEL - packs_tab_content_panel: T.PANEL - seeds_tab_content_panel: T.PANEL - common_tab_screen_panel: T.STACK_PANEL - "common_tab_screen_panel/tab_navigation_panel": T.STACK_PANEL - "common_tab_screen_panel/padding_01": T.PANEL - "common_tab_screen_panel/tab_content_panel": T.UNKNOWN - tabbed_screen_panel: T.STACK_PANEL - button_panel: T.STACK_PANEL - "button_panel/padding_5": T.PANEL - "button_panel/buy_now_button": T.BUTTON - "button_panel/padding_6": T.PANEL - tab_panel: T.STACK_PANEL - "tab_panel/padding_3": T.PANEL - "tab_panel/main_control": T.STACK_PANEL - "tab_panel/padding_4": T.PANEL - tabbed_upsell_content: T.STACK_PANEL - "tabbed_upsell_content/padding_0": T.PANEL - "tabbed_upsell_content/tab_panel": T.STACK_PANEL - "tabbed_upsell_content/padding_1": T.PANEL - "tabbed_upsell_content/button_panel": T.STACK_PANEL - "tabbed_upsell_content/padding_2": T.PANEL - thanks_for_testing_screen: T.SCREEN - tabbed_upsell_screen_panel: T.PANEL - "tabbed_upsell_screen_panel/tabbed_upsell_screen_content": T.PANEL - "tabbed_upsell_screen_panel/background": T.IMAGE + "padding_horizontal": T.PANEL, + "padding_vertical": T.PANEL, + "text_horizontal_padding": T.PANEL, + "tabbed_upsell_buy_now_button": T.BUTTON, + "tabbed_buy_now_label": T.PANEL, + "tabbed_buy_now_label/button_label": T.LABEL, + "label_panel": T.PANEL, + "label_panel/label_text": T.LABEL, + "text_panel": T.STACK_PANEL, + "text_panel/tab_content_title_panel": T.PANEL, + "text_panel/tab_content_description_panel": T.PANEL, + "text_panel/tab_content_description_panel_second": T.PANEL, + "dialog_image": T.IMAGE, + "dialog_image_with_border": T.IMAGE, + "dialog_image_with_border/dialog_image": T.IMAGE, + "content_image_panel": T.STACK_PANEL, + "content_image_panel/minecraft_dialog_image_with_border": T.IMAGE, + "content_image_panel/horizontal_padding_01": T.PANEL, + "content_image_panel/scrolling_panel": T.PANEL, + "scroll_text": T.BUTTON, + "image_panel": T.PANEL, + "image_panel/dialog_image_with_border": T.IMAGE, + "image_panel/focus_image": T.UNKNOWN, + "top_tab": T.PANEL, + "tab_navigation_panel_layout": T.STACK_PANEL, + "tab_navigation_panel_layout/navigation_tabs": T.PANEL, + "tab_navigation_panel_layout/navigation_tabs/content": T.UNKNOWN, + "common_tab_navigation_panel_layout": T.STACK_PANEL, + "tabbed_tab_navigation_panel_layout": T.STACK_PANEL, + "tabbed_tab_navigation_panel_layout/minecraft_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_01": T.PANEL, + "tabbed_tab_navigation_panel_layout/xbl_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_02": T.PANEL, + "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_03": T.PANEL, + "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_04": T.PANEL, + "tabbed_tab_navigation_panel_layout/server_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_05": T.PANEL, + "tabbed_tab_navigation_panel_layout/store_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_06": T.PANEL, + "tabbed_tab_navigation_panel_layout/creative_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_07": T.PANEL, + "tabbed_tab_navigation_panel_layout/packs_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_08": T.PANEL, + "tabbed_tab_navigation_panel_layout/seeds_navigation_tab": T.PANEL, + "tabbed_tab_content_panel_layout": T.PANEL, + "tabbed_tab_content_panel_layout/minecraft_tab_content": T.PANEL, + "tabbed_tab_content_panel_layout/xbl_tab_content2": T.PANEL, + "tabbed_tab_content_panel_layout/achievements_tab_content3": T.PANEL, + "tabbed_tab_content_panel_layout/multiplayer_tab_content4": T.PANEL, + "tabbed_tab_content_panel_layout/server_tab_content5": T.PANEL, + "tabbed_tab_content_panel_layout/store_tab_content6": T.PANEL, + "tabbed_tab_content_panel_layout/creative_tab_content7": T.PANEL, + "tabbed_tab_content_panel_layout/packs_tab_content8": T.PANEL, + "tabbed_tab_content_panel_layout/seeds_tab_content9": T.PANEL, + "common_tab_content_panel": T.PANEL, + "common_tab_content_panel/content": T.UNKNOWN, + "minecraft_tab_content_panel": T.PANEL, + "xbl_tab_content_panel": T.PANEL, + "achievements_tab_content_panel": T.PANEL, + "multiplayer_tab_content_panel": T.PANEL, + "server_tab_content_panel": T.PANEL, + "store_tab_content_panel": T.PANEL, + "creative_tab_content_panel": T.PANEL, + "packs_tab_content_panel": T.PANEL, + "seeds_tab_content_panel": T.PANEL, + "common_tab_screen_panel": T.STACK_PANEL, + "common_tab_screen_panel/tab_navigation_panel": T.STACK_PANEL, + "common_tab_screen_panel/padding_01": T.PANEL, + "common_tab_screen_panel/tab_content_panel": T.UNKNOWN, + "tabbed_screen_panel": T.STACK_PANEL, + "button_panel": T.STACK_PANEL, + "button_panel/padding_5": T.PANEL, + "button_panel/buy_now_button": T.BUTTON, + "button_panel/padding_6": T.PANEL, + "tab_panel": T.STACK_PANEL, + "tab_panel/padding_3": T.PANEL, + "tab_panel/main_control": T.STACK_PANEL, + "tab_panel/padding_4": T.PANEL, + "tabbed_upsell_content": T.STACK_PANEL, + "tabbed_upsell_content/padding_0": T.PANEL, + "tabbed_upsell_content/tab_panel": T.STACK_PANEL, + "tabbed_upsell_content/padding_1": T.PANEL, + "tabbed_upsell_content/button_panel": T.STACK_PANEL, + "tabbed_upsell_content/padding_2": T.PANEL, + "thanks_for_testing_screen": T.SCREEN, + "tabbed_upsell_screen_panel": T.PANEL, + "tabbed_upsell_screen_panel/tabbed_upsell_screen_content": T.PANEL, + "tabbed_upsell_screen_panel/background": T.IMAGE, } export type ThirdPartyStoreType = { - third_party_store_screen: T.SCREEN + "third_party_store_screen": T.SCREEN, } export type ToastScreenType = { - toast_image: T.IMAGE - toast_icon: T.PANEL - "toast_icon/toast_icon": T.IMAGE - xbox_icon: T.PANEL - third_party_invite_icon: T.PANEL - third_party_achievement_icon: T.PANEL - persona_icon: T.PANEL - "persona_icon/item": T.PANEL - resource_pack_icon: T.PANEL - "resource_pack_icon/resource_pack_image": T.IMAGE - key_art_image: T.PANEL - gamer_score_icon: T.IMAGE - toast_label: T.LABEL - static_button_state_panel: T.PANEL - static_button: T.BUTTON - "static_button/default": T.PANEL - "static_button/hover": T.PANEL - "static_button/pressed": T.PANEL - "static_button/locked": T.PANEL - popup: T.INPUT_PANEL - "popup/background": T.IMAGE - "popup/popup_content": T.STACK_PANEL - "popup/popup_content/icon_padding": T.STACK_PANEL - "popup/popup_content/text_padding": T.PANEL - "popup/popup_content/text_panel": T.PANEL - "popup/popup_content/text_panel/text_stack_panel": T.STACK_PANEL - "popup/popup_content/button_panel": T.PANEL - "popup/popup_content/button_panel/visual_button": T.BUTTON - item_renderer: T.CUSTOM - game_tip_label: T.LABEL - toast_progress_bar: T.PANEL - "toast_progress_bar/toast_duration_progress_bar": T.CUSTOM - recipe_unlocked_icon: T.STACK_PANEL - "recipe_unlocked_icon/padding_vertical": T.PANEL - "recipe_unlocked_icon/item_renderer": T.CUSTOM - recipe_unlocked_popup: T.IMAGE - "recipe_unlocked_popup/input_panel": T.INPUT_PANEL - "recipe_unlocked_popup/input_panel/label_panel": T.STACK_PANEL - "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_1": T.PANEL - "recipe_unlocked_popup/input_panel/label_panel/recipe_unlocked_icon": T.STACK_PANEL - "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_2": T.PANEL - "recipe_unlocked_popup/input_panel/label_panel/label_panel": T.STACK_PANEL - "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_1": T.PANEL - "recipe_unlocked_popup/input_panel/label_panel/label_panel/label": T.LABEL - "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_2": T.PANEL - "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_3": T.PANEL - recipe_unlocked_pocket_popup: T.IMAGE - "recipe_unlocked_pocket_popup/input_panel": T.INPUT_PANEL - "recipe_unlocked_pocket_popup/input_panel/label_panel": T.STACK_PANEL - "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_1": T.PANEL - "recipe_unlocked_pocket_popup/input_panel/label_panel/recipe_unlocked_icon": T.STACK_PANEL - "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_2": T.PANEL - "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel": T.STACK_PANEL - "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical": T.PANEL - "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/label": T.LABEL - "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical_1": T.PANEL - "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_3": T.PANEL - text_stack_panel: T.STACK_PANEL - "text_stack_panel/title": T.LABEL - "text_stack_panel/subtitle": T.STACK_PANEL - "text_stack_panel/subtitle/icon_padding": T.PANEL - "text_stack_panel/subtitle/icon_padding/gamer_score_icon": T.IMAGE - "text_stack_panel/subtitle/subtext_offset": T.PANEL - "text_stack_panel/subtitle/subtext_offset/subtext": T.LABEL - join_button_icon: T.IMAGE - chat_popup: T.INPUT_PANEL - splitscreen_join_popup: T.STACK_PANEL - "splitscreen_join_popup/join_button_icon": T.IMAGE - "splitscreen_join_popup/join_prompt_text_panel": T.PANEL - "splitscreen_join_popup/join_prompt_text_panel/join_prompt_text": T.LABEL - formfitting_alpha_toast: T.PANEL - "formfitting_alpha_toast/bg": T.IMAGE - "formfitting_alpha_toast/bg/label": T.LABEL - snackbar: T.PANEL - "snackbar/body": T.IMAGE - "snackbar/body/background": T.IMAGE - "snackbar/body/background/content": T.STACK_PANEL - "snackbar/body/background/content/left_padding": T.PANEL - "snackbar/body/background/content/vertically_central_text": T.STACK_PANEL - "snackbar/body/background/content/vertically_central_text/top_padding": T.PANEL - "snackbar/body/background/content/vertically_central_text/text": T.LABEL - "snackbar/body/background/content/right_padding": T.PANEL - "snackbar/body/background/right_shadow": T.IMAGE - progress_button_content: T.STACK_PANEL - "progress_button_content/gamepad_icon_glyph": T.LABEL - "progress_button_content/spacer": T.PANEL - "progress_button_content/progress_button_label": T.LABEL - progress_popup: T.INPUT_PANEL - "progress_popup/background": T.IMAGE - "progress_popup/popup_content": T.STACK_PANEL - "progress_popup/popup_content/progress_toast_image": T.IMAGE - "progress_popup/popup_content/profilepicture": T.CUSTOM - "progress_popup/popup_content/text_padding": T.PANEL - "progress_popup/popup_content/progress_content_vertical_panel": T.STACK_PANEL - "progress_popup/popup_content/progress_content_vertical_panel/title_text_label": T.LABEL - "progress_popup/popup_content/progress_content_vertical_panel/subtext": T.LABEL - "progress_popup/popup_content/progress_content_vertical_panel/stacked_progress_bar": T.PANEL - "progress_popup/popup_content/progress_content_vertical_panel/end_progress_padding": T.PANEL - "progress_popup/popup_content/divider_padding": T.PANEL - "progress_popup/popup_content/divider_image": T.IMAGE - "progress_popup/popup_content/popup_decline_button": T.BUTTON - "progress_popup/popup_content/end_padding": T.PANEL - party_invite_popup: T.INPUT_PANEL - "party_invite_popup/background": T.IMAGE - "party_invite_popup/party_invite_content": T.STACK_PANEL - "party_invite_popup/party_invite_content/profilepicture": T.CUSTOM - "party_invite_popup/party_invite_content/text_padding": T.PANEL - "party_invite_popup/party_invite_content/party_invite_content_vertical_panel": T.STACK_PANEL - "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/title_text_label": T.LABEL - "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/subtext": T.LABEL - "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/end_padding": T.PANEL - "party_invite_popup/party_invite_content/divider_padding": T.PANEL - "party_invite_popup/party_invite_content/divider_image": T.IMAGE - "party_invite_popup/party_invite_content/party_invite_button": T.BUTTON - "party_invite_popup/party_invite_content/end_padding": T.PANEL - party_travel_popup: T.INPUT_PANEL - toast_screen: T.SCREEN - toast_screen_content: T.PANEL - "toast_screen_content/content_log_panel": T.PANEL - "toast_screen_content/perf_turtle_panel": T.PANEL + "toast_image": T.IMAGE, + "toast_icon": T.PANEL, + "toast_icon/toast_icon": T.IMAGE, + "xbox_icon": T.PANEL, + "third_party_invite_icon": T.PANEL, + "third_party_achievement_icon": T.PANEL, + "persona_icon": T.PANEL, + "persona_icon/item": T.PANEL, + "resource_pack_icon": T.PANEL, + "resource_pack_icon/resource_pack_image": T.IMAGE, + "key_art_image": T.PANEL, + "gamer_score_icon": T.IMAGE, + "toast_label": T.LABEL, + "static_button_state_panel": T.PANEL, + "static_button": T.BUTTON, + "static_button/default": T.PANEL, + "static_button/hover": T.PANEL, + "static_button/pressed": T.PANEL, + "static_button/locked": T.PANEL, + "popup": T.INPUT_PANEL, + "popup/background": T.IMAGE, + "popup/popup_content": T.STACK_PANEL, + "popup/popup_content/icon_padding": T.STACK_PANEL, + "popup/popup_content/text_padding": T.PANEL, + "popup/popup_content/text_panel": T.PANEL, + "popup/popup_content/text_panel/text_stack_panel": T.STACK_PANEL, + "popup/popup_content/button_panel": T.PANEL, + "popup/popup_content/button_panel/visual_button": T.BUTTON, + "item_renderer": T.CUSTOM, + "game_tip_label": T.LABEL, + "toast_progress_bar": T.PANEL, + "toast_progress_bar/toast_duration_progress_bar": T.CUSTOM, + "recipe_unlocked_icon": T.STACK_PANEL, + "recipe_unlocked_icon/padding_vertical": T.PANEL, + "recipe_unlocked_icon/item_renderer": T.CUSTOM, + "recipe_unlocked_popup": T.IMAGE, + "recipe_unlocked_popup/input_panel": T.INPUT_PANEL, + "recipe_unlocked_popup/input_panel/label_panel": T.STACK_PANEL, + "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_1": T.PANEL, + "recipe_unlocked_popup/input_panel/label_panel/recipe_unlocked_icon": T.STACK_PANEL, + "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_2": T.PANEL, + "recipe_unlocked_popup/input_panel/label_panel/label_panel": T.STACK_PANEL, + "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_1": T.PANEL, + "recipe_unlocked_popup/input_panel/label_panel/label_panel/label": T.LABEL, + "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_2": T.PANEL, + "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_3": T.PANEL, + "recipe_unlocked_pocket_popup": T.IMAGE, + "recipe_unlocked_pocket_popup/input_panel": T.INPUT_PANEL, + "recipe_unlocked_pocket_popup/input_panel/label_panel": T.STACK_PANEL, + "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_1": T.PANEL, + "recipe_unlocked_pocket_popup/input_panel/label_panel/recipe_unlocked_icon": T.STACK_PANEL, + "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_2": T.PANEL, + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel": T.STACK_PANEL, + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical": T.PANEL, + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/label": T.LABEL, + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical_1": T.PANEL, + "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_3": T.PANEL, + "text_stack_panel": T.STACK_PANEL, + "text_stack_panel/title": T.LABEL, + "text_stack_panel/subtitle": T.STACK_PANEL, + "text_stack_panel/subtitle/icon_padding": T.PANEL, + "text_stack_panel/subtitle/icon_padding/gamer_score_icon": T.IMAGE, + "text_stack_panel/subtitle/subtext_offset": T.PANEL, + "text_stack_panel/subtitle/subtext_offset/subtext": T.LABEL, + "join_button_icon": T.IMAGE, + "chat_popup": T.INPUT_PANEL, + "splitscreen_join_popup": T.STACK_PANEL, + "splitscreen_join_popup/join_button_icon": T.IMAGE, + "splitscreen_join_popup/join_prompt_text_panel": T.PANEL, + "splitscreen_join_popup/join_prompt_text_panel/join_prompt_text": T.LABEL, + "formfitting_alpha_toast": T.PANEL, + "formfitting_alpha_toast/bg": T.IMAGE, + "formfitting_alpha_toast/bg/label": T.LABEL, + "snackbar": T.PANEL, + "snackbar/body": T.IMAGE, + "snackbar/body/background": T.IMAGE, + "snackbar/body/background/content": T.STACK_PANEL, + "snackbar/body/background/content/left_padding": T.PANEL, + "snackbar/body/background/content/vertically_central_text": T.STACK_PANEL, + "snackbar/body/background/content/vertically_central_text/top_padding": T.PANEL, + "snackbar/body/background/content/vertically_central_text/text": T.LABEL, + "snackbar/body/background/content/right_padding": T.PANEL, + "snackbar/body/background/right_shadow": T.IMAGE, + "progress_button_content": T.STACK_PANEL, + "progress_button_content/gamepad_icon_glyph": T.LABEL, + "progress_button_content/spacer": T.PANEL, + "progress_button_content/progress_button_label": T.LABEL, + "progress_popup": T.INPUT_PANEL, + "progress_popup/background": T.IMAGE, + "progress_popup/popup_content": T.STACK_PANEL, + "progress_popup/popup_content/progress_toast_image": T.IMAGE, + "progress_popup/popup_content/profilepicture": T.CUSTOM, + "progress_popup/popup_content/text_padding": T.PANEL, + "progress_popup/popup_content/progress_content_vertical_panel": T.STACK_PANEL, + "progress_popup/popup_content/progress_content_vertical_panel/title_text_label": T.LABEL, + "progress_popup/popup_content/progress_content_vertical_panel/subtext": T.LABEL, + "progress_popup/popup_content/progress_content_vertical_panel/stacked_progress_bar": T.PANEL, + "progress_popup/popup_content/progress_content_vertical_panel/end_progress_padding": T.PANEL, + "progress_popup/popup_content/divider_padding": T.PANEL, + "progress_popup/popup_content/divider_image": T.IMAGE, + "progress_popup/popup_content/popup_decline_button": T.BUTTON, + "progress_popup/popup_content/end_padding": T.PANEL, + "party_invite_popup": T.INPUT_PANEL, + "party_invite_popup/background": T.IMAGE, + "party_invite_popup/party_invite_content": T.STACK_PANEL, + "party_invite_popup/party_invite_content/profilepicture": T.CUSTOM, + "party_invite_popup/party_invite_content/text_padding": T.PANEL, + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel": T.STACK_PANEL, + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/title_text_label": T.LABEL, + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/subtext": T.LABEL, + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/end_padding": T.PANEL, + "party_invite_popup/party_invite_content/divider_padding": T.PANEL, + "party_invite_popup/party_invite_content/divider_image": T.IMAGE, + "party_invite_popup/party_invite_content/party_invite_button": T.BUTTON, + "party_invite_popup/party_invite_content/end_padding": T.PANEL, + "party_travel_popup": T.INPUT_PANEL, + "toast_screen": T.SCREEN, + "toast_screen_content": T.PANEL, + "toast_screen_content/content_log_panel": T.PANEL, + "toast_screen_content/perf_turtle_panel": T.PANEL, } export type TokenFaqType = { - main_panel: T.STACK_PANEL - "main_panel/faq_question_1": T.BUTTON - "main_panel/faq_question_1_divider": T.STACK_PANEL - "main_panel/faq_question_2": T.BUTTON - "main_panel/faq_question_2_divider": T.STACK_PANEL - "main_panel/faq_question_3": T.BUTTON - "main_panel/faq_question_3_divider": T.STACK_PANEL - "main_panel/faq_question_4": T.BUTTON - "main_panel/faq_question_4_divider": T.STACK_PANEL - "main_panel/faq_question_5": T.BUTTON - scrolling_panel: T.PANEL - token_faq_screen_content: T.PANEL - "token_faq_screen_content/dialog": T.PANEL - background: T.IMAGE - token_faq_screen: T.SCREEN - token_content_panel: T.STACK_PANEL - "token_content_panel/token_info_text": T.LABEL - token_popup_content: T.PANEL - "token_popup_content/dialog": T.PANEL - token_faq_button_panel: T.BUTTON - back_button_panel: T.BUTTON - token_popup: T.SCREEN + "main_panel": T.STACK_PANEL, + "main_panel/faq_question_1": T.BUTTON, + "main_panel/faq_question_1_divider": T.STACK_PANEL, + "main_panel/faq_question_2": T.BUTTON, + "main_panel/faq_question_2_divider": T.STACK_PANEL, + "main_panel/faq_question_3": T.BUTTON, + "main_panel/faq_question_3_divider": T.STACK_PANEL, + "main_panel/faq_question_4": T.BUTTON, + "main_panel/faq_question_4_divider": T.STACK_PANEL, + "main_panel/faq_question_5": T.BUTTON, + "scrolling_panel": T.PANEL, + "token_faq_screen_content": T.PANEL, + "token_faq_screen_content/dialog": T.PANEL, + "background": T.IMAGE, + "token_faq_screen": T.SCREEN, + "token_content_panel": T.STACK_PANEL, + "token_content_panel/token_info_text": T.LABEL, + "token_popup_content": T.PANEL, + "token_popup_content/dialog": T.PANEL, + "token_faq_button_panel": T.BUTTON, + "back_button_panel": T.BUTTON, + "token_popup": T.SCREEN, } export type TradeType = { - cycle_recipe_button: T.BUTTON - cycle_recipe_left_button: T.BUTTON - cycle_recipe_right_button: T.BUTTON - arrow_image: T.IMAGE - cross_out_icon: T.IMAGE - highlight_slot_panel: T.PANEL - "highlight_slot_panel/hover_text": T.CUSTOM - recipe_button: T.BUTTON - "recipe_button/hover": T.PANEL - recipe_item_panel: T.PANEL - "recipe_item_panel/item_renderer": T.CUSTOM - "recipe_item_panel/item_renderer/stack_count_label": T.LABEL - "recipe_item_panel/recipe_button": T.BUTTON - trade_item_slot: T.PANEL - "trade_item_slot/container_item": T.INPUT_PANEL - trade_item_slotB: T.PANEL - trade_item_slot_result_button: T.BUTTON - trade_item_slot_result: T.PANEL - arrow: T.PANEL - "arrow/arrow_image": T.IMAGE - "arrow/cross_out_icon": T.IMAGE - "arrow/recipe_button": T.BUTTON - purchase_grid_item: T.STACK_PANEL - "purchase_grid_item/top_item": T.UNKNOWN - "purchase_grid_item/padding": T.PANEL - "purchase_grid_item/bottom_item": T.UNKNOWN - purchase_grid: T.GRID - "purchase_grid/grid_slot1": T.STACK_PANEL - "purchase_grid/grid_slot2": T.STACK_PANEL - "purchase_grid/arrow": T.STACK_PANEL - "purchase_grid/result_item_slot": T.STACK_PANEL - greyed_item_panel: T.PANEL - "greyed_item_panel/item_renderer": T.CUSTOM - cycle_panel_keyboard: T.PANEL - "cycle_panel_keyboard/left": T.BUTTON - "cycle_panel_keyboard/right": T.BUTTON - cycle_panel_gamepad: T.PANEL - "cycle_panel_gamepad/left": T.BUTTON - "cycle_panel_gamepad/right": T.BUTTON - cycle_panel: T.PANEL - "cycle_panel/keyboard": T.PANEL - "cycle_panel/gamepad": T.PANEL - merchant_purchase_panel: T.PANEL - "merchant_purchase_panel/purchase_grid": T.GRID - top_half_panel: T.PANEL - "top_half_panel/villager_name_label": T.LABEL - "top_half_panel/cycle_panel": T.PANEL - "top_half_panel/merchant_purchase_panel": T.PANEL - trade_panel: T.PANEL - "trade_panel/gamepad_helpers": T.STACK_PANEL - "trade_panel/selected_item_details_factory": T.FACTORY - "trade_panel/item_lock_notification_factory": T.FACTORY - "trade_panel/root_panel": T.INPUT_PANEL - "trade_panel/root_panel/common_panel": T.PANEL - "trade_panel/root_panel/trade_inventory": T.PANEL - "trade_panel/root_panel/trade_inventory/top_half_panel": T.PANEL - "trade_panel/root_panel/trade_inventory/inventory_panel_bottom_half_with_label": T.PANEL - "trade_panel/root_panel/trade_inventory/hotbar_grid_template": T.GRID - "trade_panel/root_panel/trade_inventory/inventory_selected_icon_button": T.BUTTON - "trade_panel/root_panel/trade_inventory/gamepad_cursor": T.BUTTON - "trade_panel/flying_item_renderer": T.CUSTOM - trade_screen: T.SCREEN + "cycle_recipe_button": T.BUTTON, + "cycle_recipe_left_button": T.BUTTON, + "cycle_recipe_right_button": T.BUTTON, + "arrow_image": T.IMAGE, + "cross_out_icon": T.IMAGE, + "highlight_slot_panel": T.PANEL, + "highlight_slot_panel/hover_text": T.CUSTOM, + "recipe_button": T.BUTTON, + "recipe_button/hover": T.PANEL, + "recipe_item_panel": T.PANEL, + "recipe_item_panel/item_renderer": T.CUSTOM, + "recipe_item_panel/item_renderer/stack_count_label": T.LABEL, + "recipe_item_panel/recipe_button": T.BUTTON, + "trade_item_slot": T.PANEL, + "trade_item_slot/container_item": T.INPUT_PANEL, + "trade_item_slotB": T.PANEL, + "trade_item_slot_result_button": T.BUTTON, + "trade_item_slot_result": T.PANEL, + "arrow": T.PANEL, + "arrow/arrow_image": T.IMAGE, + "arrow/cross_out_icon": T.IMAGE, + "arrow/recipe_button": T.BUTTON, + "purchase_grid_item": T.STACK_PANEL, + "purchase_grid_item/top_item": T.UNKNOWN, + "purchase_grid_item/padding": T.PANEL, + "purchase_grid_item/bottom_item": T.UNKNOWN, + "purchase_grid": T.GRID, + "purchase_grid/grid_slot1": T.STACK_PANEL, + "purchase_grid/grid_slot2": T.STACK_PANEL, + "purchase_grid/arrow": T.STACK_PANEL, + "purchase_grid/result_item_slot": T.STACK_PANEL, + "greyed_item_panel": T.PANEL, + "greyed_item_panel/item_renderer": T.CUSTOM, + "cycle_panel_keyboard": T.PANEL, + "cycle_panel_keyboard/left": T.BUTTON, + "cycle_panel_keyboard/right": T.BUTTON, + "cycle_panel_gamepad": T.PANEL, + "cycle_panel_gamepad/left": T.BUTTON, + "cycle_panel_gamepad/right": T.BUTTON, + "cycle_panel": T.PANEL, + "cycle_panel/keyboard": T.PANEL, + "cycle_panel/gamepad": T.PANEL, + "merchant_purchase_panel": T.PANEL, + "merchant_purchase_panel/purchase_grid": T.GRID, + "top_half_panel": T.PANEL, + "top_half_panel/villager_name_label": T.LABEL, + "top_half_panel/cycle_panel": T.PANEL, + "top_half_panel/merchant_purchase_panel": T.PANEL, + "trade_panel": T.PANEL, + "trade_panel/gamepad_helpers": T.STACK_PANEL, + "trade_panel/selected_item_details_factory": T.FACTORY, + "trade_panel/item_lock_notification_factory": T.FACTORY, + "trade_panel/root_panel": T.INPUT_PANEL, + "trade_panel/root_panel/common_panel": T.PANEL, + "trade_panel/root_panel/trade_inventory": T.PANEL, + "trade_panel/root_panel/trade_inventory/top_half_panel": T.PANEL, + "trade_panel/root_panel/trade_inventory/inventory_panel_bottom_half_with_label": T.PANEL, + "trade_panel/root_panel/trade_inventory/hotbar_grid_template": T.GRID, + "trade_panel/root_panel/trade_inventory/inventory_selected_icon_button": T.BUTTON, + "trade_panel/root_panel/trade_inventory/gamepad_cursor": T.BUTTON, + "trade_panel/flying_item_renderer": T.CUSTOM, + "trade_screen": T.SCREEN, } export type TradePocketType = { - background_image: T.IMAGE - recipe_item_panel: T.PANEL - "recipe_item_panel/item_renderer": T.CUSTOM - "recipe_item_panel/item_renderer/stack_count_label": T.LABEL - result_item_panel: T.PANEL - "result_item_panel/output_item_name": T.LABEL - "result_item_panel/recipe_item_panel": T.PANEL - trade_item_slot: T.PANEL - "trade_item_slot/container_item": T.INPUT_PANEL - trade_item_slotB: T.PANEL - trade_item_slot_result_button: T.BUTTON - trade_item_slot_result: T.PANEL - purchase_grid: T.GRID - "purchase_grid/grid_slot1": T.STACK_PANEL - "purchase_grid/grid_slot2": T.STACK_PANEL - "purchase_grid/arrow": T.STACK_PANEL - "purchase_grid/result_item_slot": T.STACK_PANEL - merchant_purchase_panel: T.PANEL - "merchant_purchase_panel/left": T.BUTTON - "merchant_purchase_panel/purchase_grid": T.GRID - "merchant_purchase_panel/right": T.BUTTON - merchant_panel: T.PANEL - "merchant_panel/merchant_purchase_panel": T.PANEL - inventory_grid: T.GRID - inventory_content: T.PANEL - "inventory_content/scrolling_panel": T.PANEL - half_screen: T.PANEL - inventory_half_screen: T.PANEL - "inventory_half_screen/inventory_content": T.PANEL - merchant_half_screen: T.PANEL - "merchant_half_screen/merchant_panel": T.PANEL - header: T.PANEL - "header/header_background": T.IMAGE - "header/close_button": T.BUTTON - "header/villager_name_label": T.LABEL - trade_panel: T.SCREEN - "trade_panel/bg": T.IMAGE - "trade_panel/root_panel": T.INPUT_PANEL - "trade_panel/header": T.PANEL - "trade_panel/inventory": T.PANEL - "trade_panel/merchant_half_screen": T.PANEL - "trade_panel/gamepad_helpers": T.STACK_PANEL - "trade_panel/container_gamepad_helpers": T.STACK_PANEL - "trade_panel/inventory_selected_icon_button": T.BUTTON - "trade_panel/selected_item_details_factory": T.FACTORY - "trade_panel/item_lock_notification_factory": T.FACTORY - "trade_panel/flying_item_renderer": T.CUSTOM + "background_image": T.IMAGE, + "recipe_item_panel": T.PANEL, + "recipe_item_panel/item_renderer": T.CUSTOM, + "recipe_item_panel/item_renderer/stack_count_label": T.LABEL, + "result_item_panel": T.PANEL, + "result_item_panel/output_item_name": T.LABEL, + "result_item_panel/recipe_item_panel": T.PANEL, + "trade_item_slot": T.PANEL, + "trade_item_slot/container_item": T.INPUT_PANEL, + "trade_item_slotB": T.PANEL, + "trade_item_slot_result_button": T.BUTTON, + "trade_item_slot_result": T.PANEL, + "purchase_grid": T.GRID, + "purchase_grid/grid_slot1": T.STACK_PANEL, + "purchase_grid/grid_slot2": T.STACK_PANEL, + "purchase_grid/arrow": T.STACK_PANEL, + "purchase_grid/result_item_slot": T.STACK_PANEL, + "merchant_purchase_panel": T.PANEL, + "merchant_purchase_panel/left": T.BUTTON, + "merchant_purchase_panel/purchase_grid": T.GRID, + "merchant_purchase_panel/right": T.BUTTON, + "merchant_panel": T.PANEL, + "merchant_panel/merchant_purchase_panel": T.PANEL, + "inventory_grid": T.GRID, + "inventory_content": T.PANEL, + "inventory_content/scrolling_panel": T.PANEL, + "half_screen": T.PANEL, + "inventory_half_screen": T.PANEL, + "inventory_half_screen/inventory_content": T.PANEL, + "merchant_half_screen": T.PANEL, + "merchant_half_screen/merchant_panel": T.PANEL, + "header": T.PANEL, + "header/header_background": T.IMAGE, + "header/close_button": T.BUTTON, + "header/villager_name_label": T.LABEL, + "trade_panel": T.SCREEN, + "trade_panel/bg": T.IMAGE, + "trade_panel/root_panel": T.INPUT_PANEL, + "trade_panel/header": T.PANEL, + "trade_panel/inventory": T.PANEL, + "trade_panel/merchant_half_screen": T.PANEL, + "trade_panel/gamepad_helpers": T.STACK_PANEL, + "trade_panel/container_gamepad_helpers": T.STACK_PANEL, + "trade_panel/inventory_selected_icon_button": T.BUTTON, + "trade_panel/selected_item_details_factory": T.FACTORY, + "trade_panel/item_lock_notification_factory": T.FACTORY, + "trade_panel/flying_item_renderer": T.CUSTOM, } export type Trade2Type = { - toolbar_background: T.IMAGE - arrow_left_image: T.IMAGE - arrow_right_image: T.IMAGE - trade_cell_image: T.IMAGE - cross_out_image: T.IMAGE - lock_image: T.IMAGE - scroll_background_image: T.IMAGE - red_slash: T.IMAGE - blue_progress_bar: T.IMAGE - white_progress_bar: T.IMAGE - empty_progress_bar: T.IMAGE - progress_bar_nub: T.IMAGE - hover_button: T.BUTTON - "hover_button/hover_text": T.CUSTOM - stack_count_label: T.LABEL - changed_item_count_label: T.STACK_PANEL - "changed_item_count_label/stack_count_label": T.LABEL - "changed_item_count_label/stack_count_label/red_slash": T.IMAGE - "changed_item_count_label/stack_count_label/red_slash_double": T.IMAGE - "changed_item_count_label/padding": T.PANEL - "changed_item_count_label/second_stack_count_label": T.LABEL - single_item_grid: T.GRID - "single_item_grid/item_with_count": T.PANEL - "single_item_grid/item_with_count/item_renderer": T.CUSTOM - "single_item_grid/item_with_count/item_renderer/stack_count_label": T.LABEL - "single_item_grid/item_with_count/item_renderer/changed_item_count_label": T.STACK_PANEL - "single_item_grid/item_with_count/item_renderer/hover_button": T.BUTTON - trade_item_1: T.GRID - trade_item_2: T.GRID - sell_item: T.GRID - arrow_holder: T.PANEL - "arrow_holder/arrow_image": T.IMAGE - "arrow_holder/cross_out_image": T.IMAGE - "arrow_holder/lock_image": T.IMAGE - toggle_content: T.STACK_PANEL - "toggle_content/padding_1": T.PANEL - "toggle_content/trade_item_1": T.GRID - "toggle_content/padding_2": T.PANEL - "toggle_content/padding_2_extra": T.PANEL - "toggle_content/trade_item_2": T.GRID - "toggle_content/padding_3": T.PANEL - "toggle_content/padding_3_extra": T.PANEL - "toggle_content/arrow_holder": T.PANEL - "toggle_content/padding_4": T.PANEL - "toggle_content/sell_item_holder": T.PANEL - "toggle_content/sell_item_holder/sell_item": T.GRID - "toggle_content/sell_item_holder_with_less_padding": T.PANEL - "toggle_content/sell_item_holder_with_less_padding/sell_item": T.GRID - "toggle_content/padding_5": T.PANEL - toggle_content_holder: T.PANEL - "toggle_content_holder/toggle_content": T.UNKNOWN - trade_toggle_unchecked: T.PANEL - "trade_toggle_unchecked/toggle_checked_normal": T.PANEL - "trade_toggle_unchecked/toggle_checked_red": T.PANEL - trade_toggle_checked: T.PANEL - "trade_toggle_checked/toggle_checked_normal": T.PANEL - "trade_toggle_checked/toggle_checked_red": T.PANEL - trade_toggle_locked: T.PANEL - trade_actual_toggle: T.TOGGLE - trade_toggle: T.PANEL - trade_toggle_holder: T.PANEL - "trade_toggle_holder/trade_toggle": T.PANEL - trade_toggle_stack_panel: T.STACK_PANEL - tier_label: T.LABEL - tier_label_locked: T.LABEL - tier_stack_panel: T.STACK_PANEL - "tier_stack_panel/padding": T.PANEL - "tier_stack_panel/tier_label_holder": T.PANEL - "tier_stack_panel/tier_label_holder/tier_label": T.LABEL - "tier_stack_panel/tier_label_holder/tier_label_locked": T.LABEL - "tier_stack_panel/trade_toggle_stack_panel": T.STACK_PANEL - trade_selector_stack_panel: T.STACK_PANEL - scroll_inner_input_panel: T.INPUT_PANEL - "scroll_inner_input_panel/trade_selector_stack_panel": T.STACK_PANEL - trade_scroll_panel: T.PANEL - left_panel: T.INPUT_PANEL - "left_panel/bg": T.PANEL - "left_panel/trade_scroll_panel": T.PANEL - exp_progress_bar: T.PANEL - "exp_progress_bar/empty_progress_bar": T.IMAGE - "exp_progress_bar/empty_progress_bar/progress_bar_nub": T.IMAGE - "exp_progress_bar/empty_progress_bar/blue_progress_bar": T.IMAGE - "exp_progress_bar/empty_progress_bar/white_progress_bar": T.IMAGE - trade_details: T.PANEL - "trade_details/item_panel_image": T.IMAGE - "trade_details/item_panel_image/item_text_label": T.LABEL - trade_details_factory: T.FACTORY - trade_details_factory_holder: T.PANEL - trade_details_button: T.BUTTON - trade_details_1_button: T.BUTTON - trade_details_2_button: T.BUTTON - enchantment_details_button: T.BUTTON - trade_result_item_slot_button: T.BUTTON - red_cell_image: T.IMAGE - container_cell_image: T.PANEL - "container_cell_image/cell_image": T.IMAGE - "container_cell_image/red_cell_image": T.IMAGE - item_slot: T.INPUT_PANEL - ingredient_1_item_slot: T.INPUT_PANEL - ingredient_2_item_slot: T.INPUT_PANEL - result_item_slot: T.INPUT_PANEL - item_slot_holder: T.PANEL - "item_slot_holder/ingredient_1_item_slot": T.UNKNOWN - "item_slot_holder/trade_details_1_button": T.UNKNOWN - "item_slot_holder/trade_details_1_factory_holder": T.PANEL - item_slots_stack_panel: T.STACK_PANEL - "item_slots_stack_panel/ingredient_item_1_holder": T.PANEL - "item_slots_stack_panel/ingredient_item_2_holder": T.PANEL - "item_slots_stack_panel/pointing_right_arrow_holder": T.PANEL - "item_slots_stack_panel/pointing_right_arrow_holder/arrow_right_image": T.IMAGE - "item_slots_stack_panel/pointing_left_arrow_holder": T.PANEL - "item_slots_stack_panel/pointing_left_arrow_holder/arrow_left_image": T.IMAGE - "item_slots_stack_panel/result_item_slot_holder": T.PANEL - trade_button: T.BUTTON - how_to_play_button: T.BUTTON - top_half_stack_panel: T.STACK_PANEL - "top_half_stack_panel/item_slots_holder": T.PANEL - "top_half_stack_panel/item_slots_holder/item_slots_stack_panel": T.STACK_PANEL - "top_half_stack_panel/padding_1": T.PANEL - "top_half_stack_panel/trade_button_holder": T.PANEL - "top_half_stack_panel/trade_button_holder/trade_button": T.BUTTON - "top_half_stack_panel/how_to_play_button_holder": T.PANEL - "top_half_stack_panel/how_to_play_button_holder/how_to_play_button": T.BUTTON - top_half_panel: T.PANEL - "top_half_panel/top_half_stack_panel": T.STACK_PANEL - villager_name_label: T.LABEL - right_panel: T.INPUT_PANEL - "right_panel/common_panel": T.PANEL - "right_panel/trade_screen_inventory": T.PANEL - "right_panel/trade_screen_inventory/villager_name_label": T.LABEL - "right_panel/trade_screen_inventory/exp_progress_bar": T.PANEL - "right_panel/trade_screen_inventory/top_half_panel": T.PANEL - "right_panel/trade_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL - "right_panel/trade_screen_inventory/hotbar_grid": T.GRID - toolbar_panel: T.INPUT_PANEL - "toolbar_panel/toolbar_background": T.IMAGE - "toolbar_panel/toolbar_background/toolbar_stack_panel": T.STACK_PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": T.BUTTON - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": T.PANEL - toolbar_anchor: T.PANEL - "toolbar_anchor/toolbar_panel": T.INPUT_PANEL - center_fold: T.INPUT_PANEL - "center_fold/center_bg": T.IMAGE - screen_stack_panel: T.STACK_PANEL - "screen_stack_panel/left_panel": T.INPUT_PANEL - "screen_stack_panel/center_fold": T.INPUT_PANEL - "screen_stack_panel/right_panel": T.INPUT_PANEL - "screen_stack_panel/toolbar_anchor": T.PANEL - gamepad_helper_x: T.STACK_PANEL - gamepad_helper_y: T.STACK_PANEL - screen_panel: T.PANEL - "screen_panel/screen_stack_panel": T.STACK_PANEL - "screen_panel/container_gamepad_helpers": T.STACK_PANEL - "screen_panel/selected_item_details_factory": T.FACTORY - "screen_panel/item_lock_notification_factory": T.FACTORY - "screen_panel/inventory_selected_icon_button": T.BUTTON - "screen_panel/inventory_take_progress_icon_button": T.BUTTON - "screen_panel/flying_item_renderer": T.CUSTOM - trade_screen: T.SCREEN + "toolbar_background": T.IMAGE, + "arrow_left_image": T.IMAGE, + "arrow_right_image": T.IMAGE, + "trade_cell_image": T.IMAGE, + "cross_out_image": T.IMAGE, + "lock_image": T.IMAGE, + "scroll_background_image": T.IMAGE, + "red_slash": T.IMAGE, + "blue_progress_bar": T.IMAGE, + "white_progress_bar": T.IMAGE, + "empty_progress_bar": T.IMAGE, + "progress_bar_nub": T.IMAGE, + "hover_button": T.BUTTON, + "hover_button/hover_text": T.CUSTOM, + "stack_count_label": T.LABEL, + "changed_item_count_label": T.STACK_PANEL, + "changed_item_count_label/stack_count_label": T.LABEL, + "changed_item_count_label/stack_count_label/red_slash": T.IMAGE, + "changed_item_count_label/stack_count_label/red_slash_double": T.IMAGE, + "changed_item_count_label/padding": T.PANEL, + "changed_item_count_label/second_stack_count_label": T.LABEL, + "single_item_grid": T.GRID, + "single_item_grid/item_with_count": T.PANEL, + "single_item_grid/item_with_count/item_renderer": T.CUSTOM, + "single_item_grid/item_with_count/item_renderer/stack_count_label": T.LABEL, + "single_item_grid/item_with_count/item_renderer/changed_item_count_label": T.STACK_PANEL, + "single_item_grid/item_with_count/item_renderer/hover_button": T.BUTTON, + "trade_item_1": T.GRID, + "trade_item_2": T.GRID, + "sell_item": T.GRID, + "arrow_holder": T.PANEL, + "arrow_holder/arrow_image": T.IMAGE, + "arrow_holder/cross_out_image": T.IMAGE, + "arrow_holder/lock_image": T.IMAGE, + "toggle_content": T.STACK_PANEL, + "toggle_content/padding_1": T.PANEL, + "toggle_content/trade_item_1": T.GRID, + "toggle_content/padding_2": T.PANEL, + "toggle_content/padding_2_extra": T.PANEL, + "toggle_content/trade_item_2": T.GRID, + "toggle_content/padding_3": T.PANEL, + "toggle_content/padding_3_extra": T.PANEL, + "toggle_content/arrow_holder": T.PANEL, + "toggle_content/padding_4": T.PANEL, + "toggle_content/sell_item_holder": T.PANEL, + "toggle_content/sell_item_holder/sell_item": T.GRID, + "toggle_content/sell_item_holder_with_less_padding": T.PANEL, + "toggle_content/sell_item_holder_with_less_padding/sell_item": T.GRID, + "toggle_content/padding_5": T.PANEL, + "toggle_content_holder": T.PANEL, + "toggle_content_holder/toggle_content": T.UNKNOWN, + "trade_toggle_unchecked": T.PANEL, + "trade_toggle_unchecked/toggle_checked_normal": T.PANEL, + "trade_toggle_unchecked/toggle_checked_red": T.PANEL, + "trade_toggle_checked": T.PANEL, + "trade_toggle_checked/toggle_checked_normal": T.PANEL, + "trade_toggle_checked/toggle_checked_red": T.PANEL, + "trade_toggle_locked": T.PANEL, + "trade_actual_toggle": T.TOGGLE, + "trade_toggle": T.PANEL, + "trade_toggle_holder": T.PANEL, + "trade_toggle_holder/trade_toggle": T.PANEL, + "trade_toggle_stack_panel": T.STACK_PANEL, + "tier_label": T.LABEL, + "tier_label_locked": T.LABEL, + "tier_stack_panel": T.STACK_PANEL, + "tier_stack_panel/padding": T.PANEL, + "tier_stack_panel/tier_label_holder": T.PANEL, + "tier_stack_panel/tier_label_holder/tier_label": T.LABEL, + "tier_stack_panel/tier_label_holder/tier_label_locked": T.LABEL, + "tier_stack_panel/trade_toggle_stack_panel": T.STACK_PANEL, + "trade_selector_stack_panel": T.STACK_PANEL, + "scroll_inner_input_panel": T.INPUT_PANEL, + "scroll_inner_input_panel/trade_selector_stack_panel": T.STACK_PANEL, + "trade_scroll_panel": T.PANEL, + "left_panel": T.INPUT_PANEL, + "left_panel/bg": T.PANEL, + "left_panel/trade_scroll_panel": T.PANEL, + "exp_progress_bar": T.PANEL, + "exp_progress_bar/empty_progress_bar": T.IMAGE, + "exp_progress_bar/empty_progress_bar/progress_bar_nub": T.IMAGE, + "exp_progress_bar/empty_progress_bar/blue_progress_bar": T.IMAGE, + "exp_progress_bar/empty_progress_bar/white_progress_bar": T.IMAGE, + "trade_details": T.PANEL, + "trade_details/item_panel_image": T.IMAGE, + "trade_details/item_panel_image/item_text_label": T.LABEL, + "trade_details_factory": T.FACTORY, + "trade_details_factory_holder": T.PANEL, + "trade_details_button": T.BUTTON, + "trade_details_1_button": T.BUTTON, + "trade_details_2_button": T.BUTTON, + "enchantment_details_button": T.BUTTON, + "trade_result_item_slot_button": T.BUTTON, + "red_cell_image": T.IMAGE, + "container_cell_image": T.PANEL, + "container_cell_image/cell_image": T.IMAGE, + "container_cell_image/red_cell_image": T.IMAGE, + "item_slot": T.INPUT_PANEL, + "ingredient_1_item_slot": T.INPUT_PANEL, + "ingredient_2_item_slot": T.INPUT_PANEL, + "result_item_slot": T.INPUT_PANEL, + "item_slot_holder": T.PANEL, + "item_slot_holder/ingredient_1_item_slot": T.UNKNOWN, + "item_slot_holder/trade_details_1_button": T.UNKNOWN, + "item_slot_holder/trade_details_1_factory_holder": T.PANEL, + "item_slots_stack_panel": T.STACK_PANEL, + "item_slots_stack_panel/ingredient_item_1_holder": T.PANEL, + "item_slots_stack_panel/ingredient_item_2_holder": T.PANEL, + "item_slots_stack_panel/pointing_right_arrow_holder": T.PANEL, + "item_slots_stack_panel/pointing_right_arrow_holder/arrow_right_image": T.IMAGE, + "item_slots_stack_panel/pointing_left_arrow_holder": T.PANEL, + "item_slots_stack_panel/pointing_left_arrow_holder/arrow_left_image": T.IMAGE, + "item_slots_stack_panel/result_item_slot_holder": T.PANEL, + "trade_button": T.BUTTON, + "how_to_play_button": T.BUTTON, + "top_half_stack_panel": T.STACK_PANEL, + "top_half_stack_panel/item_slots_holder": T.PANEL, + "top_half_stack_panel/item_slots_holder/item_slots_stack_panel": T.STACK_PANEL, + "top_half_stack_panel/padding_1": T.PANEL, + "top_half_stack_panel/trade_button_holder": T.PANEL, + "top_half_stack_panel/trade_button_holder/trade_button": T.BUTTON, + "top_half_stack_panel/how_to_play_button_holder": T.PANEL, + "top_half_stack_panel/how_to_play_button_holder/how_to_play_button": T.BUTTON, + "top_half_panel": T.PANEL, + "top_half_panel/top_half_stack_panel": T.STACK_PANEL, + "villager_name_label": T.LABEL, + "right_panel": T.INPUT_PANEL, + "right_panel/common_panel": T.PANEL, + "right_panel/trade_screen_inventory": T.PANEL, + "right_panel/trade_screen_inventory/villager_name_label": T.LABEL, + "right_panel/trade_screen_inventory/exp_progress_bar": T.PANEL, + "right_panel/trade_screen_inventory/top_half_panel": T.PANEL, + "right_panel/trade_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL, + "right_panel/trade_screen_inventory/hotbar_grid": T.GRID, + "toolbar_panel": T.INPUT_PANEL, + "toolbar_panel/toolbar_background": T.IMAGE, + "toolbar_panel/toolbar_background/toolbar_stack_panel": T.STACK_PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": T.BUTTON, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": T.PANEL, + "toolbar_anchor": T.PANEL, + "toolbar_anchor/toolbar_panel": T.INPUT_PANEL, + "center_fold": T.INPUT_PANEL, + "center_fold/center_bg": T.IMAGE, + "screen_stack_panel": T.STACK_PANEL, + "screen_stack_panel/left_panel": T.INPUT_PANEL, + "screen_stack_panel/center_fold": T.INPUT_PANEL, + "screen_stack_panel/right_panel": T.INPUT_PANEL, + "screen_stack_panel/toolbar_anchor": T.PANEL, + "gamepad_helper_x": T.STACK_PANEL, + "gamepad_helper_y": T.STACK_PANEL, + "screen_panel": T.PANEL, + "screen_panel/screen_stack_panel": T.STACK_PANEL, + "screen_panel/container_gamepad_helpers": T.STACK_PANEL, + "screen_panel/selected_item_details_factory": T.FACTORY, + "screen_panel/item_lock_notification_factory": T.FACTORY, + "screen_panel/inventory_selected_icon_button": T.BUTTON, + "screen_panel/inventory_take_progress_icon_button": T.BUTTON, + "screen_panel/flying_item_renderer": T.CUSTOM, + "trade_screen": T.SCREEN, } export type Trade2PocketType = { - chest_item_renderer: T.CUSTOM - trade_icon: T.IMAGE - arrow_right_image: T.IMAGE - right_navigation_tabs: T.STACK_PANEL - "right_navigation_tabs/pocket_tab_close_button": T.IMAGE - "right_navigation_tabs/fill": T.PANEL - trade_slots_panel: T.IMAGE - "trade_slots_panel/item_slots_stack_panel": T.STACK_PANEL - trade_and_help_buttons: T.STACK_PANEL - "trade_and_help_buttons/trade_button_holder": T.PANEL - "trade_and_help_buttons/trade_button_holder/trade_button": T.BUTTON - "trade_and_help_buttons/how_to_play_button_holder": T.PANEL - "trade_and_help_buttons/how_to_play_button_holder/how_to_play_button": T.BUTTON - name_and_trade_slots_stack_panel: T.STACK_PANEL - "name_and_trade_slots_stack_panel/padding_1": T.PANEL - "name_and_trade_slots_stack_panel/villager_name_label_holder": T.PANEL - "name_and_trade_slots_stack_panel/villager_name_label_holder/villager_name_label": T.LABEL - "name_and_trade_slots_stack_panel/padding_2": T.PANEL - "name_and_trade_slots_stack_panel/exp_progress_bar_holder": T.PANEL - "name_and_trade_slots_stack_panel/exp_progress_bar_holder/exp_progress_bar": T.PANEL - "name_and_trade_slots_stack_panel/padding_3": T.PANEL - "name_and_trade_slots_stack_panel/trade_slots_panel": T.IMAGE - "name_and_trade_slots_stack_panel/padding_4": T.PANEL - "name_and_trade_slots_stack_panel/trade_and_help_buttons": T.STACK_PANEL - right_panel: T.STACK_PANEL - "right_panel/content": T.INPUT_PANEL - "right_panel/content/bg": T.PANEL - "right_panel/content/name_and_trade_slots_stack_panel": T.STACK_PANEL - "right_panel/navigation_tabs_holder": T.PANEL - "right_panel/navigation_tabs_holder/right_navigation_tabs": T.STACK_PANEL - left_tab_trade: T.PANEL - left_tab_inventory: T.PANEL - left_navigation_tabs: T.STACK_PANEL - "left_navigation_tabs/left_tab_trades": T.PANEL - "left_navigation_tabs/padding": T.PANEL - "left_navigation_tabs/left_tab_inventory": T.PANEL - arrow_holder: T.PANEL - "arrow_holder/arrow_image": T.IMAGE - "arrow_holder/cross_out_image": T.IMAGE - "arrow_holder/lock_image": T.IMAGE - inventory_scroll_panel: T.PANEL - toggle_content: T.STACK_PANEL - "toggle_content/padding_1": T.PANEL - "toggle_content/trade_item_holder": T.STACK_PANEL - "toggle_content/trade_item_holder/padding_left": T.PANEL - "toggle_content/trade_item_holder/trade_item_1": T.GRID - "toggle_content/trade_item_holder/padding_middle": T.PANEL - "toggle_content/trade_item_holder/trade_item_2": T.GRID - "toggle_content/trade_item_holder/padding_right": T.PANEL - "toggle_content/padding_2": T.PANEL - "toggle_content/arrow_holder": T.PANEL - "toggle_content/padding_3": T.PANEL - "toggle_content/sell_item_holder": T.PANEL - "toggle_content/sell_item_holder/sell_item": T.GRID - "toggle_content/padding_4": T.PANEL - left_panel: T.STACK_PANEL - "left_panel/gamepad_helpers_and_tabs_holder": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": T.STACK_PANEL - "left_panel/content": T.INPUT_PANEL - "left_panel/content/bg": T.PANEL - "left_panel/content/inventory_scroll_panel": T.PANEL - "left_panel/content/trade_scroll_panel": T.PANEL - pocket_hotbar_and_content_panels: T.STACK_PANEL - screen_panel: T.PANEL - "screen_panel/pocket_hotbar_and_content_panels": T.STACK_PANEL - "screen_panel/container_gamepad_helpers": T.STACK_PANEL - "screen_panel/selected_item_details_factory": T.FACTORY - "screen_panel/item_lock_notification_factory": T.FACTORY - "screen_panel/inventory_selected_icon_button": T.BUTTON - "screen_panel/inventory_take_progress_icon_button": T.BUTTON - "screen_panel/flying_item_renderer": T.CUSTOM + "chest_item_renderer": T.CUSTOM, + "trade_icon": T.IMAGE, + "arrow_right_image": T.IMAGE, + "right_navigation_tabs": T.STACK_PANEL, + "right_navigation_tabs/pocket_tab_close_button": T.IMAGE, + "right_navigation_tabs/fill": T.PANEL, + "trade_slots_panel": T.IMAGE, + "trade_slots_panel/item_slots_stack_panel": T.STACK_PANEL, + "trade_and_help_buttons": T.STACK_PANEL, + "trade_and_help_buttons/trade_button_holder": T.PANEL, + "trade_and_help_buttons/trade_button_holder/trade_button": T.BUTTON, + "trade_and_help_buttons/how_to_play_button_holder": T.PANEL, + "trade_and_help_buttons/how_to_play_button_holder/how_to_play_button": T.BUTTON, + "name_and_trade_slots_stack_panel": T.STACK_PANEL, + "name_and_trade_slots_stack_panel/padding_1": T.PANEL, + "name_and_trade_slots_stack_panel/villager_name_label_holder": T.PANEL, + "name_and_trade_slots_stack_panel/villager_name_label_holder/villager_name_label": T.LABEL, + "name_and_trade_slots_stack_panel/padding_2": T.PANEL, + "name_and_trade_slots_stack_panel/exp_progress_bar_holder": T.PANEL, + "name_and_trade_slots_stack_panel/exp_progress_bar_holder/exp_progress_bar": T.PANEL, + "name_and_trade_slots_stack_panel/padding_3": T.PANEL, + "name_and_trade_slots_stack_panel/trade_slots_panel": T.IMAGE, + "name_and_trade_slots_stack_panel/padding_4": T.PANEL, + "name_and_trade_slots_stack_panel/trade_and_help_buttons": T.STACK_PANEL, + "right_panel": T.STACK_PANEL, + "right_panel/content": T.INPUT_PANEL, + "right_panel/content/bg": T.PANEL, + "right_panel/content/name_and_trade_slots_stack_panel": T.STACK_PANEL, + "right_panel/navigation_tabs_holder": T.PANEL, + "right_panel/navigation_tabs_holder/right_navigation_tabs": T.STACK_PANEL, + "left_tab_trade": T.PANEL, + "left_tab_inventory": T.PANEL, + "left_navigation_tabs": T.STACK_PANEL, + "left_navigation_tabs/left_tab_trades": T.PANEL, + "left_navigation_tabs/padding": T.PANEL, + "left_navigation_tabs/left_tab_inventory": T.PANEL, + "arrow_holder": T.PANEL, + "arrow_holder/arrow_image": T.IMAGE, + "arrow_holder/cross_out_image": T.IMAGE, + "arrow_holder/lock_image": T.IMAGE, + "inventory_scroll_panel": T.PANEL, + "toggle_content": T.STACK_PANEL, + "toggle_content/padding_1": T.PANEL, + "toggle_content/trade_item_holder": T.STACK_PANEL, + "toggle_content/trade_item_holder/padding_left": T.PANEL, + "toggle_content/trade_item_holder/trade_item_1": T.GRID, + "toggle_content/trade_item_holder/padding_middle": T.PANEL, + "toggle_content/trade_item_holder/trade_item_2": T.GRID, + "toggle_content/trade_item_holder/padding_right": T.PANEL, + "toggle_content/padding_2": T.PANEL, + "toggle_content/arrow_holder": T.PANEL, + "toggle_content/padding_3": T.PANEL, + "toggle_content/sell_item_holder": T.PANEL, + "toggle_content/sell_item_holder/sell_item": T.GRID, + "toggle_content/padding_4": T.PANEL, + "left_panel": T.STACK_PANEL, + "left_panel/gamepad_helpers_and_tabs_holder": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": T.STACK_PANEL, + "left_panel/content": T.INPUT_PANEL, + "left_panel/content/bg": T.PANEL, + "left_panel/content/inventory_scroll_panel": T.PANEL, + "left_panel/content/trade_scroll_panel": T.PANEL, + "pocket_hotbar_and_content_panels": T.STACK_PANEL, + "screen_panel": T.PANEL, + "screen_panel/pocket_hotbar_and_content_panels": T.STACK_PANEL, + "screen_panel/container_gamepad_helpers": T.STACK_PANEL, + "screen_panel/selected_item_details_factory": T.FACTORY, + "screen_panel/item_lock_notification_factory": T.FACTORY, + "screen_panel/inventory_selected_icon_button": T.BUTTON, + "screen_panel/inventory_take_progress_icon_button": T.BUTTON, + "screen_panel/flying_item_renderer": T.CUSTOM, } export type TrialUpsellType = { - normal_stroke_button: T.IMAGE - normal_description_label: T.LABEL - trialTime: T.CUSTOM - trial_label: T.LABEL - trial_description_panel: T.PANEL - "trial_description_panel/description_text": T.LABEL - trial_expired_description_panel: T.STACK_PANEL - "trial_expired_description_panel/vertical_padding_0": T.PANEL - "trial_expired_description_panel/line1": T.LABEL - "trial_expired_description_panel/vertical_padding_1": T.PANEL - "trial_expired_description_panel/line2": T.LABEL - "trial_expired_description_panel/line3": T.LABEL - "trial_expired_description_panel/line4": T.LABEL - "trial_expired_description_panel/line5": T.LABEL - continue_button: T.BUTTON - buy_button: T.BUTTON - root_panel: T.PANEL - trial_upsell_screen_dialog: T.PANEL - trial_upsell_expired_screen_dialog: T.PANEL - button_content_panel: T.PANEL - "button_content_panel/buy": T.BUTTON - "button_content_panel/continue": T.BUTTON - trial_upsell_screen: T.SCREEN - trial_upsell_screen_content: T.PANEL - "trial_upsell_screen_content/trialTime": T.CUSTOM - "trial_upsell_screen_content/root_panel": T.PANEL - "trial_upsell_screen_content/root_panel/trial_upsell_screen_dialog": T.PANEL - trial_upsell_expired_screen: T.SCREEN - trial_upsell_expired_screen_content: T.PANEL - "trial_upsell_expired_screen_content/trialTime": T.CUSTOM - "trial_upsell_expired_screen_content/root_panel": T.PANEL - "trial_upsell_expired_screen_content/root_panel/trial_upsell_expired_screen_dialog": T.PANEL - content_description_panel: T.PANEL - "content_description_panel/scrolling_panel": T.PANEL + "normal_stroke_button": T.IMAGE, + "normal_description_label": T.LABEL, + "trialTime": T.CUSTOM, + "trial_label": T.LABEL, + "trial_description_panel": T.PANEL, + "trial_description_panel/description_text": T.LABEL, + "trial_expired_description_panel": T.STACK_PANEL, + "trial_expired_description_panel/vertical_padding_0": T.PANEL, + "trial_expired_description_panel/line1": T.LABEL, + "trial_expired_description_panel/vertical_padding_1": T.PANEL, + "trial_expired_description_panel/line2": T.LABEL, + "trial_expired_description_panel/line3": T.LABEL, + "trial_expired_description_panel/line4": T.LABEL, + "trial_expired_description_panel/line5": T.LABEL, + "continue_button": T.BUTTON, + "buy_button": T.BUTTON, + "root_panel": T.PANEL, + "trial_upsell_screen_dialog": T.PANEL, + "trial_upsell_expired_screen_dialog": T.PANEL, + "button_content_panel": T.PANEL, + "button_content_panel/buy": T.BUTTON, + "button_content_panel/continue": T.BUTTON, + "trial_upsell_screen": T.SCREEN, + "trial_upsell_screen_content": T.PANEL, + "trial_upsell_screen_content/trialTime": T.CUSTOM, + "trial_upsell_screen_content/root_panel": T.PANEL, + "trial_upsell_screen_content/root_panel/trial_upsell_screen_dialog": T.PANEL, + "trial_upsell_expired_screen": T.SCREEN, + "trial_upsell_expired_screen_content": T.PANEL, + "trial_upsell_expired_screen_content/trialTime": T.CUSTOM, + "trial_upsell_expired_screen_content/root_panel": T.PANEL, + "trial_upsell_expired_screen_content/root_panel/trial_upsell_expired_screen_dialog": T.PANEL, + "content_description_panel": T.PANEL, + "content_description_panel/scrolling_panel": T.PANEL, } export type UgcViewerType = { - padding: T.PANEL - world_label: T.LABEL - world_image: T.IMAGE - button_content: T.PANEL - "button_content/stack_panel": T.STACK_PANEL - "button_content/stack_panel/world_label": T.LABEL - "button_content/stack_panel/world_panel": T.PANEL - "button_content/stack_panel/world_panel/background": T.IMAGE - "button_content/stack_panel/world_panel/background/world_image": T.IMAGE - grid_item: T.PANEL - "grid_item/button": T.BUTTON - place_holder_control: T.PANEL - "place_holder_control/search_icon": T.IMAGE - "place_holder_control/place_holder_text": T.LABEL - search_box: T.EDIT_BOX - grid_content: T.GRID - scrolling_content: T.PANEL - "scrolling_content/grid_content": T.GRID - main_panel: T.STACK_PANEL - "main_panel/padding_0": T.PANEL - "main_panel/centerer_panel_0": T.PANEL - "main_panel/centerer_panel_0/search_box": T.EDIT_BOX - "main_panel/padding_1": T.PANEL - "main_panel/centerer_panel_1": T.PANEL - "main_panel/centerer_panel_1/scrolling_panel": T.PANEL - "main_panel/padding_2": T.PANEL - ugc_viewer_screen: T.SCREEN - screen_content: T.PANEL - "screen_content/main_panel": T.PANEL + "padding": T.PANEL, + "world_label": T.LABEL, + "world_image": T.IMAGE, + "button_content": T.PANEL, + "button_content/stack_panel": T.STACK_PANEL, + "button_content/stack_panel/world_label": T.LABEL, + "button_content/stack_panel/world_panel": T.PANEL, + "button_content/stack_panel/world_panel/background": T.IMAGE, + "button_content/stack_panel/world_panel/background/world_image": T.IMAGE, + "grid_item": T.PANEL, + "grid_item/button": T.BUTTON, + "place_holder_control": T.PANEL, + "place_holder_control/search_icon": T.IMAGE, + "place_holder_control/place_holder_text": T.LABEL, + "search_box": T.EDIT_BOX, + "grid_content": T.GRID, + "scrolling_content": T.PANEL, + "scrolling_content/grid_content": T.GRID, + "main_panel": T.STACK_PANEL, + "main_panel/padding_0": T.PANEL, + "main_panel/centerer_panel_0": T.PANEL, + "main_panel/centerer_panel_0/search_box": T.EDIT_BOX, + "main_panel/padding_1": T.PANEL, + "main_panel/centerer_panel_1": T.PANEL, + "main_panel/centerer_panel_1/scrolling_panel": T.PANEL, + "main_panel/padding_2": T.PANEL, + "ugc_viewer_screen": T.SCREEN, + "screen_content": T.PANEL, + "screen_content/main_panel": T.PANEL, } export type CommonArtType = { - title_image: T.IMAGE - title_image_edu: T.IMAGE - splash_text: T.CUSTOM - title_panel_pocket: T.PANEL - "title_panel_pocket/title_image": T.IMAGE - "title_panel_pocket/splash_text": T.CUSTOM - title_panel_win10: T.PANEL - "title_panel_win10/title_image": T.IMAGE - "title_panel_win10/splash_text": T.CUSTOM - title_panel_osx: T.PANEL - "title_panel_osx/title_image": T.IMAGE - "title_panel_osx/splash_text": T.CUSTOM - title_panel_edu_desktop: T.PANEL - "title_panel_edu_desktop/banner_control": T.PANEL - "title_panel_edu_desktop/banner_control/banner": T.IMAGE - "title_panel_edu_desktop/banner_control/drop_shadow": T.IMAGE - "title_panel_edu_desktop/title_control": T.PANEL - "title_panel_edu_desktop/title_control/title_image_edu": T.IMAGE - "title_panel_edu_desktop/title_control/splash_text": T.CUSTOM - title_panel_edu_mobile: T.PANEL - "title_panel_edu_mobile/title_control": T.PANEL - "title_panel_edu_mobile/title_control/title_image_edu": T.IMAGE - "title_panel_edu_mobile/title_control/splash_text": T.CUSTOM - title_panel_content: T.PANEL - start_title_panel_content: T.PANEL - pause_logo_panel: T.INPUT_PANEL - "pause_logo_panel/logo": T.UNKNOWN + "title_image": T.IMAGE, + "title_image_edu": T.IMAGE, + "splash_text": T.CUSTOM, + "title_panel_pocket": T.PANEL, + "title_panel_pocket/title_image": T.IMAGE, + "title_panel_pocket/splash_text": T.CUSTOM, + "title_panel_win10": T.PANEL, + "title_panel_win10/title_image": T.IMAGE, + "title_panel_win10/splash_text": T.CUSTOM, + "title_panel_osx": T.PANEL, + "title_panel_osx/title_image": T.IMAGE, + "title_panel_osx/splash_text": T.CUSTOM, + "title_panel_edu_desktop": T.PANEL, + "title_panel_edu_desktop/banner_control": T.PANEL, + "title_panel_edu_desktop/banner_control/banner": T.IMAGE, + "title_panel_edu_desktop/banner_control/drop_shadow": T.IMAGE, + "title_panel_edu_desktop/title_control": T.PANEL, + "title_panel_edu_desktop/title_control/title_image_edu": T.IMAGE, + "title_panel_edu_desktop/title_control/splash_text": T.CUSTOM, + "title_panel_edu_mobile": T.PANEL, + "title_panel_edu_mobile/title_control": T.PANEL, + "title_panel_edu_mobile/title_control/title_image_edu": T.IMAGE, + "title_panel_edu_mobile/title_control/splash_text": T.CUSTOM, + "title_panel_content": T.PANEL, + "start_title_panel_content": T.PANEL, + "pause_logo_panel": T.INPUT_PANEL, + "pause_logo_panel/logo": T.UNKNOWN, } export type CommonType = { - empty_panel: T.PANEL - vertical_padding_8px: T.PANEL - horizontal_padding_2px: T.PANEL - empty_image: T.IMAGE - horizontal_stack_panel: T.STACK_PANEL - vertical_stack_panel: T.STACK_PANEL - vert_stack_centering_panel: T.PANEL - "vert_stack_centering_panel/stack_content": T.UNKNOWN - button: T.BUTTON - screen_header_title_panel: T.PANEL - "screen_header_title_panel/store_header_title": T.LABEL - back_button: T.BUTTON - back_title_button: T.STACK_PANEL - "back_title_button/panel1": T.PANEL - "back_title_button/panel1/button": T.BUTTON - "back_title_button/padding1": T.PANEL - "back_title_button/panel2": T.PANEL - "back_title_button/panel2/label": T.LABEL - chevron_image: T.IMAGE - back_button_content: T.STACK_PANEL - "back_button_content/chevron_panel": T.PANEL - "back_button_content/chevron_panel/left_chevron": T.IMAGE - "back_button_content/padding1": T.PANEL - "back_button_content/label_panel": T.PANEL - "back_button_content/label_panel/label": T.LABEL - label_hover: T.PANEL - "label_hover/hover": T.IMAGE - tts_activate_sibling: T.BUTTON - "tts_activate_sibling/default": T.PANEL - "tts_activate_sibling/pressed": T.PANEL - "tts_activate_sibling/hover": T.PANEL - back_title_button_content: T.STACK_PANEL - "back_title_button_content/padding1": T.PANEL - "back_title_button_content/chevron_panel": T.PANEL - "back_title_button_content/chevron_panel/left_chevron": T.IMAGE - "back_title_button_content/padding2": T.PANEL - toggle_visuals: T.PANEL - "toggle_visuals/unchecked": T.UNKNOWN - "toggle_visuals/checked": T.UNKNOWN - "toggle_visuals/unchecked_hover": T.UNKNOWN - "toggle_visuals/checked_hover": T.UNKNOWN - "toggle_visuals/unchecked_locked": T.UNKNOWN - "toggle_visuals/checked_locked": T.UNKNOWN - "toggle_visuals/unchecked_locked_hover": T.UNKNOWN - "toggle_visuals/checked_locked_hover": T.UNKNOWN - toggle: T.PANEL - radio_toggle: T.PANEL - checkbox: T.PANEL - checkbox_image: T.IMAGE - checked_image: T.IMAGE - unchecked_image: T.IMAGE - checked_hover_image: T.IMAGE - unchecked_hover_image: T.IMAGE - rotating_text: T.CAROUSEL_LABEL - button_text: T.LABEL - toggle_state_template: T.IMAGE - new_button_label: T.LABEL - checkbox_checked_state: T.IMAGE - checkbox_unchecked_state: T.IMAGE - checkbox_checked_hover_state: T.IMAGE - checkbox_unchecked_hover_state: T.IMAGE - checkbox_checked_locked_state: T.IMAGE - checkbox_unchecked_locked_state: T.IMAGE - radio_toggle_checked_state: T.IMAGE - radio_toggle_unchecked_state: T.IMAGE - radio_toggle_checked_hover_state: T.IMAGE - radio_toggle_unchecked_hover_state: T.IMAGE - radio_toggle_checked_locked_state: T.IMAGE - radio_toggle_unchecked_locked_state: T.IMAGE - slider_button_state: T.IMAGE - slider_button_layout: T.IMAGE - slider_button_hover_layout: T.IMAGE - slider_button_locked_layout: T.IMAGE - slider_button_indent_layout: T.IMAGE - slider_box: T.SLIDER_BOX - "slider_box/default": T.UNKNOWN - "slider_box/hover": T.UNKNOWN - "slider_box/indent": T.UNKNOWN - "slider_box/locked": T.UNKNOWN - "slider_box/locked/transparent_grey": T.IMAGE - slider_background: T.IMAGE - slider_background_hover: T.IMAGE - slider_progress: T.IMAGE - slider_progress_hover: T.IMAGE - slider_border: T.IMAGE - slider_bar_default: T.IMAGE - "slider_bar_default/sizing_panel": T.PANEL - "slider_bar_default/transparent_grey": T.IMAGE - slider_bar_hover: T.IMAGE - slider_step: T.IMAGE - slider_step_hover: T.IMAGE - slider_step_progress: T.IMAGE - slider_step_progress_hover: T.IMAGE - slider: T.SLIDER - "slider/slider_box": T.SLIDER_BOX - "slider/slider_bar_default": T.IMAGE - "slider/slider_bar_hover": T.IMAGE - dropdown_background: T.IMAGE - dropdown: T.PANEL - "dropdown/dropdown_content": T.INPUT_PANEL - "dropdown/dropdown_content/0": T.UNKNOWN - dropdown_no_scrollpanel: T.PANEL - square_image_border_white: T.IMAGE - focus_border_white: T.IMAGE - focus_border_yellow: T.IMAGE - focus_border_black: T.IMAGE - non_interact_focus_border: T.IMAGE - non_interact_focus_border_button: T.BUTTON - "non_interact_focus_border_button/default": T.UNKNOWN - "non_interact_focus_border_button/hover": T.UNKNOWN - "non_interact_focus_border_button/pressed": T.UNKNOWN - "non_interact_focus_border_button/content": T.UNKNOWN - tts_label_focus_wrapper: T.PANEL - "tts_label_focus_wrapper/label": T.UNKNOWN - "tts_label_focus_wrapper/focus_border": T.BUTTON - default_indent: T.IMAGE - edit_box_indent: T.IMAGE - edit_box_indent_hover: T.IMAGE - transparent_edit_box_indent: T.IMAGE - transparent_edit_box_indent_hover: T.IMAGE - text_edit_box_label: T.LABEL - text_edit_box_place_holder_label: T.LABEL - text_magnifying_glass_image: T.IMAGE - text_close_X_button_image: T.IMAGE - text_close_X_button_image_hover: T.IMAGE - clear_text_button: T.BUTTON - "clear_text_button/default": T.IMAGE - "clear_text_button/hover": T.IMAGE - "clear_text_button/pressed": T.IMAGE - text_edit_box: T.EDIT_BOX - "text_edit_box/centering_panel": T.PANEL - "text_edit_box/centering_panel/clipper_panel": T.PANEL - "text_edit_box/centering_panel/clipper_panel/magnifying_glass": T.IMAGE - "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel": T.PANEL - "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel/clear_text_button": T.BUTTON - "text_edit_box/centering_panel/clipper_panel/visibility_panel": T.PANEL - "text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control": T.UNKNOWN - "text_edit_box/locked": T.PANEL - "text_edit_box/locked/edit_box_indent": T.UNKNOWN - "text_edit_box/default": T.UNKNOWN - "text_edit_box/hover": T.UNKNOWN - "text_edit_box/pressed": T.UNKNOWN - text_edit_box_scrolling_content: T.INPUT_PANEL - scrollable_text_edit_box: T.EDIT_BOX - "scrollable_text_edit_box/centering_panel": T.PANEL - "scrollable_text_edit_box/centering_panel/clipper_panel": T.PANEL - "scrollable_text_edit_box/centering_panel/clipper_panel/text_edit_text_control": T.PANEL - "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel": T.PANEL - "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control": T.UNKNOWN - "scrollable_text_edit_box/locked": T.PANEL - "scrollable_text_edit_box/locked/edit_box_indent": T.UNKNOWN - "scrollable_text_edit_box/default": T.UNKNOWN - "scrollable_text_edit_box/hover": T.UNKNOWN - "scrollable_text_edit_box/pressed": T.UNKNOWN - transparent_text_edit_box: T.EDIT_BOX - "transparent_text_edit_box/clipper_panel": T.PANEL - "transparent_text_edit_box/clipper_panel/visibility_panel": T.PANEL - "transparent_text_edit_box/clipper_panel/visibility_panel/place_holder_control": T.UNKNOWN - "transparent_text_edit_box/locked": T.PANEL - "transparent_text_edit_box/locked/edit_box_indent": T.UNKNOWN - "transparent_text_edit_box/default": T.UNKNOWN - "transparent_text_edit_box/hover": T.UNKNOWN - "transparent_text_edit_box/pressed": T.UNKNOWN - multiline_text_edit_box: T.EDIT_BOX - scrollable_multiline_text_edit_box: T.EDIT_BOX - dirt_background: T.IMAGE - portal_background: T.IMAGE - empty_progress_bar: T.IMAGE - filled_progress_bar: T.IMAGE - empty_progress_bar_beveled: T.IMAGE - progress_bar_beveled_overlay: T.IMAGE - filled_progress_bar_for_collections: T.IMAGE - progress_bar: T.PANEL - "progress_bar/empty_progress_bar": T.IMAGE - "progress_bar/filled_progress_bar": T.IMAGE - progress_bar_for_collections: T.PANEL - "progress_bar_for_collections/empty_progress_bar": T.IMAGE - "progress_bar_for_collections/filled_progress_bar_for_collections": T.IMAGE - horizontal_divider: T.PANEL - "horizontal_divider/divider_image": T.IMAGE - vertical_divider: T.PANEL - "vertical_divider/divider_image": T.IMAGE - underline: T.IMAGE - single_line_label: T.PANEL - "single_line_label/label_panel": T.LABEL - "single_line_label/label_panel/0": T.UNKNOWN - gamepad_helper_icon_description: T.LABEL - gamepad_helper_icon_image: T.IMAGE - keyboard_helper_icon_image: T.IMAGE - gamepad_helper: T.STACK_PANEL - "gamepad_helper/icon_panel": T.PANEL - "gamepad_helper/description_panel": T.PANEL - "gamepad_helper/description_panel/desc": T.UNKNOWN - gamepad_helpers: T.STACK_PANEL - gamepad_helpers_a_and_b: T.STACK_PANEL - "gamepad_helpers_a_and_b/gamepad_helper_a": T.STACK_PANEL - "gamepad_helpers_a_and_b/control": T.PANEL - "gamepad_helpers_a_and_b/gamepad_helper_b": T.STACK_PANEL - container_gamepad_helpers: T.STACK_PANEL - "container_gamepad_helpers/fill_panel": T.PANEL - "container_gamepad_helpers/buttons": T.STACK_PANEL - "container_gamepad_helpers/buttons/gamepad_helper_x": T.UNKNOWN - "container_gamepad_helpers/buttons/gamepad_helper_a": T.UNKNOWN - "container_gamepad_helpers/buttons/gamepad_helper_y": T.UNKNOWN - "container_gamepad_helpers/buttons/gamepad_helper_b": T.UNKNOWN - "container_gamepad_helpers/buffer_panel_right": T.PANEL - tabs_left_gamepad_helpers: T.PANEL - "tabs_left_gamepad_helpers/gamepad_helper_left_bumper": T.STACK_PANEL - "tabs_left_gamepad_helpers/gamepad_helper_left_trigger": T.STACK_PANEL - tabs_right_gamepad_helpers: T.PANEL - "tabs_right_gamepad_helpers/gamepad_helper_right_bumper": T.STACK_PANEL - "tabs_right_gamepad_helpers/gamepad_helper_right_trigger": T.STACK_PANEL - keyboard_helper_description: T.LABEL - keyboard_helper: T.STACK_PANEL - "keyboard_helper/image_centerer": T.PANEL - "keyboard_helper/image_centerer/image": T.IMAGE - "keyboard_helper/image_centerer/image/keyboard_character": T.LABEL - "keyboard_helper/centerer": T.PANEL - "keyboard_helper/centerer/desc": T.UNKNOWN - keyboard_helpers: T.PANEL - gamepad_icon_button: T.IMAGE - gamepad_helper_start: T.STACK_PANEL - gamepad_helper_a: T.STACK_PANEL - gamepad_helper_a_14: T.STACK_PANEL - gamepad_helper_b: T.STACK_PANEL - gamepad_helper_b_14: T.STACK_PANEL - gamepad_helper_x: T.STACK_PANEL - gamepad_helper_x_14: T.STACK_PANEL - gamepad_helper_y: T.STACK_PANEL - gamepad_helper_y_14: T.STACK_PANEL - keyboard_helper_keys: T.STACK_PANEL - gamepad_helper_left_trigger: T.STACK_PANEL - gamepad_helper_right_trigger: T.STACK_PANEL - keyboard_left_trigger: T.STACK_PANEL - keyboard_right_trigger: T.STACK_PANEL - gamepad_icon_dpad: T.IMAGE - gamepad_helper_dpad: T.STACK_PANEL - gamepad_helper_dpad_down: T.STACK_PANEL - gamepad_helper_dpad_left: T.STACK_PANEL - gamepad_helper_dpad_right: T.STACK_PANEL - gamepad_helper_dpad_up: T.STACK_PANEL - gamepad_icon_thumbstick: T.IMAGE - gamepad_helper_thumbstick: T.STACK_PANEL - gamepad_helper_thumbstick_right: T.STACK_PANEL - gamepad_helper_thumbstick_left: T.STACK_PANEL - gamepad_helper_left_bumper: T.STACK_PANEL - gamepad_helper_right_bumper: T.STACK_PANEL - dialog_background_common: T.IMAGE - dialog_background_hollow_common: T.IMAGE - "dialog_background_hollow_common/control": T.IMAGE - dialog_background_opaque: T.IMAGE - dialog_background_hollow_1: T.IMAGE - dialog_background_hollow_2: T.IMAGE - dialog_background_hollow_3: T.IMAGE - dialog_background_hollow_4: T.IMAGE - dialog_background_hollow_4_thin: T.IMAGE - dialog_background_hollow_5: T.IMAGE - dialog_background_hollow_6: T.IMAGE - dialog_background_hollow_7: T.IMAGE - dialog_background_hollow_8: T.IMAGE - dialog_divider: T.IMAGE - normal_button: T.IMAGE - normal_stroke_button: T.IMAGE - section_heading_label: T.LABEL - section_divider: T.STACK_PANEL - "section_divider/padding1": T.PANEL - "section_divider/divider_parent": T.PANEL - "section_divider/divider_parent/divider": T.IMAGE - "section_divider/padding2": T.PANEL - minecraftTenLabel: T.LABEL - close_button_image: T.IMAGE - close_button_panel: T.PANEL - "close_button_panel/close_button_image": T.IMAGE - close_button: T.BUTTON - "close_button/default": T.PANEL - "close_button/hover": T.PANEL - "close_button/pressed": T.PANEL - close_button_grey_bg: T.BUTTON - "close_button_grey_bg/default": T.PANEL - "close_button_grey_bg/hover": T.PANEL - "close_button_grey_bg/pressed": T.PANEL - close_button_high_contrast: T.BUTTON - "close_button_high_contrast/background": T.IMAGE - "close_button_high_contrast/default": T.PANEL - "close_button_high_contrast/hover": T.PANEL - "close_button_high_contrast/pressed": T.PANEL - compact_close_button: T.BUTTON - "compact_close_button/default": T.PANEL - "compact_close_button/hover": T.PANEL - "compact_close_button/pressed": T.PANEL - light_close_button: T.BUTTON - "light_close_button/default": T.PANEL - "light_close_button/hover": T.PANEL - "light_close_button/pressed": T.PANEL - help_button: T.BUTTON - "help_button/default": T.IMAGE - "help_button/hover": T.IMAGE - "help_button/pressed": T.IMAGE - cell_image: T.IMAGE - cell_image_selected: T.IMAGE - cell_image_panel: T.PANEL - "cell_image_panel/cell_image": T.IMAGE - "cell_image_panel/cell_image_selected": T.IMAGE - cell_overlay: T.UNKNOWN - highlight_slot: T.IMAGE - white_border_slot: T.IMAGE - progressive_select_progress_bar: T.PANEL - "progressive_select_progress_bar/stack_progress_bar_down": T.IMAGE - "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_progress_bar": T.IMAGE - "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_text": T.LABEL - stack_splitting_overlay: T.PANEL - "stack_splitting_overlay/classic_stack_splitting_overlay": T.PANEL - "stack_splitting_overlay/classic_stack_splitting_overlay/stack_splitting_bar": T.PANEL - "stack_splitting_overlay/pocket_stack_splitting_overlay": T.PANEL - "stack_splitting_overlay/pocket_stack_splitting_overlay/stack_splitting_bar": T.PANEL - inventory_hold_icon_holding: T.PANEL - "inventory_hold_icon_holding/progressive_down": T.PANEL - "inventory_hold_icon_holding/progressive_up": T.PANEL - "inventory_hold_icon_holding/progressive_left_side": T.PANEL - "inventory_hold_icon_holding/progressive_right_side": T.PANEL - inventory_hold_icon_release: T.CUSTOM - highlight_slot_panel: T.PANEL - "highlight_slot_panel/highlight": T.IMAGE - "highlight_slot_panel/highlight/hover_text": T.CUSTOM - "highlight_slot_panel/white_border": T.IMAGE - pocket_ui_highlight_slot: T.IMAGE - hover_text: T.CUSTOM - screen_background: T.IMAGE - stack_count_label: T.LABEL - durability_bar: T.CUSTOM - durability_bar_grabbed: T.CUSTOM - storage_bar: T.CUSTOM - storage_bar_grabbed: T.CUSTOM - item_renderer: T.CUSTOM - filtered_item_renderer: T.CUSTOM - flying_item_renderer: T.CUSTOM - selected_item_details: T.PANEL - "selected_item_details/item_panel_image": T.IMAGE - item_panel_image: T.IMAGE - "item_panel_image/item_text_label": T.LABEL - item_text_label: T.LABEL - selected_item_details_factory: T.FACTORY - item_lock_notification: T.PANEL - "item_lock_notification/notification_background_image": T.IMAGE - "item_lock_notification/notification_background_image/notification_text_label": T.LABEL - item_lock_notification_factory: T.FACTORY - empty_panel_size_y_0: T.PANEL - scroll_background_and_viewport: T.PANEL - "scroll_background_and_viewport/background": T.UNKNOWN - "scroll_background_and_viewport/scrolling_view_port": T.PANEL - "scroll_background_and_viewport/scrolling_view_port/scrolling_content": T.UNKNOWN - scroll_bar_and_track: T.PANEL - "scroll_bar_and_track/stack_panel": T.STACK_PANEL - "scroll_bar_and_track/stack_panel/empty_panel_0": T.PANEL - "scroll_bar_and_track/stack_panel/panel": T.PANEL - "scroll_bar_and_track/stack_panel/panel/centered_panel": T.PANEL - "scroll_bar_and_track/stack_panel/panel/centered_panel/track": T.SCROLL_TRACK - "scroll_bar_and_track/stack_panel/panel/centered_panel/scroll_box": T.PANEL - "scroll_bar_and_track/stack_panel/empty_panel_1": T.PANEL - scroll_view_control: T.SCROLL_VIEW - "scroll_view_control/stack_panel": T.STACK_PANEL - "scroll_view_control/stack_panel/background_and_viewport": T.PANEL - "scroll_view_control/stack_panel/bar_and_track": T.PANEL - "scroll_view_control/panel": T.PANEL - "scroll_view_control/panel/background_and_viewport": T.PANEL - "scroll_view_control/panel/bar_and_track": T.PANEL - scrollbar_track: T.SCROLL_TRACK - "scrollbar_track/bar_indent": T.UNKNOWN - scroll_box: T.PANEL - "scroll_box/box": T.SCROLLBAR_BOX - "scroll_box/box/mouse_box": T.UNKNOWN - "scroll_box/box/touch_box": T.UNKNOWN - scroll_box_indent: T.IMAGE - scrollbar_box_image: T.IMAGE - touch_scrollbar_box_image: T.IMAGE - new_touch_scrollbar_box_image: T.IMAGE - container_touch_scrollbar_box_image: T.IMAGE - scroll_indent_image: T.IMAGE - scrolling_panel_base: T.INPUT_PANEL - scrolling_panel: T.PANEL - "scrolling_panel/scroll_touch": T.INPUT_PANEL - "scrolling_panel/scroll_mouse": T.INPUT_PANEL - scrolling_panel_with_offset: T.PANEL - container_slot_button_prototype: T.BUTTON - "container_slot_button_prototype/hover": T.UNKNOWN - no_coalesce_container_slot_button: T.BUTTON - pocket_ui_container_slot: T.BUTTON - "pocket_ui_container_slot/hover": T.PANEL - "pocket_ui_container_slot/hover/highlight_square": T.IMAGE - slot_selected: T.IMAGE - "slot_selected/progress_bar_release": T.CUSTOM - container_item: T.INPUT_PANEL - "container_item/item_cell": T.PANEL - "container_item/item_cell/item": T.PANEL - "container_item/item_cell/item/stack_count_label": T.LABEL - "container_item/item_cell/durability_bar": T.CUSTOM - "container_item/item_cell/storage_bar": T.CUSTOM - "container_item/item_cell_overlay_ref": T.UNKNOWN - "container_item/item_selected_image": T.IMAGE - "container_item/item_button_ref": T.UNKNOWN - "container_item/container_item_lock_overlay": T.PANEL - "container_item/item_lock_cell_image": T.IMAGE - "container_item/bundle_slot_panel": T.PANEL - pocket_ui_container_item: T.INPUT_PANEL - pocket_ui_large_container_item: T.INPUT_PANEL - container_item_lock_yellow: T.IMAGE - container_item_lock_red: T.IMAGE - container_item_lock_overlay: T.PANEL - "container_item_lock_overlay/container_item_lock_yellow": T.IMAGE - "container_item_lock_overlay/container_item_lock_red": T.IMAGE - item_lock_cell_image: T.IMAGE - container_grid: T.GRID - pocket_container_grid: T.GRID - container_scroll_box_image: T.IMAGE - container_scroll_bar_side_rails: T.IMAGE - container_scrollbar_track: T.PANEL - "container_scrollbar_track/rails": T.IMAGE - container_scroll_background_image: T.IMAGE - container_scroll_panel: T.PANEL - pocket_ui_highlight_selected_slot: T.IMAGE - pocket_hotbar_panel: T.INPUT_PANEL - "pocket_hotbar_panel/bg": T.PANEL - "pocket_hotbar_panel/hotbar_grid": T.GRID - drop_item_panel: T.INPUT_PANEL - pocket_hotbar_and_content_panels: T.STACK_PANEL - "pocket_hotbar_and_content_panels/pocket_content_panels": T.STACK_PANEL - "pocket_hotbar_and_content_panels/hotbar_drop_item_panel": T.INPUT_PANEL - "pocket_hotbar_and_content_panels/hotbar_drop_item_panel/pocket_hotbar_panel": T.INPUT_PANEL - blank_pocket_content_panel: T.PANEL - pocket_content_panels: T.STACK_PANEL - "pocket_content_panels/left_panel": T.UNKNOWN - "pocket_content_panels/offset_panel": T.INPUT_PANEL - "pocket_content_panels/offset_panel/center_bg": T.IMAGE - "pocket_content_panels/right_panel": T.UNKNOWN - inventory_selected_icon: T.CUSTOM - inventory_selected_stack_size_text: T.LABEL - inventory_hold_icon: T.CUSTOM - inventory_selected_item_lock_overlay: T.PANEL - "inventory_selected_item_lock_overlay/container_item_lock_yellow": T.IMAGE - "inventory_selected_item_lock_overlay/container_item_lock_red": T.IMAGE - inventory_icon_panel: T.PANEL - "inventory_icon_panel/selected_item_icon": T.CUSTOM - "inventory_icon_panel/selected_stack_size_text": T.LABEL - "inventory_icon_panel/selected_item_lock_overlay": T.PANEL - "inventory_icon_panel/hover_text": T.CUSTOM - inventory_selected_icon_button: T.BUTTON - "inventory_selected_icon_button/default": T.PANEL - "inventory_selected_icon_button/pressed": T.PANEL - "inventory_selected_icon_button/hover": T.PANEL - "inventory_selected_icon_button/durability_bar_grabbed": T.CUSTOM - "inventory_selected_icon_button/storage_bar_grabbed": T.CUSTOM - inventory_take_progress_icon_button: T.BUTTON - "inventory_take_progress_icon_button/default": T.CUSTOM - "inventory_take_progress_icon_button/pressed": T.CUSTOM - "inventory_take_progress_icon_button/hover": T.CUSTOM - gamepad_cursor_image: T.IMAGE - gamepad_cursor_button: T.BUTTON - "gamepad_cursor_button/default": T.IMAGE - "gamepad_cursor_button/pressed": T.IMAGE - "gamepad_cursor_button/hover": T.IMAGE - grid_item_for_inventory: T.INPUT_PANEL - grid_item_for_hotbar: T.INPUT_PANEL - hotbar_grid_template: T.GRID - inventory_panel: T.PANEL - "inventory_panel/inventory_grid": T.GRID - inventory_panel_bottom_half: T.PANEL - "inventory_panel_bottom_half/inventory_panel": T.PANEL - inventory_panel_bottom_half_with_label: T.PANEL - "inventory_panel_bottom_half_with_label/inventory_panel": T.PANEL - "inventory_panel_bottom_half_with_label/inventory_label": T.LABEL - common_panel: T.PANEL - "common_panel/bg_image": T.UNKNOWN - "common_panel/dialog_divider": T.IMAGE - "common_panel/close_button_holder": T.PANEL - "common_panel/close_button_holder/close": T.BUTTON - "common_panel/close_button_holder/compact_close": T.BUTTON - root_panel: T.INPUT_PANEL - input_panel: T.INPUT_PANEL - base_screen: T.SCREEN - "base_screen/variables_button_mappings_and_controls": T.INPUT_PANEL - "base_screen/variables_button_mappings_and_controls/bg_no_safezone_screen_panel": T.UNKNOWN - "base_screen/variables_button_mappings_and_controls/safezone_screen_matrix": T.STACK_PANEL - "base_screen/variables_button_mappings_and_controls/screen_background": T.PANEL - "base_screen/loading_bars_background": T.IMAGE - "base_screen/loading_bars_background/loading_bars": T.IMAGE - render_below_base_screen: T.SCREEN - safezone_buffer: T.PANEL - top_safezone_vertical_buffer: T.PANEL - bottom_safezone_vertical_buffer: T.PANEL - left_safezone_horizontal_buffer: T.PANEL - right_safezone_horizontal_buffer: T.PANEL - safe_zone_stack: T.STACK_PANEL - "safe_zone_stack/top_outer_control": T.UNKNOWN - "safe_zone_stack/top_inner_control": T.UNKNOWN - "safe_zone_stack/header_bar": T.UNKNOWN - safezone_inner_matrix: T.STACK_PANEL - "safezone_inner_matrix/outer_top": T.PANEL - "safezone_inner_matrix/outer_top/top_side_control": T.UNKNOWN - "safezone_inner_matrix/inner_top": T.PANEL - "safezone_inner_matrix/inner_top/top_side_control": T.UNKNOWN - "safezone_inner_matrix/safezone_screen_panel": T.PANEL - "safezone_inner_matrix/inner_bottom": T.PANEL - "safezone_inner_matrix/outer_bottom": T.PANEL - safezone_outer_matrix: T.STACK_PANEL - "safezone_outer_matrix/outer_left": T.PANEL - "safezone_outer_matrix/outer_left/outer_left_safe_zone_stack": T.STACK_PANEL - "safezone_outer_matrix/inner_left": T.PANEL - "safezone_outer_matrix/inner_left/inner_left_safe_zone_stack": T.STACK_PANEL - "safezone_outer_matrix/inner_matrix": T.STACK_PANEL - "safezone_outer_matrix/inner_right": T.PANEL - "safezone_outer_matrix/inner_right/inner_right_safe_zone_stack": T.STACK_PANEL - "safezone_outer_matrix/outer_right": T.PANEL - "safezone_outer_matrix/outer_right/outer_right_safe_zone_stack": T.STACK_PANEL - bundle_tooltip_wrapper: T.PANEL - "bundle_tooltip_wrapper/bundle_tooltip_factory_wrapper": T.PANEL - "bundle_tooltip_wrapper/bundle_touch_tooltip": T.PANEL - screen_panel: T.PANEL - "screen_panel/root_screen_panel": T.UNKNOWN - "screen_panel/additional_screen_content": T.UNKNOWN - "screen_panel/popup_dialog_factory": T.FACTORY - "screen_panel/bundle_hover_tooltip": T.PANEL - base_screen_empty_panel: T.PANEL - modal_screen: T.SCREEN - realms_error_modal_screen: T.SCREEN - modal_area_panel_base: T.INPUT_PANEL - inactive_modal_pane_fade: T.IMAGE - inventory_screen_common: T.SCREEN - fullscreen_header: T.STACK_PANEL - "fullscreen_header/top_bar": T.IMAGE - "fullscreen_header/top_bar/title_stack_panel": T.STACK_PANEL - "fullscreen_header/top_bar/title_stack_panel/padding1": T.PANEL - "fullscreen_header/top_bar/title_stack_panel/back_button_content_panel": T.PANEL - "fullscreen_header/top_bar/title_stack_panel/padding2": T.PANEL - "fullscreen_header/child_control": T.UNKNOWN - back_content_panel: T.PANEL - "back_content_panel/back_button": T.STACK_PANEL - top_bar: T.IMAGE - tooltip_background: T.IMAGE - tooltip_button_content: T.IMAGE - "tooltip_button_content/tooltip_panel_content": T.UNKNOWN - static_tooltip_popup_with_image_and_text: T.IMAGE - "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel": T.STACK_PANEL - "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel": T.PANEL - "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel": T.PANEL - "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel/0": T.UNKNOWN - "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding": T.PANEL - "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text": T.LABEL - "static_tooltip_popup_with_image_and_text/tooltip_chevron": T.IMAGE - dynamic_tooltip_popup_with_custom_content: T.IMAGE - "dynamic_tooltip_popup_with_custom_content/tooltip_content": T.UNKNOWN - "dynamic_tooltip_popup_with_custom_content/tooltip_chevron": T.IMAGE - dynamic_tooltip_popup_with_image_and_text: T.IMAGE - "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel": T.STACK_PANEL - "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel": T.PANEL - "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel": T.PANEL - "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel/0": T.UNKNOWN - "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding": T.PANEL - "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text": T.LABEL - "dynamic_tooltip_popup_with_image_and_text/tooltip_chevron": T.IMAGE - dynamic_tooltip_left: T.IMAGE - dynamic_tooltip_below: T.IMAGE - dynamic_custom_tooltip_below: T.IMAGE - dynamic_tooltip: T.PANEL - "dynamic_tooltip/above": T.PANEL - "dynamic_tooltip/above/content": T.IMAGE - "dynamic_tooltip/below": T.PANEL - "dynamic_tooltip/below/content": T.IMAGE - legacy_pocket_close_button_default: T.IMAGE - legacy_pocket_close_button_pressed: T.IMAGE - legacy_pocket_close_button: T.BUTTON - "legacy_pocket_close_button/default": T.IMAGE - "legacy_pocket_close_button/hover": T.IMAGE - "legacy_pocket_close_button/pressed": T.IMAGE - info_icon: T.IMAGE - error_glyph: T.IMAGE - service_repo_image_panel: T.PANEL - "service_repo_image_panel/service_repo_image": T.IMAGE - "service_repo_image_panel/progress_loading": T.PANEL - common_cycler: T.UNKNOWN - image_cycler: T.IMAGE_CYCLER - text_cycler: T.LABEL_CYCLER - squaring_panel: T.PANEL - "squaring_panel/squaring_panel": T.PANEL - "squaring_panel/squaring_panel/squaring_panel_content": T.UNKNOWN + "empty_panel": T.PANEL, + "vertical_padding_8px": T.PANEL, + "horizontal_padding_2px": T.PANEL, + "empty_image": T.IMAGE, + "horizontal_stack_panel": T.STACK_PANEL, + "vertical_stack_panel": T.STACK_PANEL, + "vert_stack_centering_panel": T.PANEL, + "vert_stack_centering_panel/stack_content": T.UNKNOWN, + "button": T.BUTTON, + "screen_header_title_panel": T.PANEL, + "screen_header_title_panel/store_header_title": T.LABEL, + "back_button": T.BUTTON, + "back_title_button": T.STACK_PANEL, + "back_title_button/panel1": T.PANEL, + "back_title_button/panel1/button": T.BUTTON, + "back_title_button/padding1": T.PANEL, + "back_title_button/panel2": T.PANEL, + "back_title_button/panel2/label": T.LABEL, + "chevron_image": T.IMAGE, + "back_button_content": T.STACK_PANEL, + "back_button_content/chevron_panel": T.PANEL, + "back_button_content/chevron_panel/left_chevron": T.IMAGE, + "back_button_content/padding1": T.PANEL, + "back_button_content/label_panel": T.PANEL, + "back_button_content/label_panel/label": T.LABEL, + "label_hover": T.PANEL, + "label_hover/hover": T.IMAGE, + "tts_activate_sibling": T.BUTTON, + "tts_activate_sibling/default": T.PANEL, + "tts_activate_sibling/pressed": T.PANEL, + "tts_activate_sibling/hover": T.PANEL, + "back_title_button_content": T.STACK_PANEL, + "back_title_button_content/padding1": T.PANEL, + "back_title_button_content/chevron_panel": T.PANEL, + "back_title_button_content/chevron_panel/left_chevron": T.IMAGE, + "back_title_button_content/padding2": T.PANEL, + "toggle_visuals": T.PANEL, + "toggle_visuals/unchecked": T.UNKNOWN, + "toggle_visuals/checked": T.UNKNOWN, + "toggle_visuals/unchecked_hover": T.UNKNOWN, + "toggle_visuals/checked_hover": T.UNKNOWN, + "toggle_visuals/unchecked_locked": T.UNKNOWN, + "toggle_visuals/checked_locked": T.UNKNOWN, + "toggle_visuals/unchecked_locked_hover": T.UNKNOWN, + "toggle_visuals/checked_locked_hover": T.UNKNOWN, + "toggle": T.PANEL, + "radio_toggle": T.PANEL, + "checkbox": T.PANEL, + "checkbox_image": T.IMAGE, + "checked_image": T.IMAGE, + "unchecked_image": T.IMAGE, + "checked_hover_image": T.IMAGE, + "unchecked_hover_image": T.IMAGE, + "rotating_text": T.CAROUSEL_LABEL, + "button_text": T.LABEL, + "toggle_state_template": T.IMAGE, + "new_button_label": T.LABEL, + "checkbox_checked_state": T.IMAGE, + "checkbox_unchecked_state": T.IMAGE, + "checkbox_checked_hover_state": T.IMAGE, + "checkbox_unchecked_hover_state": T.IMAGE, + "checkbox_checked_locked_state": T.IMAGE, + "checkbox_unchecked_locked_state": T.IMAGE, + "radio_toggle_checked_state": T.IMAGE, + "radio_toggle_unchecked_state": T.IMAGE, + "radio_toggle_checked_hover_state": T.IMAGE, + "radio_toggle_unchecked_hover_state": T.IMAGE, + "radio_toggle_checked_locked_state": T.IMAGE, + "radio_toggle_unchecked_locked_state": T.IMAGE, + "slider_button_state": T.IMAGE, + "slider_button_layout": T.IMAGE, + "slider_button_hover_layout": T.IMAGE, + "slider_button_locked_layout": T.IMAGE, + "slider_button_indent_layout": T.IMAGE, + "slider_box": T.SLIDER_BOX, + "slider_box/default": T.UNKNOWN, + "slider_box/hover": T.UNKNOWN, + "slider_box/indent": T.UNKNOWN, + "slider_box/locked": T.UNKNOWN, + "slider_box/locked/transparent_grey": T.IMAGE, + "slider_background": T.IMAGE, + "slider_background_hover": T.IMAGE, + "slider_progress": T.IMAGE, + "slider_progress_hover": T.IMAGE, + "slider_border": T.IMAGE, + "slider_bar_default": T.IMAGE, + "slider_bar_default/sizing_panel": T.PANEL, + "slider_bar_default/transparent_grey": T.IMAGE, + "slider_bar_hover": T.IMAGE, + "slider_step": T.IMAGE, + "slider_step_hover": T.IMAGE, + "slider_step_progress": T.IMAGE, + "slider_step_progress_hover": T.IMAGE, + "slider": T.SLIDER, + "slider/slider_box": T.SLIDER_BOX, + "slider/slider_bar_default": T.IMAGE, + "slider/slider_bar_hover": T.IMAGE, + "dropdown_background": T.IMAGE, + "dropdown": T.PANEL, + "dropdown/dropdown_content": T.INPUT_PANEL, + "dropdown/dropdown_content/0": T.UNKNOWN, + "dropdown_no_scrollpanel": T.PANEL, + "square_image_border_white": T.IMAGE, + "focus_border_white": T.IMAGE, + "focus_border_yellow": T.IMAGE, + "focus_border_black": T.IMAGE, + "non_interact_focus_border": T.IMAGE, + "non_interact_focus_border_button": T.BUTTON, + "non_interact_focus_border_button/default": T.UNKNOWN, + "non_interact_focus_border_button/hover": T.UNKNOWN, + "non_interact_focus_border_button/pressed": T.UNKNOWN, + "non_interact_focus_border_button/content": T.UNKNOWN, + "tts_label_focus_wrapper": T.PANEL, + "tts_label_focus_wrapper/label": T.UNKNOWN, + "tts_label_focus_wrapper/focus_border": T.BUTTON, + "default_indent": T.IMAGE, + "edit_box_indent": T.IMAGE, + "edit_box_indent_hover": T.IMAGE, + "transparent_edit_box_indent": T.IMAGE, + "transparent_edit_box_indent_hover": T.IMAGE, + "text_edit_box_label": T.LABEL, + "text_edit_box_place_holder_label": T.LABEL, + "text_magnifying_glass_image": T.IMAGE, + "text_close_X_button_image": T.IMAGE, + "text_close_X_button_image_hover": T.IMAGE, + "clear_text_button": T.BUTTON, + "clear_text_button/default": T.IMAGE, + "clear_text_button/hover": T.IMAGE, + "clear_text_button/pressed": T.IMAGE, + "text_edit_box": T.EDIT_BOX, + "text_edit_box/centering_panel": T.PANEL, + "text_edit_box/centering_panel/clipper_panel": T.PANEL, + "text_edit_box/centering_panel/clipper_panel/magnifying_glass": T.IMAGE, + "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel": T.PANEL, + "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel/clear_text_button": T.BUTTON, + "text_edit_box/centering_panel/clipper_panel/visibility_panel": T.PANEL, + "text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control": T.UNKNOWN, + "text_edit_box/locked": T.PANEL, + "text_edit_box/locked/edit_box_indent": T.UNKNOWN, + "text_edit_box/default": T.UNKNOWN, + "text_edit_box/hover": T.UNKNOWN, + "text_edit_box/pressed": T.UNKNOWN, + "text_edit_box_scrolling_content": T.INPUT_PANEL, + "scrollable_text_edit_box": T.EDIT_BOX, + "scrollable_text_edit_box/centering_panel": T.PANEL, + "scrollable_text_edit_box/centering_panel/clipper_panel": T.PANEL, + "scrollable_text_edit_box/centering_panel/clipper_panel/text_edit_text_control": T.PANEL, + "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel": T.PANEL, + "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control": T.UNKNOWN, + "scrollable_text_edit_box/locked": T.PANEL, + "scrollable_text_edit_box/locked/edit_box_indent": T.UNKNOWN, + "scrollable_text_edit_box/default": T.UNKNOWN, + "scrollable_text_edit_box/hover": T.UNKNOWN, + "scrollable_text_edit_box/pressed": T.UNKNOWN, + "transparent_text_edit_box": T.EDIT_BOX, + "transparent_text_edit_box/clipper_panel": T.PANEL, + "transparent_text_edit_box/clipper_panel/visibility_panel": T.PANEL, + "transparent_text_edit_box/clipper_panel/visibility_panel/place_holder_control": T.UNKNOWN, + "transparent_text_edit_box/locked": T.PANEL, + "transparent_text_edit_box/locked/edit_box_indent": T.UNKNOWN, + "transparent_text_edit_box/default": T.UNKNOWN, + "transparent_text_edit_box/hover": T.UNKNOWN, + "transparent_text_edit_box/pressed": T.UNKNOWN, + "multiline_text_edit_box": T.EDIT_BOX, + "scrollable_multiline_text_edit_box": T.EDIT_BOX, + "dirt_background": T.IMAGE, + "portal_background": T.IMAGE, + "empty_progress_bar": T.IMAGE, + "filled_progress_bar": T.IMAGE, + "empty_progress_bar_beveled": T.IMAGE, + "progress_bar_beveled_overlay": T.IMAGE, + "filled_progress_bar_for_collections": T.IMAGE, + "progress_bar": T.PANEL, + "progress_bar/empty_progress_bar": T.IMAGE, + "progress_bar/filled_progress_bar": T.IMAGE, + "progress_bar_for_collections": T.PANEL, + "progress_bar_for_collections/empty_progress_bar": T.IMAGE, + "progress_bar_for_collections/filled_progress_bar_for_collections": T.IMAGE, + "horizontal_divider": T.PANEL, + "horizontal_divider/divider_image": T.IMAGE, + "vertical_divider": T.PANEL, + "vertical_divider/divider_image": T.IMAGE, + "underline": T.IMAGE, + "single_line_label": T.PANEL, + "single_line_label/label_panel": T.LABEL, + "single_line_label/label_panel/0": T.UNKNOWN, + "gamepad_helper_icon_description": T.LABEL, + "gamepad_helper_icon_image": T.IMAGE, + "keyboard_helper_icon_image": T.IMAGE, + "gamepad_helper": T.STACK_PANEL, + "gamepad_helper/icon_panel": T.PANEL, + "gamepad_helper/description_panel": T.PANEL, + "gamepad_helper/description_panel/desc": T.UNKNOWN, + "gamepad_helpers": T.STACK_PANEL, + "gamepad_helpers_a_and_b": T.STACK_PANEL, + "gamepad_helpers_a_and_b/gamepad_helper_a": T.STACK_PANEL, + "gamepad_helpers_a_and_b/control": T.PANEL, + "gamepad_helpers_a_and_b/gamepad_helper_b": T.STACK_PANEL, + "container_gamepad_helpers": T.STACK_PANEL, + "container_gamepad_helpers/fill_panel": T.PANEL, + "container_gamepad_helpers/buttons": T.STACK_PANEL, + "container_gamepad_helpers/buttons/gamepad_helper_x": T.UNKNOWN, + "container_gamepad_helpers/buttons/gamepad_helper_a": T.UNKNOWN, + "container_gamepad_helpers/buttons/gamepad_helper_y": T.UNKNOWN, + "container_gamepad_helpers/buttons/gamepad_helper_b": T.UNKNOWN, + "container_gamepad_helpers/buffer_panel_right": T.PANEL, + "tabs_left_gamepad_helpers": T.PANEL, + "tabs_left_gamepad_helpers/gamepad_helper_left_bumper": T.STACK_PANEL, + "tabs_left_gamepad_helpers/gamepad_helper_left_trigger": T.STACK_PANEL, + "tabs_right_gamepad_helpers": T.PANEL, + "tabs_right_gamepad_helpers/gamepad_helper_right_bumper": T.STACK_PANEL, + "tabs_right_gamepad_helpers/gamepad_helper_right_trigger": T.STACK_PANEL, + "keyboard_helper_description": T.LABEL, + "keyboard_helper": T.STACK_PANEL, + "keyboard_helper/image_centerer": T.PANEL, + "keyboard_helper/image_centerer/image": T.IMAGE, + "keyboard_helper/image_centerer/image/keyboard_character": T.LABEL, + "keyboard_helper/centerer": T.PANEL, + "keyboard_helper/centerer/desc": T.UNKNOWN, + "keyboard_helpers": T.PANEL, + "gamepad_icon_button": T.IMAGE, + "gamepad_helper_start": T.STACK_PANEL, + "gamepad_helper_a": T.STACK_PANEL, + "gamepad_helper_a_14": T.STACK_PANEL, + "gamepad_helper_b": T.STACK_PANEL, + "gamepad_helper_b_14": T.STACK_PANEL, + "gamepad_helper_x": T.STACK_PANEL, + "gamepad_helper_x_14": T.STACK_PANEL, + "gamepad_helper_y": T.STACK_PANEL, + "gamepad_helper_y_14": T.STACK_PANEL, + "keyboard_helper_keys": T.STACK_PANEL, + "gamepad_helper_left_trigger": T.STACK_PANEL, + "gamepad_helper_right_trigger": T.STACK_PANEL, + "keyboard_left_trigger": T.STACK_PANEL, + "keyboard_right_trigger": T.STACK_PANEL, + "gamepad_icon_dpad": T.IMAGE, + "gamepad_helper_dpad": T.STACK_PANEL, + "gamepad_helper_dpad_down": T.STACK_PANEL, + "gamepad_helper_dpad_left": T.STACK_PANEL, + "gamepad_helper_dpad_right": T.STACK_PANEL, + "gamepad_helper_dpad_up": T.STACK_PANEL, + "gamepad_icon_thumbstick": T.IMAGE, + "gamepad_helper_thumbstick": T.STACK_PANEL, + "gamepad_helper_thumbstick_right": T.STACK_PANEL, + "gamepad_helper_thumbstick_left": T.STACK_PANEL, + "gamepad_helper_left_bumper": T.STACK_PANEL, + "gamepad_helper_right_bumper": T.STACK_PANEL, + "dialog_background_common": T.IMAGE, + "dialog_background_hollow_common": T.IMAGE, + "dialog_background_hollow_common/control": T.IMAGE, + "dialog_background_opaque": T.IMAGE, + "dialog_background_hollow_1": T.IMAGE, + "dialog_background_hollow_2": T.IMAGE, + "dialog_background_hollow_3": T.IMAGE, + "dialog_background_hollow_4": T.IMAGE, + "dialog_background_hollow_4_thin": T.IMAGE, + "dialog_background_hollow_5": T.IMAGE, + "dialog_background_hollow_6": T.IMAGE, + "dialog_background_hollow_7": T.IMAGE, + "dialog_background_hollow_8": T.IMAGE, + "dialog_divider": T.IMAGE, + "normal_button": T.IMAGE, + "normal_stroke_button": T.IMAGE, + "section_heading_label": T.LABEL, + "section_divider": T.STACK_PANEL, + "section_divider/padding1": T.PANEL, + "section_divider/divider_parent": T.PANEL, + "section_divider/divider_parent/divider": T.IMAGE, + "section_divider/padding2": T.PANEL, + "minecraftTenLabel": T.LABEL, + "close_button_image": T.IMAGE, + "close_button_panel": T.PANEL, + "close_button_panel/close_button_image": T.IMAGE, + "close_button": T.BUTTON, + "close_button/default": T.PANEL, + "close_button/hover": T.PANEL, + "close_button/pressed": T.PANEL, + "close_button_grey_bg": T.BUTTON, + "close_button_grey_bg/default": T.PANEL, + "close_button_grey_bg/hover": T.PANEL, + "close_button_grey_bg/pressed": T.PANEL, + "close_button_high_contrast": T.BUTTON, + "close_button_high_contrast/background": T.IMAGE, + "close_button_high_contrast/default": T.PANEL, + "close_button_high_contrast/hover": T.PANEL, + "close_button_high_contrast/pressed": T.PANEL, + "compact_close_button": T.BUTTON, + "compact_close_button/default": T.PANEL, + "compact_close_button/hover": T.PANEL, + "compact_close_button/pressed": T.PANEL, + "light_close_button": T.BUTTON, + "light_close_button/default": T.PANEL, + "light_close_button/hover": T.PANEL, + "light_close_button/pressed": T.PANEL, + "help_button": T.BUTTON, + "help_button/default": T.IMAGE, + "help_button/hover": T.IMAGE, + "help_button/pressed": T.IMAGE, + "cell_image": T.IMAGE, + "cell_image_selected": T.IMAGE, + "cell_image_panel": T.PANEL, + "cell_image_panel/cell_image": T.IMAGE, + "cell_image_panel/cell_image_selected": T.IMAGE, + "cell_overlay": T.UNKNOWN, + "highlight_slot": T.IMAGE, + "white_border_slot": T.IMAGE, + "progressive_select_progress_bar": T.PANEL, + "progressive_select_progress_bar/stack_progress_bar_down": T.IMAGE, + "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_progress_bar": T.IMAGE, + "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_text": T.LABEL, + "stack_splitting_overlay": T.PANEL, + "stack_splitting_overlay/classic_stack_splitting_overlay": T.PANEL, + "stack_splitting_overlay/classic_stack_splitting_overlay/stack_splitting_bar": T.PANEL, + "stack_splitting_overlay/pocket_stack_splitting_overlay": T.PANEL, + "stack_splitting_overlay/pocket_stack_splitting_overlay/stack_splitting_bar": T.PANEL, + "inventory_hold_icon_holding": T.PANEL, + "inventory_hold_icon_holding/progressive_down": T.PANEL, + "inventory_hold_icon_holding/progressive_up": T.PANEL, + "inventory_hold_icon_holding/progressive_left_side": T.PANEL, + "inventory_hold_icon_holding/progressive_right_side": T.PANEL, + "inventory_hold_icon_release": T.CUSTOM, + "highlight_slot_panel": T.PANEL, + "highlight_slot_panel/highlight": T.IMAGE, + "highlight_slot_panel/highlight/hover_text": T.CUSTOM, + "highlight_slot_panel/white_border": T.IMAGE, + "pocket_ui_highlight_slot": T.IMAGE, + "hover_text": T.CUSTOM, + "screen_background": T.IMAGE, + "stack_count_label": T.LABEL, + "durability_bar": T.CUSTOM, + "durability_bar_grabbed": T.CUSTOM, + "storage_bar": T.CUSTOM, + "storage_bar_grabbed": T.CUSTOM, + "item_renderer": T.CUSTOM, + "filtered_item_renderer": T.CUSTOM, + "flying_item_renderer": T.CUSTOM, + "selected_item_details": T.PANEL, + "selected_item_details/item_panel_image": T.IMAGE, + "item_panel_image": T.IMAGE, + "item_panel_image/item_text_label": T.LABEL, + "item_text_label": T.LABEL, + "selected_item_details_factory": T.FACTORY, + "item_lock_notification": T.PANEL, + "item_lock_notification/notification_background_image": T.IMAGE, + "item_lock_notification/notification_background_image/notification_text_label": T.LABEL, + "item_lock_notification_factory": T.FACTORY, + "empty_panel_size_y_0": T.PANEL, + "scroll_background_and_viewport": T.PANEL, + "scroll_background_and_viewport/background": T.UNKNOWN, + "scroll_background_and_viewport/scrolling_view_port": T.PANEL, + "scroll_background_and_viewport/scrolling_view_port/scrolling_content": T.UNKNOWN, + "scroll_bar_and_track": T.PANEL, + "scroll_bar_and_track/stack_panel": T.STACK_PANEL, + "scroll_bar_and_track/stack_panel/empty_panel_0": T.PANEL, + "scroll_bar_and_track/stack_panel/panel": T.PANEL, + "scroll_bar_and_track/stack_panel/panel/centered_panel": T.PANEL, + "scroll_bar_and_track/stack_panel/panel/centered_panel/track": T.SCROLL_TRACK, + "scroll_bar_and_track/stack_panel/panel/centered_panel/scroll_box": T.PANEL, + "scroll_bar_and_track/stack_panel/empty_panel_1": T.PANEL, + "scroll_view_control": T.SCROLL_VIEW, + "scroll_view_control/stack_panel": T.STACK_PANEL, + "scroll_view_control/stack_panel/background_and_viewport": T.PANEL, + "scroll_view_control/stack_panel/bar_and_track": T.PANEL, + "scroll_view_control/panel": T.PANEL, + "scroll_view_control/panel/background_and_viewport": T.PANEL, + "scroll_view_control/panel/bar_and_track": T.PANEL, + "scrollbar_track": T.SCROLL_TRACK, + "scrollbar_track/bar_indent": T.UNKNOWN, + "scroll_box": T.PANEL, + "scroll_box/box": T.SCROLLBAR_BOX, + "scroll_box/box/mouse_box": T.UNKNOWN, + "scroll_box/box/touch_box": T.UNKNOWN, + "scroll_box_indent": T.IMAGE, + "scrollbar_box_image": T.IMAGE, + "touch_scrollbar_box_image": T.IMAGE, + "new_touch_scrollbar_box_image": T.IMAGE, + "container_touch_scrollbar_box_image": T.IMAGE, + "scroll_indent_image": T.IMAGE, + "scrolling_panel_base": T.INPUT_PANEL, + "scrolling_panel": T.PANEL, + "scrolling_panel/scroll_touch": T.INPUT_PANEL, + "scrolling_panel/scroll_mouse": T.INPUT_PANEL, + "scrolling_panel_with_offset": T.PANEL, + "container_slot_button_prototype": T.BUTTON, + "container_slot_button_prototype/hover": T.UNKNOWN, + "no_coalesce_container_slot_button": T.BUTTON, + "pocket_ui_container_slot": T.BUTTON, + "pocket_ui_container_slot/hover": T.PANEL, + "pocket_ui_container_slot/hover/highlight_square": T.IMAGE, + "slot_selected": T.IMAGE, + "slot_selected/progress_bar_release": T.CUSTOM, + "container_item": T.INPUT_PANEL, + "container_item/item_cell": T.PANEL, + "container_item/item_cell/item": T.PANEL, + "container_item/item_cell/item/stack_count_label": T.LABEL, + "container_item/item_cell/durability_bar": T.CUSTOM, + "container_item/item_cell/storage_bar": T.CUSTOM, + "container_item/item_cell_overlay_ref": T.UNKNOWN, + "container_item/item_selected_image": T.IMAGE, + "container_item/item_button_ref": T.UNKNOWN, + "container_item/container_item_lock_overlay": T.PANEL, + "container_item/item_lock_cell_image": T.IMAGE, + "container_item/bundle_slot_panel": T.PANEL, + "pocket_ui_container_item": T.INPUT_PANEL, + "pocket_ui_large_container_item": T.INPUT_PANEL, + "container_item_lock_yellow": T.IMAGE, + "container_item_lock_red": T.IMAGE, + "container_item_lock_overlay": T.PANEL, + "container_item_lock_overlay/container_item_lock_yellow": T.IMAGE, + "container_item_lock_overlay/container_item_lock_red": T.IMAGE, + "item_lock_cell_image": T.IMAGE, + "container_grid": T.GRID, + "pocket_container_grid": T.GRID, + "container_scroll_box_image": T.IMAGE, + "container_scroll_bar_side_rails": T.IMAGE, + "container_scrollbar_track": T.PANEL, + "container_scrollbar_track/rails": T.IMAGE, + "container_scroll_background_image": T.IMAGE, + "container_scroll_panel": T.PANEL, + "pocket_ui_highlight_selected_slot": T.IMAGE, + "pocket_hotbar_panel": T.INPUT_PANEL, + "pocket_hotbar_panel/bg": T.PANEL, + "pocket_hotbar_panel/hotbar_grid": T.GRID, + "drop_item_panel": T.INPUT_PANEL, + "pocket_hotbar_and_content_panels": T.STACK_PANEL, + "pocket_hotbar_and_content_panels/pocket_content_panels": T.STACK_PANEL, + "pocket_hotbar_and_content_panels/hotbar_drop_item_panel": T.INPUT_PANEL, + "pocket_hotbar_and_content_panels/hotbar_drop_item_panel/pocket_hotbar_panel": T.INPUT_PANEL, + "blank_pocket_content_panel": T.PANEL, + "pocket_content_panels": T.STACK_PANEL, + "pocket_content_panels/left_panel": T.UNKNOWN, + "pocket_content_panels/offset_panel": T.INPUT_PANEL, + "pocket_content_panels/offset_panel/center_bg": T.IMAGE, + "pocket_content_panels/right_panel": T.UNKNOWN, + "inventory_selected_icon": T.CUSTOM, + "inventory_selected_stack_size_text": T.LABEL, + "inventory_hold_icon": T.CUSTOM, + "inventory_selected_item_lock_overlay": T.PANEL, + "inventory_selected_item_lock_overlay/container_item_lock_yellow": T.IMAGE, + "inventory_selected_item_lock_overlay/container_item_lock_red": T.IMAGE, + "inventory_icon_panel": T.PANEL, + "inventory_icon_panel/selected_item_icon": T.CUSTOM, + "inventory_icon_panel/selected_stack_size_text": T.LABEL, + "inventory_icon_panel/selected_item_lock_overlay": T.PANEL, + "inventory_icon_panel/hover_text": T.CUSTOM, + "inventory_selected_icon_button": T.BUTTON, + "inventory_selected_icon_button/default": T.PANEL, + "inventory_selected_icon_button/pressed": T.PANEL, + "inventory_selected_icon_button/hover": T.PANEL, + "inventory_selected_icon_button/durability_bar_grabbed": T.CUSTOM, + "inventory_selected_icon_button/storage_bar_grabbed": T.CUSTOM, + "inventory_take_progress_icon_button": T.BUTTON, + "inventory_take_progress_icon_button/default": T.CUSTOM, + "inventory_take_progress_icon_button/pressed": T.CUSTOM, + "inventory_take_progress_icon_button/hover": T.CUSTOM, + "gamepad_cursor_image": T.IMAGE, + "gamepad_cursor_button": T.BUTTON, + "gamepad_cursor_button/default": T.IMAGE, + "gamepad_cursor_button/pressed": T.IMAGE, + "gamepad_cursor_button/hover": T.IMAGE, + "grid_item_for_inventory": T.INPUT_PANEL, + "grid_item_for_hotbar": T.INPUT_PANEL, + "hotbar_grid_template": T.GRID, + "inventory_panel": T.PANEL, + "inventory_panel/inventory_grid": T.GRID, + "inventory_panel_bottom_half": T.PANEL, + "inventory_panel_bottom_half/inventory_panel": T.PANEL, + "inventory_panel_bottom_half_with_label": T.PANEL, + "inventory_panel_bottom_half_with_label/inventory_panel": T.PANEL, + "inventory_panel_bottom_half_with_label/inventory_label": T.LABEL, + "common_panel": T.PANEL, + "common_panel/bg_image": T.UNKNOWN, + "common_panel/dialog_divider": T.IMAGE, + "common_panel/close_button_holder": T.PANEL, + "common_panel/close_button_holder/close": T.BUTTON, + "common_panel/close_button_holder/compact_close": T.BUTTON, + "root_panel": T.INPUT_PANEL, + "input_panel": T.INPUT_PANEL, + "base_screen": T.SCREEN, + "base_screen/variables_button_mappings_and_controls": T.INPUT_PANEL, + "base_screen/variables_button_mappings_and_controls/bg_no_safezone_screen_panel": T.UNKNOWN, + "base_screen/variables_button_mappings_and_controls/safezone_screen_matrix": T.STACK_PANEL, + "base_screen/variables_button_mappings_and_controls/screen_background": T.PANEL, + "base_screen/loading_bars_background": T.IMAGE, + "base_screen/loading_bars_background/loading_bars": T.IMAGE, + "render_below_base_screen": T.SCREEN, + "safezone_buffer": T.PANEL, + "top_safezone_vertical_buffer": T.PANEL, + "bottom_safezone_vertical_buffer": T.PANEL, + "left_safezone_horizontal_buffer": T.PANEL, + "right_safezone_horizontal_buffer": T.PANEL, + "safe_zone_stack": T.STACK_PANEL, + "safe_zone_stack/top_outer_control": T.UNKNOWN, + "safe_zone_stack/top_inner_control": T.UNKNOWN, + "safe_zone_stack/header_bar": T.UNKNOWN, + "safezone_inner_matrix": T.STACK_PANEL, + "safezone_inner_matrix/outer_top": T.PANEL, + "safezone_inner_matrix/outer_top/top_side_control": T.UNKNOWN, + "safezone_inner_matrix/inner_top": T.PANEL, + "safezone_inner_matrix/inner_top/top_side_control": T.UNKNOWN, + "safezone_inner_matrix/safezone_screen_panel": T.PANEL, + "safezone_inner_matrix/inner_bottom": T.PANEL, + "safezone_inner_matrix/outer_bottom": T.PANEL, + "safezone_outer_matrix": T.STACK_PANEL, + "safezone_outer_matrix/outer_left": T.PANEL, + "safezone_outer_matrix/outer_left/outer_left_safe_zone_stack": T.STACK_PANEL, + "safezone_outer_matrix/inner_left": T.PANEL, + "safezone_outer_matrix/inner_left/inner_left_safe_zone_stack": T.STACK_PANEL, + "safezone_outer_matrix/inner_matrix": T.STACK_PANEL, + "safezone_outer_matrix/inner_right": T.PANEL, + "safezone_outer_matrix/inner_right/inner_right_safe_zone_stack": T.STACK_PANEL, + "safezone_outer_matrix/outer_right": T.PANEL, + "safezone_outer_matrix/outer_right/outer_right_safe_zone_stack": T.STACK_PANEL, + "bundle_tooltip_wrapper": T.PANEL, + "bundle_tooltip_wrapper/bundle_tooltip_factory_wrapper": T.PANEL, + "bundle_tooltip_wrapper/bundle_touch_tooltip": T.PANEL, + "screen_panel": T.PANEL, + "screen_panel/root_screen_panel": T.UNKNOWN, + "screen_panel/additional_screen_content": T.UNKNOWN, + "screen_panel/popup_dialog_factory": T.FACTORY, + "screen_panel/bundle_hover_tooltip": T.PANEL, + "base_screen_empty_panel": T.PANEL, + "modal_screen": T.SCREEN, + "realms_error_modal_screen": T.SCREEN, + "modal_area_panel_base": T.INPUT_PANEL, + "inactive_modal_pane_fade": T.IMAGE, + "inventory_screen_common": T.SCREEN, + "fullscreen_header": T.STACK_PANEL, + "fullscreen_header/top_bar": T.IMAGE, + "fullscreen_header/top_bar/title_stack_panel": T.STACK_PANEL, + "fullscreen_header/top_bar/title_stack_panel/padding1": T.PANEL, + "fullscreen_header/top_bar/title_stack_panel/back_button_content_panel": T.PANEL, + "fullscreen_header/top_bar/title_stack_panel/padding2": T.PANEL, + "fullscreen_header/child_control": T.UNKNOWN, + "back_content_panel": T.PANEL, + "back_content_panel/back_button": T.STACK_PANEL, + "top_bar": T.IMAGE, + "tooltip_background": T.IMAGE, + "tooltip_button_content": T.IMAGE, + "tooltip_button_content/tooltip_panel_content": T.UNKNOWN, + "static_tooltip_popup_with_image_and_text": T.IMAGE, + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel": T.STACK_PANEL, + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel": T.PANEL, + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel": T.PANEL, + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel/0": T.UNKNOWN, + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding": T.PANEL, + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text": T.LABEL, + "static_tooltip_popup_with_image_and_text/tooltip_chevron": T.IMAGE, + "dynamic_tooltip_popup_with_custom_content": T.IMAGE, + "dynamic_tooltip_popup_with_custom_content/tooltip_content": T.UNKNOWN, + "dynamic_tooltip_popup_with_custom_content/tooltip_chevron": T.IMAGE, + "dynamic_tooltip_popup_with_image_and_text": T.IMAGE, + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel": T.STACK_PANEL, + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel": T.PANEL, + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel": T.PANEL, + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel/0": T.UNKNOWN, + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding": T.PANEL, + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text": T.LABEL, + "dynamic_tooltip_popup_with_image_and_text/tooltip_chevron": T.IMAGE, + "dynamic_tooltip_left": T.IMAGE, + "dynamic_tooltip_below": T.IMAGE, + "dynamic_custom_tooltip_below": T.IMAGE, + "dynamic_tooltip": T.PANEL, + "dynamic_tooltip/above": T.PANEL, + "dynamic_tooltip/above/content": T.IMAGE, + "dynamic_tooltip/below": T.PANEL, + "dynamic_tooltip/below/content": T.IMAGE, + "legacy_pocket_close_button_default": T.IMAGE, + "legacy_pocket_close_button_pressed": T.IMAGE, + "legacy_pocket_close_button": T.BUTTON, + "legacy_pocket_close_button/default": T.IMAGE, + "legacy_pocket_close_button/hover": T.IMAGE, + "legacy_pocket_close_button/pressed": T.IMAGE, + "info_icon": T.IMAGE, + "error_glyph": T.IMAGE, + "service_repo_image_panel": T.PANEL, + "service_repo_image_panel/service_repo_image": T.IMAGE, + "service_repo_image_panel/progress_loading": T.PANEL, + "common_cycler": T.UNKNOWN, + "image_cycler": T.IMAGE_CYCLER, + "text_cycler": T.LABEL_CYCLER, + "squaring_panel": T.PANEL, + "squaring_panel/squaring_panel": T.PANEL, + "squaring_panel/squaring_panel/squaring_panel_content": T.UNKNOWN, } export type CommonClassicType = { - button: T.BUTTON - button_state_default: T.IMAGE - button_state_hover: T.IMAGE - button_state_pressed: T.IMAGE - toggle: T.PANEL - toggle_checked_state: T.IMAGE - toggle_unchecked_state: T.IMAGE - toggle_checked_hovered_state: T.PANEL - "toggle_checked_hovered_state/toggle_checked_state": T.IMAGE - "toggle_checked_hovered_state/hover": T.IMAGE - toggle_unchecked_hovered_state: T.PANEL - "toggle_unchecked_hovered_state/toggle_unchecked_state": T.IMAGE - "toggle_unchecked_hovered_state/hover": T.IMAGE + "button": T.BUTTON, + "button_state_default": T.IMAGE, + "button_state_hover": T.IMAGE, + "button_state_pressed": T.IMAGE, + "toggle": T.PANEL, + "toggle_checked_state": T.IMAGE, + "toggle_unchecked_state": T.IMAGE, + "toggle_checked_hovered_state": T.PANEL, + "toggle_checked_hovered_state/toggle_checked_state": T.IMAGE, + "toggle_checked_hovered_state/hover": T.IMAGE, + "toggle_unchecked_hovered_state": T.PANEL, + "toggle_unchecked_hovered_state/toggle_unchecked_state": T.IMAGE, + "toggle_unchecked_hovered_state/hover": T.IMAGE, } export type EduCommonType = { - light_label: T.LABEL - dark_label: T.LABEL - readable_label: T.LABEL - slider_toggle: T.TOGGLE - trash_default: T.IMAGE - trash_hover: T.IMAGE - trash_pressed: T.IMAGE - photo_trash_button: T.BUTTON - "photo_trash_button/default": T.IMAGE - "photo_trash_button/hover": T.IMAGE - "photo_trash_button/pressed": T.IMAGE - download_progress_modal_panel: T.INPUT_PANEL - "download_progress_modal_panel/downloading": T.PANEL - loading_progress_modal_panel: T.INPUT_PANEL - "loading_progress_modal_panel/loading": T.PANEL - modal_cancel_button: T.BUTTON - modal_progress_panel_with_cancel: T.PANEL - "modal_progress_panel_with_cancel/common_panel": T.PANEL - "modal_progress_panel_with_cancel/title": T.LABEL - "modal_progress_panel_with_cancel/content": T.PANEL - "modal_progress_panel_with_cancel/content/title_panel": T.PANEL - "modal_progress_panel_with_cancel/content/label": T.LABEL - "modal_progress_panel_with_cancel/content/progress_loading_bars": T.IMAGE - "modal_progress_panel_with_cancel/cancel_button": T.BUTTON - modal_progress_panel_no_button: T.PANEL - "modal_progress_panel_no_button/common_panel": T.PANEL - "modal_progress_panel_no_button/content": T.PANEL - "modal_progress_panel_no_button/content/progress_title_text": T.LABEL - "modal_progress_panel_no_button/content/progress_loading_bars": T.IMAGE - apple_animation: T.IMAGE - book_animation: T.IMAGE - edu_loading_animation: T.IMAGE - horizontal_stack_item: T.PANEL - vertical_stack_item: T.PANEL - back_button_padded: T.STACK_PANEL - "back_button_padded/back_button_padding_before": T.PANEL - "back_button_padded/back_button": T.STACK_PANEL - home_button_content: T.IMAGE - home_button: T.BUTTON - underline_text: T.PANEL - "underline_text/label_hover": T.PANEL - underline_button: T.BUTTON - "underline_button/default": T.PANEL - "underline_button/hover": T.PANEL - "underline_button/pressed": T.PANEL - edu_screen_header: T.IMAGE - "edu_screen_header/title_controls": T.STACK_PANEL - "edu_screen_header/title_controls/back_item": T.PANEL - "edu_screen_header/title_controls/back_item/back_button": T.STACK_PANEL - "edu_screen_header/title_controls/back_item/gamepad": T.STACK_PANEL - "edu_screen_header/title_controls/image_item": T.PANEL - "edu_screen_header/title_controls/image_item/image": T.IMAGE - "edu_screen_header/title_controls/image_item_template": T.PANEL - "edu_screen_header/title_controls/image_item_template/image": T.IMAGE - "edu_screen_header/title_controls/image_item_template/image/image_color": T.IMAGE - "edu_screen_header/title_controls/title_text_padding": T.PANEL - "edu_screen_header/title_controls/title_item": T.PANEL - "edu_screen_header/title_controls/title_item/title": T.LABEL - share_dialog_title: T.LABEL - share_header_panel: T.PANEL - "share_header_panel/title": T.LABEL - "share_header_panel/close_button": T.BUTTON - teams_advanced_share_header_panel: T.PANEL - add_resource_share_header_panel: T.PANEL - body_panel: T.PANEL - "body_panel/body_stack": T.UNKNOWN - teams_body_panel: T.PANEL - teams_body_resource_panel: T.PANEL - teams_simple_body_resource_panel: T.PANEL - joincode_body_panel: T.PANEL - add_resource_body_panel: T.PANEL - icon_section: T.STACK_PANEL - "icon_section/icon_stack_panel": T.STACK_PANEL - "icon_section/icon_padding": T.PANEL - add_resources_section: T.STACK_PANEL - "add_resources_section/divider": T.PANEL - "add_resources_section/add_resource_label": T.PANEL - "add_resources_section/teams_padding_middle": T.PANEL - "add_resources_section/resource_button": T.BUTTON - edit_resource_uri_glyph: T.IMAGE - edit_resources_section: T.STACK_PANEL - "edit_resources_section/divider": T.PANEL - "edit_resources_section/resource_label_text": T.PANEL - "edit_resources_section/teams_padding_middle": T.PANEL - "edit_resources_section/edit_resource_body_button_stack": T.STACK_PANEL - "edit_resources_section/edit_resource_body_button_stack/resource_button": T.UNKNOWN - "edit_resources_section/edit_resource_body_button_stack/padding_middle": T.PANEL - "edit_resources_section/edit_resource_body_button_stack/edit_resource_uri_button": T.BUTTON - body_content_stack: T.STACK_PANEL - "body_content_stack/body_text_centering_panel": T.PANEL - "body_content_stack/body_text_centering_panel/body_text": T.PANEL - "body_content_stack/padding_middle": T.PANEL - "body_content_stack/icons": T.STACK_PANEL - "body_content_stack/copy_link_centering_panel": T.PANEL - "body_content_stack/copy_link_centering_panel/copy_link_panel": T.STACK_PANEL - "body_content_stack/add_resources": T.STACK_PANEL - "body_content_stack/edit_resources": T.STACK_PANEL - teams_simple_body_content_stack: T.STACK_PANEL - teams_body_content_stack: T.STACK_PANEL - teams_body_resource_content_stack: T.STACK_PANEL - joincode_body_content_stack: T.STACK_PANEL - add_resource_body_content_stack: T.STACK_PANEL - "add_resource_body_content_stack/label_one_centering_panel": T.PANEL - "add_resource_body_content_stack/label_one_centering_panel/teams_share_label": T.PANEL - "add_resource_body_content_stack/label_padding_middle": T.PANEL - "add_resource_body_content_stack/label_two_centering_panel": T.PANEL - "add_resource_body_content_stack/label_two_centering_panel/teams_share_label": T.PANEL - "add_resource_body_content_stack/learn_more_padding_middle": T.PANEL - "add_resource_body_content_stack/link1": T.BUTTON - "add_resource_body_content_stack/url_padding_middle": T.PANEL - "add_resource_body_content_stack/url_label": T.PANEL - "add_resource_body_content_stack/url_textbox": T.EDIT_BOX - "add_resource_body_content_stack/inline_notification": T.IMAGE - "add_resource_body_content_stack/inline_notification_spacer": T.PANEL - "add_resource_body_content_stack/button_name_label": T.PANEL - "add_resource_body_content_stack/button_middle_spacer": T.PANEL - "add_resource_body_content_stack/button_name_textbox": T.EDIT_BOX - "add_resource_body_content_stack/button_name_textbox_next_disabled": T.EDIT_BOX - add_edit_resource_body_content_stack: T.PANEL - "add_edit_resource_body_content_stack/scroll_content": T.PANEL - "add_edit_resource_body_content_stack/scroll_content/scrolling_panel": T.PANEL - resource_popup_buttons: T.STACK_PANEL - "resource_popup_buttons/done_button": T.BUTTON - "resource_popup_buttons/button_padding": T.PANEL - "resource_popup_buttons/back_button_panel": T.PANEL - "resource_popup_buttons/back_button_panel/back_button_enabled": T.BUTTON - "resource_popup_buttons/back_button_panel/back_button_disabled": T.BUTTON - add_resource_popup_lower_button_panel: T.PANEL - "add_resource_popup_lower_button_panel/edit_resource_popup_buttons": T.STACK_PANEL - "add_resource_popup_lower_button_panel/add_resource_popup_buttons": T.STACK_PANEL - share_dialog_body_text: T.PANEL - "share_dialog_body_text/tts_border": T.BUTTON - "share_dialog_body_text/text": T.LABEL - share_icon: T.IMAGE - share_label: T.STACK_PANEL - "share_label/share_image_offset_panel": T.PANEL - "share_label/share_image_offset_panel/link_share": T.IMAGE - copy_link_stack_panel: T.STACK_PANEL - "copy_link_stack_panel/link_box": T.EDIT_BOX - "copy_link_stack_panel/copy_button": T.BUTTON - icon_stack_panel: T.STACK_PANEL - "icon_stack_panel/padding_left": T.PANEL - "icon_stack_panel/teams_button": T.BUTTON - "icon_stack_panel/teams_mail_padding": T.PANEL - "icon_stack_panel/mail_button": T.BUTTON - "icon_stack_panel/mail_classrooms_padding": T.PANEL - "icon_stack_panel/classrooms_button": T.BUTTON - "icon_stack_panel/padding_right": T.PANEL - default_share_button_contents: T.PANEL - "default_share_button_contents/background": T.IMAGE - "default_share_button_contents/image": T.IMAGE - default_share_button: T.BUTTON - "default_share_button/default": T.PANEL - "default_share_button/hover": T.PANEL - "default_share_button/pressed": T.PANEL - vertical_divider: T.PANEL - "vertical_divider/divider": T.IMAGE - horizontal_divider: T.PANEL - "horizontal_divider/divider": T.IMAGE - stack_panel_grid_slot: T.PANEL - "stack_panel_grid_slot/stack_panel_grid_item_panel": T.PANEL - "stack_panel_grid_slot/stack_panel_grid_item_panel/stack_panel_grid_item": T.UNKNOWN - stack_panel_grid_row: T.STACK_PANEL - "stack_panel_grid_row/stack_panel_grid_row_item": T.PANEL - "stack_panel_grid_row/stack_panel_grid_row_item/row": T.STACK_PANEL - "stack_panel_grid_row/divider": T.PANEL - "stack_panel_grid_row/divider/line": T.IMAGE - stack_panel_grid: T.STACK_PANEL - border: T.IMAGE - description_panel: T.IMAGE - "description_panel/border": T.BUTTON - "description_panel/description": T.LABEL - edu_share_text_popup: T.INPUT_PANEL - teams_edu_share_text_popup: T.INPUT_PANEL - teams_edu_share_resource_popup: T.INPUT_PANEL - teams_edu_simple_share_resource_popup: T.INPUT_PANEL - joincode_edu_popup: T.INPUT_PANEL - add_resource_dialog: T.INPUT_PANEL - share_popup_dialog_factory: T.FACTORY - inline_notification: T.IMAGE - "inline_notification/stack": T.STACK_PANEL - "inline_notification/stack/icon": T.IMAGE - "inline_notification/stack/spacer": T.PANEL - "inline_notification/stack/warning_text": T.LABEL - search_button_content: T.IMAGE - search_bar_and_home_button: T.STACK_PANEL - "search_bar_and_home_button/search_bar": T.PANEL - "search_bar_and_home_button/search_bar/search_bar": T.EDIT_BOX - "search_bar_and_home_button/search_button": T.BUTTON - "search_bar_and_home_button/search_pad": T.PANEL - "search_bar_and_home_button/home_button": T.BUTTON - "search_bar_and_home_button/end_pad": T.PANEL - hotbar_hint: T.PANEL - "hotbar_hint/inactive_slot_dimmer": T.IMAGE - "hotbar_hint/bound_key_glyph_background": T.IMAGE - "hotbar_hint/bound_key_glyph_background/bound_key_glyph_text": T.LABEL - view_toggle_content: T.STACK_PANEL - "view_toggle_content/button_image_templates": T.IMAGE - "view_toggle_content/button_image_templates/image_color_templates": T.IMAGE - "view_toggle_content/button_image_worlds": T.IMAGE - "view_toggle_content/button_label_wrapper": T.PANEL - "view_toggle_content/button_label_wrapper/button_label": T.LABEL - "view_toggle_content/left_edge_text_padding": T.PANEL - worlds_and_templates_search_bar: T.IMAGE - "worlds_and_templates_search_bar/stack_panel": T.STACK_PANEL - "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper": T.PANEL - "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper/search_bar": T.EDIT_BOX - "worlds_and_templates_search_bar/stack_panel/temp_padding": T.PANEL - "worlds_and_templates_search_bar/stack_panel/view_toggle_background": T.IMAGE - "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel": T.STACK_PANEL - "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/left_edge_padding": T.PANEL - "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/view_toggle_button": T.BUTTON - "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/right_edge_padding": T.PANEL - edu_cloud_conflict_resolution_popup_dialog_factory: T.FACTORY - edu_cloud_conflict_resolution_popup: T.INPUT_PANEL - edu_cloud_conflict_resolution_content: T.STACK_PANEL - "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper": T.PANEL - "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/tts_border": T.BUTTON - "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/conflict_resolution_description": T.LABEL - "edu_cloud_conflict_resolution_content/padding1": T.PANEL - "edu_cloud_conflict_resolution_content/world_info_wrapper": T.PANEL - "edu_cloud_conflict_resolution_content/world_info_wrapper/tts_border": T.BUTTON - "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack": T.STACK_PANEL - "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_name_label": T.LABEL - "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_last_changed_label": T.LABEL - "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_name_label": T.LABEL - "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_last_changed_label": T.LABEL - "edu_cloud_conflict_resolution_content/padding2": T.PANEL - "edu_cloud_conflict_resolution_content/keep_local_button": T.BUTTON - "edu_cloud_conflict_resolution_content/keep_cloud_button": T.BUTTON - "edu_cloud_conflict_resolution_content/keep_both_button": T.BUTTON - nested_buttons_base_definition: T.STACK_PANEL + "light_label": T.LABEL, + "dark_label": T.LABEL, + "readable_label": T.LABEL, + "slider_toggle": T.TOGGLE, + "trash_default": T.IMAGE, + "trash_hover": T.IMAGE, + "trash_pressed": T.IMAGE, + "photo_trash_button": T.BUTTON, + "photo_trash_button/default": T.IMAGE, + "photo_trash_button/hover": T.IMAGE, + "photo_trash_button/pressed": T.IMAGE, + "download_progress_modal_panel": T.INPUT_PANEL, + "download_progress_modal_panel/downloading": T.PANEL, + "loading_progress_modal_panel": T.INPUT_PANEL, + "loading_progress_modal_panel/loading": T.PANEL, + "modal_cancel_button": T.BUTTON, + "modal_progress_panel_with_cancel": T.PANEL, + "modal_progress_panel_with_cancel/common_panel": T.PANEL, + "modal_progress_panel_with_cancel/title": T.LABEL, + "modal_progress_panel_with_cancel/content": T.PANEL, + "modal_progress_panel_with_cancel/content/title_panel": T.PANEL, + "modal_progress_panel_with_cancel/content/label": T.LABEL, + "modal_progress_panel_with_cancel/content/progress_loading_bars": T.IMAGE, + "modal_progress_panel_with_cancel/cancel_button": T.BUTTON, + "modal_progress_panel_no_button": T.PANEL, + "modal_progress_panel_no_button/common_panel": T.PANEL, + "modal_progress_panel_no_button/content": T.PANEL, + "modal_progress_panel_no_button/content/progress_title_text": T.LABEL, + "modal_progress_panel_no_button/content/progress_loading_bars": T.IMAGE, + "apple_animation": T.IMAGE, + "book_animation": T.IMAGE, + "edu_loading_animation": T.IMAGE, + "horizontal_stack_item": T.PANEL, + "vertical_stack_item": T.PANEL, + "back_button_padded": T.STACK_PANEL, + "back_button_padded/back_button_padding_before": T.PANEL, + "back_button_padded/back_button": T.STACK_PANEL, + "home_button_content": T.IMAGE, + "home_button": T.BUTTON, + "underline_text": T.PANEL, + "underline_text/label_hover": T.PANEL, + "underline_button": T.BUTTON, + "underline_button/default": T.PANEL, + "underline_button/hover": T.PANEL, + "underline_button/pressed": T.PANEL, + "edu_screen_header": T.IMAGE, + "edu_screen_header/title_controls": T.STACK_PANEL, + "edu_screen_header/title_controls/back_item": T.PANEL, + "edu_screen_header/title_controls/back_item/back_button": T.STACK_PANEL, + "edu_screen_header/title_controls/back_item/gamepad": T.STACK_PANEL, + "edu_screen_header/title_controls/image_item": T.PANEL, + "edu_screen_header/title_controls/image_item/image": T.IMAGE, + "edu_screen_header/title_controls/image_item_template": T.PANEL, + "edu_screen_header/title_controls/image_item_template/image": T.IMAGE, + "edu_screen_header/title_controls/image_item_template/image/image_color": T.IMAGE, + "edu_screen_header/title_controls/title_text_padding": T.PANEL, + "edu_screen_header/title_controls/title_item": T.PANEL, + "edu_screen_header/title_controls/title_item/title": T.LABEL, + "share_dialog_title": T.LABEL, + "share_header_panel": T.PANEL, + "share_header_panel/title": T.LABEL, + "share_header_panel/close_button": T.BUTTON, + "teams_advanced_share_header_panel": T.PANEL, + "add_resource_share_header_panel": T.PANEL, + "body_panel": T.PANEL, + "body_panel/body_stack": T.UNKNOWN, + "teams_body_panel": T.PANEL, + "teams_body_resource_panel": T.PANEL, + "teams_simple_body_resource_panel": T.PANEL, + "joincode_body_panel": T.PANEL, + "add_resource_body_panel": T.PANEL, + "icon_section": T.STACK_PANEL, + "icon_section/icon_stack_panel": T.STACK_PANEL, + "icon_section/icon_padding": T.PANEL, + "add_resources_section": T.STACK_PANEL, + "add_resources_section/divider": T.PANEL, + "add_resources_section/add_resource_label": T.PANEL, + "add_resources_section/teams_padding_middle": T.PANEL, + "add_resources_section/resource_button": T.BUTTON, + "edit_resource_uri_glyph": T.IMAGE, + "edit_resources_section": T.STACK_PANEL, + "edit_resources_section/divider": T.PANEL, + "edit_resources_section/resource_label_text": T.PANEL, + "edit_resources_section/teams_padding_middle": T.PANEL, + "edit_resources_section/edit_resource_body_button_stack": T.STACK_PANEL, + "edit_resources_section/edit_resource_body_button_stack/resource_button": T.UNKNOWN, + "edit_resources_section/edit_resource_body_button_stack/padding_middle": T.PANEL, + "edit_resources_section/edit_resource_body_button_stack/edit_resource_uri_button": T.BUTTON, + "body_content_stack": T.STACK_PANEL, + "body_content_stack/body_text_centering_panel": T.PANEL, + "body_content_stack/body_text_centering_panel/body_text": T.PANEL, + "body_content_stack/padding_middle": T.PANEL, + "body_content_stack/icons": T.STACK_PANEL, + "body_content_stack/copy_link_centering_panel": T.PANEL, + "body_content_stack/copy_link_centering_panel/copy_link_panel": T.STACK_PANEL, + "body_content_stack/add_resources": T.STACK_PANEL, + "body_content_stack/edit_resources": T.STACK_PANEL, + "teams_simple_body_content_stack": T.STACK_PANEL, + "teams_body_content_stack": T.STACK_PANEL, + "teams_body_resource_content_stack": T.STACK_PANEL, + "joincode_body_content_stack": T.STACK_PANEL, + "add_resource_body_content_stack": T.STACK_PANEL, + "add_resource_body_content_stack/label_one_centering_panel": T.PANEL, + "add_resource_body_content_stack/label_one_centering_panel/teams_share_label": T.PANEL, + "add_resource_body_content_stack/label_padding_middle": T.PANEL, + "add_resource_body_content_stack/label_two_centering_panel": T.PANEL, + "add_resource_body_content_stack/label_two_centering_panel/teams_share_label": T.PANEL, + "add_resource_body_content_stack/learn_more_padding_middle": T.PANEL, + "add_resource_body_content_stack/link1": T.BUTTON, + "add_resource_body_content_stack/url_padding_middle": T.PANEL, + "add_resource_body_content_stack/url_label": T.PANEL, + "add_resource_body_content_stack/url_textbox": T.EDIT_BOX, + "add_resource_body_content_stack/inline_notification": T.IMAGE, + "add_resource_body_content_stack/inline_notification_spacer": T.PANEL, + "add_resource_body_content_stack/button_name_label": T.PANEL, + "add_resource_body_content_stack/button_middle_spacer": T.PANEL, + "add_resource_body_content_stack/button_name_textbox": T.EDIT_BOX, + "add_resource_body_content_stack/button_name_textbox_next_disabled": T.EDIT_BOX, + "add_edit_resource_body_content_stack": T.PANEL, + "add_edit_resource_body_content_stack/scroll_content": T.PANEL, + "add_edit_resource_body_content_stack/scroll_content/scrolling_panel": T.PANEL, + "resource_popup_buttons": T.STACK_PANEL, + "resource_popup_buttons/done_button": T.BUTTON, + "resource_popup_buttons/button_padding": T.PANEL, + "resource_popup_buttons/back_button_panel": T.PANEL, + "resource_popup_buttons/back_button_panel/back_button_enabled": T.BUTTON, + "resource_popup_buttons/back_button_panel/back_button_disabled": T.BUTTON, + "add_resource_popup_lower_button_panel": T.PANEL, + "add_resource_popup_lower_button_panel/edit_resource_popup_buttons": T.STACK_PANEL, + "add_resource_popup_lower_button_panel/add_resource_popup_buttons": T.STACK_PANEL, + "share_dialog_body_text": T.PANEL, + "share_dialog_body_text/tts_border": T.BUTTON, + "share_dialog_body_text/text": T.LABEL, + "share_icon": T.IMAGE, + "share_label": T.STACK_PANEL, + "share_label/share_image_offset_panel": T.PANEL, + "share_label/share_image_offset_panel/link_share": T.IMAGE, + "copy_link_stack_panel": T.STACK_PANEL, + "copy_link_stack_panel/link_box": T.EDIT_BOX, + "copy_link_stack_panel/copy_button": T.BUTTON, + "icon_stack_panel": T.STACK_PANEL, + "icon_stack_panel/padding_left": T.PANEL, + "icon_stack_panel/teams_button": T.BUTTON, + "icon_stack_panel/teams_mail_padding": T.PANEL, + "icon_stack_panel/mail_button": T.BUTTON, + "icon_stack_panel/mail_classrooms_padding": T.PANEL, + "icon_stack_panel/classrooms_button": T.BUTTON, + "icon_stack_panel/padding_right": T.PANEL, + "default_share_button_contents": T.PANEL, + "default_share_button_contents/background": T.IMAGE, + "default_share_button_contents/image": T.IMAGE, + "default_share_button": T.BUTTON, + "default_share_button/default": T.PANEL, + "default_share_button/hover": T.PANEL, + "default_share_button/pressed": T.PANEL, + "vertical_divider": T.PANEL, + "vertical_divider/divider": T.IMAGE, + "horizontal_divider": T.PANEL, + "horizontal_divider/divider": T.IMAGE, + "stack_panel_grid_slot": T.PANEL, + "stack_panel_grid_slot/stack_panel_grid_item_panel": T.PANEL, + "stack_panel_grid_slot/stack_panel_grid_item_panel/stack_panel_grid_item": T.UNKNOWN, + "stack_panel_grid_row": T.STACK_PANEL, + "stack_panel_grid_row/stack_panel_grid_row_item": T.PANEL, + "stack_panel_grid_row/stack_panel_grid_row_item/row": T.STACK_PANEL, + "stack_panel_grid_row/divider": T.PANEL, + "stack_panel_grid_row/divider/line": T.IMAGE, + "stack_panel_grid": T.STACK_PANEL, + "border": T.IMAGE, + "description_panel": T.IMAGE, + "description_panel/border": T.BUTTON, + "description_panel/description": T.LABEL, + "edu_share_text_popup": T.INPUT_PANEL, + "teams_edu_share_text_popup": T.INPUT_PANEL, + "teams_edu_share_resource_popup": T.INPUT_PANEL, + "teams_edu_simple_share_resource_popup": T.INPUT_PANEL, + "joincode_edu_popup": T.INPUT_PANEL, + "add_resource_dialog": T.INPUT_PANEL, + "share_popup_dialog_factory": T.FACTORY, + "inline_notification": T.IMAGE, + "inline_notification/stack": T.STACK_PANEL, + "inline_notification/stack/icon": T.IMAGE, + "inline_notification/stack/spacer": T.PANEL, + "inline_notification/stack/warning_text": T.LABEL, + "search_button_content": T.IMAGE, + "search_bar_and_home_button": T.STACK_PANEL, + "search_bar_and_home_button/search_bar": T.PANEL, + "search_bar_and_home_button/search_bar/search_bar": T.EDIT_BOX, + "search_bar_and_home_button/search_button": T.BUTTON, + "search_bar_and_home_button/search_pad": T.PANEL, + "search_bar_and_home_button/home_button": T.BUTTON, + "search_bar_and_home_button/end_pad": T.PANEL, + "hotbar_hint": T.PANEL, + "hotbar_hint/inactive_slot_dimmer": T.IMAGE, + "hotbar_hint/bound_key_glyph_background": T.IMAGE, + "hotbar_hint/bound_key_glyph_background/bound_key_glyph_text": T.LABEL, + "view_toggle_content": T.STACK_PANEL, + "view_toggle_content/button_image_templates": T.IMAGE, + "view_toggle_content/button_image_templates/image_color_templates": T.IMAGE, + "view_toggle_content/button_image_worlds": T.IMAGE, + "view_toggle_content/button_label_wrapper": T.PANEL, + "view_toggle_content/button_label_wrapper/button_label": T.LABEL, + "view_toggle_content/left_edge_text_padding": T.PANEL, + "worlds_and_templates_search_bar": T.IMAGE, + "worlds_and_templates_search_bar/stack_panel": T.STACK_PANEL, + "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper": T.PANEL, + "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper/search_bar": T.EDIT_BOX, + "worlds_and_templates_search_bar/stack_panel/temp_padding": T.PANEL, + "worlds_and_templates_search_bar/stack_panel/view_toggle_background": T.IMAGE, + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel": T.STACK_PANEL, + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/left_edge_padding": T.PANEL, + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/view_toggle_button": T.BUTTON, + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/right_edge_padding": T.PANEL, + "edu_cloud_conflict_resolution_popup_dialog_factory": T.FACTORY, + "edu_cloud_conflict_resolution_popup": T.INPUT_PANEL, + "edu_cloud_conflict_resolution_content": T.STACK_PANEL, + "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper": T.PANEL, + "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/tts_border": T.BUTTON, + "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/conflict_resolution_description": T.LABEL, + "edu_cloud_conflict_resolution_content/padding1": T.PANEL, + "edu_cloud_conflict_resolution_content/world_info_wrapper": T.PANEL, + "edu_cloud_conflict_resolution_content/world_info_wrapper/tts_border": T.BUTTON, + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack": T.STACK_PANEL, + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_name_label": T.LABEL, + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_last_changed_label": T.LABEL, + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_name_label": T.LABEL, + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_last_changed_label": T.LABEL, + "edu_cloud_conflict_resolution_content/padding2": T.PANEL, + "edu_cloud_conflict_resolution_content/keep_local_button": T.BUTTON, + "edu_cloud_conflict_resolution_content/keep_cloud_button": T.BUTTON, + "edu_cloud_conflict_resolution_content/keep_both_button": T.BUTTON, + "nested_buttons_base_definition": T.STACK_PANEL, } export type PurchaseCommonType = { - banner_fill: T.IMAGE - banner_empty: T.IMAGE - screenshots_grid_item: T.PANEL - "screenshots_grid_item/frame": T.IMAGE - "screenshots_grid_item/frame/screenshot_image": T.IMAGE - "screenshots_grid_item/frame/progress_loading": T.PANEL - "screenshots_grid_item/frame/screenshot_button": T.BUTTON - "screenshots_grid_item/frame/screenshot_button/hover": T.IMAGE - "screenshots_grid_item/frame/screenshot_button/pressed": T.IMAGE - screenshots_grid: T.GRID - key_image_frame: T.IMAGE - "key_image_frame/zoomed": T.IMAGE - offer_grid_item: T.PANEL - "offer_grid_item/frame": T.IMAGE - "offer_grid_item/frame/offer_key_art": T.IMAGE - "offer_grid_item/frame/offer_button": T.BUTTON - "offer_grid_item/frame/offer_button/hover": T.IMAGE - "offer_grid_item/frame/offer_button/pressed": T.IMAGE - offer_grid: T.GRID - key_art_and_text: T.STACK_PANEL - "key_art_and_text/key_image_panel": T.INPUT_PANEL - "key_art_and_text/key_image_panel/key_image": T.IMAGE - "key_art_and_text/padding": T.PANEL - "key_art_and_text/description_scroll": T.PANEL - pack_description: T.LABEL + "banner_fill": T.IMAGE, + "banner_empty": T.IMAGE, + "screenshots_grid_item": T.PANEL, + "screenshots_grid_item/frame": T.IMAGE, + "screenshots_grid_item/frame/screenshot_image": T.IMAGE, + "screenshots_grid_item/frame/progress_loading": T.PANEL, + "screenshots_grid_item/frame/screenshot_button": T.BUTTON, + "screenshots_grid_item/frame/screenshot_button/hover": T.IMAGE, + "screenshots_grid_item/frame/screenshot_button/pressed": T.IMAGE, + "screenshots_grid": T.GRID, + "key_image_frame": T.IMAGE, + "key_image_frame/zoomed": T.IMAGE, + "offer_grid_item": T.PANEL, + "offer_grid_item/frame": T.IMAGE, + "offer_grid_item/frame/offer_key_art": T.IMAGE, + "offer_grid_item/frame/offer_button": T.BUTTON, + "offer_grid_item/frame/offer_button/hover": T.IMAGE, + "offer_grid_item/frame/offer_button/pressed": T.IMAGE, + "offer_grid": T.GRID, + "key_art_and_text": T.STACK_PANEL, + "key_art_and_text/key_image_panel": T.INPUT_PANEL, + "key_art_and_text/key_image_panel/key_image": T.IMAGE, + "key_art_and_text/padding": T.PANEL, + "key_art_and_text/description_scroll": T.PANEL, + "pack_description": T.LABEL, } export type CommonButtonsType = { - button_image: T.IMAGE - background_button_image: T.IMAGE - locked_button_image: T.IMAGE - light_button_assets: T.BUTTON - dark_button_assets: T.BUTTON - focus_border: T.IMAGE - new_ui_button_panel: T.PANEL - "new_ui_button_panel/button_content": T.PANEL - "new_ui_button_panel/border": T.IMAGE - new_ui_form_fitting_button_panel: T.PANEL - "new_ui_form_fitting_button_panel/border": T.IMAGE - new_ui_width_fitting_button_panel: T.PANEL - "new_ui_width_fitting_button_panel/border": T.IMAGE - new_ui_height_fitting_button_panel: T.PANEL - "new_ui_height_fitting_button_panel/border": T.IMAGE - borderless_form_fitting_button_panel: T.PANEL - light_text_button: T.BUTTON - "light_text_button/default": T.UNKNOWN - "light_text_button/hover": T.UNKNOWN - "light_text_button/pressed": T.UNKNOWN - "light_text_button/locked": T.UNKNOWN - dark_text_button: T.BUTTON - "dark_text_button/default": T.UNKNOWN - "dark_text_button/hover": T.UNKNOWN - "dark_text_button/pressed": T.UNKNOWN - "dark_text_button/locked": T.UNKNOWN - new_ui_binding_button_label: T.LABEL - underline_button: T.BUTTON - "underline_button/default": T.PANEL - "underline_button/default/label_default": T.PANEL - "underline_button/hover": T.PANEL - "underline_button/hover/label_hover": T.PANEL - "underline_button/pressed": T.PANEL - "underline_button/pressed/label_hover": T.PANEL - read_button: T.PANEL - "read_button/read_button_inner": T.BUTTON - light_content_form_fitting_button: T.BUTTON - dark_content_form_fitting_button: T.BUTTON - light_text_form_fitting_button: T.BUTTON - dark_text_form_fitting_button: T.BUTTON - transparent_content_button: T.BUTTON - single_image_with_border_button: T.BUTTON - light_content_button: T.BUTTON - "light_content_button/default": T.UNKNOWN - "light_content_button/hover": T.UNKNOWN - "light_content_button/pressed": T.UNKNOWN - "light_content_button/locked": T.UNKNOWN - light_content_button_control_content: T.BUTTON - "light_content_button_control_content/default": T.UNKNOWN - "light_content_button_control_content/hover": T.UNKNOWN - "light_content_button_control_content/pressed": T.UNKNOWN - "light_content_button_control_content/locked": T.UNKNOWN - deactivated_light_content_button: T.BUTTON - dark_content_button: T.BUTTON - "dark_content_button/default": T.UNKNOWN - "dark_content_button/hover": T.UNKNOWN - "dark_content_button/pressed": T.UNKNOWN - "dark_content_button/locked": T.UNKNOWN - no_background_content_button: T.BUTTON - "no_background_content_button/default": T.UNKNOWN - "no_background_content_button/hover": T.UNKNOWN - "no_background_content_button/pressed": T.UNKNOWN - "no_background_content_button/locked": T.UNKNOWN - button_content_panel: T.PANEL - "button_content_panel/content": T.UNKNOWN - form_fitting_button_content_panel: T.PANEL - "form_fitting_button_content_panel/content": T.UNKNOWN - horizontal_form_fitting: T.PANEL - "horizontal_form_fitting/content": T.UNKNOWN - width_fitting_button_content_panel: T.PANEL - "width_fitting_button_content_panel/content": T.UNKNOWN - height_fitting_button_content_panel: T.PANEL - "height_fitting_button_content_panel/content": T.UNKNOWN - light_glyph_button: T.BUTTON - "light_glyph_button/default": T.PANEL - "light_glyph_button/hover": T.PANEL - "light_glyph_button/pressed": T.PANEL - "light_glyph_button/locked": T.PANEL - dark_glyph_button_default: T.PANEL - dark_glyph_button_hover: T.PANEL - dark_glyph_button_pressed: T.PANEL - dark_glyph_button_locked: T.PANEL - dark_glyph_button: T.BUTTON - "dark_glyph_button/default": T.PANEL - "dark_glyph_button/hover": T.PANEL - "dark_glyph_button/pressed": T.PANEL - "dark_glyph_button/locked": T.PANEL - dark_glyph_button_with_custom_control: T.BUTTON - "dark_glyph_button_with_custom_control/custom_control": T.UNKNOWN - "dark_glyph_button_with_custom_control/default": T.PANEL - "dark_glyph_button_with_custom_control/hover": T.PANEL - "dark_glyph_button_with_custom_control/pressed": T.PANEL - "dark_glyph_button_with_custom_control/locked": T.PANEL - glyph_content_panel: T.PANEL - "glyph_content_panel/glyph_button_content": T.UNKNOWN - hyperlink_button: T.BUTTON - hyperlink_content_button: T.BUTTON - nested_button_assets: T.IMAGE - nested_overlay_assets: T.IMAGE - nested_label_content_background_assets: T.IMAGE - nested_label_background_assets: T.IMAGE - nested_transparent_label_content_background_assets: T.PANEL - "nested_transparent_label_content_background_assets/assets": T.IMAGE - nested_base_label: T.LABEL - nested_centered_label_control: T.PANEL - "nested_centered_label_control/label": T.LABEL - nested_label_with_image_control: T.STACK_PANEL - "nested_label_with_image_control/image": T.IMAGE - "nested_label_with_image_control/image_to_label_padding": T.PANEL - "nested_label_with_image_control/label_panel": T.PANEL - "nested_label_with_image_control/label_panel/label": T.LABEL - nested_six_part_empty_definition: T.LABEL - nested_six_part_label_control: T.PANEL - "nested_six_part_label_control/left_top_label": T.UNKNOWN - "nested_six_part_label_control/left_middle_label": T.UNKNOWN - "nested_six_part_label_control/left_bottom_label": T.UNKNOWN - "nested_six_part_label_control/right_top_label": T.UNKNOWN - "nested_six_part_label_control/right_middle_label": T.UNKNOWN - "nested_six_part_label_control/right_bottom_label": T.UNKNOWN - nested_dark_button_assets: T.IMAGE - nested_content_background_assets: T.IMAGE - nested_content_overlay_assets: T.IMAGE - nested_dark_control_with_image: T.PANEL - "nested_dark_control_with_image/background": T.IMAGE - "nested_dark_control_with_image/image_panel": T.PANEL - "nested_dark_control_with_image/image_panel/image": T.IMAGE - nestable_button: T.PANEL - "nestable_button/nested_controls_panel": T.INPUT_PANEL - "nestable_button/nested_controls_panel/locked_overlay": T.IMAGE - "nestable_button/nested_controls_panel/nested_controls": T.UNKNOWN - "nestable_button/base_button": T.BUTTON - "nestable_button/base_button/default": T.PANEL - "nestable_button/base_button/hover": T.PANEL - "nestable_button/base_button/pressed": T.PANEL - "nestable_button/base_button/locked": T.PANEL - nested_button_base: T.PANEL - "nested_button_base/button_overlay": T.UNKNOWN - "nested_button_base/button_control": T.STACK_PANEL - "nested_button_base/button_control/control_area": T.PANEL - "nested_button_base/button_control/control_area/background": T.UNKNOWN - "nested_button_base/button_control/control_area/control": T.UNKNOWN - "nested_button_base/button_control/control_area/overlay": T.UNKNOWN - "nested_button_base/button_control/button_stack_padding": T.PANEL - "nested_button_base/button_control/label_area": T.PANEL - "nested_button_base/button_control/label_area/background": T.UNKNOWN - "nested_button_base/button_control/label_area/control_background": T.UNKNOWN - "nested_button_base/button_control/label_area/control": T.UNKNOWN - dark_nestable_button: T.PANEL - transparent_label_nestable_button: T.PANEL - static_tooltip_notification_panel: T.BUTTON - "static_tooltip_notification_panel/default": T.IMAGE - "static_tooltip_notification_panel/pressed": T.IMAGE - "static_tooltip_notification_panel/hover": T.IMAGE - "static_tooltip_notification_panel/locked": T.IMAGE - "static_tooltip_notification_panel/static_tooltip_popup_panel": T.IMAGE - dynamic_tooltip_notification_panel: T.BUTTON - "dynamic_tooltip_notification_panel/default": T.IMAGE - "dynamic_tooltip_notification_panel/pressed": T.IMAGE - "dynamic_tooltip_notification_panel/hover": T.IMAGE - "dynamic_tooltip_notification_panel/locked": T.IMAGE - "dynamic_tooltip_notification_panel/dyanmic_tooltip_popup_panel": T.IMAGE - text_body_focus_border_for_controller_button: T.BUTTON - "text_body_focus_border_for_controller_button/default": T.PANEL - "text_body_focus_border_for_controller_button/hover": T.PANEL - "text_body_focus_border_for_controller_button/hover/focus_border": T.IMAGE - "text_body_focus_border_for_controller_button/text_control": T.UNKNOWN + "button_image": T.IMAGE, + "background_button_image": T.IMAGE, + "locked_button_image": T.IMAGE, + "light_button_assets": T.BUTTON, + "dark_button_assets": T.BUTTON, + "focus_border": T.IMAGE, + "new_ui_button_panel": T.PANEL, + "new_ui_button_panel/button_content": T.PANEL, + "new_ui_button_panel/border": T.IMAGE, + "new_ui_form_fitting_button_panel": T.PANEL, + "new_ui_form_fitting_button_panel/border": T.IMAGE, + "new_ui_width_fitting_button_panel": T.PANEL, + "new_ui_width_fitting_button_panel/border": T.IMAGE, + "new_ui_height_fitting_button_panel": T.PANEL, + "new_ui_height_fitting_button_panel/border": T.IMAGE, + "borderless_form_fitting_button_panel": T.PANEL, + "light_text_button": T.BUTTON, + "light_text_button/default": T.UNKNOWN, + "light_text_button/hover": T.UNKNOWN, + "light_text_button/pressed": T.UNKNOWN, + "light_text_button/locked": T.UNKNOWN, + "dark_text_button": T.BUTTON, + "dark_text_button/default": T.UNKNOWN, + "dark_text_button/hover": T.UNKNOWN, + "dark_text_button/pressed": T.UNKNOWN, + "dark_text_button/locked": T.UNKNOWN, + "new_ui_binding_button_label": T.LABEL, + "underline_button": T.BUTTON, + "underline_button/default": T.PANEL, + "underline_button/default/label_default": T.PANEL, + "underline_button/hover": T.PANEL, + "underline_button/hover/label_hover": T.PANEL, + "underline_button/pressed": T.PANEL, + "underline_button/pressed/label_hover": T.PANEL, + "read_button": T.PANEL, + "read_button/read_button_inner": T.BUTTON, + "light_content_form_fitting_button": T.BUTTON, + "dark_content_form_fitting_button": T.BUTTON, + "light_text_form_fitting_button": T.BUTTON, + "dark_text_form_fitting_button": T.BUTTON, + "transparent_content_button": T.BUTTON, + "single_image_with_border_button": T.BUTTON, + "light_content_button": T.BUTTON, + "light_content_button/default": T.UNKNOWN, + "light_content_button/hover": T.UNKNOWN, + "light_content_button/pressed": T.UNKNOWN, + "light_content_button/locked": T.UNKNOWN, + "light_content_button_control_content": T.BUTTON, + "light_content_button_control_content/default": T.UNKNOWN, + "light_content_button_control_content/hover": T.UNKNOWN, + "light_content_button_control_content/pressed": T.UNKNOWN, + "light_content_button_control_content/locked": T.UNKNOWN, + "deactivated_light_content_button": T.BUTTON, + "dark_content_button": T.BUTTON, + "dark_content_button/default": T.UNKNOWN, + "dark_content_button/hover": T.UNKNOWN, + "dark_content_button/pressed": T.UNKNOWN, + "dark_content_button/locked": T.UNKNOWN, + "no_background_content_button": T.BUTTON, + "no_background_content_button/default": T.UNKNOWN, + "no_background_content_button/hover": T.UNKNOWN, + "no_background_content_button/pressed": T.UNKNOWN, + "no_background_content_button/locked": T.UNKNOWN, + "button_content_panel": T.PANEL, + "button_content_panel/content": T.UNKNOWN, + "form_fitting_button_content_panel": T.PANEL, + "form_fitting_button_content_panel/content": T.UNKNOWN, + "horizontal_form_fitting": T.PANEL, + "horizontal_form_fitting/content": T.UNKNOWN, + "width_fitting_button_content_panel": T.PANEL, + "width_fitting_button_content_panel/content": T.UNKNOWN, + "height_fitting_button_content_panel": T.PANEL, + "height_fitting_button_content_panel/content": T.UNKNOWN, + "light_glyph_button": T.BUTTON, + "light_glyph_button/default": T.PANEL, + "light_glyph_button/hover": T.PANEL, + "light_glyph_button/pressed": T.PANEL, + "light_glyph_button/locked": T.PANEL, + "dark_glyph_button_default": T.PANEL, + "dark_glyph_button_hover": T.PANEL, + "dark_glyph_button_pressed": T.PANEL, + "dark_glyph_button_locked": T.PANEL, + "dark_glyph_button": T.BUTTON, + "dark_glyph_button/default": T.PANEL, + "dark_glyph_button/hover": T.PANEL, + "dark_glyph_button/pressed": T.PANEL, + "dark_glyph_button/locked": T.PANEL, + "dark_glyph_button_with_custom_control": T.BUTTON, + "dark_glyph_button_with_custom_control/custom_control": T.UNKNOWN, + "dark_glyph_button_with_custom_control/default": T.PANEL, + "dark_glyph_button_with_custom_control/hover": T.PANEL, + "dark_glyph_button_with_custom_control/pressed": T.PANEL, + "dark_glyph_button_with_custom_control/locked": T.PANEL, + "glyph_content_panel": T.PANEL, + "glyph_content_panel/glyph_button_content": T.UNKNOWN, + "hyperlink_button": T.BUTTON, + "hyperlink_content_button": T.BUTTON, + "nested_button_assets": T.IMAGE, + "nested_overlay_assets": T.IMAGE, + "nested_label_content_background_assets": T.IMAGE, + "nested_label_background_assets": T.IMAGE, + "nested_transparent_label_content_background_assets": T.PANEL, + "nested_transparent_label_content_background_assets/assets": T.IMAGE, + "nested_base_label": T.LABEL, + "nested_centered_label_control": T.PANEL, + "nested_centered_label_control/label": T.LABEL, + "nested_label_with_image_control": T.STACK_PANEL, + "nested_label_with_image_control/image": T.IMAGE, + "nested_label_with_image_control/image_to_label_padding": T.PANEL, + "nested_label_with_image_control/label_panel": T.PANEL, + "nested_label_with_image_control/label_panel/label": T.LABEL, + "nested_six_part_empty_definition": T.LABEL, + "nested_six_part_label_control": T.PANEL, + "nested_six_part_label_control/left_top_label": T.UNKNOWN, + "nested_six_part_label_control/left_middle_label": T.UNKNOWN, + "nested_six_part_label_control/left_bottom_label": T.UNKNOWN, + "nested_six_part_label_control/right_top_label": T.UNKNOWN, + "nested_six_part_label_control/right_middle_label": T.UNKNOWN, + "nested_six_part_label_control/right_bottom_label": T.UNKNOWN, + "nested_dark_button_assets": T.IMAGE, + "nested_content_background_assets": T.IMAGE, + "nested_content_overlay_assets": T.IMAGE, + "nested_dark_control_with_image": T.PANEL, + "nested_dark_control_with_image/background": T.IMAGE, + "nested_dark_control_with_image/image_panel": T.PANEL, + "nested_dark_control_with_image/image_panel/image": T.IMAGE, + "nestable_button": T.PANEL, + "nestable_button/nested_controls_panel": T.INPUT_PANEL, + "nestable_button/nested_controls_panel/locked_overlay": T.IMAGE, + "nestable_button/nested_controls_panel/nested_controls": T.UNKNOWN, + "nestable_button/base_button": T.BUTTON, + "nestable_button/base_button/default": T.PANEL, + "nestable_button/base_button/hover": T.PANEL, + "nestable_button/base_button/pressed": T.PANEL, + "nestable_button/base_button/locked": T.PANEL, + "nested_button_base": T.PANEL, + "nested_button_base/button_overlay": T.UNKNOWN, + "nested_button_base/button_control": T.STACK_PANEL, + "nested_button_base/button_control/control_area": T.PANEL, + "nested_button_base/button_control/control_area/background": T.UNKNOWN, + "nested_button_base/button_control/control_area/control": T.UNKNOWN, + "nested_button_base/button_control/control_area/overlay": T.UNKNOWN, + "nested_button_base/button_control/button_stack_padding": T.PANEL, + "nested_button_base/button_control/label_area": T.PANEL, + "nested_button_base/button_control/label_area/background": T.UNKNOWN, + "nested_button_base/button_control/label_area/control_background": T.UNKNOWN, + "nested_button_base/button_control/label_area/control": T.UNKNOWN, + "dark_nestable_button": T.PANEL, + "transparent_label_nestable_button": T.PANEL, + "static_tooltip_notification_panel": T.BUTTON, + "static_tooltip_notification_panel/default": T.IMAGE, + "static_tooltip_notification_panel/pressed": T.IMAGE, + "static_tooltip_notification_panel/hover": T.IMAGE, + "static_tooltip_notification_panel/locked": T.IMAGE, + "static_tooltip_notification_panel/static_tooltip_popup_panel": T.IMAGE, + "dynamic_tooltip_notification_panel": T.BUTTON, + "dynamic_tooltip_notification_panel/default": T.IMAGE, + "dynamic_tooltip_notification_panel/pressed": T.IMAGE, + "dynamic_tooltip_notification_panel/hover": T.IMAGE, + "dynamic_tooltip_notification_panel/locked": T.IMAGE, + "dynamic_tooltip_notification_panel/dyanmic_tooltip_popup_panel": T.IMAGE, + "text_body_focus_border_for_controller_button": T.BUTTON, + "text_body_focus_border_for_controller_button/default": T.PANEL, + "text_body_focus_border_for_controller_button/hover": T.PANEL, + "text_body_focus_border_for_controller_button/hover/focus_border": T.IMAGE, + "text_body_focus_border_for_controller_button/text_control": T.UNKNOWN, } export type CommonDialogsType = { - standard_title_label: T.LABEL - title_label: T.PANEL - "title_label/common_dialogs_0": T.LABEL - "title_label/common_dialogs_1": T.UNKNOWN - main_panel_three_buttons: T.PANEL - "main_panel_three_buttons/common_panel": T.PANEL - "main_panel_three_buttons/title_label": T.PANEL - "main_panel_three_buttons/panel_indent": T.PANEL - "main_panel_three_buttons/panel_indent/inside_header_panel": T.UNKNOWN - "main_panel_three_buttons/top_button_panel": T.UNKNOWN - "main_panel_three_buttons/middle_button_panel": T.UNKNOWN - "main_panel_three_buttons/bottom_button_panel": T.UNKNOWN - main_panel_two_buttons: T.PANEL - "main_panel_two_buttons/common_panel": T.PANEL - "main_panel_two_buttons/title_label": T.PANEL - "main_panel_two_buttons/panel_indent": T.PANEL - "main_panel_two_buttons/panel_indent/inside_header_panel": T.UNKNOWN - "main_panel_two_buttons/top_button_panel": T.UNKNOWN - "main_panel_two_buttons/bottom_button_panel": T.UNKNOWN - main_panel_one_button: T.PANEL - "main_panel_one_button/common_panel": T.PANEL - "main_panel_one_button/title_label": T.PANEL - "main_panel_one_button/panel_indent": T.PANEL - "main_panel_one_button/panel_indent/inside_header_panel": T.UNKNOWN - "main_panel_one_button/bottom_button_panel": T.UNKNOWN - main_panel_no_buttons: T.PANEL - "main_panel_no_buttons/common_panel": T.PANEL - "main_panel_no_buttons/title_label": T.PANEL - "main_panel_no_buttons/panel_indent": T.PANEL - "main_panel_no_buttons/panel_indent/inside_header_panel": T.UNKNOWN - main_panel_no_title_no_buttons: T.PANEL - "main_panel_no_title_no_buttons/common_panel": T.PANEL - "main_panel_no_title_no_buttons/panel_indent": T.PANEL - "main_panel_no_title_no_buttons/panel_indent/inside_header_panel": T.UNKNOWN - main_panel_small_title_one_button: T.PANEL - "main_panel_small_title_one_button/common_panel": T.PANEL - "main_panel_small_title_one_button/title_label": T.PANEL - "main_panel_small_title_one_button/panel_indent": T.PANEL - "main_panel_small_title_one_button/panel_indent/inside_header_panel": T.UNKNOWN - "main_panel_small_title_one_button/bottom_button_panel": T.UNKNOWN - main_panel: T.PANEL - "main_panel/modal_background_image": T.UNKNOWN - "main_panel/panel_indent": T.PANEL - "main_panel/panel_indent/inside_header_panel": T.UNKNOWN - form_fitting_main_panel_no_buttons: T.PANEL - "form_fitting_main_panel_no_buttons/common_panel": T.PANEL - common_panel: T.PANEL - "common_panel/bg_image": T.UNKNOWN - dialog_background_common: T.IMAGE - dialog_background_thin: T.IMAGE - flat_solid_background: T.IMAGE - dialog_background_hollow_common: T.IMAGE - "dialog_background_hollow_common/control": T.IMAGE - "dialog_background_hollow_common/control/inside_header_panel": T.UNKNOWN - "dialog_background_hollow_common/control/close_button_holder": T.STACK_PANEL - "dialog_background_hollow_common/control/title_label": T.PANEL - common_close_button_holder: T.STACK_PANEL - "common_close_button_holder/close": T.BUTTON - "common_close_button_holder/compact_close": T.BUTTON - dialog_background_opaque: T.IMAGE - dialog_background_opaque_with_child: T.IMAGE - dialog_background_hollow_1: T.IMAGE - dialog_background_hollow_2: T.IMAGE - dialog_background_hollow_3: T.IMAGE - dialog_background_hollow_4: T.IMAGE - dialog_background_hollow_6: T.UNKNOWN - full_screen_background: T.PANEL - "full_screen_background/background": T.UNKNOWN - background_image: T.IMAGE + "standard_title_label": T.LABEL, + "title_label": T.PANEL, + "title_label/common_dialogs_0": T.LABEL, + "title_label/common_dialogs_1": T.UNKNOWN, + "main_panel_three_buttons": T.PANEL, + "main_panel_three_buttons/common_panel": T.PANEL, + "main_panel_three_buttons/title_label": T.PANEL, + "main_panel_three_buttons/panel_indent": T.PANEL, + "main_panel_three_buttons/panel_indent/inside_header_panel": T.UNKNOWN, + "main_panel_three_buttons/top_button_panel": T.UNKNOWN, + "main_panel_three_buttons/middle_button_panel": T.UNKNOWN, + "main_panel_three_buttons/bottom_button_panel": T.UNKNOWN, + "main_panel_two_buttons": T.PANEL, + "main_panel_two_buttons/common_panel": T.PANEL, + "main_panel_two_buttons/title_label": T.PANEL, + "main_panel_two_buttons/panel_indent": T.PANEL, + "main_panel_two_buttons/panel_indent/inside_header_panel": T.UNKNOWN, + "main_panel_two_buttons/top_button_panel": T.UNKNOWN, + "main_panel_two_buttons/bottom_button_panel": T.UNKNOWN, + "main_panel_one_button": T.PANEL, + "main_panel_one_button/common_panel": T.PANEL, + "main_panel_one_button/title_label": T.PANEL, + "main_panel_one_button/panel_indent": T.PANEL, + "main_panel_one_button/panel_indent/inside_header_panel": T.UNKNOWN, + "main_panel_one_button/bottom_button_panel": T.UNKNOWN, + "main_panel_no_buttons": T.PANEL, + "main_panel_no_buttons/common_panel": T.PANEL, + "main_panel_no_buttons/title_label": T.PANEL, + "main_panel_no_buttons/panel_indent": T.PANEL, + "main_panel_no_buttons/panel_indent/inside_header_panel": T.UNKNOWN, + "main_panel_no_title_no_buttons": T.PANEL, + "main_panel_no_title_no_buttons/common_panel": T.PANEL, + "main_panel_no_title_no_buttons/panel_indent": T.PANEL, + "main_panel_no_title_no_buttons/panel_indent/inside_header_panel": T.UNKNOWN, + "main_panel_small_title_one_button": T.PANEL, + "main_panel_small_title_one_button/common_panel": T.PANEL, + "main_panel_small_title_one_button/title_label": T.PANEL, + "main_panel_small_title_one_button/panel_indent": T.PANEL, + "main_panel_small_title_one_button/panel_indent/inside_header_panel": T.UNKNOWN, + "main_panel_small_title_one_button/bottom_button_panel": T.UNKNOWN, + "main_panel": T.PANEL, + "main_panel/modal_background_image": T.UNKNOWN, + "main_panel/panel_indent": T.PANEL, + "main_panel/panel_indent/inside_header_panel": T.UNKNOWN, + "form_fitting_main_panel_no_buttons": T.PANEL, + "form_fitting_main_panel_no_buttons/common_panel": T.PANEL, + "common_panel": T.PANEL, + "common_panel/bg_image": T.UNKNOWN, + "dialog_background_common": T.IMAGE, + "dialog_background_thin": T.IMAGE, + "flat_solid_background": T.IMAGE, + "dialog_background_hollow_common": T.IMAGE, + "dialog_background_hollow_common/control": T.IMAGE, + "dialog_background_hollow_common/control/inside_header_panel": T.UNKNOWN, + "dialog_background_hollow_common/control/close_button_holder": T.STACK_PANEL, + "dialog_background_hollow_common/control/title_label": T.PANEL, + "common_close_button_holder": T.STACK_PANEL, + "common_close_button_holder/close": T.BUTTON, + "common_close_button_holder/compact_close": T.BUTTON, + "dialog_background_opaque": T.IMAGE, + "dialog_background_opaque_with_child": T.IMAGE, + "dialog_background_hollow_1": T.IMAGE, + "dialog_background_hollow_2": T.IMAGE, + "dialog_background_hollow_3": T.IMAGE, + "dialog_background_hollow_4": T.IMAGE, + "dialog_background_hollow_6": T.UNKNOWN, + "full_screen_background": T.PANEL, + "full_screen_background/background": T.UNKNOWN, + "background_image": T.IMAGE, } export type CommonTabsType = { - empty_tab_content: T.PANEL - tab_image: T.IMAGE - tab_panel: T.PANEL - "tab_panel/tab_image": T.UNKNOWN - "tab_panel/tab_content_sizer": T.PANEL - "tab_panel/tab_content_sizer/tab_content": T.UNKNOWN - base_tab: T.PANEL - tab_top: T.PANEL - tab_left: T.PANEL - tab_right: T.PANEL - pocket_tab_left: T.PANEL - pocket_tab_right: T.PANEL - pocket_tab_close_button: T.IMAGE - "pocket_tab_close_button/close_button": T.BUTTON - pocket_tab_help_button: T.IMAGE - "pocket_tab_help_button/help_button": T.BUTTON - pocket_tab_close_and_help_button: T.IMAGE - "pocket_tab_close_and_help_button/close_button": T.BUTTON - "pocket_tab_close_and_help_button/help_button": T.BUTTON - tab_close_and_help_button: T.IMAGE - "tab_close_and_help_button/close_button": T.BUTTON - "tab_close_and_help_button/help_button": T.BUTTON + "empty_tab_content": T.PANEL, + "tab_image": T.IMAGE, + "tab_panel": T.PANEL, + "tab_panel/tab_image": T.UNKNOWN, + "tab_panel/tab_content_sizer": T.PANEL, + "tab_panel/tab_content_sizer/tab_content": T.UNKNOWN, + "base_tab": T.PANEL, + "tab_top": T.PANEL, + "tab_left": T.PANEL, + "tab_right": T.PANEL, + "pocket_tab_left": T.PANEL, + "pocket_tab_right": T.PANEL, + "pocket_tab_close_button": T.IMAGE, + "pocket_tab_close_button/close_button": T.BUTTON, + "pocket_tab_help_button": T.IMAGE, + "pocket_tab_help_button/help_button": T.BUTTON, + "pocket_tab_close_and_help_button": T.IMAGE, + "pocket_tab_close_and_help_button/close_button": T.BUTTON, + "pocket_tab_close_and_help_button/help_button": T.BUTTON, + "tab_close_and_help_button": T.IMAGE, + "tab_close_and_help_button/close_button": T.BUTTON, + "tab_close_and_help_button/help_button": T.BUTTON, } export type CommonTogglesType = { - content_toggle_image_panel: T.PANEL - "content_toggle_image_panel/icon": T.IMAGE - content_toggle_label_panel: T.PANEL - "content_toggle_label_panel/toggle_label": T.LABEL - content_toggle_icon_panel: T.PANEL - "content_toggle_icon_panel/content_toggle_image": T.IMAGE - toggle_content_panel: T.STACK_PANEL - "toggle_content_panel/toggle_image_panel": T.UNKNOWN - "toggle_content_panel/toggle_image_padding_label": T.PANEL - "toggle_content_panel/toggle_label_panel": T.UNKNOWN - "toggle_content_panel/toggle_label_padding_toggle_icon": T.PANEL - "toggle_content_panel/toggle_icon": T.PANEL - vertical_form_fitting_toggle_content: T.STACK_PANEL - "vertical_form_fitting_toggle_content/toggle_image_panel": T.UNKNOWN - "vertical_form_fitting_toggle_content/toggle_image_padding_label": T.PANEL - "vertical_form_fitting_toggle_content/toggle_label_panel": T.UNKNOWN - "vertical_form_fitting_toggle_content/toggle_label_padding_toggle_icon": T.PANEL - "vertical_form_fitting_toggle_content/toggle_icon": T.PANEL - light_text_toggle: T.PANEL - light_image_toggle: T.PANEL - light_content_toggle: T.PANEL - dark_ui_toggle: T.PANEL - dark_text_toggle: T.PANEL - dark_image_toggle: T.PANEL - dark_content_toggle: T.PANEL - dark_vertical_template_toggle: T.PANEL - dark_vertical_form_fitting_content_toggle: T.PANEL - "dark_vertical_form_fitting_content_toggle/dark_content_toggle": T.PANEL - dark_template_toggle: T.PANEL - light_template_toggle: T.PANEL - light_ui_toggle: T.PANEL - switch_toggle: T.PANEL - light_text_toggle_collection: T.PANEL - light_image_toggle_collection: T.PANEL - dark_text_toggle_collection: T.PANEL - dark_image_toggle_collection: T.PANEL - dark_ui_toggle_collection: T.PANEL - light_ui_toggle_collection: T.PANEL - switch_toggle_collection: T.PANEL - toggle_state_panel: T.PANEL - "toggle_state_panel/button_panel": T.UNKNOWN - toggle_unchecked: T.PANEL - toggle_checked: T.PANEL - toggle_unchecked_hover: T.PANEL - toggle_checked_hover: T.PANEL - toggle_locked: T.PANEL - toggle_unchecked_locked: T.PANEL - toggle_checked_locked: T.PANEL - toggle_unchecked_hover_with_chevron: T.PANEL - toggle_checked_hover_with_chevron: T.PANEL - toggle_image: T.PANEL - "toggle_image/image": T.UNKNOWN - radio_off_icon: T.IMAGE - radio_off_hover_icon: T.IMAGE - radio_on_icon: T.IMAGE - radio_on_hover_icon: T.IMAGE - check_box_button_toggle_image: T.IMAGE - checkbox_button_checked_state: T.IMAGE - checkbox_button_unchecked_state: T.IMAGE - checkbox_button_checked_hover_state: T.IMAGE - checkbox_button_unchecked_hover_state: T.IMAGE - checkbox_button_checked_locked_state: T.IMAGE - checkbox_button_unchecked_locked_state: T.IMAGE - toggle_checkbox_unchecked: T.PANEL - toggle_checkbox_checked: T.PANEL - toggle_checkbox_unchecked_hover: T.PANEL - toggle_checkbox_checked_hover: T.PANEL - toggle_checkbox_unchecked_locked: T.PANEL - toggle_checkbox_checked_locked: T.PANEL - check_box_button_ui_panel: T.PANEL - "check_box_button_ui_panel/toggle_image": T.PANEL - "check_box_button_ui_panel/toggle_image/button_content": T.PANEL - "check_box_button_ui_panel/toggle_image/border": T.IMAGE - "check_box_button_ui_panel/toggle_image/checkbox_image": T.PANEL - "check_box_button_ui_panel/toggle_image/checkbox_image/image": T.UNKNOWN - button_and_checkbox_template: T.PANEL - button_with_checkbox_toggle: T.PANEL + "content_toggle_image_panel": T.PANEL, + "content_toggle_image_panel/icon": T.IMAGE, + "content_toggle_label_panel": T.PANEL, + "content_toggle_label_panel/toggle_label": T.LABEL, + "content_toggle_icon_panel": T.PANEL, + "content_toggle_icon_panel/content_toggle_image": T.IMAGE, + "toggle_content_panel": T.STACK_PANEL, + "toggle_content_panel/toggle_image_panel": T.UNKNOWN, + "toggle_content_panel/toggle_image_padding_label": T.PANEL, + "toggle_content_panel/toggle_label_panel": T.UNKNOWN, + "toggle_content_panel/toggle_label_padding_toggle_icon": T.PANEL, + "toggle_content_panel/toggle_icon": T.PANEL, + "vertical_form_fitting_toggle_content": T.STACK_PANEL, + "vertical_form_fitting_toggle_content/toggle_image_panel": T.UNKNOWN, + "vertical_form_fitting_toggle_content/toggle_image_padding_label": T.PANEL, + "vertical_form_fitting_toggle_content/toggle_label_panel": T.UNKNOWN, + "vertical_form_fitting_toggle_content/toggle_label_padding_toggle_icon": T.PANEL, + "vertical_form_fitting_toggle_content/toggle_icon": T.PANEL, + "light_text_toggle": T.PANEL, + "light_image_toggle": T.PANEL, + "light_content_toggle": T.PANEL, + "dark_ui_toggle": T.PANEL, + "dark_text_toggle": T.PANEL, + "dark_image_toggle": T.PANEL, + "dark_content_toggle": T.PANEL, + "dark_vertical_template_toggle": T.PANEL, + "dark_vertical_form_fitting_content_toggle": T.PANEL, + "dark_vertical_form_fitting_content_toggle/dark_content_toggle": T.PANEL, + "dark_template_toggle": T.PANEL, + "light_template_toggle": T.PANEL, + "light_ui_toggle": T.PANEL, + "switch_toggle": T.PANEL, + "light_text_toggle_collection": T.PANEL, + "light_image_toggle_collection": T.PANEL, + "dark_text_toggle_collection": T.PANEL, + "dark_image_toggle_collection": T.PANEL, + "dark_ui_toggle_collection": T.PANEL, + "light_ui_toggle_collection": T.PANEL, + "switch_toggle_collection": T.PANEL, + "toggle_state_panel": T.PANEL, + "toggle_state_panel/button_panel": T.UNKNOWN, + "toggle_unchecked": T.PANEL, + "toggle_checked": T.PANEL, + "toggle_unchecked_hover": T.PANEL, + "toggle_checked_hover": T.PANEL, + "toggle_locked": T.PANEL, + "toggle_unchecked_locked": T.PANEL, + "toggle_checked_locked": T.PANEL, + "toggle_unchecked_hover_with_chevron": T.PANEL, + "toggle_checked_hover_with_chevron": T.PANEL, + "toggle_image": T.PANEL, + "toggle_image/image": T.UNKNOWN, + "radio_off_icon": T.IMAGE, + "radio_off_hover_icon": T.IMAGE, + "radio_on_icon": T.IMAGE, + "radio_on_hover_icon": T.IMAGE, + "check_box_button_toggle_image": T.IMAGE, + "checkbox_button_checked_state": T.IMAGE, + "checkbox_button_unchecked_state": T.IMAGE, + "checkbox_button_checked_hover_state": T.IMAGE, + "checkbox_button_unchecked_hover_state": T.IMAGE, + "checkbox_button_checked_locked_state": T.IMAGE, + "checkbox_button_unchecked_locked_state": T.IMAGE, + "toggle_checkbox_unchecked": T.PANEL, + "toggle_checkbox_checked": T.PANEL, + "toggle_checkbox_unchecked_hover": T.PANEL, + "toggle_checkbox_checked_hover": T.PANEL, + "toggle_checkbox_unchecked_locked": T.PANEL, + "toggle_checkbox_checked_locked": T.PANEL, + "check_box_button_ui_panel": T.PANEL, + "check_box_button_ui_panel/toggle_image": T.PANEL, + "check_box_button_ui_panel/toggle_image/button_content": T.PANEL, + "check_box_button_ui_panel/toggle_image/border": T.IMAGE, + "check_box_button_ui_panel/toggle_image/checkbox_image": T.PANEL, + "check_box_button_ui_panel/toggle_image/checkbox_image/image": T.UNKNOWN, + "button_and_checkbox_template": T.PANEL, + "button_with_checkbox_toggle": T.PANEL, } export type FriendsbuttonType = { - friendsdrawer_animated_icon: T.IMAGE - profilepicture: T.CUSTOM - persona_icon_with_border: T.PANEL - "persona_icon_with_border/profile_icon": T.CUSTOM - "persona_icon_with_border/border_black": T.IMAGE - friendsdrawer_persona_icons: T.STACK_PANEL - social_button_stackpanel: T.STACK_PANEL - "social_button_stackpanel/image_panel": T.PANEL - "social_button_stackpanel/image_panel/social_icon": T.IMAGE - social_button_hover_stackpanel: T.STACK_PANEL - self_persona_stackpanel: T.STACK_PANEL - "self_persona_stackpanel/self_icon": T.PANEL - single_friend_persona_stackpanel: T.STACK_PANEL - "single_friend_persona_stackpanel/self_icon": T.STACK_PANEL - "single_friend_persona_stackpanel/friend_one_icon": T.PANEL - many_friend_persona_stackpanel: T.STACK_PANEL - "many_friend_persona_stackpanel/self_icon": T.STACK_PANEL - "many_friend_persona_stackpanel/extra_friends_text_panel": T.PANEL - "many_friend_persona_stackpanel/extra_friends_text_panel/background": T.IMAGE - "many_friend_persona_stackpanel/extra_friends_text_panel/extra_members_label": T.LABEL - "many_friend_persona_stackpanel/extra_friends_text_panel/border_black": T.IMAGE - button: T.BUTTON - "button/default": T.UNKNOWN - "button/hover": T.UNKNOWN - "button/pressed": T.UNKNOWN - "button/locked": T.UNKNOWN - social_factory_stackpanel_default: T.STACK_PANEL - social_factory_stackpanel_hovered: T.STACK_PANEL - friendsdrawer_button_content: T.STACK_PANEL - "friendsdrawer_button_content/social_factory_stackpanel": T.UNKNOWN - "friendsdrawer_button_content/padding_middle": T.PANEL - "friendsdrawer_button_content/vertically_centered_text": T.STACK_PANEL - "friendsdrawer_button_content/vertically_centered_text/top_padding": T.PANEL - "friendsdrawer_button_content/vertically_centered_text/profile_button_label": T.LABEL - "friendsdrawer_button_content/padding_right": T.PANEL - friendsdrawer_hover_button_content: T.STACK_PANEL - friends_drawer_popup: T.BUTTON + "friendsdrawer_animated_icon": T.IMAGE, + "profilepicture": T.CUSTOM, + "persona_icon_with_border": T.PANEL, + "persona_icon_with_border/profile_icon": T.CUSTOM, + "persona_icon_with_border/border_black": T.IMAGE, + "friendsdrawer_persona_icons": T.STACK_PANEL, + "social_button_stackpanel": T.STACK_PANEL, + "social_button_stackpanel/image_panel": T.PANEL, + "social_button_stackpanel/image_panel/social_icon": T.IMAGE, + "social_button_hover_stackpanel": T.STACK_PANEL, + "self_persona_stackpanel": T.STACK_PANEL, + "self_persona_stackpanel/self_icon": T.PANEL, + "single_friend_persona_stackpanel": T.STACK_PANEL, + "single_friend_persona_stackpanel/self_icon": T.STACK_PANEL, + "single_friend_persona_stackpanel/friend_one_icon": T.PANEL, + "many_friend_persona_stackpanel": T.STACK_PANEL, + "many_friend_persona_stackpanel/self_icon": T.STACK_PANEL, + "many_friend_persona_stackpanel/extra_friends_text_panel": T.PANEL, + "many_friend_persona_stackpanel/extra_friends_text_panel/background": T.IMAGE, + "many_friend_persona_stackpanel/extra_friends_text_panel/extra_members_label": T.LABEL, + "many_friend_persona_stackpanel/extra_friends_text_panel/border_black": T.IMAGE, + "button": T.BUTTON, + "button/default": T.UNKNOWN, + "button/hover": T.UNKNOWN, + "button/pressed": T.UNKNOWN, + "button/locked": T.UNKNOWN, + "social_factory_stackpanel_default": T.STACK_PANEL, + "social_factory_stackpanel_hovered": T.STACK_PANEL, + "friendsdrawer_button_content": T.STACK_PANEL, + "friendsdrawer_button_content/social_factory_stackpanel": T.UNKNOWN, + "friendsdrawer_button_content/padding_middle": T.PANEL, + "friendsdrawer_button_content/vertically_centered_text": T.STACK_PANEL, + "friendsdrawer_button_content/vertically_centered_text/top_padding": T.PANEL, + "friendsdrawer_button_content/vertically_centered_text/profile_button_label": T.LABEL, + "friendsdrawer_button_content/padding_right": T.PANEL, + "friendsdrawer_hover_button_content": T.STACK_PANEL, + "friends_drawer_popup": T.BUTTON, } export type IconbuttonType = { - iconbutton_animated_icon: T.IMAGE - button: T.BUTTON - iconbutton_button_content: T.STACK_PANEL - "iconbutton_button_content/icon_wrapper": T.PANEL - "iconbutton_button_content/icon_wrapper/icon_with_border": T.PANEL - "iconbutton_button_content/icon_wrapper/icon_with_border/iconbutton_animated_icon": T.IMAGE - "iconbutton_button_content/icon_wrapper/icon_with_border/border_black": T.IMAGE - "iconbutton_button_content/padding_middle": T.PANEL - "iconbutton_button_content/vertically_centered_text": T.STACK_PANEL - "iconbutton_button_content/vertically_centered_text/top_padding": T.PANEL - "iconbutton_button_content/vertically_centered_text/profile_button_label": T.LABEL + "iconbutton_animated_icon": T.IMAGE, + "button": T.BUTTON, + "iconbutton_button_content": T.STACK_PANEL, + "iconbutton_button_content/icon_wrapper": T.PANEL, + "iconbutton_button_content/icon_wrapper/icon_with_border": T.PANEL, + "iconbutton_button_content/icon_wrapper/icon_with_border/iconbutton_animated_icon": T.IMAGE, + "iconbutton_button_content/icon_wrapper/icon_with_border/border_black": T.IMAGE, + "iconbutton_button_content/padding_middle": T.PANEL, + "iconbutton_button_content/vertically_centered_text": T.STACK_PANEL, + "iconbutton_button_content/vertically_centered_text/top_padding": T.PANEL, + "iconbutton_button_content/vertically_centered_text/profile_button_label": T.LABEL, } export type UpdateDimensionsType = { - update_dimensions_update_and_play_button: T.BUTTON - update_dimensions_description: T.LABEL - update_dimensions_label_panel: T.PANEL - make_backup_checkbox: T.PANEL - "make_backup_checkbox/header_description_stack_panel": T.STACK_PANEL - "make_backup_checkbox/header_description_stack_panel/checkbox_visuals": T.PANEL - "make_backup_checkbox/header_description_stack_panel/buffer_panel": T.PANEL - "make_backup_checkbox/header_description_stack_panel/buffer_panel/label": T.LABEL - "make_backup_checkbox/header_description_stack_panel/another_panel": T.PANEL - world_upgrade: T.IMAGE - update_dimensions_dialog: T.PANEL - "update_dimensions_dialog/common_panel": T.PANEL - "update_dimensions_dialog/title_label": T.PANEL - "update_dimensions_dialog/panel_indent": T.PANEL - "update_dimensions_dialog/panel_indent/inside_header_panel": T.UNKNOWN - "update_dimensions_dialog/top_button_panel": T.UNKNOWN - "update_dimensions_dialog/bottom_button_panel": T.UNKNOWN - "update_dimensions_dialog/world_upgrade_image": T.IMAGE - gamepad_helpers: T.PANEL - "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL - update_dimensions_screen: T.SCREEN - update_dimensions_screen_content: T.PANEL - "update_dimensions_screen_content/update_dimensions_dialog": T.PANEL - "update_dimensions_screen_content/gamepad_helpers": T.PANEL + "update_dimensions_update_and_play_button": T.BUTTON, + "update_dimensions_description": T.LABEL, + "update_dimensions_label_panel": T.PANEL, + "make_backup_checkbox": T.PANEL, + "make_backup_checkbox/header_description_stack_panel": T.STACK_PANEL, + "make_backup_checkbox/header_description_stack_panel/checkbox_visuals": T.PANEL, + "make_backup_checkbox/header_description_stack_panel/buffer_panel": T.PANEL, + "make_backup_checkbox/header_description_stack_panel/buffer_panel/label": T.LABEL, + "make_backup_checkbox/header_description_stack_panel/another_panel": T.PANEL, + "world_upgrade": T.IMAGE, + "update_dimensions_dialog": T.PANEL, + "update_dimensions_dialog/common_panel": T.PANEL, + "update_dimensions_dialog/title_label": T.PANEL, + "update_dimensions_dialog/panel_indent": T.PANEL, + "update_dimensions_dialog/panel_indent/inside_header_panel": T.UNKNOWN, + "update_dimensions_dialog/top_button_panel": T.UNKNOWN, + "update_dimensions_dialog/bottom_button_panel": T.UNKNOWN, + "update_dimensions_dialog/world_upgrade_image": T.IMAGE, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL, + "update_dimensions_screen": T.SCREEN, + "update_dimensions_screen_content": T.PANEL, + "update_dimensions_screen_content/update_dimensions_dialog": T.PANEL, + "update_dimensions_screen_content/gamepad_helpers": T.PANEL, } export type UpdateVersionType = { - update_version_screen: T.SCREEN - update_version_popup: T.PANEL - background: T.IMAGE - update_version_content: T.STACK_PANEL - "update_version_content/top_of_version_panel": T.STACK_PANEL - "update_version_content/spacer_1px": T.PANEL - "update_version_content/update_body_text": T.LABEL - "update_version_content/spacer_1px_2": T.PANEL - patch_notes_panel: T.IMAGE - "patch_notes_panel/patch_notes_text": T.PANEL - picture_and_patch_notes: T.STACK_PANEL - "picture_and_patch_notes/patch_notes_image_outline": T.IMAGE - "picture_and_patch_notes/patch_notes_image_outline/patch_notes_image": T.IMAGE - "picture_and_patch_notes/patch_notes_panel": T.IMAGE - patch_notes: T.PANEL - "patch_notes/patch_notes_text": T.LABEL - update_body_text: T.LABEL - update_button: T.BUTTON + "update_version_screen": T.SCREEN, + "update_version_popup": T.PANEL, + "background": T.IMAGE, + "update_version_content": T.STACK_PANEL, + "update_version_content/top_of_version_panel": T.STACK_PANEL, + "update_version_content/spacer_1px": T.PANEL, + "update_version_content/update_body_text": T.LABEL, + "update_version_content/spacer_1px_2": T.PANEL, + "patch_notes_panel": T.IMAGE, + "patch_notes_panel/patch_notes_text": T.PANEL, + "picture_and_patch_notes": T.STACK_PANEL, + "picture_and_patch_notes/patch_notes_image_outline": T.IMAGE, + "picture_and_patch_notes/patch_notes_image_outline/patch_notes_image": T.IMAGE, + "picture_and_patch_notes/patch_notes_panel": T.IMAGE, + "patch_notes": T.PANEL, + "patch_notes/patch_notes_text": T.LABEL, + "update_body_text": T.LABEL, + "update_button": T.BUTTON, } export type WorldRecoveryType = { - world_recovery_screen: T.SCREEN - world_recovery_screen_content: T.PANEL - "world_recovery_screen_content/dialog": T.PANEL - description_panel: T.PANEL - scrolling_panel: T.PANEL - description_label: T.LABEL - button_panel: T.BUTTON - background: T.IMAGE + "world_recovery_screen": T.SCREEN, + "world_recovery_screen_content": T.PANEL, + "world_recovery_screen_content/dialog": T.PANEL, + "description_panel": T.PANEL, + "scrolling_panel": T.PANEL, + "description_label": T.LABEL, + "button_panel": T.BUTTON, + "background": T.IMAGE, } export type WorldTemplatesType = { - horizontal_padding: T.PANEL - world_icon: T.IMAGE - realms_icon: T.IMAGE - label_background: T.IMAGE - lock_icon: T.IMAGE - realms_plus_icon: T.IMAGE - new_world_toggle: T.PANEL - new_realm_toggle: T.PANEL - world_button_content: T.STACK_PANEL - "world_button_content/horizontal_padding_0": T.PANEL - "world_button_content/icon_panel": T.PANEL - "world_button_content/horizontal_padding_1": T.PANEL - "world_button_content/world_button_label_panel": T.PANEL - "world_button_content/world_button_label_panel/world_button_label": T.LABEL - "world_button_content/horizontal_padding_2": T.PANEL - world_button_label: T.LABEL - common_button_template: T.BUTTON - generate_random: T.BUTTON - help_button: T.BUTTON - grid_button_content_template: T.STACK_PANEL - "grid_button_content_template/content": T.UNKNOWN - label_content_template: T.STACK_PANEL - "label_content_template/label_panel": T.PANEL - "label_content_template/label_panel/label_panel_layout": T.PANEL - "label_content_template/label_panel/label_panel_layout/label": T.LABEL - my_templates_label: T.STACK_PANEL - realms_plus_templates_label: T.STACK_PANEL - custom_templates_label: T.STACK_PANEL - generate_random_button: T.STACK_PANEL - realms_templates_info: T.IMAGE - "realms_templates_info/info_label": T.LABEL - world_list_text: T.LABEL - world_template_screenshot: T.IMAGE - "world_template_screenshot/picture": T.IMAGE - world_template_name: T.LABEL - world_template_description: T.LABEL - world_template_version: T.LABEL - template_download_text: T.LABEL - world_template_text_panel: T.PANEL - "world_template_text_panel/text_indent": T.PANEL - "world_template_text_panel/text_indent/top_side": T.STACK_PANEL - "world_template_text_panel/text_indent/top_side/world_template_name": T.LABEL - "world_template_text_panel/text_indent/top_side/download_text_label": T.LABEL - "world_template_text_panel/text_indent/bottom_side": T.STACK_PANEL - "world_template_text_panel/text_indent/bottom_side/csb_icon": T.PANEL - "world_template_text_panel/text_indent/bottom_side/pad": T.PANEL - "world_template_text_panel/text_indent/bottom_side/world_template_description": T.LABEL - "world_template_text_panel/text_indent/bottom_side/world_template_version": T.LABEL - csb_banner: T.PANEL - "csb_banner/banner": T.IMAGE - world_template_content_panel: T.STACK_PANEL - "world_template_content_panel/world_template_screenshot": T.IMAGE - "world_template_content_panel/world_template_text_panel": T.PANEL - "world_template_content_panel/lock_panel": T.PANEL - "world_template_content_panel/lock_panel/lock_icon": T.IMAGE - world_template_item_button: T.BUTTON - realms_plus_template_item_button: T.BUTTON - world_template_item: T.STACK_PANEL - "world_template_item/world_template_item_button": T.BUTTON - realms_plus_template_item: T.STACK_PANEL - "realms_plus_template_item/realms_plus_template_item_button": T.BUTTON - world_template_item_grid: T.GRID - see_more_templates_button: T.BUTTON - suggested_see_more_button: T.BUTTON - realms_plus_see_more_button: T.BUTTON - world_template_inventory_see_more_button: T.BUTTON - custom_world_template_see_more_button: T.BUTTON - world_template_section_factory: T.STACK_PANEL - suggested_template_section_factory: T.STACK_PANEL - realms_plus_template_section_factory: T.STACK_PANEL - world_template_inventory_section_factory: T.STACK_PANEL - custom_world_template_section_factory: T.STACK_PANEL - custom_world_template_item_grid: T.GRID - no_owned_templates_text_label: T.LABEL - no_owned_templates_text: T.LABEL - no_template_content_owned: T.IMAGE - "no_template_content_owned/no_template_content_owned_text_panel": T.LABEL - common_scrolling_panel: T.PANEL - common_content: T.PANEL - scrolling_offsets: T.PANEL - template_scroll_content: T.PANEL - "template_scroll_content/scrolling_panel": T.PANEL - common_scroll_pane: T.PANEL - template_scroll_panel: T.PANEL - "template_scroll_panel/world_template_screen_content_stack_panel": T.STACK_PANEL - world_list_grids_stack: T.STACK_PANEL - "world_list_grids_stack/template_list_panel": T.STACK_PANEL - "world_list_grids_stack/template_list_panel/my_templates_label_panel": T.STACK_PANEL - "world_list_grids_stack/template_list_panel/world_template_inventory_section_factory": T.STACK_PANEL - "world_list_grids_stack/template_list_panel/template_bottom_padding": T.PANEL - "world_list_grids_stack/store_panel": T.PANEL - "world_list_grids_stack/store_panel/loading_panel": T.PANEL - "world_list_grids_stack/store_panel/store_grids": T.STACK_PANEL - "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel": T.STACK_PANEL - "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_label_panel": T.STACK_PANEL - "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_section_factory": T.STACK_PANEL - "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_bottom_padding": T.PANEL - "world_list_grids_stack/store_panel/store_grids/suggested_content_panel": T.STACK_PANEL - "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_content_offers_title_label": T.LABEL - "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_section_factory": T.STACK_PANEL - "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_bottom_padding": T.PANEL - "world_list_grids_stack/custom_template_panel": T.STACK_PANEL - "world_list_grids_stack/custom_template_panel/custom_templates_label_panel": T.STACK_PANEL - "world_list_grids_stack/custom_template_panel/custom_world_template_section_factory": T.STACK_PANEL - "world_list_grids_stack/custom_template_panel/custom_template_list_bottom_padding": T.PANEL - "world_list_grids_stack/realms_info_panel": T.STACK_PANEL - "world_list_grids_stack/realms_info_panel/padding": T.PANEL - "world_list_grids_stack/realms_info_panel/realms_templates_info": T.IMAGE - "world_list_grids_stack/realms_info_panel/open_uri_button": T.BUTTON - world_list_grid_content: T.PANEL - "world_list_grid_content/world_list_grids_stack": T.STACK_PANEL - world_template_screen_content_stack_panel: T.STACK_PANEL - "world_template_screen_content_stack_panel/padding_0": T.PANEL - "world_template_screen_content_stack_panel/crossplatform_disabled_panel": T.IMAGE - "world_template_screen_content_stack_panel/crossplatform_disabled_panel/disable_text": T.LABEL - "world_template_screen_content_stack_panel/crossplatform_disable_spacer": T.PANEL - "world_template_screen_content_stack_panel/generate_random_panel": T.STACK_PANEL - "world_template_screen_content_stack_panel/generate_random_button_bottom_padding": T.PANEL - "world_template_screen_content_stack_panel/world_list_grid_content": T.PANEL - open_account_setting_button: T.BUTTON - world_templates_screen: T.SCREEN - world_templates_picker_content: T.PANEL - "world_templates_picker_content/background": T.STACK_PANEL + "horizontal_padding": T.PANEL, + "world_icon": T.IMAGE, + "realms_icon": T.IMAGE, + "label_background": T.IMAGE, + "lock_icon": T.IMAGE, + "realms_plus_icon": T.IMAGE, + "new_world_toggle": T.PANEL, + "new_realm_toggle": T.PANEL, + "world_button_content": T.STACK_PANEL, + "world_button_content/horizontal_padding_0": T.PANEL, + "world_button_content/icon_panel": T.PANEL, + "world_button_content/horizontal_padding_1": T.PANEL, + "world_button_content/world_button_label_panel": T.PANEL, + "world_button_content/world_button_label_panel/world_button_label": T.LABEL, + "world_button_content/horizontal_padding_2": T.PANEL, + "world_button_label": T.LABEL, + "common_button_template": T.BUTTON, + "generate_random": T.BUTTON, + "help_button": T.BUTTON, + "grid_button_content_template": T.STACK_PANEL, + "grid_button_content_template/content": T.UNKNOWN, + "label_content_template": T.STACK_PANEL, + "label_content_template/label_panel": T.PANEL, + "label_content_template/label_panel/label_panel_layout": T.PANEL, + "label_content_template/label_panel/label_panel_layout/label": T.LABEL, + "my_templates_label": T.STACK_PANEL, + "realms_plus_templates_label": T.STACK_PANEL, + "custom_templates_label": T.STACK_PANEL, + "generate_random_button": T.STACK_PANEL, + "realms_templates_info": T.IMAGE, + "realms_templates_info/info_label": T.LABEL, + "world_list_text": T.LABEL, + "world_template_screenshot": T.IMAGE, + "world_template_screenshot/picture": T.IMAGE, + "world_template_name": T.LABEL, + "world_template_description": T.LABEL, + "world_template_version": T.LABEL, + "template_download_text": T.LABEL, + "world_template_text_panel": T.PANEL, + "world_template_text_panel/text_indent": T.PANEL, + "world_template_text_panel/text_indent/top_side": T.STACK_PANEL, + "world_template_text_panel/text_indent/top_side/world_template_name": T.LABEL, + "world_template_text_panel/text_indent/top_side/download_text_label": T.LABEL, + "world_template_text_panel/text_indent/bottom_side": T.STACK_PANEL, + "world_template_text_panel/text_indent/bottom_side/csb_icon": T.PANEL, + "world_template_text_panel/text_indent/bottom_side/pad": T.PANEL, + "world_template_text_panel/text_indent/bottom_side/world_template_description": T.LABEL, + "world_template_text_panel/text_indent/bottom_side/world_template_version": T.LABEL, + "csb_banner": T.PANEL, + "csb_banner/banner": T.IMAGE, + "world_template_content_panel": T.STACK_PANEL, + "world_template_content_panel/world_template_screenshot": T.IMAGE, + "world_template_content_panel/world_template_text_panel": T.PANEL, + "world_template_content_panel/lock_panel": T.PANEL, + "world_template_content_panel/lock_panel/lock_icon": T.IMAGE, + "world_template_item_button": T.BUTTON, + "realms_plus_template_item_button": T.BUTTON, + "world_template_item": T.STACK_PANEL, + "world_template_item/world_template_item_button": T.BUTTON, + "realms_plus_template_item": T.STACK_PANEL, + "realms_plus_template_item/realms_plus_template_item_button": T.BUTTON, + "world_template_item_grid": T.GRID, + "see_more_templates_button": T.BUTTON, + "suggested_see_more_button": T.BUTTON, + "realms_plus_see_more_button": T.BUTTON, + "world_template_inventory_see_more_button": T.BUTTON, + "custom_world_template_see_more_button": T.BUTTON, + "world_template_section_factory": T.STACK_PANEL, + "suggested_template_section_factory": T.STACK_PANEL, + "realms_plus_template_section_factory": T.STACK_PANEL, + "world_template_inventory_section_factory": T.STACK_PANEL, + "custom_world_template_section_factory": T.STACK_PANEL, + "custom_world_template_item_grid": T.GRID, + "no_owned_templates_text_label": T.LABEL, + "no_owned_templates_text": T.LABEL, + "no_template_content_owned": T.IMAGE, + "no_template_content_owned/no_template_content_owned_text_panel": T.LABEL, + "common_scrolling_panel": T.PANEL, + "common_content": T.PANEL, + "scrolling_offsets": T.PANEL, + "template_scroll_content": T.PANEL, + "template_scroll_content/scrolling_panel": T.PANEL, + "common_scroll_pane": T.PANEL, + "template_scroll_panel": T.PANEL, + "template_scroll_panel/world_template_screen_content_stack_panel": T.STACK_PANEL, + "world_list_grids_stack": T.STACK_PANEL, + "world_list_grids_stack/template_list_panel": T.STACK_PANEL, + "world_list_grids_stack/template_list_panel/my_templates_label_panel": T.STACK_PANEL, + "world_list_grids_stack/template_list_panel/world_template_inventory_section_factory": T.STACK_PANEL, + "world_list_grids_stack/template_list_panel/template_bottom_padding": T.PANEL, + "world_list_grids_stack/store_panel": T.PANEL, + "world_list_grids_stack/store_panel/loading_panel": T.PANEL, + "world_list_grids_stack/store_panel/store_grids": T.STACK_PANEL, + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel": T.STACK_PANEL, + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_label_panel": T.STACK_PANEL, + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_section_factory": T.STACK_PANEL, + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_bottom_padding": T.PANEL, + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel": T.STACK_PANEL, + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_content_offers_title_label": T.LABEL, + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_section_factory": T.STACK_PANEL, + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_bottom_padding": T.PANEL, + "world_list_grids_stack/custom_template_panel": T.STACK_PANEL, + "world_list_grids_stack/custom_template_panel/custom_templates_label_panel": T.STACK_PANEL, + "world_list_grids_stack/custom_template_panel/custom_world_template_section_factory": T.STACK_PANEL, + "world_list_grids_stack/custom_template_panel/custom_template_list_bottom_padding": T.PANEL, + "world_list_grids_stack/realms_info_panel": T.STACK_PANEL, + "world_list_grids_stack/realms_info_panel/padding": T.PANEL, + "world_list_grids_stack/realms_info_panel/realms_templates_info": T.IMAGE, + "world_list_grids_stack/realms_info_panel/open_uri_button": T.BUTTON, + "world_list_grid_content": T.PANEL, + "world_list_grid_content/world_list_grids_stack": T.STACK_PANEL, + "world_template_screen_content_stack_panel": T.STACK_PANEL, + "world_template_screen_content_stack_panel/padding_0": T.PANEL, + "world_template_screen_content_stack_panel/crossplatform_disabled_panel": T.IMAGE, + "world_template_screen_content_stack_panel/crossplatform_disabled_panel/disable_text": T.LABEL, + "world_template_screen_content_stack_panel/crossplatform_disable_spacer": T.PANEL, + "world_template_screen_content_stack_panel/generate_random_panel": T.STACK_PANEL, + "world_template_screen_content_stack_panel/generate_random_button_bottom_padding": T.PANEL, + "world_template_screen_content_stack_panel/world_list_grid_content": T.PANEL, + "open_account_setting_button": T.BUTTON, + "world_templates_screen": T.SCREEN, + "world_templates_picker_content": T.PANEL, + "world_templates_picker_content/background": T.STACK_PANEL, } export type XblConsoleQrSigninType = { - banner_fill: T.IMAGE - main_panel_qr: T.STACK_PANEL - "main_panel_qr/left_panel": T.STACK_PANEL - "main_panel_qr/divider": T.PANEL - "main_panel_qr/right_panel": T.STACK_PANEL - "main_panel_qr/right_panel/scrolling_panel_sizer": T.PANEL - "main_panel_qr/right_panel/scrolling_panel_sizer/right_scroll_panel": T.BUTTON - common_scrolling_panel: T.PANEL - gamepad_helpers: T.PANEL - "gamepad_helpers/gamepad_helper_b": T.STACK_PANEL - xbl_console_qr_signin: T.SCREEN - xbl_console_qr_signin_screen_content: T.PANEL - "xbl_console_qr_signin_screen_content/gamepad_helpers": T.PANEL - "xbl_console_qr_signin_screen_content/dialog": T.PANEL - dialog: T.PANEL - scroll_content_focus_border: T.BUTTON - left_panel: T.STACK_PANEL - "left_panel/left_header": T.LABEL - "left_panel/padding_1": T.PANEL - "left_panel/left_body": T.LABEL - "left_panel/padding_2": T.PANEL - "left_panel/qr_panel": T.PANEL - "left_panel/qr_panel/qr_border": T.IMAGE - "left_panel/qr_panel/qr_code": T.CUSTOM - "left_panel/qr_panel/bee_overlay": T.IMAGE - input_panel_wrapper: T.INPUT_PANEL - "input_panel_wrapper/r_scroll_panel": T.STACK_PANEL - right_scroll_panel: T.STACK_PANEL - "right_scroll_panel/right_header": T.LABEL - "right_scroll_panel/padding_1": T.PANEL - "right_scroll_panel/website_message_label": T.LABEL - "right_scroll_panel/padding_2": T.PANEL - "right_scroll_panel/wrapper_panel_1": T.PANEL - "right_scroll_panel/wrapper_panel_1/banner_1": T.IMAGE - "right_scroll_panel/wrapper_panel_1/banner_1/url_label": T.LABEL - "right_scroll_panel/padding_3": T.PANEL - "right_scroll_panel/code_message_label": T.LABEL - "right_scroll_panel/padding_4": T.PANEL - "right_scroll_panel/wrapper_panel_2": T.PANEL - "right_scroll_panel/wrapper_panel_2/banner_2": T.IMAGE - "right_scroll_panel/wrapper_panel_2/banner_2/code_label": T.LABEL - "right_scroll_panel/padding_5": T.PANEL - "right_scroll_panel/code_message_body1": T.LABEL - "right_scroll_panel/padding_6": T.PANEL - "right_scroll_panel/code_message_body2": T.LABEL - "right_scroll_panel/padding_7": T.PANEL - "right_scroll_panel/warning_messages": T.STACK_PANEL - ps4_warning_message_panel: T.STACK_PANEL - "ps4_warning_message_panel/sign_in_account_message": T.LABEL - "ps4_warning_message_panel/padding_1": T.PANEL - "ps4_warning_message_panel/permanent_linking_message": T.LABEL + "banner_fill": T.IMAGE, + "main_panel_qr": T.STACK_PANEL, + "main_panel_qr/left_panel": T.STACK_PANEL, + "main_panel_qr/divider": T.PANEL, + "main_panel_qr/right_panel": T.STACK_PANEL, + "main_panel_qr/right_panel/scrolling_panel_sizer": T.PANEL, + "main_panel_qr/right_panel/scrolling_panel_sizer/right_scroll_panel": T.BUTTON, + "common_scrolling_panel": T.PANEL, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/gamepad_helper_b": T.STACK_PANEL, + "xbl_console_qr_signin": T.SCREEN, + "xbl_console_qr_signin_screen_content": T.PANEL, + "xbl_console_qr_signin_screen_content/gamepad_helpers": T.PANEL, + "xbl_console_qr_signin_screen_content/dialog": T.PANEL, + "dialog": T.PANEL, + "scroll_content_focus_border": T.BUTTON, + "left_panel": T.STACK_PANEL, + "left_panel/left_header": T.LABEL, + "left_panel/padding_1": T.PANEL, + "left_panel/left_body": T.LABEL, + "left_panel/padding_2": T.PANEL, + "left_panel/qr_panel": T.PANEL, + "left_panel/qr_panel/qr_border": T.IMAGE, + "left_panel/qr_panel/qr_code": T.CUSTOM, + "left_panel/qr_panel/bee_overlay": T.IMAGE, + "input_panel_wrapper": T.INPUT_PANEL, + "input_panel_wrapper/r_scroll_panel": T.STACK_PANEL, + "right_scroll_panel": T.STACK_PANEL, + "right_scroll_panel/right_header": T.LABEL, + "right_scroll_panel/padding_1": T.PANEL, + "right_scroll_panel/website_message_label": T.LABEL, + "right_scroll_panel/padding_2": T.PANEL, + "right_scroll_panel/wrapper_panel_1": T.PANEL, + "right_scroll_panel/wrapper_panel_1/banner_1": T.IMAGE, + "right_scroll_panel/wrapper_panel_1/banner_1/url_label": T.LABEL, + "right_scroll_panel/padding_3": T.PANEL, + "right_scroll_panel/code_message_label": T.LABEL, + "right_scroll_panel/padding_4": T.PANEL, + "right_scroll_panel/wrapper_panel_2": T.PANEL, + "right_scroll_panel/wrapper_panel_2/banner_2": T.IMAGE, + "right_scroll_panel/wrapper_panel_2/banner_2/code_label": T.LABEL, + "right_scroll_panel/padding_5": T.PANEL, + "right_scroll_panel/code_message_body1": T.LABEL, + "right_scroll_panel/padding_6": T.PANEL, + "right_scroll_panel/code_message_body2": T.LABEL, + "right_scroll_panel/padding_7": T.PANEL, + "right_scroll_panel/warning_messages": T.STACK_PANEL, + "ps4_warning_message_panel": T.STACK_PANEL, + "ps4_warning_message_panel/sign_in_account_message": T.LABEL, + "ps4_warning_message_panel/padding_1": T.PANEL, + "ps4_warning_message_panel/permanent_linking_message": T.LABEL, } export type XblConsoleSigninType = { - banner_fill: T.IMAGE - main_panel: T.STACK_PANEL - "main_panel/padding_0": T.PANEL - "main_panel/message_label_panel": T.STACK_PANEL - "main_panel/message_label_panel/message_label": T.LABEL - "main_panel/padding_1": T.PANEL - "main_panel/website_message_label": T.LABEL - "main_panel/banner_1": T.IMAGE - "main_panel/banner_1/url_label": T.LABEL - "main_panel/padding_2": T.PANEL - "main_panel/code_message_label": T.LABEL - "main_panel/banner_2": T.IMAGE - "main_panel/banner_2/code_label": T.LABEL - gamepad_helpers: T.PANEL - "gamepad_helpers/gamepad_helper_b": T.STACK_PANEL - xbl_console_signin: T.SCREEN - xbl_console_signin_screen_content: T.PANEL - "xbl_console_signin_screen_content/gamepad_helpers": T.PANEL - "xbl_console_signin_screen_content/dialog": T.PANEL - dialog: T.PANEL + "banner_fill": T.IMAGE, + "main_panel": T.STACK_PANEL, + "main_panel/padding_0": T.PANEL, + "main_panel/message_label_panel": T.STACK_PANEL, + "main_panel/message_label_panel/message_label": T.LABEL, + "main_panel/padding_1": T.PANEL, + "main_panel/website_message_label": T.LABEL, + "main_panel/banner_1": T.IMAGE, + "main_panel/banner_1/url_label": T.LABEL, + "main_panel/padding_2": T.PANEL, + "main_panel/code_message_label": T.LABEL, + "main_panel/banner_2": T.IMAGE, + "main_panel/banner_2/code_label": T.LABEL, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/gamepad_helper_b": T.STACK_PANEL, + "xbl_console_signin": T.SCREEN, + "xbl_console_signin_screen_content": T.PANEL, + "xbl_console_signin_screen_content/gamepad_helpers": T.PANEL, + "xbl_console_signin_screen_content/dialog": T.PANEL, + "dialog": T.PANEL, } export type XblConsoleSigninSucceededType = { - banner_fill: T.IMAGE - gamer_score_icon: T.IMAGE - profile_pic: T.CUSTOM - gamertag_label: T.LABEL - gamer_score_label: T.LABEL - gamer_score_panel: T.STACK_PANEL - "gamer_score_panel/gamer_score_icon": T.IMAGE - "gamer_score_panel/padding_0": T.PANEL - "gamer_score_panel/gamer_score_panel": T.PANEL - "gamer_score_panel/gamer_score_panel/gamer_score": T.LABEL - button_panel: T.PANEL - "button_panel/play": T.BUTTON - text_panel: T.PANEL - "text_panel/new_account_text": T.LABEL - third_party_platform_legal_text: T.PANEL - new_account_text_panel: T.PANEL - gamer_profile_panel: T.STACK_PANEL - "gamer_profile_panel/picture_panel": T.PANEL - "gamer_profile_panel/picture_panel/banner": T.IMAGE - "gamer_profile_panel/picture_panel/banner/profile_pic": T.CUSTOM - "gamer_profile_panel/padding_1": T.PANEL - "gamer_profile_panel/info_panel": T.PANEL - "gamer_profile_panel/info_panel/profile_info_panel": T.STACK_PANEL - "gamer_profile_panel/info_panel/profile_info_panel/gamertag_label": T.LABEL - "gamer_profile_panel/info_panel/profile_info_panel/padding_0": T.PANEL - "gamer_profile_panel/info_panel/profile_info_panel/gamer_score_panel": T.STACK_PANEL - main_panel: T.STACK_PANEL - "main_panel/profile": T.STACK_PANEL - "main_panel/padding_0": T.PANEL - "main_panel/third_party_legal_text_panel": T.PANEL - "main_panel/padding_1": T.PANEL - "main_panel/new_account_text_panel": T.PANEL - "main_panel/padding_2": T.PANEL - "main_panel/button_panel": T.PANEL - xbl_console_signin_succeeded: T.SCREEN - xbl_console_signin_succeeded_screen_content: T.PANEL - "xbl_console_signin_succeeded_screen_content/dialog": T.PANEL - dialog: T.PANEL + "banner_fill": T.IMAGE, + "gamer_score_icon": T.IMAGE, + "profile_pic": T.CUSTOM, + "gamertag_label": T.LABEL, + "gamer_score_label": T.LABEL, + "gamer_score_panel": T.STACK_PANEL, + "gamer_score_panel/gamer_score_icon": T.IMAGE, + "gamer_score_panel/padding_0": T.PANEL, + "gamer_score_panel/gamer_score_panel": T.PANEL, + "gamer_score_panel/gamer_score_panel/gamer_score": T.LABEL, + "button_panel": T.PANEL, + "button_panel/play": T.BUTTON, + "text_panel": T.PANEL, + "text_panel/new_account_text": T.LABEL, + "third_party_platform_legal_text": T.PANEL, + "new_account_text_panel": T.PANEL, + "gamer_profile_panel": T.STACK_PANEL, + "gamer_profile_panel/picture_panel": T.PANEL, + "gamer_profile_panel/picture_panel/banner": T.IMAGE, + "gamer_profile_panel/picture_panel/banner/profile_pic": T.CUSTOM, + "gamer_profile_panel/padding_1": T.PANEL, + "gamer_profile_panel/info_panel": T.PANEL, + "gamer_profile_panel/info_panel/profile_info_panel": T.STACK_PANEL, + "gamer_profile_panel/info_panel/profile_info_panel/gamertag_label": T.LABEL, + "gamer_profile_panel/info_panel/profile_info_panel/padding_0": T.PANEL, + "gamer_profile_panel/info_panel/profile_info_panel/gamer_score_panel": T.STACK_PANEL, + "main_panel": T.STACK_PANEL, + "main_panel/profile": T.STACK_PANEL, + "main_panel/padding_0": T.PANEL, + "main_panel/third_party_legal_text_panel": T.PANEL, + "main_panel/padding_1": T.PANEL, + "main_panel/new_account_text_panel": T.PANEL, + "main_panel/padding_2": T.PANEL, + "main_panel/button_panel": T.PANEL, + "xbl_console_signin_succeeded": T.SCREEN, + "xbl_console_signin_succeeded_screen_content": T.PANEL, + "xbl_console_signin_succeeded_screen_content/dialog": T.PANEL, + "dialog": T.PANEL, } export type XblImmediateSigninType = { - xbl_immediate_signin_screen: T.SCREEN - xbl_immediate_signin_screen_content: T.PANEL - "xbl_immediate_signin_screen_content/root_panel": T.PANEL + "xbl_immediate_signin_screen": T.SCREEN, + "xbl_immediate_signin_screen_content": T.PANEL, + "xbl_immediate_signin_screen_content/root_panel": T.PANEL, } export type Win10TrialConversionType = { - padding_horizontal: T.PANEL - padding_vertical: T.PANEL - padding_vertical_3: T.PANEL - background_image: T.IMAGE - title_image: T.IMAGE - focus_border: T.IMAGE - pack_image: T.IMAGE - pack_image_panel: T.PANEL - "pack_image_panel/pack_image": T.IMAGE - title_image_border: T.IMAGE - "title_image_border/image": T.IMAGE - pack_image_with_border: T.IMAGE - "pack_image_with_border/image": T.IMAGE - label_panel: T.LABEL - button_panel: T.STACK_PANEL - "button_panel/padding_5": T.PANEL - "button_panel/buy_now_button": T.BUTTON - "button_panel/padding_6": T.PANEL - buy_now_button: T.BUTTON - buy_now_label: T.PANEL - "buy_now_label/button_label": T.LABEL - is_focused: T.IMAGE - filler_panel: T.PANEL - focus_border_button: T.BUTTON - "focus_border_button/default": T.PANEL - "focus_border_button/hover": T.IMAGE - "focus_border_button/pressed": T.IMAGE - grid_item: T.STACK_PANEL - "grid_item/padding_1": T.PANEL - "grid_item/pack_image_pane": T.PANEL - "grid_item/padding_2": T.PANEL - "grid_item/pack_panel": T.STACK_PANEL - "grid_item/padding_3": T.PANEL - grid_item_vertical: T.PANEL - "grid_item_vertical/grid_item_horizontal": T.STACK_PANEL - "grid_item_vertical/pack_grid": T.BUTTON - pack_panel: T.STACK_PANEL - "pack_panel/packtitle": T.LABEL - "pack_panel/padding_2": T.PANEL - "pack_panel/packdesc": T.LABEL - collection_main_panel: T.STACK_PANEL - "collection_main_panel/padding_1": T.PANEL - "collection_main_panel/title_panel": T.LABEL - "collection_main_panel/padding_2": T.PANEL - "collection_main_panel/title_image_panel": T.PANEL - "collection_main_panel/title_image_panel/border_image": T.IMAGE - "collection_main_panel/padding_3": T.PANEL - "collection_main_panel/offer_panel": T.STACK_PANEL - "collection_main_panel/offer_panel/padding_1": T.PANEL - "collection_main_panel/offer_panel/label_panel": T.PANEL - "collection_main_panel/offer_panel/label_panel/offer_label": T.LABEL - "collection_main_panel/offer_panel/padding_2": T.PANEL - "collection_main_panel/padding_4": T.PANEL - "collection_main_panel/button_panel": T.STACK_PANEL - "collection_main_panel/padding_5": T.PANEL - "collection_main_panel/include_panel": T.STACK_PANEL - "collection_main_panel/include_panel/padding_1": T.PANEL - "collection_main_panel/include_panel/include_label": T.LABEL - "collection_main_panel/padding_6": T.PANEL - "collection_main_panel/pack_list_grid": T.GRID - background_image_with_border: T.IMAGE - "background_image_with_border/main_panel_no_buttons": T.STACK_PANEL - win10_trial_conversion_main_panel: T.PANEL - "win10_trial_conversion_main_panel/scrolling_panel": T.PANEL - vertical_main_panel: T.STACK_PANEL - "vertical_main_panel/padding_1": T.PANEL - "vertical_main_panel/panel": T.STACK_PANEL - "vertical_main_panel/padding_2": T.PANEL - horizontal_main_panel: T.STACK_PANEL - "horizontal_main_panel/padding_1": T.PANEL - "horizontal_main_panel/starter_collection": T.IMAGE - "horizontal_main_panel/padding_2": T.PANEL - "horizontal_main_panel/master_collection": T.IMAGE - win10_trial_conversion_screen: T.SCREEN - win10_trial_conversion_panel: T.STACK_PANEL + "padding_horizontal": T.PANEL, + "padding_vertical": T.PANEL, + "padding_vertical_3": T.PANEL, + "background_image": T.IMAGE, + "title_image": T.IMAGE, + "focus_border": T.IMAGE, + "pack_image": T.IMAGE, + "pack_image_panel": T.PANEL, + "pack_image_panel/pack_image": T.IMAGE, + "title_image_border": T.IMAGE, + "title_image_border/image": T.IMAGE, + "pack_image_with_border": T.IMAGE, + "pack_image_with_border/image": T.IMAGE, + "label_panel": T.LABEL, + "button_panel": T.STACK_PANEL, + "button_panel/padding_5": T.PANEL, + "button_panel/buy_now_button": T.BUTTON, + "button_panel/padding_6": T.PANEL, + "buy_now_button": T.BUTTON, + "buy_now_label": T.PANEL, + "buy_now_label/button_label": T.LABEL, + "is_focused": T.IMAGE, + "filler_panel": T.PANEL, + "focus_border_button": T.BUTTON, + "focus_border_button/default": T.PANEL, + "focus_border_button/hover": T.IMAGE, + "focus_border_button/pressed": T.IMAGE, + "grid_item": T.STACK_PANEL, + "grid_item/padding_1": T.PANEL, + "grid_item/pack_image_pane": T.PANEL, + "grid_item/padding_2": T.PANEL, + "grid_item/pack_panel": T.STACK_PANEL, + "grid_item/padding_3": T.PANEL, + "grid_item_vertical": T.PANEL, + "grid_item_vertical/grid_item_horizontal": T.STACK_PANEL, + "grid_item_vertical/pack_grid": T.BUTTON, + "pack_panel": T.STACK_PANEL, + "pack_panel/packtitle": T.LABEL, + "pack_panel/padding_2": T.PANEL, + "pack_panel/packdesc": T.LABEL, + "collection_main_panel": T.STACK_PANEL, + "collection_main_panel/padding_1": T.PANEL, + "collection_main_panel/title_panel": T.LABEL, + "collection_main_panel/padding_2": T.PANEL, + "collection_main_panel/title_image_panel": T.PANEL, + "collection_main_panel/title_image_panel/border_image": T.IMAGE, + "collection_main_panel/padding_3": T.PANEL, + "collection_main_panel/offer_panel": T.STACK_PANEL, + "collection_main_panel/offer_panel/padding_1": T.PANEL, + "collection_main_panel/offer_panel/label_panel": T.PANEL, + "collection_main_panel/offer_panel/label_panel/offer_label": T.LABEL, + "collection_main_panel/offer_panel/padding_2": T.PANEL, + "collection_main_panel/padding_4": T.PANEL, + "collection_main_panel/button_panel": T.STACK_PANEL, + "collection_main_panel/padding_5": T.PANEL, + "collection_main_panel/include_panel": T.STACK_PANEL, + "collection_main_panel/include_panel/padding_1": T.PANEL, + "collection_main_panel/include_panel/include_label": T.LABEL, + "collection_main_panel/padding_6": T.PANEL, + "collection_main_panel/pack_list_grid": T.GRID, + "background_image_with_border": T.IMAGE, + "background_image_with_border/main_panel_no_buttons": T.STACK_PANEL, + "win10_trial_conversion_main_panel": T.PANEL, + "win10_trial_conversion_main_panel/scrolling_panel": T.PANEL, + "vertical_main_panel": T.STACK_PANEL, + "vertical_main_panel/padding_1": T.PANEL, + "vertical_main_panel/panel": T.STACK_PANEL, + "vertical_main_panel/padding_2": T.PANEL, + "horizontal_main_panel": T.STACK_PANEL, + "horizontal_main_panel/padding_1": T.PANEL, + "horizontal_main_panel/starter_collection": T.IMAGE, + "horizontal_main_panel/padding_2": T.PANEL, + "horizontal_main_panel/master_collection": T.IMAGE, + "win10_trial_conversion_screen": T.SCREEN, + "win10_trial_conversion_panel": T.STACK_PANEL, } diff --git a/test/app.ts b/test/app.ts index 6e13e20..9fc8cd6 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1 +1,14 @@ -import {} from ".." +import { BagBinding, f, ItemAuxID, Label } from ".." + +const text = Label({ + text: "#text", + [BagBinding.ITEM_ID_AUX]: ItemAuxID.DIAMOND, + "#x": 2, +}) + +text.addBindings({ + source_property_name: f(`Test: #{ -(${BagBinding.ITEM_ID_AUX} % #x) == 0 }`), + target_property_name: BagBinding.TEXT, +}) + +console.log(text) From 3719a3f6b3e24606279266f849a2c99f88bc19f6 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 24 Jan 2026 21:42:11 +0700 Subject: [PATCH 017/245] idk --- src/compilers/FormatProperties.ts | 12 +-- src/compilers/bindings/Lexer.ts | 128 +++++++++--------------------- src/compilers/bindings/Parser.ts | 2 +- src/compilers/bindings/types.ts | 6 +- src/index.ts | 2 + test/app.ts | 18 ++--- 6 files changed, 57 insertions(+), 111 deletions(-) diff --git a/src/compilers/FormatProperties.ts b/src/compilers/FormatProperties.ts index 3243e9a..2edf2d6 100644 --- a/src/compilers/FormatProperties.ts +++ b/src/compilers/FormatProperties.ts @@ -1,13 +1,13 @@ import { Binding } from "../types/properties/value.js" export function FormatProperties(properties: any) { - const property_bags: Record = {} + const property_bag: Record = {} for (const key in properties) { const value = properties[key] if (key.startsWith("#")) { - property_bags[key] = value + property_bag[key] = value delete properties[key] } } @@ -17,11 +17,11 @@ export function FormatProperties(properties: any) { delete properties.anchor } - if (Object.keys(property_bags).length) { - if (properties.property_bags) { - properties.property_bags = { ...property_bags, ...properties.property_bags } + if (Object.keys(property_bag).length) { + if (properties.property_bag) { + properties.property_bag = { ...property_bag, ...properties.property_bag } } else { - properties.property_bags = property_bags + properties.property_bag = property_bag } } diff --git a/src/compilers/bindings/Lexer.ts b/src/compilers/bindings/Lexer.ts index 29be94f..2d0637d 100644 --- a/src/compilers/bindings/Lexer.ts +++ b/src/compilers/bindings/Lexer.ts @@ -1,10 +1,13 @@ import { makeToken, TokenKind, Token, TSToken, TSTokenKind } from "./types.js" import * as Checker from "./Checker.js" -export function Lexer(input: string, start: number = 0, end?: number) { +export function Lexer(input: string, start: number = 0, length?: number) { const tokens: Token[] = [] if (input.length === 0) return tokens + length ||= input.length + + console.log(input.slice(start, length)) let index = start do { @@ -17,11 +20,18 @@ export function Lexer(input: string, start: number = 0, end?: number) { case "#": case "$": { const start = index++ - - while (index < input.length) { + while (index < length) { const token = input[index] if (Checker.isWordChar(token)) index++ - else break + else { + if (start + 1 === index) { + console.error( + `\x1b[31merror: ${input + "\n" + " ".repeat(index + 6) + "^"}\nInvalid character.\x1b[0m`, + ) + throw new Error() + } + break + } } tokens.push(makeToken(input, TokenKind.VARIABLE, start, index-- - start)) @@ -29,19 +39,6 @@ export function Lexer(input: string, start: number = 0, end?: number) { break } - case "'": { - const start = index++ - - do { - const token = input[index] - if (token === "'") break - } while (++index < input.length) - - tokens.push(makeToken(input, TokenKind.STRING, start, index - start + 1)) - - break - } - case ",": tokens.push(makeToken(input, TokenKind.COMMA, index)) break @@ -78,88 +75,39 @@ export function Lexer(input: string, start: number = 0, end?: number) { else tokens.push(makeToken(input, TokenKind.OPERATOR, index)) break - case "f": - case "F": { + // string + case "'": { + const start = index++ + + do { + const token = input[index] + if (token === "'") break + } while (++index < length) + + tokens.push(makeToken(input, TokenKind.STRING, start, index - start + 1)) + + break + } + + // template string + case "f": { if (input[index + 1] === "'") { const tsTokens: TSToken[] = [] - const start = ++index + const start = index - const tokenization = (start: number) => { - while (index < input.length) { + const templateStringTokens = (start: number) => { + while (index < length) { const char = input[index] + if (char === "'") { - index++ - eatString() - } else if (char === "}") { - tsTokens.push({ - kind: TSTokenKind.EXPRESSION, - tokens: Lexer(input, start + 1, index), - }) - break } + index++ } } - const stringification = (start: number) => { - while (index < input.length) { - const char = input[index] - if (char === "'") { - if (start + 1 !== index) - tsTokens.push({ - kind: TSTokenKind.STRING, - tokens: { - kind: TokenKind.STRING, - start: start + 1, - length: index - start + 1, - value: `'${input.slice(start + 1, index)}'`, - }, - }) - break - } else if (char === "#" && input[index + 1] === "{") { - tsTokens.push({ - kind: TSTokenKind.STRING, - tokens: { - value: `'${input.slice(start + 1, index)}'`, - kind: TokenKind.STRING, - length: index - start + 1, - start, - }, - }) - tokenization(++index) - start = index - } - index++ - } - } - - const eatString = () => { - while (index < input.length) { - const char = input[index] - if (char === "'") { - break - } else if (char === "#" && input[index + 1] === "{") { - index++ - eatTemplate() - } - index++ - } - } - - const eatTemplate = () => { - while (index < input.length) { - const char = input[index] - if (char === "'") { - eatString() - } else if (char === "}") { - break - } - index++ - } - } - - stringification(index++) - tokens.push(makeToken(tsTokens, TokenKind.TEMPLATE_STRING, start - 1, index - start + 1)) + templateStringTokens(index) + tokens.push(makeToken(tsTokens, TokenKind.TEMPLATE_STRING, start, index - start)) break } } @@ -181,7 +129,7 @@ export function Lexer(input: string, start: number = 0, end?: number) { } } } - } while (++index < (end || input.length)) + } while (++index < length) return tokens } diff --git a/src/compilers/bindings/Parser.ts b/src/compilers/bindings/Parser.ts index 537267d..0a169e0 100644 --- a/src/compilers/bindings/Parser.ts +++ b/src/compilers/bindings/Parser.ts @@ -292,7 +292,7 @@ export class Parser { out(): { gen?: BindingItem[]; out: Expression } { return { - out: this.output, + out: `(${this.output})`, gen: this.genBindings.map( ({ source, target }) => { diff --git a/src/compilers/bindings/types.ts b/src/compilers/bindings/types.ts index 31e0195..183f809 100644 --- a/src/compilers/bindings/types.ts +++ b/src/compilers/bindings/types.ts @@ -11,7 +11,7 @@ export enum TokenKind { OPERATOR, COMMA, - EOF + EOF, } export enum TSTokenKind { @@ -55,9 +55,9 @@ export function makeToken( length: number = 1, ): Token { if (kind === TokenKind.TEMPLATE_STRING) { - return { value: input as TSToken[], kind: kind, start, length } + return { kind: kind, start, length, value: input as TSToken[] } } else { - return { value: input.slice(start, start + length) as string, kind, start, length } + return { kind, start, length, value: input.slice(start, start + length) as string } } } diff --git a/src/index.ts b/src/index.ts index 6fbd040..9fb78aa 100644 --- a/src/index.ts +++ b/src/index.ts @@ -9,3 +9,5 @@ export * from "./types/enums/index.js" export * as Properties from "./types/properties/index.js" export { ItemAuxID } from "./types/enums/Items.js" + +export * from "./compilers/bindings/index.js" diff --git a/test/app.ts b/test/app.ts index 9fc8cd6..b351844 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1,14 +1,10 @@ -import { BagBinding, f, ItemAuxID, Label } from ".." +import { Panel } from ".." -const text = Label({ - text: "#text", - [BagBinding.ITEM_ID_AUX]: ItemAuxID.DIAMOND, - "#x": 2, +const panel = Panel() + +panel.addBindings({ + source_property_name: `[ $abc ]`, + target_property_name: "#text", }) -text.addBindings({ - source_property_name: f(`Test: #{ -(${BagBinding.ITEM_ID_AUX} % #x) == 0 }`), - target_property_name: BagBinding.TEXT, -}) - -console.log(text) +console.log(panel) From e7ac672470e2a9b081716db7edee25ef2627a7f8 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 24 Jan 2026 23:35:54 +0700 Subject: [PATCH 018/245] fix: nested lexer --- src/compilers/bindings/Lexer.ts | 85 ++++++++++++++++++++++++++++++--- test/app.ts | 17 +++---- 2 files changed, 87 insertions(+), 15 deletions(-) diff --git a/src/compilers/bindings/Lexer.ts b/src/compilers/bindings/Lexer.ts index 2d0637d..6865b97 100644 --- a/src/compilers/bindings/Lexer.ts +++ b/src/compilers/bindings/Lexer.ts @@ -1,13 +1,11 @@ import { makeToken, TokenKind, Token, TSToken, TSTokenKind } from "./types.js" import * as Checker from "./Checker.js" -export function Lexer(input: string, start: number = 0, length?: number) { +export function Lexer(input: string, start: number = 0, end?: number) { const tokens: Token[] = [] if (input.length === 0) return tokens - length ||= input.length - - console.log(input.slice(start, length)) + const length = (end ||= input.length) let index = start do { @@ -65,7 +63,12 @@ export function Lexer(input: string, start: number = 0, length?: number) { case "|": case "=": if (input[index + 1] === input[index]) tokens.push(makeToken(input, TokenKind.OPERATOR, index++, 2)) - else tokens.push(makeToken(input, TokenKind.OPERATOR, index)) + else { + console.error( + `\x1b[31merror: ${input + "\n" + " ".repeat(index + 7) + "^"}\nInvalid character.\x1b[0m`, + ) + throw new Error() + } break case "!": @@ -94,20 +97,88 @@ export function Lexer(input: string, start: number = 0, length?: number) { if (input[index + 1] === "'") { const tsTokens: TSToken[] = [] const start = index + index += 2 const templateStringTokens = (start: number) => { + while (index < length) { + const char = input[index++] + + if (char === "#") { + if (input[index] === "{") { + if (start !== index - 1) + tsTokens.push({ + kind: TSTokenKind.STRING, + tokens: { + kind: TokenKind.STRING, + start: start, + length: index - start, + value: `'${input.slice(start, index - 1)}'`, + }, + }) + start = index + 1 + eatExpression(index) + tsTokens.push({ + kind: TSTokenKind.EXPRESSION, + tokens: Lexer(input, start, index), + }) + start = index += 1 + } + } else if (char === "'") { + if (start !== index - 1) + tsTokens.push({ + kind: TSTokenKind.STRING, + tokens: { + kind: TokenKind.STRING, + start: start, + length: index - start, + value: `'${input.slice(start, index - 1)}'`, + }, + }) + break + } + } + } + + const eatExpression = (start: number) => { + while (index < length) { + const char = input[index] + if (char === "'") eatString(++index) + else if (char === "}") break + else if (char === "f") { + if (input[++index] === "'") { + eatTemplateString(++index) + } + } + index++ + } + } + + const eatTemplateString = (start: number) => { while (index < length) { const char = input[index] - if (char === "'") { + if (char === "'") break + else if (char === "#") { + if (input[++index] === "{") eatExpression(++index) } index++ } } + const eatString = (start: number) => { + while (index < length) { + const char = input[index] + if (char === "'") break + index++ + } + } + templateStringTokens(index) - tokens.push(makeToken(tsTokens, TokenKind.TEMPLATE_STRING, start, index - start)) + + if (tsTokens.length) + tokens.push(makeToken(tsTokens, TokenKind.TEMPLATE_STRING, start, index - start)) + else tokens.push(makeToken(input, TokenKind.STRING, start + 1, index - start - 1)) break } } diff --git a/test/app.ts b/test/app.ts index b351844..de3c19c 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1,10 +1,11 @@ import { Panel } from ".." -const panel = Panel() - -panel.addBindings({ - source_property_name: `[ $abc ]`, - target_property_name: "#text", -}) - -console.log(panel) +const now = performance.now() +for (let index = 0; index < 1e4; index++) { + Panel().addBindings({ + source_property_name: `[ f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{abs(-(#a + #b)) + 'abc'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{abs(-(#a + #b))}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{abs(-(#a + #b))}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{abs(-(#a + #b))}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{abs(-(#a + #b))}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}' ]`, + target_property_name: "#test", + }) +} +const end = performance.now() +console.log(end - now) From 406e71575fcaa86bb7c151258946d0cd4548a844 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sun, 25 Jan 2026 02:50:36 +0700 Subject: [PATCH 019/245] idk --- src/compilers/bindings/Lexer.ts | 12 ++++++++++++ src/compilers/bindings/Parser.ts | 8 ++++++-- src/components/UI.ts | 2 ++ src/components/Utils.ts | 2 +- src/index.ts | 2 -- test/app.ts | 12 +----------- 6 files changed, 22 insertions(+), 16 deletions(-) diff --git a/src/compilers/bindings/Lexer.ts b/src/compilers/bindings/Lexer.ts index 6865b97..bfb5ca9 100644 --- a/src/compilers/bindings/Lexer.ts +++ b/src/compilers/bindings/Lexer.ts @@ -188,6 +188,18 @@ export function Lexer(input: string, start: number = 0, end?: number) { if (Checker.isNumberChar(token)) { while (Checker.isNumberChar(input[index + 1])) index++ + if (input[index + 1] === "e") { + index++ + if (input[index + 1] === "-") index++ + if (!Checker.isNumberChar(input[index + 1])) { + console.error( + `\x1b[31merror: ${input + "\n" + " ".repeat(index + 7) + "^"}\nInvalid character.\x1b[0m`, + ) + throw new Error() + } + while (Checker.isNumberChar(input[index + 1])) index++ + } + tokens.push(makeToken(input, TokenKind.NUMBER, start, index - start + 1)) } else if (Checker.isWordChar(token)) { while (Checker.isWordChar(input[index + 1])) index++ diff --git a/src/compilers/bindings/Parser.ts b/src/compilers/bindings/Parser.ts index 0a169e0..370decd 100644 --- a/src/compilers/bindings/Parser.ts +++ b/src/compilers/bindings/Parser.ts @@ -125,7 +125,7 @@ export class Parser { const operator = this.eat() const right = this.parsePrimaryExpression() - if (current.value === "%") left = `(${left} - ${left} / ${right} * ${right})` + if (current.value === "%") left = `(${left} - (${left} / ${right} * ${right}))` else left = `(${left} ${operator.value} ${right})` } @@ -147,8 +147,12 @@ export class Parser { return `(${value})` } + case TokenKind.NUMBER: { + const [num, exp] = (this.eat().value).split("e") + return "" + (exp ? +num * 10 ** +exp : num) + } + case TokenKind.VARIABLE: - case TokenKind.NUMBER: case TokenKind.STRING: return this.eat().value diff --git a/src/components/UI.ts b/src/components/UI.ts index 156a59f..f071fc5 100644 --- a/src/components/UI.ts +++ b/src/components/UI.ts @@ -96,6 +96,8 @@ export class UI extends Class } this.bindings.push(binding) } + + return this } addChild(child: UI, properties?: Properties, name?: string) { diff --git a/src/components/Utils.ts b/src/components/Utils.ts index e92ff7d..2e31995 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -106,7 +106,7 @@ export function f(input: string): CompileBinding { * @returns {CompileBinding} */ export function b(input: string): CompileBinding { - return `[ ${input} ]` + return `[${input}]` } // Quick Elements diff --git a/src/index.ts b/src/index.ts index 9fb78aa..6fbd040 100644 --- a/src/index.ts +++ b/src/index.ts @@ -9,5 +9,3 @@ export * from "./types/enums/index.js" export * as Properties from "./types/properties/index.js" export { ItemAuxID } from "./types/enums/Items.js" - -export * from "./compilers/bindings/index.js" diff --git a/test/app.ts b/test/app.ts index de3c19c..930365e 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1,11 +1 @@ -import { Panel } from ".." - -const now = performance.now() -for (let index = 0; index < 1e4; index++) { - Panel().addBindings({ - source_property_name: `[ f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{abs(-(#a + #b)) + 'abc'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{abs(-(#a + #b))}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{abs(-(#a + #b))}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{abs(-(#a + #b))}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{f'#{abs(-(#a + #b))}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}'}' ]`, - target_property_name: "#test", - }) -} -const end = performance.now() -console.log(end - now) +import { Modify, Panel, StackPanel, Toggle, GetItemByAuxID, ItemAuxID } from ".." From 7534a613cbe6d49e0d5fb097ccf9d7b3a4676f02 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 26 Jan 2026 13:27:54 +0700 Subject: [PATCH 020/245] feat: animation system --- README.md | 1 + package.json | 8 +- resources/logo.png | Bin 0 -> 3523 bytes scripts/autocomplete-build.ts | 14 +- scripts/vanilladefs.ts | 12 +- src/compilers/FormatProperties.ts | 11 + src/compilers/Memory.ts | 6 +- src/compilers/RunEnd.ts | 10 +- src/components/Animation.ts | 62 +- src/components/AnimationKeyframe.ts | 60 +- src/components/KeyframeController.ts | 19 + src/components/UI.ts | 379 +- src/components/Utils.ts | 102 +- src/index.ts | 5 +- src/types/enums/ArrayName.ts | 5 + src/types/enums/Operation.ts | 13 + src/types/properties/element/Animation.ts | 67 +- src/types/properties/index.ts | 3 + src/types/properties/value.ts | 21 + src/types/vanilla/intellisense.ts | 38043 ++++++++++---------- test/app.ts | 11 +- tsconfig.json | 3 +- 22 files changed, 19733 insertions(+), 19122 deletions(-) create mode 100644 README.md create mode 100644 resources/logo.png create mode 100644 src/components/KeyframeController.ts create mode 100644 src/types/enums/ArrayName.ts create mode 100644 src/types/enums/Operation.ts 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 0000000000000000000000000000000000000000..803e02fb0245bb54d3e8b589c51607b841222da9 GIT binary patch literal 3523 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 = 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, From 1114828000734d356a2b84314692cfc85d90a7cf Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 26 Jan 2026 15:35:55 +0700 Subject: [PATCH 021/245] feat: smart animation mode --- src/compilers/Configuration.ts | 1 + src/compilers/Memory.ts | 2 + src/compilers/RunEnd.ts | 3 +- src/components/Animation.ts | 132 ++++++++++++++++++---- src/components/AnimationKeyframe.ts | 23 +++- src/components/KeyframeController.ts | 10 +- src/components/Utils.ts | 45 +++++++- src/types/enums/SmartAnimation.ts | 1 + src/types/enums/index.ts | 3 +- src/types/properties/element/Animation.ts | 5 +- test/app.ts | 26 +++-- 11 files changed, 207 insertions(+), 44 deletions(-) create mode 100644 src/compilers/Configuration.ts create mode 100644 src/types/enums/SmartAnimation.ts diff --git a/src/compilers/Configuration.ts b/src/compilers/Configuration.ts new file mode 100644 index 0000000..32b62ef --- /dev/null +++ b/src/compilers/Configuration.ts @@ -0,0 +1 @@ +export const isBuildMode = process.argv.includes("--build") diff --git a/src/compilers/Memory.ts b/src/compilers/Memory.ts index 37a219b..5e8579f 100644 --- a/src/compilers/Memory.ts +++ b/src/compilers/Memory.ts @@ -4,6 +4,7 @@ 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" +import { isBuildMode } from "./Configuration.js" type Element = UI | AnimationKeyframe interface FileInterface { @@ -16,6 +17,7 @@ export class Memory extends Class { protected static files: Files = new Map() public static add(element: UI | AnimationKeyframe) { + if (!isBuildMode) return let file = Memory.files.get(element.path) if (!file) { diff --git a/src/compilers/RunEnd.ts b/src/compilers/RunEnd.ts index 88ee3fb..0383301 100644 --- a/src/compilers/RunEnd.ts +++ b/src/compilers/RunEnd.ts @@ -1,7 +1,6 @@ +import { isBuildMode } from "./Configuration.js" import { Memory } from "./Memory.js" -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 d475dd1..39c5ce7 100644 --- a/src/components/Animation.ts +++ b/src/components/Animation.ts @@ -1,19 +1,33 @@ import { AnimType } from "../types/enums/AnimType.js" +import { SmartAnimation } from "../types/enums/SmartAnimation.js" import { AnimationProperties } from "../types/properties/element/Animation.js" import { Class } from "./Class.js" import { KeyframeController } from "./KeyframeController.js" +import util from "node:util" + +type Anim = AnimationProperties | number +type AnimWithSmartAnimation = [SmartAnimation | Anim, ...Anim[]] + export class Animation extends Class { protected keyframes: KeyframeController[] = [] protected loop = false + private smartAnimationMode: SmartAnimation = "none" constructor( readonly type: T, - ...keyframes: (AnimationProperties | number)[] + ...keyframes: AnimWithSmartAnimation ) { super() - if (type === AnimType.WAIT) console.warn("Why are you create a wait animation?") - this.addKeyframes(...keyframes) + + if ([AnimType.ASEPRITE_FLIP_BOOK, AnimType.FLIP_BOOK, AnimType.WAIT].includes(type)) { + throw new Error(`${type} is not need for Animation constructor, please use AnimetionKeyframe instead!`) + } + + if (typeof keyframes[0] === "string") { + this.smartAnimationMode = keyframes[0] + this.addKeyframes(...(keyframes.slice(1) as Anim[])) + } else this.addKeyframes(...(keyframes as Anim[])) } protected lastKey() { @@ -24,27 +38,90 @@ export class Animation extends Class { return this.keyframes[0] } - addKeyframes(...keyframes: (AnimationProperties | number)[]) { - for (const $ of keyframes) { - let keyframe: AnimationProperties, animType: AnimType + at(index: number) { + const frame = this.keyframes[index] + if (frame) return frame + else throw new Error(`No frame at index ${index}`) + } - if (typeof $ === "number") { - keyframe = { duration: $ } - animType = AnimType.WAIT - } else { - keyframe = $ - animType = this.type + private transformKeyframe(keyframe: Anim) { + if (typeof keyframe === "number") { + return { type: AnimType.WAIT, properties: >({ duration: keyframe }) } + } else { + return { type: this.type, properties: keyframe } + } + } + + private addKeyframes(...keyframes: Anim[]) { + if (this.smartAnimationMode === "none") { + for (const $ of keyframes) { + const { type, properties } = this.transformKeyframe($) + const keyframeController = new KeyframeController(type, properties) + const prevKeyframe = this.lastKey() + if (prevKeyframe) prevKeyframe.setNext(keyframeController) + this.keyframes.push(keyframeController) + } + } else if (this.smartAnimationMode === "frame") { + let lastDuration = 0 + + for (const $ of keyframes) { + const { type, properties } = <{ type: AnimType; properties: { from?: unknown; to?: unknown } }>( + (this.transformKeyframe($)) + ) + + if ((<{ duration?: number }>(properties)).duration !== undefined) + lastDuration = (<{ duration?: number }>(properties)).duration || 0 + ;(<{ duration?: number }>(properties)).duration = lastDuration + + if (type !== AnimType.WAIT) { + const { from, to } = properties + if (from === undefined) properties.from = to + else if (to === undefined) properties.to = from + } + + const keyframeController = new KeyframeController(type, >properties) + const prevKeyframe = this.lastKey() + if (prevKeyframe) prevKeyframe.setNext(keyframeController) + this.keyframes.push(keyframeController) + } + } else if (this.smartAnimationMode === "smooth" || this.smartAnimationMode === "smooth_loop") { + let lastDuration = 0, + lastTo + + for (const $ of keyframes) { + const { type, properties } = <{ type: AnimType; properties: { from?: unknown; to?: unknown } }>( + (this.transformKeyframe($)) + ) + + if (properties.to === undefined && type !== AnimType.WAIT) + throw new Error(`To property is required in smooth mode`) + + if ((<{ duration?: number }>(properties)).duration !== undefined) + lastDuration = (<{ duration?: number }>(properties)).duration || 0 + ;(<{ duration?: number }>(properties)).duration = lastDuration + + if (type !== AnimType.WAIT) { + if (properties.to) { + if (properties.from === undefined) properties.from = lastTo + lastTo = properties.to + } + } + + const keyframeController = new KeyframeController(type, >properties) + const prevKeyframe = this.lastKey() + if (prevKeyframe) prevKeyframe.setNext(keyframeController) + this.keyframes.push(keyframeController) } - const keyframeController = new KeyframeController(animType, keyframe as AnimationProperties) + if (this.smartAnimationMode === "smooth_loop") { + const firstKey = <{ properties: { from?: unknown } }>(this.firstKey()) + if (firstKey.properties.from === undefined && lastTo !== undefined) { + firstKey.properties.from = lastTo + } + } + } else throw new Error(`Unknown smart animation mode: ${this.smartAnimationMode}`) - const prevKeyframe = this.lastKey() - if (prevKeyframe) prevKeyframe.setNext(keyframeController) - - if (this.loop) keyframeController.setNext(this.firstKey() as KeyframeController) - - this.keyframes.push(keyframeController) - } + if (this.loop) this.lastKey().setNext(this.firstKey()) } setLoop(boolean: boolean) { @@ -60,4 +137,19 @@ export class Animation extends Class { return this } + + protected toString() { + return String(this.firstKey()) + } + + protected [util.inspect.custom]($: any, opts: any) { + const out = this.keyframes.map((v, i) => { + return ` \x1b[33m${i}\x1b[0m: \x1b[33mKeyframe\x1b[0m<\x1b[92m${v.type}\x1b[0m> \x1b[92m"${v}\x1b[92m"\x1b[0m ${util.inspect(v.serialize(), opts)}`.replace( + /\n/g, + "\n ", + ) + }) + + return `\x1b[33mAnimation\x1b[0m<\x1b[92m${this.type}\x1b[0m> \x1b[92m"${this}\x1b[92m"\x1b[0m {\n${out.join("\n")}\n}\n` + } } diff --git a/src/components/AnimationKeyframe.ts b/src/components/AnimationKeyframe.ts index 0eb5349..79ec74e 100644 --- a/src/components/AnimationKeyframe.ts +++ b/src/components/AnimationKeyframe.ts @@ -2,6 +2,7 @@ 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 { Animation } from "./Animation.js" import { Class } from "./Class.js" import { RandomString } from "./Utils.js" @@ -12,6 +13,8 @@ export class AnimationKeyframe extends Class { readonly name: string readonly namespace: string + readonly extend?: AnimationKeyframe | Animation + constructor( readonly type: T, readonly properties: KeyframeAnimationProperties, @@ -38,14 +41,28 @@ export class AnimationKeyframe extends Class { Memory.add(this) } + setNext(keyframe: AnimationKeyframe) { + this.properties.next = keyframe + return this + } + + clearNext() { + delete this.properties.next + return this + } + protected toJsonUI() { return FormatAnimationProperties(this.properties) } protected toJSON() { - return { - anim_type: this.type, - ...this.toJsonUI(), + if (this.extend) { + return this.toJsonUI() + } else { + return { + anim_type: this.type, + ...this.toJsonUI(), + } } } diff --git a/src/components/KeyframeController.ts b/src/components/KeyframeController.ts index ddfb688..d1bdc7a 100644 --- a/src/components/KeyframeController.ts +++ b/src/components/KeyframeController.ts @@ -7,13 +7,7 @@ export class KeyframeController extends AnimationKeyframe super(type, properties, name, namespace, path) } - setNext(keyframe: AnimationKeyframe) { - this.properties.next = keyframe - return this - } - - clearNext() { - delete this.properties.next - return this + serialize() { + return this.toJsonUI() } } diff --git a/src/components/Utils.ts b/src/components/Utils.ts index d18a570..ecd46f3 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -34,7 +34,9 @@ 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" +import { AnimationProperties, KeyframeAnimationProperties } from "../types/properties/element/Animation.js" +import { Animation } from "./Animation.js" +import { SmartAnimation } from "../types/enums/SmartAnimation.js" const CHARS = "0123456789abcdefghijklmnopqrstuvwxyz" type CompileBinding = `[${string}]` @@ -315,3 +317,44 @@ export function KeyframeAsepriteFlipBook( ) { return new AnimationKeyframe(AnimType.ASEPRITE_FLIP_BOOK, properties || {}, name, namespace) } + +// Quick Animation +type Anim = AnimationProperties | number +type AnimWithSmartAnim = [SmartAnimation | Anim, ...Anim[]] + +export function AnimationOffset(...keyframes: AnimWithSmartAnim) { + return new Animation(AnimType.OFFSET, ...keyframes) +} + +export function AnimationSize(...keyframes: AnimWithSmartAnim) { + return new Animation(AnimType.SIZE, ...keyframes) +} + +export function AnimationUV(...keyframes: AnimWithSmartAnim) { + return new Animation(AnimType.UV, ...keyframes) +} + +export function AnimationClip(...keyframes: AnimWithSmartAnim) { + return new Animation(AnimType.CLIP, ...keyframes) +} + +export function AnimationColor(...keyframes: AnimWithSmartAnim) { + return new Animation(AnimType.COLOR, ...keyframes) +} + +export function AnimationAlpha(...keyframes: AnimWithSmartAnim) { + return new Animation(AnimType.ALPHA, ...keyframes) +} + +// Animation Extendof +export function AnimationExtendsOf( + animation: AnimationKeyframe | Animation, + properties?: AnimationProperties, +) { + const anim = new AnimationKeyframe(animation.type, properties || {}) + + // @ts-ignore + anim.extend = animation + + return anim +} diff --git a/src/types/enums/SmartAnimation.ts b/src/types/enums/SmartAnimation.ts new file mode 100644 index 0000000..13934a0 --- /dev/null +++ b/src/types/enums/SmartAnimation.ts @@ -0,0 +1 @@ +export type SmartAnimation = "none" | "frame" | "smooth" | "smooth_loop" diff --git a/src/types/enums/index.ts b/src/types/enums/index.ts index ad47853..3e12567 100644 --- a/src/types/enums/index.ts +++ b/src/types/enums/index.ts @@ -27,4 +27,5 @@ export { TextboxName } from "./TextboxName.js" export { SliderName } from "./SliderName.js" export { ToggleName } from "./ToggleName.js" export { BagBinding } from "./BagBinding.js" -export { Binding } from "./Binding.js" \ No newline at end of file +export { Binding } from "./Binding.js" +export { SmartAnimation } from "./SmartAnimation.js" diff --git a/src/types/properties/element/Animation.ts b/src/types/properties/element/Animation.ts index 68cb5ba..1a2222c 100644 --- a/src/types/properties/element/Animation.ts +++ b/src/types/properties/element/Animation.ts @@ -1,7 +1,8 @@ import { AnimationKeyframe } from "../../../components/AnimationKeyframe.js" import { AnimType } from "../../enums/AnimType.js" import { Easing } from "../../enums/Easing.js" -import { Array2, Array3, Value } from "../value.js" +import { Animation, Array2, Array3, Value } from "../value.js" +import * as components from "../../../components/Animation.js" export interface DurationAnimation { duration?: Value @@ -65,7 +66,7 @@ export interface AnimationPropertiesItem { } export interface KeyframeAnimationPropertiesItem extends AnimationPropertiesItem { - next?: Value> + next?: Value | components.Animation> } export type KeyframeAnimationProperties = Partial & diff --git a/test/app.ts b/test/app.ts index 9e8d6a8..0cd1597 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1,10 +1,22 @@ -import { Animation, AnimType } from ".." +import { AnimationSize } from ".." -const animation = new Animation( - AnimType.OFFSET, +const animation = AnimationSize( + "smooth_loop", { - from: [0, 0], - to: [100, 100], + to: [10, 10], + duration: 1.5, }, - 123, -).setLoop(false) + { + to: [1, 1], + }, + 1, + { + from: [10, 10], + to: [20, 20], + }, + { + to: [1, 1], + }, +).setLoop(true) + +console.log(animation) From d963d179f2b4c957cee2b460557598968412bce4 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 26 Jan 2026 15:55:41 +0700 Subject: [PATCH 022/245] idk --- src/components/UI.ts | 11 +++++++++++ test/app.ts | 16 ++++++++++++++-- 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/src/components/UI.ts b/src/components/UI.ts index 07903b9..b7aa9e3 100644 --- a/src/components/UI.ts +++ b/src/components/UI.ts @@ -1,11 +1,14 @@ import { FormatProperties } from "../compilers/FormatProperties.js" import { Memory } from "../compilers/Memory.js" +import { AnimType } from "../types/enums/AnimType.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, ButtonMapping, ModificationItem, VariableItem, Variables } from "../types/properties/value.js" +import { Animation } from "./Animation.js" +import { AnimationKeyframe } from "./AnimationKeyframe.js" import { Class } from "./Class.js" import { ExtendsOf, RandomString, ResolveBinding } from "./Utils.js" @@ -23,6 +26,7 @@ export class UI extends Class protected readonly bindings: BindingItem[] = [] protected readonly variables: VariableItem[] = [] protected readonly buttonMappings: ButtonMapping[] = [] + protected readonly anims: (Animation | AnimationKeyframe)[] = [] protected readonly extendType?: Type protected properties: Properties = {} @@ -115,6 +119,11 @@ export class UI extends Class return this } + addAnimations(...anims: (Animation | AnimationKeyframe)[]) { + this.anims.push(...anims) + return this + } + /** * Return a extend of this element * @param properties @@ -141,6 +150,8 @@ export class UI extends Class if (this.variables.length) obj.variables = this.variables if (this.buttonMappings.length) obj.button_mappings = this.buttonMappings + if (this.anims.length) obj.anims = this.anims.map(a => String(a)) + if (this.controls.size) { obj.controls = [] this.controls.forEach((e, key) => obj.controls.push({ [key + e[0]]: e[1] })) diff --git a/test/app.ts b/test/app.ts index 0cd1597..718af48 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1,4 +1,4 @@ -import { AnimationSize } from ".." +import { Anchor, AnimationSize, Easing, KeyframeSize, Panel } from ".." const animation = AnimationSize( "smooth_loop", @@ -19,4 +19,16 @@ const animation = AnimationSize( }, ).setLoop(true) -console.log(animation) +const panel = Panel({ + anchor: Anchor.BOTTOM_LEFT, +}).addAnimations( + animation, + KeyframeSize({ + from: [10, 10], + to: [20, 20], + duration: 0.3, + easing: Easing.LINEAR, + }), +) + +console.log(String(panel)) From f925511bd8fc9b4d7bfc240f96b8235ddfe93654 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 27 Jan 2026 13:17:55 +0700 Subject: [PATCH 023/245] add animation keyframe for animation type --- src/types/properties/value.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/types/properties/value.ts b/src/types/properties/value.ts index 73f2d01..84cd6cc 100644 --- a/src/types/properties/value.ts +++ b/src/types/properties/value.ts @@ -9,10 +9,12 @@ import { InputModeCondition } from "../enums/InputModeCondition.js" import { Scope } from "../enums/Scope.js" import { ArrayName } from "../enums/ArrayName.js" import { Operation } from "../enums/Operation.js" +import { AnimType } from "../enums/AnimType.js" +import { AnimationKeyframe } from "../../components/AnimationKeyframe.js" export type Variable = `$${string}` export type Binding = `#${string}` -export type Animation = anim.Animation | `@${string}` +export type Animation = anim.Animation | AnimationKeyframe | `@${string}` export type Array2 = [T, T] export type Array3 = [T, T, T] From 6a95bcc384b00e3fb579773491bf7524e4684dac Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 27 Jan 2026 13:18:08 +0700 Subject: [PATCH 024/245] test --- test/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/app.ts b/test/app.ts index 718af48..ab29948 100644 --- a/test/app.ts +++ b/test/app.ts @@ -31,4 +31,4 @@ const panel = Panel({ }), ) -console.log(String(panel)) +console.log(animation) From 0c8a9cc62235c144bb76242654f76c82ac0cebd1 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 27 Jan 2026 17:17:34 +0700 Subject: [PATCH 025/245] jsonui builder --- resources/pack_icon.png | Bin 0 -> 7986 bytes src/compilers/{RunEnd.ts => ui/builder.ts} | 4 ++-- src/compilers/ui/installer.ts | 0 src/compilers/ui/linker.ts | 0 src/compilers/ui/manifest.ts | 0 src/index.ts | 2 +- test/app.ts | 6 +++--- 7 files changed, 6 insertions(+), 6 deletions(-) create mode 100644 resources/pack_icon.png rename src/compilers/{RunEnd.ts => ui/builder.ts} (56%) create mode 100644 src/compilers/ui/installer.ts create mode 100644 src/compilers/ui/linker.ts create mode 100644 src/compilers/ui/manifest.ts diff --git a/resources/pack_icon.png b/resources/pack_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..5907048078ce09303b5335bb9bf145d756c0418d GIT binary patch literal 7986 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 { diff --git a/src/compilers/ui/installer.ts b/src/compilers/ui/installer.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/compilers/ui/linker.ts b/src/compilers/ui/linker.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/compilers/ui/manifest.ts b/src/compilers/ui/manifest.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/index.ts b/src/index.ts index 62ecc25..a250a13 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,5 @@ import "./compilers/PreCompile.js" -import "./compilers/RunEnd.js" +import "./compilers/ui/builder.js" export { Animation } from "./components/Animation.js" export { AnimationKeyframe } from "./components/AnimationKeyframe.js" diff --git a/test/app.ts b/test/app.ts index ab29948..3ca856a 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1,6 +1,6 @@ -import { Anchor, AnimationSize, Easing, KeyframeSize, Panel } from ".." +import { Anchor, AnimationOffset, Easing, KeyframeSize, Panel } from ".." -const animation = AnimationSize( +const animation = AnimationOffset( "smooth_loop", { to: [10, 10], @@ -31,4 +31,4 @@ const panel = Panel({ }), ) -console.log(animation) +console.log(animation, panel) From 53375ea11c73320144c4ac035e217c9479537b41 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 27 Jan 2026 18:53:08 +0700 Subject: [PATCH 026/245] feat: build system --- README.md | 2 ++ src/compilers/Memory.ts | 4 +++- src/compilers/Random.ts | 7 ++++++ src/compilers/bindings/Funtion.ts | 6 +++++ src/compilers/ui/builder.ts | 34 +++++++++++++++++++++++++++-- src/compilers/ui/linker.ts | 12 ++++++++++ src/components/AnimationKeyframe.ts | 3 ++- src/components/UI.ts | 3 ++- src/components/Utils.ts | 21 ++++++++++++++---- 9 files changed, 83 insertions(+), 9 deletions(-) create mode 100644 src/compilers/Random.ts diff --git a/README.md b/README.md index e5a1af5..b8e395a 100644 --- a/README.md +++ b/README.md @@ -1 +1,3 @@ +AsaJS Logo made by [Kammasy](https://www.youtube.com/channel/UCrmjDWdM8-ZSeekzLeCnftg) a.k.a **[E.G.G](https://www.youtube.com/channel/UCrmjDWdM8-ZSeekzLeCnftg)** + ![image](/resources/logo.png) diff --git a/src/compilers/Memory.ts b/src/compilers/Memory.ts index 5e8579f..ff2731e 100644 --- a/src/compilers/Memory.ts +++ b/src/compilers/Memory.ts @@ -1,6 +1,6 @@ import { AnimationKeyframe } from "../components/AnimationKeyframe.js" import { Class } from "../components/Class.js" -import { UI } from "../components/UI.js" +import { ModifyUI, 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" @@ -13,6 +13,8 @@ interface FileInterface { } type Files = Map +export const MemoryModify: Record> = {} + export class Memory extends Class { protected static files: Files = new Map() diff --git a/src/compilers/Random.ts b/src/compilers/Random.ts new file mode 100644 index 0000000..390dfdb --- /dev/null +++ b/src/compilers/Random.ts @@ -0,0 +1,7 @@ +import { RandomString } from "../components/Utils.js" + +const namespaces = Array.from({ length: 15 }, () => RandomString(16)) + +export function RandomNamespace() { + return namespaces[Math.floor(Math.random() * namespaces.length)] +} diff --git a/src/compilers/bindings/Funtion.ts b/src/compilers/bindings/Funtion.ts index 964c23f..854288b 100644 --- a/src/compilers/bindings/Funtion.ts +++ b/src/compilers/bindings/Funtion.ts @@ -55,3 +55,9 @@ FuntionMap.set("sqrt", number => { value: rtn, } }) + +FuntionMap.set("translatable", key => { + return { + value: `'%' + ${key}`, + } +}) diff --git a/src/compilers/ui/builder.ts b/src/compilers/ui/builder.ts index aba16de..47c9830 100644 --- a/src/compilers/ui/builder.ts +++ b/src/compilers/ui/builder.ts @@ -1,8 +1,38 @@ import { isBuildMode } from "../Configuration.js" import { Memory } from "../Memory.js" +import { createBuildFolder } from "./linker.js" +import fs from "fs/promises" + +async function buildUI() { + const build = Memory.build() + let i = 0 + + build.set("ui/ui_defs.json", { + ui_defs: Array.from(build.keys()), + }) + + await Promise.all( + build.entries().map(async ([file, value]) => { + const outFile = `build/build/${file}` + await fs + .stat(outFile.split(/\\|\//g).slice(0, -1).join("/")) + .catch(async () => await fs.mkdir(outFile.split(/\\|\//g).slice(0, -1).join("/"), { recursive: true })) + + await fs.writeFile(outFile, JSON.stringify(value), "utf-8") + i++ + }), + ) + + return i - 1 +} if (isBuildMode) { - process.on("beforeExit", () => { - console.log(JSON.stringify(Memory.build(), null, 2)) + let first = true + process.on("beforeExit", async () => { + if (first) { + await createBuildFolder() + await buildUI() + } + first = false }) } diff --git a/src/compilers/ui/linker.ts b/src/compilers/ui/linker.ts index e69de29..e4fd71b 100644 --- a/src/compilers/ui/linker.ts +++ b/src/compilers/ui/linker.ts @@ -0,0 +1,12 @@ +import fs from "fs/promises" + +export async function clearBuild() { + await fs.rm("build/build", { recursive: true, force: true }) +} + +export async function createBuildFolder() { + return fs + .stat("build") + .catch(() => fs.mkdir("build")) + .then(() => clearBuild()) +} diff --git a/src/components/AnimationKeyframe.ts b/src/components/AnimationKeyframe.ts index 79ec74e..5613a8e 100644 --- a/src/components/AnimationKeyframe.ts +++ b/src/components/AnimationKeyframe.ts @@ -5,6 +5,7 @@ import { KeyframeAnimationProperties } from "../types/properties/element/Animati import { Animation } from "./Animation.js" import { Class } from "./Class.js" import { RandomString } from "./Utils.js" +import { RandomNamespace } from "../compilers/Random.js" import util from "node:util" @@ -35,7 +36,7 @@ export class AnimationKeyframe extends Class { } this.name = name || RandomString(16) - this.namespace = namespace || RandomString(16) + this.namespace = namespace || RandomNamespace() this.path = path || `@/${this.namespace}` Memory.add(this) diff --git a/src/components/UI.ts b/src/components/UI.ts index b7aa9e3..6d70e70 100644 --- a/src/components/UI.ts +++ b/src/components/UI.ts @@ -11,6 +11,7 @@ import { Animation } from "./Animation.js" import { AnimationKeyframe } from "./AnimationKeyframe.js" import { Class } from "./Class.js" import { ExtendsOf, RandomString, ResolveBinding } from "./Utils.js" +import { RandomNamespace } from "../compilers/Random.js" import util from "node:util" @@ -50,7 +51,7 @@ export class UI extends Class } this.name = name?.match(/^(\w|\/)+/)?.[0] || RandomString(16) - this.namespace = namespace || RandomString(16) + this.namespace = namespace || RandomNamespace() if (!path) this.path = `@/${this.namespace}` else this.path = path diff --git a/src/components/Utils.ts b/src/components/Utils.ts index ecd46f3..bf98c40 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -37,8 +37,8 @@ import { AnimationKeyframe } from "./AnimationKeyframe.js" import { AnimationProperties, KeyframeAnimationProperties } from "../types/properties/element/Animation.js" import { Animation } from "./Animation.js" import { SmartAnimation } from "../types/enums/SmartAnimation.js" +import { Memory, MemoryModify } from "../compilers/Memory.js" -const CHARS = "0123456789abcdefghijklmnopqrstuvwxyz" type CompileBinding = `[${string}]` export function Color(hex: string | number): Array3 { @@ -90,7 +90,7 @@ export function ResolveBinding(...bindings: BindingItem[]) { } export function RandomString(length: number, base: number = 32) { - const chars = CHARS.slice(0, base) + const chars = "0123456789abcdefghijklmnopqrstuvwxyz".slice(0, base) const out = new Array(length) try { @@ -140,8 +140,21 @@ 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, VanillaElementChilds>(namespace, name, paths[namespace][name]) + // @ts-ignore + const memoryUI = MemoryModify[paths[namespace][name]]?.[name] + // @ts-ignore + if (memoryUI) return memoryUI as ModifyUI, VanillaElementChilds> + // @ts-ignore + const modifyUI = new ModifyUI, VanillaElementChilds>( + namespace, + name, + // @ts-ignore + paths[namespace][name], + ) + // @ts-ignore + ;(MemoryModify[paths[namespace][name]] ||= {})[name] = modifyUI + + return modifyUI } export function Panel(properties?: Panel, namespace?: string, name?: string) { From 7a43d233e31d315f414f1d5d1a5009c417953c68 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Wed, 28 Jan 2026 10:45:47 +0700 Subject: [PATCH 027/245] feat: more things for this. --- package.json | 2 +- src/compilers/ui/buildcache.ts | 63 ++++++++++++++++++++++++++++++++++ src/compilers/ui/builder.ts | 1 + src/compilers/ui/installer.ts | 17 +++++++++ src/compilers/ui/linker.ts | 22 ++++++++++++ src/compilers/ui/manifest.ts | 21 ++++++++++++ src/index.ts | 1 + test/app.ts | 35 +------------------ 8 files changed, 127 insertions(+), 35 deletions(-) create mode 100644 src/compilers/ui/buildcache.ts diff --git a/package.json b/package.json index 7d29401..614cd68 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.0.0", + "version": "4.0.0-indev-1", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", diff --git a/src/compilers/ui/buildcache.ts b/src/compilers/ui/buildcache.ts new file mode 100644 index 0000000..97b1f5b --- /dev/null +++ b/src/compilers/ui/buildcache.ts @@ -0,0 +1,63 @@ +import fs from "fs/promises" + +export class BuildCache { + private static queue: Promise = Promise.resolve() + + private static async enqueue(task: () => Promise): Promise { + let result!: T + this.queue = this.queue.then(async () => { + result = await task() + }) + return this.queue.then(() => result) + } + + static async get(key: string): Promise { + return this.enqueue(async () => { + try { + return await fs.readFile("build/cache.json", "utf-8").then(data => JSON.parse(data)[key] ?? null) + } catch (error) { + return null + } + }) + } + + static async getWithDefault(key: string, defaultValue: (() => T) | T): Promise { + const outVal = typeof defaultValue === "function" ? (defaultValue as () => T)() : defaultValue + return this.get(key).then(value => value ?? outVal) + } + + static async getWithSetDefault(key: string, defaultValue: (() => T) | T): Promise { + const outVal = typeof defaultValue === "function" ? (defaultValue as () => T)() : defaultValue + + return this.enqueue(async () => { + let data: Record = {} + + try { + data = JSON.parse(await fs.readFile("build/cache.json", "utf-8")) + } catch {} + + if (key in data) return data[key] + data[key] = outVal + + await fs.writeFile("build/cache.json", JSON.stringify(data), "utf-8") + return outVal + }) + } + + static async set(key: string, value: unknown) { + return this.enqueue(async () => { + try { + return fs.writeFile( + "build/cache.json", + JSON.stringify({ + ...(await fs.readFile("build/cache.json", "utf-8").then(data => JSON.parse(data))), + [key]: value, + }), + "utf-8", + ) + } catch (error) { + return fs.writeFile("build/cache.json", JSON.stringify({ [key]: value }), "utf-8") + } + }) + } +} diff --git a/src/compilers/ui/builder.ts b/src/compilers/ui/builder.ts index 47c9830..efde52f 100644 --- a/src/compilers/ui/builder.ts +++ b/src/compilers/ui/builder.ts @@ -19,6 +19,7 @@ async function buildUI() { .catch(async () => await fs.mkdir(outFile.split(/\\|\//g).slice(0, -1).join("/"), { recursive: true })) await fs.writeFile(outFile, JSON.stringify(value), "utf-8") + build.delete(file) i++ }), ) diff --git a/src/compilers/ui/installer.ts b/src/compilers/ui/installer.ts index e69de29..191aa05 100644 --- a/src/compilers/ui/installer.ts +++ b/src/compilers/ui/installer.ts @@ -0,0 +1,17 @@ +import os from "os" +import path from "path" + +function getGamedataPath() { + switch (os.platform()) { + case "win32": { + if (/Windows (10|11)/.test(os.version())) { + return path.join(process.env.APPDATA!, "Minecraft Bedrock\\Users\\Shared\\games\\com.mojang") + } + } + + default: { + console.error(`Your platform is not supported the install feature yet! \nYour OS version: ${os.version()}`) + process.exit(1) + } + } +} diff --git a/src/compilers/ui/linker.ts b/src/compilers/ui/linker.ts index e4fd71b..abf8692 100644 --- a/src/compilers/ui/linker.ts +++ b/src/compilers/ui/linker.ts @@ -1,4 +1,16 @@ import fs from "fs/promises" +import { BuildCache } from "./buildcache.js" +import { RandomString } from "../../components/Utils.js" + +const HEX: string[] = Array.from({ length: 256 }, (_, i) => i.toString(16).toUpperCase().padStart(2, "0")) +function genUUID() { + const b = Array.from({ length: 16 }, () => Math.floor(Math.random() * 256)) + return `${HEX[b[0]]}${HEX[b[1]]}${HEX[b[2]]}${HEX[b[3]]}-${HEX[b[4]]}${HEX[b[5]]}-${ + HEX[b[6]] + }${HEX[b[7]]}-${HEX[b[8]]}${HEX[b[9]]}-${HEX[b[10]]}${HEX[b[11]]}${HEX[b[12]]}${ + HEX[b[13]] + }${HEX[b[14]]}${HEX[b[15]]}` +} export async function clearBuild() { await fs.rm("build/build", { recursive: true, force: true }) @@ -10,3 +22,13 @@ export async function createBuildFolder() { .catch(() => fs.mkdir("build")) .then(() => clearBuild()) } + +export async function getBuildFolderName() { + return await BuildCache.getWithSetDefault("build-key", () => RandomString(16)) +} + +export async function getUUID(): Promise<[string, string]> { + return await BuildCache.getWithSetDefault("uuid", () => { + return [genUUID(), genUUID()] + }) +} diff --git a/src/compilers/ui/manifest.ts b/src/compilers/ui/manifest.ts index e69de29..69a57e4 100644 --- a/src/compilers/ui/manifest.ts +++ b/src/compilers/ui/manifest.ts @@ -0,0 +1,21 @@ +import { getUUID } from "./linker.js" + +export async function genManifest() { + const [uuid1, uuid2] = await getUUID() + return JSON.stringify({ + format_version: 2, + header: { + name: "AsaJS UI", + uuid: uuid1, + description: "A framework for creating UIs for AsaJS.", + version: [4, 0, 0], + }, + modules: [ + { + type: "resources", + uuid: uuid2, + version: [4, 0, 0], + }, + ], + }) +} diff --git a/src/index.ts b/src/index.ts index a250a13..e337632 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,6 @@ import "./compilers/PreCompile.js" import "./compilers/ui/builder.js" +import "./compilers/ui/installer.js" export { Animation } from "./components/Animation.js" export { AnimationKeyframe } from "./components/AnimationKeyframe.js" diff --git a/test/app.ts b/test/app.ts index 3ca856a..42ea928 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1,34 +1 @@ -import { Anchor, AnimationOffset, Easing, KeyframeSize, Panel } from ".." - -const animation = AnimationOffset( - "smooth_loop", - { - to: [10, 10], - duration: 1.5, - }, - { - to: [1, 1], - }, - 1, - { - from: [10, 10], - to: [20, 20], - }, - { - to: [1, 1], - }, -).setLoop(true) - -const panel = Panel({ - anchor: Anchor.BOTTOM_LEFT, -}).addAnimations( - animation, - KeyframeSize({ - from: [10, 10], - to: [20, 20], - duration: 0.3, - easing: Easing.LINEAR, - }), -) - -console.log(animation, panel) +import { Panel } from ".." From 3158c3cec804054175fe189f486d1789f2631914 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Wed, 28 Jan 2026 11:37:43 +0700 Subject: [PATCH 028/245] idk --- src/compilers/ui/builder.ts | 11 ++++++----- src/compilers/ui/linker.ts | 23 ++++++++++++++++------- src/compilers/ui/manifest.ts | 4 +++- src/components/AnimationKeyframe.ts | 2 +- src/components/UI.ts | 16 +++++++++------- 5 files changed, 35 insertions(+), 21 deletions(-) diff --git a/src/compilers/ui/builder.ts b/src/compilers/ui/builder.ts index efde52f..a456da9 100644 --- a/src/compilers/ui/builder.ts +++ b/src/compilers/ui/builder.ts @@ -2,16 +2,16 @@ import { isBuildMode } from "../Configuration.js" import { Memory } from "../Memory.js" import { createBuildFolder } from "./linker.js" import fs from "fs/promises" +import { genManifest } from "./manifest.js" async function buildUI() { const build = Memory.build() - let i = 0 - build.set("ui/ui_defs.json", { + build.set("ui/_ui_defs.json", { ui_defs: Array.from(build.keys()), }) - await Promise.all( + const out = await Promise.all( build.entries().map(async ([file, value]) => { const outFile = `build/build/${file}` await fs @@ -20,11 +20,12 @@ async function buildUI() { await fs.writeFile(outFile, JSON.stringify(value), "utf-8") build.delete(file) - i++ }), ) - return i - 1 + await fs.writeFile("build/build/manifest.json", await genManifest(), "utf-8") + + return out.length } if (isBuildMode) { diff --git a/src/compilers/ui/linker.ts b/src/compilers/ui/linker.ts index abf8692..1da09d8 100644 --- a/src/compilers/ui/linker.ts +++ b/src/compilers/ui/linker.ts @@ -2,14 +2,23 @@ import fs from "fs/promises" import { BuildCache } from "./buildcache.js" import { RandomString } from "../../components/Utils.js" -const HEX: string[] = Array.from({ length: 256 }, (_, i) => i.toString(16).toUpperCase().padStart(2, "0")) -function genUUID() { +const HEX: string[] = Array.from({ length: 256 }, (_, i) => i.toString(16).padStart(2, "0")) + +function genUUID(): string { const b = Array.from({ length: 16 }, () => Math.floor(Math.random() * 256)) - return `${HEX[b[0]]}${HEX[b[1]]}${HEX[b[2]]}${HEX[b[3]]}-${HEX[b[4]]}${HEX[b[5]]}-${ - HEX[b[6]] - }${HEX[b[7]]}-${HEX[b[8]]}${HEX[b[9]]}-${HEX[b[10]]}${HEX[b[11]]}${HEX[b[12]]}${ - HEX[b[13]] - }${HEX[b[14]]}${HEX[b[15]]}` + + // version 4 + b[6] = (b[6] & 0x0f) | 0x40 + // variant 10xx + b[8] = (b[8] & 0x3f) | 0x80 + + return ( + `${HEX[b[0]]}${HEX[b[1]]}${HEX[b[2]]}${HEX[b[3]]}-` + + `${HEX[b[4]]}${HEX[b[5]]}-` + + `${HEX[b[6]]}${HEX[b[7]]}-` + + `${HEX[b[8]]}${HEX[b[9]]}-` + + `${HEX[b[10]]}${HEX[b[11]]}${HEX[b[12]]}${HEX[b[13]]}${HEX[b[14]]}${HEX[b[15]]}` + ) } export async function clearBuild() { diff --git a/src/compilers/ui/manifest.ts b/src/compilers/ui/manifest.ts index 69a57e4..67442f5 100644 --- a/src/compilers/ui/manifest.ts +++ b/src/compilers/ui/manifest.ts @@ -6,12 +6,14 @@ export async function genManifest() { format_version: 2, header: { name: "AsaJS UI", - uuid: uuid1, description: "A framework for creating UIs for AsaJS.", + uuid: uuid1, version: [4, 0, 0], + min_engine_version: [1, 21, 132], }, modules: [ { + description: "This resource pack generate by AsaJS.", type: "resources", uuid: uuid2, version: [4, 0, 0], diff --git a/src/components/AnimationKeyframe.ts b/src/components/AnimationKeyframe.ts index 5613a8e..c33ee0e 100644 --- a/src/components/AnimationKeyframe.ts +++ b/src/components/AnimationKeyframe.ts @@ -37,7 +37,7 @@ export class AnimationKeyframe extends Class { this.name = name || RandomString(16) this.namespace = namespace || RandomNamespace() - this.path = path || `@/${this.namespace}` + this.path = path || `@/${this.namespace}.json` Memory.add(this) } diff --git a/src/components/UI.ts b/src/components/UI.ts index 6d70e70..e1d3dde 100644 --- a/src/components/UI.ts +++ b/src/components/UI.ts @@ -53,7 +53,7 @@ export class UI extends Class this.name = name?.match(/^(\w|\/)+/)?.[0] || RandomString(16) this.namespace = namespace || RandomNamespace() - if (!path) this.path = `@/${this.namespace}` + if (!path) this.path = `@/${this.namespace}.json` else this.path = path this.extendable = this.name.search("/") === -1 @@ -247,9 +247,11 @@ export class ModifyUI ex return this.addModifications({ array_name: ArrayName.CONTROLS, operation: Operation.INSERT_FRONT, - value: { - [`${name}${child}`]: properties || {}, - }, + value: [ + { + [`${name}${child}`]: properties || {}, + }, + ], }) } @@ -292,7 +294,7 @@ export class ModifyUI ex } insertChild(child: UI, properties?: Properties) { - return this.insertBackChild(child, properties) + return this.insertFrontChild(child, properties) } replaceChild(where: S, child: UI, properties?: Properties) { @@ -334,7 +336,7 @@ export class ModifyUI ex } insertBindings(...bindings: BindingItem[]) { - return this.insertBackBindings(...bindings) + return this.insertFrontBindings(...bindings) } /** @@ -366,7 +368,7 @@ export class ModifyUI ex } insertButtonMappings(...buttonMappings: ButtonMapping[]) { - return this.insertBackButtonMappings(...buttonMappings) + return this.insertFrontButtonMappings(...buttonMappings) } /** From 6b5cc23888bc638c192f91e4c2cbb0e2637db5af Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 30 Jan 2026 01:33:05 +0700 Subject: [PATCH 029/245] installer --- src/compilers/FormatProperties.ts | 60 ++++++++++++++++--------------- src/compilers/Memory.ts | 6 ++-- src/compilers/ui/builder.ts | 33 ++++++++++++++--- src/compilers/ui/installer.ts | 2 +- src/compilers/ui/linker.ts | 13 ++++++- src/compilers/ui/prevdata.ts | 11 ++++++ src/components/UI.ts | 21 ++++++++--- src/components/Utils.ts | 29 ++++++++++++--- 8 files changed, 127 insertions(+), 48 deletions(-) create mode 100644 src/compilers/ui/prevdata.ts diff --git a/src/compilers/FormatProperties.ts b/src/compilers/FormatProperties.ts index dae702b..7ab723c 100644 --- a/src/compilers/FormatProperties.ts +++ b/src/compilers/FormatProperties.ts @@ -1,40 +1,42 @@ -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" +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) { - const property_bag: Record = {} + const property_bag: Record = {}; - for (const key in properties) { - const value = properties[key] + for (const key in properties) { + const value = properties[key]; - if (key.startsWith("#")) { - property_bag[key] = value - delete properties[key] - } - } + if (key.startsWith("#")) { + property_bag[key] = value; + delete properties[key]; + } + } - if (properties.anchor) { - properties.anchor_from = properties.anchor_to = properties.anchor - delete properties.anchor - } + if (properties.anchor) { + properties.anchor_from = properties.anchor_to = properties.anchor; + delete properties.anchor; + } - if (Object.keys(property_bag).length) { - if (properties.property_bag) { - properties.property_bag = { ...property_bag, ...properties.property_bag } - } else { - properties.property_bag = property_bag - } - } + if (Object.keys(property_bag).length) { + if (properties.property_bag) { + properties.property_bag = { ...property_bag, ...properties.property_bag }; + } else { + properties.property_bag = property_bag; + } + } - return properties + return properties; } -export function FormatAnimationProperties(properties: KeyframeAnimationProperties) { - if (properties.next instanceof AnimationKeyframe) { - properties.next = `${properties.next}` - } +export function FormatAnimationProperties( + properties: KeyframeAnimationProperties, +) { + if (properties.next instanceof AnimationKeyframe) { + properties.next = `${properties.next}`; + } - return properties + return properties; } diff --git a/src/compilers/Memory.ts b/src/compilers/Memory.ts index ff2731e..3aa8971 100644 --- a/src/compilers/Memory.ts +++ b/src/compilers/Memory.ts @@ -1,6 +1,6 @@ import { AnimationKeyframe } from "../components/AnimationKeyframe.js" import { Class } from "../components/Class.js" -import { ModifyUI, UI } from "../components/UI.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" @@ -40,9 +40,7 @@ export class Memory extends Class { Memory.files.entries().forEach(([path, { elements, namespace }]) => { const record: Record = {} - elements.forEach(element => { - record[element.name] = element - }) + elements.forEach(element => (record[element.name] = element)) data.set(path, { namespace, diff --git a/src/compilers/ui/builder.ts b/src/compilers/ui/builder.ts index a456da9..8ad69de 100644 --- a/src/compilers/ui/builder.ts +++ b/src/compilers/ui/builder.ts @@ -1,8 +1,10 @@ import { isBuildMode } from "../Configuration.js" import { Memory } from "../Memory.js" -import { createBuildFolder } from "./linker.js" -import fs from "fs/promises" +import { createBuildFolder, linkToGame } from "./linker.js" import { genManifest } from "./manifest.js" +import { UI } from "../../components/UI.js" +import { Type } from "../../types/enums/Type.js" +import fs from "fs/promises" async function buildUI() { const build = Memory.build() @@ -11,6 +13,10 @@ async function buildUI() { ui_defs: Array.from(build.keys()), }) + build.set("build.json", { + files: Array.from(build.keys()), + }) + const out = await Promise.all( build.entries().map(async ([file, value]) => { const outFile = `build/build/${file}` @@ -18,12 +24,30 @@ async function buildUI() { .stat(outFile.split(/\\|\//g).slice(0, -1).join("/")) .catch(async () => await fs.mkdir(outFile.split(/\\|\//g).slice(0, -1).join("/"), { recursive: true })) - await fs.writeFile(outFile, JSON.stringify(value), "utf-8") + await fs.writeFile( + outFile, + JSON.stringify( + Object.fromEntries( + Object.entries(value).map(([key, value]: [string, any]) => { + const extend = (value as UI).extend + return [extend ? key + String(extend) : key, value] + }), + ), + ), + "utf-8", + ) build.delete(file) + return file }), ) - await fs.writeFile("build/build/manifest.json", await genManifest(), "utf-8") + await Promise.all([ + fs.writeFile("build/build/manifest.json", await genManifest(), "utf-8"), + fs.writeFile("build/build/.gitignore", [...out, "manifest.json"].join("\n"), "utf-8"), + fs + .stat("build/build/pack_icon.png") + .catch(() => fs.copyFile("node_modules/asajs/resources/pack_icon.png", "build/build/pack_icon.png")), + ]) return out.length } @@ -34,6 +58,7 @@ if (isBuildMode) { if (first) { await createBuildFolder() await buildUI() + await linkToGame() } first = false }) diff --git a/src/compilers/ui/installer.ts b/src/compilers/ui/installer.ts index 191aa05..a22ec50 100644 --- a/src/compilers/ui/installer.ts +++ b/src/compilers/ui/installer.ts @@ -1,7 +1,7 @@ import os from "os" import path from "path" -function getGamedataPath() { +export function getGamedataPath() { switch (os.platform()) { case "win32": { if (/Windows (10|11)/.test(os.version())) { diff --git a/src/compilers/ui/linker.ts b/src/compilers/ui/linker.ts index 1da09d8..9a6ae15 100644 --- a/src/compilers/ui/linker.ts +++ b/src/compilers/ui/linker.ts @@ -1,6 +1,9 @@ import fs from "fs/promises" import { BuildCache } from "./buildcache.js" import { RandomString } from "../../components/Utils.js" +import { prevData } from "./prevdata.js" +import path from "path" +import { getGamedataPath } from "./installer.js" const HEX: string[] = Array.from({ length: 256 }, (_, i) => i.toString(16).padStart(2, "0")) @@ -22,7 +25,7 @@ function genUUID(): string { } export async function clearBuild() { - await fs.rm("build/build", { recursive: true, force: true }) + await Promise.all(prevData.files.map(file => fs.rm(`build/build/${file}`).catch(() => null))) } export async function createBuildFolder() { @@ -36,6 +39,14 @@ export async function getBuildFolderName() { return await BuildCache.getWithSetDefault("build-key", () => RandomString(16)) } +export async function linkToGame() { + const sourcePath = path.resolve("build/build") + const targetPath = path.resolve(getGamedataPath(), "development_resource_packs", await getBuildFolderName()) + await fs.stat(targetPath).catch(async () => { + await fs.symlink(sourcePath, targetPath, "junction") + }) +} + export async function getUUID(): Promise<[string, string]> { return await BuildCache.getWithSetDefault("uuid", () => { return [genUUID(), genUUID()] diff --git a/src/compilers/ui/prevdata.ts b/src/compilers/ui/prevdata.ts new file mode 100644 index 0000000..868db96 --- /dev/null +++ b/src/compilers/ui/prevdata.ts @@ -0,0 +1,11 @@ +import fs from "fs" + +export let prevData: { + files: string[] +} + +try { + prevData = JSON.parse(fs.readFileSync("build/build/build.json", "utf-8")) +} catch (error) { + prevData = { files: [] } +} diff --git a/src/components/UI.ts b/src/components/UI.ts index e1d3dde..0f42cd5 100644 --- a/src/components/UI.ts +++ b/src/components/UI.ts @@ -15,12 +15,18 @@ import { RandomNamespace } from "../compilers/Random.js" import util from "node:util" +interface ExtendUI { + name: string + namespace: string + toString(): string +} + export class UI extends Class { readonly path: string readonly name: string readonly namespace: string - readonly extend?: UI + readonly extend?: UI | ExtendUI readonly extendable: boolean protected readonly controls = new Map, Properties]>() @@ -53,7 +59,7 @@ export class UI extends Class this.name = name?.match(/^(\w|\/)+/)?.[0] || RandomString(16) this.namespace = namespace || RandomNamespace() - if (!path) this.path = `@/${this.namespace}.json` + if (!path) this.path = `asajs/${this.namespace}.json` else this.path = path this.extendable = this.name.search("/") === -1 @@ -132,8 +138,15 @@ export class UI extends Class * @param namespace * @returns */ - clone(properties?: Properties, name?: string, namespace?: string) { - return ExtendsOf(this, properties, name, namespace) + createExtends(properties?: Properties, name?: string, namespace?: string) { + if (!this.extendable) throw new Error("This element is not extendable") + const ui = new UI(undefined, name, namespace) + if (properties) ui.setProperties(properties) + // @ts-ignore + ui.extend = this + // @ts-ignore + ui.extendType = this.type || this.extendType + return ui } protected toString() { diff --git a/src/components/Utils.ts b/src/components/Utils.ts index bf98c40..625a643 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -37,7 +37,7 @@ import { AnimationKeyframe } from "./AnimationKeyframe.js" import { AnimationProperties, KeyframeAnimationProperties } from "../types/properties/element/Animation.js" import { Animation } from "./Animation.js" import { SmartAnimation } from "../types/enums/SmartAnimation.js" -import { Memory, MemoryModify } from "../compilers/Memory.js" +import { MemoryModify } from "../compilers/Memory.js" type CompileBinding = `[${string}]` @@ -250,9 +250,7 @@ export function ExtendsOf( namespace?: string, name?: string, ) { - if (!element.extendable) { - throw new Error("Cannot extend a UI that cannot be extended") - } + if (!element.extendable) throw new Error("Cannot extend a UI that cannot be extended") const ui = new UI(undefined, name, namespace) if (properties) ui.setProperties(properties) // @ts-ignore @@ -262,6 +260,27 @@ export function ExtendsOf( return ui as typeof element } +export function VanillaExtendsOf, `${string}/${string}`>>( + originNamespace: T, + originName: K, + // @ts-ignore + properties?: Properties, null>, + namespace?: string, + name?: string, +) { + // @ts-ignore + const ui = new UI, null>(undefined, name, namespace) + if (properties) ui.setProperties(properties) + // @ts-ignore + ui.extend = { + name: originName, + namespace: originNamespace, + toString: () => `@${originNamespace}.${originName}`, + } + + return ui +} + // Quick Keyframe export function KeyframeOffset( properties?: KeyframeAnimationProperties, @@ -359,7 +378,7 @@ export function AnimationAlpha(...keyframes: AnimWithSmartAnim) return new Animation(AnimType.ALPHA, ...keyframes) } -// Animation Extendof +// Animation ExtendsOf export function AnimationExtendsOf( animation: AnimationKeyframe | Animation, properties?: AnimationProperties, From c9ec6054e8ade2ba6e56060546a448a49d7f34f9 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 30 Jan 2026 01:33:26 +0700 Subject: [PATCH 030/245] indev-2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 614cd68..18977be 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.0.0-indev-1", + "version": "4.0.0-indev-2", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", From e75e45d056567b1f54428f9cd74bed03b244c642 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 30 Jan 2026 01:57:53 +0700 Subject: [PATCH 031/245] rename of animation and keyframe function --- src/components/Utils.ts | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/components/Utils.ts b/src/components/Utils.ts index 625a643..42920e6 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -282,7 +282,7 @@ export function VanillaExtendsOf, namespace?: string, name?: string, @@ -290,7 +290,7 @@ export function KeyframeOffset( return new AnimationKeyframe(AnimType.OFFSET, properties || {}, name, namespace) } -export function KeyframeSize( +export function SizeKeyframe( properties?: KeyframeAnimationProperties, namespace?: string, name?: string, @@ -298,11 +298,11 @@ export function KeyframeSize( return new AnimationKeyframe(AnimType.SIZE, properties || {}, name, namespace) } -export function KeyframeUV(properties?: KeyframeAnimationProperties, namespace?: string, name?: string) { +export function UVKeyframe(properties?: KeyframeAnimationProperties, namespace?: string, name?: string) { return new AnimationKeyframe(AnimType.UV, properties || {}, name, namespace) } -export function KeyframeClip( +export function ClipKeyframe( properties?: KeyframeAnimationProperties, namespace?: string, name?: string, @@ -310,7 +310,7 @@ export function KeyframeClip( return new AnimationKeyframe(AnimType.CLIP, properties || {}, name, namespace) } -export function KeyframeColor( +export function ColorKeyframe( properties?: KeyframeAnimationProperties, namespace?: string, name?: string, @@ -318,7 +318,7 @@ export function KeyframeColor( return new AnimationKeyframe(AnimType.COLOR, properties || {}, name, namespace) } -export function KeyframeAlpha( +export function AlphaKeyframe( properties?: KeyframeAnimationProperties, namespace?: string, name?: string, @@ -326,7 +326,7 @@ export function KeyframeAlpha( return new AnimationKeyframe(AnimType.ALPHA, properties || {}, name, namespace) } -export function KeyframeWait( +export function WaitKeyframe( properties?: KeyframeAnimationProperties, namespace?: string, name?: string, @@ -334,7 +334,7 @@ export function KeyframeWait( return new AnimationKeyframe(AnimType.WAIT, properties || {}, name, namespace) } -export function KeyframeFlipBook( +export function FlipBookKeyframe( properties?: KeyframeAnimationProperties, namespace?: string, name?: string, @@ -342,7 +342,7 @@ export function KeyframeFlipBook( return new AnimationKeyframe(AnimType.FLIP_BOOK, properties || {}, name, namespace) } -export function KeyframeAsepriteFlipBook( +export function AsepriteFlipBookKeyframe( properties?: KeyframeAnimationProperties, namespace?: string, name?: string, @@ -354,27 +354,27 @@ export function KeyframeAsepriteFlipBook( type Anim = AnimationProperties | number type AnimWithSmartAnim = [SmartAnimation | Anim, ...Anim[]] -export function AnimationOffset(...keyframes: AnimWithSmartAnim) { +export function OffsetAnimation(...keyframes: AnimWithSmartAnim) { return new Animation(AnimType.OFFSET, ...keyframes) } -export function AnimationSize(...keyframes: AnimWithSmartAnim) { +export function SizeAnimation(...keyframes: AnimWithSmartAnim) { return new Animation(AnimType.SIZE, ...keyframes) } -export function AnimationUV(...keyframes: AnimWithSmartAnim) { +export function UVAnimation(...keyframes: AnimWithSmartAnim) { return new Animation(AnimType.UV, ...keyframes) } -export function AnimationClip(...keyframes: AnimWithSmartAnim) { +export function ClipAnimation(...keyframes: AnimWithSmartAnim) { return new Animation(AnimType.CLIP, ...keyframes) } -export function AnimationColor(...keyframes: AnimWithSmartAnim) { +export function ColorAnimation(...keyframes: AnimWithSmartAnim) { return new Animation(AnimType.COLOR, ...keyframes) } -export function AnimationAlpha(...keyframes: AnimWithSmartAnim) { +export function AlphaAnimation(...keyframes: AnimWithSmartAnim) { return new Animation(AnimType.ALPHA, ...keyframes) } From 4ad9e832bdeda189cd5e0aac77a70c42a85b7af0 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 30 Jan 2026 03:33:27 +0700 Subject: [PATCH 032/245] asajs configuration file --- config.d.ts | 14 ++++++++++++++ resources/asajs.config.cjs | 9 +++++++++ src/compilers/Configuration.ts | 21 ++++++++++++++++++++- src/compilers/ui/builder.ts | 21 ++++++++++++--------- src/compilers/ui/linker.ts | 13 +++++++++++-- src/compilers/ui/manifest.ts | 7 ++++--- src/compilers/ui/prevdata.ts | 2 +- src/components/AnimationKeyframe.ts | 2 +- src/index.ts | 3 +++ tsconfig.json | 2 +- 10 files changed, 76 insertions(+), 18 deletions(-) create mode 100644 config.d.ts create mode 100644 resources/asajs.config.cjs diff --git a/config.d.ts b/config.d.ts new file mode 100644 index 0000000..8960a80 --- /dev/null +++ b/config.d.ts @@ -0,0 +1,14 @@ +import { Variable } from "./src/types/properties/value.ts" + +export interface Config { + compiler?: { + enabled?: boolean + linked?: boolean + } + packinfo?: { + name?: string + description?: string + version?: [number, number, number] + } + global_variables?: Record +} diff --git a/resources/asajs.config.cjs b/resources/asajs.config.cjs new file mode 100644 index 0000000..7e4026f --- /dev/null +++ b/resources/asajs.config.cjs @@ -0,0 +1,9 @@ +/** + * Configuration object for the AsaJS build process. + * @type {import('asajs/config.d.ts').Config} + */ +export const config = { + compiler: { + enabled: true, + }, +} diff --git a/src/compilers/Configuration.ts b/src/compilers/Configuration.ts index 32b62ef..f34c6ca 100644 --- a/src/compilers/Configuration.ts +++ b/src/compilers/Configuration.ts @@ -1 +1,20 @@ -export const isBuildMode = process.argv.includes("--build") +import fs from "fs" +import path from "path" +// @ts-ignore +import { Config } from "../../config.js" + +if (!fs.existsSync("asajs.config.cjs")) { + fs.copyFileSync("node_modules/asajs/resources/asajs.config.cjs", "asajs.config.cjs") +} + +export const config: Config = require(path.resolve(process.cwd(), "asajs.config.cjs")).config + +export let isBuildMode = config.compiler?.enabled ?? false +export let isLinkMode = config.compiler?.linked ?? false +export let unLinked = !(config.compiler?.linked ?? true) + +for (const arg of process.argv) { + if (arg === "--build") isBuildMode = true + if (arg === "--link") isLinkMode = true + else if (arg === "--unlink") unLinked = true +} diff --git a/src/compilers/ui/builder.ts b/src/compilers/ui/builder.ts index 8ad69de..1343fa2 100644 --- a/src/compilers/ui/builder.ts +++ b/src/compilers/ui/builder.ts @@ -1,6 +1,6 @@ -import { isBuildMode } from "../Configuration.js" +import { config, isBuildMode, isLinkMode, unLinked } from "../Configuration.js" import { Memory } from "../Memory.js" -import { createBuildFolder, linkToGame } from "./linker.js" +import { createBuildFolder, linkToGame, unlink } from "./linker.js" import { genManifest } from "./manifest.js" import { UI } from "../../components/UI.js" import { Type } from "../../types/enums/Type.js" @@ -13,13 +13,15 @@ async function buildUI() { ui_defs: Array.from(build.keys()), }) + if (config.global_variables) build.set("ui/_global_variables.json", config.global_variables) + build.set("build.json", { files: Array.from(build.keys()), }) const out = await Promise.all( build.entries().map(async ([file, value]) => { - const outFile = `build/build/${file}` + const outFile = `build/${file}` await fs .stat(outFile.split(/\\|\//g).slice(0, -1).join("/")) .catch(async () => await fs.mkdir(outFile.split(/\\|\//g).slice(0, -1).join("/"), { recursive: true })) @@ -42,11 +44,11 @@ async function buildUI() { ) await Promise.all([ - fs.writeFile("build/build/manifest.json", await genManifest(), "utf-8"), - fs.writeFile("build/build/.gitignore", [...out, "manifest.json"].join("\n"), "utf-8"), + fs.writeFile("build/manifest.json", await genManifest(), "utf-8"), + fs.writeFile("build/.gitignore", [...out, "manifest.json"].join("\n"), "utf-8"), fs - .stat("build/build/pack_icon.png") - .catch(() => fs.copyFile("node_modules/asajs/resources/pack_icon.png", "build/build/pack_icon.png")), + .stat("build/pack_icon.png") + .catch(() => fs.copyFile("node_modules/asajs/resources/pack_icon.png", "build/pack_icon.png")), ]) return out.length @@ -58,8 +60,9 @@ if (isBuildMode) { if (first) { await createBuildFolder() await buildUI() - await linkToGame() + if (isLinkMode) await linkToGame() } first = false }) -} +} else if (isLinkMode) linkToGame() +else if (unLinked) unlink() diff --git a/src/compilers/ui/linker.ts b/src/compilers/ui/linker.ts index 9a6ae15..ca33802 100644 --- a/src/compilers/ui/linker.ts +++ b/src/compilers/ui/linker.ts @@ -25,7 +25,7 @@ function genUUID(): string { } export async function clearBuild() { - await Promise.all(prevData.files.map(file => fs.rm(`build/build/${file}`).catch(() => null))) + await Promise.all(prevData.files.map(file => fs.rm(`build/${file}`).catch(() => null))) } export async function createBuildFolder() { @@ -40,13 +40,22 @@ export async function getBuildFolderName() { } export async function linkToGame() { - const sourcePath = path.resolve("build/build") + const sourcePath = path.resolve("build") const targetPath = path.resolve(getGamedataPath(), "development_resource_packs", await getBuildFolderName()) await fs.stat(targetPath).catch(async () => { await fs.symlink(sourcePath, targetPath, "junction") }) } +export async function unlink() { + const targetPath = path.resolve(getGamedataPath(), "development_resource_packs", await getBuildFolderName()) + try { + await fs.unlink(targetPath) + } catch (error) { + console.error(error) + } +} + export async function getUUID(): Promise<[string, string]> { return await BuildCache.getWithSetDefault("uuid", () => { return [genUUID(), genUUID()] diff --git a/src/compilers/ui/manifest.ts b/src/compilers/ui/manifest.ts index 67442f5..7b22595 100644 --- a/src/compilers/ui/manifest.ts +++ b/src/compilers/ui/manifest.ts @@ -1,3 +1,4 @@ +import { config } from "../Configuration.js" import { getUUID } from "./linker.js" export async function genManifest() { @@ -5,10 +6,10 @@ export async function genManifest() { return JSON.stringify({ format_version: 2, header: { - name: "AsaJS UI", - description: "A framework for creating UIs for AsaJS.", + name: config.packinfo?.name || "AsaJS", + description: config.packinfo?.description || "A framework for creating UIs for AsaJS.", uuid: uuid1, - version: [4, 0, 0], + version: config.packinfo?.version || [4, 0, 0], min_engine_version: [1, 21, 132], }, modules: [ diff --git a/src/compilers/ui/prevdata.ts b/src/compilers/ui/prevdata.ts index 868db96..1d34dfe 100644 --- a/src/compilers/ui/prevdata.ts +++ b/src/compilers/ui/prevdata.ts @@ -5,7 +5,7 @@ export let prevData: { } try { - prevData = JSON.parse(fs.readFileSync("build/build/build.json", "utf-8")) + prevData = JSON.parse(fs.readFileSync("build/build.json", "utf-8")) } catch (error) { prevData = { files: [] } } diff --git a/src/components/AnimationKeyframe.ts b/src/components/AnimationKeyframe.ts index c33ee0e..18df5c4 100644 --- a/src/components/AnimationKeyframe.ts +++ b/src/components/AnimationKeyframe.ts @@ -37,7 +37,7 @@ export class AnimationKeyframe extends Class { this.name = name || RandomString(16) this.namespace = namespace || RandomNamespace() - this.path = path || `@/${this.namespace}.json` + this.path = path || `asajs/${this.namespace}.json` Memory.add(this) } diff --git a/src/index.ts b/src/index.ts index e337632..cbd3433 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,3 +1,4 @@ +import "./compilers/Configuration.js" import "./compilers/PreCompile.js" import "./compilers/ui/builder.js" import "./compilers/ui/installer.js" @@ -11,3 +12,5 @@ export * from "./types/enums/index.js" export * as Properties from "./types/properties/index.js" export { ItemAuxID } from "./types/enums/Items.js" + +export { ArrayName, Operation } from "./types/properties/index.js" diff --git a/tsconfig.json b/tsconfig.json index 86ebf2d..faa887d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,6 +12,6 @@ "incremental": true, "tsBuildInfoFile": ".tsbuildinfo" }, - "include": ["src/**/*"], + "include": ["src/**/*", "config.d.ts"], "exclude": ["node_modules"] } From a2ad1bf977d0a2257bc57e7ce03bd31a2b9d3f48 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 30 Jan 2026 11:29:03 +0700 Subject: [PATCH 033/245] config --- config.d.ts | 12 ++++++++++++ package.json | 2 +- resources/asajs.config.cjs | 5 +++++ src/compilers/Configuration.ts | 4 ++++ src/compilers/ui/builder.ts | 6 ++---- src/compilers/ui/linker.ts | 4 ++-- src/compilers/ui/manifest.ts | 7 +++++-- src/compilers/ui/prevdata.ts | 11 ----------- src/components/Utils.ts | 6 ++++++ 9 files changed, 37 insertions(+), 20 deletions(-) delete mode 100644 src/compilers/ui/prevdata.ts diff --git a/config.d.ts b/config.d.ts index 8960a80..7d9cfce 100644 --- a/config.d.ts +++ b/config.d.ts @@ -9,6 +9,18 @@ export interface Config { name?: string description?: string version?: [number, number, number] + + metadata?: { + authors?: string[] + license?: string + url?: string + } + + subpacks?: { + folder_name?: string + name?: string + memory_performance_tier?: number + }[] } global_variables?: Record } diff --git a/package.json b/package.json index 18977be..6aceaa5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.0.0-indev-2", + "version": "4.0.0-indev-3", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", diff --git a/resources/asajs.config.cjs b/resources/asajs.config.cjs index 7e4026f..61c33d7 100644 --- a/resources/asajs.config.cjs +++ b/resources/asajs.config.cjs @@ -3,7 +3,12 @@ * @type {import('asajs/config.d.ts').Config} */ export const config = { + packinfo: { + name: "AsaJS", + description: "Create your Minecraft JSON-UI resource packs using JavaScript.", + }, compiler: { enabled: true, + linked: false, }, } diff --git a/src/compilers/Configuration.ts b/src/compilers/Configuration.ts index f34c6ca..758a087 100644 --- a/src/compilers/Configuration.ts +++ b/src/compilers/Configuration.ts @@ -7,6 +7,10 @@ if (!fs.existsSync("asajs.config.cjs")) { fs.copyFileSync("node_modules/asajs/resources/asajs.config.cjs", "asajs.config.cjs") } +if (!fs.existsSync(".gitignore")) { + fs.writeFileSync(".gitignore", `node_modules`, "utf-8") +} + export const config: Config = require(path.resolve(process.cwd(), "asajs.config.cjs")).config export let isBuildMode = config.compiler?.enabled ?? false diff --git a/src/compilers/ui/builder.ts b/src/compilers/ui/builder.ts index 1343fa2..a4d4acc 100644 --- a/src/compilers/ui/builder.ts +++ b/src/compilers/ui/builder.ts @@ -5,6 +5,7 @@ import { genManifest } from "./manifest.js" import { UI } from "../../components/UI.js" import { Type } from "../../types/enums/Type.js" import fs from "fs/promises" +import { BuildCache } from "./buildcache.js" async function buildUI() { const build = Memory.build() @@ -15,10 +16,6 @@ async function buildUI() { if (config.global_variables) build.set("ui/_global_variables.json", config.global_variables) - build.set("build.json", { - files: Array.from(build.keys()), - }) - const out = await Promise.all( build.entries().map(async ([file, value]) => { const outFile = `build/${file}` @@ -46,6 +43,7 @@ async function buildUI() { await Promise.all([ fs.writeFile("build/manifest.json", await genManifest(), "utf-8"), fs.writeFile("build/.gitignore", [...out, "manifest.json"].join("\n"), "utf-8"), + BuildCache.set("build-files", [...out, "manifest.json"]), fs .stat("build/pack_icon.png") .catch(() => fs.copyFile("node_modules/asajs/resources/pack_icon.png", "build/pack_icon.png")), diff --git a/src/compilers/ui/linker.ts b/src/compilers/ui/linker.ts index ca33802..dfba894 100644 --- a/src/compilers/ui/linker.ts +++ b/src/compilers/ui/linker.ts @@ -1,7 +1,6 @@ import fs from "fs/promises" import { BuildCache } from "./buildcache.js" import { RandomString } from "../../components/Utils.js" -import { prevData } from "./prevdata.js" import path from "path" import { getGamedataPath } from "./installer.js" @@ -25,7 +24,8 @@ function genUUID(): string { } export async function clearBuild() { - await Promise.all(prevData.files.map(file => fs.rm(`build/${file}`).catch(() => null))) + const files: string[] = (await BuildCache.get("build-files")) || [] + await Promise.all(files.map(file => fs.rm(`build/${file}`).catch(() => null))) } export async function createBuildFolder() { diff --git a/src/compilers/ui/manifest.ts b/src/compilers/ui/manifest.ts index 7b22595..f80653e 100644 --- a/src/compilers/ui/manifest.ts +++ b/src/compilers/ui/manifest.ts @@ -7,10 +7,11 @@ export async function genManifest() { format_version: 2, header: { name: config.packinfo?.name || "AsaJS", - description: config.packinfo?.description || "A framework for creating UIs for AsaJS.", + description: + config.packinfo?.description || "Create your Minecraft JSON-UI resource packs using JavaScript.", uuid: uuid1, version: config.packinfo?.version || [4, 0, 0], - min_engine_version: [1, 21, 132], + min_engine_version: [1, 21, 80], }, modules: [ { @@ -20,5 +21,7 @@ export async function genManifest() { version: [4, 0, 0], }, ], + subpacks: config.packinfo?.subpacks, + metadata: config.packinfo?.metadata, }) } diff --git a/src/compilers/ui/prevdata.ts b/src/compilers/ui/prevdata.ts deleted file mode 100644 index 1d34dfe..0000000 --- a/src/compilers/ui/prevdata.ts +++ /dev/null @@ -1,11 +0,0 @@ -import fs from "fs" - -export let prevData: { - files: string[] -} - -try { - prevData = JSON.parse(fs.readFileSync("build/build.json", "utf-8")) -} catch (error) { - prevData = { files: [] } -} diff --git a/src/components/Utils.ts b/src/components/Utils.ts index 42920e6..bbf3e16 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -144,6 +144,12 @@ export function Modify>(namespace: T, const memoryUI = MemoryModify[paths[namespace][name]]?.[name] // @ts-ignore if (memoryUI) return memoryUI as ModifyUI, VanillaElementChilds> + if (!paths[namespace]) { + throw new Error(`Namespace '${namespace}' does not exist`) + // @ts-ignore + } else if (!paths[namespace][name]) { + throw new Error(`Element '${name}' does not exist in namespace '${namespace}'`) + } // @ts-ignore const modifyUI = new ModifyUI, VanillaElementChilds>( namespace, From 3cee8670446b9e4ca964e90d255aaef85e0c3935 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 30 Jan 2026 15:31:25 +0700 Subject: [PATCH 034/245] feat: bitwise operator to binding --- src/compilers/bindings/Funtion.ts | 24 +++-- src/compilers/bindings/Lexer.ts | 15 +-- src/compilers/bindings/Parser.ts | 152 ++++++++++++++++++++++++++++-- src/components/UI.ts | 9 +- src/components/Utils.ts | 4 +- src/index.ts | 2 + 6 files changed, 179 insertions(+), 27 deletions(-) diff --git a/src/compilers/bindings/Funtion.ts b/src/compilers/bindings/Funtion.ts index 854288b..70cf47f 100644 --- a/src/compilers/bindings/Funtion.ts +++ b/src/compilers/bindings/Funtion.ts @@ -1,4 +1,5 @@ import { RandomBindingString } from "../../components/Utils.js" +import { Parser } from "./Parser.js" import { Expression, GenBinding } from "./types.js" type Callback = (...args: Expression[]) => { @@ -6,14 +7,14 @@ type Callback = (...args: Expression[]) => { value: Expression } -export const FuntionMap = new Map() +export const FunctionMap = new Map() function callFn(name: string, ...args: Expression[]) { - return FuntionMap.get(name)!(...args) + return FunctionMap.get(name)!(...args) } // Default Functions -FuntionMap.set("abs", number => { +FunctionMap.set("abs", number => { const randomBinding = RandomBindingString(16) return { genBindings: [{ source: `((-1 + (${number} > 0) * 2) * ${number})`, target: randomBinding }], @@ -21,7 +22,7 @@ FuntionMap.set("abs", number => { } }) -FuntionMap.set("new", expression => { +FunctionMap.set("new", expression => { const randomBinding = RandomBindingString(16) return { genBindings: [{ source: expression, target: randomBinding }], @@ -29,7 +30,7 @@ FuntionMap.set("new", expression => { } }) -FuntionMap.set("sqrt", number => { +FunctionMap.set("sqrt", number => { const rtn = RandomBindingString(16), $1 = RandomBindingString(16), $2 = RandomBindingString(16) @@ -56,8 +57,19 @@ FuntionMap.set("sqrt", number => { } }) -FuntionMap.set("translatable", key => { +FunctionMap.set("translatable", key => { return { value: `'%' + ${key}`, } }) + +FunctionMap.set("bin", input => { + const { ret, bindings } = Parser.intToBin(input) + + bindings.push({ + source: `'§z' + ${Array.from({ length: 30 }, (_, i) => `${ret}${30 - i - 1}`).join(" + ")}`, + target: ret, + }) + + return { genBindings: bindings, value: ret } +}) diff --git a/src/compilers/bindings/Lexer.ts b/src/compilers/bindings/Lexer.ts index bfb5ca9..4870e53 100644 --- a/src/compilers/bindings/Lexer.ts +++ b/src/compilers/bindings/Lexer.ts @@ -47,6 +47,7 @@ export function Lexer(input: string, start: number = 0, end?: number) { case "*": case "/": case "%": + case "^": tokens.push(makeToken(input, TokenKind.OPERATOR, index)) break @@ -63,19 +64,19 @@ export function Lexer(input: string, start: number = 0, end?: number) { case "|": case "=": if (input[index + 1] === input[index]) tokens.push(makeToken(input, TokenKind.OPERATOR, index++, 2)) - else { - console.error( - `\x1b[31merror: ${input + "\n" + " ".repeat(index + 7) + "^"}\nInvalid character.\x1b[0m`, - ) - throw new Error() - } + else tokens.push(makeToken(input, TokenKind.OPERATOR, index)) break case "!": case ">": case "<": if (input[index + 1] === "=") tokens.push(makeToken(input, TokenKind.OPERATOR, index++, 2)) - else tokens.push(makeToken(input, TokenKind.OPERATOR, index)) + else { + if (input[index] === input[index + 1]) { + if (input[index] !== "!") tokens.push(makeToken(input, TokenKind.OPERATOR, index++, 2)) + else tokens.push(makeToken(input, TokenKind.OPERATOR, index)) + } else tokens.push(makeToken(input, TokenKind.OPERATOR, index)) + } break // string diff --git a/src/compilers/bindings/Parser.ts b/src/compilers/bindings/Parser.ts index 370decd..e3d7fa3 100644 --- a/src/compilers/bindings/Parser.ts +++ b/src/compilers/bindings/Parser.ts @@ -1,8 +1,9 @@ import { Expression, GenBinding, Token, TokenKind, TSToken, TSTokenKind } from "./types.js" import { BindingType } from "../../types/enums/BindingType.js" -import { BindingItem } from "../../types/properties/value.js" -import { FuntionMap } from "./Funtion.js" +import { Binding, BindingItem } from "../../types/properties/value.js" +import { FunctionMap } from "./Funtion.js" import { Lexer } from "./Lexer.js" +import { RandomBindingString } from "../../components/Utils.js" export class Parser { position: number = 0 @@ -11,7 +12,10 @@ export class Parser { genBindings: GenBinding[] = [] output: Expression - constructor(private input: string) { + constructor( + private input: string, + private cache = new Map(), + ) { this.tokens = Lexer(this.input) this.output = this.parseExpression() @@ -20,6 +24,36 @@ export class Parser { } } + static intToBin(input: string) { + const bindings: GenBinding[] = [] + const rtn = RandomBindingString(16) + + for (let i = 0; i < 30; i++) { + bindings.push({ + source: `(${input} / ${2 ** i} - (${input} / ${2 ** (i + 1)}) * 2)`, + target: `${rtn}${i}`, + }) + } + + return { + ret: rtn, + bindings, + } + } + + intToBin(input: string) { + const inStr = `expr:${input}` + + if (this.cache.has(inStr)) { + return this.cache.get(inStr) as string + } else { + const { ret, bindings } = Parser.intToBin(input) + this.cache.set(inStr, ret) + this.genBindings.push(...bindings) + return ret + } + } + at() { return this.tokens[this.position] } @@ -114,7 +148,7 @@ export class Parser { } private parseMultiplicativeExpression(): Expression { - let left = this.parsePrimaryExpression(), + let left = this.parseBitwiseLogicExpression(), current while ( @@ -132,6 +166,99 @@ export class Parser { return left } + private parseBitwiseLogicExpression(): Expression { + let left = this.parseBitwiseShiftExpression(), + current + + while ( + (current = this.at()) && + this.at()?.kind === TokenKind.OPERATOR && + ["&", "|", "^"].includes(current.value) + ) { + const operator = this.eat() + const right = this.parsePrimaryExpression() + + const ret = RandomBindingString(16) + + const leftBin = this.intToBin(left) + const rightBin = this.intToBin(right) + + if (operator.value === "&") { + this.genBindings.push( + ...Array.from({ length: 30 }, (_, i) => { + return { + source: `(${leftBin}${i} * ${rightBin}${i})`, + target: `${ret}${i}`, + } + }), + ) + } else if (operator.value === "|") { + this.genBindings.push( + ...Array.from({ length: 30 }, (_, i) => { + return { + source: `(${leftBin}${i} + ${rightBin}${i} - (${leftBin}${i} * ${rightBin}${i}))`, + target: `${ret}${i}`, + } + }), + ) + } else { + this.genBindings.push( + ...Array.from({ length: 30 }, (_, i) => { + return { + source: `(${leftBin}${i} + ${rightBin}${i} - 2 * (${leftBin}${i} * ${rightBin}${i}))`, + target: `${ret}${i}`, + } + }), + ) + } + + this.genBindings.push({ + source: `(${Array.from({ length: 30 }, (_, i) => `(${ret}${i} * ${2 ** i})`).join(" + ")})`, + target: ret, + }) + + left = ret + } + + return left + } + + private parseBitwiseShiftExpression(): Expression { + let left = this.parsePrimaryExpression(), + current + + while ( + (current = this.at()) && + this.at()?.kind === TokenKind.OPERATOR && + [">>", "<<"].includes(current.value) + ) { + const operator = this.eat() + const right = this.parsePrimaryExpression() + const ret = RandomBindingString(16) + const leftBind = this.intToBin(left) + + const op = operator.value === "<<" ? "-" : "+" + + this.genBindings.push( + ...Array.from({ length: 30 }, (_, i) => { + return { + source: `((0 * ${left}) + ('${leftBind}' + (${i} ${op} ${right})))`, + target: `${ret}${i}`, + } + }), + ) + + this.genBindings.push({ + source: `(${Array.from({ length: 30 }, (_, i) => `(${ret}${i} * ${2 ** i})`).join(" + ")})`, + target: ret, + }) + + left = ret + } + + return left + } + private parsePrimaryExpression(): Expression { const left = this.at() @@ -247,7 +374,15 @@ export class Parser { this.eat() - return this.funtionCall(callerToken.value, ...args) + const inputStr = `func:${callerToken.value}(${args.join(", ")})` + + if (this.cache.has(inputStr)) { + return this.cache.get(inputStr) as Expression + } else { + const ret = this.functionCall(callerToken.value, ...args) + this.cache.set(inputStr, ret) + return ret + } } else if (left?.kind === TokenKind.OPERATOR) { this.warn( `Implicit string literal '${callerToken.value}'. Use quoted string ('${callerToken.value}') for clarity!`, @@ -265,8 +400,8 @@ export class Parser { } } - private funtionCall(name: string, ...params: Expression[]): Expression { - const func = FuntionMap.get(name.toLowerCase()) + private functionCall(name: string, ...params: Expression[]): Expression { + const func = FunctionMap.get(name.toLowerCase()) if (!func) { return this.expect(TokenKind.WORD, "Function not found!")! } else { @@ -294,9 +429,10 @@ export class Parser { return this.input + "\n" + " ".repeat(token.start + (isWarn ? 5 : 7)) + "^".repeat(token.length) } - out(): { gen?: BindingItem[]; out: Expression } { + out(): { gen?: BindingItem[]; out: Expression; cache: Map } { return { out: `(${this.output})`, + cache: this.cache, gen: this.genBindings.map( ({ source, target }) => { diff --git a/src/components/UI.ts b/src/components/UI.ts index 0f42cd5..f622d16 100644 --- a/src/components/UI.ts +++ b/src/components/UI.ts @@ -10,7 +10,7 @@ import { BindingItem, ButtonMapping, ModificationItem, VariableItem, Variables } import { Animation } from "./Animation.js" import { AnimationKeyframe } from "./AnimationKeyframe.js" import { Class } from "./Class.js" -import { ExtendsOf, RandomString, ResolveBinding } from "./Utils.js" +import { RandomString, ResolveBinding } from "./Utils.js" import { RandomNamespace } from "../compilers/Random.js" import util from "node:util" @@ -37,6 +37,7 @@ export class UI extends Class protected readonly extendType?: Type protected properties: Properties = {} + protected bindCache = new Map() constructor( public type?: T, @@ -83,7 +84,7 @@ export class UI extends Class * @returns */ addBindings(...bindings: BindingItem[]) { - this.bindings.push(...ResolveBinding(...bindings)) + this.bindings.push(...ResolveBinding(this.bindCache, ...bindings)) return this } @@ -336,7 +337,7 @@ export class ModifyUI ex return this.addModifications({ array_name: ArrayName.BINDINGS, operation: Operation.INSERT_BACK, - value: ResolveBinding(...bindings), + value: ResolveBinding(this.bindCache, ...bindings), }) } @@ -344,7 +345,7 @@ export class ModifyUI ex return this.addModifications({ array_name: ArrayName.BINDINGS, operation: Operation.INSERT_FRONT, - value: ResolveBinding(...bindings), + value: ResolveBinding(this.bindCache, ...bindings), }) } diff --git a/src/components/Utils.ts b/src/components/Utils.ts index bbf3e16..5615e96 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -68,13 +68,13 @@ export function Color(hex: string | number): Array3 { } } -export function ResolveBinding(...bindings: BindingItem[]) { +export function ResolveBinding(cache: Map, ...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() + const { gen, out } = new Parser(binding.source_property_name.slice(1, -1), cache).out() if (gen) result.push(...gen) binding.source_property_name = out } diff --git a/src/index.ts b/src/index.ts index cbd3433..cd215b2 100644 --- a/src/index.ts +++ b/src/index.ts @@ -14,3 +14,5 @@ export * as Properties from "./types/properties/index.js" export { ItemAuxID } from "./types/enums/Items.js" export { ArrayName, Operation } from "./types/properties/index.js" + +export { Lexer } from "./compilers/bindings/Lexer.js" From bc02ee786ec9f080d3af2aff5312d5366b88f6be Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 30 Jan 2026 17:04:27 +0700 Subject: [PATCH 035/245] nothing --- src/types/enums/index.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/types/enums/index.ts b/src/types/enums/index.ts index 3e12567..ad47853 100644 --- a/src/types/enums/index.ts +++ b/src/types/enums/index.ts @@ -27,5 +27,4 @@ export { TextboxName } from "./TextboxName.js" export { SliderName } from "./SliderName.js" export { ToggleName } from "./ToggleName.js" export { BagBinding } from "./BagBinding.js" -export { Binding } from "./Binding.js" -export { SmartAnimation } from "./SmartAnimation.js" +export { Binding } from "./Binding.js" \ No newline at end of file From 0538b3cee2e9a21430059f21d64d7816e8045ec9 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 30 Jan 2026 19:42:42 +0700 Subject: [PATCH 036/245] idk --- src/compilers/bindings/Checker.ts | 12 ++++ .../bindings/{Funtion.ts => Function.ts} | 19 ++++++ src/compilers/bindings/Lexer.ts | 38 +++++++++++ src/compilers/bindings/Parser.ts | 63 ++++++++++++++++--- src/components/Utils.ts | 61 +++++++++++++++++- 5 files changed, 182 insertions(+), 11 deletions(-) rename src/compilers/bindings/{Funtion.ts => Function.ts} (84%) diff --git a/src/compilers/bindings/Checker.ts b/src/compilers/bindings/Checker.ts index 3f985ee..c0092f0 100644 --- a/src/compilers/bindings/Checker.ts +++ b/src/compilers/bindings/Checker.ts @@ -10,6 +10,18 @@ export function isNumberChar(char: string) { return /\d/.test(char) } +export function isHexChar(char: string) { + return /[0-9a-fA-F]/.test(char) +} + +export function isBinaryChar(char: string) { + return /[01]/.test(char) +} + +export function isOctalChar(char: string) { + return /[0-7]/.test(char) +} + export function isCompileBinding(input: string) { return input.startsWith("[") && input.endsWith("]") } diff --git a/src/compilers/bindings/Funtion.ts b/src/compilers/bindings/Function.ts similarity index 84% rename from src/compilers/bindings/Funtion.ts rename to src/compilers/bindings/Function.ts index 70cf47f..a2929f1 100644 --- a/src/compilers/bindings/Funtion.ts +++ b/src/compilers/bindings/Function.ts @@ -73,3 +73,22 @@ FunctionMap.set("bin", input => { return { genBindings: bindings, value: ret } }) + +FunctionMap.set("bind", (value, bait) => { + const ret = RandomBindingString(16) + + if (!bait) { + throw new Error("Bait is required") + } + + return { + genBindings: [{ source: `((${bait} - ${bait}) + ${value})`, target: ret }], + value: ret, + } +}) + +FunctionMap.set("int", input => { + return { + value: input, + } +}) diff --git a/src/compilers/bindings/Lexer.ts b/src/compilers/bindings/Lexer.ts index 4870e53..bc47d30 100644 --- a/src/compilers/bindings/Lexer.ts +++ b/src/compilers/bindings/Lexer.ts @@ -188,6 +188,44 @@ export function Lexer(input: string, start: number = 0, end?: number) { let start = index if (Checker.isNumberChar(token)) { + if (token === "0") { + const numType = input[index + 1] + if (numType === "x") { + index += 2 + while (Checker.isHexChar(input[index + 1])) index++ + if (start + 2 === index) { + console.error( + `\x1b[31merror: ${input + "\n" + " ".repeat(index + 6) + "^"}\nInvalid character.\x1b[0m`, + ) + throw new Error() + } + tokens.push(makeToken(input, TokenKind.NUMBER, start, index - start + 1)) + break + } else if (numType === "b") { + index += 2 + while (Checker.isBinaryChar(input[index + 1])) index++ + tokens.push(makeToken(input, TokenKind.NUMBER, start, index - start + 1)) + if (start + 2 === index) { + console.error( + `\x1b[31merror: ${input + "\n" + " ".repeat(index + 6) + "^"}\nInvalid character.\x1b[0m`, + ) + throw new Error() + } + break + } else if (numType === "o") { + index += 2 + while (Checker.isOctalChar(input[index + 1])) index++ + tokens.push(makeToken(input, TokenKind.NUMBER, start, index - start + 1)) + if (start + 2 === index) { + console.error( + `\x1b[31merror: ${input + "\n" + " ".repeat(index + 6) + "^"}\nInvalid character.\x1b[0m`, + ) + throw new Error() + } + break + } + } + while (Checker.isNumberChar(input[index + 1])) index++ if (input[index + 1] === "e") { index++ diff --git a/src/compilers/bindings/Parser.ts b/src/compilers/bindings/Parser.ts index e3d7fa3..5db7ab5 100644 --- a/src/compilers/bindings/Parser.ts +++ b/src/compilers/bindings/Parser.ts @@ -1,22 +1,27 @@ import { Expression, GenBinding, Token, TokenKind, TSToken, TSTokenKind } from "./types.js" import { BindingType } from "../../types/enums/BindingType.js" -import { Binding, BindingItem } from "../../types/properties/value.js" -import { FunctionMap } from "./Funtion.js" +import { BindingItem } from "../../types/properties/value.js" +import { FunctionMap } from "./Function.js" import { Lexer } from "./Lexer.js" import { RandomBindingString } from "../../components/Utils.js" export class Parser { position: number = 0 - tokens: Token[] genBindings: GenBinding[] = [] output: Expression + tokens: Token[] constructor( private input: string, private cache = new Map(), + tokens?: Token[], ) { - this.tokens = Lexer(this.input) + if (tokens) { + this.tokens = tokens + tokens = undefined + } else this.tokens = Lexer(input) + this.output = this.parseExpression() if (this.at()) { @@ -159,8 +164,22 @@ export class Parser { const operator = this.eat() const right = this.parsePrimaryExpression() - if (current.value === "%") left = `(${left} - (${left} / ${right} * ${right}))` - else left = `(${left} ${operator.value} ${right})` + if (current.value === "%") { + const cacheStr = `expr:${left}${operator.value}${right}` + if (this.cache.has(cacheStr)) { + return (left = this.cache.get(cacheStr) as Expression) + } + + const ret = RandomBindingString(16) + + this.genBindings.push({ + source: `(${left} - (${left} / ${right} * ${right}))`, + target: ret, + }) + + this.cache.set(cacheStr, ret) + left = ret + } else left = `(${left} ${operator.value} ${right})` } return left @@ -178,8 +197,15 @@ export class Parser { const operator = this.eat() const right = this.parsePrimaryExpression() + const cacheStr = `expr:${left}${operator.value}${right}` + if (this.cache.has(cacheStr)) { + return (left = this.cache.get(cacheStr) as Expression) + } + const ret = RandomBindingString(16) + this.cache.set(cacheStr, ret) + const leftBin = this.intToBin(left) const rightBin = this.intToBin(right) @@ -234,7 +260,14 @@ export class Parser { ) { const operator = this.eat() const right = this.parsePrimaryExpression() + + const cacheStr = `expr:${left}${operator.value}${right}` + if (this.cache.has(cacheStr)) { + return (left = this.cache.get(cacheStr) as Expression) + } const ret = RandomBindingString(16) + this.cache.set(cacheStr, ret) + const leftBind = this.intToBin(left) const op = operator.value === "<<" ? "-" : "+" @@ -275,8 +308,22 @@ export class Parser { } case TokenKind.NUMBER: { - const [num, exp] = (this.eat().value).split("e") - return "" + (exp ? +num * 10 ** +exp : num) + const numberToken = this.eat() + + switch (numberToken.value[1]) { + case "x": + return "" + parseInt(numberToken.value.slice(2) as string, 16) + + case "o": + return "" + parseInt(numberToken.value.slice(2) as string, 8) + + case "b": + return "" + parseInt(numberToken.value.slice(2) as string, 2) + + default: + const [num, exp] = (numberToken.value).split("e") + return "" + (exp ? +num * 10 ** +exp : num) + } } case TokenKind.VARIABLE: diff --git a/src/components/Utils.ts b/src/components/Utils.ts index 5615e96..43c583e 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -38,6 +38,8 @@ import { AnimationProperties, KeyframeAnimationProperties } from "../types/prope import { Animation } from "./Animation.js" import { SmartAnimation } from "../types/enums/SmartAnimation.js" import { MemoryModify } from "../compilers/Memory.js" +import { Lexer } from "../compilers/bindings/Lexer.js" +import { Token, TokenKind, TSToken, TSTokenKind } from "../compilers/bindings/types.js" type CompileBinding = `[${string}]` @@ -74,9 +76,62 @@ export function ResolveBinding(cache: Map, ...bindings: Binding 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), cache).out() - if (gen) result.push(...gen) - binding.source_property_name = out + const inputBindings = binding.source_property_name.slice(1, -1) + if (binding.source_control_name) { + // @ts-ignore + const tokensMapping = (token: Token) => { + if (token.kind === TokenKind.VARIABLE) { + const mapkey = `mapping:${binding.source_control_name}:${token.value}` + + if (cache.has(mapkey)) { + return { + ...token, + value: cache.get(mapkey) as string, + } + } else { + const ret = RandomBindingString(16) + cache.set(mapkey, ret) + + result.push({ + source_property_name: token.value, + source_control_name: binding.source_control_name, + target_property_name: ret, + binding_type: BindingType.VIEW, + }) + + return { + ...token, + value: ret, + } + } + } else if (token.kind === TokenKind.TEMPLATE_STRING) { + return { + ...token, + // @ts-ignore + value: token.value.map((tstoken: TSToken) => { + if (tstoken.kind === TSTokenKind.STRING) return tstoken + else { + return { + ...tstoken, + tokens: tstoken.tokens.map(tokensMapping), + } + } + }), + } + } else return token + } + + const { gen, out } = new Parser(inputBindings, cache, Lexer(inputBindings).map(tokensMapping)).out() + + delete binding.source_control_name + + if (gen) result.push(...gen) + binding.source_property_name = out + } else { + const { gen, out } = new Parser(inputBindings, cache).out() + if (gen) result.push(...gen) + binding.source_property_name = out + } } binding.binding_type = BindingType.VIEW From 9e39732c826b02db41b776a75f43701c73153b87 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 30 Jan 2026 20:56:39 +0700 Subject: [PATCH 037/245] 4.0.0 indev 4 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6aceaa5..b582e76 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.0.0-indev-3", + "version": "4.0.0-indev-4", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", From dba48ff012bd58db19dbc8385a997030c675f64a Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 30 Jan 2026 21:31:58 +0700 Subject: [PATCH 038/245] dvvl --- src/compilers/Memory.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compilers/Memory.ts b/src/compilers/Memory.ts index 3aa8971..4bd4494 100644 --- a/src/compilers/Memory.ts +++ b/src/compilers/Memory.ts @@ -37,7 +37,7 @@ export class Memory extends Class { public static build() { const data: Map = new Map() - Memory.files.entries().forEach(([path, { elements, namespace }]) => { + Array.from(Memory.files.entries()).forEach(([path, { elements, namespace }]) => { const record: Record = {} elements.forEach(element => (record[element.name] = element)) From 33a13cb1cc1636304c40f77fdd95756eac7fdf36 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 2 Feb 2026 10:45:17 +0700 Subject: [PATCH 039/245] add readme --- README.md | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++-- test/app.ts | 11 +++++++++- 2 files changed, 66 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b8e395a..26826d1 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,57 @@ -AsaJS Logo made by [Kammasy](https://www.youtube.com/channel/UCrmjDWdM8-ZSeekzLeCnftg) a.k.a **[E.G.G](https://www.youtube.com/channel/UCrmjDWdM8-ZSeekzLeCnftg)** +
+ -![image](/resources/logo.png) +

+ AsaJS - The Minecraft: Bedrock Edition JSON-UI Framework +

+ +[![asajs version](https://img.shields.io/npm/v/asajs.svg?style=for-the-badge&labelColor=000000)](https://www.npmjs.com/package/asajs) +[![asajs license](https://img.shields.io/npm/l/asajs.svg?style=for-the-badge&labelColor=000000)](https://github.com/AsakiYuki/AsaJS/blob/main/README.md) +[![asajs downloads](https://img.shields.io/npm/dm/asajs.svg?style=for-the-badge&labelColor=000000)](https://www.npmjs.com/package/asajs) +
+ +**AsaJS** is a NodeJS library designed to empower developers to create **JSON-UI** packages for Minecraft: Bedrock Edition using **JavaScript** or **TypeScript**. + +Say goodbye to the tedious and repetitive nature of manual JSON editing. AsaJS streamlines your workflow by bringing the programmatic flexibility to Minecraft UI development. + +## 🛠 Installation + +To use AsaJS, ensure you have **[Node.js](https://nodejs.org/en)** installed on your system. + +**Latest stable version:** + +```bash +npm install asajs +``` + +**For our nightly builds:** + +``` +npm install asajs@indev +``` + +## 📖 "Hello World!" Example + +Creating a custom UI with AsaJS is straightforward. Here is how you can insert a custom label onto the Minecraft Start Screen: + +```javascript +import { Anchor, Label, Modify } from "asajs" + +const label = Label({ + text: "Hello World from my Custom UI!", + shadow: true, + anchor: Anchor.TOP_MIDDLE, + offset: [0, 10], +}) + +// This code injects the label into the top of the start screen +Modify("start", "start_screen_content").insertChild(label) +``` + +## 📚 Documentation + +Detailed guides and API references are available at: 👉 https://asajs.asakiyuki.com/ + +## 🤝 Contributing + +Contributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**. diff --git a/test/app.ts b/test/app.ts index 42ea928..29a503a 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1 +1,10 @@ -import { Panel } from ".." +import { Anchor, Label, Modify } from ".." + +const label = Label({ + text: "Hello World from my Custom UI!", + shadow: true, + anchor: Anchor.TOP_MIDDLE, + offset: [0, 10], +}) + +Modify("start", "start_screen_content").insertChild(label) From 5730c9455273b8329328fadbae1ffe8afa1be486 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 2 Feb 2026 15:12:31 +0700 Subject: [PATCH 040/245] build system --- config.d.ts | 5 +- resources/asajs.config.cjs | 7 +- scripts/autocomplete-build.ts | 8 +- src/compilers/Configuration.ts | 4 +- src/compilers/PreCompile.ts | 21 + src/compilers/ui/builder.ts | 59 +- src/compilers/ui/installer.ts | 171 +- src/compilers/ui/linker.ts | 35 +- src/compilers/ui/manifest.ts | 6 +- src/types/vanilla/intellisense.ts | 50979 +++++++++++++++++----------- 10 files changed, 32023 insertions(+), 19272 deletions(-) diff --git a/config.d.ts b/config.d.ts index 7d9cfce..ac61f82 100644 --- a/config.d.ts +++ b/config.d.ts @@ -3,7 +3,10 @@ import { Variable } from "./src/types/properties/value.ts" export interface Config { compiler?: { enabled?: boolean - linked?: boolean + autoImport?: boolean + importToPreview?: boolean + autoEnable?: boolean + gdkUserId?: string } packinfo?: { name?: string diff --git a/resources/asajs.config.cjs b/resources/asajs.config.cjs index 61c33d7..6d04ab7 100644 --- a/resources/asajs.config.cjs +++ b/resources/asajs.config.cjs @@ -4,11 +4,14 @@ */ export const config = { packinfo: { - name: "AsaJS", + name: "AsaJS - Installer Test", description: "Create your Minecraft JSON-UI resource packs using JavaScript.", + version: [4, 0, 0], }, compiler: { enabled: true, - linked: false, + autoImport: true, + autoEnable: true, + importToPreview: false, }, } diff --git a/scripts/autocomplete-build.ts b/scripts/autocomplete-build.ts index 6e61787..6b5a2fa 100644 --- a/scripts/autocomplete-build.ts +++ b/scripts/autocomplete-build.ts @@ -8,15 +8,15 @@ function toCamelCase(str: string) { const intelliSense: string[] = [ 'import { Type as T } from "../enums/Type.js"\n', - "export type Namespace = keyof IntelliSense;", - "export type Element = Extract", - "export type VanillaElementInfo> = IntelliSense[T][K]", + "export type Namespace = keyof VanillaUI;", + "export type Element = Extract", + "export type VanillaElementInfo> = VanillaUI[T][K]", "// @ts-ignore", 'export type VanillaType> = VanillaElementInfo["type"]', "// @ts-ignore", 'export type VanillaElementChilds> = VanillaElementInfo["children"]', "\n", - "export type IntelliSense = {", + "export type VanillaUI = {", ] const intelliSenseTypeEachNamespace: string[] = [] diff --git a/src/compilers/Configuration.ts b/src/compilers/Configuration.ts index 758a087..256e924 100644 --- a/src/compilers/Configuration.ts +++ b/src/compilers/Configuration.ts @@ -14,8 +14,8 @@ if (!fs.existsSync(".gitignore")) { export const config: Config = require(path.resolve(process.cwd(), "asajs.config.cjs")).config export let isBuildMode = config.compiler?.enabled ?? false -export let isLinkMode = config.compiler?.linked ?? false -export let unLinked = !(config.compiler?.linked ?? true) +export let isLinkMode = config.compiler?.autoImport ?? false +export let unLinked = !(config.compiler?.autoImport ?? true) for (const arg of process.argv) { if (arg === "--build") isBuildMode = true diff --git a/src/compilers/PreCompile.ts b/src/compilers/PreCompile.ts index ed18081..48c5694 100644 --- a/src/compilers/PreCompile.ts +++ b/src/compilers/PreCompile.ts @@ -17,3 +17,24 @@ Map.prototype.toJSON = function () { Array.prototype.lastItem = function () { return this[this.length - 1] } + +const now = performance.now() +type LogType = "INFO" + +function TypeHighlight(type: LogType) { + switch (type) { + case "INFO": + return `\x1b[32mINFO\x1b[0m` + default: + return type satisfies never + } +} + +export function Log(type: LogType, message: string) { + console.log( + `\x1b[90m[${(performance.now() - now).toFixed(2)}ms]\x1b[0m`, + `[${TypeHighlight(type)}]`, + message, + "\x1b[0m", + ) +} diff --git a/src/compilers/ui/builder.ts b/src/compilers/ui/builder.ts index a4d4acc..3803494 100644 --- a/src/compilers/ui/builder.ts +++ b/src/compilers/ui/builder.ts @@ -1,11 +1,14 @@ import { config, isBuildMode, isLinkMode, unLinked } from "../Configuration.js" import { Memory } from "../Memory.js" -import { createBuildFolder, linkToGame, unlink } from "./linker.js" -import { genManifest } from "./manifest.js" +import { createBuildFolder, gamePath, getBuildFolderName, linkToGame, unlink } from "./linker.js" +import { genManifest, version } from "./manifest.js" import { UI } from "../../components/UI.js" import { Type } from "../../types/enums/Type.js" import fs from "fs/promises" import { BuildCache } from "./buildcache.js" +import { disableRSP, enableRSP } from "./installer.js" +import { Log } from "../PreCompile.js" +import path from "path" async function buildUI() { const build = Memory.build() @@ -23,30 +26,38 @@ async function buildUI() { .stat(outFile.split(/\\|\//g).slice(0, -1).join("/")) .catch(async () => await fs.mkdir(outFile.split(/\\|\//g).slice(0, -1).join("/"), { recursive: true })) - await fs.writeFile( - outFile, - JSON.stringify( - Object.fromEntries( - Object.entries(value).map(([key, value]: [string, any]) => { - const extend = (value as UI).extend - return [extend ? key + String(extend) : key, value] - }), + await fs + .writeFile( + outFile, + JSON.stringify( + Object.fromEntries( + Object.entries(value).map(([key, value]: [string, any]) => { + const extend = (value as UI).extend + return [extend ? key + String(extend) : key, value] + }), + ), ), - ), - "utf-8", - ) + "utf-8", + ) + .then(() => Log("INFO", `${outFile} with ${Object.keys(value).length} elements created!`)) build.delete(file) return file }), ) await Promise.all([ - fs.writeFile("build/manifest.json", await genManifest(), "utf-8"), - fs.writeFile("build/.gitignore", [...out, "manifest.json"].join("\n"), "utf-8"), - BuildCache.set("build-files", [...out, "manifest.json"]), + fs + .writeFile("build/manifest.json", await genManifest(), "utf-8") + .then(() => Log("INFO", "build/manifest.json created!")), + fs + .writeFile("build/.gitignore", [...out, "manifest.json"].join("\n"), "utf-8") + .then(() => Log("INFO", "build/.gitignore created!")), + BuildCache.set("build-files", [...out, "manifest.json"]).then(() => Log("INFO", "build-files set!")), + BuildCache.set("version", version).then(() => Log("INFO", "version set!")), fs .stat("build/pack_icon.png") - .catch(() => fs.copyFile("node_modules/asajs/resources/pack_icon.png", "build/pack_icon.png")), + .catch(() => fs.copyFile("node_modules/asajs/resources/pack_icon.png", "build/pack_icon.png")) + .then(() => Log("INFO", "build/pack_icon.png copied!")), ]) return out.length @@ -59,6 +70,20 @@ if (isBuildMode) { await createBuildFolder() await buildUI() if (isLinkMode) await linkToGame() + if (config.compiler?.autoEnable) await enableRSP() + else await disableRSP() + Log("INFO", "Build completed!") + console.log("========================= PACK INFO =========================") + console.log("Name:", `\x1b[32m${config.packinfo?.name || "MyPack"}\x1b[0m`) + console.log( + "Description:", + `\x1b[32m${config.packinfo?.description || "Create your Minecraft JSON-UI resource packs using JavaScript."}\x1b[0m`, + ) + console.log("Version:", config.packinfo?.version || [4, 0, 0]) + console.log("UUID:", await BuildCache.get<[string, string]>("uuid")) + if (gamePath) + console.log("Install Path:", `\x1b[32m"${path.join(gamePath, await getBuildFolderName())}"\x1b[0m`) + console.log("=============================================================") } first = false }) diff --git a/src/compilers/ui/installer.ts b/src/compilers/ui/installer.ts index a22ec50..5f50f93 100644 --- a/src/compilers/ui/installer.ts +++ b/src/compilers/ui/installer.ts @@ -1,17 +1,180 @@ import os from "os" import path from "path" +import fs from "fs" +import fsp from "fs/promises" +import { config } from "../Configuration.js" +import { BuildCache } from "./buildcache.js" +import { version } from "./manifest.js" +import { Log } from "../PreCompile.js" + +interface PackInfo { + pack_id: string + subpack?: string + version: [number, number, number] +} + +export interface PathInfo { + os: Platform + isGdk: Platform extends "win32" ? boolean : never + gamepath: string | null +} + +export const pathinfo: PathInfo = { + os: os.platform(), + isGdk: false, + gamepath: null, +} + +function getGlobalResourcePackFile(gamepath: string) { + return path.join(gamepath, "minecraftpe/global_resource_packs.json") +} + +async function readGlobalRspFile(filepath: string) { + try { + if (await fsp.stat(filepath)) { + return JSON.parse(await fsp.readFile(filepath, "utf-8")) as PackInfo[] + } + } catch (error) { + return null + } +} + +async function writeGlobalRspFile(filepath: string, data: PackInfo[]) { + try { + await fsp.writeFile(filepath, JSON.stringify(data), "utf-8") + } catch (error) { + return null + } +} + +export async function enable(uuid: string, version: [number, number, number], filepath: string) { + try { + const globalRsp = await readGlobalRspFile(filepath) + if (!globalRsp) return null + const index = globalRsp.findIndex(data => data.pack_id === uuid) + if (index === -1) { + globalRsp.push({ pack_id: uuid, version }) + await writeGlobalRspFile(filepath, globalRsp) + return true + } else if (globalRsp[index].version.join(".") !== version.join(".")) { + globalRsp[index].version = version + await writeGlobalRspFile(filepath, globalRsp) + return true + } + return false + } catch (error) { + return null + } +} + +export async function disable(uuid: string, filepath: string) { + try { + let globalRsp = await readGlobalRspFile(filepath) + if (!globalRsp) return null + let isWrite = false + globalRsp = globalRsp.filter(data => { + if (data.pack_id === uuid) isWrite = true + return data.pack_id !== uuid + }) + if (isWrite) { + await writeGlobalRspFile(filepath, globalRsp) + return true + } else return false + } catch (error) { + return null + } +} + +export async function enableRSP() { + if (pathinfo.isGdk && pathinfo.gamepath) { + const ids: string[] = [], + gamepath = path.join(pathinfo.gamepath, "../../..") + if (config.compiler?.gdkUserId && /^\d+$/.test(config.compiler.gdkUserId)) ids.push(config.compiler.gdkUserId) + else + ids.push(...(await fsp.readdir(gamepath, { withFileTypes: false })).filter((id: string) => id !== "Shared")) + + const [uuid] = await Promise.all([BuildCache.get<[string, string]>("uuid")]) + + if (!uuid) return + await Promise.all( + ids.map(async (id: string) => + enable(uuid[0]!, version, getGlobalResourcePackFile(path.join(gamepath, id, "games/com.mojang"))).then( + v => { + if (v) { + Log("INFO", "Resource Pack enabled automaticly for " + id) + } + }, + ), + ), + ) + } else if (pathinfo.gamepath) { + const [uuid] = await Promise.all([BuildCache.get<[string, string]>("uuid")]) + if (!uuid) return + await enable(uuid[0]!, version, getGlobalResourcePackFile(pathinfo.gamepath)).then(v => { + if (v) { + Log("INFO", "Resource Pack enabled automaticly") + } + }) + } +} + +export async function disableRSP() { + if (pathinfo.isGdk && pathinfo.gamepath) { + const gamepath = path.join(pathinfo.gamepath, "../../..") + const [uuid] = await Promise.all([BuildCache.get<[string, string]>("uuid")]) + if (!uuid) return + await Promise.all( + (await fsp.readdir(gamepath, { withFileTypes: false })).map(async (id: string) => + disable(uuid[0]!, getGlobalResourcePackFile(path.join(gamepath, id, "games/com.mojang"))).then(v => { + if (v) { + Log("INFO", "Resource Pack disabled automaticly for " + id) + } + }), + ), + ) + } else if (pathinfo.gamepath) { + const [uuid] = await Promise.all([BuildCache.get<[string, string]>("uuid")]) + if (!uuid) return + await disable(uuid[0]!, getGlobalResourcePackFile(pathinfo.gamepath)).then(v => { + if (v) { + Log("INFO", "Resource Pack disabled automaticly") + } + }) + } +} export function getGamedataPath() { - switch (os.platform()) { + switch (pathinfo.os) { case "win32": { if (/Windows (10|11)/.test(os.version())) { - return path.join(process.env.APPDATA!, "Minecraft Bedrock\\Users\\Shared\\games\\com.mojang") + let gamedata = path.join( + process.env.APPDATA!, + config.compiler?.importToPreview ? "Minecraft Bedrock Preview" : "Minecraft Bedrock", + "\\Users\\Shared\\games\\com.mojang", + ) + + if (fs.existsSync(gamedata)) { + pathinfo.isGdk = true + return (pathinfo.gamepath = gamedata) + } + + gamedata = path.join( + process.env.LOCALAPPDATA!, + "Packages", + config.compiler?.importToPreview + ? "Microsoft.MinecraftWindowsBeta_8wekyb3d8bbwe" + : "Microsoft.MinecraftUWP_8wekyb3d8bbwe", + "LocalState\\games\\com.mojang", + ) + + if (fs.existsSync(gamedata)) { + return (pathinfo.gamepath = gamedata) + } } } default: { - console.error(`Your platform is not supported the install feature yet! \nYour OS version: ${os.version()}`) - process.exit(1) + console.warn(`Your platform is not supported the install feature yet! \nYour OS version: ${os.version()}`) } } } diff --git a/src/compilers/ui/linker.ts b/src/compilers/ui/linker.ts index dfba894..d69e044 100644 --- a/src/compilers/ui/linker.ts +++ b/src/compilers/ui/linker.ts @@ -2,7 +2,8 @@ import fs from "fs/promises" import { BuildCache } from "./buildcache.js" import { RandomString } from "../../components/Utils.js" import path from "path" -import { getGamedataPath } from "./installer.js" +import { getGamedataPath, PathInfo, pathinfo } from "./installer.js" +import { Log } from "../PreCompile.js" const HEX: string[] = Array.from({ length: 256 }, (_, i) => i.toString(16).padStart(2, "0")) @@ -25,13 +26,17 @@ function genUUID(): string { export async function clearBuild() { const files: string[] = (await BuildCache.get("build-files")) || [] - await Promise.all(files.map(file => fs.rm(`build/${file}`).catch(() => null))) + await Promise.all(files.map(file => fs.rm(`build/${file}`).catch(() => null))).then(() => { + if (files.length) { + Log("INFO", `Build folder cleared (${files.length} files removed)!`) + } + }) } export async function createBuildFolder() { return fs .stat("build") - .catch(() => fs.mkdir("build")) + .catch(() => fs.mkdir("build").then(() => Log("INFO", "Build folder created!"))) .then(() => clearBuild()) } @@ -39,18 +44,28 @@ export async function getBuildFolderName() { return await BuildCache.getWithSetDefault("build-key", () => RandomString(16)) } +export let gamePath: string | null = null export async function linkToGame() { - const sourcePath = path.resolve("build") - const targetPath = path.resolve(getGamedataPath(), "development_resource_packs", await getBuildFolderName()) - await fs.stat(targetPath).catch(async () => { - await fs.symlink(sourcePath, targetPath, "junction") - }) + const gamedataPath = getGamedataPath() + await BuildCache.set("last-gamedata-path", pathinfo) + if (gamedataPath) { + const sourcePath = path.resolve("build") + const targetPath = path.resolve(gamedataPath, "development_resource_packs", await getBuildFolderName()) + await fs.stat(targetPath).catch(async () => { + await fs + .symlink(sourcePath, targetPath, "junction") + .then(() => Log("INFO", "Linked build folder to gamedata!")) + }) + gamePath = gamedataPath + } else console.warn("No gamedata path found, cannot link!") } export async function unlink() { - const targetPath = path.resolve(getGamedataPath(), "development_resource_packs", await getBuildFolderName()) + const gamedataPath = await BuildCache.get("last-gamedata-path") + if (!gamedataPath?.gamepath) return + const targetPath = path.resolve(gamedataPath.gamepath, "development_resource_packs", await getBuildFolderName()) try { - await fs.unlink(targetPath) + await fs.unlink(targetPath).then(() => Log("INFO", "Unlinked build folder from gamedata!")) } catch (error) { console.error(error) } diff --git a/src/compilers/ui/manifest.ts b/src/compilers/ui/manifest.ts index f80653e..4a38d33 100644 --- a/src/compilers/ui/manifest.ts +++ b/src/compilers/ui/manifest.ts @@ -1,6 +1,8 @@ import { config } from "../Configuration.js" import { getUUID } from "./linker.js" +export const version = config.packinfo?.version || [4, 0, 0] + export async function genManifest() { const [uuid1, uuid2] = await getUUID() return JSON.stringify({ @@ -10,7 +12,7 @@ export async function genManifest() { description: config.packinfo?.description || "Create your Minecraft JSON-UI resource packs using JavaScript.", uuid: uuid1, - version: config.packinfo?.version || [4, 0, 0], + version, min_engine_version: [1, 21, 80], }, modules: [ @@ -18,7 +20,7 @@ export async function genManifest() { description: "This resource pack generate by AsaJS.", type: "resources", uuid: uuid2, - version: [4, 0, 0], + version: version, }, ], subpacks: config.packinfo?.subpacks, diff --git a/src/types/vanilla/intellisense.ts b/src/types/vanilla/intellisense.ts index 01282ed..aff1f0f 100644 --- a/src/types/vanilla/intellisense.ts +++ b/src/types/vanilla/intellisense.ts @@ -1,19862 +1,32381 @@ import { Type as T } from "../enums/Type.js" -export type Namespace = keyof IntelliSense; -export type Element = Extract -export type VanillaElementInfo> = IntelliSense[T][K] +export type Namespace = keyof VanillaUI +export type Element = Extract +export type VanillaElementInfo> = VanillaUI[T][K] // @ts-ignore export type VanillaType> = VanillaElementInfo["type"] // @ts-ignore export type VanillaElementChilds> = VanillaElementInfo["children"] - -export type IntelliSense = { - "achievement": AchievementType, - "add_external_server": AddExternalServerType, - "adhoc_inprogress": AdhocInprogressType, - "adhoc": AdhocType, - "anvil": AnvilType, - "anvil_pocket": AnvilPocketType, - "authentication_modals": AuthenticationModalsType, - "authentication": AuthenticationType, - "auto_save_info": AutoSaveInfoType, - "beacon": BeaconType, - "beacon_pocket": BeaconPocketType, - "blast_furnace": BlastFurnaceType, - "book": BookType, - "brewing_stand": BrewingStandType, - "brewing_stand_pocket": BrewingStandPocketType, - "bundle_purchase_warning": BundlePurchaseWarningType, - "cartography": CartographyType, - "cartography_pocket": CartographyPocketType, - "chalkboard": ChalkboardType, - "chat": ChatType, - "chat_settings": ChatSettingsType, - "chest": ChestType, - "choose_realm": ChooseRealmType, - "coin_purchase": CoinPurchaseType, - "command_block": CommandBlockType, - "confirm_delete_account": ConfirmDeleteAccountType, - "content_log": ContentLogType, - "content_log_history": ContentLogHistoryType, - "crafter_pocket": CrafterPocketType, - "create_world_upsell": CreateWorldUpsellType, - "credits": CreditsType, - "csb_purchase_error": CsbPurchaseErrorType, - "csb": CsbType, - "csb_content": CsbContentType, - "csb_banner": CsbBannerType, - "csb_buy": CsbBuyType, - "common_csb": CommonCsbType, - "csb_purchase_amazondevicewarning": CsbPurchaseAmazondevicewarningType, - "csb_purchase_warning": CsbPurchaseWarningType, - "csb_subscription_panel": CsbSubscriptionPanelType, - "csb_upsell": CsbUpsellType, - "csb_packs": CsbPacksType, - "csb_welcome": CsbWelcomeType, - "csb_faq": CsbFaqType, - "csb_landing": CsbLandingType, - "custom_templates": CustomTemplatesType, - "world_conversion_complete": WorldConversionCompleteType, - "day_one_experience_intro": DayOneExperienceIntroType, - "day_one_experience": DayOneExperienceType, - "death": DeathType, - "debug_screen": DebugScreenType, - "dev_console": DevConsoleType, - "disconnect": DisconnectType, - "display_logged_error": DisplayLoggedErrorType, - "discovery_dialog": DiscoveryDialogType, - "edu_featured": EduFeaturedType, - "edu_quit_button": EduQuitButtonType, - "persona_emote": PersonaEmoteType, - "enchanting": EnchantingType, - "enchanting_pocket": EnchantingPocketType, - "encyclopedia": EncyclopediaType, - "expanded_skin_pack": ExpandedSkinPackType, - "feed_common": FeedCommonType, - "file_upload": FileUploadType, - "furnace": FurnaceType, - "furnace_pocket": FurnacePocketType, - "game_tip": GameTipType, - "gamepad_disconnected": GamepadDisconnectedType, - "gameplay": GameplayType, - "gathering_info": GatheringInfoType, - "globalpause": GlobalpauseType, - "grindstone": GrindstoneType, - "grindstone_pocket": GrindstonePocketType, - "gamma_calibration": GammaCalibrationType, - "horse": HorseType, - "horse_pocket": HorsePocketType, - "how_to_play_common": HowToPlayCommonType, - "how_to_play": HowToPlayType, - "hud": HudType, - "host_options": HostOptionsType, - "bed": BedType, - "im_reader": ImReaderType, - "crafting": CraftingType, - "crafting_pocket": CraftingPocketType, - "invite": InviteType, - "jigsaw_editor": JigsawEditorType, - "late_join": LateJoinType, - "library_modal": LibraryModalType, - "local_world_picker": LocalWorldPickerType, - "loom": LoomType, - "loom_pocket": LoomPocketType, - "manage_feed": ManageFeedType, - "manifest_validation": ManifestValidationType, - "sdl_label": SdlLabelType, - "sdl_dropdowns": SdlDropdownsType, - "sdl_image_row": SdlImageRowType, - "sdl_text_row": SdlTextRowType, - "mob_effect": MobEffectType, - "non_xbl_user_management": NonXblUserManagementType, - "npc_interact": NpcInteractType, - "online_safety": OnlineSafetyType, - "pack_settings": PackSettingsType, - "panorama": PanoramaType, - "patch_notes": PatchNotesType, - "pause": PauseType, - "pdp": PdpType, - "pdp_screenshots": PdpScreenshotsType, - "permissions": PermissionsType, - "persona_cast_character_screen": PersonaCastCharacterScreenType, - "persona_common": PersonaCommonType, - "persona_popups": PersonaPopupsType, - "play": PlayType, - "perf_turtle": PerfTurtleType, - "pocket_containers": PocketContainersType, - "popup_dialog": PopupDialogType, - "portfolio": PortfolioType, - "progress": ProgressType, - "rating_prompt": RatingPromptType, - "realms_common": RealmsCommonType, - "realms_create": RealmsCreateType, - "realms_pending_invitations": RealmsPendingInvitationsType, - "realms_slots": RealmsSlotsType, - "realms_settings": RealmsSettingsType, - "realms_allowlist": RealmsAllowlistType, - "realms_invite_link_settings": RealmsInviteLinkSettingsType, - "realms_plus_ended": RealmsPlusEndedType, - "realmsPlus": RealmsPlusType, - "realmsPlus_content": RealmsPlusContentType, - "realmsPlus_faq": RealmsPlusFaqType, - "realmsPlus_landing": RealmsPlusLandingType, - "realmsPlus_buy": RealmsPlusBuyType, - "realmsPlus_packs": RealmsPlusPacksType, - "realmsPlus_purchase_warning": RealmsPlusPurchaseWarningType, - "realms_stories_transition": RealmsStoriesTransitionType, - "redstone": RedstoneType, - "resource_packs": ResourcePacksType, - "safe_zone": SafeZoneType, - "storage_migration_common": StorageMigrationCommonType, - "storage_migration_generic": StorageMigrationGenericType, - "scoreboard": ScoreboardType, - "screenshot": ScreenshotType, - "select_world": SelectWorldType, - "server_form": ServerFormType, - "settings": SettingsType, - "controls_section": ControlsSectionType, - "general_section": GeneralSectionType, - "realms_world_section": RealmsWorldSectionType, - "settings_common": SettingsCommonType, - "world_section": WorldSectionType, - "social_section": SocialSectionType, - "sidebar_navigation": SidebarNavigationType, - "sign": SignType, - "simple_inprogress": SimpleInprogressType, - "skin_pack_purchase": SkinPackPurchaseType, - "skin_picker": SkinPickerType, - "smithing_table": SmithingTableType, - "smithing_table_2": SmithingTable2Type, - "smithing_table_pocket": SmithingTablePocketType, - "smithing_table_2_pocket": SmithingTable2PocketType, - "smoker": SmokerType, - "start": StartType, - "stonecutter": StonecutterType, - "stonecutter_pocket": StonecutterPocketType, - "storage_management": StorageManagementType, - "storage_management_popup": StorageManagementPopupType, - "common_store": CommonStoreType, - "store_layout": StoreLayoutType, - "filter_menu": FilterMenuType, - "store_inventory": StoreInventoryType, - "store_item_list": StoreItemListType, - "store_progress": StoreProgressType, - "promo_timeline": PromoTimelineType, - "store_sale_item_list": StoreSaleItemListType, - "store_search": StoreSearchType, - "sort_menu": SortMenuType, - "structure_editor": StructureEditorType, - "submit_feedback": SubmitFeedbackType, - "tabbed_upsell": TabbedUpsellType, - "thanks_for_testing": ThanksForTestingType, - "third_party_store": ThirdPartyStoreType, - "toast_screen": ToastScreenType, - "token_faq": TokenFaqType, - "trade": TradeType, - "trade_pocket": TradePocketType, - "trade2": Trade2Type, - "trade2_pocket": Trade2PocketType, - "trialUpsell": TrialUpsellType, - "ugc_viewer": UgcViewerType, - "common_art": CommonArtType, - "common": CommonType, - "common-classic": CommonClassicType, - "edu_common": EduCommonType, - "purchase_common": PurchaseCommonType, - "common_buttons": CommonButtonsType, - "common_dialogs": CommonDialogsType, - "common_tabs": CommonTabsType, - "common_toggles": CommonTogglesType, - "friendsbutton": FriendsbuttonType, - "iconbutton": IconbuttonType, - "update_dimensions": UpdateDimensionsType, - "update_version": UpdateVersionType, - "world_recovery": WorldRecoveryType, - "world_templates": WorldTemplatesType, - "xbl_console_qr_signin": XblConsoleQrSigninType, - "xbl_console_signin": XblConsoleSigninType, - "xbl_console_signin_succeeded": XblConsoleSigninSucceededType, - "xbl_immediate_signin": XblImmediateSigninType, - "win10_trial_conversion": Win10TrialConversionType, +export type VanillaUI = { + achievement: AchievementType + add_external_server: AddExternalServerType + adhoc_inprogress: AdhocInprogressType + adhoc: AdhocType + anvil: AnvilType + anvil_pocket: AnvilPocketType + authentication_modals: AuthenticationModalsType + authentication: AuthenticationType + auto_save_info: AutoSaveInfoType + beacon: BeaconType + beacon_pocket: BeaconPocketType + blast_furnace: BlastFurnaceType + book: BookType + brewing_stand: BrewingStandType + brewing_stand_pocket: BrewingStandPocketType + bundle_purchase_warning: BundlePurchaseWarningType + cartography: CartographyType + cartography_pocket: CartographyPocketType + chalkboard: ChalkboardType + chat: ChatType + chat_settings: ChatSettingsType + chest: ChestType + choose_realm: ChooseRealmType + coin_purchase: CoinPurchaseType + command_block: CommandBlockType + confirm_delete_account: ConfirmDeleteAccountType + content_log: ContentLogType + content_log_history: ContentLogHistoryType + crafter_pocket: CrafterPocketType + create_world_upsell: CreateWorldUpsellType + credits: CreditsType + csb_purchase_error: CsbPurchaseErrorType + csb: CsbType + csb_content: CsbContentType + csb_banner: CsbBannerType + csb_buy: CsbBuyType + common_csb: CommonCsbType + csb_purchase_amazondevicewarning: CsbPurchaseAmazondevicewarningType + csb_purchase_warning: CsbPurchaseWarningType + csb_subscription_panel: CsbSubscriptionPanelType + csb_upsell: CsbUpsellType + csb_packs: CsbPacksType + csb_welcome: CsbWelcomeType + csb_faq: CsbFaqType + csb_landing: CsbLandingType + custom_templates: CustomTemplatesType + world_conversion_complete: WorldConversionCompleteType + day_one_experience_intro: DayOneExperienceIntroType + day_one_experience: DayOneExperienceType + death: DeathType + debug_screen: DebugScreenType + dev_console: DevConsoleType + disconnect: DisconnectType + display_logged_error: DisplayLoggedErrorType + discovery_dialog: DiscoveryDialogType + edu_featured: EduFeaturedType + edu_quit_button: EduQuitButtonType + persona_emote: PersonaEmoteType + enchanting: EnchantingType + enchanting_pocket: EnchantingPocketType + encyclopedia: EncyclopediaType + expanded_skin_pack: ExpandedSkinPackType + feed_common: FeedCommonType + file_upload: FileUploadType + furnace: FurnaceType + furnace_pocket: FurnacePocketType + game_tip: GameTipType + gamepad_disconnected: GamepadDisconnectedType + gameplay: GameplayType + gathering_info: GatheringInfoType + globalpause: GlobalpauseType + grindstone: GrindstoneType + grindstone_pocket: GrindstonePocketType + gamma_calibration: GammaCalibrationType + horse: HorseType + horse_pocket: HorsePocketType + how_to_play_common: HowToPlayCommonType + how_to_play: HowToPlayType + hud: HudType + host_options: HostOptionsType + bed: BedType + im_reader: ImReaderType + crafting: CraftingType + crafting_pocket: CraftingPocketType + invite: InviteType + jigsaw_editor: JigsawEditorType + late_join: LateJoinType + library_modal: LibraryModalType + local_world_picker: LocalWorldPickerType + loom: LoomType + loom_pocket: LoomPocketType + manage_feed: ManageFeedType + manifest_validation: ManifestValidationType + sdl_label: SdlLabelType + sdl_dropdowns: SdlDropdownsType + sdl_image_row: SdlImageRowType + sdl_text_row: SdlTextRowType + mob_effect: MobEffectType + non_xbl_user_management: NonXblUserManagementType + npc_interact: NpcInteractType + online_safety: OnlineSafetyType + pack_settings: PackSettingsType + panorama: PanoramaType + patch_notes: PatchNotesType + pause: PauseType + pdp: PdpType + pdp_screenshots: PdpScreenshotsType + permissions: PermissionsType + persona_cast_character_screen: PersonaCastCharacterScreenType + persona_common: PersonaCommonType + persona_popups: PersonaPopupsType + play: PlayType + perf_turtle: PerfTurtleType + pocket_containers: PocketContainersType + popup_dialog: PopupDialogType + portfolio: PortfolioType + progress: ProgressType + rating_prompt: RatingPromptType + realms_common: RealmsCommonType + realms_create: RealmsCreateType + realms_pending_invitations: RealmsPendingInvitationsType + realms_slots: RealmsSlotsType + realms_settings: RealmsSettingsType + realms_allowlist: RealmsAllowlistType + realms_invite_link_settings: RealmsInviteLinkSettingsType + realms_plus_ended: RealmsPlusEndedType + realmsPlus: RealmsPlusType + realmsPlus_content: RealmsPlusContentType + realmsPlus_faq: RealmsPlusFaqType + realmsPlus_landing: RealmsPlusLandingType + realmsPlus_buy: RealmsPlusBuyType + realmsPlus_packs: RealmsPlusPacksType + realmsPlus_purchase_warning: RealmsPlusPurchaseWarningType + realms_stories_transition: RealmsStoriesTransitionType + redstone: RedstoneType + resource_packs: ResourcePacksType + safe_zone: SafeZoneType + storage_migration_common: StorageMigrationCommonType + storage_migration_generic: StorageMigrationGenericType + scoreboard: ScoreboardType + screenshot: ScreenshotType + select_world: SelectWorldType + server_form: ServerFormType + settings: SettingsType + controls_section: ControlsSectionType + general_section: GeneralSectionType + realms_world_section: RealmsWorldSectionType + settings_common: SettingsCommonType + world_section: WorldSectionType + social_section: SocialSectionType + sidebar_navigation: SidebarNavigationType + sign: SignType + simple_inprogress: SimpleInprogressType + skin_pack_purchase: SkinPackPurchaseType + skin_picker: SkinPickerType + smithing_table: SmithingTableType + smithing_table_2: SmithingTable2Type + smithing_table_pocket: SmithingTablePocketType + smithing_table_2_pocket: SmithingTable2PocketType + smoker: SmokerType + start: StartType + stonecutter: StonecutterType + stonecutter_pocket: StonecutterPocketType + storage_management: StorageManagementType + storage_management_popup: StorageManagementPopupType + common_store: CommonStoreType + store_layout: StoreLayoutType + filter_menu: FilterMenuType + store_inventory: StoreInventoryType + store_item_list: StoreItemListType + store_progress: StoreProgressType + promo_timeline: PromoTimelineType + store_sale_item_list: StoreSaleItemListType + store_search: StoreSearchType + sort_menu: SortMenuType + structure_editor: StructureEditorType + submit_feedback: SubmitFeedbackType + tabbed_upsell: TabbedUpsellType + thanks_for_testing: ThanksForTestingType + third_party_store: ThirdPartyStoreType + toast_screen: ToastScreenType + token_faq: TokenFaqType + trade: TradeType + trade_pocket: TradePocketType + trade2: Trade2Type + trade2_pocket: Trade2PocketType + trialUpsell: TrialUpsellType + ugc_viewer: UgcViewerType + common_art: CommonArtType + common: CommonType + "common-classic": CommonClassicType + edu_common: EduCommonType + purchase_common: PurchaseCommonType + common_buttons: CommonButtonsType + common_dialogs: CommonDialogsType + common_tabs: CommonTabsType + common_toggles: CommonTogglesType + friendsbutton: FriendsbuttonType + iconbutton: IconbuttonType + update_dimensions: UpdateDimensionsType + update_version: UpdateVersionType + world_recovery: WorldRecoveryType + world_templates: WorldTemplatesType + xbl_console_qr_signin: XblConsoleQrSigninType + xbl_console_signin: XblConsoleSigninType + xbl_console_signin_succeeded: XblConsoleSigninSucceededType + xbl_immediate_signin: XblImmediateSigninType + win10_trial_conversion: Win10TrialConversionType } export type AchievementType = { - "empty_progress_bar_icon": { type: T.IMAGE, children: string }, - "full_progress_bar_icon_base": { type: T.IMAGE, children: string }, + empty_progress_bar_icon: { type: T.IMAGE; children: string } + full_progress_bar_icon_base: { type: T.IMAGE; children: string } } export type AddExternalServerType = { - "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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { type: T.SCREEN, children: string }, + blast_furnace_screen: { type: T.SCREEN; children: string } } export type BookType = { - "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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { type: T.PANEL, children: 'button_label' }, - "featured_button_content/button_label": { type: T.LABEL, children: string }, - "featured_button": { type: T.BUTTON, children: string }, + 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": { type: T.BUTTON, children: string }, + quit_button: { type: T.BUTTON; children: string } } export type PersonaEmoteType = { - "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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { type: T.STACK_PANEL, children: string }, - "sdl_label": { type: T.LABEL, children: string }, - "sdl_mc_ten_label": { type: T.LABEL, children: string }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { type: T.SCREEN, children: string }, + realms_stories_transition_screen: { type: T.SCREEN; children: string } } export type RedstoneType = { - "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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { type: T.SCREEN, children: string }, + smoker_screen: { type: T.SCREEN; children: string } } export type StartType = { - "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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { type: T.SCREEN, children: string }, + third_party_store_screen: { type: T.SCREEN; children: string } } export type ToastScreenType = { - "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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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": { 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 }, + 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 } } From 5d982f3d3d7502774890bb9f2500ab22b09e6701 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 2 Feb 2026 15:17:35 +0700 Subject: [PATCH 041/245] stable release --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b582e76..7d29401 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.0.0-indev-4", + "version": "4.0.0", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", From 635285b8d05ece4a51fb7455f35787d96e6af051 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 2 Feb 2026 15:34:14 +0700 Subject: [PATCH 042/245] fix some type issue --- package.json | 2 +- resources/asajs.config.cjs | 2 +- src/compilers/ui/manifest.ts | 2 +- src/types/properties/element/Cycler.ts | 1 + src/types/properties/element/Layout.ts | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 7d29401..9afb704 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.0.0", + "version": "4.0.1", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", diff --git a/resources/asajs.config.cjs b/resources/asajs.config.cjs index 6d04ab7..1863140 100644 --- a/resources/asajs.config.cjs +++ b/resources/asajs.config.cjs @@ -6,7 +6,7 @@ export const config = { packinfo: { name: "AsaJS - Installer Test", description: "Create your Minecraft JSON-UI resource packs using JavaScript.", - version: [4, 0, 0], + version: [4, 0, 1], }, compiler: { enabled: true, diff --git a/src/compilers/ui/manifest.ts b/src/compilers/ui/manifest.ts index 4a38d33..bc2c4b0 100644 --- a/src/compilers/ui/manifest.ts +++ b/src/compilers/ui/manifest.ts @@ -1,7 +1,7 @@ import { config } from "../Configuration.js" import { getUUID } from "./linker.js" -export const version = config.packinfo?.version || [4, 0, 0] +export const version = config.packinfo?.version || [4, 0, 1] export async function genManifest() { const [uuid1, uuid2] = await getUUID() diff --git a/src/types/properties/element/Cycler.ts b/src/types/properties/element/Cycler.ts index b27fd19..8c8a79e 100644 --- a/src/types/properties/element/Cycler.ts +++ b/src/types/properties/element/Cycler.ts @@ -1,6 +1,7 @@ import { Value } from "../value.js" export interface Image { + fill?: Value texture_path?: Value texture?: Value } diff --git a/src/types/properties/element/Layout.ts b/src/types/properties/element/Layout.ts index b9c5503..782a3a3 100644 --- a/src/types/properties/element/Layout.ts +++ b/src/types/properties/element/Layout.ts @@ -2,7 +2,7 @@ import { Anchor } from "../../enums/Anchor.js" import { Value, AnimValue, Array2 } from "../value.js" export interface Layout { - offset?: AnimValue> + offset?: AnimValue> size?: AnimValue> max_size?: AnimValue> min_size?: AnimValue> From 3c0f9b31c63d06553b605d91b79bedcf97e5f52e Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 5 Feb 2026 13:36:33 +0700 Subject: [PATCH 043/245] refactor: temporarily remove bitwise operations --- resources/asajs.config.cjs | 2 +- src/compilers/bindings/Binary.ts | 47 ++++++++ src/compilers/bindings/Function.ts | 188 ++++++++++++++++++----------- src/compilers/bindings/Lexer.ts | 16 ++- src/compilers/bindings/Parser.ts | 113 ++--------------- src/compilers/bindings/types.ts | 4 +- src/compilers/ui/builder.ts | 2 +- src/components/UI.ts | 2 +- src/index.ts | 2 +- 9 files changed, 192 insertions(+), 184 deletions(-) create mode 100644 src/compilers/bindings/Binary.ts diff --git a/resources/asajs.config.cjs b/resources/asajs.config.cjs index 1863140..018faf9 100644 --- a/resources/asajs.config.cjs +++ b/resources/asajs.config.cjs @@ -4,7 +4,7 @@ */ export const config = { packinfo: { - name: "AsaJS - Installer Test", + name: "AsaJS", description: "Create your Minecraft JSON-UI resource packs using JavaScript.", version: [4, 0, 1], }, diff --git a/src/compilers/bindings/Binary.ts b/src/compilers/bindings/Binary.ts new file mode 100644 index 0000000..da953fd --- /dev/null +++ b/src/compilers/bindings/Binary.ts @@ -0,0 +1,47 @@ +import { RandomBindingString } from "../../components/Utils.js" +import { Binding } from "../../types/properties/value.js" +import { defaultFunctions } from "./Function.js" +import { GenBinding } from "./types.js" + +export function intToBin(input: string) { + const { abs, negabs } = defaultFunctions + + const ret = RandomBindingString(16) + const bindings: GenBinding[] = [] + + // negative bit + bindings.push({ + source: `(${input} < 0)`, + target: `${ret}0`, + }) + + return { + ret, + bindings, + } +} + +export function binToInt(input: Binding) { + const ret = RandomBindingString(16) + const bindings: GenBinding[] = [] + + const nevBind = (input + "0") as Binding + + // Is reverse to positive + bindings.push({ + source: `(-1 + ((${nevBind} = 0) * 2))`, + target: `${ret}0`, + }) + + bindings.push({ + source: `(${Array.from({ length: 31 }, ($, i) => { + return `${input}${i + 1}` + }).join(" + ")})`, + target: ret, + }) + + return { + ret, + bindings, + } +} diff --git a/src/compilers/bindings/Function.ts b/src/compilers/bindings/Function.ts index a2929f1..637b055 100644 --- a/src/compilers/bindings/Function.ts +++ b/src/compilers/bindings/Function.ts @@ -1,5 +1,5 @@ import { RandomBindingString } from "../../components/Utils.js" -import { Parser } from "./Parser.js" +import { intToBin } from "./Binary.js" import { Expression, GenBinding } from "./types.js" type Callback = (...args: Expression[]) => { @@ -13,82 +13,134 @@ function callFn(name: string, ...args: Expression[]) { return FunctionMap.get(name)!(...args) } -// Default Functions -FunctionMap.set("abs", number => { - const randomBinding = RandomBindingString(16) - return { - genBindings: [{ source: `((-1 + (${number} > 0) * 2) * ${number})`, target: randomBinding }], - value: randomBinding, - } -}) +export const defaultFunctions = { + /** + * Returns the absolute value of a number (the value without regard to whether it is positive or negative). For example, the absolute value of -5 is the same as the absolute value of 5. + * @param number + * @returns + */ + abs: number => { + const randomBinding = RandomBindingString(16) + return { + genBindings: [{ source: `((-1 + (${number} > 0) * 2) * ${number})`, target: randomBinding }], + value: randomBinding, + } + }, -FunctionMap.set("new", expression => { - const randomBinding = RandomBindingString(16) - return { - genBindings: [{ source: expression, target: randomBinding }], - value: randomBinding, - } -}) + /** + * Returns the negative absolute value of a number (the value without regard to whether it is positive or negative). For example, the absolute value of 5 is the same as the negative absolute value of -5. + * @param number + * @returns + */ + negabs: number => { + const randomBinding = RandomBindingString(16) + return { + genBindings: [{ source: `((-1 + (${number} < 0) * 2) * ${number})`, target: randomBinding }], + value: randomBinding, + } + }, -FunctionMap.set("sqrt", number => { - const rtn = RandomBindingString(16), - $1 = RandomBindingString(16), - $2 = RandomBindingString(16) + /** + * Generate a new binding for expression + * @param expression + * @returns + */ + new: expression => { + const randomBinding = RandomBindingString(16) + return { + genBindings: [{ source: expression, target: randomBinding }], + value: randomBinding, + } + }, - const { genBindings: absValue, value: absRtn } = callFn("abs", number) + /** + * Returns the square root of a number. + * @param number + * @returns + */ + sqrt: number => { + const rtn = RandomBindingString(16), + $1 = RandomBindingString(16), + $2 = RandomBindingString(16) - return { - genBindings: [ - { - source: `${number} * 100 / 2`, - target: $1, - }, - ...absValue!, - { - source: `${absRtn} > 1`, - target: $2, - }, - { - source: `(${number} < 0) * -1 + (${number} > -1) * (${$2} * ((${rtn} + ${number} / ${rtn}) / 2) + (not ${$2}) * ${rtn})`, - target: rtn, - }, - ], - value: rtn, - } -}) + const { genBindings: absValue, value: absRtn } = callFn("abs", number) -FunctionMap.set("translatable", key => { - return { - value: `'%' + ${key}`, - } -}) + return { + genBindings: [ + { + source: `${number} * 100 / 2`, + target: $1, + }, + ...absValue!, + { + source: `${absRtn} > 1`, + target: $2, + }, + { + source: `(${number} < 0) * -1 + (${number} > -1) * (${$2} * ((${rtn} + ${number} / ${rtn}) / 2) + (not ${$2}) * ${rtn})`, + target: rtn, + }, + ], + value: rtn, + } + }, -FunctionMap.set("bin", input => { - const { ret, bindings } = Parser.intToBin(input) + /** + * Return a translatable string + * @param key + * @returns + */ + translatable: key => { + return { + value: `'%' + ${key}`, + } + }, - bindings.push({ - source: `'§z' + ${Array.from({ length: 30 }, (_, i) => `${ret}${30 - i - 1}`).join(" + ")}`, - target: ret, - }) + /** + * Return a binary of int32 number in string + * @param value + * @param bait + * @returns + */ + // bin: value => { + // const {} = intToBin(value) - return { genBindings: bindings, value: ret } -}) + // return { + // value, + // } + // }, -FunctionMap.set("bind", (value, bait) => { - const ret = RandomBindingString(16) + /** + * Generate value bindings + * @param value + * @param bait + * @returns + */ + bind: (value, bait) => { + const ret = RandomBindingString(16) - if (!bait) { - throw new Error("Bait is required") - } + if (!bait) { + throw new Error("Bait is required") + } - return { - genBindings: [{ source: `((${bait} - ${bait}) + ${value})`, target: ret }], - value: ret, - } -}) + return { + genBindings: [{ source: `((${bait} - ${bait}) + ${value})`, target: ret }], + value: ret, + } + }, -FunctionMap.set("int", input => { - return { - value: input, - } -}) + /** + * Return a int of float number, because string in JSON-UI cannot read it. + * @param input + * @returns + */ + int: input => { + const ret = RandomBindingString(16) + return { + genBindings: [{ source: `${input}`, target: ret }], + value: ret, + } + }, +} satisfies Record + +Object.entries(defaultFunctions).forEach(([key, value]) => FunctionMap.set(key, value)) diff --git a/src/compilers/bindings/Lexer.ts b/src/compilers/bindings/Lexer.ts index bc47d30..3e2201f 100644 --- a/src/compilers/bindings/Lexer.ts +++ b/src/compilers/bindings/Lexer.ts @@ -73,8 +73,11 @@ export function Lexer(input: string, start: number = 0, end?: number) { if (input[index + 1] === "=") tokens.push(makeToken(input, TokenKind.OPERATOR, index++, 2)) else { if (input[index] === input[index + 1]) { - if (input[index] !== "!") tokens.push(makeToken(input, TokenKind.OPERATOR, index++, 2)) - else tokens.push(makeToken(input, TokenKind.OPERATOR, index)) + if (input[index] !== "!") { + if (input[++index] === input[index + 1]) + tokens.push(makeToken(input, TokenKind.OPERATOR, index++ - 1, 3)) + else tokens.push(makeToken(input, TokenKind.OPERATOR, index - 1, 2)) + } else tokens.push(makeToken(input, TokenKind.OPERATOR, index)) } else tokens.push(makeToken(input, TokenKind.OPERATOR, index)) } break @@ -135,6 +138,7 @@ export function Lexer(input: string, start: number = 0, end?: number) { value: `'${input.slice(start, index - 1)}'`, }, }) + index-- break } } @@ -199,12 +203,12 @@ export function Lexer(input: string, start: number = 0, end?: number) { ) throw new Error() } - tokens.push(makeToken(input, TokenKind.NUMBER, start, index - start + 1)) + tokens.push(makeToken(input, TokenKind.INT, start, index - start + 1)) break } else if (numType === "b") { index += 2 while (Checker.isBinaryChar(input[index + 1])) index++ - tokens.push(makeToken(input, TokenKind.NUMBER, start, index - start + 1)) + tokens.push(makeToken(input, TokenKind.INT, start, index - start + 1)) if (start + 2 === index) { console.error( `\x1b[31merror: ${input + "\n" + " ".repeat(index + 6) + "^"}\nInvalid character.\x1b[0m`, @@ -215,7 +219,7 @@ export function Lexer(input: string, start: number = 0, end?: number) { } else if (numType === "o") { index += 2 while (Checker.isOctalChar(input[index + 1])) index++ - tokens.push(makeToken(input, TokenKind.NUMBER, start, index - start + 1)) + tokens.push(makeToken(input, TokenKind.INT, start, index - start + 1)) if (start + 2 === index) { console.error( `\x1b[31merror: ${input + "\n" + " ".repeat(index + 6) + "^"}\nInvalid character.\x1b[0m`, @@ -239,7 +243,7 @@ export function Lexer(input: string, start: number = 0, end?: number) { while (Checker.isNumberChar(input[index + 1])) index++ } - tokens.push(makeToken(input, TokenKind.NUMBER, start, index - start + 1)) + tokens.push(makeToken(input, TokenKind.INT, start, index - start + 1)) } else if (Checker.isWordChar(token)) { while (Checker.isWordChar(input[index + 1])) index++ tokens.push(makeToken(input, TokenKind.WORD, start, index - start + 1)) diff --git a/src/compilers/bindings/Parser.ts b/src/compilers/bindings/Parser.ts index 5db7ab5..7461228 100644 --- a/src/compilers/bindings/Parser.ts +++ b/src/compilers/bindings/Parser.ts @@ -186,110 +186,13 @@ export class Parser { } private parseBitwiseLogicExpression(): Expression { - let left = this.parseBitwiseShiftExpression(), - current - - while ( - (current = this.at()) && - this.at()?.kind === TokenKind.OPERATOR && - ["&", "|", "^"].includes(current.value) - ) { - const operator = this.eat() - const right = this.parsePrimaryExpression() - - const cacheStr = `expr:${left}${operator.value}${right}` - if (this.cache.has(cacheStr)) { - return (left = this.cache.get(cacheStr) as Expression) - } - - const ret = RandomBindingString(16) - - this.cache.set(cacheStr, ret) - - const leftBin = this.intToBin(left) - const rightBin = this.intToBin(right) - - if (operator.value === "&") { - this.genBindings.push( - ...Array.from({ length: 30 }, (_, i) => { - return { - source: `(${leftBin}${i} * ${rightBin}${i})`, - target: `${ret}${i}`, - } - }), - ) - } else if (operator.value === "|") { - this.genBindings.push( - ...Array.from({ length: 30 }, (_, i) => { - return { - source: `(${leftBin}${i} + ${rightBin}${i} - (${leftBin}${i} * ${rightBin}${i}))`, - target: `${ret}${i}`, - } - }), - ) - } else { - this.genBindings.push( - ...Array.from({ length: 30 }, (_, i) => { - return { - source: `(${leftBin}${i} + ${rightBin}${i} - 2 * (${leftBin}${i} * ${rightBin}${i}))`, - target: `${ret}${i}`, - } - }), - ) - } - - this.genBindings.push({ - source: `(${Array.from({ length: 30 }, (_, i) => `(${ret}${i} * ${2 ** i})`).join(" + ")})`, - target: ret, - }) - - left = ret - } - - return left + // TODO + return this.parseBitwiseShiftExpression() } private parseBitwiseShiftExpression(): Expression { - let left = this.parsePrimaryExpression(), - current - - while ( - (current = this.at()) && - this.at()?.kind === TokenKind.OPERATOR && - [">>", "<<"].includes(current.value) - ) { - const operator = this.eat() - const right = this.parsePrimaryExpression() - - const cacheStr = `expr:${left}${operator.value}${right}` - if (this.cache.has(cacheStr)) { - return (left = this.cache.get(cacheStr) as Expression) - } - const ret = RandomBindingString(16) - this.cache.set(cacheStr, ret) - - const leftBind = this.intToBin(left) - - const op = operator.value === "<<" ? "-" : "+" - - this.genBindings.push( - ...Array.from({ length: 30 }, (_, i) => { - return { - source: `((0 * ${left}) + ('${leftBind}' + (${i} ${op} ${right})))`, - target: `${ret}${i}`, - } - }), - ) - - this.genBindings.push({ - source: `(${Array.from({ length: 30 }, (_, i) => `(${ret}${i} * ${2 ** i})`).join(" + ")})`, - target: ret, - }) - - left = ret - } - - return left + // TODO + return this.parsePrimaryExpression() } private parsePrimaryExpression(): Expression { @@ -307,7 +210,7 @@ export class Parser { return `(${value})` } - case TokenKind.NUMBER: { + case TokenKind.INT: { const numberToken = this.eat() switch (numberToken.value[1]) { @@ -390,7 +293,7 @@ export class Parser { } default: - this.expect(TokenKind.NUMBER, "Unexpected token!") + this.expect(TokenKind.INT, "Unexpected token!") } return left.value @@ -404,7 +307,7 @@ export class Parser { const args: Expression[] = [] if (this.at().kind === TokenKind.COMMA) { - this.expect(TokenKind.NUMBER, "Unexpected token!") + this.expect(TokenKind.INT, "Unexpected token!") } if (this.at().kind !== TokenKind.CLOSE_PARENTHESIS) { @@ -413,7 +316,7 @@ export class Parser { while (this.at().kind === TokenKind.COMMA) { this.eat() if (this.at().kind === TokenKind.CLOSE_PARENTHESIS) { - this.expect(TokenKind.NUMBER, "Unexpected token!") + this.expect(TokenKind.INT, "Unexpected token!") } args.push(this.parseExpression()) } diff --git a/src/compilers/bindings/types.ts b/src/compilers/bindings/types.ts index 183f809..8b59f10 100644 --- a/src/compilers/bindings/types.ts +++ b/src/compilers/bindings/types.ts @@ -1,10 +1,12 @@ export enum TokenKind { VARIABLE, - NUMBER, STRING, TEMPLATE_STRING, WORD, + INT, + FLOAT, + OPEN_PARENTHESIS, CLOSE_PARENTHESIS, diff --git a/src/compilers/ui/builder.ts b/src/compilers/ui/builder.ts index 3803494..e06cb11 100644 --- a/src/compilers/ui/builder.ts +++ b/src/compilers/ui/builder.ts @@ -67,6 +67,7 @@ if (isBuildMode) { let first = true process.on("beforeExit", async () => { if (first) { + first = false await createBuildFolder() await buildUI() if (isLinkMode) await linkToGame() @@ -85,7 +86,6 @@ if (isBuildMode) { console.log("Install Path:", `\x1b[32m"${path.join(gamePath, await getBuildFolderName())}"\x1b[0m`) console.log("=============================================================") } - first = false }) } else if (isLinkMode) linkToGame() else if (unLinked) unlink() diff --git a/src/components/UI.ts b/src/components/UI.ts index f622d16..7deee84 100644 --- a/src/components/UI.ts +++ b/src/components/UI.ts @@ -169,7 +169,7 @@ export class UI extends Class if (this.controls.size) { obj.controls = [] - this.controls.forEach((e, key) => obj.controls.push({ [key + e[0]]: e[1] })) + this.controls.forEach((e, key) => obj.controls.push({ [key + e[0]]: FormatProperties(e[1]) })) } return obj diff --git a/src/index.ts b/src/index.ts index cd215b2..5a642f4 100644 --- a/src/index.ts +++ b/src/index.ts @@ -15,4 +15,4 @@ export { ItemAuxID } from "./types/enums/Items.js" export { ArrayName, Operation } from "./types/properties/index.js" -export { Lexer } from "./compilers/bindings/Lexer.js" +export * from "./compilers/bindings/Binary.js" From cfba0eea75e4248188470c2b32f5a425cac7eec7 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 5 Feb 2026 13:37:08 +0700 Subject: [PATCH 044/245] v4.0.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 9afb704..d099fe9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.0.1", + "version": "4.0.2", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", From ffb70319e750459f3a799b0e7ee50aaec9effdf1 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 5 Feb 2026 14:33:29 +0700 Subject: [PATCH 045/245] edit readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 26826d1..1bd9695 100644 --- a/README.md +++ b/README.md @@ -48,9 +48,9 @@ const label = Label({ Modify("start", "start_screen_content").insertChild(label) ``` -## 📚 Documentation + ## 🤝 Contributing From f55e0d226aaa17576f3b563ef73ca909d3cb0ced Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sun, 8 Feb 2026 18:58:08 +0700 Subject: [PATCH 046/245] build for mc preview --- package.json | 5 +- scripts/items.ts | 6 +- src/compilers/bindings/Function.ts | 1 - src/types/vanilla/intellisense.ts | 50973 ++++++++++----------------- 4 files changed, 19235 insertions(+), 31750 deletions(-) diff --git a/package.json b/package.json index d099fe9..5c6ee77 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.0.2", + "version": "4.0.3", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", @@ -28,7 +28,8 @@ "gen:enums": "bun scripts/enum", "gen:items": "bun scripts/items", "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" + "full-build": "bun run prefetch;\nbun run vanilla:defs;\nbun run gen:enums;\nbun run gen:items;\nbun run gen:autocomplete;\nbun run build", + "full-build-preview": "bun run prefetch --preview;\nbun run vanilla:defs;\nbun run gen:enums;\nbun run gen:items --preview;\nbun run gen:autocomplete;\nbun run build" }, "devDependencies": { "@types/node": "^25.0.3", diff --git a/scripts/items.ts b/scripts/items.ts index 9efe8a0..84ff25c 100644 --- a/scripts/items.ts +++ b/scripts/items.ts @@ -1,5 +1,7 @@ import fs from "fs" +const version = process.argv.includes("--preview") ? "preview" : "stable" + interface Item { id: number id_aux: number @@ -15,7 +17,9 @@ interface ItemAPI { async function main() { const itemlist: string[] = ["export enum ItemAuxID {"] - const { items }: ItemAPI = await fetch("https://www.asakiyuki.com/api/minecraft/items/id").then(v => v.json()) + const { items }: ItemAPI = await fetch("https://www.asakiyuki.com/api/minecraft/items/id?version=" + version).then( + v => v.json(), + ) for (const { name: fullname, id, id_aux } of items) { const [namespace, name] = fullname.split(":") const enumName = name.toUpperCase() diff --git a/src/compilers/bindings/Function.ts b/src/compilers/bindings/Function.ts index 637b055..ffd9a6f 100644 --- a/src/compilers/bindings/Function.ts +++ b/src/compilers/bindings/Function.ts @@ -1,5 +1,4 @@ import { RandomBindingString } from "../../components/Utils.js" -import { intToBin } from "./Binary.js" import { Expression, GenBinding } from "./types.js" type Callback = (...args: Expression[]) => { diff --git a/src/types/vanilla/intellisense.ts b/src/types/vanilla/intellisense.ts index aff1f0f..3ec33aa 100644 --- a/src/types/vanilla/intellisense.ts +++ b/src/types/vanilla/intellisense.ts @@ -1,6 +1,6 @@ import { Type as T } from "../enums/Type.js" -export type Namespace = keyof VanillaUI +export type Namespace = keyof VanillaUI; export type Element = Extract export type VanillaElementInfo> = VanillaUI[T][K] // @ts-ignore @@ -8,32374 +8,19855 @@ export type VanillaType> = VanillaElem // @ts-ignore export type VanillaElementChilds> = VanillaElementInfo["children"] + export type VanillaUI = { - achievement: AchievementType - add_external_server: AddExternalServerType - adhoc_inprogress: AdhocInprogressType - adhoc: AdhocType - anvil: AnvilType - anvil_pocket: AnvilPocketType - authentication_modals: AuthenticationModalsType - authentication: AuthenticationType - auto_save_info: AutoSaveInfoType - beacon: BeaconType - beacon_pocket: BeaconPocketType - blast_furnace: BlastFurnaceType - book: BookType - brewing_stand: BrewingStandType - brewing_stand_pocket: BrewingStandPocketType - bundle_purchase_warning: BundlePurchaseWarningType - cartography: CartographyType - cartography_pocket: CartographyPocketType - chalkboard: ChalkboardType - chat: ChatType - chat_settings: ChatSettingsType - chest: ChestType - choose_realm: ChooseRealmType - coin_purchase: CoinPurchaseType - command_block: CommandBlockType - confirm_delete_account: ConfirmDeleteAccountType - content_log: ContentLogType - content_log_history: ContentLogHistoryType - crafter_pocket: CrafterPocketType - create_world_upsell: CreateWorldUpsellType - credits: CreditsType - csb_purchase_error: CsbPurchaseErrorType - csb: CsbType - csb_content: CsbContentType - csb_banner: CsbBannerType - csb_buy: CsbBuyType - common_csb: CommonCsbType - csb_purchase_amazondevicewarning: CsbPurchaseAmazondevicewarningType - csb_purchase_warning: CsbPurchaseWarningType - csb_subscription_panel: CsbSubscriptionPanelType - csb_upsell: CsbUpsellType - csb_packs: CsbPacksType - csb_welcome: CsbWelcomeType - csb_faq: CsbFaqType - csb_landing: CsbLandingType - custom_templates: CustomTemplatesType - world_conversion_complete: WorldConversionCompleteType - day_one_experience_intro: DayOneExperienceIntroType - day_one_experience: DayOneExperienceType - death: DeathType - debug_screen: DebugScreenType - dev_console: DevConsoleType - disconnect: DisconnectType - display_logged_error: DisplayLoggedErrorType - discovery_dialog: DiscoveryDialogType - edu_featured: EduFeaturedType - edu_quit_button: EduQuitButtonType - persona_emote: PersonaEmoteType - enchanting: EnchantingType - enchanting_pocket: EnchantingPocketType - encyclopedia: EncyclopediaType - expanded_skin_pack: ExpandedSkinPackType - feed_common: FeedCommonType - file_upload: FileUploadType - furnace: FurnaceType - furnace_pocket: FurnacePocketType - game_tip: GameTipType - gamepad_disconnected: GamepadDisconnectedType - gameplay: GameplayType - gathering_info: GatheringInfoType - globalpause: GlobalpauseType - grindstone: GrindstoneType - grindstone_pocket: GrindstonePocketType - gamma_calibration: GammaCalibrationType - horse: HorseType - horse_pocket: HorsePocketType - how_to_play_common: HowToPlayCommonType - how_to_play: HowToPlayType - hud: HudType - host_options: HostOptionsType - bed: BedType - im_reader: ImReaderType - crafting: CraftingType - crafting_pocket: CraftingPocketType - invite: InviteType - jigsaw_editor: JigsawEditorType - late_join: LateJoinType - library_modal: LibraryModalType - local_world_picker: LocalWorldPickerType - loom: LoomType - loom_pocket: LoomPocketType - manage_feed: ManageFeedType - manifest_validation: ManifestValidationType - sdl_label: SdlLabelType - sdl_dropdowns: SdlDropdownsType - sdl_image_row: SdlImageRowType - sdl_text_row: SdlTextRowType - mob_effect: MobEffectType - non_xbl_user_management: NonXblUserManagementType - npc_interact: NpcInteractType - online_safety: OnlineSafetyType - pack_settings: PackSettingsType - panorama: PanoramaType - patch_notes: PatchNotesType - pause: PauseType - pdp: PdpType - pdp_screenshots: PdpScreenshotsType - permissions: PermissionsType - persona_cast_character_screen: PersonaCastCharacterScreenType - persona_common: PersonaCommonType - persona_popups: PersonaPopupsType - play: PlayType - perf_turtle: PerfTurtleType - pocket_containers: PocketContainersType - popup_dialog: PopupDialogType - portfolio: PortfolioType - progress: ProgressType - rating_prompt: RatingPromptType - realms_common: RealmsCommonType - realms_create: RealmsCreateType - realms_pending_invitations: RealmsPendingInvitationsType - realms_slots: RealmsSlotsType - realms_settings: RealmsSettingsType - realms_allowlist: RealmsAllowlistType - realms_invite_link_settings: RealmsInviteLinkSettingsType - realms_plus_ended: RealmsPlusEndedType - realmsPlus: RealmsPlusType - realmsPlus_content: RealmsPlusContentType - realmsPlus_faq: RealmsPlusFaqType - realmsPlus_landing: RealmsPlusLandingType - realmsPlus_buy: RealmsPlusBuyType - realmsPlus_packs: RealmsPlusPacksType - realmsPlus_purchase_warning: RealmsPlusPurchaseWarningType - realms_stories_transition: RealmsStoriesTransitionType - redstone: RedstoneType - resource_packs: ResourcePacksType - safe_zone: SafeZoneType - storage_migration_common: StorageMigrationCommonType - storage_migration_generic: StorageMigrationGenericType - scoreboard: ScoreboardType - screenshot: ScreenshotType - select_world: SelectWorldType - server_form: ServerFormType - settings: SettingsType - controls_section: ControlsSectionType - general_section: GeneralSectionType - realms_world_section: RealmsWorldSectionType - settings_common: SettingsCommonType - world_section: WorldSectionType - social_section: SocialSectionType - sidebar_navigation: SidebarNavigationType - sign: SignType - simple_inprogress: SimpleInprogressType - skin_pack_purchase: SkinPackPurchaseType - skin_picker: SkinPickerType - smithing_table: SmithingTableType - smithing_table_2: SmithingTable2Type - smithing_table_pocket: SmithingTablePocketType - smithing_table_2_pocket: SmithingTable2PocketType - smoker: SmokerType - start: StartType - stonecutter: StonecutterType - stonecutter_pocket: StonecutterPocketType - storage_management: StorageManagementType - storage_management_popup: StorageManagementPopupType - common_store: CommonStoreType - store_layout: StoreLayoutType - filter_menu: FilterMenuType - store_inventory: StoreInventoryType - store_item_list: StoreItemListType - store_progress: StoreProgressType - promo_timeline: PromoTimelineType - store_sale_item_list: StoreSaleItemListType - store_search: StoreSearchType - sort_menu: SortMenuType - structure_editor: StructureEditorType - submit_feedback: SubmitFeedbackType - tabbed_upsell: TabbedUpsellType - thanks_for_testing: ThanksForTestingType - third_party_store: ThirdPartyStoreType - toast_screen: ToastScreenType - token_faq: TokenFaqType - trade: TradeType - trade_pocket: TradePocketType - trade2: Trade2Type - trade2_pocket: Trade2PocketType - trialUpsell: TrialUpsellType - ugc_viewer: UgcViewerType - common_art: CommonArtType - common: CommonType - "common-classic": CommonClassicType - edu_common: EduCommonType - purchase_common: PurchaseCommonType - common_buttons: CommonButtonsType - common_dialogs: CommonDialogsType - common_tabs: CommonTabsType - common_toggles: CommonTogglesType - friendsbutton: FriendsbuttonType - iconbutton: IconbuttonType - update_dimensions: UpdateDimensionsType - update_version: UpdateVersionType - world_recovery: WorldRecoveryType - world_templates: WorldTemplatesType - xbl_console_qr_signin: XblConsoleQrSigninType - xbl_console_signin: XblConsoleSigninType - xbl_console_signin_succeeded: XblConsoleSigninSucceededType - xbl_immediate_signin: XblImmediateSigninType - win10_trial_conversion: Win10TrialConversionType + "achievement": AchievementType, + "add_external_server": AddExternalServerType, + "adhoc_inprogress": AdhocInprogressType, + "adhoc": AdhocType, + "anvil": AnvilType, + "anvil_pocket": AnvilPocketType, + "authentication_modals": AuthenticationModalsType, + "authentication": AuthenticationType, + "auto_save_info": AutoSaveInfoType, + "beacon": BeaconType, + "beacon_pocket": BeaconPocketType, + "blast_furnace": BlastFurnaceType, + "book": BookType, + "brewing_stand": BrewingStandType, + "brewing_stand_pocket": BrewingStandPocketType, + "bundle_purchase_warning": BundlePurchaseWarningType, + "cartography": CartographyType, + "cartography_pocket": CartographyPocketType, + "chalkboard": ChalkboardType, + "chat": ChatType, + "chat_settings": ChatSettingsType, + "chest": ChestType, + "choose_realm": ChooseRealmType, + "coin_purchase": CoinPurchaseType, + "command_block": CommandBlockType, + "confirm_delete_account": ConfirmDeleteAccountType, + "content_log": ContentLogType, + "content_log_history": ContentLogHistoryType, + "crafter_pocket": CrafterPocketType, + "create_world_upsell": CreateWorldUpsellType, + "credits": CreditsType, + "csb_purchase_error": CsbPurchaseErrorType, + "csb": CsbType, + "csb_content": CsbContentType, + "csb_banner": CsbBannerType, + "csb_buy": CsbBuyType, + "common_csb": CommonCsbType, + "csb_purchase_amazondevicewarning": CsbPurchaseAmazondevicewarningType, + "csb_purchase_warning": CsbPurchaseWarningType, + "csb_subscription_panel": CsbSubscriptionPanelType, + "csb_upsell": CsbUpsellType, + "csb_packs": CsbPacksType, + "csb_welcome": CsbWelcomeType, + "csb_faq": CsbFaqType, + "csb_landing": CsbLandingType, + "custom_templates": CustomTemplatesType, + "world_conversion_complete": WorldConversionCompleteType, + "day_one_experience_intro": DayOneExperienceIntroType, + "day_one_experience": DayOneExperienceType, + "death": DeathType, + "debug_screen": DebugScreenType, + "dev_console": DevConsoleType, + "disconnect": DisconnectType, + "display_logged_error": DisplayLoggedErrorType, + "discovery_dialog": DiscoveryDialogType, + "edu_featured": EduFeaturedType, + "edu_quit_button": EduQuitButtonType, + "persona_emote": PersonaEmoteType, + "enchanting": EnchantingType, + "enchanting_pocket": EnchantingPocketType, + "encyclopedia": EncyclopediaType, + "expanded_skin_pack": ExpandedSkinPackType, + "feed_common": FeedCommonType, + "file_upload": FileUploadType, + "furnace": FurnaceType, + "furnace_pocket": FurnacePocketType, + "game_tip": GameTipType, + "gamepad_disconnected": GamepadDisconnectedType, + "gameplay": GameplayType, + "gathering_info": GatheringInfoType, + "globalpause": GlobalpauseType, + "grindstone": GrindstoneType, + "grindstone_pocket": GrindstonePocketType, + "gamma_calibration": GammaCalibrationType, + "horse": HorseType, + "horse_pocket": HorsePocketType, + "how_to_play_common": HowToPlayCommonType, + "how_to_play": HowToPlayType, + "hud": HudType, + "host_options": HostOptionsType, + "bed": BedType, + "im_reader": ImReaderType, + "crafting": CraftingType, + "crafting_pocket": CraftingPocketType, + "invite": InviteType, + "jigsaw_editor": JigsawEditorType, + "late_join": LateJoinType, + "library_modal": LibraryModalType, + "local_world_picker": LocalWorldPickerType, + "loom": LoomType, + "loom_pocket": LoomPocketType, + "manage_feed": ManageFeedType, + "manifest_validation": ManifestValidationType, + "sdl_label": SdlLabelType, + "sdl_dropdowns": SdlDropdownsType, + "sdl_image_row": SdlImageRowType, + "sdl_text_row": SdlTextRowType, + "mob_effect": MobEffectType, + "non_xbl_user_management": NonXblUserManagementType, + "npc_interact": NpcInteractType, + "online_safety": OnlineSafetyType, + "pack_settings": PackSettingsType, + "panorama": PanoramaType, + "patch_notes": PatchNotesType, + "pause": PauseType, + "pdp": PdpType, + "pdp_screenshots": PdpScreenshotsType, + "permissions": PermissionsType, + "persona_cast_character_screen": PersonaCastCharacterScreenType, + "persona_common": PersonaCommonType, + "persona_popups": PersonaPopupsType, + "play": PlayType, + "perf_turtle": PerfTurtleType, + "pocket_containers": PocketContainersType, + "popup_dialog": PopupDialogType, + "portfolio": PortfolioType, + "progress": ProgressType, + "rating_prompt": RatingPromptType, + "realms_common": RealmsCommonType, + "realms_create": RealmsCreateType, + "realms_pending_invitations": RealmsPendingInvitationsType, + "realms_slots": RealmsSlotsType, + "realms_settings": RealmsSettingsType, + "realms_allowlist": RealmsAllowlistType, + "realms_invite_link_settings": RealmsInviteLinkSettingsType, + "realms_plus_ended": RealmsPlusEndedType, + "realmsPlus": RealmsPlusType, + "realmsPlus_content": RealmsPlusContentType, + "realmsPlus_faq": RealmsPlusFaqType, + "realmsPlus_landing": RealmsPlusLandingType, + "realmsPlus_buy": RealmsPlusBuyType, + "realmsPlus_packs": RealmsPlusPacksType, + "realmsPlus_purchase_warning": RealmsPlusPurchaseWarningType, + "realms_stories_transition": RealmsStoriesTransitionType, + "redstone": RedstoneType, + "resource_packs": ResourcePacksType, + "safe_zone": SafeZoneType, + "storage_migration_common": StorageMigrationCommonType, + "storage_migration_generic": StorageMigrationGenericType, + "scoreboard": ScoreboardType, + "screenshot": ScreenshotType, + "select_world": SelectWorldType, + "server_form": ServerFormType, + "settings": SettingsType, + "controls_section": ControlsSectionType, + "general_section": GeneralSectionType, + "realms_world_section": RealmsWorldSectionType, + "settings_common": SettingsCommonType, + "world_section": WorldSectionType, + "social_section": SocialSectionType, + "sidebar_navigation": SidebarNavigationType, + "sign": SignType, + "simple_inprogress": SimpleInprogressType, + "skin_pack_purchase": SkinPackPurchaseType, + "skin_picker": SkinPickerType, + "smithing_table": SmithingTableType, + "smithing_table_2": SmithingTable2Type, + "smithing_table_pocket": SmithingTablePocketType, + "smithing_table_2_pocket": SmithingTable2PocketType, + "smoker": SmokerType, + "start": StartType, + "stonecutter": StonecutterType, + "stonecutter_pocket": StonecutterPocketType, + "storage_management": StorageManagementType, + "storage_management_popup": StorageManagementPopupType, + "common_store": CommonStoreType, + "store_layout": StoreLayoutType, + "filter_menu": FilterMenuType, + "store_inventory": StoreInventoryType, + "store_item_list": StoreItemListType, + "store_progress": StoreProgressType, + "promo_timeline": PromoTimelineType, + "store_sale_item_list": StoreSaleItemListType, + "store_search": StoreSearchType, + "sort_menu": SortMenuType, + "structure_editor": StructureEditorType, + "submit_feedback": SubmitFeedbackType, + "tabbed_upsell": TabbedUpsellType, + "thanks_for_testing": ThanksForTestingType, + "third_party_store": ThirdPartyStoreType, + "toast_screen": ToastScreenType, + "token_faq": TokenFaqType, + "trade": TradeType, + "trade_pocket": TradePocketType, + "trade2": Trade2Type, + "trade2_pocket": Trade2PocketType, + "trialUpsell": TrialUpsellType, + "ugc_viewer": UgcViewerType, + "common_art": CommonArtType, + "common": CommonType, + "common-classic": CommonClassicType, + "edu_common": EduCommonType, + "purchase_common": PurchaseCommonType, + "common_buttons": CommonButtonsType, + "common_dialogs": CommonDialogsType, + "common_tabs": CommonTabsType, + "common_toggles": CommonTogglesType, + "friendsbutton": FriendsbuttonType, + "iconbutton": IconbuttonType, + "update_dimensions": UpdateDimensionsType, + "update_version": UpdateVersionType, + "world_recovery": WorldRecoveryType, + "world_templates": WorldTemplatesType, + "xbl_console_qr_signin": XblConsoleQrSigninType, + "xbl_console_signin": XblConsoleSigninType, + "xbl_console_signin_succeeded": XblConsoleSigninSucceededType, + "xbl_immediate_signin": XblImmediateSigninType, + "win10_trial_conversion": Win10TrialConversionType, } export type AchievementType = { - empty_progress_bar_icon: { type: T.IMAGE; children: string } - full_progress_bar_icon_base: { type: T.IMAGE; children: string } + "empty_progress_bar_icon": { type: T.IMAGE, children: string }, + "full_progress_bar_icon_base": { type: T.IMAGE, children: string }, } export type AddExternalServerType = { - 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { type: T.SCREEN; children: string } + "blast_furnace_screen": { type: T.SCREEN, children: string }, } export type BookType = { - 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { - 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 } + "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: { 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 } + "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: { - 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { type: T.PANEL; children: "button_label" } - "featured_button_content/button_label": { type: T.LABEL; children: string } - featured_button: { type: T.BUTTON; children: string } + "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: { type: T.BUTTON; children: string } + "quit_button": { type: T.BUTTON, children: string }, } export type PersonaEmoteType = { - 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { - 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { type: T.STACK_PANEL; children: string } - sdl_label: { type: T.LABEL; children: string } - sdl_mc_ten_label: { type: T.LABEL; children: string } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { - 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 - } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { - 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { - 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 } + "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: { 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 } + "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: { 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 } + "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: { - 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 } + "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: { 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 } + "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: { 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 } + "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: { type: T.SCREEN; children: string } + "realms_stories_transition_screen": { type: T.SCREEN, children: string }, } export type RedstoneType = { - 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { - 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { type: T.SCREEN; children: string } + "smoker_screen": { type: T.SCREEN, children: string }, } export type StartType = { - 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { type: T.SCREEN; children: string } + "third_party_store_screen": { type: T.SCREEN, children: string }, } export type ToastScreenType = { - 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 } + "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: { - 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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: { 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 } + "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 }, } From 2aea7039a71288310bc52f88cc2a4fbfa3bcef51 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 9 Feb 2026 17:10:39 +0700 Subject: [PATCH 047/245] trollface --- resources/asajs.config.cjs | 4 +++- src/compilers/Configuration.ts | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/resources/asajs.config.cjs b/resources/asajs.config.cjs index 018faf9..74f7d11 100644 --- a/resources/asajs.config.cjs +++ b/resources/asajs.config.cjs @@ -2,7 +2,7 @@ * Configuration object for the AsaJS build process. * @type {import('asajs/config.d.ts').Config} */ -export const config = { +const config = { packinfo: { name: "AsaJS", description: "Create your Minecraft JSON-UI resource packs using JavaScript.", @@ -15,3 +15,5 @@ export const config = { importToPreview: false, }, } + +module.exports = { config } diff --git a/src/compilers/Configuration.ts b/src/compilers/Configuration.ts index 256e924..1d68705 100644 --- a/src/compilers/Configuration.ts +++ b/src/compilers/Configuration.ts @@ -2,6 +2,7 @@ import fs from "fs" import path from "path" // @ts-ignore import { Config } from "../../config.js" +import { createRequire } from "module" if (!fs.existsSync("asajs.config.cjs")) { fs.copyFileSync("node_modules/asajs/resources/asajs.config.cjs", "asajs.config.cjs") @@ -11,7 +12,7 @@ if (!fs.existsSync(".gitignore")) { fs.writeFileSync(".gitignore", `node_modules`, "utf-8") } -export const config: Config = require(path.resolve(process.cwd(), "asajs.config.cjs")).config +export const config: Config = createRequire(import.meta.url)(path.resolve(process.cwd(), "asajs.config.cjs")).config export let isBuildMode = config.compiler?.enabled ?? false export let isLinkMode = config.compiler?.autoImport ?? false From 2c0a0f40cf2f861fb2fa418f15e4513ac03a75a1 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 9 Feb 2026 17:14:00 +0700 Subject: [PATCH 048/245] trollface --- resources/{asajs.config.cjs => asajs.config.js} | 4 +--- src/compilers/Configuration.ts | 6 +++--- 2 files changed, 4 insertions(+), 6 deletions(-) rename resources/{asajs.config.cjs => asajs.config.js} (88%) diff --git a/resources/asajs.config.cjs b/resources/asajs.config.js similarity index 88% rename from resources/asajs.config.cjs rename to resources/asajs.config.js index 74f7d11..018faf9 100644 --- a/resources/asajs.config.cjs +++ b/resources/asajs.config.js @@ -2,7 +2,7 @@ * Configuration object for the AsaJS build process. * @type {import('asajs/config.d.ts').Config} */ -const config = { +export const config = { packinfo: { name: "AsaJS", description: "Create your Minecraft JSON-UI resource packs using JavaScript.", @@ -15,5 +15,3 @@ const config = { importToPreview: false, }, } - -module.exports = { config } diff --git a/src/compilers/Configuration.ts b/src/compilers/Configuration.ts index 1d68705..edd05dc 100644 --- a/src/compilers/Configuration.ts +++ b/src/compilers/Configuration.ts @@ -4,15 +4,15 @@ import path from "path" import { Config } from "../../config.js" import { createRequire } from "module" -if (!fs.existsSync("asajs.config.cjs")) { - fs.copyFileSync("node_modules/asajs/resources/asajs.config.cjs", "asajs.config.cjs") +if (!fs.existsSync("asajs.config.js")) { + fs.copyFileSync("node_modules/asajs/resources/asajs.config.js", "asajs.config.js") } if (!fs.existsSync(".gitignore")) { fs.writeFileSync(".gitignore", `node_modules`, "utf-8") } -export const config: Config = createRequire(import.meta.url)(path.resolve(process.cwd(), "asajs.config.cjs")).config +export const config: Config = createRequire(import.meta.url)(path.resolve(process.cwd(), "asajs.config.js")).config export let isBuildMode = config.compiler?.enabled ?? false export let isLinkMode = config.compiler?.autoImport ?? false From bd91adc83cc595629788bea46645b6f287aef5b7 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 9 Feb 2026 17:16:41 +0700 Subject: [PATCH 049/245] asajs v4.0.4 --- package.json | 2 +- src/types/enums/Items.ts | 1 + src/types/vanilla/intellisense.ts | 438 ++++++++++++++++++------------ src/types/vanilla/paths.ts | 376 +++++++++++++++---------- 4 files changed, 505 insertions(+), 312 deletions(-) diff --git a/package.json b/package.json index 5c6ee77..3cc6f6f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.0.3", + "version": "4.0.4-preview", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", diff --git a/src/types/enums/Items.ts b/src/types/enums/Items.ts index 87c52fc..40ad58a 100644 --- a/src/types/enums/Items.ts +++ b/src/types/enums/Items.ts @@ -557,6 +557,7 @@ export enum ItemAuxID { GOLDEN_BOOTS = 25296896, GOLDEN_CARROT = 20447232, GOLDEN_CHESTPLATE = 25165824, + GOLDEN_DANDELION = -71499776, GOLDEN_HELMET = 25100288, GOLDEN_HOE = 23920640, GOLDEN_HORSE_ARMOR = 37421056, diff --git a/src/types/vanilla/intellisense.ts b/src/types/vanilla/intellisense.ts index 3ec33aa..50593c2 100644 --- a/src/types/vanilla/intellisense.ts +++ b/src/types/vanilla/intellisense.ts @@ -1330,10 +1330,20 @@ export type ChatType = { "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 }, + "new_messages": { type: T.IMAGE, children: 'focus_border' }, + "new_messages/focus_border": { type: T.IMAGE, children: 'stack' }, + "new_messages/focus_border/stack": { type: T.STACK_PANEL, children: 'arrow_icon' | 'separator' | 'tooltip_text' }, + "new_messages/focus_border/stack/arrow_icon": { type: T.IMAGE, children: string }, + "new_messages/focus_border/stack/separator": { type: T.PANEL, children: string }, + "new_messages/focus_border/stack/tooltip_text": { type: T.LABEL, 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 }, + "new_messages_button": { type: T.BUTTON, children: 'default' | 'pressed' | 'hover' }, + "new_messages_button/default": { type: T.IMAGE, children: string }, + "new_messages_button/pressed": { type: T.IMAGE, children: string }, + "new_messages_button/hover": { type: T.IMAGE, 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 }, @@ -1389,10 +1399,11 @@ export type ChatType = { "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": { type: T.PANEL, children: 'messages_panel' | 'chat_bottom_panel' | 'chat_top_panel' | 'new_messages_button' | '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/new_messages_button": { type: T.BUTTON, 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 }, @@ -5576,6 +5587,8 @@ export type HudType = { "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 }, + "subtitle_panel": { type: T.PANEL, children: 'stack_panel' }, + "subtitle_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 }, @@ -5747,7 +5760,7 @@ export type HudType = { "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": { 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' | 'subtitle_stack' | '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' }, @@ -5762,6 +5775,9 @@ export type HudType = { "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/subtitle_stack": { type: T.STACK_PANEL, children: 'subtitle_padding' | 'subtitle_panel' }, + "root_panel/subtitle_stack/subtitle_padding": { type: T.PANEL, children: string }, + "root_panel/subtitle_stack/subtitle_panel": { 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 }, @@ -5941,9 +5957,6 @@ export type CraftingType = { "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' }, @@ -5954,26 +5967,16 @@ export type CraftingType = { "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 }, + "items_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 }, @@ -5999,6 +6002,7 @@ export type CraftingType = { "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 }, + "creative_label": { type: T.LABEL, 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 }, @@ -6122,26 +6126,12 @@ export type CraftingType = { "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": { type: T.GRID, 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 }, + "scroll_panel": { type: T.PANEL, 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 }, @@ -6156,21 +6146,17 @@ export type CraftingType = { "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": { type: T.STACK_PANEL, children: 'left_trigger_anchor' | 'padding_0' | 'creative_layout_toggle_panel' | 'padding_1' | 'recipe_book_layout_toggle_panel' | '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/recipe_book_layout_toggle_panel": { type: T.PANEL, children: 'recipe_book_layout_toggle' }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel/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 }, @@ -6185,7 +6171,6 @@ export type CraftingType = { "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 }, @@ -6531,7 +6516,8 @@ export type InviteType = { "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": { type: T.STACK_PANEL, children: 'invite_party_panel' | '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/invite_party_panel": { type: T.PANEL, children: string }, "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' }, @@ -6559,6 +6545,12 @@ export type InviteType = { "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 }, + "invite_party_panel": { type: T.PANEL, children: 'frame_label' | 'frame_description' | 'our_toggle' | 'border_outline' }, + "invite_party_panel/frame_label": { type: T.LABEL, children: string }, + "invite_party_panel/frame_description": { type: T.LABEL, children: string }, + "invite_party_panel/our_toggle": { type: T.TOGGLE, children: string }, + "invite_party_panel/border_outline": { type: T.IMAGE, children: string }, + "friend_button_test": { type: T.TOGGLE, 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 }, @@ -7112,7 +7104,9 @@ export type SdlTextRowType = { } export type MobEffectType = { - "effect_background": { type: T.IMAGE, children: string }, + "effect_background": { type: T.PANEL, children: 'default_background' | 'ambient_background' }, + "effect_background/default_background": { type: T.IMAGE, children: string }, + "effect_background/ambient_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 }, @@ -7122,7 +7116,7 @@ export type MobEffectType = { "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/bg": { type: T.PANEL, 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 }, @@ -7547,27 +7541,50 @@ export type PauseType = { "invite_players_button": { type: T.BUTTON, children: string }, "buy_button": { type: T.BUTTON, children: string }, "quit_button": { type: T.BUTTON, children: string }, + "icon_button_hover_text": { type: T.IMAGE, children: 'tooltip_text' }, + "icon_button_hover_text/tooltip_text": { type: T.LABEL, children: string }, + "icon_button_tooltip_trigger": { type: T.BUTTON, children: 'default' | 'pressed' | 'hover' }, + "icon_button_tooltip_trigger/default": { type: T.PANEL, children: string }, + "icon_button_tooltip_trigger/pressed": { type: T.PANEL, children: string }, + "icon_button_tooltip_trigger/hover": { type: T.IMAGE, children: string }, "feedback_button": { type: T.BUTTON, children: string }, - "feedback_icon_button": { type: T.PANEL, children: 'feedback_button' }, + "feedback_icon_button": { type: T.PANEL, children: 'feedback_button' | 'tooltip_trigger' }, "feedback_icon_button/feedback_button": { type: T.BUTTON, children: string }, + "feedback_icon_button/tooltip_trigger": { 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 }, + "achievements_button_small_with_tooltip": { type: T.PANEL, children: 'button' | 'tooltip_trigger' }, + "achievements_button_small_with_tooltip/button": { type: T.BUTTON, children: string }, + "achievements_button_small_with_tooltip/tooltip_trigger": { type: T.BUTTON, children: string }, "settings_button_small": { type: T.BUTTON, children: string }, + "settings_button_small_with_tooltip": { type: T.PANEL, children: 'button' | 'tooltip_trigger' }, + "settings_button_small_with_tooltip/button": { type: T.BUTTON, children: string }, + "settings_button_small_with_tooltip/tooltip_trigger": { type: T.BUTTON, children: string }, "take_screenshot_button": { type: T.BUTTON, children: string }, + "take_screenshot_button_with_tooltip": { type: T.PANEL, children: 'button' | 'tooltip_trigger' }, + "take_screenshot_button_with_tooltip/button": { type: T.BUTTON, children: string }, + "take_screenshot_button_with_tooltip/tooltip_trigger": { type: T.BUTTON, children: string }, + "take_screenshot_gamepad_button_with_tooltip": { type: T.PANEL, children: 'button' | 'tooltip_trigger' }, + "take_screenshot_gamepad_button_with_tooltip/button": { type: T.BUTTON, children: string }, + "take_screenshot_gamepad_button_with_tooltip/tooltip_trigger": { 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": { type: T.PANEL, children: 'pause_screen_main_panels' | 'skin_panel' | 'top_right_panel' | 'gamepad_helpers' | 'keyboard_helpers' | 'debug_drawer_button_panel' }, "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/top_right_panel": { type: T.STACK_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_content/debug_drawer_button_panel": { type: T.PANEL, children: string }, + "top_right_panel": { type: T.STACK_PANEL, children: 'pause_panel' | 'friendsdrawer_button_panel' }, + "top_right_panel/pause_panel": { type: T.STACK_PANEL, children: string }, + "top_right_panel/friendsdrawer_button_panel": { type: T.PANEL, children: string }, + "friendsdrawer_button_panel": { type: T.PANEL, children: 'friendsdrawer_button' | 'friends_drawer_ftue_popup_wrapper' }, + "friendsdrawer_button_panel/friendsdrawer_button": { type: T.BUTTON, children: string }, + "friendsdrawer_button_panel/friends_drawer_ftue_popup_wrapper": { type: T.PANEL, children: 'friends_drawer_ftue_popup' }, + "friendsdrawer_button_panel/friends_drawer_ftue_popup_wrapper/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' }, @@ -7579,14 +7596,14 @@ export type PauseType = { "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_button/small_settings_btn": { type: T.PANEL, 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_button/small_achievements_btn": { type: T.PANEL, 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/take_screenshot_btn/take_screenshot_button": { type: T.PANEL, children: string }, + "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_gamepad_button": { type: T.PANEL, 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 }, @@ -7603,30 +7620,38 @@ export type PauseType = { "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 }, + "paused_text_panel_grey": { type: T.IMAGE, children: 'pause' }, + "paused_text_panel_grey/pause": { type: T.LABEL, children: string }, + "paused_text_panel_green": { type: T.IMAGE, children: 'horizontal_stack' }, + "paused_text_panel_green/horizontal_stack": { type: T.STACK_PANEL, children: 'pause_icon' | 'fill_1' | 'pause' }, + "paused_text_panel_green/horizontal_stack/pause_icon": { type: T.IMAGE, children: string }, + "paused_text_panel_green/horizontal_stack/fill_1": { type: T.PANEL, children: string }, + "paused_text_panel_green/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 }, + "pause_announcement_panel_grey": { type: T.STACK_PANEL, children: 'horizontal_stack' }, + "pause_announcement_panel_grey/horizontal_stack": { type: T.STACK_PANEL, children: 'fill_1' | 'pause_text' | 'fill_2' }, + "pause_announcement_panel_grey/horizontal_stack/fill_1": { type: T.PANEL, children: string }, + "pause_announcement_panel_grey/horizontal_stack/pause_text": { type: T.IMAGE, children: string }, + "pause_announcement_panel_grey/horizontal_stack/fill_2": { type: T.PANEL, children: string }, + "pause_announcement_panel_green": { type: T.STACK_PANEL, children: 'horizontal_stack' }, + "pause_announcement_panel_green/horizontal_stack": { type: T.STACK_PANEL, children: 'fill_1' | 'pause_text' | 'fill_2' }, + "pause_announcement_panel_green/horizontal_stack/fill_1": { type: T.PANEL, children: string }, + "pause_announcement_panel_green/horizontal_stack/pause_text": { type: T.IMAGE, children: string }, + "pause_announcement_panel_green/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": { type: T.STACK_PANEL, children: 'title_image' | 'fill_1' | 'return_to_game_button' | 'return' | 'settings_button' | 'settings' | '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/settings_button": { type: T.BUTTON, children: string }, + "menu_background/button_panel/settings": { 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 }, @@ -7721,6 +7746,12 @@ export type PauseType = { "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 }, + "debug_drawer_button_content": { type: T.PANEL, children: 'button_label_panel' }, + "debug_drawer_button_content/button_label_panel": { type: T.PANEL, children: 'button_label_text_left' }, + "debug_drawer_button_content/button_label_panel/button_label_text_left": { type: T.LABEL, children: string }, + "debug_drawer_button_panel": { type: T.PANEL, children: 'debug_drawer_button_input' }, + "debug_drawer_button_panel/debug_drawer_button_input": { type: T.INPUT_PANEL, children: 'debug_drawer_button' }, + "debug_drawer_button_panel/debug_drawer_button_input/debug_drawer_button": { type: T.BUTTON, children: string }, } export type PdpType = { @@ -7922,7 +7953,6 @@ export type PdpType = { "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' }, @@ -8047,18 +8077,16 @@ export type PdpType = { "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": { type: T.STACK_PANEL, children: 'summary_title_and_author_panel' | 'pad_fill' | 'info_buttons_factory' }, "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/top/info/info_buttons_factory": { type: T.STACK_PANEL, children: string }, "summary_content_left_side/full_content/bottom": { type: T.PANEL, children: string }, + "info_buttons_factory": { type: T.STACK_PANEL, children: string }, + "ratings_summary": { type: T.STACK_PANEL, children: 'ratings_display' }, + "ratings_summary/ratings_display": { type: T.STACK_PANEL, children: 'rating' | 'summary_rating_button' }, + "ratings_summary/ratings_display/rating": { type: T.PANEL, children: string }, + "ratings_summary/ratings_display/summary_rating_button": { type: T.BUTTON, 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 }, @@ -8096,26 +8124,17 @@ export type PdpType = { "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": { type: T.STACK_PANEL, children: 'mashup_text_row' | 'mashup_line_two' | 'basic_vertical_glyphs' }, "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 }, + "mashup_glyph_tooltip_content/basic_vertical_glyphs": { 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 }, @@ -10040,6 +10059,11 @@ export type ProgressType = { "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 }, + "modal_ok_button_panel_with_retry": { type: T.PANEL, children: 'left_ok_button' | 'center_cancel_button' | 'center_ok_button' | 'right_retry_button' }, + "modal_ok_button_panel_with_retry/left_ok_button": { type: T.BUTTON, children: string }, + "modal_ok_button_panel_with_retry/center_cancel_button": { type: T.BUTTON, children: string }, + "modal_ok_button_panel_with_retry/center_ok_button": { type: T.BUTTON, children: string }, + "modal_ok_button_panel_with_retry/right_retry_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 }, @@ -10109,6 +10133,7 @@ export type ProgressType = { "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 }, + "joining_edu_server": { 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 }, @@ -10120,18 +10145,23 @@ export type ProgressType = { "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": { type: T.PANEL, children: 'common_panel' | 'content_wrapper' }, "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 }, + "world_modal_progress_panel/content_wrapper": { type: T.PANEL, children: 'base_content' | 'inside_content' }, + "world_modal_progress_panel/content_wrapper/base_content": { type: T.STACK_PANEL, children: 'vertical_title_padding' | 'title_text_panel' | 'vertical_text_padding' | 'progress_text_panel' }, + "world_modal_progress_panel/content_wrapper/base_content/vertical_title_padding": { type: T.PANEL, children: string }, + "world_modal_progress_panel/content_wrapper/base_content/title_text_panel": { type: T.PANEL, children: 'progress_title_text' }, + "world_modal_progress_panel/content_wrapper/base_content/title_text_panel/progress_title_text": { type: T.LABEL, children: string }, + "world_modal_progress_panel/content_wrapper/base_content/vertical_text_padding": { type: T.PANEL, children: string }, + "world_modal_progress_panel/content_wrapper/base_content/progress_text_panel": { type: T.PANEL, children: 'progress_bar_text' }, + "world_modal_progress_panel/content_wrapper/base_content/progress_text_panel/progress_bar_text": { type: T.LABEL, children: string }, + "world_modal_progress_panel/content_wrapper/inside_content": { type: T.STACK_PANEL, children: 'loading_bar_panel' | 'vertical_padding' | 'modal_button_panel' | 'vertical_padding_2' }, + "world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel": { type: T.PANEL, children: 'fancy_progress_loading_bars' | 'progress_loading_bars' }, + "world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel/fancy_progress_loading_bars": { type: T.PANEL, children: string }, + "world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel/progress_loading_bars": { type: T.IMAGE, children: string }, + "world_modal_progress_panel/content_wrapper/inside_content/vertical_padding": { type: T.PANEL, children: string }, + "world_modal_progress_panel/content_wrapper/inside_content/modal_button_panel": { type: T.UNKNOWN, children: string }, + "world_modal_progress_panel/content_wrapper/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' }, @@ -10187,6 +10217,15 @@ export type ProgressType = { "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 }, + "server_fetch_timeout_panel": { type: T.PANEL, children: 'common_panel' | 'base_content' }, + "server_fetch_timeout_panel/common_panel": { type: T.PANEL, children: string }, + "server_fetch_timeout_panel/base_content": { type: T.PANEL, children: 'progress_title_text' | 'progress_text' | 'edu_server_fetch_image' | 'loading_bar_panel' | 'timeout_button' }, + "server_fetch_timeout_panel/base_content/progress_title_text": { type: T.LABEL, children: string }, + "server_fetch_timeout_panel/base_content/progress_text": { type: T.LABEL, children: string }, + "server_fetch_timeout_panel/base_content/edu_server_fetch_image": { type: T.STACK_PANEL, children: string }, + "server_fetch_timeout_panel/base_content/loading_bar_panel": { type: T.PANEL, children: 'progress_loading_bars' }, + "server_fetch_timeout_panel/base_content/loading_bar_panel/progress_loading_bars": { type: T.IMAGE, children: string }, + "server_fetch_timeout_panel/base_content/timeout_button": { type: T.BUTTON, 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 }, @@ -10216,9 +10255,14 @@ export type ProgressType = { "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": { type: T.PANEL, children: 'server_fetch_panel' | 'server_fetch_timeout_panel' | 'popup_dialog_factory' }, "edu_server_fetch_screen_content/server_fetch_panel": { type: T.PANEL, children: string }, + "edu_server_fetch_screen_content/server_fetch_timeout_panel": { type: T.PANEL, children: string }, "edu_server_fetch_screen_content/popup_dialog_factory": { type: T.FACTORY, children: string }, + "joining_edu_server_progress_screen_content": { type: T.PANEL, children: 'title_panel_content' | 'world_modal_progress_panel' | 'popup_dialog_factory' }, + "joining_edu_server_progress_screen_content/title_panel_content": { type: T.PANEL, children: string }, + "joining_edu_server_progress_screen_content/world_modal_progress_panel": { type: T.PANEL, children: string }, + "joining_edu_server_progress_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 }, @@ -10695,11 +10739,11 @@ export type RealmsSettingsType = { "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": { type: T.STACK_PANEL, children: 'free_up_space_description_label' | 'padding1' | 'free_up_space_storage_bar_panel' | 'padding2' | 'free_up_space_manual_save_list_stack_panel' }, + "free_up_space_popup_content_stack_panel/free_up_space_description_label": { type: T.PANEL, children: string }, + "free_up_space_popup_content_stack_panel/padding1": { type: T.PANEL, children: string }, + "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_panel": { type: T.PANEL, children: string }, + "free_up_space_popup_content_stack_panel/padding2": { 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 }, @@ -10916,6 +10960,7 @@ export type RealmsSettingsType = { "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 }, + "screen_realm_hub_saves": { type: T.SCREEN, children: string }, } export type RealmsAllowlistType = { @@ -12313,13 +12358,18 @@ export type ServerFormType = { export type SettingsType = { "settings_screen_base": { type: T.SCREEN, children: string }, + "settings_screen_base_fullscreen": { 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_controls_and_settings_fullscreen": { type: T.SCREEN, children: string }, "screen_world_controls_and_settings": { type: T.SCREEN, children: string }, + "screen_world_controls_and_settings_fullscreen": { type: T.SCREEN, children: string }, "screen_realm_controls_and_settings": { type: T.SCREEN, children: string }, + "screen_realm_controls_and_settings_fullscreen": { type: T.SCREEN, children: string }, "screen_realm_member_controls_and_settings": { type: T.SCREEN, children: string }, + "screen_realm_member_controls_and_settings_fullscreen": { 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 }, @@ -12408,31 +12458,24 @@ export type SettingsType = { "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": { type: T.STACK_PANEL, children: 'accessibility_section' | 'keyboard_and_mouse_section' | 'controller_section' | 'touch_section' | 'party_section' | 'general_tab_section' | 'account_section' | 'global_texture_pack_section' | 'storage_management_header' | 'storage_management_section' | 'edu_cloud_storage_section' | 'creator_section' | 'video_section' | 'view_subscriptions_prerelease_section' | 'view_subscriptions_section' | 'sound_section' | 'language_section' | '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 }, @@ -12465,6 +12508,11 @@ export type ControlsSectionType = { "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_frame": { type: T.STACK_PANEL, children: 'keymap' | 'command_macro_command' }, + "keymapping_item_frame/keymap": { type: T.STACK_PANEL, children: string }, + "keymapping_item_frame/command_macro_command": { type: T.PANEL, children: string }, + "command_macro_command_textbox": { type: T.PANEL, children: 'text_box' }, + "command_macro_command_textbox/text_box": { type: T.EDIT_BOX, 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 }, @@ -12478,12 +12526,18 @@ export type ControlsSectionType = { "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_command_macros_grid": { type: T.STACK_PANEL, children: 'divider_before' | 'divider_before_padding' | 'command_macro_title' | 'command_macro_title_desc' | 'command_macro_title_padding' | 'command_macro_keymapping_grid' | 'divider_after' | 'divider_after_padding' }, + "keyboard_command_macros_grid/divider_before": { type: T.PANEL, children: 'section_divider' }, + "keyboard_command_macros_grid/divider_before/section_divider": { type: T.IMAGE, children: string }, + "keyboard_command_macros_grid/divider_before_padding": { type: T.PANEL, children: string }, + "keyboard_command_macros_grid/command_macro_title": { type: T.LABEL, children: string }, + "keyboard_command_macros_grid/command_macro_title_desc": { type: T.LABEL, children: string }, + "keyboard_command_macros_grid/command_macro_title_padding": { type: T.PANEL, children: string }, + "keyboard_command_macros_grid/command_macro_keymapping_grid": { type: T.GRID, children: string }, + "keyboard_command_macros_grid/divider_after": { type: T.PANEL, children: 'section_divider' }, + "keyboard_command_macros_grid/divider_after/section_divider": { type: T.IMAGE, children: string }, + "keyboard_command_macros_grid/divider_after_padding": { type: T.PANEL, 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 }, @@ -12493,19 +12547,21 @@ export type ControlsSectionType = { "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": { type: T.STACK_PANEL, children: 'option_group_label' | 'keyboard_keymapping_grid' | 'control_alt_chords_standard_keyboard_section' | 'command_macros' }, "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/keyboard_section/command_macros": { type: T.STACK_PANEL, 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' | 'command_macros' }, "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/full_keyboard_section/command_macros": { type: T.STACK_PANEL, 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' }, @@ -12582,12 +12638,7 @@ export type ControlsSectionType = { export type GeneralSectionType = { "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": { 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' | 'pause_menu_on_focus_lost' | '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 }, @@ -12613,6 +12664,7 @@ export type GeneralSectionType = { "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/pause_menu_on_focus_lost": { 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 }, @@ -12651,11 +12703,6 @@ export type GeneralSectionType = { "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' }, @@ -12783,16 +12830,13 @@ export type GeneralSectionType = { "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": { type: T.STACK_PANEL, children: 'section_panel_1' | 'primary_panel' }, "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 }, + "creator_toggles_panel/primary_panel": { type: T.STACK_PANEL, children: 'content_log_section_label' | 'content_log_section_label_spacer' | 'clipboard_setting' }, + "creator_toggles_panel/primary_panel/content_log_section_label": { type: T.LABEL, children: string }, + "creator_toggles_panel/primary_panel/content_log_section_label_spacer": { type: T.PANEL, children: string }, + "creator_toggles_panel/primary_panel/clipboard_setting": { 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 }, @@ -12809,6 +12853,13 @@ export type GeneralSectionType = { "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 }, + "editor_toggles_panel": { type: T.STACK_PANEL, children: 'section_panel_1' | 'primary_panel' }, + "editor_toggles_panel/section_panel_1": { type: T.PANEL, children: 'section_divider' }, + "editor_toggles_panel/section_panel_1/section_divider": { type: T.IMAGE, children: string }, + "editor_toggles_panel/primary_panel": { type: T.STACK_PANEL, children: 'content_log_section_label' | 'content_log_section_label_spacer' | 'clipboard_setting' }, + "editor_toggles_panel/primary_panel/content_log_section_label": { type: T.LABEL, children: string }, + "editor_toggles_panel/primary_panel/content_log_section_label_spacer": { type: T.PANEL, children: string }, + "editor_toggles_panel/primary_panel/clipboard_setting": { 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 }, @@ -12855,21 +12906,17 @@ export type GeneralSectionType = { "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": { type: T.STACK_PANEL, children: 'editor_toggle' | 'creator_toggles' | 'debugger_toggles_panel' | 'diagnostics_toggle_panel' | 'watchdog_toggles_panel' | 'editor_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/editor_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 }, @@ -12879,7 +12926,7 @@ export type GeneralSectionType = { "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": { 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' | 'texture_streaming_toggle' | 'spacer_37' | '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 }, @@ -12982,6 +13029,8 @@ export type GeneralSectionType = { "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/texture_streaming_toggle": { type: T.PANEL, children: string }, + "video_section/spacer_37": { 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 }, @@ -13100,7 +13149,8 @@ export type GeneralSectionType = { "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": { type: T.STACK_PANEL, children: 'option_toggle_subtitles' | '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_toggle_subtitles": { type: T.PANEL, children: string }, "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 }, @@ -13132,18 +13182,7 @@ export type GeneralSectionType = { "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 }, @@ -13177,11 +13216,6 @@ export type GeneralSectionType = { "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 }, @@ -13241,7 +13275,7 @@ export type GeneralSectionType = { "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": { type: T.STACK_PANEL, children: 'option_toggle_treatment_override' | 'spacer_0' | 'override_treatment_options_panel' | 'treatments_label_panel' | 'treatment_grid' | 'unused_treatments_label_panel' | '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' }, @@ -13255,13 +13289,9 @@ export type GeneralSectionType = { "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' }, @@ -13380,7 +13410,7 @@ export type GeneralSectionType = { "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": { 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_show_test_running_text' | '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_authentication_option' | 'reset_report_timer_option' | 'reset_online_safety_option' | 'reset_show_hardcore_warning_option' | 'reset_low_ping_warning_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 }, @@ -13406,6 +13436,7 @@ export type GeneralSectionType = { "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_show_test_running_text": { 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 }, @@ -13459,8 +13490,11 @@ export type GeneralSectionType = { "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_authentication_option": { type: T.BUTTON, 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_show_hardcore_warning_option": { type: T.BUTTON, children: string }, + "debug_section/reset_low_ping_warning_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 }, @@ -13556,7 +13590,7 @@ export type GeneralSectionType = { "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": { 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' | 'end_of_other_options_divider' | 'end_of_other_options_spacer' | 'debug_data_label' | 'debug_data_label_spacer' | 'option_continuous_repaint' | 'option_show_paint_rects' | 'option_show_element_aabb' | 'option_emulate_touch_events' | 'end_of_debug_data_divider' | 'end_of_debug_data_spacer' | '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 }, @@ -13617,6 +13651,18 @@ export type GeneralSectionType = { "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/end_of_other_options_divider": { type: T.PANEL, children: 'section_divider' }, + "ui_debug_section/end_of_other_options_divider/section_divider": { type: T.IMAGE, children: string }, + "ui_debug_section/end_of_other_options_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/debug_data_label": { type: T.LABEL, children: string }, + "ui_debug_section/debug_data_label_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/option_continuous_repaint": { type: T.PANEL, children: string }, + "ui_debug_section/option_show_paint_rects": { type: T.PANEL, children: string }, + "ui_debug_section/option_show_element_aabb": { type: T.PANEL, children: string }, + "ui_debug_section/option_emulate_touch_events": { type: T.PANEL, children: string }, + "ui_debug_section/end_of_debug_data_divider": { type: T.PANEL, children: 'section_divider' }, + "ui_debug_section/end_of_debug_data_divider/section_divider": { type: T.IMAGE, children: string }, + "ui_debug_section/end_of_debug_data_spacer": { 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 }, @@ -13958,6 +14004,7 @@ export type SettingsCommonType = { "option_custom_control": { type: T.PANEL, children: string }, "option_info_label": { type: T.PANEL, children: string }, "dynamic_dialog_screen": { type: T.SCREEN, children: string }, + "dynamic_dialog_fullscreen": { 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' }, @@ -13984,10 +14031,17 @@ export type SettingsCommonType = { "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 }, + "dialog_content_fullscreen": { type: T.PANEL, children: 'dialog_titles' | 'selector_area' | 'content_area' | 'section_divider' }, + "dialog_content_fullscreen/dialog_titles": { type: T.STACK_PANEL, children: string }, + "dialog_content_fullscreen/selector_area": { type: T.PANEL, children: string }, + "dialog_content_fullscreen/content_area": { type: T.PANEL, children: string }, + "dialog_content_fullscreen/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 }, + "selector_area_no_scroll": { type: T.PANEL, children: 'scrolling_panel' }, + "selector_area_no_scroll/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' }, @@ -13997,6 +14051,7 @@ export type SettingsCommonType = { "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 }, + "screen_base_fullscreen": { type: T.SCREEN, children: string }, } export type WorldSectionType = { @@ -15496,6 +15551,25 @@ export type CommonStoreType = { "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 }, + "badge_overlay_panel": { type: T.PANEL, children: 'top' | 'bottom' }, + "badge_overlay_panel/top": { type: T.STACK_PANEL, children: string }, + "badge_overlay_panel/bottom": { type: T.STACK_PANEL, children: string }, + "badge_overlay_stack": { type: T.STACK_PANEL, children: 'left_badge' | 'padding' | 'right_badge' }, + "badge_overlay_stack/left_badge": { type: T.STACK_PANEL, children: string }, + "badge_overlay_stack/padding": { type: T.PANEL, children: string }, + "badge_overlay_stack/right_badge": { type: T.STACK_PANEL, children: string }, + "content_card_tail_image": { type: T.IMAGE, children: string }, + "content_card_badge": { type: T.STACK_PANEL, children: 'leftTail' | 'background' | 'rightTail' }, + "content_card_badge/leftTail": { type: T.IMAGE, children: string }, + "content_card_badge/background": { type: T.IMAGE, children: 'outline' }, + "content_card_badge/background/outline": { type: T.IMAGE, children: 'badgeStackPanel' }, + "content_card_badge/background/outline/badgeStackPanel": { type: T.STACK_PANEL, children: 'paddingLeft' | 'badgeIcon' | 'paddingMiddle' | 'badgeText' | 'paddingRight' }, + "content_card_badge/background/outline/badgeStackPanel/paddingLeft": { type: T.PANEL, children: string }, + "content_card_badge/background/outline/badgeStackPanel/badgeIcon": { type: T.IMAGE, children: string }, + "content_card_badge/background/outline/badgeStackPanel/paddingMiddle": { type: T.PANEL, children: string }, + "content_card_badge/background/outline/badgeStackPanel/badgeText": { type: T.LABEL, children: string }, + "content_card_badge/background/outline/badgeStackPanel/paddingRight": { type: T.PANEL, children: string }, + "content_card_badge/rightTail": { 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 }, @@ -16072,9 +16146,10 @@ export type CommonStoreType = { "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": { type: T.IMAGE, children: 'key_art_frame' | 'csb_plus_expiration_banner' | 'badge_overlay_panel' }, "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/key_art/badge_overlay_panel": { 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' }, @@ -16128,7 +16203,6 @@ export type CommonStoreType = { "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 }, @@ -18415,6 +18489,9 @@ export type CommonType = { "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 }, + "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 }, "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 }, @@ -18473,6 +18550,8 @@ export type CommonType = { "normal_button": { type: T.IMAGE, children: string }, "normal_stroke_button": { type: T.IMAGE, children: string }, "section_heading_label": { type: T.LABEL, children: string }, + "center_fold": { type: T.INPUT_PANEL, children: 'center_bg' }, + "center_fold/center_bg": { type: T.IMAGE, 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' }, @@ -18555,6 +18634,18 @@ export type CommonType = { "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 }, + "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.PANEL, 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 }, + "furnace_recipe_book_layout_toggle": { type: T.PANEL, children: string }, + "furnace_survival_layout_toggle": { type: T.PANEL, children: string }, + "crafting_root_input_panel": { type: T.INPUT_PANEL, children: string }, + "toolbar_background_image": { type: T.IMAGE, 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 }, @@ -18784,6 +18875,11 @@ export type CommonType = { "legacy_pocket_close_button/pressed": { type: T.IMAGE, children: string }, "info_icon": { type: T.IMAGE, children: string }, "error_glyph": { type: T.IMAGE, children: string }, + "creative_icon": { type: T.IMAGE, children: string }, + "inventory_icon": { type: T.IMAGE, children: string }, + "recipe_book_icon": { type: T.IMAGE, children: string }, + "tab_icon_image": { type: T.IMAGE, children: string }, + "search_icon": { 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 }, diff --git a/src/types/vanilla/paths.ts b/src/types/vanilla/paths.ts index e99e4bf..6fc0b73 100644 --- a/src/types/vanilla/paths.ts +++ b/src/types/vanilla/paths.ts @@ -1090,10 +1090,20 @@ export const paths = { "keyboard_image_panel": "ui/chat_screen.json", "keyboard_image_panel/keyboard_image": "ui/chat_screen.json", "keyboard_image_panel/down_arrow_image": "ui/chat_screen.json", + "new_messages": "ui/chat_screen.json", + "new_messages/focus_border": "ui/chat_screen.json", + "new_messages/focus_border/stack": "ui/chat_screen.json", + "new_messages/focus_border/stack/arrow_icon": "ui/chat_screen.json", + "new_messages/focus_border/stack/separator": "ui/chat_screen.json", + "new_messages/focus_border/stack/tooltip_text": "ui/chat_screen.json", "small_button": "ui/chat_screen.json", "keyboard_button": "ui/chat_screen.json", "chat_settings_button": "ui/chat_screen.json", "send_button": "ui/chat_screen.json", + "new_messages_button": "ui/chat_screen.json", + "new_messages_button/default": "ui/chat_screen.json", + "new_messages_button/pressed": "ui/chat_screen.json", + "new_messages_button/hover": "ui/chat_screen.json", "messages_text": "ui/chat_screen.json", "messages_text/text": "ui/chat_screen.json", "message_tts_wrapper": "ui/chat_screen.json", @@ -1153,6 +1163,7 @@ export const paths = { "chat_screen_content/messages_panel": "ui/chat_screen.json", "chat_screen_content/chat_bottom_panel": "ui/chat_screen.json", "chat_screen_content/chat_top_panel": "ui/chat_screen.json", + "chat_screen_content/new_messages_button": "ui/chat_screen.json", "chat_screen_content/autocomplete_commands_panel": "ui/chat_screen.json", "chat_screen_content/host_main_panel": "ui/chat_screen.json", "chat_screen_content/popup_factory": "ui/chat_screen.json", @@ -5277,6 +5288,8 @@ export const paths = { "chat_grid_item/chat_background/chat_text": "ui/hud_screen.json", "chat_panel": "ui/hud_screen.json", "chat_panel/stack_panel": "ui/hud_screen.json", + "subtitle_panel": "ui/hud_screen.json", + "subtitle_panel/stack_panel": "ui/hud_screen.json", "item_durability": "ui/hud_screen.json", "item_storage": "ui/hud_screen.json", "container_item_lock_overlay": "ui/hud_screen.json", @@ -5463,6 +5476,9 @@ export const paths = { "root_panel/layout_customization_hint_saved/layout_customization_hint_saved": "ui/hud_screen.json", "root_panel/left_helpers": "ui/hud_screen.json", "root_panel/right_helpers": "ui/hud_screen.json", + "root_panel/subtitle_stack": "ui/hud_screen.json", + "root_panel/subtitle_stack/subtitle_padding": "ui/hud_screen.json", + "root_panel/subtitle_stack/subtitle_panel": "ui/hud_screen.json", "root_panel/emote_expediate_helpers": "ui/hud_screen.json", "root_panel/centered_gui_elements": "ui/hud_screen.json", "root_panel/centered_gui_elements_at_bottom_middle": "ui/hud_screen.json", @@ -5638,9 +5654,6 @@ export const paths = { "inventory_y_gamepad_helper": "ui/inventory_screen.json", "inventory_a_gamepad_helper": "ui/inventory_screen.json", "inventory_b_gamepad_helper": "ui/inventory_screen.json", - "gamepad_helper_bumpers": "ui/inventory_screen.json", - "gamepad_helper_bumpers/gamepad_helper_left_bumper": "ui/inventory_screen.json", - "gamepad_helper_bumpers/gamepad_helper_right_bumper": "ui/inventory_screen.json", "gamepad_helper_left_trigger": "ui/inventory_screen.json", "gamepad_helper_right_trigger": "ui/inventory_screen.json", "container_gamepad_helpers_second_row": "ui/inventory_screen.json", @@ -5651,26 +5664,16 @@ export const paths = { "container_gamepad_helpers_second_row/right_thumbstick_visibility": "ui/inventory_screen.json", "container_gamepad_helpers_second_row/right_thumbstick_visibility/gamepad_helper_thumbstick_right": "ui/inventory_screen.json", "container_gamepad_helpers_second_row/buffer_panel_right": "ui/inventory_screen.json", - "crafting_root_panel": "ui/inventory_screen.json", - "drop_item_panel": "ui/inventory_screen.json", "inventory_container_slot_button": "ui/inventory_screen.json", "creative_hotbar_container_slot_button": "ui/inventory_screen.json", "no_coalesce_container_slot_button": "ui/inventory_screen.json", "creative_no_coalesce_container_slot_button": "ui/inventory_screen.json", "output_no_coalesce_container_slot_button": "ui/inventory_screen.json", - "tab_image": "ui/inventory_screen.json", "item_renderer": "ui/inventory_screen.json", - "inventory_icon": "ui/inventory_screen.json", - "recipe_book_icon": "ui/inventory_screen.json", - "creative_icon": "ui/inventory_screen.json", - "icon_image": "ui/inventory_screen.json", - "tab_front": "ui/inventory_screen.json", - "tab_back": "ui/inventory_screen.json", "equipment_icon": "ui/inventory_screen.json", "construction_icon": "ui/inventory_screen.json", "nature_icon": "ui/inventory_screen.json", - "search_icon": "ui/inventory_screen.json", - "miscellaneous_icon": "ui/inventory_screen.json", + "items_icon": "ui/inventory_screen.json", "empty_tab_panel": "ui/inventory_screen.json", "empty_tab_panel/img": "ui/inventory_screen.json", "top_tab": "ui/inventory_screen.json", @@ -5696,6 +5699,7 @@ export const paths = { "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_creative": "ui/inventory_screen.json", "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_survival": "ui/inventory_screen.json", "tab_content_padding": "ui/inventory_screen.json", + "creative_label": "ui/inventory_screen.json", "tab_content": "ui/inventory_screen.json", "tab_content/tab_content_search_bar_panel": "ui/inventory_screen.json", "tab_content/tab_content_search_bar_panel/vertical_padding_1": "ui/inventory_screen.json", @@ -5819,26 +5823,12 @@ export const paths = { "inventory_container_item/item_lock_cell_image": "ui/inventory_screen.json", "inventory_container_item/bundle_slot_panel": "ui/inventory_screen.json", "grid_item_for_recipe_book": "ui/inventory_screen.json", + "scroll_grid": "ui/inventory_screen.json", "scroll_grid_panel": "ui/inventory_screen.json", "scroll_grid_panel/grid": "ui/inventory_screen.json", - "scroll_grid": "ui/inventory_screen.json", - "scroll_panel": "ui/inventory_screen.json", "recipe_book_scroll_panel": "ui/inventory_screen.json", - "creative_label": "ui/inventory_screen.json", + "scroll_panel": "ui/inventory_screen.json", "filter_toggle": "ui/inventory_screen.json", - "toolbar_background": "ui/inventory_screen.json", - "layout_toggle_content": "ui/inventory_screen.json", - "layout_toggle_content/image": "ui/inventory_screen.json", - "layout_toggle_content/icon": "ui/inventory_screen.json", - "layout_template_toggle": "ui/inventory_screen.json", - "layout_toggle": "ui/inventory_screen.json", - "creative_layout_toggle": "ui/inventory_screen.json", - "recipe_book_layout_toggle": "ui/inventory_screen.json", - "survival_layout_toggle": "ui/inventory_screen.json", - "help_button": "ui/inventory_screen.json", - "help_button/default": "ui/inventory_screen.json", - "help_button/hover": "ui/inventory_screen.json", - "help_button/pressed": "ui/inventory_screen.json", "player_inventory": "ui/inventory_screen.json", "player_inventory/common_panel": "ui/inventory_screen.json", "player_inventory/inventory_panel_top_half": "ui/inventory_screen.json", @@ -5853,8 +5843,6 @@ export const paths = { "creative_hotbar_panel": "ui/inventory_screen.json", "creative_hotbar_panel/creative_hotbar_background": "ui/inventory_screen.json", "creative_hotbar_panel/creative_hotbar_background/hotbar_grid": "ui/inventory_screen.json", - "center_fold": "ui/inventory_screen.json", - "center_fold/center_bg": "ui/inventory_screen.json", "toolbar_panel": "ui/inventory_screen.json", "toolbar_panel/toolbar_background": "ui/inventory_screen.json", "toolbar_panel/toolbar_background/toolbar_stack_panel": "ui/inventory_screen.json", @@ -5864,10 +5852,8 @@ export const paths = { "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel": "ui/inventory_screen.json", "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel/creative_layout_toggle": "ui/inventory_screen.json", "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": "ui/inventory_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival": "ui/inventory_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival/recipe_book_layout_toggle": "ui/inventory_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative": "ui/inventory_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative/recipe_book_layout_toggle": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel/recipe_book_layout_toggle": "ui/inventory_screen.json", "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": "ui/inventory_screen.json", "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel": "ui/inventory_screen.json", "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel/survival_layout_toggle": "ui/inventory_screen.json", @@ -5882,7 +5868,6 @@ export const paths = { "inventory_screen_base": "ui/inventory_screen.json", "crafting_screen": "ui/inventory_screen.json", "inventory_screen": "ui/inventory_screen.json", - "recipe_book_toggle_image": "ui/inventory_screen.json", "recipe_inventory_screen_content": "ui/inventory_screen.json", "recipe_inventory_screen_content/content_stack_panel": "ui/inventory_screen.json", "recipe_inventory_screen_content/content_stack_panel/recipe_book": "ui/inventory_screen.json", @@ -6227,6 +6212,7 @@ export const paths = { "frame_label": "ui/invite_screen.json", "friend_panel": "ui/invite_screen.json", "scrolling_content_stack": "ui/invite_screen.json", + "scrolling_content_stack/invite_party_panel": "ui/invite_screen.json", "scrolling_content_stack/message": "ui/invite_screen.json", "scrolling_content_stack/message/frame_label": "ui/invite_screen.json", "scrolling_content_stack/online_platform": "ui/invite_screen.json", @@ -6254,6 +6240,12 @@ export const paths = { "scrolling_content_stack/offline_xbox_live_friend_list_category": "ui/invite_screen.json", "scrolling_content_stack/no_xbox_live_friends": "ui/invite_screen.json", "scrolling_content_stack/no_xbox_live_friends/no_friends_tts_wrapper": "ui/invite_screen.json", + "invite_party_panel": "ui/invite_screen.json", + "invite_party_panel/frame_label": "ui/invite_screen.json", + "invite_party_panel/frame_description": "ui/invite_screen.json", + "invite_party_panel/our_toggle": "ui/invite_screen.json", + "invite_party_panel/border_outline": "ui/invite_screen.json", + "friend_button_test": "ui/invite_screen.json", "progress_bar_and_scrolling_content_panel": "ui/invite_screen.json", "progress_bar_and_scrolling_content_panel/progress_loading_bars": "ui/invite_screen.json", "progress_bar_and_scrolling_content_panel/invite_scrolling_area": "ui/invite_screen.json", @@ -6795,6 +6787,8 @@ export const paths = { }, "mob_effect": { "effect_background": "ui/mob_effect_screen.json", + "effect_background/default_background": "ui/mob_effect_screen.json", + "effect_background/ambient_background": "ui/mob_effect_screen.json", "main_background": "ui/mob_effect_screen.json", "button_background": "ui/mob_effect_screen.json", "effect_name": "ui/mob_effect_screen.json", @@ -7222,27 +7216,50 @@ export const paths = { "invite_players_button": "ui/pause_screen.json", "buy_button": "ui/pause_screen.json", "quit_button": "ui/pause_screen.json", + "icon_button_hover_text": "ui/pause_screen.json", + "icon_button_hover_text/tooltip_text": "ui/pause_screen.json", + "icon_button_tooltip_trigger": "ui/pause_screen.json", + "icon_button_tooltip_trigger/default": "ui/pause_screen.json", + "icon_button_tooltip_trigger/pressed": "ui/pause_screen.json", + "icon_button_tooltip_trigger/hover": "ui/pause_screen.json", "feedback_button": "ui/pause_screen.json", "feedback_icon_button": "ui/pause_screen.json", "feedback_icon_button/feedback_button": "ui/pause_screen.json", + "feedback_icon_button/tooltip_trigger": "ui/pause_screen.json", "take_screenshot_gamepad_button_content": "ui/pause_screen.json", "take_screenshot_gamepad_button_content/button_y": "ui/pause_screen.json", "take_screenshot_gamepad_button_content/take_screenshot_icon": "ui/pause_screen.json", "take_screenshot_gamepad_button": "ui/pause_screen.json", "achievements_button_small": "ui/pause_screen.json", + "achievements_button_small_with_tooltip": "ui/pause_screen.json", + "achievements_button_small_with_tooltip/button": "ui/pause_screen.json", + "achievements_button_small_with_tooltip/tooltip_trigger": "ui/pause_screen.json", "settings_button_small": "ui/pause_screen.json", + "settings_button_small_with_tooltip": "ui/pause_screen.json", + "settings_button_small_with_tooltip/button": "ui/pause_screen.json", + "settings_button_small_with_tooltip/tooltip_trigger": "ui/pause_screen.json", "take_screenshot_button": "ui/pause_screen.json", + "take_screenshot_button_with_tooltip": "ui/pause_screen.json", + "take_screenshot_button_with_tooltip/button": "ui/pause_screen.json", + "take_screenshot_button_with_tooltip/tooltip_trigger": "ui/pause_screen.json", + "take_screenshot_gamepad_button_with_tooltip": "ui/pause_screen.json", + "take_screenshot_gamepad_button_with_tooltip/button": "ui/pause_screen.json", + "take_screenshot_gamepad_button_with_tooltip/tooltip_trigger": "ui/pause_screen.json", "pause_screen": "ui/pause_screen.json", "pause_screen_content": "ui/pause_screen.json", "pause_screen_content/pause_screen_main_panels": "ui/pause_screen.json", "pause_screen_content/skin_panel": "ui/pause_screen.json", - "pause_screen_content/friendsdrawer_button_panel": "ui/pause_screen.json", + "pause_screen_content/top_right_panel": "ui/pause_screen.json", "pause_screen_content/gamepad_helpers": "ui/pause_screen.json", "pause_screen_content/keyboard_helpers": "ui/pause_screen.json", + "pause_screen_content/debug_drawer_button_panel": "ui/pause_screen.json", + "top_right_panel": "ui/pause_screen.json", + "top_right_panel/pause_panel": "ui/pause_screen.json", + "top_right_panel/friendsdrawer_button_panel": "ui/pause_screen.json", "friendsdrawer_button_panel": "ui/pause_screen.json", - "friendsdrawer_button_panel/friendsdrawer_container_stack_panel": "ui/pause_screen.json", - "friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friendsdrawer_button": "ui/pause_screen.json", - "friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friends_drawer_ftue_popup": "ui/pause_screen.json", + "friendsdrawer_button_panel/friendsdrawer_button": "ui/pause_screen.json", + "friendsdrawer_button_panel/friends_drawer_ftue_popup_wrapper": "ui/pause_screen.json", + "friendsdrawer_button_panel/friends_drawer_ftue_popup_wrapper/friends_drawer_ftue_popup": "ui/pause_screen.json", "pause_screen_main_panels": "ui/pause_screen.json", "pause_screen_main_panels/menu": "ui/pause_screen.json", "left_buttons_panel": "ui/pause_screen.json", @@ -7278,23 +7295,29 @@ export const paths = { "the_rest_panel/fill_3": "ui/pause_screen.json", "paused_text": "ui/pause_screen.json", "green_tag": "ui/pause_screen.json", - "paused_text_panel": "ui/pause_screen.json", - "paused_text_panel/pause": "ui/pause_screen.json", - "paused_text_panel/horizontal_stack": "ui/pause_screen.json", - "paused_text_panel/horizontal_stack/pause_icon": "ui/pause_screen.json", - "paused_text_panel/horizontal_stack/fill_1": "ui/pause_screen.json", - "paused_text_panel/horizontal_stack/pause": "ui/pause_screen.json", + "paused_text_panel_grey": "ui/pause_screen.json", + "paused_text_panel_grey/pause": "ui/pause_screen.json", + "paused_text_panel_green": "ui/pause_screen.json", + "paused_text_panel_green/horizontal_stack": "ui/pause_screen.json", + "paused_text_panel_green/horizontal_stack/pause_icon": "ui/pause_screen.json", + "paused_text_panel_green/horizontal_stack/fill_1": "ui/pause_screen.json", + "paused_text_panel_green/horizontal_stack/pause": "ui/pause_screen.json", "transparent_background": "ui/pause_screen.json", "non_transparent_background": "ui/pause_screen.json", "menu_the_rest_panel": "ui/pause_screen.json", "menu_the_rest_panel/menu_button_control": "ui/pause_screen.json", "menu_button_control": "ui/pause_screen.json", "menu_button_control/menu_background": "ui/pause_screen.json", - "pause_announcement_panel_type": "ui/pause_screen.json", - "pause_announcement_panel_type/horizontal_stack": "ui/pause_screen.json", - "pause_announcement_panel_type/horizontal_stack/fill_1": "ui/pause_screen.json", - "pause_announcement_panel_type/horizontal_stack/pause_text": "ui/pause_screen.json", - "pause_announcement_panel_type/horizontal_stack/fill_2": "ui/pause_screen.json", + "pause_announcement_panel_grey": "ui/pause_screen.json", + "pause_announcement_panel_grey/horizontal_stack": "ui/pause_screen.json", + "pause_announcement_panel_grey/horizontal_stack/fill_1": "ui/pause_screen.json", + "pause_announcement_panel_grey/horizontal_stack/pause_text": "ui/pause_screen.json", + "pause_announcement_panel_grey/horizontal_stack/fill_2": "ui/pause_screen.json", + "pause_announcement_panel_green": "ui/pause_screen.json", + "pause_announcement_panel_green/horizontal_stack": "ui/pause_screen.json", + "pause_announcement_panel_green/horizontal_stack/fill_1": "ui/pause_screen.json", + "pause_announcement_panel_green/horizontal_stack/pause_text": "ui/pause_screen.json", + "pause_announcement_panel_green/horizontal_stack/fill_2": "ui/pause_screen.json", "menu_background": "ui/pause_screen.json", "menu_background/button_panel": "ui/pause_screen.json", "menu_background/button_panel/title_image": "ui/pause_screen.json", @@ -7302,6 +7325,8 @@ export const paths = { "menu_background/button_panel/fill_1": "ui/pause_screen.json", "menu_background/button_panel/return_to_game_button": "ui/pause_screen.json", "menu_background/button_panel/return": "ui/pause_screen.json", + "menu_background/button_panel/settings_button": "ui/pause_screen.json", + "menu_background/button_panel/settings": "ui/pause_screen.json", "menu_background/button_panel/realms_stories_button_panel": "ui/pause_screen.json", "menu_background/button_panel/realms_stories": "ui/pause_screen.json", "menu_background/button_panel/buy_button": "ui/pause_screen.json", @@ -7396,6 +7421,12 @@ export const paths = { "gamepad_helpers/gamepad_helper_y": "ui/pause_screen.json", "keyboard_helpers": "ui/pause_screen.json", "keyboard_helpers/keyboard_helper_keys": "ui/pause_screen.json", + "debug_drawer_button_content": "ui/pause_screen.json", + "debug_drawer_button_content/button_label_panel": "ui/pause_screen.json", + "debug_drawer_button_content/button_label_panel/button_label_text_left": "ui/pause_screen.json", + "debug_drawer_button_panel": "ui/pause_screen.json", + "debug_drawer_button_panel/debug_drawer_button_input": "ui/pause_screen.json", + "debug_drawer_button_panel/debug_drawer_button_input/debug_drawer_button": "ui/pause_screen.json", }, "pdp": { "download_progress": "ui/pdp_screen.json", @@ -7596,7 +7627,6 @@ export const paths = { "pdp_cycle_offer_row_content/pad_3": "ui/pdp_screen.json", "pdp_cycle_offer_row_content/divider_3": "ui/pdp_screen.json", "pdp_cycle_offer_row_section": "ui/pdp_screen.json", - "recently_viewed_viewed_factory_object": "ui/pdp_screen.json", "scrolling_content_stack": "ui/pdp_screen.json", "warning_image": "ui/pdp_screen.json", "scaling_rating": "ui/pdp_screen.json", @@ -7724,15 +7754,13 @@ export const paths = { "summary_content_left_side/full_content/top/info": "ui/pdp_screen.json", "summary_content_left_side/full_content/top/info/summary_title_and_author_panel": "ui/pdp_screen.json", "summary_content_left_side/full_content/top/info/pad_fill": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/info/glyph_section": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/info/glyph_section/glyph_section_panel": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/info/ratings_summary": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel/rating": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/summary_rating_button": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/info/vibrant_visuals_badge_and_hover": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/info_buttons_factory": "ui/pdp_screen.json", "summary_content_left_side/full_content/bottom": "ui/pdp_screen.json", + "info_buttons_factory": "ui/pdp_screen.json", + "ratings_summary": "ui/pdp_screen.json", + "ratings_summary/ratings_display": "ui/pdp_screen.json", + "ratings_summary/ratings_display/rating": "ui/pdp_screen.json", + "ratings_summary/ratings_display/summary_rating_button": "ui/pdp_screen.json", "offer_title_label": "ui/pdp_screen.json", "title_and_author_panel": "ui/pdp_screen.json", "title_and_author_panel/title_panel": "ui/pdp_screen.json", @@ -7775,21 +7803,12 @@ export const paths = { "mashup_glyph_tooltip_content/mashup_text_row/info_icon": "ui/pdp_screen.json", "mashup_glyph_tooltip_content/mashup_text_row/mashup_line_one": "ui/pdp_screen.json", "mashup_glyph_tooltip_content/mashup_line_two": "ui/pdp_screen.json", - "mashup_glyph_tooltip_content/offset_panel": "ui/pdp_screen.json", - "mashup_glyph_tooltip_content/offset_panel/basic_vertical_glyph_section_panel": "ui/pdp_screen.json", + "mashup_glyph_tooltip_content/basic_vertical_glyphs": "ui/pdp_screen.json", "glyph_section_mashup": "ui/pdp_screen.json", "glyph_section_skin": "ui/pdp_screen.json", "glyph_section_resource_pack": "ui/pdp_screen.json", "glyph_section_world": "ui/pdp_screen.json", "glyph_section_addon": "ui/pdp_screen.json", - "basic_vertical_glyph_section_panel": "ui/pdp_screen.json", - "basic_vertical_glyph_section_panel/glyph_section_skin": "ui/pdp_screen.json", - "basic_vertical_glyph_section_panel/glyph_section_world": "ui/pdp_screen.json", - "basic_vertical_glyph_section_panel/glyph_section_resource_pack": "ui/pdp_screen.json", - "basic_vertical_glyph_section_panel/glyph_section_addon": "ui/pdp_screen.json", - "vertical_glyph_section_panel": "ui/pdp_screen.json", - "vertical_glyph_section_panel/glyph_section_mashup": "ui/pdp_screen.json", - "vertical_glyph_section_panel/basic_vertical_glyph_section_panel": "ui/pdp_screen.json", "summary_text_panel": "ui/pdp_screen.json", "summary_text_panel/top_interact_button_stack": "ui/pdp_screen.json", "summary_text_panel/top_interact_button_stack/top_interact": "ui/pdp_screen.json", @@ -9703,6 +9722,11 @@ export const paths = { "modal_button_panel_with_retry/retry_button": "ui/progress_screen.json", "modal_ok_button_panel": "ui/progress_screen.json", "modal_ok_button_panel/ok_button": "ui/progress_screen.json", + "modal_ok_button_panel_with_retry": "ui/progress_screen.json", + "modal_ok_button_panel_with_retry/left_ok_button": "ui/progress_screen.json", + "modal_ok_button_panel_with_retry/center_cancel_button": "ui/progress_screen.json", + "modal_ok_button_panel_with_retry/center_ok_button": "ui/progress_screen.json", + "modal_ok_button_panel_with_retry/right_retry_button": "ui/progress_screen.json", "gamepad_helpers": "ui/progress_screen.json", "gamepad_helpers/gamepad_helper_a": "ui/progress_screen.json", "world_image": "ui/progress_screen.json", @@ -9772,6 +9796,7 @@ export const paths = { "fetching_edu_cloud_worlds": "ui/progress_screen.json", "edu_cloud_download_progress_screen": "ui/progress_screen.json", "fetching_edu_servers": "ui/progress_screen.json", + "joining_edu_server": "ui/progress_screen.json", "world_convert_modal_progress_screen": "ui/progress_screen.json", "progress_screen": "ui/progress_screen.json", "popup_dialog_factory": "ui/progress_screen.json", @@ -9785,16 +9810,21 @@ export const paths = { "modal_screen_content/modal_progress_panel": "ui/progress_screen.json", "world_modal_progress_panel": "ui/progress_screen.json", "world_modal_progress_panel/common_panel": "ui/progress_screen.json", - "world_modal_progress_panel/base_content": "ui/progress_screen.json", - "world_modal_progress_panel/base_content/progress_title_text": "ui/progress_screen.json", - "world_modal_progress_panel/base_content/progress_bar_text": "ui/progress_screen.json", - "world_modal_progress_panel/inside_content": "ui/progress_screen.json", - "world_modal_progress_panel/inside_content/loading_bar_panel": "ui/progress_screen.json", - "world_modal_progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": "ui/progress_screen.json", - "world_modal_progress_panel/inside_content/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json", - "world_modal_progress_panel/inside_content/vertical_padding": "ui/progress_screen.json", - "world_modal_progress_panel/inside_content/modal_button_panel": "ui/progress_screen.json", - "world_modal_progress_panel/inside_content/vertical_padding_2": "ui/progress_screen.json", + "world_modal_progress_panel/content_wrapper": "ui/progress_screen.json", + "world_modal_progress_panel/content_wrapper/base_content": "ui/progress_screen.json", + "world_modal_progress_panel/content_wrapper/base_content/vertical_title_padding": "ui/progress_screen.json", + "world_modal_progress_panel/content_wrapper/base_content/title_text_panel": "ui/progress_screen.json", + "world_modal_progress_panel/content_wrapper/base_content/title_text_panel/progress_title_text": "ui/progress_screen.json", + "world_modal_progress_panel/content_wrapper/base_content/vertical_text_padding": "ui/progress_screen.json", + "world_modal_progress_panel/content_wrapper/base_content/progress_text_panel": "ui/progress_screen.json", + "world_modal_progress_panel/content_wrapper/base_content/progress_text_panel/progress_bar_text": "ui/progress_screen.json", + "world_modal_progress_panel/content_wrapper/inside_content": "ui/progress_screen.json", + "world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel": "ui/progress_screen.json", + "world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel/fancy_progress_loading_bars": "ui/progress_screen.json", + "world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json", + "world_modal_progress_panel/content_wrapper/inside_content/vertical_padding": "ui/progress_screen.json", + "world_modal_progress_panel/content_wrapper/inside_content/modal_button_panel": "ui/progress_screen.json", + "world_modal_progress_panel/content_wrapper/inside_content/vertical_padding_2": "ui/progress_screen.json", "cloud_upload_panel": "ui/progress_screen.json", "cloud_upload_panel/common_panel": "ui/progress_screen.json", "cloud_upload_panel/base_content": "ui/progress_screen.json", @@ -9850,6 +9880,15 @@ export const paths = { "cloud_download_panel/base_content/edu_cloud_download_image": "ui/progress_screen.json", "cloud_download_panel/loading_bar_panel": "ui/progress_screen.json", "cloud_download_panel/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json", + "server_fetch_timeout_panel": "ui/progress_screen.json", + "server_fetch_timeout_panel/common_panel": "ui/progress_screen.json", + "server_fetch_timeout_panel/base_content": "ui/progress_screen.json", + "server_fetch_timeout_panel/base_content/progress_title_text": "ui/progress_screen.json", + "server_fetch_timeout_panel/base_content/progress_text": "ui/progress_screen.json", + "server_fetch_timeout_panel/base_content/edu_server_fetch_image": "ui/progress_screen.json", + "server_fetch_timeout_panel/base_content/loading_bar_panel": "ui/progress_screen.json", + "server_fetch_timeout_panel/base_content/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json", + "server_fetch_timeout_panel/base_content/timeout_button": "ui/progress_screen.json", "world_convert_modal_progress_screen_content": "ui/progress_screen.json", "world_convert_modal_progress_screen_content/mobile_data_icon": "ui/progress_screen.json", "world_convert_modal_progress_screen_content/title_panel_content": "ui/progress_screen.json", @@ -9881,7 +9920,12 @@ export const paths = { "edu_cloud_fetch_screen_content/popup_dialog_factory": "ui/progress_screen.json", "edu_server_fetch_screen_content": "ui/progress_screen.json", "edu_server_fetch_screen_content/server_fetch_panel": "ui/progress_screen.json", + "edu_server_fetch_screen_content/server_fetch_timeout_panel": "ui/progress_screen.json", "edu_server_fetch_screen_content/popup_dialog_factory": "ui/progress_screen.json", + "joining_edu_server_progress_screen_content": "ui/progress_screen.json", + "joining_edu_server_progress_screen_content/title_panel_content": "ui/progress_screen.json", + "joining_edu_server_progress_screen_content/world_modal_progress_panel": "ui/progress_screen.json", + "joining_edu_server_progress_screen_content/popup_dialog_factory": "ui/progress_screen.json", "cloud_download_screen_content": "ui/progress_screen.json", "cloud_download_screen_content/background": "ui/progress_screen.json", "cloud_download_screen_content/cloud_download_panel": "ui/progress_screen.json", @@ -10353,10 +10397,10 @@ export const paths = { "free_up_space_popup_scrolling_panel": "ui/realms_settings_screen.json", "free_up_space_text_description": "ui/realms_settings_screen.json", "free_up_space_popup_content_stack_panel": "ui/realms_settings_screen.json", - "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel": "ui/realms_settings_screen.json", - "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/free_up_space_storage_bar_panel": "ui/realms_settings_screen.json", - "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/focus_border": "ui/realms_settings_screen.json", - "free_up_space_popup_content_stack_panel/padding_1": "ui/realms_settings_screen.json", + "free_up_space_popup_content_stack_panel/free_up_space_description_label": "ui/realms_settings_screen.json", + "free_up_space_popup_content_stack_panel/padding1": "ui/realms_settings_screen.json", + "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_panel": "ui/realms_settings_screen.json", + "free_up_space_popup_content_stack_panel/padding2": "ui/realms_settings_screen.json", "free_up_space_popup_content_stack_panel/free_up_space_manual_save_list_stack_panel": "ui/realms_settings_screen.json", "popup_dialog__free_up_space": "ui/realms_settings_screen.json", "popup_dialog__free_up_space/free_up_space_popup_background": "ui/realms_settings_screen.json", @@ -10573,6 +10617,7 @@ export const paths = { "realms_settings_screen_base_no_selector_area": "ui/realms_settings_screen.json", "screen_realm_hub_manage_members": "ui/realms_settings_screen.json", "screen_realm_hub_invite_links": "ui/realms_settings_screen.json", + "screen_realm_hub_saves": "ui/realms_settings_screen.json", }, "realms_allowlist": { "spacing_gap": "ui/realms_allowlist.json", @@ -11949,13 +11994,18 @@ export const paths = { }, "settings": { "settings_screen_base": "ui/settings_screen.json", + "settings_screen_base_fullscreen": "ui/settings_screen.json", "screen_world_create": "ui/settings_screen.json", "screen_template_create": "ui/settings_screen.json", "screen_world_edit": "ui/settings_screen.json", "screen_controls_and_settings": "ui/settings_screen.json", + "screen_controls_and_settings_fullscreen": "ui/settings_screen.json", "screen_world_controls_and_settings": "ui/settings_screen.json", + "screen_world_controls_and_settings_fullscreen": "ui/settings_screen.json", "screen_realm_controls_and_settings": "ui/settings_screen.json", + "screen_realm_controls_and_settings_fullscreen": "ui/settings_screen.json", "screen_realm_member_controls_and_settings": "ui/settings_screen.json", + "screen_realm_member_controls_and_settings_fullscreen": "ui/settings_screen.json", "screen_realm_settings": "ui/settings_screen.json", "screen_world_slot_edit": "ui/settings_screen.json", "screen_realm_manage": "ui/settings_screen.json", @@ -12046,29 +12096,22 @@ export const paths = { "section_content_panels/section_content_panels": "ui/settings_screen.json", "section_content_panels/general_and_controls_sections": "ui/settings_screen.json", "section_content_panels/general_and_controls_sections/accessibility_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/accessibility_section_ore_ui": "ui/settings_screen.json", "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section_ore_ui": "ui/settings_screen.json", "section_content_panels/general_and_controls_sections/controller_section": "ui/settings_screen.json", "section_content_panels/general_and_controls_sections/touch_section": "ui/settings_screen.json", "section_content_panels/general_and_controls_sections/party_section": "ui/settings_screen.json", "section_content_panels/general_and_controls_sections/general_tab_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/general_tab_section_ore_ui": "ui/settings_screen.json", "section_content_panels/general_and_controls_sections/account_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/account_section_ore_ui": "ui/settings_screen.json", "section_content_panels/general_and_controls_sections/global_texture_pack_section": "ui/settings_screen.json", "section_content_panels/general_and_controls_sections/storage_management_header": "ui/settings_screen.json", "section_content_panels/general_and_controls_sections/storage_management_section": "ui/settings_screen.json", "section_content_panels/general_and_controls_sections/edu_cloud_storage_section": "ui/settings_screen.json", "section_content_panels/general_and_controls_sections/creator_section": "ui/settings_screen.json", "section_content_panels/general_and_controls_sections/video_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/video_section_ore_ui": "ui/settings_screen.json", "section_content_panels/general_and_controls_sections/view_subscriptions_prerelease_section": "ui/settings_screen.json", "section_content_panels/general_and_controls_sections/view_subscriptions_section": "ui/settings_screen.json", "section_content_panels/general_and_controls_sections/sound_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/sound_section_ore_ui": "ui/settings_screen.json", "section_content_panels/general_and_controls_sections/language_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/language_section_ore_ui": "ui/settings_screen.json", "section_content_panels/general_and_controls_sections/preview_section": "ui/settings_screen.json", "section_content_panels/general_and_controls_sections/debug_section": "ui/settings_screen.json", "section_content_panels/general_and_controls_sections/ui_debug_section": "ui/settings_screen.json", @@ -12100,6 +12143,11 @@ export const paths = { "reset_binding_button": "ui/settings_sections/controls_section.json", "keymapping_item_parent": "ui/settings_sections/controls_section.json", "keymapping_item_parent/keymapping_row": "ui/settings_sections/controls_section.json", + "keymapping_item_frame": "ui/settings_sections/controls_section.json", + "keymapping_item_frame/keymap": "ui/settings_sections/controls_section.json", + "keymapping_item_frame/command_macro_command": "ui/settings_sections/controls_section.json", + "command_macro_command_textbox": "ui/settings_sections/controls_section.json", + "command_macro_command_textbox/text_box": "ui/settings_sections/controls_section.json", "keymapping_item": "ui/settings_sections/controls_section.json", "keymapping_item/option_info_label_control": "ui/settings_sections/controls_section.json", "keymapping_item/option_info_label_control/keymapping_label_control": "ui/settings_sections/controls_section.json", @@ -12113,12 +12161,18 @@ export const paths = { "gamepad_mapping_item/keymapping_button_0": "ui/settings_sections/controls_section.json", "gamepad_mapping_item/keymapping_button_1": "ui/settings_sections/controls_section.json", "gamepad_mapping_grid": "ui/settings_sections/controls_section.json", + "keyboard_command_macros_grid": "ui/settings_sections/controls_section.json", + "keyboard_command_macros_grid/divider_before": "ui/settings_sections/controls_section.json", + "keyboard_command_macros_grid/divider_before/section_divider": "ui/settings_sections/controls_section.json", + "keyboard_command_macros_grid/divider_before_padding": "ui/settings_sections/controls_section.json", + "keyboard_command_macros_grid/command_macro_title": "ui/settings_sections/controls_section.json", + "keyboard_command_macros_grid/command_macro_title_desc": "ui/settings_sections/controls_section.json", + "keyboard_command_macros_grid/command_macro_title_padding": "ui/settings_sections/controls_section.json", + "keyboard_command_macros_grid/command_macro_keymapping_grid": "ui/settings_sections/controls_section.json", + "keyboard_command_macros_grid/divider_after": "ui/settings_sections/controls_section.json", + "keyboard_command_macros_grid/divider_after/section_divider": "ui/settings_sections/controls_section.json", + "keyboard_command_macros_grid/divider_after_padding": "ui/settings_sections/controls_section.json", "keyboard_and_mouse_button": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section_ore_ui": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section_ore_ui/spacer_0": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section_ore_ui/generic_label": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section_ore_ui/spacer_1": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section_ore_ui/gamepad_helper_label": "ui/settings_sections/controls_section.json", "keyboard_and_mouse_section": "ui/settings_sections/controls_section.json", "keyboard_and_mouse_section/option_slider_0": "ui/settings_sections/controls_section.json", "keyboard_and_mouse_section/option_slider_damen": "ui/settings_sections/controls_section.json", @@ -12134,6 +12188,7 @@ export const paths = { "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section": "ui/settings_sections/controls_section.json", "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/option_group_label": "ui/settings_sections/controls_section.json", "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/control_alt_chord_keymapping_grid": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/keyboard_section/command_macros": "ui/settings_sections/controls_section.json", "keyboard_and_mouse_section/full_keyboard_section": "ui/settings_sections/controls_section.json", "keyboard_and_mouse_section/full_keyboard_section/option_slider_smooth_rotation_speed": "ui/settings_sections/controls_section.json", "keyboard_and_mouse_section/full_keyboard_section/full_keyboard_label": "ui/settings_sections/controls_section.json", @@ -12141,6 +12196,7 @@ export const paths = { "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section": "ui/settings_sections/controls_section.json", "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/option_group_label": "ui/settings_sections/controls_section.json", "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/control_alt_chord_keymapping_grid": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/full_keyboard_section/command_macros": "ui/settings_sections/controls_section.json", "keyboard_and_mouse_section/reset_button": "ui/settings_sections/controls_section.json", "controller_button": "ui/settings_sections/controls_section.json", "controller_section": "ui/settings_sections/controls_section.json", @@ -12216,11 +12272,6 @@ export const paths = { }, "general_section": { "general_button": "ui/settings_sections/general_section.json", - "general_tab_section_ore_ui": "ui/settings_sections/general_section.json", - "general_tab_section_ore_ui/spacer_0": "ui/settings_sections/general_section.json", - "general_tab_section_ore_ui/generic_label": "ui/settings_sections/general_section.json", - "general_tab_section_ore_ui/spacer_1": "ui/settings_sections/general_section.json", - "general_tab_section_ore_ui/gamepad_helper_label": "ui/settings_sections/general_section.json", "general_tab_section": "ui/settings_sections/general_section.json", "general_tab_section/option_toggle_fail_realms_purchase_fulfillment": "ui/settings_sections/general_section.json", "general_tab_section/network_label_header": "ui/settings_sections/general_section.json", @@ -12247,6 +12298,7 @@ export const paths = { "general_tab_section/pause_label_header": "ui/settings_sections/general_section.json", "general_tab_section/paddingPauseFeature": "ui/settings_sections/general_section.json", "general_tab_section/pause_toggle": "ui/settings_sections/general_section.json", + "general_tab_section/pause_menu_on_focus_lost": "ui/settings_sections/general_section.json", "general_tab_section/paddingLinkEduSupport": "ui/settings_sections/general_section.json", "general_tab_section/link_button": "ui/settings_sections/general_section.json", "general_tab_section/paddingDividerSustainability": "ui/settings_sections/general_section.json", @@ -12285,11 +12337,6 @@ export const paths = { "general_tab_section/build_info_label_panel/build_info_label": "ui/settings_sections/general_section.json", "general_tab_section/paddingSectionDividerBuildInfo": "ui/settings_sections/general_section.json", "general_tab_section/treatment_ids_label": "ui/settings_sections/general_section.json", - "account_section_ore_ui": "ui/settings_sections/general_section.json", - "account_section_ore_ui/spacer_0": "ui/settings_sections/general_section.json", - "account_section_ore_ui/generic_label": "ui/settings_sections/general_section.json", - "account_section_ore_ui/spacer_1": "ui/settings_sections/general_section.json", - "account_section_ore_ui/gamepad_helper_label": "ui/settings_sections/general_section.json", "account_button": "ui/settings_sections/general_section.json", "view_account_errors_button_content": "ui/settings_sections/general_section.json", "switch_accounts_button_content": "ui/settings_sections/general_section.json", @@ -12420,13 +12467,10 @@ export const paths = { "creator_toggles_panel": "ui/settings_sections/general_section.json", "creator_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json", "creator_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json", - "creator_toggles_panel/copy_coordinate_section_stack_panel": "ui/settings_sections/general_section.json", - "creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label": "ui/settings_sections/general_section.json", - "creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label_spacer": "ui/settings_sections/general_section.json", - "creator_toggles_panel/copy_coordinate_section_stack_panel/option_content_file_log": "ui/settings_sections/general_section.json", - "creator_toggles_panel/creator_setting_button": "ui/settings_sections/general_section.json", - "creator_toggles_panel/creator_setting_button/go_to_keybinds": "ui/settings_sections/general_section.json", - "creator_toggles_panel/creator_setting_button/creator_settings_section_label_spacer": "ui/settings_sections/general_section.json", + "creator_toggles_panel/primary_panel": "ui/settings_sections/general_section.json", + "creator_toggles_panel/primary_panel/content_log_section_label": "ui/settings_sections/general_section.json", + "creator_toggles_panel/primary_panel/content_log_section_label_spacer": "ui/settings_sections/general_section.json", + "creator_toggles_panel/primary_panel/clipboard_setting": "ui/settings_sections/general_section.json", "debugger_toggles_panel": "ui/settings_sections/general_section.json", "debugger_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json", "debugger_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json", @@ -12443,6 +12487,13 @@ export const paths = { "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/spacer": "ui/settings_sections/general_section.json", "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/port_input": "ui/settings_sections/general_section.json", "debugger_toggles_panel/primary_panel/all_options_panel/auto_attach_timeout_slider": "ui/settings_sections/general_section.json", + "editor_toggles_panel": "ui/settings_sections/general_section.json", + "editor_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json", + "editor_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json", + "editor_toggles_panel/primary_panel": "ui/settings_sections/general_section.json", + "editor_toggles_panel/primary_panel/content_log_section_label": "ui/settings_sections/general_section.json", + "editor_toggles_panel/primary_panel/content_log_section_label_spacer": "ui/settings_sections/general_section.json", + "editor_toggles_panel/primary_panel/clipboard_setting": "ui/settings_sections/general_section.json", "diagnostics_toggles_panel": "ui/settings_sections/general_section.json", "diagnostics_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json", "diagnostics_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json", @@ -12495,15 +12546,11 @@ export const paths = { "creator_section/debugger_toggles_panel": "ui/settings_sections/general_section.json", "creator_section/diagnostics_toggle_panel": "ui/settings_sections/general_section.json", "creator_section/watchdog_toggles_panel": "ui/settings_sections/general_section.json", + "creator_section/editor_toggles_panel": "ui/settings_sections/general_section.json", "creator_section/device_info_toggles_panel": "ui/settings_sections/general_section.json", "creator_section/content_log_panel": "ui/settings_sections/general_section.json", "video_button": "ui/settings_sections/general_section.json", "advanced_video_options_toggle": "ui/settings_sections/general_section.json", - "video_section_ore_ui": "ui/settings_sections/general_section.json", - "video_section_ore_ui/spacer_0": "ui/settings_sections/general_section.json", - "video_section_ore_ui/generic_label": "ui/settings_sections/general_section.json", - "video_section_ore_ui/spacer_1": "ui/settings_sections/general_section.json", - "video_section_ore_ui/gamepad_helper_label": "ui/settings_sections/general_section.json", "video_menu_slider_step_progress": "ui/settings_sections/general_section.json", "video_menu_slider_progress": "ui/settings_sections/general_section.json", "video_menu_slider_bar_default": "ui/settings_sections/general_section.json", @@ -12616,6 +12663,8 @@ export const paths = { "video_section/spacer_35": "ui/settings_sections/general_section.json", "video_section/texel_anti_aliasing_toggle": "ui/settings_sections/general_section.json", "video_section/spacer_36": "ui/settings_sections/general_section.json", + "video_section/texture_streaming_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_37": "ui/settings_sections/general_section.json", "video_section/reset_button": "ui/settings_sections/general_section.json", "max_framerate_slider": "ui/settings_sections/general_section.json", "max_framerate_slider/option_generic_core": "ui/settings_sections/general_section.json", @@ -12735,6 +12784,7 @@ export const paths = { "chat_message_duration_label": "ui/settings_sections/general_section.json", "chat_message_duration_info_label": "ui/settings_sections/general_section.json", "accessibility_section": "ui/settings_sections/general_section.json", + "accessibility_section/option_toggle_subtitles": "ui/settings_sections/general_section.json", "accessibility_section/option_toggle0": "ui/settings_sections/general_section.json", "accessibility_section/option_toggle1": "ui/settings_sections/general_section.json", "accessibility_section/option_toggle2": "ui/settings_sections/general_section.json", @@ -12766,18 +12816,7 @@ export const paths = { "accessibility_section/gui_accessibility_scaling_toggle": "ui/settings_sections/general_section.json", "accessibility_section/gui_accessibility_scaling_toggle/option_generic_core": "ui/settings_sections/general_section.json", "accessibility_section/reset_button": "ui/settings_sections/general_section.json", - "accessibility_section_ore_ui": "ui/settings_sections/general_section.json", - "accessibility_section_ore_ui/spacer_0": "ui/settings_sections/general_section.json", - "accessibility_section_ore_ui/generic_label": "ui/settings_sections/general_section.json", - "accessibility_section_ore_ui/spacer_1": "ui/settings_sections/general_section.json", - "accessibility_section_ore_ui/gamepad_helper_label": "ui/settings_sections/general_section.json", - "accessibility_section_ore_ui/accessibility_button": "ui/settings_sections/general_section.json", "sound_button": "ui/settings_sections/general_section.json", - "sound_section_ore_ui": "ui/settings_sections/general_section.json", - "sound_section_ore_ui/spacer_0": "ui/settings_sections/general_section.json", - "sound_section_ore_ui/generic_label": "ui/settings_sections/general_section.json", - "sound_section_ore_ui/spacer_1": "ui/settings_sections/general_section.json", - "sound_section_ore_ui/gamepad_helper_label": "ui/settings_sections/general_section.json", "sound_section": "ui/settings_sections/general_section.json", "sound_section/paddingMainVolume": "ui/settings_sections/general_section.json", "sound_section/option_slider_0": "ui/settings_sections/general_section.json", @@ -12811,11 +12850,6 @@ export const paths = { "language_grid_item": "ui/settings_sections/general_section.json", "language_section": "ui/settings_sections/general_section.json", "language_section/language_list_grid": "ui/settings_sections/general_section.json", - "language_section_ore_ui": "ui/settings_sections/general_section.json", - "language_section_ore_ui/spacer_0": "ui/settings_sections/general_section.json", - "language_section_ore_ui/generic_label": "ui/settings_sections/general_section.json", - "language_section_ore_ui/spacer_1": "ui/settings_sections/general_section.json", - "language_section_ore_ui/gamepad_helper_label": "ui/settings_sections/general_section.json", "preview_button": "ui/settings_sections/general_section.json", "preview_section": "ui/settings_sections/general_section.json", "preview_section/spacer_0": "ui/settings_sections/general_section.json", @@ -12889,13 +12923,9 @@ export const paths = { "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/clear_treatments": "ui/settings_sections/general_section.json", "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel": "ui/settings_sections/general_section.json", "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel/treatments_label": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1/progress_loading_spinner_1": "ui/settings_sections/general_section.json", "debug_override_treatments_panel/override_treatments_panel_background/treatment_grid": "ui/settings_sections/general_section.json", "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel": "ui/settings_sections/general_section.json", "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel/treatments_label": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2/progress_loading_spinner_2": "ui/settings_sections/general_section.json", "debug_override_treatments_panel/override_treatments_panel_background/unused_treatment_grid": "ui/settings_sections/general_section.json", "debug_override_treatments_panel/override_treatments_panel_background/spacer_1": "ui/settings_sections/general_section.json", "debug_override_configurations_panel": "ui/settings_sections/general_section.json", @@ -13040,6 +13070,7 @@ export const paths = { "debug_section/option_toggle_remote_imgui": "ui/settings_sections/general_section.json", "debug_section/option_dropdown_0": "ui/settings_sections/general_section.json", "debug_section/option_toggle_extra_debug_hud_info": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_show_test_running_text": "ui/settings_sections/general_section.json", "debug_section/option_toggle_0_1": "ui/settings_sections/general_section.json", "debug_section/option_toggle_0_2": "ui/settings_sections/general_section.json", "debug_section/option_slider_0": "ui/settings_sections/general_section.json", @@ -13093,8 +13124,11 @@ export const paths = { "debug_section/option_text_edit_1": "ui/settings_sections/general_section.json", "debug_section/option_text_edit_2": "ui/settings_sections/general_section.json", "debug_section/option_text_edit_3": "ui/settings_sections/general_section.json", + "debug_section/reset_authentication_option": "ui/settings_sections/general_section.json", "debug_section/reset_report_timer_option": "ui/settings_sections/general_section.json", "debug_section/reset_online_safety_option": "ui/settings_sections/general_section.json", + "debug_section/reset_show_hardcore_warning_option": "ui/settings_sections/general_section.json", + "debug_section/reset_low_ping_warning_option": "ui/settings_sections/general_section.json", "debug_section/reset_ip_safety_option": "ui/settings_sections/general_section.json", "debug_section/padding_graphics_options": "ui/settings_sections/general_section.json", "debug_section/option_shadersdk_service_ip": "ui/settings_sections/general_section.json", @@ -13251,6 +13285,18 @@ export const paths = { "ui_debug_section/ui_feature_toggles_spacer": "ui/settings_sections/general_section.json", "ui_debug_section/option_show_touch_control_selection_screen": "ui/settings_sections/general_section.json", "ui_debug_section/option_reset_on_start": "ui/settings_sections/general_section.json", + "ui_debug_section/end_of_other_options_divider": "ui/settings_sections/general_section.json", + "ui_debug_section/end_of_other_options_divider/section_divider": "ui/settings_sections/general_section.json", + "ui_debug_section/end_of_other_options_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/debug_data_label": "ui/settings_sections/general_section.json", + "ui_debug_section/debug_data_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/option_continuous_repaint": "ui/settings_sections/general_section.json", + "ui_debug_section/option_show_paint_rects": "ui/settings_sections/general_section.json", + "ui_debug_section/option_show_element_aabb": "ui/settings_sections/general_section.json", + "ui_debug_section/option_emulate_touch_events": "ui/settings_sections/general_section.json", + "ui_debug_section/end_of_debug_data_divider": "ui/settings_sections/general_section.json", + "ui_debug_section/end_of_debug_data_divider/section_divider": "ui/settings_sections/general_section.json", + "ui_debug_section/end_of_debug_data_spacer": "ui/settings_sections/general_section.json", "ui_debug_section/option_slider_drag_dwell": "ui/settings_sections/general_section.json", "ui_debug_section/option_slider_stack_splitting": "ui/settings_sections/general_section.json", "ui_debug_section/reset_render_distance_warning_modal_label": "ui/settings_sections/general_section.json", @@ -13590,6 +13636,7 @@ export const paths = { "option_custom_control": "ui/settings_sections/settings_common.json", "option_info_label": "ui/settings_sections/settings_common.json", "dynamic_dialog_screen": "ui/settings_sections/settings_common.json", + "dynamic_dialog_fullscreen": "ui/settings_sections/settings_common.json", "settings_content": "ui/settings_sections/settings_common.json", "settings_content/background": "ui/settings_sections/settings_common.json", "settings_content/stack_panel": "ui/settings_sections/settings_common.json", @@ -13616,10 +13663,17 @@ export const paths = { "dialog_content/selector_area": "ui/settings_sections/settings_common.json", "dialog_content/content_area": "ui/settings_sections/settings_common.json", "dialog_content/section_divider": "ui/settings_sections/settings_common.json", + "dialog_content_fullscreen": "ui/settings_sections/settings_common.json", + "dialog_content_fullscreen/dialog_titles": "ui/settings_sections/settings_common.json", + "dialog_content_fullscreen/selector_area": "ui/settings_sections/settings_common.json", + "dialog_content_fullscreen/content_area": "ui/settings_sections/settings_common.json", + "dialog_content_fullscreen/section_divider": "ui/settings_sections/settings_common.json", "selector_group_label": "ui/settings_sections/settings_common.json", "scrollable_selector_area_content": "ui/settings_sections/settings_common.json", "selector_area": "ui/settings_sections/settings_common.json", "selector_area/scrolling_panel": "ui/settings_sections/settings_common.json", + "selector_area_no_scroll": "ui/settings_sections/settings_common.json", + "selector_area_no_scroll/scrolling_panel": "ui/settings_sections/settings_common.json", "content_area": "ui/settings_sections/settings_common.json", "content_area/control": "ui/settings_sections/settings_common.json", "content_area/control/header_panel": "ui/settings_sections/settings_common.json", @@ -13629,6 +13683,7 @@ export const paths = { "content_area/control/footer_panel/content": "ui/settings_sections/settings_common.json", "section_divider": "ui/settings_sections/settings_common.json", "screen_base": "ui/settings_sections/settings_common.json", + "screen_base_fullscreen": "ui/settings_sections/settings_common.json", }, "world_section": { "selector_pane_content": "ui/settings_sections/world_section.json", @@ -15110,6 +15165,25 @@ export const paths = { "new_offer_icon": "ui/store_common.json", "status_new_offer_icon": "ui/store_common.json", "update_balloon_icon": "ui/store_common.json", + "badge_overlay_panel": "ui/store_common.json", + "badge_overlay_panel/top": "ui/store_common.json", + "badge_overlay_panel/bottom": "ui/store_common.json", + "badge_overlay_stack": "ui/store_common.json", + "badge_overlay_stack/left_badge": "ui/store_common.json", + "badge_overlay_stack/padding": "ui/store_common.json", + "badge_overlay_stack/right_badge": "ui/store_common.json", + "content_card_tail_image": "ui/store_common.json", + "content_card_badge": "ui/store_common.json", + "content_card_badge/leftTail": "ui/store_common.json", + "content_card_badge/background": "ui/store_common.json", + "content_card_badge/background/outline": "ui/store_common.json", + "content_card_badge/background/outline/badgeStackPanel": "ui/store_common.json", + "content_card_badge/background/outline/badgeStackPanel/paddingLeft": "ui/store_common.json", + "content_card_badge/background/outline/badgeStackPanel/badgeIcon": "ui/store_common.json", + "content_card_badge/background/outline/badgeStackPanel/paddingMiddle": "ui/store_common.json", + "content_card_badge/background/outline/badgeStackPanel/badgeText": "ui/store_common.json", + "content_card_badge/background/outline/badgeStackPanel/paddingRight": "ui/store_common.json", + "content_card_badge/rightTail": "ui/store_common.json", "icon_overlay_panel": "ui/store_common.json", "icon_overlay_panel/icon_overlay_position_factory": "ui/store_common.json", "icon_overlay_position_factory": "ui/store_common.json", @@ -15689,6 +15763,7 @@ export const paths = { "store_offer_grid_item/frame/key_art": "ui/store_common.json", "store_offer_grid_item/frame/key_art/key_art_frame": "ui/store_common.json", "store_offer_grid_item/frame/key_art/csb_plus_expiration_banner": "ui/store_common.json", + "store_offer_grid_item/frame/key_art/badge_overlay_panel": "ui/store_common.json", "store_offer_grid_item/frame/progress_loading": "ui/store_common.json", "store_offer_grid_item/frame/progress": "ui/store_common.json", "store_offer_grid_item/frame/durable_offer_info_panel": "ui/store_common.json", @@ -15742,7 +15817,6 @@ export const paths = { "store_offer_grid_factory": "ui/store_common.json", "non_collection_item_horizontal_padding": "ui/store_common.json", "horizontal_store_offer_row_factory": "ui/store_common.json", - "recently_viewed_row_panel": "ui/store_common.json", "static_offer_row_panel": "ui/store_common.json", "static_offer_row_panel/store_row_dropdown_panel": "ui/store_common.json", "static_offer_row_panel/store_row_dropdown_panel/store_row_section_panel": "ui/store_common.json", @@ -18005,6 +18079,9 @@ export const paths = { "container_gamepad_helpers/buttons/gamepad_helper_y": "ui/ui_common.json", "container_gamepad_helpers/buttons/gamepad_helper_b": "ui/ui_common.json", "container_gamepad_helpers/buffer_panel_right": "ui/ui_common.json", + "gamepad_helper_bumpers": "ui/ui_common.json", + "gamepad_helper_bumpers/gamepad_helper_left_bumper": "ui/ui_common.json", + "gamepad_helper_bumpers/gamepad_helper_right_bumper": "ui/ui_common.json", "tabs_left_gamepad_helpers": "ui/ui_common.json", "tabs_left_gamepad_helpers/gamepad_helper_left_bumper": "ui/ui_common.json", "tabs_left_gamepad_helpers/gamepad_helper_left_trigger": "ui/ui_common.json", @@ -18063,6 +18140,8 @@ export const paths = { "normal_button": "ui/ui_common.json", "normal_stroke_button": "ui/ui_common.json", "section_heading_label": "ui/ui_common.json", + "center_fold": "ui/ui_common.json", + "center_fold/center_bg": "ui/ui_common.json", "section_divider": "ui/ui_common.json", "section_divider/padding1": "ui/ui_common.json", "section_divider/divider_parent": "ui/ui_common.json", @@ -18145,6 +18224,18 @@ export const paths = { "item_lock_notification/notification_background_image": "ui/ui_common.json", "item_lock_notification/notification_background_image/notification_text_label": "ui/ui_common.json", "item_lock_notification_factory": "ui/ui_common.json", + "layout_toggle_content": "ui/ui_common.json", + "layout_toggle_content/image": "ui/ui_common.json", + "layout_toggle_content/icon": "ui/ui_common.json", + "layout_template_toggle": "ui/ui_common.json", + "layout_toggle": "ui/ui_common.json", + "creative_layout_toggle": "ui/ui_common.json", + "recipe_book_layout_toggle": "ui/ui_common.json", + "survival_layout_toggle": "ui/ui_common.json", + "furnace_recipe_book_layout_toggle": "ui/ui_common.json", + "furnace_survival_layout_toggle": "ui/ui_common.json", + "crafting_root_input_panel": "ui/ui_common.json", + "toolbar_background_image": "ui/ui_common.json", "empty_panel_size_y_0": "ui/ui_common.json", "scroll_background_and_viewport": "ui/ui_common.json", "scroll_background_and_viewport/background": "ui/ui_common.json", @@ -18374,6 +18465,11 @@ export const paths = { "legacy_pocket_close_button/pressed": "ui/ui_common.json", "info_icon": "ui/ui_common.json", "error_glyph": "ui/ui_common.json", + "creative_icon": "ui/ui_common.json", + "inventory_icon": "ui/ui_common.json", + "recipe_book_icon": "ui/ui_common.json", + "tab_icon_image": "ui/ui_common.json", + "search_icon": "ui/ui_common.json", "service_repo_image_panel": "ui/ui_common.json", "service_repo_image_panel/service_repo_image": "ui/ui_common.json", "service_repo_image_panel/progress_loading": "ui/ui_common.json", From 796b89636d317c4f5f6dc5963c5d2d4bdd58ea03 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 12 Feb 2026 20:47:59 +0700 Subject: [PATCH 050/245] bump for minecraft v26 --- src/compilers/bindings/Binary.ts | 4 +- src/compilers/bindings/Function.ts | 64 +++++----- src/compilers/bindings/Parser.ts | 4 +- src/components/Utils.ts | 4 +- src/types/enums/Items.ts | 1 - src/types/properties/element/Control.ts | 3 +- src/types/vanilla/intellisense.ts | 153 ++++++++---------------- src/types/vanilla/paths.ts | 121 +++++-------------- 8 files changed, 121 insertions(+), 233 deletions(-) diff --git a/src/compilers/bindings/Binary.ts b/src/compilers/bindings/Binary.ts index da953fd..ec7a1a7 100644 --- a/src/compilers/bindings/Binary.ts +++ b/src/compilers/bindings/Binary.ts @@ -6,7 +6,7 @@ import { GenBinding } from "./types.js" export function intToBin(input: string) { const { abs, negabs } = defaultFunctions - const ret = RandomBindingString(16) + const ret = RandomBindingString() const bindings: GenBinding[] = [] // negative bit @@ -22,7 +22,7 @@ export function intToBin(input: string) { } export function binToInt(input: Binding) { - const ret = RandomBindingString(16) + const ret = RandomBindingString() const bindings: GenBinding[] = [] const nevBind = (input + "0") as Binding diff --git a/src/compilers/bindings/Function.ts b/src/compilers/bindings/Function.ts index ffd9a6f..2d70931 100644 --- a/src/compilers/bindings/Function.ts +++ b/src/compilers/bindings/Function.ts @@ -1,17 +1,14 @@ import { RandomBindingString } from "../../components/Utils.js" import { Expression, GenBinding } from "./types.js" -type Callback = (...args: Expression[]) => { +type CallbackRet = { genBindings?: GenBinding[] value: Expression } +type Callback = (...args: Expression[]) => CallbackRet export const FunctionMap = new Map() -function callFn(name: string, ...args: Expression[]) { - return FunctionMap.get(name)!(...args) -} - export const defaultFunctions = { /** * Returns the absolute value of a number (the value without regard to whether it is positive or negative). For example, the absolute value of -5 is the same as the absolute value of 5. @@ -19,7 +16,7 @@ export const defaultFunctions = { * @returns */ abs: number => { - const randomBinding = RandomBindingString(16) + const randomBinding = RandomBindingString() return { genBindings: [{ source: `((-1 + (${number} > 0) * 2) * ${number})`, target: randomBinding }], value: randomBinding, @@ -32,7 +29,7 @@ export const defaultFunctions = { * @returns */ negabs: number => { - const randomBinding = RandomBindingString(16) + const randomBinding = RandomBindingString() return { genBindings: [{ source: `((-1 + (${number} < 0) * 2) * ${number})`, target: randomBinding }], value: randomBinding, @@ -45,42 +42,47 @@ export const defaultFunctions = { * @returns */ new: expression => { - const randomBinding = RandomBindingString(16) + const randomBinding = RandomBindingString() return { genBindings: [{ source: expression, target: randomBinding }], value: randomBinding, } }, - /** - * Returns the square root of a number. - * @param number - * @returns - */ - sqrt: number => { - const rtn = RandomBindingString(16), - $1 = RandomBindingString(16), - $2 = RandomBindingString(16) - - const { genBindings: absValue, value: absRtn } = callFn("abs", number) + sqrt: n => { + const notAllow = RandomBindingString() + const g = RandomBindingString() + const h = RandomBindingString() + const ret = RandomBindingString() return { genBindings: [ { - source: `${number} * 100 / 2`, - target: $1, - }, - ...absValue!, - { - source: `${absRtn} > 1`, - target: $2, + source: `${n} / 2`, + target: g, }, { - source: `(${number} < 0) * -1 + (${number} > -1) * (${$2} * ((${rtn} + ${number} / ${rtn}) / 2) + (not ${$2}) * ${rtn})`, - target: rtn, + source: `(${notAllow} * -1)`, + target: ret, }, ], - value: rtn, + value: ret, + } + }, + + cache_value: (cache_binding, override_binding, is_read) => { + return { + value: `((${is_read} * ${cache_binding}) + ((not ${is_read}) * ${override_binding}))`, + } + }, + + vector_length: (x, y, z) => { + const newBind = defaultFunctions.new(`${y} * ${y} + ${x} * ${x} + ${z} * ${z}`) as CallbackRet + const sqrtBind = defaultFunctions.sqrt(newBind.value) as CallbackRet + + return { + genBindings: [newBind.genBindings![0], ...sqrtBind.genBindings!], + value: sqrtBind.value, } }, @@ -116,7 +118,7 @@ export const defaultFunctions = { * @returns */ bind: (value, bait) => { - const ret = RandomBindingString(16) + const ret = RandomBindingString() if (!bait) { throw new Error("Bait is required") @@ -134,7 +136,7 @@ export const defaultFunctions = { * @returns */ int: input => { - const ret = RandomBindingString(16) + const ret = RandomBindingString() return { genBindings: [{ source: `${input}`, target: ret }], value: ret, diff --git a/src/compilers/bindings/Parser.ts b/src/compilers/bindings/Parser.ts index 7461228..d317290 100644 --- a/src/compilers/bindings/Parser.ts +++ b/src/compilers/bindings/Parser.ts @@ -31,7 +31,7 @@ export class Parser { static intToBin(input: string) { const bindings: GenBinding[] = [] - const rtn = RandomBindingString(16) + const rtn = RandomBindingString() for (let i = 0; i < 30; i++) { bindings.push({ @@ -170,7 +170,7 @@ export class Parser { return (left = this.cache.get(cacheStr) as Expression) } - const ret = RandomBindingString(16) + const ret = RandomBindingString() this.genBindings.push({ source: `(${left} - (${left} / ${right} * ${right}))`, diff --git a/src/components/Utils.ts b/src/components/Utils.ts index 43c583e..dc213e3 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -89,7 +89,7 @@ export function ResolveBinding(cache: Map, ...bindings: Binding value: cache.get(mapkey) as string, } } else { - const ret = RandomBindingString(16) + const ret = RandomBindingString() cache.set(mapkey, ret) result.push({ @@ -163,7 +163,7 @@ export function RandomString(length: number, base: number = 32) { return out.join("") } -export function RandomBindingString(length: number, base: number = 32): Binding { +export function RandomBindingString(length: number = 16, base: number = 32): Binding { return `#${RandomString(length, base)}` } diff --git a/src/types/enums/Items.ts b/src/types/enums/Items.ts index 40ad58a..87c52fc 100644 --- a/src/types/enums/Items.ts +++ b/src/types/enums/Items.ts @@ -557,7 +557,6 @@ export enum ItemAuxID { GOLDEN_BOOTS = 25296896, GOLDEN_CARROT = 20447232, GOLDEN_CHESTPLATE = 25165824, - GOLDEN_DANDELION = -71499776, GOLDEN_HELMET = 25100288, GOLDEN_HOE = 23920640, GOLDEN_HORSE_ARMOR = 37421056, diff --git a/src/types/properties/element/Control.ts b/src/types/properties/element/Control.ts index af56c56..7992fa5 100644 --- a/src/types/properties/element/Control.ts +++ b/src/types/properties/element/Control.ts @@ -17,7 +17,8 @@ export interface Control { contained?: Value draggable?: Value follows_cursor?: Value - property_bags?: Value + property_bag?: Value + property_bag_for_children?: Value [key: Binding]: Value [key: Variable]: Value } diff --git a/src/types/vanilla/intellisense.ts b/src/types/vanilla/intellisense.ts index 50593c2..a7391a8 100644 --- a/src/types/vanilla/intellisense.ts +++ b/src/types/vanilla/intellisense.ts @@ -1330,20 +1330,10 @@ export type ChatType = { "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 }, - "new_messages": { type: T.IMAGE, children: 'focus_border' }, - "new_messages/focus_border": { type: T.IMAGE, children: 'stack' }, - "new_messages/focus_border/stack": { type: T.STACK_PANEL, children: 'arrow_icon' | 'separator' | 'tooltip_text' }, - "new_messages/focus_border/stack/arrow_icon": { type: T.IMAGE, children: string }, - "new_messages/focus_border/stack/separator": { type: T.PANEL, children: string }, - "new_messages/focus_border/stack/tooltip_text": { type: T.LABEL, 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 }, - "new_messages_button": { type: T.BUTTON, children: 'default' | 'pressed' | 'hover' }, - "new_messages_button/default": { type: T.IMAGE, children: string }, - "new_messages_button/pressed": { type: T.IMAGE, children: string }, - "new_messages_button/hover": { type: T.IMAGE, 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 }, @@ -1399,11 +1389,10 @@ export type ChatType = { "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' | 'new_messages_button' | 'autocomplete_commands_panel' | 'host_main_panel' | 'popup_factory' }, + "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/new_messages_button": { type: T.BUTTON, 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 }, @@ -6516,8 +6505,7 @@ export type InviteType = { "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: 'invite_party_panel' | '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/invite_party_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' }, @@ -6545,12 +6533,6 @@ export type InviteType = { "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 }, - "invite_party_panel": { type: T.PANEL, children: 'frame_label' | 'frame_description' | 'our_toggle' | 'border_outline' }, - "invite_party_panel/frame_label": { type: T.LABEL, children: string }, - "invite_party_panel/frame_description": { type: T.LABEL, children: string }, - "invite_party_panel/our_toggle": { type: T.TOGGLE, children: string }, - "invite_party_panel/border_outline": { type: T.IMAGE, children: string }, - "friend_button_test": { type: T.TOGGLE, 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 }, @@ -7541,35 +7523,16 @@ export type PauseType = { "invite_players_button": { type: T.BUTTON, children: string }, "buy_button": { type: T.BUTTON, children: string }, "quit_button": { type: T.BUTTON, children: string }, - "icon_button_hover_text": { type: T.IMAGE, children: 'tooltip_text' }, - "icon_button_hover_text/tooltip_text": { type: T.LABEL, children: string }, - "icon_button_tooltip_trigger": { type: T.BUTTON, children: 'default' | 'pressed' | 'hover' }, - "icon_button_tooltip_trigger/default": { type: T.PANEL, children: string }, - "icon_button_tooltip_trigger/pressed": { type: T.PANEL, children: string }, - "icon_button_tooltip_trigger/hover": { type: T.IMAGE, children: string }, "feedback_button": { type: T.BUTTON, children: string }, - "feedback_icon_button": { type: T.PANEL, children: 'feedback_button' | 'tooltip_trigger' }, + "feedback_icon_button": { type: T.PANEL, children: 'feedback_button' }, "feedback_icon_button/feedback_button": { type: T.BUTTON, children: string }, - "feedback_icon_button/tooltip_trigger": { 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 }, - "achievements_button_small_with_tooltip": { type: T.PANEL, children: 'button' | 'tooltip_trigger' }, - "achievements_button_small_with_tooltip/button": { type: T.BUTTON, children: string }, - "achievements_button_small_with_tooltip/tooltip_trigger": { type: T.BUTTON, children: string }, "settings_button_small": { type: T.BUTTON, children: string }, - "settings_button_small_with_tooltip": { type: T.PANEL, children: 'button' | 'tooltip_trigger' }, - "settings_button_small_with_tooltip/button": { type: T.BUTTON, children: string }, - "settings_button_small_with_tooltip/tooltip_trigger": { type: T.BUTTON, children: string }, "take_screenshot_button": { type: T.BUTTON, children: string }, - "take_screenshot_button_with_tooltip": { type: T.PANEL, children: 'button' | 'tooltip_trigger' }, - "take_screenshot_button_with_tooltip/button": { type: T.BUTTON, children: string }, - "take_screenshot_button_with_tooltip/tooltip_trigger": { type: T.BUTTON, children: string }, - "take_screenshot_gamepad_button_with_tooltip": { type: T.PANEL, children: 'button' | 'tooltip_trigger' }, - "take_screenshot_gamepad_button_with_tooltip/button": { type: T.BUTTON, children: string }, - "take_screenshot_gamepad_button_with_tooltip/tooltip_trigger": { 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' | 'top_right_panel' | 'gamepad_helpers' | 'keyboard_helpers' | 'debug_drawer_button_panel' }, "pause_screen_content/pause_screen_main_panels": { type: T.STACK_PANEL, children: string }, @@ -7596,14 +7559,14 @@ export type PauseType = { "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.PANEL, children: string }, + "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.PANEL, children: string }, + "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.PANEL, children: string }, - "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_gamepad_button": { type: T.PANEL, children: string }, + "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 }, @@ -8077,16 +8040,18 @@ export type PdpType = { "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' | 'info_buttons_factory' }, + "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/info_buttons_factory": { type: T.STACK_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 }, - "info_buttons_factory": { type: T.STACK_PANEL, children: string }, - "ratings_summary": { type: T.STACK_PANEL, children: 'ratings_display' }, - "ratings_summary/ratings_display": { type: T.STACK_PANEL, children: 'rating' | 'summary_rating_button' }, - "ratings_summary/ratings_display/rating": { type: T.PANEL, children: string }, - "ratings_summary/ratings_display/summary_rating_button": { type: T.BUTTON, 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 }, @@ -8124,17 +8089,26 @@ export type PdpType = { "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' | 'basic_vertical_glyphs' }, + "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/basic_vertical_glyphs": { type: T.STACK_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 }, @@ -10059,11 +10033,6 @@ export type ProgressType = { "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 }, - "modal_ok_button_panel_with_retry": { type: T.PANEL, children: 'left_ok_button' | 'center_cancel_button' | 'center_ok_button' | 'right_retry_button' }, - "modal_ok_button_panel_with_retry/left_ok_button": { type: T.BUTTON, children: string }, - "modal_ok_button_panel_with_retry/center_cancel_button": { type: T.BUTTON, children: string }, - "modal_ok_button_panel_with_retry/center_ok_button": { type: T.BUTTON, children: string }, - "modal_ok_button_panel_with_retry/right_retry_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 }, @@ -10145,23 +10114,18 @@ export type ProgressType = { "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' | 'content_wrapper' }, + "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/content_wrapper": { type: T.PANEL, children: 'base_content' | 'inside_content' }, - "world_modal_progress_panel/content_wrapper/base_content": { type: T.STACK_PANEL, children: 'vertical_title_padding' | 'title_text_panel' | 'vertical_text_padding' | 'progress_text_panel' }, - "world_modal_progress_panel/content_wrapper/base_content/vertical_title_padding": { type: T.PANEL, children: string }, - "world_modal_progress_panel/content_wrapper/base_content/title_text_panel": { type: T.PANEL, children: 'progress_title_text' }, - "world_modal_progress_panel/content_wrapper/base_content/title_text_panel/progress_title_text": { type: T.LABEL, children: string }, - "world_modal_progress_panel/content_wrapper/base_content/vertical_text_padding": { type: T.PANEL, children: string }, - "world_modal_progress_panel/content_wrapper/base_content/progress_text_panel": { type: T.PANEL, children: 'progress_bar_text' }, - "world_modal_progress_panel/content_wrapper/base_content/progress_text_panel/progress_bar_text": { type: T.LABEL, children: string }, - "world_modal_progress_panel/content_wrapper/inside_content": { type: T.STACK_PANEL, children: 'loading_bar_panel' | 'vertical_padding' | 'modal_button_panel' | 'vertical_padding_2' }, - "world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel": { type: T.PANEL, children: 'fancy_progress_loading_bars' | 'progress_loading_bars' }, - "world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel/fancy_progress_loading_bars": { type: T.PANEL, children: string }, - "world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel/progress_loading_bars": { type: T.IMAGE, children: string }, - "world_modal_progress_panel/content_wrapper/inside_content/vertical_padding": { type: T.PANEL, children: string }, - "world_modal_progress_panel/content_wrapper/inside_content/modal_button_panel": { type: T.UNKNOWN, children: string }, - "world_modal_progress_panel/content_wrapper/inside_content/vertical_padding_2": { 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' }, @@ -12638,7 +12602,7 @@ export type ControlsSectionType = { export type GeneralSectionType = { "general_button": { type: T.PANEL, 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' | 'pause_menu_on_focus_lost' | '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": { 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 }, @@ -12664,7 +12628,6 @@ export type GeneralSectionType = { "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/pause_menu_on_focus_lost": { 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 }, @@ -12853,13 +12816,6 @@ export type GeneralSectionType = { "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 }, - "editor_toggles_panel": { type: T.STACK_PANEL, children: 'section_panel_1' | 'primary_panel' }, - "editor_toggles_panel/section_panel_1": { type: T.PANEL, children: 'section_divider' }, - "editor_toggles_panel/section_panel_1/section_divider": { type: T.IMAGE, children: string }, - "editor_toggles_panel/primary_panel": { type: T.STACK_PANEL, children: 'content_log_section_label' | 'content_log_section_label_spacer' | 'clipboard_setting' }, - "editor_toggles_panel/primary_panel/content_log_section_label": { type: T.LABEL, children: string }, - "editor_toggles_panel/primary_panel/content_log_section_label_spacer": { type: T.PANEL, children: string }, - "editor_toggles_panel/primary_panel/clipboard_setting": { 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 }, @@ -12906,13 +12862,12 @@ export type GeneralSectionType = { "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' | 'editor_toggles_panel' | 'device_info_toggles_panel' | 'content_log_panel' }, + "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/editor_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 }, @@ -12926,7 +12881,7 @@ export type GeneralSectionType = { "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' | 'texture_streaming_toggle' | 'spacer_37' | 'reset_button' }, + "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 }, @@ -13029,8 +12984,6 @@ export type GeneralSectionType = { "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/texture_streaming_toggle": { type: T.PANEL, children: string }, - "video_section/spacer_37": { 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 }, @@ -13275,7 +13228,7 @@ export type GeneralSectionType = { "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' | 'treatment_grid' | 'unused_treatments_label_panel' | 'unused_treatment_grid' | 'spacer_1' }, + "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' }, @@ -13289,9 +13242,13 @@ export type GeneralSectionType = { "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' }, @@ -13410,7 +13367,7 @@ export type GeneralSectionType = { "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_show_test_running_text' | '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_authentication_option' | 'reset_report_timer_option' | 'reset_online_safety_option' | 'reset_show_hardcore_warning_option' | 'reset_low_ping_warning_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": { 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_show_test_running_text' | '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_authentication_option' | 'reset_report_timer_option' | 'reset_online_safety_option' | 'reset_low_ping_warning_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 }, @@ -13493,7 +13450,6 @@ export type GeneralSectionType = { "debug_section/reset_authentication_option": { type: T.BUTTON, 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_show_hardcore_warning_option": { type: T.BUTTON, children: string }, "debug_section/reset_low_ping_warning_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 }, @@ -13590,7 +13546,7 @@ export type GeneralSectionType = { "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' | 'end_of_other_options_divider' | 'end_of_other_options_spacer' | 'debug_data_label' | 'debug_data_label_spacer' | 'option_continuous_repaint' | 'option_show_paint_rects' | 'option_show_element_aabb' | 'option_emulate_touch_events' | 'end_of_debug_data_divider' | 'end_of_debug_data_spacer' | '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": { 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 }, @@ -13651,18 +13607,6 @@ export type GeneralSectionType = { "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/end_of_other_options_divider": { type: T.PANEL, children: 'section_divider' }, - "ui_debug_section/end_of_other_options_divider/section_divider": { type: T.IMAGE, children: string }, - "ui_debug_section/end_of_other_options_spacer": { type: T.PANEL, children: string }, - "ui_debug_section/debug_data_label": { type: T.LABEL, children: string }, - "ui_debug_section/debug_data_label_spacer": { type: T.PANEL, children: string }, - "ui_debug_section/option_continuous_repaint": { type: T.PANEL, children: string }, - "ui_debug_section/option_show_paint_rects": { type: T.PANEL, children: string }, - "ui_debug_section/option_show_element_aabb": { type: T.PANEL, children: string }, - "ui_debug_section/option_emulate_touch_events": { type: T.PANEL, children: string }, - "ui_debug_section/end_of_debug_data_divider": { type: T.PANEL, children: 'section_divider' }, - "ui_debug_section/end_of_debug_data_divider/section_divider": { type: T.IMAGE, children: string }, - "ui_debug_section/end_of_debug_data_spacer": { 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 }, @@ -14004,7 +13948,6 @@ export type SettingsCommonType = { "option_custom_control": { type: T.PANEL, children: string }, "option_info_label": { type: T.PANEL, children: string }, "dynamic_dialog_screen": { type: T.SCREEN, children: string }, - "dynamic_dialog_fullscreen": { 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' }, diff --git a/src/types/vanilla/paths.ts b/src/types/vanilla/paths.ts index 6fc0b73..595b3c7 100644 --- a/src/types/vanilla/paths.ts +++ b/src/types/vanilla/paths.ts @@ -1090,20 +1090,10 @@ export const paths = { "keyboard_image_panel": "ui/chat_screen.json", "keyboard_image_panel/keyboard_image": "ui/chat_screen.json", "keyboard_image_panel/down_arrow_image": "ui/chat_screen.json", - "new_messages": "ui/chat_screen.json", - "new_messages/focus_border": "ui/chat_screen.json", - "new_messages/focus_border/stack": "ui/chat_screen.json", - "new_messages/focus_border/stack/arrow_icon": "ui/chat_screen.json", - "new_messages/focus_border/stack/separator": "ui/chat_screen.json", - "new_messages/focus_border/stack/tooltip_text": "ui/chat_screen.json", "small_button": "ui/chat_screen.json", "keyboard_button": "ui/chat_screen.json", "chat_settings_button": "ui/chat_screen.json", "send_button": "ui/chat_screen.json", - "new_messages_button": "ui/chat_screen.json", - "new_messages_button/default": "ui/chat_screen.json", - "new_messages_button/pressed": "ui/chat_screen.json", - "new_messages_button/hover": "ui/chat_screen.json", "messages_text": "ui/chat_screen.json", "messages_text/text": "ui/chat_screen.json", "message_tts_wrapper": "ui/chat_screen.json", @@ -1163,7 +1153,6 @@ export const paths = { "chat_screen_content/messages_panel": "ui/chat_screen.json", "chat_screen_content/chat_bottom_panel": "ui/chat_screen.json", "chat_screen_content/chat_top_panel": "ui/chat_screen.json", - "chat_screen_content/new_messages_button": "ui/chat_screen.json", "chat_screen_content/autocomplete_commands_panel": "ui/chat_screen.json", "chat_screen_content/host_main_panel": "ui/chat_screen.json", "chat_screen_content/popup_factory": "ui/chat_screen.json", @@ -6212,7 +6201,6 @@ export const paths = { "frame_label": "ui/invite_screen.json", "friend_panel": "ui/invite_screen.json", "scrolling_content_stack": "ui/invite_screen.json", - "scrolling_content_stack/invite_party_panel": "ui/invite_screen.json", "scrolling_content_stack/message": "ui/invite_screen.json", "scrolling_content_stack/message/frame_label": "ui/invite_screen.json", "scrolling_content_stack/online_platform": "ui/invite_screen.json", @@ -6240,12 +6228,6 @@ export const paths = { "scrolling_content_stack/offline_xbox_live_friend_list_category": "ui/invite_screen.json", "scrolling_content_stack/no_xbox_live_friends": "ui/invite_screen.json", "scrolling_content_stack/no_xbox_live_friends/no_friends_tts_wrapper": "ui/invite_screen.json", - "invite_party_panel": "ui/invite_screen.json", - "invite_party_panel/frame_label": "ui/invite_screen.json", - "invite_party_panel/frame_description": "ui/invite_screen.json", - "invite_party_panel/our_toggle": "ui/invite_screen.json", - "invite_party_panel/border_outline": "ui/invite_screen.json", - "friend_button_test": "ui/invite_screen.json", "progress_bar_and_scrolling_content_panel": "ui/invite_screen.json", "progress_bar_and_scrolling_content_panel/progress_loading_bars": "ui/invite_screen.json", "progress_bar_and_scrolling_content_panel/invite_scrolling_area": "ui/invite_screen.json", @@ -7216,35 +7198,16 @@ export const paths = { "invite_players_button": "ui/pause_screen.json", "buy_button": "ui/pause_screen.json", "quit_button": "ui/pause_screen.json", - "icon_button_hover_text": "ui/pause_screen.json", - "icon_button_hover_text/tooltip_text": "ui/pause_screen.json", - "icon_button_tooltip_trigger": "ui/pause_screen.json", - "icon_button_tooltip_trigger/default": "ui/pause_screen.json", - "icon_button_tooltip_trigger/pressed": "ui/pause_screen.json", - "icon_button_tooltip_trigger/hover": "ui/pause_screen.json", "feedback_button": "ui/pause_screen.json", "feedback_icon_button": "ui/pause_screen.json", "feedback_icon_button/feedback_button": "ui/pause_screen.json", - "feedback_icon_button/tooltip_trigger": "ui/pause_screen.json", "take_screenshot_gamepad_button_content": "ui/pause_screen.json", "take_screenshot_gamepad_button_content/button_y": "ui/pause_screen.json", "take_screenshot_gamepad_button_content/take_screenshot_icon": "ui/pause_screen.json", "take_screenshot_gamepad_button": "ui/pause_screen.json", "achievements_button_small": "ui/pause_screen.json", - "achievements_button_small_with_tooltip": "ui/pause_screen.json", - "achievements_button_small_with_tooltip/button": "ui/pause_screen.json", - "achievements_button_small_with_tooltip/tooltip_trigger": "ui/pause_screen.json", "settings_button_small": "ui/pause_screen.json", - "settings_button_small_with_tooltip": "ui/pause_screen.json", - "settings_button_small_with_tooltip/button": "ui/pause_screen.json", - "settings_button_small_with_tooltip/tooltip_trigger": "ui/pause_screen.json", "take_screenshot_button": "ui/pause_screen.json", - "take_screenshot_button_with_tooltip": "ui/pause_screen.json", - "take_screenshot_button_with_tooltip/button": "ui/pause_screen.json", - "take_screenshot_button_with_tooltip/tooltip_trigger": "ui/pause_screen.json", - "take_screenshot_gamepad_button_with_tooltip": "ui/pause_screen.json", - "take_screenshot_gamepad_button_with_tooltip/button": "ui/pause_screen.json", - "take_screenshot_gamepad_button_with_tooltip/tooltip_trigger": "ui/pause_screen.json", "pause_screen": "ui/pause_screen.json", "pause_screen_content": "ui/pause_screen.json", "pause_screen_content/pause_screen_main_panels": "ui/pause_screen.json", @@ -7754,13 +7717,15 @@ export const paths = { "summary_content_left_side/full_content/top/info": "ui/pdp_screen.json", "summary_content_left_side/full_content/top/info/summary_title_and_author_panel": "ui/pdp_screen.json", "summary_content_left_side/full_content/top/info/pad_fill": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/info/info_buttons_factory": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/glyph_section": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/glyph_section/glyph_section_panel": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/ratings_summary": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel/rating": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/summary_rating_button": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/vibrant_visuals_badge_and_hover": "ui/pdp_screen.json", "summary_content_left_side/full_content/bottom": "ui/pdp_screen.json", - "info_buttons_factory": "ui/pdp_screen.json", - "ratings_summary": "ui/pdp_screen.json", - "ratings_summary/ratings_display": "ui/pdp_screen.json", - "ratings_summary/ratings_display/rating": "ui/pdp_screen.json", - "ratings_summary/ratings_display/summary_rating_button": "ui/pdp_screen.json", "offer_title_label": "ui/pdp_screen.json", "title_and_author_panel": "ui/pdp_screen.json", "title_and_author_panel/title_panel": "ui/pdp_screen.json", @@ -7803,12 +7768,21 @@ export const paths = { "mashup_glyph_tooltip_content/mashup_text_row/info_icon": "ui/pdp_screen.json", "mashup_glyph_tooltip_content/mashup_text_row/mashup_line_one": "ui/pdp_screen.json", "mashup_glyph_tooltip_content/mashup_line_two": "ui/pdp_screen.json", - "mashup_glyph_tooltip_content/basic_vertical_glyphs": "ui/pdp_screen.json", + "mashup_glyph_tooltip_content/offset_panel": "ui/pdp_screen.json", + "mashup_glyph_tooltip_content/offset_panel/basic_vertical_glyph_section_panel": "ui/pdp_screen.json", "glyph_section_mashup": "ui/pdp_screen.json", "glyph_section_skin": "ui/pdp_screen.json", "glyph_section_resource_pack": "ui/pdp_screen.json", "glyph_section_world": "ui/pdp_screen.json", "glyph_section_addon": "ui/pdp_screen.json", + "basic_vertical_glyph_section_panel": "ui/pdp_screen.json", + "basic_vertical_glyph_section_panel/glyph_section_skin": "ui/pdp_screen.json", + "basic_vertical_glyph_section_panel/glyph_section_world": "ui/pdp_screen.json", + "basic_vertical_glyph_section_panel/glyph_section_resource_pack": "ui/pdp_screen.json", + "basic_vertical_glyph_section_panel/glyph_section_addon": "ui/pdp_screen.json", + "vertical_glyph_section_panel": "ui/pdp_screen.json", + "vertical_glyph_section_panel/glyph_section_mashup": "ui/pdp_screen.json", + "vertical_glyph_section_panel/basic_vertical_glyph_section_panel": "ui/pdp_screen.json", "summary_text_panel": "ui/pdp_screen.json", "summary_text_panel/top_interact_button_stack": "ui/pdp_screen.json", "summary_text_panel/top_interact_button_stack/top_interact": "ui/pdp_screen.json", @@ -9722,11 +9696,6 @@ export const paths = { "modal_button_panel_with_retry/retry_button": "ui/progress_screen.json", "modal_ok_button_panel": "ui/progress_screen.json", "modal_ok_button_panel/ok_button": "ui/progress_screen.json", - "modal_ok_button_panel_with_retry": "ui/progress_screen.json", - "modal_ok_button_panel_with_retry/left_ok_button": "ui/progress_screen.json", - "modal_ok_button_panel_with_retry/center_cancel_button": "ui/progress_screen.json", - "modal_ok_button_panel_with_retry/center_ok_button": "ui/progress_screen.json", - "modal_ok_button_panel_with_retry/right_retry_button": "ui/progress_screen.json", "gamepad_helpers": "ui/progress_screen.json", "gamepad_helpers/gamepad_helper_a": "ui/progress_screen.json", "world_image": "ui/progress_screen.json", @@ -9810,21 +9779,16 @@ export const paths = { "modal_screen_content/modal_progress_panel": "ui/progress_screen.json", "world_modal_progress_panel": "ui/progress_screen.json", "world_modal_progress_panel/common_panel": "ui/progress_screen.json", - "world_modal_progress_panel/content_wrapper": "ui/progress_screen.json", - "world_modal_progress_panel/content_wrapper/base_content": "ui/progress_screen.json", - "world_modal_progress_panel/content_wrapper/base_content/vertical_title_padding": "ui/progress_screen.json", - "world_modal_progress_panel/content_wrapper/base_content/title_text_panel": "ui/progress_screen.json", - "world_modal_progress_panel/content_wrapper/base_content/title_text_panel/progress_title_text": "ui/progress_screen.json", - "world_modal_progress_panel/content_wrapper/base_content/vertical_text_padding": "ui/progress_screen.json", - "world_modal_progress_panel/content_wrapper/base_content/progress_text_panel": "ui/progress_screen.json", - "world_modal_progress_panel/content_wrapper/base_content/progress_text_panel/progress_bar_text": "ui/progress_screen.json", - "world_modal_progress_panel/content_wrapper/inside_content": "ui/progress_screen.json", - "world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel": "ui/progress_screen.json", - "world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel/fancy_progress_loading_bars": "ui/progress_screen.json", - "world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json", - "world_modal_progress_panel/content_wrapper/inside_content/vertical_padding": "ui/progress_screen.json", - "world_modal_progress_panel/content_wrapper/inside_content/modal_button_panel": "ui/progress_screen.json", - "world_modal_progress_panel/content_wrapper/inside_content/vertical_padding_2": "ui/progress_screen.json", + "world_modal_progress_panel/base_content": "ui/progress_screen.json", + "world_modal_progress_panel/base_content/progress_title_text": "ui/progress_screen.json", + "world_modal_progress_panel/base_content/progress_bar_text": "ui/progress_screen.json", + "world_modal_progress_panel/inside_content": "ui/progress_screen.json", + "world_modal_progress_panel/inside_content/loading_bar_panel": "ui/progress_screen.json", + "world_modal_progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": "ui/progress_screen.json", + "world_modal_progress_panel/inside_content/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json", + "world_modal_progress_panel/inside_content/vertical_padding": "ui/progress_screen.json", + "world_modal_progress_panel/inside_content/modal_button_panel": "ui/progress_screen.json", + "world_modal_progress_panel/inside_content/vertical_padding_2": "ui/progress_screen.json", "cloud_upload_panel": "ui/progress_screen.json", "cloud_upload_panel/common_panel": "ui/progress_screen.json", "cloud_upload_panel/base_content": "ui/progress_screen.json", @@ -12298,7 +12262,6 @@ export const paths = { "general_tab_section/pause_label_header": "ui/settings_sections/general_section.json", "general_tab_section/paddingPauseFeature": "ui/settings_sections/general_section.json", "general_tab_section/pause_toggle": "ui/settings_sections/general_section.json", - "general_tab_section/pause_menu_on_focus_lost": "ui/settings_sections/general_section.json", "general_tab_section/paddingLinkEduSupport": "ui/settings_sections/general_section.json", "general_tab_section/link_button": "ui/settings_sections/general_section.json", "general_tab_section/paddingDividerSustainability": "ui/settings_sections/general_section.json", @@ -12487,13 +12450,6 @@ export const paths = { "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/spacer": "ui/settings_sections/general_section.json", "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/port_input": "ui/settings_sections/general_section.json", "debugger_toggles_panel/primary_panel/all_options_panel/auto_attach_timeout_slider": "ui/settings_sections/general_section.json", - "editor_toggles_panel": "ui/settings_sections/general_section.json", - "editor_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json", - "editor_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json", - "editor_toggles_panel/primary_panel": "ui/settings_sections/general_section.json", - "editor_toggles_panel/primary_panel/content_log_section_label": "ui/settings_sections/general_section.json", - "editor_toggles_panel/primary_panel/content_log_section_label_spacer": "ui/settings_sections/general_section.json", - "editor_toggles_panel/primary_panel/clipboard_setting": "ui/settings_sections/general_section.json", "diagnostics_toggles_panel": "ui/settings_sections/general_section.json", "diagnostics_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json", "diagnostics_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json", @@ -12546,7 +12502,6 @@ export const paths = { "creator_section/debugger_toggles_panel": "ui/settings_sections/general_section.json", "creator_section/diagnostics_toggle_panel": "ui/settings_sections/general_section.json", "creator_section/watchdog_toggles_panel": "ui/settings_sections/general_section.json", - "creator_section/editor_toggles_panel": "ui/settings_sections/general_section.json", "creator_section/device_info_toggles_panel": "ui/settings_sections/general_section.json", "creator_section/content_log_panel": "ui/settings_sections/general_section.json", "video_button": "ui/settings_sections/general_section.json", @@ -12663,8 +12618,6 @@ export const paths = { "video_section/spacer_35": "ui/settings_sections/general_section.json", "video_section/texel_anti_aliasing_toggle": "ui/settings_sections/general_section.json", "video_section/spacer_36": "ui/settings_sections/general_section.json", - "video_section/texture_streaming_toggle": "ui/settings_sections/general_section.json", - "video_section/spacer_37": "ui/settings_sections/general_section.json", "video_section/reset_button": "ui/settings_sections/general_section.json", "max_framerate_slider": "ui/settings_sections/general_section.json", "max_framerate_slider/option_generic_core": "ui/settings_sections/general_section.json", @@ -12923,9 +12876,13 @@ export const paths = { "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/clear_treatments": "ui/settings_sections/general_section.json", "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel": "ui/settings_sections/general_section.json", "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel/treatments_label": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1/progress_loading_spinner_1": "ui/settings_sections/general_section.json", "debug_override_treatments_panel/override_treatments_panel_background/treatment_grid": "ui/settings_sections/general_section.json", "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel": "ui/settings_sections/general_section.json", "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel/treatments_label": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2/progress_loading_spinner_2": "ui/settings_sections/general_section.json", "debug_override_treatments_panel/override_treatments_panel_background/unused_treatment_grid": "ui/settings_sections/general_section.json", "debug_override_treatments_panel/override_treatments_panel_background/spacer_1": "ui/settings_sections/general_section.json", "debug_override_configurations_panel": "ui/settings_sections/general_section.json", @@ -13127,7 +13084,6 @@ export const paths = { "debug_section/reset_authentication_option": "ui/settings_sections/general_section.json", "debug_section/reset_report_timer_option": "ui/settings_sections/general_section.json", "debug_section/reset_online_safety_option": "ui/settings_sections/general_section.json", - "debug_section/reset_show_hardcore_warning_option": "ui/settings_sections/general_section.json", "debug_section/reset_low_ping_warning_option": "ui/settings_sections/general_section.json", "debug_section/reset_ip_safety_option": "ui/settings_sections/general_section.json", "debug_section/padding_graphics_options": "ui/settings_sections/general_section.json", @@ -13285,18 +13241,6 @@ export const paths = { "ui_debug_section/ui_feature_toggles_spacer": "ui/settings_sections/general_section.json", "ui_debug_section/option_show_touch_control_selection_screen": "ui/settings_sections/general_section.json", "ui_debug_section/option_reset_on_start": "ui/settings_sections/general_section.json", - "ui_debug_section/end_of_other_options_divider": "ui/settings_sections/general_section.json", - "ui_debug_section/end_of_other_options_divider/section_divider": "ui/settings_sections/general_section.json", - "ui_debug_section/end_of_other_options_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/debug_data_label": "ui/settings_sections/general_section.json", - "ui_debug_section/debug_data_label_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/option_continuous_repaint": "ui/settings_sections/general_section.json", - "ui_debug_section/option_show_paint_rects": "ui/settings_sections/general_section.json", - "ui_debug_section/option_show_element_aabb": "ui/settings_sections/general_section.json", - "ui_debug_section/option_emulate_touch_events": "ui/settings_sections/general_section.json", - "ui_debug_section/end_of_debug_data_divider": "ui/settings_sections/general_section.json", - "ui_debug_section/end_of_debug_data_divider/section_divider": "ui/settings_sections/general_section.json", - "ui_debug_section/end_of_debug_data_spacer": "ui/settings_sections/general_section.json", "ui_debug_section/option_slider_drag_dwell": "ui/settings_sections/general_section.json", "ui_debug_section/option_slider_stack_splitting": "ui/settings_sections/general_section.json", "ui_debug_section/reset_render_distance_warning_modal_label": "ui/settings_sections/general_section.json", @@ -13636,7 +13580,6 @@ export const paths = { "option_custom_control": "ui/settings_sections/settings_common.json", "option_info_label": "ui/settings_sections/settings_common.json", "dynamic_dialog_screen": "ui/settings_sections/settings_common.json", - "dynamic_dialog_fullscreen": "ui/settings_sections/settings_common.json", "settings_content": "ui/settings_sections/settings_common.json", "settings_content/background": "ui/settings_sections/settings_common.json", "settings_content/stack_panel": "ui/settings_sections/settings_common.json", From ab83b3372592539d8bbe4805a6c239381c98a84c Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 13 Feb 2026 12:41:47 +0700 Subject: [PATCH 051/245] optimized sqrt function --- config.d.ts | 1 + src/compilers/FormatProperties.ts | 66 ++++++++++++++++-------------- src/compilers/bindings/Function.ts | 41 +++++++++++++++---- 3 files changed, 70 insertions(+), 38 deletions(-) diff --git a/config.d.ts b/config.d.ts index ac61f82..6c3ff0f 100644 --- a/config.d.ts +++ b/config.d.ts @@ -7,6 +7,7 @@ export interface Config { importToPreview?: boolean autoEnable?: boolean gdkUserId?: string + fixInventoryItemRenderer?: boolean } packinfo?: { name?: string diff --git a/src/compilers/FormatProperties.ts b/src/compilers/FormatProperties.ts index 7ab723c..bb7d556 100644 --- a/src/compilers/FormatProperties.ts +++ b/src/compilers/FormatProperties.ts @@ -1,42 +1,46 @@ -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"; +import { AnimationKeyframe } from "../components/AnimationKeyframe.js" +import { AnimType } from "../types/enums/AnimType.js" +import { BagBinding } from "../types/enums/BagBinding.js" +import { KeyframeAnimationProperties } from "../types/properties/element/Animation.js" +import { Binding } from "../types/properties/value.js" +import { config } from "./Configuration.js" export function FormatProperties(properties: any) { - const property_bag: Record = {}; + const property_bag: Record = {} - for (const key in properties) { - const value = properties[key]; + for (const key in properties) { + const value = properties[key] - if (key.startsWith("#")) { - property_bag[key] = value; - delete properties[key]; - } - } + if (key.startsWith("#")) { + property_bag[key] = value + delete properties[key] + } + } - if (properties.anchor) { - properties.anchor_from = properties.anchor_to = properties.anchor; - delete properties.anchor; - } + if (config.compiler?.fixInventoryItemRenderer && property_bag[BagBinding.ITEM_ID_AUX]) { + property_bag[BagBinding.ITEM_ID_AUX] = `(${property_bag[BagBinding.ITEM_ID_AUX]} / 1)` + } - if (Object.keys(property_bag).length) { - if (properties.property_bag) { - properties.property_bag = { ...property_bag, ...properties.property_bag }; - } else { - properties.property_bag = property_bag; - } - } + if (properties.anchor) { + properties.anchor_from = properties.anchor_to = properties.anchor + delete properties.anchor + } - return properties; + if (Object.keys(property_bag).length) { + if (properties.property_bag) { + properties.property_bag = { ...property_bag, ...properties.property_bag } + } else { + properties.property_bag = property_bag + } + } + + return properties } -export function FormatAnimationProperties( - properties: KeyframeAnimationProperties, -) { - if (properties.next instanceof AnimationKeyframe) { - properties.next = `${properties.next}`; - } +export function FormatAnimationProperties(properties: KeyframeAnimationProperties) { + if (properties.next instanceof AnimationKeyframe) { + properties.next = `${properties.next}` + } - return properties; + return properties } diff --git a/src/compilers/bindings/Function.ts b/src/compilers/bindings/Function.ts index 2d70931..987ea62 100644 --- a/src/compilers/bindings/Function.ts +++ b/src/compilers/bindings/Function.ts @@ -49,20 +49,43 @@ export const defaultFunctions = { } }, - sqrt: n => { - const notAllow = RandomBindingString() - const g = RandomBindingString() - const h = RandomBindingString() + sqrt: input => { const ret = RandomBindingString() + const isNegative = RandomBindingString() + const isLowerThanTwo = RandomBindingString() + const next = RandomBindingString() + const nextEqualOrGreaterThan = RandomBindingString() + + const isNextEqualOrGreaterThanRet = `(${nextEqualOrGreaterThan} * ${ret})` + const isNotNextEqualOrGreaterThanRet = `((not ${nextEqualOrGreaterThan}) * ${next})` + + const lowerThanTwoPart = `(${isLowerThanTwo} * ${input})` + const notLowerThanTwoPart = `((not ${isLowerThanTwo}) * (${isNextEqualOrGreaterThanRet} + ${isNotNextEqualOrGreaterThanRet}))` + + const negativePart = `(${isNegative} * -1)` + const notNegativePart = `((not ${isNegative}) * (${lowerThanTwoPart} + ${notLowerThanTwoPart}))` + return { genBindings: [ { - source: `${n} / 2`, - target: g, + source: `(${input} < 2)`, + target: isLowerThanTwo, }, { - source: `(${notAllow} * -1)`, + source: input, + target: ret, + }, + { + source: `(${ret} + ${input} / ${ret}) / 2`, + target: next, + }, + { + source: `(${next} = ${ret}) or (${next} > ${ret})`, + target: nextEqualOrGreaterThan, + }, + { + source: `${negativePart} + ${notNegativePart}`, target: ret, }, ], @@ -86,6 +109,10 @@ export const defaultFunctions = { } }, + // str_length: str => { + // if (!/\#\w+/.test(str)) throw new Error("Invalid string") + // } + /** * Return a translatable string * @param key From 1d00af88c079658056578e85fb67eb5a7116c780 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 13 Feb 2026 23:12:57 +0700 Subject: [PATCH 052/245] bump: version 4.0.5-indev --- package.json | 2 +- src/compilers/bindings/Function.ts | 32 +++++++++++++++++++++++++++--- 2 files changed, 30 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 3cc6f6f..3ea0715 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.0.4-preview", + "version": "4.0.5-indev", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", diff --git a/src/compilers/bindings/Function.ts b/src/compilers/bindings/Function.ts index 987ea62..3b99b2e 100644 --- a/src/compilers/bindings/Function.ts +++ b/src/compilers/bindings/Function.ts @@ -68,6 +68,10 @@ export const defaultFunctions = { return { genBindings: [ + { + source: `(${input} < 0)`, + target: isNegative, + }, { source: `(${input} < 2)`, target: isLowerThanTwo, @@ -109,9 +113,30 @@ export const defaultFunctions = { } }, - // str_length: str => { - // if (!/\#\w+/.test(str)) throw new Error("Invalid string") - // } + strlen: str => { + if (!/\#\w+/.test(str)) throw new Error("Invalid string") + + const count = RandomBindingString() + const inputStr = RandomBindingString() + + return { + genBindings: [ + { + source: `0 * (${str} = 'a')`, + target: count, + }, + { + source: `'a' + ${str}`, + target: inputStr, + }, + { + source: `${count} + (not ((('%.' + (${count} + 1) + 's') * ${inputStr}) = ${inputStr}))`, + target: count, + }, + ], + value: count, + } + }, /** * Return a translatable string @@ -120,6 +145,7 @@ export const defaultFunctions = { */ translatable: key => { return { + genBindings: [], value: `'%' + ${key}`, } }, From 246cdbb8d20f9a173f1acce0b02c9909c47db82f Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 19 Feb 2026 14:16:17 +0700 Subject: [PATCH 053/245] add binary expression --- src/compilers/bindings/Checker.ts | 4 ++ src/compilers/bindings/Lexer.ts | 2 + src/compilers/bindings/Parser.ts | 62 ++++++++++++++++++++++++++++--- 3 files changed, 62 insertions(+), 6 deletions(-) diff --git a/src/compilers/bindings/Checker.ts b/src/compilers/bindings/Checker.ts index c0092f0..0f4646c 100644 --- a/src/compilers/bindings/Checker.ts +++ b/src/compilers/bindings/Checker.ts @@ -25,3 +25,7 @@ export function isOctalChar(char: string) { export function isCompileBinding(input: string) { return input.startsWith("[") && input.endsWith("]") } + +export function isHasBinding(input: string) { + return /#\w+/.test(input) +} diff --git a/src/compilers/bindings/Lexer.ts b/src/compilers/bindings/Lexer.ts index 3e2201f..04fc2ce 100644 --- a/src/compilers/bindings/Lexer.ts +++ b/src/compilers/bindings/Lexer.ts @@ -48,6 +48,8 @@ export function Lexer(input: string, start: number = 0, end?: number) { case "/": case "%": case "^": + case "?": + case ":": tokens.push(makeToken(input, TokenKind.OPERATOR, index)) break diff --git a/src/compilers/bindings/Parser.ts b/src/compilers/bindings/Parser.ts index d317290..70bd8b7 100644 --- a/src/compilers/bindings/Parser.ts +++ b/src/compilers/bindings/Parser.ts @@ -4,6 +4,7 @@ import { BindingItem } from "../../types/properties/value.js" import { FunctionMap } from "./Function.js" import { Lexer } from "./Lexer.js" import { RandomBindingString } from "../../components/Utils.js" +import { isHasBinding } from "./Checker.js" export class Parser { position: number = 0 @@ -72,14 +73,63 @@ export class Parser { } private parseExpression(): Expression { - return this.parseOrExpression() + return this.parseBinaryExpression() + } + + private parseBinaryExpression(): Expression { + let left = this.parseOrExpression(), + current + + while ((current = this.at()) && current.kind === TokenKind.OPERATOR && current.value === "?") { + this.eat() + let middle = this.parseExpression(), + right: string + + if ((current = this.at()) && current.kind === TokenKind.OPERATOR && current.value === ":") { + this.eat() + right = this.parseExpression() + } else this.expect(TokenKind.OPERATOR, "Unexpected token!") + + let leftBind, middleBind, rightBind + + if (isHasBinding(left)) { + leftBind = RandomBindingString() + this.genBindings.push({ + source: `((0 + ${left}) > 0)`, + target: leftBind, + }) + } else this.expect(TokenKind.WORD, "Unexpected token!") + + if (isHasBinding(middle)) { + middleBind = RandomBindingString() + this.genBindings.push({ + source: middle, + target: middleBind, + }) + } else this.expect(TokenKind.WORD, "Unexpected token!") + + if (isHasBinding(right!)) { + rightBind = RandomBindingString() + this.genBindings.push({ + source: right!, + target: rightBind, + }) + } else this.expect(TokenKind.WORD, "Unexpected token!") + + const ifTrueExpression = `(('prefix' + ${leftBind} + ${middleBind}) - ('prefixfalse' + ${middleBind})) - 'prefixtrue')` + const ifFalseExpression = `(('prefix' + ${leftBind} + ${rightBind}) - ('prefixtrue' + ${rightBind})) - 'prefixfalse')` + + return `(${ifTrueExpression} + ${ifFalseExpression})` + } + + return left } private parseOrExpression(): Expression { let left = this.parseAndExpression(), current - while ((current = this.at()) && this.at().kind === TokenKind.OPERATOR && current.value === "||") { + while ((current = this.at()) && current.kind === TokenKind.OPERATOR && current.value === "||") { this.eat() left = `(${left} or ${this.parseAndExpression()})` } @@ -91,7 +141,7 @@ export class Parser { let left = this.parseComparisonExpression(), current - while ((current = this.at()) && this.at().kind === TokenKind.OPERATOR && current.value === "&&") { + while ((current = this.at()) && current.kind === TokenKind.OPERATOR && current.value === "&&") { this.eat() left = `(${left} and ${this.parseComparisonExpression()})` } @@ -105,7 +155,7 @@ export class Parser { while ( (current = this.at()) && - this.at().kind === TokenKind.OPERATOR && + current.kind === TokenKind.OPERATOR && ["==", ">", "<", ">=", "<=", "!="].includes(current.value) ) { const operator = this.eat() @@ -140,7 +190,7 @@ export class Parser { while ( (current = this.at()) && - this.at()?.kind === TokenKind.OPERATOR && + current?.kind === TokenKind.OPERATOR && ["+", "-"].includes(current.value) ) { const operator = this.eat() @@ -158,7 +208,7 @@ export class Parser { while ( (current = this.at()) && - this.at()?.kind === TokenKind.OPERATOR && + current?.kind === TokenKind.OPERATOR && ["*", "/", "%"].includes(current.value) ) { const operator = this.eat() From 994fb34dbd74418b1ac4e8358cf47d9b0c71f8c3 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 20 Feb 2026 23:47:22 +0700 Subject: [PATCH 054/245] linux support --- package.json | 2 +- src/compilers/ui/installer.ts | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 3ea0715..027c110 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.0.5-indev", + "version": "4.0.6-indev", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", diff --git a/src/compilers/ui/installer.ts b/src/compilers/ui/installer.ts index 5f50f93..ab2f6c9 100644 --- a/src/compilers/ui/installer.ts +++ b/src/compilers/ui/installer.ts @@ -173,6 +173,17 @@ export function getGamedataPath() { } } + case "linux": { + const gamedata = path.join(process.env.HOME!, "\\.local\\share\\mcpelauncher\\games\\com.mojang") + if (fs.existsSync(gamedata)) return (pathinfo.gamepath = gamedata) + else { + return (pathinfo.gamepath = path.join( + process.env.HOME!, + "\\.var\\app\\io.mrarm.mcpelauncher\\data\\mcpelauncher\\games\\com.mojang", + )) + } + } + default: { console.warn(`Your platform is not supported the install feature yet! \nYour OS version: ${os.version()}`) } From 688a66c052f16697e6679795e1a882fa72db0807 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 20 Feb 2026 23:51:23 +0700 Subject: [PATCH 055/245] fix linux path resolve --- package.json | 2 +- src/compilers/ui/installer.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 027c110..acfb461 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.0.6-indev", + "version": "4.0.7-indev", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", diff --git a/src/compilers/ui/installer.ts b/src/compilers/ui/installer.ts index ab2f6c9..24a6c6a 100644 --- a/src/compilers/ui/installer.ts +++ b/src/compilers/ui/installer.ts @@ -174,12 +174,12 @@ export function getGamedataPath() { } case "linux": { - const gamedata = path.join(process.env.HOME!, "\\.local\\share\\mcpelauncher\\games\\com.mojang") + const gamedata = path.join(process.env.HOME!, "/.local/share/mcpelauncher/games/com.mojang") if (fs.existsSync(gamedata)) return (pathinfo.gamepath = gamedata) else { return (pathinfo.gamepath = path.join( process.env.HOME!, - "\\.var\\app\\io.mrarm.mcpelauncher\\data\\mcpelauncher\\games\\com.mojang", + "/.var/app/io.mrarm.mcpelauncher/data/mcpelauncher/games/com.mojang", )) } } From de668a42a37186411d1c8b6ddf2ed9819743bddb Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 21 Feb 2026 00:03:48 +0700 Subject: [PATCH 056/245] test --- .gitignore | 3 ++- .npmignore | 4 +++- package.json | 2 +- src/compilers/Configuration.ts | 27 ++++++++++++++++----------- src/compilers/ui/builder.ts | 9 +++++++-- 5 files changed, 29 insertions(+), 16 deletions(-) diff --git a/.gitignore b/.gitignore index 83d1a01..8d3ebf9 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ build dist cache node_modules -.tsbuildinfo \ No newline at end of file +.tsbuildinfo +asajs.config.js \ No newline at end of file diff --git a/.npmignore b/.npmignore index 3525fde..24a9309 100644 --- a/.npmignore +++ b/.npmignore @@ -5,4 +5,6 @@ src test .gitignore .tsbuildinfo -tsconfig.json \ No newline at end of file +tsconfig.json +asajs.config.js +build \ No newline at end of file diff --git a/package.json b/package.json index acfb461..ba1bea4 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "scripts": { "build": "tsc", "dev": "tsc --watch", - "test": "bun test/app.ts", + "test": "bun test/app.ts --test", "prefetch": "bun scripts/prefetch", "vanilla:defs": "bun scripts/vanilladefs", "gen:enums": "bun scripts/enum", diff --git a/src/compilers/Configuration.ts b/src/compilers/Configuration.ts index edd05dc..6df0b8b 100644 --- a/src/compilers/Configuration.ts +++ b/src/compilers/Configuration.ts @@ -4,22 +4,27 @@ import path from "path" import { Config } from "../../config.js" import { createRequire } from "module" -if (!fs.existsSync("asajs.config.js")) { - fs.copyFileSync("node_modules/asajs/resources/asajs.config.js", "asajs.config.js") +const options: Record = {} + +for (const arg of process.argv) { + if (arg.startsWith("--")) options[arg.slice(2)] = true } -if (!fs.existsSync(".gitignore")) { - fs.writeFileSync(".gitignore", `node_modules`, "utf-8") +export const isTestMode = options["test"] ?? false + +if (!fs.existsSync("asajs.config.js")) { + fs.copyFileSync( + isTestMode ? "resources/asajs.config.js" : "node_modules/asajs/resources/asajs.config.js", + "asajs.config.js", + ) } export const config: Config = createRequire(import.meta.url)(path.resolve(process.cwd(), "asajs.config.js")).config -export let isBuildMode = config.compiler?.enabled ?? false -export let isLinkMode = config.compiler?.autoImport ?? false -export let unLinked = !(config.compiler?.autoImport ?? true) +export const isBuildMode = options["build"] ?? config.compiler?.enabled ?? false +export const isLinkMode = options["link"] ?? config.compiler?.autoImport ?? false +export const unLinked = options["unlink"] ?? !(config.compiler?.autoImport ?? true) -for (const arg of process.argv) { - if (arg === "--build") isBuildMode = true - if (arg === "--link") isLinkMode = true - else if (arg === "--unlink") unLinked = true +if (!fs.existsSync(".gitignore")) { + fs.writeFileSync(".gitignore", `node_modules`, "utf-8") } diff --git a/src/compilers/ui/builder.ts b/src/compilers/ui/builder.ts index e06cb11..af6f775 100644 --- a/src/compilers/ui/builder.ts +++ b/src/compilers/ui/builder.ts @@ -1,4 +1,4 @@ -import { config, isBuildMode, isLinkMode, unLinked } from "../Configuration.js" +import { config, isBuildMode, isLinkMode, isTestMode, unLinked } from "../Configuration.js" import { Memory } from "../Memory.js" import { createBuildFolder, gamePath, getBuildFolderName, linkToGame, unlink } from "./linker.js" import { genManifest, version } from "./manifest.js" @@ -56,7 +56,12 @@ async function buildUI() { BuildCache.set("version", version).then(() => Log("INFO", "version set!")), fs .stat("build/pack_icon.png") - .catch(() => fs.copyFile("node_modules/asajs/resources/pack_icon.png", "build/pack_icon.png")) + .catch(() => + fs.copyFile( + isTestMode ? "resources/pack_icon.png" : "node_modules/asajs/resources/pack_icon.png", + "build/pack_icon.png", + ), + ) .then(() => Log("INFO", "build/pack_icon.png copied!")), ]) From 6bd3f548423a31be6c8a81b79f1aa8ac3e7505bd Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 21 Feb 2026 00:07:32 +0700 Subject: [PATCH 057/245] nothing --- src/compilers/Configuration.ts | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/compilers/Configuration.ts b/src/compilers/Configuration.ts index 6df0b8b..af843ee 100644 --- a/src/compilers/Configuration.ts +++ b/src/compilers/Configuration.ts @@ -13,10 +13,14 @@ for (const arg of process.argv) { export const isTestMode = options["test"] ?? false if (!fs.existsSync("asajs.config.js")) { - fs.copyFileSync( - isTestMode ? "resources/asajs.config.js" : "node_modules/asajs/resources/asajs.config.js", - "asajs.config.js", - ) + if (isTestMode) { + fs.writeFileSync( + "asajs.config.js", + fs.readFileSync("resources/asajs.config.js", "utf-8").replace("asajs/", "./"), + ) + } else { + fs.copyFileSync("node_modules/asajs/resources/asajs.config.js", "asajs.config.js") + } } export const config: Config = createRequire(import.meta.url)(path.resolve(process.cwd(), "asajs.config.js")).config From 63315c35c42bf7b1cf191d92c3b8e3a1a1c435a0 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 21 Feb 2026 13:57:10 +0700 Subject: [PATCH 058/245] custom binding function config --- config.d.ts | 8 ++++++- package.json | 2 +- resources/asajs.config.js | 17 +++++++++++++- src/compilers/Configuration.ts | 37 ++++++++++++++++++++++++++---- src/compilers/bindings/Function.ts | 25 +++++++++++++++++++- src/compilers/ui/builder.ts | 5 +++- src/compilers/ui/linker.ts | 2 +- test/app.ts | 16 +++++++++---- 8 files changed, 97 insertions(+), 15 deletions(-) diff --git a/config.d.ts b/config.d.ts index 6c3ff0f..8ed1ab4 100644 --- a/config.d.ts +++ b/config.d.ts @@ -1,4 +1,9 @@ -import { Variable } from "./src/types/properties/value.ts" +import { BindingItem, Variable } from "./src/types/properties/value.ts" + +export interface RetBindingValue { + generate_bindings?: Array<{ source_property_name: string; target_property_name: string }> + return_value: string +} export interface Config { compiler?: { @@ -27,4 +32,5 @@ export interface Config { }[] } global_variables?: Record + binding_functions?: Record RetBindingValue> } diff --git a/package.json b/package.json index ba1bea4..acfb461 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "scripts": { "build": "tsc", "dev": "tsc --watch", - "test": "bun test/app.ts --test", + "test": "bun test/app.ts", "prefetch": "bun scripts/prefetch", "vanilla:defs": "bun scripts/vanilladefs", "gen:enums": "bun scripts/enum", diff --git a/resources/asajs.config.js b/resources/asajs.config.js index 018faf9..2d42c27 100644 --- a/resources/asajs.config.js +++ b/resources/asajs.config.js @@ -6,7 +6,7 @@ export const config = { packinfo: { name: "AsaJS", description: "Create your Minecraft JSON-UI resource packs using JavaScript.", - version: [4, 0, 1], + version: [1, 0, 0], }, compiler: { enabled: true, @@ -14,4 +14,19 @@ export const config = { autoEnable: true, importToPreview: false, }, + binding_functions: { + custom_abs: function (number) { + const randomAbs = RandomBindingString(16) + + return { + generate_bindings: [ + { + source_property_name: `[ abs(${number}) ]`, + target_property_name: randomAbs, + }, + ], + return_value: randomAbs, + } + }, + }, } diff --git a/src/compilers/Configuration.ts b/src/compilers/Configuration.ts index af843ee..ea74ec8 100644 --- a/src/compilers/Configuration.ts +++ b/src/compilers/Configuration.ts @@ -1,7 +1,7 @@ import fs from "fs" import path from "path" // @ts-ignore -import { Config } from "../../config.js" +import { Config, RetBindingValue } from "../../config.js" import { createRequire } from "module" const options: Record = {} @@ -10,16 +10,43 @@ for (const arg of process.argv) { if (arg.startsWith("--")) options[arg.slice(2)] = true } -export const isTestMode = options["test"] ?? false +export const isTestMode = !fs.existsSync("node_modules/asajs") if (!fs.existsSync("asajs.config.js")) { if (isTestMode) { fs.writeFileSync( "asajs.config.js", - fs.readFileSync("resources/asajs.config.js", "utf-8").replace("asajs/", "./"), + [ + `export function RandomBindingString(length, base = 32) { + const chars = "0123456789abcdefghijklmnopqrstuvwxyz".slice(0, base) + const out = new Array() + + try { + const buffer = new Uint8Array(length) + crypto.getRandomValues(buffer) + for (let i = 0; i < length; i++) { + out[i] = chars[buffer[i] % base] + } + } catch { + for (let i = 0; i < length; i++) { + out[i] = chars[Math.floor(Math.random() * base)] + } + } + + return \`#$\{out.join("")}\` +}\n`, + + fs.readFileSync("resources/asajs.config.js", "utf-8").replace("asajs/", "./"), + ].join("\n"), ) } else { - fs.copyFileSync("node_modules/asajs/resources/asajs.config.js", "asajs.config.js") + fs.writeFileSync( + "asajs.config.js", + [ + 'import { RandomBindingString } from "asajs"\n', + fs.readFileSync("node_modules/asajs/resources/asajs.config.js", "utf-8"), + ].join("\n"), + ) } } @@ -29,6 +56,8 @@ export const isBuildMode = options["build"] ?? config.compiler?.enabled ?? false export const isLinkMode = options["link"] ?? config.compiler?.autoImport ?? false export const unLinked = options["unlink"] ?? !(config.compiler?.autoImport ?? true) +export const bindingFuntions = config.binding_functions + if (!fs.existsSync(".gitignore")) { fs.writeFileSync(".gitignore", `node_modules`, "utf-8") } diff --git a/src/compilers/bindings/Function.ts b/src/compilers/bindings/Function.ts index 3b99b2e..ae2a050 100644 --- a/src/compilers/bindings/Function.ts +++ b/src/compilers/bindings/Function.ts @@ -1,4 +1,6 @@ -import { RandomBindingString } from "../../components/Utils.js" +import { RandomBindingString, ResolveBinding } from "../../components/Utils.js" +import { BindingItem } from "../../types/properties/value.js" +import { bindingFuntions } from "../Configuration.js" import { Expression, GenBinding } from "./types.js" type CallbackRet = { @@ -198,3 +200,24 @@ export const defaultFunctions = { } satisfies Record Object.entries(defaultFunctions).forEach(([key, value]) => FunctionMap.set(key, value)) +if (bindingFuntions) + Object.entries(bindingFuntions).forEach(([key, value]) => { + // @ts-ignore + FunctionMap.set(key, (...args) => { + const { generate_bindings, return_value } = value(...args) + if (generate_bindings) { + const resolve = ResolveBinding(new Map(), ...(generate_bindings as BindingItem[])) + return { + genBindings: resolve.map(({ source_property_name, target_property_name }) => ({ + source: source_property_name!, + target: target_property_name!, + })), + value: return_value, + } + } + + return { + value: return_value, + } + }) + }) diff --git a/src/compilers/ui/builder.ts b/src/compilers/ui/builder.ts index af6f775..65709dc 100644 --- a/src/compilers/ui/builder.ts +++ b/src/compilers/ui/builder.ts @@ -88,7 +88,10 @@ if (isBuildMode) { console.log("Version:", config.packinfo?.version || [4, 0, 0]) console.log("UUID:", await BuildCache.get<[string, string]>("uuid")) if (gamePath) - console.log("Install Path:", `\x1b[32m"${path.join(gamePath, await getBuildFolderName())}"\x1b[0m`) + console.log( + "Install Path:", + `\x1b[32m"${path.join(gamePath, "development_resource_packs", await getBuildFolderName())}"\x1b[0m`, + ) console.log("=============================================================") } }) diff --git a/src/compilers/ui/linker.ts b/src/compilers/ui/linker.ts index d69e044..19a96bf 100644 --- a/src/compilers/ui/linker.ts +++ b/src/compilers/ui/linker.ts @@ -41,7 +41,7 @@ export async function createBuildFolder() { } export async function getBuildFolderName() { - return await BuildCache.getWithSetDefault("build-key", () => RandomString(16)) + return await BuildCache.getWithSetDefault("build-key", () => `asajs-build-${RandomString(16)}`) } export let gamePath: string | null = null diff --git a/test/app.ts b/test/app.ts index 29a503a..fefcd00 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1,10 +1,16 @@ import { Anchor, Label, Modify } from ".." -const label = Label({ - text: "Hello World from my Custom UI!", - shadow: true, - anchor: Anchor.TOP_MIDDLE, - offset: [0, 10], +const label = Label( + { + text: "Hello World from my Custom UI!", + shadow: true, + anchor: Anchor.TOP_MIDDLE, + offset: [0, 10], + }, + "test", +).addBindings({ + source_property_name: `[ custom_abs(#a) ]`, + target_property_name: "#text", }) Modify("start", "start_screen_content").insertChild(label) From e162ff92073115aecef53baf8157bde0e50e1b05 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sun, 22 Feb 2026 13:21:24 +0700 Subject: [PATCH 059/245] idk --- config.d.ts | 3 ++- package.json | 2 +- src/compilers/Configuration.ts | 9 +++++++-- src/compilers/PreCompile.ts | 4 +++- src/compilers/ui/buildcache.ts | 15 +++++++++------ src/compilers/ui/builder.ts | 27 ++++++++++++++++----------- src/components/API.ts | 11 +++++++++++ src/index.ts | 1 + 8 files changed, 50 insertions(+), 22 deletions(-) create mode 100644 src/components/API.ts diff --git a/config.d.ts b/config.d.ts index 8ed1ab4..65c10d1 100644 --- a/config.d.ts +++ b/config.d.ts @@ -1,4 +1,4 @@ -import { BindingItem, Variable } from "./src/types/properties/value.ts" +import { Variable } from "./src/types/properties/value.ts" export interface RetBindingValue { generate_bindings?: Array<{ source_property_name: string; target_property_name: string }> @@ -13,6 +13,7 @@ export interface Config { autoEnable?: boolean gdkUserId?: string fixInventoryItemRenderer?: boolean + buildFolder?: string } packinfo?: { name?: string diff --git a/package.json b/package.json index acfb461..4e83b8a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.0.7-indev", + "version": "4.0.9", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", diff --git a/src/compilers/Configuration.ts b/src/compilers/Configuration.ts index ea74ec8..8cd79ee 100644 --- a/src/compilers/Configuration.ts +++ b/src/compilers/Configuration.ts @@ -1,6 +1,6 @@ import fs from "fs" import path from "path" -// @ts-ignore +import jsonc from "jsonc-parser" import { Config, RetBindingValue } from "../../config.js" import { createRequire } from "module" @@ -10,7 +10,11 @@ for (const arg of process.argv) { if (arg.startsWith("--")) options[arg.slice(2)] = true } -export const isTestMode = !fs.existsSync("node_modules/asajs") +export let isTestMode = false +try { + const { name } = jsonc.parse(fs.readFileSync(path.resolve("package.json"), "utf-8")) + if (name === "asajs") isTestMode = true +} catch (error) {} if (!fs.existsSync("asajs.config.js")) { if (isTestMode) { @@ -55,6 +59,7 @@ export const config: Config = createRequire(import.meta.url)(path.resolve(proces export const isBuildMode = options["build"] ?? config.compiler?.enabled ?? false export const isLinkMode = options["link"] ?? config.compiler?.autoImport ?? false export const unLinked = options["unlink"] ?? !(config.compiler?.autoImport ?? true) +export const buildFolder = config.compiler?.buildFolder || "build" export const bindingFuntions = config.binding_functions diff --git a/src/compilers/PreCompile.ts b/src/compilers/PreCompile.ts index 48c5694..6dccbe0 100644 --- a/src/compilers/PreCompile.ts +++ b/src/compilers/PreCompile.ts @@ -19,12 +19,14 @@ Array.prototype.lastItem = function () { } const now = performance.now() -type LogType = "INFO" +type LogType = "INFO" | "WARN" function TypeHighlight(type: LogType) { switch (type) { case "INFO": return `\x1b[32mINFO\x1b[0m` + case "WARN": + return `\x1b[33mWARN\x1b[0m` default: return type satisfies never } diff --git a/src/compilers/ui/buildcache.ts b/src/compilers/ui/buildcache.ts index 97b1f5b..3216234 100644 --- a/src/compilers/ui/buildcache.ts +++ b/src/compilers/ui/buildcache.ts @@ -1,4 +1,5 @@ import fs from "fs/promises" +import { buildFolder } from "../Configuration.js" export class BuildCache { private static queue: Promise = Promise.resolve() @@ -14,7 +15,9 @@ export class BuildCache { static async get(key: string): Promise { return this.enqueue(async () => { try { - return await fs.readFile("build/cache.json", "utf-8").then(data => JSON.parse(data)[key] ?? null) + return await fs + .readFile(`${buildFolder}/cache.json`, "utf-8") + .then(data => JSON.parse(data)[key] ?? null) } catch (error) { return null } @@ -33,13 +36,13 @@ export class BuildCache { let data: Record = {} try { - data = JSON.parse(await fs.readFile("build/cache.json", "utf-8")) + data = JSON.parse(await fs.readFile(`${buildFolder}/cache.json`, "utf-8")) } catch {} if (key in data) return data[key] data[key] = outVal - await fs.writeFile("build/cache.json", JSON.stringify(data), "utf-8") + await fs.writeFile(`${buildFolder}/cache.json`, JSON.stringify(data), "utf-8") return outVal }) } @@ -48,15 +51,15 @@ export class BuildCache { return this.enqueue(async () => { try { return fs.writeFile( - "build/cache.json", + `${buildFolder}/cache.json`, JSON.stringify({ - ...(await fs.readFile("build/cache.json", "utf-8").then(data => JSON.parse(data))), + ...(await fs.readFile(`${buildFolder}/cache.json`, "utf-8").then(data => JSON.parse(data))), [key]: value, }), "utf-8", ) } catch (error) { - return fs.writeFile("build/cache.json", JSON.stringify({ [key]: value }), "utf-8") + return fs.writeFile(`${buildFolder}/cache.json`, JSON.stringify({ [key]: value }), "utf-8") } }) } diff --git a/src/compilers/ui/builder.ts b/src/compilers/ui/builder.ts index 65709dc..33fe14b 100644 --- a/src/compilers/ui/builder.ts +++ b/src/compilers/ui/builder.ts @@ -1,4 +1,4 @@ -import { config, isBuildMode, isLinkMode, isTestMode, unLinked } from "../Configuration.js" +import { buildFolder, config, isBuildMode, isLinkMode, isTestMode, unLinked } from "../Configuration.js" import { Memory } from "../Memory.js" import { createBuildFolder, gamePath, getBuildFolderName, linkToGame, unlink } from "./linker.js" import { genManifest, version } from "./manifest.js" @@ -9,6 +9,7 @@ import { BuildCache } from "./buildcache.js" import { disableRSP, enableRSP } from "./installer.js" import { Log } from "../PreCompile.js" import path from "path" +import { API_events } from "../../components/API.js" async function buildUI() { const build = Memory.build() @@ -20,8 +21,8 @@ async function buildUI() { if (config.global_variables) build.set("ui/_global_variables.json", config.global_variables) const out = await Promise.all( - build.entries().map(async ([file, value]) => { - const outFile = `build/${file}` + Array.from(build.entries()).map(async ([file, value]) => { + const outFile = `${buildFolder}/${file}` await fs .stat(outFile.split(/\\|\//g).slice(0, -1).join("/")) .catch(async () => await fs.mkdir(outFile.split(/\\|\//g).slice(0, -1).join("/"), { recursive: true })) @@ -47,23 +48,24 @@ async function buildUI() { await Promise.all([ fs - .writeFile("build/manifest.json", await genManifest(), "utf-8") - .then(() => Log("INFO", "build/manifest.json created!")), + .writeFile(`${buildFolder}/manifest.json`, await genManifest(), "utf-8") + .then(() => Log("INFO", `${buildFolder}/manifest.json created!`)), fs - .writeFile("build/.gitignore", [...out, "manifest.json"].join("\n"), "utf-8") - .then(() => Log("INFO", "build/.gitignore created!")), + .writeFile(`${buildFolder}/.gitignore`, [...out, "manifest.json"].join("\n"), "utf-8") + .then(() => Log("INFO", `${buildFolder}/.gitignore created!`)), BuildCache.set("build-files", [...out, "manifest.json"]).then(() => Log("INFO", "build-files set!")), BuildCache.set("version", version).then(() => Log("INFO", "version set!")), fs - .stat("build/pack_icon.png") + .stat(`${buildFolder}/pack_icon.png`) .catch(() => fs.copyFile( isTestMode ? "resources/pack_icon.png" : "node_modules/asajs/resources/pack_icon.png", - "build/pack_icon.png", + `${buildFolder}/pack_icon.png`, ), ) - .then(() => Log("INFO", "build/pack_icon.png copied!")), - ]) + .then(() => Log("INFO", `${buildFolder}/pack_icon.png copied!`)) + .catch(() => Log("WARN", `cannot copy ${buildFolder}/pack_icon.png!`)), + ]).catch(error => console.error(error)) return out.length } @@ -93,6 +95,9 @@ if (isBuildMode) { `\x1b[32m"${path.join(gamePath, "development_resource_packs", await getBuildFolderName())}"\x1b[0m`, ) console.log("=============================================================") + + // API events + API_events.onBuildFinish.forEach(v => v(config)) } }) } else if (isLinkMode) linkToGame() diff --git a/src/components/API.ts b/src/components/API.ts new file mode 100644 index 0000000..32b883a --- /dev/null +++ b/src/components/API.ts @@ -0,0 +1,11 @@ +import { Config } from "../../config.js" + +export const API_events: { onBuildFinish: ((config: Config) => void)[] } = { + onBuildFinish: [], +} + +export const API = { + onBuildFinish: function (callback: (config: Config) => void) { + API_events.onBuildFinish.push(callback) + }, +} diff --git a/src/index.ts b/src/index.ts index 5a642f4..239aff6 100644 --- a/src/index.ts +++ b/src/index.ts @@ -16,3 +16,4 @@ export { ItemAuxID } from "./types/enums/Items.js" export { ArrayName, Operation } from "./types/properties/index.js" export * from "./compilers/bindings/Binary.js" +export { API } from "./components/API.js" From 85d60e5db1cbc32d372b13545ac3903eb815a0ba Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sun, 22 Feb 2026 13:23:39 +0700 Subject: [PATCH 060/245] change npm license --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 4e83b8a..6b318eb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.0.9", + "version": "4.0.11-indev", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", @@ -14,7 +14,7 @@ "type": "git", "url": "git+https://github.com/asakiyuki/asajs.git" }, - "license": "MIT", + "license": "GPL-3.0-only", "author": "Asaki Yuki", "type": "module", "main": "dist/js/index.js", From d1a7399e2fe872abdd58faf7c388d4bd983f5f4e Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sun, 22 Feb 2026 16:04:31 +0700 Subject: [PATCH 061/245] optimize paths --- config.d.ts | 6 + package.json | 7 +- scripts/paths-optimize.ts | 16 + scripts/vanilladefs.ts | 20 + src/analyzer/custom-ui.ts | 0 src/analyzer/vanilladefs.ts | 143604 +++++++++++++++++++++ src/compilers/bindings/Checker.ts | 4 + src/compilers/bindings/Function.ts | 57 +- src/components/UI.ts | 19 +- src/components/Utils.ts | 8 +- src/types/enums/Items.ts | 1 + src/types/properties/element/Control.ts | 1 + src/types/vanilla/intellisense.ts | 297 +- src/types/vanilla/paths.ts | 19680 +-- 14 files changed, 144113 insertions(+), 19607 deletions(-) create mode 100644 scripts/paths-optimize.ts create mode 100644 src/analyzer/custom-ui.ts create mode 100644 src/analyzer/vanilladefs.ts diff --git a/config.d.ts b/config.d.ts index 65c10d1..48a767b 100644 --- a/config.d.ts +++ b/config.d.ts @@ -15,6 +15,12 @@ export interface Config { fixInventoryItemRenderer?: boolean buildFolder?: string } + + ui_analyzer?: { + enabled?: boolean + imports?: string[] + } + packinfo?: { name?: string description?: string diff --git a/package.json b/package.json index 6b318eb..0cee075 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.0.11-indev", + "version": "4.0.13", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", @@ -25,11 +25,12 @@ "test": "bun test/app.ts", "prefetch": "bun scripts/prefetch", "vanilla:defs": "bun scripts/vanilladefs", + "vanilla:paths-optimize": "bun scripts/paths-optimize", "gen:enums": "bun scripts/enum", "gen:items": "bun scripts/items", "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", - "full-build-preview": "bun run prefetch --preview;\nbun run vanilla:defs;\nbun run gen:enums;\nbun run gen:items --preview;\nbun run gen:autocomplete;\nbun run build" + "full-build": "bun run prefetch;\nbun run vanilla:defs;\nbun run gen:enums;\nbun run gen:items;\nbun run gen:autocomplete;\nbun run vanilla:paths-optimize;\nbun run build", + "full-build-preview": "bun run prefetch --preview;\nbun run vanilla:defs;\nbun run gen:enums;\nbun run gen:items --preview;\nbun run gen:autocomplete;\nbun run vanilla:paths-optimize;\nbun run build" }, "devDependencies": { "@types/node": "^25.0.3", diff --git a/scripts/paths-optimize.ts b/scripts/paths-optimize.ts new file mode 100644 index 0000000..9a3f1e6 --- /dev/null +++ b/scripts/paths-optimize.ts @@ -0,0 +1,16 @@ +import { writeFileSync } from "fs" +import { paths } from "../src/types/vanilla/paths" + +const newPaths: Record = {} + +Object.entries(paths).forEach(([key, values]) => { + const paths = Array.from(new Set(Object.values(values))) + console.log(key) + if (paths.length === 1) { + newPaths[key] = paths[0] + } else { + newPaths[key] = values + } +}) + +writeFileSync("src/types/vanilla/paths.ts", `export const paths = ${JSON.stringify(newPaths, null, 4)}`, "utf-8") diff --git a/scripts/vanilladefs.ts b/scripts/vanilladefs.ts index 84bcf99..a61aeac 100644 --- a/scripts/vanilladefs.ts +++ b/scripts/vanilladefs.ts @@ -146,7 +146,27 @@ for (const [namespace, elements] of vanilla) { } } +const prefix = `interface Element { + file: string + type: string + children?: string[] + extend?: { + name: string + namespace: string + } +} + +interface VanillaDefs { + [key: string]: { + [key: string]: Element + } +}` + fs.writeFileSync("cache/vanilla-defs.json", JSON.stringify(json, null, 4)) +fs.writeFileSync( + "src/analyzer/vanilladefs.ts", + `${prefix}\n\nexport const vanilladefs: VanillaDefs = ${JSON.stringify(json, null, 4)}`, +) // Types interface VanillaElement { diff --git a/src/analyzer/custom-ui.ts b/src/analyzer/custom-ui.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/analyzer/vanilladefs.ts b/src/analyzer/vanilladefs.ts new file mode 100644 index 0000000..c6172b6 --- /dev/null +++ b/src/analyzer/vanilladefs.ts @@ -0,0 +1,143604 @@ +interface Element { + file: string + type: string + children?: string[] + extend?: { + name: string + namespace: string + } +} + +interface VanillaDefs { + [key: string]: { + [key: string]: Element + } +} + +export const vanilladefs: VanillaDefs = { + "achievement": { + "empty_progress_bar_icon": { + "file": "ui/achievement_screen.json", + "type": "image" + }, + "full_progress_bar_icon_base": { + "file": "ui/achievement_screen.json", + "type": "image" + } + }, + "add_external_server": { + "play_button": { + "file": "ui/add_external_server_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "play_disabled_button": { + "file": "ui/add_external_server_screen.json", + "type": "button", + "extend": { + "name": "play_button", + "namespace": "add_external_server" + } + }, + "remove_button": { + "file": "ui/add_external_server_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "save_button": { + "file": "ui/add_external_server_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "save_disabled_button": { + "file": "ui/add_external_server_screen.json", + "type": "button", + "extend": { + "name": "save_button", + "namespace": "add_external_server" + } + }, + "text_edit_group": { + "file": "ui/add_external_server_screen.json", + "type": "stack_panel", + "children": [ + "name_label", + "edit_box" + ] + }, + "text_edit_group/name_label": { + "file": "ui/add_external_server_screen.json", + "type": "label" + }, + "text_edit_group/edit_box": { + "file": "ui/add_external_server_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "title_text": { + "file": "ui/add_external_server_screen.json", + "type": "label" + }, + "content_panel": { + "file": "ui/add_external_server_screen.json", + "type": "stack_panel", + "children": [ + "name_edit", + "ip_edit", + "port_edit" + ] + }, + "content_panel/name_edit": { + "file": "ui/add_external_server_screen.json", + "type": "stack_panel", + "extend": { + "name": "text_edit_group", + "namespace": "add_external_server" + } + }, + "content_panel/ip_edit": { + "file": "ui/add_external_server_screen.json", + "type": "stack_panel", + "extend": { + "name": "text_edit_group", + "namespace": "add_external_server" + } + }, + "content_panel/port_edit": { + "file": "ui/add_external_server_screen.json", + "type": "stack_panel", + "extend": { + "name": "text_edit_group", + "namespace": "add_external_server" + } + }, + "main_panel": { + "file": "ui/add_external_server_screen.json", + "type": "input_panel", + "children": [ + "common_panel", + "title", + "main_content", + "play", + "play_disabled", + "remove", + "save", + "save_disabled" + ] + }, + "main_panel/common_panel": { + "file": "ui/add_external_server_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "main_panel/title": { + "file": "ui/add_external_server_screen.json", + "type": "label", + "extend": { + "name": "title_text", + "namespace": "add_external_server" + } + }, + "main_panel/main_content": { + "file": "ui/add_external_server_screen.json", + "type": "stack_panel", + "extend": { + "name": "content_panel", + "namespace": "add_external_server" + } + }, + "main_panel/play": { + "file": "ui/add_external_server_screen.json", + "type": "button", + "extend": { + "name": "play_button", + "namespace": "add_external_server" + } + }, + "main_panel/play_disabled": { + "file": "ui/add_external_server_screen.json", + "type": "button", + "extend": { + "name": "play_disabled_button", + "namespace": "add_external_server" + } + }, + "main_panel/remove": { + "file": "ui/add_external_server_screen.json", + "type": "button", + "extend": { + "name": "remove_button", + "namespace": "add_external_server" + } + }, + "main_panel/save": { + "file": "ui/add_external_server_screen.json", + "type": "button", + "extend": { + "name": "save_button", + "namespace": "add_external_server" + } + }, + "main_panel/save_disabled": { + "file": "ui/add_external_server_screen.json", + "type": "button", + "extend": { + "name": "save_disabled_button", + "namespace": "add_external_server" + } + }, + "gamepad_helpers": { + "file": "ui/add_external_server_screen.json", + "type": "panel", + "children": [ + "gamepad_helper_a" + ] + }, + "gamepad_helpers/gamepad_helper_a": { + "file": "ui/add_external_server_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_a", + "namespace": "common" + } + }, + "add_external_server_screen_new": { + "file": "ui/add_external_server_screen.json", + "type": "screen", + "extend": { + "name": "add_external_server_screen", + "namespace": "add_external_server" + } + }, + "add_external_server_screen_edit": { + "file": "ui/add_external_server_screen.json", + "type": "screen", + "extend": { + "name": "add_external_server_screen", + "namespace": "add_external_server" + } + }, + "add_external_server_screen": { + "file": "ui/add_external_server_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "add_external_server_screen_content": { + "file": "ui/add_external_server_screen.json", + "type": "panel", + "children": [ + "root_panel" + ] + }, + "add_external_server_screen_content/root_panel": { + "file": "ui/add_external_server_screen.json", + "type": "panel", + "children": [ + "gamepad_helpers", + "main_panel" + ] + }, + "add_external_server_screen_content/root_panel/gamepad_helpers": { + "file": "ui/add_external_server_screen.json", + "type": "panel", + "extend": { + "name": "gamepad_helpers", + "namespace": "add_external_server" + } + }, + "add_external_server_screen_content/root_panel/main_panel": { + "file": "ui/add_external_server_screen.json", + "type": "input_panel", + "extend": { + "name": "main_panel", + "namespace": "add_external_server" + } + } + }, + "adhoc_inprogress": { + "title_text": { + "file": "ui/adhoc_inprogess_screen.json", + "type": "label" + }, + "main_panel": { + "file": "ui/adhoc_inprogess_screen.json", + "type": "panel", + "children": [ + "common_panel", + "title", + "main_content", + "progress_loading_bars" + ] + }, + "main_panel/common_panel": { + "file": "ui/adhoc_inprogess_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "main_panel/title": { + "file": "ui/adhoc_inprogess_screen.json", + "type": "label", + "extend": { + "name": "title_text", + "namespace": "adhoc" + } + }, + "main_panel/main_content": { + "file": "ui/adhoc_inprogess_screen.json", + "type": "label" + }, + "main_panel/progress_loading_bars": { + "file": "ui/adhoc_inprogess_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "play" + } + }, + "adhoc_inprogress_screen": { + "file": "ui/adhoc_inprogess_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "adhoc_inprogress_screen_content": { + "file": "ui/adhoc_inprogess_screen.json", + "type": "panel", + "children": [ + "root_panel" + ] + }, + "adhoc_inprogress_screen_content/root_panel": { + "file": "ui/adhoc_inprogess_screen.json", + "type": "panel", + "children": [ + "main_panel" + ] + }, + "adhoc_inprogress_screen_content/root_panel/main_panel": { + "file": "ui/adhoc_inprogess_screen.json", + "type": "panel", + "extend": { + "name": "main_panel", + "namespace": "adhoc_inprogress" + } + } + }, + "adhoc": { + "online_button": { + "file": "ui/adhoc_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "local_button": { + "file": "ui/adhoc_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "title_text": { + "file": "ui/adhoc_screen.json", + "type": "label" + }, + "content_panel": { + "file": "ui/adhoc_screen.json", + "type": "stack_panel", + "children": [ + "title_text" + ] + }, + "content_panel/title_text": { + "file": "ui/adhoc_screen.json", + "type": "label" + }, + "main_panel": { + "file": "ui/adhoc_screen.json", + "type": "input_panel", + "children": [ + "common_panel", + "title", + "main_content", + "online", + "local" + ] + }, + "main_panel/common_panel": { + "file": "ui/adhoc_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "main_panel/title": { + "file": "ui/adhoc_screen.json", + "type": "label", + "extend": { + "name": "title_text", + "namespace": "adhoc" + } + }, + "main_panel/main_content": { + "file": "ui/adhoc_screen.json", + "type": "label" + }, + "main_panel/online": { + "file": "ui/adhoc_screen.json", + "type": "button", + "extend": { + "name": "online_button", + "namespace": "adhoc" + } + }, + "main_panel/local": { + "file": "ui/adhoc_screen.json", + "type": "button", + "extend": { + "name": "local_button", + "namespace": "adhoc" + } + }, + "gamepad_helpers": { + "file": "ui/adhoc_screen.json", + "type": "panel", + "children": [ + "gamepad_helper_a" + ] + }, + "gamepad_helpers/gamepad_helper_a": { + "file": "ui/adhoc_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_a", + "namespace": "common" + } + }, + "adhoc_screen": { + "file": "ui/adhoc_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "adhoc_screen_content": { + "file": "ui/adhoc_screen.json", + "type": "panel", + "children": [ + "root_panel" + ] + }, + "adhoc_screen_content/root_panel": { + "file": "ui/adhoc_screen.json", + "type": "panel", + "children": [ + "gamepad_helpers", + "main_panel" + ] + }, + "adhoc_screen_content/root_panel/gamepad_helpers": { + "file": "ui/adhoc_screen.json", + "type": "panel", + "extend": { + "name": "gamepad_helpers", + "namespace": "adhoc" + } + }, + "adhoc_screen_content/root_panel/main_panel": { + "file": "ui/adhoc_screen.json", + "type": "input_panel", + "extend": { + "name": "main_panel", + "namespace": "adhoc" + } + } + }, + "anvil": { + "generic_label": { + "file": "ui/anvil_screen.json", + "type": "label" + }, + "anvil_icon": { + "file": "ui/anvil_screen.json", + "type": "image" + }, + "title_label": { + "file": "ui/anvil_screen.json", + "type": "label", + "extend": { + "name": "generic_label", + "namespace": "anvil" + } + }, + "anvil_icon_panel": { + "file": "ui/anvil_screen.json", + "type": "panel", + "children": [ + "anvil_icon" + ] + }, + "anvil_icon_panel/anvil_icon": { + "file": "ui/anvil_screen.json", + "type": "image", + "extend": { + "name": "anvil_icon", + "namespace": "anvil" + } + }, + "text_edit_control": { + "file": "ui/anvil_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "icon_and_text_panel": { + "file": "ui/anvil_screen.json", + "type": "panel", + "children": [ + "anvil_icon_panel", + "anvil_title_and_text_panel" + ] + }, + "icon_and_text_panel/anvil_icon_panel": { + "file": "ui/anvil_screen.json", + "type": "panel", + "extend": { + "name": "anvil_icon_panel", + "namespace": "anvil" + } + }, + "icon_and_text_panel/anvil_title_and_text_panel": { + "file": "ui/anvil_screen.json", + "type": "panel", + "extend": { + "name": "anvil_title_and_text_panel", + "namespace": "anvil" + } + }, + "title_panel": { + "file": "ui/anvil_screen.json", + "type": "panel", + "children": [ + "title_label" + ] + }, + "title_panel/title_label": { + "file": "ui/anvil_screen.json", + "type": "label", + "extend": { + "name": "title_label", + "namespace": "anvil" + } + }, + "text_edit_panel": { + "file": "ui/anvil_screen.json", + "type": "panel", + "children": [ + "text_edit_control" + ] + }, + "text_edit_panel/text_edit_control": { + "file": "ui/anvil_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_control", + "namespace": "anvil" + } + }, + "anvil_title_and_text_panel": { + "file": "ui/anvil_screen.json", + "type": "panel", + "children": [ + "title_panel", + "text_edit_panel" + ] + }, + "anvil_title_and_text_panel/title_panel": { + "file": "ui/anvil_screen.json", + "type": "panel", + "extend": { + "name": "title_panel", + "namespace": "anvil" + } + }, + "anvil_title_and_text_panel/text_edit_panel": { + "file": "ui/anvil_screen.json", + "type": "panel", + "extend": { + "name": "text_edit_panel", + "namespace": "anvil" + } + }, + "plus_sign_icon": { + "file": "ui/anvil_screen.json", + "type": "image" + }, + "arrow_icon": { + "file": "ui/anvil_screen.json", + "type": "image" + }, + "cross_out_icon": { + "file": "ui/anvil_screen.json", + "type": "image" + }, + "anvil_output_slot_button": { + "file": "ui/anvil_screen.json", + "type": "button", + "extend": { + "name": "container_slot_button_prototype", + "namespace": "common" + } + }, + "anvil_item_slot": { + "file": "ui/anvil_screen.json", + "type": "panel", + "children": [ + "container_item" + ] + }, + "anvil_item_slot/container_item": { + "file": "ui/anvil_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "recipe_grid": { + "file": "ui/anvil_screen.json", + "type": "grid", + "children": [ + "input_item_slot", + "plus", + "material_item_slot", + "yields", + "result_item_slot" + ] + }, + "recipe_grid/input_item_slot": { + "file": "ui/anvil_screen.json", + "type": "panel", + "extend": { + "name": "anvil_item_slot", + "namespace": "anvil" + } + }, + "recipe_grid/plus": { + "file": "ui/anvil_screen.json", + "type": "panel", + "children": [ + "plus_sign_icon" + ] + }, + "recipe_grid/plus/plus_sign_icon": { + "file": "ui/anvil_screen.json", + "type": "image", + "extend": { + "name": "plus_sign_icon", + "namespace": "anvil" + } + }, + "recipe_grid/material_item_slot": { + "file": "ui/anvil_screen.json", + "type": "panel", + "extend": { + "name": "anvil_item_slot", + "namespace": "anvil" + } + }, + "recipe_grid/yields": { + "file": "ui/anvil_screen.json", + "type": "panel", + "children": [ + "arrow_icon", + "cross_out_icon" + ] + }, + "recipe_grid/yields/arrow_icon": { + "file": "ui/anvil_screen.json", + "type": "image", + "extend": { + "name": "arrow_icon", + "namespace": "anvil" + } + }, + "recipe_grid/yields/cross_out_icon": { + "file": "ui/anvil_screen.json", + "type": "image", + "extend": { + "name": "cross_out_icon", + "namespace": "anvil" + } + }, + "recipe_grid/result_item_slot": { + "file": "ui/anvil_screen.json", + "type": "panel", + "extend": { + "name": "anvil_item_slot", + "namespace": "anvil" + } + }, + "cost_label": { + "file": "ui/anvil_screen.json", + "type": "label", + "extend": { + "name": "generic_label", + "namespace": "anvil" + }, + "children": [ + "gray" + ] + }, + "cost_label/gray": { + "file": "ui/anvil_screen.json", + "type": "image", + "extend": { + "name": "gray_image", + "namespace": "resource_packs" + } + }, + "recipe_panel": { + "file": "ui/anvil_screen.json", + "type": "panel", + "children": [ + "recipe_grid", + "cost_label_0", + "cost_label_1" + ] + }, + "recipe_panel/recipe_grid": { + "file": "ui/anvil_screen.json", + "type": "grid", + "extend": { + "name": "recipe_grid", + "namespace": "anvil" + } + }, + "recipe_panel/cost_label_0": { + "file": "ui/anvil_screen.json", + "type": "label", + "extend": { + "name": "cost_label", + "namespace": "anvil" + } + }, + "recipe_panel/cost_label_1": { + "file": "ui/anvil_screen.json", + "type": "label", + "extend": { + "name": "cost_label", + "namespace": "anvil" + } + }, + "top_half_panel": { + "file": "ui/anvil_screen.json", + "type": "panel", + "children": [ + "icon_and_text_panel", + "recipe_panel" + ] + }, + "top_half_panel/icon_and_text_panel": { + "file": "ui/anvil_screen.json", + "type": "panel", + "extend": { + "name": "icon_and_text_panel", + "namespace": "anvil" + } + }, + "top_half_panel/recipe_panel": { + "file": "ui/anvil_screen.json", + "type": "panel", + "extend": { + "name": "recipe_panel", + "namespace": "anvil" + } + }, + "anvil_panel": { + "file": "ui/anvil_screen.json", + "type": "panel", + "children": [ + "container_gamepad_helpers", + "selected_item_details_factory", + "item_lock_notification_factory", + "root_panel", + "flying_item_renderer" + ] + }, + "anvil_panel/container_gamepad_helpers": { + "file": "ui/anvil_screen.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "anvil_panel/selected_item_details_factory": { + "file": "ui/anvil_screen.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "anvil_panel/item_lock_notification_factory": { + "file": "ui/anvil_screen.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "anvil_panel/root_panel": { + "file": "ui/anvil_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "common_panel", + "anvil_screen_inventory", + "inventory_selected_icon_button", + "gamepad_cursor" + ] + }, + "anvil_panel/root_panel/common_panel": { + "file": "ui/anvil_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "anvil_panel/root_panel/anvil_screen_inventory": { + "file": "ui/anvil_screen.json", + "type": "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": { + "file": "ui/anvil_screen.json", + "type": "panel", + "extend": { + "name": "top_half_panel", + "namespace": "anvil" + } + }, + "anvil_panel/root_panel/anvil_screen_inventory/inventory_panel_bottom_half_with_label": { + "file": "ui/anvil_screen.json", + "type": "panel", + "extend": { + "name": "inventory_panel_bottom_half_with_label", + "namespace": "common" + } + }, + "anvil_panel/root_panel/anvil_screen_inventory/hotbar_grid": { + "file": "ui/anvil_screen.json", + "type": "grid", + "extend": { + "name": "hotbar_grid_template", + "namespace": "common" + } + }, + "anvil_panel/root_panel/anvil_screen_inventory/inventory_take_progress_icon_button": { + "file": "ui/anvil_screen.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "anvil_panel/root_panel/inventory_selected_icon_button": { + "file": "ui/anvil_screen.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "anvil_panel/root_panel/gamepad_cursor": { + "file": "ui/anvil_screen.json", + "type": "button", + "extend": { + "name": "gamepad_cursor_button", + "namespace": "common" + } + }, + "anvil_panel/flying_item_renderer": { + "file": "ui/anvil_screen.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + }, + "anvil_screen": { + "file": "ui/anvil_screen.json", + "type": "screen", + "extend": { + "name": "inventory_screen_common", + "namespace": "common" + } + } + }, + "anvil_pocket": { + "generic_label": { + "file": "ui/anvil_screen_pocket.json", + "type": "label" + }, + "background_image": { + "file": "ui/anvil_screen_pocket.json", + "type": "image" + }, + "arrow_icon": { + "file": "ui/anvil_screen_pocket.json", + "type": "image" + }, + "cost_label": { + "file": "ui/anvil_screen_pocket.json", + "type": "label", + "extend": { + "name": "generic_label", + "namespace": "anvil_pocket" + }, + "children": [ + "gray" + ] + }, + "cost_label/gray": { + "file": "ui/anvil_screen_pocket.json", + "type": "image", + "extend": { + "name": "gray_image", + "namespace": "resource_packs" + } + }, + "title_label": { + "file": "ui/anvil_screen_pocket.json", + "type": "label", + "extend": { + "name": "generic_label", + "namespace": "anvil_pocket" + } + }, + "text_edit_control": { + "file": "ui/anvil_screen_pocket.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "anvil_title_and_text_panel": { + "file": "ui/anvil_screen_pocket.json", + "type": "panel", + "children": [ + "title_label", + "text_edit_control" + ] + }, + "anvil_title_and_text_panel/title_label": { + "file": "ui/anvil_screen_pocket.json", + "type": "label", + "extend": { + "name": "title_label", + "namespace": "anvil_pocket" + } + }, + "anvil_title_and_text_panel/text_edit_control": { + "file": "ui/anvil_screen_pocket.json", + "type": "edit_box", + "extend": { + "name": "text_edit_control", + "namespace": "anvil_pocket" + } + }, + "slots_panel": { + "file": "ui/anvil_screen_pocket.json", + "type": "panel", + "children": [ + "input_slot", + "material_slot", + "result_slot", + "plus_sign", + "arrow" + ] + }, + "slots_panel/input_slot": { + "file": "ui/anvil_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_large_container_item", + "namespace": "common" + } + }, + "slots_panel/material_slot": { + "file": "ui/anvil_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_large_container_item", + "namespace": "common" + } + }, + "slots_panel/result_slot": { + "file": "ui/anvil_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_large_container_item", + "namespace": "common" + } + }, + "slots_panel/plus_sign": { + "file": "ui/anvil_screen_pocket.json", + "type": "label", + "extend": { + "name": "generic_label", + "namespace": "anvil_pocket" + } + }, + "slots_panel/arrow": { + "file": "ui/anvil_screen_pocket.json", + "type": "image", + "children": [ + "cross_out" + ] + }, + "slots_panel/arrow/cross_out": { + "file": "ui/anvil_screen_pocket.json", + "type": "image" + }, + "anvil_contents_panel": { + "file": "ui/anvil_screen_pocket.json", + "type": "panel", + "children": [ + "red_cost", + "green_cost", + "slots_panel", + "anvil_title_and_text_panel" + ] + }, + "anvil_contents_panel/red_cost": { + "file": "ui/anvil_screen_pocket.json", + "type": "label", + "extend": { + "name": "cost_label", + "namespace": "anvil_pocket" + } + }, + "anvil_contents_panel/green_cost": { + "file": "ui/anvil_screen_pocket.json", + "type": "label", + "extend": { + "name": "cost_label", + "namespace": "anvil_pocket" + } + }, + "anvil_contents_panel/slots_panel": { + "file": "ui/anvil_screen_pocket.json", + "type": "panel", + "extend": { + "name": "slots_panel", + "namespace": "anvil_pocket" + } + }, + "anvil_contents_panel/anvil_title_and_text_panel": { + "file": "ui/anvil_screen_pocket.json", + "type": "panel", + "extend": { + "name": "anvil_title_and_text_panel", + "namespace": "anvil_pocket" + } + }, + "inventory_grid": { + "file": "ui/anvil_screen_pocket.json", + "type": "grid" + }, + "inventory_content": { + "file": "ui/anvil_screen_pocket.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "inventory_content/scrolling_panel": { + "file": "ui/anvil_screen_pocket.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "inventory_and_anvil_panel": { + "file": "ui/anvil_screen_pocket.json", + "type": "panel", + "children": [ + "inventory_half_screen", + "anvil_half_screen" + ] + }, + "inventory_and_anvil_panel/inventory_half_screen": { + "file": "ui/anvil_screen_pocket.json", + "type": "panel", + "children": [ + "inventory_content" + ] + }, + "inventory_and_anvil_panel/inventory_half_screen/inventory_content": { + "file": "ui/anvil_screen_pocket.json", + "type": "panel", + "extend": { + "name": "inventory_content", + "namespace": "anvil_pocket" + } + }, + "inventory_and_anvil_panel/anvil_half_screen": { + "file": "ui/anvil_screen_pocket.json", + "type": "panel", + "children": [ + "anvil_contents_panel" + ] + }, + "inventory_and_anvil_panel/anvil_half_screen/anvil_contents_panel": { + "file": "ui/anvil_screen_pocket.json", + "type": "panel", + "extend": { + "name": "anvil_contents_panel", + "namespace": "anvil_pocket" + } + }, + "header": { + "file": "ui/anvil_screen_pocket.json", + "type": "panel", + "children": [ + "header_background", + "legacy_pocket_close_button", + "panel" + ] + }, + "header/header_background": { + "file": "ui/anvil_screen_pocket.json", + "type": "image" + }, + "header/legacy_pocket_close_button": { + "file": "ui/anvil_screen_pocket.json", + "type": "button", + "extend": { + "name": "legacy_pocket_close_button", + "namespace": "common" + } + }, + "header/panel": { + "file": "ui/anvil_screen_pocket.json", + "type": "panel", + "children": [ + "title_label" + ] + }, + "header/panel/title_label": { + "file": "ui/anvil_screen_pocket.json", + "type": "label", + "extend": { + "name": "generic_label", + "namespace": "anvil_pocket" + } + }, + "header_and_content_stack_panel": { + "file": "ui/anvil_screen_pocket.json", + "type": "stack_panel", + "children": [ + "header", + "inventory_and_anvil_panel" + ] + }, + "header_and_content_stack_panel/header": { + "file": "ui/anvil_screen_pocket.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "anvil_pocket" + } + }, + "header_and_content_stack_panel/inventory_and_anvil_panel": { + "file": "ui/anvil_screen_pocket.json", + "type": "panel", + "extend": { + "name": "inventory_and_anvil_panel", + "namespace": "anvil_pocket" + } + }, + "anvil_panel": { + "file": "ui/anvil_screen_pocket.json", + "type": "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": { + "file": "ui/anvil_screen_pocket.json", + "type": "image", + "extend": { + "name": "background_image", + "namespace": "anvil_pocket" + } + }, + "anvil_panel/root_panel": { + "file": "ui/anvil_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + } + }, + "anvil_panel/header_and_content_stack_panel": { + "file": "ui/anvil_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "header_and_content_stack_panel", + "namespace": "anvil_pocket" + } + }, + "anvil_panel/container_gamepad_helpers": { + "file": "ui/anvil_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "anvil_panel/inventory_selected_icon_button": { + "file": "ui/anvil_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "anvil_panel/hold_icon": { + "file": "ui/anvil_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "anvil_panel/selected_item_details_factory": { + "file": "ui/anvil_screen_pocket.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "anvil_panel/item_lock_notification_factory": { + "file": "ui/anvil_screen_pocket.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "anvil_panel/flying_item_renderer": { + "file": "ui/anvil_screen_pocket.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + } + }, + "authentication_modals": { + "modal_dialog_label": { + "file": "ui/authentication_modals.json", + "type": "label" + }, + "modal_dialog_content": { + "file": "ui/authentication_modals.json", + "type": "stack_panel", + "children": [ + "body_text", + "button_wrapper" + ] + }, + "modal_dialog_content/body_text": { + "file": "ui/authentication_modals.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "modal_dialog_content/button_wrapper": { + "file": "ui/authentication_modals.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "buttons" + ] + }, + "modal_dialog_content/button_wrapper/buttons": { + "file": "ui/authentication_modals.json", + "type": "stack_panel", + "children": [ + "left", + "padding", + "right" + ] + }, + "modal_dialog_content/button_wrapper/buttons/left": { + "file": "ui/authentication_modals.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "modal_dialog_content/button_wrapper/buttons/padding": { + "file": "ui/authentication_modals.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "modal_dialog_content/button_wrapper/buttons/right": { + "file": "ui/authentication_modals.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "modal_dialog_frame": { + "file": "ui/authentication_modals.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_3", + "namespace": "common" + }, + "children": [ + "title", + "close", + "black_tint_image" + ] + }, + "modal_dialog_frame/title": { + "file": "ui/authentication_modals.json", + "type": "label", + "extend": { + "name": "modal_title_text", + "namespace": "popup_dialog" + } + }, + "modal_dialog_frame/close": { + "file": "ui/authentication_modals.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "common" + } + }, + "modal_dialog_frame/black_tint_image": { + "file": "ui/authentication_modals.json", + "type": "image", + "extend": { + "name": "black_tint_image", + "namespace": "popup_dialog" + }, + "children": [ + "content" + ] + }, + "modal_dialog_frame/black_tint_image/content": { + "file": "ui/authentication_modals.json", + "type": "unknown" + }, + "ad_modal_dialog": { + "file": "ui/authentication_modals.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + } + }, + "authentication": { + "nothing": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "tts_control": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "non_interact_focus_border_button", + "namespace": "common" + } + }, + "split_button_panel": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "buttons" + ] + }, + "split_button_panel/buttons": { + "file": "ui/authentication_screen.json", + "type": "stack_panel", + "children": [ + "a", + "paddding", + "b" + ] + }, + "split_button_panel/buttons/a": { + "file": "ui/authentication_screen.json", + "type": "unknown" + }, + "split_button_panel/buttons/paddding": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "split_button_panel/buttons/b": { + "file": "ui/authentication_screen.json", + "type": "unknown" + }, + "vertical_split_button_panel": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "split_button_panel", + "namespace": "authentication" + } + }, + "fixed_width_wrapper": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "content" + ] + }, + "fixed_width_wrapper/content": { + "file": "ui/authentication_screen.json", + "type": "unknown" + }, + "sign_in_button": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "download_button": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "smooth_label": { + "file": "ui/authentication_screen.json", + "type": "label" + }, + "smooth_bound_label": { + "file": "ui/authentication_screen.json", + "type": "label", + "extend": { + "name": "smooth_label", + "namespace": "authentication" + } + }, + "title_label": { + "file": "ui/authentication_screen.json", + "type": "label", + "extend": { + "name": "smooth_bound_label", + "namespace": "authentication" + } + }, + "eula_hyperlink": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "hyperlink_button", + "namespace": "common_buttons" + } + }, + "accept_eula_button": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "eula_content": { + "file": "ui/authentication_screen.json", + "type": "stack_panel", + "children": [ + "prompt_wrapper", + "padding", + "buttons" + ] + }, + "eula_content/prompt_wrapper": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "border", + "prompt_text" + ] + }, + "eula_content/prompt_wrapper/border": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "tts_control", + "namespace": "authentication" + } + }, + "eula_content/prompt_wrapper/prompt_text": { + "file": "ui/authentication_screen.json", + "type": "label", + "extend": { + "name": "smooth_label", + "namespace": "authentication" + } + }, + "eula_content/padding": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "eula_content/buttons": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "split_button_panel", + "namespace": "authentication" + } + }, + "eula": { + "file": "ui/authentication_screen.json", + "type": "image", + "extend": { + "name": "modal_dialog_frame", + "namespace": "authentication_modals" + } + }, + "version": { + "file": "ui/authentication_screen.json", + "type": "panel", + "children": [ + "label", + "label_background" + ] + }, + "version/label": { + "file": "ui/authentication_screen.json", + "type": "label" + }, + "version/label_background": { + "file": "ui/authentication_screen.json", + "type": "image" + }, + "view_terms_button": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "hyperlink_button", + "namespace": "common_buttons" + } + }, + "privacy_policy_button": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "hyperlink_button", + "namespace": "common_buttons" + } + }, + "agree_panel": { + "file": "ui/authentication_screen.json", + "type": "panel", + "children": [ + "checkbox_control", + "i_agree_label" + ] + }, + "agree_panel/checkbox_control": { + "file": "ui/authentication_screen.json", + "type": "toggle", + "extend": { + "name": "checkbox", + "namespace": "common" + } + }, + "agree_panel/i_agree_label": { + "file": "ui/authentication_screen.json", + "type": "label" + }, + "term_item": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "item" + ] + }, + "term_item/item": { + "file": "ui/authentication_screen.json", + "type": "unknown" + }, + "terms_and_conditions_panel": { + "file": "ui/authentication_screen.json", + "type": "panel", + "children": [ + "terms_string_panel" + ] + }, + "terms_and_conditions_panel/terms_string_panel": { + "file": "ui/authentication_screen.json", + "type": "panel", + "children": [ + "buttons_stack_panel" + ] + }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": { + "file": "ui/authentication_screen.json", + "type": "stack_panel", + "children": [ + "agree", + "view_terms_button", + "privacy_policy_button" + ] + }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "agree_panel", + "namespace": "authentication" + } + }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "term_item", + "namespace": "authentication" + } + }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "term_item", + "namespace": "authentication" + } + }, + "confirmation_panel": { + "file": "ui/authentication_screen.json", + "type": "panel", + "children": [ + "confirm_button" + ] + }, + "confirmation_panel/confirm_button": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "scroll_stack_panel": { + "file": "ui/authentication_screen.json", + "type": "panel", + "children": [ + "border", + "terms" + ] + }, + "scroll_stack_panel/border": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "tts_control", + "namespace": "authentication" + } + }, + "scroll_stack_panel/terms": { + "file": "ui/authentication_screen.json", + "type": "label", + "extend": { + "name": "smooth_bound_label", + "namespace": "authentication" + } + }, + "purchase_confirm_content": { + "file": "ui/authentication_screen.json", + "type": "stack_panel", + "children": [ + "header_padding", + "panel_wrap", + "terms_and_conditions_panel", + "button_padding", + "confirmation_panel", + "padding" + ] + }, + "purchase_confirm_content/header_padding": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "purchase_confirm_content/panel_wrap": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "scrolling_panel" + ] + }, + "purchase_confirm_content/panel_wrap/scrolling_panel": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "purchase_confirm_content/terms_and_conditions_panel": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "terms_and_conditions_panel", + "namespace": "authentication" + } + }, + "purchase_confirm_content/button_padding": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "purchase_confirm_content/confirmation_panel": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "confirmation_panel", + "namespace": "authentication" + } + }, + "purchase_confirm_content/padding": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "purchase_prompt_content": { + "file": "ui/authentication_screen.json", + "type": "stack_panel", + "children": [ + "prompt_wrap", + "purchase_wrap_centering_container" + ] + }, + "purchase_prompt_content/prompt_wrap": { + "file": "ui/authentication_screen.json", + "type": "panel", + "children": [ + "border", + "prompt" + ] + }, + "purchase_prompt_content/prompt_wrap/border": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "tts_control", + "namespace": "authentication" + } + }, + "purchase_prompt_content/prompt_wrap/prompt": { + "file": "ui/authentication_screen.json", + "type": "label", + "extend": { + "name": "smooth_label", + "namespace": "authentication" + } + }, + "purchase_prompt_content/purchase_wrap_centering_container": { + "file": "ui/authentication_screen.json", + "type": "panel", + "children": [ + "purchase_wrap" + ] + }, + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap": { + "file": "ui/authentication_screen.json", + "type": "stack_panel", + "children": [ + "purchase", + "padding_middle", + "signout" + ] + }, + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/purchase": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/padding_middle": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/signout": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "purchase_prompt": { + "file": "ui/authentication_screen.json", + "type": "image", + "extend": { + "name": "modal_dialog_frame", + "namespace": "authentication_modals" + } + }, + "purchase_confirm": { + "file": "ui/authentication_screen.json", + "type": "image", + "extend": { + "name": "modal_dialog_frame", + "namespace": "authentication_modals" + } + }, + "purchase_panel": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "prompt", + "confirm" + ] + }, + "purchase_panel/prompt": { + "file": "ui/authentication_screen.json", + "type": "image", + "extend": { + "name": "purchase_prompt", + "namespace": "authentication" + } + }, + "purchase_panel/confirm": { + "file": "ui/authentication_screen.json", + "type": "image", + "extend": { + "name": "purchase_confirm", + "namespace": "authentication" + } + }, + "title_panel": { + "file": "ui/authentication_screen.json", + "type": "panel", + "children": [ + "title_label_wrapper" + ] + }, + "title_panel/title_label_wrapper": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "hyperlink_panel": { + "file": "ui/authentication_screen.json", + "type": "panel", + "children": [ + "link_stack" + ] + }, + "hyperlink_panel/link_stack": { + "file": "ui/authentication_screen.json", + "type": "stack_panel", + "children": [ + "link1", + "link2", + "padding" + ] + }, + "hyperlink_panel/link_stack/link1": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "underline_button", + "namespace": "edu_common" + } + }, + "hyperlink_panel/link_stack/link2": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "underline_button", + "namespace": "edu_common" + } + }, + "hyperlink_panel/link_stack/padding": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "auth_screen": { + "file": "ui/authentication_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "sign_in_content": { + "file": "ui/authentication_screen.json", + "type": "stack_panel", + "children": [ + "body_text", + "body_hyperlink", + "sign_in_wrapper", + "download_wrapper" + ] + }, + "sign_in_content/body_text": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "title_panel", + "namespace": "authentication" + } + }, + "sign_in_content/body_hyperlink": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "hyperlink_panel", + "namespace": "authentication" + } + }, + "sign_in_content/sign_in_wrapper": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "button" + ] + }, + "sign_in_content/sign_in_wrapper/button": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "sign_in_button", + "namespace": "authentication" + } + }, + "sign_in_content/download_wrapper": { + "file": "ui/authentication_screen.json", + "type": "panel", + "children": [ + "button" + ] + }, + "sign_in_content/download_wrapper/button": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "download_button", + "namespace": "authentication" + } + }, + "authentication_screen_content": { + "file": "ui/authentication_screen.json", + "type": "panel", + "children": [ + "debug", + "client_version", + "sign_in", + "sign_in_ios", + "pack_progress", + "welcome", + "demo", + "eula", + "purchase_panel", + "popup_dialog_factory" + ] + }, + "authentication_screen_content/debug": { + "file": "ui/authentication_screen.json", + "type": "stack_panel", + "extend": { + "name": "debug_panel", + "namespace": "authentication" + } + }, + "authentication_screen_content/client_version": { + "file": "ui/authentication_screen.json", + "type": "panel", + "children": [ + "version" + ] + }, + "authentication_screen_content/client_version/version": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "version", + "namespace": "authentication" + } + }, + "authentication_screen_content/sign_in": { + "file": "ui/authentication_screen.json", + "type": "image", + "extend": { + "name": "modal_dialog_frame", + "namespace": "authentication_modals" + } + }, + "authentication_screen_content/sign_in_ios": { + "file": "ui/authentication_screen.json", + "type": "image", + "extend": { + "name": "modal_dialog_frame", + "namespace": "authentication_modals" + } + }, + "authentication_screen_content/pack_progress": { + "file": "ui/authentication_screen.json", + "type": "image", + "extend": { + "name": "modal_dialog_frame", + "namespace": "authentication_modals" + } + }, + "authentication_screen_content/welcome": { + "file": "ui/authentication_screen.json", + "type": "unknown", + "extend": { + "name": "screen_content", + "namespace": "edu_signin" + } + }, + "authentication_screen_content/demo": { + "file": "ui/authentication_screen.json", + "type": "unknown", + "extend": { + "name": "screen_content", + "namespace": "edu_signin" + } + }, + "authentication_screen_content/eula": { + "file": "ui/authentication_screen.json", + "type": "image", + "extend": { + "name": "eula", + "namespace": "authentication" + } + }, + "authentication_screen_content/purchase_panel": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "purchase_panel", + "namespace": "authentication" + } + }, + "authentication_screen_content/popup_dialog_factory": { + "file": "ui/authentication_screen.json", + "type": "factory" + }, + "popup_content_base": { + "file": "ui/authentication_screen.json", + "type": "stack_panel", + "children": [ + "message", + "content", + "footer_padding" + ] + }, + "popup_content_base/message": { + "file": "ui/authentication_screen.json", + "type": "panel", + "children": [ + "border", + "text" + ] + }, + "popup_content_base/message/border": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "tts_control", + "namespace": "authentication" + } + }, + "popup_content_base/message/text": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "fixed_width_wrapper", + "namespace": "authentication" + } + }, + "popup_content_base/content": { + "file": "ui/authentication_screen.json", + "type": "unknown" + }, + "popup_content_base/footer_padding": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "popup_dialog": { + "file": "ui/authentication_screen.json", + "type": "input_panel", + "children": [ + "dialog" + ] + }, + "popup_dialog/dialog": { + "file": "ui/authentication_screen.json", + "type": "image", + "extend": { + "name": "modal_dialog_frame", + "namespace": "authentication_modals" + } + }, + "trial_info_ios_additional_content": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "dismiss" + ] + }, + "trial_info_ios_additional_content/dismiss": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "popup_dismiss_button", + "namespace": "authentication" + } + }, + "popup_dialog_trial_info_ios": { + "file": "ui/authentication_screen.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog", + "namespace": "authentication" + } + }, + "student_message_panel": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "fixed_width_wrapper", + "namespace": "authentication" + } + }, + "trial_info_additional_content": { + "file": "ui/authentication_screen.json", + "type": "stack_panel", + "children": [ + "buttons" + ] + }, + "trial_info_additional_content/buttons": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "split_button_panel", + "namespace": "authentication" + } + }, + "generic_welcome_additional_content": { + "file": "ui/authentication_screen.json", + "type": "stack_panel", + "children": [ + "button_wrapper" + ] + }, + "generic_welcome_additional_content/button_wrapper": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "buttons" + ] + }, + "generic_welcome_additional_content/button_wrapper/buttons": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "vertical_split_button_panel", + "namespace": "authentication" + } + }, + "popup_dialog_trial_info": { + "file": "ui/authentication_screen.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog", + "namespace": "authentication" + } + }, + "popup_dialog_generic_welcome": { + "file": "ui/authentication_screen.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog", + "namespace": "authentication" + } + }, + "popup_message": { + "file": "ui/authentication_screen.json", + "type": "stack_panel", + "children": [ + "main_message", + "extra_message", + "padding" + ] + }, + "popup_message/main_message": { + "file": "ui/authentication_screen.json", + "type": "label", + "extend": { + "name": "smooth_bound_label", + "namespace": "authentication" + } + }, + "popup_message/extra_message": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "student_message_panel", + "namespace": "authentication" + } + }, + "popup_message/padding": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "popup_message_student": { + "file": "ui/authentication_screen.json", + "type": "label", + "extend": { + "name": "smooth_label", + "namespace": "authentication" + } + }, + "popup_hyperlink": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "hyperlink_button", + "namespace": "common_buttons" + } + }, + "popup_purchase_link": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "popup_hyperlink", + "namespace": "authentication" + } + }, + "popup_dismiss_button": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "pack_progress_content": { + "file": "ui/authentication_screen.json", + "type": "stack_panel", + "children": [ + "top_padding", + "loading_text_panel", + "loading_bar_panel", + "loading_padding", + "skip_panel", + "bottom_padding" + ] + }, + "pack_progress_content/top_padding": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "pack_progress_content/loading_text_panel": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "vertical_stack_item", + "namespace": "edu_common" + }, + "children": [ + "loading_text" + ] + }, + "pack_progress_content/loading_text_panel/loading_text": { + "file": "ui/authentication_screen.json", + "type": "label" + }, + "pack_progress_content/loading_bar_panel": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "vertical_stack_item", + "namespace": "edu_common" + }, + "children": [ + "loading_bar" + ] + }, + "pack_progress_content/loading_bar_panel/loading_bar": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "progress_bar_icon", + "namespace": "popup_dialog" + } + }, + "pack_progress_content/loading_padding": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "pack_progress_content/skip_panel": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "vertical_stack_item", + "namespace": "edu_common" + }, + "children": [ + "skip_button" + ] + }, + "pack_progress_content/skip_panel/skip_button": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "light_text_form_fitting_button", + "namespace": "common_buttons" + } + }, + "pack_progress_content/bottom_padding": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "sign_in_ios_content": { + "file": "ui/authentication_screen.json", + "type": "stack_panel", + "children": [ + "body_text", + "body_hyperlink", + "signin_ios_button_panel", + "error_sign_in_panel", + "error_download_panel" + ] + }, + "sign_in_ios_content/body_text": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "title_panel", + "namespace": "authentication" + } + }, + "sign_in_ios_content/body_hyperlink": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "hyperlink_panel", + "namespace": "authentication" + } + }, + "sign_in_ios_content/signin_ios_button_panel": { + "file": "ui/authentication_screen.json", + "type": "stack_panel", + "children": [ + "app_store_prompt_wrap", + "buttons", + "pad_footer" + ] + }, + "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "prompt" + ] + }, + "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap/prompt": { + "file": "ui/authentication_screen.json", + "type": "label", + "extend": { + "name": "smooth_label", + "namespace": "authentication" + } + }, + "sign_in_ios_content/signin_ios_button_panel/buttons": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "split_button_panel", + "namespace": "authentication" + } + }, + "sign_in_ios_content/signin_ios_button_panel/pad_footer": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "sign_in_ios_content/error_sign_in_panel": { + "file": "ui/authentication_screen.json", + "type": "panel", + "children": [ + "button" + ] + }, + "sign_in_ios_content/error_sign_in_panel/button": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "sign_in_button", + "namespace": "authentication" + } + }, + "sign_in_ios_content/error_download_panel": { + "file": "ui/authentication_screen.json", + "type": "panel", + "children": [ + "button" + ] + }, + "sign_in_ios_content/error_download_panel/button": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "download_button", + "namespace": "authentication" + } + }, + "sign_in_ios_button": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "to_app_store": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "hyperlink_button", + "namespace": "common_buttons" + } + }, + "debug_panel": { + "file": "ui/authentication_screen.json", + "type": "stack_panel", + "children": [ + "state_label", + "state_text_box", + "open_popup", + "refresh_popup", + "reset", + "toggle_ios" + ] + }, + "debug_panel/state_label": { + "file": "ui/authentication_screen.json", + "type": "label" + }, + "debug_panel/state_text_box": { + "file": "ui/authentication_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "debug_panel/open_popup": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "debug_panel/refresh_popup": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "debug_panel/reset": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "debug_panel/toggle_ios": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "authentication_popup_link_button": { + "file": "ui/authentication_screen.json", + "type": "stack_panel", + "children": [ + "top_padding", + "link_button" + ] + }, + "authentication_popup_link_button/top_padding": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "authentication_popup_link_button/link_button": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "underline_button", + "namespace": "edu_common" + } + }, + "authentication_popup_contents": { + "file": "ui/authentication_screen.json", + "type": "stack_panel", + "children": [ + "initial_padding", + "body", + "learn_more_link", + "link2", + "end_padding" + ] + }, + "authentication_popup_contents/initial_padding": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "authentication_popup_contents/body": { + "file": "ui/authentication_screen.json", + "type": "label", + "extend": { + "name": "smooth_bound_label", + "namespace": "authentication" + } + }, + "authentication_popup_contents/learn_more_link": { + "file": "ui/authentication_screen.json", + "type": "stack_panel", + "extend": { + "name": "authentication_popup_link_button", + "namespace": "authentication" + } + }, + "authentication_popup_contents/link2": { + "file": "ui/authentication_screen.json", + "type": "stack_panel", + "extend": { + "name": "authentication_popup_link_button", + "namespace": "authentication" + } + }, + "authentication_popup_contents/end_padding": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "resizeable_scrolling_panel": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "authentication_popup_content_panel": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "resizeable_scrolling_panel", + "namespace": "authentication" + } + }, + "authentication_popup_button": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "authentication_popup_one_button": { + "file": "ui/authentication_screen.json", + "type": "panel", + "children": [ + "button" + ] + }, + "authentication_popup_one_button/button": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "authentication_popup_button", + "namespace": "authentication" + } + }, + "authentication_popup_two_buttons": { + "file": "ui/authentication_screen.json", + "type": "stack_panel", + "children": [ + "first_button", + "button_padding", + "second_button" + ] + }, + "authentication_popup_two_buttons/first_button": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "authentication_popup_button", + "namespace": "authentication" + } + }, + "authentication_popup_two_buttons/button_padding": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "authentication_popup_two_buttons/second_button": { + "file": "ui/authentication_screen.json", + "type": "button", + "extend": { + "name": "authentication_popup_button", + "namespace": "authentication" + } + }, + "authentication_popup_lower_button_panel": { + "file": "ui/authentication_screen.json", + "type": "panel", + "children": [ + "one_button", + "two_buttons" + ] + }, + "authentication_popup_lower_button_panel/one_button": { + "file": "ui/authentication_screen.json", + "type": "panel", + "extend": { + "name": "authentication_popup_one_button", + "namespace": "authentication" + } + }, + "authentication_popup_lower_button_panel/two_buttons": { + "file": "ui/authentication_screen.json", + "type": "stack_panel", + "extend": { + "name": "authentication_popup_two_buttons", + "namespace": "authentication" + } + }, + "authentication_popup": { + "file": "ui/authentication_screen.json", + "type": "input_panel", + "extend": { + "name": "form_fit_modal_dialog_popup", + "namespace": "popup_dialog" + } + } + }, + "auto_save_info": { + "auto_save": { + "file": "ui/auto_save_info_screen.json", + "type": "image" + }, + "accept_label": { + "file": "ui/auto_save_info_screen.json", + "type": "panel", + "children": [ + "button_label" + ] + }, + "accept_label/button_label": { + "file": "ui/auto_save_info_screen.json", + "type": "label" + }, + "accept_button": { + "file": "ui/auto_save_info_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "main_panel": { + "file": "ui/auto_save_info_screen.json", + "type": "input_panel", + "children": [ + "common_panel", + "title_label", + "message_label", + "save_icon", + "a", + "gamepad_helpers" + ] + }, + "main_panel/common_panel": { + "file": "ui/auto_save_info_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "main_panel/title_label": { + "file": "ui/auto_save_info_screen.json", + "type": "label" + }, + "main_panel/message_label": { + "file": "ui/auto_save_info_screen.json", + "type": "label" + }, + "main_panel/save_icon": { + "file": "ui/auto_save_info_screen.json", + "type": "image", + "extend": { + "name": "auto_save", + "namespace": "auto_save_info" + } + }, + "main_panel/a": { + "file": "ui/auto_save_info_screen.json", + "type": "button", + "extend": { + "name": "accept_button", + "namespace": "auto_save_info" + } + }, + "main_panel/gamepad_helpers": { + "file": "ui/auto_save_info_screen.json", + "type": "panel", + "extend": { + "name": "gamepad_helpers", + "namespace": "auto_save_info" + } + }, + "gamepad_helpers": { + "file": "ui/auto_save_info_screen.json", + "type": "panel", + "children": [ + "gamepad_helper_a" + ] + }, + "gamepad_helpers/gamepad_helper_a": { + "file": "ui/auto_save_info_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_a", + "namespace": "common" + } + }, + "auto_save_info_screen": { + "file": "ui/auto_save_info_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "auto_save_info_screen_content": { + "file": "ui/auto_save_info_screen.json", + "type": "panel", + "children": [ + "root_panel" + ] + }, + "auto_save_info_screen_content/root_panel": { + "file": "ui/auto_save_info_screen.json", + "type": "panel", + "children": [ + "main_panel" + ] + }, + "auto_save_info_screen_content/root_panel/main_panel": { + "file": "ui/auto_save_info_screen.json", + "type": "input_panel", + "extend": { + "name": "main_panel", + "namespace": "auto_save_info" + } + } + }, + "beacon": { + "selected_item_details": { + "file": "ui/beacon_screen.json", + "type": "panel", + "extend": { + "name": "selected_item_details", + "namespace": "common" + } + }, + "beacon_panel": { + "file": "ui/beacon_screen.json", + "type": "panel", + "children": [ + "container_gamepad_helpers", + "selected_item_details_factory", + "item_lock_notification_factory", + "root_panel", + "flying_item_renderer" + ] + }, + "beacon_panel/container_gamepad_helpers": { + "file": "ui/beacon_screen.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "beacon_panel/selected_item_details_factory": { + "file": "ui/beacon_screen.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "beacon_panel/item_lock_notification_factory": { + "file": "ui/beacon_screen.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "beacon_panel/root_panel": { + "file": "ui/beacon_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "common_panel", + "beacon_inventory" + ] + }, + "beacon_panel/root_panel/common_panel": { + "file": "ui/beacon_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "beacon_panel/root_panel/beacon_inventory": { + "file": "ui/beacon_screen.json", + "type": "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": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "beacon_inner_panel", + "namespace": "beacon" + } + }, + "beacon_panel/root_panel/beacon_inventory/payment_panel": { + "file": "ui/beacon_screen.json", + "type": "panel", + "extend": { + "name": "payment_panel", + "namespace": "beacon" + } + }, + "beacon_panel/root_panel/beacon_inventory/inventory_panel_bottom_half": { + "file": "ui/beacon_screen.json", + "type": "panel", + "extend": { + "name": "inventory_panel_bottom_half", + "namespace": "common" + } + }, + "beacon_panel/root_panel/beacon_inventory/hotbar_grid_template": { + "file": "ui/beacon_screen.json", + "type": "grid", + "extend": { + "name": "hotbar_grid_template", + "namespace": "common" + } + }, + "beacon_panel/root_panel/beacon_inventory/inventory_selected_icon_button": { + "file": "ui/beacon_screen.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "beacon_panel/root_panel/beacon_inventory/gamepad_cursor": { + "file": "ui/beacon_screen.json", + "type": "button", + "extend": { + "name": "gamepad_cursor_button", + "namespace": "common" + } + }, + "beacon_panel/flying_item_renderer": { + "file": "ui/beacon_screen.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + }, + "inventory_slot_button": { + "file": "ui/beacon_screen.json", + "type": "button", + "extend": { + "name": "container_slot_button_prototype", + "namespace": "common" + } + }, + "hotbar_slot_button": { + "file": "ui/beacon_screen.json", + "type": "button", + "extend": { + "name": "container_slot_button_prototype", + "namespace": "common" + } + }, + "image_atlas": { + "file": "ui/beacon_screen.json", + "type": "image" + }, + "pyramid_image": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "image_atlas", + "namespace": "beacon" + } + }, + "pyramid_panel": { + "file": "ui/beacon_screen.json", + "type": "panel", + "children": [ + "level1", + "level2", + "level3", + "level4" + ] + }, + "pyramid_panel/level1": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "pyramid_image", + "namespace": "beacon" + } + }, + "pyramid_panel/level2": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "pyramid_image", + "namespace": "beacon" + } + }, + "pyramid_panel/level3": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "pyramid_image", + "namespace": "beacon" + } + }, + "pyramid_panel/level4": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "pyramid_image", + "namespace": "beacon" + } + }, + "item_seperator": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "image_atlas", + "namespace": "beacon" + } + }, + "item_renderer": { + "file": "ui/beacon_screen.json", + "type": "custom" + }, + "usable_items_panel": { + "file": "ui/beacon_screen.json", + "type": "panel", + "children": [ + "netherite", + "item_seperator_0", + "emerald", + "item_seperator_1", + "diamond", + "item_seperator_2", + "gold", + "item_seperator_3", + "iron" + ] + }, + "usable_items_panel/netherite": { + "file": "ui/beacon_screen.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "beacon" + } + }, + "usable_items_panel/item_seperator_0": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "item_seperator", + "namespace": "beacon" + } + }, + "usable_items_panel/emerald": { + "file": "ui/beacon_screen.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "beacon" + } + }, + "usable_items_panel/item_seperator_1": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "item_seperator", + "namespace": "beacon" + } + }, + "usable_items_panel/diamond": { + "file": "ui/beacon_screen.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "beacon" + } + }, + "usable_items_panel/item_seperator_2": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "item_seperator", + "namespace": "beacon" + } + }, + "usable_items_panel/gold": { + "file": "ui/beacon_screen.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "beacon" + } + }, + "usable_items_panel/item_seperator_3": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "item_seperator", + "namespace": "beacon" + } + }, + "usable_items_panel/iron": { + "file": "ui/beacon_screen.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "beacon" + } + }, + "base_image": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "image_atlas", + "namespace": "beacon" + } + }, + "hover_text": { + "file": "ui/beacon_screen.json", + "type": "custom", + "extend": { + "name": "hover_text", + "namespace": "common" + } + }, + "hover_state": { + "file": "ui/beacon_screen.json", + "type": "image", + "children": [ + "hover_text" + ] + }, + "hover_state/hover_text": { + "file": "ui/beacon_screen.json", + "type": "custom", + "extend": { + "name": "hover_text", + "namespace": "beacon" + } + }, + "button_unchecked_default": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "image_atlas", + "namespace": "beacon" + } + }, + "button_unchecked_hover": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "image_atlas", + "namespace": "beacon" + }, + "children": [ + "hover_text" + ] + }, + "button_unchecked_hover/hover_text": { + "file": "ui/beacon_screen.json", + "type": "custom", + "extend": { + "name": "hover_text", + "namespace": "beacon" + } + }, + "button_checked_hover": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "image_atlas", + "namespace": "beacon" + }, + "children": [ + "hover_text" + ] + }, + "button_checked_hover/hover_text": { + "file": "ui/beacon_screen.json", + "type": "custom", + "extend": { + "name": "hover_text", + "namespace": "beacon" + } + }, + "button_locked": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "image_atlas", + "namespace": "beacon" + } + }, + "button_locked_hover": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "image_atlas", + "namespace": "beacon" + }, + "children": [ + "hover_text" + ] + }, + "button_locked_hover/hover_text": { + "file": "ui/beacon_screen.json", + "type": "custom", + "extend": { + "name": "hover_text", + "namespace": "beacon" + } + }, + "button_checked": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "image_atlas", + "namespace": "beacon" + } + }, + "toggle_button": { + "file": "ui/beacon_screen.json", + "type": "toggle", + "extend": { + "name": "toggle", + "namespace": "common" + } + }, + "base_button": { + "file": "ui/beacon_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "base_button/default": { + "file": "ui/beacon_screen.json", + "type": "image" + }, + "base_button/hover": { + "file": "ui/beacon_screen.json", + "type": "image" + }, + "base_button/pressed": { + "file": "ui/beacon_screen.json", + "type": "image" + }, + "active_button": { + "file": "ui/beacon_screen.json", + "type": "button", + "extend": { + "name": "base_button", + "namespace": "beacon" + } + }, + "inactive_button": { + "file": "ui/beacon_screen.json", + "type": "button", + "extend": { + "name": "base_button", + "namespace": "beacon" + }, + "children": [ + "default", + "hover" + ] + }, + "inactive_button/default": { + "file": "ui/beacon_screen.json", + "type": "image" + }, + "inactive_button/hover": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "hover_state", + "namespace": "beacon" + } + }, + "selected_button": { + "file": "ui/beacon_screen.json", + "type": "button", + "extend": { + "name": "base_button", + "namespace": "beacon" + }, + "children": [ + "default", + "hover" + ] + }, + "selected_button/default": { + "file": "ui/beacon_screen.json", + "type": "image" + }, + "selected_button/hover": { + "file": "ui/beacon_screen.json", + "type": "image" + }, + "secondary_effect_base": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "base_image", + "namespace": "beacon" + } + }, + "speed_secondary": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "secondary_effect_base", + "namespace": "beacon" + } + }, + "haste_secondary": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "secondary_effect_base", + "namespace": "beacon" + } + }, + "resist_secondary": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "secondary_effect_base", + "namespace": "beacon" + } + }, + "jump_secondary": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "secondary_effect_base", + "namespace": "beacon" + } + }, + "strength_secondary": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "secondary_effect_base", + "namespace": "beacon" + } + }, + "image_template": { + "file": "ui/beacon_screen.json", + "type": "panel", + "children": [ + "base_image" + ] + }, + "image_template/base_image": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "base_image", + "namespace": "beacon" + } + }, + "secondary_effect_images": { + "file": "ui/beacon_screen.json", + "type": "panel", + "extend": { + "name": "image_template", + "namespace": "beacon" + }, + "children": [ + "speed_secondary", + "haste_secondary", + "resist_secondary", + "jump_secondary", + "strength_secondary" + ] + }, + "secondary_effect_images/speed_secondary": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "speed_secondary", + "namespace": "beacon" + } + }, + "secondary_effect_images/haste_secondary": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "haste_secondary", + "namespace": "beacon" + } + }, + "secondary_effect_images/resist_secondary": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "resist_secondary", + "namespace": "beacon" + } + }, + "secondary_effect_images/jump_secondary": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "jump_secondary", + "namespace": "beacon" + } + }, + "secondary_effect_images/strength_secondary": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "strength_secondary", + "namespace": "beacon" + } + }, + "toggle_template": { + "file": "ui/beacon_screen.json", + "type": "panel", + "children": [ + "toggle_button" + ] + }, + "toggle_template/toggle_button": { + "file": "ui/beacon_screen.json", + "type": "toggle", + "extend": { + "name": "toggle_button", + "namespace": "beacon" + } + }, + "button_template": { + "file": "ui/beacon_screen.json", + "type": "panel", + "extend": { + "name": "toggle_template", + "namespace": "beacon" + }, + "children": [ + "active_button", + "inactive_button", + "image_template" + ] + }, + "button_template/active_button": { + "file": "ui/beacon_screen.json", + "type": "button", + "extend": { + "name": "active_button", + "namespace": "beacon" + } + }, + "button_template/inactive_button": { + "file": "ui/beacon_screen.json", + "type": "button", + "extend": { + "name": "inactive_button", + "namespace": "beacon" + } + }, + "button_template/image_template": { + "file": "ui/beacon_screen.json", + "type": "panel", + "extend": { + "name": "image_template", + "namespace": "beacon" + } + }, + "panel_template": { + "file": "ui/beacon_screen.json", + "type": "panel" + }, + "button_panel": { + "file": "ui/beacon_screen.json", + "type": "panel", + "children": [ + "speed_panel", + "haste_panel", + "resist_panel", + "jump_panel", + "strength_panel", + "regen_panel", + "extra_panel" + ] + }, + "button_panel/speed_panel": { + "file": "ui/beacon_screen.json", + "type": "panel", + "extend": { + "name": "panel_template", + "namespace": "beacon" + }, + "children": [ + "toggle_template" + ] + }, + "button_panel/speed_panel/toggle_template": { + "file": "ui/beacon_screen.json", + "type": "panel", + "extend": { + "name": "toggle_template", + "namespace": "beacon" + } + }, + "button_panel/haste_panel": { + "file": "ui/beacon_screen.json", + "type": "panel", + "extend": { + "name": "panel_template", + "namespace": "beacon" + } + }, + "button_panel/resist_panel": { + "file": "ui/beacon_screen.json", + "type": "panel", + "extend": { + "name": "panel_template", + "namespace": "beacon" + } + }, + "button_panel/jump_panel": { + "file": "ui/beacon_screen.json", + "type": "panel", + "extend": { + "name": "panel_template", + "namespace": "beacon" + } + }, + "button_panel/strength_panel": { + "file": "ui/beacon_screen.json", + "type": "panel", + "extend": { + "name": "panel_template", + "namespace": "beacon" + } + }, + "button_panel/regen_panel": { + "file": "ui/beacon_screen.json", + "type": "panel", + "extend": { + "name": "panel_template", + "namespace": "beacon" + } + }, + "button_panel/extra_panel": { + "file": "ui/beacon_screen.json", + "type": "panel", + "extend": { + "name": "panel_template", + "namespace": "beacon" + } + }, + "payment_panel": { + "file": "ui/beacon_screen.json", + "type": "panel", + "children": [ + "confirm_panel", + "cancel_panel", + "ingredient_item", + "usable_items_panel" + ] + }, + "payment_panel/confirm_panel": { + "file": "ui/beacon_screen.json", + "type": "panel", + "extend": { + "name": "panel_template", + "namespace": "beacon" + } + }, + "payment_panel/cancel_panel": { + "file": "ui/beacon_screen.json", + "type": "panel", + "extend": { + "name": "panel_template", + "namespace": "beacon" + } + }, + "payment_panel/ingredient_item": { + "file": "ui/beacon_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "payment_panel/usable_items_panel": { + "file": "ui/beacon_screen.json", + "type": "panel", + "extend": { + "name": "usable_items_panel", + "namespace": "beacon" + } + }, + "beacon_label": { + "file": "ui/beacon_screen.json", + "type": "label", + "extend": { + "name": "section_heading_label", + "namespace": "common" + } + }, + "beacon_inner_panel": { + "file": "ui/beacon_screen.json", + "type": "image", + "children": [ + "button_panel", + "pyramid_panel", + "middle_strip", + "primary_power_label", + "secondary_power_label" + ] + }, + "beacon_inner_panel/button_panel": { + "file": "ui/beacon_screen.json", + "type": "panel", + "extend": { + "name": "button_panel", + "namespace": "beacon" + } + }, + "beacon_inner_panel/pyramid_panel": { + "file": "ui/beacon_screen.json", + "type": "panel", + "extend": { + "name": "pyramid_panel", + "namespace": "beacon" + } + }, + "beacon_inner_panel/middle_strip": { + "file": "ui/beacon_screen.json", + "type": "image", + "extend": { + "name": "image_atlas", + "namespace": "beacon" + } + }, + "beacon_inner_panel/primary_power_label": { + "file": "ui/beacon_screen.json", + "type": "label", + "extend": { + "name": "beacon_label", + "namespace": "beacon" + } + }, + "beacon_inner_panel/secondary_power_label": { + "file": "ui/beacon_screen.json", + "type": "label", + "extend": { + "name": "beacon_label", + "namespace": "beacon" + } + }, + "beacon_screen": { + "file": "ui/beacon_screen.json", + "type": "screen", + "extend": { + "name": "inventory_screen_common", + "namespace": "common" + } + } + }, + "beacon_pocket": { + "generic_label": { + "file": "ui/beacon_screen_pocket.json", + "type": "label" + }, + "panel_outline": { + "file": "ui/beacon_screen_pocket.json", + "type": "image" + }, + "dark_bg": { + "file": "ui/beacon_screen_pocket.json", + "type": "image" + }, + "background_image": { + "file": "ui/beacon_screen_pocket.json", + "type": "image" + }, + "item_seperator": { + "file": "ui/beacon_screen_pocket.json", + "type": "image" + }, + "item_renderer": { + "file": "ui/beacon_screen_pocket.json", + "type": "custom" + }, + "usable_items_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "children": [ + "netherite", + "item_seperator_0", + "emerald", + "item_seperator_1", + "diamond", + "item_seperator_2", + "gold", + "item_seperator_3", + "iron" + ] + }, + "usable_items_panel/netherite": { + "file": "ui/beacon_screen_pocket.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "beacon_pocket" + } + }, + "usable_items_panel/item_seperator_0": { + "file": "ui/beacon_screen_pocket.json", + "type": "image", + "extend": { + "name": "item_seperator", + "namespace": "beacon_pocket" + } + }, + "usable_items_panel/emerald": { + "file": "ui/beacon_screen_pocket.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "beacon_pocket" + } + }, + "usable_items_panel/item_seperator_1": { + "file": "ui/beacon_screen_pocket.json", + "type": "image", + "extend": { + "name": "item_seperator", + "namespace": "beacon_pocket" + } + }, + "usable_items_panel/diamond": { + "file": "ui/beacon_screen_pocket.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "beacon_pocket" + } + }, + "usable_items_panel/item_seperator_2": { + "file": "ui/beacon_screen_pocket.json", + "type": "image", + "extend": { + "name": "item_seperator", + "namespace": "beacon_pocket" + } + }, + "usable_items_panel/gold": { + "file": "ui/beacon_screen_pocket.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "beacon_pocket" + } + }, + "usable_items_panel/item_seperator_3": { + "file": "ui/beacon_screen_pocket.json", + "type": "image", + "extend": { + "name": "item_seperator", + "namespace": "beacon_pocket" + } + }, + "usable_items_panel/iron": { + "file": "ui/beacon_screen_pocket.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "beacon_pocket" + } + }, + "pyramid_image": { + "file": "ui/beacon_screen_pocket.json", + "type": "image" + }, + "pyramid_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "children": [ + "pyramid_image" + ] + }, + "pyramid_panel/pyramid_image": { + "file": "ui/beacon_screen_pocket.json", + "type": "image", + "extend": { + "name": "pyramid_image", + "namespace": "beacon_pocket" + } + }, + "background_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "image" + }, + "beacon_background": { + "file": "ui/beacon_screen_pocket.json", + "type": "image", + "children": [ + "middle_strip" + ] + }, + "beacon_background/middle_strip": { + "file": "ui/beacon_screen_pocket.json", + "type": "image" + }, + "inventory_grid": { + "file": "ui/beacon_screen_pocket.json", + "type": "grid" + }, + "inventory_content": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "inventory_content/scrolling_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "highlight_hover_square": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "children": [ + "highlight_square" + ] + }, + "highlight_hover_square/highlight_square": { + "file": "ui/beacon_screen_pocket.json", + "type": "image", + "extend": { + "name": "pocket_ui_highlight_slot", + "namespace": "common" + } + }, + "button_unchecked_default": { + "file": "ui/beacon_screen_pocket.json", + "type": "image" + }, + "button_unchecked_hover": { + "file": "ui/beacon_screen_pocket.json", + "type": "image", + "children": [ + "highlight_hover_square" + ] + }, + "button_unchecked_hover/highlight_hover_square": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "highlight_hover_square", + "namespace": "beacon_pocket" + } + }, + "button_checked": { + "file": "ui/beacon_screen_pocket.json", + "type": "image" + }, + "button_checked_hover": { + "file": "ui/beacon_screen_pocket.json", + "type": "image", + "extend": { + "name": "button_checked", + "namespace": "beacon_pocket" + }, + "children": [ + "highlight_hover_square" + ] + }, + "button_checked_hover/highlight_hover_square": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "highlight_hover_square", + "namespace": "beacon_pocket" + } + }, + "button_locked": { + "file": "ui/beacon_screen_pocket.json", + "type": "image", + "extend": { + "name": "inactive_button_image", + "namespace": "beacon_pocket" + } + }, + "button_locked_hover": { + "file": "ui/beacon_screen_pocket.json", + "type": "image", + "extend": { + "name": "inactive_button_image", + "namespace": "beacon_pocket" + }, + "children": [ + "highlight_hover_square" + ] + }, + "button_locked_hover/highlight_hover_square": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "highlight_hover_square", + "namespace": "beacon_pocket" + } + }, + "toggle_button": { + "file": "ui/beacon_screen_pocket.json", + "type": "toggle", + "extend": { + "name": "toggle", + "namespace": "common" + } + }, + "base_button": { + "file": "ui/beacon_screen_pocket.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "base_button/default": { + "file": "ui/beacon_screen_pocket.json", + "type": "image" + }, + "base_button/hover": { + "file": "ui/beacon_screen_pocket.json", + "type": "image", + "children": [ + "highlight_hover_square" + ] + }, + "base_button/hover/highlight_hover_square": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "highlight_hover_square", + "namespace": "beacon_pocket" + } + }, + "base_button/pressed": { + "file": "ui/beacon_screen_pocket.json", + "type": "image" + }, + "active_button": { + "file": "ui/beacon_screen_pocket.json", + "type": "button", + "extend": { + "name": "base_button", + "namespace": "beacon_pocket" + } + }, + "inactive_button_image": { + "file": "ui/beacon_screen_pocket.json", + "type": "image" + }, + "inactive_button": { + "file": "ui/beacon_screen_pocket.json", + "type": "button", + "extend": { + "name": "base_button", + "namespace": "beacon_pocket" + }, + "children": [ + "default", + "hover" + ] + }, + "inactive_button/default": { + "file": "ui/beacon_screen_pocket.json", + "type": "image", + "extend": { + "name": "inactive_button_image", + "namespace": "beacon_pocket" + } + }, + "inactive_button/hover": { + "file": "ui/beacon_screen_pocket.json", + "type": "image", + "extend": { + "name": "inactive_button_image", + "namespace": "beacon_pocket" + }, + "children": [ + "highlight_hover_square" + ] + }, + "inactive_button/hover/highlight_hover_square": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "highlight_hover_square", + "namespace": "beacon_pocket" + } + }, + "selected_button_image": { + "file": "ui/beacon_screen_pocket.json", + "type": "image" + }, + "selected_button": { + "file": "ui/beacon_screen_pocket.json", + "type": "button", + "extend": { + "name": "base_button", + "namespace": "beacon_pocket" + }, + "children": [ + "default", + "hover" + ] + }, + "selected_button/default": { + "file": "ui/beacon_screen_pocket.json", + "type": "image", + "extend": { + "name": "selected_button_image", + "namespace": "beacon_pocket" + } + }, + "selected_button/hover": { + "file": "ui/beacon_screen_pocket.json", + "type": "image", + "extend": { + "name": "selected_button_image", + "namespace": "beacon_pocket" + }, + "children": [ + "highlight_hover_square" + ] + }, + "selected_button/hover/highlight_hover_square": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "highlight_hover_square", + "namespace": "beacon_pocket" + } + }, + "secondary_effect_base": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "image_template", + "namespace": "beacon_pocket" + } + }, + "speed_secondary": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "secondary_effect_base", + "namespace": "beacon_pocket" + } + }, + "haste_secondary": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "secondary_effect_base", + "namespace": "beacon_pocket" + } + }, + "resist_secondary": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "secondary_effect_base", + "namespace": "beacon_pocket" + } + }, + "jump_secondary": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "secondary_effect_base", + "namespace": "beacon_pocket" + } + }, + "strength_secondary": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "secondary_effect_base", + "namespace": "beacon_pocket" + } + }, + "secondary_effect_images": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "image_template", + "namespace": "beacon_pocket" + }, + "children": [ + "speed_secondary", + "haste_secondary", + "resist_secondary", + "jump_secondary", + "strength_secondary" + ] + }, + "secondary_effect_images/speed_secondary": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "speed_secondary", + "namespace": "beacon_pocket" + } + }, + "secondary_effect_images/haste_secondary": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "haste_secondary", + "namespace": "beacon_pocket" + } + }, + "secondary_effect_images/resist_secondary": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "resist_secondary", + "namespace": "beacon_pocket" + } + }, + "secondary_effect_images/jump_secondary": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "jump_secondary", + "namespace": "beacon_pocket" + } + }, + "secondary_effect_images/strength_secondary": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "strength_secondary", + "namespace": "beacon_pocket" + } + }, + "base_image": { + "file": "ui/beacon_screen_pocket.json", + "type": "image" + }, + "image_template": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "children": [ + "base_image" + ] + }, + "image_template/base_image": { + "file": "ui/beacon_screen_pocket.json", + "type": "image", + "extend": { + "name": "base_image", + "namespace": "beacon_pocket" + } + }, + "toggle_template": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "children": [ + "toggle_button" + ] + }, + "toggle_template/toggle_button": { + "file": "ui/beacon_screen_pocket.json", + "type": "toggle", + "extend": { + "name": "toggle_button", + "namespace": "beacon_pocket" + } + }, + "button_template": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "toggle_template", + "namespace": "beacon_pocket" + }, + "children": [ + "active_button", + "inactive_button", + "image_template" + ] + }, + "button_template/active_button": { + "file": "ui/beacon_screen_pocket.json", + "type": "button", + "extend": { + "name": "active_button", + "namespace": "beacon_pocket" + } + }, + "button_template/inactive_button": { + "file": "ui/beacon_screen_pocket.json", + "type": "button", + "extend": { + "name": "inactive_button", + "namespace": "beacon_pocket" + } + }, + "button_template/image_template": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "image_template", + "namespace": "beacon_pocket" + } + }, + "panel_template": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel" + }, + "beacon_power_label": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "children": [ + "label" + ] + }, + "beacon_power_label/label": { + "file": "ui/beacon_screen_pocket.json", + "type": "label", + "extend": { + "name": "generic_label", + "namespace": "beacon_pocket" + } + }, + "beacon_sub_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel" + }, + "beacon_button_left_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "beacon_sub_panel", + "namespace": "beacon_pocket" + }, + "children": [ + "primary_power_label", + "panel" + ] + }, + "beacon_button_left_panel/primary_power_label": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "beacon_power_label", + "namespace": "beacon_pocket" + } + }, + "beacon_button_left_panel/panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "children": [ + "pyramids_and_buttons" + ] + }, + "beacon_button_left_panel/panel/pyramids_and_buttons": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "children": [ + "level1", + "speed_panel", + "haste_panel", + "level2", + "resist_panel", + "jump_panel", + "level3", + "strength_panel" + ] + }, + "beacon_button_left_panel/panel/pyramids_and_buttons/level1": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "pyramid_panel", + "namespace": "beacon_pocket" + } + }, + "beacon_button_left_panel/panel/pyramids_and_buttons/speed_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "panel_template", + "namespace": "beacon_pocket" + } + }, + "beacon_button_left_panel/panel/pyramids_and_buttons/haste_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "panel_template", + "namespace": "beacon_pocket" + } + }, + "beacon_button_left_panel/panel/pyramids_and_buttons/level2": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "pyramid_panel", + "namespace": "beacon_pocket" + } + }, + "beacon_button_left_panel/panel/pyramids_and_buttons/resist_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "panel_template", + "namespace": "beacon_pocket" + } + }, + "beacon_button_left_panel/panel/pyramids_and_buttons/jump_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "panel_template", + "namespace": "beacon_pocket" + } + }, + "beacon_button_left_panel/panel/pyramids_and_buttons/level3": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "pyramid_panel", + "namespace": "beacon_pocket" + } + }, + "beacon_button_left_panel/panel/pyramids_and_buttons/strength_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "panel_template", + "namespace": "beacon_pocket" + } + }, + "beacon_button_right_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "beacon_sub_panel", + "namespace": "beacon_pocket" + }, + "children": [ + "secondary_power_label", + "panel" + ] + }, + "beacon_button_right_panel/secondary_power_label": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "beacon_power_label", + "namespace": "beacon_pocket" + } + }, + "beacon_button_right_panel/panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "children": [ + "buttons_and_pyramid" + ] + }, + "beacon_button_right_panel/panel/buttons_and_pyramid": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "children": [ + "level4", + "regen_panel", + "extra_panel" + ] + }, + "beacon_button_right_panel/panel/buttons_and_pyramid/level4": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "pyramid_panel", + "namespace": "beacon_pocket" + } + }, + "beacon_button_right_panel/panel/buttons_and_pyramid/regen_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "panel_template", + "namespace": "beacon_pocket" + } + }, + "beacon_button_right_panel/panel/buttons_and_pyramid/extra_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "panel_template", + "namespace": "beacon_pocket" + } + }, + "beacon_buttons_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "children": [ + "beacon_background", + "left_panel", + "right_panel" + ] + }, + "beacon_buttons_panel/beacon_background": { + "file": "ui/beacon_screen_pocket.json", + "type": "image", + "extend": { + "name": "beacon_background", + "namespace": "beacon_pocket" + } + }, + "beacon_buttons_panel/left_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "beacon_button_left_panel", + "namespace": "beacon_pocket" + } + }, + "beacon_buttons_panel/right_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "beacon_button_right_panel", + "namespace": "beacon_pocket" + } + }, + "confirm_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "children": [ + "ingredient_item", + "confirm_panel", + "cancel_panel" + ] + }, + "confirm_panel/ingredient_item": { + "file": "ui/beacon_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_container_item", + "namespace": "common" + } + }, + "confirm_panel/confirm_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "panel_template", + "namespace": "beacon_pocket" + } + }, + "confirm_panel/cancel_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "panel_template", + "namespace": "beacon_pocket" + } + }, + "beacon_payment_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "stack_panel", + "children": [ + "usable_items_panel", + "pad", + "confirm_panel" + ] + }, + "beacon_payment_panel/usable_items_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "usable_items_panel", + "namespace": "beacon_pocket" + } + }, + "beacon_payment_panel/pad": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel" + }, + "beacon_payment_panel/confirm_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "confirm_panel", + "namespace": "beacon_pocket" + } + }, + "beacon_contents_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "stack_panel", + "children": [ + "fill1", + "beacon_buttons_panel", + "pad1", + "beacon_payment_panel", + "fill2" + ] + }, + "beacon_contents_panel/fill1": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel" + }, + "beacon_contents_panel/beacon_buttons_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "beacon_buttons_panel", + "namespace": "beacon_pocket" + } + }, + "beacon_contents_panel/pad1": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel" + }, + "beacon_contents_panel/beacon_payment_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "beacon_payment_panel", + "namespace": "beacon_pocket" + } + }, + "beacon_contents_panel/fill2": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel" + }, + "header": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "children": [ + "header_background", + "legacy_pocket_close_button", + "panel" + ] + }, + "header/header_background": { + "file": "ui/beacon_screen_pocket.json", + "type": "image" + }, + "header/legacy_pocket_close_button": { + "file": "ui/beacon_screen_pocket.json", + "type": "button", + "extend": { + "name": "legacy_pocket_close_button", + "namespace": "common" + } + }, + "header/panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "children": [ + "title_label" + ] + }, + "header/panel/title_label": { + "file": "ui/beacon_screen_pocket.json", + "type": "label", + "extend": { + "name": "generic_label", + "namespace": "enchanting_pocket" + } + }, + "inventory_and_beacon_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "children": [ + "inventory_half_screen", + "beacon_half_screen" + ] + }, + "inventory_and_beacon_panel/inventory_half_screen": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "children": [ + "inventory_content" + ] + }, + "inventory_and_beacon_panel/inventory_half_screen/inventory_content": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "inventory_content", + "namespace": "beacon_pocket" + } + }, + "inventory_and_beacon_panel/beacon_half_screen": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "children": [ + "beacon_content" + ] + }, + "inventory_and_beacon_panel/beacon_half_screen/beacon_content": { + "file": "ui/beacon_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "beacon_contents_panel", + "namespace": "beacon_pocket" + } + }, + "header_and_content_stack_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "stack_panel", + "children": [ + "header", + "inventory_and_beacon_panel" + ] + }, + "header_and_content_stack_panel/header": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "beacon_pocket" + } + }, + "header_and_content_stack_panel/inventory_and_beacon_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "panel", + "extend": { + "name": "inventory_and_beacon_panel", + "namespace": "beacon_pocket" + } + }, + "beacon_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "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": { + "file": "ui/beacon_screen_pocket.json", + "type": "image", + "extend": { + "name": "background_image", + "namespace": "furnace_pocket" + } + }, + "beacon_panel/root_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + } + }, + "beacon_panel/header_and_content_stack_panel": { + "file": "ui/beacon_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "header_and_content_stack_panel", + "namespace": "beacon_pocket" + } + }, + "beacon_panel/container_gamepad_helpers": { + "file": "ui/beacon_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "beacon_panel/inventory_selected_icon_button": { + "file": "ui/beacon_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "beacon_panel/hold_icon": { + "file": "ui/beacon_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "beacon_panel/selected_item_details_factory": { + "file": "ui/beacon_screen_pocket.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "beacon_panel/item_lock_notification_factory": { + "file": "ui/beacon_screen_pocket.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "beacon_panel/flying_item_renderer": { + "file": "ui/beacon_screen_pocket.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + } + }, + "blast_furnace": { + "blast_furnace_screen": { + "file": "ui/blast_furnace_screen.json", + "type": "screen", + "extend": { + "name": "furnace_screen", + "namespace": "furnace" + } + } + }, + "book": { + "screenshot": { + "file": "ui/book_screen.json", + "type": "image" + }, + "screenshot_frame": { + "file": "ui/book_screen.json", + "type": "image", + "children": [ + "caption_edit" + ] + }, + "screenshot_frame/caption_edit": { + "file": "ui/book_screen.json", + "type": "edit_box", + "extend": { + "name": "page_caption", + "namespace": "book" + } + }, + "photo_corner": { + "file": "ui/book_screen.json", + "type": "image" + }, + "photo_corner_bl": { + "file": "ui/book_screen.json", + "type": "image", + "extend": { + "name": "photo_corner", + "namespace": "book" + } + }, + "photo_corner_br": { + "file": "ui/book_screen.json", + "type": "image", + "extend": { + "name": "photo_corner", + "namespace": "book" + } + }, + "photo_corner_tr": { + "file": "ui/book_screen.json", + "type": "image", + "extend": { + "name": "photo_corner", + "namespace": "book" + } + }, + "photo_corner_tl": { + "file": "ui/book_screen.json", + "type": "image", + "extend": { + "name": "photo_corner", + "namespace": "book" + } + }, + "page_caption": { + "file": "ui/book_screen.json", + "type": "edit_box", + "extend": { + "name": "page_text_edit", + "namespace": "book" + } + }, + "page_photo": { + "file": "ui/book_screen.json", + "type": "panel", + "children": [ + "screenshot", + "screenshot_frame", + "photo_corner_bl", + "photo_corner_br", + "photo_corner_tl", + "photo_corner_tr" + ] + }, + "page_photo/screenshot": { + "file": "ui/book_screen.json", + "type": "image", + "extend": { + "name": "screenshot", + "namespace": "book" + } + }, + "page_photo/screenshot_frame": { + "file": "ui/book_screen.json", + "type": "image", + "extend": { + "name": "screenshot_frame", + "namespace": "book" + } + }, + "page_photo/photo_corner_bl": { + "file": "ui/book_screen.json", + "type": "image", + "extend": { + "name": "photo_corner_bl", + "namespace": "book" + } + }, + "page_photo/photo_corner_br": { + "file": "ui/book_screen.json", + "type": "image", + "extend": { + "name": "photo_corner_br", + "namespace": "book" + } + }, + "page_photo/photo_corner_tl": { + "file": "ui/book_screen.json", + "type": "image", + "extend": { + "name": "photo_corner_tl", + "namespace": "book" + } + }, + "page_photo/photo_corner_tr": { + "file": "ui/book_screen.json", + "type": "image", + "extend": { + "name": "photo_corner_tr", + "namespace": "book" + } + }, + "pick_item": { + "file": "ui/book_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "photo", + "button" + ] + }, + "pick_item/photo": { + "file": "ui/book_screen.json", + "type": "panel", + "extend": { + "name": "page_photo", + "namespace": "book" + } + }, + "pick_item/button": { + "file": "ui/book_screen.json", + "type": "button" + }, + "pick_item_inventory": { + "file": "ui/book_screen.json", + "type": "panel", + "children": [ + "photo", + "button" + ] + }, + "pick_item_inventory/photo": { + "file": "ui/book_screen.json", + "type": "panel", + "extend": { + "name": "page_photo", + "namespace": "book" + } + }, + "pick_item_inventory/button": { + "file": "ui/book_screen.json", + "type": "button" + }, + "header": { + "file": "ui/book_screen.json", + "type": "label" + }, + "text_centering_panel_inventory": { + "file": "ui/book_screen.json", + "type": "panel", + "children": [ + "inventory_header" + ] + }, + "text_centering_panel_inventory/inventory_header": { + "file": "ui/book_screen.json", + "type": "label", + "extend": { + "name": "header", + "namespace": "book" + } + }, + "text_centering_panel_portfolio": { + "file": "ui/book_screen.json", + "type": "panel", + "children": [ + "portfolio_header" + ] + }, + "text_centering_panel_portfolio/portfolio_header": { + "file": "ui/book_screen.json", + "type": "label", + "extend": { + "name": "header", + "namespace": "book" + } + }, + "pick_scrolling_content": { + "file": "ui/book_screen.json", + "type": "stack_panel", + "children": [ + "inventory_header", + "inventory_grid", + "portfolio_header", + "portfolio_grid" + ] + }, + "pick_scrolling_content/inventory_header": { + "file": "ui/book_screen.json", + "type": "panel", + "extend": { + "name": "text_centering_panel_inventory", + "namespace": "book" + } + }, + "pick_scrolling_content/inventory_grid": { + "file": "ui/book_screen.json", + "type": "stack_panel", + "extend": { + "name": "stack_panel_grid", + "namespace": "edu_common" + } + }, + "pick_scrolling_content/portfolio_header": { + "file": "ui/book_screen.json", + "type": "panel", + "extend": { + "name": "text_centering_panel_portfolio", + "namespace": "book" + } + }, + "pick_scrolling_content/portfolio_grid": { + "file": "ui/book_screen.json", + "type": "stack_panel", + "extend": { + "name": "stack_panel_grid", + "namespace": "edu_common" + } + }, + "pick_panel": { + "file": "ui/book_screen.json", + "type": "image", + "children": [ + "scroll", + "close_button" + ] + }, + "pick_panel/scroll": { + "file": "ui/book_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "pick_panel/close_button": { + "file": "ui/book_screen.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "book" + } + }, + "blank": { + "file": "ui/book_screen.json", + "type": "image" + }, + "book_background": { + "file": "ui/book_screen.json", + "type": "image" + }, + "book_spine_image": { + "file": "ui/book_screen.json", + "type": "image" + }, + "page_crease_left_image": { + "file": "ui/book_screen.json", + "type": "image" + }, + "page_crease_right_image": { + "file": "ui/book_screen.json", + "type": "image" + }, + "page_edge_left_image": { + "file": "ui/book_screen.json", + "type": "image" + }, + "page_edge_right_image": { + "file": "ui/book_screen.json", + "type": "image" + }, + "text_edit_hover_image": { + "file": "ui/book_screen.json", + "type": "image" + }, + "base_button": { + "file": "ui/book_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "base_button/default": { + "file": "ui/book_screen.json", + "type": "image" + }, + "base_button/hover": { + "file": "ui/book_screen.json", + "type": "image" + }, + "base_button/pressed": { + "file": "ui/book_screen.json", + "type": "image" + }, + "book_buttons_panel": { + "file": "ui/book_screen.json", + "type": "panel", + "children": [ + "sign_export_buttons", + "im_content_button" + ] + }, + "book_buttons_panel/sign_export_buttons": { + "file": "ui/book_screen.json", + "type": "stack_panel", + "children": [ + "left_spacer", + "sign_button", + "export_button", + "right_spacer" + ] + }, + "book_buttons_panel/sign_export_buttons/left_spacer": { + "file": "ui/book_screen.json", + "type": "panel" + }, + "book_buttons_panel/sign_export_buttons/sign_button": { + "file": "ui/book_screen.json", + "type": "button", + "extend": { + "name": "light_text_form_fitting_button", + "namespace": "common_buttons" + } + }, + "book_buttons_panel/sign_export_buttons/export_button": { + "file": "ui/book_screen.json", + "type": "button", + "extend": { + "name": "light_text_form_fitting_button", + "namespace": "common_buttons" + } + }, + "book_buttons_panel/sign_export_buttons/right_spacer": { + "file": "ui/book_screen.json", + "type": "panel" + }, + "book_buttons_panel/im_content_button": { + "file": "ui/book_screen.json", + "type": "button", + "extend": { + "name": "reader_button", + "namespace": "im_reader" + } + }, + "cover_buttons_stack_panel_holder": { + "file": "ui/book_screen.json", + "type": "panel", + "children": [ + "cover_buttons_stack_panel" + ] + }, + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel": { + "file": "ui/book_screen.json", + "type": "stack_panel", + "children": [ + "finalize_button", + "padding_1", + "cancel_sign_button" + ] + }, + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/finalize_button": { + "file": "ui/book_screen.json", + "type": "button", + "extend": { + "name": "light_text_form_fitting_button", + "namespace": "common_buttons" + } + }, + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/padding_1": { + "file": "ui/book_screen.json", + "type": "panel" + }, + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/cancel_sign_button": { + "file": "ui/book_screen.json", + "type": "button", + "extend": { + "name": "light_text_form_fitting_button", + "namespace": "common_buttons" + } + }, + "close_button_default": { + "file": "ui/book_screen.json", + "type": "image" + }, + "close_button_hover": { + "file": "ui/book_screen.json", + "type": "image" + }, + "close_button_pressed": { + "file": "ui/book_screen.json", + "type": "image" + }, + "close_button": { + "file": "ui/book_screen.json", + "type": "button", + "children": [ + "default", + "hover", + "pressed" + ] + }, + "close_button/default": { + "file": "ui/book_screen.json", + "type": "image", + "extend": { + "name": "close_button_default", + "namespace": "book" + } + }, + "close_button/hover": { + "file": "ui/book_screen.json", + "type": "image", + "extend": { + "name": "close_button_hover", + "namespace": "book" + } + }, + "close_button/pressed": { + "file": "ui/book_screen.json", + "type": "image", + "extend": { + "name": "close_button_pressed", + "namespace": "book" + } + }, + "page_text_edit": { + "file": "ui/book_screen.json", + "type": "edit_box", + "extend": { + "name": "multiline_text_edit_box", + "namespace": "common" + } + }, + "page_text": { + "file": "ui/book_screen.json", + "type": "edit_box", + "extend": { + "name": "page_text_edit", + "namespace": "book" + } + }, + "page_number_label": { + "file": "ui/book_screen.json", + "type": "label" + }, + "padded_button": { + "file": "ui/book_screen.json", + "type": "panel", + "children": [ + "button" + ] + }, + "padded_button/button": { + "file": "ui/book_screen.json", + "type": "button", + "extend": { + "name": "base_button", + "namespace": "book" + } + }, + "page_buttons_panel": { + "file": "ui/book_screen.json", + "type": "stack_panel", + "children": [ + "swap_page_left", + "insert_text_page", + "insert_photo_page", + "delete_page", + "swap_page_right" + ] + }, + "page_buttons_panel/swap_page_left": { + "file": "ui/book_screen.json", + "type": "panel", + "extend": { + "name": "padded_button", + "namespace": "book" + } + }, + "page_buttons_panel/insert_text_page": { + "file": "ui/book_screen.json", + "type": "panel", + "extend": { + "name": "padded_button", + "namespace": "book" + } + }, + "page_buttons_panel/insert_photo_page": { + "file": "ui/book_screen.json", + "type": "panel", + "extend": { + "name": "padded_button", + "namespace": "book" + } + }, + "page_buttons_panel/delete_page": { + "file": "ui/book_screen.json", + "type": "panel", + "extend": { + "name": "padded_button", + "namespace": "book" + } + }, + "page_buttons_panel/swap_page_right": { + "file": "ui/book_screen.json", + "type": "panel", + "extend": { + "name": "padded_button", + "namespace": "book" + } + }, + "page_content_panel": { + "file": "ui/book_screen.json", + "type": "panel", + "children": [ + "page_text", + "page_photo", + "page_number_label", + "page_buttons_panel", + "edit_page" + ] + }, + "page_content_panel/page_text": { + "file": "ui/book_screen.json", + "type": "edit_box", + "extend": { + "name": "page_text", + "namespace": "book" + } + }, + "page_content_panel/page_photo": { + "file": "ui/book_screen.json", + "type": "panel", + "extend": { + "name": "page_photo", + "namespace": "book" + } + }, + "page_content_panel/page_number_label": { + "file": "ui/book_screen.json", + "type": "label", + "extend": { + "name": "page_number_label", + "namespace": "book" + } + }, + "page_content_panel/page_buttons_panel": { + "file": "ui/book_screen.json", + "type": "stack_panel", + "extend": { + "name": "page_buttons_panel", + "namespace": "book" + } + }, + "page_content_panel/edit_page": { + "file": "ui/book_screen.json", + "type": "button", + "extend": { + "name": "base_button", + "namespace": "book" + } + }, + "title_label": { + "file": "ui/book_screen.json", + "type": "label" + }, + "title_text_box": { + "file": "ui/book_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "author_label": { + "file": "ui/book_screen.json", + "type": "label" + }, + "author_text_box": { + "file": "ui/book_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "author_stack_panel": { + "file": "ui/book_screen.json", + "type": "stack_panel", + "children": [ + "author_label_panel", + "author_text_panel" + ] + }, + "author_stack_panel/author_label_panel": { + "file": "ui/book_screen.json", + "type": "panel", + "children": [ + "author_label" + ] + }, + "author_stack_panel/author_label_panel/author_label": { + "file": "ui/book_screen.json", + "type": "label", + "extend": { + "name": "author_label", + "namespace": "book" + } + }, + "author_stack_panel/author_text_panel": { + "file": "ui/book_screen.json", + "type": "panel", + "children": [ + "author_text_box" + ] + }, + "author_stack_panel/author_text_panel/author_text_box": { + "file": "ui/book_screen.json", + "type": "edit_box", + "extend": { + "name": "author_text_box", + "namespace": "book" + } + }, + "warning_label": { + "file": "ui/book_screen.json", + "type": "label" + }, + "cover_content_panel": { + "file": "ui/book_screen.json", + "type": "panel", + "children": [ + "title_label", + "title_text_box", + "author_stack_panel", + "warning_label" + ] + }, + "cover_content_panel/title_label": { + "file": "ui/book_screen.json", + "type": "label", + "extend": { + "name": "title_label", + "namespace": "book" + } + }, + "cover_content_panel/title_text_box": { + "file": "ui/book_screen.json", + "type": "edit_box", + "extend": { + "name": "title_text_box", + "namespace": "book" + } + }, + "cover_content_panel/author_stack_panel": { + "file": "ui/book_screen.json", + "type": "stack_panel", + "extend": { + "name": "author_stack_panel", + "namespace": "book" + } + }, + "cover_content_panel/warning_label": { + "file": "ui/book_screen.json", + "type": "label", + "extend": { + "name": "warning_label", + "namespace": "book" + } + }, + "cover_and_buttons_panel": { + "file": "ui/book_screen.json", + "type": "panel", + "children": [ + "cover_panel", + "cover_buttons_stack_panel_holder" + ] + }, + "cover_and_buttons_panel/cover_panel": { + "file": "ui/book_screen.json", + "type": "panel", + "children": [ + "cover_content_panel", + "book_background", + "close_button" + ] + }, + "cover_and_buttons_panel/cover_panel/cover_content_panel": { + "file": "ui/book_screen.json", + "type": "panel", + "extend": { + "name": "cover_content_panel", + "namespace": "book" + } + }, + "cover_and_buttons_panel/cover_panel/book_background": { + "file": "ui/book_screen.json", + "type": "image" + }, + "cover_and_buttons_panel/cover_panel/close_button": { + "file": "ui/book_screen.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "book" + } + }, + "cover_and_buttons_panel/cover_buttons_stack_panel_holder": { + "file": "ui/book_screen.json", + "type": "panel", + "extend": { + "name": "cover_buttons_stack_panel_holder", + "namespace": "book" + } + }, + "page_panel": { + "file": "ui/book_screen.json", + "type": "panel", + "children": [ + "page_content_panel" + ] + }, + "page_panel/page_content_panel": { + "file": "ui/book_screen.json", + "type": "panel", + "extend": { + "name": "page_content_panel", + "namespace": "book" + } + }, + "book_grid": { + "file": "ui/book_screen.json", + "type": "grid", + "children": [ + "page_panel_left", + "page_panel_right" + ] + }, + "book_grid/page_panel_left": { + "file": "ui/book_screen.json", + "type": "panel", + "extend": { + "name": "page_panel", + "namespace": "book" + } + }, + "book_grid/page_panel_right": { + "file": "ui/book_screen.json", + "type": "panel", + "extend": { + "name": "page_panel", + "namespace": "book" + } + }, + "book_and_buttons_panel": { + "file": "ui/book_screen.json", + "type": "panel", + "children": [ + "book_panel", + "book_buttons_panel" + ] + }, + "book_and_buttons_panel/book_panel": { + "file": "ui/book_screen.json", + "type": "panel", + "children": [ + "book_grid", + "book_background", + "book_spine_image", + "close_button", + "prev_button", + "next_button" + ] + }, + "book_and_buttons_panel/book_panel/book_grid": { + "file": "ui/book_screen.json", + "type": "grid", + "extend": { + "name": "book_grid", + "namespace": "book" + } + }, + "book_and_buttons_panel/book_panel/book_background": { + "file": "ui/book_screen.json", + "type": "image", + "extend": { + "name": "book_background", + "namespace": "book" + } + }, + "book_and_buttons_panel/book_panel/book_spine_image": { + "file": "ui/book_screen.json", + "type": "image", + "extend": { + "name": "book_spine_image", + "namespace": "book" + } + }, + "book_and_buttons_panel/book_panel/close_button": { + "file": "ui/book_screen.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "book" + } + }, + "book_and_buttons_panel/book_panel/prev_button": { + "file": "ui/book_screen.json", + "type": "button", + "extend": { + "name": "base_button", + "namespace": "book" + } + }, + "book_and_buttons_panel/book_panel/next_button": { + "file": "ui/book_screen.json", + "type": "button", + "extend": { + "name": "base_button", + "namespace": "book" + } + }, + "book_and_buttons_panel/book_buttons_panel": { + "file": "ui/book_screen.json", + "type": "panel", + "extend": { + "name": "book_buttons_panel", + "namespace": "book" + } + }, + "root_panel": { + "file": "ui/book_screen.json", + "type": "panel" + }, + "book_screen": { + "file": "ui/book_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "book_screen_content": { + "file": "ui/book_screen.json", + "type": "panel", + "children": [ + "root_panel" + ] + }, + "book_screen_content/root_panel": { + "file": "ui/book_screen.json", + "type": "panel", + "extend": { + "name": "root_panel", + "namespace": "book" + }, + "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": { + "file": "ui/book_screen.json", + "type": "panel", + "extend": { + "name": "book_and_buttons_panel", + "namespace": "book" + } + }, + "book_screen_content/root_panel/cover_and_buttons_panel": { + "file": "ui/book_screen.json", + "type": "panel", + "extend": { + "name": "cover_and_buttons_panel", + "namespace": "book" + } + }, + "book_screen_content/root_panel/pick_panel": { + "file": "ui/book_screen.json", + "type": "image", + "extend": { + "name": "pick_panel", + "namespace": "book" + } + }, + "book_screen_content/root_panel/export_progress": { + "file": "ui/book_screen.json", + "type": "panel", + "extend": { + "name": "modal_progress_panel_no_cancel", + "namespace": "progress" + } + }, + "book_screen_content/root_panel/gamepad_helper_a": { + "file": "ui/book_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_a", + "namespace": "common" + } + }, + "book_screen_content/root_panel/gamepad_helper_b": { + "file": "ui/book_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_b", + "namespace": "common" + } + } + }, + "brewing_stand": { + "brewing_pipes": { + "file": "ui/brewing_stand_screen.json", + "type": "image" + }, + "brewing_fuel_pipes": { + "file": "ui/brewing_stand_screen.json", + "type": "image" + }, + "bottle_empty_image": { + "file": "ui/brewing_stand_screen.json", + "type": "image" + }, + "fuel_empty_image": { + "file": "ui/brewing_stand_screen.json", + "type": "image" + }, + "bubbles_empty_image": { + "file": "ui/brewing_stand_screen.json", + "type": "image" + }, + "bubbles_full_image": { + "file": "ui/brewing_stand_screen.json", + "type": "image" + }, + "brewing_arrow_empty_image": { + "file": "ui/brewing_stand_screen.json", + "type": "image" + }, + "brewing_arrow_full_image": { + "file": "ui/brewing_stand_screen.json", + "type": "image" + }, + "brewing_fuel_bar_empty_image": { + "file": "ui/brewing_stand_screen.json", + "type": "image" + }, + "brewing_fuel_bar_full_image": { + "file": "ui/brewing_stand_screen.json", + "type": "image" + }, + "brewing_label": { + "file": "ui/brewing_stand_screen.json", + "type": "label" + }, + "brewingstand_output_item": { + "file": "ui/brewing_stand_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "brewing_output_slots": { + "file": "ui/brewing_stand_screen.json", + "type": "grid", + "children": [ + "left_offset", + "output_grid_item2", + "right_offset" + ] + }, + "brewing_output_slots/left_offset": { + "file": "ui/brewing_stand_screen.json", + "type": "panel", + "children": [ + "output_grid_item1" + ] + }, + "brewing_output_slots/left_offset/output_grid_item1": { + "file": "ui/brewing_stand_screen.json", + "type": "input_panel", + "extend": { + "name": "brewingstand_output_item", + "namespace": "brewing_stand" + } + }, + "brewing_output_slots/output_grid_item2": { + "file": "ui/brewing_stand_screen.json", + "type": "input_panel", + "extend": { + "name": "brewingstand_output_item", + "namespace": "brewing_stand" + } + }, + "brewing_output_slots/right_offset": { + "file": "ui/brewing_stand_screen.json", + "type": "panel", + "children": [ + "output_grid_item3" + ] + }, + "brewing_output_slots/right_offset/output_grid_item3": { + "file": "ui/brewing_stand_screen.json", + "type": "input_panel", + "extend": { + "name": "brewingstand_output_item", + "namespace": "brewing_stand" + } + }, + "brewing_input_slot": { + "file": "ui/brewing_stand_screen.json", + "type": "panel", + "children": [ + "input_grid_item" + ] + }, + "brewing_input_slot/input_grid_item": { + "file": "ui/brewing_stand_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "brewing_fuel_slot": { + "file": "ui/brewing_stand_screen.json", + "type": "panel", + "children": [ + "fuel_grid_item" + ] + }, + "brewing_fuel_slot/fuel_grid_item": { + "file": "ui/brewing_stand_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "brewing_panel_top_half": { + "file": "ui/brewing_stand_screen.json", + "type": "panel", + "children": [ + "brewing_label", + "brewing_stand_pictogram" + ] + }, + "brewing_panel_top_half/brewing_label": { + "file": "ui/brewing_stand_screen.json", + "type": "label", + "extend": { + "name": "brewing_label", + "namespace": "brewing_stand" + } + }, + "brewing_panel_top_half/brewing_stand_pictogram": { + "file": "ui/brewing_stand_screen.json", + "type": "panel", + "extend": { + "name": "brewing_stand_pictogram", + "namespace": "brewing_stand" + } + }, + "brewing_stand_pictogram": { + "file": "ui/brewing_stand_screen.json", + "type": "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": { + "file": "ui/brewing_stand_screen.json", + "type": "panel", + "extend": { + "name": "brewing_input_slot", + "namespace": "brewing_stand" + } + }, + "brewing_stand_pictogram/brewing_output_slots": { + "file": "ui/brewing_stand_screen.json", + "type": "grid", + "extend": { + "name": "brewing_output_slots", + "namespace": "brewing_stand" + } + }, + "brewing_stand_pictogram/brewing_fuel_slot": { + "file": "ui/brewing_stand_screen.json", + "type": "panel", + "extend": { + "name": "brewing_fuel_slot", + "namespace": "brewing_stand" + } + }, + "brewing_stand_pictogram/brewing_arrow_empty_image": { + "file": "ui/brewing_stand_screen.json", + "type": "image", + "extend": { + "name": "brewing_arrow_empty_image", + "namespace": "brewing_stand" + } + }, + "brewing_stand_pictogram/brewing_arrow_full_image": { + "file": "ui/brewing_stand_screen.json", + "type": "image", + "extend": { + "name": "brewing_arrow_full_image", + "namespace": "brewing_stand" + } + }, + "brewing_stand_pictogram/brewing_fuel_bar_empty_image": { + "file": "ui/brewing_stand_screen.json", + "type": "image", + "extend": { + "name": "brewing_fuel_bar_empty_image", + "namespace": "brewing_stand" + } + }, + "brewing_stand_pictogram/brewing_fuel_bar_full_image": { + "file": "ui/brewing_stand_screen.json", + "type": "image", + "extend": { + "name": "brewing_fuel_bar_full_image", + "namespace": "brewing_stand" + } + }, + "brewing_stand_pictogram/bubbles_empty_image": { + "file": "ui/brewing_stand_screen.json", + "type": "image", + "extend": { + "name": "bubbles_empty_image", + "namespace": "brewing_stand" + } + }, + "brewing_stand_pictogram/bubbles_full_image": { + "file": "ui/brewing_stand_screen.json", + "type": "image", + "extend": { + "name": "bubbles_full_image", + "namespace": "brewing_stand" + } + }, + "brewing_stand_pictogram/brewing_fuel_pipes": { + "file": "ui/brewing_stand_screen.json", + "type": "image", + "extend": { + "name": "brewing_fuel_pipes", + "namespace": "brewing_stand" + } + }, + "brewing_stand_pictogram/brewing_pipes": { + "file": "ui/brewing_stand_screen.json", + "type": "image", + "extend": { + "name": "brewing_pipes", + "namespace": "brewing_stand" + } + }, + "brewing_stand_panel": { + "file": "ui/brewing_stand_screen.json", + "type": "panel", + "children": [ + "container_gamepad_helpers", + "selected_item_details_factory", + "item_lock_notification_factory", + "root_panel", + "flying_item_renderer" + ] + }, + "brewing_stand_panel/container_gamepad_helpers": { + "file": "ui/brewing_stand_screen.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "brewing_stand_panel/selected_item_details_factory": { + "file": "ui/brewing_stand_screen.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "brewing_stand_panel/item_lock_notification_factory": { + "file": "ui/brewing_stand_screen.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "brewing_stand_panel/root_panel": { + "file": "ui/brewing_stand_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "common_panel", + "furnace_screen_inventory", + "inventory_selected_icon_button", + "gamepad_cursor" + ] + }, + "brewing_stand_panel/root_panel/common_panel": { + "file": "ui/brewing_stand_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "brewing_stand_panel/root_panel/furnace_screen_inventory": { + "file": "ui/brewing_stand_screen.json", + "type": "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": { + "file": "ui/brewing_stand_screen.json", + "type": "panel", + "extend": { + "name": "brewing_panel_top_half", + "namespace": "brewing_stand" + } + }, + "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label": { + "file": "ui/brewing_stand_screen.json", + "type": "panel", + "extend": { + "name": "inventory_panel_bottom_half_with_label", + "namespace": "common" + } + }, + "brewing_stand_panel/root_panel/furnace_screen_inventory/hotbar_grid": { + "file": "ui/brewing_stand_screen.json", + "type": "grid", + "extend": { + "name": "hotbar_grid_template", + "namespace": "common" + } + }, + "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button": { + "file": "ui/brewing_stand_screen.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "brewing_stand_panel/root_panel/inventory_selected_icon_button": { + "file": "ui/brewing_stand_screen.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "brewing_stand_panel/root_panel/gamepad_cursor": { + "file": "ui/brewing_stand_screen.json", + "type": "button", + "extend": { + "name": "gamepad_cursor_button", + "namespace": "common" + } + }, + "brewing_stand_panel/flying_item_renderer": { + "file": "ui/brewing_stand_screen.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + }, + "brewing_stand_screen": { + "file": "ui/brewing_stand_screen.json", + "type": "screen", + "extend": { + "name": "inventory_screen_common", + "namespace": "common" + } + } + }, + "brewing_stand_pocket": { + "generic_label": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "label" + }, + "brewing_fuel_pipes": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "image" + }, + "bubbles_empty_image": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "image" + }, + "bubbles_full_image": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "image" + }, + "bottle_empty_image": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "image" + }, + "background_image": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "image" + }, + "output_slot": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_large_container_item", + "namespace": "common" + } + }, + "brewing_input_slot": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "panel", + "children": [ + "input_slot" + ] + }, + "brewing_input_slot/input_slot": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_large_container_item", + "namespace": "common" + } + }, + "brewing_fuel_slot": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "panel", + "children": [ + "fuel_slot" + ] + }, + "brewing_fuel_slot/fuel_slot": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_large_container_item", + "namespace": "common" + } + }, + "brewing_out_slots": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "grid", + "children": [ + "left_offset", + "middle", + "right_offset" + ] + }, + "brewing_out_slots/left_offset": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "panel", + "children": [ + "output_slot1" + ] + }, + "brewing_out_slots/left_offset/output_slot1": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "output_slot", + "namespace": "brewing_stand_pocket" + } + }, + "brewing_out_slots/middle": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "panel", + "children": [ + "output_slot2" + ] + }, + "brewing_out_slots/middle/output_slot2": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "output_slot", + "namespace": "brewing_stand_pocket" + } + }, + "brewing_out_slots/right_offset": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "panel", + "children": [ + "output_slot3" + ] + }, + "brewing_out_slots/right_offset/output_slot3": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "output_slot", + "namespace": "brewing_stand_pocket" + } + }, + "slots_panel": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "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": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "panel", + "extend": { + "name": "brewing_input_slot", + "namespace": "brewing_stand_pocket" + } + }, + "slots_panel/brewing_fuel_slot": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "panel", + "extend": { + "name": "brewing_fuel_slot", + "namespace": "brewing_stand_pocket" + } + }, + "slots_panel/brewing_out_slots": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "grid", + "extend": { + "name": "brewing_out_slots", + "namespace": "brewing_stand_pocket" + } + }, + "slots_panel/brewing_arrow_panel": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "panel", + "children": [ + "brewing_arrow_empty_image", + "brewing_arrow_full_image" + ] + }, + "slots_panel/brewing_arrow_panel/brewing_arrow_empty_image": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "image", + "extend": { + "name": "brewing_arrow_empty_image", + "namespace": "brewing_stand" + } + }, + "slots_panel/brewing_arrow_panel/brewing_arrow_full_image": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "image", + "extend": { + "name": "brewing_arrow_full_image", + "namespace": "brewing_stand" + } + }, + "slots_panel/brewing_bubbles_panel": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "panel", + "children": [ + "bubbles_empty_image", + "bubbles_full_image" + ] + }, + "slots_panel/brewing_bubbles_panel/bubbles_empty_image": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "image", + "extend": { + "name": "bubbles_empty_image", + "namespace": "brewing_stand_pocket" + } + }, + "slots_panel/brewing_bubbles_panel/bubbles_full_image": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "image", + "extend": { + "name": "bubbles_full_image", + "namespace": "brewing_stand_pocket" + } + }, + "slots_panel/brewing_fuel_bar_panel": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "panel", + "children": [ + "brewing_fuel_bar_empty_image", + "brewing_fuel_bar_full_image" + ] + }, + "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_empty_image": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "image", + "extend": { + "name": "brewing_fuel_bar_empty_image", + "namespace": "brewing_stand" + } + }, + "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_full_image": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "image", + "extend": { + "name": "brewing_fuel_bar_full_image", + "namespace": "brewing_stand" + } + }, + "slots_panel/brewing_fuel_pipes": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "image", + "extend": { + "name": "brewing_fuel_pipes", + "namespace": "brewing_stand_pocket" + } + }, + "slots_panel/brewing_pipes": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "image", + "extend": { + "name": "brewing_pipes", + "namespace": "brewing_stand" + } + }, + "inventory_grid": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "grid" + }, + "inventory_content": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "inventory_content/scrolling_panel": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "brewing_stand_contents_panel": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "panel", + "children": [ + "slots_panel" + ] + }, + "brewing_stand_contents_panel/slots_panel": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "panel", + "extend": { + "name": "slots_panel", + "namespace": "brewing_stand_pocket" + } + }, + "header": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "panel", + "children": [ + "header_background", + "legacy_pocket_close_button", + "panel" + ] + }, + "header/header_background": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "image" + }, + "header/legacy_pocket_close_button": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "button", + "extend": { + "name": "legacy_pocket_close_button", + "namespace": "common" + } + }, + "header/panel": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "panel", + "children": [ + "title_label" + ] + }, + "header/panel/title_label": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "label", + "extend": { + "name": "generic_label", + "namespace": "brewing_stand_pocket" + } + }, + "inventory_and_brewing_panel": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "panel", + "children": [ + "inventory_half_screen", + "brewing_half_screen" + ] + }, + "inventory_and_brewing_panel/inventory_half_screen": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "panel", + "children": [ + "inventory_content" + ] + }, + "inventory_and_brewing_panel/inventory_half_screen/inventory_content": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "panel", + "extend": { + "name": "inventory_content", + "namespace": "brewing_stand_pocket" + } + }, + "inventory_and_brewing_panel/brewing_half_screen": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "panel", + "children": [ + "brewing_stand_contents_panel" + ] + }, + "inventory_and_brewing_panel/brewing_half_screen/brewing_stand_contents_panel": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "panel", + "extend": { + "name": "brewing_stand_contents_panel", + "namespace": "brewing_stand_pocket" + } + }, + "header_and_content_stack_panel": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "stack_panel", + "children": [ + "header", + "inventory_and_brewing_panel" + ] + }, + "header_and_content_stack_panel/header": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "brewing_stand_pocket" + } + }, + "header_and_content_stack_panel/inventory_and_brewing_panel": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "panel", + "extend": { + "name": "inventory_and_brewing_panel", + "namespace": "brewing_stand_pocket" + } + }, + "brewing_stand_panel": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "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": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "image", + "extend": { + "name": "background_image", + "namespace": "brewing_stand_pocket" + } + }, + "brewing_stand_panel/root_panel": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + } + }, + "brewing_stand_panel/header_and_content_stack_panel": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "header_and_content_stack_panel", + "namespace": "brewing_stand_pocket" + } + }, + "brewing_stand_panel/container_gamepad_helpers": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "brewing_stand_panel/inventory_selected_icon_button": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "brewing_stand_panel/hold_icon": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "brewing_stand_panel/selected_item_details_factory": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "brewing_stand_panel/item_lock_notification_factory": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "brewing_stand_panel/flying_item_renderer": { + "file": "ui/brewing_stand_screen_pocket.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + } + }, + "bundle_purchase_warning": { + "x_padding": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "panel" + }, + "y_padding": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "panel" + }, + "bundle_grid_item": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "panel", + "children": [ + "banner_image", + "content", + "game_pad_focus_border" + ] + }, + "bundle_grid_item/banner_image": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "image" + }, + "bundle_grid_item/content": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "stack_panel", + "extend": { + "name": "grid_item_content", + "namespace": "bundle_purchase_warning" + } + }, + "bundle_grid_item/game_pad_focus_border": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "button", + "extend": { + "name": "focus_border_button", + "namespace": "bundle_purchase_warning" + } + }, + "is_focused": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "panel", + "children": [ + "image_border", + "banner_border" + ] + }, + "is_focused/image_border": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "image", + "extend": { + "name": "focus_border", + "namespace": "bundle_purchase_warning" + } + }, + "is_focused/banner_border": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "image", + "extend": { + "name": "focus_border", + "namespace": "bundle_purchase_warning" + } + }, + "focus_border": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "image" + }, + "focus_border_button": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "focus_border_button/default": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "focus_border_button/hover": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "panel", + "extend": { + "name": "is_focused", + "namespace": "bundle_purchase_warning" + } + }, + "focus_border_button/pressed": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "panel", + "extend": { + "name": "is_focused", + "namespace": "bundle_purchase_warning" + } + }, + "grid_item_content": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "stack_panel", + "children": [ + "image_border", + "padding_0", + "bundle_title_panel" + ] + }, + "grid_item_content/image_border": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + }, + "children": [ + "bundle_thumbnail" + ] + }, + "grid_item_content/image_border/bundle_thumbnail": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "image" + }, + "grid_item_content/padding_0": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "panel" + }, + "grid_item_content/bundle_title_panel": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "panel", + "children": [ + "bundle_title" + ] + }, + "grid_item_content/bundle_title_panel/bundle_title": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "label" + }, + "bundle_grid": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "grid" + }, + "side_contents": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "stack_panel", + "children": [ + "title_alignment_hack", + "padding_y_0", + "grid_input_panel" + ] + }, + "side_contents/title_alignment_hack": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "panel", + "children": [ + "side_section_title" + ] + }, + "side_contents/title_alignment_hack/side_section_title": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "label" + }, + "side_contents/padding_y_0": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "panel", + "extend": { + "name": "y_padding", + "namespace": "bundle_purchase_warning" + } + }, + "side_contents/grid_input_panel": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "input_panel", + "children": [ + "grid_scroll" + ] + }, + "side_contents/grid_input_panel/grid_scroll": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "dialog_content": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "stack_panel", + "children": [ + "grid_stack" + ] + }, + "dialog_content/grid_stack": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "stack_panel", + "children": [ + "left_grid_scroll", + "padding_x_divider", + "right_grid_scroll" + ] + }, + "dialog_content/grid_stack/left_grid_scroll": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "stack_panel", + "extend": { + "name": "side_contents", + "namespace": "bundle_purchase_warning" + } + }, + "dialog_content/grid_stack/padding_x_divider": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "panel", + "extend": { + "name": "x_padding", + "namespace": "bundle_purchase_warning" + } + }, + "dialog_content/grid_stack/right_grid_scroll": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "stack_panel", + "extend": { + "name": "side_contents", + "namespace": "bundle_purchase_warning" + } + }, + "purchase_button_panel": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "screen_dialog": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_one_button", + "namespace": "common_dialogs" + } + }, + "bundle_purchase_warning_screen_content": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "panel", + "children": [ + "dialog" + ] + }, + "bundle_purchase_warning_screen_content/dialog": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "panel", + "extend": { + "name": "screen_dialog", + "namespace": "bundle_purchase_warning" + } + }, + "background": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "image", + "extend": { + "name": "screen_background", + "namespace": "common" + } + }, + "bundle_purchase_warning_screen": { + "file": "ui/bundle_purchase_warning_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + } + }, + "cartography": { + "title_label": { + "file": "ui/cartography_screen.json", + "type": "label" + }, + "arrow_icon": { + "file": "ui/cartography_screen.json", + "type": "image" + }, + "plus_sign_icon": { + "file": "ui/cartography_screen.json", + "type": "image" + }, + "text_edit_control": { + "file": "ui/cartography_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "cartography_output_slot_button": { + "file": "ui/cartography_screen.json", + "type": "button", + "extend": { + "name": "no_coalesce_container_slot_button", + "namespace": "common" + } + }, + "cartography_item_slot": { + "file": "ui/cartography_screen.json", + "type": "panel", + "children": [ + "container_item" + ] + }, + "cartography_item_slot/container_item": { + "file": "ui/cartography_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "map_image": { + "file": "ui/cartography_screen.json", + "type": "image" + }, + "map_image_panel": { + "file": "ui/cartography_screen.json", + "type": "panel", + "children": [ + "none_map", + "copy_map", + "rename_map", + "map", + "locator_map", + "zoom_map", + "lock_map" + ] + }, + "map_image_panel/none_map": { + "file": "ui/cartography_screen.json", + "type": "image", + "extend": { + "name": "map_image", + "namespace": "cartography" + } + }, + "map_image_panel/copy_map": { + "file": "ui/cartography_screen.json", + "type": "image", + "extend": { + "name": "map_image", + "namespace": "cartography" + } + }, + "map_image_panel/rename_map": { + "file": "ui/cartography_screen.json", + "type": "image", + "extend": { + "name": "map_image", + "namespace": "cartography" + } + }, + "map_image_panel/map": { + "file": "ui/cartography_screen.json", + "type": "image", + "extend": { + "name": "map_image", + "namespace": "cartography" + } + }, + "map_image_panel/locator_map": { + "file": "ui/cartography_screen.json", + "type": "image", + "extend": { + "name": "map_image", + "namespace": "cartography" + } + }, + "map_image_panel/zoom_map": { + "file": "ui/cartography_screen.json", + "type": "image", + "extend": { + "name": "map_image", + "namespace": "cartography" + } + }, + "map_image_panel/lock_map": { + "file": "ui/cartography_screen.json", + "type": "image", + "extend": { + "name": "map_image", + "namespace": "cartography" + } + }, + "text_box_panel": { + "file": "ui/cartography_screen.json", + "type": "stack_panel", + "children": [ + "map_name_label", + "text_edit_control" + ] + }, + "text_box_panel/map_name_label": { + "file": "ui/cartography_screen.json", + "type": "label" + }, + "text_box_panel/text_edit_control": { + "file": "ui/cartography_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_control", + "namespace": "cartography" + } + }, + "input_slots": { + "file": "ui/cartography_screen.json", + "type": "stack_panel", + "children": [ + "input_item_slot", + "plus_centerer", + "additional_item_slot" + ] + }, + "input_slots/input_item_slot": { + "file": "ui/cartography_screen.json", + "type": "panel", + "extend": { + "name": "cartography_item_slot", + "namespace": "cartography" + } + }, + "input_slots/plus_centerer": { + "file": "ui/cartography_screen.json", + "type": "panel", + "children": [ + "plus_sign_icon" + ] + }, + "input_slots/plus_centerer/plus_sign_icon": { + "file": "ui/cartography_screen.json", + "type": "image", + "extend": { + "name": "plus_sign_icon", + "namespace": "cartography" + } + }, + "input_slots/additional_item_slot": { + "file": "ui/cartography_screen.json", + "type": "panel", + "extend": { + "name": "cartography_item_slot", + "namespace": "cartography" + } + }, + "output_description_label": { + "file": "ui/cartography_screen.json", + "type": "label" + }, + "main_panel": { + "file": "ui/cartography_screen.json", + "type": "panel", + "children": [ + "input_slots", + "arrow_icon", + "map_image_panel", + "arrow_icon2", + "result_item_slot" + ] + }, + "main_panel/input_slots": { + "file": "ui/cartography_screen.json", + "type": "stack_panel", + "extend": { + "name": "input_slots", + "namespace": "cartography" + } + }, + "main_panel/arrow_icon": { + "file": "ui/cartography_screen.json", + "type": "image", + "extend": { + "name": "arrow_icon", + "namespace": "cartography" + } + }, + "main_panel/map_image_panel": { + "file": "ui/cartography_screen.json", + "type": "panel", + "extend": { + "name": "map_image_panel", + "namespace": "cartography" + } + }, + "main_panel/arrow_icon2": { + "file": "ui/cartography_screen.json", + "type": "image", + "extend": { + "name": "arrow_icon", + "namespace": "cartography" + } + }, + "main_panel/result_item_slot": { + "file": "ui/cartography_screen.json", + "type": "panel", + "extend": { + "name": "cartography_item_slot", + "namespace": "cartography" + } + }, + "top_half_panel": { + "file": "ui/cartography_screen.json", + "type": "stack_panel", + "children": [ + "padding1", + "title_panel", + "padding2", + "text_box_panel", + "padding3", + "padding4", + "main_panel_wrap", + "output_description_label", + "padding5" + ] + }, + "top_half_panel/padding1": { + "file": "ui/cartography_screen.json", + "type": "panel" + }, + "top_half_panel/title_panel": { + "file": "ui/cartography_screen.json", + "type": "panel", + "children": [ + "title_label" + ] + }, + "top_half_panel/title_panel/title_label": { + "file": "ui/cartography_screen.json", + "type": "label", + "extend": { + "name": "title_label", + "namespace": "cartography" + } + }, + "top_half_panel/padding2": { + "file": "ui/cartography_screen.json", + "type": "panel" + }, + "top_half_panel/text_box_panel": { + "file": "ui/cartography_screen.json", + "type": "stack_panel", + "extend": { + "name": "text_box_panel", + "namespace": "cartography" + } + }, + "top_half_panel/padding3": { + "file": "ui/cartography_screen.json", + "type": "panel" + }, + "top_half_panel/padding4": { + "file": "ui/cartography_screen.json", + "type": "panel" + }, + "top_half_panel/main_panel_wrap": { + "file": "ui/cartography_screen.json", + "type": "panel", + "children": [ + "main_panel" + ] + }, + "top_half_panel/main_panel_wrap/main_panel": { + "file": "ui/cartography_screen.json", + "type": "panel", + "extend": { + "name": "main_panel", + "namespace": "cartography" + } + }, + "top_half_panel/output_description_label": { + "file": "ui/cartography_screen.json", + "type": "label", + "extend": { + "name": "output_description_label", + "namespace": "cartography" + } + }, + "top_half_panel/padding5": { + "file": "ui/cartography_screen.json", + "type": "panel" + }, + "cartography_panel": { + "file": "ui/cartography_screen.json", + "type": "panel", + "children": [ + "container_gamepad_helpers", + "selected_item_details_factory", + "item_lock_notification_factory", + "root_panel", + "flying_item_renderer" + ] + }, + "cartography_panel/container_gamepad_helpers": { + "file": "ui/cartography_screen.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "cartography_panel/selected_item_details_factory": { + "file": "ui/cartography_screen.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "cartography_panel/item_lock_notification_factory": { + "file": "ui/cartography_screen.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "cartography_panel/root_panel": { + "file": "ui/cartography_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "common_panel", + "cartography_screen_inventory", + "inventory_selected_icon_button", + "gamepad_cursor", + "tab_close_and_help_button" + ] + }, + "cartography_panel/root_panel/common_panel": { + "file": "ui/cartography_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "cartography_panel/root_panel/cartography_screen_inventory": { + "file": "ui/cartography_screen.json", + "type": "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": { + "file": "ui/cartography_screen.json", + "type": "stack_panel", + "extend": { + "name": "top_half_panel", + "namespace": "cartography" + } + }, + "cartography_panel/root_panel/cartography_screen_inventory/inventory_panel_bottom_half_with_label": { + "file": "ui/cartography_screen.json", + "type": "panel", + "extend": { + "name": "inventory_panel_bottom_half_with_label", + "namespace": "common" + } + }, + "cartography_panel/root_panel/cartography_screen_inventory/hotbar_grid": { + "file": "ui/cartography_screen.json", + "type": "grid", + "extend": { + "name": "hotbar_grid_template", + "namespace": "common" + } + }, + "cartography_panel/root_panel/cartography_screen_inventory/inventory_take_progress_icon_button": { + "file": "ui/cartography_screen.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "cartography_panel/root_panel/inventory_selected_icon_button": { + "file": "ui/cartography_screen.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "cartography_panel/root_panel/gamepad_cursor": { + "file": "ui/cartography_screen.json", + "type": "button", + "extend": { + "name": "gamepad_cursor_button", + "namespace": "common" + } + }, + "cartography_panel/root_panel/tab_close_and_help_button": { + "file": "ui/cartography_screen.json", + "type": "image", + "extend": { + "name": "tab_close_and_help_button", + "namespace": "common_tabs" + } + }, + "cartography_panel/flying_item_renderer": { + "file": "ui/cartography_screen.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + }, + "cartography_screen": { + "file": "ui/cartography_screen.json", + "type": "screen", + "extend": { + "name": "inventory_screen_common", + "namespace": "common" + } + } + }, + "cartography_pocket": { + "vertical_arrow_icon": { + "file": "ui/cartography_screen_pocket.json", + "type": "image" + }, + "chest_item_renderer": { + "file": "ui/cartography_screen_pocket.json", + "type": "custom" + }, + "cartography_item_renderer": { + "file": "ui/cartography_screen_pocket.json", + "type": "custom" + }, + "input_item_slot": { + "file": "ui/cartography_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_container_item", + "namespace": "common" + } + }, + "additional_item_slot": { + "file": "ui/cartography_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_container_item", + "namespace": "common" + } + }, + "result_item_slot": { + "file": "ui/cartography_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_container_item", + "namespace": "common" + } + }, + "right_panel": { + "file": "ui/cartography_screen_pocket.json", + "type": "stack_panel", + "children": [ + "content", + "navigation_tabs_holder" + ] + }, + "right_panel/content": { + "file": "ui/cartography_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "bg", + "cartography_content_stack_panel" + ] + }, + "right_panel/content/bg": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "right_panel/content/cartography_content_stack_panel": { + "file": "ui/cartography_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "cartography_content_stack_panel", + "namespace": "cartography_pocket" + } + }, + "right_panel/navigation_tabs_holder": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel", + "children": [ + "right_navigation_tabs" + ] + }, + "right_panel/navigation_tabs_holder/right_navigation_tabs": { + "file": "ui/cartography_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "right_navigation_tabs", + "namespace": "cartography_pocket" + } + }, + "right_tab_cartography": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel", + "extend": { + "name": "pocket_tab_right", + "namespace": "common_tabs" + } + }, + "right_navigation_tabs": { + "file": "ui/cartography_screen_pocket.json", + "type": "stack_panel", + "children": [ + "pocket_tab_close_and_help_button", + "fill", + "right_tab_cartography" + ] + }, + "right_navigation_tabs/pocket_tab_close_and_help_button": { + "file": "ui/cartography_screen_pocket.json", + "type": "image", + "extend": { + "name": "pocket_tab_close_and_help_button", + "namespace": "common_tabs" + } + }, + "right_navigation_tabs/fill": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel" + }, + "right_navigation_tabs/right_tab_cartography": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel", + "extend": { + "name": "right_tab_cartography", + "namespace": "cartography_pocket" + } + }, + "input_slots_stack_panel": { + "file": "ui/cartography_screen_pocket.json", + "type": "stack_panel", + "children": [ + "input_item_slot" + ] + }, + "input_slots_stack_panel/input_item_slot": { + "file": "ui/cartography_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "input_item_slot", + "namespace": "cartography_pocket" + } + }, + "input_slots": { + "file": "ui/cartography_screen_pocket.json", + "type": "stack_panel", + "children": [ + "input_item_slot", + "plus_centerer", + "additional_item_slot" + ] + }, + "input_slots/input_item_slot": { + "file": "ui/cartography_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "input_item_slot", + "namespace": "cartography_pocket" + } + }, + "input_slots/plus_centerer": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel", + "children": [ + "plus_sign_icon" + ] + }, + "input_slots/plus_centerer/plus_sign_icon": { + "file": "ui/cartography_screen_pocket.json", + "type": "image", + "extend": { + "name": "plus_sign_icon", + "namespace": "cartography" + } + }, + "input_slots/additional_item_slot": { + "file": "ui/cartography_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "additional_item_slot", + "namespace": "cartography_pocket" + } + }, + "cartography_content_stack_panel": { + "file": "ui/cartography_screen_pocket.json", + "type": "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": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel", + "children": [ + "cartography_label" + ] + }, + "cartography_content_stack_panel/label_holder/cartography_label": { + "file": "ui/cartography_screen_pocket.json", + "type": "label", + "extend": { + "name": "title_label", + "namespace": "cartography" + } + }, + "cartography_content_stack_panel/padding_1": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel" + }, + "cartography_content_stack_panel/panel": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel", + "children": [ + "input_slots" + ] + }, + "cartography_content_stack_panel/panel/input_slots": { + "file": "ui/cartography_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "input_slots", + "namespace": "cartography_pocket" + } + }, + "cartography_content_stack_panel/padding_2": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel" + }, + "cartography_content_stack_panel/map_centerer": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel", + "children": [ + "map_image_panel" + ] + }, + "cartography_content_stack_panel/map_centerer/map_image_panel": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel", + "extend": { + "name": "map_image_panel", + "namespace": "cartography" + } + }, + "cartography_content_stack_panel/description_centerer": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel", + "children": [ + "output_description_label" + ] + }, + "cartography_content_stack_panel/description_centerer/output_description_label": { + "file": "ui/cartography_screen_pocket.json", + "type": "label", + "extend": { + "name": "output_description_label", + "namespace": "cartography" + } + }, + "cartography_content_stack_panel/padding_3": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel" + }, + "cartography_content_stack_panel/arrow_centerer": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel", + "children": [ + "vertical_arrow_icon" + ] + }, + "cartography_content_stack_panel/arrow_centerer/vertical_arrow_icon": { + "file": "ui/cartography_screen_pocket.json", + "type": "image", + "extend": { + "name": "vertical_arrow_icon", + "namespace": "cartography_pocket" + } + }, + "cartography_content_stack_panel/padding_4": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel" + }, + "cartography_content_stack_panel/result_centerer": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel", + "children": [ + "result_item_slot" + ] + }, + "cartography_content_stack_panel/result_centerer/result_item_slot": { + "file": "ui/cartography_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "result_item_slot", + "namespace": "cartography_pocket" + } + }, + "cartography_content_stack_panel/filling_panel": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel" + }, + "cartography_content_stack_panel/text_box_panel": { + "file": "ui/cartography_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "text_box_panel", + "namespace": "cartography" + } + }, + "inventory_panel": { + "file": "ui/cartography_screen_pocket.json", + "type": "stack_panel", + "children": [ + "inventory_title_label_centerer", + "inventory_scroll_panel" + ] + }, + "inventory_panel/inventory_title_label_centerer": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel", + "children": [ + "inventory_title_label" + ] + }, + "inventory_panel/inventory_title_label_centerer/inventory_title_label": { + "file": "ui/cartography_screen_pocket.json", + "type": "label" + }, + "inventory_panel/inventory_scroll_panel": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel", + "extend": { + "name": "inventory_scroll_panel", + "namespace": "cartography_pocket" + } + }, + "inventory_scroll_panel": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel", + "extend": { + "name": "container_scroll_panel", + "namespace": "common" + } + }, + "pattern_button": { + "file": "ui/cartography_screen_pocket.json", + "type": "unknown", + "extend": { + "name": "stone_button", + "namespace": "cartography" + } + }, + "pattern_scroll_panel": { + "file": "ui/cartography_screen_pocket.json", + "type": "unknown", + "extend": { + "name": "scroll_panel", + "namespace": "cartography" + } + }, + "left_panel": { + "file": "ui/cartography_screen_pocket.json", + "type": "stack_panel", + "children": [ + "gamepad_helpers_and_tabs_holder", + "content" + ] + }, + "left_panel/gamepad_helpers_and_tabs_holder": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel", + "children": [ + "tabs_left_gamepad_helpers", + "navigation_tabs_holder" + ] + }, + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel", + "extend": { + "name": "tabs_left_gamepad_helpers", + "namespace": "common" + } + }, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel", + "children": [ + "left_navigation_tabs" + ] + }, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": { + "file": "ui/cartography_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "left_navigation_tabs", + "namespace": "cartography_pocket" + } + }, + "left_panel/content": { + "file": "ui/cartography_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "bg", + "inventory_panel" + ] + }, + "left_panel/content/bg": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "left_panel/content/inventory_panel": { + "file": "ui/cartography_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "inventory_panel", + "namespace": "cartography_pocket" + } + }, + "left_tab_inventory": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel", + "extend": { + "name": "pocket_tab_left", + "namespace": "common_tabs" + } + }, + "left_navigation_tabs": { + "file": "ui/cartography_screen_pocket.json", + "type": "stack_panel", + "children": [ + "padding", + "left_tab_inventory" + ] + }, + "left_navigation_tabs/padding": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel" + }, + "left_navigation_tabs/left_tab_inventory": { + "file": "ui/cartography_screen_pocket.json", + "type": "panel", + "extend": { + "name": "left_tab_inventory", + "namespace": "cartography_pocket" + } + }, + "pocket_hotbar_and_content_panels": { + "file": "ui/cartography_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "pocket_hotbar_and_content_panels", + "namespace": "common" + } + }, + "cartography_panel": { + "file": "ui/cartography_screen_pocket.json", + "type": "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": { + "file": "ui/cartography_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "pocket_hotbar_and_content_panels", + "namespace": "cartography_pocket" + } + }, + "cartography_panel/container_gamepad_helpers": { + "file": "ui/cartography_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "cartography_panel/selected_item_details_factory": { + "file": "ui/cartography_screen_pocket.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "cartography_panel/item_lock_notification_factory": { + "file": "ui/cartography_screen_pocket.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "cartography_panel/inventory_selected_icon_button": { + "file": "ui/cartography_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "cartography_panel/inventory_take_progress_icon_button": { + "file": "ui/cartography_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "cartography_panel/flying_item_renderer": { + "file": "ui/cartography_screen_pocket.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + } + }, + "chalkboard": { + "text_edit_control": { + "file": "ui/chalkboard_screen.json", + "type": "edit_box", + "extend": { + "name": "multiline_text_edit_box", + "namespace": "common" + } + }, + "locked_toggle": { + "file": "ui/chalkboard_screen.json", + "type": "toggle", + "extend": { + "name": "slider_toggle", + "namespace": "edu_common" + } + }, + "locked_label": { + "file": "ui/chalkboard_screen.json", + "type": "label", + "extend": { + "name": "dark_label", + "namespace": "edu_common" + } + }, + "lock_control": { + "file": "ui/chalkboard_screen.json", + "type": "stack_panel", + "children": [ + "toggle", + "pad_wrap" + ] + }, + "lock_control/toggle": { + "file": "ui/chalkboard_screen.json", + "type": "toggle", + "extend": { + "name": "locked_toggle", + "namespace": "chalkboard" + } + }, + "lock_control/pad_wrap": { + "file": "ui/chalkboard_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "label" + ] + }, + "lock_control/pad_wrap/label": { + "file": "ui/chalkboard_screen.json", + "type": "label", + "extend": { + "name": "locked_label", + "namespace": "chalkboard" + } + }, + "gamepad_helpers": { + "file": "ui/chalkboard_screen.json", + "type": "panel", + "children": [ + "gamepad_helper_a" + ] + }, + "gamepad_helpers/gamepad_helper_a": { + "file": "ui/chalkboard_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_a", + "namespace": "common" + } + }, + "chalkboard_screen": { + "file": "ui/chalkboard_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "chalkboard_root": { + "file": "ui/chalkboard_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + }, + "chalkboard_content": { + "file": "ui/chalkboard_screen.json", + "type": "panel", + "children": [ + "gamepad_helpers", + "edit_box", + "locked_toggle" + ] + }, + "chalkboard_content/gamepad_helpers": { + "file": "ui/chalkboard_screen.json", + "type": "panel", + "extend": { + "name": "gamepad_helpers", + "namespace": "chalkboard" + } + }, + "chalkboard_content/edit_box": { + "file": "ui/chalkboard_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_control", + "namespace": "chalkboard" + } + }, + "chalkboard_content/locked_toggle": { + "file": "ui/chalkboard_screen.json", + "type": "stack_panel", + "extend": { + "name": "lock_control", + "namespace": "chalkboard" + } + } + }, + "chat": { + "down_arrow_image": { + "file": "ui/chat_screen.json", + "type": "image" + }, + "keyboard_image": { + "file": "ui/chat_screen.json", + "type": "image" + }, + "copy_image": { + "file": "ui/chat_screen.json", + "type": "image" + }, + "paste_image": { + "file": "ui/chat_screen.json", + "type": "image" + }, + "gear_image": { + "file": "ui/chat_screen.json", + "type": "image" + }, + "send_image": { + "file": "ui/chat_screen.json", + "type": "image" + }, + "send_panel": { + "file": "ui/chat_screen.json", + "type": "stack_panel", + "children": [ + "send_image_panel", + "gamepad_x_button" + ] + }, + "send_panel/send_image_panel": { + "file": "ui/chat_screen.json", + "type": "panel", + "children": [ + "send_image" + ] + }, + "send_panel/send_image_panel/send_image": { + "file": "ui/chat_screen.json", + "type": "image", + "extend": { + "name": "send_image", + "namespace": "chat" + } + }, + "send_panel/gamepad_x_button": { + "file": "ui/chat_screen.json", + "type": "stack_panel", + "children": [ + "side_padding", + "gamepad_x_button_image" + ] + }, + "send_panel/gamepad_x_button/side_padding": { + "file": "ui/chat_screen.json", + "type": "panel" + }, + "send_panel/gamepad_x_button/gamepad_x_button_image": { + "file": "ui/chat_screen.json", + "type": "panel", + "children": [ + "icon" + ] + }, + "send_panel/gamepad_x_button/gamepad_x_button_image/icon": { + "file": "ui/chat_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_x", + "namespace": "common" + } + }, + "keyboard_image_panel": { + "file": "ui/chat_screen.json", + "type": "panel", + "children": [ + "keyboard_image", + "down_arrow_image" + ] + }, + "keyboard_image_panel/keyboard_image": { + "file": "ui/chat_screen.json", + "type": "image", + "extend": { + "name": "keyboard_image", + "namespace": "chat" + } + }, + "keyboard_image_panel/down_arrow_image": { + "file": "ui/chat_screen.json", + "type": "image", + "extend": { + "name": "down_arrow_image", + "namespace": "chat" + } + }, + "new_messages": { + "file": "ui/chat_screen.json", + "type": "image", + "children": [ + "focus_border" + ] + }, + "new_messages/focus_border": { + "file": "ui/chat_screen.json", + "type": "image", + "extend": { + "name": "focus_border", + "namespace": "common_buttons" + }, + "children": [ + "stack" + ] + }, + "new_messages/focus_border/stack": { + "file": "ui/chat_screen.json", + "type": "stack_panel", + "children": [ + "arrow_icon", + "separator", + "tooltip_text" + ] + }, + "new_messages/focus_border/stack/arrow_icon": { + "file": "ui/chat_screen.json", + "type": "image" + }, + "new_messages/focus_border/stack/separator": { + "file": "ui/chat_screen.json", + "type": "panel" + }, + "new_messages/focus_border/stack/tooltip_text": { + "file": "ui/chat_screen.json", + "type": "label" + }, + "small_button": { + "file": "ui/chat_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "keyboard_button": { + "file": "ui/chat_screen.json", + "type": "button", + "extend": { + "name": "small_button", + "namespace": "chat" + } + }, + "chat_settings_button": { + "file": "ui/chat_screen.json", + "type": "button", + "extend": { + "name": "small_button", + "namespace": "chat" + } + }, + "send_button": { + "file": "ui/chat_screen.json", + "type": "button", + "extend": { + "name": "light_text_form_fitting_button", + "namespace": "common_buttons" + } + }, + "new_messages_button": { + "file": "ui/chat_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "pressed", + "hover" + ] + }, + "new_messages_button/default": { + "file": "ui/chat_screen.json", + "type": "image", + "extend": { + "name": "new_messages", + "namespace": "chat" + } + }, + "new_messages_button/pressed": { + "file": "ui/chat_screen.json", + "type": "image", + "extend": { + "name": "new_messages", + "namespace": "chat" + } + }, + "new_messages_button/hover": { + "file": "ui/chat_screen.json", + "type": "image", + "extend": { + "name": "new_messages", + "namespace": "chat" + } + }, + "messages_text": { + "file": "ui/chat_screen.json", + "type": "panel", + "children": [ + "text" + ] + }, + "messages_text/text": { + "file": "ui/chat_screen.json", + "type": "label" + }, + "message_tts_wrapper": { + "file": "ui/chat_screen.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "messages_stack_panel": { + "file": "ui/chat_screen.json", + "type": "stack_panel" + }, + "messages_scrolling_panel": { + "file": "ui/chat_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "text_edit_box": { + "file": "ui/chat_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "commands_background": { + "file": "ui/chat_screen.json", + "type": "image" + }, + "click_autocomplete_is_focused": { + "file": "ui/chat_screen.json", + "type": "image" + }, + "auto_complete_panel_contents_with_item": { + "file": "ui/chat_screen.json", + "type": "panel", + "children": [ + "auto_complete_item_renderer", + "text", + "autocomplete_button" + ] + }, + "auto_complete_panel_contents_with_item/auto_complete_item_renderer": { + "file": "ui/chat_screen.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "common" + } + }, + "auto_complete_panel_contents_with_item/text": { + "file": "ui/chat_screen.json", + "type": "label" + }, + "auto_complete_panel_contents_with_item/autocomplete_button": { + "file": "ui/chat_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "auto_complete_panel_contents_with_item/autocomplete_button/default": { + "file": "ui/chat_screen.json", + "type": "panel" + }, + "auto_complete_panel_contents_with_item/autocomplete_button/hover": { + "file": "ui/chat_screen.json", + "type": "image", + "extend": { + "name": "click_autocomplete_is_focused", + "namespace": "chat" + } + }, + "auto_complete_panel_contents_with_item/autocomplete_button/pressed": { + "file": "ui/chat_screen.json", + "type": "image", + "extend": { + "name": "click_autocomplete_is_focused", + "namespace": "chat" + } + }, + "auto_complete_panel": { + "file": "ui/chat_screen.json", + "type": "panel", + "children": [ + "panel" + ] + }, + "auto_complete_panel/panel": { + "file": "ui/chat_screen.json", + "type": "panel", + "children": [ + "auto_complete_grid" + ] + }, + "auto_complete_panel/panel/auto_complete_grid": { + "file": "ui/chat_screen.json", + "type": "grid" + }, + "commands_panel": { + "file": "ui/chat_screen.json", + "type": "panel", + "children": [ + "auto_complete_panel" + ] + }, + "commands_panel/auto_complete_panel": { + "file": "ui/chat_screen.json", + "type": "panel", + "extend": { + "name": "auto_complete_panel", + "namespace": "chat" + } + }, + "chat_bottom_panel": { + "file": "ui/chat_screen.json", + "type": "stack_panel", + "children": [ + "keyboard_button", + "host_main_button", + "chat_settings", + "text_box", + "send_button" + ] + }, + "chat_bottom_panel/keyboard_button": { + "file": "ui/chat_screen.json", + "type": "button", + "extend": { + "name": "keyboard_button", + "namespace": "chat" + } + }, + "chat_bottom_panel/host_main_button": { + "file": "ui/chat_screen.json", + "type": "button", + "extend": { + "name": "host_main_button", + "namespace": "host_options" + } + }, + "chat_bottom_panel/chat_settings": { + "file": "ui/chat_screen.json", + "type": "button", + "extend": { + "name": "chat_settings_button", + "namespace": "chat" + } + }, + "chat_bottom_panel/text_box": { + "file": "ui/chat_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "chat" + } + }, + "chat_bottom_panel/send_button": { + "file": "ui/chat_screen.json", + "type": "button", + "extend": { + "name": "send_button", + "namespace": "chat" + } + }, + "title_text": { + "file": "ui/chat_screen.json", + "type": "panel", + "children": [ + "title_panel" + ] + }, + "title_text/title_panel": { + "file": "ui/chat_screen.json", + "type": "label" + }, + "back_content_panel": { + "file": "ui/chat_screen.json", + "type": "panel", + "children": [ + "back_button", + "gamepad_back_helper" + ] + }, + "back_content_panel/back_button": { + "file": "ui/chat_screen.json", + "type": "button", + "extend": { + "name": "back_button", + "namespace": "common" + } + }, + "back_content_panel/gamepad_back_helper": { + "file": "ui/chat_screen.json", + "type": "input_panel", + "children": [ + "gamepad_helper_button" + ] + }, + "back_content_panel/gamepad_back_helper/gamepad_helper_button": { + "file": "ui/chat_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_b", + "namespace": "common" + } + }, + "coordinate_dropdown_content": { + "file": "ui/chat_screen.json", + "type": "stack_panel", + "children": [ + "top_padding", + "my_position", + "block_position", + "bottom_padding" + ] + }, + "coordinate_dropdown_content/top_padding": { + "file": "ui/chat_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "coordinate_dropdown_content/my_position": { + "file": "ui/chat_screen.json", + "type": "panel", + "extend": { + "name": "radio_item_with_label_and_content", + "namespace": "settings_common" + } + }, + "coordinate_dropdown_content/block_position": { + "file": "ui/chat_screen.json", + "type": "panel", + "extend": { + "name": "radio_item_with_label_and_content", + "namespace": "settings_common" + } + }, + "coordinate_dropdown_content/bottom_padding": { + "file": "ui/chat_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "coordinate_dropdown": { + "file": "ui/chat_screen.json", + "type": "panel", + "extend": { + "name": "option_dropdown_no_scroll", + "namespace": "settings_common" + } + }, + "popup_toast": { + "file": "ui/chat_screen.json", + "type": "input_panel", + "extend": { + "name": "popup_common", + "namespace": "persona_popups" + } + }, + "copy_coordinate_button": { + "file": "ui/chat_screen.json", + "type": "button", + "extend": { + "name": "small_button", + "namespace": "chat" + } + }, + "paste_button": { + "file": "ui/chat_screen.json", + "type": "button", + "extend": { + "name": "small_button", + "namespace": "chat" + } + }, + "chat_header": { + "file": "ui/chat_screen.json", + "type": "image", + "extend": { + "name": "store_top_bar", + "namespace": "common_store" + }, + "children": [ + "title_panel" + ] + }, + "chat_header/title_panel": { + "file": "ui/chat_screen.json", + "type": "panel", + "children": [ + "back_button_content_panel", + "title", + "popup_dialog_factory", + "chat_header_content_area" + ] + }, + "chat_header/title_panel/back_button_content_panel": { + "file": "ui/chat_screen.json", + "type": "panel", + "extend": { + "name": "back_content_panel", + "namespace": "chat" + } + }, + "chat_header/title_panel/title": { + "file": "ui/chat_screen.json", + "type": "panel", + "extend": { + "name": "title_text", + "namespace": "chat" + } + }, + "chat_header/title_panel/popup_dialog_factory": { + "file": "ui/chat_screen.json", + "type": "factory" + }, + "chat_header/title_panel/chat_header_content_area": { + "file": "ui/chat_screen.json", + "type": "stack_panel", + "children": [ + "coordinate_dropdown", + "coordinates_panel", + "copy_coordinate_button", + "icon", + "paste_button" + ] + }, + "chat_header/title_panel/chat_header_content_area/coordinate_dropdown": { + "file": "ui/chat_screen.json", + "type": "panel", + "extend": { + "name": "coordinate_dropdown", + "namespace": "chat" + } + }, + "chat_header/title_panel/chat_header_content_area/coordinates_panel": { + "file": "ui/chat_screen.json", + "type": "panel", + "children": [ + "coordinates_background_image" + ] + }, + "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image": { + "file": "ui/chat_screen.json", + "type": "image", + "children": [ + "coordinates_text" + ] + }, + "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image/coordinates_text": { + "file": "ui/chat_screen.json", + "type": "label" + }, + "chat_header/title_panel/chat_header_content_area/copy_coordinate_button": { + "file": "ui/chat_screen.json", + "type": "button", + "extend": { + "name": "copy_coordinate_button", + "namespace": "chat" + } + }, + "chat_header/title_panel/chat_header_content_area/icon": { + "file": "ui/chat_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_y", + "namespace": "common" + } + }, + "chat_header/title_panel/chat_header_content_area/paste_button": { + "file": "ui/chat_screen.json", + "type": "button", + "extend": { + "name": "paste_button", + "namespace": "chat" + } + }, + "chat_screen": { + "file": "ui/chat_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "chat_screen_content": { + "file": "ui/chat_screen.json", + "type": "panel", + "children": [ + "messages_panel", + "chat_bottom_panel", + "chat_top_panel", + "new_messages_button", + "autocomplete_commands_panel", + "host_main_panel", + "popup_factory" + ] + }, + "chat_screen_content/messages_panel": { + "file": "ui/chat_screen.json", + "type": "panel", + "extend": { + "name": "messages_scrolling_panel", + "namespace": "chat" + } + }, + "chat_screen_content/chat_bottom_panel": { + "file": "ui/chat_screen.json", + "type": "stack_panel", + "extend": { + "name": "chat_bottom_panel", + "namespace": "chat" + } + }, + "chat_screen_content/chat_top_panel": { + "file": "ui/chat_screen.json", + "type": "image", + "extend": { + "name": "chat_header", + "namespace": "chat" + } + }, + "chat_screen_content/new_messages_button": { + "file": "ui/chat_screen.json", + "type": "button", + "extend": { + "name": "new_messages_button", + "namespace": "chat" + } + }, + "chat_screen_content/autocomplete_commands_panel": { + "file": "ui/chat_screen.json", + "type": "panel", + "extend": { + "name": "commands_panel", + "namespace": "chat" + } + }, + "chat_screen_content/host_main_panel": { + "file": "ui/chat_screen.json", + "type": "panel", + "extend": { + "name": "host_panel", + "namespace": "host_options" + } + }, + "chat_screen_content/popup_factory": { + "file": "ui/chat_screen.json", + "type": "factory", + "extend": { + "name": "popup_factory", + "namespace": "chat_settings" + } + }, + "chat_background": { + "file": "ui/chat_screen.json", + "type": "image" + } + }, + "chat_settings": { + "mute_all_toggle": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "mute_emote_chat_toggle": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "chat_tts_toggle": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "reset_button": { + "file": "ui/chat_settings_menu_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "typeface_dropdown_content": { + "file": "ui/chat_settings_menu_screen.json", + "type": "stack_panel", + "children": [ + "top_padding", + "mojangles", + "noto_sans", + "bottom_padding" + ] + }, + "typeface_dropdown_content/top_padding": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "typeface_dropdown_content/mojangles": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "radio_item_with_label_and_content", + "namespace": "settings_common" + } + }, + "typeface_dropdown_content/noto_sans": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "radio_item_with_label_and_content", + "namespace": "settings_common" + } + }, + "typeface_dropdown_content/bottom_padding": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "typeface_dropdown": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "option_dropdown_no_scroll", + "namespace": "settings_common" + } + }, + "chat_color_dropdown_content": { + "file": "ui/chat_settings_menu_screen.json", + "type": "stack_panel", + "children": [ + "top_padding", + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "bottom_padding" + ] + }, + "chat_color_dropdown_content/top_padding": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "chat_color_dropdown_content/0": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "radio_item_with_label_and_content", + "namespace": "settings_common" + } + }, + "chat_color_dropdown_content/1": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "radio_item_with_label_and_content", + "namespace": "settings_common" + } + }, + "chat_color_dropdown_content/2": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "radio_item_with_label_and_content", + "namespace": "settings_common" + } + }, + "chat_color_dropdown_content/3": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "radio_item_with_label_and_content", + "namespace": "settings_common" + } + }, + "chat_color_dropdown_content/4": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "radio_item_with_label_and_content", + "namespace": "settings_common" + } + }, + "chat_color_dropdown_content/5": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "radio_item_with_label_and_content", + "namespace": "settings_common" + } + }, + "chat_color_dropdown_content/6": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "radio_item_with_label_and_content", + "namespace": "settings_common" + } + }, + "chat_color_dropdown_content/bottom_padding": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "colors_dropdown_base": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "chat_color_dropdown": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "colors_dropdown_base", + "namespace": "chat_settings" + } + }, + "mentions_color_dropdown": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "colors_dropdown_base", + "namespace": "chat_settings" + } + }, + "font_size_slider": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "line_spacing_slider": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "colored_icon_panel": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "children": [ + "icon", + "icon_overlay" + ] + }, + "colored_icon_panel/icon": { + "file": "ui/chat_settings_menu_screen.json", + "type": "image" + }, + "colored_icon_panel/icon_overlay": { + "file": "ui/chat_settings_menu_screen.json", + "type": "image" + }, + "paintbrush": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "colored_icon_panel", + "namespace": "chat_settings" + } + }, + "line_break": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "children": [ + "line_break_image" + ] + }, + "line_break/line_break_image": { + "file": "ui/chat_settings_menu_screen.json", + "type": "image" + }, + "chat_settings_scrolling_content": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "children": [ + "chat_settings_content_area" + ] + }, + "chat_settings_scrolling_content/chat_settings_content_area": { + "file": "ui/chat_settings_menu_screen.json", + "type": "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": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "mute_all_toggle", + "namespace": "chat_settings" + } + }, + "chat_settings_scrolling_content/chat_settings_content_area/mute_emote_chat_toggle": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "mute_emote_chat_toggle", + "namespace": "chat_settings" + } + }, + "chat_settings_scrolling_content/chat_settings_content_area/chat_tts_toggle": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "chat_tts_toggle", + "namespace": "chat_settings" + } + }, + "chat_settings_scrolling_content/chat_settings_content_area/toggles_to_font_shape": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "line_break", + "namespace": "chat_settings" + } + }, + "chat_settings_scrolling_content/chat_settings_content_area/typeface_dropdown": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "typeface_dropdown", + "namespace": "chat_settings" + } + }, + "chat_settings_scrolling_content/chat_settings_content_area/font_size": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "font_size_slider", + "namespace": "chat_settings" + } + }, + "chat_settings_scrolling_content/chat_settings_content_area/line_spacing": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "line_spacing_slider", + "namespace": "chat_settings" + } + }, + "chat_settings_scrolling_content/chat_settings_content_area/font_shape_to_font_colors": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "line_break", + "namespace": "chat_settings" + } + }, + "chat_settings_scrolling_content/chat_settings_content_area/chat_color": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "chat_color_dropdown", + "namespace": "chat_settings" + } + }, + "chat_settings_scrolling_content/chat_settings_content_area/mentions_color": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "mentions_color_dropdown", + "namespace": "chat_settings" + } + }, + "chat_settings_scrolling_content/chat_settings_content_area/reset_button": { + "file": "ui/chat_settings_menu_screen.json", + "type": "button", + "extend": { + "name": "reset_button", + "namespace": "chat_settings" + } + }, + "chat_setting_scrolling_panel": { + "file": "ui/chat_settings_menu_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "chat_settings_popup": { + "file": "ui/chat_settings_menu_screen.json", + "type": "input_panel", + "extend": { + "name": "form_fit_modal_dialog_popup", + "namespace": "popup_dialog" + } + }, + "popup_factory": { + "file": "ui/chat_settings_menu_screen.json", + "type": "factory" + } + }, + "chest": { + "chest_label": { + "file": "ui/chest_screen.json", + "type": "label" + }, + "chest_grid_item": { + "file": "ui/chest_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "small_chest_grid": { + "file": "ui/chest_screen.json", + "type": "grid" + }, + "large_chest_grid": { + "file": "ui/chest_screen.json", + "type": "grid" + }, + "small_chest_panel_top_half": { + "file": "ui/chest_screen.json", + "type": "panel", + "children": [ + "chest_label", + "small_chest_grid" + ] + }, + "small_chest_panel_top_half/chest_label": { + "file": "ui/chest_screen.json", + "type": "label", + "extend": { + "name": "chest_label", + "namespace": "chest" + } + }, + "small_chest_panel_top_half/small_chest_grid": { + "file": "ui/chest_screen.json", + "type": "grid", + "extend": { + "name": "small_chest_grid", + "namespace": "chest" + } + }, + "large_chest_panel_top_half": { + "file": "ui/chest_screen.json", + "type": "panel", + "children": [ + "chest_label", + "large_chest_grid" + ] + }, + "large_chest_panel_top_half/chest_label": { + "file": "ui/chest_screen.json", + "type": "label", + "extend": { + "name": "chest_label", + "namespace": "chest" + } + }, + "large_chest_panel_top_half/large_chest_grid": { + "file": "ui/chest_screen.json", + "type": "grid", + "extend": { + "name": "large_chest_grid", + "namespace": "chest" + } + }, + "small_chest_panel": { + "file": "ui/chest_screen.json", + "type": "panel", + "children": [ + "container_gamepad_helpers", + "selected_item_details_factory", + "item_lock_notification_factory", + "root_panel" + ] + }, + "small_chest_panel/container_gamepad_helpers": { + "file": "ui/chest_screen.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "small_chest_panel/selected_item_details_factory": { + "file": "ui/chest_screen.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "small_chest_panel/item_lock_notification_factory": { + "file": "ui/chest_screen.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "small_chest_panel/root_panel": { + "file": "ui/chest_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "common_panel", + "chest_panel", + "inventory_selected_icon_button", + "gamepad_cursor" + ] + }, + "small_chest_panel/root_panel/common_panel": { + "file": "ui/chest_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "small_chest_panel/root_panel/chest_panel": { + "file": "ui/chest_screen.json", + "type": "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": { + "file": "ui/chest_screen.json", + "type": "panel", + "extend": { + "name": "small_chest_panel_top_half", + "namespace": "chest" + } + }, + "small_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label": { + "file": "ui/chest_screen.json", + "type": "panel", + "extend": { + "name": "inventory_panel_bottom_half_with_label", + "namespace": "common" + } + }, + "small_chest_panel/root_panel/chest_panel/hotbar_grid": { + "file": "ui/chest_screen.json", + "type": "grid", + "extend": { + "name": "hotbar_grid_template", + "namespace": "common" + } + }, + "small_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button": { + "file": "ui/chest_screen.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "small_chest_panel/root_panel/chest_panel/flying_item_renderer": { + "file": "ui/chest_screen.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + }, + "small_chest_panel/root_panel/inventory_selected_icon_button": { + "file": "ui/chest_screen.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "small_chest_panel/root_panel/gamepad_cursor": { + "file": "ui/chest_screen.json", + "type": "button", + "extend": { + "name": "gamepad_cursor_button", + "namespace": "common" + } + }, + "selected_item_details": { + "file": "ui/chest_screen.json", + "type": "panel", + "extend": { + "name": "selected_item_details", + "namespace": "common" + } + }, + "large_chest_panel": { + "file": "ui/chest_screen.json", + "type": "panel", + "children": [ + "container_gamepad_helpers", + "selected_item_details_factory", + "item_lock_notification_factory", + "root_panel" + ] + }, + "large_chest_panel/container_gamepad_helpers": { + "file": "ui/chest_screen.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "large_chest_panel/selected_item_details_factory": { + "file": "ui/chest_screen.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "large_chest_panel/item_lock_notification_factory": { + "file": "ui/chest_screen.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "large_chest_panel/root_panel": { + "file": "ui/chest_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "common_panel", + "chest_panel", + "inventory_selected_icon_button", + "gamepad_cursor" + ] + }, + "large_chest_panel/root_panel/common_panel": { + "file": "ui/chest_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "large_chest_panel/root_panel/chest_panel": { + "file": "ui/chest_screen.json", + "type": "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": { + "file": "ui/chest_screen.json", + "type": "panel", + "extend": { + "name": "large_chest_panel_top_half", + "namespace": "chest" + } + }, + "large_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label": { + "file": "ui/chest_screen.json", + "type": "panel", + "extend": { + "name": "inventory_panel_bottom_half_with_label", + "namespace": "common" + } + }, + "large_chest_panel/root_panel/chest_panel/hotbar_grid": { + "file": "ui/chest_screen.json", + "type": "grid", + "extend": { + "name": "hotbar_grid_template", + "namespace": "common" + } + }, + "large_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button": { + "file": "ui/chest_screen.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "large_chest_panel/root_panel/chest_panel/flying_item_renderer": { + "file": "ui/chest_screen.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + }, + "large_chest_panel/root_panel/inventory_selected_icon_button": { + "file": "ui/chest_screen.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "large_chest_panel/root_panel/gamepad_cursor": { + "file": "ui/chest_screen.json", + "type": "button", + "extend": { + "name": "gamepad_cursor_button", + "namespace": "common" + } + }, + "ender_chest_panel": { + "file": "ui/chest_screen.json", + "type": "panel", + "extend": { + "name": "small_chest_panel", + "namespace": "chest" + } + }, + "shulker_box_panel": { + "file": "ui/chest_screen.json", + "type": "panel", + "extend": { + "name": "small_chest_panel", + "namespace": "chest" + } + }, + "barrel_panel": { + "file": "ui/chest_screen.json", + "type": "panel", + "extend": { + "name": "small_chest_panel", + "namespace": "chest" + } + }, + "small_chest_screen": { + "file": "ui/chest_screen.json", + "type": "screen", + "extend": { + "name": "inventory_screen_common", + "namespace": "common" + } + }, + "large_chest_screen": { + "file": "ui/chest_screen.json", + "type": "screen", + "extend": { + "name": "inventory_screen_common", + "namespace": "common" + } + }, + "ender_chest_screen": { + "file": "ui/chest_screen.json", + "type": "screen", + "extend": { + "name": "inventory_screen_common", + "namespace": "common" + } + }, + "shulker_box_screen": { + "file": "ui/chest_screen.json", + "type": "screen", + "extend": { + "name": "small_chest_screen", + "namespace": "chest" + } + }, + "barrel_screen": { + "file": "ui/chest_screen.json", + "type": "screen", + "extend": { + "name": "small_chest_screen", + "namespace": "chest" + } + } + }, + "choose_realm": { + "realm_screenshot": { + "file": "ui/choose_realm_screen.json", + "type": "image", + "children": [ + "picture" + ] + }, + "realm_screenshot/picture": { + "file": "ui/choose_realm_screen.json", + "type": "image" + }, + "realms_scroll_content": { + "file": "ui/choose_realm_screen.json", + "type": "input_panel", + "children": [ + "scrolling_panel" + ] + }, + "realms_scroll_content/scrolling_panel": { + "file": "ui/choose_realm_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "realms_scroll_panel": { + "file": "ui/choose_realm_screen.json", + "type": "panel", + "children": [ + "realms_stack_panel" + ] + }, + "realms_scroll_panel/realms_stack_panel": { + "file": "ui/choose_realm_screen.json", + "type": "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": { + "file": "ui/choose_realm_screen.json", + "type": "grid", + "extend": { + "name": "realms_world_item_grid", + "namespace": "choose_realm" + } + }, + "realms_scroll_panel/realms_stack_panel/padding_0": { + "file": "ui/choose_realm_screen.json", + "type": "panel" + }, + "realms_scroll_panel/realms_stack_panel/add_realm_button": { + "file": "ui/choose_realm_screen.json", + "type": "button", + "extend": { + "name": "add_realm_button", + "namespace": "choose_realm" + } + }, + "realms_scroll_panel/realms_stack_panel/ten_player_button": { + "file": "ui/choose_realm_screen.json", + "type": "button", + "extend": { + "name": "ten_player_button", + "namespace": "choose_realm" + } + }, + "realms_scroll_panel/realms_stack_panel/padding_1": { + "file": "ui/choose_realm_screen.json", + "type": "panel" + }, + "realms_scroll_panel/realms_stack_panel/two_player_button": { + "file": "ui/choose_realm_screen.json", + "type": "button", + "extend": { + "name": "two_player_button", + "namespace": "choose_realm" + } + }, + "realms_world_item_grid": { + "file": "ui/choose_realm_screen.json", + "type": "grid" + }, + "realms_world_item": { + "file": "ui/choose_realm_screen.json", + "type": "stack_panel", + "children": [ + "realms_world_item_button" + ] + }, + "realms_world_item/realms_world_item_button": { + "file": "ui/choose_realm_screen.json", + "type": "button", + "extend": { + "name": "realms_world_item_button", + "namespace": "choose_realm" + } + }, + "realms_world_item_button": { + "file": "ui/choose_realm_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "add_realm_button": { + "file": "ui/choose_realm_screen.json", + "type": "button", + "extend": { + "name": "action_button_dark_text", + "namespace": "settings_common" + } + }, + "ten_player_button": { + "file": "ui/choose_realm_screen.json", + "type": "button", + "extend": { + "name": "action_button_dark_text", + "namespace": "settings_common" + } + }, + "two_player_button": { + "file": "ui/choose_realm_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "realms_world_content_panel": { + "file": "ui/choose_realm_screen.json", + "type": "stack_panel", + "children": [ + "realm_screenshot", + "padding", + "realms_world_content_text_area_panel", + "realms_world_content_status_area_panel" + ] + }, + "realms_world_content_panel/realm_screenshot": { + "file": "ui/choose_realm_screen.json", + "type": "image", + "extend": { + "name": "realm_screenshot", + "namespace": "choose_realm" + } + }, + "realms_world_content_panel/padding": { + "file": "ui/choose_realm_screen.json", + "type": "panel" + }, + "realms_world_content_panel/realms_world_content_text_area_panel": { + "file": "ui/choose_realm_screen.json", + "type": "panel", + "children": [ + "realms_world_text_panel" + ] + }, + "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel": { + "file": "ui/choose_realm_screen.json", + "type": "panel", + "children": [ + "realms_world_header" + ] + }, + "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel/realms_world_header": { + "file": "ui/choose_realm_screen.json", + "type": "label" + }, + "realms_world_content_panel/realms_world_content_status_area_panel": { + "file": "ui/choose_realm_screen.json", + "type": "stack_panel", + "extend": { + "name": "realms_world_content_status_area_panel", + "namespace": "play" + }, + "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": { + "file": "ui/choose_realm_screen.json", + "type": "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": { + "file": "ui/choose_realm_screen.json", + "type": "label", + "extend": { + "name": "realms_world_player_count", + "namespace": "play" + } + }, + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon": { + "file": "ui/choose_realm_screen.json", + "type": "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": { + "file": "ui/choose_realm_screen.json", + "type": "image" + }, + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_unavailable_icon": { + "file": "ui/choose_realm_screen.json", + "type": "image" + }, + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_offline_icon": { + "file": "ui/choose_realm_screen.json", + "type": "image" + }, + "main_panel": { + "file": "ui/choose_realm_screen.json", + "type": "panel", + "children": [ + "progress_loading_bars", + "realms_scroll_content" + ] + }, + "main_panel/progress_loading_bars": { + "file": "ui/choose_realm_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "progress" + } + }, + "main_panel/realms_scroll_content": { + "file": "ui/choose_realm_screen.json", + "type": "input_panel", + "extend": { + "name": "realms_scroll_content", + "namespace": "choose_realm" + } + }, + "slots_scroll_panel": { + "file": "ui/choose_realm_screen.json", + "type": "panel", + "children": [ + "slots_stack_panel" + ] + }, + "slots_scroll_panel/slots_stack_panel": { + "file": "ui/choose_realm_screen.json", + "type": "stack_panel", + "children": [ + "padding_0", + "choose_slot_text", + "padding_1", + "slots_grid" + ] + }, + "slots_scroll_panel/slots_stack_panel/padding_0": { + "file": "ui/choose_realm_screen.json", + "type": "panel" + }, + "slots_scroll_panel/slots_stack_panel/choose_slot_text": { + "file": "ui/choose_realm_screen.json", + "type": "label" + }, + "slots_scroll_panel/slots_stack_panel/padding_1": { + "file": "ui/choose_realm_screen.json", + "type": "panel" + }, + "slots_scroll_panel/slots_stack_panel/slots_grid": { + "file": "ui/choose_realm_screen.json", + "type": "stack_panel", + "extend": { + "name": "slots_grid", + "namespace": "choose_realm" + } + }, + "slots_grid": { + "file": "ui/choose_realm_screen.json", + "type": "stack_panel", + "children": [ + "slot_1", + "padding_0", + "slot_2", + "padding_1", + "slot_3" + ] + }, + "slots_grid/slot_1": { + "file": "ui/choose_realm_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "slots_grid/padding_0": { + "file": "ui/choose_realm_screen.json", + "type": "panel" + }, + "slots_grid/slot_2": { + "file": "ui/choose_realm_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "slots_grid/padding_1": { + "file": "ui/choose_realm_screen.json", + "type": "panel" + }, + "slots_grid/slot_3": { + "file": "ui/choose_realm_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "slot_content_panel": { + "file": "ui/choose_realm_screen.json", + "type": "stack_panel", + "children": [ + "world_slot_top", + "world_slot_bottom" + ] + }, + "slot_content_panel/world_slot_top": { + "file": "ui/choose_realm_screen.json", + "type": "panel", + "children": [ + "plus_image", + "world_thumbnail" + ] + }, + "slot_content_panel/world_slot_top/plus_image": { + "file": "ui/choose_realm_screen.json", + "type": "image", + "extend": { + "name": "plus", + "namespace": "realms_slots" + } + }, + "slot_content_panel/world_slot_top/world_thumbnail": { + "file": "ui/choose_realm_screen.json", + "type": "image" + }, + "slot_content_panel/world_slot_bottom": { + "file": "ui/choose_realm_screen.json", + "type": "panel", + "children": [ + "white_line_hover", + "world_text_panel" + ] + }, + "slot_content_panel/world_slot_bottom/white_line_hover": { + "file": "ui/choose_realm_screen.json", + "type": "image" + }, + "slot_content_panel/world_slot_bottom/world_text_panel": { + "file": "ui/choose_realm_screen.json", + "type": "panel", + "children": [ + "background_grey", + "background_green", + "world_text" + ] + }, + "slot_content_panel/world_slot_bottom/world_text_panel/background_grey": { + "file": "ui/choose_realm_screen.json", + "type": "image" + }, + "slot_content_panel/world_slot_bottom/world_text_panel/background_green": { + "file": "ui/choose_realm_screen.json", + "type": "image" + }, + "slot_content_panel/world_slot_bottom/world_text_panel/world_text": { + "file": "ui/choose_realm_screen.json", + "type": "label" + }, + "slot_panel": { + "file": "ui/choose_realm_screen.json", + "type": "panel", + "children": [ + "slots_scroll_content" + ] + }, + "slot_panel/slots_scroll_content": { + "file": "ui/choose_realm_screen.json", + "type": "input_panel", + "children": [ + "scrolling_panel" + ] + }, + "slot_panel/slots_scroll_content/scrolling_panel": { + "file": "ui/choose_realm_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "choose_realm_screen": { + "file": "ui/choose_realm_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "choose_realm_screen_content": { + "file": "ui/choose_realm_screen.json", + "type": "panel", + "children": [ + "realm_dialog", + "slot_dialog" + ] + }, + "choose_realm_screen_content/realm_dialog": { + "file": "ui/choose_realm_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + }, + "choose_realm_screen_content/slot_dialog": { + "file": "ui/choose_realm_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + }, + "background": { + "file": "ui/choose_realm_screen.json", + "type": "image", + "extend": { + "name": "screen_background", + "namespace": "common" + } + } + }, + "coin_purchase": { + "black_image": { + "file": "ui/coin_purchase_screen.json", + "type": "image" + }, + "banner_fill": { + "file": "ui/coin_purchase_screen.json", + "type": "image" + }, + "coins_stack_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "stack_panel", + "children": [ + "coin", + "coin_padding", + "text_padding" + ] + }, + "coins_stack_panel/coin": { + "file": "ui/coin_purchase_screen.json", + "type": "image", + "extend": { + "name": "coin_icon", + "namespace": "common_store" + } + }, + "coins_stack_panel/coin_padding": { + "file": "ui/coin_purchase_screen.json", + "type": "panel" + }, + "coins_stack_panel/text_padding": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "coins_without_bonus" + ] + }, + "coins_stack_panel/text_padding/coins_without_bonus": { + "file": "ui/coin_purchase_screen.json", + "type": "label" + }, + "call_out_coins_stack_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "stack_panel", + "children": [ + "coin", + "coin_padding", + "text_padding" + ] + }, + "call_out_coins_stack_panel/coin": { + "file": "ui/coin_purchase_screen.json", + "type": "image", + "extend": { + "name": "coin_icon", + "namespace": "common_store" + } + }, + "call_out_coins_stack_panel/coin_padding": { + "file": "ui/coin_purchase_screen.json", + "type": "panel" + }, + "call_out_coins_stack_panel/text_padding": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "coins_without_bonus" + ] + }, + "call_out_coins_stack_panel/text_padding/coins_without_bonus": { + "file": "ui/coin_purchase_screen.json", + "type": "label" + }, + "button_content": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "bonus_coins_stack", + "call_out_background" + ] + }, + "button_content/bonus_coins_stack": { + "file": "ui/coin_purchase_screen.json", + "type": "stack_panel", + "extend": { + "name": "bonus_coins_stack", + "namespace": "coin_purchase" + } + }, + "button_content/call_out_background": { + "file": "ui/coin_purchase_screen.json", + "type": "image", + "children": [ + "bevel" + ] + }, + "button_content/call_out_background/bevel": { + "file": "ui/coin_purchase_screen.json", + "type": "image" + }, + "call_out_button_content": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "call_out_header", + "call_out_bonus_coins_stack", + "call_out_background" + ] + }, + "call_out_button_content/call_out_header": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "extend": { + "name": "call_out_header", + "namespace": "coin_purchase" + } + }, + "call_out_button_content/call_out_bonus_coins_stack": { + "file": "ui/coin_purchase_screen.json", + "type": "stack_panel", + "extend": { + "name": "call_out_bonus_coins_stack", + "namespace": "coin_purchase" + } + }, + "call_out_button_content/call_out_background": { + "file": "ui/coin_purchase_screen.json", + "type": "image", + "children": [ + "call_out_border" + ] + }, + "call_out_button_content/call_out_background/call_out_border": { + "file": "ui/coin_purchase_screen.json", + "type": "image" + }, + "call_out_header": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "call_out_banner", + "call_out_label" + ] + }, + "call_out_header/call_out_banner": { + "file": "ui/coin_purchase_screen.json", + "type": "image" + }, + "call_out_header/call_out_label": { + "file": "ui/coin_purchase_screen.json", + "type": "label" + }, + "bonus_coins_stack": { + "file": "ui/coin_purchase_screen.json", + "type": "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": { + "file": "ui/coin_purchase_screen.json", + "type": "panel" + }, + "bonus_coins_stack/image_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "image" + ] + }, + "bonus_coins_stack/image_panel/image": { + "file": "ui/coin_purchase_screen.json", + "type": "image" + }, + "bonus_coins_stack/non_bonus_padding_0": { + "file": "ui/coin_purchase_screen.json", + "type": "panel" + }, + "bonus_coins_stack/price_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "coins_stack_panel" + ] + }, + "bonus_coins_stack/price_panel/coins_stack_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "stack_panel", + "extend": { + "name": "coins_stack_panel", + "namespace": "coin_purchase" + } + }, + "bonus_coins_stack/plus_label": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "plus_label" + ] + }, + "bonus_coins_stack/plus_label/plus_label": { + "file": "ui/coin_purchase_screen.json", + "type": "label" + }, + "bonus_coins_stack/non_bonus_padding_1": { + "file": "ui/coin_purchase_screen.json", + "type": "panel" + }, + "bonus_coins_stack/bonus_label_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "bonus_label" + ] + }, + "bonus_coins_stack/bonus_label_panel/bonus_label": { + "file": "ui/coin_purchase_screen.json", + "type": "label" + }, + "bonus_coins_stack/padding_0": { + "file": "ui/coin_purchase_screen.json", + "type": "panel" + }, + "bonus_coins_stack/bonus_price_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "coins_stack_panel" + ] + }, + "bonus_coins_stack/bonus_price_panel/coins_stack_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "stack_panel", + "extend": { + "name": "coins_stack_panel", + "namespace": "coin_purchase" + } + }, + "bonus_coins_stack/padding_1": { + "file": "ui/coin_purchase_screen.json", + "type": "panel" + }, + "bonus_coins_stack/currency_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "currency_price_panel" + ] + }, + "bonus_coins_stack/currency_panel/currency_price_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "image", + "children": [ + "price", + "debug_price" + ] + }, + "bonus_coins_stack/currency_panel/currency_price_panel/price": { + "file": "ui/coin_purchase_screen.json", + "type": "label", + "extend": { + "name": "price", + "namespace": "coin_purchase" + } + }, + "bonus_coins_stack/currency_panel/currency_price_panel/debug_price": { + "file": "ui/coin_purchase_screen.json", + "type": "label", + "extend": { + "name": "price", + "namespace": "coin_purchase" + } + }, + "bonus_coins_stack/padding_2": { + "file": "ui/coin_purchase_screen.json", + "type": "panel" + }, + "call_out_bonus_coins_stack": { + "file": "ui/coin_purchase_screen.json", + "type": "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": { + "file": "ui/coin_purchase_screen.json", + "type": "panel" + }, + "call_out_bonus_coins_stack/image_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "image" + ] + }, + "call_out_bonus_coins_stack/image_panel/image": { + "file": "ui/coin_purchase_screen.json", + "type": "image" + }, + "call_out_bonus_coins_stack/non_bonus_padding_0": { + "file": "ui/coin_purchase_screen.json", + "type": "panel" + }, + "call_out_bonus_coins_stack/price_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "call_out_coins_stack_panel" + ] + }, + "call_out_bonus_coins_stack/price_panel/call_out_coins_stack_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "stack_panel", + "extend": { + "name": "call_out_coins_stack_panel", + "namespace": "coin_purchase" + } + }, + "call_out_bonus_coins_stack/plus_label": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "plus_label" + ] + }, + "call_out_bonus_coins_stack/plus_label/plus_label": { + "file": "ui/coin_purchase_screen.json", + "type": "label" + }, + "call_out_bonus_coins_stack/non_bonus_padding": { + "file": "ui/coin_purchase_screen.json", + "type": "panel" + }, + "call_out_bonus_coins_stack/bonus_label_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "bonus_label" + ] + }, + "call_out_bonus_coins_stack/bonus_label_panel/bonus_label": { + "file": "ui/coin_purchase_screen.json", + "type": "label" + }, + "call_out_bonus_coins_stack/padding_0": { + "file": "ui/coin_purchase_screen.json", + "type": "panel" + }, + "call_out_bonus_coins_stack/bonus_coin_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "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": { + "file": "ui/coin_purchase_screen.json", + "type": "panel" + }, + "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "coin" + ] + }, + "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel/coin": { + "file": "ui/coin_purchase_screen.json", + "type": "image", + "extend": { + "name": "coin_icon", + "namespace": "common_store" + } + }, + "call_out_bonus_coins_stack/bonus_coin_panel/coin_padding": { + "file": "ui/coin_purchase_screen.json", + "type": "panel" + }, + "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "bonus_coins" + ] + }, + "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel/bonus_coins": { + "file": "ui/coin_purchase_screen.json", + "type": "label" + }, + "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_1": { + "file": "ui/coin_purchase_screen.json", + "type": "panel" + }, + "call_out_bonus_coins_stack/padding_1": { + "file": "ui/coin_purchase_screen.json", + "type": "panel" + }, + "call_out_bonus_coins_stack/currency_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "currency_price_panel" + ] + }, + "call_out_bonus_coins_stack/currency_panel/currency_price_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "image", + "children": [ + "price", + "debug_price" + ] + }, + "call_out_bonus_coins_stack/currency_panel/currency_price_panel/price": { + "file": "ui/coin_purchase_screen.json", + "type": "label", + "extend": { + "name": "price", + "namespace": "coin_purchase" + } + }, + "call_out_bonus_coins_stack/currency_panel/currency_price_panel/debug_price": { + "file": "ui/coin_purchase_screen.json", + "type": "label", + "extend": { + "name": "price", + "namespace": "coin_purchase" + } + }, + "call_out_bonus_coins_stack/padding_2": { + "file": "ui/coin_purchase_screen.json", + "type": "panel" + }, + "price": { + "file": "ui/coin_purchase_screen.json", + "type": "label" + }, + "offer_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "call_out_offer_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "offer_item": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "offer_panel", + "call_out_offer_panel" + ] + }, + "offer_item/offer_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "button", + "extend": { + "name": "offer_panel", + "namespace": "coin_purchase" + } + }, + "offer_item/call_out_offer_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "button", + "extend": { + "name": "call_out_offer_panel", + "namespace": "coin_purchase" + } + }, + "offer_grid_item": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "offer_item" + ] + }, + "offer_grid_item/offer_item": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "extend": { + "name": "offer_item", + "namespace": "coin_purchase" + } + }, + "not_enough_coins": { + "file": "ui/coin_purchase_screen.json", + "type": "label" + }, + "faq_button": { + "file": "ui/coin_purchase_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "divider_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "divider" + ] + }, + "divider_panel/divider": { + "file": "ui/coin_purchase_screen.json", + "type": "image" + }, + "coin_purchase_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "stack_panel", + "children": [ + "padding_0", + "not_enough_coins_panel", + "padding_1", + "coin_purchase_grid", + "divider_panel", + "faq_button" + ] + }, + "coin_purchase_panel/padding_0": { + "file": "ui/coin_purchase_screen.json", + "type": "panel" + }, + "coin_purchase_panel/not_enough_coins_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "not_enough_coins" + ] + }, + "coin_purchase_panel/not_enough_coins_panel/not_enough_coins": { + "file": "ui/coin_purchase_screen.json", + "type": "label", + "extend": { + "name": "not_enough_coins", + "namespace": "coin_purchase" + } + }, + "coin_purchase_panel/padding_1": { + "file": "ui/coin_purchase_screen.json", + "type": "panel" + }, + "coin_purchase_panel/coin_purchase_grid": { + "file": "ui/coin_purchase_screen.json", + "type": "grid" + }, + "coin_purchase_panel/divider_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "extend": { + "name": "divider_panel", + "namespace": "coin_purchase" + } + }, + "coin_purchase_panel/faq_button": { + "file": "ui/coin_purchase_screen.json", + "type": "button", + "extend": { + "name": "faq_button", + "namespace": "coin_purchase" + } + }, + "main_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "coin_purchase_panel", + "loading_background", + "progress_loading_spinner", + "no_offers_panel" + ] + }, + "main_panel/coin_purchase_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "stack_panel", + "extend": { + "name": "coin_purchase_panel", + "namespace": "coin_purchase" + } + }, + "main_panel/loading_background": { + "file": "ui/coin_purchase_screen.json", + "type": "image" + }, + "main_panel/progress_loading_spinner": { + "file": "ui/coin_purchase_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_spinner", + "namespace": "common_store" + } + }, + "main_panel/no_offers_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "label" + }, + "background": { + "file": "ui/coin_purchase_screen.json", + "type": "image", + "extend": { + "name": "screen_background", + "namespace": "common" + } + }, + "bundle_description": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "extend": { + "name": "text_style_label", + "namespace": "common_store" + } + }, + "bundle_description_left": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "extend": { + "name": "bundle_description", + "namespace": "coin_purchase" + } + }, + "bundle_description_center": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "extend": { + "name": "bundle_description", + "namespace": "coin_purchase" + } + }, + "bundle_description_right": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "extend": { + "name": "bundle_description", + "namespace": "coin_purchase" + } + }, + "bundle_coins_stack": { + "file": "ui/coin_purchase_screen.json", + "type": "stack_panel", + "children": [ + "content_panel", + "padding_0", + "currency_panel", + "padding_2" + ] + }, + "bundle_coins_stack/content_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "stack_panel", + "children": [ + "text_stack", + "thumbnail_panel", + "padding_0" + ] + }, + "bundle_coins_stack/content_panel/text_stack": { + "file": "ui/coin_purchase_screen.json", + "type": "stack_panel", + "children": [ + "title_label", + "padding_1", + "description_section_factory" + ] + }, + "bundle_coins_stack/content_panel/text_stack/title_label": { + "file": "ui/coin_purchase_screen.json", + "type": "label" + }, + "bundle_coins_stack/content_panel/text_stack/padding_1": { + "file": "ui/coin_purchase_screen.json", + "type": "panel" + }, + "bundle_coins_stack/content_panel/text_stack/description_section_factory": { + "file": "ui/coin_purchase_screen.json", + "type": "stack_panel" + }, + "bundle_coins_stack/content_panel/thumbnail_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "thumbnail" + ] + }, + "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail": { + "file": "ui/coin_purchase_screen.json", + "type": "image", + "children": [ + "coin_image" + ] + }, + "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail/coin_image": { + "file": "ui/coin_purchase_screen.json", + "type": "image" + }, + "bundle_coins_stack/content_panel/padding_0": { + "file": "ui/coin_purchase_screen.json", + "type": "panel" + }, + "bundle_coins_stack/padding_0": { + "file": "ui/coin_purchase_screen.json", + "type": "panel" + }, + "bundle_coins_stack/currency_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "currency_price_panel" + ] + }, + "bundle_coins_stack/currency_panel/currency_price_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "image", + "children": [ + "price", + "debug_price" + ] + }, + "bundle_coins_stack/currency_panel/currency_price_panel/price": { + "file": "ui/coin_purchase_screen.json", + "type": "label", + "extend": { + "name": "price", + "namespace": "coin_purchase" + } + }, + "bundle_coins_stack/currency_panel/currency_price_panel/debug_price": { + "file": "ui/coin_purchase_screen.json", + "type": "label", + "extend": { + "name": "price", + "namespace": "coin_purchase" + } + }, + "bundle_coins_stack/padding_2": { + "file": "ui/coin_purchase_screen.json", + "type": "panel" + }, + "bundle_button_content": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "bundle_coins_stack", + "call_out_background" + ] + }, + "bundle_button_content/bundle_coins_stack": { + "file": "ui/coin_purchase_screen.json", + "type": "stack_panel", + "extend": { + "name": "bundle_coins_stack", + "namespace": "coin_purchase" + } + }, + "bundle_button_content/call_out_background": { + "file": "ui/coin_purchase_screen.json", + "type": "image", + "children": [ + "bevel" + ] + }, + "bundle_button_content/call_out_background/bevel": { + "file": "ui/coin_purchase_screen.json", + "type": "image" + }, + "bundle_offer_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "bundle_offer_item": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "offer_panel" + ] + }, + "bundle_offer_item/offer_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "button", + "extend": { + "name": "bundle_offer_panel", + "namespace": "coin_purchase" + } + }, + "bundle_offer_grid_item": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "offer_item" + ] + }, + "bundle_offer_grid_item/offer_item": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "extend": { + "name": "bundle_offer_item", + "namespace": "coin_purchase" + } + }, + "bundle_stack_factory": { + "file": "ui/coin_purchase_screen.json", + "type": "stack_panel" + }, + "bundle_factory_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "bundle_stack_factory" + ] + }, + "bundle_factory_panel/bundle_stack_factory": { + "file": "ui/coin_purchase_screen.json", + "type": "stack_panel", + "extend": { + "name": "bundle_stack_factory", + "namespace": "coin_purchase" + } + }, + "bundle_panel": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "children": [ + "progress_loading_spinner", + "loading_background", + "bundle_stack_factory" + ] + }, + "bundle_panel/progress_loading_spinner": { + "file": "ui/coin_purchase_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_spinner", + "namespace": "common_store" + } + }, + "bundle_panel/loading_background": { + "file": "ui/coin_purchase_screen.json", + "type": "image" + }, + "bundle_panel/bundle_stack_factory": { + "file": "ui/coin_purchase_screen.json", + "type": "panel", + "extend": { + "name": "bundle_factory_panel", + "namespace": "coin_purchase" + } + } + }, + "command_block": { + "plus_icon": { + "file": "ui/command_block_screen.json", + "type": "image" + }, + "paste_icon": { + "file": "ui/command_block_screen.json", + "type": "image" + }, + "plus_button": { + "file": "ui/command_block_screen.json", + "type": "button", + "extend": { + "name": "light_glyph_button", + "namespace": "common_buttons" + } + }, + "paste_button": { + "file": "ui/command_block_screen.json", + "type": "button", + "extend": { + "name": "light_glyph_button", + "namespace": "common_buttons" + } + }, + "icon_dropdown_toggle_button_state_content": { + "file": "ui/command_block_screen.json", + "type": "stack_panel", + "children": [ + "icon_panel", + "spacer", + "label_panel", + "arrow_panel" + ] + }, + "icon_dropdown_toggle_button_state_content/icon_panel": { + "file": "ui/command_block_screen.json", + "type": "panel", + "children": [ + "dropdown_contents_icon" + ] + }, + "icon_dropdown_toggle_button_state_content/icon_panel/dropdown_contents_icon": { + "file": "ui/command_block_screen.json", + "type": "image" + }, + "icon_dropdown_toggle_button_state_content/spacer": { + "file": "ui/command_block_screen.json", + "type": "panel" + }, + "icon_dropdown_toggle_button_state_content/label_panel": { + "file": "ui/command_block_screen.json", + "type": "panel", + "children": [ + "label" + ] + }, + "icon_dropdown_toggle_button_state_content/label_panel/label": { + "file": "ui/command_block_screen.json", + "type": "label", + "extend": { + "name": "new_button_label", + "namespace": "common" + } + }, + "icon_dropdown_toggle_button_state_content/arrow_panel": { + "file": "ui/command_block_screen.json", + "type": "panel", + "children": [ + "arrow" + ] + }, + "icon_dropdown_toggle_button_state_content/arrow_panel/arrow": { + "file": "ui/command_block_screen.json", + "type": "image", + "extend": { + "name": "arrow_image", + "namespace": "settings_common" + } + }, + "command_block_multiline_text_edit_box": { + "file": "ui/command_block_screen.json", + "type": "edit_box", + "extend": { + "name": "multiline_text_edit_box", + "namespace": "common" + } + }, + "command_block_text_edit_box": { + "file": "ui/command_block_screen.json", + "type": "edit_box", + "extend": { + "name": "command_block_multiline_text_edit_box", + "namespace": "command_block" + } + }, + "command_block_helper_stack": { + "file": "ui/command_block_screen.json", + "type": "stack_panel", + "children": [ + "offset", + "text_" + ] + }, + "command_block_helper_stack/offset": { + "file": "ui/command_block_screen.json", + "type": "panel" + }, + "command_block_helper_stack/text_": { + "file": "ui/command_block_screen.json", + "type": "label" + }, + "previous_command_block_info_stack": { + "file": "ui/command_block_screen.json", + "type": "stack_panel", + "children": [ + "offset", + "start_label", + "offset1", + "start_label_dynamic_text" + ] + }, + "previous_command_block_info_stack/offset": { + "file": "ui/command_block_screen.json", + "type": "panel" + }, + "previous_command_block_info_stack/start_label": { + "file": "ui/command_block_screen.json", + "type": "label" + }, + "previous_command_block_info_stack/offset1": { + "file": "ui/command_block_screen.json", + "type": "panel" + }, + "previous_command_block_info_stack/start_label_dynamic_text": { + "file": "ui/command_block_screen.json", + "type": "label" + }, + "cancel_button": { + "file": "ui/command_block_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "blocktype_dropdown_content": { + "file": "ui/command_block_screen.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "block_type_panel": { + "file": "ui/command_block_screen.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "condition_dropdown_content": { + "file": "ui/command_block_screen.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "condition_mode_panel": { + "file": "ui/command_block_screen.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "redstone_dropdown_content": { + "file": "ui/command_block_screen.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "redstone_mode_panel": { + "file": "ui/command_block_screen.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "left_scrolling_panel": { + "file": "ui/command_block_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "left_scroll_panel_content": { + "file": "ui/command_block_screen.json", + "type": "panel", + "children": [ + "content_stack_panel" + ] + }, + "left_scroll_panel_content/content_stack_panel": { + "file": "ui/command_block_screen.json", + "type": "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": { + "file": "ui/command_block_screen.json", + "type": "panel" + }, + "left_scroll_panel_content/content_stack_panel/offset2": { + "file": "ui/command_block_screen.json", + "type": "panel", + "children": [ + "hover_note_text" + ] + }, + "left_scroll_panel_content/content_stack_panel/offset2/hover_note_text": { + "file": "ui/command_block_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "left_scroll_panel_content/content_stack_panel/offset3": { + "file": "ui/command_block_screen.json", + "type": "panel" + }, + "left_scroll_panel_content/content_stack_panel/block_type_mode_panel": { + "file": "ui/command_block_screen.json", + "type": "panel", + "extend": { + "name": "block_type_panel", + "namespace": "command_block" + } + }, + "left_scroll_panel_content/content_stack_panel/offset4": { + "file": "ui/command_block_screen.json", + "type": "panel" + }, + "left_scroll_panel_content/content_stack_panel/condition_mode_panel": { + "file": "ui/command_block_screen.json", + "type": "panel", + "extend": { + "name": "condition_mode_panel", + "namespace": "command_block" + } + }, + "left_scroll_panel_content/content_stack_panel/offset5": { + "file": "ui/command_block_screen.json", + "type": "panel" + }, + "left_scroll_panel_content/content_stack_panel/redstone_mode_panel": { + "file": "ui/command_block_screen.json", + "type": "panel", + "extend": { + "name": "redstone_mode_panel", + "namespace": "command_block" + } + }, + "left_scroll_panel_content/content_stack_panel/offset_execute_on_first_tick": { + "file": "ui/command_block_screen.json", + "type": "panel" + }, + "left_scroll_panel_content/content_stack_panel/option_label_execute_on_first_tick": { + "file": "ui/command_block_screen.json", + "type": "label" + }, + "left_scroll_panel_content/content_stack_panel/execute_on_first_tick_toggle": { + "file": "ui/command_block_screen.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "left_scroll_panel_content/content_stack_panel/offset_tick_delay": { + "file": "ui/command_block_screen.json", + "type": "panel" + }, + "left_scroll_panel_content/content_stack_panel/option_label_tick_delay": { + "file": "ui/command_block_screen.json", + "type": "label" + }, + "left_scroll_panel_content/content_stack_panel/tick_delay_text": { + "file": "ui/command_block_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "left_scroll_panel_content/content_stack_panel/offset7": { + "file": "ui/command_block_screen.json", + "type": "panel" + }, + "left_scroll_panel_content/content_stack_panel/cancel": { + "file": "ui/command_block_screen.json", + "type": "button", + "extend": { + "name": "cancel_button", + "namespace": "command_block" + } + }, + "left_scroll_panel_content/content_stack_panel/offset8": { + "file": "ui/command_block_screen.json", + "type": "panel" + }, + "left_divider_content": { + "file": "ui/command_block_screen.json", + "type": "panel", + "children": [ + "left_scrolling_panel" + ] + }, + "left_divider_content/left_scrolling_panel": { + "file": "ui/command_block_screen.json", + "type": "panel", + "extend": { + "name": "left_scrolling_panel", + "namespace": "command_block" + } + }, + "right_scrolling_panel": { + "file": "ui/command_block_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "right_scroll_panel_content": { + "file": "ui/command_block_screen.json", + "type": "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": { + "file": "ui/command_block_screen.json", + "type": "stack_panel", + "children": [ + "spacer1", + "centering_panel", + "spacer2", + "centering_panel1" + ] + }, + "right_scroll_panel_content/command_block_commands_panel/spacer1": { + "file": "ui/command_block_screen.json", + "type": "panel" + }, + "right_scroll_panel_content/command_block_commands_panel/centering_panel": { + "file": "ui/command_block_screen.json", + "type": "panel", + "children": [ + "option_label" + ] + }, + "right_scroll_panel_content/command_block_commands_panel/centering_panel/option_label": { + "file": "ui/command_block_screen.json", + "type": "label" + }, + "right_scroll_panel_content/command_block_commands_panel/spacer2": { + "file": "ui/command_block_screen.json", + "type": "panel" + }, + "right_scroll_panel_content/command_block_commands_panel/centering_panel1": { + "file": "ui/command_block_screen.json", + "type": "panel", + "children": [ + "command_block_commands_panel" + ] + }, + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel": { + "file": "ui/command_block_screen.json", + "type": "stack_panel", + "children": [ + "offset", + "paste_button", + "plus_button" + ] + }, + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset": { + "file": "ui/command_block_screen.json", + "type": "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": { + "file": "ui/command_block_screen.json", + "type": "edit_box", + "extend": { + "name": "command_block_text_edit_box", + "namespace": "command_block" + } + }, + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/paste_button": { + "file": "ui/command_block_screen.json", + "type": "button", + "extend": { + "name": "paste_button", + "namespace": "command_block" + } + }, + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/plus_button": { + "file": "ui/command_block_screen.json", + "type": "button", + "extend": { + "name": "plus_button", + "namespace": "command_block" + } + }, + "right_scroll_panel_content/switch_warning_panel": { + "file": "ui/command_block_screen.json", + "type": "panel", + "children": [ + "switch_warning_label" + ] + }, + "right_scroll_panel_content/switch_warning_panel/switch_warning_label": { + "file": "ui/command_block_screen.json", + "type": "label" + }, + "right_scroll_panel_content/self_label": { + "file": "ui/command_block_screen.json", + "type": "stack_panel", + "extend": { + "name": "command_block_helper_stack", + "namespace": "command_block" + } + }, + "right_scroll_panel_content/self_label_offset": { + "file": "ui/command_block_screen.json", + "type": "panel" + }, + "right_scroll_panel_content/nearest_player_label": { + "file": "ui/command_block_screen.json", + "type": "stack_panel", + "extend": { + "name": "command_block_helper_stack", + "namespace": "command_block" + } + }, + "right_scroll_panel_content/nearest_player_label_offset": { + "file": "ui/command_block_screen.json", + "type": "panel" + }, + "right_scroll_panel_content/random_player_label": { + "file": "ui/command_block_screen.json", + "type": "stack_panel", + "extend": { + "name": "command_block_helper_stack", + "namespace": "command_block" + } + }, + "right_scroll_panel_content/random_player_label_offset": { + "file": "ui/command_block_screen.json", + "type": "panel" + }, + "right_scroll_panel_content/all_players_label": { + "file": "ui/command_block_screen.json", + "type": "stack_panel", + "extend": { + "name": "command_block_helper_stack", + "namespace": "command_block" + } + }, + "right_scroll_panel_content/all_players_label_offset": { + "file": "ui/command_block_screen.json", + "type": "panel" + }, + "right_scroll_panel_content/all_entities_label": { + "file": "ui/command_block_screen.json", + "type": "stack_panel", + "extend": { + "name": "command_block_helper_stack", + "namespace": "command_block" + } + }, + "right_scroll_panel_content/all_entities_label_offset": { + "file": "ui/command_block_screen.json", + "type": "panel" + }, + "right_scroll_panel_content/nearest_label": { + "file": "ui/command_block_screen.json", + "type": "stack_panel", + "extend": { + "name": "command_block_helper_stack", + "namespace": "command_block" + } + }, + "right_scroll_panel_content/nearest_label_offset": { + "file": "ui/command_block_screen.json", + "type": "panel" + }, + "right_scroll_panel_content/command_block_previous_output_panel": { + "file": "ui/command_block_screen.json", + "type": "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": { + "file": "ui/command_block_screen.json", + "type": "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": { + "file": "ui/command_block_screen.json", + "type": "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": { + "file": "ui/command_block_screen.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/option_label": { + "file": "ui/command_block_screen.json", + "type": "label" + }, + "right_scroll_panel_content/command_block_previous_output_panel/spacer": { + "file": "ui/command_block_screen.json", + "type": "panel" + }, + "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel": { + "file": "ui/command_block_screen.json", + "type": "panel", + "children": [ + "command_output_text" + ] + }, + "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel/command_output_text": { + "file": "ui/command_block_screen.json", + "type": "edit_box", + "extend": { + "name": "command_block_multiline_text_edit_box", + "namespace": "command_block" + } + }, + "right_scroll_panel_content/previous_block_type_text": { + "file": "ui/command_block_screen.json", + "type": "stack_panel", + "extend": { + "name": "previous_command_block_info_stack", + "namespace": "command_block" + } + }, + "right_scroll_panel_content/offset4": { + "file": "ui/command_block_screen.json", + "type": "panel" + }, + "right_scroll_panel_content/previous_conditional_mode_text": { + "file": "ui/command_block_screen.json", + "type": "stack_panel", + "extend": { + "name": "previous_command_block_info_stack", + "namespace": "command_block" + } + }, + "right_scroll_panel_content/offset5": { + "file": "ui/command_block_screen.json", + "type": "panel" + }, + "right_scroll_panel_content/previous_redstone_mode_text": { + "file": "ui/command_block_screen.json", + "type": "stack_panel", + "extend": { + "name": "previous_command_block_info_stack", + "namespace": "command_block" + } + }, + "divider_content": { + "file": "ui/command_block_screen.json", + "type": "panel", + "children": [ + "left_side", + "right_side" + ] + }, + "divider_content/left_side": { + "file": "ui/command_block_screen.json", + "type": "panel", + "extend": { + "name": "left_divider_content", + "namespace": "command_block" + } + }, + "divider_content/right_side": { + "file": "ui/command_block_screen.json", + "type": "panel", + "extend": { + "name": "right_divider_content", + "namespace": "command_block" + } + }, + "command_block_screen_content": { + "file": "ui/command_block_screen.json", + "type": "panel", + "children": [ + "background_divider", + "title", + "content", + "maximized_command_block_text" + ] + }, + "command_block_screen_content/background_divider": { + "file": "ui/command_block_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + }, + "children": [ + "bg_image", + "dialog_divider", + "header_buttons_stack_panel" + ] + }, + "command_block_screen_content/background_divider/bg_image": { + "file": "ui/command_block_screen.json", + "type": "unknown" + }, + "command_block_screen_content/background_divider/dialog_divider": { + "file": "ui/command_block_screen.json", + "type": "image", + "extend": { + "name": "dialog_divider", + "namespace": "common" + } + }, + "command_block_screen_content/background_divider/header_buttons_stack_panel": { + "file": "ui/command_block_screen.json", + "type": "stack_panel", + "children": [ + "paste_button", + "close_button_holder" + ] + }, + "command_block_screen_content/background_divider/header_buttons_stack_panel/paste_button": { + "file": "ui/command_block_screen.json", + "type": "button", + "extend": { + "name": "paste_button", + "namespace": "command_block" + } + }, + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder": { + "file": "ui/command_block_screen.json", + "type": "panel", + "children": [ + "close", + "minimize" + ] + }, + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/close": { + "file": "ui/command_block_screen.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "common" + } + }, + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize": { + "file": "ui/command_block_screen.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/default": { + "file": "ui/command_block_screen.json", + "type": "unknown", + "extend": { + "name": "close_button_panel", + "namespace": "command_block" + } + }, + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/hover": { + "file": "ui/command_block_screen.json", + "type": "unknown", + "extend": { + "name": "close_button_panel", + "namespace": "command_block" + } + }, + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/pressed": { + "file": "ui/command_block_screen.json", + "type": "unknown", + "extend": { + "name": "close_button_panel", + "namespace": "command_block" + } + }, + "command_block_screen_content/title": { + "file": "ui/command_block_screen.json", + "type": "label" + }, + "command_block_screen_content/content": { + "file": "ui/command_block_screen.json", + "type": "panel", + "extend": { + "name": "divider_content", + "namespace": "command_block" + } + }, + "command_block_screen_content/maximized_command_block_text": { + "file": "ui/command_block_screen.json", + "type": "edit_box", + "extend": { + "name": "command_block_text_edit_box", + "namespace": "command_block" + } + }, + "right_divider_content": { + "file": "ui/command_block_screen.json", + "type": "panel", + "children": [ + "right_scrolling_panel" + ] + }, + "right_divider_content/right_scrolling_panel": { + "file": "ui/command_block_screen.json", + "type": "panel", + "extend": { + "name": "right_scrolling_panel", + "namespace": "command_block" + } + }, + "command_block_screen": { + "file": "ui/command_block_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + } + }, + "confirm_delete_account": { + "horizontal_divider": { + "file": "ui/confirm_delete_account_screen.json", + "type": "stack_panel", + "extend": { + "name": "section_divider", + "namespace": "common" + } + }, + "image_panel": { + "file": "ui/confirm_delete_account_screen.json", + "type": "panel", + "children": [ + "image" + ] + }, + "image_panel/image": { + "file": "ui/confirm_delete_account_screen.json", + "type": "image" + }, + "header_panel": { + "file": "ui/confirm_delete_account_screen.json", + "type": "stack_panel", + "children": [ + "image_panel", + "padding", + "text_panel" + ] + }, + "header_panel/image_panel": { + "file": "ui/confirm_delete_account_screen.json", + "type": "panel", + "extend": { + "name": "image_panel", + "namespace": "confirm_delete_account" + } + }, + "header_panel/padding": { + "file": "ui/confirm_delete_account_screen.json", + "type": "panel" + }, + "header_panel/text_panel": { + "file": "ui/confirm_delete_account_screen.json", + "type": "stack_panel", + "children": [ + "header_text", + "padding_2", + "header_text_2" + ] + }, + "header_panel/text_panel/header_text": { + "file": "ui/confirm_delete_account_screen.json", + "type": "label" + }, + "header_panel/text_panel/padding_2": { + "file": "ui/confirm_delete_account_screen.json", + "type": "panel" + }, + "header_panel/text_panel/header_text_2": { + "file": "ui/confirm_delete_account_screen.json", + "type": "label" + }, + "dialog_content": { + "file": "ui/confirm_delete_account_screen.json", + "type": "stack_panel", + "children": [ + "body_content", + "padding", + "button_panel" + ] + }, + "dialog_content/body_content": { + "file": "ui/confirm_delete_account_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "confirm_delete_account" + } + }, + "dialog_content/padding": { + "file": "ui/confirm_delete_account_screen.json", + "type": "panel" + }, + "dialog_content/button_panel": { + "file": "ui/confirm_delete_account_screen.json", + "type": "stack_panel", + "children": [ + "confirm_delete_account_button", + "padding", + "cancel_delete_account_button" + ] + }, + "dialog_content/button_panel/confirm_delete_account_button": { + "file": "ui/confirm_delete_account_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "dialog_content/button_panel/padding": { + "file": "ui/confirm_delete_account_screen.json", + "type": "panel" + }, + "dialog_content/button_panel/cancel_delete_account_button": { + "file": "ui/confirm_delete_account_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "confirm_checkbox": { + "file": "ui/confirm_delete_account_screen.json", + "type": "stack_panel", + "children": [ + "check_box_wrapper", + "padding", + "label_wrapper" + ] + }, + "confirm_checkbox/check_box_wrapper": { + "file": "ui/confirm_delete_account_screen.json", + "type": "panel", + "children": [ + "check_box" + ] + }, + "confirm_checkbox/check_box_wrapper/check_box": { + "file": "ui/confirm_delete_account_screen.json", + "type": "toggle", + "extend": { + "name": "checkbox", + "namespace": "common" + } + }, + "confirm_checkbox/padding": { + "file": "ui/confirm_delete_account_screen.json", + "type": "panel" + }, + "confirm_checkbox/label_wrapper": { + "file": "ui/confirm_delete_account_screen.json", + "type": "panel", + "children": [ + "label" + ] + }, + "confirm_checkbox/label_wrapper/label": { + "file": "ui/confirm_delete_account_screen.json", + "type": "label" + }, + "scrolling_panel": { + "file": "ui/confirm_delete_account_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "description_label_panel": { + "file": "ui/confirm_delete_account_screen.json", + "type": "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": { + "file": "ui/confirm_delete_account_screen.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "description_label_panel/padding": { + "file": "ui/confirm_delete_account_screen.json", + "type": "panel" + }, + "description_label_panel/divider_0": { + "file": "ui/confirm_delete_account_screen.json", + "type": "stack_panel", + "extend": { + "name": "horizontal_divider", + "namespace": "confirm_delete_account" + } + }, + "description_label_panel/confirm_0": { + "file": "ui/confirm_delete_account_screen.json", + "type": "stack_panel", + "extend": { + "name": "confirm_checkbox", + "namespace": "confirm_delete_account" + } + }, + "description_label_panel/divider_1": { + "file": "ui/confirm_delete_account_screen.json", + "type": "stack_panel", + "extend": { + "name": "horizontal_divider", + "namespace": "confirm_delete_account" + } + }, + "description_label_panel/confirm_1": { + "file": "ui/confirm_delete_account_screen.json", + "type": "stack_panel", + "extend": { + "name": "confirm_checkbox", + "namespace": "confirm_delete_account" + } + }, + "description_label_panel/divider_2": { + "file": "ui/confirm_delete_account_screen.json", + "type": "stack_panel", + "extend": { + "name": "horizontal_divider", + "namespace": "confirm_delete_account" + } + }, + "description_label_panel/confirm_2": { + "file": "ui/confirm_delete_account_screen.json", + "type": "stack_panel", + "extend": { + "name": "confirm_checkbox", + "namespace": "confirm_delete_account" + } + }, + "description_label_panel/divider_3": { + "file": "ui/confirm_delete_account_screen.json", + "type": "stack_panel", + "extend": { + "name": "horizontal_divider", + "namespace": "confirm_delete_account" + } + }, + "description_label_panel/confirm_3": { + "file": "ui/confirm_delete_account_screen.json", + "type": "stack_panel", + "extend": { + "name": "confirm_checkbox", + "namespace": "confirm_delete_account" + } + }, + "confirm_delete_account_screen": { + "file": "ui/confirm_delete_account_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "confirm_delete_account_screen_content": { + "file": "ui/confirm_delete_account_screen.json", + "type": "panel", + "children": [ + "root_panel" + ] + }, + "confirm_delete_account_screen_content/root_panel": { + "file": "ui/confirm_delete_account_screen.json", + "type": "panel", + "children": [ + "dialog" + ] + }, + "confirm_delete_account_screen_content/root_panel/dialog": { + "file": "ui/confirm_delete_account_screen.json", + "type": "panel", + "extend": { + "name": "screen_dialog", + "namespace": "confirm_delete_account" + } + }, + "screen_dialog": { + "file": "ui/confirm_delete_account_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + }, + "background": { + "file": "ui/confirm_delete_account_screen.json", + "type": "image", + "extend": { + "name": "screen_background", + "namespace": "common" + } + } + }, + "content_log": { + "content_log_label": { + "file": "ui/content_log.json", + "type": "label" + }, + "content_log_grid_item": { + "file": "ui/content_log.json", + "type": "panel", + "children": [ + "content_log_background" + ] + }, + "content_log_grid_item/content_log_background": { + "file": "ui/content_log.json", + "type": "image", + "children": [ + "content_log_text" + ] + }, + "content_log_grid_item/content_log_background/content_log_text": { + "file": "ui/content_log.json", + "type": "label", + "extend": { + "name": "content_log_label", + "namespace": "content_log" + } + }, + "content_log_panel": { + "file": "ui/content_log.json", + "type": "panel", + "children": [ + "stack_panel" + ] + }, + "content_log_panel/stack_panel": { + "file": "ui/content_log.json", + "type": "stack_panel" + } + }, + "content_log_history": { + "clipboard_icon": { + "file": "ui/content_log_history_screen.json", + "type": "image" + }, + "clipboard_icon_wrapper": { + "file": "ui/content_log_history_screen.json", + "type": "panel", + "children": [ + "stack_panel" + ] + }, + "clipboard_icon_wrapper/stack_panel": { + "file": "ui/content_log_history_screen.json", + "type": "stack_panel", + "children": [ + "icon_panel", + "offset", + "label_panel" + ] + }, + "clipboard_icon_wrapper/stack_panel/icon_panel": { + "file": "ui/content_log_history_screen.json", + "type": "panel", + "children": [ + "icon" + ] + }, + "clipboard_icon_wrapper/stack_panel/icon_panel/icon": { + "file": "ui/content_log_history_screen.json", + "type": "image", + "extend": { + "name": "clipboard_icon", + "namespace": "content_log_history" + } + }, + "clipboard_icon_wrapper/stack_panel/offset": { + "file": "ui/content_log_history_screen.json", + "type": "panel" + }, + "clipboard_icon_wrapper/stack_panel/label_panel": { + "file": "ui/content_log_history_screen.json", + "type": "panel", + "children": [ + "label" + ] + }, + "clipboard_icon_wrapper/stack_panel/label_panel/label": { + "file": "ui/content_log_history_screen.json", + "type": "label" + }, + "clipboard_button": { + "file": "ui/content_log_history_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "clear_icon": { + "file": "ui/content_log_history_screen.json", + "type": "image" + }, + "clear_icon_wrapper": { + "file": "ui/content_log_history_screen.json", + "type": "panel", + "children": [ + "stack_panel" + ] + }, + "clear_icon_wrapper/stack_panel": { + "file": "ui/content_log_history_screen.json", + "type": "stack_panel", + "children": [ + "icon_panel", + "offset", + "label_panel" + ] + }, + "clear_icon_wrapper/stack_panel/icon_panel": { + "file": "ui/content_log_history_screen.json", + "type": "panel", + "children": [ + "icon" + ] + }, + "clear_icon_wrapper/stack_panel/icon_panel/icon": { + "file": "ui/content_log_history_screen.json", + "type": "image", + "extend": { + "name": "clear_icon", + "namespace": "content_log_history" + } + }, + "clear_icon_wrapper/stack_panel/offset": { + "file": "ui/content_log_history_screen.json", + "type": "panel" + }, + "clear_icon_wrapper/stack_panel/label_panel": { + "file": "ui/content_log_history_screen.json", + "type": "panel", + "children": [ + "label" + ] + }, + "clear_icon_wrapper/stack_panel/label_panel/label": { + "file": "ui/content_log_history_screen.json", + "type": "label" + }, + "clear_button": { + "file": "ui/content_log_history_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "horizontal_button_stack_panel": { + "file": "ui/content_log_history_screen.json", + "type": "stack_panel", + "children": [ + "clipboard_button", + "clear_button" + ] + }, + "horizontal_button_stack_panel/clipboard_button": { + "file": "ui/content_log_history_screen.json", + "type": "button", + "extend": { + "name": "clipboard_button", + "namespace": "content_log_history" + } + }, + "horizontal_button_stack_panel/clear_button": { + "file": "ui/content_log_history_screen.json", + "type": "button", + "extend": { + "name": "clear_button", + "namespace": "content_log_history" + } + }, + "content_log_message": { + "file": "ui/content_log_history_screen.json", + "type": "label" + }, + "content_log_message_panel": { + "file": "ui/content_log_history_screen.json", + "type": "panel", + "children": [ + "content_log_message" + ] + }, + "content_log_message_panel/content_log_message": { + "file": "ui/content_log_history_screen.json", + "type": "label", + "extend": { + "name": "content_log_message", + "namespace": "content_log_history" + } + }, + "content_log_message_panel_panel": { + "file": "ui/content_log_history_screen.json", + "type": "panel", + "children": [ + "content_log_message_panel" + ] + }, + "content_log_message_panel_panel/content_log_message_panel": { + "file": "ui/content_log_history_screen.json", + "type": "panel", + "extend": { + "name": "content_log_message_panel", + "namespace": "content_log_history" + } + }, + "messages_stack_panel": { + "file": "ui/content_log_history_screen.json", + "type": "stack_panel" + }, + "messages_scrolling_panel": { + "file": "ui/content_log_history_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "main_stack_panel": { + "file": "ui/content_log_history_screen.json", + "type": "stack_panel", + "children": [ + "messages_scrolling_panel" + ] + }, + "main_stack_panel/messages_scrolling_panel": { + "file": "ui/content_log_history_screen.json", + "type": "panel", + "extend": { + "name": "messages_scrolling_panel", + "namespace": "content_log_history" + } + }, + "content_log_history_panel": { + "file": "ui/content_log_history_screen.json", + "type": "panel", + "children": [ + "content_log_history_dialog" + ] + }, + "content_log_history_panel/content_log_history_dialog": { + "file": "ui/content_log_history_screen.json", + "type": "unknown" + }, + "content_log_history_screen": { + "file": "ui/content_log_history_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + } + }, + "crafter_pocket": { + "generic_label": { + "file": "ui/crafter_screen_pocket.json", + "type": "label" + }, + "header_panel": { + "file": "ui/crafter_screen_pocket.json", + "type": "panel", + "children": [ + "header_background", + "title_label" + ] + }, + "header_panel/header_background": { + "file": "ui/crafter_screen_pocket.json", + "type": "image" + }, + "header_panel/title_label": { + "file": "ui/crafter_screen_pocket.json", + "type": "label", + "extend": { + "name": "generic_label", + "namespace": "crafter_pocket" + } + }, + "header_area": { + "file": "ui/crafter_screen_pocket.json", + "type": "panel", + "children": [ + "x", + "inventory_header", + "container_header" + ] + }, + "header_area/x": { + "file": "ui/crafter_screen_pocket.json", + "type": "button", + "extend": { + "name": "legacy_pocket_close_button", + "namespace": "common" + } + }, + "header_area/inventory_header": { + "file": "ui/crafter_screen_pocket.json", + "type": "panel", + "extend": { + "name": "header_panel", + "namespace": "pocket_containers" + } + }, + "header_area/container_header": { + "file": "ui/crafter_screen_pocket.json", + "type": "panel", + "extend": { + "name": "header_panel", + "namespace": "pocket_containers" + } + }, + "dark_bg": { + "file": "ui/crafter_screen_pocket.json", + "type": "image" + }, + "panel_outline": { + "file": "ui/crafter_screen_pocket.json", + "type": "image" + }, + "background_panel": { + "file": "ui/crafter_screen_pocket.json", + "type": "image" + }, + "inventory_panel": { + "file": "ui/crafter_screen_pocket.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "inventory_panel/scrolling_panel": { + "file": "ui/crafter_screen_pocket.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "left_screen": { + "file": "ui/crafter_screen_pocket.json", + "type": "panel", + "children": [ + "inventory_panel" + ] + }, + "left_screen/inventory_panel": { + "file": "ui/crafter_screen_pocket.json", + "type": "panel", + "extend": { + "name": "inventory_panel", + "namespace": "crafter_pocket" + } + }, + "crafter_input_grid": { + "file": "ui/crafter_screen_pocket.json", + "type": "grid" + }, + "crafter_disabled_slot": { + "file": "ui/crafter_screen_pocket.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "crafter_disabled_slot/default": { + "file": "ui/crafter_screen_pocket.json", + "type": "image" + }, + "crafter_disabled_slot/hover": { + "file": "ui/crafter_screen_pocket.json", + "type": "image" + }, + "crafter_disabled_slot/pressed": { + "file": "ui/crafter_screen_pocket.json", + "type": "image" + }, + "cell_image": { + "file": "ui/crafter_screen_pocket.json", + "type": "image" + }, + "crafter_highlight_slot": { + "file": "ui/crafter_screen_pocket.json", + "type": "image" + }, + "crafter_container_slot_button_prototype": { + "file": "ui/crafter_screen_pocket.json", + "type": "button", + "extend": { + "name": "container_slot_button_prototype", + "namespace": "common" + } + }, + "crafter_highlight_slot_panel": { + "file": "ui/crafter_screen_pocket.json", + "type": "panel", + "children": [ + "highlight", + "white_border" + ] + }, + "crafter_highlight_slot_panel/highlight": { + "file": "ui/crafter_screen_pocket.json", + "type": "image", + "extend": { + "name": "crafter_highlight_slot", + "namespace": "crafter_pocket" + }, + "children": [ + "hover_text" + ] + }, + "crafter_highlight_slot_panel/highlight/hover_text": { + "file": "ui/crafter_screen_pocket.json", + "type": "custom", + "extend": { + "name": "hover_text", + "namespace": "common" + } + }, + "crafter_highlight_slot_panel/white_border": { + "file": "ui/crafter_screen_pocket.json", + "type": "image", + "extend": { + "name": "white_border_slot", + "namespace": "common" + } + }, + "crafter_enabled_slot_template": { + "file": "ui/crafter_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_container_item", + "namespace": "common" + } + }, + "output_slot_hover_info": { + "file": "ui/crafter_screen_pocket.json", + "type": "button", + "children": [ + "hover", + "output_slot", + "output_slot_border", + "output_count" + ] + }, + "output_slot_hover_info/hover": { + "file": "ui/crafter_screen_pocket.json", + "type": "custom", + "extend": { + "name": "hover_text", + "namespace": "common" + } + }, + "output_slot_hover_info/output_slot": { + "file": "ui/crafter_screen_pocket.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "common" + } + }, + "output_slot_hover_info/output_slot_border": { + "file": "ui/crafter_screen_pocket.json", + "type": "image" + }, + "output_slot_hover_info/output_count": { + "file": "ui/crafter_screen_pocket.json", + "type": "label", + "extend": { + "name": "stack_count_label", + "namespace": "common" + } + }, + "panel_crafter": { + "file": "ui/crafter_screen_pocket.json", + "type": "panel", + "children": [ + "item_lock_notification_factory", + "root_panel" + ] + }, + "panel_crafter/item_lock_notification_factory": { + "file": "ui/crafter_screen_pocket.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "panel_crafter/root_panel": { + "file": "ui/crafter_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "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": { + "file": "ui/crafter_screen_pocket.json", + "type": "button", + "extend": { + "name": "crafter_disabled_slot", + "namespace": "crafter_pocket" + } + }, + "panel_crafter/root_panel/disabled_slot_1_button": { + "file": "ui/crafter_screen_pocket.json", + "type": "button", + "extend": { + "name": "crafter_disabled_slot", + "namespace": "crafter_pocket" + } + }, + "panel_crafter/root_panel/disabled_slot_2_button": { + "file": "ui/crafter_screen_pocket.json", + "type": "button", + "extend": { + "name": "crafter_disabled_slot", + "namespace": "crafter_pocket" + } + }, + "panel_crafter/root_panel/disabled_slot_3_button": { + "file": "ui/crafter_screen_pocket.json", + "type": "button", + "extend": { + "name": "crafter_disabled_slot", + "namespace": "crafter_pocket" + } + }, + "panel_crafter/root_panel/disabled_slot_4_button": { + "file": "ui/crafter_screen_pocket.json", + "type": "button", + "extend": { + "name": "crafter_disabled_slot", + "namespace": "crafter_pocket" + } + }, + "panel_crafter/root_panel/disabled_slot_5_button": { + "file": "ui/crafter_screen_pocket.json", + "type": "button", + "extend": { + "name": "crafter_disabled_slot", + "namespace": "crafter_pocket" + } + }, + "panel_crafter/root_panel/disabled_slot_6_button": { + "file": "ui/crafter_screen_pocket.json", + "type": "button", + "extend": { + "name": "crafter_disabled_slot", + "namespace": "crafter_pocket" + } + }, + "panel_crafter/root_panel/disabled_slot_7_button": { + "file": "ui/crafter_screen_pocket.json", + "type": "button", + "extend": { + "name": "crafter_disabled_slot", + "namespace": "crafter_pocket" + } + }, + "panel_crafter/root_panel/disabled_slot_8_button": { + "file": "ui/crafter_screen_pocket.json", + "type": "button", + "extend": { + "name": "crafter_disabled_slot", + "namespace": "crafter_pocket" + } + }, + "panel_crafter/root_panel/redstone_screen_inventory": { + "file": "ui/crafter_screen_pocket.json", + "type": "panel", + "children": [ + "crafting_grid", + "red_hold_icon", + "redstone_wire_line", + "crafter_output" + ] + }, + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid": { + "file": "ui/crafter_screen_pocket.json", + "type": "panel", + "children": [ + "crafter_input_grid" + ] + }, + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid": { + "file": "ui/crafter_screen_pocket.json", + "type": "grid", + "extend": { + "name": "crafter_input_grid", + "namespace": "crafter_pocket" + } + }, + "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon": { + "file": "ui/crafter_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line": { + "file": "ui/crafter_screen_pocket.json", + "type": "image" + }, + "panel_crafter/root_panel/redstone_screen_inventory/crafter_output": { + "file": "ui/crafter_screen_pocket.json", + "type": "button", + "extend": { + "name": "output_slot_hover_info", + "namespace": "crafter_pocket" + } + }, + "panel_crafter/root_panel/red_icon": { + "file": "ui/crafter_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "right_screen_background": { + "file": "ui/crafter_screen_pocket.json", + "type": "image" + }, + "right_screen": { + "file": "ui/crafter_screen_pocket.json", + "type": "panel", + "children": [ + "right_screen_bg" + ] + }, + "right_screen/right_screen_bg": { + "file": "ui/crafter_screen_pocket.json", + "type": "image", + "extend": { + "name": "right_screen_background", + "namespace": "crafter_pocket" + }, + "children": [ + "inventory_panel" + ] + }, + "right_screen/right_screen_bg/inventory_panel": { + "file": "ui/crafter_screen_pocket.json", + "type": "panel", + "extend": { + "name": "panel_crafter", + "namespace": "crafter_pocket" + } + }, + "panel": { + "file": "ui/crafter_screen_pocket.json", + "type": "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": { + "file": "ui/crafter_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "panel/header": { + "file": "ui/crafter_screen_pocket.json", + "type": "panel", + "extend": { + "name": "header_area", + "namespace": "crafter_pocket" + } + }, + "panel/bg": { + "file": "ui/crafter_screen_pocket.json", + "type": "image", + "extend": { + "name": "background_panel", + "namespace": "crafter_pocket" + } + }, + "panel/inventory": { + "file": "ui/crafter_screen_pocket.json", + "type": "panel", + "extend": { + "name": "left_screen", + "namespace": "crafter_pocket" + } + }, + "panel/container": { + "file": "ui/crafter_screen_pocket.json", + "type": "panel", + "extend": { + "name": "right_screen", + "namespace": "crafter_pocket" + } + }, + "panel/selected_item_details_factory": { + "file": "ui/crafter_screen_pocket.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "panel/item_lock_notification_factory": { + "file": "ui/crafter_screen_pocket.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "panel/gamepad_cursor": { + "file": "ui/crafter_screen_pocket.json", + "type": "button", + "extend": { + "name": "gamepad_cursor_button", + "namespace": "common" + } + }, + "panel/flying_item_renderer": { + "file": "ui/crafter_screen_pocket.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + }, + "crafter": { + "file": "ui/crafter_screen_pocket.json", + "type": "panel", + "extend": { + "name": "panel", + "namespace": "crafter_pocket" + } + } + }, + "create_world_upsell": { + "world_icon": { + "file": "ui/create_world_upsell_screen.json", + "type": "image" + }, + "realms_icon": { + "file": "ui/create_world_upsell_screen.json", + "type": "image" + }, + "dark_banner": { + "file": "ui/create_world_upsell_screen.json", + "type": "image" + }, + "grey_banner": { + "file": "ui/create_world_upsell_screen.json", + "type": "image" + }, + "checkmark": { + "file": "ui/create_world_upsell_screen.json", + "type": "image" + }, + "largex": { + "file": "ui/create_world_upsell_screen.json", + "type": "image" + }, + "realms_art_icon": { + "file": "ui/create_world_upsell_screen.json", + "type": "image" + }, + "new_world_button": { + "file": "ui/create_world_upsell_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "new_realm_button": { + "file": "ui/create_world_upsell_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "remove_trial_button": { + "file": "ui/create_world_upsell_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "button_content": { + "file": "ui/create_world_upsell_screen.json", + "type": "stack_panel", + "children": [ + "padding_0", + "icon_panel", + "padding_1", + "label_panel" + ] + }, + "button_content/padding_0": { + "file": "ui/create_world_upsell_screen.json", + "type": "panel" + }, + "button_content/icon_panel": { + "file": "ui/create_world_upsell_screen.json", + "type": "panel" + }, + "button_content/padding_1": { + "file": "ui/create_world_upsell_screen.json", + "type": "panel" + }, + "button_content/label_panel": { + "file": "ui/create_world_upsell_screen.json", + "type": "panel" + }, + "realm_button_content": { + "file": "ui/create_world_upsell_screen.json", + "type": "stack_panel", + "extend": { + "name": "button_content", + "namespace": "create_world_upsell" + } + }, + "world_button_content": { + "file": "ui/create_world_upsell_screen.json", + "type": "stack_panel", + "extend": { + "name": "button_content", + "namespace": "create_world_upsell" + } + }, + "realms_button_text_panel": { + "file": "ui/create_world_upsell_screen.json", + "type": "stack_panel", + "children": [ + "new_realm_label", + "new_realm_trial_label" + ] + }, + "realms_button_text_panel/new_realm_label": { + "file": "ui/create_world_upsell_screen.json", + "type": "label", + "extend": { + "name": "new_realm_label", + "namespace": "create_world_upsell" + } + }, + "realms_button_text_panel/new_realm_trial_label": { + "file": "ui/create_world_upsell_screen.json", + "type": "label", + "extend": { + "name": "new_realm_trial_label", + "namespace": "create_world_upsell" + } + }, + "price_label": { + "file": "ui/create_world_upsell_screen.json", + "type": "label" + }, + "new_realm_label": { + "file": "ui/create_world_upsell_screen.json", + "type": "label" + }, + "new_realm_trial_label": { + "file": "ui/create_world_upsell_screen.json", + "type": "label" + }, + "new_world_label": { + "file": "ui/create_world_upsell_screen.json", + "type": "label" + }, + "button_and_price_panel": { + "file": "ui/create_world_upsell_screen.json", + "type": "stack_panel", + "children": [ + "padding", + "price_label_panel" + ] + }, + "button_and_price_panel/padding": { + "file": "ui/create_world_upsell_screen.json", + "type": "panel" + }, + "button_and_price_panel/price_label_panel": { + "file": "ui/create_world_upsell_screen.json", + "type": "panel", + "children": [ + "price" + ] + }, + "button_and_price_panel/price_label_panel/price": { + "file": "ui/create_world_upsell_screen.json", + "type": "label", + "extend": { + "name": "price_label", + "namespace": "create_world_upsell" + } + }, + "border_shell": { + "file": "ui/create_world_upsell_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "head_banner_panel": { + "file": "ui/create_world_upsell_screen.json", + "type": "image", + "extend": { + "name": "dark_banner", + "namespace": "create_world_upsell" + } + }, + "create_new_realm_content": { + "file": "ui/create_world_upsell_screen.json", + "type": "stack_panel", + "children": [ + "head_banner_panel", + "realm_grid" + ] + }, + "create_new_realm_content/head_banner_panel": { + "file": "ui/create_world_upsell_screen.json", + "type": "image", + "extend": { + "name": "head_banner_panel", + "namespace": "create_world_upsell" + }, + "children": [ + "realm_button_price" + ] + }, + "create_new_realm_content/head_banner_panel/realm_button_price": { + "file": "ui/create_world_upsell_screen.json", + "type": "stack_panel", + "extend": { + "name": "button_and_price_panel", + "namespace": "create_world_upsell" + } + }, + "create_new_realm_content/realm_grid": { + "file": "ui/create_world_upsell_screen.json", + "type": "grid" + }, + "create_world_upsell_grid_item": { + "file": "ui/create_world_upsell_screen.json", + "type": "panel", + "children": [ + "db", + "gb", + "gp" + ] + }, + "create_world_upsell_grid_item/db": { + "file": "ui/create_world_upsell_screen.json", + "type": "image", + "extend": { + "name": "dark_banner", + "namespace": "create_world_upsell" + } + }, + "create_world_upsell_grid_item/gb": { + "file": "ui/create_world_upsell_screen.json", + "type": "image", + "extend": { + "name": "grey_banner", + "namespace": "create_world_upsell" + } + }, + "create_world_upsell_grid_item/gp": { + "file": "ui/create_world_upsell_screen.json", + "type": "stack_panel", + "extend": { + "name": "grid_panel", + "namespace": "create_world_upsell" + } + }, + "grid_panel": { + "file": "ui/create_world_upsell_screen.json", + "type": "stack_panel", + "children": [ + "padding", + "upsell_text_panel" + ] + }, + "grid_panel/padding": { + "file": "ui/create_world_upsell_screen.json", + "type": "panel" + }, + "grid_panel/upsell_text_panel": { + "file": "ui/create_world_upsell_screen.json", + "type": "panel", + "children": [ + "upsell_label" + ] + }, + "grid_panel/upsell_text_panel/upsell_label": { + "file": "ui/create_world_upsell_screen.json", + "type": "label" + }, + "create_new_world_content": { + "file": "ui/create_world_upsell_screen.json", + "type": "stack_panel", + "children": [ + "head_banner_panel", + "world_grid" + ] + }, + "create_new_world_content/head_banner_panel": { + "file": "ui/create_world_upsell_screen.json", + "type": "image", + "extend": { + "name": "head_banner_panel", + "namespace": "create_world_upsell" + }, + "children": [ + "world_button_price" + ] + }, + "create_new_world_content/head_banner_panel/world_button_price": { + "file": "ui/create_world_upsell_screen.json", + "type": "stack_panel", + "extend": { + "name": "button_and_price_panel", + "namespace": "create_world_upsell" + } + }, + "create_new_world_content/world_grid": { + "file": "ui/create_world_upsell_screen.json", + "type": "grid" + }, + "new_world_or_realm_scroll": { + "file": "ui/create_world_upsell_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "create_new_world_or_realm_content": { + "file": "ui/create_world_upsell_screen.json", + "type": "stack_panel", + "children": [ + "world", + "padding", + "realm_content" + ] + }, + "create_new_world_or_realm_content/world": { + "file": "ui/create_world_upsell_screen.json", + "type": "image", + "extend": { + "name": "border_shell", + "namespace": "create_world_upsell" + } + }, + "create_new_world_or_realm_content/padding": { + "file": "ui/create_world_upsell_screen.json", + "type": "panel" + }, + "create_new_world_or_realm_content/realm_content": { + "file": "ui/create_world_upsell_screen.json", + "type": "image", + "extend": { + "name": "realm_content", + "namespace": "create_world_upsell" + } + }, + "new_realm_scroll": { + "file": "ui/create_world_upsell_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "new_realm_content_panel": { + "file": "ui/create_world_upsell_screen.json", + "type": "stack_panel", + "children": [ + "key_art_panel", + "padding_hack", + "padding_0", + "new_realm_scroll", + "padding_1" + ] + }, + "new_realm_content_panel/key_art_panel": { + "file": "ui/create_world_upsell_screen.json", + "type": "panel", + "children": [ + "realms_art_icon" + ] + }, + "new_realm_content_panel/key_art_panel/realms_art_icon": { + "file": "ui/create_world_upsell_screen.json", + "type": "image", + "extend": { + "name": "realms_art_icon", + "namespace": "create_world_upsell" + } + }, + "new_realm_content_panel/padding_hack": { + "file": "ui/create_world_upsell_screen.json", + "type": "panel" + }, + "new_realm_content_panel/padding_0": { + "file": "ui/create_world_upsell_screen.json", + "type": "panel" + }, + "new_realm_content_panel/new_realm_scroll": { + "file": "ui/create_world_upsell_screen.json", + "type": "panel", + "extend": { + "name": "new_realm_scroll", + "namespace": "create_world_upsell" + } + }, + "new_realm_content_panel/padding_1": { + "file": "ui/create_world_upsell_screen.json", + "type": "panel" + }, + "create_realm_upsell_content": { + "file": "ui/create_world_upsell_screen.json", + "type": "stack_panel", + "children": [ + "realm_content", + "padding_0", + "remove_trial_button", + "padding_1" + ] + }, + "create_realm_upsell_content/realm_content": { + "file": "ui/create_world_upsell_screen.json", + "type": "image", + "extend": { + "name": "realm_content", + "namespace": "create_world_upsell" + } + }, + "create_realm_upsell_content/padding_0": { + "file": "ui/create_world_upsell_screen.json", + "type": "panel" + }, + "create_realm_upsell_content/remove_trial_button": { + "file": "ui/create_world_upsell_screen.json", + "type": "button", + "extend": { + "name": "remove_trial_button", + "namespace": "create_world_upsell" + } + }, + "create_realm_upsell_content/padding_1": { + "file": "ui/create_world_upsell_screen.json", + "type": "panel" + }, + "realm_content": { + "file": "ui/create_world_upsell_screen.json", + "type": "image", + "extend": { + "name": "border_shell", + "namespace": "create_world_upsell" + } + }, + "create_world_upsell": { + "file": "ui/create_world_upsell_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "create_world_upsell_realms": { + "file": "ui/create_world_upsell_screen.json", + "type": "screen", + "extend": { + "name": "create_world_upsell", + "namespace": "create_world_upsell" + } + }, + "main_panel": { + "file": "ui/create_world_upsell_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + }, + "variable_screen_size_panel": { + "file": "ui/create_world_upsell_screen.json", + "type": "panel", + "children": [ + "dialog_0", + "dialog_1" + ] + }, + "variable_screen_size_panel/dialog_0": { + "file": "ui/create_world_upsell_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_realms_only", + "namespace": "create_world_upsell" + } + }, + "variable_screen_size_panel/dialog_1": { + "file": "ui/create_world_upsell_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_realms_only", + "namespace": "create_world_upsell" + } + }, + "main_panel_realms_only": { + "file": "ui/create_world_upsell_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + } + }, + "credits": { + "fade_in_image": { + "file": "ui/credits_screen.json", + "type": "image" + }, + "fade_out_image": { + "file": "ui/credits_screen.json", + "type": "image", + "extend": { + "name": "fade_in_image", + "namespace": "credits" + } + }, + "skip_panel": { + "file": "ui/credits_screen.json", + "type": "panel", + "children": [ + "skip_button", + "exit_credits_input_panel" + ] + }, + "skip_panel/skip_button": { + "file": "ui/credits_screen.json", + "type": "button", + "extend": { + "name": "light_text_form_fitting_button", + "namespace": "common_buttons" + } + }, + "skip_panel/exit_credits_input_panel": { + "file": "ui/credits_screen.json", + "type": "input_panel" + }, + "credits_renderer": { + "file": "ui/credits_screen.json", + "type": "custom" + }, + "credits_screen_content": { + "file": "ui/credits_screen.json", + "type": "panel", + "children": [ + "credits_renderer", + "vignette_renderer", + "fade_in_image", + "credits_factory", + "whole_screen_input_panel" + ] + }, + "credits_screen_content/credits_renderer": { + "file": "ui/credits_screen.json", + "type": "custom", + "extend": { + "name": "credits_renderer", + "namespace": "credits" + } + }, + "credits_screen_content/vignette_renderer": { + "file": "ui/credits_screen.json", + "type": "custom" + }, + "credits_screen_content/fade_in_image": { + "file": "ui/credits_screen.json", + "type": "image", + "extend": { + "name": "fade_in_image", + "namespace": "credits" + } + }, + "credits_screen_content/credits_factory": { + "file": "ui/credits_screen.json", + "type": "factory" + }, + "credits_screen_content/whole_screen_input_panel": { + "file": "ui/credits_screen.json", + "type": "input_panel" + }, + "background": { + "file": "ui/credits_screen.json", + "type": "image", + "extend": { + "name": "dirt_background", + "namespace": "common" + } + }, + "credits_screen": { + "file": "ui/credits_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + } + }, + "csb_purchase_error": { + "csb_purchase_error_screen": { + "file": "ui/csb_purchase_error_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "purchase_error_screen_content": { + "file": "ui/csb_purchase_error_screen.json", + "type": "panel", + "children": [ + "main_panel" + ] + }, + "purchase_error_screen_content/main_panel": { + "file": "ui/csb_purchase_error_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_one_button", + "namespace": "common_dialogs" + } + }, + "purchase_error_modal_main_panel": { + "file": "ui/csb_purchase_error_screen.json", + "type": "stack_panel", + "children": [ + "text_panel", + "padding_1", + "art_panel", + "padding_2", + "error_panel" + ] + }, + "purchase_error_modal_main_panel/text_panel": { + "file": "ui/csb_purchase_error_screen.json", + "type": "panel", + "children": [ + "text" + ] + }, + "purchase_error_modal_main_panel/text_panel/text": { + "file": "ui/csb_purchase_error_screen.json", + "type": "label" + }, + "purchase_error_modal_main_panel/padding_1": { + "file": "ui/csb_purchase_error_screen.json", + "type": "panel" + }, + "purchase_error_modal_main_panel/art_panel": { + "file": "ui/csb_purchase_error_screen.json", + "type": "panel", + "children": [ + "art" + ] + }, + "purchase_error_modal_main_panel/art_panel/art": { + "file": "ui/csb_purchase_error_screen.json", + "type": "image" + }, + "purchase_error_modal_main_panel/padding_2": { + "file": "ui/csb_purchase_error_screen.json", + "type": "panel" + }, + "purchase_error_modal_main_panel/error_panel": { + "file": "ui/csb_purchase_error_screen.json", + "type": "stack_panel", + "children": [ + "error_code", + "correlation_id" + ] + }, + "purchase_error_modal_main_panel/error_panel/error_code": { + "file": "ui/csb_purchase_error_screen.json", + "type": "label" + }, + "purchase_error_modal_main_panel/error_panel/correlation_id": { + "file": "ui/csb_purchase_error_screen.json", + "type": "label" + }, + "purchase_error_modal_back_button": { + "file": "ui/csb_purchase_error_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + } + }, + "csb": { + "csb_pdp_screen": { + "file": "ui/csb_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "csb_upgrade_notice_screen": { + "file": "ui/csb_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "csb_background": { + "file": "ui/csb_screen.json", + "type": "image" + }, + "gradient_image_stack": { + "file": "ui/csb_screen.json", + "type": "stack_panel", + "children": [ + "gradient" + ] + }, + "gradient_image_stack/gradient": { + "file": "ui/csb_screen.json", + "type": "image" + }, + "gradient_content_panel": { + "file": "ui/csb_screen.json", + "type": "panel", + "children": [ + "gradient", + "particles", + "content_panel" + ] + }, + "gradient_content_panel/gradient": { + "file": "ui/csb_screen.json", + "type": "stack_panel", + "extend": { + "name": "gradient_image_stack", + "namespace": "csb" + } + }, + "gradient_content_panel/particles": { + "file": "ui/csb_screen.json", + "type": "image" + }, + "gradient_content_panel/content_panel": { + "file": "ui/csb_screen.json", + "type": "unknown" + }, + "csb_screen_main_panel": { + "file": "ui/csb_screen.json", + "type": "input_panel", + "extend": { + "name": "sidebar_view", + "namespace": "sidebar_navigation" + } + }, + "csb_main_panel": { + "file": "ui/csb_screen.json", + "type": "panel", + "children": [ + "root_panel" + ] + }, + "csb_main_panel/root_panel": { + "file": "ui/csb_screen.json", + "type": "panel", + "children": [ + "main_panel" + ] + }, + "csb_main_panel/root_panel/main_panel": { + "file": "ui/csb_screen.json", + "type": "stack_panel", + "extend": { + "name": "store_header_with_coins", + "namespace": "common_store" + } + }, + "dialog_content": { + "file": "ui/csb_screen.json", + "type": "stack_panel", + "children": [ + "selector_area", + "padding_1", + "allow_divider_offset_panel", + "padding_2", + "content_area", + "padding_3" + ] + }, + "dialog_content/selector_area": { + "file": "ui/csb_screen.json", + "type": "panel", + "extend": { + "name": "selector_area", + "namespace": "csb" + } + }, + "dialog_content/padding_1": { + "file": "ui/csb_screen.json", + "type": "panel" + }, + "dialog_content/allow_divider_offset_panel": { + "file": "ui/csb_screen.json", + "type": "panel", + "children": [ + "left_right_pane_divider" + ] + }, + "dialog_content/allow_divider_offset_panel/left_right_pane_divider": { + "file": "ui/csb_screen.json", + "type": "image", + "extend": { + "name": "left_right_pane_divider", + "namespace": "csb" + } + }, + "dialog_content/padding_2": { + "file": "ui/csb_screen.json", + "type": "panel" + }, + "dialog_content/content_area": { + "file": "ui/csb_screen.json", + "type": "panel", + "extend": { + "name": "content_area", + "namespace": "csb" + } + }, + "dialog_content/padding_3": { + "file": "ui/csb_screen.json", + "type": "panel" + }, + "selector_area": { + "file": "ui/csb_screen.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "selector_area/scrolling_panel": { + "file": "ui/csb_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "scrollable_selector_area_content": { + "file": "ui/csb_screen.json", + "type": "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": { + "file": "ui/csb_screen.json", + "type": "input_panel" + }, + "scrollable_selector_area_content/csb_toggle": { + "file": "ui/csb_screen.json", + "type": "stack_panel", + "extend": { + "name": "csb_toggle", + "namespace": "csb" + } + }, + "scrollable_selector_area_content/content_toggle": { + "file": "ui/csb_screen.json", + "type": "stack_panel", + "extend": { + "name": "content_toggle", + "namespace": "csb" + } + }, + "scrollable_selector_area_content/faq_toggle": { + "file": "ui/csb_screen.json", + "type": "stack_panel", + "extend": { + "name": "faq_toggle", + "namespace": "csb" + } + }, + "scrollable_selector_area_content/toggle_section_divider": { + "file": "ui/csb_screen.json", + "type": "stack_panel", + "extend": { + "name": "section_divider", + "namespace": "common" + } + }, + "scrollable_selector_area_content/buy_now_toggle": { + "file": "ui/csb_screen.json", + "type": "stack_panel", + "extend": { + "name": "buy_now_toggle", + "namespace": "csb" + } + }, + "scrollable_selector_area_content/xbl_btn_panel": { + "file": "ui/csb_screen.json", + "type": "panel", + "children": [ + "xbl_btn" + ] + }, + "scrollable_selector_area_content/xbl_btn_panel/xbl_btn": { + "file": "ui/csb_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "section_toggle_base": { + "file": "ui/csb_screen.json", + "type": "panel", + "extend": { + "name": "light_text_toggle_collection", + "namespace": "common_toggles" + } + }, + "tab_button_text": { + "file": "ui/csb_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "toggle_base": { + "file": "ui/csb_screen.json", + "type": "stack_panel", + "children": [ + "toggle", + "padding" + ] + }, + "toggle_base/toggle": { + "file": "ui/csb_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "csb" + } + }, + "toggle_base/padding": { + "file": "ui/csb_screen.json", + "type": "panel" + }, + "csb_toggle": { + "file": "ui/csb_screen.json", + "type": "stack_panel", + "extend": { + "name": "toggle_base", + "namespace": "csb" + } + }, + "content_toggle": { + "file": "ui/csb_screen.json", + "type": "stack_panel", + "extend": { + "name": "toggle_base", + "namespace": "csb" + } + }, + "faq_toggle": { + "file": "ui/csb_screen.json", + "type": "stack_panel", + "extend": { + "name": "toggle_base", + "namespace": "csb" + } + }, + "buy_now_toggle": { + "file": "ui/csb_screen.json", + "type": "stack_panel", + "extend": { + "name": "toggle_base", + "namespace": "csb" + } + }, + "left_right_pane_divider": { + "file": "ui/csb_screen.json", + "type": "image" + }, + "content_area": { + "file": "ui/csb_screen.json", + "type": "panel", + "children": [ + "control" + ] + }, + "content_area/control": { + "file": "ui/csb_screen.json", + "type": "stack_panel", + "children": [ + "scrolling_panel_csb" + ] + }, + "content_area/control/scrolling_panel_csb": { + "file": "ui/csb_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "section_content_panels": { + "file": "ui/csb_screen.json", + "type": "stack_panel" + }, + "vertical_padding_4px": { + "file": "ui/csb_screen.json", + "type": "panel" + }, + "section_base": { + "file": "ui/csb_screen.json", + "type": "stack_panel" + }, + "buy_now_content_section": { + "file": "ui/csb_screen.json", + "type": "stack_panel", + "extend": { + "name": "section_base", + "namespace": "csb" + }, + "children": [ + "vertical_padding", + "content" + ] + }, + "buy_now_content_section/vertical_padding": { + "file": "ui/csb_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding_4px", + "namespace": "csb" + } + }, + "buy_now_content_section/content": { + "file": "ui/csb_screen.json", + "type": "stack_panel", + "extend": { + "name": "buy_now_content", + "namespace": "csb_buy" + } + }, + "markdown_background_animated": { + "file": "ui/csb_screen.json", + "type": "panel", + "children": [ + "csb_chevron" + ] + }, + "markdown_background_animated/csb_chevron": { + "file": "ui/csb_screen.json", + "type": "image" + }, + "markdown_background": { + "file": "ui/csb_screen.json", + "type": "stack_panel", + "children": [ + "banner_panel", + "triangle_panel" + ] + }, + "markdown_background/banner_panel": { + "file": "ui/csb_screen.json", + "type": "panel", + "children": [ + "banner" + ] + }, + "markdown_background/banner_panel/banner": { + "file": "ui/csb_screen.json", + "type": "image", + "extend": { + "name": "markdown_banner", + "namespace": "common_store" + }, + "children": [ + "banner_stack_panel" + ] + }, + "markdown_background/banner_panel/banner/banner_stack_panel": { + "file": "ui/csb_screen.json", + "type": "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": { + "file": "ui/csb_screen.json", + "type": "unknown" + }, + "markdown_background/triangle_panel": { + "file": "ui/csb_screen.json", + "type": "panel", + "children": [ + "triangle" + ] + }, + "markdown_background/triangle_panel/triangle": { + "file": "ui/csb_screen.json", + "type": "image", + "extend": { + "name": "markdown_triangle", + "namespace": "common_store" + } + }, + "empty_label": { + "file": "ui/csb_screen.json", + "type": "panel" + }, + "full_width_section_divider": { + "file": "ui/csb_screen.json", + "type": "stack_panel", + "extend": { + "name": "section_divider", + "namespace": "common" + } + } + }, + "csb_content": { + "csb_content_section": { + "file": "ui/csb_sections/content_section.json", + "type": "stack_panel", + "extend": { + "name": "section_base", + "namespace": "csb" + }, + "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": { + "file": "ui/csb_sections/content_section.json", + "type": "panel", + "extend": { + "name": "vertical_padding_4px", + "namespace": "csb" + } + }, + "csb_content_section/popular_packs_label_panel": { + "file": "ui/csb_sections/content_section.json", + "type": "panel", + "children": [ + "label_with_gradient", + "tts_border" + ] + }, + "csb_content_section/popular_packs_label_panel/label_with_gradient": { + "file": "ui/csb_sections/content_section.json", + "type": "panel", + "extend": { + "name": "gradient_content_panel", + "namespace": "csb" + } + }, + "csb_content_section/popular_packs_label_panel/tts_border": { + "file": "ui/csb_sections/content_section.json", + "type": "button", + "extend": { + "name": "tts_activate_sibling", + "namespace": "common" + } + }, + "csb_content_section/content_section_vertical_padding_2": { + "file": "ui/csb_sections/content_section.json", + "type": "panel", + "extend": { + "name": "vertical_padding_4px", + "namespace": "csb" + } + }, + "csb_content_section/content_pack_types": { + "file": "ui/csb_sections/content_section.json", + "type": "stack_panel", + "extend": { + "name": "content_pack_types_section", + "namespace": "csb_content" + } + }, + "csb_content_section/content_packs_included": { + "file": "ui/csb_sections/content_section.json", + "type": "stack_panel", + "extend": { + "name": "content_packs_included_section", + "namespace": "csb_content" + } + }, + "csb_content_section/content_section_vertical_padding_3": { + "file": "ui/csb_sections/content_section.json", + "type": "panel", + "extend": { + "name": "vertical_padding_4px", + "namespace": "csb" + } + }, + "content_pack_types_section": { + "file": "ui/csb_sections/content_section.json", + "type": "stack_panel", + "children": [ + "pack_types", + "padding" + ] + }, + "content_pack_types_section/pack_types": { + "file": "ui/csb_sections/content_section.json", + "type": "stack_panel", + "extend": { + "name": "pack_types", + "namespace": "csb_content" + } + }, + "content_pack_types_section/padding": { + "file": "ui/csb_sections/content_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "content_packs_included_section": { + "file": "ui/csb_sections/content_section.json", + "type": "stack_panel", + "children": [ + "popular_packs", + "section_divider" + ] + }, + "content_packs_included_section/popular_packs": { + "file": "ui/csb_sections/content_section.json", + "type": "stack_panel", + "extend": { + "name": "popular_packs", + "namespace": "csb_content" + } + }, + "content_packs_included_section/section_divider": { + "file": "ui/csb_sections/content_section.json", + "type": "stack_panel", + "extend": { + "name": "full_width_section_divider", + "namespace": "csb" + } + }, + "pack_types": { + "file": "ui/csb_sections/content_section.json", + "type": "stack_panel", + "children": [ + "padding_01", + "pack_types_1", + "padding_02", + "pack_types_2", + "padding_03" + ] + }, + "pack_types/padding_01": { + "file": "ui/csb_sections/content_section.json", + "type": "panel" + }, + "pack_types/pack_types_1": { + "file": "ui/csb_sections/content_section.json", + "type": "stack_panel", + "extend": { + "name": "pack_types_1", + "namespace": "csb_content" + } + }, + "pack_types/padding_02": { + "file": "ui/csb_sections/content_section.json", + "type": "panel" + }, + "pack_types/pack_types_2": { + "file": "ui/csb_sections/content_section.json", + "type": "stack_panel", + "extend": { + "name": "pack_types_2", + "namespace": "csb_content" + } + }, + "pack_types/padding_03": { + "file": "ui/csb_sections/content_section.json", + "type": "panel" + }, + "pack_types_1": { + "file": "ui/csb_sections/content_section.json", + "type": "stack_panel", + "children": [ + "worlds", + "padding_01", + "textures", + "padding_02", + "persona" + ] + }, + "pack_types_1/worlds": { + "file": "ui/csb_sections/content_section.json", + "type": "stack_panel", + "extend": { + "name": "pack_type_description", + "namespace": "csb_content" + } + }, + "pack_types_1/padding_01": { + "file": "ui/csb_sections/content_section.json", + "type": "panel" + }, + "pack_types_1/textures": { + "file": "ui/csb_sections/content_section.json", + "type": "stack_panel", + "extend": { + "name": "pack_type_description", + "namespace": "csb_content" + } + }, + "pack_types_1/padding_02": { + "file": "ui/csb_sections/content_section.json", + "type": "panel" + }, + "pack_types_1/persona": { + "file": "ui/csb_sections/content_section.json", + "type": "stack_panel", + "extend": { + "name": "pack_type_description", + "namespace": "csb_content" + } + }, + "pack_types_2": { + "file": "ui/csb_sections/content_section.json", + "type": "stack_panel", + "children": [ + "padding_1", + "skins", + "padding_2", + "mashups", + "padding_3" + ] + }, + "pack_types_2/padding_1": { + "file": "ui/csb_sections/content_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "pack_types_2/skins": { + "file": "ui/csb_sections/content_section.json", + "type": "stack_panel", + "extend": { + "name": "pack_type_description", + "namespace": "csb_content" + } + }, + "pack_types_2/padding_2": { + "file": "ui/csb_sections/content_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "pack_types_2/mashups": { + "file": "ui/csb_sections/content_section.json", + "type": "stack_panel", + "extend": { + "name": "pack_type_description", + "namespace": "csb_content" + } + }, + "pack_types_2/padding_3": { + "file": "ui/csb_sections/content_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "pack_type_description": { + "file": "ui/csb_sections/content_section.json", + "type": "stack_panel", + "children": [ + "image_nesting_panel", + "padding_0", + "description_nesting_panel", + "padding_1" + ] + }, + "pack_type_description/image_nesting_panel": { + "file": "ui/csb_sections/content_section.json", + "type": "panel", + "children": [ + "texture" + ] + }, + "pack_type_description/image_nesting_panel/texture": { + "file": "ui/csb_sections/content_section.json", + "type": "unknown" + }, + "pack_type_description/padding_0": { + "file": "ui/csb_sections/content_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "pack_type_description/description_nesting_panel": { + "file": "ui/csb_sections/content_section.json", + "type": "panel", + "children": [ + "description_label", + "tts_border" + ] + }, + "pack_type_description/description_nesting_panel/description_label": { + "file": "ui/csb_sections/content_section.json", + "type": "label" + }, + "pack_type_description/description_nesting_panel/tts_border": { + "file": "ui/csb_sections/content_section.json", + "type": "button", + "extend": { + "name": "tts_activate_sibling", + "namespace": "common" + } + }, + "pack_type_description/padding_1": { + "file": "ui/csb_sections/content_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "popular_packs": { + "file": "ui/csb_sections/content_section.json", + "type": "stack_panel", + "children": [ + "padding_0", + "pack_grid", + "view_all_packs_panel", + "padding_1" + ] + }, + "popular_packs/padding_0": { + "file": "ui/csb_sections/content_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "popular_packs/pack_grid": { + "file": "ui/csb_sections/content_section.json", + "type": "stack_panel", + "extend": { + "name": "packs_collection", + "namespace": "csb_content" + } + }, + "popular_packs/view_all_packs_panel": { + "file": "ui/csb_sections/content_section.json", + "type": "stack_panel", + "children": [ + "view_all_packs_button", + "padding", + "view_character_creator_items" + ] + }, + "popular_packs/view_all_packs_panel/view_all_packs_button": { + "file": "ui/csb_sections/content_section.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "popular_packs/view_all_packs_panel/padding": { + "file": "ui/csb_sections/content_section.json", + "type": "panel" + }, + "popular_packs/view_all_packs_panel/view_character_creator_items": { + "file": "ui/csb_sections/content_section.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "popular_packs/padding_1": { + "file": "ui/csb_sections/content_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "popular_packs_label": { + "file": "ui/csb_sections/content_section.json", + "type": "label" + }, + "packs_collection": { + "file": "ui/csb_sections/content_section.json", + "type": "stack_panel", + "children": [ + "row_1", + "padding_1", + "row_2", + "padding_2" + ] + }, + "packs_collection/row_1": { + "file": "ui/csb_sections/content_section.json", + "type": "stack_panel", + "children": [ + "pack_image_grid_item_0", + "padding", + "pack_image_grid_item_1" + ] + }, + "packs_collection/row_1/pack_image_grid_item_0": { + "file": "ui/csb_sections/content_section.json", + "type": "panel", + "extend": { + "name": "pack_image_grid_item", + "namespace": "csb_content" + } + }, + "packs_collection/row_1/padding": { + "file": "ui/csb_sections/content_section.json", + "type": "panel" + }, + "packs_collection/row_1/pack_image_grid_item_1": { + "file": "ui/csb_sections/content_section.json", + "type": "panel", + "extend": { + "name": "pack_image_grid_item", + "namespace": "csb_content" + } + }, + "packs_collection/padding_1": { + "file": "ui/csb_sections/content_section.json", + "type": "panel" + }, + "packs_collection/row_2": { + "file": "ui/csb_sections/content_section.json", + "type": "stack_panel", + "children": [ + "pack_image_grid_item_0", + "padding", + "pack_image_grid_item_1" + ] + }, + "packs_collection/row_2/pack_image_grid_item_0": { + "file": "ui/csb_sections/content_section.json", + "type": "panel", + "extend": { + "name": "pack_image_grid_item", + "namespace": "csb_content" + } + }, + "packs_collection/row_2/padding": { + "file": "ui/csb_sections/content_section.json", + "type": "panel" + }, + "packs_collection/row_2/pack_image_grid_item_1": { + "file": "ui/csb_sections/content_section.json", + "type": "panel", + "extend": { + "name": "pack_image_grid_item", + "namespace": "csb_content" + } + }, + "packs_collection/padding_2": { + "file": "ui/csb_sections/content_section.json", + "type": "panel" + }, + "pack_image_grid_item": { + "file": "ui/csb_sections/content_section.json", + "type": "panel", + "children": [ + "bg", + "offer_button" + ] + }, + "pack_image_grid_item/bg": { + "file": "ui/csb_sections/content_section.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "common_store" + }, + "children": [ + "featured_key_art", + "progress_loading" + ] + }, + "pack_image_grid_item/bg/featured_key_art": { + "file": "ui/csb_sections/content_section.json", + "type": "image" + }, + "pack_image_grid_item/bg/progress_loading": { + "file": "ui/csb_sections/content_section.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "pack_image_grid_item/offer_button": { + "file": "ui/csb_sections/content_section.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "pack_image_grid_item/offer_button/default": { + "file": "ui/csb_sections/content_section.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "pack_image_grid_item/offer_button/hover": { + "file": "ui/csb_sections/content_section.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "pack_image_grid_item/offer_button/pressed": { + "file": "ui/csb_sections/content_section.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + } + }, + "csb_banner": { + "csb_banner": { + "file": "ui/csb_sections/csb_banner.json", + "type": "panel", + "children": [ + "static_button", + "animated_button" + ] + }, + "csb_banner/static_button": { + "file": "ui/csb_sections/csb_banner.json", + "type": "button", + "extend": { + "name": "promo_banner_csb_button", + "namespace": "csb_banner" + } + }, + "csb_banner/animated_button": { + "file": "ui/csb_sections/csb_banner.json", + "type": "button", + "extend": { + "name": "animated_promo_banner_csb_button", + "namespace": "csb_banner" + } + }, + "csb_banner_slim": { + "file": "ui/csb_sections/csb_banner.json", + "type": "panel", + "children": [ + "banner_button" + ] + }, + "csb_banner_slim/banner_button": { + "file": "ui/csb_sections/csb_banner.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "csb_banner_portal": { + "file": "ui/csb_sections/csb_banner.json", + "type": "panel", + "children": [ + "banner_button" + ] + }, + "csb_banner_portal/banner_button": { + "file": "ui/csb_sections/csb_banner.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "promo_banner_csb_button": { + "file": "ui/csb_sections/csb_banner.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover" + ] + }, + "promo_banner_csb_button/default": { + "file": "ui/csb_sections/csb_banner.json", + "type": "unknown" + }, + "promo_banner_csb_button/hover": { + "file": "ui/csb_sections/csb_banner.json", + "type": "unknown" + }, + "csb_banner_slim_content": { + "file": "ui/csb_sections/csb_banner.json", + "type": "panel", + "children": [ + "banner_content" + ] + }, + "csb_banner_slim_content/banner_content": { + "file": "ui/csb_sections/csb_banner.json", + "type": "panel", + "extend": { + "name": "csb_banner_new_content", + "namespace": "csb_banner" + } + }, + "csb_banner_portal_content": { + "file": "ui/csb_sections/csb_banner.json", + "type": "panel", + "children": [ + "banner_content" + ] + }, + "csb_banner_portal_content/banner_content": { + "file": "ui/csb_sections/csb_banner.json", + "type": "panel", + "extend": { + "name": "csb_banner_new_content", + "namespace": "csb_banner" + } + }, + "slim_logo_panel": { + "file": "ui/csb_sections/csb_banner.json", + "type": "panel", + "children": [ + "mpp_logo" + ] + }, + "slim_logo_panel/mpp_logo": { + "file": "ui/csb_sections/csb_banner.json", + "type": "image" + }, + "portal_logo_panel": { + "file": "ui/csb_sections/csb_banner.json", + "type": "panel", + "children": [ + "mpp_logo" + ] + }, + "portal_logo_panel/mpp_logo": { + "file": "ui/csb_sections/csb_banner.json", + "type": "image" + }, + "csb_banner_new_content": { + "file": "ui/csb_sections/csb_banner.json", + "type": "panel", + "children": [ + "text" + ] + }, + "csb_banner_new_content/text": { + "file": "ui/csb_sections/csb_banner.json", + "type": "stack_panel", + "children": [ + "logo_panel", + "offer_panel", + "pixel_art" + ] + }, + "csb_banner_new_content/text/logo_panel": { + "file": "ui/csb_sections/csb_banner.json", + "type": "unknown" + }, + "csb_banner_new_content/text/offer_panel": { + "file": "ui/csb_sections/csb_banner.json", + "type": "panel", + "children": [ + "upsell_text" + ] + }, + "csb_banner_new_content/text/offer_panel/upsell_text": { + "file": "ui/csb_sections/csb_banner.json", + "type": "stack_panel", + "extend": { + "name": "sdl_upsell_text_component_factory", + "namespace": "csb_banner" + } + }, + "csb_banner_new_content/text/pixel_art": { + "file": "ui/csb_sections/csb_banner.json", + "type": "stack_panel", + "extend": { + "name": "image_component_factory", + "namespace": "csb_banner" + } + }, + "sdl_upsell_text_component_factory": { + "file": "ui/csb_sections/csb_banner.json", + "type": "stack_panel", + "extend": { + "name": "sdl_label_factory", + "namespace": "sdl_label" + } + }, + "csb_banner_content": { + "file": "ui/csb_sections/csb_banner.json", + "type": "panel", + "children": [ + "banner", + "text" + ] + }, + "csb_banner_content/banner": { + "file": "ui/csb_sections/csb_banner.json", + "type": "image" + }, + "csb_banner_content/text": { + "file": "ui/csb_sections/csb_banner.json", + "type": "stack_panel", + "children": [ + "logo_panel", + "offer_panel", + "learn_more_panel" + ] + }, + "csb_banner_content/text/logo_panel": { + "file": "ui/csb_sections/csb_banner.json", + "type": "panel", + "children": [ + "logo" + ] + }, + "csb_banner_content/text/logo_panel/logo": { + "file": "ui/csb_sections/csb_banner.json", + "type": "stack_panel", + "extend": { + "name": "csb_header", + "namespace": "common_csb" + } + }, + "csb_banner_content/text/offer_panel": { + "file": "ui/csb_sections/csb_banner.json", + "type": "panel", + "children": [ + "offer" + ] + }, + "csb_banner_content/text/offer_panel/offer": { + "file": "ui/csb_sections/csb_banner.json", + "type": "label" + }, + "csb_banner_content/text/learn_more_panel": { + "file": "ui/csb_sections/csb_banner.json", + "type": "panel", + "children": [ + "learn_more" + ] + }, + "csb_banner_content/text/learn_more_panel/learn_more": { + "file": "ui/csb_sections/csb_banner.json", + "type": "stack_panel", + "children": [ + "more", + "more_chevron" + ] + }, + "csb_banner_content/text/learn_more_panel/learn_more/more": { + "file": "ui/csb_sections/csb_banner.json", + "type": "label" + }, + "csb_banner_content/text/learn_more_panel/learn_more/more_chevron": { + "file": "ui/csb_sections/csb_banner.json", + "type": "label" + }, + "animated_promo_banner_csb_button": { + "file": "ui/csb_sections/csb_banner.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover" + ] + }, + "animated_promo_banner_csb_button/default": { + "file": "ui/csb_sections/csb_banner.json", + "type": "panel", + "extend": { + "name": "animated_csb_banner_content", + "namespace": "csb_banner" + } + }, + "animated_promo_banner_csb_button/hover": { + "file": "ui/csb_sections/csb_banner.json", + "type": "panel", + "extend": { + "name": "animated_csb_banner_content", + "namespace": "csb_banner" + } + }, + "animated_csb_banner_content": { + "file": "ui/csb_sections/csb_banner.json", + "type": "panel", + "children": [ + "banner", + "text" + ] + }, + "animated_csb_banner_content/banner": { + "file": "ui/csb_sections/csb_banner.json", + "type": "image" + }, + "animated_csb_banner_content/text": { + "file": "ui/csb_sections/csb_banner.json", + "type": "stack_panel", + "children": [ + "logo_panel", + "offer_panel", + "learn_more_panel" + ] + }, + "animated_csb_banner_content/text/logo_panel": { + "file": "ui/csb_sections/csb_banner.json", + "type": "panel", + "children": [ + "logo" + ] + }, + "animated_csb_banner_content/text/logo_panel/logo": { + "file": "ui/csb_sections/csb_banner.json", + "type": "stack_panel", + "extend": { + "name": "csb_header", + "namespace": "common_csb" + } + }, + "animated_csb_banner_content/text/offer_panel": { + "file": "ui/csb_sections/csb_banner.json", + "type": "panel", + "children": [ + "offer" + ] + }, + "animated_csb_banner_content/text/offer_panel/offer": { + "file": "ui/csb_sections/csb_banner.json", + "type": "label" + }, + "animated_csb_banner_content/text/learn_more_panel": { + "file": "ui/csb_sections/csb_banner.json", + "type": "panel", + "children": [ + "learn_more" + ] + }, + "animated_csb_banner_content/text/learn_more_panel/learn_more": { + "file": "ui/csb_sections/csb_banner.json", + "type": "stack_panel", + "children": [ + "more", + "more_chevron" + ] + }, + "animated_csb_banner_content/text/learn_more_panel/learn_more/more": { + "file": "ui/csb_sections/csb_banner.json", + "type": "label" + }, + "animated_csb_banner_content/text/learn_more_panel/learn_more/more_chevron": { + "file": "ui/csb_sections/csb_banner.json", + "type": "label" + }, + "still_pixel_art_panel": { + "file": "ui/csb_sections/csb_banner.json", + "type": "panel", + "children": [ + "banner" + ] + }, + "still_pixel_art_panel/banner": { + "file": "ui/csb_sections/csb_banner.json", + "type": "image" + }, + "animated_pixel_art_panel": { + "file": "ui/csb_sections/csb_banner.json", + "type": "panel", + "children": [ + "mygif" + ] + }, + "animated_pixel_art_panel/mygif": { + "file": "ui/csb_sections/csb_banner.json", + "type": "custom" + }, + "image_component_factory": { + "file": "ui/csb_sections/csb_banner.json", + "type": "stack_panel", + "extend": { + "name": "image_asset_factory", + "namespace": "csb_banner" + } + }, + "image_asset_factory": { + "file": "ui/csb_sections/csb_banner.json", + "type": "stack_panel" + } + }, + "csb_buy": { + "buy_now_content": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "stack_panel", + "children": [ + "description_stack", + "terms_and_conditions", + "padding_2", + "button_panel", + "padding_3", + "terms" + ] + }, + "buy_now_content/description_stack": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "stack_panel", + "extend": { + "name": "description_stack", + "namespace": "csb_buy" + } + }, + "buy_now_content/terms_and_conditions": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel", + "extend": { + "name": "terms_and_conditions", + "namespace": "csb_buy" + } + }, + "buy_now_content/padding_2": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel" + }, + "buy_now_content/button_panel": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel", + "children": [ + "buy_button", + "icon_panel" + ] + }, + "buy_now_content/button_panel/buy_button": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel", + "extend": { + "name": "buy_button_panel", + "namespace": "csb_buy" + } + }, + "buy_now_content/button_panel/icon_panel": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel", + "extend": { + "name": "tool_tip_icon_panel", + "namespace": "csb_buy" + } + }, + "buy_now_content/padding_3": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel" + }, + "buy_now_content/terms": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "stack_panel", + "extend": { + "name": "content_text_section", + "namespace": "csb_buy" + } + }, + "content_text_section": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "stack_panel", + "children": [ + "text_description", + "padding" + ] + }, + "content_text_section/text_description": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel", + "extend": { + "name": "content_description", + "namespace": "csb_buy" + } + }, + "content_text_section/padding": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel" + }, + "content_description": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel", + "children": [ + "content_description_label", + "tts_hover" + ] + }, + "content_description/content_description_label": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "label" + }, + "content_description/tts_hover": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "button", + "extend": { + "name": "tts_activate_sibling", + "namespace": "common" + } + }, + "trial_image_and_description": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "stack_panel", + "children": [ + "image_border", + "padding", + "description_text" + ] + }, + "trial_image_and_description/image_border": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "image" + }, + "trial_image_and_description/padding": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel" + }, + "trial_image_and_description/description_text": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel", + "children": [ + "descriptions_label", + "tts_hover" + ] + }, + "trial_image_and_description/description_text/descriptions_label": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "label" + }, + "trial_image_and_description/description_text/tts_hover": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "button", + "extend": { + "name": "tts_activate_sibling", + "namespace": "common" + } + }, + "title_text": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel", + "children": [ + "inner_text", + "tts_hover" + ] + }, + "title_text/inner_text": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "label" + }, + "title_text/tts_hover": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "button", + "extend": { + "name": "tts_activate_sibling", + "namespace": "common" + } + }, + "description_stack": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "stack_panel", + "children": [ + "title_with_gradient", + "padding", + "image_and_description" + ] + }, + "description_stack/title_with_gradient": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel", + "extend": { + "name": "gradient_content_panel", + "namespace": "csb" + } + }, + "description_stack/padding": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel" + }, + "description_stack/image_and_description": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "stack_panel", + "extend": { + "name": "trial_image_and_description", + "namespace": "csb_buy" + } + }, + "terms_and_conditions": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel", + "children": [ + "terms_panel" + ] + }, + "terms_and_conditions/terms_panel": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel", + "extend": { + "name": "terms_and_conditions_panel", + "namespace": "csb_buy" + } + }, + "terms_and_conditions_panel": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel", + "children": [ + "name_label", + "terms_string_panel" + ] + }, + "terms_and_conditions_panel/name_label": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "terms_and_conditions_panel/terms_string_panel": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel", + "children": [ + "banner_fill", + "buttons_stack_panel" + ] + }, + "terms_and_conditions_panel/terms_string_panel/banner_fill": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "image" + }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "stack_panel", + "children": [ + "agree_panel", + "view_terms_button", + "privacy_policy_button" + ] + }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel", + "children": [ + "checkbox_control" + ] + }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "toggle", + "extend": { + "name": "checkbox_with_highlight_and_label", + "namespace": "settings_common" + } + }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "button", + "extend": { + "name": "view_terms_button", + "namespace": "csb_buy" + } + }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "button", + "extend": { + "name": "privacy_policy_button", + "namespace": "csb_buy" + } + }, + "button_text": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "mcten_text_centering_panel": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel", + "children": [ + "button_text" + ] + }, + "mcten_text_centering_panel/button_text": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "label", + "extend": { + "name": "button_text", + "namespace": "csb_buy" + } + }, + "view_terms_button": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "privacy_policy_button": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "buy_button_panel": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel", + "children": [ + "buy_button" + ] + }, + "buy_button_panel/buy_button": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "tool_tip_icon_panel": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel", + "children": [ + "issue_icon" + ] + }, + "tool_tip_icon_panel/issue_icon": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "info_icon", + "default", + "hover", + "pressed" + ] + }, + "tool_tip_icon_panel/issue_icon/info_icon": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "image" + }, + "tool_tip_icon_panel/issue_icon/default": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "tool_tip_icon_panel/issue_icon/hover": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "image", + "extend": { + "name": "dynamic_tooltip_popup_with_image_and_text", + "namespace": "common" + } + }, + "tool_tip_icon_panel/issue_icon/pressed": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "image", + "extend": { + "name": "dynamic_tooltip_popup_with_image_and_text", + "namespace": "common" + } + }, + "buy_button_content": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "stack_panel", + "children": [ + "button_chevron_panel", + "button_text_centering_panel" + ] + }, + "buy_button_content/button_chevron_panel": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel", + "children": [ + "buy_button_chevron" + ] + }, + "buy_button_content/button_chevron_panel/buy_button_chevron": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel", + "extend": { + "name": "markdown_background_animated", + "namespace": "csb" + } + }, + "buy_button_content/button_text_centering_panel": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel", + "extend": { + "name": "mcten_text_centering_panel", + "namespace": "csb_buy" + } + }, + "info_icon": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "panel", + "children": [ + "panel_icon" + ] + }, + "info_icon/panel_icon": { + "file": "ui/csb_sections/csb_buy_now_screen.json", + "type": "image" + } + }, + "common_csb": { + "csb_expiration_banner": { + "file": "ui/csb_sections/csb_common.json", + "type": "panel", + "children": [ + "background", + "icon", + "text" + ] + }, + "csb_expiration_banner/background": { + "file": "ui/csb_sections/csb_common.json", + "type": "image" + }, + "csb_expiration_banner/icon": { + "file": "ui/csb_sections/csb_common.json", + "type": "image" + }, + "csb_expiration_banner/text": { + "file": "ui/csb_sections/csb_common.json", + "type": "label" + }, + "csb_icon_large": { + "file": "ui/csb_sections/csb_common.json", + "type": "image" + }, + "csb_header": { + "file": "ui/csb_sections/csb_common.json", + "type": "stack_panel", + "children": [ + "label_a_text_csb", + "label_space_text_csb", + "label_b_text_pass" + ] + }, + "csb_header/label_a_text_csb": { + "file": "ui/csb_sections/csb_common.json", + "type": "label" + }, + "csb_header/label_space_text_csb": { + "file": "ui/csb_sections/csb_common.json", + "type": "label" + }, + "csb_header/label_b_text_pass": { + "file": "ui/csb_sections/csb_common.json", + "type": "label" + }, + "csb_header_two_lines": { + "file": "ui/csb_sections/csb_common.json", + "type": "stack_panel", + "children": [ + "top_header", + "panel_centre_second_line" + ] + }, + "csb_header_two_lines/top_header": { + "file": "ui/csb_sections/csb_common.json", + "type": "label" + }, + "csb_header_two_lines/panel_centre_second_line": { + "file": "ui/csb_sections/csb_common.json", + "type": "panel", + "children": [ + "sub_header" + ] + }, + "csb_header_two_lines/panel_centre_second_line/sub_header": { + "file": "ui/csb_sections/csb_common.json", + "type": "label" + }, + "csb_gold_button": { + "file": "ui/csb_sections/csb_common.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "csb_gold_text_button": { + "file": "ui/csb_sections/csb_common.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + } + }, + "csb_purchase_amazondevicewarning": { + "csb_purchase_amazondevicewarning_screen": { + "file": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "screen_content": { + "file": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "type": "panel", + "children": [ + "main_panel" + ] + }, + "screen_content/main_panel": { + "file": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_one_button", + "namespace": "common_dialogs" + } + }, + "main_panel": { + "file": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "type": "stack_panel", + "children": [ + "text_panel_1", + "art_panel", + "padding", + "text_panel_2" + ] + }, + "main_panel/text_panel_1": { + "file": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "type": "panel", + "children": [ + "text" + ] + }, + "main_panel/text_panel_1/text": { + "file": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "type": "label" + }, + "main_panel/art_panel": { + "file": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "type": "panel", + "children": [ + "art" + ] + }, + "main_panel/art_panel/art": { + "file": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "type": "image" + }, + "main_panel/padding": { + "file": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "type": "panel" + }, + "main_panel/text_panel_2": { + "file": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "type": "panel", + "children": [ + "text" + ] + }, + "main_panel/text_panel_2/text": { + "file": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "type": "label" + }, + "back_button": { + "file": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + } + }, + "csb_purchase_warning": { + "csb_purchase_warning_screen": { + "file": "ui/csb_sections/csb_purchase_warning_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "purchase_warning_screen_content": { + "file": "ui/csb_sections/csb_purchase_warning_screen.json", + "type": "panel", + "children": [ + "main_panel" + ] + }, + "purchase_warning_screen_content/main_panel": { + "file": "ui/csb_sections/csb_purchase_warning_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_one_button", + "namespace": "common_dialogs" + } + }, + "warning_modal_main_panel": { + "file": "ui/csb_sections/csb_purchase_warning_screen.json", + "type": "stack_panel", + "children": [ + "text_panel_1", + "padding_1", + "art_panel", + "padding_2", + "text_panel_2" + ] + }, + "warning_modal_main_panel/text_panel_1": { + "file": "ui/csb_sections/csb_purchase_warning_screen.json", + "type": "panel", + "children": [ + "text" + ] + }, + "warning_modal_main_panel/text_panel_1/text": { + "file": "ui/csb_sections/csb_purchase_warning_screen.json", + "type": "label" + }, + "warning_modal_main_panel/padding_1": { + "file": "ui/csb_sections/csb_purchase_warning_screen.json", + "type": "panel" + }, + "warning_modal_main_panel/art_panel": { + "file": "ui/csb_sections/csb_purchase_warning_screen.json", + "type": "panel", + "children": [ + "art" + ] + }, + "warning_modal_main_panel/art_panel/art": { + "file": "ui/csb_sections/csb_purchase_warning_screen.json", + "type": "image" + }, + "warning_modal_main_panel/padding_2": { + "file": "ui/csb_sections/csb_purchase_warning_screen.json", + "type": "panel" + }, + "warning_modal_main_panel/text_panel_2": { + "file": "ui/csb_sections/csb_purchase_warning_screen.json", + "type": "panel", + "children": [ + "text" + ] + }, + "warning_modal_main_panel/text_panel_2/text": { + "file": "ui/csb_sections/csb_purchase_warning_screen.json", + "type": "label" + }, + "warning_modal_back_button": { + "file": "ui/csb_sections/csb_purchase_warning_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + } + }, + "csb_subscription_panel": { + "csb_container": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "panel", + "children": [ + "fill", + "border", + "panel_contents" + ] + }, + "csb_container/fill": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "image" + }, + "csb_container/border": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "image" + }, + "csb_container/panel_contents": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "stack_panel", + "children": [ + "content_container", + "button_panel_spacer", + "csb_buttons" + ] + }, + "csb_container/panel_contents/content_container": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "stack_panel", + "children": [ + "side_image_stack_left", + "padding_02", + "side_stack_right" + ] + }, + "csb_container/panel_contents/content_container/side_image_stack_left": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "panel", + "children": [ + "csb_image" + ] + }, + "csb_container/panel_contents/content_container/side_image_stack_left/csb_image": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "image" + }, + "csb_container/panel_contents/content_container/padding_02": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "panel" + }, + "csb_container/panel_contents/content_container/side_stack_right": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "stack_panel", + "children": [ + "interior_content_stack" + ] + }, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "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": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding_01": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "panel" + }, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_01_container": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "stack_panel", + "extend": { + "name": "csb_marketplace_benefit", + "namespace": "csb_subscription_panel" + } + }, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_02_container": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "stack_panel", + "extend": { + "name": "csb_marketplace_benefit", + "namespace": "csb_subscription_panel" + } + }, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_03_container": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "stack_panel", + "extend": { + "name": "csb_marketplace_benefit", + "namespace": "csb_subscription_panel" + } + }, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding02": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "panel" + }, + "csb_container/panel_contents/button_panel_spacer": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "panel" + }, + "csb_container/panel_contents/csb_buttons": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "stack_panel", + "children": [ + "button_panel_padding", + "padding_01", + "csb_info_button" + ] + }, + "csb_container/panel_contents/csb_buttons/button_panel_padding": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "panel" + }, + "csb_container/panel_contents/csb_buttons/padding_01": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "panel" + }, + "csb_container/panel_contents/csb_buttons/csb_info_button": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "csb_marketplace_benefit": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "stack_panel", + "children": [ + "bullet_holder_01", + "panel_details_ln1" + ] + }, + "csb_marketplace_benefit/bullet_holder_01": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "stack_panel", + "children": [ + "bullet_spacer", + "bullet_01" + ] + }, + "csb_marketplace_benefit/bullet_holder_01/bullet_spacer": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "panel" + }, + "csb_marketplace_benefit/bullet_holder_01/bullet_01": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "label" + }, + "csb_marketplace_benefit/panel_details_ln1": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "label" + }, + "csb_buy_container": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "panel", + "children": [ + "csb_buy_button" + ] + }, + "csb_buy_container/csb_buy_button": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "csb_buy_button_text": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "csb_cancel_button": { + "file": "ui/csb_sections/csb_subscription_panel.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + } + }, + "csb_upsell": { + "csb_upsell_screen": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "csb_upsell_compare_dialog": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel", + "children": [ + "csb_upsell_compare_main_screen" + ] + }, + "csb_upsell_compare_dialog/csb_upsell_compare_main_screen": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + }, + "csb_upsell_popup_content": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel", + "children": [ + "two_side_panels" + ] + }, + "csb_upsell_popup_content/two_side_panels": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "children": [ + "border_panel_left", + "middle_spacer", + "border_panel_right" + ] + }, + "csb_upsell_popup_content/two_side_panels/border_panel_left": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel", + "children": [ + "border", + "background_panel", + "left_side_panel", + "button_centering" + ] + }, + "csb_upsell_popup_content/two_side_panels/border_panel_left/border": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "image" + }, + "csb_upsell_popup_content/two_side_panels/border_panel_left/background_panel": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "image" + }, + "csb_upsell_popup_content/two_side_panels/border_panel_left/left_side_panel": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "extend": { + "name": "csb_upsell_left_side_panel", + "namespace": "csb_upsell" + } + }, + "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel", + "children": [ + "learn_more_left" + ] + }, + "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering/learn_more_left": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "button", + "extend": { + "name": "csb_gold_button", + "namespace": "common_csb" + } + }, + "csb_upsell_popup_content/two_side_panels/middle_spacer": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel" + }, + "csb_upsell_popup_content/two_side_panels/border_panel_right": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel", + "children": [ + "border", + "background_panel", + "right_side_panel", + "button_centering" + ] + }, + "csb_upsell_popup_content/two_side_panels/border_panel_right/border": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "image" + }, + "csb_upsell_popup_content/two_side_panels/border_panel_right/background_panel": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "image" + }, + "csb_upsell_popup_content/two_side_panels/border_panel_right/right_side_panel": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "extend": { + "name": "csb_upsell_right_side_panel", + "namespace": "csb_upsell" + } + }, + "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel", + "children": [ + "learn_more_right" + ] + }, + "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering/learn_more_right": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "csb_upsell_left_side_panel": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "children": [ + "upper_half", + "middle_spacer", + "bottom_half" + ] + }, + "csb_upsell_left_side_panel/upper_half": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "children": [ + "header_panel" + ] + }, + "csb_upsell_left_side_panel/upper_half/header_panel": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "children": [ + "blank_space", + "top_header", + "price_amount" + ] + }, + "csb_upsell_left_side_panel/upper_half/header_panel/blank_space": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel" + }, + "csb_upsell_left_side_panel/upper_half/header_panel/top_header": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "extend": { + "name": "csb_header_two_lines", + "namespace": "common_csb" + } + }, + "csb_upsell_left_side_panel/upper_half/header_panel/price_amount": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel", + "extend": { + "name": "csb_price", + "namespace": "csb_upsell" + } + }, + "csb_upsell_left_side_panel/middle_spacer": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel" + }, + "csb_upsell_left_side_panel/bottom_half": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "children": [ + "padding_b", + "bullet_one", + "padding_0", + "bullet_two", + "padding_1", + "bullet_three" + ] + }, + "csb_upsell_left_side_panel/bottom_half/padding_b": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel", + "extend": { + "name": "csb_big_padding", + "namespace": "csb_upsell" + } + }, + "csb_upsell_left_side_panel/bottom_half/bullet_one": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "extend": { + "name": "csb_bullet_point", + "namespace": "csb_upsell" + } + }, + "csb_upsell_left_side_panel/bottom_half/padding_0": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel", + "extend": { + "name": "csb_bullet_padding", + "namespace": "csb_upsell" + } + }, + "csb_upsell_left_side_panel/bottom_half/bullet_two": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "extend": { + "name": "csb_bullet_point", + "namespace": "csb_upsell" + } + }, + "csb_upsell_left_side_panel/bottom_half/padding_1": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel", + "extend": { + "name": "csb_bullet_padding", + "namespace": "csb_upsell" + } + }, + "csb_upsell_left_side_panel/bottom_half/bullet_three": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "extend": { + "name": "csb_bullet_point", + "namespace": "csb_upsell" + } + }, + "csb_upsell_right_side_panel": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "children": [ + "upper_half", + "middle_spacer", + "bottom_half" + ] + }, + "csb_upsell_right_side_panel/upper_half": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "children": [ + "marketing_banner", + "header_panel" + ] + }, + "csb_upsell_right_side_panel/upper_half/marketing_banner": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel", + "children": [ + "background_color", + "marketing_banner_label" + ] + }, + "csb_upsell_right_side_panel/upper_half/marketing_banner/background_color": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "image" + }, + "csb_upsell_right_side_panel/upper_half/marketing_banner/marketing_banner_label": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "label" + }, + "csb_upsell_right_side_panel/upper_half/header_panel": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "children": [ + "top_header", + "price_amount" + ] + }, + "csb_upsell_right_side_panel/upper_half/header_panel/top_header": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "label" + }, + "csb_upsell_right_side_panel/upper_half/header_panel/price_amount": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel", + "extend": { + "name": "csb_price", + "namespace": "csb_upsell" + } + }, + "csb_upsell_right_side_panel/middle_spacer": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel" + }, + "csb_upsell_right_side_panel/bottom_half": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "children": [ + "padding_b", + "bullet_one", + "padding_1", + "bullet_two", + "padding_0", + "bullet_three" + ] + }, + "csb_upsell_right_side_panel/bottom_half/padding_b": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel", + "extend": { + "name": "csb_big_padding", + "namespace": "csb_upsell" + } + }, + "csb_upsell_right_side_panel/bottom_half/bullet_one": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "extend": { + "name": "csb_bullet_point", + "namespace": "csb_upsell" + } + }, + "csb_upsell_right_side_panel/bottom_half/padding_1": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel", + "extend": { + "name": "csb_bullet_padding", + "namespace": "csb_upsell" + } + }, + "csb_upsell_right_side_panel/bottom_half/bullet_two": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "extend": { + "name": "csb_bullet_point", + "namespace": "csb_upsell" + } + }, + "csb_upsell_right_side_panel/bottom_half/padding_0": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel", + "extend": { + "name": "csb_bullet_padding", + "namespace": "csb_upsell" + } + }, + "csb_upsell_right_side_panel/bottom_half/bullet_three": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "extend": { + "name": "csb_bullet_split_point", + "namespace": "csb_upsell" + } + }, + "csb_big_padding": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel" + }, + "csb_bullet_padding": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel", + "children": [ + "desktop", + "pocket" + ] + }, + "csb_bullet_padding/desktop": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel", + "extend": { + "name": "csb_bullet_desktop_padding", + "namespace": "csb_upsell" + } + }, + "csb_bullet_padding/pocket": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel", + "extend": { + "name": "csb_bullet_pocket_padding", + "namespace": "csb_upsell" + } + }, + "csb_bullet_desktop_padding": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel" + }, + "csb_bullet_pocket_padding": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel" + }, + "csb_bullet": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "children": [ + "padding_icon_left", + "padding_icon_vertical", + "padding_icon_right" + ] + }, + "csb_bullet/padding_icon_left": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel" + }, + "csb_bullet/padding_icon_vertical": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "children": [ + "padding_vertical", + "label_icon" + ] + }, + "csb_bullet/padding_icon_vertical/padding_vertical": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel" + }, + "csb_bullet/padding_icon_vertical/label_icon": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "image" + }, + "csb_bullet/padding_icon_right": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel" + }, + "csb_bullet_point": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "children": [ + "bullet_icon", + "label_text" + ] + }, + "csb_bullet_point/bullet_icon": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "extend": { + "name": "csb_bullet", + "namespace": "csb_upsell" + } + }, + "csb_bullet_point/label_text": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "label" + }, + "csb_bullet_split_point": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "children": [ + "bullet_icon", + "label_text", + "space", + "csb_name" + ] + }, + "csb_bullet_split_point/bullet_icon": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "extend": { + "name": "csb_bullet", + "namespace": "csb_upsell" + } + }, + "csb_bullet_split_point/label_text": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "label" + }, + "csb_bullet_split_point/space": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel", + "children": [ + "label_text_csb" + ] + }, + "csb_bullet_split_point/space/label_text_csb": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "label" + }, + "csb_bullet_split_point/csb_name": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel", + "children": [ + "csb_name_string" + ] + }, + "csb_bullet_split_point/csb_name/csb_name_string": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "extend": { + "name": "csb_header", + "namespace": "common_csb" + } + }, + "csb_price": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel", + "children": [ + "price_details" + ] + }, + "csb_price/price_details": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "extend": { + "name": "csb_price_details", + "namespace": "csb_upsell" + } + }, + "csb_price_details": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "stack_panel", + "children": [ + "price_panel_1", + "price_panel_first_period" + ] + }, + "csb_price_details/price_panel_1": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel", + "children": [ + "amount" + ] + }, + "csb_price_details/price_panel_1/amount": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "label" + }, + "csb_price_details/price_panel_first_period": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel", + "children": [ + "second_line" + ] + }, + "csb_price_details/price_panel_first_period/second_line": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "label" + }, + "csb_learn_more": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "panel", + "children": [ + "learn_more" + ] + }, + "csb_learn_more/learn_more": { + "file": "ui/csb_sections/csb_upsell_dialog.json", + "type": "label" + } + }, + "csb_packs": { + "view_all_packs_screen": { + "file": "ui/csb_sections/csb_view_packs_screen.json", + "type": "screen", + "extend": { + "name": "store_base_screen", + "namespace": "common_store" + } + }, + "view_packs_screen_content": { + "file": "ui/csb_sections/csb_view_packs_screen.json", + "type": "panel", + "children": [ + "main_panel" + ] + }, + "view_packs_screen_content/main_panel": { + "file": "ui/csb_sections/csb_view_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "store_header_with_coins", + "namespace": "common_store" + } + }, + "csb_view_packs_screen_main_panel": { + "file": "ui/csb_sections/csb_view_packs_screen.json", + "type": "input_panel", + "extend": { + "name": "sidebar_view", + "namespace": "sidebar_navigation" + } + }, + "main_panel": { + "file": "ui/csb_sections/csb_view_packs_screen.json", + "type": "input_panel", + "children": [ + "offers", + "progress_loading" + ] + }, + "main_panel/offers": { + "file": "ui/csb_sections/csb_view_packs_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "main_panel/progress_loading": { + "file": "ui/csb_sections/csb_view_packs_screen.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "scrolling_content_stack": { + "file": "ui/csb_sections/csb_view_packs_screen.json", + "type": "stack_panel", + "children": [ + "padding_0", + "store_factory" + ] + }, + "scrolling_content_stack/padding_0": { + "file": "ui/csb_sections/csb_view_packs_screen.json", + "type": "panel" + }, + "scrolling_content_stack/store_factory": { + "file": "ui/csb_sections/csb_view_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "store_section_factory", + "namespace": "common_store" + } + } + }, + "csb_welcome": { + "csb_welcome_screen": { + "file": "ui/csb_sections/csb_welcome_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "welcome_screen_content": { + "file": "ui/csb_sections/csb_welcome_screen.json", + "type": "panel", + "children": [ + "main_panel" + ] + }, + "welcome_screen_content/main_panel": { + "file": "ui/csb_sections/csb_welcome_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_one_button", + "namespace": "common_dialogs" + } + }, + "welcome_modal_main_panel": { + "file": "ui/csb_sections/csb_welcome_screen.json", + "type": "stack_panel", + "children": [ + "art_panel", + "padding", + "text_panel" + ] + }, + "welcome_modal_main_panel/art_panel": { + "file": "ui/csb_sections/csb_welcome_screen.json", + "type": "panel", + "children": [ + "art" + ] + }, + "welcome_modal_main_panel/art_panel/art": { + "file": "ui/csb_sections/csb_welcome_screen.json", + "type": "image" + }, + "welcome_modal_main_panel/padding": { + "file": "ui/csb_sections/csb_welcome_screen.json", + "type": "panel" + }, + "welcome_modal_main_panel/text_panel": { + "file": "ui/csb_sections/csb_welcome_screen.json", + "type": "panel", + "children": [ + "text" + ] + }, + "welcome_modal_main_panel/text_panel/text": { + "file": "ui/csb_sections/csb_welcome_screen.json", + "type": "label" + }, + "welcome_modal_continue_button": { + "file": "ui/csb_sections/csb_welcome_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + } + }, + "csb_faq": { + "faq_bottom_button": { + "file": "ui/csb_sections/faq_section.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "faq_image_section": { + "file": "ui/csb_sections/faq_section.json", + "type": "panel", + "children": [ + "faq_image" + ] + }, + "faq_image_section/faq_image": { + "file": "ui/csb_sections/faq_section.json", + "type": "image" + }, + "faq_text_section_body": { + "file": "ui/csb_sections/faq_section.json", + "type": "stack_panel" + }, + "faq_text_question": { + "file": "ui/csb_sections/faq_section.json", + "type": "label" + }, + "faq_text_section": { + "file": "ui/csb_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "faq_text_section_body", + "namespace": "csb_faq" + }, + "children": [ + "faq_text_question", + "faq_text_answer" + ] + }, + "faq_text_section/faq_text_question": { + "file": "ui/csb_sections/faq_section.json", + "type": "label", + "extend": { + "name": "faq_text_question", + "namespace": "csb_faq" + } + }, + "faq_text_section/faq_text_answer": { + "file": "ui/csb_sections/faq_section.json", + "type": "label" + }, + "faq_price_bound_text_section": { + "file": "ui/csb_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "faq_text_section_body", + "namespace": "csb_faq" + }, + "children": [ + "faq_text_question", + "faq_text_answer" + ] + }, + "faq_price_bound_text_section/faq_text_question": { + "file": "ui/csb_sections/faq_section.json", + "type": "label", + "extend": { + "name": "faq_text_question", + "namespace": "csb_faq" + } + }, + "faq_price_bound_text_section/faq_text_answer": { + "file": "ui/csb_sections/faq_section.json", + "type": "label" + }, + "faq_question_body": { + "file": "ui/csb_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "faq_question_body_stack", + "namespace": "csb_faq" + }, + "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": { + "file": "ui/csb_sections/faq_section.json", + "type": "unknown" + }, + "faq_question_body_stack": { + "file": "ui/csb_sections/faq_section.json", + "type": "stack_panel" + }, + "faq_question_body_horz_padding": { + "file": "ui/csb_sections/faq_section.json", + "type": "panel" + }, + "image_left_faq_question_body": { + "file": "ui/csb_sections/faq_section.json", + "type": "button", + "extend": { + "name": "text_body_focus_border_for_controller_button", + "namespace": "common_buttons" + } + }, + "image_right_faq_question_body": { + "file": "ui/csb_sections/faq_section.json", + "type": "button", + "extend": { + "name": "text_body_focus_border_for_controller_button", + "namespace": "common_buttons" + } + }, + "image_left_faq_price_bound": { + "file": "ui/csb_sections/faq_section.json", + "type": "button", + "extend": { + "name": "text_body_focus_border_for_controller_button", + "namespace": "common_buttons" + } + }, + "image_right_faq_price_bound": { + "file": "ui/csb_sections/faq_section.json", + "type": "button", + "extend": { + "name": "text_body_focus_border_for_controller_button", + "namespace": "common_buttons" + } + }, + "faq_section_header_space": { + "file": "ui/csb_sections/faq_section.json", + "type": "panel" + }, + "faq_section_divider": { + "file": "ui/csb_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "section_divider", + "namespace": "common" + } + }, + "faq_content_section": { + "file": "ui/csb_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "section_base", + "namespace": "csb" + }, + "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": { + "file": "ui/csb_sections/faq_section.json", + "type": "panel", + "extend": { + "name": "vertical_padding_4px", + "namespace": "csb" + } + }, + "faq_content_section/faq_header": { + "file": "ui/csb_sections/faq_section.json", + "type": "label" + }, + "faq_content_section/faq_section_vertical_padding_2": { + "file": "ui/csb_sections/faq_section.json", + "type": "panel", + "extend": { + "name": "faq_section_header_space", + "namespace": "csb_faq" + } + }, + "faq_content_section/faq_question_1": { + "file": "ui/csb_sections/faq_section.json", + "type": "button", + "extend": { + "name": "image_right_faq_price_bound", + "namespace": "csb_faq" + } + }, + "faq_content_section/faq_question_1_divider": { + "file": "ui/csb_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "faq_section_divider", + "namespace": "csb_faq" + } + }, + "faq_content_section/faq_question_2": { + "file": "ui/csb_sections/faq_section.json", + "type": "button", + "extend": { + "name": "image_left_faq_question_body", + "namespace": "csb_faq" + } + }, + "faq_content_section/faq_question_2_divider": { + "file": "ui/csb_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "faq_section_divider", + "namespace": "csb_faq" + } + }, + "faq_content_section/faq_question_3": { + "file": "ui/csb_sections/faq_section.json", + "type": "button", + "extend": { + "name": "image_right_faq_question_body", + "namespace": "csb_faq" + } + }, + "faq_content_section/faq_question_3_divider": { + "file": "ui/csb_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "faq_section_divider", + "namespace": "csb_faq" + } + }, + "faq_content_section/faq_question_4": { + "file": "ui/csb_sections/faq_section.json", + "type": "button", + "extend": { + "name": "image_left_faq_question_body", + "namespace": "csb_faq" + } + }, + "faq_content_section/faq_question_4_divider": { + "file": "ui/csb_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "faq_section_divider", + "namespace": "csb_faq" + } + }, + "faq_content_section/faq_question_5": { + "file": "ui/csb_sections/faq_section.json", + "type": "button", + "extend": { + "name": "image_right_faq_question_body", + "namespace": "csb_faq" + } + }, + "faq_content_section/faq_question_5_divider": { + "file": "ui/csb_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "faq_section_divider", + "namespace": "csb_faq" + } + }, + "faq_content_section/faq_question_6": { + "file": "ui/csb_sections/faq_section.json", + "type": "button", + "extend": { + "name": "image_left_faq_question_body", + "namespace": "csb_faq" + } + }, + "faq_content_section/faq_question_6_divider": { + "file": "ui/csb_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "faq_section_divider", + "namespace": "csb_faq" + } + }, + "faq_content_section/faq_question_7": { + "file": "ui/csb_sections/faq_section.json", + "type": "button", + "extend": { + "name": "image_right_faq_question_body", + "namespace": "csb_faq" + } + }, + "faq_content_section/faq_question_7_divider": { + "file": "ui/csb_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "faq_section_divider", + "namespace": "csb_faq" + } + }, + "faq_content_section/faq_question_8": { + "file": "ui/csb_sections/faq_section.json", + "type": "button", + "extend": { + "name": "image_left_faq_question_body", + "namespace": "csb_faq" + } + }, + "faq_content_section/faq_question_8_divider": { + "file": "ui/csb_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "faq_section_divider", + "namespace": "csb_faq" + } + }, + "faq_content_section/faq_question_9": { + "file": "ui/csb_sections/faq_section.json", + "type": "button", + "extend": { + "name": "image_right_faq_question_body", + "namespace": "csb_faq" + } + }, + "faq_content_section/faq_question_9_divider": { + "file": "ui/csb_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "faq_section_divider", + "namespace": "csb_faq" + } + }, + "faq_content_section/faq_question_10": { + "file": "ui/csb_sections/faq_section.json", + "type": "button", + "extend": { + "name": "image_left_faq_question_body", + "namespace": "csb_faq" + } + }, + "faq_content_section/faq_question_10_divider": { + "file": "ui/csb_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "faq_section_divider", + "namespace": "csb_faq" + } + }, + "faq_content_section/faq_button": { + "file": "ui/csb_sections/faq_section.json", + "type": "button", + "extend": { + "name": "faq_bottom_button", + "namespace": "csb_faq" + } + }, + "faq_content_section/faq_bottom_padding": { + "file": "ui/csb_sections/faq_section.json", + "type": "panel", + "children": [ + "bottom_left_particles" + ] + }, + "faq_content_section/faq_bottom_padding/bottom_left_particles": { + "file": "ui/csb_sections/faq_section.json", + "type": "image" + } + }, + "csb_landing": { + "landing_content_section": { + "file": "ui/csb_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "section_base", + "namespace": "csb" + }, + "children": [ + "landing_section_vertical_padding", + "landing_content" + ] + }, + "landing_content_section/landing_section_vertical_padding": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_padding_4px", + "namespace": "csb" + } + }, + "landing_content_section/landing_content": { + "file": "ui/csb_sections/landing_section.json", + "type": "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": { + "file": "ui/csb_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "title_stack", + "namespace": "csb_landing" + } + }, + "landing_content_section/landing_content/vertical_small_spacer_0": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "csb_landing" + } + }, + "landing_content_section/landing_content/vertical_small_spacer_1": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "csb_landing" + } + }, + "landing_content_section/landing_content/info_stack": { + "file": "ui/csb_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_stack", + "namespace": "csb_landing" + } + }, + "landing_content_section/landing_content/vertical_small_spacer_2": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "csb_landing" + } + }, + "horizontal_small_spacer": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel" + }, + "vertical_small_spacer": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel" + }, + "vertical_large_spacer": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel" + }, + "title_stack": { + "file": "ui/csb_sections/landing_section.json", + "type": "stack_panel", + "children": [ + "title_image_panel", + "title_space", + "action_button", + "sign_in_button", + "vertical_space2", + "gradient_panel", + "gradient_panel2" + ] + }, + "title_stack/title_image_panel": { + "file": "ui/csb_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "title_image_panel", + "namespace": "csb_landing" + } + }, + "title_stack/title_space": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "title_space", + "namespace": "csb_landing" + } + }, + "title_stack/action_button": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "buy_button_panel", + "namespace": "csb_buy" + } + }, + "title_stack/sign_in_button": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "buy_button_panel", + "namespace": "csb_buy" + } + }, + "title_stack/vertical_space2": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "csb_landing" + } + }, + "title_stack/gradient_panel": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "children": [ + "label_with_gradient", + "tts_hover" + ] + }, + "title_stack/gradient_panel/label_with_gradient": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "gradient_content_panel", + "namespace": "csb" + } + }, + "title_stack/gradient_panel/tts_hover": { + "file": "ui/csb_sections/landing_section.json", + "type": "button", + "extend": { + "name": "tts_activate_sibling", + "namespace": "common" + } + }, + "title_stack/gradient_panel2": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "children": [ + "label_with_gradient2", + "tts_hover" + ] + }, + "title_stack/gradient_panel2/label_with_gradient2": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "gradient_content_panel", + "namespace": "csb" + } + }, + "title_stack/gradient_panel2/tts_hover": { + "file": "ui/csb_sections/landing_section.json", + "type": "button", + "extend": { + "name": "tts_activate_sibling", + "namespace": "common" + } + }, + "subscription_includes_text": { + "file": "ui/csb_sections/landing_section.json", + "type": "label" + }, + "free_trial_text": { + "file": "ui/csb_sections/landing_section.json", + "type": "label" + }, + "title_space": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel" + }, + "title_image_panel": { + "file": "ui/csb_sections/landing_section.json", + "type": "stack_panel", + "children": [ + "vertical_small_spacer_1", + "title_image_container", + "vertical_small_spacer_2" + ] + }, + "title_image_panel/vertical_small_spacer_1": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "csb_landing" + } + }, + "title_image_panel/title_image_container": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "children": [ + "title_image" + ] + }, + "title_image_panel/title_image_container/title_image": { + "file": "ui/csb_sections/landing_section.json", + "type": "image" + }, + "title_image_panel/vertical_small_spacer_2": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "csb_landing" + } + }, + "info_stack": { + "file": "ui/csb_sections/landing_section.json", + "type": "stack_panel", + "children": [ + "info_section_image", + "info_description_stack_retail" + ] + }, + "info_stack/info_section_image": { + "file": "ui/csb_sections/landing_section.json", + "type": "image", + "extend": { + "name": "info_section_image_with_border", + "namespace": "csb_landing" + } + }, + "info_stack/info_description_stack_retail": { + "file": "ui/csb_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_description_stack_retail", + "namespace": "csb_landing" + } + }, + "info_description_stack_retail": { + "file": "ui/csb_sections/landing_section.json", + "type": "stack_panel", + "children": [ + "info_section_stack_1" + ] + }, + "info_description_stack_retail/info_section_stack_1": { + "file": "ui/csb_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_section_stack", + "namespace": "csb_landing" + }, + "children": [ + "horizontal_small_spacer", + "info_section_text_1" + ] + }, + "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "horizontal_small_spacer", + "namespace": "csb_landing" + } + }, + "info_description_stack_retail/info_section_stack_1/info_section_text_1": { + "file": "ui/csb_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_section_text_1", + "namespace": "csb_landing" + } + }, + "info_section_stack": { + "file": "ui/csb_sections/landing_section.json", + "type": "stack_panel" + }, + "info_section_image_with_border": { + "file": "ui/csb_sections/landing_section.json", + "type": "image" + }, + "info_section_text_1": { + "file": "ui/csb_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_section_text", + "namespace": "csb_landing" + }, + "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": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "info_text_unbulletted", + "namespace": "csb_landing" + } + }, + "info_section_text_1/vertical_small_spacer_0": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "csb_landing" + } + }, + "info_section_text_1/info_text_bullet_1": { + "file": "ui/csb_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_text_bullet", + "namespace": "csb_landing" + } + }, + "info_section_text_1/vertical_small_spacer_1": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "csb_landing" + } + }, + "info_section_text_1/info_text_bullet_2": { + "file": "ui/csb_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_text_bullet", + "namespace": "csb_landing" + } + }, + "info_section_text_1/vertical_small_spacer_2": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "csb_landing" + } + }, + "info_section_text_1/info_text_bullet_3": { + "file": "ui/csb_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_text_bullet", + "namespace": "csb_landing" + } + }, + "info_section_text_1/vertical_small_spacer_3": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "csb_landing" + } + }, + "info_section_text_1/info_text_bullet_4": { + "file": "ui/csb_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_text_bullet", + "namespace": "csb_landing" + } + }, + "info_section_text_1/vertical_small_spacer_4": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "csb_landing" + } + }, + "info_section_text_1/info_text_bullet_5": { + "file": "ui/csb_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_text_bullet", + "namespace": "csb_landing" + } + }, + "info_section_text_1/vertical_small_spacer_5": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "csb_landing" + } + }, + "info_section_text_1/info_text_bullet_6": { + "file": "ui/csb_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_text_bullet", + "namespace": "csb_landing" + } + }, + "info_section_text_1/vertical_large_spacer_6": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_large_spacer", + "namespace": "csb_landing" + } + }, + "info_section_text_2": { + "file": "ui/csb_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_section_text", + "namespace": "csb_landing" + }, + "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": { + "file": "ui/csb_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_text_bullet", + "namespace": "csb_landing" + } + }, + "info_section_text_2/vertical_small_spacer_0": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "csb_landing" + } + }, + "info_section_text_2/info_text_bullet_2": { + "file": "ui/csb_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_text_bullet", + "namespace": "csb_landing" + } + }, + "info_section_text_2/vertical_small_spacer_1": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "csb_landing" + } + }, + "info_section_text_2/info_text_bullet_4": { + "file": "ui/csb_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_text_bullet", + "namespace": "csb_landing" + } + }, + "info_section_text_2/vertical_small_spacer_3": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "csb_landing" + } + }, + "info_section_text_2/info_text_bullet_5": { + "file": "ui/csb_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_text_bullet", + "namespace": "csb_landing" + } + }, + "info_section_text": { + "file": "ui/csb_sections/landing_section.json", + "type": "stack_panel" + }, + "info_text_bullet": { + "file": "ui/csb_sections/landing_section.json", + "type": "stack_panel", + "children": [ + "info_text_bullet_bullet", + "bullet_spacer", + "info_text_bullet_body", + "bullet_spacer_end" + ] + }, + "info_text_bullet/info_text_bullet_bullet": { + "file": "ui/csb_sections/landing_section.json", + "type": "label" + }, + "info_text_bullet/bullet_spacer": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel" + }, + "info_text_bullet/info_text_bullet_body": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "info_text_body", + "namespace": "csb_landing" + } + }, + "info_text_bullet/bullet_spacer_end": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel" + }, + "info_text_unbulletted": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "children": [ + "info_text_bullet_body" + ] + }, + "info_text_unbulletted/info_text_bullet_body": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "info_text_body", + "namespace": "csb_landing" + } + }, + "info_text_body": { + "file": "ui/csb_sections/landing_section.json", + "type": "panel", + "children": [ + "text_body", + "tts_border" + ] + }, + "info_text_body/text_body": { + "file": "ui/csb_sections/landing_section.json", + "type": "label" + }, + "info_text_body/tts_border": { + "file": "ui/csb_sections/landing_section.json", + "type": "button", + "extend": { + "name": "tts_activate_sibling", + "namespace": "common" + } + } + }, + "custom_templates": { + "lock_icon": { + "file": "ui/custom_templates_screen.json", + "type": "image" + }, + "templates_scroll_content": { + "file": "ui/custom_templates_screen.json", + "type": "input_panel", + "children": [ + "scrolling_panel" + ] + }, + "templates_scroll_content/scrolling_panel": { + "file": "ui/custom_templates_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "templates_scroll_panel": { + "file": "ui/custom_templates_screen.json", + "type": "panel", + "children": [ + "templates_stack_panel" + ] + }, + "templates_scroll_panel/templates_stack_panel": { + "file": "ui/custom_templates_screen.json", + "type": "stack_panel", + "children": [ + "templates_item_grid" + ] + }, + "templates_scroll_panel/templates_stack_panel/templates_item_grid": { + "file": "ui/custom_templates_screen.json", + "type": "grid", + "extend": { + "name": "templates_item_grid", + "namespace": "custom_templates" + } + }, + "templates_item_grid": { + "file": "ui/custom_templates_screen.json", + "type": "grid" + }, + "templates_item": { + "file": "ui/custom_templates_screen.json", + "type": "stack_panel", + "children": [ + "template_item_button" + ] + }, + "templates_item/template_item_button": { + "file": "ui/custom_templates_screen.json", + "type": "button", + "extend": { + "name": "template_item_button", + "namespace": "custom_templates" + } + }, + "template_item_button": { + "file": "ui/custom_templates_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "template_content_panel": { + "file": "ui/custom_templates_screen.json", + "type": "stack_panel", + "children": [ + "template_screenshot", + "template_text_panel", + "lock_panel" + ] + }, + "template_content_panel/template_screenshot": { + "file": "ui/custom_templates_screen.json", + "type": "image", + "extend": { + "name": "template_screenshot", + "namespace": "custom_templates" + } + }, + "template_content_panel/template_text_panel": { + "file": "ui/custom_templates_screen.json", + "type": "panel", + "extend": { + "name": "template_text_panel", + "namespace": "custom_templates" + } + }, + "template_content_panel/lock_panel": { + "file": "ui/custom_templates_screen.json", + "type": "panel", + "children": [ + "lock_icon" + ] + }, + "template_content_panel/lock_panel/lock_icon": { + "file": "ui/custom_templates_screen.json", + "type": "image", + "extend": { + "name": "lock_icon", + "namespace": "custom_templates" + } + }, + "template_screenshot": { + "file": "ui/custom_templates_screen.json", + "type": "image", + "children": [ + "picture" + ] + }, + "template_screenshot/picture": { + "file": "ui/custom_templates_screen.json", + "type": "image" + }, + "template_text_panel": { + "file": "ui/custom_templates_screen.json", + "type": "panel", + "children": [ + "text_indent" + ] + }, + "template_text_panel/text_indent": { + "file": "ui/custom_templates_screen.json", + "type": "panel", + "children": [ + "top_side", + "bottom_side" + ] + }, + "template_text_panel/text_indent/top_side": { + "file": "ui/custom_templates_screen.json", + "type": "stack_panel", + "children": [ + "template_name", + "download_text_label" + ] + }, + "template_text_panel/text_indent/top_side/template_name": { + "file": "ui/custom_templates_screen.json", + "type": "label", + "extend": { + "name": "template_name", + "namespace": "custom_templates" + } + }, + "template_text_panel/text_indent/top_side/download_text_label": { + "file": "ui/custom_templates_screen.json", + "type": "label", + "extend": { + "name": "template_download_text", + "namespace": "custom_templates" + } + }, + "template_text_panel/text_indent/bottom_side": { + "file": "ui/custom_templates_screen.json", + "type": "stack_panel", + "children": [ + "template_description", + "template_version" + ] + }, + "template_text_panel/text_indent/bottom_side/template_description": { + "file": "ui/custom_templates_screen.json", + "type": "label", + "extend": { + "name": "template_description", + "namespace": "custom_templates" + } + }, + "template_text_panel/text_indent/bottom_side/template_version": { + "file": "ui/custom_templates_screen.json", + "type": "label", + "extend": { + "name": "template_version", + "namespace": "custom_templates" + } + }, + "template_name": { + "file": "ui/custom_templates_screen.json", + "type": "label", + "extend": { + "name": "template_list_text", + "namespace": "custom_templates" + } + }, + "template_download_text": { + "file": "ui/custom_templates_screen.json", + "type": "label", + "extend": { + "name": "template_list_text", + "namespace": "custom_templates" + } + }, + "template_list_text": { + "file": "ui/custom_templates_screen.json", + "type": "label" + }, + "template_description": { + "file": "ui/custom_templates_screen.json", + "type": "label", + "extend": { + "name": "template_list_text", + "namespace": "custom_templates" + } + }, + "template_version": { + "file": "ui/custom_templates_screen.json", + "type": "label", + "extend": { + "name": "template_list_text", + "namespace": "custom_templates" + } + }, + "main_panel": { + "file": "ui/custom_templates_screen.json", + "type": "panel", + "children": [ + "templates_scroll_content" + ] + }, + "main_panel/templates_scroll_content": { + "file": "ui/custom_templates_screen.json", + "type": "input_panel", + "extend": { + "name": "templates_scroll_content", + "namespace": "custom_templates" + } + }, + "custom_templates_screen": { + "file": "ui/custom_templates_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "custom_templates_screen_content": { + "file": "ui/custom_templates_screen.json", + "type": "panel", + "children": [ + "dialog" + ] + }, + "custom_templates_screen_content/dialog": { + "file": "ui/custom_templates_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + }, + "background": { + "file": "ui/custom_templates_screen.json", + "type": "image", + "extend": { + "name": "screen_background", + "namespace": "common" + } + } + }, + "world_conversion_complete": { + "background": { + "file": "ui/world_conversion_complete_screen.json", + "type": "image", + "extend": { + "name": "screen_background", + "namespace": "common" + } + }, + "prompt_text": { + "file": "ui/world_conversion_complete_screen.json", + "type": "panel", + "children": [ + "message" + ] + }, + "prompt_text/message": { + "file": "ui/world_conversion_complete_screen.json", + "type": "label" + }, + "converted_world_preview_name": { + "file": "ui/world_conversion_complete_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "play" + } + }, + "converted_world_preview_date": { + "file": "ui/world_conversion_complete_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "play" + } + }, + "converted_world_preview_game_mode": { + "file": "ui/world_conversion_complete_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "play" + } + }, + "converted_world_preview_filesize": { + "file": "ui/world_conversion_complete_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "play" + } + }, + "converted_world_preview_text_panel": { + "file": "ui/world_conversion_complete_screen.json", + "type": "panel", + "children": [ + "text_indent" + ] + }, + "converted_world_preview_text_panel/text_indent": { + "file": "ui/world_conversion_complete_screen.json", + "type": "panel", + "children": [ + "top_side", + "bottom_side" + ] + }, + "converted_world_preview_text_panel/text_indent/top_side": { + "file": "ui/world_conversion_complete_screen.json", + "type": "stack_panel", + "children": [ + "converted_world_name", + "converted_world_date" + ] + }, + "converted_world_preview_text_panel/text_indent/top_side/converted_world_name": { + "file": "ui/world_conversion_complete_screen.json", + "type": "label", + "extend": { + "name": "converted_world_preview_name", + "namespace": "world_conversion_complete" + } + }, + "converted_world_preview_text_panel/text_indent/top_side/converted_world_date": { + "file": "ui/world_conversion_complete_screen.json", + "type": "label", + "extend": { + "name": "converted_world_preview_date", + "namespace": "world_conversion_complete" + } + }, + "converted_world_preview_text_panel/text_indent/bottom_side": { + "file": "ui/world_conversion_complete_screen.json", + "type": "stack_panel", + "children": [ + "converted_world_game_mode", + "converted_world_filesize" + ] + }, + "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_game_mode": { + "file": "ui/world_conversion_complete_screen.json", + "type": "label", + "extend": { + "name": "converted_world_preview_game_mode", + "namespace": "world_conversion_complete" + } + }, + "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_filesize": { + "file": "ui/world_conversion_complete_screen.json", + "type": "label", + "extend": { + "name": "converted_world_preview_filesize", + "namespace": "world_conversion_complete" + } + }, + "converted_world_preview_panel": { + "file": "ui/world_conversion_complete_screen.json", + "type": "image", + "children": [ + "world_preview_content" + ] + }, + "converted_world_preview_panel/world_preview_content": { + "file": "ui/world_conversion_complete_screen.json", + "type": "stack_panel", + "children": [ + "converted_world_screenshot", + "converted_world_text_panel" + ] + }, + "converted_world_preview_panel/world_preview_content/converted_world_screenshot": { + "file": "ui/world_conversion_complete_screen.json", + "type": "image", + "extend": { + "name": "world_screenshot_base", + "namespace": "play" + }, + "children": [ + "image_content" + ] + }, + "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content": { + "file": "ui/world_conversion_complete_screen.json", + "type": "panel", + "children": [ + "picture" + ] + }, + "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content/picture": { + "file": "ui/world_conversion_complete_screen.json", + "type": "image" + }, + "converted_world_preview_panel/world_preview_content/converted_world_text_panel": { + "file": "ui/world_conversion_complete_screen.json", + "type": "panel", + "extend": { + "name": "converted_world_preview_text_panel", + "namespace": "world_conversion_complete" + } + }, + "main_panel": { + "file": "ui/world_conversion_complete_screen.json", + "type": "stack_panel", + "children": [ + "padding_0", + "prompt_1", + "world_entry_container", + "buttons_panel_sizer" + ] + }, + "main_panel/padding_0": { + "file": "ui/world_conversion_complete_screen.json", + "type": "panel" + }, + "main_panel/prompt_1": { + "file": "ui/world_conversion_complete_screen.json", + "type": "panel", + "extend": { + "name": "prompt_text", + "namespace": "world_conversion_complete" + } + }, + "main_panel/world_entry_container": { + "file": "ui/world_conversion_complete_screen.json", + "type": "panel", + "children": [ + "world_entry_sizer" + ] + }, + "main_panel/world_entry_container/world_entry_sizer": { + "file": "ui/world_conversion_complete_screen.json", + "type": "panel", + "children": [ + "world_entry" + ] + }, + "main_panel/world_entry_container/world_entry_sizer/world_entry": { + "file": "ui/world_conversion_complete_screen.json", + "type": "image", + "extend": { + "name": "converted_world_preview_panel", + "namespace": "world_conversion_complete" + } + }, + "main_panel/buttons_panel_sizer": { + "file": "ui/world_conversion_complete_screen.json", + "type": "panel", + "children": [ + "buttons_panel" + ] + }, + "main_panel/buttons_panel_sizer/buttons_panel": { + "file": "ui/world_conversion_complete_screen.json", + "type": "stack_panel", + "children": [ + "load_game_button", + "padding", + "return_button" + ] + }, + "main_panel/buttons_panel_sizer/buttons_panel/load_game_button": { + "file": "ui/world_conversion_complete_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "main_panel/buttons_panel_sizer/buttons_panel/padding": { + "file": "ui/world_conversion_complete_screen.json", + "type": "panel" + }, + "main_panel/buttons_panel_sizer/buttons_panel/return_button": { + "file": "ui/world_conversion_complete_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "world_conversion_complete_screen_content": { + "file": "ui/world_conversion_complete_screen.json", + "type": "panel", + "children": [ + "dialog" + ] + }, + "world_conversion_complete_screen_content/dialog": { + "file": "ui/world_conversion_complete_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + }, + "world_conversion_complete_screen": { + "file": "ui/world_conversion_complete_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + } + }, + "day_one_experience_intro": { + "padding_horizontal": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel" + }, + "padding_vertical": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel" + }, + "label_panel": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "children": [ + "label_text" + ] + }, + "label_panel/label_text": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "label" + }, + "text_panel": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "stack_panel", + "children": [ + "padding_00", + "tab_content_description_panel", + "padding_01" + ] + }, + "text_panel/padding_00": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "day_one_experience_intro" + } + }, + "text_panel/tab_content_description_panel": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "text_panel/padding_01": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "day_one_experience_intro" + } + }, + "dialog_image": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "image" + }, + "image_panel": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "children": [ + "dialog_image_with_border", + "focus_image" + ] + }, + "image_panel/dialog_image_with_border": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "image", + "extend": { + "name": "dialog_image", + "namespace": "day_one_experience_intro" + } + }, + "image_panel/focus_image": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "unknown" + }, + "top_tab": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "tab_top", + "namespace": "common_tabs" + } + }, + "common_tab_navigation_panel_layout": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "stack_panel" + }, + "tabbed_tab_navigation_panel_layout": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "stack_panel", + "extend": { + "name": "common_tab_navigation_panel_layout", + "namespace": "day_one_experience_intro" + }, + "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": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "day_one_experience_intro" + } + }, + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "children": [ + "gamepad_helper_left_bumper" + ] + }, + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper/gamepad_helper_left_bumper": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_left_bumper", + "namespace": "common" + } + }, + "tabbed_tab_navigation_panel_layout/nav_padding_02": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "day_one_experience_intro" + } + }, + "tabbed_tab_navigation_panel_layout/welcome_navigation_tab": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "day_one_experience_intro" + } + }, + "tabbed_tab_navigation_panel_layout/nav_padding_03": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "day_one_experience_intro" + } + }, + "tabbed_tab_navigation_panel_layout/marketplace_navigation_tab": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "day_one_experience_intro" + } + }, + "tabbed_tab_navigation_panel_layout/nav_padding_04": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "day_one_experience_intro" + } + }, + "tabbed_tab_navigation_panel_layout/cross_platform_navigation_tab": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "day_one_experience_intro" + } + }, + "tabbed_tab_navigation_panel_layout/nav_padding_05": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "day_one_experience_intro" + } + }, + "tabbed_tab_navigation_panel_layout/realms_navigation_tab": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "day_one_experience_intro" + } + }, + "tabbed_tab_navigation_panel_layout/nav_padding_06": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "day_one_experience_intro" + } + }, + "tabbed_tab_navigation_panel_layout/villagers_navigation_tab": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "day_one_experience_intro" + } + }, + "tabbed_tab_navigation_panel_layout/nav_padding_07": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "day_one_experience_intro" + } + }, + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "children": [ + "gamepad_helper_right_bumper" + ] + }, + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper/gamepad_helper_right_bumper": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_right_bumper", + "namespace": "common" + } + }, + "tabbed_tab_navigation_panel_layout/nav_padding_08": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "day_one_experience_intro" + } + }, + "tab_header_image_panel": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "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": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "welcome_tab_header_image_panel", + "namespace": "day_one_experience_intro" + } + }, + "tab_header_image_panel/marketplace_tab_content": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "marketplace_tab_header_image_panel", + "namespace": "day_one_experience_intro" + } + }, + "tab_header_image_panel/cross_platform_tab_content": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "cross_platform_tab_header_image_panel", + "namespace": "day_one_experience_intro" + } + }, + "tab_header_image_panel/realms_tab_content": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "realms_tab_header_image_panel", + "namespace": "day_one_experience_intro" + } + }, + "tab_header_image_panel/villager_tab_content": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "villager_tab_header_image_panel", + "namespace": "day_one_experience_intro" + } + }, + "tabbed_tab_content_panel_layout": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "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": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "welcome_tab_content_panel", + "namespace": "day_one_experience_intro" + } + }, + "tabbed_tab_content_panel_layout/marketplace_tab_content": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "marketplace_tab_content_panel", + "namespace": "day_one_experience_intro" + } + }, + "tabbed_tab_content_panel_layout/cross_platform_tab_content": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "cross_platform_tab_content_panel", + "namespace": "day_one_experience_intro" + } + }, + "tabbed_tab_content_panel_layout/realms_tab_content": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "realms_tab_content_panel", + "namespace": "day_one_experience_intro" + } + }, + "tabbed_tab_content_panel_layout/villager_tab_content": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "villager_tab_content_panel", + "namespace": "day_one_experience_intro" + } + }, + "common_tab_header_image_panel": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "children": [ + "header_image" + ] + }, + "common_tab_header_image_panel/header_image": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "image" + }, + "common_tab_content_panel": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "children": [ + "content" + ] + }, + "common_tab_content_panel/content": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "unknown" + }, + "welcome_tab_header_image_panel": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_header_image_panel", + "namespace": "day_one_experience_intro" + } + }, + "welcome_tab_content_panel": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_content_panel", + "namespace": "day_one_experience_intro" + } + }, + "marketplace_tab_header_image_panel": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_header_image_panel", + "namespace": "day_one_experience_intro" + } + }, + "marketplace_tab_content_panel": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_content_panel", + "namespace": "day_one_experience_intro" + } + }, + "cross_platform_tab_header_image_panel": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_header_image_panel", + "namespace": "day_one_experience_intro" + } + }, + "cross_platform_tab_content_panel": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_content_panel", + "namespace": "day_one_experience_intro" + } + }, + "realms_tab_header_image_panel": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_header_image_panel", + "namespace": "day_one_experience_intro" + } + }, + "realms_tab_content_panel": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_content_panel", + "namespace": "day_one_experience_intro" + } + }, + "villager_tab_header_image_panel": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_header_image_panel", + "namespace": "day_one_experience_intro" + } + }, + "villager_tab_content_panel": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_content_panel", + "namespace": "day_one_experience_intro" + } + }, + "tab_panel": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "stack_panel", + "children": [ + "tab_header_image", + "padding_00", + "tab_navigation_panel", + "tab_content_panel", + "padding_4", + "continue_button_panel" + ] + }, + "tab_panel/tab_header_image": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "tab_header_image_panel", + "namespace": "day_one_experience_intro" + } + }, + "tab_panel/padding_00": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "padding_vertical", + "namespace": "day_one_experience_intro" + } + }, + "tab_panel/tab_navigation_panel": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "stack_panel", + "extend": { + "name": "tabbed_tab_navigation_panel_layout", + "namespace": "day_one_experience_intro" + } + }, + "tab_panel/tab_content_panel": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "tabbed_tab_content_panel_layout", + "namespace": "day_one_experience_intro" + } + }, + "tab_panel/padding_4": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "padding_vertical", + "namespace": "day_one_experience_intro" + } + }, + "tab_panel/continue_button_panel": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "children": [ + "continue_button" + ] + }, + "tab_panel/continue_button_panel/continue_button": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "day_one_experience_intro_screen": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "day_one_experience_intro_screen_content": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "children": [ + "welcome_dialog" + ] + }, + "day_one_experience_intro_screen_content/welcome_dialog": { + "file": "ui/day_one_experience_intro_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + } + }, + "day_one_experience": { + "alpha_scroll_background": { + "file": "ui/day_one_experience_screen.json", + "type": "image" + }, + "tip_text": { + "file": "ui/day_one_experience_screen.json", + "type": "label" + }, + "tip_arrow_base": { + "file": "ui/day_one_experience_screen.json", + "type": "image" + }, + "tip_arrow_left": { + "file": "ui/day_one_experience_screen.json", + "type": "image", + "extend": { + "name": "tip_arrow_base", + "namespace": "day_one_experience" + } + }, + "tip_arrow_right": { + "file": "ui/day_one_experience_screen.json", + "type": "image", + "extend": { + "name": "tip_arrow_base", + "namespace": "day_one_experience" + } + }, + "import_time": { + "file": "ui/day_one_experience_screen.json", + "type": "custom" + }, + "skins_tip_image": { + "file": "ui/day_one_experience_screen.json", + "type": "image", + "children": [ + "arrows" + ] + }, + "skins_tip_image/arrows": { + "file": "ui/day_one_experience_screen.json", + "type": "stack_panel", + "children": [ + "right_arrow", + "padding", + "left_arrow" + ] + }, + "skins_tip_image/arrows/right_arrow": { + "file": "ui/day_one_experience_screen.json", + "type": "image", + "extend": { + "name": "tip_arrow_right", + "namespace": "day_one_experience" + } + }, + "skins_tip_image/arrows/padding": { + "file": "ui/day_one_experience_screen.json", + "type": "panel" + }, + "skins_tip_image/arrows/left_arrow": { + "file": "ui/day_one_experience_screen.json", + "type": "image", + "extend": { + "name": "tip_arrow_left", + "namespace": "day_one_experience" + } + }, + "skins_tip_top_text": { + "file": "ui/day_one_experience_screen.json", + "type": "label", + "extend": { + "name": "tip_text", + "namespace": "day_one_experience" + } + }, + "skins_tip_panel": { + "file": "ui/day_one_experience_screen.json", + "type": "stack_panel", + "children": [ + "top_text_sizer", + "image_sizer", + "bottom_text_sizer" + ] + }, + "skins_tip_panel/top_text_sizer": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "children": [ + "settings_and_skin_text", + "settings_text" + ] + }, + "skins_tip_panel/top_text_sizer/settings_and_skin_text": { + "file": "ui/day_one_experience_screen.json", + "type": "label", + "extend": { + "name": "skins_tip_top_text", + "namespace": "day_one_experience" + } + }, + "skins_tip_panel/top_text_sizer/settings_text": { + "file": "ui/day_one_experience_screen.json", + "type": "label", + "extend": { + "name": "skins_tip_top_text", + "namespace": "day_one_experience" + } + }, + "skins_tip_panel/image_sizer": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "children": [ + "image_section" + ] + }, + "skins_tip_panel/image_sizer/image_section": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_no_title_no_buttons", + "namespace": "common_dialogs" + } + }, + "skins_tip_panel/bottom_text_sizer": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "children": [ + "bottom_text" + ] + }, + "skins_tip_panel/bottom_text_sizer/bottom_text": { + "file": "ui/day_one_experience_screen.json", + "type": "label", + "extend": { + "name": "tip_text", + "namespace": "day_one_experience" + } + }, + "skin_viewer_panel_text": { + "file": "ui/day_one_experience_screen.json", + "type": "label", + "extend": { + "name": "tip_text", + "namespace": "day_one_experience" + } + }, + "skin_viewer_panel": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "children": [ + "paper_doll_container", + "legacy_skin_loading_panel", + "bottom_skin_text" + ] + }, + "skin_viewer_panel/paper_doll_container": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "children": [ + "paper_doll" + ] + }, + "skin_viewer_panel/paper_doll_container/paper_doll": { + "file": "ui/day_one_experience_screen.json", + "type": "custom" + }, + "skin_viewer_panel/legacy_skin_loading_panel": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "skin_viewer_panel/bottom_skin_text": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "children": [ + "current_skin_text", + "default_skin_text" + ] + }, + "skin_viewer_panel/bottom_skin_text/current_skin_text": { + "file": "ui/day_one_experience_screen.json", + "type": "label", + "extend": { + "name": "skin_viewer_panel_text", + "namespace": "day_one_experience" + } + }, + "skin_viewer_panel/bottom_skin_text/default_skin_text": { + "file": "ui/day_one_experience_screen.json", + "type": "label", + "extend": { + "name": "skin_viewer_panel_text", + "namespace": "day_one_experience" + } + }, + "skin_tip_screen": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "children": [ + "primary_content", + "no_network_message" + ] + }, + "skin_tip_screen/primary_content": { + "file": "ui/day_one_experience_screen.json", + "type": "stack_panel", + "children": [ + "skin_viewer_panel", + "padding", + "skins_tip_panel_container" + ] + }, + "skin_tip_screen/primary_content/skin_viewer_panel": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "children": [ + "skin_viewer" + ] + }, + "skin_tip_screen/primary_content/skin_viewer_panel/skin_viewer": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_no_title_no_buttons", + "namespace": "common_dialogs" + } + }, + "skin_tip_screen/primary_content/padding": { + "file": "ui/day_one_experience_screen.json", + "type": "panel" + }, + "skin_tip_screen/primary_content/skins_tip_panel_container": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + }, + "children": [ + "background", + "skins_tip_panel" + ] + }, + "skin_tip_screen/primary_content/skins_tip_panel_container/background": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "skin_tip_screen/primary_content/skins_tip_panel_container/skins_tip_panel": { + "file": "ui/day_one_experience_screen.json", + "type": "stack_panel", + "extend": { + "name": "skins_tip_panel", + "namespace": "day_one_experience" + } + }, + "skin_tip_screen/no_network_message": { + "file": "ui/day_one_experience_screen.json", + "type": "custom" + }, + "legacy_world_item": { + "file": "ui/day_one_experience_screen.json", + "type": "stack_panel", + "children": [ + "header_button_panel" + ] + }, + "legacy_world_item/header_button_panel": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "extend": { + "name": "header_single_button_panel", + "namespace": "play" + } + }, + "legacy_world_item_grid": { + "file": "ui/day_one_experience_screen.json", + "type": "grid", + "extend": { + "name": "world_item_grid_base", + "namespace": "play" + } + }, + "world_picker_scrolling_content": { + "file": "ui/day_one_experience_screen.json", + "type": "stack_panel", + "children": [ + "padding_0", + "skip_button", + "padding_1", + "loading_legacy_worlds_panel", + "padding_2", + "world_item_grid" + ] + }, + "world_picker_scrolling_content/padding_0": { + "file": "ui/day_one_experience_screen.json", + "type": "panel" + }, + "world_picker_scrolling_content/skip_button": { + "file": "ui/day_one_experience_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "world_picker_scrolling_content/padding_1": { + "file": "ui/day_one_experience_screen.json", + "type": "panel" + }, + "world_picker_scrolling_content/loading_legacy_worlds_panel": { + "file": "ui/day_one_experience_screen.json", + "type": "image", + "extend": { + "name": "label_background", + "namespace": "play" + }, + "children": [ + "loading_legacy_worlds_label", + "padding", + "progress_loading_bars" + ] + }, + "world_picker_scrolling_content/loading_legacy_worlds_panel/loading_legacy_worlds_label": { + "file": "ui/day_one_experience_screen.json", + "type": "label" + }, + "world_picker_scrolling_content/loading_legacy_worlds_panel/padding": { + "file": "ui/day_one_experience_screen.json", + "type": "panel" + }, + "world_picker_scrolling_content/loading_legacy_worlds_panel/progress_loading_bars": { + "file": "ui/day_one_experience_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "play" + } + }, + "world_picker_scrolling_content/padding_2": { + "file": "ui/day_one_experience_screen.json", + "type": "panel" + }, + "world_picker_scrolling_content/world_item_grid": { + "file": "ui/day_one_experience_screen.json", + "type": "grid", + "extend": { + "name": "legacy_world_item_grid", + "namespace": "day_one_experience" + } + }, + "world_picker_content": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "world_picker_content/scrolling_panel": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "advanced_worlds_screen": { + "file": "ui/day_one_experience_screen.json", + "type": "stack_panel", + "extend": { + "name": "day_one_experience", + "namespace": "day_one_experience" + }, + "children": [ + "world_picker", + "padding_1", + "import_time_container" + ] + }, + "advanced_worlds_screen/world_picker": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + }, + "advanced_worlds_screen/padding_1": { + "file": "ui/day_one_experience_screen.json", + "type": "panel" + }, + "advanced_worlds_screen/import_time_container": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "children": [ + "import_time_label" + ] + }, + "advanced_worlds_screen/import_time_container/import_time_label": { + "file": "ui/day_one_experience_screen.json", + "type": "custom", + "extend": { + "name": "import_time", + "namespace": "day_one_experience" + } + }, + "next_screen_button_content": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "children": [ + "arrow_panel", + "loading_panel" + ] + }, + "next_screen_button_content/arrow_panel": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "children": [ + "label_panel", + "image" + ] + }, + "next_screen_button_content/arrow_panel/label_panel": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "children": [ + "label" + ] + }, + "next_screen_button_content/arrow_panel/label_panel/label": { + "file": "ui/day_one_experience_screen.json", + "type": "label" + }, + "next_screen_button_content/arrow_panel/image": { + "file": "ui/day_one_experience_screen.json", + "type": "image" + }, + "next_screen_button_content/loading_panel": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "next_screen_button": { + "file": "ui/day_one_experience_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "next_panel": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "children": [ + "next_button" + ] + }, + "next_panel/next_button": { + "file": "ui/day_one_experience_screen.json", + "type": "button", + "extend": { + "name": "next_screen_button", + "namespace": "day_one_experience" + } + }, + "common_scrolling_panel": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "skin_tip_scroll_panel": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "children": [ + "skin_tip_screen" + ] + }, + "skin_tip_scroll_panel/skin_tip_screen": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "extend": { + "name": "skin_tip_screen", + "namespace": "day_one_experience" + } + }, + "worlds_import_scroll_panel": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "children": [ + "advanced_screen" + ] + }, + "worlds_import_scroll_panel/advanced_screen": { + "file": "ui/day_one_experience_screen.json", + "type": "stack_panel", + "extend": { + "name": "advanced_worlds_screen", + "namespace": "day_one_experience" + } + }, + "common_content": { + "file": "ui/day_one_experience_screen.json", + "type": "panel" + }, + "skin_tip_scroll_content": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "extend": { + "name": "common_content", + "namespace": "day_one_experience" + }, + "children": [ + "scrolling_panel" + ] + }, + "skin_tip_scroll_content/scrolling_panel": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "extend": { + "name": "common_scrolling_panel", + "namespace": "day_one_experience" + } + }, + "world_import_scroll_content": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "extend": { + "name": "common_content", + "namespace": "day_one_experience" + }, + "children": [ + "scrolling_panel" + ] + }, + "world_import_scroll_content/scrolling_panel": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "extend": { + "name": "common_scrolling_panel", + "namespace": "day_one_experience" + } + }, + "default_tab_content_panel_layout": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "children": [ + "skin_tip_tab_content", + "world_import_tab_content" + ] + }, + "default_tab_content_panel_layout/skin_tip_tab_content": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "extend": { + "name": "skin_tip_scroll_content", + "namespace": "day_one_experience" + } + }, + "default_tab_content_panel_layout/world_import_tab_content": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "extend": { + "name": "world_import_scroll_content", + "namespace": "day_one_experience" + } + }, + "default_wizard_screen": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "children": [ + "tab_content_panel" + ] + }, + "default_wizard_screen/tab_content_panel": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "extend": { + "name": "default_tab_content_panel_layout", + "namespace": "day_one_experience" + } + }, + "wizard_screen": { + "file": "ui/day_one_experience_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "wizard_screen_content": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "children": [ + "main_control", + "next_button" + ] + }, + "wizard_screen_content/main_control": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "extend": { + "name": "default_wizard_screen", + "namespace": "day_one_experience" + } + }, + "wizard_screen_content/next_button": { + "file": "ui/day_one_experience_screen.json", + "type": "panel", + "extend": { + "name": "next_panel", + "namespace": "day_one_experience" + } + } + }, + "death": { + "a_button_panel": { + "file": "ui/death_screen.json", + "type": "panel", + "children": [ + "gamepad_helper_a" + ] + }, + "a_button_panel/gamepad_helper_a": { + "file": "ui/death_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_a", + "namespace": "common" + } + }, + "you_died_panel": { + "file": "ui/death_screen.json", + "type": "panel", + "children": [ + "you_died_label" + ] + }, + "you_died_panel/you_died_label": { + "file": "ui/death_screen.json", + "type": "label" + }, + "death_reason_panel": { + "file": "ui/death_screen.json", + "type": "panel", + "children": [ + "death_reason_label" + ] + }, + "death_reason_panel/death_reason_label": { + "file": "ui/death_screen.json", + "type": "label" + }, + "labels_panel": { + "file": "ui/death_screen.json", + "type": "stack_panel", + "children": [ + "fill_1", + "you_died", + "padd_1", + "death_reason", + "padd_2" + ] + }, + "labels_panel/fill_1": { + "file": "ui/death_screen.json", + "type": "panel" + }, + "labels_panel/you_died": { + "file": "ui/death_screen.json", + "type": "panel", + "extend": { + "name": "you_died_panel", + "namespace": "death" + } + }, + "labels_panel/padd_1": { + "file": "ui/death_screen.json", + "type": "panel" + }, + "labels_panel/death_reason": { + "file": "ui/death_screen.json", + "type": "panel", + "extend": { + "name": "death_reason_panel", + "namespace": "death" + } + }, + "labels_panel/padd_2": { + "file": "ui/death_screen.json", + "type": "panel" + }, + "buttons_panel": { + "file": "ui/death_screen.json", + "type": "stack_panel", + "children": [ + "padd_0", + "respawn_button", + "padd_1", + "main_menu_button", + "fill_2", + "select_button" + ] + }, + "buttons_panel/padd_0": { + "file": "ui/death_screen.json", + "type": "panel" + }, + "buttons_panel/respawn_button": { + "file": "ui/death_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "buttons_panel/padd_1": { + "file": "ui/death_screen.json", + "type": "panel" + }, + "buttons_panel/main_menu_button": { + "file": "ui/death_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "buttons_panel/fill_2": { + "file": "ui/death_screen.json", + "type": "panel" + }, + "buttons_panel/select_button": { + "file": "ui/death_screen.json", + "type": "panel", + "extend": { + "name": "a_button_panel", + "namespace": "death" + } + }, + "death_screen_content": { + "file": "ui/death_screen.json", + "type": "panel", + "children": [ + "death_screen_buttons_and_stuff", + "loading_label" + ] + }, + "death_screen_content/death_screen_buttons_and_stuff": { + "file": "ui/death_screen.json", + "type": "panel", + "children": [ + "labels_panel", + "buttons_panel" + ] + }, + "death_screen_content/death_screen_buttons_and_stuff/labels_panel": { + "file": "ui/death_screen.json", + "type": "stack_panel", + "extend": { + "name": "labels_panel", + "namespace": "death" + } + }, + "death_screen_content/death_screen_buttons_and_stuff/buttons_panel": { + "file": "ui/death_screen.json", + "type": "stack_panel", + "extend": { + "name": "buttons_panel", + "namespace": "death" + } + }, + "death_screen_content/loading_label": { + "file": "ui/death_screen.json", + "type": "label" + }, + "background_gradient": { + "file": "ui/death_screen.json", + "type": "custom" + }, + "death_screen": { + "file": "ui/death_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + } + }, + "debug_screen": { + "access_button": { + "file": "ui/debug_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "special_render": { + "file": "ui/debug_screen.json", + "type": "custom" + }, + "content_panel": { + "file": "ui/debug_screen.json", + "type": "panel", + "children": [ + "access_button", + "special_render" + ] + }, + "content_panel/access_button": { + "file": "ui/debug_screen.json", + "type": "button", + "extend": { + "name": "access_button", + "namespace": "debug_screen" + } + }, + "content_panel/special_render": { + "file": "ui/debug_screen.json", + "type": "custom", + "extend": { + "name": "special_render", + "namespace": "debug_screen" + } + }, + "debug_screen": { + "file": "ui/debug_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + } + }, + "dev_console": { + "keyboard_button_content": { + "file": "ui/dev_console_screen.json", + "type": "panel", + "extend": { + "name": "button_content_panel", + "namespace": "common_buttons" + }, + "children": [ + "keyboard_image" + ] + }, + "keyboard_button_content/keyboard_image": { + "file": "ui/dev_console_screen.json", + "type": "image", + "extend": { + "name": "keyboard_image", + "namespace": "chat" + } + }, + "keyboard_button": { + "file": "ui/dev_console_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "button_content": { + "file": "ui/dev_console_screen.json", + "type": "panel", + "extend": { + "name": "button_content_panel", + "namespace": "common_buttons" + }, + "children": [ + "image" + ] + }, + "button_content/image": { + "file": "ui/dev_console_screen.json", + "type": "unknown" + }, + "up_arrow": { + "file": "ui/dev_console_screen.json", + "type": "image" + }, + "down_arrow": { + "file": "ui/dev_console_screen.json", + "type": "image" + }, + "send_button": { + "file": "ui/dev_console_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "sent_message_up_button": { + "file": "ui/dev_console_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "sent_message_down_button": { + "file": "ui/dev_console_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "chat_stack_panel": { + "file": "ui/dev_console_screen.json", + "type": "stack_panel", + "children": [ + "text_box", + "send_button", + "sent_message_up_button", + "sent_message_down_button" + ] + }, + "chat_stack_panel/text_box": { + "file": "ui/dev_console_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "chat" + } + }, + "chat_stack_panel/send_button": { + "file": "ui/dev_console_screen.json", + "type": "button", + "extend": { + "name": "send_button", + "namespace": "dev_console" + } + }, + "chat_stack_panel/sent_message_up_button": { + "file": "ui/dev_console_screen.json", + "type": "button", + "extend": { + "name": "sent_message_up_button", + "namespace": "dev_console" + } + }, + "chat_stack_panel/sent_message_down_button": { + "file": "ui/dev_console_screen.json", + "type": "button", + "extend": { + "name": "sent_message_down_button", + "namespace": "dev_console" + } + }, + "main_stack_panel": { + "file": "ui/dev_console_screen.json", + "type": "stack_panel", + "children": [ + "messages_scrolling_panel", + "chat_stack_panel" + ] + }, + "main_stack_panel/messages_scrolling_panel": { + "file": "ui/dev_console_screen.json", + "type": "panel", + "extend": { + "name": "messages_scrolling_panel", + "namespace": "chat" + } + }, + "main_stack_panel/chat_stack_panel": { + "file": "ui/dev_console_screen.json", + "type": "stack_panel", + "extend": { + "name": "chat_stack_panel", + "namespace": "dev_console" + } + }, + "main_with_intellisense": { + "file": "ui/dev_console_screen.json", + "type": "panel", + "children": [ + "main_stack", + "commands_panel" + ] + }, + "main_with_intellisense/main_stack": { + "file": "ui/dev_console_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_stack_panel", + "namespace": "dev_console" + } + }, + "main_with_intellisense/commands_panel": { + "file": "ui/dev_console_screen.json", + "type": "panel", + "extend": { + "name": "commands_panel", + "namespace": "chat" + } + }, + "dev_console_dialog": { + "file": "ui/dev_console_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + }, + "dev_console_screen": { + "file": "ui/dev_console_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + } + }, + "disconnect": { + "disconnect_screen_text": { + "file": "ui/disconnect_screen.json", + "type": "label" + }, + "disconnect_text": { + "file": "ui/disconnect_screen.json", + "type": "label", + "extend": { + "name": "disconnect_screen_text", + "namespace": "disconnect" + } + }, + "disconnect_title_text": { + "file": "ui/disconnect_screen.json", + "type": "label", + "extend": { + "name": "disconnect_screen_text", + "namespace": "disconnect" + } + }, + "title_panel": { + "file": "ui/disconnect_screen.json", + "type": "panel", + "children": [ + "disconnect_title_text", + "disconnect_text" + ] + }, + "title_panel/disconnect_title_text": { + "file": "ui/disconnect_screen.json", + "type": "label", + "extend": { + "name": "disconnect_title_text", + "namespace": "disconnect" + } + }, + "title_panel/disconnect_text": { + "file": "ui/disconnect_screen.json", + "type": "label", + "extend": { + "name": "disconnect_text", + "namespace": "disconnect" + } + }, + "menu_button_template": { + "file": "ui/disconnect_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "continue_button": { + "file": "ui/disconnect_screen.json", + "type": "button", + "extend": { + "name": "menu_button_template", + "namespace": "disconnect" + } + }, + "check_store_button": { + "file": "ui/disconnect_screen.json", + "type": "button", + "extend": { + "name": "menu_button_template", + "namespace": "disconnect" + } + }, + "exit_button": { + "file": "ui/disconnect_screen.json", + "type": "button", + "extend": { + "name": "menu_button_template", + "namespace": "disconnect" + } + }, + "ok_button": { + "file": "ui/disconnect_screen.json", + "type": "button", + "extend": { + "name": "menu_button_template", + "namespace": "disconnect" + } + }, + "open_uri_button": { + "file": "ui/disconnect_screen.json", + "type": "button", + "extend": { + "name": "open_account_setting_button", + "namespace": "disconnect" + } + }, + "cancel_button": { + "file": "ui/disconnect_screen.json", + "type": "button", + "extend": { + "name": "menu_button_template", + "namespace": "disconnect" + } + }, + "button_panel": { + "file": "ui/disconnect_screen.json", + "type": "stack_panel", + "children": [ + "open_uri_button_panel", + "open_button_panel" + ] + }, + "button_panel/open_uri_button_panel": { + "file": "ui/disconnect_screen.json", + "type": "panel", + "children": [ + "open_uri_button" + ] + }, + "button_panel/open_uri_button_panel/open_uri_button": { + "file": "ui/disconnect_screen.json", + "type": "button", + "extend": { + "name": "open_uri_button", + "namespace": "disconnect" + } + }, + "button_panel/open_button_panel": { + "file": "ui/disconnect_screen.json", + "type": "panel", + "children": [ + "ok_button" + ] + }, + "button_panel/open_button_panel/ok_button": { + "file": "ui/disconnect_screen.json", + "type": "button", + "extend": { + "name": "ok_button", + "namespace": "disconnect" + } + }, + "gamepad_helpers": { + "file": "ui/disconnect_screen.json", + "type": "panel", + "children": [ + "gamepad_helper_a" + ] + }, + "gamepad_helpers/gamepad_helper_a": { + "file": "ui/disconnect_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_a", + "namespace": "common" + } + }, + "disconnect_screen": { + "file": "ui/disconnect_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "disconnect_screen_content": { + "file": "ui/disconnect_screen.json", + "type": "panel", + "children": [ + "title_panel", + "gamepad_helpers" + ] + }, + "disconnect_screen_content/title_panel": { + "file": "ui/disconnect_screen.json", + "type": "panel", + "extend": { + "name": "title_panel", + "namespace": "disconnect" + } + }, + "disconnect_screen_content/gamepad_helpers": { + "file": "ui/disconnect_screen.json", + "type": "panel", + "extend": { + "name": "gamepad_helpers", + "namespace": "disconnect" + } + }, + "spacing_gap": { + "file": "ui/disconnect_screen.json", + "type": "panel" + }, + "realms_disconnect_screen": { + "file": "ui/disconnect_screen.json", + "type": "screen", + "extend": { + "name": "disconnect_screen", + "namespace": "disconnect" + } + }, + "realms_disconnect_button_panel": { + "file": "ui/disconnect_screen.json", + "type": "stack_panel", + "children": [ + "open_uri_button_panel", + "realm_buttons_panel" + ] + }, + "realms_disconnect_button_panel/open_uri_button_panel": { + "file": "ui/disconnect_screen.json", + "type": "panel", + "children": [ + "open_uri_button" + ] + }, + "realms_disconnect_button_panel/open_uri_button_panel/open_uri_button": { + "file": "ui/disconnect_screen.json", + "type": "button", + "extend": { + "name": "open_uri_button", + "namespace": "disconnect" + } + }, + "realms_disconnect_button_panel/realm_buttons_panel": { + "file": "ui/disconnect_screen.json", + "type": "panel", + "children": [ + "realm_buttons" + ] + }, + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons": { + "file": "ui/disconnect_screen.json", + "type": "stack_panel", + "children": [ + "check_store_button", + "spacing_gap", + "exit_button" + ] + }, + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/check_store_button": { + "file": "ui/disconnect_screen.json", + "type": "button", + "extend": { + "name": "check_store_button", + "namespace": "disconnect" + } + }, + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/spacing_gap": { + "file": "ui/disconnect_screen.json", + "type": "panel", + "extend": { + "name": "spacing_gap", + "namespace": "disconnect" + } + }, + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/exit_button": { + "file": "ui/disconnect_screen.json", + "type": "button", + "extend": { + "name": "exit_button", + "namespace": "disconnect" + } + }, + "realms_warning_screen": { + "file": "ui/disconnect_screen.json", + "type": "screen", + "extend": { + "name": "disconnect_screen", + "namespace": "disconnect" + } + }, + "realms_warning_button_panel": { + "file": "ui/disconnect_screen.json", + "type": "stack_panel", + "children": [ + "continue_button_panel", + "realms_warning_button_gap", + "cancel_button_panel" + ] + }, + "realms_warning_button_panel/continue_button_panel": { + "file": "ui/disconnect_screen.json", + "type": "panel", + "children": [ + "continue_button_stack_panel" + ] + }, + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel": { + "file": "ui/disconnect_screen.json", + "type": "stack_panel", + "children": [ + "check_store_button", + "spacing_gap", + "continue_button" + ] + }, + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/check_store_button": { + "file": "ui/disconnect_screen.json", + "type": "button", + "extend": { + "name": "check_store_button", + "namespace": "disconnect" + } + }, + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/spacing_gap": { + "file": "ui/disconnect_screen.json", + "type": "panel", + "extend": { + "name": "spacing_gap", + "namespace": "disconnect" + } + }, + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/continue_button": { + "file": "ui/disconnect_screen.json", + "type": "button", + "extend": { + "name": "continue_button", + "namespace": "disconnect" + } + }, + "realms_warning_button_panel/realms_warning_button_gap": { + "file": "ui/disconnect_screen.json", + "type": "panel", + "extend": { + "name": "spacing_gap", + "namespace": "disconnect" + } + }, + "realms_warning_button_panel/cancel_button_panel": { + "file": "ui/disconnect_screen.json", + "type": "panel", + "children": [ + "cancel_button" + ] + }, + "realms_warning_button_panel/cancel_button_panel/cancel_button": { + "file": "ui/disconnect_screen.json", + "type": "button", + "extend": { + "name": "cancel_button", + "namespace": "disconnect" + } + }, + "open_account_setting_button": { + "file": "ui/disconnect_screen.json", + "type": "button", + "extend": { + "name": "hyperlink_button", + "namespace": "common_buttons" + } + } + }, + "display_logged_error": { + "display_logged_error_screen": { + "file": "ui/display_logged_error_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "factory_panel": { + "file": "ui/display_logged_error_screen.json", + "type": "panel", + "children": [ + "error_dialog_factory" + ] + }, + "factory_panel/error_dialog_factory": { + "file": "ui/display_logged_error_screen.json", + "type": "factory" + }, + "display_logged_error_modal": { + "file": "ui/display_logged_error_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_two_buttons", + "namespace": "common_dialogs" + } + }, + "error_message_stack": { + "file": "ui/display_logged_error_screen.json", + "type": "stack_panel", + "children": [ + "error_message", + "error_count" + ] + }, + "error_message_stack/error_message": { + "file": "ui/display_logged_error_screen.json", + "type": "label" + }, + "error_message_stack/error_count": { + "file": "ui/display_logged_error_screen.json", + "type": "label" + }, + "input_blocking_button_base": { + "file": "ui/display_logged_error_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "details_button": { + "file": "ui/display_logged_error_screen.json", + "type": "button", + "extend": { + "name": "input_blocking_button_base", + "namespace": "display_logged_error" + } + }, + "dismiss_button": { + "file": "ui/display_logged_error_screen.json", + "type": "button", + "extend": { + "name": "input_blocking_button_base", + "namespace": "display_logged_error" + } + }, + "error_details_modal": { + "file": "ui/display_logged_error_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_two_buttons", + "namespace": "common_dialogs" + } + }, + "copy_path_button": { + "file": "ui/display_logged_error_screen.json", + "type": "button", + "extend": { + "name": "input_blocking_button_base", + "namespace": "display_logged_error" + } + }, + "hide_error_details_button": { + "file": "ui/display_logged_error_screen.json", + "type": "button", + "extend": { + "name": "input_blocking_button_base", + "namespace": "display_logged_error" + } + }, + "error_stack_scrolling_panel": { + "file": "ui/display_logged_error_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "error_stack": { + "file": "ui/display_logged_error_screen.json", + "type": "stack_panel" + }, + "error_controller_panel": { + "file": "ui/display_logged_error_screen.json", + "type": "panel", + "children": [ + "error_message", + "controller_button" + ] + }, + "error_controller_panel/error_message": { + "file": "ui/display_logged_error_screen.json", + "type": "stack_panel", + "extend": { + "name": "error_base", + "namespace": "display_logged_error" + } + }, + "error_controller_panel/controller_button": { + "file": "ui/display_logged_error_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "hover", + "pressed" + ] + }, + "error_controller_panel/controller_button/hover": { + "file": "ui/display_logged_error_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "error_controller_panel/controller_button/pressed": { + "file": "ui/display_logged_error_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "error_base": { + "file": "ui/display_logged_error_screen.json", + "type": "stack_panel", + "children": [ + "error_message", + "expand_button" + ] + }, + "error_base/error_message": { + "file": "ui/display_logged_error_screen.json", + "type": "label" + }, + "error_base/expand_button": { + "file": "ui/display_logged_error_screen.json", + "type": "button", + "extend": { + "name": "input_blocking_button_base", + "namespace": "display_logged_error" + } + }, + "error_short": { + "file": "ui/display_logged_error_screen.json", + "type": "panel", + "extend": { + "name": "error_controller_panel", + "namespace": "display_logged_error" + } + }, + "error_expanded": { + "file": "ui/display_logged_error_screen.json", + "type": "panel", + "extend": { + "name": "error_controller_panel", + "namespace": "display_logged_error" + } + } + }, + "discovery_dialog": { + "service_body_label": { + "file": "ui/edu_discovery_dialog.json", + "type": "label" + }, + "service_button": { + "file": "ui/edu_discovery_dialog.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "service_buttons": { + "file": "ui/edu_discovery_dialog.json", + "type": "stack_panel" + }, + "content": { + "file": "ui/edu_discovery_dialog.json", + "type": "stack_panel", + "children": [ + "body_text", + "text_to_button_padding", + "buttons" + ] + }, + "content/body_text": { + "file": "ui/edu_discovery_dialog.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "content/text_to_button_padding": { + "file": "ui/edu_discovery_dialog.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "content/buttons": { + "file": "ui/edu_discovery_dialog.json", + "type": "stack_panel", + "extend": { + "name": "service_buttons", + "namespace": "discovery_dialog" + } + }, + "service_dialog": { + "file": "ui/edu_discovery_dialog.json", + "type": "input_panel", + "extend": { + "name": "form_fit_modal_dialog_popup", + "namespace": "popup_dialog" + } + }, + "discovery_dialog_factory": { + "file": "ui/edu_discovery_dialog.json", + "type": "factory" + } + }, + "edu_featured": { + "featured_button_content": { + "file": "ui/edu_featured.json", + "type": "panel", + "children": [ + "button_label" + ] + }, + "featured_button_content/button_label": { + "file": "ui/edu_featured.json", + "type": "label", + "extend": { + "name": "new_ui_binding_button_label", + "namespace": "common_buttons" + } + }, + "featured_button": { + "file": "ui/edu_featured.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + } + }, + "edu_quit_button": { + "quit_button": { + "file": "ui/edu_pause_screen_pause_button.json", + "type": "button", + "extend": { + "name": "quit_button", + "namespace": "pause" + } + } + }, + "persona_emote": { + "emote_wheel_screen": { + "file": "ui/emote_wheel_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "emote_wheel_touch_zone": { + "file": "ui/emote_wheel_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "emote_wheel_screen_content": { + "file": "ui/emote_wheel_screen.json", + "type": "stack_panel", + "children": [ + "top_padding", + "root_panel", + "instruction_padding", + "instruction_panel", + "dressing_room_button_panel", + "bottom_padding" + ] + }, + "emote_wheel_screen_content/top_padding": { + "file": "ui/emote_wheel_screen.json", + "type": "panel" + }, + "emote_wheel_screen_content/root_panel": { + "file": "ui/emote_wheel_screen.json", + "type": "panel", + "children": [ + "emotes_panel" + ] + }, + "emote_wheel_screen_content/root_panel/emotes_panel": { + "file": "ui/emote_wheel_screen.json", + "type": "panel", + "extend": { + "name": "squaring_panel", + "namespace": "common" + } + }, + "emote_wheel_screen_content/instruction_padding": { + "file": "ui/emote_wheel_screen.json", + "type": "panel" + }, + "emote_wheel_screen_content/instruction_panel": { + "file": "ui/emote_wheel_screen.json", + "type": "panel", + "children": [ + "instruction_background" + ] + }, + "emote_wheel_screen_content/instruction_panel/instruction_background": { + "file": "ui/emote_wheel_screen.json", + "type": "image", + "children": [ + "gamepad_instruction_stack", + "instruction_label_keyboard", + "instruction_label_touch" + ] + }, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack": { + "file": "ui/emote_wheel_screen.json", + "type": "stack_panel", + "children": [ + "instruction_label_gamepad", + "gamepad_helpers" + ] + }, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/instruction_label_gamepad": { + "file": "ui/emote_wheel_screen.json", + "type": "label" + }, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers": { + "file": "ui/emote_wheel_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "gamepad_helper_stack" + ] + }, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack": { + "file": "ui/emote_wheel_screen.json", + "type": "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": { + "file": "ui/emote_wheel_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_start", + "namespace": "common" + } + }, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel": { + "file": "ui/emote_wheel_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "gamepad_exit" + ] + }, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel/gamepad_exit": { + "file": "ui/emote_wheel_screen.json", + "type": "label" + }, + "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_keyboard": { + "file": "ui/emote_wheel_screen.json", + "type": "label" + }, + "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_touch": { + "file": "ui/emote_wheel_screen.json", + "type": "label" + }, + "emote_wheel_screen_content/dressing_room_button_panel": { + "file": "ui/emote_wheel_screen.json", + "type": "panel", + "children": [ + "dressing_room_button" + ] + }, + "emote_wheel_screen_content/dressing_room_button_panel/dressing_room_button": { + "file": "ui/emote_wheel_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "emote_wheel_screen_content/bottom_padding": { + "file": "ui/emote_wheel_screen.json", + "type": "panel" + }, + "swap_emote_button": { + "file": "ui/emote_wheel_screen.json", + "type": "button", + "extend": { + "name": "dark_text_button", + "namespace": "common_buttons" + } + } + }, + "enchanting": { + "enchanting_image": { + "file": "ui/enchanting_screen.json", + "type": "image" + }, + "lapis_image": { + "file": "ui/enchanting_screen.json", + "type": "image", + "extend": { + "name": "enchanting_image", + "namespace": "enchanting" + } + }, + "dust_image": { + "file": "ui/enchanting_screen.json", + "type": "image", + "extend": { + "name": "enchanting_image", + "namespace": "enchanting" + } + }, + "dust_image_selectable": { + "file": "ui/enchanting_screen.json", + "type": "image", + "extend": { + "name": "dust_image", + "namespace": "enchanting" + } + }, + "dust_image_unselectable": { + "file": "ui/enchanting_screen.json", + "type": "image", + "extend": { + "name": "dust_image", + "namespace": "enchanting" + } + }, + "dust_template": { + "file": "ui/enchanting_screen.json", + "type": "panel", + "children": [ + "dust_image_selectable", + "dust_image_unselectable" + ] + }, + "dust_template/dust_image_selectable": { + "file": "ui/enchanting_screen.json", + "type": "image", + "extend": { + "name": "dust_image_selectable", + "namespace": "enchanting" + } + }, + "dust_template/dust_image_unselectable": { + "file": "ui/enchanting_screen.json", + "type": "image", + "extend": { + "name": "dust_image_unselectable", + "namespace": "enchanting" + } + }, + "dust_panel": { + "file": "ui/enchanting_screen.json", + "type": "grid", + "children": [ + "a", + "b", + "c" + ] + }, + "dust_panel/a": { + "file": "ui/enchanting_screen.json", + "type": "panel", + "extend": { + "name": "dust_template", + "namespace": "enchanting" + } + }, + "dust_panel/b": { + "file": "ui/enchanting_screen.json", + "type": "panel", + "extend": { + "name": "dust_template", + "namespace": "enchanting" + } + }, + "dust_panel/c": { + "file": "ui/enchanting_screen.json", + "type": "panel", + "extend": { + "name": "dust_template", + "namespace": "enchanting" + } + }, + "background_with_hover_text": { + "file": "ui/enchanting_screen.json", + "type": "image", + "extend": { + "name": "enchanting_image", + "namespace": "enchanting" + }, + "children": [ + "hover_text" + ] + }, + "background_with_hover_text/hover_text": { + "file": "ui/enchanting_screen.json", + "type": "custom", + "extend": { + "name": "hover_text", + "namespace": "common" + } + }, + "dark_background": { + "file": "ui/enchanting_screen.json", + "type": "image", + "extend": { + "name": "enchanting_image", + "namespace": "enchanting" + } + }, + "dark_background_with_hover_text": { + "file": "ui/enchanting_screen.json", + "type": "image", + "extend": { + "name": "background_with_hover_text", + "namespace": "enchanting" + } + }, + "active_background": { + "file": "ui/enchanting_screen.json", + "type": "image", + "extend": { + "name": "enchanting_image", + "namespace": "enchanting" + } + }, + "active_background_with_hover_text": { + "file": "ui/enchanting_screen.json", + "type": "image", + "extend": { + "name": "background_with_hover_text", + "namespace": "enchanting" + } + }, + "enchant_runes": { + "file": "ui/enchanting_screen.json", + "type": "label" + }, + "enchant_cost": { + "file": "ui/enchanting_screen.json", + "type": "label" + }, + "success_runes": { + "file": "ui/enchanting_screen.json", + "type": "label", + "extend": { + "name": "enchant_runes", + "namespace": "enchanting" + } + }, + "fail_runes": { + "file": "ui/enchanting_screen.json", + "type": "label", + "extend": { + "name": "enchant_runes", + "namespace": "enchanting" + } + }, + "success_cost": { + "file": "ui/enchanting_screen.json", + "type": "label", + "extend": { + "name": "enchant_cost", + "namespace": "enchanting" + } + }, + "fail_cost": { + "file": "ui/enchanting_screen.json", + "type": "label", + "extend": { + "name": "enchant_cost", + "namespace": "enchanting" + } + }, + "enchanting_label": { + "file": "ui/enchanting_screen.json", + "type": "label" + }, + "base_button": { + "file": "ui/enchanting_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + } + }, + "unselectable_button": { + "file": "ui/enchanting_screen.json", + "type": "button", + "extend": { + "name": "base_button", + "namespace": "enchanting" + }, + "children": [ + "default", + "hover", + "pressed", + "rune_text", + "enchant_cost" + ] + }, + "unselectable_button/default": { + "file": "ui/enchanting_screen.json", + "type": "image", + "extend": { + "name": "dark_background", + "namespace": "enchanting" + } + }, + "unselectable_button/hover": { + "file": "ui/enchanting_screen.json", + "type": "image", + "extend": { + "name": "dark_background_with_hover_text", + "namespace": "enchanting" + } + }, + "unselectable_button/pressed": { + "file": "ui/enchanting_screen.json", + "type": "image", + "extend": { + "name": "dark_background", + "namespace": "enchanting" + } + }, + "unselectable_button/rune_text": { + "file": "ui/enchanting_screen.json", + "type": "label", + "extend": { + "name": "fail_runes", + "namespace": "enchanting" + } + }, + "unselectable_button/enchant_cost": { + "file": "ui/enchanting_screen.json", + "type": "label", + "extend": { + "name": "fail_cost", + "namespace": "enchanting" + } + }, + "selectable_button": { + "file": "ui/enchanting_screen.json", + "type": "button", + "extend": { + "name": "base_button", + "namespace": "enchanting" + }, + "children": [ + "default", + "hover", + "pressed", + "rune_text", + "enchant_cost" + ] + }, + "selectable_button/default": { + "file": "ui/enchanting_screen.json", + "type": "image", + "extend": { + "name": "active_background", + "namespace": "enchanting" + } + }, + "selectable_button/hover": { + "file": "ui/enchanting_screen.json", + "type": "image", + "extend": { + "name": "active_background_with_hover_text", + "namespace": "enchanting" + } + }, + "selectable_button/pressed": { + "file": "ui/enchanting_screen.json", + "type": "image", + "extend": { + "name": "dark_background", + "namespace": "enchanting" + } + }, + "selectable_button/rune_text": { + "file": "ui/enchanting_screen.json", + "type": "label", + "extend": { + "name": "fail_runes", + "namespace": "enchanting" + } + }, + "selectable_button/enchant_cost": { + "file": "ui/enchanting_screen.json", + "type": "label", + "extend": { + "name": "success_cost", + "namespace": "enchanting" + } + }, + "enchant_button_panel": { + "file": "ui/enchanting_screen.json", + "type": "panel", + "children": [ + "dark_background", + "unselectable_button", + "selectable_button" + ] + }, + "enchant_button_panel/dark_background": { + "file": "ui/enchanting_screen.json", + "type": "image", + "extend": { + "name": "dark_background", + "namespace": "enchanting" + } + }, + "enchant_button_panel/unselectable_button": { + "file": "ui/enchanting_screen.json", + "type": "button", + "extend": { + "name": "unselectable_button", + "namespace": "enchanting" + } + }, + "enchant_button_panel/selectable_button": { + "file": "ui/enchanting_screen.json", + "type": "button", + "extend": { + "name": "selectable_button", + "namespace": "enchanting" + } + }, + "enchanting_panel_top_half": { + "file": "ui/enchanting_screen.json", + "type": "panel", + "children": [ + "enchanting_label", + "enchanting_book_panel", + "item_grid", + "lapis_grid", + "grid_panel" + ] + }, + "enchanting_panel_top_half/enchanting_label": { + "file": "ui/enchanting_screen.json", + "type": "label", + "extend": { + "name": "enchanting_label", + "namespace": "enchanting" + } + }, + "enchanting_panel_top_half/enchanting_book_panel": { + "file": "ui/enchanting_screen.json", + "type": "panel", + "children": [ + "enchanting_book" + ] + }, + "enchanting_panel_top_half/enchanting_book_panel/enchanting_book": { + "file": "ui/enchanting_screen.json", + "type": "custom" + }, + "enchanting_panel_top_half/item_grid": { + "file": "ui/enchanting_screen.json", + "type": "grid", + "children": [ + "item_slot" + ] + }, + "enchanting_panel_top_half/item_grid/item_slot": { + "file": "ui/enchanting_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "enchanting_panel_top_half/lapis_grid": { + "file": "ui/enchanting_screen.json", + "type": "grid", + "children": [ + "lapis" + ] + }, + "enchanting_panel_top_half/lapis_grid/lapis": { + "file": "ui/enchanting_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "enchanting_panel_top_half/grid_panel": { + "file": "ui/enchanting_screen.json", + "type": "panel", + "children": [ + "indent", + "dust_panel", + "enchantments_grid" + ] + }, + "enchanting_panel_top_half/grid_panel/indent": { + "file": "ui/enchanting_screen.json", + "type": "image", + "extend": { + "name": "cell_image", + "namespace": "common" + } + }, + "enchanting_panel_top_half/grid_panel/dust_panel": { + "file": "ui/enchanting_screen.json", + "type": "grid", + "extend": { + "name": "dust_panel", + "namespace": "enchanting" + } + }, + "enchanting_panel_top_half/grid_panel/enchantments_grid": { + "file": "ui/enchanting_screen.json", + "type": "grid" + }, + "enchanting_panel": { + "file": "ui/enchanting_screen.json", + "type": "panel", + "children": [ + "container_gamepad_helpers", + "selected_item_details_factory", + "item_lock_notification_factory", + "root_panel", + "flying_item_renderer" + ] + }, + "enchanting_panel/container_gamepad_helpers": { + "file": "ui/enchanting_screen.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "enchanting_panel/selected_item_details_factory": { + "file": "ui/enchanting_screen.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "enchanting_panel/item_lock_notification_factory": { + "file": "ui/enchanting_screen.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "enchanting_panel/root_panel": { + "file": "ui/enchanting_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "common_panel", + "enchanting_screen_inventory", + "inventory_selected_icon_button", + "gamepad_cursor" + ] + }, + "enchanting_panel/root_panel/common_panel": { + "file": "ui/enchanting_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "enchanting_panel/root_panel/enchanting_screen_inventory": { + "file": "ui/enchanting_screen.json", + "type": "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": { + "file": "ui/enchanting_screen.json", + "type": "panel", + "extend": { + "name": "enchanting_panel_top_half", + "namespace": "enchanting" + } + }, + "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_panel_bottom_half_with_label": { + "file": "ui/enchanting_screen.json", + "type": "panel", + "extend": { + "name": "inventory_panel_bottom_half_with_label", + "namespace": "common" + } + }, + "enchanting_panel/root_panel/enchanting_screen_inventory/hotbar_grid": { + "file": "ui/enchanting_screen.json", + "type": "grid", + "extend": { + "name": "hotbar_grid_template", + "namespace": "common" + } + }, + "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_take_progress_icon_button": { + "file": "ui/enchanting_screen.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "enchanting_panel/root_panel/inventory_selected_icon_button": { + "file": "ui/enchanting_screen.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "enchanting_panel/root_panel/gamepad_cursor": { + "file": "ui/enchanting_screen.json", + "type": "button", + "extend": { + "name": "gamepad_cursor_button", + "namespace": "common" + } + }, + "enchanting_panel/flying_item_renderer": { + "file": "ui/enchanting_screen.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + }, + "enchanting_screen": { + "file": "ui/enchanting_screen.json", + "type": "screen", + "extend": { + "name": "inventory_screen_common", + "namespace": "common" + } + } + }, + "enchanting_pocket": { + "generic_label": { + "file": "ui/enchanting_screen_pocket.json", + "type": "label" + }, + "background_image": { + "file": "ui/enchanting_screen_pocket.json", + "type": "image" + }, + "inventory_grid": { + "file": "ui/enchanting_screen_pocket.json", + "type": "grid" + }, + "inventory_content": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "inventory_content/scrolling_panel": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "lapis_image": { + "file": "ui/enchanting_screen_pocket.json", + "type": "image", + "extend": { + "name": "enchanting_image", + "namespace": "enchanting" + } + }, + "enchanting_slots_panel": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel", + "children": [ + "input_slot", + "lapis_slot" + ] + }, + "enchanting_slots_panel/input_slot": { + "file": "ui/enchanting_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_large_container_item", + "namespace": "common" + } + }, + "enchanting_slots_panel/lapis_slot": { + "file": "ui/enchanting_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_large_container_item", + "namespace": "common" + } + }, + "enchant_text_runes": { + "file": "ui/enchanting_screen_pocket.json", + "type": "label", + "extend": { + "name": "enchant_runes", + "namespace": "enchanting" + } + }, + "show_highlighted_slot_control": { + "file": "ui/enchanting_screen_pocket.json", + "type": "image", + "extend": { + "name": "pocket_ui_highlight_selected_slot", + "namespace": "common" + } + }, + "show_highlighted_hover_slot_control": { + "file": "ui/enchanting_screen_pocket.json", + "type": "image", + "extend": { + "name": "pocket_ui_highlight_selected_slot", + "namespace": "common" + } + }, + "inactive_background": { + "file": "ui/enchanting_screen_pocket.json", + "type": "image" + }, + "unselectable_button": { + "file": "ui/enchanting_screen_pocket.json", + "type": "button", + "extend": { + "name": "unselectable_button", + "namespace": "enchanting" + }, + "children": [ + "default", + "hover", + "pressed", + "enchant_cost" + ] + }, + "unselectable_button/default": { + "file": "ui/enchanting_screen_pocket.json", + "type": "image", + "extend": { + "name": "dark_background", + "namespace": "enchanting" + } + }, + "unselectable_button/hover": { + "file": "ui/enchanting_screen_pocket.json", + "type": "image", + "extend": { + "name": "dark_background_with_hover_text", + "namespace": "enchanting" + } + }, + "unselectable_button/pressed": { + "file": "ui/enchanting_screen_pocket.json", + "type": "image", + "extend": { + "name": "dark_background", + "namespace": "enchanting" + } + }, + "unselectable_button/enchant_cost": { + "file": "ui/enchanting_screen_pocket.json", + "type": "label", + "extend": { + "name": "fail_cost", + "namespace": "enchanting" + } + }, + "selectable_button": { + "file": "ui/enchanting_screen_pocket.json", + "type": "button", + "extend": { + "name": "selectable_button", + "namespace": "enchanting" + }, + "children": [ + "default", + "hover", + "pressed", + "enchant_cost" + ] + }, + "selectable_button/default": { + "file": "ui/enchanting_screen_pocket.json", + "type": "image", + "extend": { + "name": "active_background", + "namespace": "enchanting" + } + }, + "selectable_button/hover": { + "file": "ui/enchanting_screen_pocket.json", + "type": "image", + "extend": { + "name": "active_background_with_hover_text", + "namespace": "enchanting" + } + }, + "selectable_button/pressed": { + "file": "ui/enchanting_screen_pocket.json", + "type": "image", + "extend": { + "name": "dark_background", + "namespace": "enchanting" + } + }, + "selectable_button/enchant_cost": { + "file": "ui/enchanting_screen_pocket.json", + "type": "label", + "extend": { + "name": "success_cost", + "namespace": "enchanting" + } + }, + "enchant_button_panel": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel", + "children": [ + "inactive_background", + "unselectable_button", + "selectable_button", + "dust", + "rune_text", + "highlight" + ] + }, + "enchant_button_panel/inactive_background": { + "file": "ui/enchanting_screen_pocket.json", + "type": "image", + "extend": { + "name": "inactive_background", + "namespace": "enchanting_pocket" + } + }, + "enchant_button_panel/unselectable_button": { + "file": "ui/enchanting_screen_pocket.json", + "type": "button", + "extend": { + "name": "unselectable_button", + "namespace": "enchanting_pocket" + } + }, + "enchant_button_panel/selectable_button": { + "file": "ui/enchanting_screen_pocket.json", + "type": "button", + "extend": { + "name": "selectable_button", + "namespace": "enchanting_pocket" + } + }, + "enchant_button_panel/dust": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel", + "extend": { + "name": "dust_template", + "namespace": "enchanting" + } + }, + "enchant_button_panel/rune_text": { + "file": "ui/enchanting_screen_pocket.json", + "type": "label", + "extend": { + "name": "enchant_text_runes", + "namespace": "enchanting_pocket" + } + }, + "enchant_button_panel/highlight": { + "file": "ui/enchanting_screen_pocket.json", + "type": "image", + "extend": { + "name": "show_highlighted_slot_control", + "namespace": "enchanting_pocket" + } + }, + "enchant_selection_panel": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel", + "children": [ + "grid" + ] + }, + "enchant_selection_panel/grid": { + "file": "ui/enchanting_screen_pocket.json", + "type": "grid", + "children": [ + "button1", + "button2", + "button3" + ] + }, + "enchant_selection_panel/grid/button1": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel", + "extend": { + "name": "enchant_button_panel", + "namespace": "enchanting_pocket" + } + }, + "enchant_selection_panel/grid/button2": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel", + "extend": { + "name": "enchant_button_panel", + "namespace": "enchanting_pocket" + } + }, + "enchant_selection_panel/grid/button3": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel", + "extend": { + "name": "enchant_button_panel", + "namespace": "enchanting_pocket" + } + }, + "item_renderer": { + "file": "ui/enchanting_screen_pocket.json", + "type": "custom" + }, + "confirm_default_control": { + "file": "ui/enchanting_screen_pocket.json", + "type": "image" + }, + "enchanting_confirm_button": { + "file": "ui/enchanting_screen_pocket.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed", + "arrow_active", + "arrow_inactive", + "input_item_renderer", + "output_item_renderer" + ] + }, + "enchanting_confirm_button/default": { + "file": "ui/enchanting_screen_pocket.json", + "type": "image", + "extend": { + "name": "confirm_default_control", + "namespace": "enchanting_pocket" + } + }, + "enchanting_confirm_button/hover": { + "file": "ui/enchanting_screen_pocket.json", + "type": "image", + "extend": { + "name": "confirm_default_control", + "namespace": "enchanting_pocket" + } + }, + "enchanting_confirm_button/pressed": { + "file": "ui/enchanting_screen_pocket.json", + "type": "image" + }, + "enchanting_confirm_button/arrow_active": { + "file": "ui/enchanting_screen_pocket.json", + "type": "image" + }, + "enchanting_confirm_button/arrow_inactive": { + "file": "ui/enchanting_screen_pocket.json", + "type": "image" + }, + "enchanting_confirm_button/input_item_renderer": { + "file": "ui/enchanting_screen_pocket.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "enchanting_pocket" + } + }, + "enchanting_confirm_button/output_item_renderer": { + "file": "ui/enchanting_screen_pocket.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "enchanting_pocket" + } + }, + "enchanting_confirm_panel": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel", + "children": [ + "confirm", + "enchantment_hint_text" + ] + }, + "enchanting_confirm_panel/confirm": { + "file": "ui/enchanting_screen_pocket.json", + "type": "button", + "extend": { + "name": "enchanting_confirm_button", + "namespace": "enchanting_pocket" + } + }, + "enchanting_confirm_panel/enchantment_hint_text": { + "file": "ui/enchanting_screen_pocket.json", + "type": "label", + "extend": { + "name": "generic_label", + "namespace": "enchanting_pocket" + } + }, + "enchanting_book_contents_panel": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel", + "children": [ + "enchanting_book", + "player_level_label", + "level_label" + ] + }, + "enchanting_book_contents_panel/enchanting_book": { + "file": "ui/enchanting_screen_pocket.json", + "type": "custom" + }, + "enchanting_book_contents_panel/player_level_label": { + "file": "ui/enchanting_screen_pocket.json", + "type": "label", + "extend": { + "name": "generic_label", + "namespace": "enchanting_pocket" + } + }, + "enchanting_book_contents_panel/level_label": { + "file": "ui/enchanting_screen_pocket.json", + "type": "label", + "extend": { + "name": "generic_label", + "namespace": "enchanting_pocket" + } + }, + "enchanting_book_panel": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel", + "children": [ + "enchanting_slots_panel" + ] + }, + "enchanting_book_panel/enchanting_slots_panel": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel", + "extend": { + "name": "enchanting_book_contents_panel", + "namespace": "enchanting_pocket" + } + }, + "enchanting_slots_and_selection": { + "file": "ui/enchanting_screen_pocket.json", + "type": "stack_panel", + "children": [ + "enchanting_slots_panel", + "pad1", + "enchant_selection_panel" + ] + }, + "enchanting_slots_and_selection/enchanting_slots_panel": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel", + "extend": { + "name": "enchanting_slots_panel", + "namespace": "enchanting_pocket" + } + }, + "enchanting_slots_and_selection/pad1": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel" + }, + "enchanting_slots_and_selection/enchant_selection_panel": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel", + "extend": { + "name": "enchant_selection_panel", + "namespace": "enchanting_pocket" + } + }, + "enchanting_contents_panel": { + "file": "ui/enchanting_screen_pocket.json", + "type": "stack_panel", + "children": [ + "fill1", + "enchanting_book_panel", + "pad1", + "enchanting_slots_and_selection", + "pad2", + "enchanting_confirm_panel", + "fill2" + ] + }, + "enchanting_contents_panel/fill1": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel" + }, + "enchanting_contents_panel/enchanting_book_panel": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel", + "extend": { + "name": "enchanting_book_panel", + "namespace": "enchanting_pocket" + } + }, + "enchanting_contents_panel/pad1": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel" + }, + "enchanting_contents_panel/enchanting_slots_and_selection": { + "file": "ui/enchanting_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "enchanting_slots_and_selection", + "namespace": "enchanting_pocket" + } + }, + "enchanting_contents_panel/pad2": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel" + }, + "enchanting_contents_panel/enchanting_confirm_panel": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel", + "extend": { + "name": "enchanting_confirm_panel", + "namespace": "enchanting_pocket" + } + }, + "enchanting_contents_panel/fill2": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel" + }, + "header": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel", + "children": [ + "header_background", + "legacy_pocket_close_button", + "panel" + ] + }, + "header/header_background": { + "file": "ui/enchanting_screen_pocket.json", + "type": "image" + }, + "header/legacy_pocket_close_button": { + "file": "ui/enchanting_screen_pocket.json", + "type": "button", + "extend": { + "name": "legacy_pocket_close_button", + "namespace": "common" + } + }, + "header/panel": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel", + "children": [ + "title_label" + ] + }, + "header/panel/title_label": { + "file": "ui/enchanting_screen_pocket.json", + "type": "label", + "extend": { + "name": "generic_label", + "namespace": "enchanting_pocket" + } + }, + "inventory_and_enchanting_panel": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel", + "children": [ + "inventory_half_screen", + "enchanting_half_screen" + ] + }, + "inventory_and_enchanting_panel/inventory_half_screen": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel", + "children": [ + "inventory_content" + ] + }, + "inventory_and_enchanting_panel/inventory_half_screen/inventory_content": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel", + "extend": { + "name": "inventory_content", + "namespace": "enchanting_pocket" + } + }, + "inventory_and_enchanting_panel/enchanting_half_screen": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel", + "children": [ + "enchanting_content" + ] + }, + "inventory_and_enchanting_panel/enchanting_half_screen/enchanting_content": { + "file": "ui/enchanting_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "enchanting_contents_panel", + "namespace": "enchanting_pocket" + } + }, + "header_and_content_stack_panel": { + "file": "ui/enchanting_screen_pocket.json", + "type": "stack_panel", + "children": [ + "header", + "inventory_and_enchanting_panel" + ] + }, + "header_and_content_stack_panel/header": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "enchanting_pocket" + } + }, + "header_and_content_stack_panel/inventory_and_enchanting_panel": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel", + "extend": { + "name": "inventory_and_enchanting_panel", + "namespace": "enchanting_pocket" + } + }, + "error_text_panel": { + "file": "ui/enchanting_screen_pocket.json", + "type": "panel", + "children": [ + "item_text_label" + ] + }, + "error_text_panel/item_text_label": { + "file": "ui/enchanting_screen_pocket.json", + "type": "label", + "extend": { + "name": "generic_label", + "namespace": "enchanting_pocket" + } + }, + "enchanting_panel": { + "file": "ui/enchanting_screen_pocket.json", + "type": "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": { + "file": "ui/enchanting_screen_pocket.json", + "type": "image", + "extend": { + "name": "background_image", + "namespace": "enchanting_pocket" + } + }, + "enchanting_panel/root_panel": { + "file": "ui/enchanting_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + } + }, + "enchanting_panel/header_and_content_stack_panel": { + "file": "ui/enchanting_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "header_and_content_stack_panel", + "namespace": "enchanting_pocket" + } + }, + "enchanting_panel/container_gamepad_helpers": { + "file": "ui/enchanting_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "enchanting_panel/inventory_selected_icon_button": { + "file": "ui/enchanting_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "enchanting_panel/hold_icon": { + "file": "ui/enchanting_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "enchanting_panel/selected_item_details_factory": { + "file": "ui/enchanting_screen_pocket.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "enchanting_panel/item_lock_notification_factory": { + "file": "ui/enchanting_screen_pocket.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "enchanting_panel/flying_item_renderer": { + "file": "ui/enchanting_screen_pocket.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + } + }, + "encyclopedia": { + "encyclopedia_screen": { + "file": "ui/encyclopedia_screen.json", + "type": "screen", + "extend": { + "name": "screen_base", + "namespace": "how_to_play_common" + } + }, + "encyclopedia_selector_stack_panel": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "children": [ + "how_to_play_selector_pane" + ] + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane": { + "file": "ui/encyclopedia_screen.json", + "type": "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "topic_category", + "namespace": "how_to_play_common" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "armor_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_stand_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "armor_stand_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/banners_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "banners_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beacons_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "beacons_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beds_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "beds_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/blocks_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "blocks_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/book_and_quill_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "book_and_quill_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/chests_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "chests_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/conduits_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "conduits_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dyes_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "dyes_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/farming_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "farming_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fireworks_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "fireworks_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fishing_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "fishing_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jigsaw_blocks_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "jigsaw_blocks_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mounts_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "mounts_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/navigation_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "navigation_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/nether_portals_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "nether_portals_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/pets_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "pets_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/raids_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "raids_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/ranching_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "ranching_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/scaffolding_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "scaffolding_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/structure_blocks_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "structure_blocks_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/tools_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "tools_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/transportation_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "transportation_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/trading_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "trading_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/weapons_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "weapons_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/stands_and_tables_category": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "topic_category", + "namespace": "how_to_play_common" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/anvil_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "anvil_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/brewing_stand_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "brewing_stand_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/cauldron_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "cauldron_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/crafting_table_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "crafting_table_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/enchanting_table_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "enchanting_table_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/furnace_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "furnace_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/loom_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "loom_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/smithing_table_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "smithing_table_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_engineering_category": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "topic_category", + "namespace": "how_to_play_common" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/droppers_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "droppers_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dispensers_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "dispensers_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/hoppers_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "hoppers_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jukebox_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "jukebox_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "redstone_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_dimension_category": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "topic_category", + "namespace": "how_to_play_common" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "the_end_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/eye_of_ender_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "eye_of_ender_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/end_cities_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "end_cities_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/elytra_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "elytra_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/shulker_boxes_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "shulker_boxes_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/options_and_cheats_category": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "topic_category", + "namespace": "how_to_play_common" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/game_settings_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "game_settings_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/difficulty_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "difficulty_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/adventure_mode_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "adventure_mode_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/creative_mode_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "creative_mode_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/commands_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "commands_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/host_and_player_options_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "host_and_player_options_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/command_blocks_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "command_blocks_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_category": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "topic_category", + "namespace": "how_to_play_common" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_stories_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "realms_stories_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/marketplace_category": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "topic_category", + "namespace": "how_to_play_common" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/minecoins_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "minecoins_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/addons_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "addons_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/worlds_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "worlds_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/textures_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "textures_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/skins_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "skins_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mashups_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "mashups_button", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "children": [ + "general_tips_sections" + ] + }, + "encyclopedia_section_content_panels/general_tips_sections": { + "file": "ui/encyclopedia_screen.json", + "type": "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": { + "file": "ui/encyclopedia_screen.json", + "type": "input_panel", + "extend": { + "name": "section_contents_header", + "namespace": "how_to_play_common" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/armor_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "armor_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/armor_stand_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "armor_stand_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/banners_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "banners_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/beacons_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "beacons_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/beds_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "beds_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/blocks_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "blocks_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/book_and_quill_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "book_and_quill_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/chests_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "chests_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/conduits_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "conduits_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/dyes_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "dyes_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/farming_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "farming_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/fireworks_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "fireworks_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/fishing_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "fishing_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/jigsaw": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "jigsaw_blocks_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/mounts_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "mounts_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/navigation_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "navigation_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/nether_portals_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "nether_portals_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/pets_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "pets_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/raids_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "raids_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/ranching_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "ranching_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/scaffolding_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "scaffolding_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/structure_blocks_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "structure_blocks_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/tools_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "tools_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/transportation_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "transportation_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/trading_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "trading_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/weapons_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "weapons_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/anvil_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "anvil_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/brewing_stand_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "brewing_stand_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/cauldron_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "cauldron_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/crafting_table_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "crafting_table_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/enchanting_table_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "enchanting_table_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/furnace_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "furnace_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/loom_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "loom_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/smithing_table_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "smithing_table_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/droppers_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "droppers_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/dispensers_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "dispensers_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/hoppers_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "hoppers_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/jukebox_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "jukebox_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/redstone_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "redstone_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/the_end_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "the_end_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/eye_of_ender_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "eye_of_ender_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/end_cities_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "end_cities_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/elytra_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "elytra_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/shulker_boxes_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "shulker_boxes_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/game_settings_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "game_settings_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/difficulty_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "difficulty_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/adventure_mode_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "adventure_mode_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/creative_mode_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "creative_mode_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/commands_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "commands_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/host_and_player_options_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "host_and_player_options_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/command_blocks_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "command_blocks_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/realms_stories_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "realms_stories_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/minecoins_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "minecoins_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/addons_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "addons_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/worlds_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "worlds_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/textures_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "textures_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/skins_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "skins_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/mashups_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "mashups_section", + "namespace": "encyclopedia" + } + }, + "encyclopedia_section_content_panels/general_tips_sections/section_contents_footer": { + "file": "ui/encyclopedia_screen.json", + "type": "input_panel", + "extend": { + "name": "section_contents_footer", + "namespace": "how_to_play_common" + } + }, + "adventure_mode_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "adventure_mode_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1", + "padding_1", + "paragraph_2" + ] + }, + "adventure_mode_section/paragraph_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "adventure_mode_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "adventure_mode_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "anvil_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "anvil_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "anvil_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "anvil_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "anvil_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "anvil_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "anvil_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "anvil_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "anvil_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "anvil_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "anvil_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "anvil_section/paragraph_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "armor_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "armor_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_with_icons", + "namespace": "how_to_play_common" + } + }, + "armor_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "armor_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "armor_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "armor_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "armor_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "armor_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "armor_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "armor_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "armor_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "armor_section/paragraph_5_keyboard": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "armor_section/paragraph_5_gamepad": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "armor_section/paragraph_5a_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "armor_section/padding_5a_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "touch_padding", + "namespace": "how_to_play_common" + } + }, + "armor_section/paragraph_5b_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "armor_section/padding_5b_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "touch_padding", + "namespace": "how_to_play_common" + } + }, + "armor_section/paragraph_5c_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "armor_section/padding_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "armor_section/paragraph_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_with_icons", + "namespace": "how_to_play_common" + } + }, + "armor_section/padding_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "armor_section/header_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "armor_section/paragraph_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_with_icons", + "namespace": "how_to_play_common" + } + }, + "armor_stand_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "armor_stand_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "armor_stand_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "armor_stand_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "armor_stand_section/paragraph_2_keyboard": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "armor_stand_section/paragraph_2_gamepad": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "armor_stand_section/paragraph_2_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "armor_stand_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "armor_stand_section/paragraph_3_keyboard": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "armor_stand_section/paragraph_3_gamepad": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "armor_stand_section/paragraph_3_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "armor_stand_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "armor_stand_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "armor_stand_section/paragraph_4_keyboard": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "armor_stand_section/paragraph_4_gamepad": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "armor_stand_section/paragraph_4_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "armor_stand_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "armor_stand_section/header_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "armor_stand_section/paragraph_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "banners_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "banners_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "banners_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "banners_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "banners_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "banners_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "banners_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "banners_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "banners_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "banners_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "banners_section/paragraph_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "banners_section/padding_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "banners_section/paragraph_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "banners_section/padding_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "banners_section/paragraph_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "banners_section/padding_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "banners_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "banners_section/paragraph_8": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "banners_section/padding_8": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "banners_section/header_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "banners_section/paragraph_9": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "beacons_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "beacons_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "beacons_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "beacons_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "beacons_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "beacons_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "beacons_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "beacons_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "beacons_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "beacons_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "beacons_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "beacons_section/paragraph_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "beacons_section/padding_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "beacons_section/paragraph_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "beacons_section/padding_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "beacons_section/paragraph_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "beacons_section/padding_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "beacons_section/paragraph_8": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "conduits_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "conduits_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1", + "padding_1", + "paragraph_2", + "padding_2", + "header_1", + "paragraph_3", + "padding_3", + "paragraph_4" + ] + }, + "conduits_section/paragraph_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "conduits_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "conduits_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "conduits_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "conduits_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "conduits_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "conduits_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "conduits_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "beds_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "beds_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "beds_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "beds_section/paragraph_2_keyboard": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "beds_section/paragraph_2_gamepad": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "beds_section/paragraph_2_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "beds_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "beds_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "beds_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "beds_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "beds_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "beds_section/paragraph_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "blocks_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "blocks_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "blocks_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "blocks_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "blocks_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "blocks_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "blocks_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "blocks_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "blocks_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "blocks_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "blocks_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "blocks_section/paragraph_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "blocks_section/padding_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "blocks_section/paragraph_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "blocks_section/padding_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "blocks_section/paragraph_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "blocks_section/padding_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "blocks_section/paragraph_8": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "blocks_section/padding_8": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "blocks_section/paragraph_9": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "book_and_quill_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "book_and_quill_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1" + ] + }, + "book_and_quill_section/paragraph_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "brewing_stand_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "brewing_stand_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1", + "padding_1", + "header_1", + "paragraph_2", + "padding_2", + "header_2", + "paragraph_3", + "padding_3", + "paragraph_4" + ] + }, + "brewing_stand_section/paragraph_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "brewing_stand_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "brewing_stand_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "brewing_stand_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "brewing_stand_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "brewing_stand_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "brewing_stand_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "brewing_stand_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "brewing_stand_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "cauldron_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "cauldron_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "cauldron_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "cauldron_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "cauldron_section/paragraph_2_keyboard": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "cauldron_section/paragraph_2_gamepad": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "cauldron_section/paragraph_2_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_no_icons", + "namespace": "how_to_play_common" + } + }, + "cauldron_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "cauldron_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "cauldron_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "cauldron_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "cauldron_section/paragraph_4_keyboard": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "cauldron_section/paragraph_4_gamepad": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "cauldron_section/paragraph_4_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "cauldron_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "cauldron_section/header_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "cauldron_section/paragraph_5_keyboard": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "cauldron_section/paragraph_5_gamepad": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "cauldron_section/paragraph_5_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_no_icons", + "namespace": "how_to_play_common" + } + }, + "cauldron_section/padding_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "cauldron_section/paragraph_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "chests_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "chests_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1_keyboard", + "paragraph_1_gamepad", + "paragraph_1_touch", + "padding_1", + "paragraph_2", + "padding_2", + "paragraph_3" + ] + }, + "chests_section/paragraph_1_keyboard": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "chests_section/paragraph_1_gamepad": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "chests_section/paragraph_1_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "chests_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "chests_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "chests_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "chests_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "command_blocks_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "command_blocks_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "command_blocks_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "command_blocks_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "command_blocks_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "command_blocks_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "command_blocks_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "command_blocks_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "command_blocks_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "command_blocks_section/paragraph_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "command_blocks_section/paragraph_5_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "command_blocks_section/paragraph_5_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "command_blocks_section/paragraph_5_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "command_blocks_section/padding_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "command_blocks_section/paragraph_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "command_blocks_section/paragraph_6_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "command_blocks_section/paragraph_6_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "command_blocks_section/padding_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "command_blocks_section/paragraph_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "command_blocks_section/paragraph_7_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "command_blocks_section/paragraph_7_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "command_blocks_section/padding_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "command_blocks_section/paragraph_8": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "commands_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "commands_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1", + "padding_1", + "paragraph_2" + ] + }, + "commands_section/paragraph_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "commands_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "commands_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "crafting_table_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "crafting_table_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1", + "padding_1", + "paragraph_2_keyboard", + "paragraph_2_gamepad", + "paragraph_2_touch" + ] + }, + "crafting_table_section/paragraph_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "crafting_table_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "crafting_table_section/paragraph_2_keyboard": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "crafting_table_section/paragraph_2_gamepad": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "crafting_table_section/paragraph_2_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "creative_mode_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "creative_mode_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "creative_mode_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "creative_mode_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "creative_mode_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "creative_mode_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "creative_mode_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "creative_mode_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "creative_mode_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "creative_mode_section/paragraph_4_keyboard": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "creative_mode_section/paragraph_4_gamepad": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "creative_mode_section/paragraph_4a_touch_joystick_tap": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_joystick_tap", + "namespace": "how_to_play_common" + } + }, + "creative_mode_section/paragraph_4a_touch_classic_dpad": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_classic_dpad", + "namespace": "how_to_play_common" + } + }, + "creative_mode_section/paragraph_4a_touch_joystick_crosshair": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_joystick_crosshair", + "namespace": "how_to_play_common" + } + }, + "creative_mode_section/padding_4a_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "touch_padding", + "namespace": "how_to_play_common" + } + }, + "creative_mode_section/paragraph_4b_touch_joystick_tap": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_joystick_tap", + "namespace": "how_to_play_common" + } + }, + "creative_mode_section/paragraph_4b_touch_classic_dpad": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_classic_dpad", + "namespace": "how_to_play_common" + } + }, + "creative_mode_section/paragraph_4b_touch_joystick_crosshair": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_joystick_crosshair", + "namespace": "how_to_play_common" + } + }, + "difficulty_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "difficulty_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "difficulty_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "difficulty_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "difficulty_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "difficulty_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "difficulty_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "difficulty_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "difficulty_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "difficulty_section/header_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "difficulty_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "difficulty_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "difficulty_section/header_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "difficulty_section/paragraph_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "dispensers_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "dispensers_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "dispensers_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "dispensers_section/paragraph_2_keyboard": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "dispensers_section/paragraph_2_gamepad": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "dispensers_section/paragraph_2_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "dispensers_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "dispensers_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "dispensers_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "dispensers_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "dispensers_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "droppers_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "droppers_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1_keyboard", + "paragraph_1_gamepad", + "paragraph_1_touch", + "padding_1", + "header_1", + "paragraph_2" + ] + }, + "droppers_section/paragraph_1_keyboard": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "droppers_section/paragraph_1_gamepad": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "droppers_section/paragraph_1_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "droppers_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "droppers_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "droppers_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "dyes_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "dyes_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "dyes_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "dyes_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "dyes_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "dyes_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "dyes_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "dyes_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "dyes_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "dyes_section/paragraph_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "dyes_section/padding_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "dyes_section/paragraph_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "dyes_section/padding_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "dyes_section/paragraph_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "elytra_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "elytra_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "elytra_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "elytra_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "elytra_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "elytra_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "elytra_section/paragraph_3_keyboard": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "elytra_section/paragraph_3_gamepad": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "elytra_section/paragraph_3_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "elytra_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "elytra_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_not_touch", + "namespace": "how_to_play_common" + } + }, + "elytra_section/paragraph_4_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_no_icons", + "namespace": "how_to_play_common" + } + }, + "elytra_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "elytra_section/paragraph_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "elytra_section/padding_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "elytra_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "elytra_section/paragraph_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "enchanting_table_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "enchanting_table_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "enchanting_table_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "enchanting_table_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "enchanting_table_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "enchanting_table_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "enchanting_table_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "enchanting_table_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "enchanting_table_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "enchanting_table_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "enchanting_table_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "enchanting_table_section/header_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "enchanting_table_section/paragraph_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "end_cities_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "end_cities_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1", + "padding_1", + "paragraph_2" + ] + }, + "end_cities_section/paragraph_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "end_cities_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "end_cities_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "eye_of_ender_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "eye_of_ender_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1", + "padding_1", + "paragraph_2" + ] + }, + "eye_of_ender_section/paragraph_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "eye_of_ender_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "eye_of_ender_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "farming_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "farming_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "farming_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "farming_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "farming_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "farming_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "farming_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "farming_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "farming_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "farming_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "farming_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "farming_section/paragraph_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "farming_section/padding_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "farming_section/paragraph_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "farming_section/padding_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "farming_section/paragraph_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "fireworks_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "fireworks_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/paragraph_3_keyboard": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/paragraph_3_gamepad": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/paragraph_3_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/paragraph_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/padding_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/paragraph_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/padding_5a": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/paragraph_6_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/padding_5b": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/paragraph_6_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/padding_5c": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/paragraph_6_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/padding_5d": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/paragraph_6_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/padding_5e": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/paragraph_6_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/padding_5f": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/paragraph_6_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/padding_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/header_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "fireworks_section/paragraph_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "jigsaw_blocks_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "jigsaw_blocks_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "jigsaw_blocks_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "jigsaw_blocks_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "jigsaw_blocks_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "jigsaw_blocks_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "jigsaw_blocks_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "jigsaw_blocks_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "jigsaw_blocks_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "jigsaw_blocks_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "jigsaw_blocks_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "jigsaw_blocks_section/paragraph_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "jigsaw_blocks_section/padding_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "jigsaw_blocks_section/paragraph_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "jigsaw_blocks_section/padding_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "jigsaw_blocks_section/paragraph_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "jigsaw_blocks_section/padding_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "jigsaw_blocks_section/paragraph_8": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "jigsaw_blocks_section/padding_8": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "jigsaw_blocks_section/paragraph_9": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "fishing_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "fishing_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "fishing_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "fishing_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "fishing_section/paragraph_2_keyboard": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "fishing_section/paragraph_2_gamepad": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "fishing_section/paragraph_2_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "fishing_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "fishing_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "fishing_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "fishing_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "fishing_section/paragraph_4_keyboard": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "fishing_section/paragraph_4_gamepad": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "fishing_section/paragraph_4_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "furnace_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "furnace_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1", + "padding_1", + "paragraph_2_keyboard", + "paragraph_2_gamepad", + "paragraph_2_touch", + "padding_2", + "paragraph_3" + ] + }, + "furnace_section/paragraph_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "furnace_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "furnace_section/paragraph_2_keyboard": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "furnace_section/paragraph_2_gamepad": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "furnace_section/paragraph_2_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "furnace_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "furnace_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "game_settings_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "game_settings_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/paragraph_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/padding_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/paragraph_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/padding_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/paragraph_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/paragraph_7_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/paragraph_7_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/padding_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/paragraph_8": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/padding_8": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/paragraph_9": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/padding_9": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/paragraph_10": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/padding_10": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/paragraph_11": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/padding_11": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/paragraph_12": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/padding_12": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/paragraph_13": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/padding_13": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/paragraph_14": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/padding_14": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/paragraph_15": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/padding_15": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/paragraph_16": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/padding_16": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "game_settings_section/paragraph_17": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "hoppers_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "hoppers_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1", + "padding_1", + "paragraph_2", + "padding_2", + "header_1", + "paragraph_3", + "padding_3", + "paragraph_4" + ] + }, + "hoppers_section/paragraph_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "hoppers_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "hoppers_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "hoppers_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "hoppers_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "hoppers_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "hoppers_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "hoppers_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "host_and_player_options_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "host_and_player_options_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1_not_touch", + "paragraph_1_touch" + ] + }, + "host_and_player_options_section/paragraph_1_not_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_not_touch", + "namespace": "how_to_play_common" + } + }, + "host_and_player_options_section/paragraph_1_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "jukebox_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "jukebox_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "jukebox_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "jukebox_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "jukebox_section/paragraph_2_not_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_not_touch", + "namespace": "how_to_play_common" + } + }, + "jukebox_section/paragraph_2_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "jukebox_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "jukebox_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "jukebox_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "jukebox_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "jukebox_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "jukebox_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "jukebox_section/paragraph_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "jukebox_section/padding_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "jukebox_section/paragraph_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "jukebox_section/padding_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "jukebox_section/header_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "jukebox_section/paragraph_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "jukebox_section/padding_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "jukebox_section/paragraph_8": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "loom_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "loom_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1", + "padding_1", + "header_1", + "paragraph_2", + "padding_2", + "paragraph_3", + "padding_3", + "header_2", + "paragraph_4" + ] + }, + "loom_section/paragraph_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "loom_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "loom_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "loom_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "loom_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "loom_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "loom_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "loom_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "loom_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "realms_stories_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "realms_stories_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "realms_stories_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "realms_stories_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "realms_stories_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_with_icons", + "namespace": "how_to_play_common" + } + }, + "realms_stories_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "realms_stories_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "realms_stories_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "realms_stories_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "realms_stories_section/header_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "realms_stories_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "realms_stories_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "realms_stories_section/header_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "realms_stories_section/paragraph_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "realms_stories_section/padding_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "realms_stories_section/header_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "realms_stories_section/paragraph_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "smithing_table_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "smithing_table_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "smithing_table_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "smithing_table_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "smithing_table_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "smithing_table_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "smithing_table_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "smithing_table_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "smithing_table_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "smithing_table_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "smithing_table_section/paragraph_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "smithing_table_section/padding_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "smithing_table_section/paragraph_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "smithing_table_section/padding_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "smithing_table_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "smithing_table_section/paragraph_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "smithing_table_section/padding_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "smithing_table_section/paragraph_8": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "smithing_table_section/padding_8": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "smithing_table_section/paragraph_9": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "mounts_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "mounts_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "mounts_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "mounts_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "mounts_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "mounts_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "mounts_section/paragraph_3_not_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_not_touch", + "namespace": "how_to_play_common" + } + }, + "mounts_section/paragraph_3_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "mounts_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "mounts_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "mounts_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "mounts_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "mounts_section/paragraph_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "mounts_section/padding_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "mounts_section/paragraph_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "mounts_section/padding_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "mounts_section/paragraph_6b": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "mounts_section/padding_6b": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "mounts_section/paragraph_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "mounts_section/padding_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "mounts_section/paragraph_8": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "mounts_section/padding_8": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "mounts_section/header_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "mounts_section/paragraph_9": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "mounts_section/padding_9": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "mounts_section/paragraph_10": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "mounts_section/padding_10": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "mounts_section/paragraph_11": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "mounts_section/padding_11": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "mounts_section/paragraph_12": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "mounts_section/padding_12": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "mounts_section/header_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "mounts_section/paragraph_13": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "mounts_section/padding_13": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "mounts_section/paragraph_14": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "mounts_section/padding_14": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "mounts_section/header_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "mounts_section/paragraph_15_not_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_not_touch", + "namespace": "how_to_play_common" + } + }, + "mounts_section/paragraph_15a_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_classic_dpad_spacing", + "namespace": "how_to_play_common" + } + }, + "mounts_section/padding_15": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "small_padding", + "namespace": "how_to_play_common" + } + }, + "mounts_section/paragraph_15b_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "navigation_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "navigation_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "navigation_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "navigation_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "navigation_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "navigation_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "navigation_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "navigation_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "navigation_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "navigation_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "navigation_section/paragraph_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "navigation_section/padding_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "navigation_section/paragraph_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "navigation_section/padding_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "navigation_section/paragraph_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "navigation_section/padding_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "navigation_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "navigation_section/paragraph_8": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "navigation_section/padding_8": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "navigation_section/paragraph_9": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "navigation_section/padding_9": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "navigation_section/header_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "navigation_section/paragraph_10": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "nether_portals_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "nether_portals_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1", + "padding_1", + "paragraph_2", + "padding_2", + "paragraph_3", + "padding_3", + "image_1" + ] + }, + "nether_portals_section/paragraph_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "nether_portals_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "nether_portals_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "nether_portals_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "nether_portals_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "nether_portals_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "nether_portals_section/image_1": { + "file": "ui/encyclopedia_screen.json", + "type": "image", + "extend": { + "name": "image", + "namespace": "how_to_play_common" + } + }, + "pets_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "pets_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "pets_section/paragraph_1_not_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_not_touch", + "namespace": "how_to_play_common" + } + }, + "pets_section/paragraph_1_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "pets_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "pets_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "pets_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "pets_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "pets_section/header_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "pets_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "pets_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "pets_section/header_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "pets_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "raids_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "raids_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1", + "padding_1", + "paragraph_2", + "padding_2", + "header_1", + "paragraph_3" + ] + }, + "raids_section/paragraph_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "raids_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "raids_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "raids_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "raids_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "raids_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "ranching_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "ranching_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "ranching_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "ranching_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "ranching_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "ranching_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "ranching_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "ranching_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "ranching_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "ranching_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "ranching_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "ranching_section/paragraph_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "redstone_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "redstone_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "redstone_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "redstone_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "redstone_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "redstone_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "redstone_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "redstone_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "redstone_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "redstone_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "redstone_section/paragraph_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "scaffolding_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "scaffolding_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "scaffolding_section/paragraph_1_keyboard": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "scaffolding_section/paragraph_1_gamepad": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "scaffolding_section/paragraph_1a_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_no_icons", + "namespace": "how_to_play_common" + } + }, + "scaffolding_section/padding_1a_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "touch_padding", + "namespace": "how_to_play_common" + } + }, + "scaffolding_section/paragraph_1b_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_classic_dpad_spacing", + "namespace": "how_to_play_common" + } + }, + "scaffolding_section/padding_1b_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "touch_padding", + "namespace": "how_to_play_common" + } + }, + "scaffolding_section/paragraph_1c_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "scaffolding_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "scaffolding_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "scaffolding_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "scaffolding_section/image_1": { + "file": "ui/encyclopedia_screen.json", + "type": "image", + "extend": { + "name": "image", + "namespace": "how_to_play_common" + } + }, + "scaffolding_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "scaffolding_section/header_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "scaffolding_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "scaffolding_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/paragraph_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/padding_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/paragraph_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/padding_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/paragraph_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/padding_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/header_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/paragraph_8": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/padding_8": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/paragraph_9_keyboard": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/paragraph_9_gamepad": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/paragraph_9_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/padding_9": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/header_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/paragraph_10": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/padding_10": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/header_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/paragraph_11": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/padding_11": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/paragraph_12": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/padding_12": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/paragraph_13": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/padding_13": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/header_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/paragraph_14": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/padding_14": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/paragraph_15": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/padding_15": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/header_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/paragraph_16": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/padding_16": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "structure_blocks_section/paragraph_17": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "shulker_boxes_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "shulker_boxes_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1" + ] + }, + "shulker_boxes_section/paragraph_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "the_end_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "the_end_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "the_end_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "the_end_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "the_end_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "the_end_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "the_end_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "the_end_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "the_end_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "the_end_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "the_end_section/paragraph_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "tools_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "tools_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "tools_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "tools_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "tools_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "tools_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "tools_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "tools_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "tools_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "tools_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "tools_section/paragraph_5_not_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_not_touch", + "namespace": "how_to_play_common" + } + }, + "tools_section/paragraph_5_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "tools_section/padding_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "tools_section/paragraph_6_not_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_not_touch", + "namespace": "how_to_play_common" + } + }, + "tools_section/paragraph_6_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "tools_section/padding_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "tools_section/paragraph_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "tools_section/padding_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "tools_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "tools_section/paragraph_8": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "tools_section/padding_8": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "tools_section/paragraph_9": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "tools_section/padding_9": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "tools_section/paragraph_10": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "tools_section/padding_10": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "tools_section/paragraph_11": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "tools_section/padding_11": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "tools_section/paragraph_12": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "trading_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "trading_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1", + "padding_1", + "header_1", + "paragraph_2", + "padding_2", + "paragraph_3", + "padding_3", + "paragraph_4" + ] + }, + "trading_section/paragraph_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "trading_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "trading_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "trading_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "trading_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "trading_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "trading_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "trading_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "transportation_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "transportation_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "transportation_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "transportation_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "transportation_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_not_touch", + "namespace": "how_to_play_common" + } + }, + "transportation_section/paragraph_2_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "transportation_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "transportation_section/paragraph_3_keyboard": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "transportation_section/paragraph_3_gamepad": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "transportation_section/paragraph_3a_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "transportation_section/padding_3a": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "transportation_section/paragraph_3b_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_classic_dpad_spacing", + "namespace": "how_to_play_common" + } + }, + "transportation_section/padding_3b": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "transportation_section/paragraph_3c_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "transportation_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "transportation_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "transportation_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_not_touch", + "namespace": "how_to_play_common" + } + }, + "transportation_section/paragraph_4_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "transportation_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "transportation_section/paragraph_5_keyboard": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "transportation_section/paragraph_5_gamepad": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "transportation_section/paragraph_5a_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "transportation_section/padding_5a": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "transportation_section/paragraph_5b_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_classic_dpad_spacing", + "namespace": "how_to_play_common" + } + }, + "transportation_section/padding_5b": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "transportation_section/paragraph_5c_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "weapons_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "weapons_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "weapons_section/paragraph_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "weapons_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "weapons_section/paragraph_2_not_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_not_touch", + "namespace": "how_to_play_common" + } + }, + "weapons_section/paragraph_2_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "weapons_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "weapons_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "weapons_section/paragraph_3_not_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_not_touch", + "namespace": "how_to_play_common" + } + }, + "weapons_section/paragraph_3_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_no_icons", + "namespace": "how_to_play_common" + } + }, + "weapons_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "weapons_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "weapons_section/padding_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "weapons_section/header_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "weapons_section/paragraph_5_not_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_not_touch", + "namespace": "how_to_play_common" + } + }, + "weapons_section/paragraph_5a_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_no_icons", + "namespace": "how_to_play_common" + } + }, + "weapons_section/padding_5a_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "touch_padding", + "namespace": "how_to_play_common" + } + }, + "weapons_section/paragraph_5b_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_no_icons", + "namespace": "how_to_play_common" + } + }, + "weapons_section/padding_5b_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "touch_padding", + "namespace": "how_to_play_common" + } + }, + "weapons_section/paragraph_5c_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_no_icons", + "namespace": "how_to_play_common" + } + }, + "weapons_section/padding_5c_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "touch_padding", + "namespace": "how_to_play_common" + } + }, + "weapons_section/paragraph_5d_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "weapons_section/padding_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "weapons_section/header_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "weapons_section/paragraph_6_not_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_not_touch", + "namespace": "how_to_play_common" + } + }, + "weapons_section/paragraph_6_touch": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_no_icons", + "namespace": "how_to_play_common" + } + }, + "weapons_section/padding_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "weapons_section/header_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "weapons_section/paragraph_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "minecoins_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "minecoins_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1", + "padding_1", + "paragraph_2", + "padding_2", + "get_minecoins_button", + "padding_3", + "header_1", + "paragraph_3" + ] + }, + "minecoins_section/paragraph_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "minecoins_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "minecoins_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "minecoins_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "minecoins_section/get_minecoins_button": { + "file": "ui/encyclopedia_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "minecoins_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "minecoins_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "minecoins_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "addons_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "addons_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "addons_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "addons_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "addons_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "addons_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "addons_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "addons_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "addons_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "addons_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "addons_section/paragraph_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "addons_section/addons_faq_button": { + "file": "ui/encyclopedia_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "worlds_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "worlds_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "worlds_section/padding_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "worlds_section/paragraph_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "worlds_section/padding_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "worlds_section/paragraph_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "worlds_section/padding_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "worlds_section/paragraph_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "worlds_section/padding_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "worlds_section/header_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "worlds_section/paragraph_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "worlds_section/padding_5": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "worlds_section/paragraph_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "worlds_section/padding_6": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "worlds_section/header_2": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "worlds_section/paragraph_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "worlds_section/padding_7": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "worlds_section/paragraph_8": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "worlds_section/padding_8": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "worlds_section/header_3": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "worlds_section/paragraph_9": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "worlds_section/padding_9": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "worlds_section/paragraph_10": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "worlds_section/padding_10": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "worlds_section/header_4": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "worlds_section/paragraph_11": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "worlds_section/padding_11": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "worlds_section/paragraph_12": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "worlds_section/padding_12": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "textures_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "textures_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1" + ] + }, + "textures_section/paragraph_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "skins_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "skins_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1" + ] + }, + "skins_section/paragraph_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "mashups_button": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "mashups_section": { + "file": "ui/encyclopedia_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1" + ] + }, + "mashups_section/paragraph_1": { + "file": "ui/encyclopedia_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + } + }, + "expanded_skin_pack": { + "banner_fill": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "image" + }, + "title_label": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "label" + }, + "label": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "label" + }, + "undo_image": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "image" + }, + "lock_icon": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "image" + }, + "skin_button": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "button", + "children": [ + "hover", + "pressed" + ] + }, + "skin_button/hover": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "skin_button/pressed": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "skin_rotation_arrows": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "image" + }, + "skin_viewer_panel": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "input_panel", + "children": [ + "skin_model_panel", + "lock" + ] + }, + "skin_viewer_panel/skin_model_panel": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel", + "children": [ + "skin_model" + ] + }, + "skin_viewer_panel/skin_model_panel/skin_model": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "custom" + }, + "skin_viewer_panel/lock": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "image", + "extend": { + "name": "lock_icon", + "namespace": "expanded_skin_pack" + } + }, + "undo_skin_button": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "button", + "extend": { + "name": "light_glyph_button", + "namespace": "common_buttons" + } + }, + "confirm_skin_button": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "stack_item": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel" + }, + "accept_skin_panel": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "stack_panel", + "children": [ + "stack_item_0", + "stack_item_1" + ] + }, + "accept_skin_panel/stack_item_0": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel", + "extend": { + "name": "stack_item", + "namespace": "expanded_skin_pack" + }, + "children": [ + "undo_btn" + ] + }, + "accept_skin_panel/stack_item_0/undo_btn": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "button", + "extend": { + "name": "undo_skin_button", + "namespace": "expanded_skin_pack" + } + }, + "accept_skin_panel/stack_item_1": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel", + "extend": { + "name": "stack_item", + "namespace": "expanded_skin_pack" + }, + "children": [ + "confirm_button" + ] + }, + "accept_skin_panel/stack_item_1/confirm_button": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "button", + "extend": { + "name": "confirm_skin_button", + "namespace": "expanded_skin_pack" + } + }, + "preview_skin_panel": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel", + "children": [ + "preview", + "button_frame" + ] + }, + "preview_skin_panel/preview": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "input_panel", + "extend": { + "name": "skin_viewer_panel", + "namespace": "expanded_skin_pack" + } + }, + "preview_skin_panel/button_frame": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "stack_panel", + "children": [ + "stack_item_0", + "stack_item_1" + ] + }, + "preview_skin_panel/button_frame/stack_item_0": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel", + "extend": { + "name": "stack_item", + "namespace": "expanded_skin_pack" + }, + "children": [ + "rotation" + ] + }, + "preview_skin_panel/button_frame/stack_item_0/rotation": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "image", + "extend": { + "name": "skin_rotation_arrows", + "namespace": "expanded_skin_pack" + } + }, + "preview_skin_panel/button_frame/stack_item_1": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel", + "extend": { + "name": "stack_item", + "namespace": "expanded_skin_pack" + }, + "children": [ + "accept" + ] + }, + "preview_skin_panel/button_frame/stack_item_1/accept": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "stack_panel", + "extend": { + "name": "accept_skin_panel", + "namespace": "expanded_skin_pack" + } + }, + "skin_model": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "custom" + }, + "scrolling_content": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "stack_panel", + "children": [ + "padding_0", + "pack_info_panel", + "skin_grid_panel" + ] + }, + "scrolling_content/padding_0": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "scrolling_content/pack_info_panel": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel", + "children": [ + "pack_info_panel" + ] + }, + "scrolling_content/pack_info_panel/pack_info_panel": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "stack_panel", + "extend": { + "name": "pack_info_panel", + "namespace": "expanded_skin_pack" + } + }, + "scrolling_content/skin_grid_panel": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel", + "children": [ + "skins_grid" + ] + }, + "scrolling_content/skin_grid_panel/skins_grid": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "grid", + "extend": { + "name": "skins_grid", + "namespace": "expanded_skin_pack" + } + }, + "pack_info_panel": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "stack_panel", + "children": [ + "lock_icon_panel", + "pack_info_panel" + ] + }, + "pack_info_panel/lock_icon_panel": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel", + "children": [ + "lock_icon" + ] + }, + "pack_info_panel/lock_icon_panel/lock_icon": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "image", + "extend": { + "name": "lock_icon", + "namespace": "expanded_skin_pack" + } + }, + "pack_info_panel/pack_info_panel": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "stack_panel", + "children": [ + "pack_name", + "creator_name" + ] + }, + "pack_info_panel/pack_info_panel/pack_name": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "label" + }, + "pack_info_panel/pack_info_panel/creator_name": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "label" + }, + "skins_grid_item": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel", + "children": [ + "clip", + "lock", + "button" + ] + }, + "skins_grid_item/clip": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel", + "children": [ + "model" + ] + }, + "skins_grid_item/clip/model": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "custom", + "extend": { + "name": "skin_model", + "namespace": "expanded_skin_pack" + } + }, + "skins_grid_item/lock": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "image", + "extend": { + "name": "lock_icon", + "namespace": "expanded_skin_pack" + } + }, + "skins_grid_item/button": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "button", + "extend": { + "name": "select_skin_button", + "namespace": "expanded_skin_pack" + } + }, + "skins_grid": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "grid" + }, + "select_skin_button": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "select_skin_button/default": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "select_skin_button/hover": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "select_skin_button/pressed": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "all_skins_content": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "input_panel", + "children": [ + "scrolling_frame" + ] + }, + "all_skins_content/scrolling_frame": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel", + "children": [ + "change_skin_scroll" + ] + }, + "all_skins_content/scrolling_frame/change_skin_scroll": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "all_skins_frame": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel", + "children": [ + "all_skins_content" + ] + }, + "all_skins_frame/all_skins_content": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "input_panel", + "extend": { + "name": "all_skins_content", + "namespace": "expanded_skin_pack" + } + }, + "title_bar": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "stack_panel", + "children": [ + "padding_0", + "fill_panel", + "padding_1", + "skin_name_holder", + "padding_2" + ] + }, + "title_bar/padding_0": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel" + }, + "title_bar/fill_panel": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel", + "children": [ + "title_holder" + ] + }, + "title_bar/fill_panel/title_holder": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel", + "children": [ + "change_skin_title" + ] + }, + "title_bar/fill_panel/title_holder/change_skin_title": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "label", + "extend": { + "name": "title_label", + "namespace": "expanded_skin_pack" + } + }, + "title_bar/padding_1": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel" + }, + "title_bar/skin_name_holder": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel", + "children": [ + "preview_skin_name" + ] + }, + "title_bar/skin_name_holder/preview_skin_name": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "label", + "extend": { + "name": "title_label", + "namespace": "expanded_skin_pack" + } + }, + "title_bar/padding_2": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel" + }, + "content": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel", + "children": [ + "title", + "selector_area", + "content_area", + "section_divider" + ] + }, + "content/title": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "stack_panel", + "extend": { + "name": "title_bar", + "namespace": "expanded_skin_pack" + } + }, + "content/selector_area": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "input_panel", + "extend": { + "name": "selector_area", + "namespace": "expanded_skin_pack" + } + }, + "content/content_area": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "input_panel", + "extend": { + "name": "content_area", + "namespace": "expanded_skin_pack" + } + }, + "content/section_divider": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "image", + "extend": { + "name": "section_divider", + "namespace": "expanded_skin_pack" + } + }, + "expanded_skin_pack_screen": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "skin_picker_screen_content": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + }, + "children": [ + "bg", + "container" + ] + }, + "skin_picker_screen_content/bg": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "stack_panel", + "extend": { + "name": "fullscreen_header", + "namespace": "common" + } + }, + "skin_picker_screen_content/container": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel", + "children": [ + "content" + ] + }, + "skin_picker_screen_content/container/content": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel", + "extend": { + "name": "content", + "namespace": "expanded_skin_pack" + } + }, + "scrollable_selector_area_content": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel" + }, + "selector_area": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "input_panel", + "extend": { + "name": "modal_area_panel_base", + "namespace": "common" + }, + "children": [ + "all_skins", + "inactive_modal_pane_fade" + ] + }, + "selector_area/all_skins": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel", + "extend": { + "name": "all_skins_frame", + "namespace": "expanded_skin_pack" + } + }, + "selector_area/inactive_modal_pane_fade": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "image", + "extend": { + "name": "inactive_modal_pane_fade", + "namespace": "common" + } + }, + "content_area": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "input_panel", + "extend": { + "name": "modal_area_panel_base", + "namespace": "common" + }, + "children": [ + "preview_skin", + "inactive_modal_pane_fade" + ] + }, + "content_area/preview_skin": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "panel", + "extend": { + "name": "preview_skin_panel", + "namespace": "expanded_skin_pack" + } + }, + "content_area/inactive_modal_pane_fade": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "image", + "extend": { + "name": "inactive_modal_pane_fade", + "namespace": "common" + } + }, + "section_divider": { + "file": "ui/expanded_skin_pack_screen.json", + "type": "image" + } + }, + "feed_common": { + "top_bar_gradient": { + "file": "ui/feed_common.json", + "type": "custom" + }, + "label": { + "file": "ui/feed_common.json", + "type": "label" + }, + "smooth_label": { + "file": "ui/feed_common.json", + "type": "label", + "extend": { + "name": "label", + "namespace": "feed_common" + } + }, + "share_label": { + "file": "ui/feed_common.json", + "type": "label", + "extend": { + "name": "smooth_label", + "namespace": "feed_common" + } + }, + "title_label": { + "file": "ui/feed_common.json", + "type": "label", + "extend": { + "name": "label", + "namespace": "feed_common" + } + }, + "feed_label": { + "file": "ui/feed_common.json", + "type": "label", + "extend": { + "name": "label", + "namespace": "feed_common" + } + }, + "item_label": { + "file": "ui/feed_common.json", + "type": "label", + "extend": { + "name": "label", + "namespace": "feed_common" + } + }, + "return_label": { + "file": "ui/feed_common.json", + "type": "label", + "extend": { + "name": "label", + "namespace": "feed_common" + } + }, + "prev_label": { + "file": "ui/feed_common.json", + "type": "label", + "extend": { + "name": "label", + "namespace": "feed_common" + } + }, + "next_label": { + "file": "ui/feed_common.json", + "type": "label", + "extend": { + "name": "label", + "namespace": "feed_common" + } + }, + "delete_label": { + "file": "ui/feed_common.json", + "type": "label", + "extend": { + "name": "smooth_label", + "namespace": "feed_common" + } + }, + "report_to_club_label": { + "file": "ui/feed_common.json", + "type": "label", + "extend": { + "name": "smooth_label", + "namespace": "feed_common" + } + }, + "report_to_xbox_label": { + "file": "ui/feed_common.json", + "type": "label", + "extend": { + "name": "smooth_label", + "namespace": "feed_common" + } + }, + "new_post_header_text": { + "file": "ui/feed_common.json", + "type": "label" + }, + "feed_button": { + "file": "ui/feed_common.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "return_button": { + "file": "ui/feed_common.json", + "type": "button", + "extend": { + "name": "transparent_content_button", + "namespace": "common_buttons" + } + }, + "prev_button": { + "file": "ui/feed_common.json", + "type": "button", + "extend": { + "name": "transparent_content_button", + "namespace": "common_buttons" + } + }, + "prev_panel": { + "file": "ui/feed_common.json", + "type": "stack_panel", + "children": [ + "padding_1", + "lab_panel" + ] + }, + "prev_panel/padding_1": { + "file": "ui/feed_common.json", + "type": "panel" + }, + "prev_panel/lab_panel": { + "file": "ui/feed_common.json", + "type": "stack_panel", + "children": [ + "vert_pad", + "prevlab" + ] + }, + "prev_panel/lab_panel/vert_pad": { + "file": "ui/feed_common.json", + "type": "panel" + }, + "prev_panel/lab_panel/prevlab": { + "file": "ui/feed_common.json", + "type": "label", + "extend": { + "name": "prev_label", + "namespace": "feed_common" + } + }, + "next_button": { + "file": "ui/feed_common.json", + "type": "button", + "extend": { + "name": "transparent_content_button", + "namespace": "common_buttons" + } + }, + "next_panel": { + "file": "ui/feed_common.json", + "type": "stack_panel", + "children": [ + "lab_panel2", + "padding_2" + ] + }, + "next_panel/lab_panel2": { + "file": "ui/feed_common.json", + "type": "stack_panel", + "children": [ + "vert_pad2", + "nextlab" + ] + }, + "next_panel/lab_panel2/vert_pad2": { + "file": "ui/feed_common.json", + "type": "panel" + }, + "next_panel/lab_panel2/nextlab": { + "file": "ui/feed_common.json", + "type": "label", + "extend": { + "name": "next_label", + "namespace": "feed_common" + } + }, + "next_panel/padding_2": { + "file": "ui/feed_common.json", + "type": "panel" + }, + "like_button": { + "file": "ui/feed_common.json", + "type": "button", + "extend": { + "name": "feed_button", + "namespace": "feed_common" + } + }, + "delete_button": { + "file": "ui/feed_common.json", + "type": "button", + "extend": { + "name": "feed_button", + "namespace": "feed_common" + } + }, + "report_to_xbox_button": { + "file": "ui/feed_common.json", + "type": "button", + "extend": { + "name": "feed_button", + "namespace": "feed_common" + } + }, + "report_to_club_button": { + "file": "ui/feed_common.json", + "type": "button", + "extend": { + "name": "feed_button", + "namespace": "feed_common" + } + }, + "options_button": { + "file": "ui/feed_common.json", + "type": "button", + "extend": { + "name": "feed_button", + "namespace": "feed_common" + } + }, + "options_close_button_high_contrast": { + "file": "ui/feed_common.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "common" + }, + "children": [ + "background", + "default", + "hover", + "pressed" + ] + }, + "options_close_button_high_contrast/background": { + "file": "ui/feed_common.json", + "type": "image" + }, + "options_close_button_high_contrast/default": { + "file": "ui/feed_common.json", + "type": "panel", + "extend": { + "name": "close_button_panel", + "namespace": "common" + } + }, + "options_close_button_high_contrast/hover": { + "file": "ui/feed_common.json", + "type": "panel", + "extend": { + "name": "close_button_panel", + "namespace": "common" + } + }, + "options_close_button_high_contrast/pressed": { + "file": "ui/feed_common.json", + "type": "panel", + "extend": { + "name": "close_button_panel", + "namespace": "common" + } + }, + "share_button": { + "file": "ui/feed_common.json", + "type": "button", + "extend": { + "name": "transparent_content_button", + "namespace": "common_buttons" + } + }, + "spacing_gap": { + "file": "ui/feed_common.json", + "type": "panel" + }, + "platform_icon": { + "file": "ui/feed_common.json", + "type": "image" + }, + "platform_icon_panel": { + "file": "ui/feed_common.json", + "type": "panel", + "children": [ + "platform_icon" + ] + }, + "platform_icon_panel/platform_icon": { + "file": "ui/feed_common.json", + "type": "image", + "extend": { + "name": "platform_icon", + "namespace": "feed_common" + } + }, + "account_link_image": { + "file": "ui/feed_common.json", + "type": "image" + }, + "account_link_icon": { + "file": "ui/feed_common.json", + "type": "stack_panel", + "children": [ + "space_01", + "account_link_image", + "space_02" + ] + }, + "account_link_icon/space_01": { + "file": "ui/feed_common.json", + "type": "panel" + }, + "account_link_icon/account_link_image": { + "file": "ui/feed_common.json", + "type": "image", + "extend": { + "name": "account_link_image", + "namespace": "feed_common" + } + }, + "account_link_icon/space_02": { + "file": "ui/feed_common.json", + "type": "panel" + }, + "player_pic_bevel": { + "file": "ui/feed_common.json", + "type": "image" + }, + "no_feed_item_content": { + "file": "ui/feed_common.json", + "type": "label" + }, + "gamepad_helpers": { + "file": "ui/feed_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helpers_a_and_b", + "namespace": "common" + } + }, + "share_text_box": { + "file": "ui/feed_common.json", + "type": "edit_box", + "extend": { + "name": "transparent_text_edit_box", + "namespace": "common" + } + }, + "progress_loading_bars": { + "file": "ui/feed_common.json", + "type": "image" + }, + "popup_dialog_bg": { + "file": "ui/feed_common.json", + "type": "image" + }, + "pagination_panel": { + "file": "ui/feed_common.json", + "type": "panel", + "children": [ + "prev_button", + "page_text", + "next_button" + ] + }, + "pagination_panel/prev_button": { + "file": "ui/feed_common.json", + "type": "button", + "extend": { + "name": "prev_button", + "namespace": "feed_common" + } + }, + "pagination_panel/page_text": { + "file": "ui/feed_common.json", + "type": "label", + "extend": { + "name": "page_text", + "namespace": "feed_common" + } + }, + "pagination_panel/next_button": { + "file": "ui/feed_common.json", + "type": "button", + "extend": { + "name": "next_button", + "namespace": "feed_common" + } + }, + "pagination_panel_gamepad": { + "file": "ui/feed_common.json", + "type": "panel", + "children": [ + "prev_panel", + "page_text", + "next_panel" + ] + }, + "pagination_panel_gamepad/prev_panel": { + "file": "ui/feed_common.json", + "type": "stack_panel", + "extend": { + "name": "prev_panel", + "namespace": "feed_common" + } + }, + "pagination_panel_gamepad/page_text": { + "file": "ui/feed_common.json", + "type": "label", + "extend": { + "name": "page_text", + "namespace": "feed_common" + } + }, + "pagination_panel_gamepad/next_panel": { + "file": "ui/feed_common.json", + "type": "stack_panel", + "extend": { + "name": "next_panel", + "namespace": "feed_common" + } + }, + "like_image": { + "file": "ui/feed_common.json", + "type": "image" + }, + "like_image_default": { + "file": "ui/feed_common.json", + "type": "image" + }, + "like_image_panel": { + "file": "ui/feed_common.json", + "type": "panel", + "children": [ + "like_image_instance", + "like_image_default" + ] + }, + "like_image_panel/like_image_instance": { + "file": "ui/feed_common.json", + "type": "image", + "extend": { + "name": "like_image", + "namespace": "feed_common" + } + }, + "like_image_panel/like_image_default": { + "file": "ui/feed_common.json", + "type": "image", + "extend": { + "name": "like_image_default", + "namespace": "feed_common" + } + }, + "feed_like_content_panel": { + "file": "ui/feed_common.json", + "type": "stack_panel", + "children": [ + "like_image_panel", + "like_label" + ] + }, + "feed_like_content_panel/like_image_panel": { + "file": "ui/feed_common.json", + "type": "panel", + "extend": { + "name": "like_image_panel", + "namespace": "feed_common" + } + }, + "feed_like_content_panel/like_label": { + "file": "ui/feed_common.json", + "type": "label", + "extend": { + "name": "smooth_label", + "namespace": "feed_common" + } + }, + "white_banner": { + "file": "ui/feed_common.json", + "type": "image" + }, + "page_text": { + "file": "ui/feed_common.json", + "type": "label" + }, + "options_icon": { + "file": "ui/feed_common.json", + "type": "image" + }, + "transparent_background": { + "file": "ui/feed_common.json", + "type": "image" + }, + "black_arrow": { + "file": "ui/feed_common.json", + "type": "image" + }, + "faded_background_image": { + "file": "ui/feed_common.json", + "type": "image" + }, + "unviewed_post_badge": { + "file": "ui/feed_common.json", + "type": "image", + "children": [ + "unviewed_post_text" + ] + }, + "unviewed_post_badge/unviewed_post_text": { + "file": "ui/feed_common.json", + "type": "label", + "extend": { + "name": "smooth_label", + "namespace": "feed_common" + } + } + }, + "file_upload": { + "empty_progress_bar_icon": { + "file": "ui/file_upload_screen.json", + "type": "image" + }, + "full_progress_bar_icon": { + "file": "ui/file_upload_screen.json", + "type": "image" + }, + "progress_bar_nub": { + "file": "ui/file_upload_screen.json", + "type": "image" + }, + "progress_bar_icon": { + "file": "ui/file_upload_screen.json", + "type": "panel", + "children": [ + "empty_progress_bar_icon", + "progress_percent_panel" + ] + }, + "progress_bar_icon/empty_progress_bar_icon": { + "file": "ui/file_upload_screen.json", + "type": "image", + "extend": { + "name": "empty_progress_bar_icon", + "namespace": "file_upload" + } + }, + "progress_bar_icon/progress_percent_panel": { + "file": "ui/file_upload_screen.json", + "type": "panel", + "children": [ + "full_progress_bar_icon", + "progress_bar_nub" + ] + }, + "progress_bar_icon/progress_percent_panel/full_progress_bar_icon": { + "file": "ui/file_upload_screen.json", + "type": "image", + "extend": { + "name": "full_progress_bar_icon", + "namespace": "file_upload" + } + }, + "progress_bar_icon/progress_percent_panel/progress_bar_nub": { + "file": "ui/file_upload_screen.json", + "type": "image", + "extend": { + "name": "progress_bar_nub", + "namespace": "file_upload" + } + }, + "common_label": { + "file": "ui/file_upload_screen.json", + "type": "label" + }, + "progress_text_panel": { + "file": "ui/file_upload_screen.json", + "type": "panel", + "children": [ + "progress", + "total" + ] + }, + "progress_text_panel/progress": { + "file": "ui/file_upload_screen.json", + "type": "label", + "extend": { + "name": "common_label", + "namespace": "file_upload" + } + }, + "progress_text_panel/total": { + "file": "ui/file_upload_screen.json", + "type": "label", + "extend": { + "name": "common_label", + "namespace": "file_upload" + } + }, + "message_text_panel": { + "file": "ui/file_upload_screen.json", + "type": "panel", + "children": [ + "message_text" + ] + }, + "message_text_panel/message_text": { + "file": "ui/file_upload_screen.json", + "type": "label", + "extend": { + "name": "common_label", + "namespace": "file_upload" + } + }, + "button_common": { + "file": "ui/file_upload_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "lets_go_button": { + "file": "ui/file_upload_screen.json", + "type": "button", + "extend": { + "name": "button_common", + "namespace": "file_upload" + } + }, + "cancel_button": { + "file": "ui/file_upload_screen.json", + "type": "button", + "extend": { + "name": "button_common", + "namespace": "file_upload" + } + }, + "continue_button": { + "file": "ui/file_upload_screen.json", + "type": "button", + "extend": { + "name": "button_common", + "namespace": "file_upload" + } + }, + "continue_or_cancel_button": { + "file": "ui/file_upload_screen.json", + "type": "panel", + "children": [ + "continue", + "cancel" + ] + }, + "continue_or_cancel_button/continue": { + "file": "ui/file_upload_screen.json", + "type": "button", + "extend": { + "name": "continue_button", + "namespace": "file_upload" + } + }, + "continue_or_cancel_button/cancel": { + "file": "ui/file_upload_screen.json", + "type": "button", + "extend": { + "name": "cancel_button", + "namespace": "file_upload" + } + }, + "single_title_panel": { + "file": "ui/file_upload_screen.json", + "type": "panel", + "children": [ + "center" + ] + }, + "single_title_panel/center": { + "file": "ui/file_upload_screen.json", + "type": "label", + "extend": { + "name": "common_label", + "namespace": "file_upload" + } + }, + "dual_title_panel": { + "file": "ui/file_upload_screen.json", + "type": "panel", + "children": [ + "left", + "right" + ] + }, + "dual_title_panel/left": { + "file": "ui/file_upload_screen.json", + "type": "label", + "extend": { + "name": "common_label", + "namespace": "file_upload" + } + }, + "dual_title_panel/right": { + "file": "ui/file_upload_screen.json", + "type": "label", + "extend": { + "name": "common_label", + "namespace": "file_upload" + } + }, + "upload_title_panel": { + "file": "ui/file_upload_screen.json", + "type": "panel", + "children": [ + "single_label", + "dual_label" + ] + }, + "upload_title_panel/single_label": { + "file": "ui/file_upload_screen.json", + "type": "panel", + "extend": { + "name": "single_title_panel", + "namespace": "file_upload" + } + }, + "upload_title_panel/dual_label": { + "file": "ui/file_upload_screen.json", + "type": "panel", + "extend": { + "name": "dual_title_panel", + "namespace": "file_upload" + } + }, + "content_panel": { + "file": "ui/file_upload_screen.json", + "type": "panel", + "children": [ + "stack_panel_0", + "stack_panel_1" + ] + }, + "content_panel/stack_panel_0": { + "file": "ui/file_upload_screen.json", + "type": "stack_panel", + "extend": { + "name": "content_stack_panel", + "namespace": "file_upload" + } + }, + "content_panel/stack_panel_1": { + "file": "ui/file_upload_screen.json", + "type": "panel", + "extend": { + "name": "warning_content_panel", + "namespace": "file_upload" + } + }, + "content_stack_panel": { + "file": "ui/file_upload_screen.json", + "type": "stack_panel", + "children": [ + "message", + "description", + "progress" + ] + }, + "content_stack_panel/message": { + "file": "ui/file_upload_screen.json", + "type": "panel", + "extend": { + "name": "message_text_panel", + "namespace": "file_upload" + } + }, + "content_stack_panel/description": { + "file": "ui/file_upload_screen.json", + "type": "panel", + "extend": { + "name": "progress_text_panel", + "namespace": "file_upload" + } + }, + "content_stack_panel/progress": { + "file": "ui/file_upload_screen.json", + "type": "panel", + "extend": { + "name": "progress_bar_icon", + "namespace": "file_upload" + } + }, + "warning_content_panel": { + "file": "ui/file_upload_screen.json", + "type": "panel", + "children": [ + "message" + ] + }, + "warning_content_panel/message": { + "file": "ui/file_upload_screen.json", + "type": "label" + }, + "button_panel": { + "file": "ui/file_upload_screen.json", + "type": "panel", + "children": [ + "play", + "cancel", + "continue_cancel" + ] + }, + "button_panel/play": { + "file": "ui/file_upload_screen.json", + "type": "button", + "extend": { + "name": "lets_go_button", + "namespace": "file_upload" + } + }, + "button_panel/cancel": { + "file": "ui/file_upload_screen.json", + "type": "button", + "extend": { + "name": "cancel_button", + "namespace": "file_upload" + } + }, + "button_panel/continue_cancel": { + "file": "ui/file_upload_screen.json", + "type": "panel", + "extend": { + "name": "continue_or_cancel_button", + "namespace": "file_upload" + } + }, + "file_upload_content": { + "file": "ui/file_upload_screen.json", + "type": "panel", + "children": [ + "title_panel_content", + "content" + ] + }, + "file_upload_content/title_panel_content": { + "file": "ui/file_upload_screen.json", + "type": "panel", + "extend": { + "name": "title_panel_content", + "namespace": "common_art" + } + }, + "file_upload_content/content": { + "file": "ui/file_upload_screen.json", + "type": "panel", + "children": [ + "background", + "title", + "content", + "buttons" + ] + }, + "file_upload_content/content/background": { + "file": "ui/file_upload_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "file_upload_content/content/title": { + "file": "ui/file_upload_screen.json", + "type": "panel", + "extend": { + "name": "upload_title_panel", + "namespace": "file_upload" + } + }, + "file_upload_content/content/content": { + "file": "ui/file_upload_screen.json", + "type": "panel", + "extend": { + "name": "content_panel", + "namespace": "file_upload" + } + }, + "file_upload_content/content/buttons": { + "file": "ui/file_upload_screen.json", + "type": "panel", + "extend": { + "name": "button_panel", + "namespace": "file_upload" + } + }, + "file_transmission_screen": { + "file": "ui/file_upload_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + } + }, + "furnace": { + "flame_panel": { + "file": "ui/furnace_screen.json", + "type": "panel", + "children": [ + "flame_empty_image", + "flame_full_image" + ] + }, + "flame_panel/flame_empty_image": { + "file": "ui/furnace_screen.json", + "type": "image", + "extend": { + "name": "flame_empty_image", + "namespace": "furnace" + } + }, + "flame_panel/flame_full_image": { + "file": "ui/furnace_screen.json", + "type": "image", + "extend": { + "name": "flame_full_image", + "namespace": "furnace" + } + }, + "furnace_arrow_empty_image": { + "file": "ui/furnace_screen.json", + "type": "image" + }, + "furnace_arrow_full_image": { + "file": "ui/furnace_screen.json", + "type": "image" + }, + "flame_empty_image": { + "file": "ui/furnace_screen.json", + "type": "image" + }, + "flame_full_image": { + "file": "ui/furnace_screen.json", + "type": "image" + }, + "furnace_label": { + "file": "ui/furnace_screen.json", + "type": "label" + }, + "furnace_input_panel": { + "file": "ui/furnace_screen.json", + "type": "panel", + "children": [ + "panel" + ] + }, + "furnace_input_panel/panel": { + "file": "ui/furnace_screen.json", + "type": "panel", + "children": [ + "furnace_ingredient_panel", + "flame_panel", + "furnace_fuel_panel" + ] + }, + "furnace_input_panel/panel/furnace_ingredient_panel": { + "file": "ui/furnace_screen.json", + "type": "panel", + "extend": { + "name": "furnace_ingredient_panel", + "namespace": "furnace" + } + }, + "furnace_input_panel/panel/flame_panel": { + "file": "ui/furnace_screen.json", + "type": "panel", + "extend": { + "name": "flame_panel", + "namespace": "furnace" + } + }, + "furnace_input_panel/panel/furnace_fuel_panel": { + "file": "ui/furnace_screen.json", + "type": "panel", + "extend": { + "name": "furnace_fuel_panel", + "namespace": "furnace" + } + }, + "furnace_ingredient_panel": { + "file": "ui/furnace_screen.json", + "type": "panel", + "children": [ + "ingredient_item" + ] + }, + "furnace_ingredient_panel/ingredient_item": { + "file": "ui/furnace_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "furnace_fuel_panel": { + "file": "ui/furnace_screen.json", + "type": "panel", + "children": [ + "fuel_item" + ] + }, + "furnace_fuel_panel/fuel_item": { + "file": "ui/furnace_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "furnace_output_panel": { + "file": "ui/furnace_screen.json", + "type": "panel", + "children": [ + "output_item" + ] + }, + "furnace_output_panel/output_item": { + "file": "ui/furnace_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "furnace_panel_top_half": { + "file": "ui/furnace_screen.json", + "type": "panel", + "children": [ + "furnace_label", + "input", + "furnace_arrow_empty_image", + "furnace_arrow_full_image", + "output" + ] + }, + "furnace_panel_top_half/furnace_label": { + "file": "ui/furnace_screen.json", + "type": "label", + "extend": { + "name": "furnace_label", + "namespace": "furnace" + } + }, + "furnace_panel_top_half/input": { + "file": "ui/furnace_screen.json", + "type": "panel", + "extend": { + "name": "furnace_input_panel", + "namespace": "furnace" + } + }, + "furnace_panel_top_half/furnace_arrow_empty_image": { + "file": "ui/furnace_screen.json", + "type": "image", + "extend": { + "name": "furnace_arrow_empty_image", + "namespace": "furnace" + } + }, + "furnace_panel_top_half/furnace_arrow_full_image": { + "file": "ui/furnace_screen.json", + "type": "image", + "extend": { + "name": "furnace_arrow_full_image", + "namespace": "furnace" + } + }, + "furnace_panel_top_half/output": { + "file": "ui/furnace_screen.json", + "type": "panel", + "extend": { + "name": "furnace_output_panel", + "namespace": "furnace" + } + }, + "furnace_panel": { + "file": "ui/furnace_screen.json", + "type": "panel", + "children": [ + "container_gamepad_helpers", + "selected_item_details_factory", + "item_lock_notification_factory", + "root_panel", + "flying_item_renderer" + ] + }, + "furnace_panel/container_gamepad_helpers": { + "file": "ui/furnace_screen.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "furnace_panel/selected_item_details_factory": { + "file": "ui/furnace_screen.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "furnace_panel/item_lock_notification_factory": { + "file": "ui/furnace_screen.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "furnace_panel/root_panel": { + "file": "ui/furnace_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "common_panel", + "furnace_screen_inventory", + "inventory_selected_icon_button", + "gamepad_cursor" + ] + }, + "furnace_panel/root_panel/common_panel": { + "file": "ui/furnace_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "furnace_panel/root_panel/furnace_screen_inventory": { + "file": "ui/furnace_screen.json", + "type": "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": { + "file": "ui/furnace_screen.json", + "type": "panel", + "extend": { + "name": "furnace_panel_top_half", + "namespace": "furnace" + } + }, + "furnace_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label": { + "file": "ui/furnace_screen.json", + "type": "panel", + "extend": { + "name": "inventory_panel_bottom_half_with_label", + "namespace": "common" + } + }, + "furnace_panel/root_panel/furnace_screen_inventory/hotbar_grid": { + "file": "ui/furnace_screen.json", + "type": "grid", + "extend": { + "name": "hotbar_grid_template", + "namespace": "common" + } + }, + "furnace_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button": { + "file": "ui/furnace_screen.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "furnace_panel/root_panel/inventory_selected_icon_button": { + "file": "ui/furnace_screen.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "furnace_panel/root_panel/gamepad_cursor": { + "file": "ui/furnace_screen.json", + "type": "button", + "extend": { + "name": "gamepad_cursor_button", + "namespace": "common" + } + }, + "furnace_panel/flying_item_renderer": { + "file": "ui/furnace_screen.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + }, + "furnace_screen": { + "file": "ui/furnace_screen.json", + "type": "screen", + "extend": { + "name": "inventory_screen_common", + "namespace": "common" + } + } + }, + "furnace_pocket": { + "generic_label": { + "file": "ui/furnace_screen_pocket.json", + "type": "label" + }, + "background_image": { + "file": "ui/furnace_screen_pocket.json", + "type": "image" + }, + "empty_arrow": { + "file": "ui/furnace_screen_pocket.json", + "type": "image", + "extend": { + "name": "furnace_arrow_empty_image", + "namespace": "furnace" + } + }, + "full_arrow": { + "file": "ui/furnace_screen_pocket.json", + "type": "image", + "extend": { + "name": "furnace_arrow_full_image", + "namespace": "furnace" + } + }, + "flame_empty": { + "file": "ui/furnace_screen_pocket.json", + "type": "image", + "extend": { + "name": "flame_empty_image", + "namespace": "furnace" + } + }, + "flame_full": { + "file": "ui/furnace_screen_pocket.json", + "type": "image", + "extend": { + "name": "flame_full_image", + "namespace": "furnace" + } + }, + "input_label": { + "file": "ui/furnace_screen_pocket.json", + "type": "label", + "extend": { + "name": "generic_label", + "namespace": "furnace_pocket" + } + }, + "fuel_label": { + "file": "ui/furnace_screen_pocket.json", + "type": "label", + "extend": { + "name": "generic_label", + "namespace": "furnace_pocket" + } + }, + "result_label": { + "file": "ui/furnace_screen_pocket.json", + "type": "label", + "extend": { + "name": "generic_label", + "namespace": "furnace_pocket" + } + }, + "result_name_label": { + "file": "ui/furnace_screen_pocket.json", + "type": "label", + "extend": { + "name": "generic_label", + "namespace": "furnace_pocket" + } + }, + "furnace_content": { + "file": "ui/furnace_screen_pocket.json", + "type": "panel", + "children": [ + "input_panel", + "flame_empty", + "flame_full", + "fuel_panel", + "empty_arrow", + "full_arrow", + "output_panel" + ] + }, + "furnace_content/input_panel": { + "file": "ui/furnace_screen_pocket.json", + "type": "panel", + "children": [ + "input_label", + "ingredient_item" + ] + }, + "furnace_content/input_panel/input_label": { + "file": "ui/furnace_screen_pocket.json", + "type": "label", + "extend": { + "name": "input_label", + "namespace": "furnace_pocket" + } + }, + "furnace_content/input_panel/ingredient_item": { + "file": "ui/furnace_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_large_container_item", + "namespace": "common" + } + }, + "furnace_content/flame_empty": { + "file": "ui/furnace_screen_pocket.json", + "type": "image", + "extend": { + "name": "flame_empty_image", + "namespace": "furnace" + } + }, + "furnace_content/flame_full": { + "file": "ui/furnace_screen_pocket.json", + "type": "image", + "extend": { + "name": "flame_full_image", + "namespace": "furnace" + } + }, + "furnace_content/fuel_panel": { + "file": "ui/furnace_screen_pocket.json", + "type": "panel", + "children": [ + "fuel_label", + "fuel_item" + ] + }, + "furnace_content/fuel_panel/fuel_label": { + "file": "ui/furnace_screen_pocket.json", + "type": "label", + "extend": { + "name": "fuel_label", + "namespace": "furnace_pocket" + } + }, + "furnace_content/fuel_panel/fuel_item": { + "file": "ui/furnace_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_large_container_item", + "namespace": "common" + } + }, + "furnace_content/empty_arrow": { + "file": "ui/furnace_screen_pocket.json", + "type": "image", + "extend": { + "name": "empty_arrow", + "namespace": "furnace_pocket" + } + }, + "furnace_content/full_arrow": { + "file": "ui/furnace_screen_pocket.json", + "type": "image", + "extend": { + "name": "full_arrow", + "namespace": "furnace_pocket" + } + }, + "furnace_content/output_panel": { + "file": "ui/furnace_screen_pocket.json", + "type": "panel", + "children": [ + "result_label", + "result_name_label", + "output_item" + ] + }, + "furnace_content/output_panel/result_label": { + "file": "ui/furnace_screen_pocket.json", + "type": "label", + "extend": { + "name": "result_label", + "namespace": "furnace_pocket" + } + }, + "furnace_content/output_panel/result_name_label": { + "file": "ui/furnace_screen_pocket.json", + "type": "label", + "extend": { + "name": "result_name_label", + "namespace": "furnace_pocket" + } + }, + "furnace_content/output_panel/output_item": { + "file": "ui/furnace_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_large_container_item", + "namespace": "common" + } + }, + "inventory_grid": { + "file": "ui/furnace_screen_pocket.json", + "type": "grid" + }, + "inventory_content": { + "file": "ui/furnace_screen_pocket.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "inventory_content/scrolling_panel": { + "file": "ui/furnace_screen_pocket.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "header": { + "file": "ui/furnace_screen_pocket.json", + "type": "panel", + "children": [ + "header_background", + "close_button", + "panel" + ] + }, + "header/header_background": { + "file": "ui/furnace_screen_pocket.json", + "type": "image" + }, + "header/close_button": { + "file": "ui/furnace_screen_pocket.json", + "type": "button", + "extend": { + "name": "legacy_pocket_close_button", + "namespace": "common" + } + }, + "header/panel": { + "file": "ui/furnace_screen_pocket.json", + "type": "panel", + "children": [ + "title_label" + ] + }, + "header/panel/title_label": { + "file": "ui/furnace_screen_pocket.json", + "type": "label", + "extend": { + "name": "generic_label", + "namespace": "furnace_pocket" + } + }, + "inventory_and_furnace_panel": { + "file": "ui/furnace_screen_pocket.json", + "type": "panel", + "children": [ + "inventory_half_screen", + "furnace_half_screen" + ] + }, + "inventory_and_furnace_panel/inventory_half_screen": { + "file": "ui/furnace_screen_pocket.json", + "type": "panel", + "children": [ + "inventory_content" + ] + }, + "inventory_and_furnace_panel/inventory_half_screen/inventory_content": { + "file": "ui/furnace_screen_pocket.json", + "type": "panel", + "extend": { + "name": "inventory_content", + "namespace": "furnace_pocket" + } + }, + "inventory_and_furnace_panel/furnace_half_screen": { + "file": "ui/furnace_screen_pocket.json", + "type": "panel", + "children": [ + "furnace_content" + ] + }, + "inventory_and_furnace_panel/furnace_half_screen/furnace_content": { + "file": "ui/furnace_screen_pocket.json", + "type": "panel", + "extend": { + "name": "furnace_content", + "namespace": "furnace_pocket" + } + }, + "header_and_content_stack_panel": { + "file": "ui/furnace_screen_pocket.json", + "type": "stack_panel", + "children": [ + "header", + "inventory_and_furnace_panel" + ] + }, + "header_and_content_stack_panel/header": { + "file": "ui/furnace_screen_pocket.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "furnace_pocket" + } + }, + "header_and_content_stack_panel/inventory_and_furnace_panel": { + "file": "ui/furnace_screen_pocket.json", + "type": "panel", + "extend": { + "name": "inventory_and_furnace_panel", + "namespace": "furnace_pocket" + } + }, + "furnace_panel": { + "file": "ui/furnace_screen_pocket.json", + "type": "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": { + "file": "ui/furnace_screen_pocket.json", + "type": "image", + "extend": { + "name": "background_image", + "namespace": "furnace_pocket" + } + }, + "furnace_panel/root_panel": { + "file": "ui/furnace_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + } + }, + "furnace_panel/header_and_content_stack_panel": { + "file": "ui/furnace_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "header_and_content_stack_panel", + "namespace": "furnace_pocket" + } + }, + "furnace_panel/container_gamepad_helpers": { + "file": "ui/furnace_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "furnace_panel/inventory_selected_icon_button": { + "file": "ui/furnace_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "furnace_panel/hold_icon": { + "file": "ui/furnace_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "furnace_panel/selected_item_details_factory": { + "file": "ui/furnace_screen_pocket.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "furnace_panel/item_lock_notification_factory": { + "file": "ui/furnace_screen_pocket.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "furnace_panel/flying_item_renderer": { + "file": "ui/furnace_screen_pocket.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + } + }, + "game_tip": { + "game_tip_animation": { + "file": "ui/game_tip_screen.json", + "type": "image" + }, + "game_tip_animation_panel": { + "file": "ui/game_tip_screen.json", + "type": "panel", + "children": [ + "animated_icon" + ] + }, + "game_tip_animation_panel/animated_icon": { + "file": "ui/game_tip_screen.json", + "type": "image", + "extend": { + "name": "game_tip_animation", + "namespace": "game_tip" + } + }, + "game_tip_label": { + "file": "ui/game_tip_screen.json", + "type": "label" + }, + "game_tip_text_panel": { + "file": "ui/game_tip_screen.json", + "type": "stack_panel", + "children": [ + "upper_padding", + "label", + "lower_padding" + ] + }, + "game_tip_text_panel/upper_padding": { + "file": "ui/game_tip_screen.json", + "type": "panel" + }, + "game_tip_text_panel/label": { + "file": "ui/game_tip_screen.json", + "type": "label", + "extend": { + "name": "game_tip_label", + "namespace": "game_tip" + } + }, + "game_tip_text_panel/lower_padding": { + "file": "ui/game_tip_screen.json", + "type": "panel" + }, + "game_tip_arrow_image": { + "file": "ui/game_tip_screen.json", + "type": "image" + }, + "game_tip_arrow_panel": { + "file": "ui/game_tip_screen.json", + "type": "panel", + "children": [ + "tip_arrow" + ] + }, + "game_tip_arrow_panel/tip_arrow": { + "file": "ui/game_tip_screen.json", + "type": "image", + "extend": { + "name": "game_tip_arrow_image", + "namespace": "game_tip" + } + }, + "game_tip_panel": { + "file": "ui/game_tip_screen.json", + "type": "stack_panel", + "children": [ + "animated_panel", + "middle_padding", + "label", + "right_padding" + ] + }, + "game_tip_panel/animated_panel": { + "file": "ui/game_tip_screen.json", + "type": "panel", + "extend": { + "name": "game_tip_animation_panel", + "namespace": "game_tip" + } + }, + "game_tip_panel/middle_padding": { + "file": "ui/game_tip_screen.json", + "type": "panel" + }, + "game_tip_panel/label": { + "file": "ui/game_tip_screen.json", + "type": "stack_panel", + "extend": { + "name": "game_tip_text_panel", + "namespace": "game_tip" + } + }, + "game_tip_panel/right_padding": { + "file": "ui/game_tip_screen.json", + "type": "panel" + }, + "game_tip_item_background": { + "file": "ui/game_tip_screen.json", + "type": "image", + "children": [ + "horizontal_container", + "arrow_panel" + ] + }, + "game_tip_item_background/horizontal_container": { + "file": "ui/game_tip_screen.json", + "type": "stack_panel", + "extend": { + "name": "game_tip_panel", + "namespace": "game_tip" + } + }, + "game_tip_item_background/arrow_panel": { + "file": "ui/game_tip_screen.json", + "type": "panel", + "extend": { + "name": "game_tip_arrow_panel", + "namespace": "game_tip" + } + }, + "chat_stack_game_tip_panel": { + "file": "ui/game_tip_screen.json", + "type": "stack_panel", + "children": [ + "top_padding", + "game_tip_background" + ] + }, + "chat_stack_game_tip_panel/top_padding": { + "file": "ui/game_tip_screen.json", + "type": "panel" + }, + "chat_stack_game_tip_panel/game_tip_background": { + "file": "ui/game_tip_screen.json", + "type": "image", + "extend": { + "name": "game_tip_item_background", + "namespace": "game_tip" + } + }, + "game_tip_factory": { + "file": "ui/game_tip_screen.json", + "type": "panel" + }, + "game_tip_chat_stack_factory": { + "file": "ui/game_tip_screen.json", + "type": "panel" + } + }, + "gamepad_disconnected": { + "gamepad_disconnected_modal": { + "file": "ui/gamepad_disconnected.json", + "type": "panel", + "children": [ + "dialog_background_hollow_3" + ] + }, + "gamepad_disconnected_modal/dialog_background_hollow_3": { + "file": "ui/gamepad_disconnected.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_3", + "namespace": "common" + }, + "children": [ + "control" + ] + }, + "gamepad_disconnected_modal/dialog_background_hollow_3/control": { + "file": "ui/gamepad_disconnected.json", + "type": "image", + "children": [ + "content_panel" + ] + }, + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel": { + "file": "ui/gamepad_disconnected.json", + "type": "stack_panel", + "children": [ + "padding_0", + "title", + "padding_1", + "description" + ] + }, + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_0": { + "file": "ui/gamepad_disconnected.json", + "type": "panel" + }, + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/title": { + "file": "ui/gamepad_disconnected.json", + "type": "label" + }, + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_1": { + "file": "ui/gamepad_disconnected.json", + "type": "panel" + }, + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/description": { + "file": "ui/gamepad_disconnected.json", + "type": "label" + }, + "gamepad_disconnected_screen": { + "file": "ui/gamepad_disconnected.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + } + }, + "gameplay": { + "bundle_selected_item_icon": { + "file": "ui/gameplay_common.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "common" + } + }, + "bundle_open_icon_back": { + "file": "ui/gameplay_common.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "common" + } + }, + "bundle_open_icon_front": { + "file": "ui/gameplay_common.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "common" + } + }, + "bundle_selected_item_background": { + "file": "ui/gameplay_common.json", + "type": "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": { + "file": "ui/gameplay_common.json", + "type": "image", + "extend": { + "name": "highlight_slot", + "namespace": "common" + } + }, + "bundle_selected_item_background/bundle_selected_item_background_colour": { + "file": "ui/gameplay_common.json", + "type": "image" + }, + "bundle_selected_item_background/bundle_selected_item_frame": { + "file": "ui/gameplay_common.json", + "type": "image", + "extend": { + "name": "pocket_ui_highlight_slot", + "namespace": "common" + } + }, + "bundle_selected_item_panel": { + "file": "ui/gameplay_common.json", + "type": "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": { + "file": "ui/gameplay_common.json", + "type": "panel", + "extend": { + "name": "bundle_selected_item_background", + "namespace": "gameplay" + } + }, + "bundle_selected_item_panel/bundle_open_icon_back": { + "file": "ui/gameplay_common.json", + "type": "custom", + "extend": { + "name": "bundle_open_icon_back", + "namespace": "gameplay" + } + }, + "bundle_selected_item_panel/bundle_selected_item_icon": { + "file": "ui/gameplay_common.json", + "type": "custom", + "extend": { + "name": "bundle_selected_item_icon", + "namespace": "gameplay" + } + }, + "bundle_selected_item_panel/bundle_open_icon_front": { + "file": "ui/gameplay_common.json", + "type": "custom", + "extend": { + "name": "bundle_open_icon_front", + "namespace": "gameplay" + } + }, + "bundle_selected_item_panel/storage_bar": { + "file": "ui/gameplay_common.json", + "type": "custom", + "extend": { + "name": "storage_bar", + "namespace": "common" + } + }, + "bundle_slot_panel": { + "file": "ui/gameplay_common.json", + "type": "panel", + "children": [ + "bundle_selected_item_panel" + ] + }, + "bundle_slot_panel/bundle_selected_item_panel": { + "file": "ui/gameplay_common.json", + "type": "panel", + "extend": { + "name": "bundle_selected_item_panel", + "namespace": "gameplay" + } + }, + "bundle_cell_image": { + "file": "ui/gameplay_common.json", + "type": "panel", + "children": [ + "background_panel", + "highlight_panel" + ] + }, + "bundle_cell_image/background_panel": { + "file": "ui/gameplay_common.json", + "type": "panel", + "children": [ + "item_background" + ] + }, + "bundle_cell_image/background_panel/item_background": { + "file": "ui/gameplay_common.json", + "type": "image" + }, + "bundle_cell_image/highlight_panel": { + "file": "ui/gameplay_common.json", + "type": "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": { + "file": "ui/gameplay_common.json", + "type": "image", + "extend": { + "name": "highlight_slot", + "namespace": "common" + } + }, + "bundle_cell_image/highlight_panel/bundle_selected_item_background_border_white": { + "file": "ui/gameplay_common.json", + "type": "image" + }, + "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_blue": { + "file": "ui/gameplay_common.json", + "type": "image", + "extend": { + "name": "cell_image_selected", + "namespace": "common" + } + }, + "bundle_tooltip_slot_button": { + "file": "ui/gameplay_common.json", + "type": "button", + "extend": { + "name": "container_slot_button_prototype", + "namespace": "common" + } + }, + "bundle_tooltip_slot_pocket": { + "file": "ui/gameplay_common.json", + "type": "panel", + "children": [ + "item_in_bundle_tooltip_pocket", + "more_hidden_items_label" + ] + }, + "bundle_tooltip_slot_pocket/item_in_bundle_tooltip_pocket": { + "file": "ui/gameplay_common.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_container_item", + "namespace": "common" + } + }, + "bundle_tooltip_slot_pocket/more_hidden_items_label": { + "file": "ui/gameplay_common.json", + "type": "label" + }, + "bundle_tooltip_slot_classic": { + "file": "ui/gameplay_common.json", + "type": "panel", + "children": [ + "item_in_bundle_tooltip_pocket", + "more_hidden_items_label" + ] + }, + "bundle_tooltip_slot_classic/item_in_bundle_tooltip_pocket": { + "file": "ui/gameplay_common.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "bundle_tooltip_slot_classic/more_hidden_items_label": { + "file": "ui/gameplay_common.json", + "type": "label" + }, + "bundle_tooltip": { + "file": "ui/gameplay_common.json", + "type": "panel", + "children": [ + "background", + "header_stack", + "wrapper" + ] + }, + "bundle_tooltip/background": { + "file": "ui/gameplay_common.json", + "type": "image", + "children": [ + "empty_button", + "selected_item_tooltip" + ] + }, + "bundle_tooltip/background/empty_button": { + "file": "ui/gameplay_common.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "bundle_tooltip/background/empty_button/default": { + "file": "ui/gameplay_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "bundle_tooltip/background/empty_button/hover": { + "file": "ui/gameplay_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "bundle_tooltip/background/empty_button/pressed": { + "file": "ui/gameplay_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "bundle_tooltip/background/selected_item_tooltip": { + "file": "ui/gameplay_common.json", + "type": "image", + "extend": { + "name": "item_panel_image", + "namespace": "common" + }, + "children": [ + "item_text_label" + ] + }, + "bundle_tooltip/background/selected_item_tooltip/item_text_label": { + "file": "ui/gameplay_common.json", + "type": "label", + "extend": { + "name": "item_text_label", + "namespace": "common" + } + }, + "bundle_tooltip/header_stack": { + "file": "ui/gameplay_common.json", + "type": "stack_panel", + "children": [ + "bundle_label", + "close_button" + ] + }, + "bundle_tooltip/header_stack/bundle_label": { + "file": "ui/gameplay_common.json", + "type": "label" + }, + "bundle_tooltip/header_stack/close_button": { + "file": "ui/gameplay_common.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "bundle_tooltip/header_stack/close_button/default": { + "file": "ui/gameplay_common.json", + "type": "panel", + "extend": { + "name": "close_button_panel", + "namespace": "common" + } + }, + "bundle_tooltip/header_stack/close_button/hover": { + "file": "ui/gameplay_common.json", + "type": "panel", + "extend": { + "name": "close_button_panel", + "namespace": "common" + } + }, + "bundle_tooltip/header_stack/close_button/pressed": { + "file": "ui/gameplay_common.json", + "type": "panel", + "extend": { + "name": "close_button_panel", + "namespace": "common" + } + }, + "bundle_tooltip/wrapper": { + "file": "ui/gameplay_common.json", + "type": "panel", + "children": [ + "vertical_layout_stack" + ] + }, + "bundle_tooltip/wrapper/vertical_layout_stack": { + "file": "ui/gameplay_common.json", + "type": "stack_panel", + "children": [ + "header_padding", + "horisontal_layout_stack" + ] + }, + "bundle_tooltip/wrapper/vertical_layout_stack/header_padding": { + "file": "ui/gameplay_common.json", + "type": "panel" + }, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack": { + "file": "ui/gameplay_common.json", + "type": "stack_panel", + "children": [ + "left_padding", + "body_stack" + ] + }, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/left_padding": { + "file": "ui/gameplay_common.json", + "type": "panel" + }, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack": { + "file": "ui/gameplay_common.json", + "type": "stack_panel", + "children": [ + "item_grid", + "info_message", + "footer_panel" + ] + }, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/item_grid": { + "file": "ui/gameplay_common.json", + "type": "grid" + }, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/info_message": { + "file": "ui/gameplay_common.json", + "type": "label" + }, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel": { + "file": "ui/gameplay_common.json", + "type": "panel", + "children": [ + "weight_bar" + ] + }, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar": { + "file": "ui/gameplay_common.json", + "type": "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": { + "file": "ui/gameplay_common.json", + "type": "label" + }, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_fill": { + "file": "ui/gameplay_common.json", + "type": "image" + }, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full": { + "file": "ui/gameplay_common.json", + "type": "image", + "children": [ + "full_label" + ] + }, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full/full_label": { + "file": "ui/gameplay_common.json", + "type": "label" + }, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_border": { + "file": "ui/gameplay_common.json", + "type": "image" + }, + "bundle_touch_tooltip": { + "file": "ui/gameplay_common.json", + "type": "panel", + "extend": { + "name": "bundle_tooltip", + "namespace": "gameplay" + } + }, + "bundle_tooltip_factory_wrapper": { + "file": "ui/gameplay_common.json", + "type": "panel", + "children": [ + "bundle_cursor_tooltip" + ] + }, + "bundle_tooltip_factory_wrapper/bundle_cursor_tooltip": { + "file": "ui/gameplay_common.json", + "type": "custom", + "extend": { + "name": "bundle_cursor_tooltip", + "namespace": "gameplay" + } + }, + "bundle_cursor_tooltip": { + "file": "ui/gameplay_common.json", + "type": "custom", + "children": [ + "tooltip" + ] + }, + "bundle_cursor_tooltip/tooltip": { + "file": "ui/gameplay_common.json", + "type": "panel", + "extend": { + "name": "bundle_tooltip", + "namespace": "gameplay" + } + } + }, + "gathering_info": { + "gathering_info_screen": { + "file": "ui/gathering_info_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "info_content": { + "file": "ui/gathering_info_screen.json", + "type": "panel", + "children": [ + "header", + "left_panel", + "section_divider", + "right_panel" + ] + }, + "info_content/header": { + "file": "ui/gathering_info_screen.json", + "type": "stack_panel", + "extend": { + "name": "fullscreen_header", + "namespace": "common" + } + }, + "info_content/left_panel": { + "file": "ui/gathering_info_screen.json", + "type": "panel", + "children": [ + "stack" + ] + }, + "info_content/left_panel/stack": { + "file": "ui/gathering_info_screen.json", + "type": "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": { + "file": "ui/gathering_info_screen.json", + "type": "image" + }, + "info_content/left_panel/stack/pad_2": { + "file": "ui/gathering_info_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "info_content/left_panel/stack/button_and_caption": { + "file": "ui/gathering_info_screen.json", + "type": "panel", + "children": [ + "caption", + "action_button" + ] + }, + "info_content/left_panel/stack/button_and_caption/caption": { + "file": "ui/gathering_info_screen.json", + "type": "image", + "extend": { + "name": "gathering_caption", + "namespace": "start" + } + }, + "info_content/left_panel/stack/button_and_caption/action_button": { + "file": "ui/gathering_info_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "info_content/left_panel/stack/pad_3": { + "file": "ui/gathering_info_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "info_content/left_panel/stack/info_button": { + "file": "ui/gathering_info_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "info_content/left_panel/stack/pad_4": { + "file": "ui/gathering_info_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "info_content/left_panel/stack/gamepad_helper_panel": { + "file": "ui/gathering_info_screen.json", + "type": "panel", + "children": [ + "gamepad_helpers" + ] + }, + "info_content/left_panel/stack/gamepad_helper_panel/gamepad_helpers": { + "file": "ui/gathering_info_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helpers", + "namespace": "gathering_info" + } + }, + "info_content/left_panel/stack/pad_fill": { + "file": "ui/gathering_info_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "info_content/left_panel/stack/gathering_id_label": { + "file": "ui/gathering_info_screen.json", + "type": "label" + }, + "info_content/left_panel/stack/pad_5": { + "file": "ui/gathering_info_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "info_content/section_divider": { + "file": "ui/gathering_info_screen.json", + "type": "image", + "extend": { + "name": "section_divider", + "namespace": "gathering_info" + } + }, + "info_content/right_panel": { + "file": "ui/gathering_info_screen.json", + "type": "panel", + "children": [ + "scroll" + ] + }, + "info_content/right_panel/scroll": { + "file": "ui/gathering_info_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "right_panel_content": { + "file": "ui/gathering_info_screen.json", + "type": "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": { + "file": "ui/gathering_info_screen.json", + "type": "panel" + }, + "right_panel_content/sign_in_panel": { + "file": "ui/gathering_info_screen.json", + "type": "stack_panel", + "children": [ + "sign_in_image", + "horizontal_pad", + "text_stack" + ] + }, + "right_panel_content/sign_in_panel/sign_in_image": { + "file": "ui/gathering_info_screen.json", + "type": "image" + }, + "right_panel_content/sign_in_panel/horizontal_pad": { + "file": "ui/gathering_info_screen.json", + "type": "panel" + }, + "right_panel_content/sign_in_panel/text_stack": { + "file": "ui/gathering_info_screen.json", + "type": "stack_panel", + "children": [ + "sign_in_title", + "text_pad", + "sign_in_body" + ] + }, + "right_panel_content/sign_in_panel/text_stack/sign_in_title": { + "file": "ui/gathering_info_screen.json", + "type": "panel", + "extend": { + "name": "tts_label_title", + "namespace": "gathering_info" + } + }, + "right_panel_content/sign_in_panel/text_stack/text_pad": { + "file": "ui/gathering_info_screen.json", + "type": "panel" + }, + "right_panel_content/sign_in_panel/text_stack/sign_in_body": { + "file": "ui/gathering_info_screen.json", + "type": "panel", + "extend": { + "name": "tts_label", + "namespace": "gathering_info" + } + }, + "right_panel_content/sign_in_pad": { + "file": "ui/gathering_info_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "right_panel_content/qr_panel": { + "file": "ui/gathering_info_screen.json", + "type": "stack_panel", + "children": [ + "qr_background", + "horizontal_pad", + "text_stack" + ] + }, + "right_panel_content/qr_panel/qr_background": { + "file": "ui/gathering_info_screen.json", + "type": "image", + "children": [ + "qr_image" + ] + }, + "right_panel_content/qr_panel/qr_background/qr_image": { + "file": "ui/gathering_info_screen.json", + "type": "image" + }, + "right_panel_content/qr_panel/horizontal_pad": { + "file": "ui/gathering_info_screen.json", + "type": "panel" + }, + "right_panel_content/qr_panel/text_stack": { + "file": "ui/gathering_info_screen.json", + "type": "stack_panel", + "children": [ + "qr_title", + "text_pad", + "qr_body" + ] + }, + "right_panel_content/qr_panel/text_stack/qr_title": { + "file": "ui/gathering_info_screen.json", + "type": "panel", + "extend": { + "name": "tts_label_title", + "namespace": "gathering_info" + } + }, + "right_panel_content/qr_panel/text_stack/text_pad": { + "file": "ui/gathering_info_screen.json", + "type": "panel" + }, + "right_panel_content/qr_panel/text_stack/qr_body": { + "file": "ui/gathering_info_screen.json", + "type": "panel", + "extend": { + "name": "tts_label", + "namespace": "gathering_info" + } + }, + "right_panel_content/qr_pad": { + "file": "ui/gathering_info_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "right_panel_content/title": { + "file": "ui/gathering_info_screen.json", + "type": "panel", + "extend": { + "name": "tts_label_title", + "namespace": "gathering_info" + } + }, + "right_panel_content/pad_1": { + "file": "ui/gathering_info_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "right_panel_content/body": { + "file": "ui/gathering_info_screen.json", + "type": "panel", + "extend": { + "name": "tts_label", + "namespace": "gathering_info" + } + }, + "right_panel_content/pad_2": { + "file": "ui/gathering_info_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "right_panel_content/body_image": { + "file": "ui/gathering_info_screen.json", + "type": "image" + }, + "right_panel_content/footer": { + "file": "ui/gathering_info_screen.json", + "type": "input_panel" + }, + "tts_label": { + "file": "ui/gathering_info_screen.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "tts_label_title": { + "file": "ui/gathering_info_screen.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "sign_in_title": { + "file": "ui/gathering_info_screen.json", + "type": "label" + }, + "sign_in_body": { + "file": "ui/gathering_info_screen.json", + "type": "label" + }, + "qr_title": { + "file": "ui/gathering_info_screen.json", + "type": "label" + }, + "qr_body": { + "file": "ui/gathering_info_screen.json", + "type": "label" + }, + "title_panel": { + "file": "ui/gathering_info_screen.json", + "type": "label" + }, + "body_panel": { + "file": "ui/gathering_info_screen.json", + "type": "label" + }, + "section_divider": { + "file": "ui/gathering_info_screen.json", + "type": "image" + }, + "gamepad_helpers": { + "file": "ui/gathering_info_screen.json", + "type": "stack_panel", + "children": [ + "gamepad_helper_a", + "gamepad_helper_b" + ] + }, + "gamepad_helpers/gamepad_helper_a": { + "file": "ui/gathering_info_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_a", + "namespace": "common" + } + }, + "gamepad_helpers/gamepad_helper_b": { + "file": "ui/gathering_info_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_b", + "namespace": "common" + } + } + }, + "globalpause": { + "message": { + "file": "ui/global_pause_screen.json", + "type": "label" + }, + "quit_button": { + "file": "ui/global_pause_screen.json", + "type": "button", + "extend": { + "name": "light_text_form_fitting_button", + "namespace": "common_buttons" + } + }, + "globalpause_screen": { + "file": "ui/global_pause_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "pause_screen_content": { + "file": "ui/global_pause_screen.json", + "type": "panel", + "children": [ + "transparentFill", + "message", + "quit_button" + ] + }, + "pause_screen_content/transparentFill": { + "file": "ui/global_pause_screen.json", + "type": "image" + }, + "pause_screen_content/message": { + "file": "ui/global_pause_screen.json", + "type": "label", + "extend": { + "name": "message", + "namespace": "globalpause" + } + }, + "pause_screen_content/quit_button": { + "file": "ui/global_pause_screen.json", + "type": "button", + "extend": { + "name": "quit_button", + "namespace": "globalpause" + } + } + }, + "grindstone": { + "title_label": { + "file": "ui/grindstone_screen.json", + "type": "label" + }, + "arrow_icon": { + "file": "ui/grindstone_screen.json", + "type": "image" + }, + "cross_out_icon": { + "file": "ui/grindstone_screen.json", + "type": "image" + }, + "grindstone_output_slot_button": { + "file": "ui/grindstone_screen.json", + "type": "button", + "extend": { + "name": "container_slot_button_prototype", + "namespace": "common" + } + }, + "grindstone_item_slot": { + "file": "ui/grindstone_screen.json", + "type": "panel", + "children": [ + "container_item" + ] + }, + "grindstone_item_slot/container_item": { + "file": "ui/grindstone_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "grindstone_middle_panel": { + "file": "ui/grindstone_screen.json", + "type": "panel", + "children": [ + "input_item_slot", + "additional_item_slot" + ] + }, + "grindstone_middle_panel/input_item_slot": { + "file": "ui/grindstone_screen.json", + "type": "panel", + "extend": { + "name": "grindstone_item_slot", + "namespace": "grindstone" + } + }, + "grindstone_middle_panel/additional_item_slot": { + "file": "ui/grindstone_screen.json", + "type": "panel", + "extend": { + "name": "grindstone_item_slot", + "namespace": "grindstone" + } + }, + "grindstone_slots_panel": { + "file": "ui/grindstone_screen.json", + "type": "panel", + "children": [ + "grindstone_middle_panel", + "yields", + "result_item_slot" + ] + }, + "grindstone_slots_panel/grindstone_middle_panel": { + "file": "ui/grindstone_screen.json", + "type": "panel", + "extend": { + "name": "grindstone_middle_panel", + "namespace": "grindstone" + } + }, + "grindstone_slots_panel/yields": { + "file": "ui/grindstone_screen.json", + "type": "panel", + "children": [ + "arrow_icon", + "cross_out_icon" + ] + }, + "grindstone_slots_panel/yields/arrow_icon": { + "file": "ui/grindstone_screen.json", + "type": "image", + "extend": { + "name": "arrow_icon", + "namespace": "grindstone" + } + }, + "grindstone_slots_panel/yields/cross_out_icon": { + "file": "ui/grindstone_screen.json", + "type": "image", + "extend": { + "name": "cross_out_icon", + "namespace": "grindstone" + } + }, + "grindstone_slots_panel/result_item_slot": { + "file": "ui/grindstone_screen.json", + "type": "panel", + "extend": { + "name": "grindstone_item_slot", + "namespace": "grindstone" + } + }, + "top_half_panel": { + "file": "ui/grindstone_screen.json", + "type": "panel", + "children": [ + "title_label", + "grindstone_slots_panel" + ] + }, + "top_half_panel/title_label": { + "file": "ui/grindstone_screen.json", + "type": "label", + "extend": { + "name": "title_label", + "namespace": "grindstone" + } + }, + "top_half_panel/grindstone_slots_panel": { + "file": "ui/grindstone_screen.json", + "type": "panel", + "extend": { + "name": "grindstone_slots_panel", + "namespace": "grindstone" + } + }, + "grindstone_panel": { + "file": "ui/grindstone_screen.json", + "type": "panel", + "children": [ + "container_gamepad_helpers", + "selected_item_details_factory", + "item_lock_notification_factory", + "root_panel", + "flying_item_renderer" + ] + }, + "grindstone_panel/container_gamepad_helpers": { + "file": "ui/grindstone_screen.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "grindstone_panel/selected_item_details_factory": { + "file": "ui/grindstone_screen.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "grindstone_panel/item_lock_notification_factory": { + "file": "ui/grindstone_screen.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "grindstone_panel/root_panel": { + "file": "ui/grindstone_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "common_panel", + "grindstone_screen_inventory", + "inventory_selected_icon_button", + "gamepad_cursor" + ] + }, + "grindstone_panel/root_panel/common_panel": { + "file": "ui/grindstone_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "grindstone_panel/root_panel/grindstone_screen_inventory": { + "file": "ui/grindstone_screen.json", + "type": "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": { + "file": "ui/grindstone_screen.json", + "type": "panel", + "extend": { + "name": "top_half_panel", + "namespace": "grindstone" + } + }, + "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_panel_bottom_half_with_label": { + "file": "ui/grindstone_screen.json", + "type": "panel", + "extend": { + "name": "inventory_panel_bottom_half_with_label", + "namespace": "common" + } + }, + "grindstone_panel/root_panel/grindstone_screen_inventory/hotbar_grid": { + "file": "ui/grindstone_screen.json", + "type": "grid", + "extend": { + "name": "hotbar_grid_template", + "namespace": "common" + } + }, + "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_take_progress_icon_button": { + "file": "ui/grindstone_screen.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "grindstone_panel/root_panel/inventory_selected_icon_button": { + "file": "ui/grindstone_screen.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "grindstone_panel/root_panel/gamepad_cursor": { + "file": "ui/grindstone_screen.json", + "type": "button", + "extend": { + "name": "gamepad_cursor_button", + "namespace": "common" + } + }, + "grindstone_panel/flying_item_renderer": { + "file": "ui/grindstone_screen.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + }, + "grindstone_screen": { + "file": "ui/grindstone_screen.json", + "type": "screen", + "extend": { + "name": "inventory_screen_common", + "namespace": "common" + } + } + }, + "grindstone_pocket": { + "background_image": { + "file": "ui/grindstone_screen_pocket.json", + "type": "image" + }, + "repair_title_label": { + "file": "ui/grindstone_screen_pocket.json", + "type": "label" + }, + "grindstone_middle_panel": { + "file": "ui/grindstone_screen_pocket.json", + "type": "panel", + "children": [ + "input_slot", + "additional_slot" + ] + }, + "grindstone_middle_panel/input_slot": { + "file": "ui/grindstone_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_large_container_item", + "namespace": "common" + } + }, + "grindstone_middle_panel/additional_slot": { + "file": "ui/grindstone_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_large_container_item", + "namespace": "common" + } + }, + "slots_panel": { + "file": "ui/grindstone_screen_pocket.json", + "type": "panel", + "children": [ + "grindstone_middle_panel", + "arrow", + "result_slot" + ] + }, + "slots_panel/grindstone_middle_panel": { + "file": "ui/grindstone_screen_pocket.json", + "type": "panel", + "extend": { + "name": "grindstone_middle_panel", + "namespace": "grindstone_pocket" + } + }, + "slots_panel/arrow": { + "file": "ui/grindstone_screen_pocket.json", + "type": "image", + "children": [ + "cross_out" + ] + }, + "slots_panel/arrow/cross_out": { + "file": "ui/grindstone_screen_pocket.json", + "type": "image" + }, + "slots_panel/result_slot": { + "file": "ui/grindstone_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_large_container_item", + "namespace": "common" + } + }, + "grindstone_contents_panel": { + "file": "ui/grindstone_screen_pocket.json", + "type": "panel", + "children": [ + "repair_title_label", + "slots_panel" + ] + }, + "grindstone_contents_panel/repair_title_label": { + "file": "ui/grindstone_screen_pocket.json", + "type": "label", + "extend": { + "name": "repair_title_label", + "namespace": "grindstone_pocket" + } + }, + "grindstone_contents_panel/slots_panel": { + "file": "ui/grindstone_screen_pocket.json", + "type": "panel", + "extend": { + "name": "slots_panel", + "namespace": "grindstone_pocket" + } + }, + "inventory_grid": { + "file": "ui/grindstone_screen_pocket.json", + "type": "grid" + }, + "inventory_content": { + "file": "ui/grindstone_screen_pocket.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "inventory_content/scrolling_panel": { + "file": "ui/grindstone_screen_pocket.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "header": { + "file": "ui/grindstone_screen_pocket.json", + "type": "panel", + "children": [ + "header_background", + "legacy_pocket_close_button", + "panel" + ] + }, + "header/header_background": { + "file": "ui/grindstone_screen_pocket.json", + "type": "image" + }, + "header/legacy_pocket_close_button": { + "file": "ui/grindstone_screen_pocket.json", + "type": "button", + "extend": { + "name": "legacy_pocket_close_button", + "namespace": "common" + } + }, + "header/panel": { + "file": "ui/grindstone_screen_pocket.json", + "type": "panel", + "children": [ + "title_label" + ] + }, + "header/panel/title_label": { + "file": "ui/grindstone_screen_pocket.json", + "type": "label" + }, + "inventory_and_grindstone_panel": { + "file": "ui/grindstone_screen_pocket.json", + "type": "panel", + "children": [ + "inventory_half_screen", + "grindstone_half_screen" + ] + }, + "inventory_and_grindstone_panel/inventory_half_screen": { + "file": "ui/grindstone_screen_pocket.json", + "type": "panel", + "children": [ + "inventory_content" + ] + }, + "inventory_and_grindstone_panel/inventory_half_screen/inventory_content": { + "file": "ui/grindstone_screen_pocket.json", + "type": "panel", + "extend": { + "name": "inventory_content", + "namespace": "grindstone_pocket" + } + }, + "inventory_and_grindstone_panel/grindstone_half_screen": { + "file": "ui/grindstone_screen_pocket.json", + "type": "panel", + "children": [ + "grindstone_content" + ] + }, + "inventory_and_grindstone_panel/grindstone_half_screen/grindstone_content": { + "file": "ui/grindstone_screen_pocket.json", + "type": "panel", + "extend": { + "name": "grindstone_contents_panel", + "namespace": "grindstone_pocket" + } + }, + "header_and_content_stack_panel": { + "file": "ui/grindstone_screen_pocket.json", + "type": "stack_panel", + "children": [ + "header", + "inventory_and_grindstone_panel" + ] + }, + "header_and_content_stack_panel/header": { + "file": "ui/grindstone_screen_pocket.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "grindstone_pocket" + } + }, + "header_and_content_stack_panel/inventory_and_grindstone_panel": { + "file": "ui/grindstone_screen_pocket.json", + "type": "panel", + "extend": { + "name": "inventory_and_grindstone_panel", + "namespace": "grindstone_pocket" + } + }, + "grindstone_panel": { + "file": "ui/grindstone_screen_pocket.json", + "type": "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": { + "file": "ui/grindstone_screen_pocket.json", + "type": "image", + "extend": { + "name": "background_image", + "namespace": "grindstone_pocket" + } + }, + "grindstone_panel/root_panel": { + "file": "ui/grindstone_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + } + }, + "grindstone_panel/header_and_content_stack_panel": { + "file": "ui/grindstone_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "header_and_content_stack_panel", + "namespace": "grindstone_pocket" + } + }, + "grindstone_panel/container_gamepad_helpers": { + "file": "ui/grindstone_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "grindstone_panel/inventory_selected_icon_button": { + "file": "ui/grindstone_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "grindstone_panel/hold_icon": { + "file": "ui/grindstone_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "grindstone_panel/selected_item_details_factory": { + "file": "ui/grindstone_screen_pocket.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "grindstone_panel/item_lock_notification_factory": { + "file": "ui/grindstone_screen_pocket.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "grindstone_panel/flying_item_renderer": { + "file": "ui/grindstone_screen_pocket.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + } + }, + "gamma_calibration": { + "stack_panel_centering_panel": { + "file": "ui/gamma_calibration_screen.json", + "type": "panel", + "children": [ + "child" + ] + }, + "stack_panel_centering_panel/child": { + "file": "ui/gamma_calibration_screen.json", + "type": "unknown" + }, + "stack_panel_align_left_panel": { + "file": "ui/gamma_calibration_screen.json", + "type": "panel", + "children": [ + "child" + ] + }, + "stack_panel_align_left_panel/child": { + "file": "ui/gamma_calibration_screen.json", + "type": "unknown" + }, + "stack_panel_align_right_panel": { + "file": "ui/gamma_calibration_screen.json", + "type": "panel", + "children": [ + "child" + ] + }, + "stack_panel_align_right_panel/child": { + "file": "ui/gamma_calibration_screen.json", + "type": "unknown" + }, + "image_panel": { + "file": "ui/gamma_calibration_screen.json", + "type": "stack_panel", + "children": [ + "padding", + "image" + ] + }, + "image_panel/padding": { + "file": "ui/gamma_calibration_screen.json", + "type": "panel" + }, + "image_panel/image": { + "file": "ui/gamma_calibration_screen.json", + "type": "image" + }, + "horizontal_padding": { + "file": "ui/gamma_calibration_screen.json", + "type": "panel" + }, + "image_stack": { + "file": "ui/gamma_calibration_screen.json", + "type": "stack_panel", + "children": [ + "not_visible_image", + "padding_0", + "barely_visible_image", + "padding_1", + "easily_visible_image" + ] + }, + "image_stack/not_visible_image": { + "file": "ui/gamma_calibration_screen.json", + "type": "stack_panel", + "extend": { + "name": "image_panel", + "namespace": "gamma_calibration" + } + }, + "image_stack/padding_0": { + "file": "ui/gamma_calibration_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_padding", + "namespace": "gamma_calibration" + } + }, + "image_stack/barely_visible_image": { + "file": "ui/gamma_calibration_screen.json", + "type": "stack_panel", + "extend": { + "name": "image_panel", + "namespace": "gamma_calibration" + } + }, + "image_stack/padding_1": { + "file": "ui/gamma_calibration_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_padding", + "namespace": "gamma_calibration" + } + }, + "image_stack/easily_visible_image": { + "file": "ui/gamma_calibration_screen.json", + "type": "stack_panel", + "extend": { + "name": "image_panel", + "namespace": "gamma_calibration" + } + }, + "button_stack": { + "file": "ui/gamma_calibration_screen.json", + "type": "stack_panel", + "children": [ + "continue_button_panel", + "padding", + "reset_button_panel" + ] + }, + "button_stack/continue_button_panel": { + "file": "ui/gamma_calibration_screen.json", + "type": "panel", + "extend": { + "name": "stack_panel_align_left_panel", + "namespace": "gamma_calibration" + } + }, + "button_stack/padding": { + "file": "ui/gamma_calibration_screen.json", + "type": "panel" + }, + "button_stack/reset_button_panel": { + "file": "ui/gamma_calibration_screen.json", + "type": "panel", + "extend": { + "name": "stack_panel_align_right_panel", + "namespace": "gamma_calibration" + } + }, + "message_panel": { + "file": "ui/gamma_calibration_screen.json", + "type": "panel", + "children": [ + "message_label" + ] + }, + "message_panel/message_label": { + "file": "ui/gamma_calibration_screen.json", + "type": "label" + }, + "calibration_slider": { + "file": "ui/gamma_calibration_screen.json", + "type": "panel", + "children": [ + "slider" + ] + }, + "calibration_slider/slider": { + "file": "ui/gamma_calibration_screen.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "continue_button": { + "file": "ui/gamma_calibration_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "reset_button": { + "file": "ui/gamma_calibration_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "main_panel": { + "file": "ui/gamma_calibration_screen.json", + "type": "stack_panel", + "children": [ + "hdr_message_panel", + "image_stack_panel", + "padding_0", + "slider_panel", + "padding_1", + "button_stack_panel" + ] + }, + "main_panel/hdr_message_panel": { + "file": "ui/gamma_calibration_screen.json", + "type": "panel", + "extend": { + "name": "stack_panel_centering_panel", + "namespace": "gamma_calibration" + } + }, + "main_panel/image_stack_panel": { + "file": "ui/gamma_calibration_screen.json", + "type": "panel", + "extend": { + "name": "stack_panel_centering_panel", + "namespace": "gamma_calibration" + } + }, + "main_panel/padding_0": { + "file": "ui/gamma_calibration_screen.json", + "type": "panel" + }, + "main_panel/slider_panel": { + "file": "ui/gamma_calibration_screen.json", + "type": "panel", + "extend": { + "name": "stack_panel_centering_panel", + "namespace": "gamma_calibration" + } + }, + "main_panel/padding_1": { + "file": "ui/gamma_calibration_screen.json", + "type": "panel" + }, + "main_panel/button_stack_panel": { + "file": "ui/gamma_calibration_screen.json", + "type": "panel", + "extend": { + "name": "stack_panel_centering_panel", + "namespace": "gamma_calibration" + } + }, + "gamma_calibration_screen": { + "file": "ui/gamma_calibration_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + } + }, + "horse": { + "renderer_bg": { + "file": "ui/horse_screen.json", + "type": "image" + }, + "overlay_image": { + "file": "ui/horse_screen.json", + "type": "image" + }, + "saddle_image": { + "file": "ui/horse_screen.json", + "type": "image", + "extend": { + "name": "overlay_image", + "namespace": "horse" + } + }, + "horse_armor_image": { + "file": "ui/horse_screen.json", + "type": "image", + "extend": { + "name": "overlay_image", + "namespace": "horse" + } + }, + "carpet_image": { + "file": "ui/horse_screen.json", + "type": "image", + "extend": { + "name": "overlay_image", + "namespace": "horse" + } + }, + "nautilus_armor_image": { + "file": "ui/horse_screen.json", + "type": "image", + "extend": { + "name": "overlay_image", + "namespace": "horse" + } + }, + "horse_label": { + "file": "ui/horse_screen.json", + "type": "label", + "extend": { + "name": "section_heading_label", + "namespace": "common" + } + }, + "equip_grid": { + "file": "ui/horse_screen.json", + "type": "grid" + }, + "inv_grid": { + "file": "ui/horse_screen.json", + "type": "grid" + }, + "inv_bg_panel": { + "file": "ui/horse_screen.json", + "type": "panel", + "children": [ + "cell_image" + ] + }, + "inv_bg_panel/cell_image": { + "file": "ui/horse_screen.json", + "type": "image", + "extend": { + "name": "cell_image", + "namespace": "common" + } + }, + "equip_panel": { + "file": "ui/horse_screen.json", + "type": "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": { + "file": "ui/horse_screen.json", + "type": "grid", + "extend": { + "name": "equip_grid", + "namespace": "horse" + } + }, + "equip_panel/saddle": { + "file": "ui/horse_screen.json", + "type": "image", + "extend": { + "name": "saddle_image", + "namespace": "horse" + } + }, + "equip_panel/horse_armor_0": { + "file": "ui/horse_screen.json", + "type": "image", + "extend": { + "name": "horse_armor_image", + "namespace": "horse" + } + }, + "equip_panel/carpet_0": { + "file": "ui/horse_screen.json", + "type": "image", + "extend": { + "name": "carpet_image", + "namespace": "horse" + } + }, + "equip_panel/nautilus_armor_0": { + "file": "ui/horse_screen.json", + "type": "image", + "extend": { + "name": "nautilus_armor_image", + "namespace": "horse" + } + }, + "equip_panel/horse_armor_1": { + "file": "ui/horse_screen.json", + "type": "image", + "extend": { + "name": "horse_armor_image", + "namespace": "horse" + } + }, + "equip_panel/carpet_1": { + "file": "ui/horse_screen.json", + "type": "image", + "extend": { + "name": "carpet_image", + "namespace": "horse" + } + }, + "equip_panel/nautilus_armor_1": { + "file": "ui/horse_screen.json", + "type": "image", + "extend": { + "name": "nautilus_armor_image", + "namespace": "horse" + } + }, + "inv_panel": { + "file": "ui/horse_screen.json", + "type": "panel", + "children": [ + "inv_bg_panel", + "inv_grid" + ] + }, + "inv_panel/inv_bg_panel": { + "file": "ui/horse_screen.json", + "type": "panel", + "extend": { + "name": "inv_bg_panel", + "namespace": "horse" + } + }, + "inv_panel/inv_grid": { + "file": "ui/horse_screen.json", + "type": "grid", + "extend": { + "name": "inv_grid", + "namespace": "horse" + } + }, + "horse_renderer": { + "file": "ui/horse_screen.json", + "type": "panel", + "children": [ + "renderer_bg", + "horse_custom_panel" + ] + }, + "horse_renderer/renderer_bg": { + "file": "ui/horse_screen.json", + "type": "image", + "extend": { + "name": "renderer_bg", + "namespace": "horse" + } + }, + "horse_renderer/horse_custom_panel": { + "file": "ui/horse_screen.json", + "type": "panel", + "children": [ + "horse_custom" + ] + }, + "horse_renderer/horse_custom_panel/horse_custom": { + "file": "ui/horse_screen.json", + "type": "custom" + }, + "horse_panel": { + "file": "ui/horse_screen.json", + "type": "panel", + "children": [ + "container_gamepad_helpers", + "selected_item_details_factory", + "item_lock_notification_factory", + "root_panel", + "flying_item_renderer" + ] + }, + "horse_panel/container_gamepad_helpers": { + "file": "ui/horse_screen.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "horse_panel/selected_item_details_factory": { + "file": "ui/horse_screen.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "horse_panel/item_lock_notification_factory": { + "file": "ui/horse_screen.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "horse_panel/root_panel": { + "file": "ui/horse_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "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": { + "file": "ui/horse_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "horse_panel/root_panel/horse_section_label": { + "file": "ui/horse_screen.json", + "type": "label", + "extend": { + "name": "horse_label", + "namespace": "horse" + } + }, + "horse_panel/root_panel/inv_panel": { + "file": "ui/horse_screen.json", + "type": "panel", + "extend": { + "name": "inv_panel", + "namespace": "horse" + } + }, + "horse_panel/root_panel/equipment": { + "file": "ui/horse_screen.json", + "type": "panel", + "extend": { + "name": "equip_panel", + "namespace": "horse" + } + }, + "horse_panel/root_panel/renderer": { + "file": "ui/horse_screen.json", + "type": "panel", + "extend": { + "name": "horse_renderer", + "namespace": "horse" + } + }, + "horse_panel/root_panel/inventory_panel_bottom_half_with_label": { + "file": "ui/horse_screen.json", + "type": "panel", + "extend": { + "name": "inventory_panel_bottom_half_with_label", + "namespace": "common" + } + }, + "horse_panel/root_panel/hotbar_grid_template": { + "file": "ui/horse_screen.json", + "type": "grid", + "extend": { + "name": "hotbar_grid_template", + "namespace": "common" + } + }, + "horse_panel/root_panel/inventory_selected_icon_button": { + "file": "ui/horse_screen.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "horse_panel/root_panel/gamepad_cursor": { + "file": "ui/horse_screen.json", + "type": "button", + "extend": { + "name": "gamepad_cursor_button", + "namespace": "common" + } + }, + "horse_panel/flying_item_renderer": { + "file": "ui/horse_screen.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + }, + "horse_screen": { + "file": "ui/horse_screen.json", + "type": "screen", + "extend": { + "name": "inventory_screen_common", + "namespace": "common" + } + } + }, + "horse_pocket": { + "horse_panel": { + "file": "ui/horse_screen_pocket.json", + "type": "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": { + "file": "ui/horse_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "horse_panel/inventory_selected_icon_button": { + "file": "ui/horse_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "horse_panel/gamepad_cursor": { + "file": "ui/horse_screen_pocket.json", + "type": "button", + "extend": { + "name": "gamepad_cursor_button", + "namespace": "common" + } + }, + "horse_panel/selected_item_details_factory": { + "file": "ui/horse_screen_pocket.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "horse_panel/item_lock_notification_factory": { + "file": "ui/horse_screen_pocket.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "horse_panel/base_panel": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "children": [ + "root_panel", + "hold_icon", + "bg", + "interactive_tabs", + "close_button", + "inventory", + "equipment", + "chest_tab", + "renderer_tab" + ] + }, + "horse_panel/base_panel/root_panel": { + "file": "ui/horse_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + } + }, + "horse_panel/base_panel/hold_icon": { + "file": "ui/horse_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "horse_panel/base_panel/bg": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "horse_panel/base_panel/interactive_tabs": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "extend": { + "name": "interactive_tabs", + "namespace": "horse_pocket" + } + }, + "horse_panel/base_panel/close_button": { + "file": "ui/horse_screen_pocket.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "horse_pocket" + } + }, + "horse_panel/base_panel/inventory": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "extend": { + "name": "half_screen_inventory", + "namespace": "horse_pocket" + } + }, + "horse_panel/base_panel/equipment": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "extend": { + "name": "equip_middle_screen", + "namespace": "horse_pocket" + } + }, + "horse_panel/base_panel/chest_tab": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "children": [ + "visual_tabs_chest", + "chest" + ] + }, + "horse_panel/base_panel/chest_tab/visual_tabs_chest": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "extend": { + "name": "visual_tabs_chest", + "namespace": "horse_pocket" + } + }, + "horse_panel/base_panel/chest_tab/chest": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "extend": { + "name": "half_screen_chest", + "namespace": "horse_pocket" + } + }, + "horse_panel/base_panel/renderer_tab": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "children": [ + "visual_tabs_equip", + "renderer" + ] + }, + "horse_panel/base_panel/renderer_tab/visual_tabs_equip": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "extend": { + "name": "visual_tabs_equip", + "namespace": "horse_pocket" + } + }, + "horse_panel/base_panel/renderer_tab/renderer": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "extend": { + "name": "half_screen_renderer", + "namespace": "horse_pocket" + } + }, + "horse_panel/flying_item_renderer": { + "file": "ui/horse_screen_pocket.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + }, + "background_image": { + "file": "ui/horse_screen_pocket.json", + "type": "image" + }, + "dark_bg": { + "file": "ui/horse_screen_pocket.json", + "type": "image" + }, + "renderer_bg": { + "file": "ui/horse_screen_pocket.json", + "type": "image" + }, + "saddle_image": { + "file": "ui/horse_screen_pocket.json", + "type": "image" + }, + "horse_armor_image": { + "file": "ui/horse_screen_pocket.json", + "type": "image" + }, + "carpet_image": { + "file": "ui/horse_screen_pocket.json", + "type": "image" + }, + "nautilus_armor_image": { + "file": "ui/horse_screen_pocket.json", + "type": "image" + }, + "panel_outline": { + "file": "ui/horse_screen_pocket.json", + "type": "image" + }, + "close_button_default": { + "file": "ui/horse_screen_pocket.json", + "type": "image" + }, + "close_button_pressed": { + "file": "ui/horse_screen_pocket.json", + "type": "image", + "extend": { + "name": "close_button_default", + "namespace": "horse_pocket" + } + }, + "close_button": { + "file": "ui/horse_screen_pocket.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "close_button/default": { + "file": "ui/horse_screen_pocket.json", + "type": "image", + "extend": { + "name": "close_button_default", + "namespace": "horse_pocket" + } + }, + "close_button/hover": { + "file": "ui/horse_screen_pocket.json", + "type": "image", + "extend": { + "name": "close_button_default", + "namespace": "horse_pocket" + } + }, + "close_button/pressed": { + "file": "ui/horse_screen_pocket.json", + "type": "image", + "extend": { + "name": "close_button_pressed", + "namespace": "horse_pocket" + } + }, + "base_grid": { + "file": "ui/horse_screen_pocket.json", + "type": "grid" + }, + "inventory_grid": { + "file": "ui/horse_screen_pocket.json", + "type": "grid", + "extend": { + "name": "base_grid", + "namespace": "horse_pocket" + } + }, + "chest_grid": { + "file": "ui/horse_screen_pocket.json", + "type": "grid", + "extend": { + "name": "base_grid", + "namespace": "horse_pocket" + } + }, + "base_grid_panel": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "children": [ + "panel_outline", + "dark_bg", + "scrolling_panel" + ] + }, + "base_grid_panel/panel_outline": { + "file": "ui/horse_screen_pocket.json", + "type": "image", + "extend": { + "name": "panel_outline", + "namespace": "horse_pocket" + } + }, + "base_grid_panel/dark_bg": { + "file": "ui/horse_screen_pocket.json", + "type": "image", + "extend": { + "name": "dark_bg", + "namespace": "horse_pocket" + } + }, + "base_grid_panel/scrolling_panel": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "inventory_panel": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "extend": { + "name": "base_grid_panel", + "namespace": "horse_pocket" + } + }, + "chest_panel": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "extend": { + "name": "base_grid_panel", + "namespace": "horse_pocket" + } + }, + "half_screen": { + "file": "ui/horse_screen_pocket.json", + "type": "panel" + }, + "middle_screen": { + "file": "ui/horse_screen_pocket.json", + "type": "panel" + }, + "half_screen_inventory": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "extend": { + "name": "half_screen", + "namespace": "horse_pocket" + }, + "children": [ + "inventory_panel" + ] + }, + "half_screen_inventory/inventory_panel": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "extend": { + "name": "inventory_panel", + "namespace": "horse_pocket" + } + }, + "half_screen_chest": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "extend": { + "name": "half_screen", + "namespace": "horse_pocket" + }, + "children": [ + "chest_panel" + ] + }, + "half_screen_chest/chest_panel": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "extend": { + "name": "chest_panel", + "namespace": "horse_pocket" + } + }, + "horse_renderer": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "children": [ + "horse_custom" + ] + }, + "horse_renderer/horse_custom": { + "file": "ui/horse_screen_pocket.json", + "type": "custom" + }, + "half_screen_renderer": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "extend": { + "name": "half_screen", + "namespace": "horse_pocket" + }, + "children": [ + "renderer_bg", + "horse_custom_panel", + "camel_custom_panel" + ] + }, + "half_screen_renderer/renderer_bg": { + "file": "ui/horse_screen_pocket.json", + "type": "image", + "extend": { + "name": "renderer_bg", + "namespace": "horse_pocket" + } + }, + "half_screen_renderer/horse_custom_panel": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "extend": { + "name": "horse_renderer", + "namespace": "horse_pocket" + } + }, + "half_screen_renderer/camel_custom_panel": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "extend": { + "name": "horse_renderer", + "namespace": "horse_pocket" + } + }, + "equip_item_panel": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "children": [ + "equip_container_item" + ] + }, + "equip_item_panel/equip_container_item": { + "file": "ui/horse_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_container_item", + "namespace": "common" + } + }, + "equip_grid": { + "file": "ui/horse_screen_pocket.json", + "type": "grid" + }, + "equip_middle_screen": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "extend": { + "name": "middle_screen", + "namespace": "horse_pocket" + }, + "children": [ + "equip_grid_panel" + ] + }, + "equip_middle_screen/equip_grid_panel": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "children": [ + "equip_grid", + "centered_0", + "offset", + "centered_1", + "centered_2", + "horse_armor_image", + "carpet_image" + ] + }, + "equip_middle_screen/equip_grid_panel/equip_grid": { + "file": "ui/horse_screen_pocket.json", + "type": "grid", + "extend": { + "name": "equip_grid", + "namespace": "horse_pocket" + } + }, + "equip_middle_screen/equip_grid_panel/centered_0": { + "file": "ui/horse_screen_pocket.json", + "type": "image", + "extend": { + "name": "saddle_image", + "namespace": "horse_pocket" + } + }, + "equip_middle_screen/equip_grid_panel/offset": { + "file": "ui/horse_screen_pocket.json", + "type": "image", + "extend": { + "name": "saddle_image", + "namespace": "horse_pocket" + } + }, + "equip_middle_screen/equip_grid_panel/centered_1": { + "file": "ui/horse_screen_pocket.json", + "type": "image", + "extend": { + "name": "horse_armor_image", + "namespace": "horse_pocket" + } + }, + "equip_middle_screen/equip_grid_panel/centered_2": { + "file": "ui/horse_screen_pocket.json", + "type": "image", + "extend": { + "name": "carpet_image", + "namespace": "horse_pocket" + } + }, + "equip_middle_screen/equip_grid_panel/horse_armor_image": { + "file": "ui/horse_screen_pocket.json", + "type": "image", + "extend": { + "name": "horse_armor_image", + "namespace": "horse_pocket" + } + }, + "equip_middle_screen/equip_grid_panel/carpet_image": { + "file": "ui/horse_screen_pocket.json", + "type": "image", + "extend": { + "name": "carpet_image", + "namespace": "horse_pocket" + } + }, + "horse_screen_tab_toggle": { + "file": "ui/horse_screen_pocket.json", + "type": "toggle", + "extend": { + "name": "toggle", + "namespace": "common" + } + }, + "interactive_tabs": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "children": [ + "renderer_tab_interactive", + "chest_tab_interactive" + ] + }, + "interactive_tabs/renderer_tab_interactive": { + "file": "ui/horse_screen_pocket.json", + "type": "toggle", + "extend": { + "name": "horse_screen_tab_toggle", + "namespace": "horse_pocket" + } + }, + "interactive_tabs/chest_tab_interactive": { + "file": "ui/horse_screen_pocket.json", + "type": "toggle", + "extend": { + "name": "horse_screen_tab_toggle", + "namespace": "horse_pocket" + } + }, + "tab_front": { + "file": "ui/horse_screen_pocket.json", + "type": "image" + }, + "tab_back": { + "file": "ui/horse_screen_pocket.json", + "type": "image", + "extend": { + "name": "tab_front", + "namespace": "horse_pocket" + } + }, + "close_tab": { + "file": "ui/horse_screen_pocket.json", + "type": "image", + "extend": { + "name": "tab_back", + "namespace": "horse_pocket" + } + }, + "item_icon_renderer": { + "file": "ui/horse_screen_pocket.json", + "type": "custom" + }, + "saddle_icon_front": { + "file": "ui/horse_screen_pocket.json", + "type": "custom", + "extend": { + "name": "item_icon_renderer", + "namespace": "horse_pocket" + } + }, + "chest_icon_front": { + "file": "ui/horse_screen_pocket.json", + "type": "custom", + "extend": { + "name": "item_icon_renderer", + "namespace": "horse_pocket" + } + }, + "visual_tabs_equip": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "children": [ + "close_tab", + "chest", + "equip" + ] + }, + "visual_tabs_equip/close_tab": { + "file": "ui/horse_screen_pocket.json", + "type": "image", + "extend": { + "name": "close_tab", + "namespace": "horse_pocket" + }, + "children": [ + "nodrop_zone" + ] + }, + "visual_tabs_equip/close_tab/nodrop_zone": { + "file": "ui/horse_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + } + }, + "visual_tabs_equip/chest": { + "file": "ui/horse_screen_pocket.json", + "type": "image", + "extend": { + "name": "tab_back", + "namespace": "horse_pocket" + }, + "children": [ + "chest_icon" + ] + }, + "visual_tabs_equip/chest/chest_icon": { + "file": "ui/horse_screen_pocket.json", + "type": "custom", + "extend": { + "name": "chest_icon_front", + "namespace": "horse_pocket" + } + }, + "visual_tabs_equip/equip": { + "file": "ui/horse_screen_pocket.json", + "type": "image", + "extend": { + "name": "tab_front", + "namespace": "horse_pocket" + }, + "children": [ + "equip_icon" + ] + }, + "visual_tabs_equip/equip/equip_icon": { + "file": "ui/horse_screen_pocket.json", + "type": "custom", + "extend": { + "name": "saddle_icon_front", + "namespace": "horse_pocket" + } + }, + "visual_tabs_chest": { + "file": "ui/horse_screen_pocket.json", + "type": "panel", + "children": [ + "close_tab", + "chest", + "equip" + ] + }, + "visual_tabs_chest/close_tab": { + "file": "ui/horse_screen_pocket.json", + "type": "image", + "extend": { + "name": "close_tab", + "namespace": "horse_pocket" + } + }, + "visual_tabs_chest/chest": { + "file": "ui/horse_screen_pocket.json", + "type": "image", + "extend": { + "name": "tab_front", + "namespace": "horse_pocket" + }, + "children": [ + "chest_icon" + ] + }, + "visual_tabs_chest/chest/chest_icon": { + "file": "ui/horse_screen_pocket.json", + "type": "custom", + "extend": { + "name": "chest_icon_front", + "namespace": "horse_pocket" + } + }, + "visual_tabs_chest/equip": { + "file": "ui/horse_screen_pocket.json", + "type": "image", + "extend": { + "name": "tab_back", + "namespace": "horse_pocket" + }, + "children": [ + "equip_icon" + ] + }, + "visual_tabs_chest/equip/equip_icon": { + "file": "ui/horse_screen_pocket.json", + "type": "custom", + "extend": { + "name": "saddle_icon_front", + "namespace": "horse_pocket" + } + } + }, + "how_to_play_common": { + "dynamic_dialog_screen": { + "file": "ui/how_to_play_common.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "screen_background": { + "file": "ui/how_to_play_common.json", + "type": "image" + }, + "top_bar": { + "file": "ui/how_to_play_common.json", + "type": "image" + }, + "button_panel": { + "file": "ui/how_to_play_common.json", + "type": "label", + "extend": { + "name": "new_ui_binding_button_label", + "namespace": "common_buttons" + } + }, + "light_text_button": { + "file": "ui/how_to_play_common.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "action_button": { + "file": "ui/how_to_play_common.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "how_to_play_common" + } + }, + "topic_category": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "children": [ + "top_padding", + "category_text" + ] + }, + "topic_category/top_padding": { + "file": "ui/how_to_play_common.json", + "type": "panel" + }, + "topic_category/category_text": { + "file": "ui/how_to_play_common.json", + "type": "label" + }, + "toggle_button_control": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "children": [ + "tab_button_text" + ] + }, + "toggle_button_control/tab_button_text": { + "file": "ui/how_to_play_common.json", + "type": "label" + }, + "glyph_button_control": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "children": [ + "tab_button_text", + "glyph" + ] + }, + "glyph_button_control/tab_button_text": { + "file": "ui/how_to_play_common.json", + "type": "label" + }, + "glyph_button_control/glyph": { + "file": "ui/how_to_play_common.json", + "type": "image" + }, + "section_toggle_button": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "children": [ + "section_toggle_button" + ] + }, + "section_toggle_button/section_toggle_button": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "extend": { + "name": "light_ui_toggle", + "namespace": "common_toggles" + } + }, + "edu_section_toggle_button": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "padding": { + "file": "ui/how_to_play_common.json", + "type": "panel" + }, + "touch_padding": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "small_padding": { + "file": "ui/how_to_play_common.json", + "type": "panel" + }, + "large_padding": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "section_contents_header": { + "file": "ui/how_to_play_common.json", + "type": "input_panel" + }, + "section_contents_footer": { + "file": "ui/how_to_play_common.json", + "type": "input_panel" + }, + "main_sections": { + "file": "ui/how_to_play_common.json", + "type": "stack_panel" + }, + "splitscreen_only_content": { + "file": "ui/how_to_play_common.json", + "type": "stack_panel", + "children": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ] + }, + "splitscreen_only_content/0": { + "file": "ui/how_to_play_common.json", + "type": "unknown" + }, + "tts_focus_border": { + "file": "ui/how_to_play_common.json", + "type": "button", + "extend": { + "name": "non_interact_focus_border_button", + "namespace": "common" + } + }, + "header_tts_focus_border": { + "file": "ui/how_to_play_common.json", + "type": "button", + "extend": { + "name": "tts_focus_border", + "namespace": "how_to_play_common" + } + }, + "header_background": { + "file": "ui/how_to_play_common.json", + "type": "image", + "children": [ + "header_label", + "focus_border" + ] + }, + "header_background/header_label": { + "file": "ui/how_to_play_common.json", + "type": "label" + }, + "header_background/focus_border": { + "file": "ui/how_to_play_common.json", + "type": "button", + "extend": { + "name": "header_tts_focus_border", + "namespace": "how_to_play_common" + } + }, + "header": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "children": [ + "header" + ] + }, + "header/header": { + "file": "ui/how_to_play_common.json", + "type": "image", + "extend": { + "name": "header_background", + "namespace": "how_to_play_common" + } + }, + "paragraph_panel": { + "file": "ui/how_to_play_common.json", + "type": "panel" + }, + "paragraph_label": { + "file": "ui/how_to_play_common.json", + "type": "label" + }, + "paragraph_tts_focus_border": { + "file": "ui/how_to_play_common.json", + "type": "button", + "extend": { + "name": "tts_focus_border", + "namespace": "how_to_play_common" + } + }, + "paragraph": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "extend": { + "name": "paragraph_panel", + "namespace": "how_to_play_common" + }, + "children": [ + "label", + "focus_border" + ] + }, + "paragraph/label": { + "file": "ui/how_to_play_common.json", + "type": "label", + "extend": { + "name": "paragraph_label", + "namespace": "how_to_play_common" + } + }, + "paragraph/focus_border": { + "file": "ui/how_to_play_common.json", + "type": "button", + "extend": { + "name": "paragraph_tts_focus_border", + "namespace": "how_to_play_common" + } + }, + "paragraph_with_icons": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "extend": { + "name": "paragraph_panel", + "namespace": "how_to_play_common" + }, + "children": [ + "label", + "focus_border" + ] + }, + "paragraph_with_icons/label": { + "file": "ui/how_to_play_common.json", + "type": "label", + "extend": { + "name": "paragraph_label", + "namespace": "how_to_play_common" + } + }, + "paragraph_with_icons/focus_border": { + "file": "ui/how_to_play_common.json", + "type": "button", + "extend": { + "name": "paragraph_tts_focus_border", + "namespace": "how_to_play_common" + } + }, + "input_conditional_paragraph": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "input_conditional_paragraph_with_icons": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "extend": { + "name": "paragraph_with_icons", + "namespace": "how_to_play_common" + } + }, + "paragraph_keyboard": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "extend": { + "name": "input_conditional_paragraph_with_icons", + "namespace": "how_to_play_common" + } + }, + "paragraph_gamepad": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "extend": { + "name": "input_conditional_paragraph_with_icons", + "namespace": "how_to_play_common" + } + }, + "paragraph_gamepad_no_icons": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "extend": { + "name": "input_conditional_paragraph", + "namespace": "how_to_play_common" + } + }, + "paragraph_touch": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "extend": { + "name": "input_conditional_paragraph_with_icons", + "namespace": "how_to_play_common" + } + }, + "paragraph_touch_classic_dpad_spacing": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "extend": { + "name": "input_conditional_paragraph_with_icons", + "namespace": "how_to_play_common" + } + }, + "paragraph_touch_no_icons": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "extend": { + "name": "input_conditional_paragraph", + "namespace": "how_to_play_common" + } + }, + "paragraph_touch_joystick_tap": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "extend": { + "name": "input_conditional_paragraph_with_icons", + "namespace": "how_to_play_common" + } + }, + "paragraph_touch_classic_dpad": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "extend": { + "name": "input_conditional_paragraph_with_icons", + "namespace": "how_to_play_common" + } + }, + "paragraph_touch_joystick_crosshair": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "extend": { + "name": "input_conditional_paragraph_with_icons", + "namespace": "how_to_play_common" + } + }, + "paragraph_not_touch": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "extend": { + "name": "input_conditional_paragraph_with_icons", + "namespace": "how_to_play_common" + } + }, + "image": { + "file": "ui/how_to_play_common.json", + "type": "image" + }, + "how_to_play_header": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "children": [ + "top_bar" + ] + }, + "how_to_play_header/top_bar": { + "file": "ui/how_to_play_common.json", + "type": "image", + "extend": { + "name": "top_bar", + "namespace": "how_to_play_common" + }, + "children": [ + "back_button", + "how_to_play_title", + "gamepad_bumper_helpers" + ] + }, + "how_to_play_header/top_bar/back_button": { + "file": "ui/how_to_play_common.json", + "type": "stack_panel", + "extend": { + "name": "back_title_button", + "namespace": "common" + } + }, + "how_to_play_header/top_bar/how_to_play_title": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "extend": { + "name": "screen_header_title_panel", + "namespace": "common" + } + }, + "how_to_play_header/top_bar/gamepad_bumper_helpers": { + "file": "ui/how_to_play_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_bumper_helpers", + "namespace": "how_to_play_common" + } + }, + "how_to_play_content": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "children": [ + "header", + "container" + ] + }, + "how_to_play_content/header": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "extend": { + "name": "how_to_play_header", + "namespace": "how_to_play_common" + } + }, + "how_to_play_content/container": { + "file": "ui/how_to_play_common.json", + "type": "panel" + }, + "dialog_content": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "children": [ + "selector_area", + "content_area", + "section_divider" + ] + }, + "dialog_content/selector_area": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "extend": { + "name": "selector_area", + "namespace": "how_to_play_common" + } + }, + "dialog_content/content_area": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "extend": { + "name": "content_area_wrapper", + "namespace": "how_to_play_common" + } + }, + "dialog_content/section_divider": { + "file": "ui/how_to_play_common.json", + "type": "image", + "extend": { + "name": "section_divider", + "namespace": "how_to_play_common" + } + }, + "scrollable_selector_area_content": { + "file": "ui/how_to_play_common.json", + "type": "panel" + }, + "selector_area": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "selector_area/scrolling_panel": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "section_divider": { + "file": "ui/how_to_play_common.json", + "type": "image" + }, + "content_area_wrapper": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "children": [ + "content_area" + ] + }, + "content_area_wrapper/content_area": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "extend": { + "name": "content_area", + "namespace": "how_to_play_common" + } + }, + "content_area": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "children": [ + "control" + ] + }, + "content_area/control": { + "file": "ui/how_to_play_common.json", + "type": "stack_panel", + "children": [ + "scrolling_panel" + ] + }, + "content_area/control/scrolling_panel": { + "file": "ui/how_to_play_common.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "screen_base": { + "file": "ui/how_to_play_common.json", + "type": "screen", + "extend": { + "name": "dynamic_dialog_screen", + "namespace": "how_to_play_common" + } + }, + "gamepad_bumper_helper_description": { + "file": "ui/how_to_play_common.json", + "type": "label", + "extend": { + "name": "gamepad_helper_icon_description", + "namespace": "common" + } + }, + "gamepad_bumper_helpers": { + "file": "ui/how_to_play_common.json", + "type": "stack_panel", + "children": [ + "gamepad_helper_left_bumper", + "padding", + "gamepad_helper_right_bumper" + ] + }, + "gamepad_bumper_helpers/gamepad_helper_left_bumper": { + "file": "ui/how_to_play_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_left_bumper", + "namespace": "common" + } + }, + "gamepad_bumper_helpers/padding": { + "file": "ui/how_to_play_common.json", + "type": "panel" + }, + "gamepad_bumper_helpers/gamepad_helper_right_bumper": { + "file": "ui/how_to_play_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_right_bumper", + "namespace": "common" + } + } + }, + "how_to_play": { + "how_to_play_screen": { + "file": "ui/how_to_play_screen.json", + "type": "screen", + "extend": { + "name": "screen_base", + "namespace": "how_to_play_common" + } + }, + "how_to_play_selector_stack_panel": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "children": [ + "how_to_play_selector_pane" + ] + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane": { + "file": "ui/how_to_play_screen.json", + "type": "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": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "topic_category", + "namespace": "how_to_play_common" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/moving_around_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "moving_around_button", + "namespace": "how_to_play" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/gathering_resources_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "gathering_resources_button", + "namespace": "how_to_play" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/selecting_items_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "selecting_items_button", + "namespace": "how_to_play" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/placing_blocks_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "placing_blocks_button", + "namespace": "how_to_play" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/inventory_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "inventory_button", + "namespace": "how_to_play" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/preparing_for_the_night_category": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "topic_category", + "namespace": "how_to_play_common" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/your_first_craft_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "your_first_craft_button", + "namespace": "how_to_play" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/recipe_book_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "recipe_book_button", + "namespace": "how_to_play" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/the_crafting_table_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "the_crafting_table_button", + "namespace": "how_to_play" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/crafting_a_tool_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "crafting_a_tool_button", + "namespace": "how_to_play" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/mining_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "mining_button", + "namespace": "how_to_play" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/surviving_the_first_night_category": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "topic_category", + "namespace": "how_to_play_common" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/nightfall_new_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "nightfall_new_button", + "namespace": "how_to_play" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/building_a_shelter_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "building_a_shelter_button", + "namespace": "how_to_play" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/death_and_respawn_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "death_and_respawn_button", + "namespace": "how_to_play" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_settled_category": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "topic_category", + "namespace": "how_to_play_common" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/food_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "food_button", + "namespace": "how_to_play" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/beds_new_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "beds_new_button", + "namespace": "how_to_play" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/improved_tools_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "improved_tools_button", + "namespace": "how_to_play" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/education_category": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "topic_category", + "namespace": "how_to_play_common" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/world_builder_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "world_builder_button", + "namespace": "how_to_play" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/permission_blocks_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "permission_blocks_button", + "namespace": "how_to_play" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/chalkboard_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "chalkboard_button", + "namespace": "how_to_play" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/chemistry_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "chemistry_button", + "namespace": "how_to_play" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/npc_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "npc_button", + "namespace": "how_to_play" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/camera_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "camera_button", + "namespace": "how_to_play" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/portfolio_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "portfolio_button", + "namespace": "how_to_play" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/classroom_mode_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "classroom_mode_button", + "namespace": "how_to_play" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/code_builder_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "code_builder_button", + "namespace": "how_to_play" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/padding_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/playing_together_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "playing_together_button", + "namespace": "how_to_play" + } + }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/encyclopedia_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "encyclopedia_button", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "children": [ + "general_tips_sections" + ] + }, + "how_to_play_section_content_panels/general_tips_sections": { + "file": "ui/how_to_play_screen.json", + "type": "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": { + "file": "ui/how_to_play_screen.json", + "type": "input_panel", + "extend": { + "name": "section_contents_header", + "namespace": "how_to_play_common" + } + }, + "how_to_play_section_content_panels/general_tips_sections/moving_around_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "moving_around_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/gathering_resources_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "gathering_resources_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/selecting_items_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "selecting_items_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/placing_blocks_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "placing_blocks_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/inventory_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "inventory_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/your_first_craft_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "your_first_craft_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/recipe_book_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "recipe_book_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/the_crafting_table_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "the_crafting_table_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/crafting_a_tool_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "crafting_a_tool_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/mining_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "mining_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/nightfall_new_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "nightfall_new_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/building_a_shelter_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "building_a_shelter_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/death_and_respawn_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "death_and_respawn_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/food_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "food_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/beds_new_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "beds_new_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/improved_tools_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "improved_tools_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/world_builder_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "world_builder_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/permission_blocks_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "permission_blocks_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/chalkboard_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "chalkboard_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/chemistry_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "chemistry_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/npc_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "npc_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/camera_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "camera_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/portfolio_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "portfolio_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/classroom_mode_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "classroom_mode_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/code_builder_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "code_builder_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/playing_together_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "playing_together_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/encyclopedia_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "encyclopedia_section", + "namespace": "how_to_play" + } + }, + "how_to_play_section_content_panels/general_tips_sections/section_contents_footer": { + "file": "ui/how_to_play_screen.json", + "type": "input_panel", + "extend": { + "name": "section_contents_footer", + "namespace": "how_to_play_common" + } + }, + "moving_around_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "moving_around_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "moving_around_section/padding_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "moving_around_section/paragraph_2_keyboard": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "moving_around_section/paragraph_2_gamepad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "moving_around_section/paragraph_touch_joystick_tap": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_no_icons", + "namespace": "how_to_play_common" + } + }, + "moving_around_section/padding_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "moving_around_section/paragraph_3a_keyboard": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "moving_around_section/paragraph_3b_keyboard": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "moving_around_section/paragraph_3a_gamepad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "moving_around_section/paragraph_3b_gamepad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "moving_around_section/paragraph_3_touch_joystick_tap": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_joystick_tap", + "namespace": "how_to_play_common" + } + }, + "moving_around_section/paragraph_3a_touch_classic_dpad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_classic_dpad", + "namespace": "how_to_play_common" + } + }, + "moving_around_section/paragraph_3b_touch_classic_dpad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_classic_dpad", + "namespace": "how_to_play_common" + } + }, + "moving_around_section/paragraph_3c_touch_classic_dpad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_classic_dpad", + "namespace": "how_to_play_common" + } + }, + "moving_around_section/paragraph_3d_touch_classic_dpad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_classic_dpad", + "namespace": "how_to_play_common" + } + }, + "moving_around_section/paragraph_3e_touch_classic_dpad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_classic_dpad", + "namespace": "how_to_play_common" + } + }, + "moving_around_section/paragraph_3_touch_joystick_crosshair": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_joystick_crosshair", + "namespace": "how_to_play_common" + } + }, + "moving_around_section/image_1": { + "file": "ui/how_to_play_screen.json", + "type": "image", + "extend": { + "name": "image", + "namespace": "how_to_play_common" + } + }, + "gathering_resources_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "gathering_resources_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "gathering_resources_section/padding_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "gathering_resources_section/paragraph_2_keyboard": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "gathering_resources_section/paragraph_2_gamepad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "gathering_resources_section/paragraph_2_touch_joystick_tap": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_joystick_tap", + "namespace": "how_to_play_common" + } + }, + "gathering_resources_section/paragraph_2_touch_classic_dpad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_classic_dpad", + "namespace": "how_to_play_common" + } + }, + "gathering_resources_section/paragraph_2_touch_joystick_crosshair": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_joystick_crosshair", + "namespace": "how_to_play_common" + } + }, + "gathering_resources_section/padding_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "gathering_resources_section/paragraph_3": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "selecting_items_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "selecting_items_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "selecting_items_section/padding_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "selecting_items_section/paragraph_2_keyboard": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "selecting_items_section/paragraph_2_gamepad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "selecting_items_section/paragraph_touch_joystick_tap": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_no_icons", + "namespace": "how_to_play_common" + } + }, + "selecting_items_section/padding_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "selecting_items_section/paragraph_3_keyboard": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "selecting_items_section/paragraph_3_gamepad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "selecting_items_section/paragraph_3_touch_joystick_tap": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_joystick_tap", + "namespace": "how_to_play_common" + } + }, + "selecting_items_section/paragraph_3_touch_classic_dpad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_classic_dpad", + "namespace": "how_to_play_common" + } + }, + "selecting_items_section/paragraph_3_touch_joystick_crosshair": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_joystick_crosshair", + "namespace": "how_to_play_common" + } + }, + "selecting_items_section/padding_3": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "selecting_items_section/header_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "selecting_items_section/image_1_not_touch": { + "file": "ui/how_to_play_screen.json", + "type": "image", + "extend": { + "name": "image", + "namespace": "how_to_play_common" + } + }, + "selecting_items_section/image_1_touch": { + "file": "ui/how_to_play_screen.json", + "type": "image", + "extend": { + "name": "image", + "namespace": "how_to_play_common" + } + }, + "placing_blocks_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "placing_blocks_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "placing_blocks_section/padding_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "placing_blocks_section/paragraph_2_keyboard": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "placing_blocks_section/paragraph_2_gamepad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "placing_blocks_section/paragraph_2_touch_joystick_tap": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_joystick_tap", + "namespace": "how_to_play_common" + } + }, + "placing_blocks_section/paragraph_2_touch_classic_dpad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_classic_dpad", + "namespace": "how_to_play_common" + } + }, + "placing_blocks_section/paragraph_2_touch_joystick_crosshair": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_joystick_crosshair", + "namespace": "how_to_play_common" + } + }, + "placing_blocks_section/padding_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "placing_blocks_section/paragraph_3": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "inventory_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "inventory_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/how_to_play_screen.json", + "type": "image", + "extend": { + "name": "image", + "namespace": "how_to_play_common" + } + }, + "inventory_section/image_1_touch": { + "file": "ui/how_to_play_screen.json", + "type": "image", + "extend": { + "name": "image", + "namespace": "how_to_play_common" + } + }, + "inventory_section/header_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "inventory_section/paragraph_1_keyboard": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "inventory_section/paragraph_1_gamepad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "inventory_section/paragraph_1_touch": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "inventory_section/padding_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "inventory_section/header_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "inventory_section/paragraph_2_keyboard": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "inventory_section/paragraph_2_gamepad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "inventory_section/paragraph_2_touch": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_no_icons", + "namespace": "how_to_play_common" + } + }, + "your_first_craft_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "your_first_craft_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/how_to_play_screen.json", + "type": "image", + "extend": { + "name": "image", + "namespace": "how_to_play_common" + } + }, + "your_first_craft_section/image_1_touch": { + "file": "ui/how_to_play_screen.json", + "type": "image", + "extend": { + "name": "image", + "namespace": "how_to_play_common" + } + }, + "your_first_craft_section/header_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "your_first_craft_section/paragraph_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "your_first_craft_section/padding_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "your_first_craft_section/paragraph_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "your_first_craft_section/padding_3": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "your_first_craft_section/paragraph_3_touch": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_no_icons", + "namespace": "how_to_play_common" + } + }, + "your_first_craft_section/paragraph_3_keyboard": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "your_first_craft_section/paragraph_3_gamepad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad_no_icons", + "namespace": "how_to_play_common" + } + }, + "your_first_craft_section/padding_4": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "your_first_craft_section/header_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "your_first_craft_section/paragraph_4": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "your_first_craft_section/padding_5": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "your_first_craft_section/paragraph_5": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "recipe_book_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "recipe_book_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "recipe_book_section/paragraph_1_gamepad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad_no_icons", + "namespace": "how_to_play_common" + } + }, + "recipe_book_section/paragraph_1_touch": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_no_icons", + "namespace": "how_to_play_common" + } + }, + "recipe_book_section/padding_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "recipe_book_section/paragraph_2_keyboard": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "recipe_book_section/paragraph_2_gamepad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad_no_icons", + "namespace": "how_to_play_common" + } + }, + "recipe_book_section/paragraph_2_touch": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_no_icons", + "namespace": "how_to_play_common" + } + }, + "the_crafting_table_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "the_crafting_table_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "image_1", + "paragraph_1", + "padding_2", + "paragraph_2_keyboard", + "paragraph_2_gamepad", + "paragraph_2_touch" + ] + }, + "the_crafting_table_section/image_1": { + "file": "ui/how_to_play_screen.json", + "type": "image", + "extend": { + "name": "image", + "namespace": "how_to_play_common" + } + }, + "the_crafting_table_section/paragraph_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_with_icons", + "namespace": "how_to_play_common" + } + }, + "the_crafting_table_section/padding_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "the_crafting_table_section/paragraph_2_keyboard": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "the_crafting_table_section/paragraph_2_gamepad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "the_crafting_table_section/paragraph_2_touch": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_no_icons", + "namespace": "how_to_play_common" + } + }, + "crafting_a_tool_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "crafting_a_tool_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1", + "padding_1", + "paragraph_2_keyboard", + "paragraph_2_gamepad", + "paragraph_2_touch" + ] + }, + "crafting_a_tool_section/paragraph_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_with_icons", + "namespace": "how_to_play_common" + } + }, + "crafting_a_tool_section/padding_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "crafting_a_tool_section/paragraph_2_keyboard": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "crafting_a_tool_section/paragraph_2_gamepad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "crafting_a_tool_section/paragraph_2_touch": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "mining_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "mining_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "image_1", + "paragraph_1", + "padding_2", + "paragraph_2", + "padding_3", + "paragraph_3" + ] + }, + "mining_section/image_1": { + "file": "ui/how_to_play_screen.json", + "type": "image", + "extend": { + "name": "image", + "namespace": "how_to_play_common" + } + }, + "mining_section/paragraph_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_with_icons", + "namespace": "how_to_play_common" + } + }, + "mining_section/padding_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "mining_section/paragraph_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_with_icons", + "namespace": "how_to_play_common" + } + }, + "mining_section/padding_3": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "mining_section/paragraph_3": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_with_icons", + "namespace": "how_to_play_common" + } + }, + "nightfall_new_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "nightfall_new_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "nightfall_new_section/padding_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "nightfall_new_section/paragraph_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "nightfall_new_section/padding_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "nightfall_new_section/paragraph_3": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "nightfall_new_section/padding_3": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "nightfall_new_section/paragraph_4_keyboard": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "nightfall_new_section/paragraph_4_gamepad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "nightfall_new_section/paragraph_4_touch_joystick_tap": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_joystick_tap", + "namespace": "how_to_play_common" + } + }, + "nightfall_new_section/paragraph_4_touch_classic_dpad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_classic_dpad", + "namespace": "how_to_play_common" + } + }, + "nightfall_new_section/paragraph_4_touch_joystick_crosshair": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch_joystick_crosshair", + "namespace": "how_to_play_common" + } + }, + "building_a_shelter_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "building_a_shelter_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "image_1", + "paragraph_1", + "padding_2", + "paragraph_2", + "padding_3", + "paragraph_3" + ] + }, + "building_a_shelter_section/image_1": { + "file": "ui/how_to_play_screen.json", + "type": "image", + "extend": { + "name": "image", + "namespace": "how_to_play_common" + } + }, + "building_a_shelter_section/paragraph_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "building_a_shelter_section/padding_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "building_a_shelter_section/paragraph_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "building_a_shelter_section/padding_3": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "building_a_shelter_section/paragraph_3": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "death_and_respawn_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "death_and_respawn_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1", + "padding_1", + "paragraph_2" + ] + }, + "death_and_respawn_section/paragraph_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_with_icons", + "namespace": "how_to_play_common" + } + }, + "death_and_respawn_section/padding_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "death_and_respawn_section/paragraph_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "food_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "food_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1", + "padding_1", + "paragraph_2_keyboard", + "paragraph_2_gamepad", + "paragraph_2_touch", + "padding_2", + "paragraph_3" + ] + }, + "food_section/paragraph_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "food_section/padding_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "food_section/paragraph_2_keyboard": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "food_section/paragraph_2_gamepad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "food_section/paragraph_2_touch": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "food_section/padding_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "food_section/paragraph_3": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "beds_new_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "beds_new_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1", + "padding_1", + "paragraph_2", + "padding_2", + "paragraph_3" + ] + }, + "beds_new_section/paragraph_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "beds_new_section/padding_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "beds_new_section/paragraph_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "beds_new_section/padding_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "beds_new_section/paragraph_3": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "improved_tools_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "improved_tools_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1", + "padding_1", + "paragraph_2" + ] + }, + "improved_tools_section/paragraph_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "improved_tools_section/padding_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "improved_tools_section/paragraph_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "world_builder_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "edu_section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "world_builder_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "world_builder_section/padding_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "world_builder_section/paragraph_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "world_builder_section/padding_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "world_builder_section/paragraph_3": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "world_builder_section/padding_3": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "small_padding", + "namespace": "how_to_play_common" + } + }, + "world_builder_section/paragraph_4": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "world_builder_section/padding_4": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "world_builder_section/paragraph_5": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "world_builder_section/padding_5": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "small_padding", + "namespace": "how_to_play_common" + } + }, + "world_builder_section/paragraph_6": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "world_builder_section/paragraph_7": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "world_builder_section/padding_7": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "world_builder_section/paragraph_8": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "world_builder_section/padding_8": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "small_padding", + "namespace": "how_to_play_common" + } + }, + "world_builder_section/paragraph_9": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "permission_blocks_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "edu_section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "permission_blocks_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "permission_blocks_section/padding_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "permission_blocks_section/header_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "permission_blocks_section/paragraph_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "permission_blocks_section/padding_3": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "permission_blocks_section/paragraph_3": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "permission_blocks_section/padding_4": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "permission_blocks_section/paragraph_4": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "permission_blocks_section/padding_5": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "permission_blocks_section/paragraph_5": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "permission_blocks_section/padding_7": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "permission_blocks_section/header_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "permission_blocks_section/paragraph_6": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "chalkboard_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "edu_section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "chalkboard_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1_keyboard", + "paragraph_1_gamepad", + "paragraph_1_touch" + ] + }, + "chalkboard_section/paragraph_1_keyboard": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "chalkboard_section/paragraph_1_gamepad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "chalkboard_section/paragraph_1_touch": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "chemistry_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "edu_section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "chemistry_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1", + "padding_1", + "paragraph_2" + ] + }, + "chemistry_section/paragraph_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "chemistry_section/padding_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "chemistry_section/paragraph_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "npc_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "edu_section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "npc_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1", + "padding_1", + "paragraph_2", + "padding_2", + "paragraph_3" + ] + }, + "npc_section/paragraph_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "npc_section/padding_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "npc_section/paragraph_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "npc_section/padding_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "npc_section/paragraph_3": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "camera_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "edu_section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "camera_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "camera_section/padding_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "camera_section/paragraph_2_keyboard": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "camera_section/paragraph_2_gamepad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "camera_section/paragraph_2_touch": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "camera_section/padding_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "camera_section/paragraph_3_keyboard": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "camera_section/paragraph_3_gamepad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "camera_section/paragraph_3_touch": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "camera_section/padding_3": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "camera_section/paragraph_4": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "portfolio_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "edu_section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "portfolio_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1_keyboard", + "paragraph_1_gamepad", + "paragraph_1_touch" + ] + }, + "portfolio_section/paragraph_1_keyboard": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "portfolio_section/paragraph_1_gamepad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "portfolio_section/paragraph_1_touch": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "classroom_mode_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "edu_section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "classroom_mode_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1", + "padding_1", + "paragraph_2" + ] + }, + "classroom_mode_section/paragraph_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "classroom_mode_section/padding_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "classroom_mode_section/paragraph_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "code_builder_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "edu_section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "code_builder_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1", + "padding_1", + "paragraph_2_keyboard", + "paragraph_2_gamepad", + "paragraph_2_touch" + ] + }, + "code_builder_section/paragraph_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "code_builder_section/padding_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "code_builder_section/paragraph_2_keyboard": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_keyboard", + "namespace": "how_to_play_common" + } + }, + "code_builder_section/paragraph_2_gamepad": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_gamepad", + "namespace": "how_to_play_common" + } + }, + "code_builder_section/paragraph_2_touch": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph_touch", + "namespace": "how_to_play_common" + } + }, + "playing_together_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "playing_together_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "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": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "playing_together_section/padding_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "playing_together_section/header_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "playing_together_section/paragraph_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "playing_together_section/padding_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "playing_together_section/header_2": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "playing_together_section/paragraph_3": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "playing_together_section/padding_3": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "playing_together_section/paragraph_4": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "playing_together_section/padding_4": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "playing_together_section/paragraph_5": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "playing_together_section/padding_5": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "playing_together_section/header_3": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "playing_together_section/paragraph_6": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "playing_together_section/padding_6": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "playing_together_section/paragraph_7": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "playing_together_section/padding_7": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "playing_together_section/paragraph_8": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "playing_together_section/realms_button": { + "file": "ui/how_to_play_screen.json", + "type": "button", + "extend": { + "name": "try_realms_action_button", + "namespace": "how_to_play" + } + }, + "playing_together_section/sign_in_button": { + "file": "ui/how_to_play_screen.json", + "type": "button", + "extend": { + "name": "try_realms_action_button", + "namespace": "how_to_play" + } + }, + "playing_together_section/padding_8": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "playing_together_section/header_4": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "how_to_play_common" + } + }, + "playing_together_section/paragraph_9": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "playing_together_section/padding_9": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "how_to_play_common" + } + }, + "playing_together_section/paragraph_10": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "try_realms_action_button": { + "file": "ui/how_to_play_screen.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "how_to_play_common" + } + }, + "encyclopedia_button": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_button", + "namespace": "how_to_play_common" + } + }, + "encyclopedia_section": { + "file": "ui/how_to_play_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_sections", + "namespace": "how_to_play_common" + }, + "children": [ + "paragraph_1" + ] + }, + "encyclopedia_section/paragraph_1": { + "file": "ui/how_to_play_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + } + }, + "hud": { + "hud_player_renderer": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "hud_player" + ] + }, + "hud_player_renderer/hud_player": { + "file": "ui/hud_screen.json", + "type": "custom" + }, + "hotbar_renderer": { + "file": "ui/hud_screen.json", + "type": "custom", + "children": [ + "hotbar_slot_image" + ] + }, + "hotbar_renderer/hotbar_slot_image": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "hotbar_slot_image", + "namespace": "hud" + } + }, + "cooldown_renderer": { + "file": "ui/hud_screen.json", + "type": "custom" + }, + "heart_renderer": { + "file": "ui/hud_screen.json", + "type": "custom" + }, + "horse_heart_renderer": { + "file": "ui/hud_screen.json", + "type": "custom" + }, + "armor_renderer": { + "file": "ui/hud_screen.json", + "type": "custom" + }, + "exp_progress_bar_and_hotbar": { + "file": "ui/hud_screen.json", + "type": "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": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "empty_progress_bar", + "progress_text_label" + ] + }, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "empty_progress_bar", + "namespace": "hud" + }, + "children": [ + "full_progress_bar" + ] + }, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "full_progress_bar", + "namespace": "hud" + }, + "children": [ + "progress_bar_nub" + ] + }, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "progress_bar_nub", + "namespace": "hud" + }, + "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": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "horse_jump_renderer", + "namespace": "hud" + }, + "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": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "dash_renderer", + "namespace": "hud" + }, + "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": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "hotbar_chooser", + "namespace": "hud" + } + }, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/progress_text_label": { + "file": "ui/hud_screen.json", + "type": "label", + "extend": { + "name": "progress_text_label", + "namespace": "hud" + } + }, + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "horse_jump_rend" + ] + }, + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "horse_jump_renderer", + "namespace": "hud" + }, + "children": [ + "dash_rend" + ] + }, + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "dash_renderer", + "namespace": "hud" + }, + "children": [ + "hotbar" + ] + }, + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend/hotbar": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "hotbar_chooser", + "namespace": "hud" + } + }, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar": { + "file": "ui/hud_screen.json", + "type": "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": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "hotbar", + "size_without_hotbar" + ] + }, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/hotbar": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "hotbar_chooser", + "namespace": "hud" + } + }, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/size_without_hotbar": { + "file": "ui/hud_screen.json", + "type": "panel" + }, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/horse_jump_rend": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "horse_jump_renderer", + "namespace": "hud" + } + }, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/dash_rend": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "dash_renderer", + "namespace": "hud" + } + }, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/locator_bar": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "locator_bar", + "namespace": "hud" + } + }, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/progress_text_label": { + "file": "ui/hud_screen.json", + "type": "label", + "extend": { + "name": "progress_text_label", + "namespace": "hud" + } + }, + "exp_progress_bar_and_hotbar/item_text_factory": { + "file": "ui/hud_screen.json", + "type": "factory" + }, + "exp_progress_bar_and_hotbar_pocket": { + "file": "ui/hud_screen.json", + "type": "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": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "empty_progress_bar", + "progress_text_label" + ] + }, + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "empty_progress_bar", + "namespace": "hud" + }, + "children": [ + "full_progress_bar" + ] + }, + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "full_progress_bar", + "namespace": "hud" + }, + "children": [ + "progress_bar_nub" + ] + }, + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "progress_bar_nub", + "namespace": "hud" + } + }, + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/progress_text_label": { + "file": "ui/hud_screen.json", + "type": "label", + "extend": { + "name": "progress_text_label", + "namespace": "hud" + } + }, + "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "locator_bar", + "progress_text_label" + ] + }, + "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/locator_bar": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "locator_bar", + "namespace": "hud" + } + }, + "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/progress_text_label": { + "file": "ui/hud_screen.json", + "type": "label", + "extend": { + "name": "progress_text_label", + "namespace": "hud" + } + }, + "exp_progress_bar_and_hotbar_pocket/hotbar_panel": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "extend": { + "name": "hotbar_panel_pocket", + "namespace": "hud" + } + }, + "exp_progress_bar_and_hotbar_pocket/item_text": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "item_text_factory" + ] + }, + "exp_progress_bar_and_hotbar_pocket/item_text/item_text_factory": { + "file": "ui/hud_screen.json", + "type": "factory" + }, + "exp_progress_bar_and_hotbar_pocket/horse_jump_rend": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "horse_jump_renderer", + "namespace": "hud" + } + }, + "exp_progress_bar_and_hotbar_pocket/dash_rend": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "dash_renderer", + "namespace": "hud" + } + }, + "full_progress_bar": { + "file": "ui/hud_screen.json", + "type": "image" + }, + "empty_progress_bar": { + "file": "ui/hud_screen.json", + "type": "image" + }, + "progress_bar_nub": { + "file": "ui/hud_screen.json", + "type": "image" + }, + "progress_text_label": { + "file": "ui/hud_screen.json", + "type": "label" + }, + "horse_jump_renderer": { + "file": "ui/hud_screen.json", + "type": "custom" + }, + "dash_renderer": { + "file": "ui/hud_screen.json", + "type": "custom" + }, + "locator_bar": { + "file": "ui/hud_screen.json", + "type": "custom" + }, + "hunger_renderer": { + "file": "ui/hud_screen.json", + "type": "custom" + }, + "bubbles_renderer": { + "file": "ui/hud_screen.json", + "type": "custom" + }, + "mob_effects_renderer": { + "file": "ui/hud_screen.json", + "type": "custom" + }, + "vignette_renderer": { + "file": "ui/hud_screen.json", + "type": "custom" + }, + "editor_gizmo_renderer": { + "file": "ui/hud_screen.json", + "type": "custom" + }, + "cursor_renderer": { + "file": "ui/hud_screen.json", + "type": "custom" + }, + "progress_indicator_renderer": { + "file": "ui/hud_screen.json", + "type": "custom" + }, + "camera_renderer": { + "file": "ui/hud_screen.json", + "type": "custom" + }, + "editor_volume_highlight_renderer": { + "file": "ui/hud_screen.json", + "type": "custom" + }, + "editor_compass_renderer": { + "file": "ui/hud_screen.json", + "type": "custom" + }, + "hotbar_hud_item_icon": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "common" + } + }, + "elipses_image": { + "file": "ui/hud_screen.json", + "type": "image" + }, + "bound_button_label": { + "file": "ui/hud_screen.json", + "type": "unknown", + "extend": { + "name": "button_label", + "namespace": "hud" + } + }, + "default_borderless_button_layout": { + "file": "ui/hud_screen.json", + "type": "image" + }, + "hover_borderless_button_layout": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "default_borderless_button_layout", + "namespace": "hud" + } + }, + "pressed_borderless_button_layout": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "default_borderless_button_layout", + "namespace": "hud" + } + }, + "borderless_button": { + "file": "ui/hud_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed", + "elipses" + ] + }, + "borderless_button/default": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "default_borderless_button_layout", + "namespace": "hud" + } + }, + "borderless_button/hover": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "hover_borderless_button_layout", + "namespace": "hud" + } + }, + "borderless_button/pressed": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "pressed_borderless_button_layout", + "namespace": "hud" + } + }, + "borderless_button/elipses": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "elipses_image", + "namespace": "hud" + } + }, + "hotbar_elipses_button": { + "file": "ui/hud_screen.json", + "type": "button", + "extend": { + "name": "borderless_button", + "namespace": "hud" + } + }, + "start_cap_image": { + "file": "ui/hud_screen.json", + "type": "image" + }, + "end_cap_image": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "start_cap_image", + "namespace": "hud" + } + }, + "hotbar_start_cap": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "start_cap_image" + ] + }, + "hotbar_start_cap/start_cap_image": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "start_cap_image", + "namespace": "hud" + } + }, + "hotbar_end_cap": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "hotbar_start_cap", + "namespace": "hud" + }, + "children": [ + "end_cap_image" + ] + }, + "hotbar_end_cap/end_cap_image": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "end_cap_image", + "namespace": "hud" + } + }, + "heart_image": { + "file": "ui/hud_screen.json", + "type": "image" + }, + "hotbar_slot_image": { + "file": "ui/hud_screen.json", + "type": "image" + }, + "hotbar_slot_selected_image": { + "file": "ui/hud_screen.json", + "type": "image" + }, + "gui_hotbar_slot_button_prototype": { + "file": "ui/hud_screen.json", + "type": "button" + }, + "player_position": { + "file": "ui/hud_screen.json", + "type": "image", + "children": [ + "player_position_text" + ] + }, + "player_position/player_position_text": { + "file": "ui/hud_screen.json", + "type": "label" + }, + "number_of_days_played": { + "file": "ui/hud_screen.json", + "type": "image", + "children": [ + "number_of_days_played_text" + ] + }, + "number_of_days_played/number_of_days_played_text": { + "file": "ui/hud_screen.json", + "type": "label" + }, + "chat_label": { + "file": "ui/hud_screen.json", + "type": "label" + }, + "chat_grid_item": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "chat_background" + ] + }, + "chat_grid_item/chat_background": { + "file": "ui/hud_screen.json", + "type": "image", + "children": [ + "chat_text" + ] + }, + "chat_grid_item/chat_background/chat_text": { + "file": "ui/hud_screen.json", + "type": "label", + "extend": { + "name": "chat_label", + "namespace": "hud" + } + }, + "chat_panel": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "stack_panel" + ] + }, + "chat_panel/stack_panel": { + "file": "ui/hud_screen.json", + "type": "stack_panel" + }, + "subtitle_panel": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "stack_panel" + ] + }, + "subtitle_panel/stack_panel": { + "file": "ui/hud_screen.json", + "type": "stack_panel" + }, + "item_durability": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "durability_bar", + "namespace": "common" + } + }, + "item_storage": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "storage_bar", + "namespace": "common" + } + }, + "container_item_lock_overlay": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "container_item_lock_overlay", + "namespace": "common" + } + }, + "item_lock_cell_image": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "item_lock_cell_image", + "namespace": "common" + } + }, + "gui_hotbar_grid_item": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "hotbar_slot_selected_image", + "hotbar_renderer", + "hotbar_parent", + "cooldown_renderer", + "hotbar_slot_button" + ] + }, + "gui_hotbar_grid_item/hotbar_slot_selected_image": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "hotbar_slot_selected_image", + "namespace": "hud" + } + }, + "gui_hotbar_grid_item/hotbar_renderer": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "hotbar_renderer", + "namespace": "hud" + } + }, + "gui_hotbar_grid_item/hotbar_parent": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "item_icon", + "item_count", + "hotbar_hint", + "item_dura", + "item_store", + "container_item_lock_overlay" + ] + }, + "gui_hotbar_grid_item/hotbar_parent/item_icon": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "hotbar_hud_item_icon", + "namespace": "hud" + } + }, + "gui_hotbar_grid_item/hotbar_parent/item_count": { + "file": "ui/hud_screen.json", + "type": "label", + "extend": { + "name": "stack_count_label", + "namespace": "common" + } + }, + "gui_hotbar_grid_item/hotbar_parent/hotbar_hint": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "hotbar_hint", + "namespace": "edu_common" + } + }, + "gui_hotbar_grid_item/hotbar_parent/item_dura": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "item_durability", + "namespace": "hud" + } + }, + "gui_hotbar_grid_item/hotbar_parent/item_store": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "item_storage", + "namespace": "hud" + } + }, + "gui_hotbar_grid_item/hotbar_parent/container_item_lock_overlay": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "container_item_lock_overlay", + "namespace": "hud" + } + }, + "gui_hotbar_grid_item/cooldown_renderer": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "cooldown_renderer", + "namespace": "hud" + } + }, + "gui_hotbar_grid_item/hotbar_slot_button": { + "file": "ui/hud_screen.json", + "type": "button", + "extend": { + "name": "gui_hotbar_slot_button_prototype", + "namespace": "hud" + } + }, + "gui_hotbar_grid_item_pocket": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "hotbar_slot_selected_image", + "hotbar_renderer", + "hotbar_parent", + "cooldown_renderer", + "hotbar_slot_button" + ] + }, + "gui_hotbar_grid_item_pocket/hotbar_slot_selected_image": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "hotbar_slot_selected_image", + "namespace": "hud" + } + }, + "gui_hotbar_grid_item_pocket/hotbar_renderer": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "hotbar_renderer", + "namespace": "hud" + } + }, + "gui_hotbar_grid_item_pocket/hotbar_parent": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "item_icon", + "item_count", + "item_dura", + "item_store", + "container_item_lock_overlay" + ] + }, + "gui_hotbar_grid_item_pocket/hotbar_parent/item_icon": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "hotbar_hud_item_icon", + "namespace": "hud" + } + }, + "gui_hotbar_grid_item_pocket/hotbar_parent/item_count": { + "file": "ui/hud_screen.json", + "type": "label", + "extend": { + "name": "stack_count_label", + "namespace": "common" + } + }, + "gui_hotbar_grid_item_pocket/hotbar_parent/item_dura": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "item_durability", + "namespace": "hud" + } + }, + "gui_hotbar_grid_item_pocket/hotbar_parent/item_store": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "item_storage", + "namespace": "hud" + } + }, + "gui_hotbar_grid_item_pocket/hotbar_parent/container_item_lock_overlay": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "container_item_lock_overlay", + "namespace": "hud" + } + }, + "gui_hotbar_grid_item_pocket/cooldown_renderer": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "cooldown_renderer", + "namespace": "hud" + } + }, + "gui_hotbar_grid_item_pocket/hotbar_slot_button": { + "file": "ui/hud_screen.json", + "type": "button", + "extend": { + "name": "gui_hotbar_slot_button_prototype", + "namespace": "hud" + } + }, + "centered_gui_elements": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "hud_player_rend_desktop" + ] + }, + "centered_gui_elements/hud_player_rend_desktop": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "hud_player_renderer", + "namespace": "hud" + } + }, + "centered_gui_elements_at_bottom_middle": { + "file": "ui/hud_screen.json", + "type": "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": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "heart_renderer", + "namespace": "hud" + } + }, + "centered_gui_elements_at_bottom_middle/horse_heart_rend_0": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "horse_heart_renderer", + "namespace": "hud" + } + }, + "centered_gui_elements_at_bottom_middle/horse_heart_rend_1": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "horse_heart_renderer", + "namespace": "hud" + } + }, + "centered_gui_elements_at_bottom_middle/armor_rend": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "armor_renderer", + "namespace": "hud" + } + }, + "centered_gui_elements_at_bottom_middle/hunger_rend": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "hunger_renderer", + "namespace": "hud" + } + }, + "centered_gui_elements_at_bottom_middle/bubbles_rend_0": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "bubbles_renderer", + "namespace": "hud" + } + }, + "centered_gui_elements_at_bottom_middle/bubbles_rend_1": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "bubbles_renderer", + "namespace": "hud" + } + }, + "centered_gui_elements_at_bottom_middle/exp_rend": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "exp_progress_bar_and_hotbar", + "namespace": "hud" + } + }, + "centered_gui_elements_at_bottom_middle_touch": { + "file": "ui/hud_screen.json", + "type": "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": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "heart_renderer", + "namespace": "hud" + } + }, + "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_0": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "horse_heart_renderer", + "namespace": "hud" + } + }, + "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_1": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "horse_heart_renderer", + "namespace": "hud" + } + }, + "centered_gui_elements_at_bottom_middle_touch/armor_rend": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "armor_renderer", + "namespace": "hud" + } + }, + "centered_gui_elements_at_bottom_middle_touch/hunger_rend": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "hunger_renderer", + "namespace": "hud" + } + }, + "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_0": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "bubbles_renderer", + "namespace": "hud" + } + }, + "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_1": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "bubbles_renderer", + "namespace": "hud" + } + }, + "centered_gui_elements_at_bottom_middle_touch/exp_rend": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "exp_progress_bar_and_hotbar", + "namespace": "hud" + } + }, + "not_centered_gui_elements": { + "file": "ui/hud_screen.json", + "type": "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": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "heart_renderer", + "namespace": "hud" + } + }, + "not_centered_gui_elements/horse_heart_rend": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "horse_heart_renderer", + "namespace": "hud" + } + }, + "not_centered_gui_elements/hunger_rend": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "hunger_renderer", + "namespace": "hud" + } + }, + "not_centered_gui_elements/armor_rend": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "armor_renderer", + "namespace": "hud" + } + }, + "not_centered_gui_elements/hud_player_rend_pocket": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "hud_player_renderer", + "namespace": "hud" + } + }, + "not_centered_gui_elements/bubbles_rend_0": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "bubbles_renderer", + "namespace": "hud" + } + }, + "not_centered_gui_elements/bubbles_rend_1": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "bubbles_renderer", + "namespace": "hud" + } + }, + "hotbar_chooser": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "desktop_hotbar", + "pocket_hotbar" + ] + }, + "hotbar_chooser/desktop_hotbar": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "extend": { + "name": "hotbar_panel", + "namespace": "hud" + } + }, + "hotbar_chooser/pocket_hotbar": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "extend": { + "name": "hotbar_panel", + "namespace": "hud" + } + }, + "hotbar_elipses_panel_right_content": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "children": [ + "elipses_content" + ] + }, + "hotbar_elipses_panel_right_content/elipses_content": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "hotbar_elipses_panel_right_art", + "namespace": "hud" + } + }, + "hotbar_elipses_panel_right_art": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "slot", + "button" + ] + }, + "hotbar_elipses_panel_right_art/slot": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "hotbar_slot_image", + "namespace": "hud" + } + }, + "hotbar_elipses_panel_right_art/button": { + "file": "ui/hud_screen.json", + "type": "button", + "extend": { + "name": "hotbar_elipses_button", + "namespace": "hud" + } + }, + "hotbar_elipses_panel_left_content": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "children": [ + "button" + ] + }, + "hotbar_elipses_panel_left_content/button": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "hotbar_elipses_panel_left_art", + "namespace": "hud" + } + }, + "hotbar_elipses_panel_left_art": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "slot", + "button" + ] + }, + "hotbar_elipses_panel_left_art/slot": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "hotbar_slot_image", + "namespace": "hud" + } + }, + "hotbar_elipses_panel_left_art/button": { + "file": "ui/hud_screen.json", + "type": "button", + "extend": { + "name": "hotbar_elipses_button", + "namespace": "hud" + } + }, + "hotbar_panel": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "children": [ + "hotbar_start_cap", + "hotbar_elipses_panel_left", + "hotbar_grid", + "hotbar_elipses_panel_right", + "hotbar_end_cap" + ] + }, + "hotbar_panel/hotbar_start_cap": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "hotbar_start_cap", + "namespace": "hud" + } + }, + "hotbar_panel/hotbar_elipses_panel_left": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "extend": { + "name": "hotbar_elipses_panel_left_content", + "namespace": "hud" + } + }, + "hotbar_panel/hotbar_grid": { + "file": "ui/hud_screen.json", + "type": "grid", + "extend": { + "name": "hotbar_grid", + "namespace": "hud" + } + }, + "hotbar_panel/hotbar_elipses_panel_right": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "extend": { + "name": "hotbar_elipses_panel_right_content", + "namespace": "hud" + } + }, + "hotbar_panel/hotbar_end_cap": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "hotbar_end_cap", + "namespace": "hud" + } + }, + "hotbar_panel_pocket": { + "file": "ui/hud_screen.json", + "type": "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": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "hotbar_start_cap" + ] + }, + "hotbar_panel_pocket/hotbar_start_cap_frame/hotbar_start_cap": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "hotbar_start_cap", + "namespace": "hud" + } + }, + "hotbar_panel_pocket/hotbar_elipses_panel_left": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "hotbar_elipses_panel_left" + ] + }, + "hotbar_panel_pocket/hotbar_elipses_panel_left/hotbar_elipses_panel_left": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "hotbar_elipses_panel_left_art", + "namespace": "hud" + } + }, + "hotbar_panel_pocket/hotbar_grid": { + "file": "ui/hud_screen.json", + "type": "grid", + "extend": { + "name": "hotbar_grid", + "namespace": "hud" + } + }, + "hotbar_panel_pocket/hotbar_elipses_panel_right": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "hotbar_elipses_panel_right" + ] + }, + "hotbar_panel_pocket/hotbar_elipses_panel_right/hotbar_elipses_panel_right": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "hotbar_elipses_panel_right_art", + "namespace": "hud" + } + }, + "hotbar_panel_pocket/hotbar_end_cap_frame": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "hotbar_end_cap" + ] + }, + "hotbar_panel_pocket/hotbar_end_cap_frame/hotbar_end_cap": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "hotbar_end_cap", + "namespace": "hud" + } + }, + "hotbar_grid": { + "file": "ui/hud_screen.json", + "type": "grid" + }, + "edu_hotbar_grid": { + "file": "ui/hud_screen.json", + "type": "grid" + }, + "item_name_text_root": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "item_text_aligner" + ] + }, + "item_name_text_root/item_text_aligner": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "children": [ + "item_text_control", + "interact_padding", + "survival_buffer" + ] + }, + "item_name_text_root/item_text_aligner/item_text_control": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "item_text_background", + "item_text_label" + ] + }, + "item_name_text_root/item_text_aligner/item_text_control/item_text_background": { + "file": "ui/hud_screen.json", + "type": "image" + }, + "item_name_text_root/item_text_aligner/item_text_control/item_text_label": { + "file": "ui/hud_screen.json", + "type": "label" + }, + "item_name_text_root/item_text_aligner/interact_padding": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "item_name_text_root/item_text_aligner/survival_buffer": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "item_name_text": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "item_name_text_root", + "namespace": "hud" + } + }, + "jukebox_popup_text": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "item_name_text_root", + "namespace": "hud" + } + }, + "hud_tip_text": { + "file": "ui/hud_screen.json", + "type": "image", + "children": [ + "item_text_label" + ] + }, + "hud_tip_text/item_text_label": { + "file": "ui/hud_screen.json", + "type": "label" + }, + "auto_save": { + "file": "ui/hud_screen.json", + "type": "image" + }, + "hud_actionbar_text": { + "file": "ui/hud_screen.json", + "type": "image", + "children": [ + "actionbar_message" + ] + }, + "hud_actionbar_text/actionbar_message": { + "file": "ui/hud_screen.json", + "type": "label" + }, + "hud_title_text": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "children": [ + "title_frame", + "subtitle_frame" + ] + }, + "hud_title_text/title_frame": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "title_background", + "title" + ] + }, + "hud_title_text/title_frame/title_background": { + "file": "ui/hud_screen.json", + "type": "image" + }, + "hud_title_text/title_frame/title": { + "file": "ui/hud_screen.json", + "type": "label" + }, + "hud_title_text/subtitle_frame": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "subtitle_background", + "subtitle" + ] + }, + "hud_title_text/subtitle_frame/subtitle_background": { + "file": "ui/hud_screen.json", + "type": "image" + }, + "hud_title_text/subtitle_frame/subtitle": { + "file": "ui/hud_screen.json", + "type": "label" + }, + "boss_name_panel": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "boss_name" + ] + }, + "boss_name_panel/boss_name": { + "file": "ui/hud_screen.json", + "type": "label" + }, + "tooltip_helper_icon_description": { + "file": "ui/hud_screen.json", + "type": "label", + "children": [ + "label_background" + ] + }, + "tooltip_helper_icon_description/label_background": { + "file": "ui/hud_screen.json", + "type": "image" + }, + "tooltip_helper": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "children": [ + "icon", + "padding", + "centerer" + ] + }, + "tooltip_helper/icon": { + "file": "ui/hud_screen.json", + "type": "unknown" + }, + "tooltip_helper/padding": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "tooltip_helper/centerer": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "desc" + ] + }, + "tooltip_helper/centerer/desc": { + "file": "ui/hud_screen.json", + "type": "label", + "extend": { + "name": "tooltip_helper_icon_description", + "namespace": "hud" + } + }, + "tooltip_helper_form_fitting": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "children": [ + "icon", + "padding", + "centerer" + ] + }, + "tooltip_helper_form_fitting/icon": { + "file": "ui/hud_screen.json", + "type": "unknown" + }, + "tooltip_helper_form_fitting/padding": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "tooltip_helper_form_fitting/centerer": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "desc" + ] + }, + "tooltip_helper_form_fitting/centerer/desc": { + "file": "ui/hud_screen.json", + "type": "label", + "extend": { + "name": "tooltip_helper_icon_description", + "namespace": "hud" + } + }, + "keyboard_tooltip_helper": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "extend": { + "name": "tooltip_helper", + "namespace": "hud" + } + }, + "keyboard_tooltip_helper_form_fitting": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "extend": { + "name": "tooltip_helper_form_fitting", + "namespace": "hud" + } + }, + "mixed_tooltip_helper": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "gamepad_tooltip", + "keyboard_tooltip" + ] + }, + "mixed_tooltip_helper/gamepad_tooltip": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "extend": { + "name": "tooltip_helper", + "namespace": "hud" + } + }, + "mixed_tooltip_helper/keyboard_tooltip": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "extend": { + "name": "keyboard_tooltip_helper", + "namespace": "hud" + } + }, + "mixed_tooltip_helper_form_fitting": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "gamepad_tooltip", + "keyboard_tooltip" + ] + }, + "mixed_tooltip_helper_form_fitting/gamepad_tooltip": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "extend": { + "name": "tooltip_helper_form_fitting", + "namespace": "hud" + } + }, + "mixed_tooltip_helper_form_fitting/keyboard_tooltip": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "extend": { + "name": "keyboard_tooltip_helper_form_fitting", + "namespace": "hud" + } + }, + "base_icon_image": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "children": [ + "icon", + "postfix_label_wrapper" + ] + }, + "base_icon_image/icon": { + "file": "ui/hud_screen.json", + "type": "image" + }, + "base_icon_image/postfix_label_wrapper": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "label" + ] + }, + "base_icon_image/postfix_label_wrapper/label": { + "file": "ui/hud_screen.json", + "type": "label" + }, + "base_keyboard_icon": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "icon" + ] + }, + "base_keyboard_icon/icon": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "key_backing", + "mouse_buttons" + ] + }, + "base_keyboard_icon/icon/key_backing": { + "file": "ui/hud_screen.json", + "type": "image", + "children": [ + "key_label" + ] + }, + "base_keyboard_icon/icon/key_backing/key_label": { + "file": "ui/hud_screen.json", + "type": "label" + }, + "base_keyboard_icon/icon/mouse_buttons": { + "file": "ui/hud_screen.json", + "type": "label" + }, + "left_helpers_edu": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "children": [ + "tip_window", + "tip_paddding", + "controls_toggle_label", + "controls_inventory_label", + "controls_menu_label" + ] + }, + "left_helpers_edu/tip_window": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "tooltip_background", + "namespace": "common" + }, + "children": [ + "stack_panel" + ] + }, + "left_helpers_edu/tip_window/stack_panel": { + "file": "ui/hud_screen.json", + "type": "stack_panel" + }, + "left_helpers_edu/tip_paddding": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "left_helpers_edu/controls_toggle_label": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "tip" + ] + }, + "left_helpers_edu/controls_toggle_label/tip": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "mixed_tooltip_helper", + "namespace": "hud" + } + }, + "left_helpers_edu/controls_inventory_label": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "tip" + ] + }, + "left_helpers_edu/controls_inventory_label/tip": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "mixed_tooltip_helper", + "namespace": "hud" + } + }, + "left_helpers_edu/controls_menu_label": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "tip" + ] + }, + "left_helpers_edu/controls_menu_label/tip": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "mixed_tooltip_helper", + "namespace": "hud" + } + }, + "left_helpers": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "stack_panel" + ] + }, + "left_helpers/stack_panel": { + "file": "ui/hud_screen.json", + "type": "stack_panel" + }, + "emote_label_background": { + "file": "ui/hud_screen.json", + "type": "image" + }, + "emote_tip": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "emote_label_background", + "namespace": "hud" + }, + "children": [ + "emote_keyboard_centerer", + "emote_gamepad_helper" + ] + }, + "emote_tip/emote_keyboard_centerer": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "emote_keyboard_helper" + ] + }, + "emote_tip/emote_keyboard_centerer/emote_keyboard_helper": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "extend": { + "name": "keyboard_helper_keys", + "namespace": "common" + } + }, + "emote_tip/emote_gamepad_helper": { + "file": "ui/hud_screen.json", + "type": "unknown" + }, + "emote_expediate_helpers": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "stack_panel" + ] + }, + "emote_expediate_helpers/stack_panel": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "children": [ + "emote_tip_0", + "emote_tip_1", + "emote_tip_2", + "emote_tip_3" + ] + }, + "emote_expediate_helpers/stack_panel/emote_tip_0": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "emote_tip", + "namespace": "hud" + } + }, + "emote_expediate_helpers/stack_panel/emote_tip_1": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "emote_tip", + "namespace": "hud" + } + }, + "emote_expediate_helpers/stack_panel/emote_tip_2": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "emote_tip", + "namespace": "hud" + } + }, + "emote_expediate_helpers/stack_panel/emote_tip_3": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "emote_tip", + "namespace": "hud" + } + }, + "right_helpers": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "stack_panel" + ] + }, + "right_helpers/stack_panel": { + "file": "ui/hud_screen.json", + "type": "stack_panel" + }, + "boss_health_panel": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "boss_name", + "progress_bar_for_collections" + ] + }, + "boss_health_panel/boss_name": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "boss_name_panel", + "namespace": "hud" + } + }, + "boss_health_panel/progress_bar_for_collections": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "progress_bar_for_collections", + "namespace": "common" + } + }, + "boss_health_grid": { + "file": "ui/hud_screen.json", + "type": "grid" + }, + "wysiwyg_reset_modal_ok": { + "file": "ui/hud_screen.json", + "type": "button", + "extend": { + "name": "modal_button", + "namespace": "library_modal" + } + }, + "wysiwyg_reset_modal_cancel": { + "file": "ui/hud_screen.json", + "type": "button", + "extend": { + "name": "modal_button", + "namespace": "library_modal" + } + }, + "wysiwyg_close_without_saving_modal_ok": { + "file": "ui/hud_screen.json", + "type": "button", + "extend": { + "name": "modal_button", + "namespace": "library_modal" + } + }, + "wysiwyg_close_without_saving_modal_cancel": { + "file": "ui/hud_screen.json", + "type": "button", + "extend": { + "name": "modal_button", + "namespace": "library_modal" + } + }, + "root_panel": { + "file": "ui/hud_screen.json", + "type": "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", + "subtitle_stack", + "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": { + "file": "ui/hud_screen.json", + "type": "image", + "children": [ + "layout_customization_reset_modal" + ] + }, + "root_panel/layout_customization_reset/layout_customization_reset_modal": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_two_buttons", + "namespace": "common_dialogs" + } + }, + "root_panel/layout_customization_close_without_saving": { + "file": "ui/hud_screen.json", + "type": "image", + "children": [ + "layout_customization_close_without_saving_modal" + ] + }, + "root_panel/layout_customization_close_without_saving/layout_customization_close_without_saving_modal": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_two_buttons", + "namespace": "common_dialogs" + } + }, + "root_panel/layout_customization_main_panel": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "layout_customization_main_panel", + "namespace": "hud" + } + }, + "root_panel/layout_customization_sub_panel": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "layout_customization_sub_panel", + "namespace": "hud" + } + }, + "root_panel/layout_customization_hint_drag_frame": { + "file": "ui/hud_screen.json", + "type": "image", + "children": [ + "layout_customization_hint_drag" + ] + }, + "root_panel/layout_customization_hint_drag_frame/layout_customization_hint_drag": { + "file": "ui/hud_screen.json", + "type": "label" + }, + "root_panel/layout_customization_hint_deselect_frame": { + "file": "ui/hud_screen.json", + "type": "image", + "children": [ + "layout_customization_hint_deselect" + ] + }, + "root_panel/layout_customization_hint_deselect_frame/layout_customization_hint_deselect": { + "file": "ui/hud_screen.json", + "type": "label" + }, + "root_panel/layout_customization_hint_saved": { + "file": "ui/hud_screen.json", + "type": "image", + "children": [ + "layout_customization_hint_saved" + ] + }, + "root_panel/layout_customization_hint_saved/layout_customization_hint_saved": { + "file": "ui/hud_screen.json", + "type": "label" + }, + "root_panel/left_helpers": { + "file": "ui/hud_screen.json", + "type": "unknown" + }, + "root_panel/right_helpers": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "right_helpers", + "namespace": "hud" + } + }, + "root_panel/subtitle_stack": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "children": [ + "subtitle_padding", + "subtitle_panel" + ] + }, + "root_panel/subtitle_stack/subtitle_padding": { + "file": "ui/hud_screen.json", + "type": "panel" + }, + "root_panel/subtitle_stack/subtitle_panel": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "subtitle_panel", + "namespace": "hud" + } + }, + "root_panel/emote_expediate_helpers": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "emote_expediate_helpers", + "namespace": "hud" + } + }, + "root_panel/centered_gui_elements": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "centered_gui_elements", + "namespace": "hud" + } + }, + "root_panel/centered_gui_elements_at_bottom_middle": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "centered_gui_elements_at_bottom_middle", + "namespace": "hud" + } + }, + "root_panel/centered_gui_elements_at_bottom_middle_touch": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "centered_gui_elements_at_bottom_middle_touch", + "namespace": "hud" + } + }, + "root_panel/not_centered_gui_elements": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "not_centered_gui_elements", + "namespace": "hud" + } + }, + "root_panel/gamertag_label_for_splitscreen": { + "file": "ui/hud_screen.json", + "type": "label" + }, + "root_panel/exp_rend": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "exp_progress_bar_and_hotbar", + "namespace": "hud" + } + }, + "root_panel/exp_rend_resizable": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "exp_progress_bar_and_hotbar_pocket", + "namespace": "hud" + } + }, + "root_panel/hud_tip_text_factory": { + "file": "ui/hud_screen.json", + "type": "factory" + }, + "root_panel/hud_actionbar_text_area": { + "file": "ui/hud_screen.json", + "type": "panel" + }, + "root_panel/hud_title_text_area": { + "file": "ui/hud_screen.json", + "type": "panel" + }, + "root_panel/mob_effects_renderer": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "mob_effects_renderer", + "namespace": "hud" + } + }, + "root_panel/vignette_rend": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "vignette_renderer", + "namespace": "hud" + } + }, + "root_panel/curor_rend": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "cursor_renderer", + "namespace": "hud" + } + }, + "root_panel/game_tip": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "game_tip_factory", + "namespace": "game_tip" + } + }, + "root_panel/sidebar": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "scoreboard_sidebar", + "namespace": "scoreboard" + } + }, + "root_panel/progress_rend": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "progress_indicator_renderer", + "namespace": "hud" + } + }, + "root_panel/chat_stack": { + "file": "ui/hud_screen.json", + "type": "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": { + "file": "ui/hud_screen.json", + "type": "panel" + }, + "root_panel/chat_stack/non_centered_gui_padding": { + "file": "ui/hud_screen.json", + "type": "panel" + }, + "root_panel/chat_stack/player_position": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "player_position", + "namespace": "hud" + } + }, + "root_panel/chat_stack/number_of_days_played": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "number_of_days_played", + "namespace": "hud" + } + }, + "root_panel/chat_stack/game_tip": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "game_tip_chat_stack_factory", + "namespace": "game_tip" + } + }, + "root_panel/chat_stack/chat_panel": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "chat_panel", + "namespace": "hud" + } + }, + "root_panel/boss_health_panel": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "children": [ + "boss_hud_padding", + "boss_hud_touch_padding", + "boss_hud_panel" + ] + }, + "root_panel/boss_health_panel/boss_hud_padding": { + "file": "ui/hud_screen.json", + "type": "panel" + }, + "root_panel/boss_health_panel/boss_hud_touch_padding": { + "file": "ui/hud_screen.json", + "type": "panel" + }, + "root_panel/boss_health_panel/boss_hud_panel": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "boss_health_grid" + ] + }, + "root_panel/boss_health_panel/boss_hud_panel/boss_health_grid": { + "file": "ui/hud_screen.json", + "type": "grid", + "extend": { + "name": "boss_health_grid", + "namespace": "hud" + } + }, + "root_panel/save_icon": { + "file": "ui/hud_screen.json", + "type": "image", + "extend": { + "name": "auto_save", + "namespace": "hud" + } + }, + "hud_screen": { + "file": "ui/hud_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "hud_content": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "root_panel", + "editor_gizmo_renderer", + "editor_compass_renderer", + "editor_volume_highlight_renderer", + "camera_renderer" + ] + }, + "hud_content/root_panel": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "root_panel", + "namespace": "hud" + } + }, + "hud_content/editor_gizmo_renderer": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "editor_gizmo_renderer", + "namespace": "hud" + } + }, + "hud_content/editor_compass_renderer": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "editor_compass_renderer", + "namespace": "hud" + } + }, + "hud_content/editor_volume_highlight_renderer": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "editor_volume_highlight_renderer", + "namespace": "hud" + } + }, + "hud_content/camera_renderer": { + "file": "ui/hud_screen.json", + "type": "custom", + "extend": { + "name": "camera_renderer", + "namespace": "hud" + } + }, + "layout_customization_main_panel_button": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "button" + ] + }, + "layout_customization_main_panel_button/button": { + "file": "ui/hud_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "layout_customization_main_panel": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "main_panel_frame" + ] + }, + "layout_customization_main_panel/main_panel_frame": { + "file": "ui/hud_screen.json", + "type": "image", + "children": [ + "main_panel_content" + ] + }, + "layout_customization_main_panel/main_panel_frame/main_panel_content": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "children": [ + "reset_button", + "exit_button", + "opacity_button", + "size_button" + ] + }, + "layout_customization_main_panel/main_panel_frame/main_panel_content/reset_button": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "layout_customization_main_panel_button", + "namespace": "hud" + } + }, + "layout_customization_main_panel/main_panel_frame/main_panel_content/exit_button": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "layout_customization_main_panel_button", + "namespace": "hud" + } + }, + "layout_customization_main_panel/main_panel_frame/main_panel_content/opacity_button": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "layout_customization_main_panel_button", + "namespace": "hud" + } + }, + "layout_customization_main_panel/main_panel_frame/main_panel_content/size_button": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "layout_customization_main_panel_button", + "namespace": "hud" + } + }, + "layout_customization_option_slider": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "children": [ + "slider", + "reset" + ] + }, + "layout_customization_option_slider/slider": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "layout_customization_option_slider/reset": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "reset_button" + ] + }, + "layout_customization_option_slider/reset/reset_button": { + "file": "ui/hud_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "layout_customization_option_slider/reset/reset_button/default": { + "file": "ui/hud_screen.json", + "type": "image" + }, + "layout_customization_option_slider/reset/reset_button/hover": { + "file": "ui/hud_screen.json", + "type": "image" + }, + "layout_customization_option_slider/reset/reset_button/pressed": { + "file": "ui/hud_screen.json", + "type": "image" + }, + "layout_customization_option_content": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "scale_option", + "opacity_option", + "apply_to_all_toggle" + ] + }, + "layout_customization_option_content/scale_option": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "extend": { + "name": "layout_customization_option_slider", + "namespace": "hud" + } + }, + "layout_customization_option_content/opacity_option": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "extend": { + "name": "layout_customization_option_slider", + "namespace": "hud" + } + }, + "layout_customization_option_content/apply_to_all_toggle": { + "file": "ui/hud_screen.json", + "type": "stack_panel", + "children": [ + "checkbox_frame", + "caption_frame" + ] + }, + "layout_customization_option_content/apply_to_all_toggle/checkbox_frame": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "checkbox_unchecked", + "checkbox_checked" + ] + }, + "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_unchecked": { + "file": "ui/hud_screen.json", + "type": "image" + }, + "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_checked": { + "file": "ui/hud_screen.json", + "type": "image" + }, + "layout_customization_option_content/apply_to_all_toggle/caption_frame": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "caption" + ] + }, + "layout_customization_option_content/apply_to_all_toggle/caption_frame/caption": { + "file": "ui/hud_screen.json", + "type": "label" + }, + "layout_customization_option": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "content" + ] + }, + "layout_customization_option/content": { + "file": "ui/hud_screen.json", + "type": "panel", + "extend": { + "name": "layout_customization_option_content", + "namespace": "hud" + } + }, + "layout_customization_sub_panel": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "background" + ] + }, + "layout_customization_sub_panel/background": { + "file": "ui/hud_screen.json", + "type": "image", + "children": [ + "sub_panel_content" + ] + }, + "layout_customization_sub_panel/background/sub_panel_content": { + "file": "ui/hud_screen.json", + "type": "grid" + } + }, + "host_options": { + "button_label": { + "file": "ui/host_options_screen.json", + "type": "label" + }, + "host_image_panel": { + "file": "ui/host_options_screen.json", + "type": "panel", + "children": [ + "host_image" + ] + }, + "host_image_panel/host_image": { + "file": "ui/host_options_screen.json", + "type": "label", + "extend": { + "name": "button_label", + "namespace": "host_options" + } + }, + "host_glyph_panel": { + "file": "ui/host_options_screen.json", + "type": "image" + }, + "scrollable_selector_area": { + "file": "ui/host_options_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "host_main_button": { + "file": "ui/host_options_screen.json", + "type": "button", + "extend": { + "name": "light_text_form_fitting_button", + "namespace": "common_buttons" + } + }, + "scrolling_panel": { + "file": "ui/host_options_screen.json", + "type": "panel", + "children": [ + "background", + "scrollable_tab" + ] + }, + "scrolling_panel/background": { + "file": "ui/host_options_screen.json", + "type": "image" + }, + "scrolling_panel/scrollable_tab": { + "file": "ui/host_options_screen.json", + "type": "panel", + "extend": { + "name": "scrollable_selector_area", + "namespace": "host_options" + } + }, + "button_content": { + "file": "ui/host_options_screen.json", + "type": "panel", + "children": [ + "button_label", + "image" + ] + }, + "button_content/button_label": { + "file": "ui/host_options_screen.json", + "type": "label", + "extend": { + "name": "button_label", + "namespace": "host_options" + } + }, + "button_content/image": { + "file": "ui/host_options_screen.json", + "type": "image", + "extend": { + "name": "host_glyph_panel", + "namespace": "host_options" + } + }, + "main_light_button": { + "file": "ui/host_options_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "main_dark_button": { + "file": "ui/host_options_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "host_grid": { + "file": "ui/host_options_screen.json", + "type": "grid" + }, + "host_sub_command_grid_item": { + "file": "ui/host_options_screen.json", + "type": "panel", + "children": [ + "host_option_banner" + ] + }, + "host_sub_command_grid_item/host_option_banner": { + "file": "ui/host_options_screen.json", + "type": "button", + "extend": { + "name": "main_dark_button", + "namespace": "host_options" + } + }, + "return_from_sub_command_button": { + "file": "ui/host_options_screen.json", + "type": "button", + "extend": { + "name": "main_light_button", + "namespace": "host_options" + } + }, + "platform_icon_panel": { + "file": "ui/host_options_screen.json", + "type": "panel", + "extend": { + "name": "platform_icon_panel", + "namespace": "pause" + } + }, + "gamertag_wrapper": { + "file": "ui/host_options_screen.json", + "type": "panel", + "extend": { + "name": "gametag_wrapper", + "namespace": "pause" + } + }, + "player_pic_panel": { + "file": "ui/host_options_screen.json", + "type": "panel", + "children": [ + "player_gamer_pic", + "player_local_icon" + ] + }, + "player_pic_panel/player_gamer_pic": { + "file": "ui/host_options_screen.json", + "type": "image", + "extend": { + "name": "player_gamer_pic", + "namespace": "pause" + } + }, + "player_pic_panel/player_local_icon": { + "file": "ui/host_options_screen.json", + "type": "image", + "extend": { + "name": "player_local_icon", + "namespace": "pause" + } + }, + "player_button_content": { + "file": "ui/host_options_screen.json", + "type": "stack_panel", + "children": [ + "player_pic_panel", + "player_gamertag", + "platform_icon" + ] + }, + "player_button_content/player_pic_panel": { + "file": "ui/host_options_screen.json", + "type": "panel", + "extend": { + "name": "player_pic_panel", + "namespace": "host_options" + } + }, + "player_button_content/player_gamertag": { + "file": "ui/host_options_screen.json", + "type": "panel", + "extend": { + "name": "gamertag_wrapper", + "namespace": "host_options" + } + }, + "player_button_content/platform_icon": { + "file": "ui/host_options_screen.json", + "type": "panel", + "extend": { + "name": "platform_icon_panel", + "namespace": "host_options" + } + }, + "player_grid_item": { + "file": "ui/host_options_screen.json", + "type": "panel", + "children": [ + "player_banner" + ] + }, + "player_grid_item/player_banner": { + "file": "ui/host_options_screen.json", + "type": "button", + "extend": { + "name": "main_dark_button", + "namespace": "host_options" + } + }, + "host_friends_tab": { + "file": "ui/host_options_screen.json", + "type": "panel", + "children": [ + "players_grid" + ] + }, + "host_friends_tab/players_grid": { + "file": "ui/host_options_screen.json", + "type": "grid", + "extend": { + "name": "host_grid", + "namespace": "host_options" + } + }, + "host_teleport_grid_item": { + "file": "ui/host_options_screen.json", + "type": "panel", + "children": [ + "host_option_toggle", + "host_option_button" + ] + }, + "host_teleport_grid_item/host_option_toggle": { + "file": "ui/host_options_screen.json", + "type": "panel", + "extend": { + "name": "light_text_toggle_collection", + "namespace": "common_toggles" + } + }, + "host_teleport_grid_item/host_option_button": { + "file": "ui/host_options_screen.json", + "type": "button", + "extend": { + "name": "main_dark_button", + "namespace": "host_options" + } + }, + "host_teleport_buttons": { + "file": "ui/host_options_screen.json", + "type": "stack_panel", + "children": [ + "return", + "sub_tab" + ] + }, + "host_teleport_buttons/return": { + "file": "ui/host_options_screen.json", + "type": "button", + "extend": { + "name": "return_from_sub_command_button", + "namespace": "host_options" + } + }, + "host_teleport_buttons/sub_tab": { + "file": "ui/host_options_screen.json", + "type": "panel", + "children": [ + "host_main_grid" + ] + }, + "host_teleport_buttons/sub_tab/host_main_grid": { + "file": "ui/host_options_screen.json", + "type": "grid", + "extend": { + "name": "host_grid", + "namespace": "host_options" + } + }, + "host_teleport_player_list_buttons": { + "file": "ui/host_options_screen.json", + "type": "stack_panel", + "children": [ + "toggle" + ] + }, + "host_teleport_player_list_buttons/toggle": { + "file": "ui/host_options_screen.json", + "type": "panel", + "children": [ + "host_time_panel" + ] + }, + "host_teleport_player_list_buttons/toggle/host_time_panel": { + "file": "ui/host_options_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "host_options" + } + }, + "host_teleport_player_buttons": { + "file": "ui/host_options_screen.json", + "type": "stack_panel", + "extend": { + "name": "host_teleport_player_list_buttons", + "namespace": "host_options" + } + }, + "host_time_buttons": { + "file": "ui/host_options_screen.json", + "type": "stack_panel", + "children": [ + "return", + "sub_tab" + ] + }, + "host_time_buttons/return": { + "file": "ui/host_options_screen.json", + "type": "button", + "extend": { + "name": "return_from_sub_command_button", + "namespace": "host_options" + } + }, + "host_time_buttons/sub_tab": { + "file": "ui/host_options_screen.json", + "type": "panel", + "children": [ + "scrolli_scrolli_ravioli" + ] + }, + "host_time_buttons/sub_tab/scrolli_scrolli_ravioli": { + "file": "ui/host_options_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "host_options" + } + }, + "host_weather_buttons": { + "file": "ui/host_options_screen.json", + "type": "stack_panel", + "children": [ + "return", + "sub_tab" + ] + }, + "host_weather_buttons/return": { + "file": "ui/host_options_screen.json", + "type": "button", + "extend": { + "name": "return_from_sub_command_button", + "namespace": "host_options" + } + }, + "host_weather_buttons/sub_tab": { + "file": "ui/host_options_screen.json", + "type": "panel", + "children": [ + "host_main_grid" + ] + }, + "host_weather_buttons/sub_tab/host_main_grid": { + "file": "ui/host_options_screen.json", + "type": "grid", + "extend": { + "name": "host_grid", + "namespace": "host_options" + } + }, + "host_menu_grid_item": { + "file": "ui/host_options_screen.json", + "type": "panel", + "children": [ + "host_option_banner" + ] + }, + "host_menu_grid_item/host_option_banner": { + "file": "ui/host_options_screen.json", + "type": "button", + "extend": { + "name": "main_light_button", + "namespace": "host_options" + } + }, + "host_main_buttons": { + "file": "ui/host_options_screen.json", + "type": "stack_panel", + "children": [ + "host_main_grid" + ] + }, + "host_main_buttons/host_main_grid": { + "file": "ui/host_options_screen.json", + "type": "grid", + "extend": { + "name": "host_grid", + "namespace": "host_options" + } + }, + "host_panel": { + "file": "ui/host_options_screen.json", + "type": "panel", + "children": [ + "host_main_panel", + "host_teleport_panel", + "host_teleport_player_panel", + "host_time_panel", + "host_weather_panel" + ] + }, + "host_panel/host_main_panel": { + "file": "ui/host_options_screen.json", + "type": "stack_panel", + "extend": { + "name": "host_main_buttons", + "namespace": "host_options" + } + }, + "host_panel/host_teleport_panel": { + "file": "ui/host_options_screen.json", + "type": "stack_panel", + "extend": { + "name": "host_teleport_buttons", + "namespace": "host_options" + } + }, + "host_panel/host_teleport_player_panel": { + "file": "ui/host_options_screen.json", + "type": "stack_panel", + "extend": { + "name": "host_teleport_player_buttons", + "namespace": "host_options" + } + }, + "host_panel/host_time_panel": { + "file": "ui/host_options_screen.json", + "type": "stack_panel", + "extend": { + "name": "host_time_buttons", + "namespace": "host_options" + } + }, + "host_panel/host_weather_panel": { + "file": "ui/host_options_screen.json", + "type": "stack_panel", + "extend": { + "name": "host_weather_buttons", + "namespace": "host_options" + } + } + }, + "bed": { + "in_bed_screen": { + "file": "ui/in_bed_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "in_bed_screen_content": { + "file": "ui/in_bed_screen.json", + "type": "panel", + "children": [ + "wake_up_button_panel", + "wake_up_label_panel", + "select_button" + ] + }, + "in_bed_screen_content/wake_up_button_panel": { + "file": "ui/in_bed_screen.json", + "type": "stack_panel", + "children": [ + "wake_up_button", + "spacer", + "chat_button" + ] + }, + "in_bed_screen_content/wake_up_button_panel/wake_up_button": { + "file": "ui/in_bed_screen.json", + "type": "button", + "extend": { + "name": "light_text_form_fitting_button", + "namespace": "common_buttons" + } + }, + "in_bed_screen_content/wake_up_button_panel/spacer": { + "file": "ui/in_bed_screen.json", + "type": "panel" + }, + "in_bed_screen_content/wake_up_button_panel/chat_button": { + "file": "ui/in_bed_screen.json", + "type": "button", + "extend": { + "name": "light_text_form_fitting_button", + "namespace": "common_buttons" + } + }, + "in_bed_screen_content/wake_up_label_panel": { + "file": "ui/in_bed_screen.json", + "type": "label" + }, + "in_bed_screen_content/select_button": { + "file": "ui/in_bed_screen.json", + "type": "panel", + "extend": { + "name": "a_button_panel", + "namespace": "death" + } + }, + "background": { + "file": "ui/in_bed_screen.json", + "type": "image" + } + }, + "im_reader": { + "reader_button_contents": { + "file": "ui/immersive_reader.json", + "type": "image" + }, + "reader_button": { + "file": "ui/immersive_reader.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "webview": { + "file": "ui/immersive_reader.json", + "type": "custom" + }, + "loading": { + "file": "ui/immersive_reader.json", + "type": "stack_panel", + "children": [ + "animation_item", + "loading_text_item", + "bottom_padding", + "cancel_button" + ] + }, + "loading/animation_item": { + "file": "ui/immersive_reader.json", + "type": "panel", + "extend": { + "name": "vertical_stack_item", + "namespace": "edu_common" + }, + "children": [ + "animation" + ] + }, + "loading/animation_item/animation": { + "file": "ui/immersive_reader.json", + "type": "image", + "extend": { + "name": "edu_loading_animation", + "namespace": "edu_common" + } + }, + "loading/loading_text_item": { + "file": "ui/immersive_reader.json", + "type": "panel", + "extend": { + "name": "vertical_stack_item", + "namespace": "edu_common" + }, + "children": [ + "loading_text" + ] + }, + "loading/loading_text_item/loading_text": { + "file": "ui/immersive_reader.json", + "type": "label" + }, + "loading/bottom_padding": { + "file": "ui/immersive_reader.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "loading/cancel_button": { + "file": "ui/immersive_reader.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "no_retry_error_button": { + "file": "ui/immersive_reader.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "retry_error_buttons": { + "file": "ui/immersive_reader.json", + "type": "stack_panel", + "children": [ + "try_again", + "middle_padding", + "cancel" + ] + }, + "retry_error_buttons/try_again": { + "file": "ui/immersive_reader.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "retry_error_buttons/middle_padding": { + "file": "ui/immersive_reader.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "retry_error_buttons/cancel": { + "file": "ui/immersive_reader.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "error": { + "file": "ui/immersive_reader.json", + "type": "stack_panel", + "children": [ + "error_text", + "error_buttons" + ] + }, + "error/error_text": { + "file": "ui/immersive_reader.json", + "type": "label" + }, + "error/error_buttons": { + "file": "ui/immersive_reader.json", + "type": "panel", + "children": [ + "retry", + "no_retry" + ] + }, + "error/error_buttons/retry": { + "file": "ui/immersive_reader.json", + "type": "stack_panel", + "extend": { + "name": "retry_error_buttons", + "namespace": "im_reader" + } + }, + "error/error_buttons/no_retry": { + "file": "ui/immersive_reader.json", + "type": "button", + "extend": { + "name": "no_retry_error_button", + "namespace": "im_reader" + } + }, + "loading_and_error_panel": { + "file": "ui/immersive_reader.json", + "type": "panel", + "children": [ + "loading", + "error" + ] + }, + "loading_and_error_panel/loading": { + "file": "ui/immersive_reader.json", + "type": "stack_panel", + "extend": { + "name": "loading", + "namespace": "im_reader" + } + }, + "loading_and_error_panel/error": { + "file": "ui/immersive_reader.json", + "type": "stack_panel", + "extend": { + "name": "error", + "namespace": "im_reader" + } + }, + "immersive_reader_screen_content": { + "file": "ui/immersive_reader.json", + "type": "panel", + "children": [ + "loading_and_error", + "webview" + ] + }, + "immersive_reader_screen_content/loading_and_error": { + "file": "ui/immersive_reader.json", + "type": "panel", + "extend": { + "name": "form_fit_screen_with_title_and_close", + "namespace": "popup_dialog" + } + }, + "immersive_reader_screen_content/webview": { + "file": "ui/immersive_reader.json", + "type": "custom", + "extend": { + "name": "webview", + "namespace": "im_reader" + } + }, + "immersive_reader_screen": { + "file": "ui/immersive_reader.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + } + }, + "crafting": { + "inventory_x_gamepad_helper": { + "file": "ui/inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_x_14", + "namespace": "common" + } + }, + "inventory_y_gamepad_helper": { + "file": "ui/inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_y_14", + "namespace": "common" + } + }, + "inventory_a_gamepad_helper": { + "file": "ui/inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_a_14", + "namespace": "common" + } + }, + "inventory_b_gamepad_helper": { + "file": "ui/inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_b_14", + "namespace": "common" + } + }, + "gamepad_helper_left_trigger": { + "file": "ui/inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_left_trigger", + "namespace": "common" + } + }, + "gamepad_helper_right_trigger": { + "file": "ui/inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_right_trigger", + "namespace": "common" + } + }, + "container_gamepad_helpers_second_row": { + "file": "ui/inventory_screen.json", + "type": "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": { + "file": "ui/inventory_screen.json", + "type": "panel" + }, + "container_gamepad_helpers_second_row/left_thumbstick_visibility": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "gamepad_helper_thumbstick_left" + ] + }, + "container_gamepad_helpers_second_row/left_thumbstick_visibility/gamepad_helper_thumbstick_left": { + "file": "ui/inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_thumbstick_left", + "namespace": "common" + } + }, + "container_gamepad_helpers_second_row/fill_panel": { + "file": "ui/inventory_screen.json", + "type": "panel" + }, + "container_gamepad_helpers_second_row/right_thumbstick_visibility": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "gamepad_helper_thumbstick_right" + ] + }, + "container_gamepad_helpers_second_row/right_thumbstick_visibility/gamepad_helper_thumbstick_right": { + "file": "ui/inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_thumbstick_right", + "namespace": "common" + } + }, + "container_gamepad_helpers_second_row/buffer_panel_right": { + "file": "ui/inventory_screen.json", + "type": "panel" + }, + "inventory_container_slot_button": { + "file": "ui/inventory_screen.json", + "type": "button", + "extend": { + "name": "container_slot_button_prototype", + "namespace": "common" + } + }, + "creative_hotbar_container_slot_button": { + "file": "ui/inventory_screen.json", + "type": "button", + "extend": { + "name": "inventory_container_slot_button", + "namespace": "crafting" + } + }, + "no_coalesce_container_slot_button": { + "file": "ui/inventory_screen.json", + "type": "button", + "extend": { + "name": "inventory_container_slot_button", + "namespace": "crafting" + } + }, + "creative_no_coalesce_container_slot_button": { + "file": "ui/inventory_screen.json", + "type": "button", + "extend": { + "name": "no_coalesce_container_slot_button", + "namespace": "crafting" + } + }, + "output_no_coalesce_container_slot_button": { + "file": "ui/inventory_screen.json", + "type": "button", + "extend": { + "name": "no_coalesce_container_slot_button", + "namespace": "crafting" + } + }, + "item_renderer": { + "file": "ui/inventory_screen.json", + "type": "custom" + }, + "equipment_icon": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "tab_icon_image", + "namespace": "common" + } + }, + "construction_icon": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "tab_icon_image", + "namespace": "common" + } + }, + "nature_icon": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "tab_icon_image", + "namespace": "common" + } + }, + "items_icon": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "tab_icon_image", + "namespace": "common" + } + }, + "empty_tab_panel": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "img" + ] + }, + "empty_tab_panel/img": { + "file": "ui/inventory_screen.json", + "type": "unknown" + }, + "top_tab": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "tab_top", + "namespace": "common_tabs" + } + }, + "search_tab": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "crafting" + } + }, + "construction_tab": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "crafting" + } + }, + "equipment_tab": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "crafting" + } + }, + "nature_tab": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "crafting" + } + }, + "items_tab": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "crafting" + } + }, + "tab_navigation_panel_layout": { + "file": "ui/inventory_screen.json", + "type": "stack_panel", + "children": [ + "navigation_tabs" + ] + }, + "tab_navigation_panel_layout/navigation_tabs": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "content" + ] + }, + "tab_navigation_panel_layout/navigation_tabs/content": { + "file": "ui/inventory_screen.json", + "type": "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": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "construction_tab_factory" + ] + }, + "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel/construction_tab_factory": { + "file": "ui/inventory_screen.json", + "type": "factory" + }, + "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "equipment_tab_factory" + ] + }, + "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel/equipment_tab_factory": { + "file": "ui/inventory_screen.json", + "type": "factory" + }, + "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "items_tab_factory" + ] + }, + "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel/items_tab_factory": { + "file": "ui/inventory_screen.json", + "type": "factory" + }, + "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "nature_tab_factory" + ] + }, + "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel/nature_tab_factory": { + "file": "ui/inventory_screen.json", + "type": "factory" + }, + "tab_navigation_panel_layout/navigation_tabs/content/fill_panel_0": { + "file": "ui/inventory_screen.json", + "type": "panel" + }, + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder": { + "file": "ui/inventory_screen.json", + "type": "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": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "search_tab", + "namespace": "crafting" + } + }, + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_creative": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "search_tab", + "namespace": "crafting" + } + }, + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_survival": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "search_tab", + "namespace": "crafting" + } + }, + "tab_content_padding": { + "file": "ui/inventory_screen.json", + "type": "panel" + }, + "creative_label": { + "file": "ui/inventory_screen.json", + "type": "label" + }, + "tab_content": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "tab_content_search_bar_panel", + "nodrop_zone" + ] + }, + "tab_content/tab_content_search_bar_panel": { + "file": "ui/inventory_screen.json", + "type": "stack_panel", + "children": [ + "vertical_padding_1", + "pocket_vertical_padding_1", + "creative_label_and_filter_toggle_holder", + "vertical_padding_2", + "pocket_vertical_padding_2", + "pocket_vertical_padding_3", + "search_and_filter_panel", + "vertical_padding_3", + "vertical_padding_3_1", + "items_panel" + ] + }, + "tab_content/tab_content_search_bar_panel/vertical_padding_1": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "tab_content_padding", + "namespace": "crafting" + } + }, + "tab_content/tab_content_search_bar_panel/pocket_vertical_padding_1": { + "file": "ui/inventory_screen.json", + "type": "panel" + }, + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder": { + "file": "ui/inventory_screen.json", + "type": "stack_panel", + "children": [ + "padding_1", + "creative_label", + "padding_2", + "filter_toggle_holder", + "pocket_horizontal_padding_1" + ] + }, + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_1": { + "file": "ui/inventory_screen.json", + "type": "panel" + }, + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/creative_label": { + "file": "ui/inventory_screen.json", + "type": "label", + "extend": { + "name": "creative_label", + "namespace": "crafting" + } + }, + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_2": { + "file": "ui/inventory_screen.json", + "type": "panel" + }, + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "filter_toggle" + ] + }, + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder/filter_toggle": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "filter_toggle", + "namespace": "crafting" + } + }, + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/pocket_horizontal_padding_1": { + "file": "ui/inventory_screen.json", + "type": "panel" + }, + "tab_content/tab_content_search_bar_panel/vertical_padding_2": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "tab_content_padding", + "namespace": "crafting" + } + }, + "tab_content/tab_content_search_bar_panel/pocket_vertical_padding_2": { + "file": "ui/inventory_screen.json", + "type": "panel" + }, + "tab_content/tab_content_search_bar_panel/pocket_vertical_padding_3": { + "file": "ui/inventory_screen.json", + "type": "panel" + }, + "tab_content/tab_content_search_bar_panel/search_and_filter_panel": { + "file": "ui/inventory_screen.json", + "type": "stack_panel", + "children": [ + "text_edit_control", + "padding_1", + "filter_toggle_holder", + "pocket_horizontal_padding_1" + ] + }, + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/text_edit_control": { + "file": "ui/inventory_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/padding_1": { + "file": "ui/inventory_screen.json", + "type": "panel" + }, + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "filter_toggle" + ] + }, + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder/filter_toggle": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "filter_toggle", + "namespace": "crafting" + } + }, + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/pocket_horizontal_padding_1": { + "file": "ui/inventory_screen.json", + "type": "panel" + }, + "tab_content/tab_content_search_bar_panel/vertical_padding_3": { + "file": "ui/inventory_screen.json", + "type": "panel" + }, + "tab_content/tab_content_search_bar_panel/vertical_padding_3_1": { + "file": "ui/inventory_screen.json", + "type": "panel" + }, + "tab_content/tab_content_search_bar_panel/items_panel": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "scroll_pane", + "shadow_stack" + ] + }, + "tab_content/tab_content_search_bar_panel/items_panel/scroll_pane": { + "file": "ui/inventory_screen.json", + "type": "unknown" + }, + "tab_content/tab_content_search_bar_panel/items_panel/shadow_stack": { + "file": "ui/inventory_screen.json", + "type": "stack_panel", + "children": [ + "shadow_container", + "shadow_cutter" + ] + }, + "tab_content/tab_content_search_bar_panel/items_panel/shadow_stack/shadow_container": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "top_shadow", + "top_overlay" + ] + }, + "tab_content/tab_content_search_bar_panel/items_panel/shadow_stack/shadow_container/top_shadow": { + "file": "ui/inventory_screen.json", + "type": "image" + }, + "tab_content/tab_content_search_bar_panel/items_panel/shadow_stack/shadow_container/top_overlay": { + "file": "ui/inventory_screen.json", + "type": "image" + }, + "tab_content/tab_content_search_bar_panel/items_panel/shadow_stack/shadow_cutter": { + "file": "ui/inventory_screen.json", + "type": "panel" + }, + "tab_content/nodrop_zone": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + } + }, + "armor_overlay": { + "file": "ui/inventory_screen.json", + "type": "image" + }, + "offhand_overlay": { + "file": "ui/inventory_screen.json", + "type": "image" + }, + "armor_overlay_helmet": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "armor_overlay", + "namespace": "crafting" + } + }, + "armor_overlay_chest": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "armor_overlay", + "namespace": "crafting" + } + }, + "armor_overlay_legs": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "armor_overlay", + "namespace": "crafting" + } + }, + "armor_image_feet": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "armor_overlay", + "namespace": "crafting" + } + }, + "armor_overlay_shield": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "offhand_overlay", + "namespace": "crafting" + } + }, + "player_armor_panel": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "player_bg", + "player_preview_border", + "armor_grid", + "offhand_grid" + ] + }, + "player_armor_panel/player_bg": { + "file": "ui/inventory_screen.json", + "type": "image", + "children": [ + "player_renderer_panel" + ] + }, + "player_armor_panel/player_bg/player_renderer_panel": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "player_renderer" + ] + }, + "player_armor_panel/player_bg/player_renderer_panel/player_renderer": { + "file": "ui/inventory_screen.json", + "type": "custom" + }, + "player_armor_panel/player_preview_border": { + "file": "ui/inventory_screen.json", + "type": "image" + }, + "player_armor_panel/armor_grid": { + "file": "ui/inventory_screen.json", + "type": "grid", + "children": [ + "head_grid_item", + "chest_grid_item", + "legs_grid_item", + "feet_grid_item" + ] + }, + "player_armor_panel/armor_grid/head_grid_item": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "player_armor_panel/armor_grid/chest_grid_item": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "player_armor_panel/armor_grid/legs_grid_item": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "player_armor_panel/armor_grid/feet_grid_item": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "player_armor_panel/offhand_grid": { + "file": "ui/inventory_screen.json", + "type": "grid", + "children": [ + "offhand_grid_item" + ] + }, + "player_armor_panel/offhand_grid/offhand_grid_item": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "crafting_label": { + "file": "ui/inventory_screen.json", + "type": "label" + }, + "inventory_label": { + "file": "ui/inventory_screen.json", + "type": "label" + }, + "crafting_arrow": { + "file": "ui/inventory_screen.json", + "type": "image" + }, + "crafting_arrow_large": { + "file": "ui/inventory_screen.json", + "type": "image" + }, + "crafting_input_grid_item": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "inventory_container_item", + "namespace": "crafting" + } + }, + "crafting_grid_3x3": { + "file": "ui/inventory_screen.json", + "type": "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": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "crafting_input_grid_item", + "namespace": "crafting" + } + }, + "crafting_grid_3x3/crafting_input_item_top_mid": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "crafting_input_grid_item", + "namespace": "crafting" + } + }, + "crafting_grid_3x3/crafting_input_item_top_right": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "crafting_input_grid_item", + "namespace": "crafting" + } + }, + "crafting_grid_3x3/crafting_input_item_mid_left": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "crafting_input_grid_item", + "namespace": "crafting" + } + }, + "crafting_grid_3x3/crafting_input_item_middle": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "crafting_input_grid_item", + "namespace": "crafting" + } + }, + "crafting_grid_3x3/crafting_input_item_mid_right": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "crafting_input_grid_item", + "namespace": "crafting" + } + }, + "crafting_grid_3x3/crafting_input_item_bot_left": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "crafting_input_grid_item", + "namespace": "crafting" + } + }, + "crafting_grid_3x3/crafting_input_item_bot_mid": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "crafting_input_grid_item", + "namespace": "crafting" + } + }, + "crafting_grid_3x3/crafting_input_item_bot_right": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "crafting_input_grid_item", + "namespace": "crafting" + } + }, + "crafting_grid_2x2": { + "file": "ui/inventory_screen.json", + "type": "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": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "crafting_input_grid_item", + "namespace": "crafting" + } + }, + "crafting_grid_2x2/crafting_input_item_top_right": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "crafting_input_grid_item", + "namespace": "crafting" + } + }, + "crafting_grid_2x2/crafting_input_item_bot_left": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "crafting_input_grid_item", + "namespace": "crafting" + } + }, + "crafting_grid_2x2/crafting_input_item_bot_right": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "crafting_input_grid_item", + "namespace": "crafting" + } + }, + "output_grid_3x3": { + "file": "ui/inventory_screen.json", + "type": "grid", + "children": [ + "work_bench_output" + ] + }, + "output_grid_3x3/work_bench_output": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "inventory_container_item", + "namespace": "crafting" + } + }, + "output_grid_2x2": { + "file": "ui/inventory_screen.json", + "type": "grid", + "children": [ + "work_bench_output" + ] + }, + "output_grid_2x2/work_bench_output": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "inventory_container_item", + "namespace": "crafting" + } + }, + "work_bench_panel_3x3": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "inventory_label", + "crafting_arrow_large", + "crafting_grid_3x3_with_label_0", + "work_bench_output_grid" + ] + }, + "work_bench_panel_3x3/inventory_label": { + "file": "ui/inventory_screen.json", + "type": "label", + "extend": { + "name": "inventory_label", + "namespace": "crafting" + } + }, + "work_bench_panel_3x3/crafting_arrow_large": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "crafting_arrow_large", + "namespace": "crafting" + } + }, + "work_bench_panel_3x3/crafting_grid_3x3_with_label_0": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "crafting_grid_3x3_with_label", + "namespace": "crafting" + } + }, + "work_bench_panel_3x3/work_bench_output_grid": { + "file": "ui/inventory_screen.json", + "type": "grid", + "extend": { + "name": "output_grid_3x3", + "namespace": "crafting" + } + }, + "crafting_grid_3x3_with_label": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "crafting_label", + "crafting_grid_3x3" + ] + }, + "crafting_grid_3x3_with_label/crafting_label": { + "file": "ui/inventory_screen.json", + "type": "label", + "extend": { + "name": "crafting_label", + "namespace": "crafting" + } + }, + "crafting_grid_3x3_with_label/crafting_grid_3x3": { + "file": "ui/inventory_screen.json", + "type": "grid", + "extend": { + "name": "crafting_grid_3x3", + "namespace": "crafting" + } + }, + "crafting_grid_2x2_with_label": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "crafting_label", + "crafting_grid_2x2" + ] + }, + "crafting_grid_2x2_with_label/crafting_label": { + "file": "ui/inventory_screen.json", + "type": "label", + "extend": { + "name": "crafting_label", + "namespace": "crafting" + } + }, + "crafting_grid_2x2_with_label/crafting_grid_2x2": { + "file": "ui/inventory_screen.json", + "type": "grid", + "extend": { + "name": "crafting_grid_2x2", + "namespace": "crafting" + } + }, + "crafting_panel_2x2": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "crafting_arrow", + "crafting_table", + "crafting_grid_2x2", + "survival_crafting_output_grid" + ] + }, + "crafting_panel_2x2/crafting_arrow": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "crafting_arrow", + "namespace": "crafting" + } + }, + "crafting_panel_2x2/crafting_table": { + "file": "ui/inventory_screen.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "crafting" + } + }, + "crafting_panel_2x2/crafting_grid_2x2": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "crafting_grid_2x2_with_label", + "namespace": "crafting" + } + }, + "crafting_panel_2x2/survival_crafting_output_grid": { + "file": "ui/inventory_screen.json", + "type": "grid", + "extend": { + "name": "output_grid_2x2", + "namespace": "crafting" + } + }, + "survival_panel_top_half": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "player_armor_panel", + "crafting_panel" + ] + }, + "survival_panel_top_half/player_armor_panel": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "player_armor_panel", + "namespace": "crafting" + } + }, + "survival_panel_top_half/crafting_panel": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "crafting_panel_2x2", + "namespace": "crafting" + } + }, + "crafting_panel_top_half": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "crafting_panel" + ] + }, + "crafting_panel_top_half/crafting_panel": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "work_bench_panel_3x3", + "namespace": "crafting" + } + }, + "recipe_container_cell_images": { + "file": "ui/inventory_screen.json", + "type": "image" + }, + "cell_image_recipe_default": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "cell_image", + "namespace": "crafting" + } + }, + "cell_image_recipe_group_head_collapsed": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "cell_image", + "namespace": "crafting" + } + }, + "cell_image_recipe_group_head_expanded": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "cell_image", + "namespace": "crafting" + } + }, + "cell_image_recipe_group_item": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "cell_image", + "namespace": "crafting" + } + }, + "cell_image_recipe_selected": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "cell_image", + "namespace": "crafting" + } + }, + "cell_image_recipe_default_red": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "cell_image", + "namespace": "crafting" + } + }, + "container_cell_images": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "cell_classic", + "cell_normal", + "cell_invert", + "cell_red", + "cell_selected", + "cell_darkgrey" + ] + }, + "container_cell_images/cell_classic": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "cell_image_classic", + "namespace": "crafting" + } + }, + "container_cell_images/cell_normal": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "cell_image_normal", + "namespace": "crafting" + } + }, + "container_cell_images/cell_invert": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "cell_image_invert", + "namespace": "crafting" + } + }, + "container_cell_images/cell_red": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "cell_image_red", + "namespace": "crafting" + } + }, + "container_cell_images/cell_selected": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "cell_image_selected", + "namespace": "crafting" + } + }, + "container_cell_images/cell_darkgrey": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "cell_image_darkgrey", + "namespace": "crafting" + } + }, + "crafting_container_cell_images": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "container_cell_images", + "namespace": "crafting" + } + }, + "cell_image": { + "file": "ui/inventory_screen.json", + "type": "image" + }, + "cell_image_classic": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "cell_image", + "namespace": "crafting" + } + }, + "cell_image_normal": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "cell_image", + "namespace": "crafting" + } + }, + "cell_image_invert": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "cell_image", + "namespace": "crafting" + } + }, + "cell_image_red": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "cell_image", + "namespace": "crafting" + } + }, + "cell_image_selected": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "cell_image", + "namespace": "common" + } + }, + "cell_image_darkgrey": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "cell_image", + "namespace": "crafting" + } + }, + "container_overlay_images": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "expand", + "contract" + ] + }, + "container_overlay_images/expand": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "item_overlay_expand", + "namespace": "crafting" + } + }, + "container_overlay_images/contract": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "item_overlay_contract", + "namespace": "crafting" + } + }, + "item_overlay_image": { + "file": "ui/inventory_screen.json", + "type": "image" + }, + "item_overlay_contract": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "item_overlay_image", + "namespace": "crafting" + } + }, + "item_overlay_expand": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "item_overlay_image", + "namespace": "crafting" + } + }, + "inventory_container_item": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + }, + "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": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "item", + "durability_bar", + "storage_bar" + ] + }, + "inventory_container_item/item_cell/item": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "stack_count_label" + ] + }, + "inventory_container_item/item_cell/item/stack_count_label": { + "file": "ui/inventory_screen.json", + "type": "label", + "extend": { + "name": "stack_count_label", + "namespace": "common" + } + }, + "inventory_container_item/item_cell/durability_bar": { + "file": "ui/inventory_screen.json", + "type": "custom", + "extend": { + "name": "durability_bar", + "namespace": "common" + } + }, + "inventory_container_item/item_cell/storage_bar": { + "file": "ui/inventory_screen.json", + "type": "custom", + "extend": { + "name": "storage_bar", + "namespace": "common" + } + }, + "inventory_container_item/item_cell_overlay_ref": { + "file": "ui/inventory_screen.json", + "type": "unknown" + }, + "inventory_container_item/item_selected_image": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "slot_selected", + "namespace": "common" + } + }, + "inventory_container_item/item_button_ref": { + "file": "ui/inventory_screen.json", + "type": "unknown" + }, + "inventory_container_item/container_item_lock_overlay": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "container_item_lock_overlay", + "namespace": "common" + } + }, + "inventory_container_item/item_lock_cell_image": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "item_lock_cell_image", + "namespace": "common" + } + }, + "inventory_container_item/bundle_slot_panel": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "bundle_slot_panel", + "namespace": "gameplay" + } + }, + "grid_item_for_recipe_book": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "inventory_container_item", + "namespace": "crafting" + } + }, + "scroll_grid": { + "file": "ui/inventory_screen.json", + "type": "grid" + }, + "scroll_grid_panel": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "crafting_root_input_panel", + "namespace": "common" + }, + "children": [ + "grid" + ] + }, + "scroll_grid_panel/grid": { + "file": "ui/inventory_screen.json", + "type": "grid", + "extend": { + "name": "scroll_grid", + "namespace": "crafting" + } + }, + "recipe_book_scroll_panel": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "scroll_panel", + "namespace": "crafting" + } + }, + "scroll_panel": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "container_scroll_panel", + "namespace": "common" + } + }, + "filter_toggle": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "switch_toggle", + "namespace": "common_toggles" + } + }, + "player_inventory": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "common_panel", + "inventory_panel_top_half", + "inventory_panel_bottom_half", + "hotbar_grid" + ] + }, + "player_inventory/common_panel": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "player_inventory/inventory_panel_top_half": { + "file": "ui/inventory_screen.json", + "type": "unknown" + }, + "player_inventory/inventory_panel_bottom_half": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "inventory_panel_bottom_half", + "namespace": "common" + } + }, + "player_inventory/hotbar_grid": { + "file": "ui/inventory_screen.json", + "type": "grid", + "extend": { + "name": "hotbar_grid_template", + "namespace": "common" + } + }, + "recipe_book": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "gamepad_helper_bumpers", + "tab_navigation_panel", + "bg", + "tab_content_panel", + "creative_hotbar_panel" + ] + }, + "recipe_book/gamepad_helper_bumpers": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "gamepad_helper_bumpers", + "namespace": "common" + } + }, + "recipe_book/tab_navigation_panel": { + "file": "ui/inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "tab_navigation_panel_layout", + "namespace": "crafting" + } + }, + "recipe_book/bg": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "recipe_book/tab_content_panel": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "tab_content", + "namespace": "crafting" + } + }, + "recipe_book/creative_hotbar_panel": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "creative_hotbar_panel", + "namespace": "crafting" + } + }, + "creative_hotbar_panel": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "creative_hotbar_background" + ] + }, + "creative_hotbar_panel/creative_hotbar_background": { + "file": "ui/inventory_screen.json", + "type": "image", + "children": [ + "hotbar_grid" + ] + }, + "creative_hotbar_panel/creative_hotbar_background/hotbar_grid": { + "file": "ui/inventory_screen.json", + "type": "grid", + "extend": { + "name": "hotbar_grid_template", + "namespace": "common" + } + }, + "toolbar_panel": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "crafting_root_input_panel", + "namespace": "common" + }, + "children": [ + "toolbar_background" + ] + }, + "toolbar_panel/toolbar_background": { + "file": "ui/inventory_screen.json", + "type": "image", + "extend": { + "name": "toolbar_background_image", + "namespace": "common" + }, + "children": [ + "toolbar_stack_panel" + ] + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel": { + "file": "ui/inventory_screen.json", + "type": "stack_panel", + "children": [ + "left_trigger_anchor", + "padding_0", + "creative_layout_toggle_panel", + "padding_1", + "recipe_book_layout_toggle_panel", + "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": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "gamepad_helper_left_trigger" + ] + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor/gamepad_helper_left_trigger": { + "file": "ui/inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_left_trigger", + "namespace": "common" + } + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_0": { + "file": "ui/inventory_screen.json", + "type": "panel" + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "creative_layout_toggle" + ] + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel/creative_layout_toggle": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "creative_layout_toggle", + "namespace": "common" + } + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": { + "file": "ui/inventory_screen.json", + "type": "panel" + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "recipe_book_layout_toggle" + ] + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel/recipe_book_layout_toggle": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "recipe_book_layout_toggle", + "namespace": "common" + } + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": { + "file": "ui/inventory_screen.json", + "type": "panel" + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "survival_layout_toggle" + ] + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel/survival_layout_toggle": { + "file": "ui/inventory_screen.json", + "type": "panel", + "extend": { + "name": "survival_layout_toggle", + "namespace": "common" + } + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_3": { + "file": "ui/inventory_screen.json", + "type": "panel" + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "help_button" + ] + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": { + "file": "ui/inventory_screen.json", + "type": "button", + "extend": { + "name": "help_button", + "namespace": "common" + } + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "close_button" + ] + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": { + "file": "ui/inventory_screen.json", + "type": "button", + "extend": { + "name": "light_close_button", + "namespace": "common" + } + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_4": { + "file": "ui/inventory_screen.json", + "type": "panel" + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "gamepad_helper_right_trigger" + ] + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor/gamepad_helper_right_trigger": { + "file": "ui/inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_right_trigger", + "namespace": "common" + } + }, + "inventory_screen_base": { + "file": "ui/inventory_screen.json", + "type": "screen", + "extend": { + "name": "inventory_screen_common", + "namespace": "common" + } + }, + "crafting_screen": { + "file": "ui/inventory_screen.json", + "type": "screen", + "extend": { + "name": "inventory_screen_base", + "namespace": "crafting" + } + }, + "inventory_screen": { + "file": "ui/inventory_screen.json", + "type": "screen", + "extend": { + "name": "inventory_screen_base", + "namespace": "crafting" + } + }, + "recipe_inventory_screen_content": { + "file": "ui/inventory_screen.json", + "type": "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": { + "file": "ui/inventory_screen.json", + "type": "stack_panel", + "children": [ + "recipe_book", + "center_fold", + "survival_padding", + "player_inventory", + "toolbar_anchor" + ] + }, + "recipe_inventory_screen_content/content_stack_panel/recipe_book": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "recipe_book", + "namespace": "crafting" + } + }, + "recipe_inventory_screen_content/content_stack_panel/center_fold": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "center_fold", + "namespace": "common" + } + }, + "recipe_inventory_screen_content/content_stack_panel/survival_padding": { + "file": "ui/inventory_screen.json", + "type": "panel" + }, + "recipe_inventory_screen_content/content_stack_panel/player_inventory": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "player_inventory", + "namespace": "crafting" + } + }, + "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor": { + "file": "ui/inventory_screen.json", + "type": "panel", + "children": [ + "toolbar_panel" + ] + }, + "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor/toolbar_panel": { + "file": "ui/inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "toolbar_panel", + "namespace": "crafting" + } + }, + "recipe_inventory_screen_content/inventory_take_progress_icon_button": { + "file": "ui/inventory_screen.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "recipe_inventory_screen_content/inventory_selected_icon_button": { + "file": "ui/inventory_screen.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "recipe_inventory_screen_content/hold_icon": { + "file": "ui/inventory_screen.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel": { + "file": "ui/inventory_screen.json", + "type": "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": { + "file": "ui/inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers_second_row", + "namespace": "crafting" + } + }, + "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers": { + "file": "ui/inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "recipe_inventory_screen_content/selected_item_details_factory": { + "file": "ui/inventory_screen.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "recipe_inventory_screen_content/item_lock_notification_factory": { + "file": "ui/inventory_screen.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "recipe_inventory_screen_content/flying_item_renderer": { + "file": "ui/inventory_screen.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + } + }, + "crafting_pocket": { + "survival_icon": { + "file": "ui/inventory_screen_pocket.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "crafting" + } + }, + "full_screen_icon": { + "file": "ui/inventory_screen_pocket.json", + "type": "image", + "extend": { + "name": "tab_icon_image", + "namespace": "common" + } + }, + "crafting_icon": { + "file": "ui/inventory_screen_pocket.json", + "type": "image", + "extend": { + "name": "tab_icon_image", + "namespace": "common" + } + }, + "armor_icon": { + "file": "ui/inventory_screen_pocket.json", + "type": "image", + "extend": { + "name": "tab_icon_image", + "namespace": "common" + } + }, + "crafting_arrow_down": { + "file": "ui/inventory_screen_pocket.json", + "type": "image" + }, + "empty_tab_panel": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel" + }, + "left_tab": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "tab_left", + "namespace": "common_tabs" + } + }, + "right_tab": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "tab_right", + "namespace": "common_tabs" + } + }, + "full_screen_tab": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "right_tab", + "namespace": "crafting_pocket" + } + }, + "crafting_tab": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "right_tab", + "namespace": "crafting_pocket" + } + }, + "armor_tab": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "right_tab", + "namespace": "crafting_pocket" + } + }, + "search_tab": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "left_tab", + "namespace": "crafting_pocket" + } + }, + "construction_tab": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "left_tab", + "namespace": "crafting_pocket" + } + }, + "equipment_tab": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "left_tab", + "namespace": "crafting_pocket" + } + }, + "items_tab": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "left_tab", + "namespace": "crafting_pocket" + } + }, + "nature_tab": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "left_tab", + "namespace": "crafting_pocket" + } + }, + "inventory_tab": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "left_tab", + "namespace": "crafting_pocket" + } + }, + "left_tab_navigation_panel_pocket": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "children": [ + "content" + ] + }, + "left_tab_navigation_panel_pocket/content": { + "file": "ui/inventory_screen_pocket.json", + "type": "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": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "children": [ + "search_tab" + ] + }, + "left_tab_navigation_panel_pocket/content/search_tab_panel/search_tab": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "search_tab", + "namespace": "crafting_pocket" + } + }, + "left_tab_navigation_panel_pocket/content/construction_tab_panel": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "children": [ + "construction_tab_factory" + ] + }, + "left_tab_navigation_panel_pocket/content/construction_tab_panel/construction_tab_factory": { + "file": "ui/inventory_screen_pocket.json", + "type": "factory" + }, + "left_tab_navigation_panel_pocket/content/equipment_tab_panel": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "children": [ + "equipment_tab_factory" + ] + }, + "left_tab_navigation_panel_pocket/content/equipment_tab_panel/equipment_tab_factory": { + "file": "ui/inventory_screen_pocket.json", + "type": "factory" + }, + "left_tab_navigation_panel_pocket/content/items_tab_panel": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "children": [ + "items_tab_factory" + ] + }, + "left_tab_navigation_panel_pocket/content/items_tab_panel/items_tab_factory": { + "file": "ui/inventory_screen_pocket.json", + "type": "factory" + }, + "left_tab_navigation_panel_pocket/content/nature_tab_panel": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "children": [ + "nature_tab_factory" + ] + }, + "left_tab_navigation_panel_pocket/content/nature_tab_panel/nature_tab_factory": { + "file": "ui/inventory_screen_pocket.json", + "type": "factory" + }, + "left_tab_navigation_panel_pocket/content/fill": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel" + }, + "left_tab_navigation_panel_pocket/content/inventory_tab": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "inventory_tab", + "namespace": "crafting_pocket" + } + }, + "right_tab_navigation_panel_pocket": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "children": [ + "content" + ] + }, + "right_tab_navigation_panel_pocket/content": { + "file": "ui/inventory_screen_pocket.json", + "type": "stack_panel", + "children": [ + "close", + "fill", + "full_screen_tab", + "crafting_tab", + "armor_tab" + ] + }, + "right_tab_navigation_panel_pocket/content/close": { + "file": "ui/inventory_screen_pocket.json", + "type": "image", + "children": [ + "nodrop_zone", + "close_button" + ] + }, + "right_tab_navigation_panel_pocket/content/close/nodrop_zone": { + "file": "ui/inventory_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + } + }, + "right_tab_navigation_panel_pocket/content/close/close_button": { + "file": "ui/inventory_screen_pocket.json", + "type": "button", + "extend": { + "name": "light_close_button", + "namespace": "common" + } + }, + "right_tab_navigation_panel_pocket/content/fill": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel" + }, + "right_tab_navigation_panel_pocket/content/full_screen_tab": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "full_screen_tab", + "namespace": "crafting_pocket" + } + }, + "right_tab_navigation_panel_pocket/content/crafting_tab": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "crafting_tab", + "namespace": "crafting_pocket" + } + }, + "right_tab_navigation_panel_pocket/content/armor_tab": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "armor_tab", + "namespace": "crafting_pocket" + } + }, + "recipe_book_tab_content": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "tab_content", + "namespace": "crafting" + } + }, + "inventory_tab_content": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "tab_content", + "namespace": "crafting" + } + }, + "right_tab_content": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "children": [ + "bg", + "content" + ] + }, + "right_tab_content/bg": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "right_tab_content/content": { + "file": "ui/inventory_screen_pocket.json", + "type": "unknown" + }, + "crafting_input_grid_item": { + "file": "ui/inventory_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "inventory_container_item", + "namespace": "crafting" + } + }, + "crafting_grid_3x3": { + "file": "ui/inventory_screen_pocket.json", + "type": "grid" + }, + "crafting_grid_2x2": { + "file": "ui/inventory_screen_pocket.json", + "type": "grid" + }, + "output_grid_and_label": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "children": [ + "recipe_item_label", + "output_grid" + ] + }, + "output_grid_and_label/recipe_item_label": { + "file": "ui/inventory_screen_pocket.json", + "type": "label" + }, + "output_grid_and_label/output_grid": { + "file": "ui/inventory_screen_pocket.json", + "type": "grid", + "extend": { + "name": "output_grid", + "namespace": "crafting_pocket" + } + }, + "output_grid": { + "file": "ui/inventory_screen_pocket.json", + "type": "grid", + "children": [ + "work_bench_output" + ] + }, + "output_grid/work_bench_output": { + "file": "ui/inventory_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "inventory_container_item", + "namespace": "crafting" + } + }, + "crafting_grid_3x3_with_label": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "children": [ + "crafting_label", + "crafting_grid_3x3" + ] + }, + "crafting_grid_3x3_with_label/crafting_label": { + "file": "ui/inventory_screen_pocket.json", + "type": "label", + "extend": { + "name": "crafting_label", + "namespace": "crafting" + } + }, + "crafting_grid_3x3_with_label/crafting_grid_3x3": { + "file": "ui/inventory_screen_pocket.json", + "type": "grid", + "extend": { + "name": "crafting_grid_3x3", + "namespace": "crafting_pocket" + } + }, + "crafting_grid_2x2_with_label": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "children": [ + "crafting_label", + "crafting_grid_2x2" + ] + }, + "crafting_grid_2x2_with_label/crafting_label": { + "file": "ui/inventory_screen_pocket.json", + "type": "label", + "extend": { + "name": "crafting_label", + "namespace": "crafting" + } + }, + "crafting_grid_2x2_with_label/crafting_grid_2x2": { + "file": "ui/inventory_screen_pocket.json", + "type": "grid", + "extend": { + "name": "crafting_grid_2x2", + "namespace": "crafting_pocket" + } + }, + "scroll_background_image": { + "file": "ui/inventory_screen_pocket.json", + "type": "image" + }, + "grid_item_for_inventory": { + "file": "ui/inventory_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "grid_item_for_inventory", + "namespace": "common" + } + }, + "survival_inventory_grid": { + "file": "ui/inventory_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "scroll_grid_panel", + "namespace": "crafting" + } + }, + "scroll_panel_pocket": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "scroll_panel", + "namespace": "crafting" + } + }, + "recipe_book_scroll_panel_pocket": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "scroll_panel_pocket", + "namespace": "crafting_pocket" + } + }, + "survival_scroll_panel": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "scroll_panel_pocket", + "namespace": "crafting_pocket" + } + }, + "pocket_armor_tab_content": { + "file": "ui/inventory_screen_pocket.json", + "type": "stack_panel", + "children": [ + "label_and_renderer", + "equipment_and_renderer" + ] + }, + "pocket_armor_tab_content/label_and_renderer": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "children": [ + "label_panel", + "renderer_panel" + ] + }, + "pocket_armor_tab_content/label_and_renderer/label_panel": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "children": [ + "armor_label" + ] + }, + "pocket_armor_tab_content/label_and_renderer/label_panel/armor_label": { + "file": "ui/inventory_screen_pocket.json", + "type": "label" + }, + "pocket_armor_tab_content/label_and_renderer/renderer_panel": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "children": [ + "armor_renderer" + ] + }, + "pocket_armor_tab_content/label_and_renderer/renderer_panel/armor_renderer": { + "file": "ui/inventory_screen_pocket.json", + "type": "custom" + }, + "pocket_armor_tab_content/equipment_and_renderer": { + "file": "ui/inventory_screen_pocket.json", + "type": "stack_panel", + "children": [ + "equipment", + "armor_panel" + ] + }, + "pocket_armor_tab_content/equipment_and_renderer/equipment": { + "file": "ui/inventory_screen_pocket.json", + "type": "stack_panel", + "children": [ + "armor_grid", + "offhand_grid" + ] + }, + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid": { + "file": "ui/inventory_screen_pocket.json", + "type": "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": { + "file": "ui/inventory_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_container_item", + "namespace": "common" + } + }, + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/chest_grid_item": { + "file": "ui/inventory_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_container_item", + "namespace": "common" + } + }, + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/legs_grid_item": { + "file": "ui/inventory_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_container_item", + "namespace": "common" + } + }, + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/feet_grid_item": { + "file": "ui/inventory_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_container_item", + "namespace": "common" + } + }, + "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid": { + "file": "ui/inventory_screen_pocket.json", + "type": "grid", + "children": [ + "offhand_grid_item" + ] + }, + "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid/offhand_grid_item": { + "file": "ui/inventory_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_container_item", + "namespace": "common" + } + }, + "pocket_armor_tab_content/equipment_and_renderer/armor_panel": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "children": [ + "armor_and_player" + ] + }, + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "children": [ + "player_preview_border" + ] + }, + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border": { + "file": "ui/inventory_screen_pocket.json", + "type": "image", + "children": [ + "player_bg" + ] + }, + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg": { + "file": "ui/inventory_screen_pocket.json", + "type": "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": { + "file": "ui/inventory_screen_pocket.json", + "type": "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": { + "file": "ui/inventory_screen_pocket.json", + "type": "custom" + }, + "hotbar_panel": { + "file": "ui/inventory_screen_pocket.json", + "type": "input_panel", + "children": [ + "bg", + "hotbar_grid" + ] + }, + "hotbar_panel/bg": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "hotbar_panel/hotbar_grid": { + "file": "ui/inventory_screen_pocket.json", + "type": "grid" + }, + "hotbar_grid_item": { + "file": "ui/inventory_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_container_item", + "namespace": "common" + } + }, + "survival_panel_pocket": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "children": [ + "crafting_panel", + "crafting_arrow_down", + "crafting_table", + "output" + ] + }, + "survival_panel_pocket/crafting_panel": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "crafting_grid_2x2_with_label", + "namespace": "crafting_pocket" + } + }, + "survival_panel_pocket/crafting_arrow_down": { + "file": "ui/inventory_screen_pocket.json", + "type": "image", + "extend": { + "name": "crafting_arrow_down", + "namespace": "crafting_pocket" + } + }, + "survival_panel_pocket/crafting_table": { + "file": "ui/inventory_screen_pocket.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "crafting" + } + }, + "survival_panel_pocket/output": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "output_grid_and_label", + "namespace": "crafting_pocket" + } + }, + "survival_panel_crafting_pocket": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "children": [ + "crafting_panel", + "crafting_arrow_down", + "output" + ] + }, + "survival_panel_crafting_pocket/crafting_panel": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "crafting_grid_3x3_with_label", + "namespace": "crafting_pocket" + } + }, + "survival_panel_crafting_pocket/crafting_arrow_down": { + "file": "ui/inventory_screen_pocket.json", + "type": "image", + "extend": { + "name": "crafting_arrow_down", + "namespace": "crafting_pocket" + } + }, + "survival_panel_crafting_pocket/output": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "output_grid_and_label", + "namespace": "crafting_pocket" + } + }, + "inventory_screen_pocket_base": { + "file": "ui/inventory_screen_pocket.json", + "type": "screen", + "extend": { + "name": "inventory_screen_common", + "namespace": "common" + } + }, + "crafting_screen_pocket": { + "file": "ui/inventory_screen_pocket.json", + "type": "screen", + "extend": { + "name": "inventory_screen_pocket_base", + "namespace": "crafting_pocket" + } + }, + "inventory_screen_pocket": { + "file": "ui/inventory_screen_pocket.json", + "type": "screen", + "extend": { + "name": "inventory_screen_pocket_base", + "namespace": "crafting_pocket" + } + }, + "left_panel": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "children": [ + "left_background", + "recipe_book_tab_content", + "inventory_tab_content" + ] + }, + "left_panel/left_background": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "left_panel/recipe_book_tab_content": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "recipe_book_tab_content", + "namespace": "crafting_pocket" + } + }, + "left_panel/inventory_tab_content": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "inventory_tab_content", + "namespace": "crafting_pocket" + } + }, + "right_panel": { + "file": "ui/inventory_screen_pocket.json", + "type": "input_panel", + "children": [ + "right_background", + "help_button", + "crafting_tab_content", + "armor_tab_content" + ] + }, + "right_panel/right_background": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "right_panel/help_button": { + "file": "ui/inventory_screen_pocket.json", + "type": "button", + "extend": { + "name": "help_button", + "namespace": "common" + } + }, + "right_panel/crafting_tab_content": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "right_tab_content", + "namespace": "crafting_pocket" + } + }, + "right_panel/armor_tab_content": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "right_tab_content", + "namespace": "crafting_pocket" + } + }, + "both_panels": { + "file": "ui/inventory_screen_pocket.json", + "type": "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": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "left_tab_navigation_panel_pocket", + "namespace": "crafting_pocket" + } + }, + "both_panels/left_panel": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "left_panel", + "namespace": "crafting_pocket" + } + }, + "both_panels/offset_panel": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "children": [ + "center_bg" + ] + }, + "both_panels/offset_panel/center_bg": { + "file": "ui/inventory_screen_pocket.json", + "type": "image" + }, + "both_panels/right_panel": { + "file": "ui/inventory_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "right_panel", + "namespace": "crafting_pocket" + } + }, + "both_panels/right_tab_navigation_panel_pocket": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "right_tab_navigation_panel_pocket", + "namespace": "crafting_pocket" + } + }, + "gamepad_helper_border": { + "file": "ui/inventory_screen_pocket.json", + "type": "stack_panel", + "children": [ + "left_gamepad_panel", + "both_panels", + "right_gamepad_panel" + ] + }, + "gamepad_helper_border/left_gamepad_panel": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "children": [ + "gamepad_helper_left_bumper", + "gamepad_helper_left_trigger" + ] + }, + "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_bumper": { + "file": "ui/inventory_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_left_bumper", + "namespace": "common" + } + }, + "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_trigger": { + "file": "ui/inventory_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_left_trigger", + "namespace": "common" + } + }, + "gamepad_helper_border/both_panels": { + "file": "ui/inventory_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "both_panels", + "namespace": "crafting_pocket" + } + }, + "gamepad_helper_border/right_gamepad_panel": { + "file": "ui/inventory_screen_pocket.json", + "type": "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": { + "file": "ui/inventory_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_right_bumper", + "namespace": "common" + } + }, + "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper": { + "file": "ui/inventory_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_right_bumper", + "namespace": "common" + } + }, + "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_trigger": { + "file": "ui/inventory_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_right_trigger", + "namespace": "common" + } + }, + "hotbar_and_panels": { + "file": "ui/inventory_screen_pocket.json", + "type": "stack_panel", + "children": [ + "padding_1", + "gamepad_helper_border", + "hotbar_section_panel" + ] + }, + "hotbar_and_panels/padding_1": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel" + }, + "hotbar_and_panels/gamepad_helper_border": { + "file": "ui/inventory_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_border", + "namespace": "crafting_pocket" + } + }, + "hotbar_and_panels/hotbar_section_panel": { + "file": "ui/inventory_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "drop_item_panel", + "namespace": "common" + }, + "children": [ + "hotbar" + ] + }, + "hotbar_and_panels/hotbar_section_panel/hotbar": { + "file": "ui/inventory_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "hotbar_panel", + "namespace": "crafting_pocket" + } + }, + "recipe_inventory_screen_content_pocket": { + "file": "ui/inventory_screen_pocket.json", + "type": "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": { + "file": "ui/inventory_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "recipe_inventory_screen_content_pocket/toast_screen_content": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "extend": { + "name": "toast_screen_content", + "namespace": "toast_screen" + } + }, + "recipe_inventory_screen_content_pocket/selected_item_details_factory": { + "file": "ui/inventory_screen_pocket.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "recipe_inventory_screen_content_pocket/item_lock_notification_factory": { + "file": "ui/inventory_screen_pocket.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "recipe_inventory_screen_content_pocket/base_panel": { + "file": "ui/inventory_screen_pocket.json", + "type": "panel", + "children": [ + "root_panel", + "inventory_selected_icon_button", + "gamepad_cursor", + "hold_icon", + "hotbar_and_panels" + ] + }, + "recipe_inventory_screen_content_pocket/base_panel/root_panel": { + "file": "ui/inventory_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + } + }, + "recipe_inventory_screen_content_pocket/base_panel/inventory_selected_icon_button": { + "file": "ui/inventory_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "recipe_inventory_screen_content_pocket/base_panel/gamepad_cursor": { + "file": "ui/inventory_screen_pocket.json", + "type": "button", + "extend": { + "name": "gamepad_cursor_button", + "namespace": "common" + } + }, + "recipe_inventory_screen_content_pocket/base_panel/hold_icon": { + "file": "ui/inventory_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "recipe_inventory_screen_content_pocket/base_panel/hotbar_and_panels": { + "file": "ui/inventory_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "hotbar_and_panels", + "namespace": "crafting_pocket" + } + }, + "recipe_inventory_screen_content_pocket/flying_item_renderer": { + "file": "ui/inventory_screen_pocket.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + } + }, + "invite": { + "black_border": { + "file": "ui/invite_screen.json", + "type": "image" + }, + "black_border_hover": { + "file": "ui/invite_screen.json", + "type": "image", + "extend": { + "name": "black_border", + "namespace": "invite" + } + }, + "platform_icon": { + "file": "ui/invite_screen.json", + "type": "image" + }, + "grey_borderless_locked": { + "file": "ui/invite_screen.json", + "type": "image", + "extend": { + "name": "black_border", + "namespace": "invite" + } + }, + "checked_locked_image": { + "file": "ui/invite_screen.json", + "type": "image", + "extend": { + "name": "checkbox_image", + "namespace": "common" + } + }, + "unchecked_locked_image": { + "file": "ui/invite_screen.json", + "type": "image", + "extend": { + "name": "checkbox_image", + "namespace": "common" + } + }, + "left_arrow_image": { + "file": "ui/invite_screen.json", + "type": "image" + }, + "right_arrow_image": { + "file": "ui/invite_screen.json", + "type": "image" + }, + "account_link_image": { + "file": "ui/invite_screen.json", + "type": "image" + }, + "panel_text": { + "file": "ui/invite_screen.json", + "type": "label" + }, + "loading_friends": { + "file": "ui/invite_screen.json", + "type": "label", + "extend": { + "name": "panel_text", + "namespace": "invite" + } + }, + "account_link_icon": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "children": [ + "space_01", + "account_link_image", + "space_03" + ] + }, + "account_link_icon/space_01": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "account_link_icon/account_link_image": { + "file": "ui/invite_screen.json", + "type": "image", + "extend": { + "name": "account_link_image", + "namespace": "invite" + } + }, + "account_link_icon/space_03": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "gamerpic": { + "file": "ui/invite_screen.json", + "type": "custom" + }, + "third_party_profile_pic": { + "file": "ui/invite_screen.json", + "type": "image" + }, + "gamerpic_panel": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "black_border", + "gamerpic", + "online_indication_positioner" + ] + }, + "gamerpic_panel/black_border": { + "file": "ui/invite_screen.json", + "type": "image", + "extend": { + "name": "black_border", + "namespace": "invite" + } + }, + "gamerpic_panel/gamerpic": { + "file": "ui/invite_screen.json", + "type": "custom", + "extend": { + "name": "gamerpic", + "namespace": "invite" + } + }, + "gamerpic_panel/online_indication_positioner": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "indicator_images" + ] + }, + "gamerpic_panel/online_indication_positioner/indicator_images": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "online_indicator", + "namespace": "invite" + } + }, + "third_party_profile_pic_panel": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "black_border", + "third_party_profile_pic" + ] + }, + "third_party_profile_pic_panel/black_border": { + "file": "ui/invite_screen.json", + "type": "image", + "extend": { + "name": "black_border", + "namespace": "invite" + } + }, + "third_party_profile_pic_panel/third_party_profile_pic": { + "file": "ui/invite_screen.json", + "type": "image", + "extend": { + "name": "third_party_profile_pic", + "namespace": "invite" + } + }, + "platform_icon_panel": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "platform_icon" + ] + }, + "platform_icon_panel/platform_icon": { + "file": "ui/invite_screen.json", + "type": "image", + "extend": { + "name": "platform_icon", + "namespace": "invite" + } + }, + "status_image": { + "file": "ui/invite_screen.json", + "type": "image" + }, + "online_image": { + "file": "ui/invite_screen.json", + "type": "image", + "extend": { + "name": "status_image", + "namespace": "invite" + } + }, + "offline_image": { + "file": "ui/invite_screen.json", + "type": "image", + "extend": { + "name": "status_image", + "namespace": "invite" + } + }, + "online_indicator": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "online_image" + ] + }, + "online_indicator/online_image": { + "file": "ui/invite_screen.json", + "type": "image", + "extend": { + "name": "online_image", + "namespace": "invite" + } + }, + "checkbox_panel": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "checked_panel": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "checkbox_panel", + "namespace": "invite" + }, + "children": [ + "checked_image" + ] + }, + "checked_panel/checked_image": { + "file": "ui/invite_screen.json", + "type": "image", + "extend": { + "name": "checked_image", + "namespace": "common" + } + }, + "unchecked_panel": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "checkbox_panel", + "namespace": "invite" + }, + "children": [ + "unchecked_image" + ] + }, + "unchecked_panel/unchecked_image": { + "file": "ui/invite_screen.json", + "type": "image", + "extend": { + "name": "unchecked_image", + "namespace": "common" + } + }, + "checked_locked_panel": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "checkbox_panel", + "namespace": "invite" + }, + "children": [ + "checked_image" + ] + }, + "checked_locked_panel/checked_image": { + "file": "ui/invite_screen.json", + "type": "image", + "extend": { + "name": "checked_locked_image", + "namespace": "invite" + } + }, + "unchecked_locked_panel": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "checkbox_panel", + "namespace": "invite" + }, + "children": [ + "unchecked_image" + ] + }, + "unchecked_locked_panel/unchecked_image": { + "file": "ui/invite_screen.json", + "type": "image", + "extend": { + "name": "unchecked_locked_image", + "namespace": "invite" + } + }, + "checked_hover_panel": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "checkbox_panel", + "namespace": "invite" + }, + "children": [ + "checked_hover_image" + ] + }, + "checked_hover_panel/checked_hover_image": { + "file": "ui/invite_screen.json", + "type": "image", + "extend": { + "name": "checked_hover_image", + "namespace": "common" + } + }, + "unchecked_hover_panel": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "checkbox_panel", + "namespace": "invite" + }, + "children": [ + "unchecked_hover_image" + ] + }, + "unchecked_hover_panel/unchecked_hover_image": { + "file": "ui/invite_screen.json", + "type": "image", + "extend": { + "name": "unchecked_hover_image", + "namespace": "common" + } + }, + "friend_label": { + "file": "ui/invite_screen.json", + "type": "label" + }, + "friend_grid_xbl_gamertag": { + "file": "ui/invite_screen.json", + "type": "label", + "extend": { + "name": "friend_label", + "namespace": "invite" + } + }, + "friend_grid_current_game_label": { + "file": "ui/invite_screen.json", + "type": "label", + "extend": { + "name": "friend_label", + "namespace": "invite" + } + }, + "friend_grid_third_party_tag": { + "file": "ui/invite_screen.json", + "type": "label", + "extend": { + "name": "friend_label", + "namespace": "invite" + } + }, + "friend_background": { + "file": "ui/invite_screen.json", + "type": "image", + "extend": { + "name": "black_border", + "namespace": "invite" + } + }, + "friend_background_hover": { + "file": "ui/invite_screen.json", + "type": "image", + "extend": { + "name": "black_border_hover", + "namespace": "invite" + } + }, + "friend_background_borderless": { + "file": "ui/invite_screen.json", + "type": "image", + "extend": { + "name": "grey_borderless_locked", + "namespace": "invite" + } + }, + "hover_friend_button": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "friend_button_layout", + "hover_text" + ] + }, + "hover_friend_button/friend_button_layout": { + "file": "ui/invite_screen.json", + "type": "unknown", + "extend": { + "name": "friend_button_layout", + "namespace": "invite" + } + }, + "hover_friend_button/hover_text": { + "file": "ui/invite_screen.json", + "type": "custom", + "extend": { + "name": "hover_text", + "namespace": "common" + } + }, + "linked_hover_friend_button": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "hover_text" + ] + }, + "linked_hover_friend_button/hover_text": { + "file": "ui/invite_screen.json", + "type": "custom", + "extend": { + "name": "hover_text", + "namespace": "common" + } + }, + "msa_friend_button_layout": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "children": [ + "spacer01", + "platform_icon_spacer", + "spacer_02", + "friend_grid_label_layout" + ] + }, + "msa_friend_button_layout/spacer01": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "msa_friend_button_layout/platform_icon_spacer": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "msa_friend_button_layout/spacer_02": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "msa_friend_button_layout/friend_grid_label_layout": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "children": [ + "spacer_01", + "friend_grid_xbl_gamertag", + "friend_grid_current_game_label" + ] + }, + "msa_friend_button_layout/friend_grid_label_layout/spacer_01": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "msa_friend_button_layout/friend_grid_label_layout/friend_grid_xbl_gamertag": { + "file": "ui/invite_screen.json", + "type": "label", + "extend": { + "name": "friend_grid_xbl_gamertag", + "namespace": "invite" + } + }, + "msa_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label": { + "file": "ui/invite_screen.json", + "type": "label", + "extend": { + "name": "friend_grid_current_game_label", + "namespace": "invite" + } + }, + "platform_friend_button_layout": { + "file": "ui/invite_screen.json", + "type": "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": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "platform_friend_button_layout/platform_icon_spacer": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "platform_friend_button_layout/third_party_pic_panel_positioner": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "pp" + ] + }, + "platform_friend_button_layout/third_party_pic_panel_positioner/pp": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "third_party_profile_pic_panel", + "namespace": "invite" + } + }, + "platform_friend_button_layout/spacer_02": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "platform_friend_button_layout/friend_grid_label_layout": { + "file": "ui/invite_screen.json", + "type": "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": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "platform_friend_button_layout/friend_grid_label_layout/friend_grid_third_party_tag": { + "file": "ui/invite_screen.json", + "type": "label", + "extend": { + "name": "friend_grid_third_party_tag", + "namespace": "invite" + } + }, + "platform_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label": { + "file": "ui/invite_screen.json", + "type": "label", + "extend": { + "name": "friend_grid_current_game_label", + "namespace": "invite" + } + }, + "platform_friend_button_layout/platform_icon_positioner": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "platform_icon" + ] + }, + "platform_friend_button_layout/platform_icon_positioner/platform_icon": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "platform_icon_panel", + "namespace": "invite" + } + }, + "platform_friend_button_layout/online_indication_positioner": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "indicator_images" + ] + }, + "platform_friend_button_layout/online_indication_positioner/indicator_images": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "online_indicator", + "namespace": "invite" + } + }, + "linked_friend_button_layout": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "children": [ + "spacer01", + "platform_icon_positioner", + "spacer02", + "platform_profile_pictures", + "spacer03", + "platform_profile_names", + "online_indication_positioner" + ] + }, + "linked_friend_button_layout/spacer01": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "linked_friend_button_layout/platform_icon_positioner": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "platform_icon" + ] + }, + "linked_friend_button_layout/platform_icon_positioner/platform_icon": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "platform_icon_panel", + "namespace": "invite" + } + }, + "linked_friend_button_layout/spacer02": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "linked_friend_button_layout/platform_profile_pictures": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "children": [ + "spacer_01", + "pp2", + "account_link", + "pp1", + "spacer_03" + ] + }, + "linked_friend_button_layout/platform_profile_pictures/spacer_01": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "linked_friend_button_layout/platform_profile_pictures/pp2": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "third_party_profile_pic_panel", + "namespace": "invite" + } + }, + "linked_friend_button_layout/platform_profile_pictures/account_link": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "extend": { + "name": "account_link_icon", + "namespace": "invite" + } + }, + "linked_friend_button_layout/platform_profile_pictures/pp1": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "gamerpic_panel", + "namespace": "invite" + } + }, + "linked_friend_button_layout/platform_profile_pictures/spacer_03": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "linked_friend_button_layout/spacer03": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "linked_friend_button_layout/platform_profile_names": { + "file": "ui/invite_screen.json", + "type": "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": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "linked_friend_button_layout/platform_profile_names/friend_grid_third_party_tag": { + "file": "ui/invite_screen.json", + "type": "label", + "extend": { + "name": "friend_grid_third_party_tag", + "namespace": "invite" + } + }, + "linked_friend_button_layout/platform_profile_names/spacer_02": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "linked_friend_button_layout/platform_profile_names/friend_grid_xbl_gamertag": { + "file": "ui/invite_screen.json", + "type": "label", + "extend": { + "name": "friend_grid_xbl_gamertag", + "namespace": "invite" + } + }, + "linked_friend_button_layout/platform_profile_names/friend_grid_current_game_label": { + "file": "ui/invite_screen.json", + "type": "label", + "extend": { + "name": "friend_grid_current_game_label", + "namespace": "invite" + } + }, + "linked_friend_button_layout/online_indication_positioner": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "indicator_images" + ] + }, + "linked_friend_button_layout/online_indication_positioner/indicator_images": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "online_indicator", + "namespace": "invite" + } + }, + "template_msa_friend_button_layout": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "friend_background", + "friend_button_layout", + "unchecked" + ] + }, + "template_msa_friend_button_layout/friend_background": { + "file": "ui/invite_screen.json", + "type": "image", + "extend": { + "name": "friend_background", + "namespace": "invite" + } + }, + "template_msa_friend_button_layout/friend_button_layout": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "extend": { + "name": "msa_friend_button_layout", + "namespace": "invite" + } + }, + "template_msa_friend_button_layout/unchecked": { + "file": "ui/invite_screen.json", + "type": "unknown" + }, + "template_platform_friend_button_layout": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "friend_background", + "friend_button_layout", + "unchecked" + ] + }, + "template_platform_friend_button_layout/friend_background": { + "file": "ui/invite_screen.json", + "type": "image", + "extend": { + "name": "friend_background", + "namespace": "invite" + } + }, + "template_platform_friend_button_layout/friend_button_layout": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "extend": { + "name": "platform_friend_button_layout", + "namespace": "invite" + } + }, + "template_platform_friend_button_layout/unchecked": { + "file": "ui/invite_screen.json", + "type": "unknown" + }, + "template_linked_friend_button_layout": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "friend_background", + "horizontal_spacer_panel" + ] + }, + "template_linked_friend_button_layout/friend_background": { + "file": "ui/invite_screen.json", + "type": "image", + "extend": { + "name": "friend_background", + "namespace": "invite" + } + }, + "template_linked_friend_button_layout/horizontal_spacer_panel": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "children": [ + "unchecked_locked", + "friend_button_layout" + ] + }, + "template_linked_friend_button_layout/horizontal_spacer_panel/unchecked_locked": { + "file": "ui/invite_screen.json", + "type": "unknown" + }, + "template_linked_friend_button_layout/horizontal_spacer_panel/friend_button_layout": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "extend": { + "name": "linked_friend_button_layout", + "namespace": "invite" + } + }, + "msa_friend_button": { + "file": "ui/invite_screen.json", + "type": "toggle", + "extend": { + "name": "checkbox", + "namespace": "common" + }, + "children": [ + "checked", + "unchecked", + "checked_hover", + "unchecked_hover", + "checked_locked", + "unchecked_locked", + "checked_locked_hover", + "unchecked_locked_hover" + ] + }, + "msa_friend_button/checked": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "template_msa_friend_button_layout", + "namespace": "invite" + } + }, + "msa_friend_button/unchecked": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "template_msa_friend_button_layout", + "namespace": "invite" + } + }, + "msa_friend_button/checked_hover": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "template_msa_friend_button_layout", + "namespace": "invite" + } + }, + "msa_friend_button/unchecked_hover": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "template_msa_friend_button_layout", + "namespace": "invite" + } + }, + "msa_friend_button/checked_locked": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "template_msa_friend_button_layout", + "namespace": "invite" + } + }, + "msa_friend_button/unchecked_locked": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "template_msa_friend_button_layout", + "namespace": "invite" + } + }, + "msa_friend_button/checked_locked_hover": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "template_msa_friend_button_layout", + "namespace": "invite" + } + }, + "msa_friend_button/unchecked_locked_hover": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "template_msa_friend_button_layout", + "namespace": "invite" + } + }, + "platform_friend_button": { + "file": "ui/invite_screen.json", + "type": "toggle", + "extend": { + "name": "checkbox", + "namespace": "common" + }, + "children": [ + "checked", + "unchecked", + "checked_hover", + "unchecked_hover", + "checked_locked", + "unchecked_locked", + "checked_locked_hover", + "unchecked_locked_hover" + ] + }, + "platform_friend_button/checked": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "template_platform_friend_button_layout", + "namespace": "invite" + } + }, + "platform_friend_button/unchecked": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "template_platform_friend_button_layout", + "namespace": "invite" + } + }, + "platform_friend_button/checked_hover": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "template_platform_friend_button_layout", + "namespace": "invite" + } + }, + "platform_friend_button/unchecked_hover": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "template_platform_friend_button_layout", + "namespace": "invite" + } + }, + "platform_friend_button/checked_locked": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "template_platform_friend_button_layout", + "namespace": "invite" + } + }, + "platform_friend_button/unchecked_locked": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "template_platform_friend_button_layout", + "namespace": "invite" + } + }, + "platform_friend_button/checked_locked_hover": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "template_platform_friend_button_layout", + "namespace": "invite" + } + }, + "platform_friend_button/unchecked_locked_hover": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "template_platform_friend_button_layout", + "namespace": "invite" + } + }, + "linked_friend_button": { + "file": "ui/invite_screen.json", + "type": "toggle", + "extend": { + "name": "checkbox", + "namespace": "common" + }, + "children": [ + "checked", + "unchecked", + "checked_hover", + "unchecked_hover", + "checked_locked", + "unchecked_locked", + "checked_locked_hover", + "unchecked_locked_hover" + ] + }, + "linked_friend_button/checked": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "template_linked_friend_button_layout", + "namespace": "invite" + } + }, + "linked_friend_button/unchecked": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "template_linked_friend_button_layout", + "namespace": "invite" + } + }, + "linked_friend_button/checked_hover": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "template_linked_friend_button_layout", + "namespace": "invite" + } + }, + "linked_friend_button/unchecked_hover": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "template_linked_friend_button_layout", + "namespace": "invite" + } + }, + "linked_friend_button/checked_locked": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "template_linked_friend_button_layout", + "namespace": "invite" + } + }, + "linked_friend_button/unchecked_locked": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "template_linked_friend_button_layout", + "namespace": "invite" + } + }, + "linked_friend_button/checked_locked_hover": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "template_linked_friend_button_layout", + "namespace": "invite" + } + }, + "linked_friend_button/unchecked_locked_hover": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "template_linked_friend_button_layout", + "namespace": "invite" + } + }, + "msa_friend_grid_item_template": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "children": [ + "friend_button_Panel", + "profile_button_pannel", + "spacer_03" + ] + }, + "msa_friend_grid_item_template/friend_button_Panel": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "gamerpic_panel_positioner", + "friend_button" + ] + }, + "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "pp" + ] + }, + "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner/pp": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "gamerpic_panel", + "namespace": "invite" + } + }, + "msa_friend_grid_item_template/friend_button_Panel/friend_button": { + "file": "ui/invite_screen.json", + "type": "toggle", + "extend": { + "name": "msa_friend_button", + "namespace": "invite" + } + }, + "msa_friend_grid_item_template/profile_button_pannel": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "view_profile_button" + ] + }, + "msa_friend_grid_item_template/profile_button_pannel/view_profile_button": { + "file": "ui/invite_screen.json", + "type": "button", + "extend": { + "name": "profile_button", + "namespace": "invite" + } + }, + "msa_friend_grid_item_template/spacer_03": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "platform_friend_grid_item_template": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "friend_button" + ] + }, + "platform_friend_grid_item_template/friend_button": { + "file": "ui/invite_screen.json", + "type": "toggle", + "extend": { + "name": "platform_friend_button", + "namespace": "invite" + } + }, + "friend_linked_account_grid_item_template": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "friend_button" + ] + }, + "friend_linked_account_grid_item_template/friend_button": { + "file": "ui/invite_screen.json", + "type": "toggle", + "extend": { + "name": "linked_friend_button", + "namespace": "invite" + } + }, + "online_xbox_live_friend_grid_item": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "extend": { + "name": "msa_friend_grid_item_template", + "namespace": "invite" + } + }, + "offline_xbox_live_friend_grid_item": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "extend": { + "name": "msa_friend_grid_item_template", + "namespace": "invite" + } + }, + "online_linked_account_friend_grid_item": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "friend_linked_account_grid_item_template", + "namespace": "invite" + } + }, + "offline_linked_account_friend_grid_item": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "friend_linked_account_grid_item_template", + "namespace": "invite" + } + }, + "online_platform_friend_grid_item": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "platform_friend_grid_item_template", + "namespace": "invite" + } + }, + "offline_platform_friend_grid_item": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "platform_friend_grid_item_template", + "namespace": "invite" + } + }, + "online_xbox_live_friend_list_grid": { + "file": "ui/invite_screen.json", + "type": "grid" + }, + "offline_xbox_live_friend_list_grid": { + "file": "ui/invite_screen.json", + "type": "grid" + }, + "online_platform_friend_list_grid": { + "file": "ui/invite_screen.json", + "type": "grid" + }, + "offline_platform_friend_list_grid": { + "file": "ui/invite_screen.json", + "type": "grid" + }, + "online_linked_account_friend_list_grid": { + "file": "ui/invite_screen.json", + "type": "grid" + }, + "offline_linked_account_friend_list_grid": { + "file": "ui/invite_screen.json", + "type": "grid" + }, + "friends_pagination_controls": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "children": [ + "previous_button", + "center_panel", + "next_button" + ] + }, + "friends_pagination_controls/previous_button": { + "file": "ui/invite_screen.json", + "type": "button", + "extend": { + "name": "light_glyph_button", + "namespace": "common_buttons" + } + }, + "friends_pagination_controls/center_panel": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "page_counter" + ] + }, + "friends_pagination_controls/center_panel/page_counter": { + "file": "ui/invite_screen.json", + "type": "label" + }, + "friends_pagination_controls/next_button": { + "file": "ui/invite_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "friends_category": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "children": [ + "friends_grid", + "pagination_stack_panel", + "padding" + ] + }, + "friends_category/friends_grid": { + "file": "ui/invite_screen.json", + "type": "unknown" + }, + "friends_category/pagination_stack_panel": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "children": [ + "padding_1", + "pagination_controls", + "padding_2", + "divider" + ] + }, + "friends_category/pagination_stack_panel/padding_1": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "friends_category/pagination_stack_panel/pagination_controls": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "extend": { + "name": "friends_pagination_controls", + "namespace": "invite" + } + }, + "friends_category/pagination_stack_panel/padding_2": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "friends_category/pagination_stack_panel/divider": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "common" + } + }, + "friends_category/padding": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "frame_label": { + "file": "ui/invite_screen.json", + "type": "label", + "extend": { + "name": "label", + "namespace": "invite" + } + }, + "friend_panel": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "scrolling_content_stack": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "children": [ + "invite_party_panel", + "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/invite_party_panel": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "invite_party_panel", + "namespace": "invite" + } + }, + "scrolling_content_stack/message": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "friend_panel", + "namespace": "invite" + }, + "children": [ + "frame_label" + ] + }, + "scrolling_content_stack/message/frame_label": { + "file": "ui/invite_screen.json", + "type": "label", + "extend": { + "name": "frame_label", + "namespace": "invite" + } + }, + "scrolling_content_stack/online_platform": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "friend_panel", + "namespace": "invite" + }, + "children": [ + "frame_label" + ] + }, + "scrolling_content_stack/online_platform/frame_label": { + "file": "ui/invite_screen.json", + "type": "label", + "extend": { + "name": "frame_label", + "namespace": "invite" + } + }, + "scrolling_content_stack/vertical_padding_0": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "scrolling_content_stack/online_platform_friend_list_category": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "extend": { + "name": "friends_category", + "namespace": "invite" + } + }, + "scrolling_content_stack/crossplatform_disabled_panel": { + "file": "ui/invite_screen.json", + "type": "image", + "children": [ + "disable_text" + ] + }, + "scrolling_content_stack/crossplatform_disabled_panel/disable_text": { + "file": "ui/invite_screen.json", + "type": "label" + }, + "scrolling_content_stack/crossplatform_disable_spacer": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "scrolling_content_stack/online_cross_platform": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "friend_panel", + "namespace": "invite" + }, + "children": [ + "frame_label" + ] + }, + "scrolling_content_stack/online_cross_platform/frame_label": { + "file": "ui/invite_screen.json", + "type": "label", + "extend": { + "name": "frame_label", + "namespace": "invite" + } + }, + "scrolling_content_stack/vertical_padding_1": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "scrolling_content_stack/online_linked_account_friend_list_category": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "extend": { + "name": "friends_category", + "namespace": "invite" + } + }, + "scrolling_content_stack/online_xbox_live_friend_list_category": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "extend": { + "name": "friends_category", + "namespace": "invite" + } + }, + "scrolling_content_stack/offline_platform": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "friend_panel", + "namespace": "invite" + }, + "children": [ + "frame_label" + ] + }, + "scrolling_content_stack/offline_platform/frame_label": { + "file": "ui/invite_screen.json", + "type": "label", + "extend": { + "name": "frame_label", + "namespace": "invite" + } + }, + "scrolling_content_stack/vertical_padding_2": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "scrolling_content_stack/offline_platform_friend_list_category": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "extend": { + "name": "friends_category", + "namespace": "invite" + } + }, + "scrolling_content_stack/no_platform_friends": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "friend_panel", + "namespace": "invite" + }, + "children": [ + "no_friends_tts_wrapper" + ] + }, + "scrolling_content_stack/no_platform_friends/no_friends_tts_wrapper": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "scrolling_content_stack/offline_cross_platform": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "friend_panel", + "namespace": "invite" + }, + "children": [ + "frame_label" + ] + }, + "scrolling_content_stack/offline_cross_platform/frame_label": { + "file": "ui/invite_screen.json", + "type": "label", + "extend": { + "name": "frame_label", + "namespace": "invite" + } + }, + "scrolling_content_stack/vertical_padding_3": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "scrolling_content_stack/offline_linked_account_friend_list_category": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "extend": { + "name": "friends_category", + "namespace": "invite" + } + }, + "scrolling_content_stack/offline_xbox_live_friend_list_category": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "extend": { + "name": "friends_category", + "namespace": "invite" + } + }, + "scrolling_content_stack/no_xbox_live_friends": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "friend_panel", + "namespace": "invite" + }, + "children": [ + "no_friends_tts_wrapper" + ] + }, + "scrolling_content_stack/no_xbox_live_friends/no_friends_tts_wrapper": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "invite_party_panel": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "frame_label", + "frame_description", + "our_toggle", + "border_outline" + ] + }, + "invite_party_panel/frame_label": { + "file": "ui/invite_screen.json", + "type": "label", + "extend": { + "name": "frame_label", + "namespace": "invite" + } + }, + "invite_party_panel/frame_description": { + "file": "ui/invite_screen.json", + "type": "label", + "extend": { + "name": "frame_label", + "namespace": "invite" + } + }, + "invite_party_panel/our_toggle": { + "file": "ui/invite_screen.json", + "type": "toggle", + "extend": { + "name": "option_toggle_control", + "namespace": "settings_common" + } + }, + "invite_party_panel/border_outline": { + "file": "ui/invite_screen.json", + "type": "image", + "extend": { + "name": "black_border", + "namespace": "invite" + } + }, + "friend_button_test": { + "file": "ui/invite_screen.json", + "type": "toggle", + "extend": { + "name": "msa_friend_button", + "namespace": "invite" + } + }, + "progress_bar_and_scrolling_content_panel": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "progress_loading_bars", + "invite_scrolling_area" + ] + }, + "progress_bar_and_scrolling_content_panel/progress_loading_bars": { + "file": "ui/invite_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "play" + } + }, + "progress_bar_and_scrolling_content_panel/invite_scrolling_area": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "extend": { + "name": "scrolling_content_stack", + "namespace": "invite" + } + }, + "no_xbox_live_friends_frame_label": { + "file": "ui/invite_screen.json", + "type": "label", + "extend": { + "name": "frame_label", + "namespace": "invite" + } + }, + "no_platform_friends_frame_label": { + "file": "ui/invite_screen.json", + "type": "label", + "extend": { + "name": "frame_label", + "namespace": "invite" + } + }, + "horizontal_invite_panel": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_one_button", + "namespace": "common_dialogs" + } + }, + "vertical_invite_panel": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_two_buttons", + "namespace": "common_dialogs" + } + }, + "scrolling_area": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "invite_button_content": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "gameplay_helper", + "button_label" + ] + }, + "invite_button_content/gameplay_helper": { + "file": "ui/invite_screen.json", + "type": "unknown" + }, + "invite_button_content/button_label": { + "file": "ui/invite_screen.json", + "type": "label" + }, + "invite_button_content_hover": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "invite_button_content", + "namespace": "invite" + } + }, + "invite_button_content_pressed": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "invite_button_content", + "namespace": "invite" + } + }, + "invite_button_content_locked": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "invite_button_content", + "namespace": "invite" + } + }, + "add_friend_button": { + "file": "ui/invite_screen.json", + "type": "button", + "extend": { + "name": "light_content_button_control_content", + "namespace": "common_buttons" + } + }, + "profile_button_content": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "button_label" + ] + }, + "profile_button_content/button_label": { + "file": "ui/invite_screen.json", + "type": "label" + }, + "profile_button_content_hover": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "profile_button_content", + "namespace": "invite" + } + }, + "profile_button_content_pressed": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "profile_button_content", + "namespace": "invite" + } + }, + "profile_button_content_locked": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "profile_button_content", + "namespace": "invite" + } + }, + "add_member_button": { + "file": "ui/invite_screen.json", + "type": "button", + "extend": { + "name": "light_content_button_control_content", + "namespace": "common_buttons" + } + }, + "send_button": { + "file": "ui/invite_screen.json", + "type": "button", + "extend": { + "name": "light_content_button_control_content", + "namespace": "common_buttons" + } + }, + "profile_button": { + "file": "ui/invite_screen.json", + "type": "button", + "extend": { + "name": "light_content_button_control_content", + "namespace": "common_buttons" + } + }, + "horizontal_button_stack_panel": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "children": [ + "add_friend_button", + "add_member_button", + "padding", + "send_button" + ] + }, + "horizontal_button_stack_panel/add_friend_button": { + "file": "ui/invite_screen.json", + "type": "button", + "extend": { + "name": "add_friend_button", + "namespace": "invite" + } + }, + "horizontal_button_stack_panel/add_member_button": { + "file": "ui/invite_screen.json", + "type": "button", + "extend": { + "name": "add_member_button", + "namespace": "invite" + } + }, + "horizontal_button_stack_panel/padding": { + "file": "ui/invite_screen.json", + "type": "panel" + }, + "horizontal_button_stack_panel/send_button": { + "file": "ui/invite_screen.json", + "type": "button", + "extend": { + "name": "send_button", + "namespace": "invite" + } + }, + "vertical_buttons_top_panel": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "add_friend_button", + "add_member_button" + ] + }, + "vertical_buttons_top_panel/add_friend_button": { + "file": "ui/invite_screen.json", + "type": "button", + "extend": { + "name": "add_friend_button", + "namespace": "invite" + } + }, + "vertical_buttons_top_panel/add_member_button": { + "file": "ui/invite_screen.json", + "type": "button", + "extend": { + "name": "add_member_button", + "namespace": "invite" + } + }, + "vertical_buttons_bottom_panel": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "send_button" + ] + }, + "vertical_buttons_bottom_panel/send_button": { + "file": "ui/invite_screen.json", + "type": "button", + "extend": { + "name": "send_button", + "namespace": "invite" + } + }, + "gamepad_helpers": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "gamepad_helper_a" + ] + }, + "gamepad_helpers/gamepad_helper_a": { + "file": "ui/invite_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_a", + "namespace": "common" + } + }, + "invite_screen": { + "file": "ui/invite_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "invite_screen_content": { + "file": "ui/invite_screen.json", + "type": "panel", + "children": [ + "gamepad_helpers", + "invite_panel" + ] + }, + "invite_screen_content/gamepad_helpers": { + "file": "ui/invite_screen.json", + "type": "panel", + "extend": { + "name": "gamepad_helpers", + "namespace": "invite" + } + }, + "invite_screen_content/invite_panel": { + "file": "ui/invite_screen.json", + "type": "unknown" + } + }, + "jigsaw_editor": { + "horizontal_buffer": { + "file": "ui/jigsaw_editor_screen.json", + "type": "panel" + }, + "vertical_buffer": { + "file": "ui/jigsaw_editor_screen.json", + "type": "panel" + }, + "common_text_label": { + "file": "ui/jigsaw_editor_screen.json", + "type": "label" + }, + "text_edit_box": { + "file": "ui/jigsaw_editor_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "help_icon": { + "file": "ui/jigsaw_editor_screen.json", + "type": "image" + }, + "toggle_with_label": { + "file": "ui/jigsaw_editor_screen.json", + "type": "stack_panel", + "children": [ + "toggle", + "toggle_label_padding", + "toggle_label_wrapper" + ] + }, + "toggle_with_label/toggle": { + "file": "ui/jigsaw_editor_screen.json", + "type": "toggle", + "extend": { + "name": "option_toggle_control", + "namespace": "settings_common" + } + }, + "toggle_with_label/toggle_label_padding": { + "file": "ui/jigsaw_editor_screen.json", + "type": "panel" + }, + "toggle_with_label/toggle_label_wrapper": { + "file": "ui/jigsaw_editor_screen.json", + "type": "panel", + "children": [ + "toggle_label", + "toggle_label_disabled" + ] + }, + "toggle_with_label/toggle_label_wrapper/toggle_label": { + "file": "ui/jigsaw_editor_screen.json", + "type": "label", + "extend": { + "name": "common_text_label", + "namespace": "jigsaw_editor" + } + }, + "toggle_with_label/toggle_label_wrapper/toggle_label_disabled": { + "file": "ui/jigsaw_editor_screen.json", + "type": "label", + "extend": { + "name": "common_text_label", + "namespace": "jigsaw_editor" + } + }, + "data_item_title_and_edit": { + "file": "ui/jigsaw_editor_screen.json", + "type": "stack_panel", + "children": [ + "data_title", + "data_text_edit" + ] + }, + "data_item_title_and_edit/data_title": { + "file": "ui/jigsaw_editor_screen.json", + "type": "label", + "extend": { + "name": "common_text_label", + "namespace": "jigsaw_editor" + } + }, + "data_item_title_and_edit/data_text_edit": { + "file": "ui/jigsaw_editor_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "jigsaw_editor" + } + }, + "data_item_title_and_edit_fill": { + "file": "ui/jigsaw_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "data_item_title_and_edit", + "namespace": "jigsaw_editor" + } + }, + "data_item_title_and_toggle": { + "file": "ui/jigsaw_editor_screen.json", + "type": "stack_panel", + "children": [ + "data_title", + "toggle" + ] + }, + "data_item_title_and_toggle/data_title": { + "file": "ui/jigsaw_editor_screen.json", + "type": "label", + "extend": { + "name": "common_text_label", + "namespace": "jigsaw_editor" + } + }, + "data_item_title_and_toggle/toggle": { + "file": "ui/jigsaw_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "toggle_with_label", + "namespace": "jigsaw_editor" + } + }, + "exit_buttons": { + "file": "ui/jigsaw_editor_screen.json", + "type": "stack_panel", + "children": [ + "done_button", + "buffer", + "help_button" + ] + }, + "exit_buttons/done_button": { + "file": "ui/jigsaw_editor_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "exit_buttons/buffer": { + "file": "ui/jigsaw_editor_screen.json", + "type": "panel" + }, + "exit_buttons/help_button": { + "file": "ui/jigsaw_editor_screen.json", + "type": "button", + "extend": { + "name": "light_glyph_button", + "namespace": "common_buttons" + } + }, + "scrolling_panel_wrapper": { + "file": "ui/jigsaw_editor_screen.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_4", + "namespace": "common" + }, + "children": [ + "scrolling_panel" + ] + }, + "scrolling_panel_wrapper/scrolling_panel": { + "file": "ui/jigsaw_editor_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "jigsaw_editor" + } + }, + "scrolling_panel": { + "file": "ui/jigsaw_editor_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "scroll_panel_content": { + "file": "ui/jigsaw_editor_screen.json", + "type": "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": { + "file": "ui/jigsaw_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "data_item_title_and_edit", + "namespace": "jigsaw_editor" + } + }, + "scroll_panel_content/buffer_1": { + "file": "ui/jigsaw_editor_screen.json", + "type": "panel", + "extend": { + "name": "vertical_buffer", + "namespace": "jigsaw_editor" + } + }, + "scroll_panel_content/name_title_and_edit": { + "file": "ui/jigsaw_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "data_item_title_and_edit", + "namespace": "jigsaw_editor" + } + }, + "scroll_panel_content/buffer_2": { + "file": "ui/jigsaw_editor_screen.json", + "type": "panel", + "extend": { + "name": "vertical_buffer", + "namespace": "jigsaw_editor" + } + }, + "scroll_panel_content/target_title_and_edit": { + "file": "ui/jigsaw_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "data_item_title_and_edit", + "namespace": "jigsaw_editor" + } + }, + "scroll_panel_content/buffer_3": { + "file": "ui/jigsaw_editor_screen.json", + "type": "panel", + "extend": { + "name": "vertical_buffer", + "namespace": "jigsaw_editor" + } + }, + "scroll_panel_content/final_block_title_and_edit": { + "file": "ui/jigsaw_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "data_item_title_and_edit", + "namespace": "jigsaw_editor" + } + }, + "scroll_panel_content/buffer_4": { + "file": "ui/jigsaw_editor_screen.json", + "type": "panel", + "extend": { + "name": "vertical_buffer", + "namespace": "jigsaw_editor" + } + }, + "scroll_panel_content/selection_and_placement_priority": { + "file": "ui/jigsaw_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "selection_and_placement_priority", + "namespace": "jigsaw_editor" + } + }, + "scroll_panel_content/buffer_5": { + "file": "ui/jigsaw_editor_screen.json", + "type": "panel", + "extend": { + "name": "vertical_buffer", + "namespace": "jigsaw_editor" + } + }, + "scroll_panel_content/joint_type_title_and_toggle": { + "file": "ui/jigsaw_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "data_item_title_and_toggle", + "namespace": "jigsaw_editor" + } + }, + "scroll_panel_content/buffer_6": { + "file": "ui/jigsaw_editor_screen.json", + "type": "panel", + "extend": { + "name": "vertical_buffer", + "namespace": "jigsaw_editor" + } + }, + "selection_and_placement_priority": { + "file": "ui/jigsaw_editor_screen.json", + "type": "stack_panel", + "children": [ + "selection_priority_title_and_edit", + "buffer_1", + "placement_priority_title_and_edit" + ] + }, + "selection_and_placement_priority/selection_priority_title_and_edit": { + "file": "ui/jigsaw_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "data_item_title_and_edit_fill", + "namespace": "jigsaw_editor" + } + }, + "selection_and_placement_priority/buffer_1": { + "file": "ui/jigsaw_editor_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_buffer", + "namespace": "jigsaw_editor" + } + }, + "selection_and_placement_priority/placement_priority_title_and_edit": { + "file": "ui/jigsaw_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "data_item_title_and_edit_fill", + "namespace": "jigsaw_editor" + } + }, + "button_panel_wrapper": { + "file": "ui/jigsaw_editor_screen.json", + "type": "image", + "children": [ + "exit_buttons" + ] + }, + "button_panel_wrapper/exit_buttons": { + "file": "ui/jigsaw_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "exit_buttons", + "namespace": "jigsaw_editor" + } + }, + "jigsaw_editor_panel": { + "file": "ui/jigsaw_editor_screen.json", + "type": "stack_panel", + "children": [ + "scrolling_panel", + "button_wrapper" + ] + }, + "jigsaw_editor_panel/scrolling_panel": { + "file": "ui/jigsaw_editor_screen.json", + "type": "image", + "extend": { + "name": "scrolling_panel_wrapper", + "namespace": "jigsaw_editor" + } + }, + "jigsaw_editor_panel/button_wrapper": { + "file": "ui/jigsaw_editor_screen.json", + "type": "panel", + "children": [ + "buttons" + ] + }, + "jigsaw_editor_panel/button_wrapper/buttons": { + "file": "ui/jigsaw_editor_screen.json", + "type": "image", + "extend": { + "name": "button_panel_wrapper", + "namespace": "jigsaw_editor" + } + }, + "jigsaw_editor_content": { + "file": "ui/jigsaw_editor_screen.json", + "type": "panel", + "children": [ + "background_panel", + "title", + "jigsaw_editor_panel" + ] + }, + "jigsaw_editor_content/background_panel": { + "file": "ui/jigsaw_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "fullscreen_header", + "namespace": "common" + } + }, + "jigsaw_editor_content/title": { + "file": "ui/jigsaw_editor_screen.json", + "type": "label", + "extend": { + "name": "common_text_label", + "namespace": "jigsaw_editor" + } + }, + "jigsaw_editor_content/jigsaw_editor_panel": { + "file": "ui/jigsaw_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "jigsaw_editor_panel", + "namespace": "jigsaw_editor" + } + }, + "jigsaw_editor_screen": { + "file": "ui/jigsaw_editor_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + } + }, + "late_join": { + "animation_panel": { + "file": "ui/late_join_pregame_screen.json", + "type": "panel", + "children": [ + "stacked_column" + ] + }, + "animation_panel/stacked_column": { + "file": "ui/late_join_pregame_screen.json", + "type": "stack_panel", + "children": [ + "waiting_animating_text" + ] + }, + "animation_panel/stacked_column/waiting_animating_text": { + "file": "ui/late_join_pregame_screen.json", + "type": "label" + }, + "gamepad_helpers": { + "file": "ui/late_join_pregame_screen.json", + "type": "stack_panel", + "children": [ + "gamepad_helper_b_and_padding" + ] + }, + "gamepad_helpers/gamepad_helper_b_and_padding": { + "file": "ui/late_join_pregame_screen.json", + "type": "panel", + "children": [ + "gamepad_helper_b" + ] + }, + "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b": { + "file": "ui/late_join_pregame_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_b", + "namespace": "common" + } + }, + "late_join_pregame_screen": { + "file": "ui/late_join_pregame_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "late_join_screen_content": { + "file": "ui/late_join_pregame_screen.json", + "type": "panel", + "children": [ + "animation_panel", + "gamepad_helpers" + ] + }, + "late_join_screen_content/animation_panel": { + "file": "ui/late_join_pregame_screen.json", + "type": "panel", + "extend": { + "name": "animation_panel", + "namespace": "late_join" + } + }, + "late_join_screen_content/gamepad_helpers": { + "file": "ui/late_join_pregame_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helpers", + "namespace": "late_join" + } + } + }, + "library_modal": { + "modal_button": { + "file": "ui/library_modal_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "modal_text_content": { + "file": "ui/library_modal_screen.json", + "type": "label" + }, + "modal_ok": { + "file": "ui/library_modal_screen.json", + "type": "button", + "extend": { + "name": "modal_button", + "namespace": "library_modal" + } + }, + "modal_cancel": { + "file": "ui/library_modal_screen.json", + "type": "button", + "extend": { + "name": "modal_button", + "namespace": "library_modal" + } + }, + "in_game_prompt": { + "file": "ui/library_modal_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_two_buttons", + "namespace": "common_dialogs" + } + }, + "fetch_error": { + "file": "ui/library_modal_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_one_button", + "namespace": "common_dialogs" + } + }, + "content": { + "file": "ui/library_modal_screen.json", + "type": "panel", + "children": [ + "fetch", + "ingame" + ] + }, + "content/fetch": { + "file": "ui/library_modal_screen.json", + "type": "panel", + "extend": { + "name": "fetch_error", + "namespace": "library_modal" + } + }, + "content/ingame": { + "file": "ui/library_modal_screen.json", + "type": "panel", + "extend": { + "name": "in_game_prompt", + "namespace": "library_modal" + } + }, + "content_wrapper": { + "file": "ui/library_modal_screen.json", + "type": "input_panel", + "children": [ + "content" + ] + }, + "content_wrapper/content": { + "file": "ui/library_modal_screen.json", + "type": "panel", + "extend": { + "name": "content", + "namespace": "library_modal" + } + }, + "background": { + "file": "ui/library_modal_screen.json", + "type": "image" + }, + "library_modal_screen": { + "file": "ui/library_modal_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "text_panel": { + "file": "ui/library_modal_screen.json", + "type": "stack_panel" + }, + "edu_icon": { + "file": "ui/library_modal_screen.json", + "type": "image" + }, + "continue_button": { + "file": "ui/library_modal_screen.json", + "type": "button", + "extend": { + "name": "modal_button", + "namespace": "library_modal" + } + }, + "paragraph": { + "file": "ui/library_modal_screen.json", + "type": "label" + }, + "welcome_text_panel": { + "file": "ui/library_modal_screen.json", + "type": "stack_panel", + "extend": { + "name": "text_panel", + "namespace": "library_modal" + }, + "children": [ + "padding_1", + "paragraph_1_wrapper", + "padding_2", + "paragraph_two", + "padding_3", + "paragraph_three" + ] + }, + "welcome_text_panel/padding_1": { + "file": "ui/library_modal_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "welcome_text_panel/paragraph_1_wrapper": { + "file": "ui/library_modal_screen.json", + "type": "stack_panel", + "children": [ + "edu_icon", + "stack_buffer1", + "paragraph_1_panel" + ] + }, + "welcome_text_panel/paragraph_1_wrapper/edu_icon": { + "file": "ui/library_modal_screen.json", + "type": "image", + "extend": { + "name": "edu_icon", + "namespace": "library_modal" + } + }, + "welcome_text_panel/paragraph_1_wrapper/stack_buffer1": { + "file": "ui/library_modal_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel": { + "file": "ui/library_modal_screen.json", + "type": "panel", + "children": [ + "paragraph_1" + ] + }, + "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel/paragraph_1": { + "file": "ui/library_modal_screen.json", + "type": "label", + "extend": { + "name": "paragraph", + "namespace": "library_modal" + } + }, + "welcome_text_panel/padding_2": { + "file": "ui/library_modal_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "welcome_text_panel/paragraph_two": { + "file": "ui/library_modal_screen.json", + "type": "label", + "extend": { + "name": "paragraph", + "namespace": "library_modal" + } + }, + "welcome_text_panel/padding_3": { + "file": "ui/library_modal_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "welcome_text_panel/paragraph_three": { + "file": "ui/library_modal_screen.json", + "type": "label", + "extend": { + "name": "paragraph", + "namespace": "library_modal" + } + }, + "welcome_scrolling_panel": { + "file": "ui/library_modal_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "welcome_panel_content": { + "file": "ui/library_modal_screen.json", + "type": "panel", + "children": [ + "background_panel", + "welcome_scrolling_panel", + "continue_button" + ] + }, + "welcome_panel_content/background_panel": { + "file": "ui/library_modal_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "welcome_panel_content/welcome_scrolling_panel": { + "file": "ui/library_modal_screen.json", + "type": "panel", + "extend": { + "name": "welcome_scrolling_panel", + "namespace": "library_modal" + } + }, + "welcome_panel_content/continue_button": { + "file": "ui/library_modal_screen.json", + "type": "button", + "extend": { + "name": "continue_button", + "namespace": "library_modal" + } + }, + "welcome_panel": { + "file": "ui/library_modal_screen.json", + "type": "input_panel", + "extend": { + "name": "input_panel", + "namespace": "common" + }, + "children": [ + "welcome" + ] + }, + "welcome_panel/welcome": { + "file": "ui/library_modal_screen.json", + "type": "panel", + "extend": { + "name": "welcome_panel_content", + "namespace": "library_modal" + } + } + }, + "local_world_picker": { + "local_world_picker_screen": { + "file": "ui/local_world_picker_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "local_world_picker_content": { + "file": "ui/local_world_picker_screen.json", + "type": "panel", + "children": [ + "background", + "panel_label", + "content" + ] + }, + "local_world_picker_content/background": { + "file": "ui/local_world_picker_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "local_world_picker_content/panel_label": { + "file": "ui/local_world_picker_screen.json", + "type": "label" + }, + "local_world_picker_content/content": { + "file": "ui/local_world_picker_screen.json", + "type": "input_panel", + "extend": { + "name": "worlds_scroll_content", + "namespace": "play" + } + } + }, + "loom": { + "loom_label": { + "file": "ui/loom_screen.json", + "type": "label" + }, + "arrow_icon": { + "file": "ui/loom_screen.json", + "type": "image" + }, + "pattern_cell_image": { + "file": "ui/loom_screen.json", + "type": "image" + }, + "container_cell_image": { + "file": "ui/loom_screen.json", + "type": "image" + }, + "banner_outline": { + "file": "ui/loom_screen.json", + "type": "image" + }, + "item_empty_image": { + "file": "ui/loom_screen.json", + "type": "image" + }, + "banner_empty_image": { + "file": "ui/loom_screen.json", + "type": "image", + "extend": { + "name": "item_empty_image", + "namespace": "loom" + } + }, + "dye_empty_image": { + "file": "ui/loom_screen.json", + "type": "image", + "extend": { + "name": "item_empty_image", + "namespace": "loom" + } + }, + "pattern_item_empty_image": { + "file": "ui/loom_screen.json", + "type": "image", + "extend": { + "name": "item_empty_image", + "namespace": "loom" + } + }, + "toolbar_background": { + "file": "ui/loom_screen.json", + "type": "image" + }, + "highlight_slot_panel": { + "file": "ui/loom_screen.json", + "type": "panel", + "children": [ + "highlight", + "white_border" + ] + }, + "highlight_slot_panel/highlight": { + "file": "ui/loom_screen.json", + "type": "image", + "extend": { + "name": "highlight_slot", + "namespace": "common" + } + }, + "highlight_slot_panel/white_border": { + "file": "ui/loom_screen.json", + "type": "image", + "extend": { + "name": "white_border_slot", + "namespace": "common" + } + }, + "pattern_slot_button": { + "file": "ui/loom_screen.json", + "type": "button", + "children": [ + "hover" + ] + }, + "pattern_slot_button/hover": { + "file": "ui/loom_screen.json", + "type": "unknown" + }, + "banner_pattern": { + "file": "ui/loom_screen.json", + "type": "custom" + }, + "pattern_button": { + "file": "ui/loom_screen.json", + "type": "input_panel", + "children": [ + "banner_pattern", + "item_button_ref" + ] + }, + "pattern_button/banner_pattern": { + "file": "ui/loom_screen.json", + "type": "unknown" + }, + "pattern_button/item_button_ref": { + "file": "ui/loom_screen.json", + "type": "unknown" + }, + "scroll_grid": { + "file": "ui/loom_screen.json", + "type": "grid" + }, + "scroll_grid_panel": { + "file": "ui/loom_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "grid" + ] + }, + "scroll_grid_panel/grid": { + "file": "ui/loom_screen.json", + "type": "grid", + "extend": { + "name": "scroll_grid", + "namespace": "loom" + } + }, + "scroll_panel": { + "file": "ui/loom_screen.json", + "type": "panel", + "extend": { + "name": "container_scroll_panel", + "namespace": "common" + } + }, + "pattern_book_panel": { + "file": "ui/loom_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "bg", + "scroll_panel" + ] + }, + "pattern_book_panel/bg": { + "file": "ui/loom_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "pattern_book_panel/scroll_panel": { + "file": "ui/loom_screen.json", + "type": "panel", + "extend": { + "name": "scroll_panel", + "namespace": "loom" + } + }, + "result_slot_button": { + "file": "ui/loom_screen.json", + "type": "button", + "extend": { + "name": "no_coalesce_container_slot_button", + "namespace": "common" + } + }, + "input_item_slot": { + "file": "ui/loom_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "dye_item_slot": { + "file": "ui/loom_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "material_item_slot": { + "file": "ui/loom_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "result_item_slot": { + "file": "ui/loom_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "input_slots_stack_panel": { + "file": "ui/loom_screen.json", + "type": "stack_panel", + "children": [ + "input_item_slot", + "padding_1", + "dye_item_slot", + "padding_2", + "material_item_slot" + ] + }, + "input_slots_stack_panel/input_item_slot": { + "file": "ui/loom_screen.json", + "type": "input_panel", + "extend": { + "name": "input_item_slot", + "namespace": "loom" + } + }, + "input_slots_stack_panel/padding_1": { + "file": "ui/loom_screen.json", + "type": "panel" + }, + "input_slots_stack_panel/dye_item_slot": { + "file": "ui/loom_screen.json", + "type": "input_panel", + "extend": { + "name": "dye_item_slot", + "namespace": "loom" + } + }, + "input_slots_stack_panel/padding_2": { + "file": "ui/loom_screen.json", + "type": "panel" + }, + "input_slots_stack_panel/material_item_slot": { + "file": "ui/loom_screen.json", + "type": "input_panel", + "extend": { + "name": "material_item_slot", + "namespace": "loom" + } + }, + "result_banner_renderer": { + "file": "ui/loom_screen.json", + "type": "custom" + }, + "top_half_stack_panel": { + "file": "ui/loom_screen.json", + "type": "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": { + "file": "ui/loom_screen.json", + "type": "panel", + "children": [ + "input_slots_stack_panel" + ] + }, + "top_half_stack_panel/input_slots_holder/input_slots_stack_panel": { + "file": "ui/loom_screen.json", + "type": "stack_panel", + "extend": { + "name": "input_slots_stack_panel", + "namespace": "loom" + } + }, + "top_half_stack_panel/padding_1": { + "file": "ui/loom_screen.json", + "type": "panel" + }, + "top_half_stack_panel/arrow_holder": { + "file": "ui/loom_screen.json", + "type": "panel", + "children": [ + "arrow_icon" + ] + }, + "top_half_stack_panel/arrow_holder/arrow_icon": { + "file": "ui/loom_screen.json", + "type": "image", + "extend": { + "name": "arrow_icon", + "namespace": "loom" + } + }, + "top_half_stack_panel/padding_2": { + "file": "ui/loom_screen.json", + "type": "panel" + }, + "top_half_stack_panel/result_item_slot_holder": { + "file": "ui/loom_screen.json", + "type": "panel", + "children": [ + "result_item_slot" + ] + }, + "top_half_stack_panel/result_item_slot_holder/result_item_slot": { + "file": "ui/loom_screen.json", + "type": "input_panel", + "extend": { + "name": "result_item_slot", + "namespace": "loom" + } + }, + "top_half_stack_panel/padding_3": { + "file": "ui/loom_screen.json", + "type": "panel" + }, + "top_half_stack_panel/result_banner_outline": { + "file": "ui/loom_screen.json", + "type": "image", + "extend": { + "name": "banner_outline", + "namespace": "loom" + }, + "children": [ + "result_banner_renderer" + ] + }, + "top_half_stack_panel/result_banner_outline/result_banner_renderer": { + "file": "ui/loom_screen.json", + "type": "custom", + "extend": { + "name": "result_banner_renderer", + "namespace": "loom" + } + }, + "top_half_panel": { + "file": "ui/loom_screen.json", + "type": "panel", + "children": [ + "top_half_stack_panel" + ] + }, + "top_half_panel/top_half_stack_panel": { + "file": "ui/loom_screen.json", + "type": "stack_panel", + "extend": { + "name": "top_half_stack_panel", + "namespace": "loom" + } + }, + "right_panel": { + "file": "ui/loom_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "common_panel", + "loom_screen_inventory" + ] + }, + "right_panel/common_panel": { + "file": "ui/loom_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "right_panel/loom_screen_inventory": { + "file": "ui/loom_screen.json", + "type": "panel", + "children": [ + "loom_label", + "top_half_panel", + "inventory_panel_bottom_half_with_label", + "hotbar_grid" + ] + }, + "right_panel/loom_screen_inventory/loom_label": { + "file": "ui/loom_screen.json", + "type": "label", + "extend": { + "name": "loom_label", + "namespace": "loom" + } + }, + "right_panel/loom_screen_inventory/top_half_panel": { + "file": "ui/loom_screen.json", + "type": "panel", + "extend": { + "name": "top_half_panel", + "namespace": "loom" + } + }, + "right_panel/loom_screen_inventory/inventory_panel_bottom_half_with_label": { + "file": "ui/loom_screen.json", + "type": "panel", + "extend": { + "name": "inventory_panel_bottom_half_with_label", + "namespace": "common" + } + }, + "right_panel/loom_screen_inventory/hotbar_grid": { + "file": "ui/loom_screen.json", + "type": "grid", + "extend": { + "name": "hotbar_grid_template", + "namespace": "common" + } + }, + "help_button": { + "file": "ui/loom_screen.json", + "type": "button", + "extend": { + "name": "help_button", + "namespace": "common" + } + }, + "toolbar_panel": { + "file": "ui/loom_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "toolbar_background" + ] + }, + "toolbar_panel/toolbar_background": { + "file": "ui/loom_screen.json", + "type": "image", + "extend": { + "name": "toolbar_background", + "namespace": "loom" + }, + "children": [ + "toolbar_stack_panel" + ] + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel": { + "file": "ui/loom_screen.json", + "type": "stack_panel", + "children": [ + "padding_1", + "help_button_panel", + "close_button_panel", + "padding_2" + ] + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": { + "file": "ui/loom_screen.json", + "type": "panel" + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": { + "file": "ui/loom_screen.json", + "type": "panel", + "children": [ + "help_button" + ] + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": { + "file": "ui/loom_screen.json", + "type": "button", + "extend": { + "name": "help_button", + "namespace": "loom" + } + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": { + "file": "ui/loom_screen.json", + "type": "panel", + "children": [ + "close_button" + ] + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": { + "file": "ui/loom_screen.json", + "type": "button", + "extend": { + "name": "light_close_button", + "namespace": "common" + } + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": { + "file": "ui/loom_screen.json", + "type": "panel" + }, + "toolbar_anchor": { + "file": "ui/loom_screen.json", + "type": "panel", + "children": [ + "toolbar_panel" + ] + }, + "toolbar_anchor/toolbar_panel": { + "file": "ui/loom_screen.json", + "type": "input_panel", + "extend": { + "name": "toolbar_panel", + "namespace": "loom" + } + }, + "center_fold": { + "file": "ui/loom_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "center_bg" + ] + }, + "center_fold/center_bg": { + "file": "ui/loom_screen.json", + "type": "image" + }, + "screen_stack_panel": { + "file": "ui/loom_screen.json", + "type": "stack_panel", + "children": [ + "pattern_book_panel", + "center_fold", + "right_panel", + "toolbar_anchor" + ] + }, + "screen_stack_panel/pattern_book_panel": { + "file": "ui/loom_screen.json", + "type": "input_panel", + "extend": { + "name": "pattern_book_panel", + "namespace": "loom" + } + }, + "screen_stack_panel/center_fold": { + "file": "ui/loom_screen.json", + "type": "input_panel", + "extend": { + "name": "center_fold", + "namespace": "loom" + } + }, + "screen_stack_panel/right_panel": { + "file": "ui/loom_screen.json", + "type": "input_panel", + "extend": { + "name": "right_panel", + "namespace": "loom" + } + }, + "screen_stack_panel/toolbar_anchor": { + "file": "ui/loom_screen.json", + "type": "panel", + "extend": { + "name": "toolbar_anchor", + "namespace": "loom" + } + }, + "loom_panel": { + "file": "ui/loom_screen.json", + "type": "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": { + "file": "ui/loom_screen.json", + "type": "stack_panel", + "extend": { + "name": "screen_stack_panel", + "namespace": "loom" + } + }, + "loom_panel/container_gamepad_helpers": { + "file": "ui/loom_screen.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "loom_panel/selected_item_details_factory": { + "file": "ui/loom_screen.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "loom_panel/item_lock_notification_factory": { + "file": "ui/loom_screen.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "loom_panel/inventory_selected_icon_button": { + "file": "ui/loom_screen.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "loom_panel/inventory_take_progress_icon_button": { + "file": "ui/loom_screen.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "loom_panel/flying_item_renderer": { + "file": "ui/loom_screen.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + }, + "loom_screen": { + "file": "ui/loom_screen.json", + "type": "screen", + "extend": { + "name": "inventory_screen_common", + "namespace": "common" + } + } + }, + "loom_pocket": { + "vertical_arrow_icon": { + "file": "ui/loom_screen_pocket.json", + "type": "image" + }, + "banner_empty_image": { + "file": "ui/loom_screen_pocket.json", + "type": "image", + "extend": { + "name": "banner_empty_image", + "namespace": "loom" + } + }, + "dye_empty_image": { + "file": "ui/loom_screen_pocket.json", + "type": "image", + "extend": { + "name": "dye_empty_image", + "namespace": "loom" + } + }, + "pattern_item_empty_image": { + "file": "ui/loom_screen_pocket.json", + "type": "image", + "extend": { + "name": "pattern_item_empty_image", + "namespace": "loom" + } + }, + "chest_item_renderer": { + "file": "ui/loom_screen_pocket.json", + "type": "custom" + }, + "banner_item_renderer": { + "file": "ui/loom_screen_pocket.json", + "type": "custom" + }, + "loom_item_renderer": { + "file": "ui/loom_screen_pocket.json", + "type": "custom" + }, + "input_item_slot": { + "file": "ui/loom_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_container_item", + "namespace": "common" + } + }, + "dye_item_slot": { + "file": "ui/loom_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_container_item", + "namespace": "common" + } + }, + "material_item_slot": { + "file": "ui/loom_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_container_item", + "namespace": "common" + } + }, + "result_item_slot": { + "file": "ui/loom_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_container_item", + "namespace": "common" + } + }, + "right_panel": { + "file": "ui/loom_screen_pocket.json", + "type": "stack_panel", + "children": [ + "content", + "navigation_tabs_holder" + ] + }, + "right_panel/content": { + "file": "ui/loom_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "bg", + "loom_content_stack_panel" + ] + }, + "right_panel/content/bg": { + "file": "ui/loom_screen_pocket.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "right_panel/content/loom_content_stack_panel": { + "file": "ui/loom_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "loom_content_stack_panel", + "namespace": "loom_pocket" + } + }, + "right_panel/navigation_tabs_holder": { + "file": "ui/loom_screen_pocket.json", + "type": "panel", + "children": [ + "right_navigation_tabs" + ] + }, + "right_panel/navigation_tabs_holder/right_navigation_tabs": { + "file": "ui/loom_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "right_navigation_tabs", + "namespace": "loom_pocket" + } + }, + "right_tab_loom": { + "file": "ui/loom_screen_pocket.json", + "type": "panel", + "extend": { + "name": "pocket_tab_right", + "namespace": "common_tabs" + } + }, + "right_navigation_tabs": { + "file": "ui/loom_screen_pocket.json", + "type": "stack_panel", + "children": [ + "pocket_tab_close_and_help_button", + "fill", + "right_tab_loom" + ] + }, + "right_navigation_tabs/pocket_tab_close_and_help_button": { + "file": "ui/loom_screen_pocket.json", + "type": "image", + "extend": { + "name": "pocket_tab_close_and_help_button", + "namespace": "common_tabs" + } + }, + "right_navigation_tabs/fill": { + "file": "ui/loom_screen_pocket.json", + "type": "panel" + }, + "right_navigation_tabs/right_tab_loom": { + "file": "ui/loom_screen_pocket.json", + "type": "panel", + "extend": { + "name": "right_tab_loom", + "namespace": "loom_pocket" + } + }, + "input_slots_stack_panel": { + "file": "ui/loom_screen_pocket.json", + "type": "stack_panel", + "children": [ + "input_item_slot", + "padding_1", + "dye_item_slot", + "padding_2", + "material_item_slot" + ] + }, + "input_slots_stack_panel/input_item_slot": { + "file": "ui/loom_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "input_item_slot", + "namespace": "loom_pocket" + } + }, + "input_slots_stack_panel/padding_1": { + "file": "ui/loom_screen_pocket.json", + "type": "panel" + }, + "input_slots_stack_panel/dye_item_slot": { + "file": "ui/loom_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "dye_item_slot", + "namespace": "loom_pocket" + } + }, + "input_slots_stack_panel/padding_2": { + "file": "ui/loom_screen_pocket.json", + "type": "panel" + }, + "input_slots_stack_panel/material_item_slot": { + "file": "ui/loom_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "material_item_slot", + "namespace": "loom_pocket" + } + }, + "result_banner_outline": { + "file": "ui/loom_screen_pocket.json", + "type": "image", + "extend": { + "name": "banner_outline", + "namespace": "loom" + }, + "children": [ + "result_banner_renderer" + ] + }, + "result_banner_outline/result_banner_renderer": { + "file": "ui/loom_screen_pocket.json", + "type": "custom", + "extend": { + "name": "result_banner_renderer", + "namespace": "loom" + } + }, + "loom_content_stack_panel": { + "file": "ui/loom_screen_pocket.json", + "type": "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": { + "file": "ui/loom_screen_pocket.json", + "type": "panel", + "children": [ + "loom_label" + ] + }, + "loom_content_stack_panel/label_holder/loom_label": { + "file": "ui/loom_screen_pocket.json", + "type": "label", + "extend": { + "name": "loom_label", + "namespace": "loom" + } + }, + "loom_content_stack_panel/padding_1": { + "file": "ui/loom_screen_pocket.json", + "type": "panel" + }, + "loom_content_stack_panel/input_slots_holder": { + "file": "ui/loom_screen_pocket.json", + "type": "panel", + "children": [ + "input_slots_stack_panel" + ] + }, + "loom_content_stack_panel/input_slots_holder/input_slots_stack_panel": { + "file": "ui/loom_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "input_slots_stack_panel", + "namespace": "loom_pocket" + } + }, + "loom_content_stack_panel/padding_2": { + "file": "ui/loom_screen_pocket.json", + "type": "panel" + }, + "loom_content_stack_panel/banner_pattern_holder": { + "file": "ui/loom_screen_pocket.json", + "type": "panel", + "children": [ + "result_banner_outline" + ] + }, + "loom_content_stack_panel/banner_pattern_holder/result_banner_outline": { + "file": "ui/loom_screen_pocket.json", + "type": "image", + "extend": { + "name": "result_banner_outline", + "namespace": "loom_pocket" + } + }, + "loom_content_stack_panel/padding_3": { + "file": "ui/loom_screen_pocket.json", + "type": "panel" + }, + "loom_content_stack_panel/arrow_holder": { + "file": "ui/loom_screen_pocket.json", + "type": "panel", + "children": [ + "vertical_arrow_icon" + ] + }, + "loom_content_stack_panel/arrow_holder/vertical_arrow_icon": { + "file": "ui/loom_screen_pocket.json", + "type": "image", + "extend": { + "name": "vertical_arrow_icon", + "namespace": "loom_pocket" + } + }, + "loom_content_stack_panel/padding_4": { + "file": "ui/loom_screen_pocket.json", + "type": "panel" + }, + "loom_content_stack_panel/result_item_slot_holder": { + "file": "ui/loom_screen_pocket.json", + "type": "panel", + "children": [ + "result_item_slot" + ] + }, + "loom_content_stack_panel/result_item_slot_holder/result_item_slot": { + "file": "ui/loom_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "result_item_slot", + "namespace": "loom_pocket" + } + }, + "loom_content_stack_panel/padding_5": { + "file": "ui/loom_screen_pocket.json", + "type": "panel" + }, + "inventory_scroll_panel": { + "file": "ui/loom_screen_pocket.json", + "type": "panel", + "extend": { + "name": "container_scroll_panel", + "namespace": "common" + } + }, + "pattern_button": { + "file": "ui/loom_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pattern_button", + "namespace": "loom" + } + }, + "banner_pattern": { + "file": "ui/loom_screen_pocket.json", + "type": "custom", + "extend": { + "name": "banner_pattern", + "namespace": "loom" + } + }, + "pattern_scroll_panel": { + "file": "ui/loom_screen_pocket.json", + "type": "panel", + "extend": { + "name": "scroll_panel", + "namespace": "loom" + } + }, + "left_panel": { + "file": "ui/loom_screen_pocket.json", + "type": "stack_panel", + "children": [ + "gamepad_helpers_and_tabs_holder", + "content" + ] + }, + "left_panel/gamepad_helpers_and_tabs_holder": { + "file": "ui/loom_screen_pocket.json", + "type": "panel", + "children": [ + "tabs_left_gamepad_helpers", + "navigation_tabs_holder" + ] + }, + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": { + "file": "ui/loom_screen_pocket.json", + "type": "panel", + "extend": { + "name": "tabs_left_gamepad_helpers", + "namespace": "common" + } + }, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": { + "file": "ui/loom_screen_pocket.json", + "type": "panel", + "children": [ + "left_navigation_tabs" + ] + }, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": { + "file": "ui/loom_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "left_navigation_tabs", + "namespace": "loom_pocket" + } + }, + "left_panel/content": { + "file": "ui/loom_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "bg", + "inventory_scroll_panel", + "pattern_scroll_panel" + ] + }, + "left_panel/content/bg": { + "file": "ui/loom_screen_pocket.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "left_panel/content/inventory_scroll_panel": { + "file": "ui/loom_screen_pocket.json", + "type": "panel", + "extend": { + "name": "inventory_scroll_panel", + "namespace": "loom_pocket" + } + }, + "left_panel/content/pattern_scroll_panel": { + "file": "ui/loom_screen_pocket.json", + "type": "panel", + "extend": { + "name": "pattern_scroll_panel", + "namespace": "loom_pocket" + } + }, + "left_tab_patterns": { + "file": "ui/loom_screen_pocket.json", + "type": "panel", + "extend": { + "name": "pocket_tab_left", + "namespace": "common_tabs" + } + }, + "left_tab_inventory": { + "file": "ui/loom_screen_pocket.json", + "type": "panel", + "extend": { + "name": "pocket_tab_left", + "namespace": "common_tabs" + } + }, + "left_navigation_tabs": { + "file": "ui/loom_screen_pocket.json", + "type": "stack_panel", + "children": [ + "left_tab_patterns", + "padding", + "left_tab_inventory" + ] + }, + "left_navigation_tabs/left_tab_patterns": { + "file": "ui/loom_screen_pocket.json", + "type": "panel", + "extend": { + "name": "left_tab_patterns", + "namespace": "loom_pocket" + } + }, + "left_navigation_tabs/padding": { + "file": "ui/loom_screen_pocket.json", + "type": "panel" + }, + "left_navigation_tabs/left_tab_inventory": { + "file": "ui/loom_screen_pocket.json", + "type": "panel", + "extend": { + "name": "left_tab_inventory", + "namespace": "loom_pocket" + } + }, + "pocket_hotbar_and_content_panels": { + "file": "ui/loom_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "pocket_hotbar_and_content_panels", + "namespace": "common" + } + }, + "loom_panel": { + "file": "ui/loom_screen_pocket.json", + "type": "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": { + "file": "ui/loom_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "pocket_hotbar_and_content_panels", + "namespace": "loom_pocket" + } + }, + "loom_panel/container_gamepad_helpers": { + "file": "ui/loom_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "loom_panel/selected_item_details_factory": { + "file": "ui/loom_screen_pocket.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "loom_panel/item_lock_notification_factory": { + "file": "ui/loom_screen_pocket.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "loom_panel/inventory_selected_icon_button": { + "file": "ui/loom_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "loom_panel/inventory_take_progress_icon_button": { + "file": "ui/loom_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "loom_panel/flying_item_renderer": { + "file": "ui/loom_screen_pocket.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + } + }, + "manage_feed": { + "manage_feed_item_scrolling_panel": { + "file": "ui/manage_feed_screen.json", + "type": "panel", + "children": [ + "manage_feed_item_scrolling_panel_content" + ] + }, + "manage_feed_item_scrolling_panel/manage_feed_item_scrolling_panel_content": { + "file": "ui/manage_feed_screen.json", + "type": "panel", + "extend": { + "name": "manage_feed_item_scrolling_panel_content", + "namespace": "manage_feed" + } + }, + "manage_feed_item_scrolling_panel_content": { + "file": "ui/manage_feed_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "grid_panel": { + "file": "ui/manage_feed_screen.json", + "type": "stack_panel", + "children": [ + "top_spacing_gap", + "manage_feed_loading_grid_item", + "manage_feed_grid", + "spacing_gap2", + "pagination_panel" + ] + }, + "grid_panel/top_spacing_gap": { + "file": "ui/manage_feed_screen.json", + "type": "panel", + "extend": { + "name": "spacing_gap", + "namespace": "feed_common" + } + }, + "grid_panel/manage_feed_loading_grid_item": { + "file": "ui/manage_feed_screen.json", + "type": "panel", + "extend": { + "name": "manage_feed_loading_grid_item", + "namespace": "manage_feed" + } + }, + "grid_panel/manage_feed_grid": { + "file": "ui/manage_feed_screen.json", + "type": "grid", + "extend": { + "name": "manage_feed_grid", + "namespace": "manage_feed" + } + }, + "grid_panel/spacing_gap2": { + "file": "ui/manage_feed_screen.json", + "type": "panel", + "extend": { + "name": "spacing_gap", + "namespace": "feed_common" + } + }, + "grid_panel/pagination_panel": { + "file": "ui/manage_feed_screen.json", + "type": "panel", + "extend": { + "name": "pagination_panel", + "namespace": "manage_feed" + } + }, + "pagination_panel": { + "file": "ui/manage_feed_screen.json", + "type": "panel", + "extend": { + "name": "pagination_panel", + "namespace": "feed_common" + } + }, + "manage_feed_grid": { + "file": "ui/manage_feed_screen.json", + "type": "grid" + }, + "manage_feed_grid_item": { + "file": "ui/manage_feed_screen.json", + "type": "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": { + "file": "ui/manage_feed_screen.json", + "type": "panel", + "extend": { + "name": "image_panel", + "namespace": "manage_feed" + } + }, + "manage_feed_grid_item/manage_feed_buttons_panel": { + "file": "ui/manage_feed_screen.json", + "type": "stack_panel", + "extend": { + "name": "manage_feed_buttons_panel", + "namespace": "manage_feed" + } + }, + "manage_feed_grid_item/manage_feed_text_instance": { + "file": "ui/manage_feed_screen.json", + "type": "label", + "extend": { + "name": "item_label", + "namespace": "feed_common" + } + }, + "manage_feed_grid_item/feed_timesince_instance": { + "file": "ui/manage_feed_screen.json", + "type": "label", + "extend": { + "name": "item_label", + "namespace": "feed_common" + } + }, + "manage_feed_grid_item/nr_of_reports": { + "file": "ui/manage_feed_screen.json", + "type": "label", + "extend": { + "name": "item_label", + "namespace": "feed_common" + } + }, + "manage_feed_grid_item/manage_player_pic_panel": { + "file": "ui/manage_feed_screen.json", + "type": "panel", + "extend": { + "name": "manage_player_pic_panel", + "namespace": "manage_feed" + } + }, + "manage_feed_grid_item/manage_feed_gamertag_instance": { + "file": "ui/manage_feed_screen.json", + "type": "label", + "extend": { + "name": "item_label", + "namespace": "feed_common" + } + }, + "manage_feed_buttons_panel": { + "file": "ui/manage_feed_screen.json", + "type": "stack_panel", + "children": [ + "ignore_button", + "delete_button" + ] + }, + "manage_feed_buttons_panel/ignore_button": { + "file": "ui/manage_feed_screen.json", + "type": "button", + "extend": { + "name": "ignore_button", + "namespace": "manage_feed" + } + }, + "manage_feed_buttons_panel/delete_button": { + "file": "ui/manage_feed_screen.json", + "type": "button", + "extend": { + "name": "delete_button", + "namespace": "manage_feed" + } + }, + "manage_feed_loading_grid_item": { + "file": "ui/manage_feed_screen.json", + "type": "panel", + "children": [ + "loading_image_panel" + ] + }, + "manage_feed_loading_grid_item/loading_image_panel": { + "file": "ui/manage_feed_screen.json", + "type": "panel", + "extend": { + "name": "loading_image_panel", + "namespace": "manage_feed" + } + }, + "feed_buttons_panel_loading": { + "file": "ui/manage_feed_screen.json", + "type": "stack_panel", + "children": [ + "like_button_loading", + "spacing_gap1", + "comment_button_loading", + "spacing_gap2", + "options_button_loading" + ] + }, + "feed_buttons_panel_loading/like_button_loading": { + "file": "ui/manage_feed_screen.json", + "type": "unknown", + "extend": { + "name": "like_button_loading", + "namespace": "feed" + } + }, + "feed_buttons_panel_loading/spacing_gap1": { + "file": "ui/manage_feed_screen.json", + "type": "panel" + }, + "feed_buttons_panel_loading/comment_button_loading": { + "file": "ui/manage_feed_screen.json", + "type": "unknown", + "extend": { + "name": "comment_button_loading", + "namespace": "feed" + } + }, + "feed_buttons_panel_loading/spacing_gap2": { + "file": "ui/manage_feed_screen.json", + "type": "panel" + }, + "feed_buttons_panel_loading/options_button_loading": { + "file": "ui/manage_feed_screen.json", + "type": "unknown", + "extend": { + "name": "options_button_loading", + "namespace": "feed" + } + }, + "like_button_loading": { + "file": "ui/manage_feed_screen.json", + "type": "image" + }, + "comment_button_loading": { + "file": "ui/manage_feed_screen.json", + "type": "image" + }, + "options_button_loading": { + "file": "ui/manage_feed_screen.json", + "type": "image" + }, + "player_pic_panel_loading": { + "file": "ui/manage_feed_screen.json", + "type": "panel", + "children": [ + "player_gamer_pic_loading" + ] + }, + "player_pic_panel_loading/player_gamer_pic_loading": { + "file": "ui/manage_feed_screen.json", + "type": "unknown", + "extend": { + "name": "player_gamer_pic_loading", + "namespace": "feed" + } + }, + "player_gamer_pic_loading": { + "file": "ui/manage_feed_screen.json", + "type": "image" + }, + "loading_image_panel": { + "file": "ui/manage_feed_screen.json", + "type": "panel", + "children": [ + "progress_loading_bars", + "manage_feed_image_loading", + "no_feed_item_content" + ] + }, + "loading_image_panel/progress_loading_bars": { + "file": "ui/manage_feed_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "feed_common" + } + }, + "loading_image_panel/manage_feed_image_loading": { + "file": "ui/manage_feed_screen.json", + "type": "image", + "extend": { + "name": "manage_feed_image_loading", + "namespace": "manage_feed" + } + }, + "loading_image_panel/no_feed_item_content": { + "file": "ui/manage_feed_screen.json", + "type": "label", + "extend": { + "name": "no_feed_item_content", + "namespace": "feed_common" + } + }, + "manage_feed_image_loading": { + "file": "ui/manage_feed_screen.json", + "type": "image" + }, + "ignore_button": { + "file": "ui/manage_feed_screen.json", + "type": "button", + "extend": { + "name": "transparent_content_button", + "namespace": "common_buttons" + } + }, + "ignore_content_panel": { + "file": "ui/manage_feed_screen.json", + "type": "panel", + "children": [ + "ignore_label" + ] + }, + "ignore_content_panel/ignore_label": { + "file": "ui/manage_feed_screen.json", + "type": "label", + "extend": { + "name": "smooth_label", + "namespace": "feed_common" + } + }, + "delete_button": { + "file": "ui/manage_feed_screen.json", + "type": "button", + "extend": { + "name": "transparent_content_button", + "namespace": "common_buttons" + } + }, + "delete_content_panel": { + "file": "ui/manage_feed_screen.json", + "type": "panel", + "children": [ + "delete_label" + ] + }, + "delete_content_panel/delete_label": { + "file": "ui/manage_feed_screen.json", + "type": "label", + "extend": { + "name": "smooth_label", + "namespace": "feed_common" + } + }, + "manage_feed_image": { + "file": "ui/manage_feed_screen.json", + "type": "image" + }, + "manage_feed_image_content_panel": { + "file": "ui/manage_feed_screen.json", + "type": "panel", + "children": [ + "manage_feed_image", + "textpost_content" + ] + }, + "manage_feed_image_content_panel/manage_feed_image": { + "file": "ui/manage_feed_screen.json", + "type": "image", + "extend": { + "name": "manage_feed_image", + "namespace": "manage_feed" + } + }, + "manage_feed_image_content_panel/textpost_content": { + "file": "ui/manage_feed_screen.json", + "type": "label", + "extend": { + "name": "textpost_content", + "namespace": "manage_feed" + } + }, + "textpost_content": { + "file": "ui/manage_feed_screen.json", + "type": "label" + }, + "image_panel": { + "file": "ui/manage_feed_screen.json", + "type": "panel", + "children": [ + "manage_feed_image_content_panel" + ] + }, + "image_panel/manage_feed_image_content_panel": { + "file": "ui/manage_feed_screen.json", + "type": "panel", + "extend": { + "name": "manage_feed_image_content_panel", + "namespace": "manage_feed" + } + }, + "manage_player_pic_panel": { + "file": "ui/manage_feed_screen.json", + "type": "panel", + "children": [ + "manage_player_gamer_pic" + ] + }, + "manage_player_pic_panel/manage_player_gamer_pic": { + "file": "ui/manage_feed_screen.json", + "type": "custom", + "extend": { + "name": "manage_player_gamer_pic", + "namespace": "manage_feed" + } + }, + "manage_player_gamer_pic": { + "file": "ui/manage_feed_screen.json", + "type": "custom" + }, + "content": { + "file": "ui/manage_feed_screen.json", + "type": "panel", + "children": [ + "top_bar_gradient", + "gamepad_helpers", + "return_button", + "reported_items_label", + "manage_feed_item_scrolling_panel_instance" + ] + }, + "content/top_bar_gradient": { + "file": "ui/manage_feed_screen.json", + "type": "custom", + "extend": { + "name": "top_bar_gradient", + "namespace": "feed_common" + } + }, + "content/gamepad_helpers": { + "file": "ui/manage_feed_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helpers", + "namespace": "feed_common" + } + }, + "content/return_button": { + "file": "ui/manage_feed_screen.json", + "type": "button", + "extend": { + "name": "return_button", + "namespace": "feed_common" + } + }, + "content/reported_items_label": { + "file": "ui/manage_feed_screen.json", + "type": "label", + "extend": { + "name": "title_label", + "namespace": "feed_common" + } + }, + "content/manage_feed_item_scrolling_panel_instance": { + "file": "ui/manage_feed_screen.json", + "type": "panel", + "extend": { + "name": "manage_feed_item_scrolling_panel", + "namespace": "manage_feed" + } + }, + "manage_feed_screen": { + "file": "ui/manage_feed_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "manage_feed_screen_content": { + "file": "ui/manage_feed_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + }, + "children": [ + "transparent_background", + "container" + ] + }, + "manage_feed_screen_content/transparent_background": { + "file": "ui/manage_feed_screen.json", + "type": "image", + "extend": { + "name": "transparent_background", + "namespace": "feed_common" + } + }, + "manage_feed_screen_content/container": { + "file": "ui/manage_feed_screen.json", + "type": "panel", + "children": [ + "content" + ] + }, + "manage_feed_screen_content/container/content": { + "file": "ui/manage_feed_screen.json", + "type": "panel", + "extend": { + "name": "content", + "namespace": "manage_feed" + } + } + }, + "manifest_validation": { + "clipboard_icon": { + "file": "ui/manifest_validation_screen.json", + "type": "image" + }, + "clipboard_icon_wrapper": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "children": [ + "icon" + ] + }, + "clipboard_icon_wrapper/icon": { + "file": "ui/manifest_validation_screen.json", + "type": "image", + "extend": { + "name": "clipboard_icon", + "namespace": "manifest_validation" + } + }, + "trash_icon": { + "file": "ui/manifest_validation_screen.json", + "type": "image" + }, + "trash_icon_wrapper": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "children": [ + "icon", + "progress_loading_bars" + ] + }, + "trash_icon_wrapper/icon": { + "file": "ui/manifest_validation_screen.json", + "type": "image", + "extend": { + "name": "trash_icon", + "namespace": "manifest_validation" + } + }, + "trash_icon_wrapper/progress_loading_bars": { + "file": "ui/manifest_validation_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "manifest_validation" + } + }, + "refresh_icon": { + "file": "ui/manifest_validation_screen.json", + "type": "image" + }, + "refresh_icon_wrapper": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "children": [ + "icon", + "progress_loading_bars" + ] + }, + "refresh_icon_wrapper/icon": { + "file": "ui/manifest_validation_screen.json", + "type": "image", + "extend": { + "name": "refresh_icon", + "namespace": "manifest_validation" + } + }, + "refresh_icon_wrapper/progress_loading_bars": { + "file": "ui/manifest_validation_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "manifest_validation" + } + }, + "section_divider": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "children": [ + "divider_image" + ] + }, + "section_divider/divider_image": { + "file": "ui/manifest_validation_screen.json", + "type": "image" + }, + "text_label": { + "file": "ui/manifest_validation_screen.json", + "type": "label" + }, + "icon_image": { + "file": "ui/manifest_validation_screen.json", + "type": "image" + }, + "progress_loading_bars": { + "file": "ui/manifest_validation_screen.json", + "type": "image" + }, + "background": { + "file": "ui/manifest_validation_screen.json", + "type": "image" + }, + "black_background_fill": { + "file": "ui/manifest_validation_screen.json", + "type": "image", + "extend": { + "name": "black_image", + "namespace": "resource_packs" + } + }, + "error_pack_secondary_layout": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "children": [ + "black" + ] + }, + "error_pack_secondary_layout/black": { + "file": "ui/manifest_validation_screen.json", + "type": "image", + "extend": { + "name": "background", + "namespace": "manifest_validation" + }, + "children": [ + "stack_panel" + ] + }, + "error_pack_secondary_layout/black/stack_panel": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "children": [ + "stack_panel", + "secondary_panel" + ] + }, + "error_pack_secondary_layout/black/stack_panel/stack_panel": { + "file": "ui/manifest_validation_screen.json", + "type": "stack_panel", + "children": [ + "icon_background", + "pack_info", + "button_panel", + "pad" + ] + }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background": { + "file": "ui/manifest_validation_screen.json", + "type": "image", + "extend": { + "name": "black_background_fill", + "namespace": "manifest_validation" + }, + "children": [ + "icon" + ] + }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background/icon": { + "file": "ui/manifest_validation_screen.json", + "type": "image", + "extend": { + "name": "icon_image", + "namespace": "manifest_validation" + } + }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "children": [ + "top", + "bottom" + ] + }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top": { + "file": "ui/manifest_validation_screen.json", + "type": "stack_panel", + "children": [ + "title", + "padding", + "pack_size" + ] + }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/title": { + "file": "ui/manifest_validation_screen.json", + "type": "label", + "extend": { + "name": "text_label", + "namespace": "manifest_validation" + } + }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/padding": { + "file": "ui/manifest_validation_screen.json", + "type": "panel" + }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/pack_size": { + "file": "ui/manifest_validation_screen.json", + "type": "label", + "extend": { + "name": "text_label", + "namespace": "manifest_validation" + } + }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom": { + "file": "ui/manifest_validation_screen.json", + "type": "stack_panel", + "children": [ + "description", + "padding" + ] + }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/description": { + "file": "ui/manifest_validation_screen.json", + "type": "label", + "extend": { + "name": "text_label", + "namespace": "manifest_validation" + } + }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/padding": { + "file": "ui/manifest_validation_screen.json", + "type": "panel" + }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel": { + "file": "ui/manifest_validation_screen.json", + "type": "stack_panel", + "children": [ + "top_pad", + "refresh", + "pad", + "delete" + ] + }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/top_pad": { + "file": "ui/manifest_validation_screen.json", + "type": "panel" + }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "children": [ + "button" + ] + }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh/button": { + "file": "ui/manifest_validation_screen.json", + "type": "button", + "extend": { + "name": "refresh_text_button", + "namespace": "manifest_validation" + } + }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/pad": { + "file": "ui/manifest_validation_screen.json", + "type": "panel" + }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "children": [ + "button" + ] + }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete/button": { + "file": "ui/manifest_validation_screen.json", + "type": "button", + "extend": { + "name": "delete_text_button", + "namespace": "manifest_validation" + } + }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pad": { + "file": "ui/manifest_validation_screen.json", + "type": "panel" + }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel": { + "file": "ui/manifest_validation_screen.json", + "type": "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": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "extend": { + "name": "section_divider", + "namespace": "manifest_validation" + } + }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel": { + "file": "ui/manifest_validation_screen.json", + "type": "stack_panel", + "children": [ + "title_text", + "space", + "offset" + ] + }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/title_text": { + "file": "ui/manifest_validation_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/space": { + "file": "ui/manifest_validation_screen.json", + "type": "panel" + }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "children": [ + "title" + ] + }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset/title": { + "file": "ui/manifest_validation_screen.json", + "type": "label", + "extend": { + "name": "text_label", + "namespace": "manifest_validation" + } + }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_0": { + "file": "ui/manifest_validation_screen.json", + "type": "panel" + }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_1": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "extend": { + "name": "section_divider", + "namespace": "manifest_validation" + } + }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel": { + "file": "ui/manifest_validation_screen.json", + "type": "stack_panel", + "children": [ + "version_text", + "space", + "offset" + ] + }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/version_text": { + "file": "ui/manifest_validation_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/space": { + "file": "ui/manifest_validation_screen.json", + "type": "panel" + }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "children": [ + "version" + ] + }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset/version": { + "file": "ui/manifest_validation_screen.json", + "type": "label", + "extend": { + "name": "text_label", + "namespace": "manifest_validation" + } + }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_1": { + "file": "ui/manifest_validation_screen.json", + "type": "panel" + }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_2": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "extend": { + "name": "section_divider", + "namespace": "manifest_validation" + } + }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel": { + "file": "ui/manifest_validation_screen.json", + "type": "stack_panel", + "children": [ + "path_text", + "space", + "offset" + ] + }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/path_text": { + "file": "ui/manifest_validation_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/space": { + "file": "ui/manifest_validation_screen.json", + "type": "panel" + }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "children": [ + "description" + ] + }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset/description": { + "file": "ui/manifest_validation_screen.json", + "type": "label", + "extend": { + "name": "text_label", + "namespace": "manifest_validation" + } + }, + "error_pack_content_layout": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "children": [ + "black" + ] + }, + "error_pack_content_layout/black": { + "file": "ui/manifest_validation_screen.json", + "type": "image", + "extend": { + "name": "background", + "namespace": "manifest_validation" + }, + "children": [ + "error_panel" + ] + }, + "error_pack_content_layout/black/error_panel": { + "file": "ui/manifest_validation_screen.json", + "type": "stack_panel", + "children": [ + "error_header_panel", + "padding_0", + "error_text_panel" + ] + }, + "error_pack_content_layout/black/error_panel/error_header_panel": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "children": [ + "error_type_panel", + "button" + ] + }, + "error_pack_content_layout/black/error_panel/error_header_panel/error_type_panel": { + "file": "ui/manifest_validation_screen.json", + "type": "label" + }, + "error_pack_content_layout/black/error_panel/error_header_panel/button": { + "file": "ui/manifest_validation_screen.json", + "type": "button", + "extend": { + "name": "clipboard_button", + "namespace": "manifest_validation" + } + }, + "error_pack_content_layout/black/error_panel/padding_0": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "extend": { + "name": "section_divider", + "namespace": "manifest_validation" + } + }, + "error_pack_content_layout/black/error_panel/error_text_panel": { + "file": "ui/manifest_validation_screen.json", + "type": "stack_panel", + "children": [ + "error_text", + "space", + "offset" + ] + }, + "error_pack_content_layout/black/error_panel/error_text_panel/error_text": { + "file": "ui/manifest_validation_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "error_pack_content_layout/black/error_panel/error_text_panel/space": { + "file": "ui/manifest_validation_screen.json", + "type": "panel" + }, + "error_pack_content_layout/black/error_panel/error_text_panel/offset": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "children": [ + "error_label" + ] + }, + "error_pack_content_layout/black/error_panel/error_text_panel/offset/error_label": { + "file": "ui/manifest_validation_screen.json", + "type": "label" + }, + "delete_button": { + "file": "ui/manifest_validation_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "delete_text_button": { + "file": "ui/manifest_validation_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "clipboard_button": { + "file": "ui/manifest_validation_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "refresh_button": { + "file": "ui/manifest_validation_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "refresh_text_button": { + "file": "ui/manifest_validation_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "pack_secondary_info": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "children": [ + "layout" + ] + }, + "pack_secondary_info/layout": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "extend": { + "name": "error_pack_secondary_layout", + "namespace": "manifest_validation" + } + }, + "error_content_grid": { + "file": "ui/manifest_validation_screen.json", + "type": "stack_panel" + }, + "pack_error_item": { + "file": "ui/manifest_validation_screen.json", + "type": "stack_panel", + "children": [ + "secondary", + "error_header", + "error" + ] + }, + "pack_error_item/secondary": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "extend": { + "name": "pack_secondary_info", + "namespace": "manifest_validation" + } + }, + "pack_error_item/error_header": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "children": [ + "error_text" + ] + }, + "pack_error_item/error_header/error_text": { + "file": "ui/manifest_validation_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "pack_error_item/error": { + "file": "ui/manifest_validation_screen.json", + "type": "stack_panel", + "extend": { + "name": "error_content_grid", + "namespace": "manifest_validation" + } + }, + "pack_error_group": { + "file": "ui/manifest_validation_screen.json", + "type": "stack_panel", + "children": [ + "top_padding", + "errors", + "padding" + ] + }, + "pack_error_group/top_padding": { + "file": "ui/manifest_validation_screen.json", + "type": "panel" + }, + "pack_error_group/errors": { + "file": "ui/manifest_validation_screen.json", + "type": "stack_panel", + "extend": { + "name": "pack_error_item", + "namespace": "manifest_validation" + } + }, + "pack_error_group/padding": { + "file": "ui/manifest_validation_screen.json", + "type": "panel" + }, + "common_scrolling_panel": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "common_content": { + "file": "ui/manifest_validation_screen.json", + "type": "input_panel" + }, + "scrolling_offsets": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "extend": { + "name": "common_scrolling_panel", + "namespace": "manifest_validation" + } + }, + "manifest_validation_scroll_content": { + "file": "ui/manifest_validation_screen.json", + "type": "input_panel", + "extend": { + "name": "common_content", + "namespace": "manifest_validation" + }, + "children": [ + "scrolling_panel" + ] + }, + "manifest_validation_scroll_content/scrolling_panel": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_offsets", + "namespace": "manifest_validation" + } + }, + "common_scroll_panel": { + "file": "ui/manifest_validation_screen.json", + "type": "panel" + }, + "manifest_validation_scroll_panel": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "extend": { + "name": "common_scroll_panel", + "namespace": "manifest_validation" + }, + "children": [ + "pack_error_group" + ] + }, + "manifest_validation_scroll_panel/pack_error_group": { + "file": "ui/manifest_validation_screen.json", + "type": "stack_panel", + "extend": { + "name": "pack_error_group", + "namespace": "manifest_validation" + } + }, + "manifest_validation_screen": { + "file": "ui/manifest_validation_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "manifest_validation_screen_content": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "children": [ + "background" + ] + }, + "manifest_validation_screen_content/background": { + "file": "ui/manifest_validation_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + } + }, + "sdl_label": { + "sdl_label_factory": { + "file": "ui/marketplace_sdl/sdl_label.json", + "type": "stack_panel" + }, + "sdl_label": { + "file": "ui/marketplace_sdl/sdl_label.json", + "type": "label" + }, + "sdl_mc_ten_label": { + "file": "ui/marketplace_sdl/sdl_label.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + } + }, + "sdl_dropdowns": { + "sdl_dropdown_rows": { + "file": "ui/marketplace_sdl/sdl_dropdowns.json", + "type": "panel", + "children": [ + "container_panel" + ] + }, + "sdl_dropdown_rows/container_panel": { + "file": "ui/marketplace_sdl/sdl_dropdowns.json", + "type": "stack_panel", + "children": [ + "toggle", + "pad" + ] + }, + "sdl_dropdown_rows/container_panel/toggle": { + "file": "ui/marketplace_sdl/sdl_dropdowns.json", + "type": "panel", + "extend": { + "name": "sdl_rows_toggle", + "namespace": "sdl_dropdowns" + } + }, + "sdl_dropdown_rows/container_panel/pad": { + "file": "ui/marketplace_sdl/sdl_dropdowns.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "sdl_rows_toggle": { + "file": "ui/marketplace_sdl/sdl_dropdowns.json", + "type": "panel", + "extend": { + "name": "light_content_toggle", + "namespace": "common_toggles" + } + } + }, + "sdl_image_row": { + "image_row_factory": { + "file": "ui/marketplace_sdl/sdl_image_row.json", + "type": "stack_panel" + }, + "buffer_panel": { + "file": "ui/marketplace_sdl/sdl_image_row.json", + "type": "panel" + }, + "single_image": { + "file": "ui/marketplace_sdl/sdl_image_row.json", + "type": "panel", + "children": [ + "image_with_border", + "image_selector" + ] + }, + "single_image/image_with_border": { + "file": "ui/marketplace_sdl/sdl_image_row.json", + "type": "panel", + "children": [ + "screenshot_image", + "dark_border", + "progress_loading" + ] + }, + "single_image/image_with_border/screenshot_image": { + "file": "ui/marketplace_sdl/sdl_image_row.json", + "type": "image" + }, + "single_image/image_with_border/dark_border": { + "file": "ui/marketplace_sdl/sdl_image_row.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "single_image/image_with_border/progress_loading": { + "file": "ui/marketplace_sdl/sdl_image_row.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "single_image/image_selector": { + "file": "ui/marketplace_sdl/sdl_image_row.json", + "type": "button", + "extend": { + "name": "tts_activate_sibling", + "namespace": "common" + } + }, + "double_image": { + "file": "ui/marketplace_sdl/sdl_image_row.json", + "type": "panel", + "extend": { + "name": "single_image", + "namespace": "sdl_image_row" + } + }, + "triple_image_with_buffer": { + "file": "ui/marketplace_sdl/sdl_image_row.json", + "type": "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": { + "file": "ui/marketplace_sdl/sdl_image_row.json", + "type": "panel" + }, + "triple_image_with_buffer/buffer_panel_in_2": { + "file": "ui/marketplace_sdl/sdl_image_row.json", + "type": "panel" + }, + "triple_image_with_buffer/triple_image": { + "file": "ui/marketplace_sdl/sdl_image_row.json", + "type": "panel", + "extend": { + "name": "single_image", + "namespace": "sdl_image_row" + } + }, + "triple_image_with_buffer/buffer_panel_out_1": { + "file": "ui/marketplace_sdl/sdl_image_row.json", + "type": "panel" + }, + "triple_image_with_buffer/buffer_panel_out_2": { + "file": "ui/marketplace_sdl/sdl_image_row.json", + "type": "panel" + } + }, + "sdl_text_row": { + "sdl_text_row_factory": { + "file": "ui/marketplace_sdl/sdl_text_row.json", + "type": "stack_panel", + "extend": { + "name": "sdl_label_factory", + "namespace": "sdl_label" + } + }, + "sdl_header_component_factory": { + "file": "ui/marketplace_sdl/sdl_text_row.json", + "type": "stack_panel", + "extend": { + "name": "sdl_label_factory", + "namespace": "sdl_label" + } + }, + "label_button": { + "file": "ui/marketplace_sdl/sdl_text_row.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + } + }, + "sdl_header_component_panel": { + "file": "ui/marketplace_sdl/sdl_text_row.json", + "type": "panel", + "children": [ + "header_background", + "header_internals", + "header_highlight", + "text_row_header_text" + ] + }, + "sdl_header_component_panel/header_background": { + "file": "ui/marketplace_sdl/sdl_text_row.json", + "type": "image", + "extend": { + "name": "store_description_background", + "namespace": "common_store" + } + }, + "sdl_header_component_panel/header_internals": { + "file": "ui/marketplace_sdl/sdl_text_row.json", + "type": "button", + "extend": { + "name": "tts_activate_sibling", + "namespace": "common" + } + }, + "sdl_header_component_panel/header_highlight": { + "file": "ui/marketplace_sdl/sdl_text_row.json", + "type": "image" + }, + "sdl_header_component_panel/text_row_header_text": { + "file": "ui/marketplace_sdl/sdl_text_row.json", + "type": "stack_panel", + "extend": { + "name": "sdl_header_component_factory", + "namespace": "sdl_text_row" + } + }, + "sdl_text_row_component_panel": { + "file": "ui/marketplace_sdl/sdl_text_row.json", + "type": "panel", + "children": [ + "text_background", + "text_row_selector", + "text_row_background", + "text_row_component_text" + ] + }, + "sdl_text_row_component_panel/text_background": { + "file": "ui/marketplace_sdl/sdl_text_row.json", + "type": "image", + "extend": { + "name": "store_description_background", + "namespace": "common_store" + } + }, + "sdl_text_row_component_panel/text_row_selector": { + "file": "ui/marketplace_sdl/sdl_text_row.json", + "type": "button", + "extend": { + "name": "tts_activate_sibling", + "namespace": "common" + } + }, + "sdl_text_row_component_panel/text_row_background": { + "file": "ui/marketplace_sdl/sdl_text_row.json", + "type": "image" + }, + "sdl_text_row_component_panel/text_row_component_text": { + "file": "ui/marketplace_sdl/sdl_text_row.json", + "type": "stack_panel", + "extend": { + "name": "sdl_text_row_factory", + "namespace": "sdl_text_row" + } + }, + "solo_text_row": { + "file": "ui/marketplace_sdl/sdl_text_row.json", + "type": "stack_panel", + "children": [ + "buffer_panel_front", + "headercomp_and_textcomp_panel", + "buffer_panel_back" + ] + }, + "solo_text_row/buffer_panel_front": { + "file": "ui/marketplace_sdl/sdl_text_row.json", + "type": "panel" + }, + "solo_text_row/headercomp_and_textcomp_panel": { + "file": "ui/marketplace_sdl/sdl_text_row.json", + "type": "stack_panel", + "children": [ + "text_row_header_text_panel", + "text_row_text_panel" + ] + }, + "solo_text_row/headercomp_and_textcomp_panel/text_row_header_text_panel": { + "file": "ui/marketplace_sdl/sdl_text_row.json", + "type": "panel", + "extend": { + "name": "sdl_header_component_panel", + "namespace": "sdl_text_row" + } + }, + "solo_text_row/headercomp_and_textcomp_panel/text_row_text_panel": { + "file": "ui/marketplace_sdl/sdl_text_row.json", + "type": "panel", + "extend": { + "name": "sdl_text_row_component_panel", + "namespace": "sdl_text_row" + } + }, + "solo_text_row/buffer_panel_back": { + "file": "ui/marketplace_sdl/sdl_text_row.json", + "type": "panel" + } + }, + "mob_effect": { + "effect_background": { + "file": "ui/mob_effect_screen.json", + "type": "panel", + "children": [ + "default_background", + "ambient_background" + ] + }, + "effect_background/default_background": { + "file": "ui/mob_effect_screen.json", + "type": "image" + }, + "effect_background/ambient_background": { + "file": "ui/mob_effect_screen.json", + "type": "image" + }, + "main_background": { + "file": "ui/mob_effect_screen.json", + "type": "image" + }, + "button_background": { + "file": "ui/mob_effect_screen.json", + "type": "image" + }, + "effect_name": { + "file": "ui/mob_effect_screen.json", + "type": "label" + }, + "effect_timer": { + "file": "ui/mob_effect_screen.json", + "type": "label" + }, + "effect_icon": { + "file": "ui/mob_effect_screen.json", + "type": "image" + }, + "mob_effect_grid_panel": { + "file": "ui/mob_effect_screen.json", + "type": "panel", + "children": [ + "mob_effect_grid" + ] + }, + "mob_effect_grid_panel/mob_effect_grid": { + "file": "ui/mob_effect_screen.json", + "type": "grid", + "extend": { + "name": "mob_effect_grid", + "namespace": "mob_effect" + } + }, + "mob_effect_grid": { + "file": "ui/mob_effect_screen.json", + "type": "grid" + }, + "mob_effect_grid_item": { + "file": "ui/mob_effect_screen.json", + "type": "panel", + "children": [ + "bg", + "name", + "timer", + "icon" + ] + }, + "mob_effect_grid_item/bg": { + "file": "ui/mob_effect_screen.json", + "type": "panel", + "extend": { + "name": "effect_background", + "namespace": "mob_effect" + } + }, + "mob_effect_grid_item/name": { + "file": "ui/mob_effect_screen.json", + "type": "label", + "extend": { + "name": "effect_name", + "namespace": "mob_effect" + } + }, + "mob_effect_grid_item/timer": { + "file": "ui/mob_effect_screen.json", + "type": "label", + "extend": { + "name": "effect_timer", + "namespace": "mob_effect" + } + }, + "mob_effect_grid_item/icon": { + "file": "ui/mob_effect_screen.json", + "type": "image", + "extend": { + "name": "effect_icon", + "namespace": "mob_effect" + } + }, + "mob_effect_list_content_panel": { + "file": "ui/mob_effect_screen.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "mob_effect_list_content_panel/scrolling_panel": { + "file": "ui/mob_effect_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "mob_effect_screen_close_button": { + "file": "ui/mob_effect_screen.json", + "type": "button", + "extend": { + "name": "legacy_pocket_close_button", + "namespace": "common" + } + }, + "close_button_panel": { + "file": "ui/mob_effect_screen.json", + "type": "panel", + "children": [ + "bg", + "close_button" + ] + }, + "close_button_panel/bg": { + "file": "ui/mob_effect_screen.json", + "type": "image", + "extend": { + "name": "button_background", + "namespace": "mob_effect" + } + }, + "close_button_panel/close_button": { + "file": "ui/mob_effect_screen.json", + "type": "button", + "extend": { + "name": "mob_effect_screen_close_button", + "namespace": "mob_effect" + } + }, + "mob_effect_content": { + "file": "ui/mob_effect_screen.json", + "type": "panel", + "children": [ + "bg", + "close_panel", + "content_panel" + ] + }, + "mob_effect_content/bg": { + "file": "ui/mob_effect_screen.json", + "type": "image", + "extend": { + "name": "main_background", + "namespace": "mob_effect" + } + }, + "mob_effect_content/close_panel": { + "file": "ui/mob_effect_screen.json", + "type": "panel", + "extend": { + "name": "close_button_panel", + "namespace": "mob_effect" + } + }, + "mob_effect_content/content_panel": { + "file": "ui/mob_effect_screen.json", + "type": "panel", + "extend": { + "name": "mob_effect_list_content_panel", + "namespace": "mob_effect" + } + }, + "main_screen": { + "file": "ui/mob_effect_screen.json", + "type": "panel", + "children": [ + "main_screen" + ] + }, + "main_screen/main_screen": { + "file": "ui/mob_effect_screen.json", + "type": "panel", + "extend": { + "name": "mob_effect_content", + "namespace": "mob_effect" + } + }, + "mob_effect_screen": { + "file": "ui/mob_effect_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + } + }, + "non_xbl_user_management": { + "black_tint_image": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "image" + }, + "modal_title_text": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "label" + }, + "modal_label_text": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "stack_panel", + "children": [ + "padding", + "text" + ] + }, + "modal_label_text/padding": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "panel" + }, + "modal_label_text/text": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "label" + }, + "modal_label_panel": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "modal_left_button": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "modal_middle_button": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "modal_rightcancel_button": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "three_buttons_panel": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "panel", + "children": [ + "left", + "middle", + "right" + ] + }, + "three_buttons_panel/left": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "button", + "extend": { + "name": "modal_left_button", + "namespace": "non_xbl_user_management" + } + }, + "three_buttons_panel/middle": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "button", + "extend": { + "name": "modal_middle_button", + "namespace": "non_xbl_user_management" + } + }, + "three_buttons_panel/right": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "button", + "extend": { + "name": "modal_rightcancel_button", + "namespace": "non_xbl_user_management" + } + }, + "two_buttons_panel": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "panel", + "children": [ + "left", + "right" + ] + }, + "two_buttons_panel/left": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "button", + "extend": { + "name": "modal_left_button", + "namespace": "non_xbl_user_management" + } + }, + "two_buttons_panel/right": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "button", + "extend": { + "name": "modal_rightcancel_button", + "namespace": "non_xbl_user_management" + } + }, + "single_button_panel": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "panel", + "children": [ + "left" + ] + }, + "single_button_panel/left": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "button", + "extend": { + "name": "modal_middle_button", + "namespace": "non_xbl_user_management" + } + }, + "modal_dialog_with_buttons": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "panel", + "children": [ + "background_with_buttons", + "title", + "text_with_buttons", + "button_panel" + ] + }, + "modal_dialog_with_buttons/background_with_buttons": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "modal_dialog_with_buttons/title": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "label", + "extend": { + "name": "modal_title_text", + "namespace": "non_xbl_user_management" + } + }, + "modal_dialog_with_buttons/text_with_buttons": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "panel", + "extend": { + "name": "modal_label_panel", + "namespace": "non_xbl_user_management" + } + }, + "modal_dialog_with_buttons/button_panel": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "unknown" + }, + "modal_input_panel": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "input_panel", + "extend": { + "name": "input_panel", + "namespace": "common" + }, + "children": [ + "black_tint_image" + ] + }, + "modal_input_panel/black_tint_image": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "image", + "extend": { + "name": "black_tint_image", + "namespace": "non_xbl_user_management" + } + }, + "user_confirm_dialog_screen_content": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "panel", + "children": [ + "modal_input" + ] + }, + "user_confirm_dialog_screen_content/modal_input": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "input_panel", + "extend": { + "name": "modal_input_panel", + "namespace": "non_xbl_user_management" + }, + "children": [ + "modal_bg_buttons" + ] + }, + "user_confirm_dialog_screen_content/modal_input/modal_bg_buttons": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "panel", + "extend": { + "name": "modal_dialog_with_buttons", + "namespace": "non_xbl_user_management" + } + }, + "user_confirm_dialog_screen": { + "file": "ui/non_xbl_user_management_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + } + }, + "npc_interact": { + "multiline_text_edit_control": { + "file": "ui/npc_interact_screen.json", + "type": "edit_box", + "extend": { + "name": "multiline_text_edit_box", + "namespace": "common" + } + }, + "text_edit_control": { + "file": "ui/npc_interact_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "label_padding": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "main_stack_panel": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel" + }, + "skin_button": { + "file": "ui/npc_interact_screen.json", + "type": "button" + }, + "skin_model": { + "file": "ui/npc_interact_screen.json", + "type": "custom" + }, + "skin_model_clipper": { + "file": "ui/npc_interact_screen.json", + "type": "panel" + }, + "skins_grid_item": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "children": [ + "clip", + "button", + "selectFrame" + ] + }, + "skins_grid_item/clip": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "skin_model_clipper", + "namespace": "npc_interact" + }, + "children": [ + "model" + ] + }, + "skins_grid_item/clip/model": { + "file": "ui/npc_interact_screen.json", + "type": "custom", + "extend": { + "name": "skin_model", + "namespace": "npc_interact" + } + }, + "skins_grid_item/button": { + "file": "ui/npc_interact_screen.json", + "type": "button", + "extend": { + "name": "skin_button", + "namespace": "npc_interact" + } + }, + "skins_grid_item/selectFrame": { + "file": "ui/npc_interact_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "skins_grid": { + "file": "ui/npc_interact_screen.json", + "type": "grid" + }, + "cycle_pack_button": { + "file": "ui/npc_interact_screen.json", + "type": "button", + "extend": { + "name": "light_glyph_button", + "namespace": "common_buttons" + } + }, + "cycle_pack_left_button": { + "file": "ui/npc_interact_screen.json", + "type": "button", + "extend": { + "name": "cycle_pack_button", + "namespace": "npc_interact" + } + }, + "cycle_pack_right_button": { + "file": "ui/npc_interact_screen.json", + "type": "button", + "extend": { + "name": "cycle_pack_button", + "namespace": "npc_interact" + } + }, + "banner_fill": { + "file": "ui/npc_interact_screen.json", + "type": "image" + }, + "skin_picker": { + "file": "ui/npc_interact_screen.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "npc_interact" + }, + "children": [ + "left", + "sg", + "right" + ] + }, + "skin_picker/left": { + "file": "ui/npc_interact_screen.json", + "type": "button", + "extend": { + "name": "cycle_pack_left_button", + "namespace": "npc_interact" + } + }, + "skin_picker/sg": { + "file": "ui/npc_interact_screen.json", + "type": "grid", + "extend": { + "name": "skins_grid", + "namespace": "npc_interact" + } + }, + "skin_picker/right": { + "file": "ui/npc_interact_screen.json", + "type": "button", + "extend": { + "name": "cycle_pack_right_button", + "namespace": "npc_interact" + } + }, + "name_edit": { + "file": "ui/npc_interact_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_control", + "namespace": "npc_interact" + } + }, + "advanced_button": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "children": [ + "button" + ] + }, + "advanced_button/button": { + "file": "ui/npc_interact_screen.json", + "type": "button", + "extend": { + "name": "light_text_form_fitting_button", + "namespace": "common_buttons" + } + }, + "dialog_button": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "children": [ + "button" + ] + }, + "dialog_button/button": { + "file": "ui/npc_interact_screen.json", + "type": "button", + "extend": { + "name": "light_text_form_fitting_button", + "namespace": "common_buttons" + } + }, + "basic_stack_panel": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_stack_panel", + "namespace": "npc_interact" + }, + "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": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "basic_stack_panel/name_label": { + "file": "ui/npc_interact_screen.json", + "type": "label", + "extend": { + "name": "light_label", + "namespace": "edu_common" + } + }, + "basic_stack_panel/name_padding": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "label_padding", + "namespace": "npc_interact" + } + }, + "basic_stack_panel/name_edit": { + "file": "ui/npc_interact_screen.json", + "type": "edit_box", + "extend": { + "name": "name_edit", + "namespace": "npc_interact" + } + }, + "basic_stack_panel/dialog_pre_padding": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "label_padding", + "namespace": "npc_interact" + } + }, + "basic_stack_panel/dialog_label": { + "file": "ui/npc_interact_screen.json", + "type": "label", + "extend": { + "name": "light_label", + "namespace": "edu_common" + } + }, + "basic_stack_panel/dialog_post_padding": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "label_padding", + "namespace": "npc_interact" + } + }, + "basic_stack_panel/dialog__padding": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "label_padding", + "namespace": "npc_interact" + } + }, + "basic_stack_panel/dialog_button": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "dialog_button", + "namespace": "npc_interact" + } + }, + "basic_stack_panel/appearance_pre_padding": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "label_padding", + "namespace": "npc_interact" + } + }, + "basic_stack_panel/appearance_label": { + "file": "ui/npc_interact_screen.json", + "type": "label", + "extend": { + "name": "light_label", + "namespace": "edu_common" + } + }, + "basic_stack_panel/appearance_post_padding": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "label_padding", + "namespace": "npc_interact" + } + }, + "basic_stack_panel/skins": { + "file": "ui/npc_interact_screen.json", + "type": "image", + "extend": { + "name": "skin_picker", + "namespace": "npc_interact" + } + }, + "basic_stack_panel/advanced_button": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "advanced_button", + "namespace": "npc_interact" + } + }, + "basic_content": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "children": [ + "basic" + ] + }, + "basic_content/basic": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "extend": { + "name": "basic_stack_panel", + "namespace": "npc_interact" + } + }, + "advanced_stack_panel": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_stack_panel", + "namespace": "npc_interact" + }, + "children": [ + "top_pad", + "add_help_text", + "middle_pad", + "actions", + "add_buttons", + "bottom_pad" + ] + }, + "advanced_stack_panel/top_pad": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "advanced_stack_panel/add_help_text": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "extend": { + "name": "add_help_text", + "namespace": "npc_interact" + } + }, + "advanced_stack_panel/middle_pad": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "advanced_stack_panel/actions": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "extend": { + "name": "action_panel", + "namespace": "npc_interact" + } + }, + "advanced_stack_panel/add_buttons": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "extend": { + "name": "add_buttons", + "namespace": "npc_interact" + } + }, + "advanced_stack_panel/bottom_pad": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "action_title": { + "file": "ui/npc_interact_screen.json", + "type": "label", + "extend": { + "name": "dark_label", + "namespace": "edu_common" + } + }, + "plus_icon": { + "file": "ui/npc_interact_screen.json", + "type": "image" + }, + "plus_button": { + "file": "ui/npc_interact_screen.json", + "type": "button", + "extend": { + "name": "light_glyph_button", + "namespace": "common_buttons" + } + }, + "action_text_edit": { + "file": "ui/npc_interact_screen.json", + "type": "edit_box", + "extend": { + "name": "multiline_text_edit_control", + "namespace": "npc_interact" + } + }, + "maximized_action_edit": { + "file": "ui/npc_interact_screen.json", + "type": "edit_box", + "extend": { + "name": "multiline_text_edit_control", + "namespace": "npc_interact" + } + }, + "action_edit": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "children": [ + "text_edit", + "expand" + ] + }, + "action_edit/text_edit": { + "file": "ui/npc_interact_screen.json", + "type": "edit_box", + "extend": { + "name": "action_text_edit", + "namespace": "npc_interact" + } + }, + "action_edit/expand": { + "file": "ui/npc_interact_screen.json", + "type": "button", + "extend": { + "name": "plus_button", + "namespace": "npc_interact" + } + }, + "button_name_edit": { + "file": "ui/npc_interact_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_control", + "namespace": "npc_interact" + } + }, + "command_toggle": { + "file": "ui/npc_interact_screen.json", + "type": "toggle", + "extend": { + "name": "slider_toggle", + "namespace": "edu_common" + } + }, + "command_toggle_panel": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "command_toggle", + "toggle_label" + ] + }, + "command_toggle_panel/command_toggle": { + "file": "ui/npc_interact_screen.json", + "type": "toggle", + "extend": { + "name": "command_toggle", + "namespace": "npc_interact" + } + }, + "command_toggle_panel/toggle_label": { + "file": "ui/npc_interact_screen.json", + "type": "label", + "extend": { + "name": "dark_label", + "namespace": "edu_common" + } + }, + "action_mode": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "children": [ + "button_mode_toggle_panel", + "on_enter_toggle_panel", + "on_exit_toggle_panel" + ] + }, + "action_mode/button_mode_toggle_panel": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "command_toggle_panel", + "namespace": "npc_interact" + } + }, + "action_mode/on_enter_toggle_panel": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "command_toggle_panel", + "namespace": "npc_interact" + } + }, + "action_mode/on_exit_toggle_panel": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "command_toggle_panel", + "namespace": "npc_interact" + } + }, + "button_name_label": { + "file": "ui/npc_interact_screen.json", + "type": "label", + "extend": { + "name": "dark_label", + "namespace": "edu_common" + } + }, + "url_notifications": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "children": [ + "empty_uri_warning", + "invalid_uri_warning" + ] + }, + "url_notifications/empty_uri_warning": { + "file": "ui/npc_interact_screen.json", + "type": "image", + "extend": { + "name": "inline_notification", + "namespace": "edu_common" + } + }, + "url_notifications/invalid_uri_warning": { + "file": "ui/npc_interact_screen.json", + "type": "image", + "extend": { + "name": "inline_notification", + "namespace": "edu_common" + } + }, + "action_template": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_stack_panel", + "namespace": "npc_interact" + }, + "children": [ + "title", + "label_pad", + "edit", + "edit_pad", + "url_warning", + "url_pad", + "action_mode", + "mode_pad", + "button_name_label", + "button_name" + ] + }, + "action_template/title": { + "file": "ui/npc_interact_screen.json", + "type": "label", + "extend": { + "name": "action_title", + "namespace": "npc_interact" + } + }, + "action_template/label_pad": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "action_template/edit": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "extend": { + "name": "action_edit", + "namespace": "npc_interact" + } + }, + "action_template/edit_pad": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "action_template/url_warning": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "extend": { + "name": "url_notifications", + "namespace": "npc_interact" + } + }, + "action_template/url_pad": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "action_template/action_mode": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "extend": { + "name": "action_mode", + "namespace": "npc_interact" + } + }, + "action_template/mode_pad": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "action_template/button_name_label": { + "file": "ui/npc_interact_screen.json", + "type": "label", + "extend": { + "name": "button_name_label", + "namespace": "npc_interact" + } + }, + "action_template/button_name": { + "file": "ui/npc_interact_screen.json", + "type": "edit_box", + "extend": { + "name": "button_name_edit", + "namespace": "npc_interact" + } + }, + "action_command": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "extend": { + "name": "action_template", + "namespace": "npc_interact" + } + }, + "action_url": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "extend": { + "name": "action_template", + "namespace": "npc_interact" + } + }, + "padded_action": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "children": [ + "action", + "padding" + ] + }, + "padded_action/action": { + "file": "ui/npc_interact_screen.json", + "type": "image", + "extend": { + "name": "action", + "namespace": "npc_interact" + } + }, + "padded_action/padding": { + "file": "ui/npc_interact_screen.json", + "type": "panel" + }, + "action": { + "file": "ui/npc_interact_screen.json", + "type": "image", + "children": [ + "trash", + "command", + "url" + ] + }, + "action/trash": { + "file": "ui/npc_interact_screen.json", + "type": "button", + "extend": { + "name": "photo_trash_button", + "namespace": "edu_common" + } + }, + "action/command": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "extend": { + "name": "action_command", + "namespace": "npc_interact" + } + }, + "action/url": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "extend": { + "name": "action_url", + "namespace": "npc_interact" + } + }, + "action_panel": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel" + }, + "add_button": { + "file": "ui/npc_interact_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "help_label": { + "file": "ui/npc_interact_screen.json", + "type": "label", + "extend": { + "name": "light_label", + "namespace": "edu_common" + } + }, + "add_help_section": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "children": [ + "text_url", + "padding", + "text_command" + ] + }, + "add_help_section/text_url": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "children": [ + "tts_border", + "wrapper_panel_url" + ] + }, + "add_help_section/text_url/tts_border": { + "file": "ui/npc_interact_screen.json", + "type": "button", + "extend": { + "name": "non_interact_focus_border_button", + "namespace": "common" + } + }, + "add_help_section/text_url/wrapper_panel_url": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "children": [ + "text_url_a", + "padding", + "text_url_b" + ] + }, + "add_help_section/text_url/wrapper_panel_url/text_url_a": { + "file": "ui/npc_interact_screen.json", + "type": "label", + "extend": { + "name": "help_label", + "namespace": "npc_interact" + } + }, + "add_help_section/text_url/wrapper_panel_url/padding": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "add_help_section/text_url/wrapper_panel_url/text_url_b": { + "file": "ui/npc_interact_screen.json", + "type": "label", + "extend": { + "name": "help_label", + "namespace": "npc_interact" + } + }, + "add_help_section/padding": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "add_help_section/text_command": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "children": [ + "tts_border", + "wrapper_panel_command" + ] + }, + "add_help_section/text_command/tts_border": { + "file": "ui/npc_interact_screen.json", + "type": "button", + "extend": { + "name": "non_interact_focus_border_button", + "namespace": "common" + } + }, + "add_help_section/text_command/wrapper_panel_command": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "children": [ + "text_command_a", + "padding", + "text_command_b" + ] + }, + "add_help_section/text_command/wrapper_panel_command/text_command_a": { + "file": "ui/npc_interact_screen.json", + "type": "label", + "extend": { + "name": "help_label", + "namespace": "npc_interact" + } + }, + "add_help_section/text_command/wrapper_panel_command/padding": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "add_help_section/text_command/wrapper_panel_command/text_command_b": { + "file": "ui/npc_interact_screen.json", + "type": "label", + "extend": { + "name": "help_label", + "namespace": "npc_interact" + } + }, + "add_help_text": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "extend": { + "name": "add_help_section", + "namespace": "npc_interact" + } + }, + "add_buttons": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "children": [ + "add_url", + "padding", + "add_command" + ] + }, + "add_buttons/add_url": { + "file": "ui/npc_interact_screen.json", + "type": "button", + "extend": { + "name": "add_button", + "namespace": "npc_interact" + } + }, + "add_buttons/padding": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "add_buttons/add_command": { + "file": "ui/npc_interact_screen.json", + "type": "button", + "extend": { + "name": "add_button", + "namespace": "npc_interact" + } + }, + "advanced_scrolling_panel": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "advanced_scrolling_content": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "children": [ + "advanced" + ] + }, + "advanced_scrolling_content/advanced": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "extend": { + "name": "advanced_stack_panel", + "namespace": "npc_interact" + } + }, + "message_model": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "children": [ + "model" + ] + }, + "message_model/model": { + "file": "ui/npc_interact_screen.json", + "type": "custom", + "extend": { + "name": "skin_model", + "namespace": "npc_interact" + } + }, + "clipped_message_model": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "skin_model_clipper", + "namespace": "npc_interact" + }, + "children": [ + "model" + ] + }, + "clipped_message_model/model": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "message_model", + "namespace": "npc_interact" + } + }, + "message_model_window": { + "file": "ui/npc_interact_screen.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "npc_interact" + }, + "children": [ + "model", + "immersive_reader_button" + ] + }, + "message_model_window/model": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "clipped_message_model", + "namespace": "npc_interact" + } + }, + "message_model_window/immersive_reader_button": { + "file": "ui/npc_interact_screen.json", + "type": "button", + "extend": { + "name": "reader_button", + "namespace": "im_reader" + } + }, + "edit_box_background": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "npc_message": { + "file": "ui/npc_interact_screen.json", + "type": "edit_box", + "extend": { + "name": "multiline_text_edit_control", + "namespace": "npc_interact" + }, + "children": [ + "label", + "visibility_panel", + "background" + ] + }, + "npc_message/label": { + "file": "ui/npc_interact_screen.json", + "type": "label", + "extend": { + "name": "text_edit_box_label", + "namespace": "common" + } + }, + "npc_message/visibility_panel": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "children": [ + "place_holder" + ] + }, + "npc_message/visibility_panel/place_holder": { + "file": "ui/npc_interact_screen.json", + "type": "label", + "extend": { + "name": "text_edit_box_place_holder_label", + "namespace": "common" + } + }, + "npc_message/background": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "text_scroll": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "student_message_bubble": { + "file": "ui/npc_interact_screen.json", + "type": "image", + "children": [ + "dialog_panel" + ] + }, + "student_message_bubble/dialog_panel": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "children": [ + "text_scroll" + ] + }, + "student_message_bubble/dialog_panel/text_scroll": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "text_scroll", + "namespace": "npc_interact" + } + }, + "bubble_point": { + "file": "ui/npc_interact_screen.json", + "type": "image" + }, + "student_message_section": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "model", + "point", + "message" + ] + }, + "student_message_section/model": { + "file": "ui/npc_interact_screen.json", + "type": "image", + "extend": { + "name": "message_model_window", + "namespace": "npc_interact" + } + }, + "student_message_section/point": { + "file": "ui/npc_interact_screen.json", + "type": "image", + "extend": { + "name": "bubble_point", + "namespace": "npc_interact" + } + }, + "student_message_section/message": { + "file": "ui/npc_interact_screen.json", + "type": "image", + "extend": { + "name": "student_message_bubble", + "namespace": "npc_interact" + } + }, + "student_button_label": { + "file": "ui/npc_interact_screen.json", + "type": "label" + }, + "student_button_label_panel": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "children": [ + "url", + "command" + ] + }, + "student_button_label_panel/url": { + "file": "ui/npc_interact_screen.json", + "type": "label", + "extend": { + "name": "student_button_label", + "namespace": "npc_interact" + } + }, + "student_button_label_panel/command": { + "file": "ui/npc_interact_screen.json", + "type": "label", + "extend": { + "name": "student_button_label", + "namespace": "npc_interact" + } + }, + "student_button": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "button" + ] + }, + "student_button/button": { + "file": "ui/npc_interact_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "student_buttons": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "buttons" + ] + }, + "student_buttons/buttons": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "children": [ + "actions" + ] + }, + "student_buttons/buttons/actions": { + "file": "ui/npc_interact_screen.json", + "type": "grid" + }, + "student_stack_panel": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_stack_panel", + "namespace": "npc_interact" + }, + "children": [ + "top_pad", + "message", + "message_pad", + "buttons" + ] + }, + "student_stack_panel/top_pad": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "student_stack_panel/message": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "student_message_section", + "namespace": "npc_interact" + } + }, + "student_stack_panel/message_pad": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "student_stack_panel/buttons": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "student_buttons", + "namespace": "npc_interact" + } + }, + "student_view_content": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "children": [ + "student", + "close" + ] + }, + "student_view_content/student": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "extend": { + "name": "student_stack_panel", + "namespace": "npc_interact" + } + }, + "student_view_content/close": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "close_button_holder", + "namespace": "npc_interact" + } + }, + "close_button_base": { + "file": "ui/npc_interact_screen.json", + "type": "button", + "extend": { + "name": "back_button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "close_button_base/default": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "close_button_panel", + "namespace": "common" + } + }, + "close_button_base/hover": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "close_button_panel", + "namespace": "common" + } + }, + "close_button_base/pressed": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "close_button_panel", + "namespace": "common" + } + }, + "x_close_button": { + "file": "ui/npc_interact_screen.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "common" + } + }, + "ignorable_x_close_button": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "children": [ + "button" + ] + }, + "ignorable_x_close_button/button": { + "file": "ui/npc_interact_screen.json", + "type": "button", + "extend": { + "name": "x_close_button", + "namespace": "npc_interact" + } + }, + "close_button_holder": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "children": [ + "close_basic", + "close_student_edit", + "close_student", + "close_maximized_action_edit", + "close_advanced" + ] + }, + "close_button_holder/close_basic": { + "file": "ui/npc_interact_screen.json", + "type": "button", + "extend": { + "name": "x_close_button", + "namespace": "npc_interact" + } + }, + "close_button_holder/close_student_edit": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "ignorable_x_close_button", + "namespace": "npc_interact" + } + }, + "close_button_holder/close_student": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "ignorable_x_close_button", + "namespace": "npc_interact" + } + }, + "close_button_holder/close_maximized_action_edit": { + "file": "ui/npc_interact_screen.json", + "type": "button", + "extend": { + "name": "close_button_base", + "namespace": "npc_interact" + } + }, + "close_button_holder/close_advanced": { + "file": "ui/npc_interact_screen.json", + "type": "button", + "extend": { + "name": "close_button_base", + "namespace": "npc_interact" + } + }, + "main_content": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "basic", + "advanced", + "maximized_action_edit", + "close" + ] + }, + "main_content/basic": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "basic_content", + "namespace": "npc_interact" + } + }, + "main_content/advanced": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "advanced_scrolling_panel", + "namespace": "npc_interact" + } + }, + "main_content/maximized_action_edit": { + "file": "ui/npc_interact_screen.json", + "type": "edit_box", + "extend": { + "name": "maximized_action_edit", + "namespace": "npc_interact" + } + }, + "main_content/close": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "close_button_holder", + "namespace": "npc_interact" + } + }, + "root_panel": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + }, + "gamepad_helper_exit_text": { + "file": "ui/npc_interact_screen.json", + "type": "label" + }, + "close_text": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_b", + "namespace": "common" + } + }, + "npc_screen_contents": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "children": [ + "teacher", + "student", + "npc_screen_close" + ] + }, + "npc_screen_contents/teacher": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "root_panel", + "namespace": "npc_interact" + } + }, + "npc_screen_contents/student": { + "file": "ui/npc_interact_screen.json", + "type": "panel", + "extend": { + "name": "form_fitting_main_panel_no_buttons", + "namespace": "common_dialogs" + } + }, + "npc_screen_contents/npc_screen_close": { + "file": "ui/npc_interact_screen.json", + "type": "stack_panel", + "extend": { + "name": "close_text", + "namespace": "npc_interact" + } + }, + "npc_screen": { + "file": "ui/npc_interact_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + } + }, + "online_safety": { + "online_safety_proceed_button": { + "file": "ui/online_safety_screen.json", + "type": "button", + "extend": { + "name": "popup_dialog_button", + "namespace": "popup_dialog" + } + }, + "online_safety_back_button": { + "file": "ui/online_safety_screen.json", + "type": "button", + "extend": { + "name": "popup_dialog_button", + "namespace": "popup_dialog" + } + }, + "online_safety_description": { + "file": "ui/online_safety_screen.json", + "type": "label" + }, + "ip_safety_description": { + "file": "ui/online_safety_screen.json", + "type": "label" + }, + "online_safety_label_panel": { + "file": "ui/online_safety_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "ip_safety_label_panel": { + "file": "ui/online_safety_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "do_not_show_checkbox": { + "file": "ui/online_safety_screen.json", + "type": "toggle", + "extend": { + "name": "checkbox", + "namespace": "common" + }, + "children": [ + "header_description_stack_panel" + ] + }, + "do_not_show_checkbox/header_description_stack_panel": { + "file": "ui/online_safety_screen.json", + "type": "stack_panel", + "children": [ + "checkbox_visuals", + "buffer_panel", + "another_panel" + ] + }, + "do_not_show_checkbox/header_description_stack_panel/checkbox_visuals": { + "file": "ui/online_safety_screen.json", + "type": "panel", + "extend": { + "name": "toggle_visuals", + "namespace": "common" + } + }, + "do_not_show_checkbox/header_description_stack_panel/buffer_panel": { + "file": "ui/online_safety_screen.json", + "type": "panel", + "children": [ + "label" + ] + }, + "do_not_show_checkbox/header_description_stack_panel/buffer_panel/label": { + "file": "ui/online_safety_screen.json", + "type": "label" + }, + "do_not_show_checkbox/header_description_stack_panel/another_panel": { + "file": "ui/online_safety_screen.json", + "type": "panel" + }, + "online_safety_dialog": { + "file": "ui/online_safety_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_two_buttons", + "namespace": "common_dialogs" + } + }, + "ip_safety_dialog": { + "file": "ui/online_safety_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_three_buttons", + "namespace": "common_dialogs" + } + }, + "gamepad_helpers": { + "file": "ui/online_safety_screen.json", + "type": "panel", + "children": [ + "gamepad_helper_a" + ] + }, + "gamepad_helpers/gamepad_helper_a": { + "file": "ui/online_safety_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_a", + "namespace": "common" + } + }, + "online_safety_screen": { + "file": "ui/online_safety_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "online_safety_screen_content": { + "file": "ui/online_safety_screen.json", + "type": "panel", + "children": [ + "online_safety_dialog", + "gamepad_helpers" + ] + }, + "online_safety_screen_content/online_safety_dialog": { + "file": "ui/online_safety_screen.json", + "type": "panel", + "extend": { + "name": "online_safety_dialog", + "namespace": "online_safety" + } + }, + "online_safety_screen_content/gamepad_helpers": { + "file": "ui/online_safety_screen.json", + "type": "panel", + "extend": { + "name": "gamepad_helpers", + "namespace": "online_safety" + } + }, + "ip_safety_screen": { + "file": "ui/online_safety_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "ip_safety_screen_content": { + "file": "ui/online_safety_screen.json", + "type": "panel", + "children": [ + "ip_safety_dialog", + "gamepad_helpers" + ] + }, + "ip_safety_screen_content/ip_safety_dialog": { + "file": "ui/online_safety_screen.json", + "type": "panel", + "extend": { + "name": "ip_safety_dialog", + "namespace": "online_safety" + } + }, + "ip_safety_screen_content/gamepad_helpers": { + "file": "ui/online_safety_screen.json", + "type": "panel", + "extend": { + "name": "gamepad_helpers", + "namespace": "online_safety" + } + } + }, + "pack_settings": { + "background": { + "file": "ui/pack_settings_screen.json", + "type": "image", + "extend": { + "name": "screen_background", + "namespace": "common" + } + }, + "screen": { + "file": "ui/pack_settings_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "main_screen_content": { + "file": "ui/pack_settings_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + }, + "pack_scroll_panel": { + "file": "ui/pack_settings_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "scrolling_content": { + "file": "ui/pack_settings_screen.json", + "type": "stack_panel", + "children": [ + "content_tiering_panel", + "generated_form" + ] + }, + "scrolling_content/content_tiering_panel": { + "file": "ui/pack_settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "content_tiering_panel", + "namespace": "pack_settings" + } + }, + "scrolling_content/generated_form": { + "file": "ui/pack_settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "generated_contents", + "namespace": "server_form" + } + }, + "content_tiering_panel": { + "file": "ui/pack_settings_screen.json", + "type": "stack_panel", + "children": [ + "label_panel", + "slider_panel", + "incompatible_label_panel" + ] + }, + "content_tiering_panel/label_panel": { + "file": "ui/pack_settings_screen.json", + "type": "panel", + "children": [ + "content_tier_label", + "unsupported_content_tier_label" + ] + }, + "content_tiering_panel/label_panel/content_tier_label": { + "file": "ui/pack_settings_screen.json", + "type": "label" + }, + "content_tiering_panel/label_panel/unsupported_content_tier_label": { + "file": "ui/pack_settings_screen.json", + "type": "label" + }, + "content_tiering_panel/slider_panel": { + "file": "ui/pack_settings_screen.json", + "type": "panel", + "children": [ + "content_tier_slider" + ] + }, + "content_tiering_panel/slider_panel/content_tier_slider": { + "file": "ui/pack_settings_screen.json", + "type": "slider", + "extend": { + "name": "slider", + "namespace": "common" + } + }, + "content_tiering_panel/incompatible_label_panel": { + "file": "ui/pack_settings_screen.json", + "type": "panel", + "children": [ + "label" + ] + }, + "content_tiering_panel/incompatible_label_panel/label": { + "file": "ui/pack_settings_screen.json", + "type": "label" + } + }, + "panorama": { + "panorama_view": { + "file": "ui/panorama_screen.json", + "type": "panel", + "children": [ + "pan_left", + "screenshot", + "pan_right" + ] + }, + "panorama_view/pan_left": { + "file": "ui/panorama_screen.json", + "type": "button", + "extend": { + "name": "pan_left_button", + "namespace": "panorama" + } + }, + "panorama_view/screenshot": { + "file": "ui/panorama_screen.json", + "type": "input_panel", + "extend": { + "name": "panorama_input_panel", + "namespace": "panorama" + } + }, + "panorama_view/pan_right": { + "file": "ui/panorama_screen.json", + "type": "button", + "extend": { + "name": "pan_right_button", + "namespace": "panorama" + } + }, + "panorama_input_panel": { + "file": "ui/panorama_screen.json", + "type": "input_panel", + "children": [ + "image_border" + ] + }, + "panorama_input_panel/image_border": { + "file": "ui/panorama_screen.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + }, + "children": [ + "panorama_key_art", + "progress_loading" + ] + }, + "panorama_input_panel/image_border/panorama_key_art": { + "file": "ui/panorama_screen.json", + "type": "custom" + }, + "panorama_input_panel/image_border/progress_loading": { + "file": "ui/panorama_screen.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "pan_left_button": { + "file": "ui/panorama_screen.json", + "type": "button", + "extend": { + "name": "cycle_pack_left_button", + "namespace": "common_store" + } + }, + "pan_right_button": { + "file": "ui/panorama_screen.json", + "type": "button", + "extend": { + "name": "cycle_pack_right_button", + "namespace": "common_store" + } + } + }, + "patch_notes": { + "solid_texture": { + "file": "ui/patch_notes_screen.json", + "type": "image" + }, + "image_with_background": { + "file": "ui/patch_notes_screen.json", + "type": "image", + "extend": { + "name": "solid_texture", + "namespace": "patch_notes" + }, + "children": [ + "image" + ] + }, + "image_with_background/image": { + "file": "ui/patch_notes_screen.json", + "type": "unknown", + "children": [ + "loading_animation" + ] + }, + "image_with_background/image/loading_animation": { + "file": "ui/patch_notes_screen.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "white_image": { + "file": "ui/patch_notes_screen.json", + "type": "image", + "extend": { + "name": "solid_texture", + "namespace": "patch_notes" + } + }, + "patch_main_image": { + "file": "ui/patch_notes_screen.json", + "type": "image" + }, + "store_image": { + "file": "ui/patch_notes_screen.json", + "type": "image" + }, + "patch_notes_header_background": { + "file": "ui/patch_notes_screen.json", + "type": "panel", + "children": [ + "black_background" + ] + }, + "patch_notes_header_background/black_background": { + "file": "ui/patch_notes_screen.json", + "type": "image", + "children": [ + "content" + ] + }, + "patch_notes_header_background/black_background/content": { + "file": "ui/patch_notes_screen.json", + "type": "unknown" + }, + "button_label_panel": { + "file": "ui/patch_notes_screen.json", + "type": "panel", + "children": [ + "text_label" + ] + }, + "button_label_panel/text_label": { + "file": "ui/patch_notes_screen.json", + "type": "label" + }, + "button_content": { + "file": "ui/patch_notes_screen.json", + "type": "panel", + "children": [ + "button_label2" + ] + }, + "button_content/button_label2": { + "file": "ui/patch_notes_screen.json", + "type": "panel", + "extend": { + "name": "button_label_panel", + "namespace": "patch_notes" + } + }, + "patch_image": { + "file": "ui/patch_notes_screen.json", + "type": "image", + "extend": { + "name": "image_with_background", + "namespace": "patch_notes" + } + }, + "patch_notes_header_content_without_offer": { + "file": "ui/patch_notes_screen.json", + "type": "panel", + "children": [ + "patch_image" + ] + }, + "patch_notes_header_content_without_offer/patch_image": { + "file": "ui/patch_notes_screen.json", + "type": "image", + "extend": { + "name": "patch_image", + "namespace": "patch_notes" + } + }, + "patch_notes_header_content_with_offer": { + "file": "ui/patch_notes_screen.json", + "type": "stack_panel", + "children": [ + "patch_image", + "padding", + "store_item_section" + ] + }, + "patch_notes_header_content_with_offer/patch_image": { + "file": "ui/patch_notes_screen.json", + "type": "image", + "extend": { + "name": "patch_image", + "namespace": "patch_notes" + } + }, + "patch_notes_header_content_with_offer/padding": { + "file": "ui/patch_notes_screen.json", + "type": "panel" + }, + "patch_notes_header_content_with_offer/store_item_section": { + "file": "ui/patch_notes_screen.json", + "type": "stack_panel", + "children": [ + "store_image", + "padding", + "store_button" + ] + }, + "patch_notes_header_content_with_offer/store_item_section/store_image": { + "file": "ui/patch_notes_screen.json", + "type": "image", + "extend": { + "name": "image_with_background", + "namespace": "patch_notes" + } + }, + "patch_notes_header_content_with_offer/store_item_section/padding": { + "file": "ui/patch_notes_screen.json", + "type": "panel" + }, + "patch_notes_header_content_with_offer/store_item_section/store_button": { + "file": "ui/patch_notes_screen.json", + "type": "panel", + "extend": { + "name": "store_button", + "namespace": "patch_notes" + } + }, + "store_button": { + "file": "ui/patch_notes_screen.json", + "type": "panel", + "children": [ + "store_button", + "loading_animation" + ] + }, + "store_button/store_button": { + "file": "ui/patch_notes_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "store_button/loading_animation": { + "file": "ui/patch_notes_screen.json", + "type": "button", + "extend": { + "name": "focus_border", + "namespace": "pdp" + } + }, + "patch_notes_header": { + "file": "ui/patch_notes_screen.json", + "type": "panel", + "children": [ + "patch_notes_background" + ] + }, + "patch_notes_header/patch_notes_background": { + "file": "ui/patch_notes_screen.json", + "type": "panel", + "extend": { + "name": "patch_notes_header_background", + "namespace": "patch_notes" + } + }, + "scroll_content": { + "file": "ui/patch_notes_screen.json", + "type": "stack_panel", + "children": [ + "padding_0", + "patch_notes_header", + "padding_1", + "tts_label_wrapper" + ] + }, + "scroll_content/padding_0": { + "file": "ui/patch_notes_screen.json", + "type": "panel" + }, + "scroll_content/patch_notes_header": { + "file": "ui/patch_notes_screen.json", + "type": "panel", + "extend": { + "name": "patch_notes_header", + "namespace": "patch_notes" + } + }, + "scroll_content/padding_1": { + "file": "ui/patch_notes_screen.json", + "type": "panel" + }, + "scroll_content/tts_label_wrapper": { + "file": "ui/patch_notes_screen.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "patch_notes_panel": { + "file": "ui/patch_notes_screen.json", + "type": "panel", + "children": [ + "patch_notes_text" + ] + }, + "patch_notes_panel/patch_notes_text": { + "file": "ui/patch_notes_screen.json", + "type": "label", + "children": [ + "loading_animation" + ] + }, + "patch_notes_panel/patch_notes_text/loading_animation": { + "file": "ui/patch_notes_screen.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "patch_notes_content": { + "file": "ui/patch_notes_screen.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "patch_notes_content/scrolling_panel": { + "file": "ui/patch_notes_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "continue_button": { + "file": "ui/patch_notes_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "patch_notes_dialog": { + "file": "ui/patch_notes_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_small_title_one_button", + "namespace": "common_dialogs" + } + }, + "patch_notes_screen": { + "file": "ui/patch_notes_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "sunsetting_button_panel": { + "file": "ui/patch_notes_screen.json", + "type": "stack_panel", + "children": [ + "padding_0", + "more_info_button", + "padding_1", + "continue_button", + "padding_2", + "sunsetting_toggle_panel" + ] + }, + "sunsetting_button_panel/padding_0": { + "file": "ui/patch_notes_screen.json", + "type": "panel" + }, + "sunsetting_button_panel/more_info_button": { + "file": "ui/patch_notes_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "sunsetting_button_panel/padding_1": { + "file": "ui/patch_notes_screen.json", + "type": "panel" + }, + "sunsetting_button_panel/continue_button": { + "file": "ui/patch_notes_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "sunsetting_button_panel/padding_2": { + "file": "ui/patch_notes_screen.json", + "type": "panel" + }, + "sunsetting_button_panel/sunsetting_toggle_panel": { + "file": "ui/patch_notes_screen.json", + "type": "toggle", + "extend": { + "name": "checkbox", + "namespace": "common" + }, + "children": [ + "header_description_stack_panel" + ] + }, + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel": { + "file": "ui/patch_notes_screen.json", + "type": "stack_panel", + "children": [ + "checkbox_visuals", + "buffer_panel", + "another_panel" + ] + }, + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/checkbox_visuals": { + "file": "ui/patch_notes_screen.json", + "type": "panel", + "extend": { + "name": "toggle_visuals", + "namespace": "common" + } + }, + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel": { + "file": "ui/patch_notes_screen.json", + "type": "panel", + "children": [ + "label" + ] + }, + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel/label": { + "file": "ui/patch_notes_screen.json", + "type": "label" + }, + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/another_panel": { + "file": "ui/patch_notes_screen.json", + "type": "panel" + }, + "sunsetting_content": { + "file": "ui/patch_notes_screen.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "sunsetting_content/scrolling_panel": { + "file": "ui/patch_notes_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "sunsetting_dialog": { + "file": "ui/patch_notes_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_small_title_one_button", + "namespace": "common_dialogs" + } + }, + "sunsetting_screen": { + "file": "ui/patch_notes_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + } + }, + "pause": { + "pause_icon": { + "file": "ui/pause_screen.json", + "type": "image" + }, + "feedback_icon": { + "file": "ui/pause_screen.json", + "type": "image" + }, + "change_skin_icon": { + "file": "ui/pause_screen.json", + "type": "image" + }, + "take_screenshot_icon": { + "file": "ui/pause_screen.json", + "type": "image" + }, + "settings_icon": { + "file": "ui/pause_screen.json", + "type": "image" + }, + "achievements_icon": { + "file": "ui/pause_screen.json", + "type": "image" + }, + "how_to_play_icon": { + "file": "ui/pause_screen.json", + "type": "image" + }, + "store_icon": { + "file": "ui/pause_screen.json", + "type": "image" + }, + "realms_stories_icon": { + "file": "ui/pause_screen.json", + "type": "image" + }, + "alex_icon": { + "file": "ui/pause_screen.json", + "type": "image" + }, + "profile_gamerpic": { + "file": "ui/pause_screen.json", + "type": "custom" + }, + "button_x": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_x_14", + "namespace": "common" + } + }, + "dressing_room_controller_button_content": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "button_x", + "button_label_panel" + ] + }, + "dressing_room_controller_button_content/button_x": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "extend": { + "name": "button_x", + "namespace": "pause" + } + }, + "dressing_room_controller_button_content/button_label_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "button_label_text_left" + ] + }, + "dressing_room_controller_button_content/button_label_panel/button_label_text_left": { + "file": "ui/pause_screen.json", + "type": "label", + "extend": { + "name": "controller_button_label", + "namespace": "pause" + } + }, + "controller_button_label": { + "file": "ui/pause_screen.json", + "type": "label", + "extend": { + "name": "new_ui_binding_button_label", + "namespace": "common_buttons" + } + }, + "column_frame": { + "file": "ui/pause_screen.json", + "type": "panel" + }, + "dressing_room_button_gamepad": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "light_content_form_fitting_button", + "namespace": "common_buttons" + } + }, + "dressing_room_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "light_text_form_fitting_button", + "namespace": "common_buttons" + } + }, + "profile_button_content": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "children": [ + "button_offset_wrapper", + "gamerpic_offset_wrapper", + "padding_middle", + "vertically_central_text", + "padding_right" + ] + }, + "profile_button_content/button_offset_wrapper": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "button_x" + ] + }, + "profile_button_content/button_offset_wrapper/button_x": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "extend": { + "name": "button_x", + "namespace": "pause" + } + }, + "profile_button_content/gamerpic_offset_wrapper": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "gamerpic_with_border" + ] + }, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "gamerpic", + "alex_icon", + "border_black" + ] + }, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic": { + "file": "ui/pause_screen.json", + "type": "custom", + "extend": { + "name": "profile_gamerpic", + "namespace": "pause" + } + }, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "alex_icon", + "namespace": "pause" + } + }, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "focus_border_black", + "namespace": "common" + } + }, + "profile_button_content/padding_middle": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "profile_button_content/vertically_central_text": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "children": [ + "top_padding", + "profile_button_label" + ] + }, + "profile_button_content/vertically_central_text/top_padding": { + "file": "ui/pause_screen.json", + "type": "panel" + }, + "profile_button_content/vertically_central_text/profile_button_label": { + "file": "ui/pause_screen.json", + "type": "label", + "extend": { + "name": "new_ui_binding_button_label", + "namespace": "common_buttons" + } + }, + "profile_button_content/padding_right": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "profile_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "light_content_form_fitting_button", + "namespace": "common_buttons" + } + }, + "skin_viewer_panel": { + "file": "ui/pause_screen.json", + "type": "input_panel", + "children": [ + "paper_doll_panel", + "paper_doll_name_tag" + ] + }, + "skin_viewer_panel/paper_doll_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "paper_doll" + ] + }, + "skin_viewer_panel/paper_doll_panel/paper_doll": { + "file": "ui/pause_screen.json", + "type": "custom" + }, + "skin_viewer_panel/paper_doll_name_tag": { + "file": "ui/pause_screen.json", + "type": "custom" + }, + "skin_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "interior" + ] + }, + "skin_panel/interior": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "extend": { + "name": "skin_panel_interior", + "namespace": "pause" + } + }, + "skin_panel_interior": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "children": [ + "offset_panel", + "fill_1", + "change_profile_panel" + ] + }, + "skin_panel_interior/offset_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "viewer_panel" + ] + }, + "skin_panel_interior/offset_panel/viewer_panel": { + "file": "ui/pause_screen.json", + "type": "input_panel", + "extend": { + "name": "skin_viewer_panel", + "namespace": "pause" + } + }, + "skin_panel_interior/fill_1": { + "file": "ui/pause_screen.json", + "type": "panel" + }, + "skin_panel_interior/change_profile_panel": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "children": [ + "centering_panel_1", + "centering_panel_2", + "centering_panel_3" + ] + }, + "skin_panel_interior/change_profile_panel/centering_panel_1": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "dressing_room_button" + ] + }, + "skin_panel_interior/change_profile_panel/centering_panel_1/dressing_room_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "dressing_room_button", + "namespace": "pause" + } + }, + "skin_panel_interior/change_profile_panel/centering_panel_2": { + "file": "ui/pause_screen.json", + "type": "input_panel", + "children": [ + "dressing_room_button_gamepad" + ] + }, + "skin_panel_interior/change_profile_panel/centering_panel_2/dressing_room_button_gamepad": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "dressing_room_button_gamepad", + "namespace": "pause" + } + }, + "skin_panel_interior/change_profile_panel/centering_panel_3": { + "file": "ui/pause_screen.json", + "type": "input_panel", + "children": [ + "profile_button" + ] + }, + "skin_panel_interior/change_profile_panel/centering_panel_3/profile_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "profile_button", + "namespace": "pause" + } + }, + "pause_button_template": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "grid_button_template": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "return_to_game_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "pause_button_template", + "namespace": "pause" + } + }, + "realms_stories_button_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "realms_stories_button", + "unread_story_count_panel" + ] + }, + "realms_stories_button_panel/realms_stories_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "realms_stories_button", + "namespace": "pause" + } + }, + "realms_stories_button_panel/unread_story_count_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "unread_story_count_panel", + "namespace": "pause" + } + }, + "realms_stories_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "pause_button_template", + "namespace": "pause" + } + }, + "unread_story_count_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "text" + ] + }, + "unread_story_count_panel/text": { + "file": "ui/pause_screen.json", + "type": "label", + "children": [ + "background" + ] + }, + "unread_story_count_panel/text/background": { + "file": "ui/pause_screen.json", + "type": "image" + }, + "store_button_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "store_button", + "store_error_button" + ] + }, + "store_button_panel/store_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "store_button", + "namespace": "pause" + } + }, + "store_button_panel/store_error_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "store_error_button", + "namespace": "pause" + } + }, + "store_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "pause_button_template", + "namespace": "pause" + } + }, + "store_error_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "dynamic_tooltip_notification_panel", + "namespace": "common_buttons" + } + }, + "store_error_button_content": { + "file": "ui/pause_screen.json", + "type": "image", + "children": [ + "marketplace_button_label" + ] + }, + "store_error_button_content/marketplace_button_label": { + "file": "ui/pause_screen.json", + "type": "label" + }, + "settings_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "pause_button_template", + "namespace": "pause" + } + }, + "how_to_play_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "pause_button_template", + "namespace": "pause" + } + }, + "invite_players_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "grid_button_template", + "namespace": "pause" + } + }, + "buy_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "pause_button_template", + "namespace": "pause" + } + }, + "quit_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "pause_button_template", + "namespace": "pause" + } + }, + "feedback_button_primary_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "feedback_button_primary" + ] + }, + "feedback_button_primary_panel/feedback_button_primary": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "feedback_button_primary", + "namespace": "pause" + } + }, + "feedback_button_primary": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "pause_button_template", + "namespace": "pause" + } + }, + "icon_button_hover_text": { + "file": "ui/pause_screen.json", + "type": "image", + "children": [ + "tooltip_text" + ] + }, + "icon_button_hover_text/tooltip_text": { + "file": "ui/pause_screen.json", + "type": "label" + }, + "icon_button_tooltip_trigger": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "pressed", + "hover" + ] + }, + "icon_button_tooltip_trigger/default": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "icon_button_tooltip_trigger/pressed": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "icon_button_tooltip_trigger/hover": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "icon_button_hover_text", + "namespace": "pause" + } + }, + "feedback_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "feedback_icon_button": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "feedback_button", + "tooltip_trigger" + ] + }, + "feedback_icon_button/feedback_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "feedback_button", + "namespace": "pause" + } + }, + "feedback_icon_button/tooltip_trigger": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "icon_button_tooltip_trigger", + "namespace": "pause" + } + }, + "take_screenshot_gamepad_button_content": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "button_y", + "take_screenshot_icon" + ] + }, + "take_screenshot_gamepad_button_content/button_y": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_y_14", + "namespace": "common" + } + }, + "take_screenshot_gamepad_button_content/take_screenshot_icon": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "take_screenshot_icon", + "namespace": "pause" + } + }, + "take_screenshot_gamepad_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "light_content_form_fitting_button", + "namespace": "common_buttons" + } + }, + "achievements_button_small": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "how_to_play_button_small": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "how_to_play_button_small_with_tooltip": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "button", + "tooltip_trigger" + ] + }, + "how_to_play_button_small_with_tooltip/button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "how_to_play_button_small", + "namespace": "pause" + } + }, + "how_to_play_button_small_with_tooltip/tooltip_trigger": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "icon_button_tooltip_trigger", + "namespace": "pause" + } + }, + "achievements_button_small_with_tooltip": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "button", + "tooltip_trigger" + ] + }, + "achievements_button_small_with_tooltip/button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "achievements_button_small", + "namespace": "pause" + } + }, + "achievements_button_small_with_tooltip/tooltip_trigger": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "icon_button_tooltip_trigger", + "namespace": "pause" + } + }, + "settings_button_small": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "settings_button_small_with_tooltip": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "button", + "tooltip_trigger" + ] + }, + "settings_button_small_with_tooltip/button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "settings_button_small", + "namespace": "pause" + } + }, + "settings_button_small_with_tooltip/tooltip_trigger": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "icon_button_tooltip_trigger", + "namespace": "pause" + } + }, + "take_screenshot_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "take_screenshot_button_with_tooltip": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "button", + "tooltip_trigger" + ] + }, + "take_screenshot_button_with_tooltip/button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "take_screenshot_button", + "namespace": "pause" + } + }, + "take_screenshot_button_with_tooltip/tooltip_trigger": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "icon_button_tooltip_trigger", + "namespace": "pause" + } + }, + "take_screenshot_gamepad_button_with_tooltip": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "button", + "tooltip_trigger" + ] + }, + "take_screenshot_gamepad_button_with_tooltip/button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "take_screenshot_gamepad_button", + "namespace": "pause" + } + }, + "take_screenshot_gamepad_button_with_tooltip/tooltip_trigger": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "icon_button_tooltip_trigger", + "namespace": "pause" + } + }, + "store_button_small": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "store_button_small_disabled": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "deactivated_light_content_button", + "namespace": "common_buttons" + } + }, + "store_icon_disabled": { + "file": "ui/pause_screen.json", + "type": "image" + }, + "store_button_small_with_tooltip": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "enabled_button", + "disabled_button", + "tooltip_trigger" + ] + }, + "store_button_small_with_tooltip/enabled_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "store_button_small", + "namespace": "pause" + } + }, + "store_button_small_with_tooltip/disabled_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "store_button_small_disabled", + "namespace": "pause" + } + }, + "store_button_small_with_tooltip/tooltip_trigger": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "icon_button_tooltip_trigger", + "namespace": "pause" + } + }, + "realms_stories_button_small": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "realms_stories_button_small_with_tooltip": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "button", + "tooltip_trigger" + ] + }, + "realms_stories_button_small_with_tooltip/button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "realms_stories_button_small", + "namespace": "pause" + } + }, + "realms_stories_button_small_with_tooltip/tooltip_trigger": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "icon_button_tooltip_trigger", + "namespace": "pause" + } + }, + "pause_screen": { + "file": "ui/pause_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "pause_screen_content": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "pause_screen_main_panels", + "skin_panel", + "top_right_panel", + "gamepad_helpers", + "keyboard_helpers", + "debug_drawer_button_panel" + ] + }, + "pause_screen_content/pause_screen_main_panels": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "extend": { + "name": "pause_screen_main_panels", + "namespace": "pause" + } + }, + "pause_screen_content/skin_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "skin_panel", + "namespace": "pause" + } + }, + "pause_screen_content/top_right_panel": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "extend": { + "name": "top_right_panel", + "namespace": "pause" + } + }, + "pause_screen_content/gamepad_helpers": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "gamepad_helpers", + "namespace": "pause" + } + }, + "pause_screen_content/keyboard_helpers": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "keyboard_helpers", + "namespace": "pause" + } + }, + "pause_screen_content/debug_drawer_button_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "debug_drawer_button_panel", + "namespace": "pause" + } + }, + "top_right_panel": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "children": [ + "pause_panel", + "friendsdrawer_button_panel" + ] + }, + "top_right_panel/pause_panel": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "extend": { + "name": "pause_announcement_panel_grey", + "namespace": "pause" + } + }, + "top_right_panel/friendsdrawer_button_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "friendsdrawer_button_panel", + "namespace": "pause" + } + }, + "friendsdrawer_button_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "friendsdrawer_button", + "friends_drawer_ftue_popup_wrapper" + ] + }, + "friendsdrawer_button_panel/friendsdrawer_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "friendsbutton" + } + }, + "friendsdrawer_button_panel/friends_drawer_ftue_popup_wrapper": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "friends_drawer_ftue_popup" + ] + }, + "friendsdrawer_button_panel/friends_drawer_ftue_popup_wrapper/friends_drawer_ftue_popup": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "friends_drawer_popup", + "namespace": "friendsbutton" + } + }, + "pause_screen_main_panels": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "children": [ + "menu" + ] + }, + "pause_screen_main_panels/menu": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "left_buttons_panel", + "namespace": "pause" + } + }, + "left_buttons_panel": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "screen_background", + "namespace": "common" + }, + "children": [ + "filler", + "trialTime", + "the_rest_panel" + ] + }, + "left_buttons_panel/filler": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "filler_panel", + "namespace": "pause" + } + }, + "left_buttons_panel/trialTime": { + "file": "ui/pause_screen.json", + "type": "custom" + }, + "left_buttons_panel/the_rest_panel": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "extend": { + "name": "the_rest_panel", + "namespace": "pause" + } + }, + "smaller_buttons_panel": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "children": [ + "stacked_column", + "padding_bottom" + ] + }, + "smaller_buttons_panel/stacked_column": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "children": [ + "fill_1", + "side_padding", + "small_settings_button", + "small_settings_padding", + "small_achievements_button", + "small_achievements_padding", + "small_how_to_play_button", + "small_how_to_play_padding", + "small_realms_stories_button", + "small_realms_stories_padding", + "small_store_button", + "small_store_padding", + "take_screenshot_btn", + "screenshot_padding", + "fill_3" + ] + }, + "smaller_buttons_panel/stacked_column/fill_1": { + "file": "ui/pause_screen.json", + "type": "panel" + }, + "smaller_buttons_panel/stacked_column/side_padding": { + "file": "ui/pause_screen.json", + "type": "panel" + }, + "smaller_buttons_panel/stacked_column/small_settings_button": { + "file": "ui/pause_screen.json", + "type": "input_panel", + "children": [ + "small_settings_btn" + ] + }, + "smaller_buttons_panel/stacked_column/small_settings_button/small_settings_btn": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "settings_button_small_with_tooltip", + "namespace": "pause" + } + }, + "smaller_buttons_panel/stacked_column/small_settings_padding": { + "file": "ui/pause_screen.json", + "type": "panel" + }, + "smaller_buttons_panel/stacked_column/small_achievements_button": { + "file": "ui/pause_screen.json", + "type": "input_panel", + "children": [ + "small_achievements_btn" + ] + }, + "smaller_buttons_panel/stacked_column/small_achievements_button/small_achievements_btn": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "achievements_button_small_with_tooltip", + "namespace": "pause" + } + }, + "smaller_buttons_panel/stacked_column/small_achievements_padding": { + "file": "ui/pause_screen.json", + "type": "panel" + }, + "smaller_buttons_panel/stacked_column/small_how_to_play_button": { + "file": "ui/pause_screen.json", + "type": "input_panel", + "children": [ + "small_how_to_play_btn" + ] + }, + "smaller_buttons_panel/stacked_column/small_how_to_play_button/small_how_to_play_btn": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "how_to_play_button_small_with_tooltip", + "namespace": "pause" + } + }, + "smaller_buttons_panel/stacked_column/small_how_to_play_padding": { + "file": "ui/pause_screen.json", + "type": "panel" + }, + "smaller_buttons_panel/stacked_column/small_realms_stories_button": { + "file": "ui/pause_screen.json", + "type": "input_panel", + "children": [ + "small_realms_stories_btn" + ] + }, + "smaller_buttons_panel/stacked_column/small_realms_stories_button/small_realms_stories_btn": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "realms_stories_button_small_with_tooltip", + "namespace": "pause" + } + }, + "smaller_buttons_panel/stacked_column/small_realms_stories_padding": { + "file": "ui/pause_screen.json", + "type": "panel" + }, + "smaller_buttons_panel/stacked_column/small_store_button": { + "file": "ui/pause_screen.json", + "type": "input_panel", + "children": [ + "small_store_btn" + ] + }, + "smaller_buttons_panel/stacked_column/small_store_button/small_store_btn": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "store_button_small_with_tooltip", + "namespace": "pause" + } + }, + "smaller_buttons_panel/stacked_column/small_store_padding": { + "file": "ui/pause_screen.json", + "type": "panel" + }, + "smaller_buttons_panel/stacked_column/take_screenshot_btn": { + "file": "ui/pause_screen.json", + "type": "input_panel", + "children": [ + "take_screenshot_button", + "take_screenshot_gamepad_button" + ] + }, + "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_button": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "take_screenshot_button_with_tooltip", + "namespace": "pause" + } + }, + "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_gamepad_button": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "take_screenshot_gamepad_button_with_tooltip", + "namespace": "pause" + } + }, + "smaller_buttons_panel/stacked_column/screenshot_padding": { + "file": "ui/pause_screen.json", + "type": "panel" + }, + "smaller_buttons_panel/stacked_column/fill_3": { + "file": "ui/pause_screen.json", + "type": "panel" + }, + "smaller_buttons_panel/padding_bottom": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "social_buttons_panel": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "children": [ + "friendsbutton_panel", + "invitebutton_panel" + ] + }, + "social_buttons_panel/friendsbutton_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "friendsdrawer_button", + "friends_drawer__ftue_popup" + ] + }, + "social_buttons_panel/friendsbutton_panel/friendsdrawer_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "friendsbutton" + } + }, + "social_buttons_panel/friendsbutton_panel/friends_drawer__ftue_popup": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "friends_drawer_popup", + "namespace": "friendsbutton" + } + }, + "social_buttons_panel/invitebutton_panel": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "children": [ + "invite_button", + "vertical_padding_2" + ] + }, + "social_buttons_panel/invitebutton_panel/invite_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "iconbutton" + } + }, + "social_buttons_panel/invitebutton_panel/vertical_padding_2": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding", + "namespace": "pause" + } + }, + "the_rest_panel": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "children": [ + "fill_1", + "pause_menu", + "fill_3" + ] + }, + "the_rest_panel/fill_1": { + "file": "ui/pause_screen.json", + "type": "panel" + }, + "the_rest_panel/pause_menu": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "menu_the_rest_panel", + "namespace": "pause" + } + }, + "the_rest_panel/fill_3": { + "file": "ui/pause_screen.json", + "type": "panel" + }, + "paused_text": { + "file": "ui/pause_screen.json", + "type": "label" + }, + "green_tag": { + "file": "ui/pause_screen.json", + "type": "image" + }, + "paused_text_panel_grey": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "screen_background", + "namespace": "common" + }, + "children": [ + "pause" + ] + }, + "paused_text_panel_grey/pause": { + "file": "ui/pause_screen.json", + "type": "label", + "extend": { + "name": "paused_text", + "namespace": "pause" + } + }, + "paused_text_panel_green": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "green_tag", + "namespace": "pause" + }, + "children": [ + "horizontal_stack" + ] + }, + "paused_text_panel_green/horizontal_stack": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "children": [ + "pause_icon", + "fill_1", + "pause" + ] + }, + "paused_text_panel_green/horizontal_stack/pause_icon": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "pause_icon", + "namespace": "pause" + } + }, + "paused_text_panel_green/horizontal_stack/fill_1": { + "file": "ui/pause_screen.json", + "type": "panel" + }, + "paused_text_panel_green/horizontal_stack/pause": { + "file": "ui/pause_screen.json", + "type": "label", + "extend": { + "name": "paused_text", + "namespace": "pause" + } + }, + "transparent_background": { + "file": "ui/pause_screen.json", + "type": "image" + }, + "non_transparent_background": { + "file": "ui/pause_screen.json", + "type": "image" + }, + "menu_the_rest_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "menu_button_control" + ] + }, + "menu_the_rest_panel/menu_button_control": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "menu_button_control", + "namespace": "pause" + } + }, + "menu_button_control": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "transparent_background", + "namespace": "pause" + }, + "children": [ + "menu_background" + ] + }, + "menu_button_control/menu_background": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "menu_background", + "namespace": "pause" + } + }, + "pause_announcement_panel_grey": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "children": [ + "horizontal_stack" + ] + }, + "pause_announcement_panel_grey/horizontal_stack": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "children": [ + "fill_1", + "pause_text", + "fill_2" + ] + }, + "pause_announcement_panel_grey/horizontal_stack/fill_1": { + "file": "ui/pause_screen.json", + "type": "panel" + }, + "pause_announcement_panel_grey/horizontal_stack/pause_text": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "paused_text_panel_grey", + "namespace": "pause" + } + }, + "pause_announcement_panel_grey/horizontal_stack/fill_2": { + "file": "ui/pause_screen.json", + "type": "panel" + }, + "pause_announcement_panel_green": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "children": [ + "horizontal_stack" + ] + }, + "pause_announcement_panel_green/horizontal_stack": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "children": [ + "fill_1", + "pause_text", + "fill_2" + ] + }, + "pause_announcement_panel_green/horizontal_stack/fill_1": { + "file": "ui/pause_screen.json", + "type": "panel" + }, + "pause_announcement_panel_green/horizontal_stack/pause_text": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "paused_text_panel_green", + "namespace": "pause" + } + }, + "pause_announcement_panel_green/horizontal_stack/fill_2": { + "file": "ui/pause_screen.json", + "type": "panel" + }, + "menu_background": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "transparent_background", + "namespace": "pause" + }, + "children": [ + "button_panel" + ] + }, + "menu_background/button_panel": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "children": [ + "title_image", + "fill_1", + "return_to_game_button", + "return", + "settings_button", + "settings", + "feedback_button_primary_panel", + "feedback", + "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": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "image" + ] + }, + "menu_background/button_panel/title_image/image": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "title_image", + "namespace": "common_art" + } + }, + "menu_background/button_panel/fill_1": { + "file": "ui/pause_screen.json", + "type": "panel" + }, + "menu_background/button_panel/return_to_game_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "return_to_game_button", + "namespace": "pause" + } + }, + "menu_background/button_panel/return": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding", + "namespace": "pause" + } + }, + "menu_background/button_panel/settings_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "settings_button", + "namespace": "pause" + } + }, + "menu_background/button_panel/settings": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding", + "namespace": "pause" + } + }, + "menu_background/button_panel/feedback_button_primary_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "feedback_button_primary_panel", + "namespace": "pause" + } + }, + "menu_background/button_panel/feedback": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding", + "namespace": "pause" + } + }, + "menu_background/button_panel/realms_stories_button_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "realms_stories_button_panel", + "namespace": "pause" + } + }, + "menu_background/button_panel/realms_stories": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding", + "namespace": "pause" + } + }, + "menu_background/button_panel/buy_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "buy_button", + "namespace": "pause" + } + }, + "menu_background/button_panel/buy": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding", + "namespace": "pause" + } + }, + "menu_background/button_panel/store_button_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "store_button_panel", + "namespace": "pause" + } + }, + "menu_background/button_panel/store_button_panel_padding": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding", + "namespace": "pause" + } + }, + "menu_background/button_panel/quit_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "quit_button", + "namespace": "pause" + } + }, + "menu_background/button_panel/smaller_buttons": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "extend": { + "name": "smaller_buttons_panel", + "namespace": "pause" + } + }, + "menu_background/button_panel/pause_panel": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "extend": { + "name": "pause_announcement_panel_green", + "namespace": "pause" + } + }, + "info_panel_content_list": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "children": [ + "player_list_scrolling_panel", + "vertical_padding" + ] + }, + "info_panel_content_list/player_list_scrolling_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "player_list_scrolling_panel", + "namespace": "pause" + } + }, + "info_panel_content_list/vertical_padding": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding", + "namespace": "pause" + } + }, + "info_panel_background": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "transparent_background", + "namespace": "pause" + } + }, + "info_panel": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "pause_screen_border", + "namespace": "pause" + }, + "children": [ + "info_panel_background", + "info_panel_list" + ] + }, + "info_panel/info_panel_background": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "info_panel_background", + "namespace": "pause" + } + }, + "info_panel/info_panel_list": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "extend": { + "name": "info_panel_content_list", + "namespace": "pause" + } + }, + "player_panel_background": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "transparent_background", + "namespace": "pause" + }, + "children": [ + "player_list_scrolling_panel" + ] + }, + "player_panel_background/player_list_scrolling_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "player_list_scrolling_panel", + "namespace": "pause" + } + }, + "player_list": { + "file": "ui/pause_screen.json", + "type": "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": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding", + "namespace": "pause" + } + }, + "player_list/social_buttons_panel": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "extend": { + "name": "social_buttons_panel", + "namespace": "pause" + } + }, + "player_list/players_label": { + "file": "ui/pause_screen.json", + "type": "label", + "extend": { + "name": "players_label", + "namespace": "pause" + } + }, + "player_list/vertical_padding_4": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding", + "namespace": "pause" + } + }, + "player_list/players_grid_panel": { + "file": "ui/pause_screen.json", + "type": "grid", + "extend": { + "name": "players_grid", + "namespace": "pause" + } + }, + "player_list/vertical_padding_5": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding", + "namespace": "pause" + } + }, + "player_list/invite_players_button_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "invite_players_button_panel", + "namespace": "pause" + } + }, + "player_list/vertical_padding_6": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding", + "namespace": "pause" + } + }, + "player_list/disconnected_from_multiplayer_label_panel": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "extend": { + "name": "disconnected_from_multiplayer_label_panel", + "namespace": "pause" + } + }, + "player_list/vertical_padding_7": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding", + "namespace": "pause" + } + }, + "player_lists": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "normal_list", + "scoreboard_list" + ] + }, + "player_lists/normal_list": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "extend": { + "name": "player_list", + "namespace": "pause" + } + }, + "player_lists/scoreboard_list": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "extend": { + "name": "scoreboard_player_list", + "namespace": "scoreboard" + } + }, + "player_list_scrolling_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "disconnected_label": { + "file": "ui/pause_screen.json", + "type": "label" + }, + "disconnected_from_multiplayer_label_panel": { + "file": "ui/pause_screen.json", + "type": "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": { + "file": "ui/pause_screen.json", + "type": "label", + "extend": { + "name": "disconnected_label", + "namespace": "pause" + } + }, + "disconnected_from_multiplayer_label_panel/disconnected_from_third_party_label": { + "file": "ui/pause_screen.json", + "type": "label", + "extend": { + "name": "disconnected_label", + "namespace": "pause" + } + }, + "disconnected_from_multiplayer_label_panel/disconnected_from_adhoc_label": { + "file": "ui/pause_screen.json", + "type": "label", + "extend": { + "name": "disconnected_label", + "namespace": "pause" + } + }, + "disconnected_from_multiplayer_label_panel/disconnected_from_crossplatform_multiplayer": { + "file": "ui/pause_screen.json", + "type": "label", + "extend": { + "name": "disconnected_label", + "namespace": "pause" + } + }, + "disconnected_from_multiplayer_label_panel/disconnected_from_multiplayer": { + "file": "ui/pause_screen.json", + "type": "label", + "extend": { + "name": "disconnected_label", + "namespace": "pause" + } + }, + "invite_players_button_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "invite_players_button" + ] + }, + "invite_players_button_panel/invite_players_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "invite_players_button", + "namespace": "pause" + } + }, + "ip_label": { + "file": "ui/pause_screen.json", + "type": "label" + }, + "players_label": { + "file": "ui/pause_screen.json", + "type": "label" + }, + "players_grid": { + "file": "ui/pause_screen.json", + "type": "grid" + }, + "player_grid_item": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "player_grid_item_content" + ] + }, + "player_grid_item/player_grid_item_content": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "player_grid_item_content", + "namespace": "pause" + } + }, + "player_grid_item_content": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "player_button_panel", + "player_permission_button_panel" + ] + }, + "player_grid_item_content/player_button_panel": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "children": [ + "player_button_banner", + "player_permission_button_padding" + ] + }, + "player_grid_item_content/player_button_panel/player_button_banner": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "player_button", + "player_banner" + ] + }, + "player_grid_item_content/player_button_panel/player_button_banner/player_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "player_button", + "namespace": "pause" + } + }, + "player_grid_item_content/player_button_panel/player_button_banner/player_banner": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "player_banner", + "namespace": "pause" + } + }, + "player_grid_item_content/player_button_panel/player_permission_button_padding": { + "file": "ui/pause_screen.json", + "type": "panel" + }, + "player_grid_item_content/player_permission_button_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "player_permission_button" + ] + }, + "player_grid_item_content/player_permission_button_panel/player_permission_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "player_permission_button", + "namespace": "pause" + } + }, + "player_permission_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "player_permission_button_content": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "permission_icon_image" + ] + }, + "player_permission_button_content/permission_icon_image": { + "file": "ui/pause_screen.json", + "type": "image" + }, + "vertical_padding": { + "file": "ui/pause_screen.json", + "type": "panel" + }, + "horizontal_padding": { + "file": "ui/pause_screen.json", + "type": "panel" + }, + "player_button_content": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "children": [ + "player_pic_panel", + "player_gamertag", + "platform_icon" + ] + }, + "player_button_content/player_pic_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "player_pic_panel", + "namespace": "pause" + } + }, + "player_button_content/player_gamertag": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "gametag_wrapper", + "namespace": "pause" + } + }, + "player_button_content/platform_icon": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "platform_icon_panel", + "namespace": "pause" + } + }, + "player_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "player_banner": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "player_grid_banner", + "namespace": "pause" + } + }, + "player_pic_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "player_gamer_pic", + "player_local_icon" + ] + }, + "player_pic_panel/player_gamer_pic": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "player_gamer_pic", + "namespace": "pause" + } + }, + "player_pic_panel/player_local_icon": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "player_local_icon", + "namespace": "pause" + } + }, + "player_local_icon": { + "file": "ui/pause_screen.json", + "type": "image" + }, + "player_gamer_pic": { + "file": "ui/pause_screen.json", + "type": "image", + "children": [ + "player_panel_black_border" + ] + }, + "player_gamer_pic/player_panel_black_border": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "pause_screen_border", + "namespace": "pause" + } + }, + "gametag_wrapper": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "gamertag" + ] + }, + "gametag_wrapper/gamertag": { + "file": "ui/pause_screen.json", + "type": "label", + "extend": { + "name": "player_gamertag", + "namespace": "pause" + } + }, + "platform_icon_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "platform_icon" + ] + }, + "platform_icon_panel/platform_icon": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "platform_icon", + "namespace": "pause" + } + }, + "player_gamertag": { + "file": "ui/pause_screen.json", + "type": "label" + }, + "platform_icon": { + "file": "ui/pause_screen.json", + "type": "image" + }, + "player_grid_banner_no_focus": { + "file": "ui/pause_screen.json", + "type": "image" + }, + "player_grid_banner": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "player_grid_banner_no_focus", + "focus_border_button" + ] + }, + "player_grid_banner/player_grid_banner_no_focus": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "player_grid_banner_no_focus", + "namespace": "pause" + }, + "children": [ + "player_button_content" + ] + }, + "player_grid_banner/player_grid_banner_no_focus/player_button_content": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "extend": { + "name": "player_button_content", + "namespace": "pause" + } + }, + "player_grid_banner/focus_border_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "focus_border_button", + "namespace": "pause" + } + }, + "focus_border_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "focus_border_button/default": { + "file": "ui/pause_screen.json", + "type": "panel", + "extend": { + "name": "filler_panel", + "namespace": "pause" + } + }, + "focus_border_button/hover": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "focus_border", + "namespace": "pause" + } + }, + "focus_border_button/pressed": { + "file": "ui/pause_screen.json", + "type": "image", + "extend": { + "name": "focus_border", + "namespace": "pause" + } + }, + "focus_border": { + "file": "ui/pause_screen.json", + "type": "image" + }, + "pause_screen_border": { + "file": "ui/pause_screen.json", + "type": "image" + }, + "filler_panel": { + "file": "ui/pause_screen.json", + "type": "panel" + }, + "gamepad_helpers": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "gamepad_helper_y" + ] + }, + "gamepad_helpers/gamepad_helper_y": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_y", + "namespace": "common" + } + }, + "keyboard_helpers": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "keyboard_helper_keys" + ] + }, + "keyboard_helpers/keyboard_helper_keys": { + "file": "ui/pause_screen.json", + "type": "stack_panel", + "extend": { + "name": "keyboard_helper_keys", + "namespace": "common" + } + }, + "debug_drawer_button_content": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "button_label_panel" + ] + }, + "debug_drawer_button_content/button_label_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "button_label_text_left" + ] + }, + "debug_drawer_button_content/button_label_panel/button_label_text_left": { + "file": "ui/pause_screen.json", + "type": "label", + "extend": { + "name": "controller_button_label", + "namespace": "pause" + } + }, + "debug_drawer_button_panel": { + "file": "ui/pause_screen.json", + "type": "panel", + "children": [ + "debug_drawer_button_input" + ] + }, + "debug_drawer_button_panel/debug_drawer_button_input": { + "file": "ui/pause_screen.json", + "type": "input_panel", + "children": [ + "debug_drawer_button" + ] + }, + "debug_drawer_button_panel/debug_drawer_button_input/debug_drawer_button": { + "file": "ui/pause_screen.json", + "type": "button", + "extend": { + "name": "light_text_form_fitting_button", + "namespace": "common_buttons" + } + } + }, + "pdp": { + "download_progress": { + "file": "ui/pdp_screen.json", + "type": "image", + "children": [ + "stacker" + ] + }, + "download_progress/stacker": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "sizer_text", + "sizer_bar" + ] + }, + "download_progress/stacker/sizer_text": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "download_progress_text" + ] + }, + "download_progress/stacker/sizer_text/download_progress_text": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "download_progress/stacker/sizer_bar": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "download_progress_bar" + ] + }, + "download_progress/stacker/sizer_bar/download_progress_bar": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "store_progress_bar_icon", + "namespace": "common_store" + } + }, + "summary_box_button_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "buttons_panel", + "download_buttons_panel", + "focus_border" + ] + }, + "summary_box_button_panel/buttons_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "smooth_buttons_panel", + "namespace": "pdp" + } + }, + "summary_box_button_panel/download_buttons_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "download_buttons_panel", + "namespace": "pdp" + } + }, + "summary_box_button_panel/focus_border": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "focus_border", + "namespace": "pdp" + } + }, + "interaction_button_content": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "line1_panel" + ] + }, + "interaction_button_content/line1_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "upsell_text" + ] + }, + "interaction_button_content/line1_panel/upsell_text": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "interaction_button_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "content_action_button", + "progress_bar", + "focus_border" + ] + }, + "interaction_button_panel/content_action_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "interaction_button_panel/progress_bar": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "download_progress", + "namespace": "pdp" + } + }, + "interaction_button_panel/focus_border": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "focus_border", + "namespace": "pdp" + } + }, + "download_progress_small": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "purchase_common" + }, + "children": [ + "stacker" + ] + }, + "download_progress_small/stacker": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "sizer_text", + "sizer_bar" + ] + }, + "download_progress_small/stacker/sizer_text": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "download_progress_text" + ] + }, + "download_progress_small/stacker/sizer_text/download_progress_text": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "download_progress_small/stacker/sizer_bar": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "download_progress_bar" + ] + }, + "download_progress_small/stacker/sizer_bar/download_progress_bar": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "store_progress_bar_icon", + "namespace": "common_store" + } + }, + "progress_loading_anim": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "focus_border": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "focus_border/default": { + "file": "ui/pdp_screen.json", + "type": "image", + "children": [ + "loading_anim" + ] + }, + "focus_border/default/loading_anim": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "progress_loading_anim", + "namespace": "pdp" + } + }, + "focus_border/hover": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "focus_border", + "namespace": "common_buttons" + }, + "children": [ + "loading_anim" + ] + }, + "focus_border/hover/loading_anim": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "progress_loading_anim", + "namespace": "pdp" + } + }, + "focus_border/pressed": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "focus_border", + "namespace": "common_buttons" + }, + "children": [ + "loading_anim" + ] + }, + "focus_border/pressed/loading_anim": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "progress_loading_anim", + "namespace": "pdp" + } + }, + "purchase_button_base": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "deactivated_purchase_button_base": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "deactivated_light_content_button", + "namespace": "common_buttons" + } + }, + "download_buttons_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "progress_panel" + ] + }, + "download_buttons_panel/progress_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "progress_bar" + ] + }, + "download_buttons_panel/progress_panel/progress_bar": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "download_progress_small", + "namespace": "pdp" + } + }, + "smooth_purchase_buttons_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "activated_purchase_buttons_panel", + "deactivated_purchase_buttons_panel" + ] + }, + "smooth_purchase_buttons_panel/activated_purchase_buttons_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "activated_smooth_purchase_buttons_panel", + "namespace": "pdp" + } + }, + "smooth_purchase_buttons_panel/deactivated_purchase_buttons_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "deactivated_smooth_purchase_buttons_panel", + "namespace": "pdp" + } + }, + "smooth_buttons_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "purchase_buttons_panel", + "interact_filling_button", + "interact_exit_world_filling_button" + ] + }, + "smooth_buttons_panel/purchase_buttons_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "smooth_purchase_buttons_panel", + "namespace": "pdp" + } + }, + "smooth_buttons_panel/interact_filling_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "smooth_buttons_panel/interact_exit_world_filling_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "deactivated_light_content_button", + "namespace": "common_buttons" + } + }, + "disabled_interact_label_formfitting": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "info_icon", + "info_icon_pad", + "interact_label_panel", + "pad" + ] + }, + "disabled_interact_label_formfitting/info_icon": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "info_bulb_image_small_centered", + "namespace": "pdp" + } + }, + "disabled_interact_label_formfitting/info_icon_pad": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "disabled_interact_label_formfitting/interact_label_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "interact_label_text_left" + ] + }, + "disabled_interact_label_formfitting/interact_label_panel/interact_label_text_left": { + "file": "ui/pdp_screen.json", + "type": "label", + "extend": { + "name": "interact_label_text", + "namespace": "pdp" + } + }, + "disabled_interact_label_formfitting/pad": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "interact_label_text": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "activated_smooth_purchase_buttons_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "purchase_coins_button_panel", + "pad_h1", + "purchase_currency_button_panel" + ] + }, + "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "smooth_purchase_with_coins_button" + ] + }, + "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel/smooth_purchase_with_coins_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "purchase_button_base", + "namespace": "pdp" + } + }, + "activated_smooth_purchase_buttons_panel/pad_h1": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "purchase_with_currency_button" + ] + }, + "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel/purchase_with_currency_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "purchase_button_base", + "namespace": "pdp" + } + }, + "deactivated_purchase_hover_popup": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "dynamic_tooltip_left", + "namespace": "common" + } + }, + "deactivated_smooth_purchase_buttons_panel": { + "file": "ui/pdp_screen.json", + "type": "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": { + "file": "ui/pdp_screen.json", + "type": "image", + "children": [ + "deactivated_purchase_hover_popup", + "content" + ] + }, + "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/deactivated_purchase_hover_popup": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "deactivated_purchase_hover_popup", + "namespace": "pdp" + } + }, + "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/content": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "disabled_smooth_coin_purchase_label_formfitting", + "namespace": "pdp" + } + }, + "deactivated_smooth_purchase_buttons_panel/pad_h1": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "deactivated_purchase_with_currency_button" + ] + }, + "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel/deactivated_purchase_with_currency_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "deactivated_purchase_button_base", + "namespace": "pdp" + } + }, + "smooth_save_share_button_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "pad_0", + "share_button", + "pad_1", + "save_button" + ] + }, + "smooth_save_share_button_panel/pad_0": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "smooth_save_share_button_panel/share_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "smooth_save_share_button_panel/pad_1": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "smooth_save_share_button_panel/save_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "currency_purchase_label": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "currency_purchase_label_text" + ] + }, + "currency_purchase_label/currency_purchase_label_text": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "coin_image": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "coin_icon", + "namespace": "common_store" + } + }, + "smooth_currency_purchase_label": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "currency_purchase_label_text" + ] + }, + "smooth_currency_purchase_label/currency_purchase_label_text": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "discount_label": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "label_panel", + "icon_panel" + ] + }, + "discount_label/label_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "label" + ] + }, + "discount_label/label_panel/label": { + "file": "ui/pdp_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "discount_label/icon_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "icon" + ] + }, + "discount_label/icon_panel/icon": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "coin_purchase_label_text": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "smooth_coin_purchase_label_formfitting": { + "file": "ui/pdp_screen.json", + "type": "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": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "sales_banner_panel" + ] + }, + "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "markdown_banner" + ] + }, + "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "markdown_background", + "namespace": "common_store" + } + }, + "smooth_coin_purchase_label_formfitting/markdown_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "markdown_label" + ] + }, + "smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "price_markdown_panel", + "namespace": "pdp" + } + }, + "smooth_coin_purchase_label_formfitting/fill_pad_left": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "coin" + ] + }, + "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "coin_image", + "namespace": "pdp" + } + }, + "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "coin_purchase_label_text_left" + ] + }, + "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left": { + "file": "ui/pdp_screen.json", + "type": "label", + "extend": { + "name": "coin_purchase_label_text", + "namespace": "pdp" + } + }, + "smooth_coin_purchase_label_formfitting/pad": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "coin" + ] + }, + "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "coin_image", + "namespace": "pdp" + } + }, + "smooth_coin_purchase_label_formfitting/fill_pad_right": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "disabled_smooth_coin_purchase_label_formfitting": { + "file": "ui/pdp_screen.json", + "type": "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": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "sales_banner_panel" + ] + }, + "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "markdown_banner" + ] + }, + "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "markdown_background", + "namespace": "common_store" + } + }, + "disabled_smooth_coin_purchase_label_formfitting/markdown_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "markdown_label" + ] + }, + "disabled_smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "price_markdown_panel", + "namespace": "pdp" + } + }, + "disabled_smooth_coin_purchase_label_formfitting/fill_pad_left": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel": { + "file": "ui/pdp_screen.json", + "type": "input_panel", + "children": [ + "info_bulb" + ] + }, + "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel/info_bulb": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "info_bulb_image_small_centered", + "namespace": "pdp" + } + }, + "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "coin" + ] + }, + "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "coin_image", + "namespace": "pdp" + } + }, + "disabled_smooth_coin_purchase_label_formfitting/info_icon_pad": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "coin_purchase_label_text_left" + ] + }, + "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left": { + "file": "ui/pdp_screen.json", + "type": "label", + "extend": { + "name": "coin_purchase_label_text", + "namespace": "pdp" + } + }, + "disabled_smooth_coin_purchase_label_formfitting/pad": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "coin" + ] + }, + "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "coin_image", + "namespace": "pdp" + } + }, + "disabled_smooth_coin_purchase_label_formfitting/fill_pad_right": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "share_icon": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "share_label": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "share_image_offset_panel" + ] + }, + "share_label/share_image_offset_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "link_share" + ] + }, + "share_label/share_image_offset_panel/link_share": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "share_icon", + "namespace": "pdp" + } + }, + "save_label_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "heart_image", + "progress_loading" + ] + }, + "save_label_panel/heart_image": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "save_label", + "namespace": "pdp" + } + }, + "save_label_panel/progress_loading": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_spinner", + "namespace": "common_store" + } + }, + "save_label": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "save_image_offset_panel" + ] + }, + "save_label/save_image_offset_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "full_heart", + "empty_heart" + ] + }, + "save_label/save_image_offset_panel/full_heart": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "save_label/save_image_offset_panel/empty_heart": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "large_button_coin_purchase_label": { + "file": "ui/pdp_screen.json", + "type": "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": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "large_button_coin_purchase_label/center_markdown_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "markdown_banner" + ] + }, + "large_button_coin_purchase_label/center_markdown_panel/markdown_banner": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "markdown_background", + "namespace": "common_store" + } + }, + "large_button_coin_purchase_label/sales_padding_0": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "large_button_coin_purchase_label/price_markdown_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "price_markdown_label" + ] + }, + "large_button_coin_purchase_label/price_markdown_panel/price_markdown_label": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "price_markdown_panel", + "namespace": "pdp" + } + }, + "large_button_coin_purchase_label/sales_padding_1": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "large_button_coin_purchase_label/left_coin_image_offset_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "coin" + ] + }, + "large_button_coin_purchase_label/left_coin_image_offset_panel/coin": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "coin_image", + "namespace": "pdp" + } + }, + "large_button_coin_purchase_label/coin_purchase_label_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "coin_purchase_label_text" + ] + }, + "large_button_coin_purchase_label/coin_purchase_label_panel/coin_purchase_label_text": { + "file": "ui/pdp_screen.json", + "type": "label", + "extend": { + "name": "coin_purchase_label_text", + "namespace": "pdp" + } + }, + "large_button_coin_purchase_label/right_coin_image_offset_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "coin" + ] + }, + "large_button_coin_purchase_label/right_coin_image_offset_panel/coin": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "coin_image", + "namespace": "pdp" + } + }, + "large_button_coin_purchase_label/fill_padding_1": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "price_markdown_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "offer_price" + ] + }, + "price_markdown_panel/offer_price": { + "file": "ui/pdp_screen.json", + "type": "label", + "children": [ + "text_strike_through" + ] + }, + "price_markdown_panel/offer_price/text_strike_through": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "text_strike_through", + "namespace": "common_store" + } + }, + "vertical_padding_2px": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "vertical_padding_4px": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "vertical_padding_fill": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "horizontal_padding_2px": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "horizontal_padding_4px": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "horizontal_padding_8px": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "horizontal_padding_fill": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "empty_content_panel": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "section_header": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "header_label" + ] + }, + "section_header/header_label": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "content_section_bg": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "pad", + "section_header", + "bg_and_content" + ] + }, + "content_section_bg/pad": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding_2px", + "namespace": "pdp" + } + }, + "content_section_bg/section_header": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "section_header", + "namespace": "pdp" + } + }, + "content_section_bg/bg_and_content": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "bg" + ] + }, + "content_section_bg/bg_and_content/bg": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "content_section_boarder_bg": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "pad", + "bg_and_content", + "pad_3", + "divider_3" + ] + }, + "content_section_boarder_bg/pad": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding_2px", + "namespace": "pdp" + } + }, + "content_section_boarder_bg/bg_and_content": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "bg" + ] + }, + "content_section_boarder_bg/bg_and_content/bg": { + "file": "ui/pdp_screen.json", + "type": "image", + "children": [ + "inner" + ] + }, + "content_section_boarder_bg/bg_and_content/bg/inner": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "content_section_boarder_bg/pad_3": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding_2px", + "namespace": "pdp" + } + }, + "content_section_boarder_bg/divider_3": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "common" + } + }, + "summary_factory_object": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "summary", + "navigation_tab_section", + "update_notification_section" + ] + }, + "summary_factory_object/summary": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "summary_content_panel", + "namespace": "pdp" + } + }, + "summary_factory_object/navigation_tab_section": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "nav_button_grid_panel", + "namespace": "store_layout" + } + }, + "summary_factory_object/update_notification_section": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "content_section_boarder_bg", + "namespace": "pdp" + } + }, + "screenshot_carousel_factory_object": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "resource_pack_content_panel", + "pad_3", + "divider_3" + ] + }, + "screenshot_carousel_factory_object/resource_pack_content_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "content_section_bg", + "namespace": "pdp" + } + }, + "screenshot_carousel_factory_object/pad_3": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding_2px", + "namespace": "pdp" + } + }, + "screenshot_carousel_factory_object/divider_3": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "common" + } + }, + "image_gallery_factory_object": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "resource_pack_content_panel" + ] + }, + "image_gallery_factory_object/resource_pack_content_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "image_row_content", + "namespace": "pdp" + } + }, + "left_text_right_image_factory_object": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "resource_pack_content_panel" + ] + }, + "left_text_right_image_factory_object/resource_pack_content_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "image_row_left_text_content", + "namespace": "pdp" + } + }, + "right_text_left_image_factory_object": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "resource_pack_content_panel" + ] + }, + "right_text_left_image_factory_object/resource_pack_content_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "image_row_right_text_content", + "namespace": "pdp" + } + }, + "skin_pack_section_factory_object": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "skin_pack_section_factory_content" + ] + }, + "skin_pack_section_factory_object/skin_pack_section_factory_content": { + "file": "ui/pdp_screen.json", + "type": "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": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "skin_pack_content_panel", + "namespace": "pdp" + } + }, + "skin_pack_section_factory_object/skin_pack_section_factory_content/pad_3": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding_2px", + "namespace": "pdp" + } + }, + "skin_pack_section_factory_object/skin_pack_section_factory_content/divider_3": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "common" + } + }, + "panorama_view_factory_object": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "panorama_view_content_panel", + "pad_3", + "divider_3" + ] + }, + "panorama_view_factory_object/panorama_view_content_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "content_section_bg", + "namespace": "pdp" + } + }, + "panorama_view_factory_object/pad_3": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding_2px", + "namespace": "pdp" + } + }, + "panorama_view_factory_object/divider_3": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "common" + } + }, + "ratings_factory_object": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "rating_factory_object_content" + ] + }, + "ratings_factory_object/rating_factory_object_content": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "ratings_content_panel", + "namespace": "pdp" + } + }, + "focus_container_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default" + ] + }, + "focus_container_button/default": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "bundle_summary_factory_object": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "bundle_summary_factory_object_content" + ] + }, + "bundle_summary_factory_object/bundle_summary_factory_object_content": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "bundle_summary_section_panel", + "namespace": "pdp" + } + }, + "pdp_cycle_offer_row_content": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "store_row_panel", + "pad_3", + "divider_3" + ] + }, + "pdp_cycle_offer_row_content/store_row_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "store_row", + "namespace": "common_store" + } + }, + "pdp_cycle_offer_row_content/pad_3": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding_2px", + "namespace": "pdp" + } + }, + "pdp_cycle_offer_row_content/divider_3": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "common" + } + }, + "pdp_cycle_offer_row_section": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "store_section_panel", + "namespace": "common_store" + } + }, + "scrolling_content_stack": { + "file": "ui/pdp_screen.json", + "type": "stack_panel" + }, + "warning_image": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "scaling_rating": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "empty_rating" + ] + }, + "scaling_rating/empty_rating": { + "file": "ui/pdp_screen.json", + "type": "image", + "children": [ + "full_rating" + ] + }, + "scaling_rating/empty_rating/full_rating": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "scaling_rating_new": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "empty_rating" + ] + }, + "scaling_rating_new/empty_rating": { + "file": "ui/pdp_screen.json", + "type": "image", + "children": [ + "full_rating" + ] + }, + "scaling_rating_new/empty_rating/full_rating": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "chart_section": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "stack" + ] + }, + "chart_section/stack": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "star_number_panel", + "star_panel", + "pad_0", + "bar_panel", + "pad_1", + "percent" + ] + }, + "chart_section/stack/star_number_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "star_number" + ] + }, + "chart_section/stack/star_number_panel/star_number": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "chart_section/stack/star_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "star_img" + ] + }, + "chart_section/stack/star_panel/star_img": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "chart_section/stack/pad_0": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "chart_section/stack/bar_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "bar" + ] + }, + "chart_section/stack/bar_panel/bar": { + "file": "ui/pdp_screen.json", + "type": "image", + "children": [ + "full_bar" + ] + }, + "chart_section/stack/bar_panel/bar/full_bar": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "chart_section/stack/pad_1": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "chart_section/stack/percent": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "ratings_chart": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "5_star", + "4_star", + "3_star", + "2_star", + "1_star" + ] + }, + "ratings_chart/5_star": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "chart_section", + "namespace": "pdp" + } + }, + "ratings_chart/4_star": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "chart_section", + "namespace": "pdp" + } + }, + "ratings_chart/3_star": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "chart_section", + "namespace": "pdp" + } + }, + "ratings_chart/2_star": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "chart_section", + "namespace": "pdp" + } + }, + "ratings_chart/1_star": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "chart_section", + "namespace": "pdp" + } + }, + "ratings_chart_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "ratings_chart_content" + ] + }, + "ratings_chart_panel/ratings_chart_content": { + "file": "ui/pdp_screen.json", + "type": "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": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "ratings_chart_panel/ratings_chart_content/title": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "title_text" + ] + }, + "ratings_chart_panel/ratings_chart_content/title/title_text": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "ratings_chart_panel/ratings_chart_content/pad_1": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "ratings_chart_panel/ratings_chart_content/rating_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "rating" + ] + }, + "ratings_chart_panel/ratings_chart_content/rating_panel/rating": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "rating_bar", + "pad" + ] + }, + "ratings_chart_panel/ratings_chart_content/rating_panel/rating/rating_bar": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "scaling_rating_new", + "namespace": "pdp" + } + }, + "ratings_chart_panel/ratings_chart_content/rating_panel/rating/pad": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "ratings_chart_panel/ratings_chart_content/rating_text_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "rating_text" + ] + }, + "ratings_chart_panel/ratings_chart_content/rating_text_panel/rating_text": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "ratings_chart_panel/ratings_chart_content/count_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "count" + ] + }, + "ratings_chart_panel/ratings_chart_content/count_panel/count": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "ratings_chart_panel/ratings_chart_content/pad_2": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "ratings_chart_panel/ratings_chart_content/chart": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "ratings_chart", + "namespace": "pdp" + } + }, + "ratings_chart_panel/ratings_chart_content/pad_3": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding_2px", + "namespace": "pdp" + } + }, + "ratings_box": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "ratings_panel_focus_point", + "ratings_full_panel", + "divider" + ] + }, + "ratings_box/ratings_panel_focus_point": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "focus_container_button", + "namespace": "pdp" + } + }, + "ratings_box/ratings_full_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "ratings_chart_and_button" + ] + }, + "ratings_box/ratings_full_panel/ratings_chart_and_button": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "chart", + "pad_1" + ] + }, + "ratings_box/ratings_full_panel/ratings_chart_and_button/chart": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "ratings_chart_panel", + "namespace": "pdp" + } + }, + "ratings_box/ratings_full_panel/ratings_chart_and_button/pad_1": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding_2px", + "namespace": "pdp" + } + }, + "ratings_box/divider": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "user_rating_star_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover" + ] + }, + "user_rating_star_button/default": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "default_user_rating_star" + ] + }, + "user_rating_star_button/default/default_user_rating_star": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "user_rating_star_button/hover": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "hover_user_rating_star" + ] + }, + "user_rating_star_button/hover/hover_user_rating_star": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "user_rating_star_list_grid": { + "file": "ui/pdp_screen.json", + "type": "grid" + }, + "ratings_interact_panel": { + "file": "ui/pdp_screen.json", + "type": "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": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "ratings_interact_panel/pad_vertical_4px": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "ratings_interact_panel/rating_stars_and_button_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "fill_stars", + "pad_3_percent", + "submit_button_panel" + ] + }, + "ratings_interact_panel/rating_stars_and_button_panel/fill_stars": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "rating_buttons" + ] + }, + "ratings_interact_panel/rating_stars_and_button_panel/fill_stars/rating_buttons": { + "file": "ui/pdp_screen.json", + "type": "grid", + "extend": { + "name": "user_rating_star_list_grid", + "namespace": "pdp" + } + }, + "ratings_interact_panel/rating_stars_and_button_panel/pad_3_percent": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "submit" + ] + }, + "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel/submit": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "ratings_interact_panel/pad_vertical_8px": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "ratings_interact_panel/fill_pad": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "text" + ] + }, + "ratings_interact_panel/fill_pad/text": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "ratings_interact_panel/send_feedback_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "ratings_interact_panel/pad_1": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "ratings_info_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "ratings", + "ratings_right" + ] + }, + "ratings_info_panel/ratings": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "ratings_box", + "namespace": "pdp" + } + }, + "ratings_info_panel/ratings_right": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "ratings_interact_panel" + ] + }, + "ratings_info_panel/ratings_right/ratings_interact_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "ratings_interact_panel", + "namespace": "pdp" + } + }, + "ratings_content_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "content_section_boarder_bg", + "namespace": "pdp" + } + }, + "panorama_view_content": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "panorama_panel" + ] + }, + "panorama_view_content/panorama_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "panorama_content" + ] + }, + "panorama_view_content/panorama_panel/panorama_content": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "panorama_view", + "namespace": "panorama" + } + }, + "skins": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "skins_panel", + "namespace": "skin_pack_purchase" + } + }, + "skin_pack_content_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "content_section_bg", + "namespace": "pdp" + } + }, + "resource_pack_content": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "screenshots" + ] + }, + "resource_pack_content/screenshots": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "screenshot_carousel", + "namespace": "pdp_screenshots" + } + }, + "image_row_left_text_content": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "buffer_panel_front", + "text_section", + "buffer_panel_mid", + "screenshots_single", + "buffer_panel_back" + ] + }, + "image_row_left_text_content/buffer_panel_front": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "image_row_left_text_content/text_section": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "left_header", + "left_text", + "buffer_panel_bottom" + ] + }, + "image_row_left_text_content/text_section/left_header": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "section_header", + "namespace": "pdp" + } + }, + "image_row_left_text_content/text_section/left_text": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "sdl_text_row_component_panel", + "namespace": "sdl_text_row" + } + }, + "image_row_left_text_content/text_section/buffer_panel_bottom": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "image_row_left_text_content/buffer_panel_mid": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "image_row_left_text_content/screenshots_single": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "double_image", + "namespace": "sdl_image_row" + } + }, + "image_row_left_text_content/buffer_panel_back": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "image_row_right_text_content": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "buffer_panel_front", + "screenshots_single", + "buffer_panel_mid", + "text_section", + "buffer_panel_back" + ] + }, + "image_row_right_text_content/buffer_panel_front": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "image_row_right_text_content/screenshots_single": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "double_image", + "namespace": "sdl_image_row" + } + }, + "image_row_right_text_content/buffer_panel_mid": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "image_row_right_text_content/text_section": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "right_header", + "right_text", + "buffer_panel_bottom" + ] + }, + "image_row_right_text_content/text_section/right_header": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "section_header", + "namespace": "pdp" + } + }, + "image_row_right_text_content/text_section/right_text": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "sdl_text_row_component_panel", + "namespace": "sdl_text_row" + } + }, + "image_row_right_text_content/text_section/buffer_panel_bottom": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "image_row_right_text_content/buffer_panel_back": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "image_row_content": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "screenshots_triple" + ] + }, + "image_row_content/screenshots_triple": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "image_row_factory", + "namespace": "sdl_image_row" + } + }, + "play_button": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "csb_expiration": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "background" + ] + }, + "csb_expiration/background": { + "file": "ui/pdp_screen.json", + "type": "image", + "children": [ + "content_stack_panel" + ] + }, + "csb_expiration/background/content_stack_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "icon_wrapper", + "text_wrapper" + ] + }, + "csb_expiration/background/content_stack_panel/icon_wrapper": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "icon" + ] + }, + "csb_expiration/background/content_stack_panel/icon_wrapper/icon": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "csb_expiration/background/content_stack_panel/text_wrapper": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "text" + ] + }, + "csb_expiration/background/content_stack_panel/text_wrapper/text": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "summary_content_left_side": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "pad_left", + "full_content" + ] + }, + "summary_content_left_side/pad_left": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_padding_4px", + "namespace": "pdp" + } + }, + "summary_content_left_side/full_content": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "top", + "bottom" + ] + }, + "summary_content_left_side/full_content/top": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "image", + "divider", + "info" + ] + }, + "summary_content_left_side/full_content/top/image": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "key_image" + ] + }, + "summary_content_left_side/full_content/top/image/key_image": { + "file": "ui/pdp_screen.json", + "type": "image", + "children": [ + "border", + "csb_expiration_banner", + "video_overlay_button", + "rtx_label" + ] + }, + "summary_content_left_side/full_content/top/image/key_image/border": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "summary_content_left_side/full_content/top/image/key_image/csb_expiration_banner": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "csb_expiration", + "namespace": "pdp" + } + }, + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "mask", + "default", + "hover" + ] + }, + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/mask": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/default": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "play_button", + "namespace": "pdp" + } + }, + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/hover": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "play_button", + "namespace": "pdp" + } + }, + "summary_content_left_side/full_content/top/image/key_image/rtx_label": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "rtx_label", + "namespace": "common_store" + } + }, + "summary_content_left_side/full_content/top/divider": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "summary_content_left_side/full_content/top/info": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "summary_title_and_author_panel", + "pad_fill", + "info_buttons_factory" + ] + }, + "summary_content_left_side/full_content/top/info/summary_title_and_author_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "title_and_author_panel", + "namespace": "pdp" + } + }, + "summary_content_left_side/full_content/top/info/pad_fill": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "summary_content_left_side/full_content/top/info/info_buttons_factory": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "info_buttons_factory", + "namespace": "pdp" + } + }, + "summary_content_left_side/full_content/bottom": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "info_buttons_factory": { + "file": "ui/pdp_screen.json", + "type": "stack_panel" + }, + "ratings_summary": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "ratings_display" + ] + }, + "ratings_summary/ratings_display": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "rating", + "summary_rating_button" + ] + }, + "ratings_summary/ratings_display/rating": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "scaling_rating", + "namespace": "pdp" + } + }, + "ratings_summary/ratings_display/summary_rating_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "underline_button", + "namespace": "common_buttons" + } + }, + "offer_title_label": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "single_line_label", + "namespace": "common" + } + }, + "title_and_author_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "title_panel", + "author_button_panel" + ] + }, + "title_and_author_panel/title_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "offer_title_label", + "namespace": "pdp" + } + }, + "title_and_author_panel/author_button_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "summary_author_button" + ] + }, + "title_and_author_panel/author_button_panel/summary_author_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "underline_button", + "namespace": "common_buttons" + } + }, + "description_label": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "warning_stack_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "warning_icon", + "pad_0", + "warning_text_panel" + ] + }, + "warning_stack_panel/warning_icon": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "warning_image", + "namespace": "pdp" + } + }, + "warning_stack_panel/pad_0": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "warning_stack_panel/warning_text_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "warning_text" + ] + }, + "warning_stack_panel/warning_text_panel/warning_text": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "warning_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "background", + "content_stack_panel" + ] + }, + "warning_panel/background": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "warning_panel/content_stack_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "warning_stack_panel", + "namespace": "pdp" + } + }, + "description_toggle_show_button_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "description_bottom_right_button_border", + "description_toggle_show_button", + "warning_icon" + ] + }, + "description_toggle_show_button_panel/description_bottom_right_button_border": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "description_toggle_show_button_panel/description_toggle_show_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "light_text_form_fitting_button", + "namespace": "common_buttons" + } + }, + "description_toggle_show_button_panel/warning_icon": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "vibrant_visuals_underline_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "underline_button", + "namespace": "common_buttons" + } + }, + "vibrant_visuals_hover_popup": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "dynamic_tooltip_below", + "namespace": "common" + } + }, + "vibrant_visuals_badge_display": { + "file": "ui/pdp_screen.json", + "type": "image", + "children": [ + "vibrant_visuals_underline_button" + ] + }, + "vibrant_visuals_badge_display/vibrant_visuals_underline_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "vibrant_visuals_underline_button", + "namespace": "pdp" + } + }, + "vibrant_visuals_badge_and_hover": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "vibrant_visuals_hover_popup", + "vibrant_visuals_badge_display" + ] + }, + "vibrant_visuals_badge_and_hover/vibrant_visuals_hover_popup": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "vibrant_visuals_hover_popup", + "namespace": "pdp" + } + }, + "vibrant_visuals_badge_and_hover/vibrant_visuals_badge_display": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "vibrant_visuals_badge_display", + "namespace": "pdp" + } + }, + "glyph_icon": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "glyph_count_label": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "glyph_count_underline_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "underline_button", + "namespace": "common_buttons" + } + }, + "glyph_count_hover_underline_button_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "glyph_hover_popup", + "glyph_count_underline_button" + ] + }, + "glyph_count_hover_underline_button_panel/glyph_hover_popup": { + "file": "ui/pdp_screen.json", + "type": "unknown" + }, + "glyph_count_hover_underline_button_panel/glyph_count_underline_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "glyph_count_underline_button", + "namespace": "pdp" + } + }, + "glyph_icon_with_count": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "horizontal_stack_panel", + "namespace": "common" + }, + "children": [ + "glyph_icon", + "horizontal_padding", + "item_glyph_count_panel_label" + ] + }, + "glyph_icon_with_count/glyph_icon": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "glyph_icon", + "namespace": "pdp" + } + }, + "glyph_icon_with_count/horizontal_padding": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "glyph_icon_with_count/item_glyph_count_panel_label": { + "file": "ui/pdp_screen.json", + "type": "unknown" + }, + "glyph_panel_hover_popup": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "dynamic_tooltip_popup_with_image_and_text", + "namespace": "common" + } + }, + "glyph_panel_mashup_hover_popup": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "dynamic_custom_tooltip_below", + "namespace": "common" + } + }, + "mashup_glyph_tooltip_content": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "vertical_stack_panel", + "namespace": "common" + }, + "children": [ + "mashup_text_row", + "mashup_line_two", + "basic_vertical_glyphs" + ] + }, + "mashup_glyph_tooltip_content/mashup_text_row": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "horizontal_stack_panel", + "namespace": "common" + }, + "children": [ + "info_icon", + "mashup_line_one" + ] + }, + "mashup_glyph_tooltip_content/mashup_text_row/info_icon": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "info_bulb_image_small_centered", + "namespace": "pdp" + } + }, + "mashup_glyph_tooltip_content/mashup_text_row/mashup_line_one": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "single_line_label", + "namespace": "common" + } + }, + "mashup_glyph_tooltip_content/mashup_line_two": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "single_line_label", + "namespace": "common" + } + }, + "mashup_glyph_tooltip_content/basic_vertical_glyphs": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "info_buttons_factory", + "namespace": "pdp" + } + }, + "glyph_section_mashup": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "glyph_icon_with_count", + "namespace": "pdp" + } + }, + "glyph_section_skin": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "glyph_icon_with_count", + "namespace": "pdp" + } + }, + "glyph_section_resource_pack": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "glyph_icon_with_count", + "namespace": "pdp" + } + }, + "glyph_section_world": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "glyph_icon_with_count", + "namespace": "pdp" + } + }, + "glyph_section_addon": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "glyph_icon_with_count", + "namespace": "pdp" + } + }, + "summary_text_panel": { + "file": "ui/pdp_screen.json", + "type": "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": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "top_interact" + ] + }, + "summary_text_panel/top_interact_button_stack/top_interact": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "summary_box_button_panel", + "namespace": "pdp" + } + }, + "summary_text_panel/apply_to_realm_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "apply_to_realm_button" + ] + }, + "summary_text_panel/apply_to_realm_panel/apply_to_realm_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "apply_to_realm_button", + "namespace": "pdp" + } + }, + "summary_text_panel/in_csb_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "in_csb_button" + ] + }, + "summary_text_panel/in_csb_panel/in_csb_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "in_csb_button", + "namespace": "pdp" + } + }, + "summary_text_panel/progress_loading_anim_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "progress_loading_anim" + ] + }, + "summary_text_panel/progress_loading_anim_panel/progress_loading_anim": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "summary_text_panel/pad_0": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "summary_text_panel/disclaimer_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "disclaimer_panel", + "namespace": "common_store" + } + }, + "summary_text_panel/pad_1": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "summary_text_panel/save_share_button_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "smooth_save_share_button_panel", + "namespace": "pdp" + } + }, + "summary_text_panel/pad_2": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "info_bulb_image": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "info_bulb_image_small": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "info_bulb_image_small_centered": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "top_filler", + "middle_panel", + "bottom_filler" + ] + }, + "info_bulb_image_small_centered/top_filler": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "info_bulb_image_small_centered/middle_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "front_filler", + "info_bulb", + "bottom_filler" + ] + }, + "info_bulb_image_small_centered/middle_panel/front_filler": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "info_bulb_image_small_centered/middle_panel/info_bulb": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "info_bulb_image_small", + "namespace": "pdp" + } + }, + "info_bulb_image_small_centered/middle_panel/bottom_filler": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "info_bulb_image_small_centered/bottom_filler": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "realms_incompatable_content": { + "file": "ui/pdp_screen.json", + "type": "image", + "children": [ + "realms_content_stack_panel" + ] + }, + "realms_incompatable_content/realms_content_stack_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "info_bulb_image", + "padding", + "realms_incompatable_button_label" + ] + }, + "realms_incompatable_content/realms_content_stack_panel/info_bulb_image": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "info_bulb_image_small", + "namespace": "pdp" + } + }, + "realms_incompatable_content/realms_content_stack_panel/padding": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "realms_incompatable_content/realms_content_stack_panel/realms_incompatable_button_label": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "apply_to_realm_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "dark_text_button", + "namespace": "common_buttons" + } + }, + "in_csb_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "csb_gold_text_button", + "namespace": "common_csb" + } + }, + "read_more_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "read_more_button/default": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "read_more_button/hover": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "read_more_button/pressed": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "summary_content_right_side": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "pad_middle", + "text", + "entitlements_progress_panel", + "pad_right" + ] + }, + "summary_content_right_side/pad_middle": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_padding_2px", + "namespace": "pdp" + } + }, + "summary_content_right_side/text": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "summary_text_panel", + "namespace": "pdp" + } + }, + "summary_content_right_side/entitlements_progress_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "progress_loading" + ] + }, + "summary_content_right_side/entitlements_progress_panel/progress_loading": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_spinner", + "namespace": "common_store" + } + }, + "summary_content_right_side/pad_right": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_padding_4px", + "namespace": "pdp" + } + }, + "summary_content_whole_stack_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "left_side", + "divider_panel", + "right_side" + ] + }, + "summary_content_whole_stack_panel/left_side": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "summary_content_left_side", + "namespace": "pdp" + } + }, + "summary_content_whole_stack_panel/divider_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "vertical_divider", + "namespace": "common" + } + }, + "summary_content_whole_stack_panel/right_side": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "summary_content_right_side", + "namespace": "pdp" + } + }, + "summary_content_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "pad_top", + "summary_content_whole_stack", + "pad_3", + "divider_3" + ] + }, + "summary_content_panel/pad_top": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding_4px", + "namespace": "pdp" + } + }, + "summary_content_panel/summary_content_whole_stack": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "summary_content_whole_stack_panel", + "namespace": "pdp" + } + }, + "summary_content_panel/pad_3": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding_2px", + "namespace": "pdp" + } + }, + "summary_content_panel/divider_3": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "common" + } + }, + "appearance_status_image_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "limited_status_image", + "no_restrictions_status_image" + ] + }, + "appearance_status_image_panel/limited_status_image": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "info_bulb_image_small", + "namespace": "pdp" + } + }, + "appearance_status_image_panel/no_restrictions_status_image": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "appearance_status_content": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "appearance_status_image_panel", + "last_update_panel" + ] + }, + "appearance_status_content/appearance_status_image_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "appearance_status_image_panel", + "namespace": "pdp" + } + }, + "appearance_status_content/last_update_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "last_update_label" + ] + }, + "appearance_status_content/last_update_panel/last_update_label": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "dynamic_tooltip_notification_panel": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "dynamic_tooltip_notification_panel/default": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "dynamic_tooltip_notification_panel/hover": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "dynamic_tooltip_popup_with_image_and_text", + "namespace": "common" + } + }, + "dynamic_tooltip_notification_panel/pressed": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "dynamic_tooltip_popup_with_image_and_text", + "namespace": "common" + } + }, + "update_notification_content": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "dynamic_tooltip_notification_panel", + "status" + ] + }, + "update_notification_content/dynamic_tooltip_notification_panel": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "dynamic_tooltip_notification_panel", + "namespace": "pdp" + } + }, + "update_notification_content/status": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "appearance_status_content", + "namespace": "pdp" + } + }, + "update_notification_stack_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "pad_0", + "content", + "pad_1" + ] + }, + "update_notification_stack_panel/pad_0": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "update_notification_stack_panel/content": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "update_notification_content", + "namespace": "pdp" + } + }, + "update_notification_stack_panel/pad_1": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "tag_base": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "tag_button_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "tag", + "namespace": "pdp" + }, + "children": [ + "button" + ] + }, + "tag_button_panel/button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed", + "label" + ] + }, + "tag_button_panel/button/default": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "tag_base", + "namespace": "pdp" + } + }, + "tag_button_panel/button/hover": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "tag_base", + "namespace": "pdp" + } + }, + "tag_button_panel/button/pressed": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "tag_base", + "namespace": "pdp" + } + }, + "tag_button_panel/button/label": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "tag_row_factory": { + "file": "ui/pdp_screen.json", + "type": "stack_panel" + }, + "player_count_button_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "player_count_button", + "comma" + ] + }, + "player_count_button_panel/player_count_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "underline_button", + "namespace": "common_buttons" + } + }, + "player_count_button_panel/comma": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "player_count_factory": { + "file": "ui/pdp_screen.json", + "type": "stack_panel" + }, + "language_button_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "language_button", + "comma" + ] + }, + "language_button_panel/language_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "underline_button", + "namespace": "common_buttons" + } + }, + "language_button_panel/comma": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "language_row_factory": { + "file": "ui/pdp_screen.json", + "type": "stack_panel" + }, + "description_inner_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "description_stack_panel" + ] + }, + "description_inner_panel/description_stack_panel": { + "file": "ui/pdp_screen.json", + "type": "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": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "description_inner_panel/description_stack_panel/title_stack_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "title_text_panel", + "pad_0", + "divider_panel", + "pad_1" + ] + }, + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel": { + "file": "ui/pdp_screen.json", + "type": "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": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/pad_0": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "title_label" + ] + }, + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel/title_label": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "description_inner_panel/description_stack_panel/title_stack_panel/pad_0": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "divider" + ] + }, + "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel/divider": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "common" + } + }, + "description_inner_panel/description_stack_panel/title_stack_panel/pad_1": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "description_inner_panel/description_stack_panel/description_text_panel_full": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "description_text_expanded", + "button_panel" + ] + }, + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "description_label", + "pad_0", + "warning_panel" + ] + }, + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/description_label": { + "file": "ui/pdp_screen.json", + "type": "label", + "extend": { + "name": "description_label", + "namespace": "pdp" + } + }, + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/pad_0": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/warning_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "warning_panel", + "namespace": "pdp" + } + }, + "description_inner_panel/description_stack_panel/description_text_panel_full/button_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "description_toggle_show_button_panel", + "namespace": "pdp" + } + }, + "description_inner_panel/description_stack_panel/description_text_panel_collapsed": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "description_text_collapsed", + "collapsed_show_more_panel" + ] + }, + "description_inner_panel/description_stack_panel/description_text_panel_collapsed/description_text_collapsed": { + "file": "ui/pdp_screen.json", + "type": "label", + "extend": { + "name": "description_label", + "namespace": "pdp" + } + }, + "description_inner_panel/description_stack_panel/description_text_panel_collapsed/collapsed_show_more_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "description_toggle_show_button_panel", + "namespace": "pdp" + } + }, + "description_inner_panel/description_stack_panel/pad_1": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "description_inner_panel/description_stack_panel/divider_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "divider" + ] + }, + "description_inner_panel/description_stack_panel/divider_panel/divider": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "common" + } + }, + "description_inner_panel/description_stack_panel/pad_2": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "description_inner_panel/description_stack_panel/tags_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "label_text_panel", + "pad", + "tag_factory_panel" + ] + }, + "description_inner_panel/description_stack_panel/tags_panel/label_text_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "label_text" + ] + }, + "description_inner_panel/description_stack_panel/tags_panel/label_text_panel/label_text": { + "file": "ui/pdp_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "description_inner_panel/description_stack_panel/tags_panel/pad": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "tags_factory_with_rows", + "tags_factory" + ] + }, + "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory_with_rows": { + "file": "ui/pdp_screen.json", + "type": "stack_panel" + }, + "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "tag_row_factory", + "namespace": "pdp" + } + }, + "description_inner_panel/description_stack_panel/genre_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "label_text", + "pad", + "text_panel" + ] + }, + "description_inner_panel/description_stack_panel/genre_panel/label_text": { + "file": "ui/pdp_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "description_inner_panel/description_stack_panel/genre_panel/pad": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "description_inner_panel/description_stack_panel/genre_panel/text_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "text_stack_panel" + ] + }, + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel": { + "file": "ui/pdp_screen.json", + "type": "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": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "underline_button", + "namespace": "common_buttons" + } + }, + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/pad_0": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/slash_divider": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/subgenre_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "underline_button", + "namespace": "common_buttons" + } + }, + "description_inner_panel/description_stack_panel/players_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "label_text", + "pad", + "text_panel" + ] + }, + "description_inner_panel/description_stack_panel/players_panel/label_text": { + "file": "ui/pdp_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "description_inner_panel/description_stack_panel/players_panel/pad": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "description_inner_panel/description_stack_panel/players_panel/text_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "text_stack_panel" + ] + }, + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel": { + "file": "ui/pdp_screen.json", + "type": "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": { + "file": "ui/pdp_screen.json", + "type": "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": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "player_count_factory", + "namespace": "pdp" + } + }, + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/pad": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_range_panel": { + "file": "ui/pdp_screen.json", + "type": "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": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/note_text": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "description_inner_panel/description_stack_panel/languages_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "label_text_panel", + "pad", + "languages_factory" + ] + }, + "description_inner_panel/description_stack_panel/languages_panel/label_text_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "label_text" + ] + }, + "description_inner_panel/description_stack_panel/languages_panel/label_text_panel/label_text": { + "file": "ui/pdp_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "description_inner_panel/description_stack_panel/languages_panel/pad": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "description_inner_panel/description_stack_panel/languages_panel/languages_factory": { + "file": "ui/pdp_screen.json", + "type": "stack_panel" + }, + "description_inner_panel/description_stack_panel/pad_3": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "description_inner_panel/description_stack_panel/show_less_button_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "description_toggle_show_button_panel", + "namespace": "pdp" + } + }, + "description_section": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "content_section_boarder_bg", + "namespace": "pdp" + } + }, + "changelog_section": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "description_section", + "namespace": "pdp" + } + }, + "bundle_thumbnail": { + "file": "ui/pdp_screen.json", + "type": "image" + }, + "bundle_thumbnail_section_content": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "bundle_thumbnail_grid" + ] + }, + "bundle_thumbnail_section_content/bundle_thumbnail_grid": { + "file": "ui/pdp_screen.json", + "type": "grid" + }, + "bundle_thumbnail_section": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "content_section_bg", + "namespace": "pdp" + } + }, + "price_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "coin_non_sale_price_label", + "price_padding", + "offer_prompt_panel", + "padding_3", + "coin_panel" + ] + }, + "price_panel/coin_non_sale_price_label": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "offer_price_markdown_panel", + "namespace": "common_store" + } + }, + "price_panel/price_padding": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "price_panel/offer_prompt_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "offer_status_text" + ] + }, + "price_panel/offer_prompt_panel/offer_status_text": { + "file": "ui/pdp_screen.json", + "type": "label" + }, + "price_panel/padding_3": { + "file": "ui/pdp_screen.json", + "type": "panel" + }, + "price_panel/coin_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "offer_coin_icon" + ] + }, + "price_panel/coin_panel/offer_coin_icon": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "coin_icon", + "namespace": "common_store" + } + }, + "rating_and_coins_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "children": [ + "rating_panel", + "rating_padding_coin", + "price_panel" + ] + }, + "rating_and_coins_panel/rating_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "rating_text_panel", + "namespace": "common_store" + } + }, + "rating_and_coins_panel/rating_padding_coin": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_padding_fill", + "namespace": "pdp" + } + }, + "rating_and_coins_panel/price_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "price_panel", + "namespace": "pdp" + } + }, + "bundle_offer_texture": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "texture" + ] + }, + "bundle_offer_texture/texture": { + "file": "ui/pdp_screen.json", + "type": "image", + "children": [ + "border" + ] + }, + "bundle_offer_texture/texture/border": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "focus_border", + "namespace": "common_buttons" + } + }, + "bundle_offer_info": { + "file": "ui/pdp_screen.json", + "type": "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": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding_4px", + "namespace": "pdp" + } + }, + "bundle_offer_info/offer_title_and_author_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "title_and_author_panel", + "namespace": "pdp" + } + }, + "bundle_offer_info/glyph_section": { + "file": "ui/pdp_screen.json", + "type": "unknown", + "extend": { + "name": "horizontal_glyph_section_panel", + "namespace": "pdp" + } + }, + "bundle_offer_info/glyph_description_padding": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding_2px", + "namespace": "pdp" + } + }, + "bundle_offer_info/description_panel": { + "file": "ui/pdp_screen.json", + "type": "unknown", + "extend": { + "name": "description_section_panel", + "namespace": "pdp" + } + }, + "bundle_offer_info/description_padding": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding_4px", + "namespace": "pdp" + } + }, + "bundle_offer_info/description_padding_bottom": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding_fill", + "namespace": "pdp" + } + }, + "bundle_offer_info/rating_and_price_panel": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "rating_and_coins_panel", + "namespace": "pdp" + } + }, + "bundle_offer_info/bottom_padding": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding_4px", + "namespace": "pdp" + } + }, + "bundle_offer_summary_grid_item_content": { + "file": "ui/pdp_screen.json", + "type": "image", + "children": [ + "bundle_offer_pdp_panel" + ] + }, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "focus_border", + "bundle_offer_content_panel" + ] + }, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/focus_border": { + "file": "ui/pdp_screen.json", + "type": "image", + "extend": { + "name": "focus_border", + "namespace": "common_buttons" + } + }, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel": { + "file": "ui/pdp_screen.json", + "type": "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": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "bundle_offer_texture", + "namespace": "pdp" + } + }, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/mid_padding": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_padding_4px", + "namespace": "pdp" + } + }, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/info": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "bundle_offer_info", + "namespace": "pdp" + } + }, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/right_padding": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_padding_4px", + "namespace": "pdp" + } + }, + "bundle_offer_summary_grid_item": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "bundle_offer_summary_button" + ] + }, + "bundle_offer_summary_grid_item/bundle_offer_summary_button": { + "file": "ui/pdp_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "bundle_offer_content_section": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "bundle_grid" + ] + }, + "bundle_offer_content_section/bundle_grid": { + "file": "ui/pdp_screen.json", + "type": "grid" + }, + "bundle_summary_section_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "bundle_summary_section", + "divider_3" + ] + }, + "bundle_summary_section_panel/bundle_summary_section": { + "file": "ui/pdp_screen.json", + "type": "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": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "bundle_thumbnail_section", + "namespace": "pdp" + } + }, + "bundle_summary_section_panel/bundle_summary_section/mid_padding": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding_2px", + "namespace": "pdp" + } + }, + "bundle_summary_section_panel/bundle_summary_section/bundle_offers_info_section": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "bundle_offer_content_section", + "namespace": "pdp" + } + }, + "bundle_summary_section_panel/bundle_summary_section/mid_padding_2": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding_2px", + "namespace": "pdp" + } + }, + "bundle_summary_section_panel/bundle_summary_section/interact_panel": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "bundle_interact" + ] + }, + "bundle_summary_section_panel/bundle_summary_section/interact_panel/bundle_interact": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "interaction_button_panel", + "namespace": "pdp" + } + }, + "bundle_summary_section_panel/divider_3": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "common" + } + }, + "pdp_screen": { + "file": "ui/pdp_screen.json", + "type": "screen", + "extend": { + "name": "store_base_screen", + "namespace": "common_store" + } + }, + "mashup_screen_content": { + "file": "ui/pdp_screen.json", + "type": "panel", + "children": [ + "header", + "popup_dialog_factory" + ] + }, + "mashup_screen_content/header": { + "file": "ui/pdp_screen.json", + "type": "stack_panel", + "extend": { + "name": "store_header_with_coins", + "namespace": "common_store" + } + }, + "mashup_screen_content/popup_dialog_factory": { + "file": "ui/pdp_screen.json", + "type": "factory" + }, + "mashup_screen_main": { + "file": "ui/pdp_screen.json", + "type": "input_panel", + "children": [ + "pack_content", + "progress_loading" + ] + }, + "mashup_screen_main/pack_content": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "mashup_screen_main/progress_loading": { + "file": "ui/pdp_screen.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + } + }, + "pdp_screenshots": { + "banner_empty": { + "file": "ui/pdp_screenshots_section.json", + "type": "image" + }, + "screenshot_carousel": { + "file": "ui/pdp_screenshots_section.json", + "type": "panel", + "children": [ + "screenshot_carousel_content" + ] + }, + "screenshot_carousel/screenshot_carousel_content": { + "file": "ui/pdp_screenshots_section.json", + "type": "panel", + "children": [ + "cycle_pack_left_button", + "screenshots_grid", + "cycle_pack_right_button" + ] + }, + "screenshot_carousel/screenshot_carousel_content/cycle_pack_left_button": { + "file": "ui/pdp_screenshots_section.json", + "type": "button", + "extend": { + "name": "cycle_pack_left_button", + "namespace": "common_store" + } + }, + "screenshot_carousel/screenshot_carousel_content/screenshots_grid": { + "file": "ui/pdp_screenshots_section.json", + "type": "stack_panel", + "extend": { + "name": "screenshots_grid", + "namespace": "pdp_screenshots" + } + }, + "screenshot_carousel/screenshot_carousel_content/cycle_pack_right_button": { + "file": "ui/pdp_screenshots_section.json", + "type": "button", + "extend": { + "name": "cycle_pack_right_button", + "namespace": "common_store" + } + }, + "screenshots_grid": { + "file": "ui/pdp_screenshots_section.json", + "type": "stack_panel", + "children": [ + "left_image_panel", + "middle_image_panel", + "right_image_panel" + ] + }, + "screenshots_grid/left_image_panel": { + "file": "ui/pdp_screenshots_section.json", + "type": "panel", + "extend": { + "name": "screenshots_grid_item", + "namespace": "pdp_screenshots" + } + }, + "screenshots_grid/middle_image_panel": { + "file": "ui/pdp_screenshots_section.json", + "type": "panel", + "extend": { + "name": "screenshots_grid_item", + "namespace": "pdp_screenshots" + } + }, + "screenshots_grid/right_image_panel": { + "file": "ui/pdp_screenshots_section.json", + "type": "panel", + "extend": { + "name": "screenshots_grid_item", + "namespace": "pdp_screenshots" + } + }, + "screenshots_grid_item": { + "file": "ui/pdp_screenshots_section.json", + "type": "panel", + "children": [ + "frame", + "screenshot_image", + "progress_loading" + ] + }, + "screenshots_grid_item/frame": { + "file": "ui/pdp_screenshots_section.json", + "type": "image", + "extend": { + "name": "banner_empty", + "namespace": "pdp_screenshots" + }, + "children": [ + "screenshot_button" + ] + }, + "screenshots_grid_item/frame/screenshot_button": { + "file": "ui/pdp_screenshots_section.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "hover", + "pressed" + ] + }, + "screenshots_grid_item/frame/screenshot_button/hover": { + "file": "ui/pdp_screenshots_section.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "screenshots_grid_item/frame/screenshot_button/pressed": { + "file": "ui/pdp_screenshots_section.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "screenshots_grid_item/screenshot_image": { + "file": "ui/pdp_screenshots_section.json", + "type": "image" + }, + "screenshots_grid_item/progress_loading": { + "file": "ui/pdp_screenshots_section.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + } + }, + "permissions": { + "permissions_screen": { + "file": "ui/permissions_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "permissions_screen_content": { + "file": "ui/permissions_screen.json", + "type": "stack_panel", + "children": [ + "top_bar_panel", + "content_panel" + ] + }, + "permissions_screen_content/top_bar_panel": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "top_bar_panel", + "namespace": "permissions" + } + }, + "permissions_screen_content/content_panel": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "content_panel", + "namespace": "permissions" + } + }, + "top_bar_panel": { + "file": "ui/permissions_screen.json", + "type": "panel", + "children": [ + "top_bar", + "back_button", + "gamepad_helper_b", + "title_label" + ] + }, + "top_bar_panel/top_bar": { + "file": "ui/permissions_screen.json", + "type": "image", + "extend": { + "name": "top_bar", + "namespace": "permissions" + } + }, + "top_bar_panel/back_button": { + "file": "ui/permissions_screen.json", + "type": "button", + "extend": { + "name": "back_button", + "namespace": "permissions" + } + }, + "top_bar_panel/gamepad_helper_b": { + "file": "ui/permissions_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_b", + "namespace": "common" + } + }, + "top_bar_panel/title_label": { + "file": "ui/permissions_screen.json", + "type": "label", + "extend": { + "name": "title_label", + "namespace": "permissions" + } + }, + "content_panel": { + "file": "ui/permissions_screen.json", + "type": "panel", + "children": [ + "content_stack_panel" + ] + }, + "content_panel/content_stack_panel": { + "file": "ui/permissions_screen.json", + "type": "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": { + "file": "ui/permissions_screen.json", + "type": "panel" + }, + "content_panel/content_stack_panel/ip_label": { + "file": "ui/permissions_screen.json", + "type": "label", + "extend": { + "name": "ip_label", + "namespace": "permissions" + } + }, + "content_panel/content_stack_panel/world_label": { + "file": "ui/permissions_screen.json", + "type": "label", + "extend": { + "name": "world_label", + "namespace": "permissions" + } + }, + "content_panel/content_stack_panel/content_padding_2": { + "file": "ui/permissions_screen.json", + "type": "panel" + }, + "content_panel/content_stack_panel/player_and_permissions_panel": { + "file": "ui/permissions_screen.json", + "type": "stack_panel", + "extend": { + "name": "player_and_permissions_panel", + "namespace": "permissions" + } + }, + "player_and_permissions_panel": { + "file": "ui/permissions_screen.json", + "type": "stack_panel", + "children": [ + "selector_area", + "content_area" + ] + }, + "player_and_permissions_panel/selector_area": { + "file": "ui/permissions_screen.json", + "type": "input_panel", + "extend": { + "name": "selector_area", + "namespace": "permissions" + } + }, + "player_and_permissions_panel/content_area": { + "file": "ui/permissions_screen.json", + "type": "input_panel", + "extend": { + "name": "content_area", + "namespace": "permissions" + } + }, + "selector_area": { + "file": "ui/permissions_screen.json", + "type": "input_panel", + "extend": { + "name": "modal_area_panel_base", + "namespace": "common" + }, + "children": [ + "player_scrolling_panel" + ] + }, + "selector_area/player_scrolling_panel": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "content_area": { + "file": "ui/permissions_screen.json", + "type": "input_panel", + "extend": { + "name": "modal_area_panel_base", + "namespace": "common" + }, + "children": [ + "permissions_options_background", + "inactive_modal_pane_fade" + ] + }, + "content_area/permissions_options_background": { + "file": "ui/permissions_screen.json", + "type": "panel", + "children": [ + "permissions_options_background_image" + ] + }, + "content_area/permissions_options_background/permissions_options_background_image": { + "file": "ui/permissions_screen.json", + "type": "image", + "extend": { + "name": "banner_background", + "namespace": "permissions" + }, + "children": [ + "permissions_options_scrolling_panel" + ] + }, + "content_area/permissions_options_background/permissions_options_background_image/permissions_options_scrolling_panel": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "permissions_options_scrolling_panel", + "namespace": "permissions" + } + }, + "content_area/inactive_modal_pane_fade": { + "file": "ui/permissions_screen.json", + "type": "image", + "extend": { + "name": "inactive_modal_pane_fade", + "namespace": "common" + } + }, + "kick_button": { + "file": "ui/permissions_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "ban_button": { + "file": "ui/permissions_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "players_grid_panel": { + "file": "ui/permissions_screen.json", + "type": "panel", + "children": [ + "players_grid" + ] + }, + "players_grid_panel/players_grid": { + "file": "ui/permissions_screen.json", + "type": "grid", + "extend": { + "name": "players_grid", + "namespace": "permissions" + } + }, + "players_grid": { + "file": "ui/permissions_screen.json", + "type": "grid" + }, + "player_grid_item": { + "file": "ui/permissions_screen.json", + "type": "panel", + "children": [ + "player_toggle", + "inactive_modal_pane_fade" + ] + }, + "player_grid_item/player_toggle": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "player_toggle", + "namespace": "permissions" + } + }, + "player_grid_item/inactive_modal_pane_fade": { + "file": "ui/permissions_screen.json", + "type": "image", + "extend": { + "name": "inactive_modal_pane_fade", + "namespace": "common" + } + }, + "permissions_options_scrolling_panel": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "permissions_options_panel": { + "file": "ui/permissions_screen.json", + "type": "panel", + "children": [ + "inner_permissions_options_panel" + ] + }, + "permissions_options_panel/inner_permissions_options_panel": { + "file": "ui/permissions_screen.json", + "type": "panel", + "children": [ + "permissions_options_stack_panel" + ] + }, + "permissions_options_panel/inner_permissions_options_panel/permissions_options_stack_panel": { + "file": "ui/permissions_screen.json", + "type": "stack_panel", + "extend": { + "name": "permissions_options_stack_panel", + "namespace": "permissions" + } + }, + "permissions_options_stack_panel": { + "file": "ui/permissions_screen.json", + "type": "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": { + "file": "ui/permissions_screen.json", + "type": "panel" + }, + "permissions_options_stack_panel/world_template_option_lock_panel": { + "file": "ui/permissions_screen.json", + "type": "panel", + "children": [ + "option_info_label" + ] + }, + "permissions_options_stack_panel/world_template_option_lock_panel/option_info_label": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "option_info_label", + "namespace": "settings_common" + } + }, + "permissions_options_stack_panel/permissions_padding_1": { + "file": "ui/permissions_screen.json", + "type": "panel" + }, + "permissions_options_stack_panel/permission_level_dropdown": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "permission_level_dropdown", + "namespace": "permissions" + } + }, + "permissions_options_stack_panel/permissions_padding_2": { + "file": "ui/permissions_screen.json", + "type": "panel" + }, + "permissions_options_stack_panel/permissions_options_grid": { + "file": "ui/permissions_screen.json", + "type": "grid", + "extend": { + "name": "permissions_options_grid", + "namespace": "permissions" + } + }, + "permissions_options_stack_panel/permissions_padding_3": { + "file": "ui/permissions_screen.json", + "type": "panel" + }, + "permissions_options_stack_panel/permissions_kick_button_panel": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "permissions_kick_button_panel", + "namespace": "permissions" + } + }, + "permissions_options_stack_panel/permissions_padding_4": { + "file": "ui/permissions_screen.json", + "type": "panel" + }, + "permissions_options_stack_panel/permissions_ban_button_panel": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "permissions_ban_button_panel", + "namespace": "permissions" + } + }, + "permissions_options_stack_panel/permissions_padding_5": { + "file": "ui/permissions_screen.json", + "type": "panel" + }, + "permissions_options_grid": { + "file": "ui/permissions_screen.json", + "type": "grid" + }, + "permissions_options_grid_item": { + "file": "ui/permissions_screen.json", + "type": "stack_panel", + "children": [ + "option_label_panel", + "option_state_label_panel", + "option_toggle" + ] + }, + "permissions_options_grid_item/option_label_panel": { + "file": "ui/permissions_screen.json", + "type": "panel", + "children": [ + "option_label" + ] + }, + "permissions_options_grid_item/option_label_panel/option_label": { + "file": "ui/permissions_screen.json", + "type": "label", + "extend": { + "name": "option_label", + "namespace": "permissions" + } + }, + "permissions_options_grid_item/option_state_label_panel": { + "file": "ui/permissions_screen.json", + "type": "panel", + "children": [ + "option_state_label" + ] + }, + "permissions_options_grid_item/option_state_label_panel/option_state_label": { + "file": "ui/permissions_screen.json", + "type": "label", + "extend": { + "name": "option_state_label", + "namespace": "permissions" + } + }, + "permissions_options_grid_item/option_toggle": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "permissions" + } + }, + "permissions_kick_button_panel": { + "file": "ui/permissions_screen.json", + "type": "panel", + "children": [ + "kick_button" + ] + }, + "permissions_kick_button_panel/kick_button": { + "file": "ui/permissions_screen.json", + "type": "button", + "extend": { + "name": "kick_button", + "namespace": "permissions" + } + }, + "permissions_ban_button_panel": { + "file": "ui/permissions_screen.json", + "type": "panel", + "children": [ + "ban_button" + ] + }, + "permissions_ban_button_panel/ban_button": { + "file": "ui/permissions_screen.json", + "type": "button", + "extend": { + "name": "ban_button", + "namespace": "permissions" + } + }, + "title_label": { + "file": "ui/permissions_screen.json", + "type": "label" + }, + "ip_label": { + "file": "ui/permissions_screen.json", + "type": "label" + }, + "world_label": { + "file": "ui/permissions_screen.json", + "type": "label" + }, + "gamertag_label": { + "file": "ui/permissions_screen.json", + "type": "label" + }, + "option_state_label": { + "file": "ui/permissions_screen.json", + "type": "label" + }, + "option_label": { + "file": "ui/permissions_screen.json", + "type": "label" + }, + "top_bar": { + "file": "ui/permissions_screen.json", + "type": "image" + }, + "banner_background": { + "file": "ui/permissions_screen.json", + "type": "image" + }, + "player_local_icon": { + "file": "ui/permissions_screen.json", + "type": "image" + }, + "player_gamer_pic": { + "file": "ui/permissions_screen.json", + "type": "image", + "children": [ + "player_panel_black_border" + ] + }, + "player_gamer_pic/player_panel_black_border": { + "file": "ui/permissions_screen.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "back_button": { + "file": "ui/permissions_screen.json", + "type": "button", + "extend": { + "name": "no_background_content_button", + "namespace": "common_buttons" + } + }, + "back_button_content": { + "file": "ui/permissions_screen.json", + "type": "stack_panel", + "children": [ + "chevron_panel", + "back_button_padding", + "label_panel" + ] + }, + "back_button_content/chevron_panel": { + "file": "ui/permissions_screen.json", + "type": "panel", + "children": [ + "left_chevron" + ] + }, + "back_button_content/chevron_panel/left_chevron": { + "file": "ui/permissions_screen.json", + "type": "image", + "extend": { + "name": "chevron_image", + "namespace": "common" + } + }, + "back_button_content/back_button_padding": { + "file": "ui/permissions_screen.json", + "type": "panel" + }, + "back_button_content/label_panel": { + "file": "ui/permissions_screen.json", + "type": "panel", + "children": [ + "label" + ] + }, + "back_button_content/label_panel/label": { + "file": "ui/permissions_screen.json", + "type": "label", + "extend": { + "name": "new_ui_binding_button_label", + "namespace": "common_buttons" + } + }, + "player_toggle": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "dark_image_toggle_collection", + "namespace": "common_toggles" + } + }, + "player_button_content": { + "file": "ui/permissions_screen.json", + "type": "stack_panel", + "children": [ + "player_pic_panel", + "player_button_padding_1", + "gamertag_panel", + "icon_panel", + "player_button_padding_2" + ] + }, + "player_button_content/player_pic_panel": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "player_pic_panel", + "namespace": "permissions" + } + }, + "player_button_content/player_button_padding_1": { + "file": "ui/permissions_screen.json", + "type": "panel" + }, + "player_button_content/gamertag_panel": { + "file": "ui/permissions_screen.json", + "type": "panel", + "children": [ + "gamertag_label" + ] + }, + "player_button_content/gamertag_panel/gamertag_label": { + "file": "ui/permissions_screen.json", + "type": "label", + "extend": { + "name": "gamertag_label", + "namespace": "permissions" + } + }, + "player_button_content/icon_panel": { + "file": "ui/permissions_screen.json", + "type": "panel", + "children": [ + "dropdown_icon_image" + ] + }, + "player_button_content/icon_panel/dropdown_icon_image": { + "file": "ui/permissions_screen.json", + "type": "image" + }, + "player_button_content/player_button_padding_2": { + "file": "ui/permissions_screen.json", + "type": "panel" + }, + "player_pic_panel": { + "file": "ui/permissions_screen.json", + "type": "panel", + "children": [ + "player_gamer_pic", + "player_local_icon" + ] + }, + "player_pic_panel/player_gamer_pic": { + "file": "ui/permissions_screen.json", + "type": "image", + "extend": { + "name": "player_gamer_pic", + "namespace": "permissions" + } + }, + "player_pic_panel/player_local_icon": { + "file": "ui/permissions_screen.json", + "type": "image", + "extend": { + "name": "player_local_icon", + "namespace": "permissions" + } + }, + "option_toggle": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "switch_toggle_collection", + "namespace": "common_toggles" + } + }, + "permission_level_dropdown": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "radio_title_and_icon": { + "file": "ui/permissions_screen.json", + "type": "panel", + "children": [ + "radio_icon", + "radio_title" + ] + }, + "radio_title_and_icon/radio_icon": { + "file": "ui/permissions_screen.json", + "type": "image" + }, + "radio_title_and_icon/radio_title": { + "file": "ui/permissions_screen.json", + "type": "label" + }, + "radio_content_with_title_bar": { + "file": "ui/permissions_screen.json", + "type": "stack_panel", + "children": [ + "title_and_icon", + "helper_text", + "bottom_padding" + ] + }, + "radio_content_with_title_bar/title_and_icon": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "radio_title_and_icon", + "namespace": "permissions" + } + }, + "radio_content_with_title_bar/helper_text": { + "file": "ui/permissions_screen.json", + "type": "label" + }, + "radio_content_with_title_bar/bottom_padding": { + "file": "ui/permissions_screen.json", + "type": "panel" + }, + "radio_visuals_with_title": { + "file": "ui/permissions_screen.json", + "type": "panel", + "children": [ + "radio_content" + ] + }, + "radio_visuals_with_title/radio_content": { + "file": "ui/permissions_screen.json", + "type": "stack_panel", + "extend": { + "name": "radio_content_with_title_bar", + "namespace": "permissions" + } + }, + "radio_visuals_with_title_hover": { + "file": "ui/permissions_screen.json", + "type": "image", + "children": [ + "radio_content" + ] + }, + "radio_visuals_with_title_hover/radio_content": { + "file": "ui/permissions_screen.json", + "type": "stack_panel", + "extend": { + "name": "radio_content_with_title_bar", + "namespace": "permissions" + } + }, + "permissions_visitor_visuals_with_title_normal": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "radio_visuals_with_title", + "namespace": "permissions" + } + }, + "permissions_visitor_visuals_with_title_hover": { + "file": "ui/permissions_screen.json", + "type": "image", + "extend": { + "name": "radio_visuals_with_title_hover", + "namespace": "permissions" + } + }, + "permissions_member_visuals_with_title_normal": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "radio_visuals_with_title", + "namespace": "permissions" + } + }, + "permissions_member_visuals_with_title_hover": { + "file": "ui/permissions_screen.json", + "type": "image", + "extend": { + "name": "radio_visuals_with_title_hover", + "namespace": "permissions" + } + }, + "permissions_op_visuals_with_title_normal": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "radio_visuals_with_title", + "namespace": "permissions" + } + }, + "permissions_op_visuals_with_title_hover": { + "file": "ui/permissions_screen.json", + "type": "image", + "extend": { + "name": "radio_visuals_with_title_hover", + "namespace": "permissions" + } + }, + "permissions_visitor_radio_visuals_normal": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "radio_visuals", + "namespace": "settings_common" + } + }, + "permissions_visitor_radio_visuals_hover": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "radio_visuals", + "namespace": "settings_common" + } + }, + "permissions_member_radio_visuals_normal": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "radio_visuals", + "namespace": "settings_common" + } + }, + "permissions_member_radio_visuals_hover": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "radio_visuals", + "namespace": "settings_common" + } + }, + "permissions_op_radio_visuals_normal": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "radio_visuals", + "namespace": "settings_common" + } + }, + "permissions_op_radio_visuals_hover": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "radio_visuals", + "namespace": "settings_common" + } + }, + "permissions_custom_radio_visuals_normal": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "radio_visuals", + "namespace": "settings_common" + } + }, + "permissions_custom_radio_visuals_hover": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "radio_visuals", + "namespace": "settings_common" + } + }, + "permission_level_radio": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "radio_with_label", + "namespace": "settings_common" + }, + "children": [ + "radio_with_label_core" + ] + }, + "permission_level_radio/radio_with_label_core": { + "file": "ui/permissions_screen.json", + "type": "toggle", + "extend": { + "name": "radio_with_label_core", + "namespace": "settings_common" + } + }, + "permission_level_dropdown_content": { + "file": "ui/permissions_screen.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "permission_level_dropdown_state_content": { + "file": "ui/permissions_screen.json", + "type": "stack_panel", + "children": [ + "icon_panel", + "dropdown_label_padding", + "label_panel", + "arrow_panel" + ] + }, + "permission_level_dropdown_state_content/icon_panel": { + "file": "ui/permissions_screen.json", + "type": "panel", + "children": [ + "dropdown_icon_image" + ] + }, + "permission_level_dropdown_state_content/icon_panel/dropdown_icon_image": { + "file": "ui/permissions_screen.json", + "type": "image" + }, + "permission_level_dropdown_state_content/dropdown_label_padding": { + "file": "ui/permissions_screen.json", + "type": "panel" + }, + "permission_level_dropdown_state_content/label_panel": { + "file": "ui/permissions_screen.json", + "type": "panel", + "children": [ + "label" + ] + }, + "permission_level_dropdown_state_content/label_panel/label": { + "file": "ui/permissions_screen.json", + "type": "label", + "extend": { + "name": "new_button_label", + "namespace": "common" + } + }, + "permission_level_dropdown_state_content/arrow_panel": { + "file": "ui/permissions_screen.json", + "type": "panel", + "children": [ + "arrow_image" + ] + }, + "permission_level_dropdown_state_content/arrow_panel/arrow_image": { + "file": "ui/permissions_screen.json", + "type": "image", + "extend": { + "name": "arrow_image", + "namespace": "settings_common" + } + } + }, + "persona_cast_character_screen": { + "cast_modal_bottom_bar": { + "file": "ui/persona_cast_character_screen.json", + "type": "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": { + "file": "ui/persona_cast_character_screen.json", + "type": "unknown" + }, + "cast_common_dialog_background": { + "file": "ui/persona_cast_character_screen.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_2", + "namespace": "common_dialogs" + }, + "children": [ + "top_bar", + "popup_inner_contents", + "cast_modal_bottom_bar" + ] + }, + "cast_common_dialog_background/top_bar": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "extend": { + "name": "common_cast_modal_top_bar", + "namespace": "persona_cast_character_screen" + } + }, + "cast_common_dialog_background/popup_inner_contents": { + "file": "ui/persona_cast_character_screen.json", + "type": "unknown" + }, + "cast_common_dialog_background/cast_modal_bottom_bar": { + "file": "ui/persona_cast_character_screen.json", + "type": "stack_panel", + "extend": { + "name": "cast_modal_bottom_bar", + "namespace": "persona_cast_character_screen" + } + }, + "cast_modal_panel": { + "file": "ui/persona_cast_character_screen.json", + "type": "input_panel", + "children": [ + "cast_preview_modal_content" + ] + }, + "cast_modal_panel/cast_preview_modal_content": { + "file": "ui/persona_cast_character_screen.json", + "type": "image", + "extend": { + "name": "cast_common_dialog_background", + "namespace": "persona_cast_character_screen" + } + }, + "popup_dialog__cast_character_select": { + "file": "ui/persona_cast_character_screen.json", + "type": "input_panel", + "extend": { + "name": "common_dcast_popup_framework", + "namespace": "persona_cast_character_screen" + }, + "children": [ + "background", + "popup_background" + ] + }, + "popup_dialog__cast_character_select/background": { + "file": "ui/persona_cast_character_screen.json", + "type": "image", + "extend": { + "name": "common_background_blocker", + "namespace": "persona_cast_character_screen" + } + }, + "popup_dialog__cast_character_select/popup_background": { + "file": "ui/persona_cast_character_screen.json", + "type": "input_panel", + "extend": { + "name": "cast_modal_panel", + "namespace": "persona_cast_character_screen" + } + }, + "common_dcast_popup_framework": { + "file": "ui/persona_cast_character_screen.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog", + "namespace": "popup_dialog" + } + }, + "common_cast_modal_top_bar": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "children": [ + "title_panel", + "close_button_holder" + ] + }, + "common_cast_modal_top_bar/title_panel": { + "file": "ui/persona_cast_character_screen.json", + "type": "label" + }, + "common_cast_modal_top_bar/close_button_holder": { + "file": "ui/persona_cast_character_screen.json", + "type": "stack_panel", + "extend": { + "name": "common_close_button_holder", + "namespace": "common_dialogs" + } + }, + "cast_character_select_main": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "children": [ + "modal_inner_background", + "main_content_horizontal_stack" + ] + }, + "cast_character_select_main/modal_inner_background": { + "file": "ui/persona_cast_character_screen.json", + "type": "image" + }, + "cast_character_select_main/main_content_horizontal_stack": { + "file": "ui/persona_cast_character_screen.json", + "type": "stack_panel", + "children": [ + "cast_grid", + "vertical_centerer" + ] + }, + "cast_character_select_main/main_content_horizontal_stack/cast_grid": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "extend": { + "name": "cast_scroll_view_panel", + "namespace": "persona_cast_character_screen" + } + }, + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "top_fill", + "skin_viewer_panel", + "bottom_fill", + "bottom_padding" + ] + }, + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/top_fill": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/skin_viewer_panel": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "extend": { + "name": "persona_cast_paper_doll_panel", + "namespace": "persona_cast_character_screen" + } + }, + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_fill": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_padding": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "cast_scroll_view_panel": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "cast_grid_with_buttons": { + "file": "ui/persona_cast_character_screen.json", + "type": "stack_panel", + "children": [ + "top_spacing", + "cast_grid", + "bottom_spacing" + ] + }, + "cast_grid_with_buttons/top_spacing": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel" + }, + "cast_grid_with_buttons/cast_grid": { + "file": "ui/persona_cast_character_screen.json", + "type": "grid" + }, + "cast_grid_with_buttons/bottom_spacing": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel" + }, + "cast_grid_panel": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "children": [ + "cast_grid" + ] + }, + "cast_grid_panel/cast_grid": { + "file": "ui/persona_cast_character_screen.json", + "type": "stack_panel", + "extend": { + "name": "cast_grid_with_buttons", + "namespace": "persona_cast_character_screen" + } + }, + "cast_single_character_button_panel": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "children": [ + "cast_character_button" + ] + }, + "cast_single_character_button_panel/cast_character_button": { + "file": "ui/persona_cast_character_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "background_image", + "selected", + "default", + "hover", + "pressed", + "button_outline" + ] + }, + "cast_single_character_button_panel/cast_character_button/background_image": { + "file": "ui/persona_cast_character_screen.json", + "type": "image" + }, + "cast_single_character_button_panel/cast_character_button/selected": { + "file": "ui/persona_cast_character_screen.json", + "type": "image", + "extend": { + "name": "selected_border", + "namespace": "persona_common" + } + }, + "cast_single_character_button_panel/cast_character_button/default": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "cast_single_character_button_panel/cast_character_button/hover": { + "file": "ui/persona_cast_character_screen.json", + "type": "image", + "extend": { + "name": "focus_border", + "namespace": "persona_common" + } + }, + "cast_single_character_button_panel/cast_character_button/pressed": { + "file": "ui/persona_cast_character_screen.json", + "type": "image", + "extend": { + "name": "focus_border", + "namespace": "persona_common" + } + }, + "cast_single_character_button_panel/cast_character_button/button_outline": { + "file": "ui/persona_cast_character_screen.json", + "type": "image", + "children": [ + "cast_character_content" + ] + }, + "cast_single_character_button_panel/cast_character_button/button_outline/cast_character_content": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "extend": { + "name": "cast_character_button_content_panel", + "namespace": "persona_cast_character_screen" + } + }, + "cast_character_button_content_panel": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "children": [ + "cast_single_character_content_visible_panel" + ] + }, + "cast_character_button_content_panel/cast_single_character_content_visible_panel": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "children": [ + "cast_single_character_button_content" + ] + }, + "cast_character_button_content_panel/cast_single_character_content_visible_panel/cast_single_character_button_content": { + "file": "ui/persona_cast_character_screen.json", + "type": "image", + "extend": { + "name": "in_use_grid_item", + "namespace": "persona_cast_character_screen" + } + }, + "in_use_grid_item": { + "file": "ui/persona_cast_character_screen.json", + "type": "image" + }, + "persona_cast_paper_doll_panel": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "children": [ + "preset_input_panel" + ] + }, + "persona_cast_paper_doll_panel/preset_input_panel": { + "file": "ui/persona_cast_character_screen.json", + "type": "input_panel", + "extend": { + "name": "cast_character_screen_right_side_model", + "namespace": "persona_cast_character_screen" + } + }, + "character_loading_anim": { + "file": "ui/persona_cast_character_screen.json", + "type": "image", + "extend": { + "name": "loading_icon", + "namespace": "persona_common" + } + }, + "character_loading_anim_panel": { + "file": "ui/persona_cast_character_screen.json", + "type": "image", + "children": [ + "character_loading_anim" + ] + }, + "character_loading_anim_panel/character_loading_anim": { + "file": "ui/persona_cast_character_screen.json", + "type": "image", + "extend": { + "name": "character_loading_anim", + "namespace": "persona_cast_character_screen" + } + }, + "skin_viewer_panel_skin_model": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "children": [ + "skin_model" + ] + }, + "skin_viewer_panel_skin_model/skin_model": { + "file": "ui/persona_cast_character_screen.json", + "type": "custom" + }, + "cast_character_screen_right_side_model": { + "file": "ui/persona_cast_character_screen.json", + "type": "input_panel", + "children": [ + "skin_model_panel", + "skin_model_loading_anim", + "skin_model_label" + ] + }, + "cast_character_screen_right_side_model/skin_model_panel": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "extend": { + "name": "skin_viewer_panel_skin_model", + "namespace": "persona_cast_character_screen" + } + }, + "cast_character_screen_right_side_model/skin_model_loading_anim": { + "file": "ui/persona_cast_character_screen.json", + "type": "image", + "extend": { + "name": "character_loading_anim_panel", + "namespace": "persona_cast_character_screen" + } + }, + "cast_character_screen_right_side_model/skin_model_label": { + "file": "ui/persona_cast_character_screen.json", + "type": "label" + }, + "common_background_blocker": { + "file": "ui/persona_cast_character_screen.json", + "type": "image", + "extend": { + "name": "modal_window_input_blocker", + "namespace": "persona_popups" + }, + "children": [ + "modal_background_button" + ] + }, + "common_background_blocker/modal_background_button": { + "file": "ui/persona_cast_character_screen.json", + "type": "button" + }, + "common_preview_page_framework": { + "file": "ui/persona_cast_character_screen.json", + "type": "input_panel", + "extend": { + "name": "common_dcast_popup_framework", + "namespace": "persona_cast_character_screen" + }, + "children": [ + "background", + "cast_preview_modal" + ] + }, + "common_preview_page_framework/background": { + "file": "ui/persona_cast_character_screen.json", + "type": "image", + "extend": { + "name": "common_background_blocker", + "namespace": "persona_cast_character_screen" + } + }, + "common_preview_page_framework/cast_preview_modal": { + "file": "ui/persona_cast_character_screen.json", + "type": "input_panel", + "extend": { + "name": "cast_modal_panel", + "namespace": "persona_cast_character_screen" + } + }, + "cast_preview_page_one": { + "file": "ui/persona_cast_character_screen.json", + "type": "input_panel", + "extend": { + "name": "common_preview_page_framework", + "namespace": "persona_cast_character_screen" + } + }, + "cast_preview_page_two": { + "file": "ui/persona_cast_character_screen.json", + "type": "input_panel", + "extend": { + "name": "common_preview_page_framework", + "namespace": "persona_cast_character_screen" + } + }, + "cast_preview_page_one_inner_section": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "children": [ + "modal_inner_background", + "cast_content" + ] + }, + "cast_preview_page_one_inner_section/modal_inner_background": { + "file": "ui/persona_cast_character_screen.json", + "type": "image" + }, + "cast_preview_page_one_inner_section/cast_content": { + "file": "ui/persona_cast_character_screen.json", + "type": "input_panel", + "children": [ + "cast_image_cycler", + "cast_vertical_panel" + ] + }, + "cast_preview_page_one_inner_section/cast_content/cast_image_cycler": { + "file": "ui/persona_cast_character_screen.json", + "type": "image_cycler", + "extend": { + "name": "image_cycler", + "namespace": "common" + } + }, + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel": { + "file": "ui/persona_cast_character_screen.json", + "type": "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": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "children": [ + "text_cycler" + ] + }, + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel/text_cycler": { + "file": "ui/persona_cast_character_screen.json", + "type": "label_cycler", + "extend": { + "name": "text_cycler", + "namespace": "common" + } + }, + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/buffer_panel": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel" + }, + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_shoulder_button_display_panel": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "extend": { + "name": "ftue_subpage_indicator_panel", + "namespace": "persona_cast_character_screen" + } + }, + "chevron_image_panel": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "children": [ + "chevron_image" + ] + }, + "chevron_image_panel/chevron_image": { + "file": "ui/persona_cast_character_screen.json", + "type": "image", + "extend": { + "name": "chevron_image", + "namespace": "common" + } + }, + "chevron_button": { + "file": "ui/persona_cast_character_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "shift_page_panel": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "children": [ + "centering_panel" + ] + }, + "shift_page_panel/centering_panel": { + "file": "ui/persona_cast_character_screen.json", + "type": "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": { + "file": "ui/persona_cast_character_screen.json", + "type": "unknown" + }, + "shift_page_left_panel": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "extend": { + "name": "shift_page_panel", + "namespace": "persona_cast_character_screen" + } + }, + "shift_page_right_panel": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "extend": { + "name": "shift_page_panel", + "namespace": "persona_cast_character_screen" + } + }, + "horizontal_8px_padding": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel" + }, + "horizontal_20px_padding": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel" + }, + "ftue_subpage_indicator_panel": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "children": [ + "controls_shoulder_button_display" + ] + }, + "ftue_subpage_indicator_panel/controls_shoulder_button_display": { + "file": "ui/persona_cast_character_screen.json", + "type": "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": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_20px_padding", + "namespace": "persona_cast_character_screen" + } + }, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_panel": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "extend": { + "name": "shift_page_left_panel", + "namespace": "persona_cast_character_screen" + } + }, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_padding": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_8px_padding", + "namespace": "persona_cast_character_screen" + } + }, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/page_indicator_grid": { + "file": "ui/persona_cast_character_screen.json", + "type": "grid_page_indicator" + }, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_padding": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_8px_padding", + "namespace": "persona_cast_character_screen" + } + }, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_panel": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "extend": { + "name": "shift_page_right_panel", + "namespace": "persona_cast_character_screen" + } + }, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_padding": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_20px_padding", + "namespace": "persona_cast_character_screen" + } + }, + "individaul_cast_page_indicator": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "children": [ + "panel_when_current_page", + "panel_when_not_current_page" + ] + }, + "individaul_cast_page_indicator/panel_when_current_page": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "children": [ + "panel_with_padding" + ] + }, + "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "children": [ + "cast_dot" + ] + }, + "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding/cast_dot": { + "file": "ui/persona_cast_character_screen.json", + "type": "image" + }, + "individaul_cast_page_indicator/panel_when_not_current_page": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "children": [ + "panel_with_padding" + ] + }, + "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "children": [ + "cast_dot" + ] + }, + "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding/cast_dot": { + "file": "ui/persona_cast_character_screen.json", + "type": "image" + }, + "how_to_section": { + "file": "ui/persona_cast_character_screen.json", + "type": "stack_panel", + "children": [ + "how_to_image", + "how_to_label_section" + ] + }, + "how_to_section/how_to_image": { + "file": "ui/persona_cast_character_screen.json", + "type": "image" + }, + "how_to_section/how_to_label_section": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "children": [ + "how_to_label" + ] + }, + "how_to_section/how_to_label_section/how_to_label": { + "file": "ui/persona_cast_character_screen.json", + "type": "label" + }, + "cast_preview_page_two_inner_section": { + "file": "ui/persona_cast_character_screen.json", + "type": "image", + "children": [ + "how_to_section_stack" + ] + }, + "cast_preview_page_two_inner_section/how_to_section_stack": { + "file": "ui/persona_cast_character_screen.json", + "type": "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": { + "file": "ui/persona_cast_character_screen.json", + "type": "stack_panel", + "extend": { + "name": "how_to_section", + "namespace": "persona_cast_character_screen" + } + }, + "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel": { + "file": "ui/persona_cast_character_screen.json", + "type": "panel", + "children": [ + "divider" + ] + }, + "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel/divider": { + "file": "ui/persona_cast_character_screen.json", + "type": "image" + }, + "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_right": { + "file": "ui/persona_cast_character_screen.json", + "type": "stack_panel", + "extend": { + "name": "how_to_section", + "namespace": "persona_cast_character_screen" + } + } + }, + "persona_common": { + "icon_image": { + "file": "ui/persona_common.json", + "type": "image" + }, + "mashup_world": { + "file": "ui/persona_common.json", + "type": "image", + "extend": { + "name": "icon_image", + "namespace": "persona_common" + } + }, + "mashup_hangar": { + "file": "ui/persona_common.json", + "type": "image", + "extend": { + "name": "icon_image", + "namespace": "persona_common" + } + }, + "mashup_paintbrush": { + "file": "ui/persona_common.json", + "type": "image", + "extend": { + "name": "icon_image", + "namespace": "persona_common" + } + }, + "info_bulb_icon": { + "file": "ui/persona_common.json", + "type": "image", + "extend": { + "name": "icon_image", + "namespace": "persona_common" + } + }, + "green_checkmark_icon": { + "file": "ui/persona_common.json", + "type": "image", + "extend": { + "name": "icon_image", + "namespace": "persona_common" + } + }, + "persona_screen_background_content": { + "file": "ui/persona_common.json", + "type": "image" + }, + "loading_icon": { + "file": "ui/persona_common.json", + "type": "image" + }, + "focus_border": { + "file": "ui/persona_common.json", + "type": "image" + }, + "selected_border": { + "file": "ui/persona_common.json", + "type": "image", + "extend": { + "name": "focus_border", + "namespace": "persona_common" + } + }, + "equipped_border": { + "file": "ui/persona_common.json", + "type": "image" + }, + "progress_loading": { + "file": "ui/persona_common.json", + "type": "image", + "children": [ + "progress_loading" + ] + }, + "progress_loading/progress_loading": { + "file": "ui/persona_common.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "title_rarity_positionable_title": { + "file": "ui/persona_common.json", + "type": "label" + }, + "generic_title_panel": { + "file": "ui/persona_common.json", + "type": "image", + "children": [ + "title_label" + ] + }, + "generic_title_panel/title_label": { + "file": "ui/persona_common.json", + "type": "label", + "extend": { + "name": "title_rarity_positionable_title", + "namespace": "persona_common" + } + }, + "rarity_bar": { + "file": "ui/persona_common.json", + "type": "image" + }, + "item_rarity_color_background": { + "file": "ui/persona_common.json", + "type": "image" + }, + "piece_item_display": { + "file": "ui/persona_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "item_renderer", + "loading_progress_spinner" + ] + }, + "piece_item_display/item_renderer": { + "file": "ui/persona_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "background", + "item_image", + "rarity_bar_panel", + "extra_control" + ] + }, + "piece_item_display/item_renderer/background": { + "file": "ui/persona_common.json", + "type": "image", + "extend": { + "name": "item_rarity_color_background", + "namespace": "persona_common" + } + }, + "piece_item_display/item_renderer/item_image": { + "file": "ui/persona_common.json", + "type": "image" + }, + "piece_item_display/item_renderer/rarity_bar_panel": { + "file": "ui/persona_common.json", + "type": "image", + "extend": { + "name": "rarity_bar", + "namespace": "persona_common" + } + }, + "piece_item_display/item_renderer/extra_control": { + "file": "ui/persona_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "control_instance" + ] + }, + "piece_item_display/item_renderer/extra_control/control_instance": { + "file": "ui/persona_common.json", + "type": "unknown" + }, + "piece_item_display/loading_progress_spinner": { + "file": "ui/persona_common.json", + "type": "image" + }, + "wheel_state": { + "file": "ui/persona_common.json", + "type": "image" + }, + "emote_label": { + "file": "ui/persona_common.json", + "type": "label" + }, + "touch_name_label": { + "file": "ui/persona_common.json", + "type": "label" + }, + "emote_image": { + "file": "ui/persona_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "empty", + "emote_preview" + ] + }, + "emote_image/empty": { + "file": "ui/persona_common.json", + "type": "image" + }, + "emote_image/emote_preview": { + "file": "ui/persona_common.json", + "type": "panel", + "children": [ + "valid", + "valid_no_image" + ] + }, + "emote_image/emote_preview/valid": { + "file": "ui/persona_common.json", + "type": "image" + }, + "emote_image/emote_preview/valid_no_image": { + "file": "ui/persona_common.json", + "type": "panel", + "children": [ + "valid_text" + ] + }, + "emote_image/emote_preview/valid_no_image/valid_text": { + "file": "ui/persona_common.json", + "type": "label" + }, + "keyboard_hotkey_helpers": { + "file": "ui/persona_common.json", + "type": "panel", + "children": [ + "keyboard_1", + "keyboard_2", + "keyboard_3", + "keyboard_4" + ] + }, + "keyboard_hotkey_helpers/keyboard_1": { + "file": "ui/persona_common.json", + "type": "stack_panel", + "extend": { + "name": "keyboard_helper_keys", + "namespace": "common" + } + }, + "keyboard_hotkey_helpers/keyboard_2": { + "file": "ui/persona_common.json", + "type": "stack_panel", + "extend": { + "name": "keyboard_helper_keys", + "namespace": "common" + } + }, + "keyboard_hotkey_helpers/keyboard_3": { + "file": "ui/persona_common.json", + "type": "stack_panel", + "extend": { + "name": "keyboard_helper_keys", + "namespace": "common" + } + }, + "keyboard_hotkey_helpers/keyboard_4": { + "file": "ui/persona_common.json", + "type": "stack_panel", + "extend": { + "name": "keyboard_helper_keys", + "namespace": "common" + } + }, + "gamepad_hotkey_helpers": { + "file": "ui/persona_common.json", + "type": "panel", + "children": [ + "quick_select_gamepad_helpers", + "analog_select_gamepad_helper_panel" + ] + }, + "gamepad_hotkey_helpers/quick_select_gamepad_helpers": { + "file": "ui/persona_common.json", + "type": "panel", + "children": [ + "gamepad_y", + "gamepad_b", + "gamepad_a", + "gamepad_x" + ] + }, + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_y": { + "file": "ui/persona_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_y", + "namespace": "common" + } + }, + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_b": { + "file": "ui/persona_common.json", + "type": "unknown", + "extend": { + "name": "$gamepad_face_right_helper", + "namespace": "common" + } + }, + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_a": { + "file": "ui/persona_common.json", + "type": "unknown", + "extend": { + "name": "$gamepad_face_down_helper", + "namespace": "common" + } + }, + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_x": { + "file": "ui/persona_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_x", + "namespace": "common" + } + }, + "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel": { + "file": "ui/persona_common.json", + "type": "panel", + "children": [ + "analog_select_gamepad_helper" + ] + }, + "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel/analog_select_gamepad_helper": { + "file": "ui/persona_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_a", + "namespace": "common" + } + }, + "emote_wheel_slot_content": { + "file": "ui/persona_common.json", + "type": "panel", + "children": [ + "image_0", + "touch_label_0" + ] + }, + "emote_wheel_slot_content/image_0": { + "file": "ui/persona_common.json", + "type": "panel", + "extend": { + "name": "emote_image", + "namespace": "persona_common" + } + }, + "emote_wheel_slot_content/touch_label_0": { + "file": "ui/persona_common.json", + "type": "label", + "extend": { + "name": "touch_name_label", + "namespace": "persona_common" + } + }, + "selection_wheel": { + "file": "ui/persona_common.json", + "type": "selection_wheel" + }, + "emote_selection_wheel": { + "file": "ui/persona_common.json", + "type": "selection_wheel", + "extend": { + "name": "selection_wheel", + "namespace": "persona_common" + }, + "children": [ + "default_state", + "emote_slot_0_content", + "emote_slot_1_content", + "emote_slot_2_content", + "emote_slot_3_content" + ] + }, + "emote_selection_wheel/default_state": { + "file": "ui/persona_common.json", + "type": "image", + "extend": { + "name": "wheel_state", + "namespace": "persona_common" + } + }, + "emote_selection_wheel/emote_slot_0_content": { + "file": "ui/persona_common.json", + "type": "panel", + "extend": { + "name": "emote_wheel_slot_content", + "namespace": "persona_common" + } + }, + "emote_selection_wheel/emote_slot_1_content": { + "file": "ui/persona_common.json", + "type": "panel", + "extend": { + "name": "emote_wheel_slot_content", + "namespace": "persona_common" + } + }, + "emote_selection_wheel/emote_slot_2_content": { + "file": "ui/persona_common.json", + "type": "panel", + "extend": { + "name": "emote_wheel_slot_content", + "namespace": "persona_common" + } + }, + "emote_selection_wheel/emote_slot_3_content": { + "file": "ui/persona_common.json", + "type": "panel", + "extend": { + "name": "emote_wheel_slot_content", + "namespace": "persona_common" + } + }, + "emote_wheel_panel": { + "file": "ui/persona_common.json", + "type": "panel", + "extend": { + "name": "main_panel", + "namespace": "common_dialogs" + }, + "children": [ + "emote_name", + "emote_wheel_content_panel" + ] + }, + "emote_wheel_panel/emote_name": { + "file": "ui/persona_common.json", + "type": "label", + "extend": { + "name": "emote_label", + "namespace": "persona_common" + } + }, + "emote_wheel_panel/emote_wheel_content_panel": { + "file": "ui/persona_common.json", + "type": "panel", + "children": [ + "gamepad_helpers", + "keyboard_helpers", + "emote_wheel" + ] + }, + "emote_wheel_panel/emote_wheel_content_panel/gamepad_helpers": { + "file": "ui/persona_common.json", + "type": "panel", + "extend": { + "name": "gamepad_hotkey_helpers", + "namespace": "persona_common" + } + }, + "emote_wheel_panel/emote_wheel_content_panel/keyboard_helpers": { + "file": "ui/persona_common.json", + "type": "panel", + "extend": { + "name": "keyboard_hotkey_helpers", + "namespace": "persona_common" + } + }, + "emote_wheel_panel/emote_wheel_content_panel/emote_wheel": { + "file": "ui/persona_common.json", + "type": "selection_wheel", + "extend": { + "name": "emote_selection_wheel", + "namespace": "persona_common" + } + } + }, + "persona_popups": { + "no_content_panel": { + "file": "ui/persona_popups.json", + "type": "panel" + }, + "common_image": { + "file": "ui/persona_popups.json", + "type": "image" + }, + "common_icon": { + "file": "ui/persona_popups.json", + "type": "image", + "extend": { + "name": "common_image", + "namespace": "persona_popups" + } + }, + "create_persona_choice_checked_image": { + "file": "ui/persona_popups.json", + "type": "image", + "extend": { + "name": "common_image", + "namespace": "persona_popups" + } + }, + "create_persona_choice_unchecked_image": { + "file": "ui/persona_popups.json", + "type": "image", + "extend": { + "name": "common_image", + "namespace": "persona_popups" + } + }, + "modal_window_input_blocker": { + "file": "ui/persona_popups.json", + "type": "image", + "extend": { + "name": "common_image", + "namespace": "persona_popups" + } + }, + "modal_popup_background": { + "file": "ui/persona_popups.json", + "type": "image", + "extend": { + "name": "common_image", + "namespace": "persona_popups" + } + }, + "general_text_field": { + "file": "ui/persona_popups.json", + "type": "label" + }, + "title_text": { + "file": "ui/persona_popups.json", + "type": "label", + "extend": { + "name": "general_text_field", + "namespace": "persona_popups" + } + }, + "popup_title": { + "file": "ui/persona_popups.json", + "type": "label", + "extend": { + "name": "toast_label", + "namespace": "toast_screen" + } + }, + "popup_content": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "popup_ok_button": { + "file": "ui/persona_popups.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "popup_frame": { + "file": "ui/persona_popups.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_2", + "namespace": "common" + }, + "children": [ + "title_label", + "close_button", + "content", + "ok_button" + ] + }, + "popup_frame/title_label": { + "file": "ui/persona_popups.json", + "type": "label", + "extend": { + "name": "popup_title", + "namespace": "persona_popups" + } + }, + "popup_frame/close_button": { + "file": "ui/persona_popups.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "common" + } + }, + "popup_frame/content": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "popup_content", + "namespace": "persona_popups" + } + }, + "popup_frame/ok_button": { + "file": "ui/persona_popups.json", + "type": "button", + "extend": { + "name": "popup_ok_button", + "namespace": "persona_popups" + } + }, + "popup_info_panel": { + "file": "ui/persona_popups.json", + "type": "panel", + "children": [ + "background", + "frame" + ] + }, + "popup_info_panel/background": { + "file": "ui/persona_popups.json", + "type": "image", + "extend": { + "name": "modal_popup_background", + "namespace": "persona_popups" + } + }, + "popup_info_panel/frame": { + "file": "ui/persona_popups.json", + "type": "image", + "extend": { + "name": "popup_frame", + "namespace": "persona_popups" + } + }, + "common_dialog": { + "file": "ui/persona_popups.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog", + "namespace": "popup_dialog" + }, + "children": [ + "background", + "panel" + ] + }, + "common_dialog/background": { + "file": "ui/persona_popups.json", + "type": "image", + "extend": { + "name": "modal_window_input_blocker", + "namespace": "persona_popups" + } + }, + "common_dialog/panel": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "popup_info_panel", + "namespace": "persona_popups" + } + }, + "popup_dialog_bg": { + "file": "ui/persona_popups.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_3", + "namespace": "common_dialogs" + }, + "children": [ + "background_image", + "title_panel", + "popup_content" + ] + }, + "popup_dialog_bg/background_image": { + "file": "ui/persona_popups.json", + "type": "image" + }, + "popup_dialog_bg/title_panel": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "title" + ] + }, + "popup_dialog_bg/title_panel/title": { + "file": "ui/persona_popups.json", + "type": "label" + }, + "popup_dialog_bg/popup_content": { + "file": "ui/persona_popups.json", + "type": "unknown" + }, + "icon_title_bar": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "horizontal_stack_panel", + "namespace": "common" + }, + "children": [ + "icon", + "padding", + "text_title_panel" + ] + }, + "icon_title_bar/icon": { + "file": "ui/persona_popups.json", + "type": "image", + "extend": { + "name": "common_icon", + "namespace": "persona_popups" + } + }, + "icon_title_bar/padding": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "icon_title_bar/text_title_panel": { + "file": "ui/persona_popups.json", + "type": "label", + "extend": { + "name": "title_text", + "namespace": "persona_popups" + } + }, + "popup_common": { + "file": "ui/persona_popups.json", + "type": "input_panel", + "extend": { + "name": "input_panel", + "namespace": "common" + }, + "children": [ + "background" + ] + }, + "popup_common/background": { + "file": "ui/persona_popups.json", + "type": "image", + "children": [ + "text_stack_panel" + ] + }, + "popup_common/background/text_stack_panel": { + "file": "ui/persona_popups.json", + "type": "label", + "extend": { + "name": "popup_title", + "namespace": "persona_popups" + } + }, + "popup_dialog__difference_information": { + "file": "ui/persona_popups.json", + "type": "input_panel", + "extend": { + "name": "common_dialog", + "namespace": "persona_popups" + } + }, + "differences_left_details": { + "file": "ui/persona_popups.json", + "type": "label", + "extend": { + "name": "general_text_field", + "namespace": "persona_popups" + } + }, + "differences_left_section": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "vertical_stack_panel", + "namespace": "common" + }, + "children": [ + "title_bar", + "padding_1", + "details" + ] + }, + "differences_left_section/title_bar": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "icon_title_bar", + "namespace": "persona_popups" + } + }, + "differences_left_section/padding_1": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "differences_left_section/details": { + "file": "ui/persona_popups.json", + "type": "label", + "extend": { + "name": "differences_left_details", + "namespace": "persona_popups" + } + }, + "differences_detail_image": { + "file": "ui/persona_popups.json", + "type": "image", + "extend": { + "name": "common_image", + "namespace": "persona_popups" + } + }, + "differences_title_card_display": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "horizontal_stack_panel", + "namespace": "common" + }, + "children": [ + "left", + "padding_1", + "right" + ] + }, + "differences_title_card_display/left": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "differences_left_section", + "namespace": "persona_popups" + } + }, + "differences_title_card_display/padding_1": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "differences_title_card_display/right": { + "file": "ui/persona_popups.json", + "type": "image", + "extend": { + "name": "differences_detail_image", + "namespace": "persona_popups" + } + }, + "differences_persona_detail_section": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "differences_title_card_display", + "namespace": "persona_popups" + } + }, + "differences_classic_skin_detail_section": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "differences_title_card_display", + "namespace": "persona_popups" + } + }, + "different_info_panel_contents": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "vertical_stack_panel", + "namespace": "common" + }, + "children": [ + "character_display", + "item_1_padding", + "divider", + "item_2_padding", + "classic_skin_display" + ] + }, + "different_info_panel_contents/character_display": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "differences_persona_detail_section", + "namespace": "persona_popups" + } + }, + "different_info_panel_contents/item_1_padding": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "different_info_panel_contents/divider": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "common" + } + }, + "different_info_panel_contents/item_2_padding": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "different_info_panel_contents/classic_skin_display": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "differences_classic_skin_detail_section", + "namespace": "persona_popups" + } + }, + "popup_dialog__preview_difference_information": { + "file": "ui/persona_popups.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog__difference_information", + "namespace": "persona_popups" + } + }, + "popup_dialog__delete_persona": { + "file": "ui/persona_popups.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog", + "namespace": "popup_dialog" + }, + "children": [ + "popup_dialog_bg" + ] + }, + "popup_dialog__delete_persona/popup_dialog_bg": { + "file": "ui/persona_popups.json", + "type": "image", + "extend": { + "name": "popup_dialog_bg", + "namespace": "persona_popups" + } + }, + "popup_dialog_delete_persona_content": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "image", + "message", + "buttons" + ] + }, + "popup_dialog_delete_persona_content/image": { + "file": "ui/persona_popups.json", + "type": "image", + "extend": { + "name": "alex_warning", + "namespace": "persona_popups" + } + }, + "popup_dialog_delete_persona_content/message": { + "file": "ui/persona_popups.json", + "type": "label", + "extend": { + "name": "delete_popup_dialog_message", + "namespace": "persona_popups" + } + }, + "popup_dialog_delete_persona_content/buttons": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "delete_persona_button_stack", + "namespace": "persona_popups" + } + }, + "alex_warning": { + "file": "ui/persona_popups.json", + "type": "image" + }, + "delete_popup_dialog_message": { + "file": "ui/persona_popups.json", + "type": "label", + "extend": { + "name": "popup_dialog_message", + "namespace": "popup_dialog" + } + }, + "delete_persona_button_stack": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "horizontal_stack_panel", + "namespace": "common" + }, + "children": [ + "left_button", + "padding", + "right_button" + ] + }, + "delete_persona_button_stack/left_button": { + "file": "ui/persona_popups.json", + "type": "button", + "extend": { + "name": "delete_persona_left_button", + "namespace": "persona_popups" + } + }, + "delete_persona_button_stack/padding": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "delete_persona_button_stack/right_button": { + "file": "ui/persona_popups.json", + "type": "button", + "extend": { + "name": "delete_persona_right_button", + "namespace": "persona_popups" + } + }, + "delete_persona_left_button": { + "file": "ui/persona_popups.json", + "type": "button", + "extend": { + "name": "popup_dialog_left_button", + "namespace": "popup_dialog" + } + }, + "delete_persona_right_button": { + "file": "ui/persona_popups.json", + "type": "button", + "extend": { + "name": "popup_dialog_right_button", + "namespace": "popup_dialog" + } + }, + "popup_dialog__create_persona": { + "file": "ui/persona_popups.json", + "type": "input_panel", + "extend": { + "name": "common_dialog", + "namespace": "persona_popups" + } + }, + "create_persona_display": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "vertical_stack_panel", + "namespace": "common" + }, + "children": [ + "vertical_padding_2px", + "stack_content" + ] + }, + "create_persona_display/vertical_padding_2px": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "create_persona_display/stack_content": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "create_persona_choice_stack", + "namespace": "persona_popups" + } + }, + "create_persona_choice_stack": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "vertical_stack_panel", + "namespace": "common" + }, + "children": [ + "background1", + "background2" + ] + }, + "create_persona_choice_stack/background1": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "create_persona_choice_character", + "namespace": "persona_popups" + } + }, + "create_persona_choice_stack/background2": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "create_persona_choice_classic_skin", + "namespace": "persona_popups" + } + }, + "create_persona_choice_character": { + "file": "ui/persona_popups.json", + "type": "panel", + "children": [ + "create_persona_choice_character" + ] + }, + "create_persona_choice_character/create_persona_choice_character": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "create_persona_choice_button", + "namespace": "persona_popups" + } + }, + "select_default_character_button_vertical_panel": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "children": [ + "padding", + "select_default_character_button_panel" + ] + }, + "select_default_character_button_vertical_panel/padding": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "select_default_character_button_vertical_panel/select_default_character_button_panel": { + "file": "ui/persona_popups.json", + "type": "panel", + "children": [ + "select_default_character_button" + ] + }, + "select_default_character_button_vertical_panel/select_default_character_button_panel/select_default_character_button": { + "file": "ui/persona_popups.json", + "type": "button", + "extend": { + "name": "select_default_character_button", + "namespace": "persona_popups" + } + }, + "select_default_character_button": { + "file": "ui/persona_popups.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "create_persona_choice_classic_skin": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "create_persona_choice_button", + "namespace": "persona_popups" + } + }, + "create_persona_choice_button": { + "file": "ui/persona_popups.json", + "type": "panel", + "children": [ + "choice_toggle" + ] + }, + "create_persona_choice_button/choice_toggle": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "dark_vertical_form_fitting_content_toggle", + "namespace": "common_toggles" + } + }, + "create_persona_choice_background": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "vertical_stack_panel", + "namespace": "common" + }, + "children": [ + "choice_title_bar", + "choice_details_body", + "choice_bottom_content" + ] + }, + "create_persona_choice_background/choice_title_bar": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "create_persona_choice_title_bar", + "namespace": "persona_popups" + } + }, + "create_persona_choice_background/choice_details_body": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "create_persona_choice_detail_panel", + "namespace": "persona_popups" + } + }, + "create_persona_choice_background/choice_bottom_content": { + "file": "ui/persona_popups.json", + "type": "unknown" + }, + "create_persona_choice_title_bar": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "horizontal_stack_panel", + "namespace": "common" + }, + "children": [ + "checkbox", + "spacing", + "icon_title" + ] + }, + "create_persona_choice_title_bar/checkbox": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "create_persona_choice_check_positioning", + "namespace": "persona_popups" + } + }, + "create_persona_choice_title_bar/spacing": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "create_persona_choice_title_bar/icon_title": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "create_persona_choice_icon_title", + "namespace": "persona_popups" + } + }, + "create_persona_choice_check_positioning": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "toggle_image" + ] + }, + "create_persona_choice_check_positioning/toggle_image": { + "file": "ui/persona_popups.json", + "type": "unknown" + }, + "create_persona_choice_icon_title": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "icon_title_bar", + "namespace": "persona_popups" + } + }, + "create_persona_choice_detail_panel": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "horizontal_stack_panel", + "namespace": "common" + }, + "children": [ + "spacing", + "choice_details_body" + ] + }, + "create_persona_choice_detail_panel/spacing": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "create_persona_choice_detail_panel/choice_details_body": { + "file": "ui/persona_popups.json", + "type": "label", + "extend": { + "name": "create_persona_choice_detail", + "namespace": "persona_popups" + } + }, + "create_persona_choice_detail": { + "file": "ui/persona_popups.json", + "type": "label", + "extend": { + "name": "general_text_field", + "namespace": "persona_popups" + } + }, + "popup_dialog__invalid_custom_skin": { + "file": "ui/persona_popups.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog", + "namespace": "popup_dialog" + }, + "children": [ + "popup_dialog_bg" + ] + }, + "popup_dialog__invalid_custom_skin/popup_dialog_bg": { + "file": "ui/persona_popups.json", + "type": "image", + "extend": { + "name": "popup_dialog_bg", + "namespace": "persona_popups" + } + }, + "popup_dialog_invalid_custom_skin_content": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "popup_dialog_message", + "popup_dialog_middle_button" + ] + }, + "popup_dialog_invalid_custom_skin_content/popup_dialog_message": { + "file": "ui/persona_popups.json", + "type": "label", + "extend": { + "name": "popup_dialog_message", + "namespace": "popup_dialog" + } + }, + "popup_dialog_invalid_custom_skin_content/popup_dialog_middle_button": { + "file": "ui/persona_popups.json", + "type": "button", + "extend": { + "name": "popup_dialog_middle_button", + "namespace": "popup_dialog" + } + }, + "popup_dialog__upsell_without_store": { + "file": "ui/persona_popups.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog__invalid_custom_skin", + "namespace": "persona_popups" + } + }, + "popup_dialog__choose_skin_type": { + "file": "ui/persona_popups.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog", + "namespace": "popup_dialog" + }, + "children": [ + "popup_dialog_bg" + ] + }, + "popup_dialog__choose_skin_type/popup_dialog_bg": { + "file": "ui/persona_popups.json", + "type": "image", + "extend": { + "name": "popup_dialog_bg", + "namespace": "persona_popups" + } + }, + "popup_dialog_choose_skin_type_content": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "popup_dialog_message", + "left", + "right" + ] + }, + "popup_dialog_choose_skin_type_content/popup_dialog_message": { + "file": "ui/persona_popups.json", + "type": "label", + "extend": { + "name": "popup_dialog_message", + "namespace": "popup_dialog" + } + }, + "popup_dialog_choose_skin_type_content/left": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "popup_dialog_choose_skin_type_panel", + "namespace": "persona_popups" + } + }, + "popup_dialog_choose_skin_type_content/right": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "popup_dialog_choose_skin_type_panel", + "namespace": "persona_popups" + } + }, + "popup_dialog_choose_skin_type_panel": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "choose_skin_type_button" + ] + }, + "popup_dialog_choose_skin_type_panel/choose_skin_type_button": { + "file": "ui/persona_popups.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "popup_dialog_skin_model": { + "file": "ui/persona_popups.json", + "type": "panel", + "children": [ + "paper_doll" + ] + }, + "popup_dialog_skin_model/paper_doll": { + "file": "ui/persona_popups.json", + "type": "custom" + }, + "popup_dialog__custom_skin_info": { + "file": "ui/persona_popups.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog", + "namespace": "popup_dialog" + }, + "children": [ + "background_image", + "popup_dialog_bg" + ] + }, + "popup_dialog__custom_skin_info/background_image": { + "file": "ui/persona_popups.json", + "type": "image" + }, + "popup_dialog__custom_skin_info/popup_dialog_bg": { + "file": "ui/persona_popups.json", + "type": "image", + "extend": { + "name": "custom_skin_popup_dialog_bg", + "namespace": "persona_popups" + } + }, + "custom_skin_info_panel_text": { + "file": "ui/persona_popups.json", + "type": "label" + }, + "custom_skin_info_panel": { + "file": "ui/persona_popups.json", + "type": "panel", + "children": [ + "message", + "button_group" + ] + }, + "custom_skin_info_panel/message": { + "file": "ui/persona_popups.json", + "type": "label", + "extend": { + "name": "custom_skin_info_panel_text", + "namespace": "persona_popups" + } + }, + "custom_skin_info_panel/button_group": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "custom_skin_info_button_collection", + "namespace": "persona_popups" + } + }, + "custom_skin_info_button_collection": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "vertical_stack_panel", + "namespace": "common" + }, + "children": [ + "settings", + "vertical_4_padding", + "close" + ] + }, + "custom_skin_info_button_collection/settings": { + "file": "ui/persona_popups.json", + "type": "button", + "extend": { + "name": "usage_limited_settings_profile_button", + "namespace": "persona_popups" + } + }, + "custom_skin_info_button_collection/vertical_4_padding": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "custom_skin_info_button_collection/close": { + "file": "ui/persona_popups.json", + "type": "button", + "extend": { + "name": "popup_dialog_close_button", + "namespace": "persona_popups" + } + }, + "popup_dialog_close_button": { + "file": "ui/persona_popups.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "usage_limited_settings_profile_button": { + "file": "ui/persona_popups.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "custom_skin_popup_dialog_bg": { + "file": "ui/persona_popups.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_1", + "namespace": "common_dialogs" + }, + "children": [ + "background_image", + "vertical_align_title", + "popup_content" + ] + }, + "custom_skin_popup_dialog_bg/background_image": { + "file": "ui/persona_popups.json", + "type": "image" + }, + "custom_skin_popup_dialog_bg/vertical_align_title": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "title" + ] + }, + "custom_skin_popup_dialog_bg/vertical_align_title/title": { + "file": "ui/persona_popups.json", + "type": "label" + }, + "custom_skin_popup_dialog_bg/popup_content": { + "file": "ui/persona_popups.json", + "type": "unknown" + }, + "popup_dialog__emote_equip_slot_editor": { + "file": "ui/persona_popups.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog", + "namespace": "popup_dialog" + }, + "children": [ + "background_image", + "popup_emote_wheel_dialog" + ] + }, + "popup_dialog__emote_equip_slot_editor/background_image": { + "file": "ui/persona_popups.json", + "type": "image" + }, + "popup_dialog__emote_equip_slot_editor/popup_emote_wheel_dialog": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "popup_emote_wheel_dialog", + "namespace": "persona_popups" + } + }, + "popup_emote_wheel_dialog": { + "file": "ui/persona_popups.json", + "type": "panel", + "children": [ + "popup_background" + ] + }, + "popup_emote_wheel_dialog/popup_background": { + "file": "ui/persona_popups.json", + "type": "image", + "extend": { + "name": "popup_dialog_bg", + "namespace": "persona_popups" + } + }, + "emote_equip_slot_content": { + "file": "ui/persona_popups.json", + "type": "panel", + "children": [ + "close", + "emote_wheel_content_panel" + ] + }, + "emote_equip_slot_content/close": { + "file": "ui/persona_popups.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "common" + } + }, + "emote_equip_slot_content/emote_wheel_content_panel": { + "file": "ui/persona_popups.json", + "type": "panel", + "children": [ + "cancel", + "emote_wheel_prompt_content" + ] + }, + "emote_equip_slot_content/emote_wheel_content_panel/cancel": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "close_emote_popup_controller", + "namespace": "persona_popups" + } + }, + "emote_equip_slot_content/emote_wheel_content_panel/emote_wheel_prompt_content": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "squaring_panel", + "namespace": "common" + } + }, + "close_emote_popup_controller": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "close_ui" + ] + }, + "close_emote_popup_controller/close_ui": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_dpad_left", + "namespace": "common" + } + }, + "emote_wheel_content": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "emote_wheel_panel", + "namespace": "persona_common" + } + }, + "popup_dialog__realms_plus_extra_info": { + "file": "ui/persona_popups.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog", + "namespace": "popup_dialog" + }, + "children": [ + "background_image", + "dialog_bg" + ] + }, + "popup_dialog__realms_plus_extra_info/background_image": { + "file": "ui/persona_popups.json", + "type": "image" + }, + "popup_dialog__realms_plus_extra_info/dialog_bg": { + "file": "ui/persona_popups.json", + "type": "image", + "extend": { + "name": "realms_plus_extra_info_popup_dialog_bg", + "namespace": "persona_popups" + } + }, + "realms_plus_extra_info_popup_dialog_bg": { + "file": "ui/persona_popups.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_2", + "namespace": "common_dialogs" + }, + "children": [ + "background_image", + "title", + "popup_content" + ] + }, + "realms_plus_extra_info_popup_dialog_bg/background_image": { + "file": "ui/persona_popups.json", + "type": "image" + }, + "realms_plus_extra_info_popup_dialog_bg/title": { + "file": "ui/persona_popups.json", + "type": "label", + "extend": { + "name": "realms_extra_info_panel_text", + "namespace": "persona_popups" + } + }, + "realms_plus_extra_info_popup_dialog_bg/popup_content": { + "file": "ui/persona_popups.json", + "type": "unknown" + }, + "realms_extra_info_panel_text": { + "file": "ui/persona_popups.json", + "type": "label" + }, + "realms_extra_info_panel": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "realms_extra", + "button_group" + ] + }, + "realms_extra_info_panel/realms_extra": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "realms_extra_info_content", + "namespace": "persona_popups" + } + }, + "realms_extra_info_panel/button_group": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "realms_extra_info_button_collection", + "namespace": "persona_popups" + } + }, + "realms_extra_info_button_collection": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "vertical_stack_panel", + "namespace": "common" + }, + "children": [ + "close" + ] + }, + "realms_extra_info_button_collection/close": { + "file": "ui/persona_popups.json", + "type": "button", + "extend": { + "name": "popup_dialog_close_button", + "namespace": "persona_popups" + } + }, + "realms_extra_info_content": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "the_spread" + ] + }, + "realms_extra_info_content/the_spread": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "horizontal_stack_panel", + "namespace": "common" + }, + "children": [ + "pack_image", + "horizontal_6_padding", + "the_info_stack" + ] + }, + "realms_extra_info_content/the_spread/pack_image": { + "file": "ui/persona_popups.json", + "type": "image", + "extend": { + "name": "realms_extra_info_pack_info", + "namespace": "persona_popups" + } + }, + "realms_extra_info_content/the_spread/horizontal_6_padding": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "realms_extra_info_content/the_spread/the_info_stack": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "vertical_stack_panel", + "namespace": "common" + }, + "children": [ + "skins_and_world", + "padding", + "textures_and_usage" + ] + }, + "realms_extra_info_content/the_spread/the_info_stack/skins_and_world": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "pack_information_skins_and_world", + "namespace": "persona_popups" + } + }, + "realms_extra_info_content/the_spread/the_info_stack/padding": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "realms_extra_info_content/the_spread/the_info_stack/textures_and_usage": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "pack_information_textures_and_usage_tooltip", + "namespace": "persona_popups" + } + }, + "pack_information_textures_and_usage_tooltip": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "vertical_stack_panel", + "namespace": "common" + }, + "children": [ + "textures", + "mid_padding", + "appearance_status" + ] + }, + "pack_information_textures_and_usage_tooltip/textures": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "skin_info_label_and_image", + "namespace": "persona_popups" + } + }, + "pack_information_textures_and_usage_tooltip/mid_padding": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "pack_information_textures_and_usage_tooltip/appearance_status": { + "file": "ui/persona_popups.json", + "type": "input_panel", + "extend": { + "name": "roamable_status_notification_panel", + "namespace": "persona_popups" + } + }, + "roamable_status_notification_panel": { + "file": "ui/persona_popups.json", + "type": "input_panel", + "children": [ + "appearance_status_notification", + "roamable_status" + ] + }, + "roamable_status_notification_panel/appearance_status_notification": { + "file": "ui/persona_popups.json", + "type": "button", + "extend": { + "name": "static_tooltip_notification_panel", + "namespace": "common_buttons" + } + }, + "roamable_status_notification_panel/roamable_status": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "skin_info_label_and_image", + "namespace": "persona_popups" + } + }, + "appearance_status_image_panel": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "usage_limited", + "usage_not_limited" + ] + }, + "appearance_status_image_panel/usage_limited": { + "file": "ui/persona_popups.json", + "type": "image", + "extend": { + "name": "info_bulb_icon", + "namespace": "persona_common" + } + }, + "appearance_status_image_panel/usage_not_limited": { + "file": "ui/persona_popups.json", + "type": "image", + "extend": { + "name": "green_checkmark_icon", + "namespace": "persona_common" + } + }, + "pack_information_skins_and_world": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "vertical_stack_panel", + "namespace": "common" + }, + "children": [ + "skins", + "mid_padding", + "worlds" + ] + }, + "pack_information_skins_and_world/skins": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "skin_info_label_and_image", + "namespace": "persona_popups" + } + }, + "pack_information_skins_and_world/mid_padding": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "pack_information_skins_and_world/worlds": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "skin_info_label_and_image", + "namespace": "persona_popups" + } + }, + "skin_info_label_and_image": { + "file": "ui/persona_popups.json", + "type": "panel", + "children": [ + "content_stack" + ] + }, + "skin_info_label_and_image/content_stack": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "skin_info_content_stack", + "namespace": "persona_popups" + } + }, + "skin_info_image_panel": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "image" + ] + }, + "skin_info_image_panel/image": { + "file": "ui/persona_popups.json", + "type": "unknown" + }, + "skin_info_label_panel_label": { + "file": "ui/persona_popups.json", + "type": "label" + }, + "skin_info_label_panel": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "label" + ] + }, + "skin_info_label_panel/label": { + "file": "ui/persona_popups.json", + "type": "label", + "extend": { + "name": "skin_info_label_panel_label", + "namespace": "persona_popups" + } + }, + "skin_info_content_stack": { + "file": "ui/persona_popups.json", + "type": "stack_panel", + "extend": { + "name": "horizontal_stack_panel", + "namespace": "common" + }, + "children": [ + "image_panel", + "horizontal_2_padding", + "label_panel" + ] + }, + "skin_info_content_stack/image_panel": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "skin_info_image_panel", + "namespace": "persona_popups" + } + }, + "skin_info_content_stack/horizontal_2_padding": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "skin_info_content_stack/label_panel": { + "file": "ui/persona_popups.json", + "type": "panel", + "extend": { + "name": "skin_info_label_panel", + "namespace": "persona_popups" + } + }, + "realms_extra_info_pack_info": { + "file": "ui/persona_popups.json", + "type": "image" + }, + "popup_toast": { + "file": "ui/persona_popups.json", + "type": "input_panel", + "extend": { + "name": "popup_common", + "namespace": "persona_popups" + } + } + }, + "undefined": {}, + "play": { + "label_background": { + "file": "ui/play_screen.json", + "type": "image" + }, + "dark_label_background": { + "file": "ui/play_screen.json", + "type": "image" + }, + "world_screenshot_base": { + "file": "ui/play_screen.json", + "type": "image" + }, + "collection_world_screenshot": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "world_screenshot_base", + "namespace": "play" + }, + "children": [ + "screenshot_picture" + ] + }, + "collection_world_screenshot/screenshot_picture": { + "file": "ui/play_screen.json", + "type": "image", + "children": [ + "gradient_container_stacked_panel" + ] + }, + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "gradient_image_realmsplus_expired", + "solid_image_realmsplus_expired" + ] + }, + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/gradient_image_realmsplus_expired": { + "file": "ui/play_screen.json", + "type": "image" + }, + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired": { + "file": "ui/play_screen.json", + "type": "image", + "children": [ + "exclamationmark" + ] + }, + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired/exclamationmark": { + "file": "ui/play_screen.json", + "type": "label" + }, + "world_item_grid_base": { + "file": "ui/play_screen.json", + "type": "grid" + }, + "edit_icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "realms_stories_icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "realms_stories_icon_animated": { + "file": "ui/play_screen.json", + "type": "image" + }, + "realms_slots_edit_icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "worlds_icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "realms_icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "realms_chevron": { + "file": "ui/play_screen.json", + "type": "image" + }, + "friends_icon_1": { + "file": "ui/play_screen.json", + "type": "image" + }, + "friends_icon_2": { + "file": "ui/play_screen.json", + "type": "image" + }, + "bell_icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "invite_icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "delete_icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "world_download_icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "third_party_servers_icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "lan_icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "friends_server_icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "cross_platform_friends_server_icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "realms_remove_icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "game_online_icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "game_offline_icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "game_unavailable_icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "import_icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "add_server_icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "server_tab_icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "realms_art_icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "realms_text_background": { + "file": "ui/play_screen.json", + "type": "image" + }, + "connected_storage": { + "file": "ui/play_screen.json", + "type": "image" + }, + "feedback_icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "local_only_storage": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "connected_storage", + "namespace": "play" + } + }, + "local_and_cloud_storage": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "connected_storage", + "namespace": "play" + } + }, + "cloud_only_storage": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "connected_storage", + "namespace": "play" + } + }, + "left_arrow_icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "right_arrow_icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "small_progress_panel": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "progress" + } + }, + "sign_in_realms_image": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "chevron", + "portal" + ] + }, + "sign_in_realms_image/chevron": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "realms_chevron", + "namespace": "play" + } + }, + "sign_in_realms_image/portal": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "realms_icon", + "namespace": "play" + } + }, + "realms_sign_in_prompt_label": { + "file": "ui/play_screen.json", + "type": "label" + }, + "realms_sign_in_prompt": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "realms_sign_in_prompt_label" + ] + }, + "realms_sign_in_prompt/realms_sign_in_prompt_label": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "realms_sign_in_prompt_label", + "namespace": "play" + } + }, + "realms_sign_in_prompt_friends": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "realms_sign_in_prompt", + "namespace": "play" + }, + "children": [ + "realms_sign_in_prompt_label_friends" + ] + }, + "realms_sign_in_prompt_friends/realms_sign_in_prompt_label_friends": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "realms_sign_in_prompt_label", + "namespace": "play" + } + }, + "sign_in_to_view_realms_content_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "sign_in_realms_image", + "realms_sign_in_prompt" + ] + }, + "sign_in_to_view_realms_content_panel/sign_in_realms_image": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "sign_in_realms_image", + "namespace": "play" + } + }, + "sign_in_to_view_realms_content_panel/realms_sign_in_prompt": { + "file": "ui/play_screen.json", + "type": "unknown" + }, + "sign_in_to_view_realms_content_panel_friends": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "sign_in_to_view_realms_content_panel", + "namespace": "play" + } + }, + "sign_in_to_view_realms_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "sign_in_to_view_realms_button_friends": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "sign_in_to_view_realms_button", + "namespace": "play" + } + }, + "realms_list_text": { + "file": "ui/play_screen.json", + "type": "label" + }, + "realms_world_header": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "realms_list_text", + "namespace": "play" + } + }, + "realms_world_details": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "realms_list_text", + "namespace": "play" + } + }, + "realms_world_type": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "realms_list_text", + "namespace": "play" + } + }, + "realms_world_player_count": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "play" + } + }, + "realms_world_game_status_icon": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "game_online_icon", + "game_unavailable_icon", + "game_offline_icon" + ] + }, + "realms_world_game_status_icon/game_online_icon": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "game_online_icon", + "namespace": "play" + } + }, + "realms_world_game_status_icon/game_unavailable_icon": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "game_unavailable_icon", + "namespace": "play" + } + }, + "realms_world_game_status_icon/game_offline_icon": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "game_offline_icon", + "namespace": "play" + } + }, + "realms_world_text_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "realms_world_header", + "realms_world_details" + ] + }, + "realms_world_text_panel/realms_world_header": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "realms_world_header", + "namespace": "play" + } + }, + "realms_world_text_panel/realms_world_details": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "realms_world_details", + "namespace": "play" + } + }, + "realms_world_trial_text_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "realms_world_header_text", + "realms_world_details" + ] + }, + "realms_world_trial_text_panel/realms_world_header_text": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "realms_list_text", + "namespace": "play" + } + }, + "realms_world_trial_text_panel/realms_world_details": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "realms_list_text", + "namespace": "play" + } + }, + "realms_world_content_text_area_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "realms_world_text_panel" + ] + }, + "realms_world_content_text_area_panel/realms_world_text_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "realms_world_text_panel", + "namespace": "play" + } + }, + "realms_trial_content_text_area_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "realms_world_trial_text_panel" + ] + }, + "realms_trial_content_text_area_panel/realms_world_trial_text_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "realms_world_trial_text_panel", + "namespace": "play" + } + }, + "realms_world_content_status_area_panel": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "realms_world_player_count" + ] + }, + "realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "realms_world_player_count", + "namespace": "play" + } + }, + "realms_world_content_status_area_panel/padding": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "realms_world_content_status_area_panel/realms_world_game_status_icon": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "realms_world_game_status_icon", + "namespace": "play" + } + }, + "realms_world_content_status_area_panel_container": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "realms_world_status_panel", + "realms_world_type" + ] + }, + "realms_world_content_status_area_panel_container/realms_world_status_panel": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "realms_world_content_status_area_panel", + "namespace": "play" + } + }, + "realms_world_content_status_area_panel_container/realms_world_type": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "realms_world_type", + "namespace": "play" + } + }, + "realms_world_content_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "realm_screenshot", + "padding", + "realms_world_content_text_area_panel", + "realms_world_content_status_area_panel" + ] + }, + "realms_world_content_panel/realm_screenshot": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "realm_screenshot", + "namespace": "play" + } + }, + "realms_world_content_panel/padding": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "realms_world_content_panel/realms_world_content_text_area_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "realms_world_content_text_area_panel", + "namespace": "play" + } + }, + "realms_world_content_panel/realms_world_content_status_area_panel": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "realms_world_content_status_area_panel_container", + "namespace": "play" + } + }, + "realms_trial_content_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "realm_screenshot", + "padding", + "realms_trial_content_text_area_panel" + ] + }, + "realms_trial_content_panel/realm_screenshot": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "realm_screenshot", + "namespace": "play" + } + }, + "realms_trial_content_panel/padding": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "realms_trial_content_panel/realms_trial_content_text_area_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "realms_trial_content_text_area_panel", + "namespace": "play" + } + }, + "realms_world_item_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "realms_world_edit_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "dark_glyph_button", + "namespace": "common_buttons" + } + }, + "realms_feed_button_content": { + "file": "ui/play_screen.json", + "type": "image", + "children": [ + "default_icon", + "unread_icon_active" + ] + }, + "realms_feed_button_content/default_icon": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "realms_stories_icon", + "namespace": "play" + } + }, + "realms_feed_button_content/unread_icon_active": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "realms_stories_icon_animated", + "namespace": "play" + } + }, + "persistent_realms_feed_button_control": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "new_ui_button_panel", + "namespace": "common_buttons" + } + }, + "realms_feed_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "dark_glyph_button_with_custom_control", + "namespace": "common_buttons" + } + }, + "leave_friends_realm_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "dark_glyph_button", + "namespace": "common_buttons" + } + }, + "unread_story_count_text": { + "file": "ui/play_screen.json", + "type": "label" + }, + "unread_story_count_text_background": { + "file": "ui/play_screen.json", + "type": "image" + }, + "unread_story_count_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "text" + ] + }, + "unread_story_count_panel/text": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "unread_story_count_text", + "namespace": "play" + }, + "children": [ + "background" + ] + }, + "unread_story_count_panel/text/background": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "unread_story_count_text_background", + "namespace": "play" + } + }, + "realms_world_item": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "realms_button_panel", + "edit_panel", + "feed_panel_with_unread_count", + "leave_realm_panel" + ] + }, + "realms_world_item/realms_button_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "realms_world_item_button", + "tts_border" + ] + }, + "realms_world_item/realms_button_panel/realms_world_item_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "realms_world_item_button", + "namespace": "play" + } + }, + "realms_world_item/realms_button_panel/tts_border": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "tts_activate_sibling", + "namespace": "common" + } + }, + "realms_world_item/edit_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "realms_world_edit_button", + "realms_world_expiry_notification_image" + ] + }, + "realms_world_item/edit_panel/realms_world_edit_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "realms_world_edit_button", + "namespace": "play" + } + }, + "realms_world_item/edit_panel/realms_world_expiry_notification_image": { + "file": "ui/play_screen.json", + "type": "image" + }, + "realms_world_item/feed_panel_with_unread_count": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "feed_panel", + "unread_story_count" + ] + }, + "realms_world_item/feed_panel_with_unread_count/feed_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "realms_feed_button" + ] + }, + "realms_world_item/feed_panel_with_unread_count/feed_panel/realms_feed_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "realms_feed_button", + "namespace": "play" + } + }, + "realms_world_item/feed_panel_with_unread_count/unread_story_count": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "unread_story_count_panel", + "namespace": "play" + } + }, + "realms_world_item/leave_realm_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "leave_friends_realm_button" + ] + }, + "realms_world_item/leave_realm_panel/leave_friends_realm_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "leave_friends_realm_button", + "namespace": "play" + } + }, + "realms_world_item_grid": { + "file": "ui/play_screen.json", + "type": "grid", + "extend": { + "name": "world_item_grid_base", + "namespace": "play" + } + }, + "network_world_header": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "network_world_header_icon", + "spacer", + "header_panel" + ] + }, + "network_world_header/network_world_header_icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "network_world_header/spacer": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "network_world_header/header_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "network_world_header_text" + ] + }, + "network_world_header/header_panel/network_world_header_text": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "play" + } + }, + "network_world_details": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "play" + } + }, + "network_world_player_count": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "count" + ] + }, + "network_world_player_count/count": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "play" + } + }, + "network_world_game_status_icon": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "game_online_icon", + "game_unavailable_icon", + "game_offline_icon" + ] + }, + "network_world_game_status_icon/game_online_icon": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "game_online_icon", + "namespace": "play" + } + }, + "network_world_game_status_icon/game_unavailable_icon": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "game_unavailable_icon", + "namespace": "play" + } + }, + "network_world_game_status_icon/game_offline_icon": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "game_offline_icon", + "namespace": "play" + } + }, + "network_world_text_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "network_world_header", + "network_world_details" + ] + }, + "network_world_text_panel/network_world_header": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "network_world_header", + "namespace": "play" + } + }, + "network_world_text_panel/network_world_details": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "network_world_details", + "namespace": "play" + } + }, + "network_world_content_text_area_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "network_world_text_panel" + ] + }, + "network_world_content_text_area_panel/network_world_text_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "network_world_text_panel", + "namespace": "play" + } + }, + "network_world_content_status_area_panel": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "network_world_player_count" + ] + }, + "network_world_content_status_area_panel/network_player_count_text_panel/network_world_player_count": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "network_world_player_count", + "namespace": "play" + } + }, + "network_world_content_status_area_panel/padding": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "network_world_content_status_area_panel/network_world_game_status_icon": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "network_world_game_status_icon", + "namespace": "play" + } + }, + "network_world_content_status_area_panel_container": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "network_world_status_panel", + "network_world_type" + ] + }, + "network_world_content_status_area_panel_container/network_world_status_panel": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "network_world_content_status_area_panel", + "namespace": "play" + } + }, + "network_world_content_status_area_panel_container/network_world_type": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "network_world_type", + "namespace": "play" + } + }, + "network_world_type": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "type" + ] + }, + "network_world_type/type": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "play" + } + }, + "network_world_item_button_content": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "network_world_content_text_area_panel", + "namespace": "play" + } + }, + "network_world_item_button_content/network_status_area_panel": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "network_world_content_status_area_panel_container", + "namespace": "play" + } + }, + "network_world_item_button_content/network_world_type_icon": { + "file": "ui/play_screen.json", + "type": "label", + "children": [ + "padding" + ] + }, + "network_world_item_button_content/network_world_type_icon/padding": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "network_world_item_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "network_server_world_edit_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "dark_glyph_button", + "namespace": "common_buttons" + } + }, + "network_world_item": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "network_world_item_button", + "tts_border" + ] + }, + "network_world_item/network_world_item_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "network_world_item_button", + "namespace": "play" + } + }, + "network_world_item/tts_border": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "tts_activate_sibling", + "namespace": "common" + } + }, + "network_world_item_grid": { + "file": "ui/play_screen.json", + "type": "grid", + "extend": { + "name": "world_item_grid_base", + "namespace": "play" + } + }, + "network_world_item_ignore_crossplay": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "network_world_item_button" + ] + }, + "network_world_item_ignore_crossplay/network_world_item_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "network_world_item_button", + "namespace": "play" + } + }, + "label_content_template": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "label_panel", + "content" + ] + }, + "label_content_template/label_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "label_panel_layout" + ] + }, + "label_content_template/label_panel/label_panel_layout": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "label" + ] + }, + "label_content_template/label_panel/label_panel_layout/label": { + "file": "ui/play_screen.json", + "type": "label" + }, + "label_content_template/content": { + "file": "ui/play_screen.json", + "type": "unknown" + }, + "information_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "background", + "focus_button" + ] + }, + "information_panel/background": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "dark_label_background", + "namespace": "play" + }, + "children": [ + "label_panel_layout" + ] + }, + "information_panel/background/label_panel_layout": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "label" + ] + }, + "information_panel/background/label_panel_layout/label": { + "file": "ui/play_screen.json", + "type": "label" + }, + "information_panel/focus_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "non_interact_focus_border_button", + "namespace": "common" + } + }, + "blocked_multiplayer_privileges_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "background" + ] + }, + "blocked_multiplayer_privileges_panel/background": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "dark_label_background", + "namespace": "play" + }, + "children": [ + "label_panel_layout" + ] + }, + "blocked_multiplayer_privileges_panel/background/label_panel_layout": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "label" + ] + }, + "blocked_multiplayer_privileges_panel/background/label_panel_layout/label": { + "file": "ui/play_screen.json", + "type": "label" + }, + "more_servers_grid": { + "file": "ui/play_screen.json", + "type": "grid" + }, + "additional_server_toggle_content": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "network_world_content_text_area_panel" + ] + }, + "additional_server_toggle_content/network_world_content_text_area_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "network_world_content_text_area_panel", + "namespace": "play" + } + }, + "more_servers_label_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "list_label" + ] + }, + "more_servers_label_panel/list_label": { + "file": "ui/play_screen.json", + "type": "label" + }, + "more_servers_world_item": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "additional_server_toggle_base", + "network_server_world_edit_button" + ] + }, + "more_servers_world_item/additional_server_toggle_base": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "server_toggle_base", + "namespace": "play" + } + }, + "more_servers_world_item/network_server_world_edit_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "network_server_world_edit_button", + "namespace": "play" + } + }, + "additional_server_info_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "common_scroll_pane", + "namespace": "play" + }, + "children": [ + "server_info_stack_panel" + ] + }, + "additional_server_info_panel/server_info_stack_panel": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "additional_server_info_panel/server_info_stack_panel/server_name": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "play" + } + }, + "additional_server_info_panel/server_info_stack_panel/padding_2": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "additional_server_info_panel/server_info_stack_panel/player_count": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "text_icon_number_panel", + "namespace": "play" + } + }, + "additional_server_info_panel/server_info_stack_panel/padding_3": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "additional_server_info_panel/server_info_stack_panel/ping": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "text_icon_number_panel", + "namespace": "play" + } + }, + "additional_server_info_panel/server_info_stack_panel/padding_4": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "additional_server_info_panel/server_info_stack_panel/join_server_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "ping_rate_icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "ping_rate_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "concurrency_stack" + ] + }, + "ping_rate_panel/concurrency_stack": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "player_count", + "padding_0", + "ping_rate_icon" + ] + }, + "ping_rate_panel/concurrency_stack/player_count": { + "file": "ui/play_screen.json", + "type": "label" + }, + "ping_rate_panel/concurrency_stack/padding_0": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "ping_rate_panel/concurrency_stack/ping_rate_icon": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "ping_rate_icon", + "namespace": "play" + } + }, + "add_server_info_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "common_scroll_pane", + "namespace": "play" + }, + "children": [ + "server_info_stack_panel" + ] + }, + "add_server_info_panel/server_info_stack_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "padding_0", + "add_server_title", + "padding_1", + "add_server_description" + ] + }, + "add_server_info_panel/server_info_stack_panel/padding_0": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "add_server_info_panel/server_info_stack_panel/add_server_title": { + "file": "ui/play_screen.json", + "type": "label" + }, + "add_server_info_panel/server_info_stack_panel/padding_1": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "add_server_info_panel/server_info_stack_panel/add_server_description": { + "file": "ui/play_screen.json", + "type": "label" + }, + "third_party_featured_server_grid": { + "file": "ui/play_screen.json", + "type": "grid" + }, + "featured_server_world_item": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "server_button" + ] + }, + "featured_server_world_item/server_button": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "server_toggle_base", + "namespace": "play" + } + }, + "server_button_content_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "top_panel", + "padding", + "bottom_panel" + ] + }, + "server_button_content_panel/top_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "third_party_server_screenshot", + "padding_0", + "title_panel" + ] + }, + "server_button_content_panel/top_panel/third_party_server_screenshot": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "third_party_server_screenshot", + "namespace": "play" + } + }, + "server_button_content_panel/top_panel/padding_0": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "server_button_content_panel/top_panel/title_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "third_party_server_name", + "progress" + ] + }, + "server_button_content_panel/top_panel/title_panel/third_party_server_name": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "play" + } + }, + "server_button_content_panel/top_panel/title_panel/progress": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "progress" + } + }, + "server_button_content_panel/padding": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "server_button_content_panel/bottom_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "third_party_server_message" + ] + }, + "server_button_content_panel/bottom_panel/third_party_server_message": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "play" + } + }, + "third_party_server_content_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "ping_rate_panel" + ] + }, + "third_party_server_content_panel/ping_rate_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "ping_rate_panel", + "namespace": "play" + } + }, + "loading_featured_servers_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "load_bars" + ] + }, + "loading_featured_servers_panel/load_bars": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "progress_loading_bars" + ] + }, + "loading_featured_servers_panel/load_bars/progress_loading_bars": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "common_store" + } + }, + "third_party_server_screenshot": { + "file": "ui/play_screen.json", + "type": "image", + "children": [ + "picture" + ] + }, + "third_party_server_screenshot/picture": { + "file": "ui/play_screen.json", + "type": "image" + }, + "third_party_server_info_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "common_scroll_pane", + "namespace": "play" + }, + "children": [ + "server_info_stack_panel", + "progress" + ] + }, + "third_party_server_info_panel/server_info_stack_panel": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "third_party_server_info_panel/server_info_stack_panel/server_screenshot": { + "file": "ui/play_screen.json", + "type": "image" + }, + "third_party_server_info_panel/server_info_stack_panel/padding_1": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "third_party_server_info_panel/server_info_stack_panel/server_name": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "play" + } + }, + "third_party_server_info_panel/server_info_stack_panel/padding_2": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "third_party_server_info_panel/server_info_stack_panel/player_count": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "text_icon_number_panel", + "namespace": "play" + } + }, + "third_party_server_info_panel/server_info_stack_panel/padding_3": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "third_party_server_info_panel/server_info_stack_panel/ping": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "text_icon_number_panel", + "namespace": "play" + } + }, + "third_party_server_info_panel/server_info_stack_panel/padding_4": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "third_party_server_info_panel/server_info_stack_panel/join_server_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "third_party_server_info_panel/server_info_stack_panel/view_offers_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "third_party_server_info_panel/server_info_stack_panel/padding_5": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "third_party_server_info_panel/server_info_stack_panel/screenshots_section": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "screenshots_section_panel", + "namespace": "play" + } + }, + "third_party_server_info_panel/server_info_stack_panel/description_section": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "description_section_panel", + "namespace": "play" + } + }, + "third_party_server_info_panel/server_info_stack_panel/games_section": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "games_section_panel", + "namespace": "play" + } + }, + "third_party_server_info_panel/server_info_stack_panel/news_section": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "news_section_panel", + "namespace": "play" + } + }, + "third_party_server_info_panel/progress": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "progress" + } + }, + "text_icon_number_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "text", + "padding_0", + "stack_panel" + ] + }, + "text_icon_number_panel/text": { + "file": "ui/play_screen.json", + "type": "label" + }, + "text_icon_number_panel/padding_0": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "text_icon_number_panel/stack_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "icon_panel", + "padding_1", + "number" + ] + }, + "text_icon_number_panel/stack_panel/icon_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "icon" + ] + }, + "text_icon_number_panel/stack_panel/icon_panel/icon": { + "file": "ui/play_screen.json", + "type": "image" + }, + "text_icon_number_panel/stack_panel/padding_1": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "text_icon_number_panel/stack_panel/number": { + "file": "ui/play_screen.json", + "type": "label" + }, + "grey_bar_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "grey_bar", + "green_bar", + "padding" + ] + }, + "grey_bar_panel/grey_bar": { + "file": "ui/play_screen.json", + "type": "image" + }, + "grey_bar_panel/green_bar": { + "file": "ui/play_screen.json", + "type": "image" + }, + "grey_bar_panel/padding": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "screenshots_section_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "divider_0", + "padding_0", + "screenshots_label", + "padding_1", + "screenshots", + "padding_2", + "navigation_panel", + "padding_3" + ] + }, + "screenshots_section_panel/divider_0": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "common" + } + }, + "screenshots_section_panel/padding_0": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "screenshots_section_panel/screenshots_label": { + "file": "ui/play_screen.json", + "type": "label" + }, + "screenshots_section_panel/padding_1": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "screenshots_section_panel/screenshots": { + "file": "ui/play_screen.json", + "type": "image" + }, + "screenshots_section_panel/padding_2": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "screenshots_section_panel/navigation_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "left_arrow_button", + "padding_0", + "navigation_bar", + "padding_1", + "right_arrow_button" + ] + }, + "screenshots_section_panel/navigation_panel/left_arrow_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "screenshots_section_panel/navigation_panel/padding_0": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "screenshots_section_panel/navigation_panel/navigation_bar": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "grey_bar" + ] + }, + "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar": { + "file": "ui/play_screen.json", + "type": "image", + "children": [ + "grey_bar_factory_panel" + ] + }, + "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar/grey_bar_factory_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel" + }, + "screenshots_section_panel/navigation_panel/padding_1": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "screenshots_section_panel/navigation_panel/right_arrow_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "screenshots_section_panel/padding_3": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "description_text_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "contents_description" + ] + }, + "description_text_panel/contents_description": { + "file": "ui/play_screen.json", + "type": "label" + }, + "description_section_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "divider_0", + "padding_0", + "description_label", + "padding_1", + "read_more_panel", + "padding_3" + ] + }, + "description_section_panel/divider_0": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "common" + } + }, + "description_section_panel/padding_0": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "description_section_panel/description_label": { + "file": "ui/play_screen.json", + "type": "label" + }, + "description_section_panel/padding_1": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "description_section_panel/read_more_panel": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "description_text_panel", + "namespace": "play" + } + }, + "description_section_panel/read_more_panel/description_text_full": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "description_text_panel", + "namespace": "play" + } + }, + "description_section_panel/read_more_panel/description_read_more_button_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "read_button", + "namespace": "common_buttons" + } + }, + "description_section_panel/read_more_panel/description_read_less_button_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "read_button", + "namespace": "common_buttons" + } + }, + "description_section_panel/padding_3": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "games_factory_object": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "games_factory_panel", + "padding" + ] + }, + "games_factory_object/games_factory_panel": { + "file": "ui/play_screen.json", + "type": "image", + "children": [ + "top_panel", + "bottom_panel" + ] + }, + "games_factory_object/games_factory_panel/top_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "game_image_panel", + "padding", + "game_title_panel" + ] + }, + "games_factory_object/games_factory_panel/top_panel/game_image_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "game_image" + ] + }, + "games_factory_object/games_factory_panel/top_panel/game_image_panel/game_image": { + "file": "ui/play_screen.json", + "type": "image" + }, + "games_factory_object/games_factory_panel/top_panel/padding": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "games_factory_object/games_factory_panel/top_panel/game_title_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "game_title", + "game_subtitle" + ] + }, + "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_title": { + "file": "ui/play_screen.json", + "type": "label" + }, + "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_subtitle": { + "file": "ui/play_screen.json", + "type": "label" + }, + "games_factory_object/games_factory_panel/bottom_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "bottom_panel" + ] + }, + "games_factory_object/games_factory_panel/bottom_panel/bottom_panel": { + "file": "ui/play_screen.json", + "type": "label" + }, + "games_factory_object/padding": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "games_section_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "divider_0", + "padding_0", + "description_label", + "padding_1", + "games_factory_panel", + "padding_3" + ] + }, + "games_section_panel/divider_0": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "common" + } + }, + "games_section_panel/padding_0": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "games_section_panel/description_label": { + "file": "ui/play_screen.json", + "type": "label" + }, + "games_section_panel/padding_1": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "games_section_panel/games_factory_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel" + }, + "games_section_panel/padding_3": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "news_text_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "contents_news" + ] + }, + "news_text_panel/contents_news": { + "file": "ui/play_screen.json", + "type": "label" + }, + "news_section_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "divider_0", + "padding_0", + "news_label", + "padding_1", + "read_more_panel", + "padding_3" + ] + }, + "news_section_panel/divider_0": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "common" + } + }, + "news_section_panel/padding_0": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "news_section_panel/news_label": { + "file": "ui/play_screen.json", + "type": "label" + }, + "news_section_panel/padding_1": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "news_section_panel/read_more_panel": { + "file": "ui/play_screen.json", + "type": "image", + "children": [ + "text_stack_panel", + "news_read_more_button_panel", + "news_read_less_button_panel" + ] + }, + "news_section_panel/read_more_panel/text_stack_panel": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "label" + }, + "news_section_panel/read_more_panel/text_stack_panel/divider_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "divider_0" + ] + }, + "news_section_panel/read_more_panel/text_stack_panel/divider_panel/divider_0": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "common" + } + }, + "news_section_panel/read_more_panel/text_stack_panel/news_text_small": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "news_text_panel", + "namespace": "play" + } + }, + "news_section_panel/read_more_panel/text_stack_panel/news_text_full": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "news_text_panel", + "namespace": "play" + } + }, + "news_section_panel/read_more_panel/news_read_more_button_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "read_button", + "namespace": "common_buttons" + } + }, + "news_section_panel/read_more_panel/news_read_less_button_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "read_button", + "namespace": "common_buttons" + } + }, + "news_section_panel/padding_3": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "divider": { + "file": "ui/play_screen.json", + "type": "image" + }, + "blue_diskspace_bar": { + "file": "ui/play_screen.json", + "type": "image" + }, + "green_diskspace_bar": { + "file": "ui/play_screen.json", + "type": "image" + }, + "empty_diskspace_bar": { + "file": "ui/play_screen.json", + "type": "image" + }, + "legacy_world_content_status_area_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "world_storage_content_panel" + ] + }, + "legacy_world_content_status_area_panel/world_storage_content_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "world_storage_separator", + "world_storage_information" + ] + }, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_separator": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "divider", + "namespace": "play" + } + }, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "label" + }, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/padding": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "green_diskspace_bar", + "namespace": "play" + } + }, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/legacy_diskspace_bar": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "blue_diskspace_bar", + "namespace": "play" + } + }, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/empty_diskspace_bar": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "empty_diskspace_bar", + "namespace": "play" + } + }, + "world_list_text": { + "file": "ui/play_screen.json", + "type": "label" + }, + "realm_screenshot": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "world_screenshot_base", + "namespace": "play" + }, + "children": [ + "picture" + ] + }, + "realm_screenshot/picture": { + "file": "ui/play_screen.json", + "type": "image" + }, + "local_world_name": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "play" + } + }, + "legacy_world_name": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "play" + } + }, + "world_lock": { + "file": "ui/play_screen.json", + "type": "image" + }, + "local_world_game_mode": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "play" + } + }, + "legacy_world_game_mode": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "play" + } + }, + "local_world_date": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "play" + } + }, + "legacy_world_date": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "play" + } + }, + "local_world_filesize": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "play" + } + }, + "legacy_world_filesize": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "play" + } + }, + "local_world_connected_storage": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "local_and_cloud", + "local_only", + "cloud_only" + ] + }, + "local_world_connected_storage/local_and_cloud": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "local_and_cloud_storage", + "namespace": "play" + } + }, + "local_world_connected_storage/local_only": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "local_only_storage", + "namespace": "play" + } + }, + "local_world_connected_storage/cloud_only": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "cloud_only_storage", + "namespace": "play" + } + }, + "local_world_lock_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "lock" + ] + }, + "local_world_lock_panel/lock": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "world_lock", + "namespace": "play" + } + }, + "realms_plus_banner": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "realms_banner" + ] + }, + "realms_plus_banner/realms_banner": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "markdown_background", + "namespace": "realmsPlus" + } + }, + "local_world_text_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "text_indent" + ] + }, + "local_world_text_panel/text_indent": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "top_side", + "bottom_side" + ] + }, + "local_world_text_panel/text_indent/top_side": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "local_world_name", + "lock_1", + "local_world_date" + ] + }, + "local_world_text_panel/text_indent/top_side/local_world_name": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "local_world_name", + "namespace": "play" + } + }, + "local_world_text_panel/text_indent/top_side/lock_1": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "local_world_lock_panel", + "namespace": "play" + } + }, + "local_world_text_panel/text_indent/top_side/local_world_date": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "local_world_date", + "namespace": "play" + } + }, + "local_world_text_panel/text_indent/bottom_side": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "realms_plus_banner", + "namespace": "play" + } + }, + "local_world_text_panel/text_indent/bottom_side/pad": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "local_world_text_panel/text_indent/bottom_side/local_world_game_mode": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "local_world_game_mode", + "namespace": "play" + } + }, + "local_world_text_panel/text_indent/bottom_side/local_world_connected_storage": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "local_world_connected_storage", + "namespace": "play" + } + }, + "local_world_text_panel/text_indent/bottom_side/local_world_filesize": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "local_world_filesize", + "namespace": "play" + } + }, + "legacy_world_text_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "text_indent" + ] + }, + "legacy_world_text_panel/text_indent": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "top_side", + "bottom_side" + ] + }, + "legacy_world_text_panel/text_indent/top_side": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "legacy_world_name", + "legacy_world_date" + ] + }, + "legacy_world_text_panel/text_indent/top_side/legacy_world_name": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "legacy_world_name", + "namespace": "play" + } + }, + "legacy_world_text_panel/text_indent/top_side/legacy_world_date": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "legacy_world_date", + "namespace": "play" + } + }, + "legacy_world_text_panel/text_indent/bottom_side": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "legacy_world_game_mode", + "legacy_world_filesize" + ] + }, + "legacy_world_text_panel/text_indent/bottom_side/legacy_world_game_mode": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "legacy_world_game_mode", + "namespace": "play" + } + }, + "legacy_world_text_panel/text_indent/bottom_side/legacy_world_filesize": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "legacy_world_filesize", + "namespace": "play" + } + }, + "beta_retail_world_text_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "text_indent" + ] + }, + "beta_retail_world_text_panel/text_indent": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "top_side", + "bottom_side" + ] + }, + "beta_retail_world_text_panel/text_indent/top_side": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "beta_retail_world_name", + "beta_retail_world_date" + ] + }, + "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_name": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "play" + } + }, + "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_date": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "play" + } + }, + "beta_retail_world_text_panel/text_indent/bottom_side": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "play" + } + }, + "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_filesize": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "play" + } + }, + "world_content_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "world_screenshot", + "world_text_panel" + ] + }, + "world_content_panel/world_screenshot": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "collection_world_screenshot", + "namespace": "play" + } + }, + "world_content_panel/world_text_panel": { + "file": "ui/play_screen.json", + "type": "unknown" + }, + "ownership_verification_in_progress_content": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "top_padding", + "loading_bar_panel", + "mid_padding", + "loading_label", + "bottom_padding" + ] + }, + "ownership_verification_in_progress_content/top_padding": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "ownership_verification_in_progress_content/loading_bar_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "loading_bar_animation" + ] + }, + "ownership_verification_in_progress_content/loading_bar_panel/loading_bar_animation": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "progress" + } + }, + "ownership_verification_in_progress_content/mid_padding": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "ownership_verification_in_progress_content/loading_label": { + "file": "ui/play_screen.json", + "type": "label" + }, + "ownership_verification_in_progress_content/bottom_padding": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "ownership_verification_in_progress_panel": { + "file": "ui/play_screen.json", + "type": "image", + "children": [ + "ownership_verification_in_progress_content" + ] + }, + "ownership_verification_in_progress_panel/ownership_verification_in_progress_content": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "ownership_verification_in_progress_content", + "namespace": "play" + } + }, + "local_world_item_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "legacy_world_item_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "beta_retail_world_item_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "local_world_edit_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "dark_glyph_button", + "namespace": "common_buttons" + } + }, + "legacy_world_delete_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "dark_glyph_button", + "namespace": "common_buttons" + } + }, + "legacy_world_migrate_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "dark_glyph_button", + "namespace": "common_buttons" + } + }, + "local_world_item": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "header_button_panel", + "signin_in_progress_panel" + ] + }, + "local_world_item/header_button_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "header_button_panel", + "namespace": "play" + } + }, + "local_world_item/signin_in_progress_panel": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "ownership_verification_in_progress_panel", + "namespace": "play" + } + }, + "legacy_world_item": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "header_button_panel", + "namespace": "play" + } + }, + "legacy_world_item/header_button_panel_with_migrate": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "header_button_panel", + "namespace": "play" + } + }, + "legacy_world_item/header_button_panel_no_delete": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "header_single_button_panel", + "namespace": "play" + } + }, + "beta_retail_world_item": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "header_single_button_panel", + "namespace": "play" + } + }, + "local_world_item_grid": { + "file": "ui/play_screen.json", + "type": "grid", + "extend": { + "name": "world_item_grid_base", + "namespace": "play" + } + }, + "legacy_world_item_grid": { + "file": "ui/play_screen.json", + "type": "grid", + "extend": { + "name": "world_item_grid_base", + "namespace": "play" + } + }, + "beta_retail_local_world_item_grid": { + "file": "ui/play_screen.json", + "type": "grid", + "extend": { + "name": "world_item_grid_base", + "namespace": "play" + } + }, + "beta_retail_legacy_world_item_grid": { + "file": "ui/play_screen.json", + "type": "grid", + "extend": { + "name": "world_item_grid_base", + "namespace": "play" + } + }, + "common_button_template": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "light_glyph_button", + "namespace": "common_buttons" + } + }, + "common_button_text": { + "file": "ui/play_screen.json", + "type": "label" + }, + "add_friend_and_invite_panel": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "add_friend_button", + "namespace": "play" + } + }, + "add_friend_and_invite_panel/padding_1": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "add_friend_and_invite_panel/join_by_code_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "join_by_code_button", + "namespace": "play" + } + }, + "add_friend_and_invite_panel/padding_2": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "add_friend_and_invite_panel/notification_button_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "notification_button" + ] + }, + "add_friend_and_invite_panel/notification_button_panel/notification_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "notification_button", + "namespace": "play" + } + }, + "add_friend_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "join_by_code_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "add_server_toggle_button": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "light_text_toggle", + "namespace": "common_toggles" + } + }, + "server_toggle_base": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "dark_image_toggle_collection", + "namespace": "common_toggles" + } + }, + "quick_play_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "create_new_world_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "create_on_realms_button_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "create_on_realms_button" + ] + }, + "create_on_realms_button_panel/create_on_realms_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "action_button_dark_text", + "namespace": "settings_common" + } + }, + "import_world_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "common_button_template", + "namespace": "play" + } + }, + "sync_legacy_worlds_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "notification_button_text_layout": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "image1", + "image2", + "count" + ] + }, + "notification_button_text_layout/image1": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "invite_icon", + "namespace": "play" + } + }, + "notification_button_text_layout/image2": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "bell_icon", + "namespace": "play" + } + }, + "notification_button_text_layout/count": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "notification_button_text_panel", + "namespace": "start" + } + }, + "notification_button_label_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "notification_button_label" + ] + }, + "notification_button_label_panel/notification_button_label": { + "file": "ui/play_screen.json", + "type": "label" + }, + "notification_content": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "notification_button_text_layout", + "namespace": "play" + } + }, + "notification_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "header_button_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "buttons" + ] + }, + "header_button_panel/buttons": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "primary_panel", + "secondary" + ] + }, + "header_button_panel/buttons/primary_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "primary" + ] + }, + "header_button_panel/buttons/primary_panel/primary": { + "file": "ui/play_screen.json", + "type": "unknown" + }, + "header_button_panel/buttons/secondary": { + "file": "ui/play_screen.json", + "type": "unknown" + }, + "header_button_panel_opt_in": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "buttons" + ] + }, + "header_button_panel_opt_in/buttons": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "primary_panel", + "secondary", + "ternary" + ] + }, + "header_button_panel_opt_in/buttons/primary_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "primary" + ] + }, + "header_button_panel_opt_in/buttons/primary_panel/primary": { + "file": "ui/play_screen.json", + "type": "unknown" + }, + "header_button_panel_opt_in/buttons/secondary": { + "file": "ui/play_screen.json", + "type": "unknown" + }, + "header_button_panel_opt_in/buttons/ternary": { + "file": "ui/play_screen.json", + "type": "unknown" + }, + "header_single_button_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "buttons" + ] + }, + "header_single_button_panel/buttons": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "primary" + ] + }, + "header_single_button_panel/buttons/primary": { + "file": "ui/play_screen.json", + "type": "unknown" + }, + "open_account_setting_button_gamecore": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "common_scroll_pane": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "worlds_scroll_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "common_scroll_pane", + "namespace": "play" + }, + "children": [ + "worlds_list_stack_panel" + ] + }, + "worlds_scroll_panel/worlds_list_stack_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "worlds_stack_panel", + "namespace": "play" + } + }, + "game_tip_item_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "info_bulb", + "padding_1", + "label_panel", + "more_info_button" + ] + }, + "game_tip_item_panel/info_bulb": { + "file": "ui/play_screen.json", + "type": "image" + }, + "game_tip_item_panel/padding_1": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "game_tip_item_panel/label_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "padding_vertical", + "realms_warning_text", + "padding_vertical_1" + ] + }, + "game_tip_item_panel/label_panel/padding_vertical": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "game_tip_item_panel/label_panel/realms_warning_text": { + "file": "ui/play_screen.json", + "type": "label" + }, + "game_tip_item_panel/label_panel/padding_vertical_1": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "game_tip_item_panel/more_info_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "light_text_form_fitting_button", + "namespace": "common_buttons" + } + }, + "realm_warning_tip": { + "file": "ui/play_screen.json", + "type": "image", + "children": [ + "padding_vertical", + "info_panel" + ] + }, + "realm_warning_tip/padding_vertical": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "realm_warning_tip/info_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "game_tip_item_panel", + "namespace": "play" + } + }, + "new_ui_switch_button_options_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "unlock_template_options_button" + ] + }, + "new_ui_switch_button_options_panel/unlock_template_options_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "new_ui_servers_switch_button_options_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "unlock_template_options_button", + "padding_0" + ] + }, + "new_ui_servers_switch_button_options_panel/unlock_template_options_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "new_ui_servers_switch_button_options_panel/padding_0": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "worlds_stack_panel": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "worlds_stack_panel/play_screen_warning": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "realm_warning_tip", + "namespace": "play" + } + }, + "worlds_stack_panel/header_button": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "quick_play", + "buttons" + ] + }, + "worlds_stack_panel/header_button/quick_play": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "quick_play_button", + "namespace": "play" + } + }, + "worlds_stack_panel/header_button/buttons": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "header_button_panel_opt_in", + "namespace": "play" + } + }, + "worlds_stack_panel/worlds_crossplatform_disabled_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "crossplatform_disabled_panel", + "namespace": "play" + } + }, + "worlds_stack_panel/worlds_crossplatform_disable_spacer": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "crossplatform_disable_spacer", + "namespace": "play" + } + }, + "worlds_stack_panel/realms_panel": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "world_list_label_panel", + "namespace": "play" + } + }, + "worlds_stack_panel/realms_panel/sign_in_to_view_realms_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "sign_in_to_view_realms_button", + "namespace": "play" + } + }, + "worlds_stack_panel/realms_panel/realms_previews_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "new_offers_icon", + "realms_world_item_button" + ] + }, + "worlds_stack_panel/realms_panel/realms_previews_panel/new_offers_icon": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "new_offer_icon", + "namespace": "common_store" + } + }, + "worlds_stack_panel/realms_panel/realms_previews_panel/realms_world_item_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "worlds_stack_panel/realms_panel/create_on_realms_button_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "create_on_realms_button_panel", + "namespace": "play" + } + }, + "worlds_stack_panel/realms_panel/personal_realms": { + "file": "ui/play_screen.json", + "type": "grid", + "extend": { + "name": "realms_world_item_grid", + "namespace": "play" + } + }, + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "label_background", + "namespace": "play" + }, + "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": { + "file": "ui/play_screen.json", + "type": "grid" + }, + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/loading_friends_realms_label": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "loading_label", + "namespace": "play" + } + }, + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/padding": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/progress_loading_bars": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "play" + } + }, + "worlds_stack_panel/realms_panel/realms_trial_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "realms_world_item_button" + ] + }, + "worlds_stack_panel/realms_panel/realms_trial_panel/realms_world_item_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "realms_world_item_button" + ] + }, + "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel/realms_world_item_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "worlds_stack_panel/realms_panel/padding_1": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "worlds_stack_panel/realms_multiplayer_blocked_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "text_panel", + "open_uri_button", + "open_account_setting_button_gamecore" + ] + }, + "worlds_stack_panel/realms_multiplayer_blocked_panel/text_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "label_content_template", + "namespace": "play" + } + }, + "worlds_stack_panel/realms_multiplayer_blocked_panel/open_uri_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "open_account_setting_button", + "namespace": "play" + } + }, + "worlds_stack_panel/realms_multiplayer_blocked_panel/open_account_setting_button_gamecore": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "open_account_setting_button_gamecore", + "namespace": "play" + } + }, + "worlds_stack_panel/worlds_label": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "world_list_label_with_color_panel", + "namespace": "play" + } + }, + "worlds_stack_panel/grid": { + "file": "ui/play_screen.json", + "type": "grid", + "extend": { + "name": "local_world_item_grid", + "namespace": "play" + } + }, + "worlds_stack_panel/no_local_worlds_label": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "label_content_template", + "namespace": "play" + } + }, + "worlds_stack_panel/no_local_worlds_switch_setting": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "no_local_worlds_switch_setting", + "namespace": "play" + } + }, + "worlds_stack_panel/beta_retail_local_padding": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "worlds_stack_panel/beta_retail_local_worlds_label": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "world_list_label_panel", + "namespace": "play" + } + }, + "worlds_stack_panel/beta_retail_local_grid": { + "file": "ui/play_screen.json", + "type": "grid", + "extend": { + "name": "beta_retail_local_world_item_grid", + "namespace": "play" + } + }, + "worlds_stack_panel/loading_legacy_worlds_panel_padding": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "worlds_stack_panel/legacy_worlds_button": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "legacy_worlds_label", + "sync_legacy_worlds_button_panel" + ] + }, + "worlds_stack_panel/legacy_worlds_button/legacy_worlds_label": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "world_list_label_panel", + "namespace": "play" + } + }, + "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "button" + ] + }, + "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel/button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "sync_legacy_worlds_button", + "namespace": "play" + } + }, + "worlds_stack_panel/loading_legacy_worlds_panel": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "label_background", + "namespace": "play" + }, + "children": [ + "loading_legacy_worlds_label", + "padding", + "progress_loading_bars" + ] + }, + "worlds_stack_panel/loading_legacy_worlds_panel/loading_legacy_worlds_label": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "loading_label", + "namespace": "play" + } + }, + "worlds_stack_panel/loading_legacy_worlds_panel/padding": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "worlds_stack_panel/loading_legacy_worlds_panel/progress_loading_bars": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "play" + } + }, + "worlds_stack_panel/padding_2": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "worlds_stack_panel/upgrade_legacy_worlds_label": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "world_list_label_with_color_panel", + "namespace": "play" + } + }, + "worlds_stack_panel/legacy_world_item_grid": { + "file": "ui/play_screen.json", + "type": "grid", + "extend": { + "name": "legacy_world_item_grid", + "namespace": "play" + } + }, + "worlds_stack_panel/beta_retail_legacy_padding": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "worlds_stack_panel/beta_retail_legacy_worlds_label": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "world_list_label_panel", + "namespace": "play" + } + }, + "worlds_stack_panel/beta_retail_legacy_grid": { + "file": "ui/play_screen.json", + "type": "grid", + "extend": { + "name": "beta_retail_legacy_world_item_grid", + "namespace": "play" + } + }, + "worlds_stack_panel/pad_hack_panel": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "no_local_worlds_switch_setting": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "bg" + ] + }, + "no_local_worlds_switch_setting/bg": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "label_background", + "namespace": "play" + }, + "children": [ + "no_local_worlds_switch_setting", + "no_local_worlds_get_help" + ] + }, + "no_local_worlds_switch_setting/bg/no_local_worlds_switch_setting": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "label_content_template", + "namespace": "play" + } + }, + "no_local_worlds_switch_setting/bg/no_local_worlds_get_help": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "label_content_template", + "namespace": "play" + } + }, + "no_local_worlds_launch_help": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "storage_location_dropdown_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "padding1", + "storage_location_dropdown" + ] + }, + "storage_location_dropdown_panel/padding1": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "storage_location_dropdown_panel/storage_location_dropdown": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "storage_location_dropdown", + "namespace": "play" + } + }, + "storage_location_dropdown": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "switch_storage_type_content": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "light_centered_loading_label": { + "file": "ui/play_screen.json", + "type": "label" + }, + "light_loading_label": { + "file": "ui/play_screen.json", + "type": "label" + }, + "loading_label": { + "file": "ui/play_screen.json", + "type": "label" + }, + "progress_loading_bars": { + "file": "ui/play_screen.json", + "type": "image" + }, + "world_list_label_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "list_label" + ] + }, + "world_list_label_panel/list_label": { + "file": "ui/play_screen.json", + "type": "label" + }, + "world_list_label_with_color_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "colored_square_sizer", + "padding", + "list_label" + ] + }, + "world_list_label_with_color_panel/colored_square_sizer": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "colored_square" + ] + }, + "world_list_label_with_color_panel/colored_square_sizer/colored_square": { + "file": "ui/play_screen.json", + "type": "image" + }, + "world_list_label_with_color_panel/padding": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "world_list_label_with_color_panel/list_label": { + "file": "ui/play_screen.json", + "type": "label" + }, + "empty_panel": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "empty_grid": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "lan_servers_scroll_content": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "label_content_template", + "namespace": "play" + } + }, + "friends_scroll_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "common_scroll_pane", + "namespace": "play" + }, + "children": [ + "stack_panel" + ] + }, + "friends_scroll_panel/stack_panel": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "friends_scroll_panel/stack_panel/friends_screen_warning": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "realm_warning_tip", + "namespace": "play" + } + }, + "friends_scroll_panel/stack_panel/header_button": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "add_friend_and_invite_panel" + ] + }, + "friends_scroll_panel/stack_panel/header_button/add_friend_and_invite_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "add_friend_and_invite_panel", + "namespace": "play" + } + }, + "friends_scroll_panel/stack_panel/friends_crossplatform_disabled_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "crossplatform_disabled_panel", + "namespace": "play" + } + }, + "friends_scroll_panel/stack_panel/friends_crossplatform_disable_spacer": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "crossplatform_disable_spacer", + "namespace": "play" + } + }, + "friends_scroll_panel/stack_panel/joinable_realms_panel": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "world_list_label_panel", + "namespace": "play" + } + }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/sign_in_to_view_realms_button_friends": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "sign_in_to_view_realms_button_friends", + "namespace": "play" + } + }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms": { + "file": "ui/play_screen.json", + "type": "grid", + "extend": { + "name": "realms_world_item_grid", + "namespace": "play" + } + }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "label_background", + "namespace": "play" + }, + "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": { + "file": "ui/play_screen.json", + "type": "grid" + }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/loading_friends_realms_label": { + "file": "ui/play_screen.json", + "type": "label" + }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/padding": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/progress_loading_bars": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "play" + } + }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "label_background", + "namespace": "play" + }, + "children": [ + "content_stack", + "focus_border" + ] + }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "message_panel", + "image_panel" + ] + }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "message_label" + ] + }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel/message_label": { + "file": "ui/play_screen.json", + "type": "label" + }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "link_image" + ] + }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel/link_image": { + "file": "ui/play_screen.json", + "type": "image" + }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "hover", + "pressed" + ] + }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/hover": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/pressed": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/no_realms_grid": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "label_content_template", + "namespace": "play" + } + }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/padding_1": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "friends_scroll_panel/stack_panel/friends_grid": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "label_content_template", + "namespace": "play" + } + }, + "friends_scroll_panel/stack_panel/pad_hack_panel": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "friends_scroll_panel/stack_panel/no_friends_grid_message": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "label_content_template", + "namespace": "play" + } + }, + "friends_scroll_panel/stack_panel/switch_find_cross_platform_friend_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "add_friend_button", + "namespace": "play" + } + }, + "friends_scroll_panel/stack_panel/add_friend_button_padding": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "friends_scroll_panel/stack_panel/cross_platform_friends_grid": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "label_content_template", + "namespace": "play" + } + }, + "friends_scroll_panel/stack_panel/no_cross_platform_friends_grid_message": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "label_content_template", + "namespace": "play" + } + }, + "friends_scroll_panel/stack_panel/general_no_multiplayer_grid_message": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "label_content_template", + "namespace": "play" + } + }, + "friends_scroll_panel/stack_panel/lan_grid": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "lan_servers_scroll_content", + "namespace": "play" + } + }, + "friends_scroll_panel/stack_panel/open_account_setting_button_gamecore": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "open_account_setting_button_gamecore", + "namespace": "play" + } + }, + "manually_added_servers_scrolling_content": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "padding_0", + "more_servers_label", + "padding_1", + "more_servers_grid", + "padding_3" + ] + }, + "manually_added_servers_scrolling_content/padding_0": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "manually_added_servers_scrolling_content/more_servers_label": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "manually_added_servers_scrolling_content/padding_1": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "manually_added_servers_scrolling_content/more_servers_grid": { + "file": "ui/play_screen.json", + "type": "grid", + "extend": { + "name": "more_servers_grid", + "namespace": "play" + } + }, + "manually_added_servers_scrolling_content/padding_3": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "servers_content_panel": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "new_ui_servers_switch_button_options_panel", + "namespace": "play" + } + }, + "servers_content_panel/featured_servers_panel": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "label_background", + "namespace": "play" + }, + "children": [ + "loading_friends_realms_label", + "loading_featured_servers_panel" + ] + }, + "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_friends_realms_label": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "light_loading_label", + "namespace": "play" + } + }, + "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_featured_servers_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "loading_featured_servers_panel", + "namespace": "play" + } + }, + "servers_content_panel/featured_servers_panel/padding_1": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "servers_content_panel/featured_servers_panel/featured_servers_label": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "servers_content_panel/featured_servers_panel/padding_2": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "servers_content_panel/featured_servers_panel/third_party_featured_grid": { + "file": "ui/play_screen.json", + "type": "grid", + "extend": { + "name": "third_party_featured_server_grid", + "namespace": "play" + } + }, + "servers_content_panel/featured_servers_panel/padding_3": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "servers_content_panel/more_servers_divider": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "common" + } + }, + "servers_content_panel/more_servers_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "manually_added_servers_scrolling_content", + "namespace": "play" + } + }, + "server_scroll_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "common_scroll_pane", + "namespace": "play" + }, + "children": [ + "stack_panel" + ] + }, + "server_scroll_panel/stack_panel": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "server_scroll_panel/stack_panel/servers_crossplatform_disabled_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "crossplatform_disabled_panel", + "namespace": "play" + } + }, + "server_scroll_panel/stack_panel/no_featured_server_connection": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "information_panel", + "namespace": "play" + } + }, + "server_scroll_panel/stack_panel/more_servers_blocked_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "server_multiplayer_privileges_blocked", + "open_uri_button" + ] + }, + "server_scroll_panel/stack_panel/more_servers_blocked_panel/server_multiplayer_privileges_blocked": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "information_panel", + "namespace": "play" + } + }, + "server_scroll_panel/stack_panel/more_servers_blocked_panel/open_uri_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "open_account_setting_button", + "namespace": "play" + } + }, + "server_scroll_panel/stack_panel/padding_1": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "server_scroll_panel/stack_panel/server_content": { + "file": "ui/play_screen.json", + "type": "unknown" + }, + "server_scroll_panel/stack_panel/add_server_button": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "add_server_toggle_button", + "namespace": "play" + } + }, + "crossplatform_disabled_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "information_panel", + "namespace": "play" + } + }, + "crossplatform_disable_spacer": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "common_scrolling_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "common_content": { + "file": "ui/play_screen.json", + "type": "input_panel" + }, + "scrolling_offsets": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "common_scrolling_panel", + "namespace": "play" + } + }, + "worlds_scroll_content": { + "file": "ui/play_screen.json", + "type": "input_panel", + "extend": { + "name": "common_content", + "namespace": "play" + }, + "children": [ + "worlds_stack_panel" + ] + }, + "worlds_scroll_content/worlds_stack_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "scrolling_panel_sizer", + "scrolling_panel_legacy_storage_sizer" + ] + }, + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer/scrolling_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_offsets", + "namespace": "play" + } + }, + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer/scrolling_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_offsets", + "namespace": "play" + } + }, + "friends_scroll_content": { + "file": "ui/play_screen.json", + "type": "input_panel", + "extend": { + "name": "common_content", + "namespace": "play" + }, + "children": [ + "scrolling_panel" + ] + }, + "friends_scroll_content/scrolling_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_offsets", + "namespace": "play" + } + }, + "show_servers_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "left_panel", + "divider_panel", + "right_panel" + ] + }, + "show_servers_panel/left_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "show_servers_panel/left_panel/scrolling_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_offsets", + "namespace": "play" + } + }, + "show_servers_panel/divider_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "main_divider" + ] + }, + "show_servers_panel/divider_panel/main_divider": { + "file": "ui/play_screen.json", + "type": "image" + }, + "show_servers_panel/right_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "server_content_area", + "namespace": "play" + } + }, + "server_scroll_content": { + "file": "ui/play_screen.json", + "type": "input_panel", + "extend": { + "name": "common_content", + "namespace": "play" + }, + "children": [ + "severs_panel", + "feature_server_message_panel" + ] + }, + "server_scroll_content/severs_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "offset_panel", + "show_servers_panel" + ] + }, + "server_scroll_content/severs_panel/offset_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "servers_sunsetting_warning" + ] + }, + "server_scroll_content/severs_panel/offset_panel/servers_sunsetting_warning": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "realm_warning_tip", + "namespace": "play" + } + }, + "server_scroll_content/severs_panel/show_servers_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "show_servers_panel", + "namespace": "play" + } + }, + "server_scroll_content/feature_server_message_panel": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "server_scroll_content/feature_server_message_panel/pad": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "server_scroll_content/feature_server_message_panel/feature_server_message_panel": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "dark_label_background", + "namespace": "play" + }, + "children": [ + "label_panel_layout" + ] + }, + "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "label" + ] + }, + "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout/label": { + "file": "ui/play_screen.json", + "type": "label" + }, + "server_scroll_content/feature_server_message_panel/open_account_setting_button_gamecore": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "open_account_setting_button_gamecore", + "namespace": "play" + } + }, + "server_content_area": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "third_party_scrolling_panel", + "additional_server_scrolling_panel", + "add_server_pane" + ] + }, + "server_content_area/third_party_scrolling_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_offsets", + "namespace": "play" + } + }, + "server_content_area/additional_server_scrolling_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_offsets", + "namespace": "play" + } + }, + "server_content_area/add_server_pane": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "add_server_info_panel", + "namespace": "play" + } + }, + "tab_front": { + "file": "ui/play_screen.json", + "type": "image" + }, + "tab_front_middle": { + "file": "ui/play_screen.json", + "type": "image" + }, + "tab_back": { + "file": "ui/play_screen.json", + "type": "image" + }, + "X_tab_back": { + "file": "ui/play_screen.json", + "type": "image" + }, + "tab_text_stack_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "padding", + "text_section", + "count_section" + ] + }, + "tab_text_stack_panel/padding": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "tab_text_stack_panel/text_section": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "text" + ] + }, + "tab_text_stack_panel/text_section/text": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "common_button_text", + "namespace": "play" + } + }, + "tab_text_stack_panel/count_section": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "count_background_image" + ] + }, + "tab_text_stack_panel/count_section/count_background_image": { + "file": "ui/play_screen.json", + "type": "image", + "children": [ + "count" + ] + }, + "tab_text_stack_panel/count_section/count_background_image/count": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "common_button_text", + "namespace": "play" + } + }, + "common_navigation_tab_content": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "padding_0", + "icon_section", + "padding_1", + "count_text" + ] + }, + "common_navigation_tab_content/padding_0": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "common_navigation_tab_content/icon_section": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "icon" + ] + }, + "common_navigation_tab_content/icon_section/icon": { + "file": "ui/play_screen.json", + "type": "unknown" + }, + "common_navigation_tab_content/padding_1": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "common_navigation_tab_content/count_text": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "tab_text_stack_panel", + "namespace": "play" + } + }, + "friends_navigation_tab_content": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "friends_navigation_tab_content/icon_section": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "icon" + ] + }, + "friends_navigation_tab_content/icon_section/icon": { + "file": "ui/play_screen.json", + "type": "unknown" + }, + "friends_navigation_tab_content/icon_section_2": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "icon" + ] + }, + "friends_navigation_tab_content/icon_section_2/icon": { + "file": "ui/play_screen.json", + "type": "unknown" + }, + "friends_navigation_tab_content/icon_section_nobounce": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "icon" + ] + }, + "friends_navigation_tab_content/icon_section_nobounce/icon": { + "file": "ui/play_screen.json", + "type": "unknown" + }, + "friends_navigation_tab_content/icon_section_nobounce_2": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "icon" + ] + }, + "friends_navigation_tab_content/icon_section_nobounce_2/icon": { + "file": "ui/play_screen.json", + "type": "unknown" + }, + "friends_navigation_tab_content/icon_section_notification": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "icon1", + "icon2" + ] + }, + "friends_navigation_tab_content/icon_section_notification/icon1": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "invite_icon", + "namespace": "play" + } + }, + "friends_navigation_tab_content/icon_section_notification/icon2": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "bell_icon", + "namespace": "play" + } + }, + "friends_navigation_tab_content/count_text": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "tab_text_stack_panel", + "namespace": "play" + } + }, + "top_tab": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "tab_top", + "namespace": "common_tabs" + } + }, + "world_navigation_tab": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "play" + } + }, + "friends_navigation_tab": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "play" + } + }, + "server_navigation_tab": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "play" + } + }, + "close_navigation_tab": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "background", + "x_image" + ] + }, + "close_navigation_tab/background": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "X_tab_back", + "namespace": "play" + } + }, + "close_navigation_tab/x_image": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "light_close_button", + "namespace": "common" + } + }, + "common_tab_content_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "background", + "content" + ] + }, + "common_tab_content_panel/background": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "common_tab_content_panel/content": { + "file": "ui/play_screen.json", + "type": "unknown" + }, + "worlds_tab_content_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_content_panel", + "namespace": "play" + } + }, + "friends_tab_content_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_content_panel", + "namespace": "play" + } + }, + "server_tab_content_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_content_panel", + "namespace": "play" + } + }, + "common_tab_content_panel_type": { + "file": "ui/play_screen.json", + "type": "input_panel" + }, + "edu_tab_content_panel_layout": { + "file": "ui/play_screen.json", + "type": "input_panel", + "extend": { + "name": "common_tab_content_panel_type", + "namespace": "play" + }, + "children": [ + "worlds_tab_content", + "friends_tab_content", + "server_tab_content_panel" + ] + }, + "edu_tab_content_panel_layout/worlds_tab_content": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "worlds_tab_content_panel", + "namespace": "play" + } + }, + "edu_tab_content_panel_layout/friends_tab_content": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "friends_tab_content_panel", + "namespace": "play" + } + }, + "edu_tab_content_panel_layout/server_tab_content_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "server_tab_content_panel", + "namespace": "play" + } + }, + "trial_tab_content_panel_layout": { + "file": "ui/play_screen.json", + "type": "input_panel", + "extend": { + "name": "common_tab_content_panel_type", + "namespace": "play" + }, + "children": [ + "worlds_tab_content" + ] + }, + "trial_tab_content_panel_layout/worlds_tab_content": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "worlds_tab_content_panel", + "namespace": "play" + } + }, + "default_tab_content_panel_layout": { + "file": "ui/play_screen.json", + "type": "input_panel", + "extend": { + "name": "common_tab_content_panel_type", + "namespace": "play" + }, + "children": [ + "worlds_tab_content", + "friends_tab_content", + "server_tab_content_panel" + ] + }, + "default_tab_content_panel_layout/worlds_tab_content": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "worlds_tab_content_panel", + "namespace": "play" + } + }, + "default_tab_content_panel_layout/friends_tab_content": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "friends_tab_content_panel", + "namespace": "play" + } + }, + "default_tab_content_panel_layout/server_tab_content_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "server_tab_content_panel", + "namespace": "play" + } + }, + "tab_navigation_panel_layout": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "navigation_tabs", + "close_navigation_tab" + ] + }, + "tab_navigation_panel_layout/navigation_tabs": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "content" + ] + }, + "tab_navigation_panel_layout/navigation_tabs/content": { + "file": "ui/play_screen.json", + "type": "unknown" + }, + "tab_navigation_panel_layout/close_navigation_tab": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "close_button" + ] + }, + "tab_navigation_panel_layout/close_navigation_tab/close_button": { + "file": "ui/play_screen.json", + "type": "unknown" + }, + "common_tab_navigation_panel_layout": { + "file": "ui/play_screen.json", + "type": "stack_panel" + }, + "edu_tab_navigation_panel_layout": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "common_tab_navigation_panel_layout", + "namespace": "play" + }, + "children": [ + "world_navigation_tab", + "friends_navigation_tab", + "server_navigation_tab" + ] + }, + "edu_tab_navigation_panel_layout/world_navigation_tab": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "world_navigation_tab", + "namespace": "play" + } + }, + "edu_tab_navigation_panel_layout/friends_navigation_tab": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "friends_navigation_tab", + "namespace": "play" + } + }, + "edu_tab_navigation_panel_layout/server_navigation_tab": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "server_navigation_tab", + "namespace": "play" + } + }, + "trial_tab_navigation_panel_layout": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "common_tab_navigation_panel_layout", + "namespace": "play" + }, + "children": [ + "world_navigation_tab" + ] + }, + "trial_tab_navigation_panel_layout/world_navigation_tab": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "world_navigation_tab", + "namespace": "play" + } + }, + "default_tab_navigation_panel_layout": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "common_tab_navigation_panel_layout", + "namespace": "play" + }, + "children": [ + "world_navigation_tab", + "friends_navigation_tab", + "server_navigation_tab" + ] + }, + "default_tab_navigation_panel_layout/world_navigation_tab": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "world_navigation_tab", + "namespace": "play" + } + }, + "default_tab_navigation_panel_layout/friends_navigation_tab": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "friends_navigation_tab", + "namespace": "play" + } + }, + "default_tab_navigation_panel_layout/server_navigation_tab": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "server_navigation_tab", + "namespace": "play" + } + }, + "common_play_screen_panel": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "play_screen_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "common_play_screen_panel", + "namespace": "play" + }, + "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": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "tab_navigation_panel_layout", + "namespace": "play" + } + }, + "play_screen_panel/tab_content_panel": { + "file": "ui/play_screen.json", + "type": "unknown" + }, + "play_screen_panel/gamepad_helper_left_bumper": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_left_bumper", + "namespace": "common" + } + }, + "play_screen_panel/gamepad_helper_right_bumper": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_right_bumper", + "namespace": "common" + } + }, + "play_screen_panel/keyboard_helper_left_bracket": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "keyboard_left_trigger", + "namespace": "common" + } + }, + "play_screen_panel/keyboard_helper_right_bracket": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "keyboard_right_trigger", + "namespace": "common" + } + }, + "default_play_screen_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "play_screen_panel", + "namespace": "play" + } + }, + "trial_play_screen_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "play_screen_panel", + "namespace": "play" + } + }, + "edu_play_screen_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "play_screen_panel", + "namespace": "play" + } + }, + "play_screen": { + "file": "ui/play_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "play_screen_content": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "main_control", + "editor_text_panel", + "popup_dialog_factory" + ] + }, + "play_screen_content/main_control": { + "file": "ui/play_screen.json", + "type": "unknown" + }, + "play_screen_content/editor_text_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "editor_text_panel", + "namespace": "play" + } + }, + "play_screen_content/popup_dialog_factory": { + "file": "ui/play_screen.json", + "type": "factory" + }, + "popup_dialog_join_by_code": { + "file": "ui/play_screen.json", + "type": "input_panel", + "extend": { + "name": "modal_input_panel", + "namespace": "popup_dialog" + }, + "children": [ + "join_by_code_popup_background", + "join_by_code_popup_content", + "gamepad_helpers" + ] + }, + "popup_dialog_join_by_code/join_by_code_popup_background": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "join_by_code_popup_background", + "namespace": "play" + } + }, + "popup_dialog_join_by_code/join_by_code_popup_content": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "join_by_code_popup_content", + "namespace": "play" + } + }, + "popup_dialog_join_by_code/gamepad_helpers": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helpers_a_and_b", + "namespace": "common" + } + }, + "join_by_code_popup_background": { + "file": "ui/play_screen.json", + "type": "image" + }, + "join_by_code_popup_content": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "popup_dialog_bg", + "popup_stack_panel" + ] + }, + "join_by_code_popup_content/popup_dialog_bg": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "popup_dialog_bg", + "namespace": "realms_common" + } + }, + "join_by_code_popup_content/popup_stack_panel": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "join_by_code_popup_dialog_header", + "namespace": "play" + } + }, + "join_by_code_popup_content/popup_stack_panel/spacing_1": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_upper_body": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "join_by_code_popup_dialog_upper_body", + "namespace": "play" + } + }, + "join_by_code_popup_content/popup_stack_panel/spacing_2": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_lower_body": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "join_by_code_popup_dialog_lower_body", + "namespace": "play" + } + }, + "join_by_code_popup_dialog_header": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "join_by_code_popup_header_text", + "close_button" + ] + }, + "join_by_code_popup_dialog_header/join_by_code_popup_header_text": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "join_by_code_popup_header_text", + "namespace": "play" + } + }, + "join_by_code_popup_dialog_header/close_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "common" + } + }, + "join_by_code_popup_header_text": { + "file": "ui/play_screen.json", + "type": "label" + }, + "join_by_code_popup_dialog_upper_body": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "join_by_code_popup_dialog_upper_body/join_by_code_popup_code_text_field": { + "file": "ui/play_screen.json", + "type": "edit_box", + "extend": { + "name": "join_by_code_popup_code_text_field", + "namespace": "play" + } + }, + "join_by_code_popup_dialog_upper_body/spacing": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "join_by_code_popup_dialog_upper_body/join_by_code_popup_join_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "join_by_code_popup_join_button", + "namespace": "play" + } + }, + "join_by_code_popup_dialog_upper_body/margin2": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "join_by_code_popup_code_text_field": { + "file": "ui/play_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "join_by_code_popup_join_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "join_by_code_popup_help_text": { + "file": "ui/play_screen.json", + "type": "label" + }, + "lower_body_default_content": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "info_text" + ] + }, + "lower_body_default_content/info_text": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "join_by_code_popup_help_text", + "namespace": "play" + } + }, + "join_by_code_popup_dialog_lower_body": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "default" + ] + }, + "join_by_code_popup_dialog_lower_body/default": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "lower_body_default_content", + "namespace": "play" + } + }, + "open_account_setting_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "hyperlink_button", + "namespace": "common_buttons" + } + }, + "popup_dialog_high_ping": { + "file": "ui/play_screen.json", + "type": "input_panel", + "extend": { + "name": "modal_input_panel", + "namespace": "popup_dialog" + }, + "children": [ + "high_ping_popup_background", + "high_ping_popup_content", + "gamepad_helpers" + ] + }, + "popup_dialog_high_ping/high_ping_popup_background": { + "file": "ui/play_screen.json", + "type": "image", + "extend": { + "name": "join_by_code_popup_background", + "namespace": "play" + } + }, + "popup_dialog_high_ping/high_ping_popup_content": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "popup_two_buttons", + "namespace": "play" + } + }, + "popup_dialog_high_ping/gamepad_helpers": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helpers_a_and_b", + "namespace": "common" + } + }, + "popup_two_buttons": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "common_panel", + "title_label", + "panel_indent", + "button_panel" + ] + }, + "popup_two_buttons/common_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "popup_two_buttons/title_label": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "title_label", + "namespace": "common_dialogs" + } + }, + "popup_two_buttons/panel_indent": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "inside_header_panel" + ] + }, + "popup_two_buttons/panel_indent/inside_header_panel": { + "file": "ui/play_screen.json", + "type": "unknown" + }, + "popup_two_buttons/button_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "left_button_panel", + "pad", + "right_button_panel" + ] + }, + "popup_two_buttons/button_panel/left_button_panel": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "high_ping_popup_join_button", + "namespace": "play" + } + }, + "popup_two_buttons/button_panel/pad": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "popup_two_buttons/button_panel/right_button_panel": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "high_ping_popup_cancel_button", + "namespace": "play" + } + }, + "high_ping_popup_content_stack_panel": { + "file": "ui/play_screen.json", + "type": "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": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "high_ping_popup_content_stack_panel/ping_images_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "ping_images_stack_panel" + ] + }, + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "medium_connection", + "pad", + "low_connection" + ] + }, + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/medium_connection": { + "file": "ui/play_screen.json", + "type": "image" + }, + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/pad": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/low_connection": { + "file": "ui/play_screen.json", + "type": "image" + }, + "high_ping_popup_content_stack_panel/pad_1": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "high_ping_popup_content_stack_panel/text_line_1": { + "file": "ui/play_screen.json", + "type": "label" + }, + "high_ping_popup_content_stack_panel/pad_2": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "high_ping_popup_content_stack_panel/text_line_2": { + "file": "ui/play_screen.json", + "type": "label" + }, + "high_ping_popup_content_stack_panel/pad_3": { + "file": "ui/play_screen.json", + "type": "panel" + }, + "high_ping_popup_join_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "high_ping_popup_cancel_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "copyright": { + "file": "ui/play_screen.json", + "type": "label" + }, + "development_version": { + "file": "ui/play_screen.json", + "type": "label" + }, + "version": { + "file": "ui/play_screen.json", + "type": "label" + }, + "editor_text_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "children": [ + "copyright", + "development_version", + "version" + ] + }, + "editor_text_panel/copyright": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "copyright", + "namespace": "play" + } + }, + "editor_text_panel/development_version": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "development_version", + "namespace": "play" + } + }, + "editor_text_panel/version": { + "file": "ui/play_screen.json", + "type": "label", + "extend": { + "name": "version", + "namespace": "play" + } + }, + "editor_settings_image_content": { + "file": "ui/play_screen.json", + "type": "image" + }, + "editor_settings_menu_button": { + "file": "ui/play_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "editor_server_content_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "children": [ + "more_servers_panel" + ] + }, + "editor_server_content_panel/more_servers_panel": { + "file": "ui/play_screen.json", + "type": "stack_panel", + "extend": { + "name": "manually_added_servers_scrolling_content", + "namespace": "play" + } + }, + "editor_tab_content_panel_layout": { + "file": "ui/play_screen.json", + "type": "input_panel", + "extend": { + "name": "common_tab_content_panel_type", + "namespace": "play" + }, + "children": [ + "worlds_tab_content", + "friends_tab_content", + "server_tab_content_panel" + ] + }, + "editor_tab_content_panel_layout/worlds_tab_content": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "worlds_tab_content_panel", + "namespace": "play" + } + }, + "editor_tab_content_panel_layout/friends_tab_content": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "friends_tab_content_panel", + "namespace": "play" + } + }, + "editor_tab_content_panel_layout/server_tab_content_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "server_tab_content_panel", + "namespace": "play" + } + }, + "editor_play_screen_panel": { + "file": "ui/play_screen.json", + "type": "panel", + "extend": { + "name": "play_screen_panel", + "namespace": "play" + } + } + }, + "perf_turtle": { + "perf_turtle_panel": { + "file": "ui/perf_turtle.json", + "type": "panel", + "children": [ + "perf_turtle_background", + "stack_panel" + ] + }, + "perf_turtle_panel/perf_turtle_background": { + "file": "ui/perf_turtle.json", + "type": "image" + }, + "perf_turtle_panel/stack_panel": { + "file": "ui/perf_turtle.json", + "type": "stack_panel", + "children": [ + "turtle", + "turtle_text" + ] + }, + "perf_turtle_panel/stack_panel/turtle": { + "file": "ui/perf_turtle.json", + "type": "image" + }, + "perf_turtle_panel/stack_panel/turtle_text": { + "file": "ui/perf_turtle.json", + "type": "label" + } + }, + "pocket_containers": { + "generic_label": { + "file": "ui/pocket_containers.json", + "type": "label" + }, + "header_panel": { + "file": "ui/pocket_containers.json", + "type": "panel", + "children": [ + "header_background", + "title_label" + ] + }, + "header_panel/header_background": { + "file": "ui/pocket_containers.json", + "type": "image" + }, + "header_panel/title_label": { + "file": "ui/pocket_containers.json", + "type": "label", + "extend": { + "name": "generic_label", + "namespace": "pocket_containers" + } + }, + "header_area": { + "file": "ui/pocket_containers.json", + "type": "panel", + "children": [ + "x", + "inventory_header", + "container_header" + ] + }, + "header_area/x": { + "file": "ui/pocket_containers.json", + "type": "button", + "extend": { + "name": "legacy_pocket_close_button", + "namespace": "common" + } + }, + "header_area/inventory_header": { + "file": "ui/pocket_containers.json", + "type": "panel", + "extend": { + "name": "header_panel", + "namespace": "pocket_containers" + } + }, + "header_area/container_header": { + "file": "ui/pocket_containers.json", + "type": "panel", + "extend": { + "name": "header_panel", + "namespace": "pocket_containers" + } + }, + "dark_bg": { + "file": "ui/pocket_containers.json", + "type": "image" + }, + "panel_outline": { + "file": "ui/pocket_containers.json", + "type": "image" + }, + "background_panel": { + "file": "ui/pocket_containers.json", + "type": "image" + }, + "inventory_grid": { + "file": "ui/pocket_containers.json", + "type": "grid" + }, + "inventory_panel": { + "file": "ui/pocket_containers.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "inventory_panel/scrolling_panel": { + "file": "ui/pocket_containers.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "half_screen": { + "file": "ui/pocket_containers.json", + "type": "panel", + "children": [ + "inventory_panel" + ] + }, + "half_screen/inventory_panel": { + "file": "ui/pocket_containers.json", + "type": "panel", + "extend": { + "name": "inventory_panel", + "namespace": "pocket_containers" + } + }, + "panel": { + "file": "ui/pocket_containers.json", + "type": "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": { + "file": "ui/pocket_containers.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "panel/header": { + "file": "ui/pocket_containers.json", + "type": "panel", + "extend": { + "name": "header_area", + "namespace": "pocket_containers" + } + }, + "panel/bg": { + "file": "ui/pocket_containers.json", + "type": "image", + "extend": { + "name": "background_panel", + "namespace": "pocket_containers" + } + }, + "panel/inventory": { + "file": "ui/pocket_containers.json", + "type": "panel", + "extend": { + "name": "half_screen", + "namespace": "pocket_containers" + } + }, + "panel/container": { + "file": "ui/pocket_containers.json", + "type": "panel", + "extend": { + "name": "half_screen", + "namespace": "pocket_containers" + } + }, + "panel/selected_item_details_factory": { + "file": "ui/pocket_containers.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "panel/item_lock_notification_factory": { + "file": "ui/pocket_containers.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "panel/gamepad_cursor": { + "file": "ui/pocket_containers.json", + "type": "button", + "extend": { + "name": "gamepad_cursor_button", + "namespace": "common" + } + }, + "panel/inventory_selected_icon_button": { + "file": "ui/pocket_containers.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "panel/hold_icon": { + "file": "ui/pocket_containers.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "panel/flying_item_renderer": { + "file": "ui/pocket_containers.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + }, + "small_chest_panel": { + "file": "ui/pocket_containers.json", + "type": "panel", + "extend": { + "name": "panel", + "namespace": "pocket_containers" + } + }, + "large_chest_panel": { + "file": "ui/pocket_containers.json", + "type": "panel", + "extend": { + "name": "panel", + "namespace": "pocket_containers" + } + }, + "hopper_panel": { + "file": "ui/pocket_containers.json", + "type": "panel", + "extend": { + "name": "panel", + "namespace": "pocket_containers" + } + }, + "dispenser_panel": { + "file": "ui/pocket_containers.json", + "type": "panel", + "extend": { + "name": "panel", + "namespace": "pocket_containers" + } + }, + "dropper_panel": { + "file": "ui/pocket_containers.json", + "type": "panel", + "extend": { + "name": "panel", + "namespace": "pocket_containers" + } + }, + "ender_chest_panel": { + "file": "ui/pocket_containers.json", + "type": "panel", + "extend": { + "name": "panel", + "namespace": "pocket_containers" + } + }, + "shulker_box_panel": { + "file": "ui/pocket_containers.json", + "type": "panel", + "extend": { + "name": "small_chest_panel", + "namespace": "pocket_containers" + } + }, + "barrel_panel": { + "file": "ui/pocket_containers.json", + "type": "panel", + "extend": { + "name": "small_chest_panel", + "namespace": "pocket_containers" + } + } + }, + "popup_dialog": { + "popup_dialog_bg": { + "file": "ui/popup_dialog.json", + "type": "image" + }, + "popup_dialog_message": { + "file": "ui/popup_dialog.json", + "type": "label" + }, + "popup_dialog_button": { + "file": "ui/popup_dialog.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "popup_dialog_button_with_binding": { + "file": "ui/popup_dialog.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "popup_dialog_left_button": { + "file": "ui/popup_dialog.json", + "type": "button", + "extend": { + "name": "popup_dialog_button", + "namespace": "popup_dialog" + } + }, + "popup_dialog_middle_button": { + "file": "ui/popup_dialog.json", + "type": "button", + "extend": { + "name": "popup_dialog_button", + "namespace": "popup_dialog" + } + }, + "popup_dialog_right_button": { + "file": "ui/popup_dialog.json", + "type": "button", + "extend": { + "name": "popup_dialog_button", + "namespace": "popup_dialog" + } + }, + "popup_dialog": { + "file": "ui/popup_dialog.json", + "type": "input_panel" + }, + "modal_background_image": { + "file": "ui/popup_dialog.json", + "type": "image" + }, + "black_tint_image": { + "file": "ui/popup_dialog.json", + "type": "image" + }, + "modal_title_text": { + "file": "ui/popup_dialog.json", + "type": "label" + }, + "modal_label_text": { + "file": "ui/popup_dialog.json", + "type": "stack_panel", + "children": [ + "padding", + "text" + ] + }, + "modal_label_text/padding": { + "file": "ui/popup_dialog.json", + "type": "panel" + }, + "modal_label_text/text": { + "file": "ui/popup_dialog.json", + "type": "label" + }, + "modal_checkbox_button": { + "file": "ui/popup_dialog.json", + "type": "toggle", + "extend": { + "name": "checkbox", + "namespace": "common" + }, + "children": [ + "header_description_stack_panel" + ] + }, + "modal_checkbox_button/header_description_stack_panel": { + "file": "ui/popup_dialog.json", + "type": "stack_panel", + "children": [ + "checkbox_visuals", + "buffer_panel", + "padding_panel" + ] + }, + "modal_checkbox_button/header_description_stack_panel/checkbox_visuals": { + "file": "ui/popup_dialog.json", + "type": "panel", + "extend": { + "name": "toggle_visuals", + "namespace": "common" + } + }, + "modal_checkbox_button/header_description_stack_panel/buffer_panel": { + "file": "ui/popup_dialog.json", + "type": "panel", + "children": [ + "label" + ] + }, + "modal_checkbox_button/header_description_stack_panel/buffer_panel/label": { + "file": "ui/popup_dialog.json", + "type": "label" + }, + "modal_checkbox_button/header_description_stack_panel/padding_panel": { + "file": "ui/popup_dialog.json", + "type": "panel" + }, + "dialog_text_wrapper": { + "file": "ui/popup_dialog.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "modal_label_panel": { + "file": "ui/popup_dialog.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "modal_left_button": { + "file": "ui/popup_dialog.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "modal_middle_button": { + "file": "ui/popup_dialog.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "modal_rightcancel_button": { + "file": "ui/popup_dialog.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "three_buttons_panel": { + "file": "ui/popup_dialog.json", + "type": "panel", + "children": [ + "left", + "middle", + "right" + ] + }, + "three_buttons_panel/left": { + "file": "ui/popup_dialog.json", + "type": "button", + "extend": { + "name": "modal_left_button", + "namespace": "popup_dialog" + } + }, + "three_buttons_panel/middle": { + "file": "ui/popup_dialog.json", + "type": "button", + "extend": { + "name": "modal_middle_button", + "namespace": "popup_dialog" + } + }, + "three_buttons_panel/right": { + "file": "ui/popup_dialog.json", + "type": "button", + "extend": { + "name": "modal_rightcancel_button", + "namespace": "popup_dialog" + } + }, + "two_buttons_checkbox_panel": { + "file": "ui/popup_dialog.json", + "type": "panel", + "children": [ + "left", + "middle", + "checkbox" + ] + }, + "two_buttons_checkbox_panel/left": { + "file": "ui/popup_dialog.json", + "type": "button", + "extend": { + "name": "modal_left_button", + "namespace": "popup_dialog" + } + }, + "two_buttons_checkbox_panel/middle": { + "file": "ui/popup_dialog.json", + "type": "button", + "extend": { + "name": "modal_middle_button", + "namespace": "popup_dialog" + } + }, + "two_buttons_checkbox_panel/checkbox": { + "file": "ui/popup_dialog.json", + "type": "toggle", + "extend": { + "name": "modal_checkbox_button", + "namespace": "popup_dialog" + } + }, + "destructive_three_buttons_panel": { + "file": "ui/popup_dialog.json", + "type": "panel", + "children": [ + "left", + "middle", + "right" + ] + }, + "destructive_three_buttons_panel/left": { + "file": "ui/popup_dialog.json", + "type": "button", + "extend": { + "name": "modal_left_button", + "namespace": "popup_dialog" + } + }, + "destructive_three_buttons_panel/middle": { + "file": "ui/popup_dialog.json", + "type": "button", + "extend": { + "name": "modal_middle_button", + "namespace": "popup_dialog" + } + }, + "destructive_three_buttons_panel/right": { + "file": "ui/popup_dialog.json", + "type": "button", + "extend": { + "name": "modal_rightcancel_button", + "namespace": "popup_dialog" + } + }, + "two_buttons_panel": { + "file": "ui/popup_dialog.json", + "type": "panel", + "children": [ + "left", + "right" + ] + }, + "two_buttons_panel/left": { + "file": "ui/popup_dialog.json", + "type": "button", + "extend": { + "name": "modal_left_button", + "namespace": "popup_dialog" + } + }, + "two_buttons_panel/right": { + "file": "ui/popup_dialog.json", + "type": "button", + "extend": { + "name": "modal_rightcancel_button", + "namespace": "popup_dialog" + } + }, + "destructive_two_buttons_panel": { + "file": "ui/popup_dialog.json", + "type": "panel", + "children": [ + "left", + "right" + ] + }, + "destructive_two_buttons_panel/left": { + "file": "ui/popup_dialog.json", + "type": "button", + "extend": { + "name": "modal_left_button", + "namespace": "popup_dialog" + } + }, + "destructive_two_buttons_panel/right": { + "file": "ui/popup_dialog.json", + "type": "button", + "extend": { + "name": "modal_rightcancel_button", + "namespace": "popup_dialog" + } + }, + "single_button_panel": { + "file": "ui/popup_dialog.json", + "type": "panel", + "children": [ + "left" + ] + }, + "single_button_panel/left": { + "file": "ui/popup_dialog.json", + "type": "button", + "extend": { + "name": "modal_middle_button", + "namespace": "popup_dialog" + } + }, + "single_button_checkbox_panel": { + "file": "ui/popup_dialog.json", + "type": "panel", + "children": [ + "left", + "checkbox" + ] + }, + "single_button_checkbox_panel/left": { + "file": "ui/popup_dialog.json", + "type": "button", + "extend": { + "name": "modal_left_button", + "namespace": "popup_dialog" + } + }, + "single_button_checkbox_panel/checkbox": { + "file": "ui/popup_dialog.json", + "type": "toggle", + "extend": { + "name": "modal_checkbox_button", + "namespace": "popup_dialog" + } + }, + "modal_dialog_base": { + "file": "ui/popup_dialog.json", + "type": "unknown" + }, + "modal_dialog_with_buttons": { + "file": "ui/popup_dialog.json", + "type": "panel", + "children": [ + "background_with_buttons", + "title", + "text", + "button_panel" + ] + }, + "modal_dialog_with_buttons/background_with_buttons": { + "file": "ui/popup_dialog.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "modal_dialog_with_buttons/title": { + "file": "ui/popup_dialog.json", + "type": "label", + "extend": { + "name": "modal_title_text", + "namespace": "popup_dialog" + } + }, + "modal_dialog_with_buttons/text": { + "file": "ui/popup_dialog.json", + "type": "panel", + "extend": { + "name": "modal_label_panel", + "namespace": "popup_dialog" + } + }, + "modal_dialog_with_buttons/button_panel": { + "file": "ui/popup_dialog.json", + "type": "unknown" + }, + "modal_input_panel": { + "file": "ui/popup_dialog.json", + "type": "input_panel", + "extend": { + "name": "input_panel", + "namespace": "common" + }, + "children": [ + "black_tint_image" + ] + }, + "modal_input_panel/black_tint_image": { + "file": "ui/popup_dialog.json", + "type": "image", + "extend": { + "name": "black_tint_image", + "namespace": "popup_dialog" + } + }, + "modal_dialog_popup": { + "file": "ui/popup_dialog.json", + "type": "panel", + "children": [ + "modal_input" + ] + }, + "modal_dialog_popup/modal_input": { + "file": "ui/popup_dialog.json", + "type": "input_panel", + "extend": { + "name": "modal_input_panel", + "namespace": "popup_dialog" + }, + "children": [ + "modal_bg_buttons", + "black_background" + ] + }, + "modal_dialog_popup/modal_input/modal_bg_buttons": { + "file": "ui/popup_dialog.json", + "type": "panel", + "extend": { + "name": "modal_dialog_with_buttons", + "namespace": "popup_dialog" + } + }, + "modal_dialog_popup/modal_input/black_background": { + "file": "ui/popup_dialog.json", + "type": "image" + }, + "hollow_2_bottom_button_panel": { + "file": "ui/popup_dialog.json", + "type": "panel", + "children": [ + "lower_button_controls" + ] + }, + "hollow_2_bottom_button_panel/lower_button_controls": { + "file": "ui/popup_dialog.json", + "type": "unknown" + }, + "form_fit_screen_with_title_and_close_and_bottom_buttons": { + "file": "ui/popup_dialog.json", + "type": "panel", + "extend": { + "name": "form_fit_screen_with_title_and_close", + "namespace": "popup_dialog" + } + }, + "form_fit_screen_with_title_and_close": { + "file": "ui/popup_dialog.json", + "type": "panel", + "children": [ + "panel_background", + "panel_content" + ] + }, + "form_fit_screen_with_title_and_close/panel_background": { + "file": "ui/popup_dialog.json", + "type": "unknown" + }, + "form_fit_screen_with_title_and_close/panel_content": { + "file": "ui/popup_dialog.json", + "type": "panel", + "children": [ + "header", + "close_button_panel", + "contents", + "lower_contents" + ] + }, + "form_fit_screen_with_title_and_close/panel_content/header": { + "file": "ui/popup_dialog.json", + "type": "panel", + "children": [ + "header_content" + ] + }, + "form_fit_screen_with_title_and_close/panel_content/header/header_content": { + "file": "ui/popup_dialog.json", + "type": "label" + }, + "form_fit_screen_with_title_and_close/panel_content/close_button_panel": { + "file": "ui/popup_dialog.json", + "type": "panel", + "children": [ + "close" + ] + }, + "form_fit_screen_with_title_and_close/panel_content/close_button_panel/close": { + "file": "ui/popup_dialog.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "common" + } + }, + "form_fit_screen_with_title_and_close/panel_content/contents": { + "file": "ui/popup_dialog.json", + "type": "panel", + "children": [ + "contents", + "content_padding" + ] + }, + "form_fit_screen_with_title_and_close/panel_content/contents/contents": { + "file": "ui/popup_dialog.json", + "type": "unknown" + }, + "form_fit_screen_with_title_and_close/panel_content/contents/content_padding": { + "file": "ui/popup_dialog.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "form_fit_screen_with_title_and_close/panel_content/lower_contents": { + "file": "ui/popup_dialog.json", + "type": "panel", + "children": [ + "contents" + ] + }, + "form_fit_screen_with_title_and_close/panel_content/lower_contents/contents": { + "file": "ui/popup_dialog.json", + "type": "unknown" + }, + "form_fit_modal_dialog_popup": { + "file": "ui/popup_dialog.json", + "type": "input_panel", + "extend": { + "name": "modal_input_panel", + "namespace": "popup_dialog" + }, + "children": [ + "background", + "content" + ] + }, + "form_fit_modal_dialog_popup/background": { + "file": "ui/popup_dialog.json", + "type": "unknown" + }, + "form_fit_modal_dialog_popup/content": { + "file": "ui/popup_dialog.json", + "type": "unknown" + }, + "progress_dialog_popup": { + "file": "ui/popup_dialog.json", + "type": "panel", + "extend": { + "name": "modal_dialog_popup", + "namespace": "popup_dialog" + }, + "children": [ + "background", + "title", + "progress_content", + "button" + ] + }, + "progress_dialog_popup/background": { + "file": "ui/popup_dialog.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "progress_dialog_popup/title": { + "file": "ui/popup_dialog.json", + "type": "label", + "extend": { + "name": "modal_title_text", + "namespace": "popup_dialog" + } + }, + "progress_dialog_popup/progress_content": { + "file": "ui/popup_dialog.json", + "type": "stack_panel", + "extend": { + "name": "progress_content", + "namespace": "popup_dialog" + } + }, + "progress_dialog_popup/button": { + "file": "ui/popup_dialog.json", + "type": "panel", + "extend": { + "name": "single_button_panel", + "namespace": "popup_dialog" + } + }, + "progress_content": { + "file": "ui/popup_dialog.json", + "type": "stack_panel", + "children": [ + "progress_titles", + "progress_bar" + ] + }, + "progress_content/progress_titles": { + "file": "ui/popup_dialog.json", + "type": "panel", + "children": [ + "current_progress_label", + "total_progress_label" + ] + }, + "progress_content/progress_titles/current_progress_label": { + "file": "ui/popup_dialog.json", + "type": "label", + "extend": { + "name": "current_progress_label", + "namespace": "popup_dialog" + } + }, + "progress_content/progress_titles/total_progress_label": { + "file": "ui/popup_dialog.json", + "type": "label", + "extend": { + "name": "total_progress_label", + "namespace": "popup_dialog" + } + }, + "progress_content/progress_bar": { + "file": "ui/popup_dialog.json", + "type": "panel", + "extend": { + "name": "progress_bar_icon", + "namespace": "popup_dialog" + } + }, + "progress_label": { + "file": "ui/popup_dialog.json", + "type": "label" + }, + "current_progress_label": { + "file": "ui/popup_dialog.json", + "type": "label", + "extend": { + "name": "progress_label", + "namespace": "popup_dialog" + } + }, + "total_progress_label": { + "file": "ui/popup_dialog.json", + "type": "label", + "extend": { + "name": "progress_label", + "namespace": "popup_dialog" + } + }, + "progress_bar_icon": { + "file": "ui/popup_dialog.json", + "type": "panel", + "children": [ + "full_progress_bar_icon", + "empty_progress_bar_icon", + "progress_bar_nub" + ] + }, + "progress_bar_icon/full_progress_bar_icon": { + "file": "ui/popup_dialog.json", + "type": "image", + "extend": { + "name": "full_progress_bar_icon", + "namespace": "popup_dialog" + } + }, + "progress_bar_icon/empty_progress_bar_icon": { + "file": "ui/popup_dialog.json", + "type": "image", + "extend": { + "name": "empty_progress_bar_icon", + "namespace": "popup_dialog" + } + }, + "progress_bar_icon/progress_bar_nub": { + "file": "ui/popup_dialog.json", + "type": "image", + "extend": { + "name": "progress_bar_nub", + "namespace": "popup_dialog" + } + }, + "empty_progress_bar_icon": { + "file": "ui/popup_dialog.json", + "type": "image" + }, + "full_progress_bar_icon": { + "file": "ui/popup_dialog.json", + "type": "image" + }, + "progress_bar_nub": { + "file": "ui/popup_dialog.json", + "type": "image" + } + }, + "portfolio": { + "screenshot": { + "file": "ui/portfolio_screen.json", + "type": "image" + }, + "screenshot_frame": { + "file": "ui/portfolio_screen.json", + "type": "image" + }, + "trash_default": { + "file": "ui/portfolio_screen.json", + "type": "image" + }, + "trash_hover": { + "file": "ui/portfolio_screen.json", + "type": "image" + }, + "trash_pressed": { + "file": "ui/portfolio_screen.json", + "type": "image" + }, + "photo_trash_button_left": { + "file": "ui/portfolio_screen.json", + "type": "button", + "extend": { + "name": "photo_trash_button", + "namespace": "edu_common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "photo_trash_button_left/default": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "trash_default", + "namespace": "portfolio" + } + }, + "photo_trash_button_left/hover": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "trash_hover", + "namespace": "portfolio" + } + }, + "photo_trash_button_left/pressed": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "trash_pressed", + "namespace": "portfolio" + } + }, + "photo_trash_button_right": { + "file": "ui/portfolio_screen.json", + "type": "button", + "extend": { + "name": "photo_trash_button", + "namespace": "edu_common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "photo_trash_button_right/default": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "trash_default", + "namespace": "portfolio" + } + }, + "photo_trash_button_right/hover": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "trash_hover", + "namespace": "portfolio" + } + }, + "photo_trash_button_right/pressed": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "trash_pressed", + "namespace": "portfolio" + } + }, + "photo_number": { + "file": "ui/portfolio_screen.json", + "type": "label" + }, + "photo_number_left": { + "file": "ui/portfolio_screen.json", + "type": "label", + "extend": { + "name": "photo_number", + "namespace": "portfolio" + } + }, + "photo_number_right": { + "file": "ui/portfolio_screen.json", + "type": "label", + "extend": { + "name": "photo_number", + "namespace": "portfolio" + } + }, + "photo_corner_bl": { + "file": "ui/portfolio_screen.json", + "type": "image" + }, + "photo_corner_br": { + "file": "ui/portfolio_screen.json", + "type": "image" + }, + "photo_corner_tr": { + "file": "ui/portfolio_screen.json", + "type": "image" + }, + "photo_corner_tl": { + "file": "ui/portfolio_screen.json", + "type": "image" + }, + "page_photo": { + "file": "ui/portfolio_screen.json", + "type": "panel", + "children": [ + "screenshot", + "screenshot_frame", + "photo_corner_bl", + "photo_corner_br", + "photo_corner_tl", + "photo_corner_tr" + ] + }, + "page_photo/screenshot": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "screenshot", + "namespace": "portfolio" + } + }, + "page_photo/screenshot_frame": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "screenshot_frame", + "namespace": "portfolio" + } + }, + "page_photo/photo_corner_bl": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "photo_corner_bl", + "namespace": "portfolio" + } + }, + "page_photo/photo_corner_br": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "photo_corner_br", + "namespace": "portfolio" + } + }, + "page_photo/photo_corner_tl": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "photo_corner_tl", + "namespace": "portfolio" + } + }, + "page_photo/photo_corner_tr": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "photo_corner_tr", + "namespace": "portfolio" + } + }, + "pick_item": { + "file": "ui/portfolio_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "photo", + "button" + ] + }, + "pick_item/photo": { + "file": "ui/portfolio_screen.json", + "type": "panel", + "extend": { + "name": "page_photo", + "namespace": "portfolio" + } + }, + "pick_item/button": { + "file": "ui/portfolio_screen.json", + "type": "button" + }, + "header": { + "file": "ui/portfolio_screen.json", + "type": "label" + }, + "screenshot_grid": { + "file": "ui/portfolio_screen.json", + "type": "stack_panel", + "extend": { + "name": "stack_panel_grid", + "namespace": "edu_common" + } + }, + "text_centering_panel": { + "file": "ui/portfolio_screen.json", + "type": "panel", + "children": [ + "header" + ] + }, + "text_centering_panel/header": { + "file": "ui/portfolio_screen.json", + "type": "label", + "extend": { + "name": "header", + "namespace": "portfolio" + } + }, + "pick_scrolling_content": { + "file": "ui/portfolio_screen.json", + "type": "stack_panel", + "children": [ + "header", + "portfolio_grid" + ] + }, + "pick_scrolling_content/header": { + "file": "ui/portfolio_screen.json", + "type": "panel", + "extend": { + "name": "text_centering_panel", + "namespace": "portfolio" + } + }, + "pick_scrolling_content/portfolio_grid": { + "file": "ui/portfolio_screen.json", + "type": "stack_panel", + "extend": { + "name": "screenshot_grid", + "namespace": "portfolio" + } + }, + "no_pick_photos_alert_label": { + "file": "ui/portfolio_screen.json", + "type": "label" + }, + "pick_panel": { + "file": "ui/portfolio_screen.json", + "type": "image", + "children": [ + "scroll", + "close_button", + "no_pick_photos_alert_label" + ] + }, + "pick_panel/scroll": { + "file": "ui/portfolio_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "pick_panel/close_button": { + "file": "ui/portfolio_screen.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "portfolio" + } + }, + "pick_panel/no_pick_photos_alert_label": { + "file": "ui/portfolio_screen.json", + "type": "label", + "extend": { + "name": "no_pick_photos_alert_label", + "namespace": "portfolio" + } + }, + "text_edit_box_default_indent": { + "file": "ui/portfolio_screen.json", + "type": "panel" + }, + "text_edit_box_hover_indent": { + "file": "ui/portfolio_screen.json", + "type": "panel", + "extend": { + "name": "text_edit_box_default_indent", + "namespace": "portfolio" + }, + "children": [ + "focus_border_white" + ] + }, + "text_edit_box_hover_indent/focus_border_white": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "text_edit_control": { + "file": "ui/portfolio_screen.json", + "type": "edit_box", + "extend": { + "name": "multiline_text_edit_box", + "namespace": "common" + }, + "children": [ + "clipper_panel", + "locked", + "default", + "hover", + "pressed" + ] + }, + "text_edit_control/clipper_panel": { + "file": "ui/portfolio_screen.json", + "type": "panel", + "children": [ + "display_text", + "place_holder_control" + ] + }, + "text_edit_control/clipper_panel/display_text": { + "file": "ui/portfolio_screen.json", + "type": "label", + "extend": { + "name": "text_edit_box_label", + "namespace": "common" + } + }, + "text_edit_control/clipper_panel/place_holder_control": { + "file": "ui/portfolio_screen.json", + "type": "unknown" + }, + "text_edit_control/locked": { + "file": "ui/portfolio_screen.json", + "type": "panel", + "children": [ + "edit_box_indent" + ] + }, + "text_edit_control/locked/edit_box_indent": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "edit_box_indent", + "namespace": "common" + } + }, + "text_edit_control/default": { + "file": "ui/portfolio_screen.json", + "type": "panel", + "extend": { + "name": "text_edit_box_default_indent", + "namespace": "portfolio" + } + }, + "text_edit_control/hover": { + "file": "ui/portfolio_screen.json", + "type": "panel", + "extend": { + "name": "text_edit_box_hover_indent", + "namespace": "portfolio" + } + }, + "text_edit_control/pressed": { + "file": "ui/portfolio_screen.json", + "type": "panel", + "extend": { + "name": "text_edit_box_hover_indent", + "namespace": "portfolio" + } + }, + "photo_item": { + "file": "ui/portfolio_screen.json", + "type": "panel", + "children": [ + "screenshot", + "screenshot_frame", + "text_edit_control", + "photo_corner_bl", + "photo_corner_br", + "photo_corner_tl", + "photo_corner_tr" + ] + }, + "photo_item/screenshot": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "screenshot", + "namespace": "portfolio" + } + }, + "photo_item/screenshot_frame": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "screenshot_frame", + "namespace": "portfolio" + } + }, + "photo_item/text_edit_control": { + "file": "ui/portfolio_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_control", + "namespace": "portfolio" + } + }, + "photo_item/photo_corner_bl": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "photo_corner_bl", + "namespace": "portfolio" + } + }, + "photo_item/photo_corner_br": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "photo_corner_br", + "namespace": "portfolio" + } + }, + "photo_item/photo_corner_tl": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "photo_corner_tl", + "namespace": "portfolio" + } + }, + "photo_item/photo_corner_tr": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "photo_corner_tr", + "namespace": "portfolio" + } + }, + "photo_grid_item": { + "file": "ui/portfolio_screen.json", + "type": "panel", + "children": [ + "photo_item" + ] + }, + "photo_grid_item/photo_item": { + "file": "ui/portfolio_screen.json", + "type": "panel", + "extend": { + "name": "photo_item", + "namespace": "portfolio" + } + }, + "photo_list_grid": { + "file": "ui/portfolio_screen.json", + "type": "grid" + }, + "prev_button_default": { + "file": "ui/portfolio_screen.json", + "type": "image" + }, + "prev_button_hover": { + "file": "ui/portfolio_screen.json", + "type": "image" + }, + "prev_button_pressed": { + "file": "ui/portfolio_screen.json", + "type": "image" + }, + "photo_page_prev_button": { + "file": "ui/portfolio_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "photo_page_prev_button/default": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "prev_button_default", + "namespace": "portfolio" + } + }, + "photo_page_prev_button/hover": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "prev_button_hover", + "namespace": "portfolio" + } + }, + "photo_page_prev_button/pressed": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "prev_button_pressed", + "namespace": "portfolio" + } + }, + "next_button_default": { + "file": "ui/portfolio_screen.json", + "type": "image" + }, + "next_button_hover": { + "file": "ui/portfolio_screen.json", + "type": "image" + }, + "next_button_pressed": { + "file": "ui/portfolio_screen.json", + "type": "image" + }, + "photo_page_next_button": { + "file": "ui/portfolio_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "photo_page_next_button/default": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "next_button_default", + "namespace": "portfolio" + } + }, + "photo_page_next_button/hover": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "next_button_hover", + "namespace": "portfolio" + } + }, + "photo_page_next_button/pressed": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "next_button_pressed", + "namespace": "portfolio" + } + }, + "convert_button_default": { + "file": "ui/portfolio_screen.json", + "type": "image" + }, + "convert_button_hover": { + "file": "ui/portfolio_screen.json", + "type": "image" + }, + "convert_button_pressed": { + "file": "ui/portfolio_screen.json", + "type": "image" + }, + "photo_convert_left_button": { + "file": "ui/portfolio_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "photo_convert_left_button/default": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "convert_button_default", + "namespace": "portfolio" + } + }, + "photo_convert_left_button/hover": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "convert_button_hover", + "namespace": "portfolio" + } + }, + "photo_convert_left_button/pressed": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "convert_button_pressed", + "namespace": "portfolio" + } + }, + "photo_convert_right_button": { + "file": "ui/portfolio_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "photo_convert_right_button/default": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "convert_button_default", + "namespace": "portfolio" + } + }, + "photo_convert_right_button/hover": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "convert_button_hover", + "namespace": "portfolio" + } + }, + "photo_convert_right_button/pressed": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "convert_button_pressed", + "namespace": "portfolio" + } + }, + "bottom_button_panel": { + "file": "ui/portfolio_screen.json", + "type": "panel", + "children": [ + "export_button", + "im_content_button", + "add_photo_button" + ] + }, + "bottom_button_panel/export_button": { + "file": "ui/portfolio_screen.json", + "type": "button", + "extend": { + "name": "export_button", + "namespace": "portfolio" + } + }, + "bottom_button_panel/im_content_button": { + "file": "ui/portfolio_screen.json", + "type": "button", + "extend": { + "name": "im_content_button", + "namespace": "portfolio" + } + }, + "bottom_button_panel/add_photo_button": { + "file": "ui/portfolio_screen.json", + "type": "button", + "extend": { + "name": "add_photo_button", + "namespace": "portfolio" + } + }, + "im_content_button": { + "file": "ui/portfolio_screen.json", + "type": "button", + "extend": { + "name": "reader_button", + "namespace": "im_reader" + } + }, + "export_button": { + "file": "ui/portfolio_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "add_photo_button": { + "file": "ui/portfolio_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "book_binding": { + "file": "ui/portfolio_screen.json", + "type": "image" + }, + "book_spine": { + "file": "ui/portfolio_screen.json", + "type": "image" + }, + "book_background": { + "file": "ui/portfolio_screen.json", + "type": "image", + "children": [ + "book_binding", + "top_spine", + "bottom_spine" + ] + }, + "book_background/book_binding": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "book_binding", + "namespace": "portfolio" + } + }, + "book_background/top_spine": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "book_spine", + "namespace": "portfolio" + } + }, + "book_background/bottom_spine": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "book_spine", + "namespace": "portfolio" + } + }, + "header_panel": { + "file": "ui/portfolio_screen.json", + "type": "panel", + "children": [ + "header_background" + ] + }, + "header_panel/header_background": { + "file": "ui/portfolio_screen.json", + "type": "image" + }, + "close_button_default": { + "file": "ui/portfolio_screen.json", + "type": "image" + }, + "close_button_hover": { + "file": "ui/portfolio_screen.json", + "type": "image" + }, + "close_button_pressed": { + "file": "ui/portfolio_screen.json", + "type": "image" + }, + "close_button": { + "file": "ui/portfolio_screen.json", + "type": "button", + "children": [ + "default", + "hover", + "pressed" + ] + }, + "close_button/default": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "close_button_default", + "namespace": "portfolio" + } + }, + "close_button/hover": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "close_button_hover", + "namespace": "portfolio" + } + }, + "close_button/pressed": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "close_button_pressed", + "namespace": "portfolio" + } + }, + "no_photos_alert_label": { + "file": "ui/portfolio_screen.json", + "type": "label" + }, + "book_and_buttons_panel": { + "file": "ui/portfolio_screen.json", + "type": "panel", + "children": [ + "book_panel", + "bottom_button_panel" + ] + }, + "book_and_buttons_panel/book_panel": { + "file": "ui/portfolio_screen.json", + "type": "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": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "book_background", + "namespace": "portfolio" + } + }, + "book_and_buttons_panel/book_panel/close_button": { + "file": "ui/portfolio_screen.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "portfolio" + } + }, + "book_and_buttons_panel/book_panel/photo_list_grid": { + "file": "ui/portfolio_screen.json", + "type": "grid", + "extend": { + "name": "photo_list_grid", + "namespace": "portfolio" + } + }, + "book_and_buttons_panel/book_panel/photo_number_left": { + "file": "ui/portfolio_screen.json", + "type": "label", + "extend": { + "name": "photo_number_left", + "namespace": "portfolio" + } + }, + "book_and_buttons_panel/book_panel/photo_number_right": { + "file": "ui/portfolio_screen.json", + "type": "label", + "extend": { + "name": "photo_number_right", + "namespace": "portfolio" + } + }, + "book_and_buttons_panel/book_panel/photo_trash_button_left": { + "file": "ui/portfolio_screen.json", + "type": "button", + "extend": { + "name": "photo_trash_button_left", + "namespace": "portfolio" + } + }, + "book_and_buttons_panel/book_panel/photo_trash_button_right": { + "file": "ui/portfolio_screen.json", + "type": "button", + "extend": { + "name": "photo_trash_button_right", + "namespace": "portfolio" + } + }, + "book_and_buttons_panel/book_panel/photo_page_prev_button": { + "file": "ui/portfolio_screen.json", + "type": "button", + "extend": { + "name": "photo_page_prev_button", + "namespace": "portfolio" + } + }, + "book_and_buttons_panel/book_panel/photo_page_next_button": { + "file": "ui/portfolio_screen.json", + "type": "button", + "extend": { + "name": "photo_page_next_button", + "namespace": "portfolio" + } + }, + "book_and_buttons_panel/book_panel/photo_convert_left_button": { + "file": "ui/portfolio_screen.json", + "type": "button", + "extend": { + "name": "photo_convert_left_button", + "namespace": "portfolio" + } + }, + "book_and_buttons_panel/book_panel/photo_convert_right_button": { + "file": "ui/portfolio_screen.json", + "type": "button", + "extend": { + "name": "photo_convert_right_button", + "namespace": "portfolio" + } + }, + "book_and_buttons_panel/book_panel/no_photos_alert_label": { + "file": "ui/portfolio_screen.json", + "type": "label", + "extend": { + "name": "no_photos_alert_label", + "namespace": "portfolio" + } + }, + "book_and_buttons_panel/bottom_button_panel": { + "file": "ui/portfolio_screen.json", + "type": "panel", + "extend": { + "name": "bottom_button_panel", + "namespace": "portfolio" + } + }, + "root_panel": { + "file": "ui/portfolio_screen.json", + "type": "panel" + }, + "portfolio_screen": { + "file": "ui/portfolio_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "portfolio_screen_content": { + "file": "ui/portfolio_screen.json", + "type": "panel", + "children": [ + "root_panel" + ] + }, + "portfolio_screen_content/root_panel": { + "file": "ui/portfolio_screen.json", + "type": "panel", + "extend": { + "name": "root_panel", + "namespace": "portfolio" + }, + "children": [ + "book_and_buttons_panel", + "pick_panel" + ] + }, + "portfolio_screen_content/root_panel/book_and_buttons_panel": { + "file": "ui/portfolio_screen.json", + "type": "panel", + "extend": { + "name": "book_and_buttons_panel", + "namespace": "portfolio" + } + }, + "portfolio_screen_content/root_panel/pick_panel": { + "file": "ui/portfolio_screen.json", + "type": "image", + "extend": { + "name": "pick_panel", + "namespace": "portfolio" + } + } + }, + "progress": { + "popup_dialog_base": { + "file": "ui/progress_screen.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog", + "namespace": "popup_dialog" + }, + "children": [ + "background", + "scrolling_panel", + "totalSelected", + "totalSelectedSize", + "left", + "right" + ] + }, + "popup_dialog_base/background": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "popup_dialog_bg", + "namespace": "popup_dialog" + } + }, + "popup_dialog_base/scrolling_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "popup_dialog_base/totalSelected": { + "file": "ui/progress_screen.json", + "type": "label" + }, + "popup_dialog_base/totalSelectedSize": { + "file": "ui/progress_screen.json", + "type": "label" + }, + "popup_dialog_base/left": { + "file": "ui/progress_screen.json", + "type": "button", + "extend": { + "name": "popup_dialog_left_button", + "namespace": "popup_dialog" + } + }, + "popup_dialog_base/right": { + "file": "ui/progress_screen.json", + "type": "button", + "extend": { + "name": "popup_dialog_right_button", + "namespace": "popup_dialog" + } + }, + "checkbox_visual": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "control" + ] + }, + "checkbox_visual/control": { + "file": "ui/progress_screen.json", + "type": "label" + }, + "checkbox_visuals_unchecked": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "checkbox_visual", + "namespace": "progress" + } + }, + "checkbox_visuals_checked": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "checkbox_visual", + "namespace": "progress" + } + }, + "checkbox_visuals_unchecked_locked": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "checkbox_visual", + "namespace": "progress" + } + }, + "checkbox_visuals_checked_locked": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "checkbox_visual", + "namespace": "progress" + } + }, + "checkbox_visuals_unchecked_hover": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "checkbox_visual", + "namespace": "progress" + } + }, + "checkbox_visuals_checked_hover": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "checkbox_visual", + "namespace": "progress" + } + }, + "checkbox_with_label_core": { + "file": "ui/progress_screen.json", + "type": "toggle", + "extend": { + "name": "checkbox", + "namespace": "common" + } + }, + "checkbox_with_label": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "checkbox_with_label_core" + ] + }, + "checkbox_with_label/checkbox_with_label_core": { + "file": "ui/progress_screen.json", + "type": "toggle", + "extend": { + "name": "checkbox_with_label_core", + "namespace": "progress" + } + }, + "resource_pack_grid_item": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "checkbox_with_label", + "namespace": "progress" + } + }, + "resource_pack_section": { + "file": "ui/progress_screen.json", + "type": "stack_panel", + "children": [ + "required_resource_pack_list_grid", + "optional_resource_pack_list_grid" + ] + }, + "resource_pack_section/required_resource_pack_list_grid": { + "file": "ui/progress_screen.json", + "type": "grid" + }, + "resource_pack_section/optional_resource_pack_list_grid": { + "file": "ui/progress_screen.json", + "type": "grid" + }, + "simple_popup_dialog_base": { + "file": "ui/progress_screen.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog", + "namespace": "popup_dialog" + }, + "children": [ + "dialog_background_hollow_3" + ] + }, + "simple_popup_dialog_base/dialog_background_hollow_3": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_3", + "namespace": "common" + }, + "children": [ + "control" + ] + }, + "simple_popup_dialog_base/dialog_background_hollow_3/control": { + "file": "ui/progress_screen.json", + "type": "image", + "children": [ + "content_panel" + ] + }, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel": { + "file": "ui/progress_screen.json", + "type": "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": { + "file": "ui/progress_screen.json", + "type": "panel" + }, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/title": { + "file": "ui/progress_screen.json", + "type": "label" + }, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_1": { + "file": "ui/progress_screen.json", + "type": "panel" + }, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description": { + "file": "ui/progress_screen.json", + "type": "label" + }, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_2": { + "file": "ui/progress_screen.json", + "type": "panel" + }, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description2": { + "file": "ui/progress_screen.json", + "type": "label" + }, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_3": { + "file": "ui/progress_screen.json", + "type": "panel" + }, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/top_optional_button": { + "file": "ui/progress_screen.json", + "type": "button", + "extend": { + "name": "popup_dialog_button_with_binding", + "namespace": "popup_dialog" + } + }, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_4": { + "file": "ui/progress_screen.json", + "type": "panel" + }, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/middle_button": { + "file": "ui/progress_screen.json", + "type": "button", + "extend": { + "name": "popup_dialog_button_with_binding", + "namespace": "popup_dialog" + } + }, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_5": { + "file": "ui/progress_screen.json", + "type": "panel" + }, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/bottom_button": { + "file": "ui/progress_screen.json", + "type": "button", + "extend": { + "name": "popup_dialog_button", + "namespace": "popup_dialog" + } + }, + "resource_pack_download_popup_base": { + "file": "ui/progress_screen.json", + "type": "input_panel", + "extend": { + "name": "simple_popup_dialog_base", + "namespace": "progress" + } + }, + "resource_pack_download_server_required": { + "file": "ui/progress_screen.json", + "type": "input_panel", + "extend": { + "name": "resource_pack_download_popup_base", + "namespace": "progress" + } + }, + "resource_pack_download_optional_and_required": { + "file": "ui/progress_screen.json", + "type": "input_panel", + "extend": { + "name": "resource_pack_download_popup_base", + "namespace": "progress" + } + }, + "resource_pack_download_optional": { + "file": "ui/progress_screen.json", + "type": "input_panel", + "extend": { + "name": "resource_pack_download_popup_base", + "namespace": "progress" + } + }, + "resource_pack_download_required": { + "file": "ui/progress_screen.json", + "type": "input_panel", + "extend": { + "name": "resource_pack_download_popup_base", + "namespace": "progress" + } + }, + "normal_stroke_button": { + "file": "ui/progress_screen.json", + "type": "image" + }, + "progress_screen_text": { + "file": "ui/progress_screen.json", + "type": "label" + }, + "progress_title_text": { + "file": "ui/progress_screen.json", + "type": "label", + "extend": { + "name": "progress_screen_text", + "namespace": "progress" + } + }, + "progress_bar_text": { + "file": "ui/progress_screen.json", + "type": "label", + "extend": { + "name": "progress_screen_text", + "namespace": "progress" + } + }, + "code_text": { + "file": "ui/progress_screen.json", + "type": "label", + "extend": { + "name": "progress_screen_text", + "namespace": "progress" + } + }, + "code_number": { + "file": "ui/progress_screen.json", + "type": "label", + "extend": { + "name": "progress_screen_text", + "namespace": "progress" + } + }, + "progress_loading_bars": { + "file": "ui/progress_screen.json", + "type": "image" + }, + "progress_loading_spinner": { + "file": "ui/progress_screen.json", + "type": "image" + }, + "fancy_progress_loading_bars": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "full_progress_bar_icon", + "empty_progress_bar_icon", + "progress_bar_nub" + ] + }, + "fancy_progress_loading_bars/full_progress_bar_icon": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "full_progress_bar_icon_base", + "namespace": "achievement" + } + }, + "fancy_progress_loading_bars/empty_progress_bar_icon": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "empty_progress_bar_icon", + "namespace": "achievement" + } + }, + "fancy_progress_loading_bars/progress_bar_nub": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "progress_bar_nub", + "namespace": "progress" + } + }, + "progress_bar": { + "file": "ui/progress_screen.json", + "type": "custom" + }, + "progress_bar_nub": { + "file": "ui/progress_screen.json", + "type": "image" + }, + "thick_progress_bar_icon_base": { + "file": "ui/progress_screen.json", + "type": "image" + }, + "thick_progress_bar_icon_empty": { + "file": "ui/progress_screen.json", + "type": "image" + }, + "thick_progress_bar": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "full_progress_bar_icon", + "empty_progress_bar_icon" + ] + }, + "thick_progress_bar/full_progress_bar_icon": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "thick_progress_bar_icon_base", + "namespace": "progress" + } + }, + "thick_progress_bar/empty_progress_bar_icon": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "thick_progress_bar_icon_empty", + "namespace": "progress" + } + }, + "edu_cloud_upload_progress_bar": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "waveform_loading_bar", + "determinate_loading_bar" + ] + }, + "edu_cloud_upload_progress_bar/waveform_loading_bar": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "progress" + } + }, + "edu_cloud_upload_progress_bar/determinate_loading_bar": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "fancy_progress_loading_bars", + "namespace": "progress" + } + }, + "cancel_button": { + "file": "ui/progress_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "retry_button": { + "file": "ui/progress_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "abort_button": { + "file": "ui/progress_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "ok_button": { + "file": "ui/progress_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "title_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "progress_title_text", + "progress_bar_text", + "progress_bar" + ] + }, + "title_panel/progress_title_text": { + "file": "ui/progress_screen.json", + "type": "label", + "extend": { + "name": "progress_title_text", + "namespace": "progress" + } + }, + "title_panel/progress_bar_text": { + "file": "ui/progress_screen.json", + "type": "label", + "extend": { + "name": "progress_bar_text", + "namespace": "progress" + } + }, + "title_panel/progress_bar": { + "file": "ui/progress_screen.json", + "type": "custom", + "extend": { + "name": "progress_bar", + "namespace": "progress" + } + }, + "button_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "cancel_button" + ] + }, + "button_panel/cancel_button": { + "file": "ui/progress_screen.json", + "type": "button", + "extend": { + "name": "cancel_button", + "namespace": "progress" + } + }, + "modal_button_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "button_panel", + "namespace": "progress" + }, + "children": [ + "cancel_button" + ] + }, + "modal_button_panel/cancel_button": { + "file": "ui/progress_screen.json", + "type": "button", + "extend": { + "name": "cancel_button", + "namespace": "progress" + } + }, + "modal_button_panel_with_retry": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "modal_button_panel", + "namespace": "progress" + }, + "children": [ + "abort_button", + "cancel_button", + "retry_button" + ] + }, + "modal_button_panel_with_retry/abort_button": { + "file": "ui/progress_screen.json", + "type": "button", + "extend": { + "name": "abort_button", + "namespace": "progress" + } + }, + "modal_button_panel_with_retry/cancel_button": { + "file": "ui/progress_screen.json", + "type": "button", + "extend": { + "name": "cancel_button", + "namespace": "progress" + } + }, + "modal_button_panel_with_retry/retry_button": { + "file": "ui/progress_screen.json", + "type": "button", + "extend": { + "name": "retry_button", + "namespace": "progress" + } + }, + "modal_ok_button_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "button_panel", + "namespace": "progress" + }, + "children": [ + "ok_button" + ] + }, + "modal_ok_button_panel/ok_button": { + "file": "ui/progress_screen.json", + "type": "button", + "extend": { + "name": "ok_button", + "namespace": "progress" + } + }, + "modal_ok_button_panel_with_retry": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "button_panel", + "namespace": "progress" + }, + "children": [ + "left_ok_button", + "center_cancel_button", + "center_ok_button", + "right_retry_button" + ] + }, + "modal_ok_button_panel_with_retry/left_ok_button": { + "file": "ui/progress_screen.json", + "type": "button", + "extend": { + "name": "abort_button", + "namespace": "progress" + } + }, + "modal_ok_button_panel_with_retry/center_cancel_button": { + "file": "ui/progress_screen.json", + "type": "button", + "extend": { + "name": "cancel_button", + "namespace": "progress" + } + }, + "modal_ok_button_panel_with_retry/center_ok_button": { + "file": "ui/progress_screen.json", + "type": "button", + "extend": { + "name": "ok_button", + "namespace": "progress" + } + }, + "modal_ok_button_panel_with_retry/right_retry_button": { + "file": "ui/progress_screen.json", + "type": "button", + "extend": { + "name": "retry_button", + "namespace": "progress" + } + }, + "gamepad_helpers": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "gamepad_helper_a" + ] + }, + "gamepad_helpers/gamepad_helper_a": { + "file": "ui/progress_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_a", + "namespace": "common" + } + }, + "world_image": { + "file": "ui/progress_screen.json", + "type": "image" + }, + "cloud_image": { + "file": "ui/progress_screen.json", + "type": "image" + }, + "server_image": { + "file": "ui/progress_screen.json", + "type": "image" + }, + "edu_cloud_upload_image": { + "file": "ui/progress_screen.json", + "type": "stack_panel", + "children": [ + "world_image_wrapper", + "arrow_image_wrapper", + "cloud_image_wrapper" + ] + }, + "edu_cloud_upload_image/world_image_wrapper": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "fetch_world_image" + ] + }, + "edu_cloud_upload_image/world_image_wrapper/fetch_world_image": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "world_image", + "namespace": "progress" + } + }, + "edu_cloud_upload_image/arrow_image_wrapper": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "arrow_image" + ] + }, + "edu_cloud_upload_image/arrow_image_wrapper/arrow_image": { + "file": "ui/progress_screen.json", + "type": "image" + }, + "edu_cloud_upload_image/cloud_image_wrapper": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "upload_cloud_image" + ] + }, + "edu_cloud_upload_image/cloud_image_wrapper/upload_cloud_image": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "cloud_image", + "namespace": "progress" + } + }, + "edu_cloud_fetch_image": { + "file": "ui/progress_screen.json", + "type": "stack_panel", + "children": [ + "cloud_image_wrapper", + "spyglass_image_wrapper", + "world_image_wrapper" + ] + }, + "edu_cloud_fetch_image/cloud_image_wrapper": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "fetch_cloud_image" + ] + }, + "edu_cloud_fetch_image/cloud_image_wrapper/fetch_cloud_image": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "cloud_image", + "namespace": "progress" + } + }, + "edu_cloud_fetch_image/spyglass_image_wrapper": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "spyglass_image" + ] + }, + "edu_cloud_fetch_image/spyglass_image_wrapper/spyglass_image": { + "file": "ui/progress_screen.json", + "type": "image" + }, + "edu_cloud_fetch_image/world_image_wrapper": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "fetch_world_image" + ] + }, + "edu_cloud_fetch_image/world_image_wrapper/fetch_world_image": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "world_image", + "namespace": "progress" + } + }, + "edu_cloud_download_image": { + "file": "ui/progress_screen.json", + "type": "stack_panel", + "children": [ + "cloud_image_wrapper", + "arrow_image_wrapper", + "world_image_wrapper" + ] + }, + "edu_cloud_download_image/cloud_image_wrapper": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "download_cloud_image" + ] + }, + "edu_cloud_download_image/cloud_image_wrapper/download_cloud_image": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "cloud_image", + "namespace": "progress" + } + }, + "edu_cloud_download_image/arrow_image_wrapper": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "arrow_image" + ] + }, + "edu_cloud_download_image/arrow_image_wrapper/arrow_image": { + "file": "ui/progress_screen.json", + "type": "image" + }, + "edu_cloud_download_image/world_image_wrapper": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "download_world_image" + ] + }, + "edu_cloud_download_image/world_image_wrapper/download_world_image": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "world_image", + "namespace": "progress" + } + }, + "edu_server_fetch_image": { + "file": "ui/progress_screen.json", + "type": "stack_panel", + "children": [ + "server_image_wrapper_left", + "spyglass_image_wrapper", + "server_image_wrapper_right" + ] + }, + "edu_server_fetch_image/server_image_wrapper_left": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "server_image" + ] + }, + "edu_server_fetch_image/server_image_wrapper_left/server_image": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "server_image", + "namespace": "progress" + } + }, + "edu_server_fetch_image/spyglass_image_wrapper": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "spyglass_image" + ] + }, + "edu_server_fetch_image/spyglass_image_wrapper/spyglass_image": { + "file": "ui/progress_screen.json", + "type": "image" + }, + "edu_server_fetch_image/server_image_wrapper_right": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "server_image" + ] + }, + "edu_server_fetch_image/server_image_wrapper_right/server_image": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "server_image", + "namespace": "progress" + } + }, + "modal_progress_panel_no_cancel": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "common_panel", + "content" + ] + }, + "modal_progress_panel_no_cancel/common_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "modal_progress_panel_no_cancel/content": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "title_panel", + "progress_loading_bars" + ] + }, + "modal_progress_panel_no_cancel/content/title_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "title_panel", + "namespace": "progress" + } + }, + "modal_progress_panel_no_cancel/content/progress_loading_bars": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "progress" + } + }, + "modal_progress_panel_with_cancel": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "common_panel", + "content", + "modal_button_panel" + ] + }, + "modal_progress_panel_with_cancel/common_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "modal_progress_panel_with_cancel/content": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "title_panel", + "progress_loading_bars" + ] + }, + "modal_progress_panel_with_cancel/content/title_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "title_panel", + "namespace": "progress" + } + }, + "modal_progress_panel_with_cancel/content/progress_loading_bars": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "progress" + } + }, + "modal_progress_panel_with_cancel/modal_button_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "modal_button_panel", + "namespace": "progress" + } + }, + "progress_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "progress_loading_bars", + "title_panel", + "button_panel" + ] + }, + "progress_panel/progress_loading_bars": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "progress" + } + }, + "progress_panel/title_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "title_panel", + "namespace": "progress" + } + }, + "progress_panel/button_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "button_panel", + "namespace": "progress" + } + }, + "modal_progress_screen": { + "file": "ui/progress_screen.json", + "type": "screen", + "extend": { + "name": "progress_screen", + "namespace": "progress" + } + }, + "delete_progress_screen": { + "file": "ui/progress_screen.json", + "type": "screen", + "extend": { + "name": "modal_progress_screen", + "namespace": "progress" + } + }, + "realms_loading_background": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "realms_loading_screen_background", + "namespace": "progress" + }, + "children": [ + "solid_blue" + ] + }, + "realms_loading_background/solid_blue": { + "file": "ui/progress_screen.json", + "type": "image", + "children": [ + "gradient" + ] + }, + "realms_loading_background/solid_blue/gradient": { + "file": "ui/progress_screen.json", + "type": "image" + }, + "realms_stories_loading_progress_screen": { + "file": "ui/progress_screen.json", + "type": "screen", + "extend": { + "name": "progress_screen", + "namespace": "progress" + } + }, + "world_loading_progress_screen": { + "file": "ui/progress_screen.json", + "type": "screen", + "extend": { + "name": "progress_screen", + "namespace": "progress" + } + }, + "world_loading_screen_background": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "dirt_background", + "namespace": "common" + } + }, + "overworld_loading_background": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "world_loading_screen_background", + "namespace": "progress" + }, + "children": [ + "background_gradient" + ] + }, + "overworld_loading_background/background_gradient": { + "file": "ui/progress_screen.json", + "type": "custom" + }, + "overworld_loading_progress_screen": { + "file": "ui/progress_screen.json", + "type": "screen", + "extend": { + "name": "world_loading_progress_screen", + "namespace": "progress" + } + }, + "nether_loading_background": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "world_loading_screen_background", + "namespace": "progress" + }, + "children": [ + "background_gradient" + ] + }, + "nether_loading_background/background_gradient": { + "file": "ui/progress_screen.json", + "type": "custom" + }, + "nether_loading_progress_screen": { + "file": "ui/progress_screen.json", + "type": "screen", + "extend": { + "name": "world_loading_progress_screen", + "namespace": "progress" + } + }, + "theend_loading_background": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "world_loading_screen_background", + "namespace": "progress" + }, + "children": [ + "background_gradient" + ] + }, + "theend_loading_background/background_gradient": { + "file": "ui/progress_screen.json", + "type": "custom" + }, + "theend_loading_progress_screen": { + "file": "ui/progress_screen.json", + "type": "screen", + "extend": { + "name": "world_loading_progress_screen", + "namespace": "progress" + } + }, + "world_saving_progress_screen": { + "file": "ui/progress_screen.json", + "type": "screen", + "extend": { + "name": "progress_screen", + "namespace": "progress" + } + }, + "fetching_edu_cloud_worlds": { + "file": "ui/progress_screen.json", + "type": "screen", + "extend": { + "name": "progress_screen", + "namespace": "progress" + } + }, + "edu_cloud_download_progress_screen": { + "file": "ui/progress_screen.json", + "type": "screen", + "extend": { + "name": "progress_screen", + "namespace": "progress" + } + }, + "fetching_edu_servers": { + "file": "ui/progress_screen.json", + "type": "screen", + "extend": { + "name": "progress_screen", + "namespace": "progress" + } + }, + "joining_edu_server": { + "file": "ui/progress_screen.json", + "type": "screen", + "extend": { + "name": "progress_screen", + "namespace": "progress" + } + }, + "world_convert_modal_progress_screen": { + "file": "ui/progress_screen.json", + "type": "screen", + "extend": { + "name": "progress_screen", + "namespace": "progress" + } + }, + "progress_screen": { + "file": "ui/progress_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "popup_dialog_factory": { + "file": "ui/progress_screen.json", + "type": "factory" + }, + "progress_screen_content": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "progress_content_panel", + "popup_dialog_factory" + ] + }, + "progress_screen_content/progress_content_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "progress_content_panel", + "namespace": "progress" + } + }, + "progress_screen_content/popup_dialog_factory": { + "file": "ui/progress_screen.json", + "type": "factory", + "extend": { + "name": "popup_dialog_factory", + "namespace": "progress" + } + }, + "progress_content_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "progress_panel", + "gamepad_helpers" + ] + }, + "progress_content_panel/progress_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "progress_panel", + "namespace": "progress" + } + }, + "progress_content_panel/gamepad_helpers": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "gamepad_helpers", + "namespace": "progress" + } + }, + "modal_screen_content": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "modal_progress_panel" + ] + }, + "modal_screen_content/modal_progress_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "modal_progress_panel_with_cancel", + "namespace": "progress" + } + }, + "world_modal_progress_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "common_panel", + "content_wrapper" + ] + }, + "world_modal_progress_panel/common_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "world_modal_progress_panel/content_wrapper": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "base_content", + "inside_content" + ] + }, + "world_modal_progress_panel/content_wrapper/base_content": { + "file": "ui/progress_screen.json", + "type": "stack_panel", + "children": [ + "vertical_title_padding", + "title_text_panel", + "vertical_text_padding", + "progress_text_panel" + ] + }, + "world_modal_progress_panel/content_wrapper/base_content/vertical_title_padding": { + "file": "ui/progress_screen.json", + "type": "panel" + }, + "world_modal_progress_panel/content_wrapper/base_content/title_text_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "progress_title_text" + ] + }, + "world_modal_progress_panel/content_wrapper/base_content/title_text_panel/progress_title_text": { + "file": "ui/progress_screen.json", + "type": "label", + "extend": { + "name": "progress_title_text", + "namespace": "progress" + } + }, + "world_modal_progress_panel/content_wrapper/base_content/vertical_text_padding": { + "file": "ui/progress_screen.json", + "type": "panel" + }, + "world_modal_progress_panel/content_wrapper/base_content/progress_text_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "progress_bar_text" + ] + }, + "world_modal_progress_panel/content_wrapper/base_content/progress_text_panel/progress_bar_text": { + "file": "ui/progress_screen.json", + "type": "label", + "extend": { + "name": "progress_bar_text", + "namespace": "progress" + } + }, + "world_modal_progress_panel/content_wrapper/inside_content": { + "file": "ui/progress_screen.json", + "type": "stack_panel", + "children": [ + "loading_bar_panel", + "vertical_padding", + "modal_button_panel", + "vertical_padding_2" + ] + }, + "world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "fancy_progress_loading_bars", + "progress_loading_bars" + ] + }, + "world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel/fancy_progress_loading_bars": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "fancy_progress_loading_bars", + "namespace": "progress" + } + }, + "world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel/progress_loading_bars": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "progress" + } + }, + "world_modal_progress_panel/content_wrapper/inside_content/vertical_padding": { + "file": "ui/progress_screen.json", + "type": "panel" + }, + "world_modal_progress_panel/content_wrapper/inside_content/modal_button_panel": { + "file": "ui/progress_screen.json", + "type": "unknown" + }, + "world_modal_progress_panel/content_wrapper/inside_content/vertical_padding_2": { + "file": "ui/progress_screen.json", + "type": "panel" + }, + "cloud_upload_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "common_panel", + "base_content" + ] + }, + "cloud_upload_panel/common_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "cloud_upload_panel/base_content": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "progress_title_text", + "progress_text", + "edu_cloud_upload_image", + "loading_bar_panel" + ] + }, + "cloud_upload_panel/base_content/progress_title_text": { + "file": "ui/progress_screen.json", + "type": "label", + "extend": { + "name": "progress_title_text", + "namespace": "progress" + } + }, + "cloud_upload_panel/base_content/progress_text": { + "file": "ui/progress_screen.json", + "type": "label" + }, + "cloud_upload_panel/base_content/edu_cloud_upload_image": { + "file": "ui/progress_screen.json", + "type": "stack_panel", + "extend": { + "name": "edu_cloud_upload_image", + "namespace": "progress" + } + }, + "cloud_upload_panel/base_content/loading_bar_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "progress_loading_bars" + ] + }, + "cloud_upload_panel/base_content/loading_bar_panel/progress_loading_bars": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "edu_cloud_upload_progress_bar", + "namespace": "progress" + } + }, + "cloud_error_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "common_panel", + "content_wrapper" + ] + }, + "cloud_error_panel/common_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "cloud_error_panel/content_wrapper": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "title_wrapper", + "error_text_tts_wrapper", + "button_content", + "error_button_content" + ] + }, + "cloud_error_panel/content_wrapper/title_wrapper": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "progress_title_text" + ] + }, + "cloud_error_panel/content_wrapper/title_wrapper/progress_title_text": { + "file": "ui/progress_screen.json", + "type": "label", + "extend": { + "name": "progress_title_text", + "namespace": "progress" + } + }, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "tts_border", + "edu_cloud_error_text_wrapper" + ] + }, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/tts_border": { + "file": "ui/progress_screen.json", + "type": "button", + "extend": { + "name": "non_interact_focus_border_button", + "namespace": "common" + } + }, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper": { + "file": "ui/progress_screen.json", + "type": "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": { + "file": "ui/progress_screen.json", + "type": "label" + }, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding": { + "file": "ui/progress_screen.json", + "type": "panel" + }, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code": { + "file": "ui/progress_screen.json", + "type": "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": { + "file": "ui/progress_screen.json", + "type": "label", + "extend": { + "name": "code_text", + "namespace": "progress" + } + }, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_number": { + "file": "ui/progress_screen.json", + "type": "label", + "extend": { + "name": "code_number", + "namespace": "progress" + } + }, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding_2": { + "file": "ui/progress_screen.json", + "type": "panel" + }, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link": { + "file": "ui/progress_screen.json", + "type": "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": { + "file": "ui/progress_screen.json", + "type": "button", + "extend": { + "name": "underline_button", + "namespace": "edu_common" + } + }, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "icon" + ] + }, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon/icon": { + "file": "ui/progress_screen.json", + "type": "image" + }, + "cloud_error_panel/content_wrapper/button_content": { + "file": "ui/progress_screen.json", + "type": "stack_panel", + "children": [ + "modal_button_panel" + ] + }, + "cloud_error_panel/content_wrapper/button_content/modal_button_panel": { + "file": "ui/progress_screen.json", + "type": "unknown" + }, + "cloud_error_panel/content_wrapper/error_button_content": { + "file": "ui/progress_screen.json", + "type": "stack_panel", + "children": [ + "download_ok_button", + "download_cancel_button" + ] + }, + "cloud_error_panel/content_wrapper/error_button_content/download_ok_button": { + "file": "ui/progress_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "cloud_error_panel/content_wrapper/error_button_content/download_cancel_button": { + "file": "ui/progress_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "cloud_fetch_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "common_panel", + "base_content" + ] + }, + "cloud_fetch_panel/common_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "cloud_fetch_panel/base_content": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "progress_title_text", + "progress_text", + "edu_cloud_fetch_image", + "loading_bar_panel" + ] + }, + "cloud_fetch_panel/base_content/progress_title_text": { + "file": "ui/progress_screen.json", + "type": "label", + "extend": { + "name": "progress_title_text", + "namespace": "progress" + } + }, + "cloud_fetch_panel/base_content/progress_text": { + "file": "ui/progress_screen.json", + "type": "label" + }, + "cloud_fetch_panel/base_content/edu_cloud_fetch_image": { + "file": "ui/progress_screen.json", + "type": "stack_panel", + "extend": { + "name": "edu_cloud_fetch_image", + "namespace": "progress" + } + }, + "cloud_fetch_panel/base_content/loading_bar_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "progress_loading_bars" + ] + }, + "cloud_fetch_panel/base_content/loading_bar_panel/progress_loading_bars": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "progress" + } + }, + "server_fetch_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "common_panel", + "base_content" + ] + }, + "server_fetch_panel/common_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "server_fetch_panel/base_content": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "progress_title_text", + "progress_text", + "edu_server_fetch_image", + "loading_bar_panel" + ] + }, + "server_fetch_panel/base_content/progress_title_text": { + "file": "ui/progress_screen.json", + "type": "label", + "extend": { + "name": "progress_title_text", + "namespace": "progress" + } + }, + "server_fetch_panel/base_content/progress_text": { + "file": "ui/progress_screen.json", + "type": "label" + }, + "server_fetch_panel/base_content/edu_server_fetch_image": { + "file": "ui/progress_screen.json", + "type": "stack_panel", + "extend": { + "name": "edu_server_fetch_image", + "namespace": "progress" + } + }, + "server_fetch_panel/base_content/loading_bar_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "progress_loading_bars" + ] + }, + "server_fetch_panel/base_content/loading_bar_panel/progress_loading_bars": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "progress" + } + }, + "cloud_download_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "common_panel", + "base_content", + "loading_bar_panel" + ] + }, + "cloud_download_panel/common_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "cloud_download_panel/base_content": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "progress_title_text", + "progress_bar_text", + "edu_cloud_download_image" + ] + }, + "cloud_download_panel/base_content/progress_title_text": { + "file": "ui/progress_screen.json", + "type": "label", + "extend": { + "name": "progress_title_text", + "namespace": "progress" + } + }, + "cloud_download_panel/base_content/progress_bar_text": { + "file": "ui/progress_screen.json", + "type": "label", + "extend": { + "name": "progress_bar_text", + "namespace": "progress" + } + }, + "cloud_download_panel/base_content/edu_cloud_download_image": { + "file": "ui/progress_screen.json", + "type": "stack_panel", + "extend": { + "name": "edu_cloud_download_image", + "namespace": "progress" + } + }, + "cloud_download_panel/loading_bar_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "progress_loading_bars" + ] + }, + "cloud_download_panel/loading_bar_panel/progress_loading_bars": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "progress" + } + }, + "server_fetch_timeout_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "common_panel", + "base_content" + ] + }, + "server_fetch_timeout_panel/common_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "server_fetch_timeout_panel/base_content": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "progress_title_text", + "progress_text", + "edu_server_fetch_image", + "loading_bar_panel", + "timeout_button" + ] + }, + "server_fetch_timeout_panel/base_content/progress_title_text": { + "file": "ui/progress_screen.json", + "type": "label", + "extend": { + "name": "progress_title_text", + "namespace": "progress" + } + }, + "server_fetch_timeout_panel/base_content/progress_text": { + "file": "ui/progress_screen.json", + "type": "label" + }, + "server_fetch_timeout_panel/base_content/edu_server_fetch_image": { + "file": "ui/progress_screen.json", + "type": "stack_panel", + "extend": { + "name": "edu_server_fetch_image", + "namespace": "progress" + } + }, + "server_fetch_timeout_panel/base_content/loading_bar_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "progress_loading_bars" + ] + }, + "server_fetch_timeout_panel/base_content/loading_bar_panel/progress_loading_bars": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "progress" + } + }, + "server_fetch_timeout_panel/base_content/timeout_button": { + "file": "ui/progress_screen.json", + "type": "button", + "extend": { + "name": "cancel_button", + "namespace": "progress" + } + }, + "world_convert_modal_progress_screen_content": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "mobile_data_icon", + "title_panel_content", + "world_modal_progress_panel", + "popup_dialog_factory" + ] + }, + "world_convert_modal_progress_screen_content/mobile_data_icon": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "mobile_data_icon", + "namespace": "progress" + } + }, + "world_convert_modal_progress_screen_content/title_panel_content": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "title_panel_content", + "namespace": "common_art" + } + }, + "world_convert_modal_progress_screen_content/world_modal_progress_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "world_modal_progress_panel", + "namespace": "progress" + } + }, + "world_convert_modal_progress_screen_content/popup_dialog_factory": { + "file": "ui/progress_screen.json", + "type": "factory", + "extend": { + "name": "popup_dialog_factory", + "namespace": "progress" + } + }, + "realms_loading_world_modal_progress_screen_content": { + "file": "ui/progress_screen.json", + "type": "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": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "mobile_data_icon", + "namespace": "progress" + } + }, + "realms_loading_world_modal_progress_screen_content/realms_title_image": { + "file": "ui/progress_screen.json", + "type": "image" + }, + "realms_loading_world_modal_progress_screen_content/world_modal_progress_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "world_modal_progress_panel", + "namespace": "progress" + } + }, + "realms_loading_world_modal_progress_screen_content/popup_dialog_factory": { + "file": "ui/progress_screen.json", + "type": "factory", + "extend": { + "name": "popup_dialog_factory", + "namespace": "progress" + } + }, + "realms_loading_world_modal_progress_screen_content/server_region_connected": { + "file": "ui/progress_screen.json", + "type": "stack_panel", + "children": [ + "server_region_connected_text", + "padding", + "server_region_ping_icon" + ] + }, + "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_connected_text": { + "file": "ui/progress_screen.json", + "type": "label" + }, + "realms_loading_world_modal_progress_screen_content/server_region_connected/padding": { + "file": "ui/progress_screen.json", + "type": "panel" + }, + "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_ping_icon": { + "file": "ui/progress_screen.json", + "type": "image" + }, + "world_save_modal_progress_screen_content": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "title_panel_content", + "world_modal_progress_panel", + "save_icon", + "popup_dialog_factory" + ] + }, + "world_save_modal_progress_screen_content/title_panel_content": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "title_panel_content", + "namespace": "common_art" + } + }, + "world_save_modal_progress_screen_content/world_modal_progress_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "world_modal_progress_panel", + "namespace": "progress" + } + }, + "world_save_modal_progress_screen_content/save_icon": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "auto_save", + "namespace": "progress" + } + }, + "world_save_modal_progress_screen_content/popup_dialog_factory": { + "file": "ui/progress_screen.json", + "type": "factory", + "extend": { + "name": "popup_dialog_factory", + "namespace": "progress" + } + }, + "cloud_upload_screen_content": { + "file": "ui/progress_screen.json", + "type": "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": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "title_panel_content", + "namespace": "common_art" + } + }, + "cloud_upload_screen_content/cloud_upload_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "cloud_upload_panel", + "namespace": "progress" + } + }, + "cloud_upload_screen_content/cloud_upload_error_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "cloud_error_panel", + "namespace": "progress" + } + }, + "cloud_upload_screen_content/popup_dialog_factory": { + "file": "ui/progress_screen.json", + "type": "factory", + "extend": { + "name": "popup_dialog_factory", + "namespace": "progress" + } + }, + "cloud_upload_screen_content/cloud_conflict_resolution_popup_factory": { + "file": "ui/progress_screen.json", + "type": "factory", + "extend": { + "name": "edu_cloud_conflict_resolution_popup_dialog_factory", + "namespace": "edu_common" + } + }, + "edu_cloud_fetch_screen_content": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "cloud_fetch_panel", + "popup_dialog_factory" + ] + }, + "edu_cloud_fetch_screen_content/cloud_fetch_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "cloud_fetch_panel", + "namespace": "progress" + } + }, + "edu_cloud_fetch_screen_content/popup_dialog_factory": { + "file": "ui/progress_screen.json", + "type": "factory", + "extend": { + "name": "popup_dialog_factory", + "namespace": "progress" + } + }, + "edu_server_fetch_screen_content": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "server_fetch_panel", + "server_fetch_timeout_panel", + "popup_dialog_factory" + ] + }, + "edu_server_fetch_screen_content/server_fetch_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "server_fetch_panel", + "namespace": "progress" + } + }, + "edu_server_fetch_screen_content/server_fetch_timeout_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "server_fetch_timeout_panel", + "namespace": "progress" + } + }, + "edu_server_fetch_screen_content/popup_dialog_factory": { + "file": "ui/progress_screen.json", + "type": "factory", + "extend": { + "name": "popup_dialog_factory", + "namespace": "progress" + } + }, + "joining_edu_server_progress_screen_content": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "title_panel_content", + "world_modal_progress_panel", + "popup_dialog_factory" + ] + }, + "joining_edu_server_progress_screen_content/title_panel_content": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "title_panel_content", + "namespace": "common_art" + } + }, + "joining_edu_server_progress_screen_content/world_modal_progress_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "world_modal_progress_panel", + "namespace": "progress" + } + }, + "joining_edu_server_progress_screen_content/popup_dialog_factory": { + "file": "ui/progress_screen.json", + "type": "factory", + "extend": { + "name": "popup_dialog_factory", + "namespace": "progress" + } + }, + "cloud_download_screen_content": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "background", + "cloud_download_panel", + "cloud_download_error_panel", + "popup_dialog_factory" + ] + }, + "cloud_download_screen_content/background": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "screen_background", + "namespace": "common" + } + }, + "cloud_download_screen_content/cloud_download_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "cloud_download_panel", + "namespace": "progress" + } + }, + "cloud_download_screen_content/cloud_download_error_panel": { + "file": "ui/progress_screen.json", + "type": "panel", + "extend": { + "name": "cloud_error_panel", + "namespace": "progress" + } + }, + "cloud_download_screen_content/popup_dialog_factory": { + "file": "ui/progress_screen.json", + "type": "factory", + "extend": { + "name": "popup_dialog_factory", + "namespace": "progress" + } + }, + "auto_save": { + "file": "ui/progress_screen.json", + "type": "image" + }, + "mobile_data_ios_icon": { + "file": "ui/progress_screen.json", + "type": "image" + }, + "mobile_data_android_icon": { + "file": "ui/progress_screen.json", + "type": "image" + }, + "mobile_data_icon_text": { + "file": "ui/progress_screen.json", + "type": "label" + }, + "mobile_data_icon": { + "file": "ui/progress_screen.json", + "type": "panel", + "children": [ + "icon_android", + "icon_ios", + "text" + ] + }, + "mobile_data_icon/icon_android": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "mobile_data_android_icon", + "namespace": "progress" + } + }, + "mobile_data_icon/icon_ios": { + "file": "ui/progress_screen.json", + "type": "image", + "extend": { + "name": "mobile_data_ios_icon", + "namespace": "progress" + } + }, + "mobile_data_icon/text": { + "file": "ui/progress_screen.json", + "type": "label", + "extend": { + "name": "mobile_data_icon_text", + "namespace": "progress" + } + } + }, + "rating_prompt": { + "padding_horizontal": { + "file": "ui/rating_prompt.json", + "type": "panel" + }, + "padding_vertical": { + "file": "ui/rating_prompt.json", + "type": "panel" + }, + "rating_prompt_yes_label": { + "file": "ui/rating_prompt.json", + "type": "panel", + "children": [ + "button_label" + ] + }, + "rating_prompt_yes_label/button_label": { + "file": "ui/rating_prompt.json", + "type": "label" + }, + "rating_prompt_no_label": { + "file": "ui/rating_prompt.json", + "type": "panel", + "children": [ + "button_label" + ] + }, + "rating_prompt_no_label/button_label": { + "file": "ui/rating_prompt.json", + "type": "label" + }, + "rating_prompt_yes_button": { + "file": "ui/rating_prompt.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "rating_prompt_no_button": { + "file": "ui/rating_prompt.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "dialog_image": { + "file": "ui/rating_prompt.json", + "type": "image" + }, + "dialog_image_with_border": { + "file": "ui/rating_prompt.json", + "type": "image", + "children": [ + "dialog_image" + ] + }, + "dialog_image_with_border/dialog_image": { + "file": "ui/rating_prompt.json", + "type": "image", + "extend": { + "name": "dialog_image", + "namespace": "rating_prompt" + } + }, + "button_panel": { + "file": "ui/rating_prompt.json", + "type": "stack_panel", + "children": [ + "padding_3", + "yes_button", + "no_button" + ] + }, + "button_panel/padding_3": { + "file": "ui/rating_prompt.json", + "type": "panel", + "extend": { + "name": "padding_vertical", + "namespace": "rating_prompt" + } + }, + "button_panel/yes_button": { + "file": "ui/rating_prompt.json", + "type": "button", + "extend": { + "name": "rating_prompt_yes_button", + "namespace": "rating_prompt" + } + }, + "button_panel/no_button": { + "file": "ui/rating_prompt.json", + "type": "button", + "extend": { + "name": "rating_prompt_no_button", + "namespace": "rating_prompt" + } + }, + "image_panel": { + "file": "ui/rating_prompt.json", + "type": "stack_panel", + "children": [ + "padding_2", + "dialog_image_with_border" + ] + }, + "image_panel/padding_2": { + "file": "ui/rating_prompt.json", + "type": "panel", + "extend": { + "name": "padding_vertical", + "namespace": "rating_prompt" + } + }, + "image_panel/dialog_image_with_border": { + "file": "ui/rating_prompt.json", + "type": "image", + "extend": { + "name": "dialog_image_with_border", + "namespace": "rating_prompt" + } + }, + "main_panel": { + "file": "ui/rating_prompt.json", + "type": "stack_panel", + "children": [ + "padding_0", + "image_panel", + "padding_1", + "button_panel" + ] + }, + "main_panel/padding_0": { + "file": "ui/rating_prompt.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "rating_prompt" + } + }, + "main_panel/image_panel": { + "file": "ui/rating_prompt.json", + "type": "stack_panel", + "extend": { + "name": "image_panel", + "namespace": "rating_prompt" + } + }, + "main_panel/padding_1": { + "file": "ui/rating_prompt.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "rating_prompt" + } + }, + "main_panel/button_panel": { + "file": "ui/rating_prompt.json", + "type": "stack_panel", + "extend": { + "name": "button_panel", + "namespace": "rating_prompt" + } + }, + "rating_prompt_screen": { + "file": "ui/rating_prompt.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "rating_prompt_screen_content": { + "file": "ui/rating_prompt.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + } + }, + "realms_common": { + "pending_invites_icon": { + "file": "ui/realms_common.json", + "type": "image" + }, + "dark_banner": { + "file": "ui/realms_common.json", + "type": "image" + }, + "dark_banner_hover": { + "file": "ui/realms_common.json", + "type": "image", + "extend": { + "name": "dark_banner", + "namespace": "realms_common" + } + }, + "legacy_banner": { + "file": "ui/realms_common.json", + "type": "image" + }, + "main_banner": { + "file": "ui/realms_common.json", + "type": "image" + }, + "hollow_banner": { + "file": "ui/realms_common.json", + "type": "image" + }, + "popup_dialog_bg": { + "file": "ui/realms_common.json", + "type": "image" + }, + "popup_dialog__play_on_realm": { + "file": "ui/realms_common.json", + "type": "input_panel", + "extend": { + "name": "modal_input_panel", + "namespace": "popup_dialog" + }, + "children": [ + "play_on_realm_popup_background", + "gamepad_helpers", + "play_on_realm_popup_content" + ] + }, + "popup_dialog__play_on_realm/play_on_realm_popup_background": { + "file": "ui/realms_common.json", + "type": "image", + "extend": { + "name": "play_on_realm_popup_background", + "namespace": "realms_common" + } + }, + "popup_dialog__play_on_realm/gamepad_helpers": { + "file": "ui/realms_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helpers_a_and_b", + "namespace": "common" + } + }, + "popup_dialog__play_on_realm/play_on_realm_popup_content": { + "file": "ui/realms_common.json", + "type": "panel", + "extend": { + "name": "play_on_realm_popup_content", + "namespace": "realms_common" + } + }, + "play_on_realm_popup_background": { + "file": "ui/realms_common.json", + "type": "image" + }, + "play_on_realm_popup_content": { + "file": "ui/realms_common.json", + "type": "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": { + "file": "ui/realms_common.json", + "type": "image", + "extend": { + "name": "popup_dialog_bg", + "namespace": "realms_common" + } + }, + "play_on_realm_popup_content/play_on_realm_popup_dialog_header": { + "file": "ui/realms_common.json", + "type": "panel", + "extend": { + "name": "play_on_realm_popup_dialog_header", + "namespace": "realms_common" + } + }, + "play_on_realm_popup_content/play_on_realm_popup_dialog_upper_body": { + "file": "ui/realms_common.json", + "type": "panel", + "extend": { + "name": "play_on_realm_popup_dialog_upper_body", + "namespace": "realms_common" + } + }, + "play_on_realm_popup_content/play_on_realm_popup_dialog_lower_body": { + "file": "ui/realms_common.json", + "type": "panel", + "extend": { + "name": "play_on_realm_popup_dialog_lower_body", + "namespace": "realms_common" + } + }, + "play_on_realm_popup_dialog_header": { + "file": "ui/realms_common.json", + "type": "panel", + "children": [ + "play_on_realm_popup_dialog_header_text", + "close_button" + ] + }, + "play_on_realm_popup_dialog_header/play_on_realm_popup_dialog_header_text": { + "file": "ui/realms_common.json", + "type": "label", + "extend": { + "name": "play_on_realm_popup_dialog_header_text", + "namespace": "realms_common" + } + }, + "play_on_realm_popup_dialog_header/close_button": { + "file": "ui/realms_common.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "common" + } + }, + "play_on_realm_popup_dialog_header_text": { + "file": "ui/realms_common.json", + "type": "label" + }, + "play_on_realm_popup_dialog_upper_body": { + "file": "ui/realms_common.json", + "type": "panel", + "children": [ + "play_on_realm_banner", + "play_on_realm_panel", + "background_panel" + ] + }, + "play_on_realm_popup_dialog_upper_body/play_on_realm_banner": { + "file": "ui/realms_common.json", + "type": "image", + "extend": { + "name": "hollow_banner", + "namespace": "realms_common" + } + }, + "play_on_realm_popup_dialog_upper_body/play_on_realm_panel": { + "file": "ui/realms_common.json", + "type": "panel", + "extend": { + "name": "play_on_realm_panel", + "namespace": "realms_common" + } + }, + "play_on_realm_popup_dialog_upper_body/background_panel": { + "file": "ui/realms_common.json", + "type": "panel", + "children": [ + "black_background" + ] + }, + "play_on_realm_popup_dialog_upper_body/background_panel/black_background": { + "file": "ui/realms_common.json", + "type": "image" + }, + "play_on_realm_panel": { + "file": "ui/realms_common.json", + "type": "panel", + "children": [ + "play_on_realm_content_panel" + ] + }, + "play_on_realm_panel/play_on_realm_content_panel": { + "file": "ui/realms_common.json", + "type": "stack_panel", + "children": [ + "play_image_panel", + "play_text_panel" + ] + }, + "play_on_realm_panel/play_on_realm_content_panel/play_image_panel": { + "file": "ui/realms_common.json", + "type": "stack_panel", + "children": [ + "spacing_gap_image", + "realms_image" + ] + }, + "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/spacing_gap_image": { + "file": "ui/realms_common.json", + "type": "panel" + }, + "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/realms_image": { + "file": "ui/realms_common.json", + "type": "image" + }, + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel": { + "file": "ui/realms_common.json", + "type": "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": { + "file": "ui/realms_common.json", + "type": "panel" + }, + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_1": { + "file": "ui/realms_common.json", + "type": "label" + }, + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_2": { + "file": "ui/realms_common.json", + "type": "panel" + }, + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_2": { + "file": "ui/realms_common.json", + "type": "label" + }, + "play_on_realm_popup_dialog_lower_body": { + "file": "ui/realms_common.json", + "type": "panel", + "children": [ + "button_panel" + ] + }, + "play_on_realm_popup_dialog_lower_body/button_panel": { + "file": "ui/realms_common.json", + "type": "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": { + "file": "ui/realms_common.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap1": { + "file": "ui/realms_common.json", + "type": "panel" + }, + "play_on_realm_popup_dialog_lower_body/button_panel/play_solo_button": { + "file": "ui/realms_common.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap2": { + "file": "ui/realms_common.json", + "type": "panel" + }, + "play_on_realm_popup_dialog_lower_body/button_panel/go_back_button": { + "file": "ui/realms_common.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + } + }, + "realms_create": { + "title_label": { + "file": "ui/realms_create.json", + "type": "label" + }, + "label": { + "file": "ui/realms_create.json", + "type": "label" + }, + "enter_name_panel": { + "file": "ui/realms_create.json", + "type": "panel", + "children": [ + "name_label_0", + "name_edit" + ] + }, + "enter_name_panel/name_label_0": { + "file": "ui/realms_create.json", + "type": "label", + "extend": { + "name": "label", + "namespace": "realms_create" + } + }, + "enter_name_panel/name_edit": { + "file": "ui/realms_create.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "selected_option_checkbox": { + "file": "ui/realms_create.json", + "type": "image" + }, + "selected_option_checkbox_empty": { + "file": "ui/realms_create.json", + "type": "image", + "extend": { + "name": "selected_option_checkbox", + "namespace": "realms_create" + } + }, + "selected_option_checkbox_filled": { + "file": "ui/realms_create.json", + "type": "image", + "extend": { + "name": "selected_option_checkbox", + "namespace": "realms_create" + } + }, + "checkbox_panel": { + "file": "ui/realms_create.json", + "type": "panel", + "children": [ + "selected_option_checkbox_empty", + "selected_option_checkbox_filled", + "button_label" + ] + }, + "checkbox_panel/selected_option_checkbox_empty": { + "file": "ui/realms_create.json", + "type": "image", + "extend": { + "name": "selected_option_checkbox_empty", + "namespace": "realms_create" + } + }, + "checkbox_panel/selected_option_checkbox_filled": { + "file": "ui/realms_create.json", + "type": "image", + "extend": { + "name": "selected_option_checkbox_filled", + "namespace": "realms_create" + } + }, + "checkbox_panel/button_label": { + "file": "ui/realms_create.json", + "type": "label" + }, + "realms_option_button": { + "file": "ui/realms_create.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "choose_duration_panel": { + "file": "ui/realms_create.json", + "type": "panel", + "children": [ + "name_label", + "choose_duration_stack_panel" + ] + }, + "choose_duration_panel/name_label": { + "file": "ui/realms_create.json", + "type": "label", + "extend": { + "name": "label", + "namespace": "realms_create" + } + }, + "choose_duration_panel/choose_duration_stack_panel": { + "file": "ui/realms_create.json", + "type": "input_panel", + "children": [ + "short", + "long" + ] + }, + "choose_duration_panel/choose_duration_stack_panel/short": { + "file": "ui/realms_create.json", + "type": "button", + "extend": { + "name": "realms_option_button", + "namespace": "realms_create" + } + }, + "choose_duration_panel/choose_duration_stack_panel/long": { + "file": "ui/realms_create.json", + "type": "button", + "extend": { + "name": "realms_option_button", + "namespace": "realms_create" + } + }, + "choose_tier_panel": { + "file": "ui/realms_create.json", + "type": "panel", + "children": [ + "name_label", + "choose_tier_stack_panel" + ] + }, + "choose_tier_panel/name_label": { + "file": "ui/realms_create.json", + "type": "label", + "extend": { + "name": "label", + "namespace": "realms_create" + } + }, + "choose_tier_panel/choose_tier_stack_panel": { + "file": "ui/realms_create.json", + "type": "input_panel", + "children": [ + "player_count_2" + ] + }, + "choose_tier_panel/choose_tier_stack_panel/player_count_2": { + "file": "ui/realms_create.json", + "type": "button", + "extend": { + "name": "realms_option_button", + "namespace": "realms_create" + } + }, + "view_terms_button": { + "file": "ui/realms_create.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "privacy_policy_button": { + "file": "ui/realms_create.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "terms_and_conditions_panel": { + "file": "ui/realms_create.json", + "type": "panel", + "children": [ + "name_label", + "terms_string_panel" + ] + }, + "terms_and_conditions_panel/name_label": { + "file": "ui/realms_create.json", + "type": "label", + "extend": { + "name": "label", + "namespace": "realms_create" + } + }, + "terms_and_conditions_panel/terms_string_panel": { + "file": "ui/realms_create.json", + "type": "panel", + "children": [ + "banner_fill", + "buttons_stack_panel" + ] + }, + "terms_and_conditions_panel/terms_string_panel/banner_fill": { + "file": "ui/realms_create.json", + "type": "image" + }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": { + "file": "ui/realms_create.json", + "type": "stack_panel", + "children": [ + "agree_panel", + "view_terms_button", + "privacy_policy_button" + ] + }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": { + "file": "ui/realms_create.json", + "type": "panel", + "children": [ + "checkbox_control" + ] + }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": { + "file": "ui/realms_create.json", + "type": "toggle", + "extend": { + "name": "checkbox_with_highlight_and_label", + "namespace": "settings_common" + } + }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": { + "file": "ui/realms_create.json", + "type": "button", + "extend": { + "name": "view_terms_button", + "namespace": "realms_create" + } + }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": { + "file": "ui/realms_create.json", + "type": "button", + "extend": { + "name": "privacy_policy_button", + "namespace": "realms_create" + } + }, + "confirmation_panel": { + "file": "ui/realms_create.json", + "type": "panel", + "children": [ + "create_realms_button" + ] + }, + "confirmation_panel/create_realms_button": { + "file": "ui/realms_create.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "create_realms_stack_panel": { + "file": "ui/realms_create.json", + "type": "stack_panel", + "children": [ + "padding_0", + "create_realms_text_panel" + ] + }, + "create_realms_stack_panel/padding_0": { + "file": "ui/realms_create.json", + "type": "panel" + }, + "create_realms_stack_panel/create_realms_text_panel": { + "file": "ui/realms_create.json", + "type": "panel", + "extend": { + "name": "create_realms_text_panel", + "namespace": "realms_create" + } + }, + "create_realms_text_panel": { + "file": "ui/realms_create.json", + "type": "panel", + "children": [ + "create" + ] + }, + "create_realms_text_panel/create": { + "file": "ui/realms_create.json", + "type": "label", + "extend": { + "name": "label", + "namespace": "realms_create" + } + }, + "stack_item": { + "file": "ui/realms_create.json", + "type": "panel" + }, + "scroll_stack_panel": { + "file": "ui/realms_create.json", + "type": "stack_panel", + "children": [ + "name", + "padding_0", + "duration", + "tier", + "toc", + "padding_1", + "realms_terms_info", + "realms_switch_nso_info" + ] + }, + "scroll_stack_panel/name": { + "file": "ui/realms_create.json", + "type": "panel", + "extend": { + "name": "stack_item", + "namespace": "realms_create" + }, + "children": [ + "enter_name_panel" + ] + }, + "scroll_stack_panel/name/enter_name_panel": { + "file": "ui/realms_create.json", + "type": "panel", + "extend": { + "name": "enter_name_panel", + "namespace": "realms_create" + } + }, + "scroll_stack_panel/padding_0": { + "file": "ui/realms_create.json", + "type": "panel" + }, + "scroll_stack_panel/duration": { + "file": "ui/realms_create.json", + "type": "panel", + "extend": { + "name": "stack_item", + "namespace": "realms_create" + }, + "children": [ + "choose_duration_panel" + ] + }, + "scroll_stack_panel/duration/choose_duration_panel": { + "file": "ui/realms_create.json", + "type": "panel", + "extend": { + "name": "choose_duration_panel", + "namespace": "realms_create" + } + }, + "scroll_stack_panel/tier": { + "file": "ui/realms_create.json", + "type": "panel", + "extend": { + "name": "stack_item", + "namespace": "realms_create" + }, + "children": [ + "choose_tier_panel" + ] + }, + "scroll_stack_panel/tier/choose_tier_panel": { + "file": "ui/realms_create.json", + "type": "panel", + "extend": { + "name": "choose_tier_panel", + "namespace": "realms_create" + } + }, + "scroll_stack_panel/toc": { + "file": "ui/realms_create.json", + "type": "panel", + "extend": { + "name": "stack_item", + "namespace": "realms_create" + }, + "children": [ + "terms_and_conditions_panel" + ] + }, + "scroll_stack_panel/toc/terms_and_conditions_panel": { + "file": "ui/realms_create.json", + "type": "panel", + "extend": { + "name": "terms_and_conditions_panel", + "namespace": "realms_create" + } + }, + "scroll_stack_panel/padding_1": { + "file": "ui/realms_create.json", + "type": "panel" + }, + "scroll_stack_panel/realms_terms_info": { + "file": "ui/realms_create.json", + "type": "image", + "children": [ + "label_panel" + ] + }, + "scroll_stack_panel/realms_terms_info/label_panel": { + "file": "ui/realms_create.json", + "type": "stack_panel", + "children": [ + "padding_1", + "text_description_wrapper", + "text_description_wrapper_extra", + "padding_2" + ] + }, + "scroll_stack_panel/realms_terms_info/label_panel/padding_1": { + "file": "ui/realms_create.json", + "type": "panel" + }, + "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper": { + "file": "ui/realms_create.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper_extra": { + "file": "ui/realms_create.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "scroll_stack_panel/realms_terms_info/label_panel/padding_2": { + "file": "ui/realms_create.json", + "type": "panel" + }, + "scroll_stack_panel/realms_switch_nso_info": { + "file": "ui/realms_create.json", + "type": "panel", + "extend": { + "name": "option_info_label", + "namespace": "settings_common" + } + }, + "terms_section": { + "file": "ui/realms_create.json", + "type": "panel", + "children": [ + "terms_section_label" + ] + }, + "terms_section/terms_section_label": { + "file": "ui/realms_create.json", + "type": "label" + }, + "terms_section_extra": { + "file": "ui/realms_create.json", + "type": "panel", + "children": [ + "terms_section_label" + ] + }, + "terms_section_extra/terms_section_label": { + "file": "ui/realms_create.json", + "type": "label" + }, + "main_panel": { + "file": "ui/realms_create.json", + "type": "stack_panel", + "children": [ + "scrolling_panel", + "padding_0", + "confirmation_panel", + "padding_1" + ] + }, + "main_panel/scrolling_panel": { + "file": "ui/realms_create.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "main_panel/padding_0": { + "file": "ui/realms_create.json", + "type": "panel" + }, + "main_panel/confirmation_panel": { + "file": "ui/realms_create.json", + "type": "panel", + "extend": { + "name": "confirmation_panel", + "namespace": "realms_create" + } + }, + "main_panel/padding_1": { + "file": "ui/realms_create.json", + "type": "panel" + }, + "content": { + "file": "ui/realms_create.json", + "type": "panel", + "children": [ + "main_panel" + ] + }, + "content/main_panel": { + "file": "ui/realms_create.json", + "type": "stack_panel", + "extend": { + "name": "main_panel", + "namespace": "realms_create" + } + }, + "realms_create_screen": { + "file": "ui/realms_create.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "realms_create_content_and_factory": { + "file": "ui/realms_create.json", + "type": "panel", + "children": [ + "realms_create_content", + "popup_dialog_factory" + ] + }, + "realms_create_content_and_factory/realms_create_content": { + "file": "ui/realms_create.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + }, + "realms_create_content_and_factory/popup_dialog_factory": { + "file": "ui/realms_create.json", + "type": "factory" + } + }, + "realms_pending_invitations": { + "panel_text": { + "file": "ui/realms_pending_invitations.json", + "type": "label" + }, + "banner_panel_base": { + "file": "ui/realms_pending_invitations.json", + "type": "panel", + "children": [ + "background", + "indent_panel" + ] + }, + "banner_panel_base/background": { + "file": "ui/realms_pending_invitations.json", + "type": "unknown" + }, + "banner_panel_base/indent_panel": { + "file": "ui/realms_pending_invitations.json", + "type": "panel", + "children": [ + "content" + ] + }, + "banner_panel_base/indent_panel/content": { + "file": "ui/realms_pending_invitations.json", + "type": "unknown" + }, + "banner_panel": { + "file": "ui/realms_pending_invitations.json", + "type": "panel", + "extend": { + "name": "banner_panel_base", + "namespace": "realms_pending_invitations" + } + }, + "banner_panel_hover": { + "file": "ui/realms_pending_invitations.json", + "type": "panel", + "extend": { + "name": "banner_panel_base", + "namespace": "realms_pending_invitations" + } + }, + "realm_invite_button": { + "file": "ui/realms_pending_invitations.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "realm_name_label": { + "file": "ui/realms_pending_invitations.json", + "type": "label", + "extend": { + "name": "panel_text", + "namespace": "realms_pending_invitations" + } + }, + "realm_inviter_label": { + "file": "ui/realms_pending_invitations.json", + "type": "label", + "extend": { + "name": "panel_text", + "namespace": "realms_pending_invitations" + } + }, + "tts_gamertag_item_info_wrapper": { + "file": "ui/realms_pending_invitations.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "gamertag_item_info": { + "file": "ui/realms_pending_invitations.json", + "type": "panel", + "children": [ + "rnl", + "rol" + ] + }, + "gamertag_item_info/rnl": { + "file": "ui/realms_pending_invitations.json", + "type": "label", + "extend": { + "name": "realm_name_label", + "namespace": "realms_pending_invitations" + } + }, + "gamertag_item_info/rol": { + "file": "ui/realms_pending_invitations.json", + "type": "label", + "extend": { + "name": "realm_inviter_label", + "namespace": "realms_pending_invitations" + } + }, + "accept_button_content": { + "file": "ui/realms_pending_invitations.json", + "type": "image" + }, + "decline_button_content": { + "file": "ui/realms_pending_invitations.json", + "type": "image" + }, + "realm_accept_button": { + "file": "ui/realms_pending_invitations.json", + "type": "button", + "extend": { + "name": "realm_invite_button", + "namespace": "realms_pending_invitations" + } + }, + "realm_decline_button": { + "file": "ui/realms_pending_invitations.json", + "type": "button", + "extend": { + "name": "realm_invite_button", + "namespace": "realms_pending_invitations" + } + }, + "realm_accepted_panel": { + "file": "ui/realms_pending_invitations.json", + "type": "label", + "extend": { + "name": "panel_text", + "namespace": "realms_pending_invitations" + } + }, + "gamertag_item_content": { + "file": "ui/realms_pending_invitations.json", + "type": "panel", + "children": [ + "lb", + "a", + "d", + "ap" + ] + }, + "gamertag_item_content/lb": { + "file": "ui/realms_pending_invitations.json", + "type": "panel", + "extend": { + "name": "tts_gamertag_item_info_wrapper", + "namespace": "realms_pending_invitations" + } + }, + "gamertag_item_content/a": { + "file": "ui/realms_pending_invitations.json", + "type": "button", + "extend": { + "name": "realm_accept_button", + "namespace": "realms_pending_invitations" + } + }, + "gamertag_item_content/d": { + "file": "ui/realms_pending_invitations.json", + "type": "button", + "extend": { + "name": "realm_decline_button", + "namespace": "realms_pending_invitations" + } + }, + "gamertag_item_content/ap": { + "file": "ui/realms_pending_invitations.json", + "type": "label", + "extend": { + "name": "realm_accepted_panel", + "namespace": "realms_pending_invitations" + } + }, + "gamertag_item": { + "file": "ui/realms_pending_invitations.json", + "type": "panel", + "extend": { + "name": "banner_panel", + "namespace": "realms_pending_invitations" + } + }, + "gamertag_item_grid": { + "file": "ui/realms_pending_invitations.json", + "type": "grid" + }, + "show_friends_only_toggle_state_content": { + "file": "ui/realms_pending_invitations.json", + "type": "stack_panel", + "children": [ + "checkbox_holding_panel", + "hide_invites_text_panel" + ] + }, + "show_friends_only_toggle_state_content/checkbox_holding_panel": { + "file": "ui/realms_pending_invitations.json", + "type": "panel", + "children": [ + "hide_invites" + ] + }, + "show_friends_only_toggle_state_content/checkbox_holding_panel/hide_invites": { + "file": "ui/realms_pending_invitations.json", + "type": "unknown" + }, + "show_friends_only_toggle_state_content/hide_invites_text_panel": { + "file": "ui/realms_pending_invitations.json", + "type": "panel", + "children": [ + "hide_invites_text" + ] + }, + "show_friends_only_toggle_state_content/hide_invites_text_panel/hide_invites_text": { + "file": "ui/realms_pending_invitations.json", + "type": "label", + "extend": { + "name": "panel_text", + "namespace": "realms_pending_invitations" + } + }, + "show_friends_only_toggle_on_state_content": { + "file": "ui/realms_pending_invitations.json", + "type": "stack_panel", + "extend": { + "name": "show_friends_only_toggle_state_content", + "namespace": "realms_pending_invitations" + } + }, + "show_friends_only_toggle_on_state": { + "file": "ui/realms_pending_invitations.json", + "type": "panel", + "extend": { + "name": "banner_panel", + "namespace": "realms_pending_invitations" + } + }, + "show_friends_only_toggle_off_state_content": { + "file": "ui/realms_pending_invitations.json", + "type": "stack_panel", + "extend": { + "name": "show_friends_only_toggle_state_content", + "namespace": "realms_pending_invitations" + } + }, + "show_friends_only_toggle_off_state": { + "file": "ui/realms_pending_invitations.json", + "type": "panel", + "extend": { + "name": "banner_panel", + "namespace": "realms_pending_invitations" + } + }, + "show_friends_only_toggle_on_hover_state_content": { + "file": "ui/realms_pending_invitations.json", + "type": "stack_panel", + "extend": { + "name": "show_friends_only_toggle_state_content", + "namespace": "realms_pending_invitations" + } + }, + "show_friends_only_toggle_on_hover_state": { + "file": "ui/realms_pending_invitations.json", + "type": "panel", + "extend": { + "name": "banner_panel_hover", + "namespace": "realms_pending_invitations" + } + }, + "show_friends_only_toggle_off_hover_state_content": { + "file": "ui/realms_pending_invitations.json", + "type": "stack_panel", + "extend": { + "name": "show_friends_only_toggle_state_content", + "namespace": "realms_pending_invitations" + } + }, + "show_friends_only_toggle_off_hover_state": { + "file": "ui/realms_pending_invitations.json", + "type": "panel", + "extend": { + "name": "banner_panel_hover", + "namespace": "realms_pending_invitations" + } + }, + "show_friends_only_toggle_on_locked_state_content": { + "file": "ui/realms_pending_invitations.json", + "type": "stack_panel", + "extend": { + "name": "show_friends_only_toggle_state_content", + "namespace": "realms_pending_invitations" + } + }, + "show_friends_only_toggle_on_locked_state": { + "file": "ui/realms_pending_invitations.json", + "type": "panel", + "extend": { + "name": "banner_panel", + "namespace": "realms_pending_invitations" + } + }, + "show_friends_only_toggle_off_locked_state_content": { + "file": "ui/realms_pending_invitations.json", + "type": "stack_panel", + "extend": { + "name": "show_friends_only_toggle_state_content", + "namespace": "realms_pending_invitations" + } + }, + "show_friends_only_toggle_off_locked_state": { + "file": "ui/realms_pending_invitations.json", + "type": "panel", + "extend": { + "name": "banner_panel", + "namespace": "realms_pending_invitations" + } + }, + "show_friends_only_toggle": { + "file": "ui/realms_pending_invitations.json", + "type": "toggle", + "extend": { + "name": "toggle", + "namespace": "common" + } + }, + "gamepad_helpers": { + "file": "ui/realms_pending_invitations.json", + "type": "panel", + "children": [ + "a", + "b" + ] + }, + "gamepad_helpers/a": { + "file": "ui/realms_pending_invitations.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_a", + "namespace": "common" + } + }, + "gamepad_helpers/b": { + "file": "ui/realms_pending_invitations.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_b", + "namespace": "common" + } + }, + "no_invites_label_wrapper": { + "file": "ui/realms_pending_invitations.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "no_invites_label": { + "file": "ui/realms_pending_invitations.json", + "type": "panel", + "children": [ + "label" + ] + }, + "no_invites_label/label": { + "file": "ui/realms_pending_invitations.json", + "type": "label", + "extend": { + "name": "panel_text", + "namespace": "realms_pending_invitations" + } + }, + "realms_pending_invitation_list": { + "file": "ui/realms_pending_invitations.json", + "type": "stack_panel", + "children": [ + "upper_padding", + "sfop", + "gig", + "lower_padding", + "nil" + ] + }, + "realms_pending_invitation_list/upper_padding": { + "file": "ui/realms_pending_invitations.json", + "type": "panel" + }, + "realms_pending_invitation_list/sfop": { + "file": "ui/realms_pending_invitations.json", + "type": "toggle", + "extend": { + "name": "show_friends_only_toggle", + "namespace": "realms_pending_invitations" + } + }, + "realms_pending_invitation_list/gig": { + "file": "ui/realms_pending_invitations.json", + "type": "grid", + "extend": { + "name": "gamertag_item_grid", + "namespace": "realms_pending_invitations" + } + }, + "realms_pending_invitation_list/lower_padding": { + "file": "ui/realms_pending_invitations.json", + "type": "panel" + }, + "realms_pending_invitation_list/nil": { + "file": "ui/realms_pending_invitations.json", + "type": "panel", + "extend": { + "name": "no_invites_label_wrapper", + "namespace": "realms_pending_invitations" + } + }, + "content_panel": { + "file": "ui/realms_pending_invitations.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "realms_pending_invitations_screen": { + "file": "ui/realms_pending_invitations.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "realms_invitation_screen_content": { + "file": "ui/realms_pending_invitations.json", + "type": "panel", + "children": [ + "root_panel" + ] + }, + "realms_invitation_screen_content/root_panel": { + "file": "ui/realms_pending_invitations.json", + "type": "input_panel", + "children": [ + "main_panel", + "sgh" + ] + }, + "realms_invitation_screen_content/root_panel/main_panel": { + "file": "ui/realms_pending_invitations.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + }, + "realms_invitation_screen_content/root_panel/sgh": { + "file": "ui/realms_pending_invitations.json", + "type": "panel", + "extend": { + "name": "gamepad_helpers", + "namespace": "realms_pending_invitations" + } + } + }, + "realms_slots": { + "vertical_padding": { + "file": "ui/realms_slots_screen.json", + "type": "panel" + }, + "horizontal_padding": { + "file": "ui/realms_slots_screen.json", + "type": "panel" + }, + "horizontal_padding_sibling_height": { + "file": "ui/realms_slots_screen.json", + "type": "panel" + }, + "realms_background": { + "file": "ui/realms_slots_screen.json", + "type": "panel", + "children": [ + "gradient", + "particle_1", + "particle_2" + ] + }, + "realms_background/gradient": { + "file": "ui/realms_slots_screen.json", + "type": "image" + }, + "realms_background/particle_1": { + "file": "ui/realms_slots_screen.json", + "type": "image" + }, + "realms_background/particle_2": { + "file": "ui/realms_slots_screen.json", + "type": "image" + }, + "plus": { + "file": "ui/realms_slots_screen.json", + "type": "image" + }, + "check": { + "file": "ui/realms_slots_screen.json", + "type": "image" + }, + "world_thumbnail": { + "file": "ui/realms_slots_screen.json", + "type": "image" + }, + "realms_stories_icon_glyph": { + "file": "ui/realms_slots_screen.json", + "type": "image", + "children": [ + "realms_stories_icon" + ] + }, + "realms_stories_icon_glyph/realms_stories_icon": { + "file": "ui/realms_slots_screen.json", + "type": "image", + "extend": { + "name": "realms_stories_icon", + "namespace": "play" + } + }, + "play_button": { + "file": "ui/realms_slots_screen.json", + "type": "button", + "extend": { + "name": "dark_text_button", + "namespace": "common_buttons" + } + }, + "edit_realm_button": { + "file": "ui/realms_slots_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "realms_feed_button": { + "file": "ui/realms_slots_screen.json", + "type": "button", + "extend": { + "name": "light_glyph_button", + "namespace": "common_buttons" + } + }, + "unread_story_count_text": { + "file": "ui/realms_slots_screen.json", + "type": "label" + }, + "unread_story_count_text_background": { + "file": "ui/realms_slots_screen.json", + "type": "image" + }, + "unread_story_count_panel": { + "file": "ui/realms_slots_screen.json", + "type": "panel", + "children": [ + "text" + ] + }, + "unread_story_count_panel/text": { + "file": "ui/realms_slots_screen.json", + "type": "label", + "extend": { + "name": "unread_story_count_text", + "namespace": "realms_slots" + }, + "children": [ + "background" + ] + }, + "unread_story_count_panel/text/background": { + "file": "ui/realms_slots_screen.json", + "type": "image", + "extend": { + "name": "unread_story_count_text_background", + "namespace": "realms_slots" + } + }, + "edit_world_button_panel": { + "file": "ui/realms_slots_screen.json", + "type": "stack_panel", + "children": [ + "edit_world_button", + "padding", + "activate_world_button" + ] + }, + "edit_world_button_panel/edit_world_button": { + "file": "ui/realms_slots_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "edit_world_button_panel/padding": { + "file": "ui/realms_slots_screen.json", + "type": "panel" + }, + "edit_world_button_panel/activate_world_button": { + "file": "ui/realms_slots_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "world_slot_button": { + "file": "ui/realms_slots_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "world_slot_button_content": { + "file": "ui/realms_slots_screen.json", + "type": "stack_panel", + "children": [ + "world_slot_top", + "world_slot_bottom" + ] + }, + "world_slot_button_content/world_slot_top": { + "file": "ui/realms_slots_screen.json", + "type": "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": { + "file": "ui/realms_slots_screen.json", + "type": "image" + }, + "world_slot_button_content/world_slot_top/add_world_image_panel": { + "file": "ui/realms_slots_screen.json", + "type": "panel", + "children": [ + "plus_image" + ] + }, + "world_slot_button_content/world_slot_top/add_world_image_panel/plus_image": { + "file": "ui/realms_slots_screen.json", + "type": "image", + "extend": { + "name": "plus", + "namespace": "realms_slots" + } + }, + "world_slot_button_content/world_slot_top/world_thumbnail_image_panel": { + "file": "ui/realms_slots_screen.json", + "type": "panel", + "children": [ + "world_thumbnail" + ] + }, + "world_slot_button_content/world_slot_top/world_thumbnail_image_panel/world_thumbnail": { + "file": "ui/realms_slots_screen.json", + "type": "image", + "extend": { + "name": "world_thumbnail", + "namespace": "realms_slots" + } + }, + "world_slot_button_content/world_slot_top/edit_world_button_panel": { + "file": "ui/realms_slots_screen.json", + "type": "stack_panel", + "extend": { + "name": "edit_world_button_panel", + "namespace": "realms_slots" + } + }, + "world_slot_button_content/world_slot_top/foreground": { + "file": "ui/realms_slots_screen.json", + "type": "image" + }, + "world_slot_button_content/world_slot_top/check_image": { + "file": "ui/realms_slots_screen.json", + "type": "image", + "extend": { + "name": "check", + "namespace": "realms_slots" + } + }, + "world_slot_button_content/world_slot_bottom": { + "file": "ui/realms_slots_screen.json", + "type": "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": { + "file": "ui/realms_slots_screen.json", + "type": "image" + }, + "world_slot_button_content/world_slot_bottom/divider_line_white": { + "file": "ui/realms_slots_screen.json", + "type": "image" + }, + "world_slot_button_content/world_slot_bottom/add_world_text_panel": { + "file": "ui/realms_slots_screen.json", + "type": "panel", + "children": [ + "background_grey", + "background_green", + "add_world_text" + ] + }, + "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_grey": { + "file": "ui/realms_slots_screen.json", + "type": "image" + }, + "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_green": { + "file": "ui/realms_slots_screen.json", + "type": "image" + }, + "world_slot_button_content/world_slot_bottom/add_world_text_panel/add_world_text": { + "file": "ui/realms_slots_screen.json", + "type": "label" + }, + "world_slot_button_content/world_slot_bottom/world_info_panel": { + "file": "ui/realms_slots_screen.json", + "type": "panel", + "children": [ + "background", + "background_green", + "world_info_stack_panel" + ] + }, + "world_slot_button_content/world_slot_bottom/world_info_panel/background": { + "file": "ui/realms_slots_screen.json", + "type": "image" + }, + "world_slot_button_content/world_slot_bottom/world_info_panel/background_green": { + "file": "ui/realms_slots_screen.json", + "type": "image" + }, + "world_slot_button_content/world_slot_bottom/world_info_panel/world_info_stack_panel": { + "file": "ui/realms_slots_screen.json", + "type": "stack_panel", + "extend": { + "name": "world_info_stack_panel", + "namespace": "realms_slots" + } + }, + "world_info_stack_panel": { + "file": "ui/realms_slots_screen.json", + "type": "stack_panel", + "children": [ + "world_name_panel", + "world_type_panel", + "bottom_padding" + ] + }, + "world_info_stack_panel/world_name_panel": { + "file": "ui/realms_slots_screen.json", + "type": "panel", + "children": [ + "world_name" + ] + }, + "world_info_stack_panel/world_name_panel/world_name": { + "file": "ui/realms_slots_screen.json", + "type": "label" + }, + "world_info_stack_panel/world_type_panel": { + "file": "ui/realms_slots_screen.json", + "type": "panel", + "children": [ + "world_type" + ] + }, + "world_info_stack_panel/world_type_panel/world_type": { + "file": "ui/realms_slots_screen.json", + "type": "label" + }, + "world_info_stack_panel/bottom_padding": { + "file": "ui/realms_slots_screen.json", + "type": "panel" + }, + "main_stack_panel": { + "file": "ui/realms_slots_screen.json", + "type": "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": { + "file": "ui/realms_slots_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding", + "namespace": "realms_slots" + } + }, + "main_stack_panel/button_panel": { + "file": "ui/realms_slots_screen.json", + "type": "stack_panel", + "children": [ + "play_button", + "left_padding", + "edit_realm_button", + "right_padding", + "feed_panel_with_unread_count" + ] + }, + "main_stack_panel/button_panel/play_button": { + "file": "ui/realms_slots_screen.json", + "type": "button", + "extend": { + "name": "play_button", + "namespace": "realms_slots" + } + }, + "main_stack_panel/button_panel/left_padding": { + "file": "ui/realms_slots_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_padding", + "namespace": "realms_slots" + } + }, + "main_stack_panel/button_panel/edit_realm_button": { + "file": "ui/realms_slots_screen.json", + "type": "button", + "extend": { + "name": "edit_realm_button", + "namespace": "realms_slots" + } + }, + "main_stack_panel/button_panel/right_padding": { + "file": "ui/realms_slots_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_padding", + "namespace": "realms_slots" + } + }, + "main_stack_panel/button_panel/feed_panel_with_unread_count": { + "file": "ui/realms_slots_screen.json", + "type": "panel", + "children": [ + "feed_panel", + "unread_story_count" + ] + }, + "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel": { + "file": "ui/realms_slots_screen.json", + "type": "panel", + "children": [ + "realms_feed_button" + ] + }, + "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel/realms_feed_button": { + "file": "ui/realms_slots_screen.json", + "type": "button", + "extend": { + "name": "realms_feed_button", + "namespace": "realms_slots" + } + }, + "main_stack_panel/button_panel/feed_panel_with_unread_count/unread_story_count": { + "file": "ui/realms_slots_screen.json", + "type": "panel", + "extend": { + "name": "unread_story_count_panel", + "namespace": "realms_slots" + } + }, + "main_stack_panel/padding_1": { + "file": "ui/realms_slots_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding", + "namespace": "realms_slots" + } + }, + "main_stack_panel/text_panel_0": { + "file": "ui/realms_slots_screen.json", + "type": "panel", + "children": [ + "text" + ] + }, + "main_stack_panel/text_panel_0/text": { + "file": "ui/realms_slots_screen.json", + "type": "label" + }, + "main_stack_panel/padding_2": { + "file": "ui/realms_slots_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding", + "namespace": "realms_slots" + } + }, + "main_stack_panel/worlds_panel": { + "file": "ui/realms_slots_screen.json", + "type": "stack_panel", + "children": [ + "world_slot_1", + "padding_0", + "world_slot_2", + "padding_1", + "world_slot_3" + ] + }, + "main_stack_panel/worlds_panel/world_slot_1": { + "file": "ui/realms_slots_screen.json", + "type": "button", + "extend": { + "name": "world_slot_button", + "namespace": "realms_slots" + } + }, + "main_stack_panel/worlds_panel/padding_0": { + "file": "ui/realms_slots_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_padding_sibling_height", + "namespace": "realms_slots" + } + }, + "main_stack_panel/worlds_panel/world_slot_2": { + "file": "ui/realms_slots_screen.json", + "type": "button", + "extend": { + "name": "world_slot_button", + "namespace": "realms_slots" + } + }, + "main_stack_panel/worlds_panel/padding_1": { + "file": "ui/realms_slots_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_padding_sibling_height", + "namespace": "realms_slots" + } + }, + "main_stack_panel/worlds_panel/world_slot_3": { + "file": "ui/realms_slots_screen.json", + "type": "button", + "extend": { + "name": "world_slot_button", + "namespace": "realms_slots" + } + }, + "main_stack_panel/padding_3": { + "file": "ui/realms_slots_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding", + "namespace": "realms_slots" + } + }, + "main_stack_panel/text_panel_1": { + "file": "ui/realms_slots_screen.json", + "type": "panel", + "children": [ + "text" + ] + }, + "main_stack_panel/text_panel_1/text": { + "file": "ui/realms_slots_screen.json", + "type": "label" + }, + "realms_slots_screen": { + "file": "ui/realms_slots_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "realms_slots_screen_content": { + "file": "ui/realms_slots_screen.json", + "type": "panel", + "children": [ + "background" + ] + }, + "realms_slots_screen_content/background": { + "file": "ui/realms_slots_screen.json", + "type": "stack_panel", + "extend": { + "name": "fullscreen_header", + "namespace": "common" + } + }, + "realms_slots_screen_content_panel": { + "file": "ui/realms_slots_screen.json", + "type": "panel", + "children": [ + "main_scroll_panel" + ] + }, + "realms_slots_screen_content_panel/main_scroll_panel": { + "file": "ui/realms_slots_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + } + }, + "realms_settings": { + "settings_screen": { + "file": "ui/realms_settings_screen.json", + "type": "screen", + "extend": { + "name": "screen_base", + "namespace": "settings_common" + } + }, + "generic_section": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel" + }, + "generic_section_wrapper": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "generic_section" + ] + }, + "generic_section_wrapper/generic_section": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "generic_section", + "namespace": "realms_settings" + } + }, + "checkbox_image": { + "file": "ui/realms_settings_screen.json", + "type": "image" + }, + "checkbox_unchecked_state": { + "file": "ui/realms_settings_screen.json", + "type": "image", + "extend": { + "name": "checkbox_image", + "namespace": "realms_settings" + } + }, + "checkbox_checked_state": { + "file": "ui/realms_settings_screen.json", + "type": "image", + "extend": { + "name": "checkbox_image", + "namespace": "realms_settings" + } + }, + "checkbox_unchecked_hover_state": { + "file": "ui/realms_settings_screen.json", + "type": "image", + "extend": { + "name": "checkbox_image", + "namespace": "realms_settings" + } + }, + "checkbox_checked_hover_state": { + "file": "ui/realms_settings_screen.json", + "type": "image", + "extend": { + "name": "checkbox_image", + "namespace": "realms_settings" + } + }, + "checkbox_unchecked_locked_state": { + "file": "ui/realms_settings_screen.json", + "type": "image", + "extend": { + "name": "checkbox_image", + "namespace": "realms_settings" + } + }, + "checkbox_checked_locked_state": { + "file": "ui/realms_settings_screen.json", + "type": "image", + "extend": { + "name": "checkbox_image", + "namespace": "realms_settings" + } + }, + "player_count_label": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "option_info_label", + "namespace": "settings_common" + } + }, + "realm_duration_label": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "option_info_label", + "namespace": "settings_common" + } + }, + "realm_subscription_origin_label": { + "file": "ui/realms_settings_screen.json", + "type": "image", + "extend": { + "name": "option_info_label_with_bulb", + "namespace": "settings_common" + } + }, + "realm_consumable_to_subscription_info_label": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "option_info_label", + "namespace": "settings_common" + } + }, + "manage_subscriptions_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "delete_realm_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "open_realm_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "close_realm_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "subscriptions_section": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "loading_view", + "loading_failed_view", + "loaded_view" + ] + }, + "subscriptions_section/loading_view": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "subscriptions_section/loading_failed_view": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "subscriptions_section/loaded_view": { + "file": "ui/realms_settings_screen.json", + "type": "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": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "player_count_label", + "namespace": "realms_settings" + } + }, + "subscriptions_section/loaded_view/realm_duration_label": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "realm_duration_label", + "namespace": "realms_settings" + } + }, + "subscriptions_section/loaded_view/possible_store_mismatch": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "possible_store_mismatch", + "namespace": "general_section" + } + }, + "subscriptions_section/loaded_view/realm_subscription_origin_label": { + "file": "ui/realms_settings_screen.json", + "type": "image", + "extend": { + "name": "realm_subscription_origin_label", + "namespace": "realms_settings" + } + }, + "subscriptions_section/loaded_view/realm_consumable_to_subscription_info_label": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "realm_consumable_to_subscription_info_label", + "namespace": "realms_settings" + } + }, + "subscriptions_section/loaded_view/_0": { + "file": "ui/realms_settings_screen.json", + "type": "panel" + }, + "subscriptions_section/loaded_view/delete_realm_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "delete_realm_button", + "namespace": "realms_settings" + } + }, + "subscriptions_section/loaded_view/open_realm_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "open_realm_button", + "namespace": "realms_settings" + } + }, + "subscriptions_section/loaded_view/close_realm_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "close_realm_button", + "namespace": "realms_settings" + } + }, + "subscriptions_section/loaded_view/_1": { + "file": "ui/realms_settings_screen.json", + "type": "panel" + }, + "subscriptions_section/loaded_view/manage_subscriptions_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "manage_subscriptions_button", + "namespace": "realms_settings" + } + }, + "invite_link_item_content": { + "file": "ui/realms_settings_screen.json", + "type": "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": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "name_text", + "spacing_gap", + "expiry_text" + ] + }, + "invite_link_item_content/invite_link_item_name_and_expiry_text/name_text": { + "file": "ui/realms_settings_screen.json", + "type": "label", + "extend": { + "name": "label_text", + "namespace": "realms_settings" + } + }, + "invite_link_item_content/invite_link_item_name_and_expiry_text/spacing_gap": { + "file": "ui/realms_settings_screen.json", + "type": "panel" + }, + "invite_link_item_content/invite_link_item_name_and_expiry_text/expiry_text": { + "file": "ui/realms_settings_screen.json", + "type": "label", + "extend": { + "name": "label_text", + "namespace": "realms_settings" + } + }, + "invite_link_item_content/invite_link_item_state_text": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "state_text" + ] + }, + "invite_link_item_content/invite_link_item_state_text/state_text": { + "file": "ui/realms_settings_screen.json", + "type": "label", + "extend": { + "name": "label_text", + "namespace": "realms_settings" + } + }, + "invite_link_item_content/spacing_gap": { + "file": "ui/realms_settings_screen.json", + "type": "panel" + }, + "invite_link_item_template": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "invite_link_item_button" + ] + }, + "invite_link_item_template/invite_link_item_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "invite_links_section": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "loading_view", + "loading_failed_view", + "loaded_view" + ] + }, + "invite_links_section/loading_view": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "invite_links_section/loading_failed_view": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "invite_links_section/loaded_view": { + "file": "ui/realms_settings_screen.json", + "type": "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": { + "file": "ui/realms_settings_screen.json", + "type": "panel" + }, + "invite_links_section/loaded_view/invite_links_info": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "option_info_label", + "namespace": "settings_common" + } + }, + "invite_links_section/loaded_view/invite_links_grid": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel" + }, + "invite_links_section/loaded_view/spacing_gap_1": { + "file": "ui/realms_settings_screen.json", + "type": "panel" + }, + "invite_links_section/loaded_view/add_invite_link_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "advanced_section": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "loading_view", + "loading_failed_view", + "loaded_view" + ] + }, + "advanced_section/loading_view": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "advanced_section/loading_failed_view": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "advanced_section/loaded_view": { + "file": "ui/realms_settings_screen.json", + "type": "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": { + "file": "ui/realms_settings_screen.json", + "type": "panel" + }, + "advanced_section/loaded_view/server_preference": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "option_icon_label", + "namespace": "settings_common" + } + }, + "advanced_section/loaded_view/set_region_content": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "set_region_dropdown", + "namespace": "realms_settings" + } + }, + "advanced_section/loaded_view/changes_not_applied_panel": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "changes_not_applied_label" + ] + }, + "advanced_section/loaded_view/changes_not_applied_panel/changes_not_applied_label": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "advanced_section/loaded_view/spacing_gap_1": { + "file": "ui/realms_settings_screen.json", + "type": "panel" + }, + "advanced_section/loaded_view/region_help_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "set_region_dropdown": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "region_dropdown_content": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "region_dropdown_radio": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "radio_with_label_and_icon", + "namespace": "settings_common" + } + }, + "region_help_button_content": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "external_link_icon", + "spacing_gap_1", + "help_text" + ] + }, + "region_help_button_content/external_link_icon": { + "file": "ui/realms_settings_screen.json", + "type": "image" + }, + "region_help_button_content/spacing_gap_1": { + "file": "ui/realms_settings_screen.json", + "type": "panel" + }, + "region_help_button_content/help_text": { + "file": "ui/realms_settings_screen.json", + "type": "label", + "extend": { + "name": "label_text", + "namespace": "realms_settings" + } + }, + "tts_focus_border": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "non_interact_focus_border_button", + "namespace": "common" + } + }, + "saves_section": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "padding_saves_section_top", + "loaded_view", + "loading_indicator", + "loading_failed_panel" + ] + }, + "saves_section/padding_saves_section_top": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "saves_section/loaded_view": { + "file": "ui/realms_settings_screen.json", + "type": "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": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "storage_bar_with_header", + "focus_border" + ] + }, + "saves_section/loaded_view/storage_bar_header_panel/storage_bar_with_header": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "storage_bar_panel_with_header", + "namespace": "realms_settings" + } + }, + "saves_section/loaded_view/storage_bar_header_panel/focus_border": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "tts_focus_border", + "namespace": "realms_settings" + } + }, + "saves_section/loaded_view/padding3": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "saves_section/loaded_view/save_active_world_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "saves_section/loaded_view/padding4": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "saves_section/loaded_view/active_world_info": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "active_world_info_panel", + "namespace": "realms_settings" + } + }, + "saves_section/loaded_view/padding5": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "saves_section/loaded_view/storage_warning": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "warning_text_panel", + "focus_border" + ] + }, + "saves_section/loaded_view/storage_warning/warning_text_panel": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "warning_text_panel", + "namespace": "realms_settings" + } + }, + "saves_section/loaded_view/storage_warning/focus_border": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "tts_focus_border", + "namespace": "realms_settings" + } + }, + "saves_section/loaded_view/padding6": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "saves_section/loaded_view/save_list_container": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "tab_buttons", + "tab_content_panel" + ] + }, + "saves_section/loaded_view/save_list_container/tab_buttons": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "button_tabs_container", + "namespace": "realms_settings" + } + }, + "saves_section/loaded_view/save_list_container/tab_content_panel": { + "file": "ui/realms_settings_screen.json", + "type": "image", + "extend": { + "name": "tab_content_panel", + "namespace": "realms_settings" + } + }, + "saves_section/loaded_view/padding_loaded_view_bottom": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "saves_section/loaded_view/restore_info": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "option_info_label", + "namespace": "settings_common" + } + }, + "saves_section/loaded_view/saves_help_panel": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "saves_help_panel", + "namespace": "realms_settings" + } + }, + "saves_section/loading_indicator": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "restore_info", + "loading_text_panel", + "loading_bars" + ] + }, + "saves_section/loading_indicator/restore_info": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "option_info_label", + "namespace": "settings_common" + } + }, + "saves_section/loading_indicator/loading_text_panel": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "loading_text", + "loading_text_padding" + ] + }, + "saves_section/loading_indicator/loading_text_panel/loading_text": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "saves_section/loading_indicator/loading_text_panel/loading_text_padding": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "saves_section/loading_indicator/loading_bars": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "progress_loading_bars" + ] + }, + "saves_section/loading_indicator/loading_bars/progress_loading_bars": { + "file": "ui/realms_settings_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "feed_common" + } + }, + "saves_section/loading_failed_panel": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "restore_info", + "saves_help_panel", + "loading_failed_message" + ] + }, + "saves_section/loading_failed_panel/restore_info": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "option_info_label", + "namespace": "settings_common" + } + }, + "saves_section/loading_failed_panel/saves_help_panel": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "saves_help_panel", + "namespace": "realms_settings" + } + }, + "saves_section/loading_failed_panel/loading_failed_message": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "option_info_label", + "namespace": "settings_common" + } + }, + "saves_help_panel": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "padding_help_button_top", + "saves_help_button", + "padding_help_button_bottom" + ] + }, + "saves_help_panel/padding_help_button_top": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "saves_help_panel/saves_help_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "saves_help_panel/padding_help_button_bottom": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "saves_help_button_content": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "external_link_icon", + "spacing_gap_1", + "help_text" + ] + }, + "saves_help_button_content/external_link_icon": { + "file": "ui/realms_settings_screen.json", + "type": "image" + }, + "saves_help_button_content/spacing_gap_1": { + "file": "ui/realms_settings_screen.json", + "type": "panel" + }, + "saves_help_button_content/help_text": { + "file": "ui/realms_settings_screen.json", + "type": "label", + "extend": { + "name": "label_text", + "namespace": "realms_settings" + } + }, + "storage_bar_label_stack_panel": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "text_left", + "padding", + "text_right" + ] + }, + "storage_bar_label_stack_panel/text_left": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "storage_bar_label_stack_panel/padding": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "storage_bar_label_stack_panel/text_right": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "storage_bar_panel_with_header": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "label_panel", + "padding2", + "storage_bar_panel" + ] + }, + "storage_bar_panel_with_header/label_panel": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "heading_label" + ] + }, + "storage_bar_panel_with_header/label_panel/heading_label": { + "file": "ui/realms_settings_screen.json", + "type": "unknown" + }, + "storage_bar_panel_with_header/padding2": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "storage_bar_panel_with_header/storage_bar_panel": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "storage_bar_panel", + "namespace": "realms_settings" + } + }, + "realm_storage_heading_label": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "storage_bar_panel": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "storage_bar_label", + "padding", + "storage_bar" + ] + }, + "storage_bar_panel/storage_bar_label": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "storage_bar_label_stack_panel", + "namespace": "realms_settings" + } + }, + "storage_bar_panel/padding": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "storage_bar_panel/storage_bar": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "storage_bar", + "namespace": "realms_settings" + } + }, + "storage_bar_panel_with_tts_focus_border": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "storage_bar_panel", + "focus_border" + ] + }, + "storage_bar_panel_with_tts_focus_border/storage_bar_panel": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "storage_bar_panel", + "namespace": "realms_settings" + } + }, + "storage_bar_panel_with_tts_focus_border/focus_border": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "tts_focus_border", + "namespace": "realms_settings" + } + }, + "storage_bar": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "empty_progress_bar_beveled", + "storage_fill", + "storage_bar_beveled_overlay" + ] + }, + "storage_bar/empty_progress_bar_beveled": { + "file": "ui/realms_settings_screen.json", + "type": "image", + "extend": { + "name": "empty_progress_bar_beveled", + "namespace": "common" + } + }, + "storage_bar/storage_fill": { + "file": "ui/realms_settings_screen.json", + "type": "image" + }, + "storage_bar/storage_bar_beveled_overlay": { + "file": "ui/realms_settings_screen.json", + "type": "image", + "extend": { + "name": "progress_bar_beveled_overlay", + "namespace": "common" + } + }, + "active_world_info_panel": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "active_world_info_label_stack_panel", + "focus_border" + ] + }, + "active_world_info_panel/active_world_info_label_stack_panel": { + "file": "ui/realms_settings_screen.json", + "type": "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": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "active_world_info_panel/active_world_info_label_stack_panel/active_world_size_label": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "active_world_info_panel/focus_border": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "tts_focus_border", + "namespace": "realms_settings" + } + }, + "warning_text_panel": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "warning_panel", + "padding1", + "text_label" + ] + }, + "warning_text_panel/warning_panel": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "padding1", + "warning_image", + "padding2" + ] + }, + "warning_text_panel/warning_panel/padding1": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "warning_text_panel/warning_panel/warning_image": { + "file": "ui/realms_settings_screen.json", + "type": "image" + }, + "warning_text_panel/warning_panel/padding2": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "warning_text_panel/padding1": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "warning_text_panel/text_label": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "popup_dialog_background": { + "file": "ui/realms_settings_screen.json", + "type": "image" + }, + "popup_dialog_label": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "delete_selected_saves_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "cancel_popup_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "free_up_space_popup_content": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "common_panel", + "title_label", + "panel_indent", + "button_panel" + ] + }, + "free_up_space_popup_content/common_panel": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "free_up_space_popup_content/title_label": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "title_label", + "namespace": "common_dialogs" + } + }, + "free_up_space_popup_content/panel_indent": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "inside_header_panel" + ] + }, + "free_up_space_popup_content/panel_indent/inside_header_panel": { + "file": "ui/realms_settings_screen.json", + "type": "unknown" + }, + "free_up_space_popup_content/button_panel": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "left_button_panel", + "pad", + "right_button_panel" + ] + }, + "free_up_space_popup_content/button_panel/left_button_panel": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "cancel_popup_button", + "namespace": "realms_settings" + } + }, + "free_up_space_popup_content/button_panel/pad": { + "file": "ui/realms_settings_screen.json", + "type": "panel" + }, + "free_up_space_popup_content/button_panel/right_button_panel": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "delete_selected_saves_button", + "namespace": "realms_settings" + } + }, + "free_up_space_popup_scrolling_panel": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "free_up_space_text_description": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "free_up_space_popup_content_stack_panel": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "free_up_space_description_label", + "padding1", + "free_up_space_storage_bar_panel", + "padding2", + "free_up_space_manual_save_list_stack_panel" + ] + }, + "free_up_space_popup_content_stack_panel/free_up_space_description_label": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "free_up_space_popup_content_stack_panel/padding1": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_panel": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "storage_bar_panel_with_tts_focus_border", + "namespace": "realms_settings" + } + }, + "free_up_space_popup_content_stack_panel/padding2": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "free_up_space_popup_content_stack_panel/free_up_space_manual_save_list_stack_panel": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "manual_save_list_stack_panel", + "namespace": "realms_settings" + } + }, + "popup_dialog__free_up_space": { + "file": "ui/realms_settings_screen.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog", + "namespace": "popup_dialog" + }, + "children": [ + "free_up_space_popup_background", + "free_up_space_popup_content" + ] + }, + "popup_dialog__free_up_space/free_up_space_popup_background": { + "file": "ui/realms_settings_screen.json", + "type": "image", + "extend": { + "name": "popup_dialog_background", + "namespace": "realms_settings" + } + }, + "popup_dialog__free_up_space/free_up_space_popup_content": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "free_up_space_popup_content", + "namespace": "realms_settings" + } + }, + "top_tab": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "tab_top", + "namespace": "common_tabs" + } + }, + "tab_content": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "text" + ] + }, + "tab_content/text": { + "file": "ui/realms_settings_screen.json", + "type": "label", + "extend": { + "name": "common_button_text", + "namespace": "play" + } + }, + "manual_navigation_tab": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "realms_settings" + } + }, + "automatic_navigation_tab": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "realms_settings" + } + }, + "tab_navigation_panel_layout": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "content" + ] + }, + "tab_navigation_panel_layout/content": { + "file": "ui/realms_settings_screen.json", + "type": "unknown" + }, + "button_tabs_container": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "manual_navigation_tab", + "automatic_navigation_tab" + ] + }, + "button_tabs_container/manual_navigation_tab": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "manual_navigation_tab", + "namespace": "realms_settings" + } + }, + "button_tabs_container/automatic_navigation_tab": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "automatic_navigation_tab", + "namespace": "realms_settings" + } + }, + "tab_content_panel": { + "file": "ui/realms_settings_screen.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_4", + "namespace": "common" + }, + "children": [ + "background" + ] + }, + "tab_content_panel/background": { + "file": "ui/realms_settings_screen.json", + "type": "image", + "children": [ + "manual_save_list", + "automatic_save_list" + ] + }, + "tab_content_panel/background/manual_save_list": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "manual_save_list_panel", + "namespace": "realms_settings" + } + }, + "tab_content_panel/background/automatic_save_list": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "automatic_save_list_panel", + "namespace": "realms_settings" + } + }, + "save_list_panel": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "save_list" + ] + }, + "save_list_panel/save_list": { + "file": "ui/realms_settings_screen.json", + "type": "unknown" + }, + "manual_save_list_panel": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "save_list_panel", + "namespace": "realms_settings" + } + }, + "manual_tab_info_panel": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "info_label" + ] + }, + "manual_tab_info_panel/info_label": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "manual_save_list_stack_panel": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "padding1", + "save_tab_info_label", + "padding2", + "stack_panel", + "padding3" + ] + }, + "manual_save_list_stack_panel/padding1": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "manual_save_list_stack_panel/save_tab_info_label": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "manual_save_list_stack_panel/padding2": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "manual_save_list_stack_panel/stack_panel": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel" + }, + "manual_save_list_stack_panel/padding3": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "automatic_save_list_panel": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "save_list_panel", + "namespace": "realms_settings" + } + }, + "automatic_tab_info_panel": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "info_label" + ] + }, + "automatic_tab_info_panel/info_label": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "automatic_save_list_stack_panel": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "padding1", + "save_tab_info_label", + "padding2", + "stack_panel", + "padding3" + ] + }, + "automatic_save_list_stack_panel/padding1": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "automatic_save_list_stack_panel/save_tab_info_label": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "automatic_save_list_stack_panel/padding2": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "automatic_save_list_stack_panel/stack_panel": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel" + }, + "automatic_save_list_stack_panel/padding3": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "options_icon": { + "file": "ui/realms_settings_screen.json", + "type": "image" + }, + "saves_info_accordian": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "main_content_panel", + "sub_content_panel" + ] + }, + "saves_info_accordian/main_content_panel": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "checkbox_button", + "main_item_toggle", + "options_button" + ] + }, + "saves_info_accordian/main_content_panel/checkbox_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "saves_info_accordian/main_content_panel/main_item_toggle": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "dark_ui_toggle", + "namespace": "common_toggles" + } + }, + "saves_info_accordian/main_content_panel/options_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "saves_info_accordian/sub_content_panel": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "saves_content" + ] + }, + "saves_info_accordian/sub_content_panel/saves_content": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "option_saves_info_label", + "namespace": "realms_settings" + } + }, + "saves_info_accordion_checkbox": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "unchecked_control", + "checked_control", + "unchecked_hover_control", + "checked__hover_control" + ] + }, + "saves_info_accordion_checkbox/unchecked_control": { + "file": "ui/realms_settings_screen.json", + "type": "unknown" + }, + "saves_info_accordion_checkbox/checked_control": { + "file": "ui/realms_settings_screen.json", + "type": "unknown" + }, + "saves_info_accordion_checkbox/unchecked_hover_control": { + "file": "ui/realms_settings_screen.json", + "type": "unknown" + }, + "saves_info_accordion_checkbox/checked__hover_control": { + "file": "ui/realms_settings_screen.json", + "type": "unknown" + }, + "main_item_content": { + "file": "ui/realms_settings_screen.json", + "type": "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": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "date_saved_label", + "world_name_label" + ] + }, + "main_item_content/date_and_name/date_saved_label": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "main_item_content/date_and_name/world_name_label": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "main_item_content/time_and_size": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "save_data_time_label", + "save_data_size_label" + ] + }, + "main_item_content/time_and_size/save_data_time_label": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "main_item_content/time_and_size/save_data_size_label": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "main_item_content/padding_left_down_icon": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "main_item_content/down_icon": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "options_icon" + ] + }, + "main_item_content/down_icon/options_icon": { + "file": "ui/realms_settings_screen.json", + "type": "image" + }, + "main_item_content/padding_right_down_icon": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "option_saves_info_label": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "saves_info_container": { + "file": "ui/realms_settings_screen.json", + "type": "image", + "children": [ + "saves_info_content" + ] + }, + "saves_info_container/saves_info_content": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "saves_info_content", + "namespace": "realms_settings" + } + }, + "saves_info_content": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "version_panel", + "pack_header_panel", + "world_packs_label" + ] + }, + "saves_info_content/version_panel": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "version_panel", + "namespace": "realms_settings" + } + }, + "saves_info_content/pack_header_panel": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "pack_header_panel", + "namespace": "realms_settings" + } + }, + "saves_info_content/world_packs_label": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "version_panel": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "left_content" + ] + }, + "version_panel/left_content": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "save_version_label" + ] + }, + "version_panel/left_content/save_version_label": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "pack_header_panel": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "left_content" + ] + }, + "pack_header_panel/left_content": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "packs_label" + ] + }, + "pack_header_panel/left_content/packs_label": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "label_text": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "branch_grid_item_content": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "branch_text", + "commit_text" + ] + }, + "branch_grid_item_content/branch_text": { + "file": "ui/realms_settings_screen.json", + "type": "label", + "extend": { + "name": "label_text", + "namespace": "realms_settings" + } + }, + "branch_grid_item_content/commit_text": { + "file": "ui/realms_settings_screen.json", + "type": "label", + "extend": { + "name": "label_text", + "namespace": "realms_settings" + } + }, + "matching_item_button_content": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "branch_text", + "commit_text" + ] + }, + "matching_item_button_content/branch_text": { + "file": "ui/realms_settings_screen.json", + "type": "label", + "extend": { + "name": "label_text", + "namespace": "realms_settings" + } + }, + "matching_item_button_content/commit_text": { + "file": "ui/realms_settings_screen.json", + "type": "label", + "extend": { + "name": "label_text", + "namespace": "realms_settings" + } + }, + "branch_item_template": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "branch_item_button" + ] + }, + "branch_item_template/branch_item_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "branches_grid": { + "file": "ui/realms_settings_screen.json", + "type": "grid" + }, + "branch_set_panel": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "set_branch_id_label" + ] + }, + "branch_set_panel/set_branch_id_label": { + "file": "ui/realms_settings_screen.json", + "type": "label", + "extend": { + "name": "label_text", + "namespace": "realms_settings" + } + }, + "version_filter_text_box": { + "file": "ui/realms_settings_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "branch_page_panel": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "prev_button", + "page_text", + "next_button" + ] + }, + "branch_page_panel/prev_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "branch_page_panel/page_text": { + "file": "ui/realms_settings_screen.json", + "type": "label", + "extend": { + "name": "label_text", + "namespace": "realms_settings" + } + }, + "branch_page_panel/next_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "branches_panel": { + "file": "ui/realms_settings_screen.json", + "type": "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": { + "file": "ui/realms_settings_screen.json", + "type": "label", + "extend": { + "name": "selector_group_label", + "namespace": "settings_common" + } + }, + "branches_panel/spacing_gap_1": { + "file": "ui/realms_settings_screen.json", + "type": "panel" + }, + "branches_panel/set_branch_version_label": { + "file": "ui/realms_settings_screen.json", + "type": "label", + "extend": { + "name": "label_text", + "namespace": "realms_settings" + } + }, + "branches_panel/branch_set_panel": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "branch_set_panel", + "namespace": "realms_settings" + } + }, + "branches_panel/spacing_gap_2": { + "file": "ui/realms_settings_screen.json", + "type": "panel" + }, + "branches_panel/matching_version_label": { + "file": "ui/realms_settings_screen.json", + "type": "label", + "extend": { + "name": "selector_group_label", + "namespace": "settings_common" + } + }, + "branches_panel/matching_item_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "branches_panel/spacing_gap_3": { + "file": "ui/realms_settings_screen.json", + "type": "panel" + }, + "branches_panel/all_commits_label": { + "file": "ui/realms_settings_screen.json", + "type": "label", + "extend": { + "name": "selector_group_label", + "namespace": "settings_common" + } + }, + "branches_panel/version_filter_text_box": { + "file": "ui/realms_settings_screen.json", + "type": "edit_box", + "extend": { + "name": "version_filter_text_box", + "namespace": "realms_settings" + } + }, + "branches_panel/branches_grid": { + "file": "ui/realms_settings_screen.json", + "type": "grid", + "extend": { + "name": "branches_grid", + "namespace": "realms_settings" + } + }, + "branches_panel/spacing_gap": { + "file": "ui/realms_settings_screen.json", + "type": "panel" + }, + "branches_panel/branch_page_panel": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "branch_page_panel", + "namespace": "realms_settings" + } + }, + "branch_section": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "branches_panel" + ] + }, + "branch_section/branches_panel": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "branches_panel", + "namespace": "realms_settings" + } + }, + "test_content": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "realms_allowlist_content_panel", + "gamepad_helpers" + ] + }, + "test_content/realms_allowlist_content_panel": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "realms_allowlist_content_panel", + "namespace": "realms_allowlist" + } + }, + "test_content/gamepad_helpers": { + "file": "ui/realms_settings_screen.json", + "type": "unknown", + "extend": { + "name": "gamepad_helpers", + "namespace": "realms_allowlist" + } + }, + "selector_panel": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "play_button", + "disabled_play_button", + "expired_play_button", + "padding", + "selector_group_label", + "world_button", + "members_button", + "saves_button", + "subscription_button", + "dev_options_button", + "invite_links_button", + "advanced_button" + ] + }, + "selector_panel/play_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "action_button_dark_text", + "namespace": "settings_common" + } + }, + "selector_panel/disabled_play_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "selector_panel/expired_play_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "selector_panel/padding": { + "file": "ui/realms_settings_screen.json", + "type": "panel" + }, + "selector_panel/selector_group_label": { + "file": "ui/realms_settings_screen.json", + "type": "label", + "extend": { + "name": "selector_group_label", + "namespace": "settings_common" + } + }, + "selector_panel/world_button": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "selector_panel/members_button": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "selector_panel/saves_button": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "selector_panel/subscription_button": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "selector_panel/dev_options_button": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "selector_panel/invite_links_button": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "selector_panel/advanced_button": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "section_content_panels": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "world_section", + "players_section", + "subscription_section", + "invite_links_section", + "advanced_section", + "dev_options_section", + "saves_section" + ] + }, + "section_content_panels/world_section": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "generic_section_wrapper", + "namespace": "realms_settings" + } + }, + "section_content_panels/players_section": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "generic_section_wrapper", + "namespace": "realms_settings" + } + }, + "section_content_panels/subscription_section": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "generic_section_wrapper", + "namespace": "realms_settings" + } + }, + "section_content_panels/invite_links_section": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "generic_section_wrapper", + "namespace": "realms_settings" + } + }, + "section_content_panels/advanced_section": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "generic_section_wrapper", + "namespace": "realms_settings" + } + }, + "section_content_panels/dev_options_section": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "generic_section_wrapper", + "namespace": "realms_settings" + } + }, + "section_content_panels/saves_section": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "generic_section_wrapper", + "namespace": "realms_settings" + } + }, + "popup_dialog__save_options": { + "file": "ui/realms_settings_screen.json", + "type": "input_panel", + "extend": { + "name": "form_fit_modal_dialog_popup", + "namespace": "popup_dialog" + } + }, + "save_options_popup_content": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "restore_button", + "spacing_1", + "download_button", + "spacing_2", + "save_button_container", + "delete_button_container" + ] + }, + "save_options_popup_content/restore_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "save_options_popup_content/spacing_1": { + "file": "ui/realms_settings_screen.json", + "type": "panel" + }, + "save_options_popup_content/download_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "save_options_popup_content/spacing_2": { + "file": "ui/realms_settings_screen.json", + "type": "panel" + }, + "save_options_popup_content/save_button_container": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "save_button", + "spacing_3" + ] + }, + "save_options_popup_content/save_button_container/save_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "save_options_popup_content/save_button_container/spacing_3": { + "file": "ui/realms_settings_screen.json", + "type": "panel" + }, + "save_options_popup_content/delete_button_container": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "delete_button" + ] + }, + "save_options_popup_content/delete_button_container/delete_button": { + "file": "ui/realms_settings_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "standalone_dialog_title": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "left_padding", + "dialog_title_label", + "right_padding" + ] + }, + "standalone_dialog_title/left_padding": { + "file": "ui/realms_settings_screen.json", + "type": "panel" + }, + "standalone_dialog_title/dialog_title_label": { + "file": "ui/realms_settings_screen.json", + "type": "label" + }, + "standalone_dialog_title/right_padding": { + "file": "ui/realms_settings_screen.json", + "type": "panel" + }, + "standalone_dialog_content": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "dialog_title", + "content_area" + ] + }, + "standalone_dialog_content/dialog_title": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "standalone_dialog_title", + "namespace": "realms_settings" + } + }, + "standalone_dialog_content/content_area": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "standalone_content_area", + "namespace": "realms_settings" + } + }, + "standalone_content_area": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "children": [ + "control" + ] + }, + "standalone_content_area/control": { + "file": "ui/realms_settings_screen.json", + "type": "stack_panel", + "children": [ + "scrolling_panel" + ] + }, + "standalone_content_area/control/scrolling_panel": { + "file": "ui/realms_settings_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "realms_settings_screen_base_no_selector_area": { + "file": "ui/realms_settings_screen.json", + "type": "screen", + "extend": { + "name": "dynamic_dialog_screen", + "namespace": "settings_common" + } + }, + "screen_realm_hub_manage_members": { + "file": "ui/realms_settings_screen.json", + "type": "screen", + "extend": { + "name": "realms_settings_screen_base_no_selector_area", + "namespace": "realms_settings" + } + }, + "screen_realm_hub_invite_links": { + "file": "ui/realms_settings_screen.json", + "type": "screen", + "extend": { + "name": "realms_settings_screen_base_no_selector_area", + "namespace": "realms_settings" + } + }, + "screen_realm_hub_saves": { + "file": "ui/realms_settings_screen.json", + "type": "screen", + "extend": { + "name": "realms_settings_screen_base_no_selector_area", + "namespace": "realms_settings" + } + } + }, + "realms_allowlist": { + "spacing_gap": { + "file": "ui/realms_allowlist.json", + "type": "panel" + }, + "friends_containing_panel": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "children": [ + "friends_panel" + ] + }, + "friends_containing_panel/friends_panel": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "friends_panel", + "namespace": "realms_allowlist" + } + }, + "friends_panel": { + "file": "ui/realms_allowlist.json", + "type": "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": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "add_friends_and_invite_link_panel", + "namespace": "realms_allowlist" + } + }, + "friends_panel/option_dropdown_permissions": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "friends_panel/player_filter_label": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "player_filter_label", + "namespace": "realms_allowlist" + } + }, + "friends_panel/player_filter_text_box": { + "file": "ui/realms_allowlist.json", + "type": "edit_box", + "extend": { + "name": "player_filter_text_box", + "namespace": "realms_allowlist" + } + }, + "friends_panel/spacing_gap_members_top": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "spacing_gap", + "namespace": "realms_allowlist" + } + }, + "friends_panel/lists": { + "file": "ui/realms_allowlist.json", + "type": "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": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "members_label", + "namespace": "realms_allowlist" + } + }, + "friends_panel/lists/members_stack": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "factory_stack", + "namespace": "realms_allowlist" + } + }, + "friends_panel/lists/spacing_gap_members_bottom": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "spacing_gap", + "namespace": "realms_allowlist" + } + }, + "friends_panel/lists/members_page_panel": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "page_panel", + "namespace": "realms_allowlist" + } + }, + "friends_panel/lists/invited_friends_label": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "invited_friends_label", + "namespace": "realms_allowlist" + } + }, + "friends_panel/lists/invited_stack": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "factory_stack", + "namespace": "realms_allowlist" + } + }, + "friends_panel/lists/spacing_gap_invited_friends": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "spacing_gap", + "namespace": "realms_allowlist" + } + }, + "friends_panel/lists/invited_friends_page_panel": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "page_panel", + "namespace": "realms_allowlist" + } + }, + "friends_panel/lists/uninvited_friends_label": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "uninvited_friends_label", + "namespace": "realms_allowlist" + } + }, + "friends_panel/lists/uninvited_stack": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "factory_stack", + "namespace": "realms_allowlist" + } + }, + "friends_panel/lists/spacing_gap_uninvited_friends": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "spacing_gap", + "namespace": "realms_allowlist" + } + }, + "friends_panel/lists/uninvited_friends_page_panel": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "page_panel", + "namespace": "realms_allowlist" + } + }, + "friends_panel/lists/blocked_players_label": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "blocked_players_label", + "namespace": "realms_allowlist" + } + }, + "friends_panel/lists/blocked_players_stack": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "factory_stack", + "namespace": "realms_allowlist" + } + }, + "friends_panel/lists/spacing_gap_blocked_players": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "spacing_gap", + "namespace": "realms_allowlist" + } + }, + "friends_panel/lists/blocked_players_page_panel": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "page_panel", + "namespace": "realms_allowlist" + } + }, + "friends_panel/lists/no_invites_label": { + "file": "ui/realms_allowlist.json", + "type": "label", + "extend": { + "name": "no_invites_label", + "namespace": "realms_allowlist" + } + }, + "friends_panel/loading_friends": { + "file": "ui/realms_allowlist.json", + "type": "label", + "extend": { + "name": "loading_friends", + "namespace": "realms_allowlist" + } + }, + "add_friends_and_invite_link_panel": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "children": [ + "allowlist_stack_panel" + ] + }, + "add_friends_and_invite_link_panel/allowlist_stack_panel": { + "file": "ui/realms_allowlist.json", + "type": "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": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "find_friends_button_panel", + "namespace": "realms_allowlist" + } + }, + "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_1": { + "file": "ui/realms_allowlist.json", + "type": "panel" + }, + "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "children": [ + "invite_links_button" + ] + }, + "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel/invite_links_button": { + "file": "ui/realms_allowlist.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_2": { + "file": "ui/realms_allowlist.json", + "type": "panel" + }, + "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "children": [ + "clear_members_button" + ] + }, + "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel/clear_members_button": { + "file": "ui/realms_allowlist.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "options_icon": { + "file": "ui/realms_allowlist.json", + "type": "image" + }, + "account_link_image": { + "file": "ui/realms_allowlist.json", + "type": "image" + }, + "account_link_icon": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "children": [ + "space_01", + "account_link_image", + "space_03" + ] + }, + "account_link_icon/space_01": { + "file": "ui/realms_allowlist.json", + "type": "panel" + }, + "account_link_icon/account_link_image": { + "file": "ui/realms_allowlist.json", + "type": "image", + "extend": { + "name": "account_link_image", + "namespace": "invite" + } + }, + "account_link_icon/space_03": { + "file": "ui/realms_allowlist.json", + "type": "panel" + }, + "find_friends_button_panel": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "children": [ + "find_friends_button" + ] + }, + "find_friends_button_panel/find_friends_button": { + "file": "ui/realms_allowlist.json", + "type": "button", + "extend": { + "name": "find_friends_button", + "namespace": "realms_allowlist" + } + }, + "invited_friends_label": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "children": [ + "friend_title" + ] + }, + "invited_friends_label/friend_title": { + "file": "ui/realms_allowlist.json", + "type": "label" + }, + "player_filter_label": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "children": [ + "player_filter_title" + ] + }, + "player_filter_label/player_filter_title": { + "file": "ui/realms_allowlist.json", + "type": "label" + }, + "members_label": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "children": [ + "friend_title", + "padding_panel", + "loading_text" + ] + }, + "members_label/friend_title": { + "file": "ui/realms_allowlist.json", + "type": "label" + }, + "members_label/padding_panel": { + "file": "ui/realms_allowlist.json", + "type": "panel" + }, + "members_label/loading_text": { + "file": "ui/realms_allowlist.json", + "type": "label" + }, + "blocked_players_label": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "children": [ + "friend_title" + ] + }, + "blocked_players_label/friend_title": { + "file": "ui/realms_allowlist.json", + "type": "label" + }, + "uninvited_friends_label": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "children": [ + "friend_title" + ] + }, + "uninvited_friends_label/friend_title": { + "file": "ui/realms_allowlist.json", + "type": "label" + }, + "no_invites_label": { + "file": "ui/realms_allowlist.json", + "type": "label", + "extend": { + "name": "panel_text", + "namespace": "realms_allowlist" + } + }, + "loading_friends": { + "file": "ui/realms_allowlist.json", + "type": "label", + "extend": { + "name": "panel_text", + "namespace": "realms_allowlist" + } + }, + "blocked_grid_item": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "children": [ + "blocked_panel" + ] + }, + "blocked_grid_item/blocked_panel": { + "file": "ui/realms_allowlist.json", + "type": "image", + "extend": { + "name": "blocked_panel", + "namespace": "realms_allowlist" + } + }, + "factory_stack": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel" + }, + "member_factory_xbl_profile": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "xbl_profile_panel_factory", + "namespace": "realms_allowlist" + } + }, + "member_factory_linked_account": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "linked_account_panel_factory", + "namespace": "realms_allowlist" + } + }, + "invited_factory_xbl_profile": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "xbl_profile_panel_factory", + "namespace": "realms_allowlist" + } + }, + "invited_factory_linked_account": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "linked_account_panel_factory", + "namespace": "realms_allowlist" + } + }, + "uninvited_factory_xbl_profile": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "xbl_profile_panel_factory", + "namespace": "realms_allowlist" + } + }, + "uninvited_factory_linked_account": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "linked_account_panel_factory", + "namespace": "realms_allowlist" + } + }, + "blocked_factory_xbl_profile": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "xbl_profile_blocked_panel_factory", + "namespace": "realms_allowlist" + } + }, + "blocked_factory_linked_account": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "linked_account_blocked_panel_factory", + "namespace": "realms_allowlist" + } + }, + "xbl_profile_panel_factory": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "gapped_xbl_profile_panel", + "namespace": "realms_allowlist" + } + }, + "xbl_profile_blocked_panel_factory": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "gapped_blocked_xbl_profile_panel", + "namespace": "realms_allowlist" + } + }, + "linked_account_panel_factory": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "gapped_linked_account_panel", + "namespace": "realms_allowlist" + } + }, + "linked_account_blocked_panel_factory": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "gapped_blocked_linked_account_panel", + "namespace": "realms_allowlist" + } + }, + "xbl_profile_panel": { + "file": "ui/realms_allowlist.json", + "type": "image", + "extend": { + "name": "main_banner", + "namespace": "realms_common" + }, + "children": [ + "player_status_panel", + "xbl_user_panel", + "right_controls_panel", + "progress" + ] + }, + "xbl_profile_panel/player_status_panel": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "player_status_panel", + "namespace": "realms_allowlist" + } + }, + "xbl_profile_panel/xbl_user_panel": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "xbl_user_panel", + "namespace": "realms_allowlist" + } + }, + "xbl_profile_panel/right_controls_panel": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "right_controls_panel", + "namespace": "realms_allowlist" + } + }, + "xbl_profile_panel/progress": { + "file": "ui/realms_allowlist.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "progress" + } + }, + "factory_gap_template": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "children": [ + "gapped_control", + "spacing1" + ] + }, + "factory_gap_template/gapped_control": { + "file": "ui/realms_allowlist.json", + "type": "unknown" + }, + "factory_gap_template/spacing1": { + "file": "ui/realms_allowlist.json", + "type": "panel" + }, + "gapped_xbl_profile_panel": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "factory_gap_template", + "namespace": "realms_allowlist" + } + }, + "gapped_linked_account_panel": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "factory_gap_template", + "namespace": "realms_allowlist" + } + }, + "gapped_blocked_xbl_profile_panel": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "factory_gap_template", + "namespace": "realms_allowlist" + } + }, + "gapped_blocked_linked_account_panel": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "factory_gap_template", + "namespace": "realms_allowlist" + } + }, + "blocked_panel": { + "file": "ui/realms_allowlist.json", + "type": "image", + "extend": { + "name": "main_banner", + "namespace": "realms_common" + }, + "children": [ + "xbl_user_panel", + "unblock_button" + ] + }, + "blocked_panel/xbl_user_panel": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "xbl_user_panel", + "namespace": "realms_allowlist" + } + }, + "blocked_panel/unblock_button": { + "file": "ui/realms_allowlist.json", + "type": "button", + "extend": { + "name": "unblock_button", + "namespace": "realms_allowlist" + } + }, + "linked_account_panel": { + "file": "ui/realms_allowlist.json", + "type": "image", + "extend": { + "name": "main_banner", + "namespace": "realms_common" + }, + "children": [ + "linked_account_positioning_panel", + "right_controls_panel", + "progress" + ] + }, + "linked_account_panel/linked_account_positioning_panel": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "linked_user_stack_panel", + "namespace": "realms_allowlist" + } + }, + "linked_account_panel/right_controls_panel": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "right_controls_panel", + "namespace": "realms_allowlist" + } + }, + "linked_account_panel/progress": { + "file": "ui/realms_allowlist.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "progress" + } + }, + "linked_account_blocked_panel": { + "file": "ui/realms_allowlist.json", + "type": "image", + "extend": { + "name": "main_banner", + "namespace": "realms_common" + }, + "children": [ + "linked_account_positioning_panel", + "unblock_button", + "progress" + ] + }, + "linked_account_blocked_panel/linked_account_positioning_panel": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "linked_user_stack_panel", + "namespace": "realms_allowlist" + } + }, + "linked_account_blocked_panel/unblock_button": { + "file": "ui/realms_allowlist.json", + "type": "button", + "extend": { + "name": "unblock_button", + "namespace": "realms_allowlist" + } + }, + "linked_account_blocked_panel/progress": { + "file": "ui/realms_allowlist.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "progress" + } + }, + "xbl_user_panel": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "children": [ + "spacing1", + "platform_icon_positioner", + "gamerpic_panel", + "spacing2", + "gamertag_label_panel" + ] + }, + "xbl_user_panel/spacing1": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "horizontal_indent", + "namespace": "realms_allowlist" + } + }, + "xbl_user_panel/platform_icon_positioner": { + "file": "ui/realms_allowlist.json", + "type": "panel" + }, + "xbl_user_panel/gamerpic_panel": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "gamerpic_panel", + "namespace": "realms_allowlist" + } + }, + "xbl_user_panel/spacing2": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "horizontal_indent", + "namespace": "realms_allowlist" + } + }, + "xbl_user_panel/gamertag_label_panel": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "gamertag_label_panel", + "namespace": "realms_allowlist" + } + }, + "third_party_user_panel": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "children": [ + "spacing1", + "profile_picture", + "spacing2", + "third_party_profile_label" + ] + }, + "third_party_user_panel/spacing1": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "horizontal_indent", + "namespace": "realms_allowlist" + } + }, + "third_party_user_panel/profile_picture": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "third_party_profile_pic_panel", + "namespace": "realms_allowlist" + } + }, + "third_party_user_panel/spacing2": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "horizontal_indent", + "namespace": "realms_allowlist" + } + }, + "third_party_user_panel/third_party_profile_label": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "third_party_profile_label", + "namespace": "realms_allowlist" + } + }, + "linked_profile_pictures_panel": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "children": [ + "pp2", + "account_link", + "pp1" + ] + }, + "linked_profile_pictures_panel/pp2": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "third_party_profile_pic_panel", + "namespace": "realms_allowlist" + } + }, + "linked_profile_pictures_panel/account_link": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "account_link_icon", + "namespace": "realms_allowlist" + } + }, + "linked_profile_pictures_panel/pp1": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "gamerpic_panel", + "namespace": "realms_allowlist" + } + }, + "platform_profile_names": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "children": [ + "friend_grid_third_party_tag", + "spacer_02", + "friend_grid_xbl_gamertag", + "spacer_03" + ] + }, + "platform_profile_names/friend_grid_third_party_tag": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "third_party_profile_label", + "namespace": "realms_allowlist" + } + }, + "platform_profile_names/spacer_02": { + "file": "ui/realms_allowlist.json", + "type": "panel" + }, + "platform_profile_names/friend_grid_xbl_gamertag": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "gamertag_label_panel", + "namespace": "realms_allowlist" + } + }, + "platform_profile_names/spacer_03": { + "file": "ui/realms_allowlist.json", + "type": "panel" + }, + "linked_user_stack_panel": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "children": [ + "allow_offset_control", + "platform_icon_positioner", + "spacing1", + "profile_picture", + "spacing2", + "platform_names_label", + "spacing3" + ] + }, + "linked_user_stack_panel/allow_offset_control": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "children": [ + "player_status_panel" + ] + }, + "linked_user_stack_panel/allow_offset_control/player_status_panel": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "player_status_panel", + "namespace": "realms_allowlist" + } + }, + "linked_user_stack_panel/platform_icon_positioner": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "children": [ + "platform_icon" + ] + }, + "linked_user_stack_panel/platform_icon_positioner/platform_icon": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "platform_icon_panel", + "namespace": "invite" + } + }, + "linked_user_stack_panel/spacing1": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "horizontal_indent", + "namespace": "realms_allowlist" + } + }, + "linked_user_stack_panel/profile_picture": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "linked_profile_pictures_panel", + "namespace": "realms_allowlist" + } + }, + "linked_user_stack_panel/spacing2": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "horizontal_indent", + "namespace": "realms_allowlist" + } + }, + "linked_user_stack_panel/platform_names_label": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "platform_profile_names", + "namespace": "realms_allowlist" + } + }, + "linked_user_stack_panel/spacing3": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "horizontal_indent", + "namespace": "realms_allowlist" + } + }, + "horizontal_indent": { + "file": "ui/realms_allowlist.json", + "type": "panel" + }, + "vertical_indent": { + "file": "ui/realms_allowlist.json", + "type": "panel" + }, + "gamerpic_panel": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "children": [ + "black_border", + "gamer_pic" + ] + }, + "gamerpic_panel/black_border": { + "file": "ui/realms_allowlist.json", + "type": "image", + "extend": { + "name": "black_border", + "namespace": "realms_allowlist" + } + }, + "gamerpic_panel/gamer_pic": { + "file": "ui/realms_allowlist.json", + "type": "custom", + "extend": { + "name": "gamer_pic", + "namespace": "realms_allowlist" + } + }, + "third_party_profile_pic_panel": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "children": [ + "black_border", + "third_party_profile_picture" + ] + }, + "third_party_profile_pic_panel/black_border": { + "file": "ui/realms_allowlist.json", + "type": "image", + "extend": { + "name": "black_border", + "namespace": "realms_allowlist" + } + }, + "third_party_profile_pic_panel/third_party_profile_picture": { + "file": "ui/realms_allowlist.json", + "type": "image", + "extend": { + "name": "third_party_profile_picture", + "namespace": "realms_allowlist" + } + }, + "gamertag_label_panel": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "children": [ + "gamertag_label", + "real_name_label" + ] + }, + "gamertag_label_panel/gamertag_label": { + "file": "ui/realms_allowlist.json", + "type": "label", + "extend": { + "name": "gamertag_label", + "namespace": "realms_allowlist" + } + }, + "gamertag_label_panel/real_name_label": { + "file": "ui/realms_allowlist.json", + "type": "label", + "extend": { + "name": "real_name_label", + "namespace": "realms_allowlist" + } + }, + "third_party_profile_label": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "children": [ + "profile_name_label" + ] + }, + "third_party_profile_label/profile_name_label": { + "file": "ui/realms_allowlist.json", + "type": "label", + "extend": { + "name": "third_party_profile_name_label", + "namespace": "realms_allowlist" + } + }, + "panel_text": { + "file": "ui/realms_allowlist.json", + "type": "label" + }, + "gamertag_label": { + "file": "ui/realms_allowlist.json", + "type": "label", + "extend": { + "name": "panel_text", + "namespace": "realms_allowlist" + } + }, + "third_party_profile_name_label": { + "file": "ui/realms_allowlist.json", + "type": "label", + "extend": { + "name": "panel_text", + "namespace": "realms_allowlist" + } + }, + "real_name_label": { + "file": "ui/realms_allowlist.json", + "type": "label", + "extend": { + "name": "panel_text", + "namespace": "realms_allowlist" + } + }, + "right_settings_panel": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "children": [ + "member_settings" + ] + }, + "right_settings_panel/member_settings": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "member_settings", + "namespace": "realms_allowlist" + } + }, + "member_settings": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "children": [ + "minus_button", + "horizontal_space", + "member_permissions", + "op_deop_button" + ] + }, + "member_settings/minus_button": { + "file": "ui/realms_allowlist.json", + "type": "button", + "extend": { + "name": "minus_button", + "namespace": "realms_allowlist" + } + }, + "member_settings/horizontal_space": { + "file": "ui/realms_allowlist.json", + "type": "panel" + }, + "member_settings/member_permissions": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "permissions_dropdown", + "namespace": "realms_allowlist" + } + }, + "member_settings/op_deop_button": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "op_deop_button", + "namespace": "realms_allowlist" + } + }, + "right_controls_panel": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "children": [ + "right_settings_panel", + "uninvited_friends_invite_button" + ] + }, + "right_controls_panel/right_settings_panel": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "extend": { + "name": "right_settings_panel", + "namespace": "realms_allowlist" + } + }, + "right_controls_panel/uninvited_friends_invite_button": { + "file": "ui/realms_allowlist.json", + "type": "button", + "extend": { + "name": "invite_button", + "namespace": "realms_allowlist" + } + }, + "player_status_panel": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "children": [ + "player_online_icon", + "player_offline_icon" + ] + }, + "player_status_panel/player_online_icon": { + "file": "ui/realms_allowlist.json", + "type": "image", + "extend": { + "name": "player_online_icon", + "namespace": "realms_allowlist" + } + }, + "player_status_panel/player_offline_icon": { + "file": "ui/realms_allowlist.json", + "type": "image", + "extend": { + "name": "player_offline_icon", + "namespace": "realms_allowlist" + } + }, + "permissions_dropdown": { + "file": "ui/realms_allowlist.json", + "type": "stack_panel", + "children": [ + "vertical_space", + "option_dropdown_permissions" + ] + }, + "permissions_dropdown/vertical_space": { + "file": "ui/realms_allowlist.json", + "type": "panel" + }, + "permissions_dropdown/option_dropdown_permissions": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "invite_button": { + "file": "ui/realms_allowlist.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "minus_button": { + "file": "ui/realms_allowlist.json", + "type": "button", + "extend": { + "name": "light_glyph_button", + "namespace": "common_buttons" + } + }, + "unblock_label": { + "file": "ui/realms_allowlist.json", + "type": "label" + }, + "unblock_button": { + "file": "ui/realms_allowlist.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "op_deop_button": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "light_image_toggle_collection", + "namespace": "common_toggles" + } + }, + "find_friends_button": { + "file": "ui/realms_allowlist.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "black_border": { + "file": "ui/realms_allowlist.json", + "type": "image" + }, + "gamer_pic": { + "file": "ui/realms_allowlist.json", + "type": "custom" + }, + "third_party_profile_picture": { + "file": "ui/realms_allowlist.json", + "type": "image" + }, + "player_online_icon": { + "file": "ui/realms_allowlist.json", + "type": "image" + }, + "player_offline_icon": { + "file": "ui/realms_allowlist.json", + "type": "image" + }, + "plus_icon": { + "file": "ui/realms_allowlist.json", + "type": "image" + }, + "more_icon": { + "file": "ui/realms_allowlist.json", + "type": "image" + }, + "share_icon": { + "file": "ui/realms_allowlist.json", + "type": "image" + }, + "minus_icon": { + "file": "ui/realms_allowlist.json", + "type": "image" + }, + "op_icon": { + "file": "ui/realms_allowlist.json", + "type": "image" + }, + "deop_icon": { + "file": "ui/realms_allowlist.json", + "type": "image" + }, + "player_filter_text_box": { + "file": "ui/realms_allowlist.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "page_panel": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "children": [ + "prev_button", + "page_text", + "next_button" + ] + }, + "page_panel/prev_button": { + "file": "ui/realms_allowlist.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "page_panel/page_text": { + "file": "ui/realms_allowlist.json", + "type": "label" + }, + "page_panel/next_button": { + "file": "ui/realms_allowlist.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "realms_allowlist_panel_content": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "realms_allowlist_content_panel": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "main_panel_one_button", + "namespace": "common_dialogs" + } + }, + "realms_allowlist_content_panel_children": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "children": [ + "realms_allowlist_panel_content", + "done_button" + ] + }, + "realms_allowlist_content_panel_children/realms_allowlist_panel_content": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "realms_allowlist_panel_content", + "namespace": "realms_allowlist" + } + }, + "realms_allowlist_content_panel_children/done_button": { + "file": "ui/realms_allowlist.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "realms_allowlist_screen": { + "file": "ui/realms_allowlist.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "realms_allowlist_content": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "children": [ + "root_panel" + ] + }, + "realms_allowlist_content/root_panel": { + "file": "ui/realms_allowlist.json", + "type": "input_panel", + "children": [ + "realms_allowlist_content_panel" + ] + }, + "realms_allowlist_content/root_panel/realms_allowlist_content_panel": { + "file": "ui/realms_allowlist.json", + "type": "panel", + "extend": { + "name": "realms_allowlist_content_panel", + "namespace": "realms_allowlist" + } + }, + "transparent_close_button": { + "file": "ui/realms_allowlist.json", + "type": "button", + "extend": { + "name": "transparent_content_button", + "namespace": "common_buttons" + } + } + }, + "realms_invite_link_settings": { + "generic_section_wrapper": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel", + "children": [ + "generic_section" + ] + }, + "generic_section_wrapper/generic_section": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "generic_section", + "namespace": "realms_settings" + } + }, + "link_banner": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "image" + }, + "clipboard_icon": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "image" + }, + "description_wrap": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel", + "children": [ + "description" + ] + }, + "description_wrap/description": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "label", + "extend": { + "name": "label_text", + "namespace": "realms_settings" + } + }, + "invite_link_url": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "label", + "extend": { + "name": "label_text", + "namespace": "realms_settings" + } + }, + "link_panel": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "image", + "extend": { + "name": "link_banner", + "namespace": "realms_invite_link_settings" + }, + "children": [ + "invite_link_url_wrapper", + "link_copy_container" + ] + }, + "link_panel/invite_link_url_wrapper": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "link_panel/link_copy_container": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel", + "children": [ + "link_copy" + ] + }, + "link_panel/link_copy_container/link_copy": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "button", + "extend": { + "name": "transparent_content_button", + "namespace": "common_buttons" + } + }, + "general_content": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "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": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel" + }, + "general_content/invite_link_title": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "label", + "extend": { + "name": "label_text", + "namespace": "realms_settings" + } + }, + "general_content/invite_link_description": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel", + "extend": { + "name": "description_wrap", + "namespace": "realms_invite_link_settings" + } + }, + "general_content/spacing_gap_1": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel" + }, + "general_content/link_panel": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "image", + "extend": { + "name": "link_panel", + "namespace": "realms_invite_link_settings" + } + }, + "general_content/spacing_gap_2": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel" + }, + "general_content/activate_link_toggle": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "general_content/activate_link_description": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel", + "extend": { + "name": "description_wrap", + "namespace": "realms_invite_link_settings" + } + }, + "general_content/spacing_gap_3": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel" + }, + "general_content/infinite_link_toggle": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "general_content/spacing_gap_4": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel" + }, + "general_content/share_link_title": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "label", + "extend": { + "name": "label_text", + "namespace": "realms_settings" + } + }, + "general_content/share_link_description": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel", + "extend": { + "name": "description_wrap", + "namespace": "realms_invite_link_settings" + } + }, + "general_content/spacing_gap_5": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel" + }, + "general_content/share_link_button": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "general_content/spacing_gap_6": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel" + }, + "general_content/remove_link_title": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "label", + "extend": { + "name": "label_text", + "namespace": "realms_settings" + } + }, + "general_content/remove_invite_link_button": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "invite_link_expiration": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "label", + "extend": { + "name": "label_text", + "namespace": "realms_settings" + } + }, + "advanced_content": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "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": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel" + }, + "advanced_content/expiry_title": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "label", + "extend": { + "name": "label_text", + "namespace": "realms_settings" + } + }, + "advanced_content/spacing_gap_1": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel" + }, + "advanced_content/expiration_description": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel", + "extend": { + "name": "description_wrap", + "namespace": "realms_invite_link_settings" + } + }, + "advanced_content/spacing_gap_2": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel" + }, + "advanced_content/expiration_panel": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "image", + "extend": { + "name": "link_banner", + "namespace": "realms_invite_link_settings" + }, + "children": [ + "invite_link_expiration_wrapper" + ] + }, + "advanced_content/expiration_panel/invite_link_expiration_wrapper": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "advanced_content/expiration_dropdown": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "expiration_dropdown_content": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "selector_panel": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "stack_panel", + "children": [ + "spacing_gap_0", + "general_button", + "advanced_button" + ] + }, + "selector_panel/spacing_gap_0": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel" + }, + "selector_panel/general_button": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "selector_panel/advanced_button": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "section_content_panels": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel", + "children": [ + "general_section", + "advanced_section" + ] + }, + "section_content_panels/general_section": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel", + "extend": { + "name": "generic_section_wrapper", + "namespace": "realms_invite_link_settings" + } + }, + "section_content_panels/advanced_section": { + "file": "ui/realms_invite_link_settings_screen.json", + "type": "panel", + "extend": { + "name": "generic_section_wrapper", + "namespace": "realms_invite_link_settings" + } + } + }, + "realms_plus_ended": { + "subscription_ended_screen": { + "file": "ui/realms_plus_ended_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "subscription_ended_screen_content": { + "file": "ui/realms_plus_ended_screen.json", + "type": "panel", + "children": [ + "root_panel" + ] + }, + "subscription_ended_screen_content/root_panel": { + "file": "ui/realms_plus_ended_screen.json", + "type": "panel", + "children": [ + "gamepad_helpers", + "main_panel" + ] + }, + "subscription_ended_screen_content/root_panel/gamepad_helpers": { + "file": "ui/realms_plus_ended_screen.json", + "type": "panel", + "extend": { + "name": "gamepad_helpers", + "namespace": "realms_plus_ended" + } + }, + "subscription_ended_screen_content/root_panel/main_panel": { + "file": "ui/realms_plus_ended_screen.json", + "type": "input_panel", + "extend": { + "name": "main_panel", + "namespace": "realms_plus_ended" + } + }, + "main_panel": { + "file": "ui/realms_plus_ended_screen.json", + "type": "input_panel", + "children": [ + "dialog" + ] + }, + "main_panel/dialog": { + "file": "ui/realms_plus_ended_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + }, + "gamepad_helpers": { + "file": "ui/realms_plus_ended_screen.json", + "type": "panel", + "children": [ + "gamepad_helper_a" + ] + }, + "gamepad_helpers/gamepad_helper_a": { + "file": "ui/realms_plus_ended_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_a", + "namespace": "common" + } + }, + "content_stack_panel": { + "file": "ui/realms_plus_ended_screen.json", + "type": "stack_panel", + "children": [ + "pad_0", + "main_content", + "pad_1", + "button_center_panel", + "pad_2" + ] + }, + "content_stack_panel/pad_0": { + "file": "ui/realms_plus_ended_screen.json", + "type": "panel" + }, + "content_stack_panel/main_content": { + "file": "ui/realms_plus_ended_screen.json", + "type": "panel", + "extend": { + "name": "main_content_panel", + "namespace": "realms_plus_ended" + } + }, + "content_stack_panel/pad_1": { + "file": "ui/realms_plus_ended_screen.json", + "type": "panel" + }, + "content_stack_panel/button_center_panel": { + "file": "ui/realms_plus_ended_screen.json", + "type": "panel", + "children": [ + "buttons" + ] + }, + "content_stack_panel/button_center_panel/buttons": { + "file": "ui/realms_plus_ended_screen.json", + "type": "stack_panel", + "extend": { + "name": "buttons_panel", + "namespace": "realms_plus_ended" + } + }, + "content_stack_panel/pad_2": { + "file": "ui/realms_plus_ended_screen.json", + "type": "panel" + }, + "main_content_panel": { + "file": "ui/realms_plus_ended_screen.json", + "type": "panel", + "children": [ + "main_content_stack_panel" + ] + }, + "main_content_panel/main_content_stack_panel": { + "file": "ui/realms_plus_ended_screen.json", + "type": "stack_panel", + "children": [ + "image_panel", + "pad", + "text_panel" + ] + }, + "main_content_panel/main_content_stack_panel/image_panel": { + "file": "ui/realms_plus_ended_screen.json", + "type": "panel", + "extend": { + "name": "service_repo_image_panel", + "namespace": "common" + } + }, + "main_content_panel/main_content_stack_panel/pad": { + "file": "ui/realms_plus_ended_screen.json", + "type": "panel" + }, + "main_content_panel/main_content_stack_panel/text_panel": { + "file": "ui/realms_plus_ended_screen.json", + "type": "panel", + "children": [ + "text" + ] + }, + "main_content_panel/main_content_stack_panel/text_panel/text": { + "file": "ui/realms_plus_ended_screen.json", + "type": "label" + }, + "buttons_panel": { + "file": "ui/realms_plus_ended_screen.json", + "type": "stack_panel", + "children": [ + "more_info_button", + "pad", + "renew_subscription_button" + ] + }, + "buttons_panel/more_info_button": { + "file": "ui/realms_plus_ended_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "buttons_panel/pad": { + "file": "ui/realms_plus_ended_screen.json", + "type": "panel" + }, + "buttons_panel/renew_subscription_button": { + "file": "ui/realms_plus_ended_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + } + }, + "realmsPlus": { + "realms_plus_pdp_screen": { + "file": "ui/realmsPlus_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "realms_plus_upgrade_notice_screen": { + "file": "ui/realmsPlus_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "purple_background": { + "file": "ui/realmsPlus_screen.json", + "type": "image", + "children": [ + "bottom_left_particles", + "top_right_particles" + ] + }, + "purple_background/bottom_left_particles": { + "file": "ui/realmsPlus_screen.json", + "type": "image" + }, + "purple_background/top_right_particles": { + "file": "ui/realmsPlus_screen.json", + "type": "image" + }, + "main_background": { + "file": "ui/realmsPlus_screen.json", + "type": "panel", + "children": [ + "dark_blue", + "grey_gradient" + ] + }, + "main_background/dark_blue": { + "file": "ui/realmsPlus_screen.json", + "type": "image", + "extend": { + "name": "dark_blue_background", + "namespace": "realmsPlus" + } + }, + "main_background/grey_gradient": { + "file": "ui/realmsPlus_screen.json", + "type": "image", + "extend": { + "name": "csb_background", + "namespace": "csb" + } + }, + "dark_blue_background": { + "file": "ui/realmsPlus_screen.json", + "type": "image" + }, + "gradient_image_stack": { + "file": "ui/realmsPlus_screen.json", + "type": "stack_panel", + "children": [ + "solid_pink", + "gradient" + ] + }, + "gradient_image_stack/solid_pink": { + "file": "ui/realmsPlus_screen.json", + "type": "image" + }, + "gradient_image_stack/gradient": { + "file": "ui/realmsPlus_screen.json", + "type": "image" + }, + "gradient_content_panel": { + "file": "ui/realmsPlus_screen.json", + "type": "panel", + "children": [ + "gradient", + "content_panel" + ] + }, + "gradient_content_panel/gradient": { + "file": "ui/realmsPlus_screen.json", + "type": "stack_panel", + "extend": { + "name": "gradient_image_stack", + "namespace": "realmsPlus" + } + }, + "gradient_content_panel/content_panel": { + "file": "ui/realmsPlus_screen.json", + "type": "unknown" + }, + "realmsPlus_screen_main_panel": { + "file": "ui/realmsPlus_screen.json", + "type": "input_panel", + "extend": { + "name": "sidebar_view", + "namespace": "sidebar_navigation" + } + }, + "realmsPlus_main_panel": { + "file": "ui/realmsPlus_screen.json", + "type": "panel", + "children": [ + "root_panel", + "popup_dialog_factory" + ] + }, + "realmsPlus_main_panel/root_panel": { + "file": "ui/realmsPlus_screen.json", + "type": "panel", + "children": [ + "main_panel" + ] + }, + "realmsPlus_main_panel/root_panel/main_panel": { + "file": "ui/realmsPlus_screen.json", + "type": "stack_panel", + "extend": { + "name": "store_header_with_coins", + "namespace": "common_store" + } + }, + "realmsPlus_main_panel/popup_dialog_factory": { + "file": "ui/realmsPlus_screen.json", + "type": "factory" + }, + "dialog_content": { + "file": "ui/realmsPlus_screen.json", + "type": "panel", + "children": [ + "selector_area", + "content_area", + "left_right_pane_divider" + ] + }, + "dialog_content/selector_area": { + "file": "ui/realmsPlus_screen.json", + "type": "panel", + "extend": { + "name": "selector_area", + "namespace": "realmsPlus" + } + }, + "dialog_content/content_area": { + "file": "ui/realmsPlus_screen.json", + "type": "panel", + "extend": { + "name": "content_area", + "namespace": "realmsPlus" + } + }, + "dialog_content/left_right_pane_divider": { + "file": "ui/realmsPlus_screen.json", + "type": "image", + "extend": { + "name": "left_right_pane_divider", + "namespace": "realmsPlus" + } + }, + "selector_area": { + "file": "ui/realmsPlus_screen.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "selector_area/scrolling_panel": { + "file": "ui/realmsPlus_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "scrollable_selector_area_content": { + "file": "ui/realmsPlus_screen.json", + "type": "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": { + "file": "ui/realmsPlus_screen.json", + "type": "stack_panel", + "extend": { + "name": "realmsPlus_toggle", + "namespace": "realmsPlus" + } + }, + "scrollable_selector_area_content/content_toggle": { + "file": "ui/realmsPlus_screen.json", + "type": "stack_panel", + "extend": { + "name": "content_toggle", + "namespace": "realmsPlus" + } + }, + "scrollable_selector_area_content/faq_toggle": { + "file": "ui/realmsPlus_screen.json", + "type": "stack_panel", + "extend": { + "name": "faq_toggle", + "namespace": "realmsPlus" + } + }, + "scrollable_selector_area_content/toggle_section_divider": { + "file": "ui/realmsPlus_screen.json", + "type": "stack_panel", + "extend": { + "name": "section_divider", + "namespace": "common" + } + }, + "scrollable_selector_area_content/buy_now_toggle": { + "file": "ui/realmsPlus_screen.json", + "type": "stack_panel", + "extend": { + "name": "buy_now_toggle", + "namespace": "realmsPlus" + } + }, + "scrollable_selector_area_content/xbl_btn_panel": { + "file": "ui/realmsPlus_screen.json", + "type": "panel", + "children": [ + "xbl_btn" + ] + }, + "scrollable_selector_area_content/xbl_btn_panel/xbl_btn": { + "file": "ui/realmsPlus_screen.json", + "type": "button", + "extend": { + "name": "dark_text_button", + "namespace": "common_buttons" + } + }, + "scrollable_selector_area_content/focus_reset_input_panel": { + "file": "ui/realmsPlus_screen.json", + "type": "input_panel" + }, + "section_toggle_base": { + "file": "ui/realmsPlus_screen.json", + "type": "panel", + "extend": { + "name": "light_text_toggle_collection", + "namespace": "common_toggles" + } + }, + "tab_button_text": { + "file": "ui/realmsPlus_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "toggle_base": { + "file": "ui/realmsPlus_screen.json", + "type": "stack_panel", + "children": [ + "toggle", + "padding" + ] + }, + "toggle_base/toggle": { + "file": "ui/realmsPlus_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "realmsPlus" + } + }, + "toggle_base/padding": { + "file": "ui/realmsPlus_screen.json", + "type": "panel" + }, + "realmsPlus_toggle": { + "file": "ui/realmsPlus_screen.json", + "type": "stack_panel", + "extend": { + "name": "toggle_base", + "namespace": "realmsPlus" + } + }, + "content_toggle": { + "file": "ui/realmsPlus_screen.json", + "type": "stack_panel", + "extend": { + "name": "toggle_base", + "namespace": "realmsPlus" + } + }, + "faq_toggle": { + "file": "ui/realmsPlus_screen.json", + "type": "stack_panel", + "extend": { + "name": "toggle_base", + "namespace": "realmsPlus" + } + }, + "buy_now_toggle": { + "file": "ui/realmsPlus_screen.json", + "type": "stack_panel", + "extend": { + "name": "toggle_base", + "namespace": "realmsPlus" + } + }, + "left_right_pane_divider": { + "file": "ui/realmsPlus_screen.json", + "type": "image" + }, + "content_area": { + "file": "ui/realmsPlus_screen.json", + "type": "panel", + "children": [ + "control" + ] + }, + "content_area/control": { + "file": "ui/realmsPlus_screen.json", + "type": "stack_panel", + "children": [ + "scrolling_panel" + ] + }, + "content_area/control/scrolling_panel": { + "file": "ui/realmsPlus_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "section_content_panels": { + "file": "ui/realmsPlus_screen.json", + "type": "stack_panel" + }, + "content_section_top_padding": { + "file": "ui/realmsPlus_screen.json", + "type": "panel" + }, + "section_base": { + "file": "ui/realmsPlus_screen.json", + "type": "stack_panel" + }, + "buy_now_content_section": { + "file": "ui/realmsPlus_screen.json", + "type": "stack_panel", + "extend": { + "name": "section_base", + "namespace": "realmsPlus" + }, + "children": [ + "content_section_top_padding", + "content" + ] + }, + "buy_now_content_section/content_section_top_padding": { + "file": "ui/realmsPlus_screen.json", + "type": "panel", + "extend": { + "name": "content_section_top_padding", + "namespace": "realmsPlus" + } + }, + "buy_now_content_section/content": { + "file": "ui/realmsPlus_screen.json", + "type": "stack_panel", + "extend": { + "name": "buy_now_content", + "namespace": "realmsPlus_buy" + } + }, + "markdown_background_animated": { + "file": "ui/realmsPlus_screen.json", + "type": "panel", + "children": [ + "realms_banner", + "realms_plus_normal", + "realms_plus_hover" + ] + }, + "markdown_background_animated/realms_banner": { + "file": "ui/realmsPlus_screen.json", + "type": "stack_panel", + "extend": { + "name": "markdown_background", + "namespace": "realmsPlus" + } + }, + "markdown_background_animated/realms_plus_normal": { + "file": "ui/realmsPlus_screen.json", + "type": "image" + }, + "markdown_background_animated/realms_plus_hover": { + "file": "ui/realmsPlus_screen.json", + "type": "image" + }, + "markdown_background": { + "file": "ui/realmsPlus_screen.json", + "type": "stack_panel", + "children": [ + "banner_panel", + "triangle_panel" + ] + }, + "markdown_background/banner_panel": { + "file": "ui/realmsPlus_screen.json", + "type": "panel", + "children": [ + "banner" + ] + }, + "markdown_background/banner_panel/banner": { + "file": "ui/realmsPlus_screen.json", + "type": "image", + "extend": { + "name": "markdown_banner", + "namespace": "common_store" + }, + "children": [ + "banner_stack_panel" + ] + }, + "markdown_background/banner_panel/banner/banner_stack_panel": { + "file": "ui/realmsPlus_screen.json", + "type": "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": { + "file": "ui/realmsPlus_screen.json", + "type": "unknown" + }, + "markdown_background/triangle_panel": { + "file": "ui/realmsPlus_screen.json", + "type": "panel", + "children": [ + "triangle" + ] + }, + "markdown_background/triangle_panel/triangle": { + "file": "ui/realmsPlus_screen.json", + "type": "image", + "extend": { + "name": "markdown_triangle", + "namespace": "common_store" + } + }, + "empty_label": { + "file": "ui/realmsPlus_screen.json", + "type": "panel" + }, + "full_width_section_divider": { + "file": "ui/realmsPlus_screen.json", + "type": "stack_panel", + "extend": { + "name": "section_divider", + "namespace": "common" + } + } + }, + "realmsPlus_content": { + "realmsPlus_content_section": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "stack_panel", + "extend": { + "name": "section_base", + "namespace": "realmsPlus" + }, + "children": [ + "content_section_top_padding", + "content_sections", + "content_section_bottom_padding" + ] + }, + "realmsPlus_content_section/content_section_top_padding": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel", + "extend": { + "name": "content_section_top_padding", + "namespace": "realmsPlus" + } + }, + "realmsPlus_content_section/content_sections": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "stack_panel" + }, + "realmsPlus_content_section/content_section_bottom_padding": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel", + "extend": { + "name": "content_section_top_padding", + "namespace": "realmsPlus" + } + }, + "content_pack_types_section": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "stack_panel", + "children": [ + "includes_marketplace_pass_wrapper", + "padding_contentSub", + "pack_types_wrapper" + ] + }, + "content_pack_types_section/includes_marketplace_pass_wrapper": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "content_pack_types_section/padding_contentSub": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "content_pack_types_section/pack_types_wrapper": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "content_packs_included_section": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "stack_panel", + "children": [ + "popular_packs", + "section_divider" + ] + }, + "content_packs_included_section/popular_packs": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "stack_panel", + "extend": { + "name": "popular_packs", + "namespace": "realmsPlus_content" + } + }, + "content_packs_included_section/section_divider": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "stack_panel", + "extend": { + "name": "full_width_section_divider", + "namespace": "realmsPlus" + } + }, + "persona_row": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel", + "extend": { + "name": "pack_type_row_panel", + "namespace": "realmsPlus_content" + }, + "children": [ + "persona" + ] + }, + "persona_row/persona": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "stack_panel", + "extend": { + "name": "pack_type_description", + "namespace": "realmsPlus_content" + } + }, + "worlds_row": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "stack_panel", + "extend": { + "name": "pack_type_description", + "namespace": "realmsPlus_content" + } + }, + "pack_types": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "stack_panel", + "children": [ + "middle_row", + "bottom_row", + "bottom_contentSub" + ] + }, + "pack_types/middle_row": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel", + "extend": { + "name": "pack_type_row_panel", + "namespace": "realmsPlus_content" + }, + "children": [ + "worlds_contentSub", + "textures" + ] + }, + "pack_types/middle_row/worlds_contentSub": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "stack_panel", + "extend": { + "name": "worlds_row", + "namespace": "realmsPlus_content" + } + }, + "pack_types/middle_row/textures": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "stack_panel", + "extend": { + "name": "pack_type_description", + "namespace": "realmsPlus_content" + } + }, + "pack_types/bottom_row": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel", + "extend": { + "name": "pack_type_row_panel", + "namespace": "realmsPlus_content" + }, + "children": [ + "skins_persona_contentSub", + "mashups" + ] + }, + "pack_types/bottom_row/skins_persona_contentSub": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "stack_panel", + "extend": { + "name": "skins", + "namespace": "realmsPlus_content" + } + }, + "pack_types/bottom_row/mashups": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "stack_panel", + "extend": { + "name": "pack_type_description", + "namespace": "realmsPlus_content" + } + }, + "pack_types/bottom_contentSub": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel", + "extend": { + "name": "persona_row", + "namespace": "realmsPlus_content" + } + }, + "skins": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "stack_panel", + "extend": { + "name": "pack_type_description", + "namespace": "realmsPlus_content" + } + }, + "friends_get_access": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "label" + }, + "pack_type_row_panel": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel" + }, + "pack_type_description": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "stack_panel", + "children": [ + "image_nesting_panel", + "padding_0", + "description_nesting_panel" + ] + }, + "pack_type_description/image_nesting_panel": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel", + "children": [ + "texture" + ] + }, + "pack_type_description/image_nesting_panel/texture": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "unknown" + }, + "pack_type_description/padding_0": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "pack_type_description/description_nesting_panel": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel", + "children": [ + "description_label" + ] + }, + "pack_type_description/description_nesting_panel/description_label": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "label" + }, + "popular_packs": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "stack_panel", + "children": [ + "padding_0", + "pack_grid", + "view_all_packs_panel", + "padding_1", + "view_character_creator_items_button", + "padding_2" + ] + }, + "popular_packs/padding_0": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "popular_packs/pack_grid": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "stack_panel", + "extend": { + "name": "packs_collection", + "namespace": "realmsPlus_content" + } + }, + "popular_packs/view_all_packs_panel": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel", + "children": [ + "view_all_packs_button" + ] + }, + "popular_packs/view_all_packs_panel/view_all_packs_button": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "popular_packs/padding_1": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "popular_packs/view_character_creator_items_button": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "popular_packs/padding_2": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "popular_packs_label": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "label" + }, + "includes_marketplace_pass": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel", + "extend": { + "name": "gradient_content_panel", + "namespace": "csb" + } + }, + "includes_marketplace_pass_label": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "label" + }, + "packs_collection": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "stack_panel", + "children": [ + "row_1", + "padding_1", + "row_2", + "padding_2" + ] + }, + "packs_collection/row_1": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "stack_panel", + "children": [ + "pack_image_grid_item_0", + "padding", + "pack_image_grid_item_1" + ] + }, + "packs_collection/row_1/pack_image_grid_item_0": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel", + "extend": { + "name": "pack_image_grid_item", + "namespace": "realmsPlus_content" + } + }, + "packs_collection/row_1/padding": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel" + }, + "packs_collection/row_1/pack_image_grid_item_1": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel", + "extend": { + "name": "pack_image_grid_item", + "namespace": "realmsPlus_content" + } + }, + "packs_collection/padding_1": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel" + }, + "packs_collection/row_2": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "stack_panel", + "children": [ + "pack_image_grid_item_0", + "padding", + "pack_image_grid_item_1" + ] + }, + "packs_collection/row_2/pack_image_grid_item_0": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel", + "extend": { + "name": "pack_image_grid_item", + "namespace": "realmsPlus_content" + } + }, + "packs_collection/row_2/padding": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel" + }, + "packs_collection/row_2/pack_image_grid_item_1": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel", + "extend": { + "name": "pack_image_grid_item", + "namespace": "realmsPlus_content" + } + }, + "packs_collection/padding_2": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel" + }, + "pack_image_grid_item": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel", + "children": [ + "bg", + "offer_button" + ] + }, + "pack_image_grid_item/bg": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "common_store" + }, + "children": [ + "featured_key_art", + "progress_loading" + ] + }, + "pack_image_grid_item/bg/featured_key_art": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "image" + }, + "pack_image_grid_item/bg/progress_loading": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "pack_image_grid_item/offer_button": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "pack_image_grid_item/offer_button/default": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "pack_image_grid_item/offer_button/hover": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "pack_image_grid_item/offer_button/pressed": { + "file": "ui/realmsPlus_sections/content_section.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + } + }, + "realmsPlus_faq": { + "faq_image_section": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "panel", + "extend": { + "name": "service_repo_image_panel", + "namespace": "common" + } + }, + "faq_image_local": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "image" + }, + "faq_image_type": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "panel", + "children": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ] + }, + "faq_image_type/0": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "unknown" + }, + "faq_text_section_body": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "stack_panel" + }, + "faq_text_question": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "label" + }, + "faq_text_section": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "faq_text_section_body", + "namespace": "realmsPlus_faq" + }, + "children": [ + "faq_text_question", + "faq_text_answer" + ] + }, + "faq_text_section/faq_text_question": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "label", + "extend": { + "name": "faq_text_question", + "namespace": "realmsPlus_faq" + } + }, + "faq_text_section/faq_text_answer": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "label" + }, + "faq_price_bound_text_section": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "faq_text_section_body", + "namespace": "realmsPlus_faq" + }, + "children": [ + "faq_text_question", + "faq_text_answer" + ] + }, + "faq_price_bound_text_section/faq_text_question": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "label", + "extend": { + "name": "faq_text_question", + "namespace": "realmsPlus_faq" + } + }, + "faq_price_bound_text_section/faq_text_answer": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "label" + }, + "faq_question_body": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "faq_question_body_stack", + "namespace": "realmsPlus_faq" + }, + "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": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "unknown" + }, + "faq_question_body_stack": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "stack_panel" + }, + "faq_question_body_horz_padding": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "panel" + }, + "image_left_faq_question_body": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "button", + "extend": { + "name": "text_body_focus_border_for_controller_button", + "namespace": "common_buttons" + } + }, + "image_right_faq_question_body": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "button", + "extend": { + "name": "text_body_focus_border_for_controller_button", + "namespace": "common_buttons" + } + }, + "image_left_faq_question_body_flip": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "panel", + "children": [ + "faq_question_left" + ] + }, + "image_left_faq_question_body_flip/faq_question_left": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "button", + "extend": { + "name": "image_left_faq_question_body", + "namespace": "realmsPlus_faq" + } + }, + "image_right_faq_question_body_flip": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "panel", + "children": [ + "faq_question_right" + ] + }, + "image_right_faq_question_body_flip/faq_question_right": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "button", + "extend": { + "name": "image_right_faq_question_body", + "namespace": "realmsPlus_faq" + } + }, + "image_left_faq_price_bound": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "button", + "extend": { + "name": "text_body_focus_border_for_controller_button", + "namespace": "common_buttons" + } + }, + "faq_section_header_space": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "panel" + }, + "faq_section_divider": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "section_divider", + "namespace": "common" + } + }, + "faq_content_section": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "section_base", + "namespace": "realmsPlus" + }, + "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": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "panel", + "extend": { + "name": "content_section_top_padding", + "namespace": "realmsPlus" + } + }, + "faq_content_section/faq_header": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "label" + }, + "faq_content_section/content_section_top_padding_2": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "panel", + "extend": { + "name": "faq_section_header_space", + "namespace": "realmsPlus_faq" + } + }, + "faq_content_section/faq_question_1": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "button", + "extend": { + "name": "image_left_faq_question_body", + "namespace": "realmsPlus_faq" + } + }, + "faq_content_section/faq_question_1_divider": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "faq_section_divider", + "namespace": "realmsPlus_faq" + } + }, + "faq_content_section/faq_question_2": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "button", + "extend": { + "name": "image_right_faq_question_body", + "namespace": "realmsPlus_faq" + } + }, + "faq_content_section/faq_question_2_divider": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "faq_section_divider", + "namespace": "realmsPlus_faq" + } + }, + "faq_content_section/faq_question_3": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "button", + "extend": { + "name": "image_left_faq_price_bound", + "namespace": "realmsPlus_faq" + } + }, + "faq_content_section/faq_question_3_divider": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "faq_section_divider", + "namespace": "realmsPlus_faq" + } + }, + "faq_content_section/faq_question_4": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "button", + "extend": { + "name": "image_right_faq_question_body", + "namespace": "realmsPlus_faq" + } + }, + "faq_content_section/faq_question_4_divider": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "faq_section_divider", + "namespace": "realmsPlus_faq" + } + }, + "faq_content_section/faq_question_5": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "panel", + "extend": { + "name": "image_left_faq_question_body_flip", + "namespace": "realmsPlus_faq" + } + }, + "faq_content_section/faq_question_5_divider": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "faq_section_divider", + "namespace": "realmsPlus_faq" + } + }, + "faq_content_section/faq_question_6": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "panel", + "extend": { + "name": "image_right_faq_question_body_flip", + "namespace": "realmsPlus_faq" + } + }, + "faq_content_section/faq_question_6_divider": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "faq_section_divider", + "namespace": "realmsPlus_faq" + } + }, + "faq_content_section/faq_question_7": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "panel", + "extend": { + "name": "image_left_faq_question_body_flip", + "namespace": "realmsPlus_faq" + } + }, + "faq_content_section/faq_question_7_divider": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "faq_section_divider", + "namespace": "realmsPlus_faq" + } + }, + "faq_content_section/faq_question_8": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "panel", + "extend": { + "name": "image_right_faq_question_body_flip", + "namespace": "realmsPlus_faq" + } + }, + "faq_content_section/faq_question_8_divider": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "faq_section_divider", + "namespace": "realmsPlus_faq" + } + }, + "faq_content_section/faq_question_9": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "panel", + "extend": { + "name": "image_left_faq_question_body_flip", + "namespace": "realmsPlus_faq" + } + }, + "faq_content_section/faq_question_9_divider": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "faq_section_divider", + "namespace": "realmsPlus_faq" + } + }, + "faq_content_section/faq_question_10": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "panel", + "extend": { + "name": "image_right_faq_question_body_flip", + "namespace": "realmsPlus_faq" + } + }, + "faq_content_section/faq_question_10_divider": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "stack_panel", + "extend": { + "name": "faq_section_divider", + "namespace": "realmsPlus_faq" + } + }, + "faq_content_section/faq_question_11": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "panel", + "extend": { + "name": "image_left_faq_question_body_flip", + "namespace": "realmsPlus_faq" + } + }, + "faq_content_section/content_section_top_padding_3": { + "file": "ui/realmsPlus_sections/faq_section.json", + "type": "panel", + "extend": { + "name": "content_section_top_padding", + "namespace": "realmsPlus" + } + } + }, + "realmsPlus_landing": { + "landing_content_section": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "section_base", + "namespace": "realmsPlus" + }, + "children": [ + "landing_content" + ] + }, + "landing_content_section/landing_content": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "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": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "title_stack", + "namespace": "realmsPlus_landing" + } + }, + "landing_content_section/landing_content/vertical_small_spacer_0": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "realmsPlus_landing" + } + }, + "landing_content_section/landing_content/divider_panel": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "children": [ + "section_divider" + ] + }, + "landing_content_section/landing_content/divider_panel/section_divider": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "section_divider", + "namespace": "common" + } + }, + "landing_content_section/landing_content/vertical_small_spacer_1": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "realmsPlus_landing" + } + }, + "landing_content_section/landing_content/info_stack": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_stack", + "namespace": "realmsPlus_landing" + } + }, + "landing_content_section/landing_content/vertical_small_spacer_2": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "realmsPlus_landing" + } + }, + "horizontal_small_spacer": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel" + }, + "vertical_small_spacer": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel" + }, + "vertical_med_spacer": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel" + }, + "vertical_large_spacer": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel" + }, + "title_stack": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "children": [ + "title_image_panel", + "gradient_panel", + "vertical_space", + "action_button", + "sign_in_button", + "vertical_space2" + ] + }, + "title_stack/title_image_panel": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "title_image_panel", + "namespace": "realmsPlus_landing" + } + }, + "title_stack/gradient_panel": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "children": [ + "label_with_gradient_wrapper" + ] + }, + "title_stack/gradient_panel/label_with_gradient_wrapper": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "title_stack/vertical_space": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "realmsPlus_landing" + } + }, + "title_stack/action_button": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "buy_button_panel", + "namespace": "realmsPlus_buy" + } + }, + "title_stack/sign_in_button": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "buy_button_panel", + "namespace": "realmsPlus_buy" + } + }, + "title_stack/vertical_space2": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "realmsPlus_landing" + } + }, + "label_with_gradient": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "gradient_content_panel", + "namespace": "realmsPlus" + } + }, + "free_trial_text": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "label" + }, + "title_image_panel": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "children": [ + "title_image_container", + "title_image_pre_release_container" + ] + }, + "title_image_panel/title_image_container": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "children": [ + "title_image", + "title_art_image" + ] + }, + "title_image_panel/title_image_container/title_image": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "image" + }, + "title_image_panel/title_image_container/title_art_image": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "image" + }, + "title_image_panel/title_image_pre_release_container": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "children": [ + "title_image_pre_release" + ] + }, + "title_image_panel/title_image_pre_release_container/title_image_pre_release": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "image" + }, + "info_stack": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "children": [ + "info_stack" + ] + }, + "info_stack/info_stack": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "children": [ + "info_description_stack_retail", + "info_description_stack_preview" + ] + }, + "info_stack/info_stack/info_description_stack_retail": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_description_stack_retail", + "namespace": "realmsPlus_landing" + } + }, + "info_stack/info_stack/info_description_stack_preview": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "info_description_stack_prerelease", + "namespace": "realmsPlus_landing" + } + }, + "info_description_stack_retail": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "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": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_section_stack", + "namespace": "realmsPlus_landing" + }, + "children": [ + "horizontal_small_spacer", + "info_section_text_1_wrapper" + ] + }, + "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "horizontal_small_spacer", + "namespace": "realmsPlus_landing" + } + }, + "info_description_stack_retail/info_section_stack_1/info_section_text_1_wrapper": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "info_description_stack_retail/vertical_med_spacer0": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_med_spacer", + "namespace": "realmsPlus_landing" + } + }, + "info_description_stack_retail/divider_centering_panel": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "children": [ + "divider" + ] + }, + "info_description_stack_retail/divider_centering_panel/divider": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "section_divider", + "namespace": "common" + } + }, + "info_description_stack_retail/vertical_med_spacer1": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_med_spacer", + "namespace": "realmsPlus_landing" + } + }, + "info_description_stack_retail/info_section_stack_recently_added": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_section_stack", + "namespace": "realmsPlus_landing" + }, + "children": [ + "horizontal_small_spacer", + "info_section_text_recently_added_wrapper" + ] + }, + "info_description_stack_retail/info_section_stack_recently_added/horizontal_small_spacer": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "horizontal_small_spacer", + "namespace": "realmsPlus_landing" + } + }, + "info_description_stack_retail/info_section_stack_recently_added/info_section_text_recently_added_wrapper": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "info_description_stack_retail/vertical_med_spacer2": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_med_spacer", + "namespace": "realmsPlus_landing" + } + }, + "info_description_stack_retail/divider_centering_panel2": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "children": [ + "divider2" + ] + }, + "info_description_stack_retail/divider_centering_panel2/divider2": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "section_divider", + "namespace": "common" + } + }, + "info_description_stack_retail/vertical_med_spacer3": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_med_spacer", + "namespace": "realmsPlus_landing" + } + }, + "info_description_stack_retail/info_section_stack_2": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_section_stack", + "namespace": "realmsPlus_landing" + }, + "children": [ + "horizontal_small_spacer", + "info_section_text_2_wrapper" + ] + }, + "info_description_stack_retail/info_section_stack_2/horizontal_small_spacer": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "horizontal_small_spacer", + "namespace": "realmsPlus_landing" + } + }, + "info_description_stack_retail/info_section_stack_2/info_section_text_2_wrapper": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "info_description_stack_prerelease": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "children": [ + "info_section_stack" + ] + }, + "info_description_stack_prerelease/info_section_stack": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_section_stack", + "namespace": "realmsPlus_landing" + }, + "children": [ + "horizontal_large_spacer", + "info_section_text_3_wrapper" + ] + }, + "info_description_stack_prerelease/info_section_stack/horizontal_large_spacer": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel" + }, + "info_description_stack_prerelease/info_section_stack/info_section_text_3_wrapper": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "info_section_stack": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel" + }, + "info_section_text_1": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_section_text", + "namespace": "realmsPlus_landing" + }, + "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": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_text_bullet", + "namespace": "realmsPlus_landing" + } + }, + "info_section_text_1/vertical_small_spacer_0": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "realmsPlus_landing" + } + }, + "info_section_text_1/info_text_bullet_2": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_text_bullet", + "namespace": "realmsPlus_landing" + } + }, + "info_section_text_1/vertical_small_spacer_1": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "realmsPlus_landing" + } + }, + "info_section_text_1/info_text_bullet_3": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_text_bullet", + "namespace": "realmsPlus_landing" + } + }, + "info_section_text_recently_added": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_section_text", + "namespace": "realmsPlus_landing" + }, + "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": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "label" + }, + "info_section_text_recently_added/info_text_bullet_contentSub": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_section_text", + "namespace": "realmsPlus_landing" + }, + "children": [ + "vertical_small_spacer_0", + "info_text_bullet_0" + ] + }, + "info_section_text_recently_added/info_text_bullet_contentSub/vertical_small_spacer_0": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "realmsPlus_landing" + } + }, + "info_section_text_recently_added/info_text_bullet_contentSub/info_text_bullet_0": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_text_bullet", + "namespace": "realmsPlus_landing" + } + }, + "info_section_text_recently_added/vertical_small_spacer_1": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "realmsPlus_landing" + } + }, + "info_section_text_recently_added/info_text_bullet_1": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_text_bullet", + "namespace": "realmsPlus_landing" + } + }, + "info_section_text_recently_added/vertical_small_spacer_2": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "realmsPlus_landing" + } + }, + "info_section_text_recently_added/info_text_bullet_2": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_text_bullet", + "namespace": "realmsPlus_landing" + } + }, + "info_section_text_2": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_section_text", + "namespace": "realmsPlus_landing" + }, + "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": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_text_bullet", + "namespace": "realmsPlus_landing" + } + }, + "info_section_text_2/vertical_small_spacer_0": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "realmsPlus_landing" + } + }, + "info_section_text_2/info_text_bullet_3": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_text_bullet", + "namespace": "realmsPlus_landing" + } + }, + "info_section_text_2/vertical_small_spacer_1": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "realmsPlus_landing" + } + }, + "info_section_text_2/info_text_bullet_4": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_text_bullet", + "namespace": "realmsPlus_landing" + } + }, + "info_section_text_2/info_text_bullet_notFreeTrial": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_section_text", + "namespace": "realmsPlus_landing" + }, + "children": [ + "vertical_small_spacer", + "info_text_bullet_4" + ] + }, + "info_section_text_2/info_text_bullet_notFreeTrial/vertical_small_spacer": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_small_spacer", + "namespace": "realmsPlus_landing" + } + }, + "info_section_text_2/info_text_bullet_notFreeTrial/info_text_bullet_4": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_text_bullet", + "namespace": "realmsPlus_landing" + } + }, + "info_section_text_3": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "extend": { + "name": "info_section_text", + "namespace": "realmsPlus_landing" + }, + "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": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "info_text_unbulletted", + "namespace": "realmsPlus_landing" + } + }, + "info_section_text_3/vertical_large_spacer_0": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_large_spacer", + "namespace": "realmsPlus_landing" + } + }, + "info_section_text_3/info_text_unbulletted_2": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "info_text_unbulletted", + "namespace": "realmsPlus_landing" + } + }, + "info_section_text_3/vertical_large_spacer_1": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_large_spacer", + "namespace": "realmsPlus_landing" + } + }, + "info_section_text_3/info_text_unbulletted_3": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "info_text_unbulletted", + "namespace": "realmsPlus_landing" + } + }, + "info_section_text_3/vertical_large_spacer_2": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "vertical_large_spacer", + "namespace": "realmsPlus_landing" + } + }, + "info_section_text_3/info_text_unbulletted_4": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "extend": { + "name": "info_text_unbulletted", + "namespace": "realmsPlus_landing" + } + }, + "info_section_text": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel" + }, + "info_text_bullet": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "stack_panel", + "children": [ + "info_text_bullet_bullet", + "info_text_bullet_body" + ] + }, + "info_text_bullet/info_text_bullet_bullet": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "label" + }, + "info_text_bullet/info_text_bullet_body": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "label" + }, + "info_text_unbulletted": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "panel", + "children": [ + "info_text_bullet_body" + ] + }, + "info_text_unbulletted/info_text_bullet_body": { + "file": "ui/realmsPlus_sections/landing_section.json", + "type": "label" + } + }, + "realmsPlus_buy": { + "buy_now_content": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "stack_panel", + "children": [ + "description_stack", + "realm_name", + "terms_and_conditions", + "padding_2", + "buy_button", + "padding_3", + "platform_terms_factory" + ] + }, + "buy_now_content/description_stack": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "stack_panel", + "extend": { + "name": "description_stack", + "namespace": "realmsPlus_buy" + } + }, + "buy_now_content/realm_name": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "stack_panel", + "extend": { + "name": "realm_name_stack", + "namespace": "realmsPlus_buy" + } + }, + "buy_now_content/terms_and_conditions": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "panel", + "extend": { + "name": "terms_and_conditions", + "namespace": "realmsPlus_buy" + } + }, + "buy_now_content/padding_2": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "panel" + }, + "buy_now_content/buy_button": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "panel", + "extend": { + "name": "buy_button_panel", + "namespace": "realmsPlus_buy" + } + }, + "buy_now_content/padding_3": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "panel" + }, + "buy_now_content/platform_terms_factory": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "stack_panel" + }, + "content_text_section": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "stack_panel", + "children": [ + "text_description_wrapper", + "padding" + ] + }, + "content_text_section/text_description_wrapper": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "content_text_section/padding": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "panel" + }, + "content_description": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "panel", + "children": [ + "content_description_label" + ] + }, + "content_description/content_description_label": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "label" + }, + "trial_image_and_description": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "stack_panel", + "children": [ + "realms_image", + "padding", + "description_text_wrapper" + ] + }, + "trial_image_and_description/realms_image": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "image" + }, + "trial_image_and_description/padding": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "panel" + }, + "trial_image_and_description/description_text_wrapper": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "description_text": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "label" + }, + "title_text": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "label" + }, + "title_with_gradient": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "panel", + "extend": { + "name": "gradient_content_panel", + "namespace": "realmsPlus" + } + }, + "description_stack": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "stack_panel", + "children": [ + "title_with_gradient_wrapper", + "padding", + "image_and_description" + ] + }, + "description_stack/title_with_gradient_wrapper": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "description_stack/padding": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "panel" + }, + "description_stack/image_and_description": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "stack_panel", + "extend": { + "name": "trial_image_and_description", + "namespace": "realmsPlus_buy" + } + }, + "realm_name_stack": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "stack_panel", + "children": [ + "realm_name_label", + "padding_0", + "realm_name_text_box" + ] + }, + "realm_name_stack/realm_name_label": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "realm_name_stack/padding_0": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "panel" + }, + "realm_name_stack/realm_name_text_box": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "terms_and_conditions": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "panel", + "children": [ + "terms_panel" + ] + }, + "terms_and_conditions/terms_panel": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "panel", + "extend": { + "name": "terms_and_conditions_panel", + "namespace": "realmsPlus_buy" + } + }, + "terms_and_conditions_panel": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "panel", + "children": [ + "name_label", + "terms_string_panel" + ] + }, + "terms_and_conditions_panel/name_label": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "terms_and_conditions_panel/terms_string_panel": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "panel", + "children": [ + "banner_fill", + "buttons_stack_panel" + ] + }, + "terms_and_conditions_panel/terms_string_panel/banner_fill": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "image" + }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "stack_panel", + "children": [ + "agree_panel", + "view_terms_button", + "privacy_policy_button" + ] + }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "panel", + "children": [ + "checkbox_control" + ] + }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "toggle", + "extend": { + "name": "checkbox_with_highlight_and_label", + "namespace": "settings_common" + } + }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "button", + "extend": { + "name": "view_terms_button", + "namespace": "realmsPlus_buy" + } + }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "button", + "extend": { + "name": "privacy_policy_button", + "namespace": "realmsPlus_buy" + } + }, + "button_text": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "view_terms_button": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "privacy_policy_button": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "buy_button_panel": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "panel", + "children": [ + "buy_button" + ] + }, + "buy_button_panel/buy_button": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "buy_button_content": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "panel", + "children": [ + "button_chevron_panel", + "button_text" + ] + }, + "buy_button_content/button_chevron_panel": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "stack_panel", + "children": [ + "buy_button_chevron" + ] + }, + "buy_button_content/button_chevron_panel/buy_button_chevron": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "panel", + "extend": { + "name": "markdown_background_animated", + "namespace": "realmsPlus" + } + }, + "buy_button_content/button_text": { + "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + } + }, + "realmsPlus_packs": { + "view_all_packs_screen": { + "file": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "type": "screen", + "extend": { + "name": "store_base_screen", + "namespace": "common_store" + } + }, + "view_packs_screen_content": { + "file": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "type": "panel", + "children": [ + "main_panel" + ] + }, + "view_packs_screen_content/main_panel": { + "file": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "store_header_with_coins", + "namespace": "common_store" + } + }, + "realmsPlus_view_packs_screen_main_panel": { + "file": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "type": "input_panel", + "extend": { + "name": "sidebar_view", + "namespace": "sidebar_navigation" + } + }, + "main_panel": { + "file": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "type": "input_panel", + "children": [ + "offers", + "progress_loading" + ] + }, + "main_panel/offers": { + "file": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "main_panel/progress_loading": { + "file": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "scrolling_content_stack": { + "file": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "type": "stack_panel", + "children": [ + "padding_0", + "store_factory" + ] + }, + "scrolling_content_stack/padding_0": { + "file": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "type": "panel" + }, + "scrolling_content_stack/store_factory": { + "file": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "store_section_factory", + "namespace": "common_store" + } + } + }, + "realmsPlus_purchase_warning": { + "realmsPlus_purchase_warning_screen": { + "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "purchase_warning_screen_content": { + "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "type": "panel", + "children": [ + "main_panel" + ] + }, + "purchase_warning_screen_content/main_panel": { + "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_one_button", + "namespace": "common_dialogs" + } + }, + "warning_modal_main_panel": { + "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "type": "stack_panel", + "children": [ + "art_panel", + "padding", + "text_panel" + ] + }, + "warning_modal_main_panel/art_panel": { + "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "type": "panel", + "children": [ + "art" + ] + }, + "warning_modal_main_panel/art_panel/art": { + "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "type": "image" + }, + "warning_modal_main_panel/padding": { + "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "type": "panel" + }, + "warning_modal_main_panel/text_panel": { + "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "type": "stack_panel", + "children": [ + "description_panel", + "padding", + "checkbox_with_label_panel" + ] + }, + "warning_modal_main_panel/text_panel/description_panel": { + "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "type": "panel", + "children": [ + "description_text" + ] + }, + "warning_modal_main_panel/text_panel/description_panel/description_text": { + "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "type": "label" + }, + "warning_modal_main_panel/text_panel/padding": { + "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "type": "panel" + }, + "warning_modal_main_panel/text_panel/checkbox_with_label_panel": { + "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "type": "stack_panel", + "children": [ + "checkbox_panel", + "padding", + "label_panel" + ] + }, + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/checkbox_panel": { + "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "type": "toggle", + "extend": { + "name": "checkbox", + "namespace": "common" + } + }, + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/padding": { + "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "type": "panel" + }, + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel": { + "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "type": "panel", + "children": [ + "label_text" + ] + }, + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel/label_text": { + "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "type": "label" + }, + "warning_modal_button_panel": { + "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "type": "stack_panel", + "children": [ + "back_button", + "padding", + "continue_button" + ] + }, + "warning_modal_button_panel/back_button": { + "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "warning_modal_button_panel/padding": { + "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "type": "panel" + }, + "warning_modal_button_panel/continue_button": { + "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + } + }, + "realms_stories_transition": { + "realms_stories_transition_screen": { + "file": "ui/realms_stories_transition_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + } + }, + "redstone": { + "item_dropper_label": { + "file": "ui/redstone_screen.json", + "type": "label" + }, + "dispenser_label": { + "file": "ui/redstone_screen.json", + "type": "label", + "extend": { + "name": "item_dropper_label", + "namespace": "redstone" + } + }, + "crafter_label": { + "file": "ui/redstone_screen.json", + "type": "label", + "extend": { + "name": "item_dropper_label", + "namespace": "redstone" + } + }, + "dropper_label": { + "file": "ui/redstone_screen.json", + "type": "label", + "extend": { + "name": "item_dropper_label", + "namespace": "redstone" + } + }, + "hopper_label": { + "file": "ui/redstone_screen.json", + "type": "label", + "extend": { + "name": "item_dropper_label", + "namespace": "redstone" + } + }, + "redstone_input_grid": { + "file": "ui/redstone_screen.json", + "type": "grid" + }, + "redstone_panel_top_half": { + "file": "ui/redstone_screen.json", + "type": "panel", + "children": [ + "redstone_input_grid" + ] + }, + "redstone_panel_top_half/redstone_input_grid": { + "file": "ui/redstone_screen.json", + "type": "grid", + "extend": { + "name": "redstone_input_grid", + "namespace": "redstone" + } + }, + "panel": { + "file": "ui/redstone_screen.json", + "type": "panel", + "children": [ + "container_gamepad_helpers", + "selected_item_details_factory", + "item_lock_notification_factory", + "root_panel", + "flying_item_renderer" + ] + }, + "panel/container_gamepad_helpers": { + "file": "ui/redstone_screen.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "panel/selected_item_details_factory": { + "file": "ui/redstone_screen.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "panel/item_lock_notification_factory": { + "file": "ui/redstone_screen.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "panel/root_panel": { + "file": "ui/redstone_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "common_panel", + "redstone_screen_inventory", + "red_icon", + "gamepad_cursor" + ] + }, + "panel/root_panel/common_panel": { + "file": "ui/redstone_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "panel/root_panel/redstone_screen_inventory": { + "file": "ui/redstone_screen.json", + "type": "panel", + "children": [ + "red_panel", + "red_bottom_half", + "hotbar_grid", + "red_hold_icon" + ] + }, + "panel/root_panel/redstone_screen_inventory/red_panel": { + "file": "ui/redstone_screen.json", + "type": "panel", + "extend": { + "name": "redstone_panel_top_half", + "namespace": "redstone" + } + }, + "panel/root_panel/redstone_screen_inventory/red_bottom_half": { + "file": "ui/redstone_screen.json", + "type": "panel", + "extend": { + "name": "inventory_panel_bottom_half_with_label", + "namespace": "common" + } + }, + "panel/root_panel/redstone_screen_inventory/hotbar_grid": { + "file": "ui/redstone_screen.json", + "type": "grid", + "extend": { + "name": "hotbar_grid_template", + "namespace": "common" + } + }, + "panel/root_panel/redstone_screen_inventory/red_hold_icon": { + "file": "ui/redstone_screen.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "panel/root_panel/red_icon": { + "file": "ui/redstone_screen.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "panel/root_panel/gamepad_cursor": { + "file": "ui/redstone_screen.json", + "type": "button", + "extend": { + "name": "gamepad_cursor_button", + "namespace": "common" + } + }, + "panel/flying_item_renderer": { + "file": "ui/redstone_screen.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + }, + "crafter_input_grid": { + "file": "ui/redstone_screen.json", + "type": "grid" + }, + "cell_image": { + "file": "ui/redstone_screen.json", + "type": "image" + }, + "crafter_highlight_slot": { + "file": "ui/redstone_screen.json", + "type": "image" + }, + "crafter_container_slot_button_prototype": { + "file": "ui/redstone_screen.json", + "type": "button", + "extend": { + "name": "container_slot_button_prototype", + "namespace": "common" + } + }, + "crafter_highlight_slot_panel": { + "file": "ui/redstone_screen.json", + "type": "panel", + "children": [ + "highlight", + "white_border" + ] + }, + "crafter_highlight_slot_panel/highlight": { + "file": "ui/redstone_screen.json", + "type": "image", + "extend": { + "name": "crafter_highlight_slot", + "namespace": "redstone" + }, + "children": [ + "hover_text" + ] + }, + "crafter_highlight_slot_panel/highlight/hover_text": { + "file": "ui/redstone_screen.json", + "type": "custom", + "extend": { + "name": "hover_text", + "namespace": "common" + } + }, + "crafter_highlight_slot_panel/white_border": { + "file": "ui/redstone_screen.json", + "type": "image", + "extend": { + "name": "white_border_slot", + "namespace": "common" + } + }, + "crafter_enabled_slot_template": { + "file": "ui/redstone_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "crafter_disabled_slot": { + "file": "ui/redstone_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "crafter_disabled_slot/default": { + "file": "ui/redstone_screen.json", + "type": "image" + }, + "crafter_disabled_slot/hover": { + "file": "ui/redstone_screen.json", + "type": "image" + }, + "crafter_disabled_slot/pressed": { + "file": "ui/redstone_screen.json", + "type": "image" + }, + "output_slot_hover_info": { + "file": "ui/redstone_screen.json", + "type": "button", + "children": [ + "hover", + "output_slot", + "output_slot_border", + "output_count" + ] + }, + "output_slot_hover_info/hover": { + "file": "ui/redstone_screen.json", + "type": "custom", + "extend": { + "name": "hover_text", + "namespace": "common" + } + }, + "output_slot_hover_info/output_slot": { + "file": "ui/redstone_screen.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "common" + } + }, + "output_slot_hover_info/output_slot_border": { + "file": "ui/redstone_screen.json", + "type": "image" + }, + "output_slot_hover_info/output_count": { + "file": "ui/redstone_screen.json", + "type": "label", + "extend": { + "name": "stack_count_label", + "namespace": "common" + } + }, + "panel_crafter": { + "file": "ui/redstone_screen.json", + "type": "panel", + "children": [ + "container_gamepad_helpers", + "selected_item_details_factory", + "item_lock_notification_factory", + "root_panel", + "flying_item_renderer" + ] + }, + "panel_crafter/container_gamepad_helpers": { + "file": "ui/redstone_screen.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "panel_crafter/selected_item_details_factory": { + "file": "ui/redstone_screen.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "panel_crafter/item_lock_notification_factory": { + "file": "ui/redstone_screen.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "panel_crafter/root_panel": { + "file": "ui/redstone_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "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": { + "file": "ui/redstone_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "panel_crafter/root_panel/disabled_slot_0_button": { + "file": "ui/redstone_screen.json", + "type": "button", + "extend": { + "name": "crafter_disabled_slot", + "namespace": "redstone" + } + }, + "panel_crafter/root_panel/disabled_slot_1_button": { + "file": "ui/redstone_screen.json", + "type": "button", + "extend": { + "name": "crafter_disabled_slot", + "namespace": "redstone" + } + }, + "panel_crafter/root_panel/disabled_slot_2_button": { + "file": "ui/redstone_screen.json", + "type": "button", + "extend": { + "name": "crafter_disabled_slot", + "namespace": "redstone" + } + }, + "panel_crafter/root_panel/disabled_slot_3_button": { + "file": "ui/redstone_screen.json", + "type": "button", + "extend": { + "name": "crafter_disabled_slot", + "namespace": "redstone" + } + }, + "panel_crafter/root_panel/disabled_slot_4_button": { + "file": "ui/redstone_screen.json", + "type": "button", + "extend": { + "name": "crafter_disabled_slot", + "namespace": "redstone" + } + }, + "panel_crafter/root_panel/disabled_slot_5_button": { + "file": "ui/redstone_screen.json", + "type": "button", + "extend": { + "name": "crafter_disabled_slot", + "namespace": "redstone" + } + }, + "panel_crafter/root_panel/disabled_slot_6_button": { + "file": "ui/redstone_screen.json", + "type": "button", + "extend": { + "name": "crafter_disabled_slot", + "namespace": "redstone" + } + }, + "panel_crafter/root_panel/disabled_slot_7_button": { + "file": "ui/redstone_screen.json", + "type": "button", + "extend": { + "name": "crafter_disabled_slot", + "namespace": "redstone" + } + }, + "panel_crafter/root_panel/disabled_slot_8_button": { + "file": "ui/redstone_screen.json", + "type": "button", + "extend": { + "name": "crafter_disabled_slot", + "namespace": "redstone" + } + }, + "panel_crafter/root_panel/redstone_screen_inventory": { + "file": "ui/redstone_screen.json", + "type": "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": { + "file": "ui/redstone_screen.json", + "type": "panel", + "children": [ + "crafter_input_grid" + ] + }, + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid": { + "file": "ui/redstone_screen.json", + "type": "grid", + "extend": { + "name": "crafter_input_grid", + "namespace": "redstone" + } + }, + "panel_crafter/root_panel/redstone_screen_inventory/red_bottom_half": { + "file": "ui/redstone_screen.json", + "type": "panel", + "extend": { + "name": "inventory_panel_bottom_half_with_label", + "namespace": "common" + } + }, + "panel_crafter/root_panel/redstone_screen_inventory/hotbar_grid": { + "file": "ui/redstone_screen.json", + "type": "grid", + "extend": { + "name": "hotbar_grid_template", + "namespace": "common" + } + }, + "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon": { + "file": "ui/redstone_screen.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line": { + "file": "ui/redstone_screen.json", + "type": "image" + }, + "panel_crafter/root_panel/redstone_screen_inventory/crafter_output": { + "file": "ui/redstone_screen.json", + "type": "button", + "extend": { + "name": "output_slot_hover_info", + "namespace": "redstone" + } + }, + "panel_crafter/root_panel/red_icon": { + "file": "ui/redstone_screen.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "panel_crafter/root_panel/gamepad_cursor": { + "file": "ui/redstone_screen.json", + "type": "button", + "extend": { + "name": "gamepad_cursor_button", + "namespace": "common" + } + }, + "panel_crafter/flying_item_renderer": { + "file": "ui/redstone_screen.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + }, + "hopper_screen": { + "file": "ui/redstone_screen.json", + "type": "screen", + "extend": { + "name": "inventory_screen_common", + "namespace": "common" + } + }, + "dispenser_screen": { + "file": "ui/redstone_screen.json", + "type": "screen", + "extend": { + "name": "inventory_screen_common", + "namespace": "common" + } + }, + "crafter_screen": { + "file": "ui/redstone_screen.json", + "type": "screen", + "extend": { + "name": "inventory_screen_common", + "namespace": "common" + } + }, + "dropper_screen": { + "file": "ui/redstone_screen.json", + "type": "screen", + "extend": { + "name": "inventory_screen_common", + "namespace": "common" + } + } + }, + "resource_packs": { + "black_image": { + "file": "ui/resource_packs_screen.json", + "type": "image" + }, + "gray_image": { + "file": "ui/resource_packs_screen.json", + "type": "image" + }, + "yellow_image": { + "file": "ui/resource_packs_screen.json", + "type": "image" + }, + "white_image": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "border" + ] + }, + "white_image/border": { + "file": "ui/resource_packs_screen.json", + "type": "image" + }, + "icon_image": { + "file": "ui/resource_packs_screen.json", + "type": "image" + }, + "resource_packs_toggle_button_control": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "icon_border", + "cycling_icon", + "tab_button_text" + ] + }, + "resource_packs_toggle_button_control/icon_border": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "white_image", + "namespace": "resource_packs" + } + }, + "resource_packs_toggle_button_control/cycling_icon": { + "file": "ui/resource_packs_screen.json", + "type": "image" + }, + "resource_packs_toggle_button_control/tab_button_text": { + "file": "ui/resource_packs_screen.json", + "type": "label" + }, + "resource_packs_section_toggle_base": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "light_ui_toggle", + "namespace": "common_toggles" + } + }, + "selected_icon_image": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "icon_image", + "namespace": "resource_packs" + } + }, + "available_icon_image": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "icon_image", + "namespace": "resource_packs" + } + }, + "realms_icon_image": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "icon_image", + "namespace": "resource_packs" + } + }, + "unowned_icon_image": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "icon_image", + "namespace": "resource_packs" + } + }, + "invalid_icon_image": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "icon_image", + "namespace": "resource_packs" + } + }, + "minus_image": { + "file": "ui/resource_packs_screen.json", + "type": "image" + }, + "plus_image": { + "file": "ui/resource_packs_screen.json", + "type": "image" + }, + "minus_text": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "gray_label", + "namespace": "resource_packs" + } + }, + "plus_text": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "gray_label", + "namespace": "resource_packs" + } + }, + "store_text": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "gray_label", + "namespace": "resource_packs" + } + }, + "error_image": { + "file": "ui/resource_packs_screen.json", + "type": "image" + }, + "error_image_hover": { + "file": "ui/resource_packs_screen.json", + "type": "image" + }, + "error_image_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "default", + "hover" + ] + }, + "error_image_panel/default": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "error_image", + "namespace": "resource_packs" + } + }, + "error_image_panel/hover": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "error_image_hover", + "namespace": "resource_packs" + } + }, + "warning_image": { + "file": "ui/resource_packs_screen.json", + "type": "image" + }, + "warning_image_hover": { + "file": "ui/resource_packs_screen.json", + "type": "image" + }, + "warning_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "default", + "hover" + ] + }, + "warning_panel/default": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "warning_image", + "namespace": "resource_packs" + } + }, + "warning_panel/hover": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "warning_image_hover", + "namespace": "resource_packs" + } + }, + "no_error_image": { + "file": "ui/resource_packs_screen.json", + "type": "image" + }, + "no_error_image_hover": { + "file": "ui/resource_packs_screen.json", + "type": "image" + }, + "no_error_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "default", + "hover" + ] + }, + "no_error_panel/default": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "no_error_image", + "namespace": "resource_packs" + } + }, + "no_error_panel/hover": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "no_error_image_hover", + "namespace": "resource_packs" + } + }, + "up_arrow_image": { + "file": "ui/resource_packs_screen.json", + "type": "image" + }, + "down_arrow_image": { + "file": "ui/resource_packs_screen.json", + "type": "image" + }, + "up_arrow_image_hover": { + "file": "ui/resource_packs_screen.json", + "type": "image" + }, + "down_arrow_image_hover": { + "file": "ui/resource_packs_screen.json", + "type": "image" + }, + "up_arrow_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "default", + "hover" + ] + }, + "up_arrow_panel/default": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "up_arrow_image", + "namespace": "resource_packs" + } + }, + "up_arrow_panel/hover": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "up_arrow_image_hover", + "namespace": "resource_packs" + } + }, + "up_arrow_wrapper": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "down_arrow", + "divider_right" + ] + }, + "up_arrow_wrapper/down_arrow": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "up_arrow_panel", + "namespace": "resource_packs" + } + }, + "up_arrow_wrapper/divider_right": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "vertical_divider", + "namespace": "common" + } + }, + "down_arrow_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "default", + "hover" + ] + }, + "down_arrow_panel/default": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "down_arrow_image", + "namespace": "resource_packs" + } + }, + "down_arrow_panel/hover": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "down_arrow_image_hover", + "namespace": "resource_packs" + } + }, + "down_arrow_wrapper": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "down_arrow", + "divider_right" + ] + }, + "down_arrow_wrapper/down_arrow": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "down_arrow_panel", + "namespace": "resource_packs" + } + }, + "down_arrow_wrapper/divider_right": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "vertical_divider", + "namespace": "common" + } + }, + "progress_loading_bars": { + "file": "ui/resource_packs_screen.json", + "type": "image" + }, + "warning_image_wrapper": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "error_image", + "warning_image", + "no_error_panel", + "progress_loading_bars" + ] + }, + "warning_image_wrapper/error_image": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "error_image_panel", + "namespace": "resource_packs" + } + }, + "warning_image_wrapper/warning_image": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "warning_panel", + "namespace": "resource_packs" + } + }, + "warning_image_wrapper/no_error_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "no_error_panel", + "namespace": "resource_packs" + } + }, + "warning_image_wrapper/progress_loading_bars": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "resource_packs" + } + }, + "tooltip_image_wrapper": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "error_image", + "warning_image" + ] + }, + "tooltip_image_wrapper/error_image": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "error_image", + "namespace": "resource_packs" + } + }, + "tooltip_image_wrapper/warning_image": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "warning_image", + "namespace": "resource_packs" + } + }, + "options_image": { + "file": "ui/resource_packs_screen.json", + "type": "image" + }, + "options_image_hover": { + "file": "ui/resource_packs_screen.json", + "type": "image" + }, + "options_image_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "default", + "hover" + ] + }, + "options_image_panel/default": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "options_image", + "namespace": "resource_packs" + } + }, + "options_image_panel/hover": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "image", + "border" + ] + }, + "options_image_panel/hover/image": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "options_image", + "namespace": "resource_packs" + } + }, + "options_image_panel/hover/border": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "options_image_hover", + "namespace": "resource_packs" + } + }, + "options_wrapper": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "options", + "divider_right" + ] + }, + "options_wrapper/options": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "options_image_panel", + "namespace": "resource_packs" + } + }, + "options_wrapper/divider_right": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "vertical_divider", + "namespace": "common" + } + }, + "common_pack_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + } + }, + "available_text_panel": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "name_panel", + "full_panel" + ] + }, + "available_text_panel/name_panel": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "available_pack_name_label", + "available_file_size_label" + ] + }, + "available_text_panel/name_panel/available_pack_name_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "available_pack_name_label", + "namespace": "resource_packs" + } + }, + "available_text_panel/name_panel/available_file_size_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "available_file_size_label", + "namespace": "resource_packs" + } + }, + "available_text_panel/full_panel": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "description_panel" + ] + }, + "available_text_panel/full_panel/description_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "available_pack_description_label" + ] + }, + "available_text_panel/full_panel/description_panel/available_pack_description_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "available_pack_description_label", + "namespace": "resource_packs" + } + }, + "realms_text_panel": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "name_panel", + "description_panel" + ] + }, + "realms_text_panel/name_panel": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "realms_pack_name_label", + "realms_file_size_label" + ] + }, + "realms_text_panel/name_panel/realms_pack_name_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "realms_pack_name_label", + "namespace": "resource_packs" + } + }, + "realms_text_panel/name_panel/realms_file_size_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "realms_file_size_label", + "namespace": "resource_packs" + } + }, + "realms_text_panel/description_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "realms_pack_description_label" + ] + }, + "realms_text_panel/description_panel/realms_pack_description_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "realms_pack_description_label", + "namespace": "resource_packs" + } + }, + "unowned_text_panel": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "name_panel", + "description_panel" + ] + }, + "unowned_text_panel/name_panel": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "unowned_pack_name_label", + "unowned_file_size_label" + ] + }, + "unowned_text_panel/name_panel/unowned_pack_name_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "unowned_pack_name_label", + "namespace": "resource_packs" + } + }, + "unowned_text_panel/name_panel/unowned_file_size_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "unowned_file_size_label", + "namespace": "resource_packs" + } + }, + "unowned_text_panel/description_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "unowned_pack_description_label" + ] + }, + "unowned_text_panel/description_panel/unowned_pack_description_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "unowned_pack_description_label", + "namespace": "resource_packs" + } + }, + "selected_text_panel": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "name_panel", + "full_panel" + ] + }, + "selected_text_panel/name_panel": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "selected_pack_name_label", + "selected_file_size_label", + "active_dot_panel" + ] + }, + "selected_text_panel/name_panel/selected_pack_name_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "selected_pack_name_label", + "namespace": "resource_packs" + } + }, + "selected_text_panel/name_panel/selected_file_size_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "selected_file_size_label", + "namespace": "resource_packs" + } + }, + "selected_text_panel/name_panel/active_dot_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "active_dot" + ] + }, + "selected_text_panel/name_panel/active_dot_panel/active_dot": { + "file": "ui/resource_packs_screen.json", + "type": "image" + }, + "selected_text_panel/full_panel": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "warning_line", + "error_line", + "expired_line", + "description_panel" + ] + }, + "selected_text_panel/full_panel/warning_line": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "warning_text", + "warning_number" + ] + }, + "selected_text_panel/full_panel/warning_line/warning_text": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "selected_text_panel/full_panel/warning_line/warning_number": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "selected_text_panel/full_panel/error_line": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "error_text", + "error_number" + ] + }, + "selected_text_panel/full_panel/error_line/error_text": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "selected_text_panel/full_panel/error_line/error_number": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "selected_text_panel/full_panel/expired_line": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "expired_text" + ] + }, + "selected_text_panel/full_panel/expired_line/expired_text": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "selected_text_panel/full_panel/description_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "selected_pack_description_label" + ] + }, + "selected_text_panel/full_panel/description_panel/selected_pack_description_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "selected_pack_description_label", + "namespace": "resource_packs" + } + }, + "invalid_text_panel": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "full_panel" + ] + }, + "invalid_text_panel/full_panel": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "error_line" + ] + }, + "invalid_text_panel/full_panel/error_line": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "error_text", + "error_number" + ] + }, + "invalid_text_panel/full_panel/error_line/error_text": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "invalid_text_panel/full_panel/error_line/error_number": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "available_pack_button_layout": { + "file": "ui/resource_packs_screen.json", + "type": "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": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "available_icon_image", + "namespace": "resource_packs" + } + }, + "available_pack_button_layout/text_panel_small": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "available_text_panel", + "namespace": "resource_packs" + } + }, + "available_pack_button_layout/text_panel_full": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "available_text_panel", + "namespace": "resource_packs" + } + }, + "available_pack_button_layout/read_more_button_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "read_button", + "namespace": "common_buttons" + } + }, + "available_pack_button_layout/read_less_button_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "read_button", + "namespace": "common_buttons" + } + }, + "available_pack_button_layout_hover": { + "file": "ui/resource_packs_screen.json", + "type": "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": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "available_pack_button_layout_hover/available_icon_image": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "available_icon_image", + "namespace": "resource_packs" + } + }, + "available_pack_button_layout_hover/text_panel_small": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "available_text_panel", + "namespace": "resource_packs" + } + }, + "available_pack_button_layout_hover/text_panel_full_hover": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "text_panel_full" + ] + }, + "available_pack_button_layout_hover/text_panel_full_hover/text_panel_full": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "available_text_panel", + "namespace": "resource_packs" + } + }, + "available_pack_button_layout_hover/read_more_button_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "read_button", + "namespace": "common_buttons" + } + }, + "available_pack_button_layout_hover/read_less_button_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "read_button", + "namespace": "common_buttons" + } + }, + "available_pack_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "common_pack_button", + "namespace": "resource_packs" + }, + "children": [ + "default", + "pressed", + "hover" + ] + }, + "available_pack_button/default": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "available_pack_button_layout", + "namespace": "resource_packs" + } + }, + "available_pack_button/pressed": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "available_pack_button_layout_hover", + "namespace": "resource_packs" + } + }, + "available_pack_button/hover": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "available_pack_button_layout_hover", + "namespace": "resource_packs" + } + }, + "realms_pack_button_layout": { + "file": "ui/resource_packs_screen.json", + "type": "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": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "realms_icon_image", + "namespace": "resource_packs" + } + }, + "realms_pack_button_layout/text_panel_small": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "realms_text_panel", + "namespace": "resource_packs" + } + }, + "realms_pack_button_layout/text_panel_full": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "realms_text_panel", + "namespace": "resource_packs" + } + }, + "realms_pack_button_layout/read_more_button_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "read_button", + "namespace": "common_buttons" + } + }, + "realms_pack_button_layout/read_less_button_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "read_button", + "namespace": "common_buttons" + } + }, + "realms_pack_button_layout_hover": { + "file": "ui/resource_packs_screen.json", + "type": "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": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "realms_pack_button_layout_hover/realms_icon_image": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "realms_icon_image", + "namespace": "resource_packs" + } + }, + "realms_pack_button_layout_hover/text_panel_small": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "realms_text_panel", + "namespace": "resource_packs" + } + }, + "realms_pack_button_layout_hover/text_panel_full_hover": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "text_panel_full" + ] + }, + "realms_pack_button_layout_hover/text_panel_full_hover/text_panel_full": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "realms_text_panel", + "namespace": "resource_packs" + } + }, + "realms_pack_button_layout_hover/read_more_button_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "read_button", + "namespace": "common_buttons" + } + }, + "realms_pack_button_layout_hover/read_less_button_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "read_button", + "namespace": "common_buttons" + } + }, + "realms_pack_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "common_pack_button", + "namespace": "resource_packs" + }, + "children": [ + "default", + "pressed", + "hover" + ] + }, + "realms_pack_button/default": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "realms_pack_button_layout", + "namespace": "resource_packs" + } + }, + "realms_pack_button/pressed": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "realms_pack_button_layout_hover", + "namespace": "resource_packs" + } + }, + "realms_pack_button/hover": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "realms_pack_button_layout_hover", + "namespace": "resource_packs" + } + }, + "unowned_pack_button_layout": { + "file": "ui/resource_packs_screen.json", + "type": "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": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "unowned_icon_image", + "namespace": "resource_packs" + } + }, + "unowned_pack_button_layout/text_panel_small": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "unowned_text_panel", + "namespace": "resource_packs" + } + }, + "unowned_pack_button_layout/text_panel_full": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "unowned_text_panel", + "namespace": "resource_packs" + } + }, + "unowned_pack_button_layout/read_more_button_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "read_button", + "namespace": "common_buttons" + } + }, + "unowned_pack_button_layout/read_less_button_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "read_button", + "namespace": "common_buttons" + } + }, + "unowned_pack_button_layout_hover": { + "file": "ui/resource_packs_screen.json", + "type": "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": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "unowned_pack_button_layout_hover/unowned_icon_image": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "unowned_icon_image", + "namespace": "resource_packs" + } + }, + "unowned_pack_button_layout_hover/text_panel_small": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "unowned_text_panel", + "namespace": "resource_packs" + } + }, + "unowned_pack_button_layout_hover/text_panel_full_hover": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "text_panel_full" + ] + }, + "unowned_pack_button_layout_hover/text_panel_full_hover/text_panel_full": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "unowned_text_panel", + "namespace": "resource_packs" + } + }, + "unowned_pack_button_layout_hover/read_more_button_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "read_button", + "namespace": "common_buttons" + } + }, + "unowned_pack_button_layout_hover/read_less_button_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "read_button", + "namespace": "common_buttons" + } + }, + "unowned_pack_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "common_pack_button", + "namespace": "resource_packs" + }, + "children": [ + "default", + "pressed", + "hover" + ] + }, + "unowned_pack_button/default": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "unowned_pack_button_layout", + "namespace": "resource_packs" + } + }, + "unowned_pack_button/pressed": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "unowned_pack_button_layout_hover", + "namespace": "resource_packs" + } + }, + "unowned_pack_button/hover": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "unowned_pack_button_layout_hover", + "namespace": "resource_packs" + } + }, + "invalid_pack_button_layout": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "invalid_icon_image", + "text_panel" + ] + }, + "invalid_pack_button_layout/invalid_icon_image": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "invalid_icon_image", + "namespace": "resource_packs" + } + }, + "invalid_pack_button_layout/text_panel": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "invalid_text_panel", + "namespace": "resource_packs" + } + }, + "invalid_pack_button_layout_hover": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "hover_small", + "invalid_icon_image", + "text_panel_full_hover" + ] + }, + "invalid_pack_button_layout_hover/hover_small": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "invalid_pack_button_layout_hover/invalid_icon_image": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "invalid_icon_image", + "namespace": "resource_packs" + } + }, + "invalid_pack_button_layout_hover/text_panel_full_hover": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "text_panel" + ] + }, + "invalid_pack_button_layout_hover/text_panel_full_hover/text_panel": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "invalid_text_panel", + "namespace": "resource_packs" + } + }, + "invalid_pack_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "common_pack_button", + "namespace": "resource_packs" + }, + "children": [ + "default", + "pressed", + "hover" + ] + }, + "invalid_pack_button/default": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "invalid_pack_button_layout", + "namespace": "resource_packs" + } + }, + "invalid_pack_button/pressed": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "invalid_pack_button_layout_hover", + "namespace": "resource_packs" + } + }, + "invalid_pack_button/hover": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "invalid_pack_button_layout_hover", + "namespace": "resource_packs" + } + }, + "empty_resource_pack_button": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "resource_pack_button_padding": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "input_button_panel": { + "file": "ui/resource_packs_screen.json", + "type": "input_panel", + "children": [ + "border_image", + "background" + ] + }, + "input_button_panel/border_image": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "children": [ + "button_panel" + ] + }, + "input_button_panel/border_image/button_panel": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "padding_0", + "padding_1", + "padding_2", + "padding_3", + "padding_4" + ] + }, + "input_button_panel/border_image/button_panel/padding_0": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "resource_pack_button_padding", + "namespace": "resource_packs" + } + }, + "input_button_panel/border_image/button_panel/padding_1": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "resource_pack_button_padding", + "namespace": "resource_packs" + } + }, + "input_button_panel/border_image/button_panel/padding_2": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "resource_pack_button_padding", + "namespace": "resource_packs" + } + }, + "input_button_panel/border_image/button_panel/padding_3": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "resource_pack_button_padding", + "namespace": "resource_packs" + } + }, + "input_button_panel/border_image/button_panel/padding_4": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "resource_pack_button_padding", + "namespace": "resource_packs" + } + }, + "input_button_panel/background": { + "file": "ui/resource_packs_screen.json", + "type": "image" + }, + "selected_pack_button_layout": { + "file": "ui/resource_packs_screen.json", + "type": "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": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "selected_icon_image", + "namespace": "resource_packs" + } + }, + "selected_pack_button_layout/text_panel_small": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "selected_text_panel", + "namespace": "resource_packs" + } + }, + "selected_pack_button_layout/text_panel_full": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "selected_text_panel", + "namespace": "resource_packs" + } + }, + "selected_pack_button_layout/read_more_button_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "read_button", + "namespace": "common_buttons" + } + }, + "selected_pack_button_layout/read_less_button_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "read_button", + "namespace": "common_buttons" + } + }, + "selected_pack_button_layout_hover": { + "file": "ui/resource_packs_screen.json", + "type": "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": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "selected_pack_button_layout_hover/selected_icon_image": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "selected_icon_image", + "namespace": "resource_packs" + } + }, + "selected_pack_button_layout_hover/text_panel_small": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "selected_text_panel", + "namespace": "resource_packs" + } + }, + "selected_pack_button_layout_hover/text_panel_full_hover": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "text_panel_full" + ] + }, + "selected_pack_button_layout_hover/text_panel_full_hover/text_panel_full": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "selected_text_panel", + "namespace": "resource_packs" + } + }, + "selected_pack_button_layout_hover/read_more_button_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "read_button", + "namespace": "common_buttons" + } + }, + "selected_pack_button_layout_hover/read_less_button_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "read_button", + "namespace": "common_buttons" + } + }, + "selected_pack_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "common_pack_button", + "namespace": "resource_packs" + }, + "children": [ + "default", + "pressed", + "hover" + ] + }, + "selected_pack_button/default": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "selected_pack_button_layout", + "namespace": "resource_packs" + } + }, + "selected_pack_button/pressed": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "selected_pack_button_layout_hover", + "namespace": "resource_packs" + } + }, + "selected_pack_button/hover": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "selected_pack_button_layout_hover", + "namespace": "resource_packs" + } + }, + "selected_pack_movement_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "light_glyph_button", + "namespace": "common_buttons" + } + }, + "selected_pack_transparent_movement_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "transparent_content_button", + "namespace": "common_buttons" + } + }, + "selected_pack_minus_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "selected_pack_movement_button", + "namespace": "resource_packs" + } + }, + "selected_pack_plus_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "selected_pack_movement_button", + "namespace": "resource_packs" + } + }, + "selected_pack_store_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "selected_pack_movement_button", + "namespace": "resource_packs" + } + }, + "selected_pack_store_button_fill": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "selected_pack_movement_button", + "namespace": "resource_packs" + } + }, + "selected_pack_up_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "selected_pack_transparent_movement_button", + "namespace": "resource_packs" + } + }, + "selected_pack_down_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "selected_pack_transparent_movement_button", + "namespace": "resource_packs" + } + }, + "selected_pack_warning_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "transparent_content_button", + "namespace": "common_buttons" + } + }, + "selected_pack_options_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "transparent_content_button", + "namespace": "common_buttons" + } + }, + "white_label": { + "file": "ui/resource_packs_screen.json", + "type": "label" + }, + "gray_label": { + "file": "ui/resource_packs_screen.json", + "type": "label" + }, + "suggested_content_offers_title_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "white_label", + "namespace": "resource_packs" + } + }, + "available_packs_title_content": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "selected_packs_title_content", + "namespace": "resource_packs" + } + }, + "realms_packs_title_content": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "selected_packs_title_content", + "namespace": "resource_packs" + } + }, + "unowned_packs_title_content": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "selected_packs_title_content", + "namespace": "resource_packs" + } + }, + "selected_packs_title_content": { + "file": "ui/resource_packs_screen.json", + "type": "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": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "selected_packs_title_content/fill_pad": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "selected_packs_title_content/icon_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "block_icon" + ] + }, + "selected_packs_title_content/icon_panel/block_icon": { + "file": "ui/resource_packs_screen.json", + "type": "image" + }, + "selected_packs_title_content/pad_0": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "selected_packs_title_content/count": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "selected_packs_title_content/pad_1": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "selected_packs_title_content/plus_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "plus" + ] + }, + "selected_packs_title_content/plus_panel/plus": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "plus_image", + "namespace": "resource_packs" + } + }, + "selected_packs_title_content/minus_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "minus" + ] + }, + "selected_packs_title_content/minus_panel/minus": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "minus_image", + "namespace": "resource_packs" + } + }, + "available_packs_title_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "realms_packs_title_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "unowned_packs_title_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "selected_packs_title_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "name_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "white_label", + "namespace": "resource_packs" + } + }, + "size_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "white_label", + "namespace": "resource_packs" + } + }, + "description_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "white_label", + "namespace": "resource_packs" + } + }, + "pack_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "white_label", + "namespace": "resource_packs" + } + }, + "selected_pack_description_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "pack_label", + "namespace": "resource_packs" + } + }, + "available_pack_description_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "selected_pack_description_label", + "namespace": "resource_packs" + } + }, + "realms_pack_description_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "selected_pack_description_label", + "namespace": "resource_packs" + } + }, + "unowned_pack_description_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "selected_pack_description_label", + "namespace": "resource_packs" + } + }, + "selected_pack_name_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "name_label", + "namespace": "resource_packs" + } + }, + "selected_file_size_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "size_label", + "namespace": "resource_packs" + } + }, + "available_pack_name_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "selected_pack_name_label", + "namespace": "resource_packs" + } + }, + "available_file_size_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "selected_file_size_label", + "namespace": "resource_packs" + } + }, + "realms_pack_name_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "selected_pack_name_label", + "namespace": "resource_packs" + } + }, + "realms_file_size_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "selected_file_size_label", + "namespace": "resource_packs" + } + }, + "unowned_pack_name_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "selected_pack_name_label", + "namespace": "resource_packs" + } + }, + "unowned_file_size_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "selected_file_size_label", + "namespace": "resource_packs" + } + }, + "invalid_pack_name_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "selected_pack_name_label", + "namespace": "resource_packs" + } + }, + "invalid_pack_description_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "selected_pack_description_label", + "namespace": "resource_packs" + } + }, + "available_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "selected_packs" + ] + }, + "available_panel/selected_packs": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "checkbox_visuals": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "toggle_visuals", + "namespace": "common" + } + }, + "header_control": { + "file": "ui/resource_packs_screen.json", + "type": "toggle", + "extend": { + "name": "checkbox", + "namespace": "common" + }, + "children": [ + "header_description_stack_panel" + ] + }, + "header_control/header_description_stack_panel": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "checkbox_visuals", + "buffer_panel" + ] + }, + "header_control/header_description_stack_panel/checkbox_visuals": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "checkbox_visuals", + "namespace": "resource_packs" + } + }, + "header_control/header_description_stack_panel/buffer_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "label" + ] + }, + "header_control/header_description_stack_panel/buffer_panel/label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "description_label", + "namespace": "resource_packs" + } + }, + "addon_header_control": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "header_description_stack_panel" + ] + }, + "addon_header_control/header_description_stack_panel": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "padding_0", + "description_center_panel", + "padding_1", + "link_center_panel", + "padding_2" + ] + }, + "addon_header_control/header_description_stack_panel/padding_0": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "addon_header_control/header_description_stack_panel/description_center_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "label" + ] + }, + "addon_header_control/header_description_stack_panel/description_center_panel/label": { + "file": "ui/resource_packs_screen.json", + "type": "label" + }, + "addon_header_control/header_description_stack_panel/padding_1": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "addon_header_control/header_description_stack_panel/link_center_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "addon_link_button" + ] + }, + "addon_header_control/header_description_stack_panel/link_center_panel/addon_link_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "underline_button", + "namespace": "common_buttons" + } + }, + "addon_header_control/header_description_stack_panel/padding_2": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "panel_bg": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "black_background", + "gray" + ] + }, + "panel_bg/black_background": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "black_image", + "namespace": "resource_packs" + } + }, + "panel_bg/gray": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "gray_image", + "namespace": "resource_packs" + } + }, + "addon_panel_bg": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "black_background", + "yellow" + ] + }, + "addon_panel_bg/black_background": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "black_image", + "namespace": "resource_packs" + } + }, + "addon_panel_bg/yellow": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "yellow_image", + "namespace": "resource_packs" + } + }, + "error_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "black_background" + ] + }, + "error_panel/black_background": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "black_image", + "namespace": "resource_packs" + }, + "children": [ + "gray" + ] + }, + "error_panel/black_background/gray": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "gray_image", + "namespace": "resource_packs" + }, + "children": [ + "panel" + ] + }, + "error_panel/black_background/gray/panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "error_label" + ] + }, + "error_panel/black_background/gray/panel/error_label": { + "file": "ui/resource_packs_screen.json", + "type": "label" + }, + "selected_stack_panel": { + "file": "ui/resource_packs_screen.json", + "type": "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": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "option_info_label" + ] + }, + "selected_stack_panel/world_template_option_lock_panel/option_info_label": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "option_info_label", + "namespace": "settings_common" + } + }, + "selected_stack_panel/top_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "panel_bg", + "header_control" + ] + }, + "selected_stack_panel/top_panel/panel_bg": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "panel_bg", + "namespace": "resource_packs" + } + }, + "selected_stack_panel/top_panel/header_control": { + "file": "ui/resource_packs_screen.json", + "type": "toggle", + "extend": { + "name": "header_control", + "namespace": "resource_packs" + } + }, + "selected_stack_panel/offset_0": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "selected_stack_panel/addon_stacking_warning_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "addon_panel_bg", + "header_control" + ] + }, + "selected_stack_panel/addon_stacking_warning_panel/addon_panel_bg": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "addon_panel_bg", + "namespace": "resource_packs" + } + }, + "selected_stack_panel/addon_stacking_warning_panel/header_control": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "addon_header_control", + "namespace": "resource_packs" + } + }, + "selected_stack_panel/offset_1": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "selected_stack_panel/selected_packs_title_panel": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "selected_packs_title_button", + "tooltip" + ] + }, + "selected_stack_panel/selected_packs_title_panel/selected_packs_title_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "selected_packs_title_button", + "namespace": "resource_packs" + } + }, + "selected_stack_panel/selected_packs_title_panel/tooltip": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "button" + ] + }, + "selected_stack_panel/selected_packs_title_panel/tooltip/button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "selected_stack_panel/selected_pack_section": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "offset", + "selected_pack_grid", + "default_item", + "filler_panel" + ] + }, + "selected_stack_panel/selected_pack_section/offset": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "selected_stack_panel/selected_pack_section/selected_pack_grid": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "selected_pack_grid", + "namespace": "resource_packs" + } + }, + "selected_stack_panel/selected_pack_section/default_item": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "icon_image", + "name_panel", + "description_panel" + ] + }, + "selected_stack_panel/selected_pack_section/default_item/icon_image": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "icon_image", + "namespace": "resource_packs" + } + }, + "selected_stack_panel/selected_pack_section/default_item/name_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "white_label" + ] + }, + "selected_stack_panel/selected_pack_section/default_item/name_panel/white_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "white_label", + "namespace": "resource_packs" + } + }, + "selected_stack_panel/selected_pack_section/default_item/description_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "white_label" + ] + }, + "selected_stack_panel/selected_pack_section/default_item/description_panel/white_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "white_label", + "namespace": "resource_packs" + } + }, + "selected_stack_panel/selected_pack_section/filler_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "description_label" + ] + }, + "selected_stack_panel/selected_pack_section/filler_panel/description_label": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "description_label", + "namespace": "resource_packs" + } + }, + "selected_stack_panel/offset_2": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "selected_stack_panel/available_packs_title_panel": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "available_packs_title_button", + "tooltip" + ] + }, + "selected_stack_panel/available_packs_title_panel/available_packs_title_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "available_packs_title_button", + "namespace": "resource_packs" + } + }, + "selected_stack_panel/available_packs_title_panel/tooltip": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "button" + ] + }, + "selected_stack_panel/available_packs_title_panel/tooltip/button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "selected_stack_panel/available_packs_section": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "offset", + "empty_panel", + "available_pack_grid", + "invalid_pack_grid" + ] + }, + "selected_stack_panel/available_packs_section/offset": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "selected_stack_panel/available_packs_section/empty_panel": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "no_packs_panel", + "to_store_button" + ] + }, + "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "no_packs_text" + ] + }, + "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel/no_packs_text": { + "file": "ui/resource_packs_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "selected_stack_panel/available_packs_section/empty_panel/to_store_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "selected_stack_panel/available_packs_section/available_pack_grid": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "available_pack_grid", + "namespace": "resource_packs" + } + }, + "selected_stack_panel/available_packs_section/invalid_pack_grid": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "invalid_pack_grid", + "namespace": "resource_packs" + } + }, + "selected_stack_panel/offset_3": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "selected_stack_panel/realms_packs_title_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "realms_packs_title_button", + "namespace": "resource_packs" + } + }, + "selected_stack_panel/realms_packs_section": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "offset", + "realms_pack_grid", + "offset_4" + ] + }, + "selected_stack_panel/realms_packs_section/offset": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "selected_stack_panel/realms_packs_section/realms_pack_grid": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "realms_pack_grid", + "namespace": "resource_packs" + } + }, + "selected_stack_panel/realms_packs_section/offset_4": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "selected_stack_panel/offset_4": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "selected_stack_panel/unowned_packs_title_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "unowned_packs_title_button", + "namespace": "resource_packs" + } + }, + "selected_stack_panel/unowned_packs_section": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "offset", + "unowned_pack_grid", + "to_store_button", + "offset_4" + ] + }, + "selected_stack_panel/unowned_packs_section/offset": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "selected_stack_panel/unowned_packs_section/unowned_pack_grid": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "unowned_pack_grid", + "namespace": "resource_packs" + } + }, + "selected_stack_panel/unowned_packs_section/to_store_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "selected_stack_panel/unowned_packs_section/offset_4": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "available_stack_panel": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "available_packs_title_button", + "available_pack_grid" + ] + }, + "available_stack_panel/available_packs_title_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "available_packs_title_button", + "namespace": "resource_packs" + } + }, + "available_stack_panel/available_pack_grid": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "extend": { + "name": "available_pack_grid", + "namespace": "resource_packs" + } + }, + "pack_background": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "white_image", + "gray_image" + ] + }, + "pack_background/white_image": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "white_image", + "namespace": "resource_packs" + } + }, + "pack_background/gray_image": { + "file": "ui/resource_packs_screen.json", + "type": "image", + "extend": { + "name": "gray_image", + "namespace": "resource_packs" + } + }, + "selected_pack_panel": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "selected_pack_button", + "pad_0", + "center_panel", + "divider", + "pad_1" + ] + }, + "selected_pack_panel/selected_pack_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "selected_pack_button", + "namespace": "resource_packs" + } + }, + "selected_pack_panel/pad_0": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "selected_pack_panel/center_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "visibility_panel" + ] + }, + "selected_pack_panel/center_panel/visibility_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "selected_pack_direction_buttons" + ] + }, + "selected_pack_panel/center_panel/visibility_panel/selected_pack_direction_buttons": { + "file": "ui/resource_packs_screen.json", + "type": "input_panel", + "extend": { + "name": "input_button_panel", + "namespace": "resource_packs" + } + }, + "selected_pack_panel/divider": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "common" + } + }, + "selected_pack_panel/pad_1": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "available_pack_panel": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "available_pack_button", + "pad_0", + "center_panel", + "divider", + "pad_1" + ] + }, + "available_pack_panel/available_pack_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "available_pack_button", + "namespace": "resource_packs" + } + }, + "available_pack_panel/pad_0": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "available_pack_panel/center_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "available_pack_direction_buttons" + ] + }, + "available_pack_panel/center_panel/available_pack_direction_buttons": { + "file": "ui/resource_packs_screen.json", + "type": "input_panel", + "extend": { + "name": "input_button_panel", + "namespace": "resource_packs" + } + }, + "available_pack_panel/divider": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "common" + } + }, + "available_pack_panel/pad_1": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "realms_pack_panel": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "realms_pack_button", + "pad_0", + "center_panel", + "divider", + "pad_1" + ] + }, + "realms_pack_panel/realms_pack_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "realms_pack_button", + "namespace": "resource_packs" + } + }, + "realms_pack_panel/pad_0": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "realms_pack_panel/center_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "realms_pack_direction_buttons" + ] + }, + "realms_pack_panel/center_panel/realms_pack_direction_buttons": { + "file": "ui/resource_packs_screen.json", + "type": "input_panel", + "extend": { + "name": "input_button_panel", + "namespace": "resource_packs" + } + }, + "realms_pack_panel/divider": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "common" + } + }, + "realms_pack_panel/pad_1": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "unowned_pack_panel": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "unowned_pack_button", + "pad_0", + "center_panel", + "divider", + "pad_1" + ] + }, + "unowned_pack_panel/unowned_pack_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "unowned_pack_button", + "namespace": "resource_packs" + } + }, + "unowned_pack_panel/pad_0": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "unowned_pack_panel/center_panel": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "children": [ + "realms_pack_direction_buttons" + ] + }, + "unowned_pack_panel/center_panel/realms_pack_direction_buttons": { + "file": "ui/resource_packs_screen.json", + "type": "input_panel", + "extend": { + "name": "input_button_panel", + "namespace": "resource_packs" + } + }, + "unowned_pack_panel/divider": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "common" + } + }, + "unowned_pack_panel/pad_1": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "invalid_pack_panel": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel", + "children": [ + "invalid_pack_button", + "pad_0", + "divider", + "pad_1" + ] + }, + "invalid_pack_panel/invalid_pack_button": { + "file": "ui/resource_packs_screen.json", + "type": "button", + "extend": { + "name": "invalid_pack_button", + "namespace": "resource_packs" + } + }, + "invalid_pack_panel/pad_0": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "invalid_pack_panel/divider": { + "file": "ui/resource_packs_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "common" + } + }, + "invalid_pack_panel/pad_1": { + "file": "ui/resource_packs_screen.json", + "type": "panel" + }, + "selected_pack_grid": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel" + }, + "available_pack_grid": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel" + }, + "realms_pack_grid": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel" + }, + "unowned_pack_grid": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel" + }, + "invalid_pack_grid": { + "file": "ui/resource_packs_screen.json", + "type": "stack_panel" + } + }, + "safe_zone": { + "corner_image_common": { + "file": "ui/safe_zone_screen.json", + "type": "image" + }, + "corner_bl": { + "file": "ui/safe_zone_screen.json", + "type": "image", + "extend": { + "name": "corner_image_common", + "namespace": "safe_zone" + } + }, + "corner_br": { + "file": "ui/safe_zone_screen.json", + "type": "image", + "extend": { + "name": "corner_image_common", + "namespace": "safe_zone" + } + }, + "corner_tr": { + "file": "ui/safe_zone_screen.json", + "type": "image", + "extend": { + "name": "corner_image_common", + "namespace": "safe_zone" + } + }, + "corner_tl": { + "file": "ui/safe_zone_screen.json", + "type": "image", + "extend": { + "name": "corner_image_common", + "namespace": "safe_zone" + } + }, + "confirm_button": { + "file": "ui/safe_zone_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "title_text": { + "file": "ui/safe_zone_screen.json", + "type": "label" + }, + "instructions_text": { + "file": "ui/safe_zone_screen.json", + "type": "panel", + "children": [ + "inner_label" + ] + }, + "instructions_text/inner_label": { + "file": "ui/safe_zone_screen.json", + "type": "label" + }, + "label_button": { + "file": "ui/safe_zone_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + } + }, + "label_button_hover": { + "file": "ui/safe_zone_screen.json", + "type": "panel", + "children": [ + "hover" + ] + }, + "label_button_hover/hover": { + "file": "ui/safe_zone_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + }, + "children": [ + "button_hover_text" + ] + }, + "label_button_hover/hover/button_hover_text": { + "file": "ui/safe_zone_screen.json", + "type": "panel", + "extend": { + "name": "instructions_text", + "namespace": "safe_zone" + } + }, + "content_panel": { + "file": "ui/safe_zone_screen.json", + "type": "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": { + "file": "ui/safe_zone_screen.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "content_panel/safe_zone_slider_x": { + "file": "ui/safe_zone_screen.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "content_panel/safe_zone_slider_y": { + "file": "ui/safe_zone_screen.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "content_panel/screen_position_slider_x": { + "file": "ui/safe_zone_screen.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "content_panel/screen_position_slider_y": { + "file": "ui/safe_zone_screen.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "content_panel/instruction_text_button": { + "file": "ui/safe_zone_screen.json", + "type": "button", + "extend": { + "name": "label_button", + "namespace": "safe_zone" + }, + "children": [ + "default", + "pressed", + "hover" + ] + }, + "content_panel/instruction_text_button/default": { + "file": "ui/safe_zone_screen.json", + "type": "panel", + "extend": { + "name": "instructions_text", + "namespace": "safe_zone" + } + }, + "content_panel/instruction_text_button/pressed": { + "file": "ui/safe_zone_screen.json", + "type": "panel", + "extend": { + "name": "label_button_hover", + "namespace": "safe_zone" + } + }, + "content_panel/instruction_text_button/hover": { + "file": "ui/safe_zone_screen.json", + "type": "panel", + "extend": { + "name": "label_button_hover", + "namespace": "safe_zone" + } + }, + "safe_zone_screen": { + "file": "ui/safe_zone_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + }, + "children": [ + "safe_zone_bounds_markers", + "main_content_panel" + ] + }, + "safe_zone_screen/safe_zone_bounds_markers": { + "file": "ui/safe_zone_screen.json", + "type": "panel", + "children": [ + "top_left_marker", + "top_right_marker", + "bottom_left_marker", + "bottom_right_marker" + ] + }, + "safe_zone_screen/safe_zone_bounds_markers/top_left_marker": { + "file": "ui/safe_zone_screen.json", + "type": "image", + "extend": { + "name": "corner_tl", + "namespace": "safe_zone" + } + }, + "safe_zone_screen/safe_zone_bounds_markers/top_right_marker": { + "file": "ui/safe_zone_screen.json", + "type": "image", + "extend": { + "name": "corner_tr", + "namespace": "safe_zone" + } + }, + "safe_zone_screen/safe_zone_bounds_markers/bottom_left_marker": { + "file": "ui/safe_zone_screen.json", + "type": "image", + "extend": { + "name": "corner_bl", + "namespace": "safe_zone" + } + }, + "safe_zone_screen/safe_zone_bounds_markers/bottom_right_marker": { + "file": "ui/safe_zone_screen.json", + "type": "image", + "extend": { + "name": "corner_br", + "namespace": "safe_zone" + } + }, + "safe_zone_screen/main_content_panel": { + "file": "ui/safe_zone_screen.json", + "type": "panel", + "children": [ + "common_panel", + "title_text", + "scrolling_panel", + "confirm_button" + ] + }, + "safe_zone_screen/main_content_panel/common_panel": { + "file": "ui/safe_zone_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "safe_zone_screen/main_content_panel/title_text": { + "file": "ui/safe_zone_screen.json", + "type": "label", + "extend": { + "name": "title_text", + "namespace": "safe_zone" + } + }, + "safe_zone_screen/main_content_panel/scrolling_panel": { + "file": "ui/safe_zone_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "safe_zone_screen/main_content_panel/confirm_button": { + "file": "ui/safe_zone_screen.json", + "type": "button", + "extend": { + "name": "confirm_button", + "namespace": "safe_zone" + } + } + }, + "storage_migration_common": { + "progress_panel": { + "file": "ui/storage_migration_common.json", + "type": "panel", + "children": [ + "common_panel", + "base_content", + "inside_content" + ] + }, + "progress_panel/common_panel": { + "file": "ui/storage_migration_common.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "progress_panel/base_content": { + "file": "ui/storage_migration_common.json", + "type": "panel", + "children": [ + "progress_title_text", + "progress_bar_text" + ] + }, + "progress_panel/base_content/progress_title_text": { + "file": "ui/storage_migration_common.json", + "type": "label", + "extend": { + "name": "progress_title_text", + "namespace": "progress" + } + }, + "progress_panel/base_content/progress_bar_text": { + "file": "ui/storage_migration_common.json", + "type": "label", + "extend": { + "name": "progress_bar_text", + "namespace": "progress" + } + }, + "progress_panel/inside_content": { + "file": "ui/storage_migration_common.json", + "type": "stack_panel", + "children": [ + "size_label", + "padding_1", + "loading_bar_panel", + "padding_3" + ] + }, + "progress_panel/inside_content/size_label": { + "file": "ui/storage_migration_common.json", + "type": "label" + }, + "progress_panel/inside_content/padding_1": { + "file": "ui/storage_migration_common.json", + "type": "panel" + }, + "progress_panel/inside_content/loading_bar_panel": { + "file": "ui/storage_migration_common.json", + "type": "panel", + "children": [ + "fancy_progress_loading_bars", + "progress_loading_bars" + ] + }, + "progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": { + "file": "ui/storage_migration_common.json", + "type": "panel", + "extend": { + "name": "fancy_progress_loading_bars", + "namespace": "progress" + } + }, + "progress_panel/inside_content/loading_bar_panel/progress_loading_bars": { + "file": "ui/storage_migration_common.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "progress" + } + }, + "progress_panel/inside_content/padding_3": { + "file": "ui/storage_migration_common.json", + "type": "panel" + }, + "label": { + "file": "ui/storage_migration_common.json", + "type": "label" + }, + "base_button": { + "file": "ui/storage_migration_common.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "retry_button": { + "file": "ui/storage_migration_common.json", + "type": "button", + "extend": { + "name": "base_button", + "namespace": "storage_migration_common" + } + }, + "go_to_faq_button": { + "file": "ui/storage_migration_common.json", + "type": "button", + "extend": { + "name": "base_button", + "namespace": "storage_migration_common" + } + }, + "next_button": { + "file": "ui/storage_migration_common.json", + "type": "button", + "extend": { + "name": "base_button", + "namespace": "storage_migration_common" + } + }, + "get_started_button": { + "file": "ui/storage_migration_common.json", + "type": "button", + "extend": { + "name": "base_button", + "namespace": "storage_migration_common" + } + }, + "start_transfer_button": { + "file": "ui/storage_migration_common.json", + "type": "button", + "extend": { + "name": "base_button", + "namespace": "storage_migration_common" + } + }, + "finished_main_menu_button": { + "file": "ui/storage_migration_common.json", + "type": "button", + "extend": { + "name": "base_button", + "namespace": "storage_migration_common" + } + }, + "start_transfer_out_of_space_button": { + "file": "ui/storage_migration_common.json", + "type": "button", + "extend": { + "name": "base_button", + "namespace": "storage_migration_common" + } + }, + "continue_out_of_space_button": { + "file": "ui/storage_migration_common.json", + "type": "button", + "extend": { + "name": "base_button", + "namespace": "storage_migration_common" + } + }, + "resume_transfer_button": { + "file": "ui/storage_migration_common.json", + "type": "button", + "extend": { + "name": "base_button", + "namespace": "storage_migration_common" + } + }, + "exit_button": { + "file": "ui/storage_migration_common.json", + "type": "button", + "extend": { + "name": "base_button", + "namespace": "storage_migration_common" + } + }, + "retry_help_button_panel": { + "file": "ui/storage_migration_common.json", + "type": "stack_panel", + "children": [ + "retry", + "padding", + "help" + ] + }, + "retry_help_button_panel/retry": { + "file": "ui/storage_migration_common.json", + "type": "button", + "extend": { + "name": "retry_button", + "namespace": "storage_migration_common" + } + }, + "retry_help_button_panel/padding": { + "file": "ui/storage_migration_common.json", + "type": "panel" + }, + "retry_help_button_panel/help": { + "file": "ui/storage_migration_common.json", + "type": "button", + "extend": { + "name": "go_to_faq_button", + "namespace": "storage_migration_common" + } + }, + "modal_no_buttons": { + "file": "ui/storage_migration_common.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + }, + "modal_one_button": { + "file": "ui/storage_migration_common.json", + "type": "panel", + "extend": { + "name": "main_panel_one_button", + "namespace": "common_dialogs" + } + }, + "modal_two_buttons": { + "file": "ui/storage_migration_common.json", + "type": "panel", + "extend": { + "name": "main_panel_two_buttons", + "namespace": "common_dialogs" + } + }, + "base_child_control": { + "file": "ui/storage_migration_common.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "base_child_control/scrolling_panel": { + "file": "ui/storage_migration_common.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "file_size_description": { + "file": "ui/storage_migration_common.json", + "type": "stack_panel", + "children": [ + "description", + "padding", + "size_stack", + "file_location" + ] + }, + "file_size_description/description": { + "file": "ui/storage_migration_common.json", + "type": "label", + "extend": { + "name": "label", + "namespace": "storage_migration_common" + } + }, + "file_size_description/padding": { + "file": "ui/storage_migration_common.json", + "type": "panel" + }, + "file_size_description/size_stack": { + "file": "ui/storage_migration_common.json", + "type": "stack_panel", + "children": [ + "file_text", + "padding_1", + "file_size_total", + "padding_2", + "file_size_available" + ] + }, + "file_size_description/size_stack/file_text": { + "file": "ui/storage_migration_common.json", + "type": "label", + "extend": { + "name": "label", + "namespace": "storage_migration_common" + } + }, + "file_size_description/size_stack/padding_1": { + "file": "ui/storage_migration_common.json", + "type": "panel" + }, + "file_size_description/size_stack/file_size_total": { + "file": "ui/storage_migration_common.json", + "type": "label", + "extend": { + "name": "label", + "namespace": "storage_migration_common" + } + }, + "file_size_description/size_stack/padding_2": { + "file": "ui/storage_migration_common.json", + "type": "panel" + }, + "file_size_description/size_stack/file_size_available": { + "file": "ui/storage_migration_common.json", + "type": "label", + "extend": { + "name": "label", + "namespace": "storage_migration_common" + } + }, + "file_size_description/file_location": { + "file": "ui/storage_migration_common.json", + "type": "label", + "extend": { + "name": "label", + "namespace": "storage_migration_common" + } + }, + "error_icon_and_description": { + "file": "ui/storage_migration_common.json", + "type": "stack_panel", + "children": [ + "error_image", + "description" + ] + }, + "error_icon_and_description/error_image": { + "file": "ui/storage_migration_common.json", + "type": "image" + }, + "error_icon_and_description/description": { + "file": "ui/storage_migration_common.json", + "type": "label", + "extend": { + "name": "label", + "namespace": "storage_migration_common" + } + }, + "file_size_description_with_error": { + "file": "ui/storage_migration_common.json", + "type": "stack_panel", + "children": [ + "file_size", + "padding", + "error_icon_and_description" + ] + }, + "file_size_description_with_error/file_size": { + "file": "ui/storage_migration_common.json", + "type": "stack_panel", + "extend": { + "name": "file_size_description", + "namespace": "storage_migration_common" + } + }, + "file_size_description_with_error/padding": { + "file": "ui/storage_migration_common.json", + "type": "panel" + }, + "file_size_description_with_error/error_icon_and_description": { + "file": "ui/storage_migration_common.json", + "type": "stack_panel", + "extend": { + "name": "error_icon_and_description", + "namespace": "storage_migration_common" + } + }, + "start_transfer": { + "file": "ui/storage_migration_common.json", + "type": "panel", + "extend": { + "name": "modal_one_button", + "namespace": "storage_migration_common" + } + }, + "start_transfer_content": { + "file": "ui/storage_migration_common.json", + "type": "stack_panel", + "extend": { + "name": "file_size_description", + "namespace": "storage_migration_common" + } + }, + "resume_transfer": { + "file": "ui/storage_migration_common.json", + "type": "panel", + "extend": { + "name": "modal_one_button", + "namespace": "storage_migration_common" + } + }, + "resume_transfer_content": { + "file": "ui/storage_migration_common.json", + "type": "stack_panel", + "children": [ + "file_size" + ] + }, + "resume_transfer_content/file_size": { + "file": "ui/storage_migration_common.json", + "type": "stack_panel", + "extend": { + "name": "file_size_description", + "namespace": "storage_migration_common" + } + }, + "transfer_error_out_of_space": { + "file": "ui/storage_migration_common.json", + "type": "panel", + "extend": { + "name": "modal_one_button", + "namespace": "storage_migration_common" + } + }, + "transfer_error_out_of_space_content": { + "file": "ui/storage_migration_common.json", + "type": "stack_panel", + "extend": { + "name": "file_size_description_with_error", + "namespace": "storage_migration_common" + } + } + }, + "storage_migration_generic": { + "storage_migration_generic_screen": { + "file": "ui/storage_migration_generic_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "modal_screen_content": { + "file": "ui/storage_migration_generic_screen.json", + "type": "panel", + "children": [ + "modal_progress_panel_no_cancel", + "popup_dialog_factory" + ] + }, + "modal_screen_content/modal_progress_panel_no_cancel": { + "file": "ui/storage_migration_generic_screen.json", + "type": "panel", + "extend": { + "name": "progress_panel", + "namespace": "storage_migration_common" + } + }, + "modal_screen_content/popup_dialog_factory": { + "file": "ui/storage_migration_generic_screen.json", + "type": "factory" + }, + "start_transfer": { + "file": "ui/storage_migration_generic_screen.json", + "type": "panel", + "extend": { + "name": "start_transfer", + "namespace": "storage_migration_common" + } + }, + "start_transfer_out_of_space": { + "file": "ui/storage_migration_generic_screen.json", + "type": "panel", + "extend": { + "name": "start_transfer", + "namespace": "storage_migration_common" + } + }, + "start_transfer_out_of_space_content": { + "file": "ui/storage_migration_generic_screen.json", + "type": "stack_panel", + "children": [ + "base_start_content", + "padding", + "error_icon_and_description" + ] + }, + "start_transfer_out_of_space_content/base_start_content": { + "file": "ui/storage_migration_generic_screen.json", + "type": "stack_panel", + "extend": { + "name": "start_transfer_content", + "namespace": "storage_migration_common" + } + }, + "start_transfer_out_of_space_content/padding": { + "file": "ui/storage_migration_generic_screen.json", + "type": "panel" + }, + "start_transfer_out_of_space_content/error_icon_and_description": { + "file": "ui/storage_migration_generic_screen.json", + "type": "stack_panel", + "extend": { + "name": "error_icon_and_description", + "namespace": "storage_migration_common" + } + }, + "finished": { + "file": "ui/storage_migration_generic_screen.json", + "type": "panel", + "extend": { + "name": "modal_one_button", + "namespace": "storage_migration_common" + } + }, + "finished_content": { + "file": "ui/storage_migration_generic_screen.json", + "type": "stack_panel", + "children": [ + "description" + ] + }, + "finished_content/description": { + "file": "ui/storage_migration_generic_screen.json", + "type": "label", + "extend": { + "name": "label", + "namespace": "storage_migration_common" + } + }, + "resume_transfer_out_of_space": { + "file": "ui/storage_migration_generic_screen.json", + "type": "panel", + "extend": { + "name": "modal_one_button", + "namespace": "storage_migration_common" + } + }, + "resume_transfer_out_of_space_content": { + "file": "ui/storage_migration_generic_screen.json", + "type": "stack_panel", + "extend": { + "name": "file_size_description_with_error", + "namespace": "storage_migration_common" + } + }, + "transfer_error": { + "file": "ui/storage_migration_generic_screen.json", + "type": "panel", + "extend": { + "name": "modal_one_button", + "namespace": "storage_migration_common" + } + }, + "transfer_error_content": { + "file": "ui/storage_migration_generic_screen.json", + "type": "stack_panel", + "children": [ + "description" + ] + }, + "transfer_error_content/description": { + "file": "ui/storage_migration_generic_screen.json", + "type": "label", + "extend": { + "name": "label", + "namespace": "storage_migration_common" + } + }, + "transfer_error_out_of_space": { + "file": "ui/storage_migration_generic_screen.json", + "type": "panel", + "extend": { + "name": "transfer_error_out_of_space", + "namespace": "storage_migration_common" + } + } + }, + "scoreboard": { + "scoreboard_sidebar_score": { + "file": "ui/scoreboards.json", + "type": "label" + }, + "scoreboard_sidebar_player": { + "file": "ui/scoreboards.json", + "type": "label" + }, + "scoreboard_sidebar": { + "file": "ui/scoreboards.json", + "type": "panel", + "children": [ + "main", + "displayed_objective_background" + ] + }, + "scoreboard_sidebar/main": { + "file": "ui/scoreboards.json", + "type": "image", + "children": [ + "displayed_objective", + "lists" + ] + }, + "scoreboard_sidebar/main/displayed_objective": { + "file": "ui/scoreboards.json", + "type": "label" + }, + "scoreboard_sidebar/main/lists": { + "file": "ui/scoreboards.json", + "type": "panel", + "children": [ + "players", + "horizontal_padding", + "scores" + ] + }, + "scoreboard_sidebar/main/lists/players": { + "file": "ui/scoreboards.json", + "type": "stack_panel" + }, + "scoreboard_sidebar/main/lists/horizontal_padding": { + "file": "ui/scoreboards.json", + "type": "panel" + }, + "scoreboard_sidebar/main/lists/scores": { + "file": "ui/scoreboards.json", + "type": "stack_panel" + }, + "scoreboard_sidebar/displayed_objective_background": { + "file": "ui/scoreboards.json", + "type": "image" + }, + "scoreboard_player_list": { + "file": "ui/scoreboards.json", + "type": "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": { + "file": "ui/scoreboards.json", + "type": "panel", + "extend": { + "name": "vertical_padding", + "namespace": "pause" + } + }, + "scoreboard_player_list/social_buttons_panel": { + "file": "ui/scoreboards.json", + "type": "stack_panel", + "extend": { + "name": "social_buttons_panel", + "namespace": "pause" + } + }, + "scoreboard_player_list/vertical_padding_1": { + "file": "ui/scoreboards.json", + "type": "panel", + "extend": { + "name": "vertical_padding", + "namespace": "pause" + } + }, + "scoreboard_player_list/permissions_button": { + "file": "ui/scoreboards.json", + "type": "button", + "extend": { + "name": "dark_text_button", + "namespace": "common_buttons" + } + }, + "scoreboard_player_list/vertical_padding_2": { + "file": "ui/scoreboards.json", + "type": "panel", + "extend": { + "name": "vertical_padding", + "namespace": "pause" + } + }, + "scoreboard_player_list/players_label": { + "file": "ui/scoreboards.json", + "type": "label", + "extend": { + "name": "list_objective_label", + "namespace": "scoreboard" + } + }, + "scoreboard_player_list/vertical_padding_3": { + "file": "ui/scoreboards.json", + "type": "panel", + "extend": { + "name": "vertical_padding", + "namespace": "pause" + } + }, + "scoreboard_player_list/scored_players_grid_panel": { + "file": "ui/scoreboards.json", + "type": "stack_panel", + "extend": { + "name": "players_scored_grid_list", + "namespace": "scoreboard" + } + }, + "scoreboard_player_list/vertical_padding_4": { + "file": "ui/scoreboards.json", + "type": "panel", + "extend": { + "name": "vertical_padding", + "namespace": "pause" + } + }, + "scoreboard_player_list/unscored_players_grid_panel": { + "file": "ui/scoreboards.json", + "type": "stack_panel", + "extend": { + "name": "players_unscored_grid_list", + "namespace": "scoreboard" + } + }, + "scoreboard_player_list/vertical_padding_5": { + "file": "ui/scoreboards.json", + "type": "panel", + "extend": { + "name": "vertical_padding", + "namespace": "pause" + } + }, + "scoreboard_player_list/invite_players_button_panel": { + "file": "ui/scoreboards.json", + "type": "panel", + "extend": { + "name": "invite_players_button_panel", + "namespace": "pause" + } + }, + "scoreboard_player_list/vertical_padding_6": { + "file": "ui/scoreboards.json", + "type": "panel", + "extend": { + "name": "vertical_padding", + "namespace": "pause" + } + }, + "scoreboard_player_list/disconnected_from_multiplayer_label_panel": { + "file": "ui/scoreboards.json", + "type": "stack_panel", + "extend": { + "name": "disconnected_from_multiplayer_label_panel", + "namespace": "pause" + } + }, + "scoreboard_player_list/vertical_padding_7": { + "file": "ui/scoreboards.json", + "type": "panel", + "extend": { + "name": "vertical_padding", + "namespace": "pause" + } + }, + "list_objective_label": { + "file": "ui/scoreboards.json", + "type": "label" + }, + "player_rank_panel": { + "file": "ui/scoreboards.json", + "type": "panel", + "children": [ + "player_rank_bg" + ] + }, + "player_rank_panel/player_rank_bg": { + "file": "ui/scoreboards.json", + "type": "image", + "children": [ + "player_rank" + ] + }, + "player_rank_panel/player_rank_bg/player_rank": { + "file": "ui/scoreboards.json", + "type": "label" + }, + "player_icon_panel": { + "file": "ui/scoreboards.json", + "type": "panel", + "children": [ + "player_icon", + "permission_icon" + ] + }, + "player_icon_panel/player_icon": { + "file": "ui/scoreboards.json", + "type": "image", + "children": [ + "player_panel_black_border" + ] + }, + "player_icon_panel/player_icon/player_panel_black_border": { + "file": "ui/scoreboards.json", + "type": "image", + "extend": { + "name": "pause_screen_border", + "namespace": "pause" + } + }, + "player_icon_panel/permission_icon": { + "file": "ui/scoreboards.json", + "type": "image" + }, + "player_name": { + "file": "ui/scoreboards.json", + "type": "label" + }, + "player_score": { + "file": "ui/scoreboards.json", + "type": "label" + }, + "player_details": { + "file": "ui/scoreboards.json", + "type": "stack_panel", + "children": [ + "name_panel", + "score_panel" + ] + }, + "player_details/name_panel": { + "file": "ui/scoreboards.json", + "type": "panel", + "children": [ + "name" + ] + }, + "player_details/name_panel/name": { + "file": "ui/scoreboards.json", + "type": "label", + "extend": { + "name": "player_name", + "namespace": "scoreboard" + } + }, + "player_details/score_panel": { + "file": "ui/scoreboards.json", + "type": "panel", + "children": [ + "score" + ] + }, + "player_details/score_panel/score": { + "file": "ui/scoreboards.json", + "type": "label", + "extend": { + "name": "player_score", + "namespace": "scoreboard" + } + }, + "player_content": { + "file": "ui/scoreboards.json", + "type": "stack_panel", + "children": [ + "icon", + "padding", + "details" + ] + }, + "player_content/icon": { + "file": "ui/scoreboards.json", + "type": "panel", + "extend": { + "name": "player_icon_panel", + "namespace": "scoreboard" + } + }, + "player_content/padding": { + "file": "ui/scoreboards.json", + "type": "panel" + }, + "player_content/details": { + "file": "ui/scoreboards.json", + "type": "stack_panel", + "extend": { + "name": "player_details", + "namespace": "scoreboard" + } + }, + "base_player_button": { + "file": "ui/scoreboards.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "player_panel": { + "file": "ui/scoreboards.json", + "type": "stack_panel", + "children": [ + "rank_base", + "player_button" + ] + }, + "player_panel/rank_base": { + "file": "ui/scoreboards.json", + "type": "panel", + "children": [ + "player_rank" + ] + }, + "player_panel/rank_base/player_rank": { + "file": "ui/scoreboards.json", + "type": "panel", + "extend": { + "name": "player_rank_panel", + "namespace": "scoreboard" + } + }, + "player_panel/player_button": { + "file": "ui/scoreboards.json", + "type": "button", + "extend": { + "name": "base_player_button", + "namespace": "scoreboard" + } + }, + "players_grid_list": { + "file": "ui/scoreboards.json", + "type": "stack_panel" + }, + "players_unscored_grid_list": { + "file": "ui/scoreboards.json", + "type": "stack_panel", + "extend": { + "name": "players_grid_list", + "namespace": "scoreboard" + } + }, + "players_scored_grid_list": { + "file": "ui/scoreboards.json", + "type": "stack_panel", + "extend": { + "name": "players_grid_list", + "namespace": "scoreboard" + } + } + }, + "screenshot": { + "screenshot_flash_image": { + "file": "ui/screenshot_screen.json", + "type": "image" + }, + "screenshot_screen": { + "file": "ui/screenshot_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "screenshot_screen_content": { + "file": "ui/screenshot_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + }, + "children": [ + "transparent_background", + "screenshot_flash" + ] + }, + "screenshot_screen_content/transparent_background": { + "file": "ui/screenshot_screen.json", + "type": "image", + "extend": { + "name": "transparent_background", + "namespace": "feed_common" + } + }, + "screenshot_screen_content/screenshot_flash": { + "file": "ui/screenshot_screen.json", + "type": "image", + "extend": { + "name": "screenshot_flash_image", + "namespace": "screenshot" + } + } + }, + "select_world": { + "popup_dialog__add_on_common": { + "file": "ui/select_world_screen.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog", + "namespace": "popup_dialog" + } + }, + "popup_dialog__add_on_common_no_buttons": { + "file": "ui/select_world_screen.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog__add_on_common", + "namespace": "select_world" + }, + "children": [ + "popup_dialog_bg", + "popup_dialog_message", + "close_button", + "add_on_popup_content_panel" + ] + }, + "popup_dialog__add_on_common_no_buttons/popup_dialog_bg": { + "file": "ui/select_world_screen.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_3", + "namespace": "common" + } + }, + "popup_dialog__add_on_common_no_buttons/popup_dialog_message": { + "file": "ui/select_world_screen.json", + "type": "label", + "extend": { + "name": "popup_dialog_message", + "namespace": "popup_dialog" + } + }, + "popup_dialog__add_on_common_no_buttons/close_button": { + "file": "ui/select_world_screen.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "common" + } + }, + "popup_dialog__add_on_common_no_buttons/add_on_popup_content_panel": { + "file": "ui/select_world_screen.json", + "type": "panel", + "extend": { + "name": "add_on_popup_content_panel", + "namespace": "select_world" + } + }, + "popup_dialog__add_on_common_two_buttons": { + "file": "ui/select_world_screen.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog__add_on_common", + "namespace": "select_world" + }, + "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": { + "file": "ui/select_world_screen.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_1", + "namespace": "common" + } + }, + "popup_dialog__add_on_common_two_buttons/popup_dialog_message": { + "file": "ui/select_world_screen.json", + "type": "label", + "extend": { + "name": "popup_dialog_message", + "namespace": "popup_dialog" + } + }, + "popup_dialog__add_on_common_two_buttons/close_button": { + "file": "ui/select_world_screen.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "common" + } + }, + "popup_dialog__add_on_common_two_buttons/add_on_popup_content_panel": { + "file": "ui/select_world_screen.json", + "type": "panel", + "extend": { + "name": "add_on_popup_content_panel", + "namespace": "select_world" + } + }, + "popup_dialog__add_on_common_two_buttons/button_copy": { + "file": "ui/select_world_screen.json", + "type": "button", + "extend": { + "name": "add_on_button_copy", + "namespace": "select_world" + } + }, + "popup_dialog__add_on_common_two_buttons/button_continue": { + "file": "ui/select_world_screen.json", + "type": "button", + "extend": { + "name": "add_on_button_continue", + "namespace": "select_world" + } + }, + "add_on_button_copy": { + "file": "ui/select_world_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "add_on_button_continue": { + "file": "ui/select_world_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "add_on_popup_content_panel": { + "file": "ui/select_world_screen.json", + "type": "panel", + "children": [ + "popup_content" + ] + }, + "add_on_popup_content_panel/popup_content": { + "file": "ui/select_world_screen.json", + "type": "unknown" + }, + "popup_dialog__activate_add_on": { + "file": "ui/select_world_screen.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog__add_on_common_no_buttons", + "namespace": "select_world" + } + }, + "popup_dialog__activate_add_on_select_world": { + "file": "ui/select_world_screen.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog__add_on_common_no_buttons", + "namespace": "select_world" + } + }, + "popup_dialog__copy_local_world": { + "file": "ui/select_world_screen.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog__add_on_common_two_buttons", + "namespace": "select_world" + } + }, + "popup_dialog__copy_realms_world": { + "file": "ui/select_world_screen.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog__add_on_common_two_buttons", + "namespace": "select_world" + } + }, + "copy_local_world_panel": { + "file": "ui/select_world_screen.json", + "type": "stack_panel", + "extend": { + "name": "vertical_stack_panel", + "namespace": "common" + }, + "children": [ + "padding_top", + "text_box", + "padding_middle", + "text_box2" + ] + }, + "copy_local_world_panel/padding_top": { + "file": "ui/select_world_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "copy_local_world_panel/text_box": { + "file": "ui/select_world_screen.json", + "type": "label" + }, + "copy_local_world_panel/padding_middle": { + "file": "ui/select_world_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "copy_local_world_panel/text_box2": { + "file": "ui/select_world_screen.json", + "type": "label" + }, + "copy_realms_world_panel": { + "file": "ui/select_world_screen.json", + "type": "stack_panel", + "extend": { + "name": "vertical_stack_panel", + "namespace": "common" + }, + "children": [ + "padding_top", + "text_box", + "padding_middle", + "text_box2" + ] + }, + "copy_realms_world_panel/padding_top": { + "file": "ui/select_world_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "copy_realms_world_panel/text_box": { + "file": "ui/select_world_screen.json", + "type": "label" + }, + "copy_realms_world_panel/padding_middle": { + "file": "ui/select_world_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "copy_realms_world_panel/text_box2": { + "file": "ui/select_world_screen.json", + "type": "label" + }, + "new_or_existing_world_panel": { + "file": "ui/select_world_screen.json", + "type": "stack_panel", + "extend": { + "name": "horizontal_stack_panel", + "namespace": "common" + }, + "children": [ + "padding_left", + "world_icon_existing", + "padding_middle", + "world_icon_new", + "padding_right" + ] + }, + "new_or_existing_world_panel/padding_left": { + "file": "ui/select_world_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "new_or_existing_world_panel/world_icon_existing": { + "file": "ui/select_world_screen.json", + "type": "stack_panel", + "extend": { + "name": "world_icon_with_button", + "namespace": "select_world" + } + }, + "new_or_existing_world_panel/padding_middle": { + "file": "ui/select_world_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "new_or_existing_world_panel/world_icon_new": { + "file": "ui/select_world_screen.json", + "type": "stack_panel", + "extend": { + "name": "world_icon_with_button", + "namespace": "select_world" + } + }, + "new_or_existing_world_panel/padding_right": { + "file": "ui/select_world_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "world_icon_with_button": { + "file": "ui/select_world_screen.json", + "type": "stack_panel", + "extend": { + "name": "vertical_stack_panel", + "namespace": "common" + }, + "children": [ + "padding_top", + "world_icon", + "button", + "padding_bottom" + ] + }, + "world_icon_with_button/padding_top": { + "file": "ui/select_world_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "world_icon_with_button/world_icon": { + "file": "ui/select_world_screen.json", + "type": "panel", + "extend": { + "name": "vert_stack_centering_panel", + "namespace": "common" + } + }, + "world_icon_with_button/button": { + "file": "ui/select_world_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "world_icon_with_button/padding_bottom": { + "file": "ui/select_world_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "world_icon_new": { + "file": "ui/select_world_screen.json", + "type": "image", + "children": [ + "plus_button" + ] + }, + "world_icon_new/plus_button": { + "file": "ui/select_world_screen.json", + "type": "image" + }, + "world_icon_existing": { + "file": "ui/select_world_screen.json", + "type": "image" + }, + "select_world_panel": { + "file": "ui/select_world_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "select_world_list": { + "file": "ui/select_world_screen.json", + "type": "stack_panel", + "extend": { + "name": "vertical_stack_panel", + "namespace": "common" + }, + "children": [ + "realms_world_label", + "realms_world_list", + "padding_middle", + "local_world_label", + "local_world_list", + "padding_end" + ] + }, + "select_world_list/realms_world_label": { + "file": "ui/select_world_screen.json", + "type": "label", + "extend": { + "name": "standard_title_label", + "namespace": "common_dialogs" + } + }, + "select_world_list/realms_world_list": { + "file": "ui/select_world_screen.json", + "type": "grid", + "extend": { + "name": "realms_world_item_grid", + "namespace": "play" + } + }, + "select_world_list/padding_middle": { + "file": "ui/select_world_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "select_world_list/local_world_label": { + "file": "ui/select_world_screen.json", + "type": "label", + "extend": { + "name": "standard_title_label", + "namespace": "common_dialogs" + } + }, + "select_world_list/local_world_list": { + "file": "ui/select_world_screen.json", + "type": "grid", + "extend": { + "name": "local_world_item_grid", + "namespace": "play" + } + }, + "select_world_list/padding_end": { + "file": "ui/select_world_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "local_world_item_button": { + "file": "ui/select_world_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "realms_world_item_button": { + "file": "ui/select_world_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "select_world_screen_content": { + "file": "ui/select_world_screen.json", + "type": "panel", + "children": [ + "popup_dialog_factory" + ] + }, + "select_world_screen_content/popup_dialog_factory": { + "file": "ui/select_world_screen.json", + "type": "factory" + }, + "select_world_popup_screen": { + "file": "ui/select_world_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + } + }, + "server_form": { + "third_party_server_screen": { + "file": "ui/server_form.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "main_screen_content": { + "file": "ui/server_form.json", + "type": "panel", + "children": [ + "server_form_factory" + ] + }, + "main_screen_content/server_form_factory": { + "file": "ui/server_form.json", + "type": "factory" + }, + "long_form": { + "file": "ui/server_form.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + }, + "long_form_panel": { + "file": "ui/server_form.json", + "type": "stack_panel", + "children": [ + "scrolling_panel" + ] + }, + "long_form_panel/scrolling_panel": { + "file": "ui/server_form.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "long_form_scrolling_content": { + "file": "ui/server_form.json", + "type": "stack_panel", + "children": [ + "label_offset_panel", + "padding", + "wrapping_panel" + ] + }, + "long_form_scrolling_content/label_offset_panel": { + "file": "ui/server_form.json", + "type": "panel", + "children": [ + "main_label" + ] + }, + "long_form_scrolling_content/label_offset_panel/main_label": { + "file": "ui/server_form.json", + "type": "label" + }, + "long_form_scrolling_content/padding": { + "file": "ui/server_form.json", + "type": "panel" + }, + "long_form_scrolling_content/wrapping_panel": { + "file": "ui/server_form.json", + "type": "panel", + "children": [ + "long_form_dynamic_buttons_panel" + ] + }, + "long_form_scrolling_content/wrapping_panel/long_form_dynamic_buttons_panel": { + "file": "ui/server_form.json", + "type": "stack_panel", + "extend": { + "name": "long_form_dynamic_buttons_panel", + "namespace": "server_form" + } + }, + "long_form_dynamic_buttons_panel": { + "file": "ui/server_form.json", + "type": "stack_panel" + }, + "dynamic_button": { + "file": "ui/server_form.json", + "type": "stack_panel", + "children": [ + "panel_name", + "form_button" + ] + }, + "dynamic_button/panel_name": { + "file": "ui/server_form.json", + "type": "panel", + "children": [ + "image", + "progress" + ] + }, + "dynamic_button/panel_name/image": { + "file": "ui/server_form.json", + "type": "image" + }, + "dynamic_button/panel_name/progress": { + "file": "ui/server_form.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "progress" + } + }, + "dynamic_button/form_button": { + "file": "ui/server_form.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "dynamic_label": { + "file": "ui/server_form.json", + "type": "panel", + "extend": { + "name": "option_group_spaced_label", + "namespace": "settings_common" + } + }, + "dynamic_header": { + "file": "ui/server_form.json", + "type": "panel", + "extend": { + "name": "option_group_spaced_header", + "namespace": "settings_common" + } + }, + "custom_form": { + "file": "ui/server_form.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + }, + "custom_form_panel": { + "file": "ui/server_form.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "generated_contents": { + "file": "ui/server_form.json", + "type": "stack_panel" + }, + "custom_form_scrolling_content": { + "file": "ui/server_form.json", + "type": "stack_panel", + "children": [ + "generated_form", + "submit_button" + ] + }, + "custom_form_scrolling_content/generated_form": { + "file": "ui/server_form.json", + "type": "stack_panel", + "extend": { + "name": "generated_contents", + "namespace": "server_form" + } + }, + "custom_form_scrolling_content/submit_button": { + "file": "ui/server_form.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "custom_label": { + "file": "ui/server_form.json", + "type": "panel", + "extend": { + "name": "option_group_label", + "namespace": "settings_common" + } + }, + "custom_header": { + "file": "ui/server_form.json", + "type": "panel", + "extend": { + "name": "option_group_header", + "namespace": "settings_common" + } + }, + "custom_toggle": { + "file": "ui/server_form.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "custom_slider": { + "file": "ui/server_form.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "custom_step_slider": { + "file": "ui/server_form.json", + "type": "panel", + "extend": { + "name": "custom_slider", + "namespace": "server_form" + } + }, + "custom_dropdown": { + "file": "ui/server_form.json", + "type": "panel", + "children": [ + "dropdown" + ] + }, + "custom_dropdown/dropdown": { + "file": "ui/server_form.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "custom_dropdown_content": { + "file": "ui/server_form.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "custom_dropdown_radio": { + "file": "ui/server_form.json", + "type": "panel", + "extend": { + "name": "radio_with_label", + "namespace": "settings_common" + } + }, + "custom_input": { + "file": "ui/server_form.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + } + }, + "settings": { + "settings_screen_base": { + "file": "ui/settings_screen.json", + "type": "screen", + "extend": { + "name": "screen_base", + "namespace": "settings_common" + } + }, + "settings_screen_base_fullscreen": { + "file": "ui/settings_screen.json", + "type": "screen", + "extend": { + "name": "screen_base_fullscreen", + "namespace": "settings_common" + } + }, + "screen_world_create": { + "file": "ui/settings_screen.json", + "type": "screen", + "extend": { + "name": "settings_screen_base", + "namespace": "settings" + } + }, + "screen_template_create": { + "file": "ui/settings_screen.json", + "type": "screen", + "extend": { + "name": "settings_screen_base", + "namespace": "settings" + } + }, + "screen_world_edit": { + "file": "ui/settings_screen.json", + "type": "screen", + "extend": { + "name": "settings_screen_base", + "namespace": "settings" + } + }, + "screen_controls_and_settings": { + "file": "ui/settings_screen.json", + "type": "screen", + "extend": { + "name": "settings_screen_base", + "namespace": "settings" + } + }, + "screen_controls_and_settings_fullscreen": { + "file": "ui/settings_screen.json", + "type": "screen", + "extend": { + "name": "settings_screen_base_fullscreen", + "namespace": "settings" + } + }, + "screen_world_controls_and_settings": { + "file": "ui/settings_screen.json", + "type": "screen", + "extend": { + "name": "settings_screen_base", + "namespace": "settings" + } + }, + "screen_world_controls_and_settings_fullscreen": { + "file": "ui/settings_screen.json", + "type": "screen", + "extend": { + "name": "settings_screen_base_fullscreen", + "namespace": "settings" + } + }, + "screen_realm_controls_and_settings": { + "file": "ui/settings_screen.json", + "type": "screen", + "extend": { + "name": "settings_screen_base", + "namespace": "settings" + } + }, + "screen_realm_controls_and_settings_fullscreen": { + "file": "ui/settings_screen.json", + "type": "screen", + "extend": { + "name": "settings_screen_base_fullscreen", + "namespace": "settings" + } + }, + "screen_realm_member_controls_and_settings": { + "file": "ui/settings_screen.json", + "type": "screen", + "extend": { + "name": "settings_screen_base", + "namespace": "settings" + } + }, + "screen_realm_member_controls_and_settings_fullscreen": { + "file": "ui/settings_screen.json", + "type": "screen", + "extend": { + "name": "settings_screen_base_fullscreen", + "namespace": "settings" + } + }, + "screen_realm_settings": { + "file": "ui/settings_screen.json", + "type": "screen", + "extend": { + "name": "settings_screen_base", + "namespace": "settings" + } + }, + "screen_world_slot_edit": { + "file": "ui/settings_screen.json", + "type": "screen", + "extend": { + "name": "settings_screen_base", + "namespace": "settings" + } + }, + "screen_realm_manage": { + "file": "ui/settings_screen.json", + "type": "screen", + "extend": { + "name": "settings_screen_base", + "namespace": "settings" + } + }, + "screen_realm_invite_link_settings": { + "file": "ui/settings_screen.json", + "type": "screen", + "extend": { + "name": "settings_screen_base", + "namespace": "settings" + } + }, + "selector_stack_panel": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "children": [ + "spacer_0", + "accessibility_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": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/accessibility_button": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "accessibility_button", + "namespace": "general_section" + } + }, + "selector_stack_panel/spacer_01": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/world_selector_pane": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "selector_pane_content", + "namespace": "world_section" + } + }, + "selector_stack_panel/realm_selector_pane": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "selector_panel", + "namespace": "realms_settings" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane": { + "file": "ui/settings_screen.json", + "type": "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": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_1_no_spatial": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_1": { + "file": "ui/settings_screen.json", + "type": "label", + "extend": { + "name": "selector_group_label", + "namespace": "settings_common" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/keyboard_and_mouse_button": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "keyboard_and_mouse_button", + "namespace": "controls_section" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_01": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/controller_button": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "controller_button", + "namespace": "controls_section" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_02": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/switch_controller_button": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "controller_button", + "namespace": "controls_section" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_03": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/touch_button": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "touch_button", + "namespace": "controls_section" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_04": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_04_no_spatial": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_2": { + "file": "ui/settings_screen.json", + "type": "label", + "extend": { + "name": "selector_group_label", + "namespace": "settings_common" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/party_button": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "party_button", + "namespace": "social_section" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_05": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_05_no_spatial": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_3": { + "file": "ui/settings_screen.json", + "type": "label", + "extend": { + "name": "selector_group_label", + "namespace": "settings_common" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/general_button": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "general_button", + "namespace": "general_section" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_06": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/video_button": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "video_button", + "namespace": "general_section" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_07": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/sound_button": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "sound_button", + "namespace": "general_section" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_08": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/account_button": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "account_button", + "namespace": "general_section" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_09": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/view_subscriptions_button": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "view_subscriptions_button", + "namespace": "general_section" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_10": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/global_texture_pack_button": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "global_texture_pack_button", + "namespace": "general_section" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_11": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/storage_management_button": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "storage_management_button", + "namespace": "general_section" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_12": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/edu_cloud_storage_button": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "edu_cloud_storage_button", + "namespace": "general_section" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_13": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/language_button": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "language_button", + "namespace": "general_section" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_14": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/creator_button": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "creator_button", + "namespace": "general_section" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_15": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/preview_button": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "preview_button", + "namespace": "general_section" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_4": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_4_no_spatial": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_4": { + "file": "ui/settings_screen.json", + "type": "label", + "extend": { + "name": "selector_group_label", + "namespace": "settings_common" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/debug_button": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "debug_button", + "namespace": "general_section" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_16": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/discovery_debug_button": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "discovery_debug_button", + "namespace": "general_section" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_17": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/ui_debug_button": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "ui_debug_button", + "namespace": "general_section" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_18": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/edu_debug_button": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "edu_debug_button", + "namespace": "general_section" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_19": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/marketplace_debug_button": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "marketplace_debug_button", + "namespace": "general_section" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_20": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/gatherings_debug_button": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "gatherings_debug_button", + "namespace": "general_section" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_21": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/flighting_debug_button": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "flighting_debug_button", + "namespace": "general_section" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_22": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/realms_debug_button": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "realms_debug_button", + "namespace": "general_section" + } + }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_23": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/controls_and_settings_selector_pane/automation_button": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "automation_button", + "namespace": "general_section" + } + }, + "selector_stack_panel/spacer_24": { + "file": "ui/settings_screen.json", + "type": "panel" + }, + "selector_stack_panel/addons_selector_panel": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "addons_selector_panel", + "namespace": "world_section" + } + }, + "selector_stack_panel/realms_invite_link_settings_pane": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "selector_panel", + "namespace": "realms_invite_link_settings" + } + }, + "section_content_panels": { + "file": "ui/settings_screen.json", + "type": "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": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "section_content_panels", + "namespace": "realms_invite_link_settings" + } + }, + "section_content_panels/world_sections": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "children": [ + "game_section", + "classroom_section_panel", + "server_section", + "multiplayer_section", + "edu_cloud_section", + "debug_section" + ] + }, + "section_content_panels/world_sections/game_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "game_section", + "namespace": "world_section" + } + }, + "section_content_panels/world_sections/classroom_section_panel": { + "file": "ui/settings_screen.json", + "type": "panel", + "children": [ + "classroom_section" + ] + }, + "section_content_panels/world_sections/classroom_section_panel/classroom_section": { + "file": "ui/settings_screen.json", + "type": "unknown", + "extend": { + "name": "classroom_section", + "namespace": "classroom_settings" + } + }, + "section_content_panels/world_sections/server_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "server_section", + "namespace": "world_section" + } + }, + "section_content_panels/world_sections/multiplayer_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "multiplayer_section", + "namespace": "world_section" + } + }, + "section_content_panels/world_sections/edu_cloud_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "edu_cloud_section", + "namespace": "world_section" + } + }, + "section_content_panels/world_sections/debug_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "debug_section", + "namespace": "world_section" + } + }, + "section_content_panels/packs_sections": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "children": [ + "level_texture_pack_section", + "addon_section" + ] + }, + "section_content_panels/packs_sections/level_texture_pack_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "level_texture_pack_section", + "namespace": "world_section" + } + }, + "section_content_panels/packs_sections/addon_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "addon_section", + "namespace": "world_section" + } + }, + "section_content_panels/section_content_panels": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "section_content_panels", + "namespace": "realms_settings" + } + }, + "section_content_panels/general_and_controls_sections": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "children": [ + "accessibility_section", + "keyboard_and_mouse_section", + "controller_section", + "touch_section", + "party_section", + "general_tab_section", + "account_section", + "global_texture_pack_section", + "storage_management_header", + "storage_management_section", + "edu_cloud_storage_section", + "creator_section", + "video_section", + "view_subscriptions_prerelease_section", + "view_subscriptions_section", + "sound_section", + "language_section", + "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" + ] + }, + "section_content_panels/general_and_controls_sections/accessibility_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "accessibility_section", + "namespace": "general_section" + } + }, + "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "keyboard_and_mouse_section", + "namespace": "controls_section" + } + }, + "section_content_panels/general_and_controls_sections/controller_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "controller_section", + "namespace": "controls_section" + } + }, + "section_content_panels/general_and_controls_sections/touch_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "touch_section", + "namespace": "controls_section" + } + }, + "section_content_panels/general_and_controls_sections/party_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "party_section", + "namespace": "social_section" + } + }, + "section_content_panels/general_and_controls_sections/general_tab_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "general_tab_section", + "namespace": "general_section" + } + }, + "section_content_panels/general_and_controls_sections/account_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "account_section", + "namespace": "general_section" + } + }, + "section_content_panels/general_and_controls_sections/global_texture_pack_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "global_texture_pack_section", + "namespace": "general_section" + } + }, + "section_content_panels/general_and_controls_sections/storage_management_header": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "storage_management_header", + "namespace": "general_section" + } + }, + "section_content_panels/general_and_controls_sections/storage_management_section": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "storage_management_section", + "namespace": "general_section" + } + }, + "section_content_panels/general_and_controls_sections/edu_cloud_storage_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "edu_cloud_storage_section", + "namespace": "general_section" + } + }, + "section_content_panels/general_and_controls_sections/creator_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "creator_section", + "namespace": "general_section" + } + }, + "section_content_panels/general_and_controls_sections/video_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "video_section", + "namespace": "general_section" + } + }, + "section_content_panels/general_and_controls_sections/view_subscriptions_prerelease_section": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "view_subscriptions_prerelease_section", + "namespace": "general_section" + } + }, + "section_content_panels/general_and_controls_sections/view_subscriptions_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "view_subscriptions_section", + "namespace": "general_section" + } + }, + "section_content_panels/general_and_controls_sections/sound_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "sound_section", + "namespace": "general_section" + } + }, + "section_content_panels/general_and_controls_sections/language_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "language_section", + "namespace": "general_section" + } + }, + "section_content_panels/general_and_controls_sections/preview_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "preview_section", + "namespace": "general_section" + } + }, + "section_content_panels/general_and_controls_sections/debug_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "debug_section", + "namespace": "general_section" + } + }, + "section_content_panels/general_and_controls_sections/ui_debug_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "ui_debug_section", + "namespace": "general_section" + } + }, + "section_content_panels/general_and_controls_sections/edu_debug_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "edu_debug_section", + "namespace": "general_section" + } + }, + "section_content_panels/general_and_controls_sections/marketplace_debug_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "marketplace_debug_section", + "namespace": "general_section" + } + }, + "section_content_panels/general_and_controls_sections/gatherings_debug_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "gatherings_debug_section", + "namespace": "general_section" + } + }, + "section_content_panels/general_and_controls_sections/flighting_debug_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "flighting_debug_section", + "namespace": "general_section" + } + }, + "section_content_panels/general_and_controls_sections/realms_debug_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "realms_debug_section", + "namespace": "general_section" + } + }, + "section_content_panels/general_and_controls_sections/automation_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "automation_section", + "namespace": "general_section" + } + }, + "section_content_panels/general_and_controls_sections/discovery_debug_section": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "extend": { + "name": "discovery_debug_section", + "namespace": "general_section" + } + }, + "section_header_panels": { + "file": "ui/settings_screen.json", + "type": "panel", + "children": [ + "world_sections", + "general_and_controls_sections" + ] + }, + "section_header_panels/world_sections": { + "file": "ui/settings_screen.json", + "type": "stack_panel" + }, + "section_header_panels/general_and_controls_sections": { + "file": "ui/settings_screen.json", + "type": "stack_panel" + }, + "section_footer_panels": { + "file": "ui/settings_screen.json", + "type": "panel", + "children": [ + "world_sections", + "general_and_controls_sections" + ] + }, + "section_footer_panels/world_sections": { + "file": "ui/settings_screen.json", + "type": "stack_panel" + }, + "section_footer_panels/general_and_controls_sections": { + "file": "ui/settings_screen.json", + "type": "stack_panel", + "children": [ + "storage_management_footer" + ] + }, + "section_footer_panels/general_and_controls_sections/storage_management_footer": { + "file": "ui/settings_screen.json", + "type": "panel", + "extend": { + "name": "storage_management_footer", + "namespace": "general_section" + } + } + }, + "controls_section": { + "binding_button": { + "file": "ui/settings_sections/controls_section.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "binding_button_content": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "button_content_panel", + "namespace": "common_buttons" + }, + "children": [ + "default_label" + ] + }, + "binding_button_content/default_label": { + "file": "ui/settings_sections/controls_section.json", + "type": "label", + "extend": { + "name": "new_button_label", + "namespace": "common" + } + }, + "image_binding_button": { + "file": "ui/settings_sections/controls_section.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "image_binding_button_content": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "button_content_panel", + "namespace": "common_buttons" + }, + "children": [ + "base_icon_image", + "default_label" + ] + }, + "image_binding_button_content/base_icon_image": { + "file": "ui/settings_sections/controls_section.json", + "type": "image" + }, + "image_binding_button_content/default_label": { + "file": "ui/settings_sections/controls_section.json", + "type": "label", + "extend": { + "name": "new_button_label", + "namespace": "common" + } + }, + "arrow_reset": { + "file": "ui/settings_sections/controls_section.json", + "type": "image" + }, + "reset_binding_button": { + "file": "ui/settings_sections/controls_section.json", + "type": "button", + "extend": { + "name": "light_glyph_button", + "namespace": "common_buttons" + } + }, + "keymapping_item_parent": { + "file": "ui/settings_sections/controls_section.json", + "type": "stack_panel", + "children": [ + "keymapping_row" + ] + }, + "keymapping_item_parent/keymapping_row": { + "file": "ui/settings_sections/controls_section.json", + "type": "stack_panel", + "extend": { + "name": "keymapping_item_frame", + "namespace": "controls_section" + } + }, + "keymapping_item_frame": { + "file": "ui/settings_sections/controls_section.json", + "type": "stack_panel", + "children": [ + "keymap", + "command_macro_command" + ] + }, + "keymapping_item_frame/keymap": { + "file": "ui/settings_sections/controls_section.json", + "type": "stack_panel", + "extend": { + "name": "keymapping_item", + "namespace": "controls_section" + } + }, + "keymapping_item_frame/command_macro_command": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "command_macro_command_textbox", + "namespace": "controls_section" + } + }, + "command_macro_command_textbox": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "children": [ + "text_box" + ] + }, + "command_macro_command_textbox/text_box": { + "file": "ui/settings_sections/controls_section.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "keymapping_item": { + "file": "ui/settings_sections/controls_section.json", + "type": "stack_panel", + "children": [ + "option_info_label_control", + "keymapping_button_0", + "keymapping_button_1" + ] + }, + "keymapping_item/option_info_label_control": { + "file": "ui/settings_sections/controls_section.json", + "type": "image", + "children": [ + "keymapping_label_control" + ] + }, + "keymapping_item/option_info_label_control/keymapping_label_control": { + "file": "ui/settings_sections/controls_section.json", + "type": "label" + }, + "keymapping_item/keymapping_button_0": { + "file": "ui/settings_sections/controls_section.json", + "type": "button", + "extend": { + "name": "binding_button", + "namespace": "controls_section" + } + }, + "keymapping_item/keymapping_button_1": { + "file": "ui/settings_sections/controls_section.json", + "type": "button", + "extend": { + "name": "reset_binding_button", + "namespace": "controls_section" + } + }, + "keymapping_grid": { + "file": "ui/settings_sections/controls_section.json", + "type": "grid" + }, + "full_keymapping_grid": { + "file": "ui/settings_sections/controls_section.json", + "type": "grid", + "extend": { + "name": "keymapping_grid", + "namespace": "controls_section" + } + }, + "gamepad_mapping_item": { + "file": "ui/settings_sections/controls_section.json", + "type": "stack_panel", + "children": [ + "option_info_label_control", + "keymapping_button_0", + "keymapping_button_1" + ] + }, + "gamepad_mapping_item/option_info_label_control": { + "file": "ui/settings_sections/controls_section.json", + "type": "image", + "children": [ + "keymapping_label_control" + ] + }, + "gamepad_mapping_item/option_info_label_control/keymapping_label_control": { + "file": "ui/settings_sections/controls_section.json", + "type": "label" + }, + "gamepad_mapping_item/keymapping_button_0": { + "file": "ui/settings_sections/controls_section.json", + "type": "button", + "extend": { + "name": "image_binding_button", + "namespace": "controls_section" + } + }, + "gamepad_mapping_item/keymapping_button_1": { + "file": "ui/settings_sections/controls_section.json", + "type": "button", + "extend": { + "name": "reset_binding_button", + "namespace": "controls_section" + } + }, + "gamepad_mapping_grid": { + "file": "ui/settings_sections/controls_section.json", + "type": "grid" + }, + "keyboard_command_macros_grid": { + "file": "ui/settings_sections/controls_section.json", + "type": "stack_panel", + "children": [ + "divider_before", + "divider_before_padding", + "command_macro_title", + "command_macro_title_desc", + "command_macro_title_padding", + "command_macro_keymapping_grid", + "divider_after", + "divider_after_padding" + ] + }, + "keyboard_command_macros_grid/divider_before": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "children": [ + "section_divider" + ] + }, + "keyboard_command_macros_grid/divider_before/section_divider": { + "file": "ui/settings_sections/controls_section.json", + "type": "image" + }, + "keyboard_command_macros_grid/divider_before_padding": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel" + }, + "keyboard_command_macros_grid/command_macro_title": { + "file": "ui/settings_sections/controls_section.json", + "type": "label" + }, + "keyboard_command_macros_grid/command_macro_title_desc": { + "file": "ui/settings_sections/controls_section.json", + "type": "label" + }, + "keyboard_command_macros_grid/command_macro_title_padding": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel" + }, + "keyboard_command_macros_grid/command_macro_keymapping_grid": { + "file": "ui/settings_sections/controls_section.json", + "type": "grid", + "extend": { + "name": "keymapping_grid", + "namespace": "controls_section" + } + }, + "keyboard_command_macros_grid/divider_after": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "children": [ + "section_divider" + ] + }, + "keyboard_command_macros_grid/divider_after/section_divider": { + "file": "ui/settings_sections/controls_section.json", + "type": "image" + }, + "keyboard_command_macros_grid/divider_after_padding": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel" + }, + "keyboard_and_mouse_button": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "keyboard_and_mouse_section": { + "file": "ui/settings_sections/controls_section.json", + "type": "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": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "keyboard_and_mouse_section/option_slider_damen": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "keyboard_and_mouse_section/option_toggle_0": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "keyboard_and_mouse_section/option_toggle_1": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "keyboard_and_mouse_section/option_toggle_2": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "keyboard_and_mouse_section/option_toggle_full_keyboard_gameplay": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "keyboard_and_mouse_section/option_toggle_show_keyboard_prompts": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "keyboard_and_mouse_section/option_toggle_show_learning_prompts": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "keyboard_and_mouse_section/keyboard_section": { + "file": "ui/settings_sections/controls_section.json", + "type": "stack_panel", + "children": [ + "option_group_label", + "keyboard_keymapping_grid", + "control_alt_chords_standard_keyboard_section", + "command_macros" + ] + }, + "keyboard_and_mouse_section/keyboard_section/option_group_label": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_group_label", + "namespace": "settings_common" + } + }, + "keyboard_and_mouse_section/keyboard_section/keyboard_keymapping_grid": { + "file": "ui/settings_sections/controls_section.json", + "type": "grid", + "extend": { + "name": "keymapping_grid", + "namespace": "controls_section" + } + }, + "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section": { + "file": "ui/settings_sections/controls_section.json", + "type": "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": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_group_label", + "namespace": "settings_common" + } + }, + "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/control_alt_chord_keymapping_grid": { + "file": "ui/settings_sections/controls_section.json", + "type": "grid", + "extend": { + "name": "keymapping_grid", + "namespace": "controls_section" + } + }, + "keyboard_and_mouse_section/keyboard_section/command_macros": { + "file": "ui/settings_sections/controls_section.json", + "type": "stack_panel", + "extend": { + "name": "keyboard_command_macros_grid", + "namespace": "controls_section" + } + }, + "keyboard_and_mouse_section/full_keyboard_section": { + "file": "ui/settings_sections/controls_section.json", + "type": "stack_panel", + "children": [ + "option_slider_smooth_rotation_speed", + "full_keyboard_label", + "keyboard_full_keymapping_grid", + "control_alt_chords_full_keyboard_section", + "command_macros" + ] + }, + "keyboard_and_mouse_section/full_keyboard_section/option_slider_smooth_rotation_speed": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "keyboard_and_mouse_section/full_keyboard_section/full_keyboard_label": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_group_label", + "namespace": "settings_common" + } + }, + "keyboard_and_mouse_section/full_keyboard_section/keyboard_full_keymapping_grid": { + "file": "ui/settings_sections/controls_section.json", + "type": "grid", + "extend": { + "name": "full_keymapping_grid", + "namespace": "controls_section" + } + }, + "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section": { + "file": "ui/settings_sections/controls_section.json", + "type": "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": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_group_label", + "namespace": "settings_common" + } + }, + "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/control_alt_chord_keymapping_grid": { + "file": "ui/settings_sections/controls_section.json", + "type": "grid", + "extend": { + "name": "keymapping_grid", + "namespace": "controls_section" + } + }, + "keyboard_and_mouse_section/full_keyboard_section/command_macros": { + "file": "ui/settings_sections/controls_section.json", + "type": "stack_panel", + "extend": { + "name": "keyboard_command_macros_grid", + "namespace": "controls_section" + } + }, + "keyboard_and_mouse_section/reset_button": { + "file": "ui/settings_sections/controls_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "controller_button": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "controller_section": { + "file": "ui/settings_sections/controls_section.json", + "type": "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": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "controller_section/option_slider_damen": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "controller_section/option_toggle_0": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "controller_section/option_toggle_1": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "controller_section/option_toggle9": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "controller_section/option_toggle10": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "controller_section/option_toggle_11": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "controller_section/gamepad_swap_ab": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "controller_section/gamepad_swap_xy": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "controller_section/gamepad_cursor_sensitivity_option_slider": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "controller_section/option_toggle_3": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "controller_section/option_toggle_4": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "controller_section/option_toggle_5": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "controller_section/option_group_label": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_group_label", + "namespace": "settings_common" + } + }, + "controller_section/gamepad_keymapping_grid": { + "file": "ui/settings_sections/controls_section.json", + "type": "grid", + "extend": { + "name": "gamepad_mapping_grid", + "namespace": "controls_section" + } + }, + "controller_section/reset_button": { + "file": "ui/settings_sections/controls_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "touch_button": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "touch_section": { + "file": "ui/settings_sections/controls_section.json", + "type": "stack_panel", + "children": [ + "common_touch_settings", + "reset_button" + ] + }, + "touch_section/common_touch_settings": { + "file": "ui/settings_sections/controls_section.json", + "type": "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": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "touch_section/common_touch_settings/control_scheme_section": { + "file": "ui/settings_sections/controls_section.json", + "type": "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": { + "file": "ui/settings_sections/controls_section.json", + "type": "label" + }, + "touch_section/common_touch_settings/control_scheme_section/padding_0": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel" + }, + "touch_section/common_touch_settings/control_scheme_section/image_and_button": { + "file": "ui/settings_sections/controls_section.json", + "type": "stack_panel", + "children": [ + "images", + "padding", + "scheme_button_section" + ] + }, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "children": [ + "touch_image", + "crosshair_image", + "classic_image" + ] + }, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/touch_image": { + "file": "ui/settings_sections/controls_section.json", + "type": "image" + }, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/crosshair_image": { + "file": "ui/settings_sections/controls_section.json", + "type": "image" + }, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/classic_image": { + "file": "ui/settings_sections/controls_section.json", + "type": "image" + }, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/padding": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel" + }, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "children": [ + "caption" + ] + }, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption": { + "file": "ui/settings_sections/controls_section.json", + "type": "stack_panel", + "children": [ + "selected_label", + "selected_control" + ] + }, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_label": { + "file": "ui/settings_sections/controls_section.json", + "type": "label" + }, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_control": { + "file": "ui/settings_sections/controls_section.json", + "type": "label" + }, + "touch_section/common_touch_settings/control_scheme_section/padding_1": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel" + }, + "touch_section/common_touch_settings/control_scheme_section/select_control_mode": { + "file": "ui/settings_sections/controls_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "touch_section/common_touch_settings/control_scheme_section/padding_2": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel" + }, + "touch_section/common_touch_settings/modify_control_layout_section": { + "file": "ui/settings_sections/controls_section.json", + "type": "stack_panel", + "children": [ + "modify_control_layout_button", + "customize_tooltip_option", + "padding" + ] + }, + "touch_section/common_touch_settings/modify_control_layout_section/modify_control_layout_button": { + "file": "ui/settings_sections/controls_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "touch_section/common_touch_settings/modify_control_layout_section/customize_tooltip_option": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "customize_tooltip_option", + "namespace": "controls_section" + } + }, + "touch_section/common_touch_settings/modify_control_layout_section/padding": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel" + }, + "touch_section/common_touch_settings/option_slider_0": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "touch_section/common_touch_settings/option_slider_damen": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "touch_section/common_touch_settings/option_show_action_button": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "touch_section/common_touch_settings/option_show_block_select_button": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "touch_section/common_touch_settings/option_toggle_left_handed": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "touch_section/common_touch_settings/option_toggle_auto_jump": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "touch_section/common_touch_settings/option_bool_sprint_on_movement": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "touch_section/common_touch_settings/option_show_toggle_camera_perspective_button": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "touch_section/common_touch_settings/joystick_visibility_dropdown": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "touch_section/common_touch_settings/top_button_scale": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "touch_section/common_touch_settings/sneak_dropdown": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "touch_section/common_touch_settings/option_toggle_destroy_vibration": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "touch_section/common_touch_settings/option_toggle_split_vibration": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "touch_section/common_touch_settings/option_creative_delayed_block_breaking": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "touch_section/common_touch_settings/option_toggle_invert_y": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "touch_section/common_touch_settings/option_always_highlight_hovering_box_in_crosshair": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "touch_section/common_touch_settings/option_toggle_use_touchpad": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "touch_section/common_touch_settings/option_toggle_swap_jump_and_sneak": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "touch_section/common_touch_settings/hotbar_only_touch_toggle": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "touch_section/reset_button": { + "file": "ui/settings_sections/controls_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "joystick_visibility_dropdown_content": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "top_button_scale_dropdown_content": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "sneak_dropdown_content": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "customize_tooltip_option_image": { + "file": "ui/settings_sections/controls_section.json", + "type": "image" + }, + "customize_tooltip_option_popup": { + "file": "ui/settings_sections/controls_section.json", + "type": "image", + "extend": { + "name": "static_tooltip_popup_with_image_and_text", + "namespace": "common" + } + }, + "customize_tooltip_option": { + "file": "ui/settings_sections/controls_section.json", + "type": "panel", + "children": [ + "customize_tooltip_option_image", + "customize_tooltip_option_popup" + ] + }, + "customize_tooltip_option/customize_tooltip_option_image": { + "file": "ui/settings_sections/controls_section.json", + "type": "image", + "extend": { + "name": "customize_tooltip_option_image", + "namespace": "controls_section" + }, + "children": [ + "hover_detection_input_panel" + ] + }, + "customize_tooltip_option/customize_tooltip_option_image/hover_detection_input_panel": { + "file": "ui/settings_sections/controls_section.json", + "type": "input_panel" + }, + "customize_tooltip_option/customize_tooltip_option_popup": { + "file": "ui/settings_sections/controls_section.json", + "type": "image", + "extend": { + "name": "customize_tooltip_option_popup", + "namespace": "controls_section" + } + } + }, + "general_section": { + "general_button": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "general_tab_section": { + "file": "ui/settings_sections/general_section.json", + "type": "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", + "pause_menu_on_focus_lost", + "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": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "general_tab_section/network_label_header": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "general_tab_section/paddingCrossPlatform": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/cross_platform_enabled_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "general_tab_section/paddingCellularData": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/mobile_data_option_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "general_tab_section/paddingWebSockets": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/websockets_enabled_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "general_tab_section/websocket_encryption_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "general_tab_section/paddingAutoUpdate": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/auto_update_mode_dropdown": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "general_tab_section/paddingAutoUpdateToggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/auto_update_enabled_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "general_tab_section/paddingGameTipsFeature": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/tutorial_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "general_tab_section/tutorial_animation_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "general_tab_section/tutorial_restart_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "general_tab_section/paddingTrustedSkins": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/only_allow_trusted_skins_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "general_tab_section/paddingFilterProfanity": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/filter_profanity_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + }, + "children": [ + "option_generic_core" + ] + }, + "general_tab_section/filter_profanity_toggle/option_generic_core": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "option_generic_core", + "namespace": "settings_common" + } + }, + "general_tab_section/pause_label_header": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "general_tab_section/paddingPauseFeature": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/pause_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "general_tab_section/pause_menu_on_focus_lost": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "general_tab_section/paddingLinkEduSupport": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/link_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "link_button", + "namespace": "settings_common" + } + }, + "general_tab_section/paddingDividerSustainability": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/ecomode_label_header": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "general_tab_section/paddingEcoMode": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/ecomode_enabled_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "general_tab_section/paddingDividerTermsCreditsAttribution": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/dividerTermsCreditsAttribution": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "section_divider" + ] + }, + "general_tab_section/dividerTermsCreditsAttribution/section_divider": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "general_tab_section/paddingDividerTermsCreditsAttributionAfter": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/paddingTermsNConditions": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/terms_and_conditions_link_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "link_button", + "namespace": "settings_common" + } + }, + "general_tab_section/paddingCreditsButton": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/credits_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "general_tab_section/paddingAttribution": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/attribution_link_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "link_button", + "namespace": "settings_common" + } + }, + "general_tab_section/paddingfeedback": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/feedback_link_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "link_button", + "namespace": "settings_common" + } + }, + "general_tab_section/paddingLicenses": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/dividerLicenses": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "section_divider" + ] + }, + "general_tab_section/dividerLicenses/section_divider": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "general_tab_section/paddingLicensesAfter": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/paddingLicensesHeader": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/licenses_label_header": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "general_tab_section/paddingLicensedContent": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/licensed_content_link_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "link_button", + "namespace": "settings_common" + } + }, + "general_tab_section/paddingFontLicense": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/font_license_popup_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "general_tab_section/third_party_copyright_info_label_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "spacer_0", + "copyright_label", + "spacer_1", + "copyright_icon" + ] + }, + "general_tab_section/third_party_copyright_info_label_panel/spacer_0": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/third_party_copyright_info_label_panel/copyright_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "general_tab_section/third_party_copyright_info_label_panel/spacer_1": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/third_party_copyright_info_label_panel/copyright_icon": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "general_tab_section/paddingSectionDividerContentLog": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/build_info_label_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "children": [ + "build_info_label" + ] + }, + "general_tab_section/build_info_label_panel/build_info_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "general_tab_section/paddingSectionDividerBuildInfo": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "general_tab_section/treatment_ids_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "account_button": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "view_account_errors_button_content": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "switch_accounts_button_content": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "padded_icon", + "padded_label" + ] + }, + "switch_accounts_button_content/padded_icon": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "icon" + ] + }, + "switch_accounts_button_content/padded_icon/icon": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "switch_accounts_button_content/padded_label": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "label" + ] + }, + "switch_accounts_button_content/padded_label/label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "sign_out_button_content": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "padded_label" + ] + }, + "sign_out_button_content/padded_label": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "label" + ] + }, + "sign_out_button_content/padded_label/label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "switch_accounts_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "name_label", + "paddingSwitchAccounts", + "switch_accounts" + ] + }, + "switch_accounts_panel/name_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "switch_accounts_panel/paddingSwitchAccounts": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "switch_accounts_panel/switch_accounts": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "sign_out_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "sign_out" + ] + }, + "sign_out_panel/sign_out": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "sign_out_fail_popup": { + "file": "ui/settings_sections/general_section.json", + "type": "input_panel", + "extend": { + "name": "form_fit_modal_dialog_popup", + "namespace": "popup_dialog" + } + }, + "sign_out_fail_body_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "body_panel", + "namespace": "edu_common" + } + }, + "sign_out_fail_body_content_stack": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "vertical_stack_item", + "namespace": "edu_common" + }, + "children": [ + "body_text1" + ] + }, + "sign_out_fail_body_content_stack/body_text_centering_panel1/body_text1": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "sign_out_fail_body_content_stack/body_text_centering_panel2": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "vertical_stack_item", + "namespace": "edu_common" + }, + "children": [ + "body_text2" + ] + }, + "sign_out_fail_body_content_stack/body_text_centering_panel2/body_text2": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "sign_out_fail_body_content_stack/padding1": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "sign_out_fail_body_content_stack/learn_more_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "underline_button", + "namespace": "edu_common" + } + }, + "sign_out_fail_body_content_stack/padding2": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "sign_out_fail_body_content_stack/close_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "account_section": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "account_section/paddingUseSSO": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "account_section/switch_accounts": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "switch_accounts_panel", + "namespace": "general_section" + } + }, + "account_section/sign_out": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "sign_out_panel", + "namespace": "general_section" + } + }, + "account_section/paddingNameControls": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "account_section/name_controls": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_custom_control", + "namespace": "settings_common" + } + }, + "account_section/paddingSignInControls": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "account_section/signin_controls": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_custom_control", + "namespace": "settings_common" + } + }, + "account_section/paddingGamerTagControls": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "account_section/gamertag_controls": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_custom_control", + "namespace": "settings_common" + } + }, + "account_section/paddingClearMSAToken": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "account_section/clear_msa_token": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "clear_msa_token_button" + ] + }, + "account_section/clear_msa_token/clear_msa_token_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "account_section/paddingUnlinkMSAAccount": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "account_section/unlink_msa_account": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "account_section/unlink_msa_account_nx": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "account_section/paddingDeleteAccount": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "account_section/delete_account": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "account_section/paddingUseRemoteConnect": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "account_section/remote_connect_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "account_section/paddingInfoLabels": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "account_section/account_info_buttom": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "children": [ + "account_info_label" + ] + }, + "account_section/account_info_buttom/account_info_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "name_controls": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "option_text_edit_control" + ] + }, + "name_controls/option_text_edit_control": { + "file": "ui/settings_sections/general_section.json", + "type": "edit_box", + "extend": { + "name": "option_text_edit_control", + "namespace": "settings_common" + } + }, + "signin_controls": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "sign_in" + ] + }, + "signin_controls/sign_in": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "action_button" + ] + }, + "signin_controls/sign_in/action_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "signin_subscription": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "sign_in" + ] + }, + "signin_subscription/sign_in": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "please_signin_label" + ] + }, + "signin_subscription/sign_in/please_signin_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "gamertag_controls": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "gamertag_label", + "paddingXboxAccountButtons", + "xboxlive_deep_link_buttons", + "paddingSignOut", + "realms_invites", + "sign_out", + "offline_token_authorization" + ] + }, + "gamertag_controls/gamertag_label": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "panel_descriptor", + "spacer", + "gamerpic", + "spacer_2", + "panel_gamertag" + ] + }, + "gamertag_controls/gamertag_label/panel_descriptor": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "label_descriptor" + ] + }, + "gamertag_controls/gamertag_label/panel_descriptor/label_descriptor": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "gamertag_controls/gamertag_label/spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "gamertag_controls/gamertag_label/gamerpic": { + "file": "ui/settings_sections/general_section.json", + "type": "custom" + }, + "gamertag_controls/gamertag_label/spacer_2": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "gamertag_controls/gamertag_label/panel_gamertag": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "gamertag_label" + ] + }, + "gamertag_controls/gamertag_label/panel_gamertag/gamertag_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "gamertag_controls/paddingXboxAccountButtons": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "gamertag_controls/xboxlive_deep_link_buttons": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button_mobile": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "link_button", + "namespace": "settings_common" + } + }, + "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button_mobile": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "link_button", + "namespace": "settings_common" + } + }, + "gamertag_controls/xboxlive_deep_link_buttons/paddingXboxSettingsPrivacyControl": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "gamertag_controls/xboxlive_deep_link_buttons/link_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "link_button", + "namespace": "settings_common" + } + }, + "gamertag_controls/paddingSignOut": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "gamertag_controls/realms_invites": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "check_realms_invites_button" + ] + }, + "gamertag_controls/realms_invites/check_realms_invites_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "gamertag_controls/sign_out": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "action_button" + ] + }, + "gamertag_controls/sign_out/action_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "gamertag_controls/offline_token_authorization": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "request_psn_authorization_button" + ] + }, + "gamertag_controls/offline_token_authorization/request_psn_authorization_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "auto_update_mode_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "global_texture_pack_button": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "resource_packs_section_toggle_base", + "namespace": "resource_packs" + } + }, + "global_texture_pack_section": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "selected_stack_panel", + "namespace": "resource_packs" + } + }, + "storage_management_button": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "storage_management_section": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "storage_main_panel", + "namespace": "storage_management" + } + }, + "storage_management_header": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "storage_header_panel", + "namespace": "storage_management" + } + }, + "storage_management_footer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "storage_footer_panel", + "namespace": "storage_management" + } + }, + "edu_cloud_storage_button": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "edu_cloud_storage_section": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "edu_cloud_storage_section/edu_cloud_backup_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "edu_cloud_storage_section/spacing2": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "edu_cloud_storage_section/body_wrapper_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "tts_border", + "edu_cloud_storage_body_label" + ] + }, + "edu_cloud_storage_section/body_wrapper_panel/tts_border": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "non_interact_focus_border_button", + "namespace": "common" + } + }, + "edu_cloud_storage_section/body_wrapper_panel/edu_cloud_storage_body_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "edu_cloud_storage_section/spacing3": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "edu_cloud_storage_section/edu_cloud_onedrive_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "edu_cloud_storage_section/spacing4": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "learn_more_button", + "padded_icon" + ] + }, + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/learn_more_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "underline_button", + "namespace": "edu_common" + } + }, + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "icon" + ] + }, + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon/icon": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "edu_cloud_onedrive_button_content": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "padded_label", + "padded_icon" + ] + }, + "edu_cloud_onedrive_button_content/padded_label": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "label" + ] + }, + "edu_cloud_onedrive_button_content/padded_label/label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "edu_cloud_onedrive_button_content/padded_icon": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "icon" + ] + }, + "edu_cloud_onedrive_button_content/padded_icon/icon": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "edu_cloud_onedrive_error_popup": { + "file": "ui/settings_sections/general_section.json", + "type": "input_panel", + "extend": { + "name": "form_fit_modal_dialog_popup", + "namespace": "popup_dialog" + } + }, + "edu_cloud_onedrive_error_content": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "body_text_centering_panel2", + "padding2", + "learn_more_button", + "padding3", + "ok_button" + ] + }, + "edu_cloud_onedrive_error_content/body_text_centering_panel2": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "vertical_stack_item", + "namespace": "edu_common" + }, + "children": [ + "body_text2" + ] + }, + "edu_cloud_onedrive_error_content/body_text_centering_panel2/body_text2": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "edu_cloud_onedrive_error_content/padding2": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "edu_cloud_onedrive_error_content/learn_more_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "underline_button", + "namespace": "edu_common" + } + }, + "edu_cloud_onedrive_error_content/padding3": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "edu_cloud_onedrive_error_content/ok_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "creator_button": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "editor_toggle_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "editor_confirmation_panel", + "editor_toggle_spacer", + "editor_image_panel" + ] + }, + "editor_toggle_panel/editor_confirmation_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "editor_active_label", + "toggle_spacer", + "editor_confirmation_section_label" + ] + }, + "editor_toggle_panel/editor_confirmation_panel/editor_active_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "editor_toggle_panel/editor_confirmation_panel/toggle_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "editor_toggle_panel/editor_confirmation_panel/editor_confirmation_section_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "editor_toggle_panel/editor_toggle_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "editor_toggle_panel/editor_image_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "editor_icon" + ] + }, + "editor_toggle_panel/editor_image_panel/editor_icon": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "creator_toggles_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "section_panel_1", + "primary_panel" + ] + }, + "creator_toggles_panel/section_panel_1": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "section_divider" + ] + }, + "creator_toggles_panel/section_panel_1/section_divider": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "creator_toggles_panel/primary_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "content_log_section_label", + "content_log_section_label_spacer", + "clipboard_setting" + ] + }, + "creator_toggles_panel/primary_panel/content_log_section_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "creator_toggles_panel/primary_panel/content_log_section_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "creator_toggles_panel/primary_panel/clipboard_setting": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debugger_toggles_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "section_panel_1", + "primary_panel" + ] + }, + "debugger_toggles_panel/section_panel_1": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "section_divider" + ] + }, + "debugger_toggles_panel/section_panel_1/section_divider": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "debugger_toggles_panel/primary_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "heading", + "spacer", + "passcode_required_toggle", + "passcode_input", + "auto_attach_toggle", + "all_options_panel" + ] + }, + "debugger_toggles_panel/primary_panel/heading": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "debugger_toggles_panel/primary_panel/spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "debugger_toggles_panel/primary_panel/passcode_required_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debugger_toggles_panel/primary_panel/passcode_input": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "debugger_toggles_panel/primary_panel/auto_attach_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debugger_toggles_panel/primary_panel/all_options_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "host_input", + "spacer", + "port_input" + ] + }, + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/host_input": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/port_input": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "debugger_toggles_panel/primary_panel/all_options_panel/auto_attach_timeout_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "editor_toggles_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "section_panel_1", + "primary_panel" + ] + }, + "editor_toggles_panel/section_panel_1": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "section_divider" + ] + }, + "editor_toggles_panel/section_panel_1/section_divider": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "editor_toggles_panel/primary_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "content_log_section_label", + "content_log_section_label_spacer", + "clipboard_setting" + ] + }, + "editor_toggles_panel/primary_panel/content_log_section_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "editor_toggles_panel/primary_panel/content_log_section_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "editor_toggles_panel/primary_panel/clipboard_setting": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "diagnostics_toggles_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "section_panel_1", + "primary_panel" + ] + }, + "diagnostics_toggles_panel/section_panel_1": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "section_divider" + ] + }, + "diagnostics_toggles_panel/section_panel_1/section_divider": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "diagnostics_toggles_panel/primary_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "heading", + "spacer", + "serverbound_client_diagnostics_toggle", + "diagnostics_capture_buttons" + ] + }, + "diagnostics_toggles_panel/primary_panel/heading": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "diagnostics_toggles_panel/primary_panel/spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "diagnostics_toggles_panel/primary_panel/serverbound_client_diagnostics_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "clear_diagnostics_capture_files" + ] + }, + "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons/clear_diagnostics_capture_files": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "watchdog_toggles_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "section_panel_1", + "primary_panel" + ] + }, + "watchdog_toggles_panel/section_panel_1": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "section_divider" + ] + }, + "watchdog_toggles_panel/section_panel_1/section_divider": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "watchdog_toggles_panel/primary_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "watchdog_toggles_panel/primary_panel/spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "watchdog_toggles_panel/primary_panel/hang_threshold_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "watchdog_toggles_panel/primary_panel/spike_warning_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "watchdog_toggles_panel/primary_panel/spike_threshold_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "watchdog_toggles_panel/primary_panel/slow_warning_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "watchdog_toggles_panel/primary_panel/slow_threshold_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "device_info_toggles_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "section_panel_1", + "primary_panel", + "device_info_memory_tier_dropdown" + ] + }, + "device_info_toggles_panel/section_panel_1": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "section_divider" + ] + }, + "device_info_toggles_panel/section_panel_1/section_divider": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "device_info_toggles_panel/primary_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "heading", + "spacer", + "device_info_memory_tier_use_override_toggle" + ] + }, + "device_info_toggles_panel/primary_panel/heading": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "device_info_toggles_panel/primary_panel/spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "device_info_toggles_panel/primary_panel/device_info_memory_tier_use_override_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "device_info_toggles_panel/device_info_memory_tier_dropdown": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "content_memory_tier_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "content_log_gui_level_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "content_log_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "section_divider" + ] + }, + "content_log_panel/section_panel_1/section_divider": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "content_log_panel/content_log_section_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "content_log_panel/content_log_section_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "content_log_panel/option_content_file_log": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "content_log_panel/option_content_gui_log": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "content_log_panel/option_content_gui_log_show_on_errors": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "content_log_panel/option_content_log_gui_level": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "content_log_panel/content_log_buttons": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "content_log_panel/content_log_buttons/content_log_section_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "content_log_panel/content_log_buttons/clear_content_log_files": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "content_log_panel/content_log_section_label_spacer_2": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "content_log_panel/content_log_location_label_header": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "content_log_panel/content_log_location_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "creator_section": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "editor_toggle", + "creator_toggles", + "debugger_toggles_panel", + "diagnostics_toggle_panel", + "watchdog_toggles_panel", + "editor_toggles_panel", + "device_info_toggles_panel", + "content_log_panel" + ] + }, + "creator_section/editor_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "editor_toggle_panel", + "namespace": "general_section" + } + }, + "creator_section/creator_toggles": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "creator_toggles_panel", + "namespace": "general_section" + } + }, + "creator_section/debugger_toggles_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "debugger_toggles_panel", + "namespace": "general_section" + } + }, + "creator_section/diagnostics_toggle_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "diagnostics_toggles_panel", + "namespace": "general_section" + } + }, + "creator_section/watchdog_toggles_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "watchdog_toggles_panel", + "namespace": "general_section" + } + }, + "creator_section/editor_toggles_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "editor_toggles_panel", + "namespace": "general_section" + } + }, + "creator_section/device_info_toggles_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "device_info_toggles_panel", + "namespace": "general_section" + } + }, + "creator_section/content_log_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "content_log_panel", + "namespace": "general_section" + } + }, + "video_button": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "advanced_video_options_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "toggle", + "extend": { + "name": "option_toggle_control", + "namespace": "settings_common" + } + }, + "video_menu_slider_step_progress": { + "file": "ui/settings_sections/general_section.json", + "type": "image", + "extend": { + "name": "slider_step", + "namespace": "common" + } + }, + "video_menu_slider_progress": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "video_menu_slider_bar_default": { + "file": "ui/settings_sections/general_section.json", + "type": "image", + "extend": { + "name": "slider_bar_default", + "namespace": "common" + } + }, + "video_menu_customization_slider_control": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "slider" + ] + }, + "video_menu_customization_slider_control/slider": { + "file": "ui/settings_sections/general_section.json", + "type": "slider", + "extend": { + "name": "slider", + "namespace": "common" + }, + "children": [ + "slider_box", + "slider_bar_default", + "slider_bar_hover" + ] + }, + "video_menu_customization_slider_control/slider/slider_box": { + "file": "ui/settings_sections/general_section.json", + "type": "slider_box", + "extend": { + "name": "slider_box", + "namespace": "common" + } + }, + "video_menu_customization_slider_control/slider/slider_bar_default": { + "file": "ui/settings_sections/general_section.json", + "type": "image", + "extend": { + "name": "video_menu_slider_bar_default", + "namespace": "general_section" + } + }, + "video_menu_customization_slider_control/slider/slider_bar_hover": { + "file": "ui/settings_sections/general_section.json", + "type": "image", + "extend": { + "name": "slider_bar_hover", + "namespace": "common" + } + }, + "video_menu_customization_option_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_generic", + "namespace": "settings_common" + } + }, + "video_section": { + "file": "ui/settings_sections/general_section.json", + "type": "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", + "texture_streaming_toggle", + "spacer_37", + "reset_button" + ] + }, + "video_section/advanced_graphics_options_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "video_section/advanced_graphics_options_panel/graphics_quality_preset_mode_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "video_section/advanced_graphics_options_panel/spacer_0": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/advanced_graphics_options_panel/advanced_graphics_options_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "video_section/advanced_graphics_options_panel/advanced_graphics_options_section": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "advanced_graphics_options_section", + "namespace": "general_section" + } + }, + "video_section/spacer_1": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/graphics_api_dropdown": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "video_section/raytracing_render_distance_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + }, + "children": [ + "option_generic_core" + ] + }, + "video_section/raytracing_render_distance_slider/option_generic_core": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "option_generic_core", + "namespace": "settings_common" + } + }, + "video_section/deferred_render_distance_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "video_menu_customization_option_slider", + "namespace": "general_section" + }, + "children": [ + "option_generic_core" + ] + }, + "video_section/deferred_render_distance_slider/option_generic_core": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "option_generic_core", + "namespace": "settings_common" + } + }, + "video_section/render_distance_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "video_menu_customization_option_slider", + "namespace": "general_section" + }, + "children": [ + "render_distance_warning", + "option_generic_core" + ] + }, + "video_section/render_distance_slider/render_distance_warning": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "render_distance_warning", + "namespace": "general_section" + } + }, + "video_section/render_distance_slider/option_generic_core": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "option_generic_core", + "namespace": "settings_common" + } + }, + "video_section/render_distance_warning_text": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "render_distance_popup" + ] + }, + "video_section/render_distance_warning_text/render_distance_popup": { + "file": "ui/settings_sections/general_section.json", + "type": "image", + "extend": { + "name": "static_tooltip_popup_with_image_and_text", + "namespace": "common" + } + }, + "video_section/spacer_2": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/brightness_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "video_section/spacer_3": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/perspective_dropdown": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "video_section/spacer_4": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/fullscreen_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "video_section/spacer_5": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/option_toggle_hidehand": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "video_section/spacer_6": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/hide_paperdoll_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "video_section/spacer_7": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/option_toggle_hidehud": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "video_section/spacer_8": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/option_toggle_screen_animations": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "video_section/spacer_9": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/hud_opacity_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "video_section/spacer_10": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/splitscreen_hud_opacity_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "video_section/spacer_11": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/setup_safe_zone": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "action_button" + ] + }, + "video_section/setup_safe_zone/action_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "video_section/spacer_12": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/fov_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "video_section/spacer_13": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/split_screen_dropdown": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "video_section/spacer_14": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/auto_save_icon_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "video_section/spacer_15": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/outline_selection_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "video_section/spacer_16": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/player_names_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "video_section/spacer_17": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/splitscreen_player_names_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "video_section/spacer_18": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/view_bobbing_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "video_section/spacer_19": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/camera_shake_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "video_section/spacer_20": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/fancy_leaves_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "video_section/spacer_21": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/fancy_bubbles_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "video_section/spacer_22": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/render_clouds_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "video_section/spacer_23": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/fancy_clouds_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "video_section/spacer_24": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/smooth_lighting_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "video_section/spacer_25": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/rendering_profile_option_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "video_section/field_of_view_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "video_section/spacer_26": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/damage_bob_option_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "video_section/spacer_26.5": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/super_fancy_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "super_fancy_section" + ] + }, + "video_section/super_fancy_panel/super_fancy_section": { + "file": "ui/settings_sections/general_section.json", + "type": "image", + "children": [ + "super_fancy_contents" + ] + }, + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/edge_highlight_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/bloom_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/terrain_shadows_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/super_fancy_water_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "video_section/ui_profile_dropdown": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "video_section/spacer_27": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/gui_scale_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + }, + "children": [ + "option_generic_core" + ] + }, + "video_section/gui_scale_slider/option_generic_core": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "option_generic_core", + "namespace": "settings_common" + } + }, + "video_section/spacer_28": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/gui_accessibility_scaling_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + }, + "children": [ + "option_generic_core" + ] + }, + "video_section/gui_accessibility_scaling_toggle/option_generic_core": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "option_generic_core", + "namespace": "settings_common" + } + }, + "video_section/spacer_29": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/option_toggle_improved_input_response": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + }, + "children": [ + "option_generic_core" + ] + }, + "video_section/option_toggle_improved_input_response/option_generic_core": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "option_generic_core", + "namespace": "settings_common" + } + }, + "video_section/spacer_30": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/frame_pacing_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + }, + "children": [ + "option_generic_core" + ] + }, + "video_section/frame_pacing_toggle/option_generic_core": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "option_generic_core", + "namespace": "settings_common" + } + }, + "video_section/spacer_31": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/graphics_mode_switch_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "video_section/spacer_32": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/upscaling_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "upscaling_toggle", + "namespace": "general_section" + } + }, + "video_section/spacer_33": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/max_framerate_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "max_framerate_slider", + "namespace": "general_section" + } + }, + "video_section/spacer_34": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/msaa_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "msaa_slider", + "namespace": "general_section" + } + }, + "video_section/spacer_35": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/texel_anti_aliasing_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "video_section/spacer_36": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/texture_streaming_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "video_section/spacer_37": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "video_section/reset_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "max_framerate_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + }, + "children": [ + "option_generic_core" + ] + }, + "max_framerate_slider/option_generic_core": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "option_generic_core", + "namespace": "settings_common" + } + }, + "msaa_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "upscaling_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + }, + "children": [ + "option_generic_core" + ] + }, + "upscaling_toggle/option_generic_core": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "option_generic_core", + "namespace": "settings_common" + } + }, + "render_distance_warning_image": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "render_distance_warning": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "render_distance_warning_image" + ] + }, + "render_distance_warning/render_distance_warning_image": { + "file": "ui/settings_sections/general_section.json", + "type": "image", + "extend": { + "name": "render_distance_warning_image", + "namespace": "general_section" + } + }, + "ui_profile_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "split_screen_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "third_person_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "toast_notification_duration_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "chat_message_duration_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "file_storage_location_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "background": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "fill", + "border" + ] + }, + "background/fill": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "background/border": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "left_button_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "right_button_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "realms_button_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "pad_0", + "left_button_panel", + "pad_1", + "right_button", + "pad_2" + ] + }, + "realms_button_panel/pad_0": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "realms_button_panel/left_button_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "left_button", + "left_button_loading" + ] + }, + "realms_button_panel/left_button_panel/left_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "realms_button_panel/left_button_panel/left_button_loading": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "realms_button_panel/pad_1": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "realms_button_panel/right_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "realms_button_panel/pad_2": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "consumable_not_extendable": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "panel_content" + ] + }, + "consumable_not_extendable/panel_content": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "padded_icon_0", + "limited_status_image", + "padded_icon_1", + "label_panel" + ] + }, + "consumable_not_extendable/panel_content/padded_icon_0": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "consumable_not_extendable/panel_content/limited_status_image": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "consumable_not_extendable/panel_content/padded_icon_1": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "consumable_not_extendable/panel_content/label_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "name_label2" + ] + }, + "consumable_not_extendable/panel_content/label_panel/name_label2": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "possible_store_mismatch": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "panel_content" + ] + }, + "possible_store_mismatch/panel_content": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "padded_icon_0", + "limited_status_image", + "padded_icon_1", + "label_panel" + ] + }, + "possible_store_mismatch/panel_content/padded_icon_0": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "possible_store_mismatch/panel_content/limited_status_image": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "possible_store_mismatch/panel_content/padded_icon_1": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "possible_store_mismatch/panel_content/label_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "name_label2" + ] + }, + "possible_store_mismatch/panel_content/label_panel/name_label2": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "realms_subscription_stack": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "image_panel", + "pad", + "info" + ] + }, + "realms_subscription_stack/image_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ] + }, + "realms_subscription_stack/image_panel/0": { + "file": "ui/settings_sections/general_section.json", + "type": "unknown" + }, + "realms_subscription_stack/pad": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "realms_subscription_stack/info": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "realm_name", + "realms_desc_label", + "bottom_pad" + ] + }, + "realms_subscription_stack/info/realm_name": { + "file": "ui/settings_sections/general_section.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "realms_subscription_stack/info/realms_desc_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "realms_subscription_stack/info/bottom_pad": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "realms_subscription_main": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "black_background", + "realms_plus_subscription_stack" + ] + }, + "realms_subscription_main/black_background": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "background", + "namespace": "general_section" + } + }, + "realms_subscription_main/realms_plus_subscription_stack": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "realms_subscription_stack", + "namespace": "general_section" + } + }, + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/realms_plus_bottom_button_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "realms_button_panel", + "namespace": "general_section" + } + }, + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/bottom_pad": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "realms_subscription_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "realms_subscription_main", + "namespace": "general_section" + } + }, + "realms_subscription_panel/pad_1": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "realms_subscription_panel/middle_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "black_background", + "renews_text" + ] + }, + "realms_subscription_panel/middle_panel/black_background": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "background", + "namespace": "general_section" + } + }, + "realms_subscription_panel/middle_panel/renews_text": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "realms_subscription_panel/pad_2": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "realms_subscription_panel/lower_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "black_background", + "consumable_not_extendable" + ] + }, + "realms_subscription_panel/lower_panel/black_background": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "background", + "namespace": "general_section" + } + }, + "realms_subscription_panel/lower_panel/consumable_not_extendable": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "consumable_not_extendable", + "namespace": "general_section" + } + }, + "realms_subscription_panel/pad_3": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "realms_subscription_panel/platform_mismatch_container": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "black_background", + "possible_store_mismatch" + ] + }, + "realms_subscription_panel/platform_mismatch_container/black_background": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "background", + "namespace": "general_section" + } + }, + "realms_subscription_panel/platform_mismatch_container/possible_store_mismatch": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "possible_store_mismatch", + "namespace": "general_section" + } + }, + "realms_subscription_panel/pad_4": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "realms_plus_subscription_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "realms_subscription_panel", + "namespace": "general_section" + } + }, + "additional_subscription_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "realms_subscription_panel", + "namespace": "general_section" + } + }, + "view_subscriptions_button": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "view_subscriptions_prerelease_section": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "black_background", + "renews_text" + ] + }, + "view_subscriptions_prerelease_section/black_background": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "background", + "namespace": "general_section" + } + }, + "view_subscriptions_prerelease_section/renews_text": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "view_subscriptions_section": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "image", + "extend": { + "name": "realm_warning_tip", + "namespace": "play" + } + }, + "view_subscriptions_section/failed_loading_subscriptions_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "view_subscriptions_section/loading_subscriptions_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "view_subscriptions_section/no_active_subscriptions_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "text" + ] + }, + "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions/text": { + "file": "ui/settings_sections/general_section.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "view_subscriptions_section/no_active_subscriptions_panel/background_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "view_subscriptions_section/realms_plus_header_my_subscriptions": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "text" + ] + }, + "view_subscriptions_section/realms_plus_header_my_subscriptions/text": { + "file": "ui/settings_sections/general_section.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "view_subscriptions_section/realms_plus_subscriptions_grid": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel" + }, + "view_subscriptions_section/csb_purchased_with_cancel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "csb_container", + "namespace": "csb_subscription_panel" + } + }, + "view_subscriptions_section/csb_purchased_with_buy": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "csb_container", + "namespace": "csb_subscription_panel" + } + }, + "view_subscriptions_section/csb_purchased_padding": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "view_subscriptions_section/platform_mismatch_container": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "black_background", + "possible_store_mismatch" + ] + }, + "view_subscriptions_section/platform_mismatch_container/black_background": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "background", + "namespace": "general_section" + } + }, + "view_subscriptions_section/platform_mismatch_container/possible_store_mismatch": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "possible_store_mismatch", + "namespace": "general_section" + } + }, + "view_subscriptions_section/csb_expiration_container": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "csb_expiration_text_container", + "background_panel" + ] + }, + "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "csb_expiration_text_padding", + "csb_expiration" + ] + }, + "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration_text_padding": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "view_subscriptions_section/csb_expiration_container/background_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "view_subscriptions_section/csb_expiration_and_platform_mismatch_padding": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "view_subscriptions_section/additional_realms_subscriptions_grid": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel" + }, + "view_subscriptions_section/settings_additional_subscription_offers_section": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "settings_additional_subscription_offers_section", + "namespace": "general_section" + } + }, + "view_subscriptions_section/pad_3": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "settings_additional_subscription_offers_section": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "section_divider", + "namespace": "common" + } + }, + "settings_additional_subscription_offers_section/realms_plus_header_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "settings_additional_subscription_offers_section/pad_0": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "settings_additional_subscription_offers_section/additional_realms_buy_offer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "realms_subscription_main", + "namespace": "general_section" + } + }, + "settings_additional_subscription_offers_section/pad_8": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "settings_additional_subscription_offers_section/csb_buy_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "csb_container", + "namespace": "csb_subscription_panel" + } + }, + "accessibility_button": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "toast_notification_duration_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "toast_notification_duration_info_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "toast_notification_duration_info_edu_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "chat_message_duration_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "chat_message_duration_info_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "accessibility_section": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "option_toggle_subtitles", + "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_toggle_subtitles": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "accessibility_section/option_toggle0": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "accessibility_section/option_toggle1": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "accessibility_section/option_toggle2": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "accessibility_section/option_slider_0": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "accessibility_section/option_toggle3": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "accessibility_section/hud_text_background_opacity_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "accessibility_section/chat_opacity_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "accessibility_section/actionbar_text_background_opacity_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "accessibility_section/camera_shake_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "accessibility_section/hide_endflash_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "accessibility_section/enable_dithering_blocks_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "accessibility_section/enable_dithering_mobs_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "accessibility_section/darkness_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "accessibility_section/glint_strength_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "accessibility_section/glint_speed_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "accessibility_section/toast_notification_duration_options_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_wrapper": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_edu_wrapper": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown_spacer_pre": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "accessibility_section/chat_message_duration_options_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_info_label_wrapper": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown_spacer_pre": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "accessibility_section/gui_scale_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + }, + "children": [ + "option_generic_core" + ] + }, + "accessibility_section/gui_scale_slider/option_generic_core": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "option_generic_core", + "namespace": "settings_common" + } + }, + "accessibility_section/gui_accessibility_scaling_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + }, + "children": [ + "option_generic_core" + ] + }, + "accessibility_section/gui_accessibility_scaling_toggle/option_generic_core": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "option_generic_core", + "namespace": "settings_common" + } + }, + "accessibility_section/reset_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "sound_button": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "sound_section": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "sound_section/option_slider_0": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "sound_section/paddingDividerAudioSettings": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "sound_section/dividerAudioSettings": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "section_divider" + ] + }, + "sound_section/dividerAudioSettings/section_divider": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "sound_section/paddingMusic": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "sound_section/option_slider_1": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "sound_section/paddingSound": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "sound_section/option_slider_2": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "sound_section/paddingAmbient": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "sound_section/option_slider_3": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "sound_section/paddingBlockVolume": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "sound_section/option_slider_4": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "sound_section/paddingHostile": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "sound_section/option_slider_5": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "sound_section/paddingNeutralVolume": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "sound_section/option_slider_6": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "sound_section/paddingPlayervolume": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "sound_section/option_slider_7": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "sound_section/paddingRecordVolume": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "sound_section/option_slider_8": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "sound_section/paddingWeatherVolume": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "sound_section/option_slider_9": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "sound_section/paddingTTSVolume": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "sound_section/option_slider_10": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "sound_section/paddingResetVolumes": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "sound_section/reset_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "sound_section/paddingEndOfList": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "language_button": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "language_grid_item": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "radio_with_label", + "namespace": "settings_common" + } + }, + "language_section": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "language_list_grid" + ] + }, + "language_section/language_list_grid": { + "file": "ui/settings_sections/general_section.json", + "type": "grid" + }, + "preview_button": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "preview_section": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "spacer_0", + "generic_label", + "preview_store_launch_app1_button", + "preview_store_launch_app2_button" + ] + }, + "preview_section/spacer_0": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "preview_section/generic_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label", + "extend": { + "name": "white_label", + "namespace": "settings_common" + } + }, + "preview_section/preview_store_launch_app1_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "preview_section/preview_store_launch_app2_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "override_date_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "override_date_panel/year_month_slash": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "override_date_panel/month_text_box": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "override_date_panel/month_day_slash": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "override_date_panel/day_text_box": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "override_date_panel/day_hour_slash": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "override_date_panel/hour_text_box": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "override_date_panel/hour_minute_slash": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "override_date_panel/minute_text_box": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "timezonetype_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "date_options_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "padding0", + "display_override_datetime_option_toggle", + "option_toggle_date_override", + "override_date_options_panel" + ] + }, + "date_options_panel/padding0": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "date_options_panel/display_override_datetime_option_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "date_options_panel/option_toggle_date_override": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "date_options_panel/override_date_options_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "override_date_options_panel", + "namespace": "general_section" + } + }, + "override_date_options_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "override_date_options_background_panel" + ] + }, + "override_date_options_panel/override_date_options_background_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "override_date_options_panel/override_date_options_background_panel/select_dropdown": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "override_date_options_panel/override_date_options_background_panel/override_date_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "override_date_panel", + "namespace": "general_section" + } + }, + "override_date_options_panel/override_date_options_background_panel/padding1": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "override_date_options_panel/override_date_options_background_panel/override_time_scale_option": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "override_date_options_panel/override_date_options_background_panel/reset_time_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "override_date_options_panel/override_date_options_background_panel/padding2": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "debug_display_logged_error_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "debug_display_logged_error_panel_background" + ] + }, + "debug_display_logged_error_panel/debug_display_logged_error_panel_background": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_ui": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_osi": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_other": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/spacer_0": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "xbox_sandbox_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "padding0", + "display_override_xbox_sandbox_toggle_windows", + "display_override_xbox_sandbox_toggle", + "override_xbox_options_panel" + ] + }, + "xbox_sandbox_panel/padding0": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "xbox_sandbox_panel/display_override_xbox_sandbox_toggle_windows": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "xbox_sandbox_panel/display_override_xbox_sandbox_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "xbox_sandbox_panel/override_xbox_options_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "override_xbox_options_panel", + "namespace": "general_section" + } + }, + "override_xbox_options_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "override_xbox_options" + ] + }, + "override_xbox_options_panel/override_xbox_options": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "option_dropdown_xbox" + ] + }, + "override_xbox_options_panel/override_xbox_options/option_dropdown_xbox": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "override_version_options_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "override_version_panel", + "override_version_button_panel", + "override_date_panel_bottom_padding" + ] + }, + "override_version_options_panel/override_version_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "override_version_panel", + "namespace": "general_section" + } + }, + "override_version_options_panel/override_version_button_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "update_override_version_button" + ] + }, + "override_version_options_panel/override_version_button_panel/update_override_version_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "override_version_options_panel/override_date_panel_bottom_padding": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "override_version_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "override_version_panel/first_dot": { + "file": "ui/settings_sections/general_section.json", + "type": "label", + "extend": { + "name": "dot_label", + "namespace": "general_section" + } + }, + "override_version_panel/minor_version_text_box": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "override_version_panel/second_dot": { + "file": "ui/settings_sections/general_section.json", + "type": "label", + "extend": { + "name": "dot_label", + "namespace": "general_section" + } + }, + "override_version_panel/patch_version_text_box": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "dot_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "debug_override_treatments_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "override_treatments_panel_background" + ] + }, + "debug_override_treatments_panel/override_treatments_panel_background": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "option_toggle_treatment_override", + "spacer_0", + "override_treatment_options_panel", + "treatments_label_panel", + "treatment_grid", + "unused_treatments_label_panel", + "unused_treatment_grid", + "spacer_1" + ] + }, + "debug_override_treatments_panel/override_treatments_panel_background/option_toggle_treatment_override": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_override_treatments_panel/override_treatments_panel_background/spacer_0": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "add_button" + ] + }, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel/add_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/clear_treatments": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "common_store" + }, + "children": [ + "treatments_label" + ] + }, + "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel/treatments_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "debug_override_treatments_panel/override_treatments_panel_background/treatment_grid": { + "file": "ui/settings_sections/general_section.json", + "type": "grid" + }, + "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "common_store" + }, + "children": [ + "treatments_label" + ] + }, + "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel/treatments_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "debug_override_treatments_panel/override_treatments_panel_background/unused_treatment_grid": { + "file": "ui/settings_sections/general_section.json", + "type": "grid" + }, + "debug_override_treatments_panel/override_treatments_panel_background/spacer_1": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "debug_override_configurations_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "override_configurations_panel_background" + ] + }, + "debug_override_configurations_panel/override_configurations_panel_background": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_override_configurations_panel/override_configurations_panel_background/spacer_0": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "add_button" + ] + }, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel/add_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/clear_configurations": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "debug_override_configurations_panel/override_configurations_panel_background/configuration_grid": { + "file": "ui/settings_sections/general_section.json", + "type": "grid" + }, + "debug_override_realms_features_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "override_realms_features_panel_background" + ] + }, + "debug_override_realms_features_panel/override_realms_features_panel_background": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_override_realms_features_panel/override_realms_features_panel_background/spacer_0": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/add_button_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/clear_realms_features": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "common_store" + }, + "children": [ + "realms_features_label" + ] + }, + "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel/realms_features_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "debug_override_realms_features_panel/override_realms_features_panel_background/realms_features_grid": { + "file": "ui/settings_sections/general_section.json", + "type": "grid" + }, + "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "common_store" + }, + "children": [ + "realms_features_label" + ] + }, + "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel/realms_features_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_grid": { + "file": "ui/settings_sections/general_section.json", + "type": "grid" + }, + "configuration_grid_item": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "configuration_id_panel", + "remove_button" + ] + }, + "configuration_grid_item/configuration_id_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "common_store" + }, + "children": [ + "configuration_id" + ] + }, + "configuration_grid_item/configuration_id_panel/configuration_id": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "configuration_grid_item/remove_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "remove_configuration_icon": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "realms_feature_grid_item": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "realms_feature_id_panel", + "disable_button" + ] + }, + "realms_feature_grid_item/realms_feature_id_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "common_store" + }, + "children": [ + "realms_feature_id" + ] + }, + "realms_feature_grid_item/realms_feature_id_panel/realms_feature_id": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "realms_feature_grid_item/disable_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "disable_realms_feature_icon": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "unused_realms_feature_grid_item": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "unused_realms_feature_id_panel", + "enable_button" + ] + }, + "unused_realms_feature_grid_item/unused_realms_feature_id_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "common_store" + }, + "children": [ + "unused_realms_feature_id" + ] + }, + "unused_realms_feature_grid_item/unused_realms_feature_id_panel/unused_realms_feature_id": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "unused_realms_feature_grid_item/enable_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "enable_realms_feature_icon": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "treatment_grid_item": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "treatment_id_panel", + "remove_button" + ] + }, + "treatment_grid_item/treatment_id_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "common_store" + }, + "children": [ + "treatment_id" + ] + }, + "treatment_grid_item/treatment_id_panel/treatment_id": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "treatment_grid_item/remove_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "remove_treatment_icon": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "unused_treatment_grid_item": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "unused_treatment_id_panel", + "add_button" + ] + }, + "unused_treatment_grid_item/unused_treatment_id_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "common_store" + }, + "children": [ + "unused_treatment_id" + ] + }, + "unused_treatment_grid_item/unused_treatment_id_panel/unused_treatment_id": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "unused_treatment_grid_item/add_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "add_treatment_icon": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "debug_select_windows_store_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "select_store_dropdown", + "stores_label", + "sandbox_label" + ] + }, + "debug_select_windows_store_panel/select_store_dropdown": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "debug_select_windows_store_panel/stores_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "debug_select_windows_store_panel/sandbox_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "windows_store_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "mock_http_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "display_mock_http_panel_toggle", + "mock_http_panel_content" + ] + }, + "mock_http_panel/display_mock_http_panel_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "mock_http_panel/mock_http_panel_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "mock_http_panel_content", + "namespace": "general_section" + } + }, + "mock_http_panel_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "mock_http_panel_background" + ] + }, + "mock_http_panel_content/mock_http_panel_background": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "mock_http_panel_content/mock_http_panel_background/remove_all_mock_rules_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "mock_http_panel_content/mock_http_panel_background/active_rules_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "mock_http_panel_content/mock_http_panel_background/rule_list": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "mock_http_rule_list", + "namespace": "general_section" + } + }, + "mock_http_panel_content/mock_http_panel_background/divider": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "section_divider", + "namespace": "common" + } + }, + "mock_http_rule_list": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel" + }, + "mock_http_rule": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "rule_details_label", + "rule_spacer" + ] + }, + "mock_http_rule/rule_details_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "mock_http_rule/rule_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "automation_button": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "automation_section": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "automation_section/padding": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "automation_section/automation_test_asset_sas_text_box": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "automation_section/automation_functional_test_tags_text_box": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "automation_section/automation_server_test_tags_text_box": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "automation_section/automation_unit_test_tags_text_box": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "automation_section/automation_broken_functional_test_tags_text_box": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "automation_section/automation_broken_server_test_tags_text_box": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "automation_section/automation_broken_unit_test_tags_text_box": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "automation_section/automation_repeat_count_text_box": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "automation_section/automation_soak_test_duration_minutes_text_box": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "automation_section/automation_repeat_failures_only_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "automation_section/automation_run_entire_server_test_group": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "automation_section/automation_testbuild_id_text_box": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "automation_section/automation_functional_test_block_input_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "automation_section/automation_server_test_assert_on_level_diff_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "discovery_debug_button": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "discovery_debug_section": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "option_discovery_environment", + "debug_override_discovery_panel" + ] + }, + "discovery_debug_section/option_discovery_environment": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "discovery_debug_section/debug_override_discovery_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "override_discovery_panel_background" + ] + }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/spacer_0": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_type": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_branch": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_custom": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/apply_endpoint_override": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_1": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/active_service_overrides_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_2": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/reset_all_endpoint_overrides_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/discovery_overrides_do_not_save_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_3": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "debug_button": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "feature_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section": { + "file": "ui/settings_sections/general_section.json", + "type": "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_show_test_running_text", + "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_authentication_option", + "reset_report_timer_option", + "reset_online_safety_option", + "reset_show_hardcore_warning_option", + "reset_low_ping_warning_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": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "debug_section/options_for_qa_convenience_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "debug_section/option_toggle_dev_console_button_0": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_assertions_debug_break": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_assertions_show_dialog": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_dev_show_display_logged_error": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/display_logged_error_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "debug_display_logged_error_panel", + "namespace": "general_section" + } + }, + "debug_section/option_dev_force_trial_mode": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_dev_force_trial_mode_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "debug_section/debug_overlay_pages_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "debug_section/debug_overlay_button_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "debug_overlay_previous_button", + "debug_overlay_next_button" + ] + }, + "debug_section/debug_overlay_button_panel/debug_overlay_previous_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "debug_section/debug_overlay_button_panel/debug_overlay_next_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "debug_section/pre_feature_toggles_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "debug_section/feature_toggles_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "debug_section/feature_toggles_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "debug_section/feature_toggles": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel" + }, + "debug_section/end_of_feature_toggles_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "debug_section/option_toggle_dev_disable_lan_signaling": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_dropdown_nethernet_logging_verbosity": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "debug_section/option_dropdown_http_logging_verbosity": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "debug_section/option_dropdown_xsapi_logging_verbosity": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_remote_imgui": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_dropdown_0": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_extra_debug_hud_info": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_show_test_running_text": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_0_1": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_0_2": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_slider_0": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_3": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_4": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_5": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_6": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_dropdown_server_chunk_map": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_9": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_disable_render_terrain": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_disable_render_entities": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_disable_render_blockentities": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_disable_render_particles": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_disable_render_sky": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_disable_render_weather": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_disable_render_hud": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_disable_render_item_in_hand": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_disable_render_main_menu_cubemap": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_disable_render_main_menu_paperdoll_animation": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/leak_memory": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit_with_text_button", + "namespace": "settings_common" + } + }, + "debug_section/log_area": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "debug_section/log_priority": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_build_info": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_perf_turtle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_default_profiling_option": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_7": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_8": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_game_tip": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/option_toggle_10": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/dev_disable_client_blob_cache_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/dev_force_client_blob_cache_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/devquality_dropdown": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "debug_section/dev_add_http_delay_seconds": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "debug_section/dev_show_latency_graph_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/xbox_sandbox_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "xbox_sandbox_panel", + "namespace": "general_section" + } + }, + "debug_section/multithreaded_rendering_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/filewatcher_rendering_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/enable_texture_hot_reloader_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/mock_http_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "mock_http_panel", + "namespace": "general_section" + } + }, + "debug_section/vsync_dropdown": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "debug_section/sunsetting_use_overrides_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/padding_sunsetting": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "debug_section/sunseting_state_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/sunsetting_tier_dropdown": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "debug_section/padding_sunsetting_2": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "debug_section/padding1": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "debug_section/copy_internal_settings_folder_to_external": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "debug_section/padding_reset_day_one": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "debug_section/reset_new_player_flow": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "debug_section/reset_day_one_experience": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "debug_section/option_text_edit_1": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "debug_section/option_text_edit_2": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "debug_section/option_text_edit_3": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "debug_section/reset_authentication_option": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "debug_section/reset_report_timer_option": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "debug_section/reset_online_safety_option": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "debug_section/reset_show_hardcore_warning_option": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "debug_section/reset_low_ping_warning_option": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "debug_section/reset_ip_safety_option": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "debug_section/padding_graphics_options": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "debug_section/option_shadersdk_service_ip": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "debug_section/option_shadersdk_service_port": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "debug_section/option_shadersdk_target_port": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "debug_section/padding_graphics_buttons": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "debug_section/trigger_graphics_device_loss": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "debug_section/allocate_texture_handles": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "debug_section/padding_deferred_debug": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "debug_section/deferred_platform_override": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "realms_debug_button": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "realms_debug_section": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "realms_debug_section/realms_title_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "realms_debug_section/feature_toggles_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "realms_debug_section/feature_toggles_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "realms_debug_section/feature_toggles": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel" + }, + "realms_debug_section/end_of_feature_toggles_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "realms_debug_section/realms_dev_toggles_title": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "realms_debug_section/realms_dev_toggle_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "realms_debug_section/realms_without_purchase_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "realms_debug_section/realms_debug_options_title": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "realms_debug_section/realms_debug_options_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "realms_debug_section/option_dropdown_1": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "realms_debug_section/option_dropdown_2": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "realms_debug_section/option_text_edit_0": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "realms_debug_section/realms_features_override_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "option_toggle_realms_features_override", + "override_realms_features_panel" + ] + }, + "realms_debug_section/realms_features_override_panel/option_toggle_realms_features_override": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "realms_debug_section/realms_features_override_panel/override_realms_features_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "debug_override_realms_features_panel", + "namespace": "general_section" + } + }, + "realms_debug_section/realms_debug_options_spacer_2": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "realms_feature_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "marketplace_debug_button": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "marketplace_debug_section": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "marketplace_debug_section/marketplace_feature_toggles_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "marketplace_debug_section/marketplace_feature_toggles": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel" + }, + "marketplace_debug_section/playfab_token_refresh_threshold": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "marketplace_debug_section/option_dropdown_skin_rotation_speed": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "marketplace_debug_section/option_toggle_all_skins_rotate": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "marketplace_debug_section/option_toggle_display_marketplace_document_id": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "marketplace_debug_section/option_toggle_display_platform_offer_check": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "marketplace_debug_section/version_options_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "option_version_override", + "override_version_options_panel" + ] + }, + "marketplace_debug_section/version_options_panel/option_version_override": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "marketplace_debug_section/version_options_panel/override_version_options_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "override_version_options_panel", + "namespace": "general_section" + } + }, + "marketplace_debug_section/select_windows_store_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "debug_select_windows_store_panel", + "namespace": "general_section" + } + }, + "marketplace_debug_section/date_options_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "date_options_panel", + "namespace": "general_section" + } + }, + "marketplace_debug_section/option_clear_store_cache_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "marketplace_debug_section/option_clear_all_cache_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "marketplace_debug_section/option_delete_all_personas_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "marketplace_debug_section/option_delete_legacy_personas_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "marketplace_debug_section/padding2": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "marketplace_debug_section/enable_coin_debug_switch_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "marketplace_debug_section/add_500_coins": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "marketplace_debug_section/add_100000_coins": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "marketplace_debug_section/padding3": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "marketplace_debug_section/reset_entitlements": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "marketplace_debug_section/reset_wallet": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "marketplace_feature_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "gatherings_debug_button": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "gatherings_debug_section": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "gatherings_debug_section/spacer_1": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "gatherings_debug_section/clear_system_service_pack_cache_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "gatherings_debug_section/spacer_2": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "gatherings_debug_section/active_gathering_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "gatherings_debug_section/spacer_3": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "gatherings_debug_section/text_edit_filter_gatherings": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "gatherings_debug_section/spacer_4": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "gatherings_debug_section/available_gatherings_section": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "available_gatherings_section", + "namespace": "general_section" + } + }, + "gathering_grid_item_content": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "gathering_name", + "gathering_uuid" + ] + }, + "gathering_grid_item_content/gathering_name": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "gathering_grid_item_content/gathering_uuid": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "gathering_item_template": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "gathering_item_button" + ] + }, + "gathering_item_template/gathering_item_button": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "available_gatherings_grid": { + "file": "ui/settings_sections/general_section.json", + "type": "grid" + }, + "available_gatherings_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "available_label", + "gatherings_grid", + "spacing_gap" + ] + }, + "available_gatherings_panel/available_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label", + "extend": { + "name": "selector_group_label", + "namespace": "settings_common" + } + }, + "available_gatherings_panel/gatherings_grid": { + "file": "ui/settings_sections/general_section.json", + "type": "grid", + "extend": { + "name": "available_gatherings_grid", + "namespace": "general_section" + } + }, + "available_gatherings_panel/spacing_gap": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "available_gatherings_section": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "available_gatherings_panel" + ] + }, + "available_gatherings_section/available_gatherings_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "extend": { + "name": "available_gatherings_panel", + "namespace": "general_section" + } + }, + "ui_debug_button": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "ui_feature_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "edu_debug_button": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "edu_feature_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "new_create_world_grid_item": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "radio_with_label", + "namespace": "settings_common" + } + }, + "new_edu_create_world_screen_grid_item": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "radio_with_label", + "namespace": "settings_common" + } + }, + "new_play_screen_grid_item": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "radio_with_label", + "namespace": "settings_common" + } + }, + "new_edit_world_screen_grid_item": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "radio_with_label", + "namespace": "settings_common" + } + }, + "new_player_permissions_screen_grid_item": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "radio_with_label", + "namespace": "settings_common" + } + }, + "new_send_invites_screen_grid_item": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "radio_with_label", + "namespace": "settings_common" + } + }, + "new_death_grid_item": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "radio_with_label", + "namespace": "settings_common" + } + }, + "new_bed_grid_item": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "radio_with_label", + "namespace": "settings_common" + } + }, + "ore_ui_gameplay_ui_grid_item": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "radio_with_label", + "namespace": "settings_common" + } + }, + "new_settings_screen_grid_item": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "radio_with_label", + "namespace": "settings_common" + } + }, + "ui_debug_section": { + "file": "ui/settings_sections/general_section.json", + "type": "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", + "end_of_other_options_divider", + "end_of_other_options_spacer", + "debug_data_label", + "debug_data_label_spacer", + "option_continuous_repaint", + "option_show_paint_rects", + "option_show_element_aabb", + "option_emulate_touch_events", + "end_of_debug_data_divider", + "end_of_debug_data_spacer", + "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": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "ui_debug_section/ui_feature_toggles_info_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "ui_debug_section/ui_feature_toggles_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/ui_feature_toggles": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel" + }, + "ui_debug_section/end_of_ui_feature_toggles_label_divider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "section_divider" + ] + }, + "ui_debug_section/end_of_ui_feature_toggles_label_divider/section_divider": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "ui_debug_section/end_of_ui_feature_toggles_label_divider_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/end_of_ui_feature_toggles_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/screen_override_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "ui_debug_section/screen_override_info_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "ui_debug_section/screen_override_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/new_edu_create_world_screen_radio_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "ui_debug_section/new_edu_create_world_screen_radio_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/new_edu_create_world_screen_radio_button": { + "file": "ui/settings_sections/general_section.json", + "type": "grid" + }, + "ui_debug_section/new_edu_create_world_screen_radio_button_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/new_play_screen_radio_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "ui_debug_section/new_play_screen_radio_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/new_play_screen_radio_button": { + "file": "ui/settings_sections/general_section.json", + "type": "grid" + }, + "ui_debug_section/new_play_screen_radio_button_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/new_edit_world_screen_radio_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "ui_debug_section/new_edit_world_screen_radio_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/new_edit_world_screen_radio_button": { + "file": "ui/settings_sections/general_section.json", + "type": "grid" + }, + "ui_debug_section/new_edit_world_screen_radio_button_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/new_send_invites_radio_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "ui_debug_section/new_send_invites_screen_radio_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/new_send_invites_screen_radio_button": { + "file": "ui/settings_sections/general_section.json", + "type": "grid" + }, + "ui_debug_section/new_send_invites_screen_radio_button_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/new_death_screen_radio_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "ui_debug_section/new_death_screen_radio_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/new_death_screen_radio_button": { + "file": "ui/settings_sections/general_section.json", + "type": "grid" + }, + "ui_debug_section/new_death_screen_radio_button_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/new_bed_screen_radio_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "ui_debug_section/new_bed_screen_radio_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/new_bed_screen_radio_button": { + "file": "ui/settings_sections/general_section.json", + "type": "grid" + }, + "ui_debug_section/new_bed_screen_radio_button_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/ore_ui_gameplay_ui_radio_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "ui_debug_section/ore_ui_gameplay_ui_radio_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/ore_ui_gameplay_ui_radio_button": { + "file": "ui/settings_sections/general_section.json", + "type": "grid" + }, + "ui_debug_section/ore_ui_gameplay_ui_radio_button_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/end_of_ui_screen_override_divider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "section_divider" + ] + }, + "ui_debug_section/end_of_ui_screen_override_divider/section_divider": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "ui_debug_section/end_of_ui_sceen_override_divider_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/new_settings_screen_radio_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "ui_debug_section/new_settings_screen_radio_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/new_settings_screen_radio_button": { + "file": "ui/settings_sections/general_section.json", + "type": "grid" + }, + "ui_debug_section/new_settings_screen_radio_button_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/screen_opt_in_options_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "ui_debug_section/screen_opt_in_info_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "ui_debug_section/screen_opt_in_options_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/end_of_ui_screen_opt_in_divider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "section_divider" + ] + }, + "ui_debug_section/end_of_ui_screen_opt_in_divider/section_divider": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "ui_debug_section/end_of_ui_sceen_opt_in_divider_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/other_ui_options_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "ui_debug_section/other_ui_options_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/option_toggle_default_font_override": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "ui_debug_section/option_toggle_dev_show_tcui_replacement": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "ui_debug_section/option_toggle_use_mobile_data_blocked_modal": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "ui_debug_section/ui_feature_toggles_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/option_show_touch_control_selection_screen": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "ui_debug_section/option_reset_on_start": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "ui_debug_section/end_of_other_options_divider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "section_divider" + ] + }, + "ui_debug_section/end_of_other_options_divider/section_divider": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "ui_debug_section/end_of_other_options_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/debug_data_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "ui_debug_section/debug_data_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/option_continuous_repaint": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "ui_debug_section/option_show_paint_rects": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "ui_debug_section/option_show_element_aabb": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "ui_debug_section/option_emulate_touch_events": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "ui_debug_section/end_of_debug_data_divider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "section_divider" + ] + }, + "ui_debug_section/end_of_debug_data_divider/section_divider": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "ui_debug_section/end_of_debug_data_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/option_slider_drag_dwell": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "ui_debug_section/option_slider_stack_splitting": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "ui_debug_section/reset_render_distance_warning_modal_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "ui_debug_section/reset_render_distance_warning_modal_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/reset_render_distance_warning_modal": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "ui_debug_section/reset_render_distance_warning_modal_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/ore_ui_developer_pages_divider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "section_divider" + ] + }, + "ui_debug_section/ore_ui_developer_pages_divider/section_divider": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "ui_debug_section/ore_ui_developer_pages_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/open_ore_ui_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "ui_debug_section/open_ore_ui_info_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "ui_debug_section/open_ore_ui_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "ui_debug_section/open_ore_ui_docs": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "ui_debug_section/open_ore_ui_tests": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "ui_debug_section/open_ore_ui_perf": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "ui_debug_section/open_ore_ui_test_modal": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "ui_debug_section/open_ore_ui_tests_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "edu_debug_section": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "label" + }, + "edu_debug_section/edu_feature_toggles_label_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "edu_debug_section/edu_demo": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "edu_debug_section/edu_ad_debug_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "edu_debug_section/edu_ad_token_refresh_threshold": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "edu_debug_section/edu_ad_max_signin_token_refresh": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "edu_debug_section/edu_ad_max_graph_token_refresh": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "edu_debug_section/edu_environment_divider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "section_divider" + ] + }, + "edu_debug_section/edu_environment_divider/section_divider": { + "file": "ui/settings_sections/general_section.json", + "type": "image" + }, + "edu_debug_section/edu_environment_spacer": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "edu_debug_section/edu_env_dropdown": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "flighting_debug_button": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "flighting_debug_section": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "treatment_override_panel", + "configuration_override_panel" + ] + }, + "flighting_debug_section/treatment_override_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "option_toggle_treatment_override", + "override_treatments_panel" + ] + }, + "flighting_debug_section/treatment_override_panel/option_toggle_treatment_override": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "flighting_debug_section/treatment_override_panel/override_treatments_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "debug_override_treatments_panel", + "namespace": "general_section" + } + }, + "flighting_debug_section/configuration_override_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "option_toggle_configuration_override", + "override_configurations_panel" + ] + }, + "flighting_debug_section/configuration_override_panel/option_toggle_configuration_override": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "flighting_debug_section/configuration_override_panel/override_configurations_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "debug_override_configurations_panel", + "namespace": "general_section" + } + }, + "how_to_play_button": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "how_to_play_section": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "spacer_0", + "generic_label", + "spacer_1", + "gamepad_helper_label" + ] + }, + "how_to_play_section/spacer_0": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "how_to_play_section/generic_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label", + "extend": { + "name": "white_label", + "namespace": "settings_common" + } + }, + "how_to_play_section/spacer_1": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "how_to_play_section/gamepad_helper_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label", + "extend": { + "name": "white_label", + "namespace": "settings_common" + } + }, + "dev_xbox_environment_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "dev_discovery_environment_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "dev_service_override_type_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "dev_realms_environment_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "dev_realms_sku_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "default_profiling_group_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "dev_nethernet_logging_verbosity_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "dev_http_logging_verbosity_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "dev_xsapi_logging_verbosity_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "dev_debug_speed_multiplier_options": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "dev_debug_hud_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "dev_chunkMapMode_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "dev_quality_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "vysnc_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "deferred_platform_override_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "dev_education_environment_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "dev_sunsetting_tier_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "graphics_api_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "graphics_mode_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "upscaling_mode_dropdown_content": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "advanced_graphics_options_button_content": { + "file": "ui/settings_sections/general_section.json", + "type": "stack_panel", + "children": [ + "advanced_graphics_options_label", + "fill_pad", + "plus_panel", + "minus_panel" + ] + }, + "advanced_graphics_options_button_content/advanced_graphics_options_label": { + "file": "ui/settings_sections/general_section.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "advanced_graphics_options_button_content/fill_pad": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "advanced_graphics_options_button_content/plus_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "plus" + ] + }, + "advanced_graphics_options_button_content/plus_panel/plus": { + "file": "ui/settings_sections/general_section.json", + "type": "image", + "extend": { + "name": "plus_image", + "namespace": "resource_packs" + } + }, + "advanced_graphics_options_button_content/minus_panel": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "children": [ + "minus" + ] + }, + "advanced_graphics_options_button_content/minus_panel/minus": { + "file": "ui/settings_sections/general_section.json", + "type": "image", + "extend": { + "name": "minus_image", + "namespace": "resource_packs" + } + }, + "advanced_graphics_options_section": { + "file": "ui/settings_sections/general_section.json", + "type": "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": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "advanced_graphics_options_section/gamma_calibration": { + "file": "ui/settings_sections/general_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "advanced_graphics_options_section/spacer_1": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "advanced_graphics_options_section/max_framerate_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "max_framerate_slider", + "namespace": "general_section" + } + }, + "advanced_graphics_options_section/spacer_2": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "advanced_graphics_options_section/msaa_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "msaa_slider", + "namespace": "general_section" + } + }, + "advanced_graphics_options_section/spacer_3": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "advanced_graphics_options_section/shadow_quality_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "advanced_graphics_options_section/spacer_4": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "advanced_graphics_options_section/point_light_shadow_quality_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "advanced_graphics_options_section/spacer_5": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "advanced_graphics_options_section/point_light_loding_quality_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "advanced_graphics_options_section/spacer_6": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "advanced_graphics_options_section/cloud_quality_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "advanced_graphics_options_section/spacer_7": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "advanced_graphics_options_section/volumetric_fog_quality_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "advanced_graphics_options_section/spacer_8": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "advanced_graphics_options_section/reflections_quality_slider": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "advanced_graphics_options_section/spacer_9": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "advanced_graphics_options_section/bloom_strength": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "advanced_graphics_options_section/spacer_10": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "advanced_graphics_options_section/upscaling_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "upscaling_toggle", + "namespace": "general_section" + } + }, + "advanced_graphics_options_section/spacer_11": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "advanced_graphics_options_section/upscaling_mode": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "advanced_graphics_options_section/spacer_12": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "advanced_graphics_options_section/upscaling_percentage": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "advanced_graphics_options_section/fancy_clouds_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "advanced_graphics_options_section/spacer_13": { + "file": "ui/settings_sections/general_section.json", + "type": "panel" + }, + "advanced_graphics_options_section/smooth_lighting_toggle": { + "file": "ui/settings_sections/general_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + } + }, + "realms_world_section": { + "realm_name_edit": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "world_name_edit": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "realm_description_edit": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "download_world_button": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "upload_world_button": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "reset_world_button": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "manage_feed_button": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "club_info_label": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_info_label", + "namespace": "settings_common" + } + }, + "difficulty_dropdown": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "game_mode_dropdown": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "panel_content": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "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": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "stack_panel", + "children": [ + "panel_title", + "panel_text", + "opt_in_button" + ] + }, + "panel_content/new_edit_world_opt_in_panel/panel_title": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_group_label", + "namespace": "settings_common" + } + }, + "panel_content/new_edit_world_opt_in_panel/panel_text": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_group_label", + "namespace": "settings_common" + } + }, + "panel_content/new_edit_world_opt_in_panel/opt_in_button": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "panel_content/new_edit_world_opt_in_divider": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "children": [ + "section_divider" + ] + }, + "panel_content/new_edit_world_opt_in_divider/section_divider": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "image" + }, + "panel_content/option_info_label": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_info_label", + "namespace": "settings_common" + } + }, + "panel_content/hardcore_info_label": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_info_label", + "namespace": "settings_common" + } + }, + "panel_content/realm_name_edit": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "realm_name_edit", + "namespace": "realms_world_section" + } + }, + "panel_content/world_name_edit": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "world_name_edit", + "namespace": "realms_world_section" + } + }, + "panel_content/realm_description_edit": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "realm_description_edit", + "namespace": "realms_world_section" + } + }, + "panel_content/difficulty_dropdown": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "difficulty_dropdown", + "namespace": "realms_world_section" + } + }, + "panel_content/game_mode_dropdown": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "game_mode_dropdown", + "namespace": "realms_world_section" + } + }, + "panel_content/is_hardcore_toggle": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "panel_content/world_options_label": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_group_label", + "namespace": "settings_common" + } + }, + "panel_content/pvp_toggle": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "panel_content/show_coordinates_toggle": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "panel_content/locator_bar_toggle": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "panel_content/show_days_played_toggle": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "panel_content/fire_spreads_toggle": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "panel_content/recipes_unlock_toggle": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "panel_content/tnt_explodes_toggle": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "panel_content/respawn_blocks_explode_toggle": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "panel_content/mob_loot_toggle": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "panel_content/natural_regeneration_toggle": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "panel_content/tile_drops_toggle": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "panel_content/player_sleep_toggle": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "panel_content/player_sleep_percentage_slider": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "panel_content/immediate_respawn_toggle": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "panel_content/respawn_radius": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "panel_content/world_cheats_label": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_group_label", + "namespace": "settings_common" + } + }, + "panel_content/allow_cheats_toggle": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "panel_content/daylight_cycle_toggle": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "panel_content/keep_inventory_toggle": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "panel_content/mob_spawn_toggle": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "panel_content/mob_griefing_toggle": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "panel_content/entities_drop_loot_toggle": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "panel_content/weather_cycle_toggle": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "panel_content/command_blocks_enabled_toggle": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "panel_content/random_tick_speed": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit_with_text_button", + "namespace": "settings_common" + } + }, + "panel_content/download_world_button": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "button", + "extend": { + "name": "download_world_button", + "namespace": "realms_world_section" + } + }, + "panel_content/padding_0": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel" + }, + "panel_content/upload_world_button": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "button", + "extend": { + "name": "upload_world_button", + "namespace": "realms_world_section" + } + }, + "panel_content/padding_1": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel" + }, + "panel_content/reset_world_button": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "button", + "extend": { + "name": "reset_world_button", + "namespace": "realms_world_section" + } + }, + "panel_content/padding_2": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel" + }, + "panel_content/club_info_label": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "panel", + "extend": { + "name": "club_info_label", + "namespace": "realms_world_section" + } + }, + "panel_content/manage_feed_button": { + "file": "ui/settings_sections/realms_world_section.json", + "type": "button", + "extend": { + "name": "manage_feed_button", + "namespace": "realms_world_section" + } + } + }, + "settings_common": { + "arrow_image": { + "file": "ui/settings_sections/settings_common.json", + "type": "image" + }, + "subsection_title": { + "file": "ui/settings_sections/settings_common.json", + "type": "stack_panel", + "children": [ + "spacer_0", + "sizer_0", + "spacer_1", + "sizer_1" + ] + }, + "subsection_title/spacer_0": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel" + }, + "subsection_title/sizer_0": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "title" + ] + }, + "subsection_title/sizer_0/title": { + "file": "ui/settings_sections/settings_common.json", + "type": "label" + }, + "subsection_title/spacer_1": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel" + }, + "subsection_title/sizer_1": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "section_divider" + ] + }, + "subsection_title/sizer_1/section_divider": { + "file": "ui/settings_sections/settings_common.json", + "type": "image" + }, + "action_button": { + "file": "ui/settings_sections/settings_common.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "action_button_dark_text": { + "file": "ui/settings_sections/settings_common.json", + "type": "button", + "extend": { + "name": "dark_text_button", + "namespace": "common_buttons" + } + }, + "link_button": { + "file": "ui/settings_sections/settings_common.json", + "type": "button", + "extend": { + "name": "hyperlink_button", + "namespace": "common_buttons" + } + }, + "option_group_label": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "text" + ] + }, + "option_group_label/text": { + "file": "ui/settings_sections/settings_common.json", + "type": "label" + }, + "option_group_header": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "text" + ] + }, + "option_group_header/text": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "option_group_label", + "namespace": "settings_common" + } + }, + "option_group_spaced_label": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "text" + ] + }, + "option_group_spaced_label/text": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "option_group_label", + "namespace": "settings_common" + } + }, + "option_group_spaced_header": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "text" + ] + }, + "option_group_spaced_header/text": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "option_group_label", + "namespace": "settings_common" + } + }, + "option_group_section_divider": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "background" + ] + }, + "option_group_section_divider/background": { + "file": "ui/settings_sections/settings_common.json", + "type": "image" + }, + "option_generic": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "option_generic_core" + ] + }, + "option_generic/option_generic_core": { + "file": "ui/settings_sections/settings_common.json", + "type": "stack_panel", + "extend": { + "name": "option_generic_core", + "namespace": "settings_common" + } + }, + "white_label": { + "file": "ui/settings_sections/settings_common.json", + "type": "label" + }, + "option_generic_core": { + "file": "ui/settings_sections/settings_common.json", + "type": "stack_panel", + "children": [ + "two_line_layout", + "one_line_layout", + "spacer" + ] + }, + "option_generic_core/two_line_layout": { + "file": "ui/settings_sections/settings_common.json", + "type": "stack_panel", + "children": [ + "option_label_panel", + "spacer", + "option_descriptive_text_0", + "spacer2" + ] + }, + "option_generic_core/two_line_layout/option_label_panel": { + "file": "ui/settings_sections/settings_common.json", + "type": "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": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "option_label" + ] + }, + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01/option_label": { + "file": "ui/settings_sections/settings_common.json", + "type": "label", + "extend": { + "name": "option_generic_core_label", + "namespace": "settings_common" + } + }, + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "option_label" + ] + }, + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02/option_label": { + "file": "ui/settings_sections/settings_common.json", + "type": "label", + "extend": { + "name": "option_generic_core_label", + "namespace": "settings_common" + } + }, + "option_generic_core/two_line_layout/option_label_panel/option_tooltip": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "option_generic_tooltip", + "namespace": "settings_common" + } + }, + "option_generic_core/two_line_layout/spacer": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel" + }, + "option_generic_core/two_line_layout/option_descriptive_text_0": { + "file": "ui/settings_sections/settings_common.json", + "type": "label" + }, + "option_generic_core/two_line_layout/spacer2": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel" + }, + "option_generic_core/one_line_layout": { + "file": "ui/settings_sections/settings_common.json", + "type": "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": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "option_label" + ] + }, + "option_generic_core/one_line_layout/option_label_subpanel_01/option_label": { + "file": "ui/settings_sections/settings_common.json", + "type": "label", + "extend": { + "name": "option_generic_core_label", + "namespace": "settings_common" + } + }, + "option_generic_core/one_line_layout/option_label_subpanel_02": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "option_label" + ] + }, + "option_generic_core/one_line_layout/option_label_subpanel_02/option_label": { + "file": "ui/settings_sections/settings_common.json", + "type": "label", + "extend": { + "name": "option_generic_core_label", + "namespace": "settings_common" + } + }, + "option_generic_core/one_line_layout/option_descriptive_text": { + "file": "ui/settings_sections/settings_common.json", + "type": "label" + }, + "option_generic_core/one_line_layout/option_tooltip": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "option_generic_tooltip", + "namespace": "settings_common" + } + }, + "option_generic_core/spacer": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel" + }, + "option_generic_core_label": { + "file": "ui/settings_sections/settings_common.json", + "type": "label" + }, + "option_generic_tooltip_image": { + "file": "ui/settings_sections/settings_common.json", + "type": "image" + }, + "option_generic_tooltip_top_popup": { + "file": "ui/settings_sections/settings_common.json", + "type": "image", + "extend": { + "name": "static_tooltip_popup_with_image_and_text", + "namespace": "common" + } + }, + "option_generic_tooltip_bottom_popup": { + "file": "ui/settings_sections/settings_common.json", + "type": "image", + "extend": { + "name": "static_tooltip_popup_with_image_and_text", + "namespace": "common" + } + }, + "option_generic_tooltip": { + "file": "ui/settings_sections/settings_common.json", + "type": "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": { + "file": "ui/settings_sections/settings_common.json", + "type": "tooltip_trigger" + }, + "option_generic_tooltip/hover_detection_input_panel": { + "file": "ui/settings_sections/settings_common.json", + "type": "tooltip_trigger", + "children": [ + "option_generic_tooltip_image" + ] + }, + "option_generic_tooltip/hover_detection_input_panel/option_generic_tooltip_image": { + "file": "ui/settings_sections/settings_common.json", + "type": "image", + "extend": { + "name": "option_generic_tooltip_image", + "namespace": "settings_common" + } + }, + "option_generic_tooltip/option_generic_tooltip_top_popup": { + "file": "ui/settings_sections/settings_common.json", + "type": "image", + "extend": { + "name": "option_generic_tooltip_top_popup", + "namespace": "settings_common" + } + }, + "option_generic_tooltip/option_generic_tooltip_bottom_popup": { + "file": "ui/settings_sections/settings_common.json", + "type": "image", + "extend": { + "name": "option_generic_tooltip_bottom_popup", + "namespace": "settings_common" + } + }, + "option_text_edit_control": { + "file": "ui/settings_sections/settings_common.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "option_text_edit_control_with_button": { + "file": "ui/settings_sections/settings_common.json", + "type": "stack_panel", + "children": [ + "text_box", + "button" + ] + }, + "option_text_edit_control_with_button/text_box": { + "file": "ui/settings_sections/settings_common.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "option_text_edit_control_with_button/button": { + "file": "ui/settings_sections/settings_common.json", + "type": "button", + "extend": { + "name": "light_glyph_button", + "namespace": "common_buttons" + } + }, + "option_text_edit_control_with_text_button": { + "file": "ui/settings_sections/settings_common.json", + "type": "stack_panel", + "children": [ + "text_box", + "button" + ] + }, + "option_text_edit_control_with_text_button/text_box": { + "file": "ui/settings_sections/settings_common.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "option_text_edit_control_with_text_button/button": { + "file": "ui/settings_sections/settings_common.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "option_toggle_state_template": { + "file": "ui/settings_sections/settings_common.json", + "type": "image" + }, + "option_toggle_on": { + "file": "ui/settings_sections/settings_common.json", + "type": "image", + "extend": { + "name": "option_toggle_state_template", + "namespace": "settings_common" + } + }, + "option_toggle_off": { + "file": "ui/settings_sections/settings_common.json", + "type": "image", + "extend": { + "name": "option_toggle_state_template", + "namespace": "settings_common" + } + }, + "option_toggle_on_hover": { + "file": "ui/settings_sections/settings_common.json", + "type": "image", + "extend": { + "name": "option_toggle_state_template", + "namespace": "settings_common" + } + }, + "option_toggle_off_hover": { + "file": "ui/settings_sections/settings_common.json", + "type": "image", + "extend": { + "name": "option_toggle_state_template", + "namespace": "settings_common" + } + }, + "option_toggle_on_locked": { + "file": "ui/settings_sections/settings_common.json", + "type": "image", + "extend": { + "name": "option_toggle_on", + "namespace": "settings_common" + } + }, + "option_toggle_off_locked": { + "file": "ui/settings_sections/settings_common.json", + "type": "image", + "extend": { + "name": "option_toggle_off", + "namespace": "settings_common" + } + }, + "option_toggle_control": { + "file": "ui/settings_sections/settings_common.json", + "type": "toggle", + "extend": { + "name": "toggle", + "namespace": "common" + } + }, + "checkbox_visuals_unchecked": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "checkbox_visuals", + "namespace": "settings_common" + } + }, + "checkbox_visuals_checked": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "checkbox_visuals", + "namespace": "settings_common" + } + }, + "checkbox_visuals_unchecked_locked": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "checkbox_visuals", + "namespace": "settings_common" + } + }, + "checkbox_visuals_checked_locked": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "checkbox_visuals", + "namespace": "settings_common" + } + }, + "checkbox_visuals_unchecked_hover": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "checkbox_visuals", + "namespace": "settings_common" + } + }, + "checkbox_visuals_checked_hover": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "checkbox_visuals", + "namespace": "settings_common" + } + }, + "checkbox_visuals": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "checkbox_image", + "checkbox_label", + "accessibility_selection_highlight" + ] + }, + "checkbox_visuals/checkbox_image": { + "file": "ui/settings_sections/settings_common.json", + "type": "image" + }, + "checkbox_visuals/checkbox_label": { + "file": "ui/settings_sections/settings_common.json", + "type": "label" + }, + "checkbox_visuals/accessibility_selection_highlight": { + "file": "ui/settings_sections/settings_common.json", + "type": "image" + }, + "checkbox_with_highlight_and_label": { + "file": "ui/settings_sections/settings_common.json", + "type": "toggle", + "extend": { + "name": "toggle", + "namespace": "common" + } + }, + "radio_visuals_unchecked": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "radio_visuals", + "namespace": "settings_common" + } + }, + "radio_visuals_checked": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "radio_visuals", + "namespace": "settings_common" + } + }, + "radio_visuals_unchecked_locked": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "radio_visuals", + "namespace": "settings_common" + } + }, + "radio_visuals_checked_locked": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "radio_visuals", + "namespace": "settings_common" + } + }, + "radio_visuals_unchecked_hover": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "radio_visuals", + "namespace": "settings_common" + } + }, + "radio_visuals_checked_hover": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "radio_visuals", + "namespace": "settings_common" + } + }, + "radio_visuals": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "radio_image", + "radio_label", + "accessibility_selection_highlight" + ] + }, + "radio_visuals/radio_image": { + "file": "ui/settings_sections/settings_common.json", + "type": "image" + }, + "radio_visuals/radio_label": { + "file": "ui/settings_sections/settings_common.json", + "type": "label" + }, + "radio_visuals/accessibility_selection_highlight": { + "file": "ui/settings_sections/settings_common.json", + "type": "image" + }, + "radio_with_label_core": { + "file": "ui/settings_sections/settings_common.json", + "type": "toggle", + "extend": { + "name": "radio_toggle", + "namespace": "common" + } + }, + "option_radio_group_control": { + "file": "ui/settings_sections/settings_common.json", + "type": "stack_panel", + "children": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ] + }, + "option_radio_group_control/0": { + "file": "ui/settings_sections/settings_common.json", + "type": "unknown" + }, + "radio_with_label": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "radio_with_label_core" + ] + }, + "radio_with_label/radio_with_label_core": { + "file": "ui/settings_sections/settings_common.json", + "type": "toggle", + "extend": { + "name": "radio_with_label_core", + "namespace": "settings_common" + } + }, + "radio_with_label_and_icon": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "radio_with_label_core", + "radio_with_label_icon" + ] + }, + "radio_with_label_and_icon/radio_with_label_core": { + "file": "ui/settings_sections/settings_common.json", + "type": "toggle", + "extend": { + "name": "radio_with_label_core", + "namespace": "settings_common" + } + }, + "radio_with_label_and_icon/radio_with_label_icon": { + "file": "ui/settings_sections/settings_common.json", + "type": "image" + }, + "radio_with_label_and_content_unchecked": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "radio_with_label_and_content", + "namespace": "settings_common" + } + }, + "radio_with_label_and_content_checked": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "radio_with_label_and_content", + "namespace": "settings_common" + } + }, + "radio_with_label_and_content_unchecked_locked": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "radio_with_label_and_content", + "namespace": "settings_common" + } + }, + "radio_with_label_and_content_checked_locked": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "radio_with_label_and_content", + "namespace": "settings_common" + } + }, + "radio_with_label_and_content_unchecked_hover": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "radio_with_label_and_content", + "namespace": "settings_common" + } + }, + "radio_with_label_and_content_checked_hover": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "radio_with_label_and_content", + "namespace": "settings_common" + } + }, + "radio_with_label_and_content_stack_item": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel" + }, + "radio_with_label_and_content": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "radio_background", + "radio_item_with_description_stack" + ] + }, + "radio_with_label_and_content/radio_background": { + "file": "ui/settings_sections/settings_common.json", + "type": "image" + }, + "radio_with_label_and_content/radio_item_with_description_stack": { + "file": "ui/settings_sections/settings_common.json", + "type": "stack_panel", + "children": [ + "radio_icon_and_label", + "radio_description" + ] + }, + "radio_with_label_and_content/radio_item_with_description_stack/radio_icon_and_label": { + "file": "ui/settings_sections/settings_common.json", + "type": "stack_panel", + "extend": { + "name": "radio_item_with_label_and_content_stack", + "namespace": "settings_common" + } + }, + "radio_with_label_and_content/radio_item_with_description_stack/radio_description": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "radio_description_panel", + "namespace": "settings_common" + } + }, + "radio_item_with_label_and_content_stack": { + "file": "ui/settings_sections/settings_common.json", + "type": "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": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "radio_item_with_label_and_content_stack/radio_image_panel": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "radio_with_label_and_content_stack_item", + "namespace": "settings_common" + }, + "children": [ + "image" + ] + }, + "radio_item_with_label_and_content_stack/radio_image_panel/image": { + "file": "ui/settings_sections/settings_common.json", + "type": "image" + }, + "radio_item_with_label_and_content_stack/radio_to_content_padding": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "radio_item_with_label_and_content_stack/radio_content_panel": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "radio_with_label_and_content_stack_item", + "namespace": "settings_common" + }, + "children": [ + "radio_image" + ] + }, + "radio_item_with_label_and_content_stack/radio_content_panel/radio_image": { + "file": "ui/settings_sections/settings_common.json", + "type": "unknown" + }, + "radio_item_with_label_and_content_stack/content_to_label_padding": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "radio_item_with_label_and_content_stack/radio_label_panel": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "radio_with_label_and_content_stack_item", + "namespace": "settings_common" + }, + "children": [ + "radio_label" + ] + }, + "radio_item_with_label_and_content_stack/radio_label_panel/radio_label": { + "file": "ui/settings_sections/settings_common.json", + "type": "label" + }, + "radio_description_panel": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "description" + ] + }, + "radio_description_panel/description": { + "file": "ui/settings_sections/settings_common.json", + "type": "label", + "extend": { + "name": "radio_description", + "namespace": "settings_common" + } + }, + "radio_description": { + "file": "ui/settings_sections/settings_common.json", + "type": "label" + }, + "radio_item_with_label_and_content": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "radio_with_label_core" + ] + }, + "radio_item_with_label_and_content/radio_with_label_core": { + "file": "ui/settings_sections/settings_common.json", + "type": "toggle", + "extend": { + "name": "radio_with_label_core", + "namespace": "settings_common" + } + }, + "option_slider_control": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "slider" + ] + }, + "option_slider_control/slider": { + "file": "ui/settings_sections/settings_common.json", + "type": "slider", + "extend": { + "name": "slider", + "namespace": "common" + } + }, + "default_options_dropdown_toggle_button_state_content": { + "file": "ui/settings_sections/settings_common.json", + "type": "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": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "default_options_dropdown_toggle_button_state_content/option_content": { + "file": "ui/settings_sections/settings_common.json", + "type": "unknown" + }, + "default_options_dropdown_toggle_button_state_content/option_content_padding": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "default_options_dropdown_toggle_button_state_content/label_panel": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "label" + ] + }, + "default_options_dropdown_toggle_button_state_content/label_panel/label": { + "file": "ui/settings_sections/settings_common.json", + "type": "label", + "extend": { + "name": "new_button_label", + "namespace": "common" + } + }, + "default_options_dropdown_toggle_button_state_content/arrow_panel": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "dropdown_chevron_image" + ] + }, + "default_options_dropdown_toggle_button_state_content/arrow_panel/dropdown_chevron_image": { + "file": "ui/settings_sections/settings_common.json", + "type": "image" + }, + "default_options_dropdown_toggle_button_state_content/right_padding": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "options_dropdown_toggle_control": { + "file": "ui/settings_sections/settings_common.json", + "type": "toggle", + "extend": { + "name": "light_template_toggle", + "namespace": "common_toggles" + } + }, + "options_dropdown_dark_toggle_control": { + "file": "ui/settings_sections/settings_common.json", + "type": "toggle", + "extend": { + "name": "dark_template_toggle", + "namespace": "common_toggles" + } + }, + "option_dropdown_control": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "dropdown" + ] + }, + "option_dropdown_control/dropdown": { + "file": "ui/settings_sections/settings_common.json", + "type": "unknown" + }, + "option_dropdown_control_no_scroll": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "option_dropdown_control", + "namespace": "settings_common" + } + }, + "option_info_label_with_icon": { + "file": "ui/settings_sections/settings_common.json", + "type": "image", + "children": [ + "control", + "icon_panel" + ] + }, + "option_info_label_with_icon/control": { + "file": "ui/settings_sections/settings_common.json", + "type": "label" + }, + "option_info_label_with_icon/icon_panel": { + "file": "ui/settings_sections/settings_common.json", + "type": "stack_panel", + "children": [ + "icon_image", + "padding2" + ] + }, + "option_info_label_with_icon/icon_panel/icon_image": { + "file": "ui/settings_sections/settings_common.json", + "type": "image" + }, + "option_info_label_with_icon/icon_panel/padding2": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "option_info_label_icon": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "option_icon_label": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "option_generic", + "namespace": "settings_common" + } + }, + "option_info_label_with_bulb": { + "file": "ui/settings_sections/settings_common.json", + "type": "image", + "children": [ + "stack_panel" + ] + }, + "option_info_label_with_bulb/stack_panel": { + "file": "ui/settings_sections/settings_common.json", + "type": "stack_panel", + "children": [ + "padding1", + "bulb_panel", + "padding2", + "label_panel", + "padding3" + ] + }, + "option_info_label_with_bulb/stack_panel/padding1": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "option_info_label_with_bulb/stack_panel/bulb_panel": { + "file": "ui/settings_sections/settings_common.json", + "type": "stack_panel", + "children": [ + "padding1", + "bulb_image", + "padding2" + ] + }, + "option_info_label_with_bulb/stack_panel/bulb_panel/padding1": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "option_info_label_with_bulb/stack_panel/bulb_panel/bulb_image": { + "file": "ui/settings_sections/settings_common.json", + "type": "image" + }, + "option_info_label_with_bulb/stack_panel/bulb_panel/padding2": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "option_info_label_with_bulb/stack_panel/padding2": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "option_info_label_with_bulb/stack_panel/label_panel": { + "file": "ui/settings_sections/settings_common.json", + "type": "stack_panel", + "children": [ + "info_label1", + "padding2", + "info_label2" + ] + }, + "option_info_label_with_bulb/stack_panel/label_panel/info_label1": { + "file": "ui/settings_sections/settings_common.json", + "type": "label" + }, + "option_info_label_with_bulb/stack_panel/label_panel/padding2": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "option_info_label_with_bulb/stack_panel/label_panel/info_label2": { + "file": "ui/settings_sections/settings_common.json", + "type": "label" + }, + "option_info_label_with_bulb/stack_panel/padding3": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "option_info_label_with_image": { + "file": "ui/settings_sections/settings_common.json", + "type": "image", + "children": [ + "control" + ] + }, + "option_info_label_with_image/control": { + "file": "ui/settings_sections/settings_common.json", + "type": "label" + }, + "option_info_label_image": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "option_toggle": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "option_generic", + "namespace": "settings_common" + } + }, + "option_radio_group": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "option_generic", + "namespace": "settings_common" + } + }, + "option_radio_dropdown_group": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "radio_control_group" + ] + }, + "option_radio_dropdown_group/radio_control_group": { + "file": "ui/settings_sections/settings_common.json", + "type": "stack_panel", + "extend": { + "name": "option_radio_group_control", + "namespace": "settings_common" + } + }, + "option_text_edit": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "option_generic", + "namespace": "settings_common" + } + }, + "option_text_edit_with_button": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "option_generic", + "namespace": "settings_common" + } + }, + "option_text_edit_with_text_button": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "option_generic", + "namespace": "settings_common" + } + }, + "option_slider": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "option_generic", + "namespace": "settings_common" + } + }, + "option_dropdown": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "option_generic", + "namespace": "settings_common" + } + }, + "option_dropdown_no_scroll": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "option_generic", + "namespace": "settings_common" + } + }, + "option_custom_control": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "option_generic", + "namespace": "settings_common" + } + }, + "option_info_label": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "option_generic", + "namespace": "settings_common" + } + }, + "dynamic_dialog_screen": { + "file": "ui/settings_sections/settings_common.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "dynamic_dialog_fullscreen": { + "file": "ui/settings_sections/settings_common.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "settings_content": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "background", + "stack_panel", + "popup_dialog_factory" + ] + }, + "settings_content/background": { + "file": "ui/settings_sections/settings_common.json", + "type": "image" + }, + "settings_content/stack_panel": { + "file": "ui/settings_sections/settings_common.json", + "type": "stack_panel", + "children": [ + "content_panel" + ] + }, + "settings_content/stack_panel/content_panel": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "common_panel", + "container" + ] + }, + "settings_content/stack_panel/content_panel/common_panel": { + "file": "ui/settings_sections/settings_common.json", + "type": "stack_panel", + "extend": { + "name": "fullscreen_header", + "namespace": "common" + } + }, + "settings_content/stack_panel/content_panel/container": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel" + }, + "settings_content/popup_dialog_factory": { + "file": "ui/settings_sections/settings_common.json", + "type": "factory" + }, + "toggle_button_control": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "glyph", + "glyph_color", + "progress_loading_bars", + "tab_button_text" + ] + }, + "toggle_button_control/glyph": { + "file": "ui/settings_sections/settings_common.json", + "type": "image" + }, + "toggle_button_control/glyph_color": { + "file": "ui/settings_sections/settings_common.json", + "type": "image" + }, + "toggle_button_control/progress_loading_bars": { + "file": "ui/settings_sections/settings_common.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "progress" + } + }, + "toggle_button_control/tab_button_text": { + "file": "ui/settings_sections/settings_common.json", + "type": "label" + }, + "section_toggle_base": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "light_ui_toggle", + "namespace": "common_toggles" + } + }, + "section_title_label": { + "file": "ui/settings_sections/settings_common.json", + "type": "label" + }, + "dialog_title_label": { + "file": "ui/settings_sections/settings_common.json", + "type": "label" + }, + "dialog_titles": { + "file": "ui/settings_sections/settings_common.json", + "type": "stack_panel", + "children": [ + "left_padding", + "dialog_title_label", + "center_padding", + "section_title_label", + "right_padding_is_always_right" + ] + }, + "dialog_titles/left_padding": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel" + }, + "dialog_titles/dialog_title_label": { + "file": "ui/settings_sections/settings_common.json", + "type": "label", + "extend": { + "name": "dialog_title_label", + "namespace": "settings_common" + } + }, + "dialog_titles/center_padding": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel" + }, + "dialog_titles/section_title_label": { + "file": "ui/settings_sections/settings_common.json", + "type": "label", + "extend": { + "name": "section_title_label", + "namespace": "settings_common" + } + }, + "dialog_titles/right_padding_is_always_right": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel" + }, + "dialog_content": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "dialog_titles", + "selector_area", + "content_area", + "section_divider" + ] + }, + "dialog_content/dialog_titles": { + "file": "ui/settings_sections/settings_common.json", + "type": "stack_panel", + "extend": { + "name": "dialog_titles", + "namespace": "settings_common" + } + }, + "dialog_content/selector_area": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "selector_area", + "namespace": "settings_common" + } + }, + "dialog_content/content_area": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "content_area", + "namespace": "settings_common" + } + }, + "dialog_content/section_divider": { + "file": "ui/settings_sections/settings_common.json", + "type": "image", + "extend": { + "name": "section_divider", + "namespace": "settings_common" + } + }, + "dialog_content_fullscreen": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "dialog_titles", + "selector_area", + "content_area", + "section_divider" + ] + }, + "dialog_content_fullscreen/dialog_titles": { + "file": "ui/settings_sections/settings_common.json", + "type": "stack_panel", + "extend": { + "name": "dialog_titles", + "namespace": "settings_common" + } + }, + "dialog_content_fullscreen/selector_area": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "selector_area_no_scroll", + "namespace": "settings_common" + } + }, + "dialog_content_fullscreen/content_area": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "content_area", + "namespace": "settings_common" + } + }, + "dialog_content_fullscreen/section_divider": { + "file": "ui/settings_sections/settings_common.json", + "type": "image", + "extend": { + "name": "section_divider", + "namespace": "settings_common" + } + }, + "selector_group_label": { + "file": "ui/settings_sections/settings_common.json", + "type": "label" + }, + "scrollable_selector_area_content": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel" + }, + "selector_area": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "selector_area/scrolling_panel": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "selector_area_no_scroll": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "selector_area_no_scroll/scrolling_panel": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "content_area": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "control" + ] + }, + "content_area/control": { + "file": "ui/settings_sections/settings_common.json", + "type": "stack_panel", + "children": [ + "header_panel", + "scrolling_panel", + "footer_panel" + ] + }, + "content_area/control/header_panel": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "content" + ] + }, + "content_area/control/header_panel/content": { + "file": "ui/settings_sections/settings_common.json", + "type": "unknown" + }, + "content_area/control/scrolling_panel": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "content_area/control/footer_panel": { + "file": "ui/settings_sections/settings_common.json", + "type": "panel", + "children": [ + "content" + ] + }, + "content_area/control/footer_panel/content": { + "file": "ui/settings_sections/settings_common.json", + "type": "unknown" + }, + "section_divider": { + "file": "ui/settings_sections/settings_common.json", + "type": "image" + }, + "screen_base": { + "file": "ui/settings_sections/settings_common.json", + "type": "screen", + "extend": { + "name": "dynamic_dialog_screen", + "namespace": "settings_common" + } + }, + "screen_base_fullscreen": { + "file": "ui/settings_sections/settings_common.json", + "type": "screen", + "extend": { + "name": "dynamic_dialog_fullscreen", + "namespace": "settings_common" + } + } + }, + "world_section": { + "selector_pane_content": { + "file": "ui/settings_sections/world_section.json", + "type": "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": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "children": [ + "thumbnail" + ] + }, + "selector_pane_content/world_snapshot_image/thumbnail": { + "file": "ui/settings_sections/world_section.json", + "type": "image", + "children": [ + "border" + ] + }, + "selector_pane_content/world_snapshot_image/thumbnail/border": { + "file": "ui/settings_sections/world_section.json", + "type": "image" + }, + "selector_pane_content/play_or_create_panel": { + "file": "ui/settings_sections/world_section.json", + "type": "stack_panel", + "extend": { + "name": "play_or_create_stack_bedrock", + "namespace": "world_section" + } + }, + "selector_pane_content/play_or_host_panel": { + "file": "ui/settings_sections/world_section.json", + "type": "stack_panel", + "extend": { + "name": "play_or_host_stack_edu", + "namespace": "world_section" + } + }, + "selector_pane_content/spacer": { + "file": "ui/settings_sections/world_section.json", + "type": "panel" + }, + "selector_pane_content/server_settings_visibility_panel": { + "file": "ui/settings_sections/world_section.json", + "type": "stack_panel", + "children": [ + "selector_group_label_0", + "server_settings_button", + "server_spacer" + ] + }, + "selector_pane_content/server_settings_visibility_panel/selector_group_label_0": { + "file": "ui/settings_sections/world_section.json", + "type": "label", + "extend": { + "name": "selector_group_label", + "namespace": "settings_common" + } + }, + "selector_pane_content/server_settings_visibility_panel/server_settings_button": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "server_settings_button", + "namespace": "world_section" + } + }, + "selector_pane_content/server_settings_visibility_panel/server_spacer": { + "file": "ui/settings_sections/world_section.json", + "type": "panel" + }, + "selector_pane_content/selector_group_label_1": { + "file": "ui/settings_sections/world_section.json", + "type": "label", + "extend": { + "name": "selector_group_label", + "namespace": "settings_common" + } + }, + "selector_pane_content/game_button": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "game_button", + "namespace": "world_section" + } + }, + "selector_pane_content/spacer_01": { + "file": "ui/settings_sections/world_section.json", + "type": "panel" + }, + "selector_pane_content/classroom_button": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "selector_pane_content/spacer_02": { + "file": "ui/settings_sections/world_section.json", + "type": "panel" + }, + "selector_pane_content/switch_game_button": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "game_button", + "namespace": "world_section" + } + }, + "selector_pane_content/spacer_03": { + "file": "ui/settings_sections/world_section.json", + "type": "panel" + }, + "selector_pane_content/multiplayer_button": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "multiplayer_button", + "namespace": "world_section" + } + }, + "selector_pane_content/spacer_04": { + "file": "ui/settings_sections/world_section.json", + "type": "panel" + }, + "selector_pane_content/edu_cloud_button": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "edu_cloud_button", + "namespace": "world_section" + } + }, + "selector_pane_content/spacer_05": { + "file": "ui/settings_sections/world_section.json", + "type": "panel" + }, + "selector_pane_content/debug_button": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "debug_button", + "namespace": "world_section" + } + }, + "launch_world_button_stack_def": { + "file": "ui/settings_sections/world_section.json", + "type": "stack_panel" + }, + "play_or_create_stack_bedrock": { + "file": "ui/settings_sections/world_section.json", + "type": "stack_panel", + "extend": { + "name": "launch_world_button_stack_def", + "namespace": "world_section" + }, + "children": [ + "create_or_play_button", + "play_on_realm_button" + ] + }, + "play_or_create_stack_bedrock/create_or_play_button": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "play_or_create_stack_bedrock/play_on_realm_button": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "action_button_dark_text", + "namespace": "settings_common" + } + }, + "edu_play_host_button": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "play_or_host_stack_edu": { + "file": "ui/settings_sections/world_section.json", + "type": "stack_panel", + "extend": { + "name": "launch_world_button_stack_def", + "namespace": "world_section" + }, + "children": [ + "edu_play_button", + "edu_host_button" + ] + }, + "play_or_host_stack_edu/edu_play_button": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "edu_play_host_button", + "namespace": "world_section" + } + }, + "play_or_host_stack_edu/edu_host_button": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "edu_play_host_button", + "namespace": "world_section" + } + }, + "addons_selector_panel": { + "file": "ui/settings_sections/world_section.json", + "type": "stack_panel", + "children": [ + "spacer_01", + "selector_group_label_2", + "level_texture_pack_button", + "spacer_02", + "addon_button" + ] + }, + "addons_selector_panel/spacer_01": { + "file": "ui/settings_sections/world_section.json", + "type": "panel" + }, + "addons_selector_panel/selector_group_label_2": { + "file": "ui/settings_sections/world_section.json", + "type": "label", + "extend": { + "name": "selector_group_label", + "namespace": "settings_common" + } + }, + "addons_selector_panel/level_texture_pack_button": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "level_texture_pack_button", + "namespace": "world_section" + } + }, + "addons_selector_panel/spacer_02": { + "file": "ui/settings_sections/world_section.json", + "type": "panel" + }, + "addons_selector_panel/addon_button": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "addon_button", + "namespace": "world_section" + } + }, + "server_settings_button": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "server_section": { + "file": "ui/settings_sections/world_section.json", + "type": "stack_panel", + "extend": { + "name": "custom_form_scrolling_content", + "namespace": "server_form" + } + }, + "game_button": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "export_world_button": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "delete_world_button": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "export_template_button": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "copy_world_button": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "edit_world_manipulation_buttons": { + "file": "ui/settings_sections/world_section.json", + "type": "stack_panel", + "children": [ + "export", + "padding", + "delete" + ] + }, + "edit_world_manipulation_buttons/export": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "export_world_button", + "namespace": "world_section" + } + }, + "edit_world_manipulation_buttons/padding": { + "file": "ui/settings_sections/world_section.json", + "type": "panel" + }, + "edit_world_manipulation_buttons/delete": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "delete_world_button", + "namespace": "world_section" + } + }, + "game_section": { + "file": "ui/settings_sections/world_section.json", + "type": "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": { + "file": "ui/settings_sections/world_section.json", + "type": "stack_panel", + "children": [ + "panel_title", + "panel_text", + "opt_in_button" + ] + }, + "game_section/new_edit_world_opt_in_panel/panel_title": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_group_label", + "namespace": "settings_common" + } + }, + "game_section/new_edit_world_opt_in_panel/panel_text": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_group_label", + "namespace": "settings_common" + } + }, + "game_section/new_edit_world_opt_in_panel/opt_in_button": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "game_section/new_edit_world_opt_in_divider": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "children": [ + "section_divider" + ] + }, + "game_section/new_edit_world_opt_in_divider/section_divider": { + "file": "ui/settings_sections/world_section.json", + "type": "image" + }, + "game_section/unlock_template_options_panel": { + "file": "ui/settings_sections/world_section.json", + "type": "stack_panel", + "children": [ + "option_info_label", + "unlock_template_options_button" + ] + }, + "game_section/unlock_template_options_panel/option_info_label": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_info_label", + "namespace": "settings_common" + } + }, + "game_section/unlock_template_options_panel/unlock_template_options_button": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "game_section/option_info_label": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_info_label", + "namespace": "settings_common" + } + }, + "game_section/hardcore_info_label": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_info_label", + "namespace": "settings_common" + } + }, + "game_section/world_settings_label": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_group_label", + "namespace": "settings_common" + } + }, + "game_section/option_text_edit_0": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "game_section/project_section_divider_1": { + "file": "ui/settings_sections/world_section.json", + "type": "image" + }, + "game_section/project_header_label": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_group_label", + "namespace": "settings_common" + } + }, + "game_section/project_section_divider_2": { + "file": "ui/settings_sections/world_section.json", + "type": "image" + }, + "game_section/project_spacer": { + "file": "ui/settings_sections/world_section.json", + "type": "panel" + }, + "game_section/option_text_edit_1": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "game_section/export_settings_section_divider_1": { + "file": "ui/settings_sections/world_section.json", + "type": "image" + }, + "game_section/export_settings_header_label": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_group_label", + "namespace": "settings_common" + } + }, + "game_section/export_settings_header_description": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_group_label", + "namespace": "settings_common" + } + }, + "game_section/export_settings_section_divider_2": { + "file": "ui/settings_sections/world_section.json", + "type": "image" + }, + "game_section/export_settings_spacer": { + "file": "ui/settings_sections/world_section.json", + "type": "panel" + }, + "game_section/option_dropdown_0": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown_no_scroll", + "namespace": "settings_common" + } + }, + "game_section/option_dropdown_1": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "game_section/is_hardcore_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "game_section/option_dropdown_2": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "game_section/world_preferences_label": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_group_label", + "namespace": "settings_common" + } + }, + "game_section/starting_map_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "game_section/bonus_chest_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "game_section/option_dropdown_permissions": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "game_section/option_dropdown_3": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown_no_scroll", + "namespace": "settings_common" + } + }, + "game_section/level_seed_selector_edu": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "game_section/level_seed_selector": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit_with_button", + "namespace": "settings_common" + } + }, + "game_section/level_seed_selector_trial": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit_mock_with_button", + "namespace": "world_section" + } + }, + "game_section/server_sim_distance_slider": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "game_section/world_options_label": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_group_label", + "namespace": "settings_common" + } + }, + "game_section/pvp_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "game_section/show_coordinates_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "game_section/locator_bar_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "game_section/show_days_played_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "game_section/fire_spreads_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "game_section/recipes_unlock_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "game_section/tnt_explodes_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "game_section/respawn_blocks_explode_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "game_section/mob_loot_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "game_section/natural_regeneration_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "game_section/tile_drops_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "game_section/player_sleep_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "game_section/player_sleep_percentage_slider": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "game_section/immediate_respawn_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "game_section/respawn_radius": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "game_section/experimental_toggles_label": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_group_label", + "namespace": "settings_common" + } + }, + "game_section/experimental_toggles_label_info": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_group_label", + "namespace": "settings_common" + } + }, + "game_section/experimental_toggles": { + "file": "ui/settings_sections/world_section.json", + "type": "stack_panel" + }, + "game_section/world_cheats_label": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_group_label", + "namespace": "settings_common" + } + }, + "game_section/allow_cheats_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "game_section/education_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "game_section/always_day_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "game_section/daylight_cycle_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "game_section/keep_inventory_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "game_section/mob_spawn_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "game_section/mob_griefing_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "game_section/entities_drop_loot_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "game_section/weather_cycle_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "game_section/command_blocks_enabled_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "game_section/random_tick_speed": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit_with_text_button", + "namespace": "settings_common" + } + }, + "game_section/world_management_label": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_group_label", + "namespace": "settings_common" + } + }, + "game_section/convert_to_infinite_panel": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "children": [ + "convert_to_infinite_button" + ] + }, + "game_section/convert_to_infinite_panel/convert_to_infinite_button": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "game_section/delete_button": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "game_section/button_panel": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "manipulation_controls" + ] + }, + "game_section/button_panel/manipulation_controls": { + "file": "ui/settings_sections/world_section.json", + "type": "unknown" + }, + "game_section/export_template_panel": { + "file": "ui/settings_sections/world_section.json", + "type": "stack_panel", + "children": [ + "padding", + "template_version", + "template_buttons", + "export_template" + ] + }, + "game_section/export_template_panel/padding": { + "file": "ui/settings_sections/world_section.json", + "type": "panel" + }, + "game_section/export_template_panel/template_version": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "game_section/export_template_panel/template_buttons": { + "file": "ui/settings_sections/world_section.json", + "type": "stack_panel", + "children": [ + "template_image_picker_button", + "padding", + "template_localization_picker_button" + ] + }, + "game_section/export_template_panel/template_buttons/template_image_picker_button": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "game_section/export_template_panel/template_buttons/padding": { + "file": "ui/settings_sections/world_section.json", + "type": "panel" + }, + "game_section/export_template_panel/template_buttons/template_localization_picker_button": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "game_section/export_template_panel/export_template": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "export_template_button", + "namespace": "world_section" + } + }, + "game_section/clear_player_data_panel": { + "file": "ui/settings_sections/world_section.json", + "type": "stack_panel", + "children": [ + "padding", + "clear_player_data_button" + ] + }, + "game_section/clear_player_data_panel/padding": { + "file": "ui/settings_sections/world_section.json", + "type": "panel" + }, + "game_section/clear_player_data_panel/clear_player_data_button": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "game_section/copy_world_panel": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "children": [ + "copy_world" + ] + }, + "game_section/copy_world_panel/copy_world": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "copy_world_button", + "namespace": "world_section" + } + }, + "game_section/upload_download_slot_panel": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "children": [ + "upload_download_slot_button" + ] + }, + "game_section/upload_download_slot_panel/upload_download_slot_button": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "game_section/replace_slot_panel": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "children": [ + "replace_slot_button" + ] + }, + "game_section/replace_slot_panel/replace_slot_button": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "level_texture_pack_button": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "resource_packs_section_toggle_base", + "namespace": "resource_packs" + } + }, + "level_texture_pack_section": { + "file": "ui/settings_sections/world_section.json", + "type": "stack_panel", + "extend": { + "name": "selected_stack_panel", + "namespace": "resource_packs" + } + }, + "addon_button": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "resource_packs_section_toggle_base", + "namespace": "resource_packs" + } + }, + "addon_section": { + "file": "ui/settings_sections/world_section.json", + "type": "stack_panel", + "extend": { + "name": "selected_stack_panel", + "namespace": "resource_packs" + } + }, + "world_game_mode_dropdown_content": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "xbl_broadcast_dropdown_content": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "platform_broadcast_dropdown_content": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "player_game_mode_dropdown_content": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "world_type_dropdown_content": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "world_difficulty_dropdown_content": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "multiplayer_button": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "cross_platform_warning_label": { + "file": "ui/settings_sections/world_section.json", + "type": "label", + "extend": { + "name": "disconnected_label", + "namespace": "pause" + } + }, + "multiplayer_section": { + "file": "ui/settings_sections/world_section.json", + "type": "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": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "multiplayer_section/platform_settings_dropdown": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "multiplayer_section/xbl_settings_dropdown": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "multiplayer_section/server_visible_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "multiplayer_section/general_multiplayer_warning_label": { + "file": "ui/settings_sections/world_section.json", + "type": "label", + "extend": { + "name": "cross_platform_warning_label", + "namespace": "world_section" + } + }, + "multiplayer_section/open_uri_button": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "open_account_setting_button", + "namespace": "play" + } + }, + "multiplayer_section/platform_multiplayer_warning_label": { + "file": "ui/settings_sections/world_section.json", + "type": "label", + "extend": { + "name": "cross_platform_warning_label", + "namespace": "world_section" + } + }, + "multiplayer_section/xbl_multiplayer_warning_label": { + "file": "ui/settings_sections/world_section.json", + "type": "label", + "extend": { + "name": "cross_platform_warning_label", + "namespace": "world_section" + } + }, + "option_text_edit_mock_with_button": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_generic", + "namespace": "settings_common" + } + }, + "option_text_edit_mock_control_with_button": { + "file": "ui/settings_sections/world_section.json", + "type": "stack_panel", + "children": [ + "trial_text_box_button", + "seed_arrow_button" + ] + }, + "option_text_edit_mock_control_with_button/trial_text_box_button": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "transparent_content_button", + "namespace": "common_buttons" + } + }, + "option_text_edit_mock_control_with_button/seed_arrow_button": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "light_glyph_button", + "namespace": "common_buttons" + } + }, + "experimental_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "open_account_setting_button": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "hyperlink_button", + "namespace": "common_buttons" + } + }, + "edu_cloud_button": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "edu_cloud_section": { + "file": "ui/settings_sections/world_section.json", + "type": "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": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_group_label", + "namespace": "settings_common" + } + }, + "edu_cloud_section/cloud_file_name": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "edu_cloud_section/cloud_file_last_changed": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "edu_cloud_section/cloud_upload_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "edu_cloud_section/cloud_help_wrapper_panel": { + "file": "ui/settings_sections/world_section.json", + "type": "stack_panel", + "children": [ + "cloud_help_button", + "padded_icon" + ] + }, + "edu_cloud_section/cloud_help_wrapper_panel/cloud_help_button": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "underline_button", + "namespace": "edu_common" + } + }, + "edu_cloud_section/cloud_help_wrapper_panel/padded_icon": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "icon" + ] + }, + "edu_cloud_section/cloud_help_wrapper_panel/padded_icon/icon": { + "file": "ui/settings_sections/world_section.json", + "type": "image" + }, + "debug_button": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "debug_section": { + "file": "ui/settings_sections/world_section.json", + "type": "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": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/game_version_override_toggle": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_toggle", + "namespace": "settings_common" + } + }, + "debug_section/game_version_override_textbox": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_text_edit", + "namespace": "settings_common" + } + }, + "debug_section/spawn_dimension_dropdown": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown_no_scroll", + "namespace": "settings_common" + } + }, + "debug_section/spawn_biome_dropdown": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "debug_section/biome_override_dropdown": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "debug_section/base_game_version_debug_text": { + "file": "ui/settings_sections/world_section.json", + "type": "label" + }, + "debug_spawn_dimension_dropdown_content": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "debug_spawn_biome_dropdown_content": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "debug_biome_override_dropdown_content": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "editor_edit_world_manipulation_buttons_content": { + "file": "ui/settings_sections/world_section.json", + "type": "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": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "export_world_button", + "namespace": "world_section" + } + }, + "editor_edit_world_manipulation_buttons_content/padding": { + "file": "ui/settings_sections/world_section.json", + "type": "panel" + }, + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons": { + "file": "ui/settings_sections/world_section.json", + "type": "stack_panel", + "children": [ + "export_as_world", + "padding", + "export_as_template" + ] + }, + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_world": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "export_world_button", + "namespace": "world_section" + } + }, + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/padding": { + "file": "ui/settings_sections/world_section.json", + "type": "panel" + }, + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_template": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "export_template_button", + "namespace": "world_section" + } + }, + "editor_edit_world_manipulation_buttons_content/padding_2": { + "file": "ui/settings_sections/world_section.json", + "type": "panel" + }, + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons": { + "file": "ui/settings_sections/world_section.json", + "type": "stack_panel", + "children": [ + "copy_project", + "padding", + "delete_project" + ] + }, + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/copy_project": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "copy_world_button", + "namespace": "world_section" + } + }, + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/padding": { + "file": "ui/settings_sections/world_section.json", + "type": "panel" + }, + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/delete_project": { + "file": "ui/settings_sections/world_section.json", + "type": "button", + "extend": { + "name": "delete_world_button", + "namespace": "world_section" + } + }, + "editor_edit_world_manipulation_buttons": { + "file": "ui/settings_sections/world_section.json", + "type": "panel", + "extend": { + "name": "option_generic", + "namespace": "settings_common" + } + } + }, + "social_section": { + "party_button": { + "file": "ui/settings_sections/social_section.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "settings_common" + } + }, + "party_section": { + "file": "ui/settings_sections/social_section.json", + "type": "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": { + "file": "ui/settings_sections/social_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown_no_scroll", + "namespace": "settings_common" + } + }, + "party_section/party_invite_reset_default_padding": { + "file": "ui/settings_sections/social_section.json", + "type": "panel" + }, + "party_section/party_invite_send_privileges_dropdown": { + "file": "ui/settings_sections/social_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown_no_scroll", + "namespace": "settings_common" + } + }, + "party_section/party_privacy_default_padding": { + "file": "ui/settings_sections/social_section.json", + "type": "panel" + }, + "party_section/party_privacy_dropdown": { + "file": "ui/settings_sections/social_section.json", + "type": "panel", + "extend": { + "name": "option_dropdown_no_scroll", + "namespace": "settings_common" + } + }, + "party_section/party_privacy_label_wrapper": { + "file": "ui/settings_sections/social_section.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "party_section/party_settings_reset_default_button_default_padding": { + "file": "ui/settings_sections/social_section.json", + "type": "panel" + }, + "party_section/party_settings_reset_default_button": { + "file": "ui/settings_sections/social_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "party_section/microsoft_account_settings_divider": { + "file": "ui/settings_sections/social_section.json", + "type": "panel", + "children": [ + "section_divider" + ] + }, + "party_section/microsoft_account_settings_divider/section_divider": { + "file": "ui/settings_sections/social_section.json", + "type": "image" + }, + "party_section/microsoft_account_settings_header": { + "file": "ui/settings_sections/social_section.json", + "type": "label" + }, + "party_section/microsoft_account_settings_padding": { + "file": "ui/settings_sections/social_section.json", + "type": "panel" + }, + "party_section/microsoft_account_settings_label_wrapper": { + "file": "ui/settings_sections/social_section.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "party_section/privacy_and_online_safety_button_padding": { + "file": "ui/settings_sections/social_section.json", + "type": "panel" + }, + "party_section/privacy_and_online_safety_button": { + "file": "ui/settings_sections/social_section.json", + "type": "button", + "extend": { + "name": "action_button", + "namespace": "settings_common" + } + }, + "party_section/microsoft_account_settings_ending_padding": { + "file": "ui/settings_sections/social_section.json", + "type": "panel" + }, + "party_privacy_label": { + "file": "ui/settings_sections/social_section.json", + "type": "label" + }, + "microsoft_account_settings_label": { + "file": "ui/settings_sections/social_section.json", + "type": "label" + }, + "platform_settings_label": { + "file": "ui/settings_sections/social_section.json", + "type": "label" + }, + "party_invite_filter_dropdown_content": { + "file": "ui/settings_sections/social_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "party_privacy_dropdown_content": { + "file": "ui/settings_sections/social_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "party_invite_send_privileges_dropdown_content": { + "file": "ui/settings_sections/social_section.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + } + }, + "sidebar_navigation": { + "empty_panel": { + "file": "ui/sidebar_navigation.json", + "type": "panel" + }, + "empty_fill_x_panel": { + "file": "ui/sidebar_navigation.json", + "type": "panel" + }, + "empty_default_panel": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "vertical_padding_panel": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "sidebar_bg": { + "file": "ui/sidebar_navigation.json", + "type": "image" + }, + "sidebar_divider": { + "file": "ui/sidebar_navigation.json", + "type": "image" + }, + "sidebar_divider_panel": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "sidebar_divider" + ] + }, + "sidebar_divider_panel/sidebar_divider": { + "file": "ui/sidebar_navigation.json", + "type": "image", + "extend": { + "name": "sidebar_divider", + "namespace": "sidebar_navigation" + } + }, + "toggle_content": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "children": [ + "toggle_content" + ] + }, + "toggle_content/toggle_content": { + "file": "ui/sidebar_navigation.json", + "type": "unknown" + }, + "sidebar_section_scroll_panel": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "sidebar_bg_content_panel": { + "file": "ui/sidebar_navigation.json", + "type": "image", + "extend": { + "name": "sidebar_bg", + "namespace": "sidebar_navigation" + }, + "children": [ + "sidebar_bg_content" + ] + }, + "sidebar_bg_content_panel/sidebar_bg_content": { + "file": "ui/sidebar_navigation.json", + "type": "unknown" + }, + "sidebar_nav_toggle_image": { + "file": "ui/sidebar_navigation.json", + "type": "image" + }, + "sidebar_nav_toggle_image_panel": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "children": [ + "sidebar_nav_toggle_image", + "gamepad_helper_icon" + ] + }, + "sidebar_nav_toggle_image_panel/sidebar_nav_toggle_image": { + "file": "ui/sidebar_navigation.json", + "type": "image", + "extend": { + "name": "sidebar_nav_toggle_image", + "namespace": "sidebar_navigation" + } + }, + "sidebar_nav_toggle_image_panel/gamepad_helper_icon": { + "file": "ui/sidebar_navigation.json", + "type": "unknown" + }, + "gamepad_helper_icon_start_toggle": { + "file": "ui/sidebar_navigation.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_start", + "namespace": "common" + } + }, + "verbose_view_toggle_content": { + "file": "ui/sidebar_navigation.json", + "type": "stack_panel", + "children": [ + "left_padding", + "sidebar_nav_toggle_image" + ] + }, + "verbose_view_toggle_content/left_padding": { + "file": "ui/sidebar_navigation.json", + "type": "panel" + }, + "verbose_view_toggle_content/sidebar_nav_toggle_image": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "sidebar_nav_toggle_image_panel", + "namespace": "sidebar_navigation" + } + }, + "sidebar_toggle_bg": { + "file": "ui/sidebar_navigation.json", + "type": "image", + "extend": { + "name": "button_image", + "namespace": "common_buttons" + } + }, + "sidebar_toggle": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "dark_content_toggle", + "namespace": "common_toggles" + } + }, + "sidebar_option_toggle": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "sidebar_toggle", + "namespace": "sidebar_navigation" + } + }, + "simple_sidebar_toggle": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "sidebar_option_toggle", + "namespace": "sidebar_navigation" + } + }, + "verbose_toggle": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "sidebar_option_toggle", + "namespace": "sidebar_navigation" + } + }, + "verbose_sidebar_option": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "verbose_toggle", + "namespace": "sidebar_navigation" + } + }, + "verbose_expand_option": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "verbose_sidebar_option", + "namespace": "sidebar_navigation" + } + }, + "verbose_dropdown_option": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "verbose_toggle", + "namespace": "sidebar_navigation" + } + }, + "verbose_dropdown_expanded_option": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "verbose_dropdown_option", + "namespace": "sidebar_navigation" + } + }, + "verbose_sidebar_expand_section_bg": { + "file": "ui/sidebar_navigation.json", + "type": "image", + "extend": { + "name": "sidebar_bg", + "namespace": "sidebar_navigation" + } + }, + "verbose_sidebar_expand_section_panel": { + "file": "ui/sidebar_navigation.json", + "type": "stack_panel", + "extend": { + "name": "sidebar_section", + "namespace": "sidebar_navigation" + } + }, + "verbose_expand_section_panel": { + "file": "ui/sidebar_navigation.json", + "type": "input_panel", + "extend": { + "name": "sidebar_option_factory_panel", + "namespace": "sidebar_navigation" + } + }, + "verbose_view_toggle": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "sidebar_toggle", + "namespace": "sidebar_navigation" + } + }, + "sidebar_option_factory": { + "file": "ui/sidebar_navigation.json", + "type": "stack_panel" + }, + "sidebar_option_factory_panel": { + "file": "ui/sidebar_navigation.json", + "type": "input_panel", + "children": [ + "sidebar_option_factory" + ] + }, + "sidebar_option_factory_panel/sidebar_option_factory": { + "file": "ui/sidebar_navigation.json", + "type": "stack_panel", + "extend": { + "name": "sidebar_option_factory", + "namespace": "sidebar_navigation" + } + }, + "verbose_button_content": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "children": [ + "button_label" + ] + }, + "verbose_button_content/button_label": { + "file": "ui/sidebar_navigation.json", + "type": "label" + }, + "verbose_button": { + "file": "ui/sidebar_navigation.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "verbose_nav_button_panel": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "children": [ + "verbose_nav_button" + ] + }, + "verbose_nav_button_panel/verbose_nav_button": { + "file": "ui/sidebar_navigation.json", + "type": "button", + "extend": { + "name": "verbose_button", + "namespace": "sidebar_navigation" + } + }, + "verbose_screen_nav_button": { + "file": "ui/sidebar_navigation.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "verbose_screen_nav_option_panel": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "children": [ + "verbose_nav_button" + ] + }, + "verbose_screen_nav_option_panel/verbose_nav_button": { + "file": "ui/sidebar_navigation.json", + "type": "button", + "extend": { + "name": "verbose_screen_nav_button", + "namespace": "sidebar_navigation" + } + }, + "sidebar_option_factory_scroll_panel": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "sidebar_section_scroll_panel", + "namespace": "sidebar_navigation" + } + }, + "sidebar_screen_nav_option_factory_panel": { + "file": "ui/sidebar_navigation.json", + "type": "stack_panel", + "children": [ + "fill_panel", + "button", + "padding", + "platform_icon_padding" + ] + }, + "sidebar_screen_nav_option_factory_panel/fill_panel": { + "file": "ui/sidebar_navigation.json", + "type": "panel" + }, + "sidebar_screen_nav_option_factory_panel/button": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "verbose_screen_nav_option_panel", + "namespace": "sidebar_navigation" + } + }, + "sidebar_screen_nav_option_factory_panel/padding": { + "file": "ui/sidebar_navigation.json", + "type": "panel" + }, + "sidebar_screen_nav_option_factory_panel/platform_icon_padding": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "platform_store_icon_spacing", + "namespace": "sidebar_navigation" + } + }, + "root_section_content_panel": { + "file": "ui/sidebar_navigation.json", + "type": "stack_panel", + "children": [ + "sidebar_option_factory", + "verbose_sidebar_screen_Nav" + ] + }, + "root_section_content_panel/sidebar_option_factory": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "sidebar_option_factory_scroll_panel", + "namespace": "sidebar_navigation" + } + }, + "root_section_content_panel/verbose_sidebar_screen_Nav": { + "file": "ui/sidebar_navigation.json", + "type": "stack_panel", + "extend": { + "name": "sidebar_screen_nav_option_factory_panel", + "namespace": "sidebar_navigation" + } + }, + "edge_bar": { + "file": "ui/sidebar_navigation.json", + "type": "image" + }, + "verbose_view_stack_panel": { + "file": "ui/sidebar_navigation.json", + "type": "stack_panel", + "children": [ + "verbose_view_toggle" + ] + }, + "verbose_view_stack_panel/verbose_view_toggle": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "verbose_view_toggle", + "namespace": "sidebar_navigation" + } + }, + "sidebar_section": { + "file": "ui/sidebar_navigation.json", + "type": "stack_panel", + "children": [ + "left_edge_bar", + "verbose_view_stack_panel", + "right_edge_bar" + ] + }, + "sidebar_section/left_edge_bar": { + "file": "ui/sidebar_navigation.json", + "type": "image", + "extend": { + "name": "edge_bar", + "namespace": "sidebar_navigation" + } + }, + "sidebar_section/verbose_view_stack_panel": { + "file": "ui/sidebar_navigation.json", + "type": "stack_panel", + "extend": { + "name": "verbose_view_stack_panel", + "namespace": "sidebar_navigation" + } + }, + "sidebar_section/right_edge_bar": { + "file": "ui/sidebar_navigation.json", + "type": "image", + "extend": { + "name": "edge_bar", + "namespace": "sidebar_navigation" + } + }, + "root_section": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "sidebar_section_scroll_panel", + "namespace": "sidebar_navigation" + } + }, + "verbose_root_section": { + "file": "ui/sidebar_navigation.json", + "type": "stack_panel", + "extend": { + "name": "sidebar_section", + "namespace": "sidebar_navigation" + } + }, + "simple_root_section": { + "file": "ui/sidebar_navigation.json", + "type": "stack_panel", + "children": [ + "verbose_view_toggle", + "root_section" + ] + }, + "simple_root_section/verbose_view_toggle": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "verbose_view_toggle", + "namespace": "sidebar_navigation" + } + }, + "simple_root_section/root_section": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "root_section", + "namespace": "sidebar_navigation" + } + }, + "sidebar_section_factory_panel": { + "file": "ui/sidebar_navigation.json", + "type": "image", + "extend": { + "name": "sidebar_bg", + "namespace": "sidebar_navigation" + }, + "children": [ + "sidebar_section_factory" + ] + }, + "sidebar_section_factory_panel/sidebar_section_factory": { + "file": "ui/sidebar_navigation.json", + "type": "stack_panel" + }, + "sidebar_view_content_panel": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "children": [ + "view_stack_panel", + "verbose_view_exit" + ] + }, + "sidebar_view_content_panel/view_stack_panel": { + "file": "ui/sidebar_navigation.json", + "type": "stack_panel", + "children": [ + "sidebar_view", + "controller_hover_close_panel" + ] + }, + "sidebar_view_content_panel/view_stack_panel/sidebar_view": { + "file": "ui/sidebar_navigation.json", + "type": "image", + "extend": { + "name": "sidebar_section_factory_panel", + "namespace": "sidebar_navigation" + } + }, + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "children": [ + "controller_hover_close_button" + ] + }, + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button": { + "file": "ui/sidebar_navigation.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover" + ] + }, + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/default": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/hover": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "sidebar_view_content_panel/verbose_view_exit": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "close_bg_panel", + "namespace": "common_store" + } + }, + "verbose_sidebar_view_modal": { + "file": "ui/sidebar_navigation.json", + "type": "input_panel", + "extend": { + "name": "modal_area_panel_base", + "namespace": "common" + } + }, + "sidebar_views": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "children": [ + "sidebar_view_conent" + ] + }, + "sidebar_views/sidebar_view_conent": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "children": [ + "simple_sidebar_view", + "verbose_side_bar_view_modal" + ] + }, + "sidebar_views/sidebar_view_conent/simple_sidebar_view": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "sidebar_view_content_panel", + "namespace": "sidebar_navigation" + } + }, + "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal": { + "file": "ui/sidebar_navigation.json", + "type": "input_panel", + "extend": { + "name": "verbose_sidebar_view_modal", + "namespace": "sidebar_navigation" + }, + "children": [ + "verbose_sidebar_view" + ] + }, + "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal/verbose_sidebar_view": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "sidebar_view_content_panel", + "namespace": "sidebar_navigation" + } + }, + "sidebar_empty_panel": { + "file": "ui/sidebar_navigation.json", + "type": "panel" + }, + "content_view": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "children": [ + "content_view_stack" + ] + }, + "content_view/content_view_stack": { + "file": "ui/sidebar_navigation.json", + "type": "stack_panel", + "children": [ + "sidebar_view_stack", + "main_view_content" + ] + }, + "content_view/content_view_stack/sidebar_view_stack": { + "file": "ui/sidebar_navigation.json", + "type": "stack_panel", + "children": [ + "sidebar_empty_panel", + "divider" + ] + }, + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "sidebar_empty_panel", + "namespace": "sidebar_navigation" + }, + "children": [ + "controller_hover_open_panel" + ] + }, + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel": { + "file": "ui/sidebar_navigation.json", + "type": "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": { + "file": "ui/sidebar_navigation.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover" + ] + }, + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/default": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/hover": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "content_view/content_view_stack/sidebar_view_stack/divider": { + "file": "ui/sidebar_navigation.json", + "type": "image", + "extend": { + "name": "edge_bar", + "namespace": "sidebar_navigation" + } + }, + "content_view/content_view_stack/main_view_content": { + "file": "ui/sidebar_navigation.json", + "type": "input_panel", + "children": [ + "screen_content" + ] + }, + "content_view/content_view_stack/main_view_content/screen_content": { + "file": "ui/sidebar_navigation.json", + "type": "unknown" + }, + "sidebar_view": { + "file": "ui/sidebar_navigation.json", + "type": "input_panel", + "children": [ + "sidebar_content", + "content_view", + "progress_loading" + ] + }, + "sidebar_view/sidebar_content": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "sidebar_views", + "namespace": "sidebar_navigation" + } + }, + "sidebar_view/content_view": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "content_view", + "namespace": "sidebar_navigation" + } + }, + "sidebar_view/progress_loading": { + "file": "ui/sidebar_navigation.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "platform_store_icon_spacing": { + "file": "ui/sidebar_navigation.json", + "type": "panel" + } + }, + "sign": { + "sign_background": { + "file": "ui/sign_screen.json", + "type": "image" + }, + "hanging_sign_background": { + "file": "ui/sign_screen.json", + "type": "image" + }, + "base_sign_text_multiline": { + "file": "ui/sign_screen.json", + "type": "edit_box", + "extend": { + "name": "multiline_text_edit_box", + "namespace": "common" + } + }, + "regular_sign_text_multiline": { + "file": "ui/sign_screen.json", + "type": "edit_box", + "extend": { + "name": "base_sign_text_multiline", + "namespace": "sign" + } + }, + "hanging_sign_text_multiline": { + "file": "ui/sign_screen.json", + "type": "edit_box", + "extend": { + "name": "base_sign_text_multiline", + "namespace": "sign" + } + }, + "sign_screen_content": { + "file": "ui/sign_screen.json", + "type": "panel", + "children": [ + "input_eating_panel", + "invisible_exit_background" + ] + }, + "sign_screen_content/input_eating_panel": { + "file": "ui/sign_screen.json", + "type": "input_panel", + "children": [ + "text_edit" + ] + }, + "sign_screen_content/input_eating_panel/text_edit": { + "file": "ui/sign_screen.json", + "type": "unknown" + }, + "sign_screen_content/invisible_exit_background": { + "file": "ui/sign_screen.json", + "type": "input_panel" + }, + "sign_screen": { + "file": "ui/sign_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + } + }, + "simple_inprogress": { + "title_text": { + "file": "ui/simple_inprogress_screen.json", + "type": "label" + }, + "main_panel": { + "file": "ui/simple_inprogress_screen.json", + "type": "panel", + "children": [ + "common_panel", + "title", + "main_content", + "progress_loading_bars" + ] + }, + "main_panel/common_panel": { + "file": "ui/simple_inprogress_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "main_panel/title": { + "file": "ui/simple_inprogress_screen.json", + "type": "label", + "extend": { + "name": "title_text", + "namespace": "simple_inprogress" + } + }, + "main_panel/main_content": { + "file": "ui/simple_inprogress_screen.json", + "type": "label" + }, + "main_panel/progress_loading_bars": { + "file": "ui/simple_inprogress_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "play" + } + }, + "simple_inprogress_screen": { + "file": "ui/simple_inprogress_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "simple_inprogress_screen_content": { + "file": "ui/simple_inprogress_screen.json", + "type": "panel", + "children": [ + "root_panel" + ] + }, + "simple_inprogress_screen_content/root_panel": { + "file": "ui/simple_inprogress_screen.json", + "type": "panel", + "children": [ + "main_panel" + ] + }, + "simple_inprogress_screen_content/root_panel/main_panel": { + "file": "ui/simple_inprogress_screen.json", + "type": "panel", + "extend": { + "name": "main_panel", + "namespace": "simple_inprogress" + } + } + }, + "skin_pack_purchase": { + "cycle_pack_left_button": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "button", + "extend": { + "name": "cycle_pack_left_button", + "namespace": "common_store" + } + }, + "cycle_pack_right_button": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "button", + "extend": { + "name": "cycle_pack_right_button", + "namespace": "common_store" + } + }, + "skin_model": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "panel", + "children": [ + "paper_doll" + ] + }, + "skin_model/paper_doll": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "custom" + }, + "skin_lock": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "image" + }, + "skin_focus_border": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + }, + "children": [ + "equip" + ] + }, + "skin_focus_border/equip": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "panel", + "extend": { + "name": "equip_button_state_panel", + "namespace": "skin_pack_purchase" + } + }, + "skin_button_panel_gamepad": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "panel", + "children": [ + "skin_button" + ] + }, + "skin_button_panel_gamepad/skin_button": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "button", + "children": [ + "hover", + "pressed" + ] + }, + "skin_button_panel_gamepad/skin_button/hover": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "image", + "extend": { + "name": "skin_focus_border", + "namespace": "skin_pack_purchase" + } + }, + "skin_button_panel_gamepad/skin_button/pressed": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "image", + "extend": { + "name": "skin_focus_border", + "namespace": "skin_pack_purchase" + } + }, + "skin_button_panel_not_gamepad": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "panel", + "children": [ + "skin_button", + "equip_button" + ] + }, + "skin_button_panel_not_gamepad/skin_button": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "button", + "children": [ + "hover", + "pressed" + ] + }, + "skin_button_panel_not_gamepad/skin_button/hover": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "skin_button_panel_not_gamepad/skin_button/pressed": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "skin_button_panel_not_gamepad/equip_button": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "skin_button_panel": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "stack_panel", + "children": [ + "gamepad", + "not_gamepad" + ] + }, + "skin_button_panel/gamepad": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "panel", + "extend": { + "name": "skin_button_panel_gamepad", + "namespace": "skin_pack_purchase" + } + }, + "skin_button_panel/not_gamepad": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "panel", + "extend": { + "name": "skin_button_panel_not_gamepad", + "namespace": "skin_pack_purchase" + } + }, + "equip_button_state_panel": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "panel", + "children": [ + "button_panel" + ] + }, + "equip_button_state_panel/button_panel": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "panel", + "extend": { + "name": "new_ui_button_panel", + "namespace": "common_buttons" + } + }, + "equip_button_text": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "panel", + "children": [ + "text" + ] + }, + "equip_button_text/text": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "label" + }, + "skins_grid_item": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "panel", + "children": [ + "model", + "lock", + "button" + ] + }, + "skins_grid_item/model": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "panel", + "extend": { + "name": "skin_model", + "namespace": "skin_pack_purchase" + } + }, + "skins_grid_item/lock": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "image", + "extend": { + "name": "skin_lock", + "namespace": "skin_pack_purchase" + } + }, + "skins_grid_item/button": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "stack_panel", + "extend": { + "name": "skin_button_panel", + "namespace": "skin_pack_purchase" + } + }, + "skins_grid": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "grid" + }, + "skins_panel": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "panel", + "children": [ + "bg" + ] + }, + "skins_panel/bg": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "panel", + "children": [ + "left", + "sg", + "right", + "progress_loading_panel" + ] + }, + "skins_panel/bg/left": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "button", + "extend": { + "name": "cycle_pack_left_button", + "namespace": "skin_pack_purchase" + } + }, + "skins_panel/bg/sg": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "grid", + "extend": { + "name": "skins_grid", + "namespace": "skin_pack_purchase" + } + }, + "skins_panel/bg/right": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "button", + "extend": { + "name": "cycle_pack_right_button", + "namespace": "skin_pack_purchase" + } + }, + "skins_panel/bg/progress_loading_panel": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "panel", + "children": [ + "progress_loading", + "progress_loading_outline" + ] + }, + "skins_panel/bg/progress_loading_panel/progress_loading": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "skins_panel/bg/progress_loading_panel/progress_loading_outline": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "button", + "children": [ + "hover" + ] + }, + "skins_panel/bg/progress_loading_panel/progress_loading_outline/hover": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "screen_root": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "screen", + "extend": { + "name": "store_base_screen", + "namespace": "common_store" + } + }, + "skin_pack_purchase_upsell_screen": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "screen", + "extend": { + "name": "screen_root", + "namespace": "skin_pack_purchase" + } + }, + "skin_pack_purchase_upsell_screen_content": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "panel", + "extend": { + "name": "store_dialog_with_coin_header", + "namespace": "common_store" + } + }, + "skin_pack_purchase_upsell_dialog_content": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "panel", + "children": [ + "container" + ] + }, + "skin_pack_purchase_upsell_dialog_content/container": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "panel" + }, + "skin_pack_purchase_standard": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "screen", + "extend": { + "name": "screen_root", + "namespace": "skin_pack_purchase" + } + }, + "skin_pack_purchase_standard_content": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "panel", + "extend": { + "name": "store_dialog_with_coin_header", + "namespace": "common_store" + } + }, + "skin_pack_purchase_dialog_content": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "panel", + "children": [ + "container" + ] + }, + "skin_pack_purchase_dialog_content/container": { + "file": "ui/skin_pack_purchase_screen.json", + "type": "panel" + } + }, + "skin_picker": { + "banner_fill": { + "file": "ui/skin_picker_screen.json", + "type": "image" + }, + "title_label": { + "file": "ui/skin_picker_screen.json", + "type": "label" + }, + "label": { + "file": "ui/skin_picker_screen.json", + "type": "label" + }, + "chevron_image": { + "file": "ui/skin_picker_screen.json", + "type": "image" + }, + "bumper_image": { + "file": "ui/skin_picker_screen.json", + "type": "image" + }, + "undo_image": { + "file": "ui/skin_picker_screen.json", + "type": "image" + }, + "plus_icon": { + "file": "ui/skin_picker_screen.json", + "type": "image" + }, + "direction_button_panel": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "children": [ + "chevron_image", + "bumper_image" + ] + }, + "direction_button_panel/chevron_image": { + "file": "ui/skin_picker_screen.json", + "type": "image", + "extend": { + "name": "chevron_image", + "namespace": "skin_picker" + } + }, + "direction_button_panel/bumper_image": { + "file": "ui/skin_picker_screen.json", + "type": "image", + "extend": { + "name": "bumper_image", + "namespace": "skin_picker" + } + }, + "cycle_pack_button": { + "file": "ui/skin_picker_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "cycle_pack_left_button": { + "file": "ui/skin_picker_screen.json", + "type": "button", + "extend": { + "name": "cycle_pack_button", + "namespace": "skin_picker" + } + }, + "cycle_pack_right_button": { + "file": "ui/skin_picker_screen.json", + "type": "button", + "extend": { + "name": "cycle_pack_button", + "namespace": "skin_picker" + } + }, + "skin_button": { + "file": "ui/skin_picker_screen.json", + "type": "button", + "children": [ + "hover", + "pressed" + ] + }, + "skin_button/hover": { + "file": "ui/skin_picker_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "skin_button/pressed": { + "file": "ui/skin_picker_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "skin_rotation_arrows": { + "file": "ui/skin_picker_screen.json", + "type": "image" + }, + "skin_viewer_panel": { + "file": "ui/skin_picker_screen.json", + "type": "input_panel", + "children": [ + "custom_skin_button", + "skin_model_panel", + "lock" + ] + }, + "skin_viewer_panel/custom_skin_button": { + "file": "ui/skin_picker_screen.json", + "type": "button", + "extend": { + "name": "light_text_form_fitting_button", + "namespace": "common_buttons" + } + }, + "skin_viewer_panel/skin_model_panel": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "children": [ + "skin_model" + ] + }, + "skin_viewer_panel/skin_model_panel/skin_model": { + "file": "ui/skin_picker_screen.json", + "type": "custom" + }, + "skin_viewer_panel/lock": { + "file": "ui/skin_picker_screen.json", + "type": "image", + "extend": { + "name": "skin_lock", + "namespace": "skin_picker" + } + }, + "undo_skin_button": { + "file": "ui/skin_picker_screen.json", + "type": "button", + "extend": { + "name": "light_glyph_button", + "namespace": "common_buttons" + } + }, + "accept_skin_button": { + "file": "ui/skin_picker_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "stack_item": { + "file": "ui/skin_picker_screen.json", + "type": "panel" + }, + "accept_skin_panel": { + "file": "ui/skin_picker_screen.json", + "type": "stack_panel", + "children": [ + "stack_item_0", + "stack_item_1" + ] + }, + "accept_skin_panel/stack_item_0": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "extend": { + "name": "stack_item", + "namespace": "skin_picker" + }, + "children": [ + "undo_btn" + ] + }, + "accept_skin_panel/stack_item_0/undo_btn": { + "file": "ui/skin_picker_screen.json", + "type": "button", + "extend": { + "name": "undo_skin_button", + "namespace": "skin_picker" + } + }, + "accept_skin_panel/stack_item_1": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "extend": { + "name": "stack_item", + "namespace": "skin_picker" + }, + "children": [ + "accept_button" + ] + }, + "accept_skin_panel/stack_item_1/accept_button": { + "file": "ui/skin_picker_screen.json", + "type": "button", + "extend": { + "name": "accept_skin_button", + "namespace": "skin_picker" + } + }, + "appearance_status_image_panel": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "children": [ + "limited_status_image", + "no_restrictions_status_image" + ] + }, + "appearance_status_image_panel/limited_status_image": { + "file": "ui/skin_picker_screen.json", + "type": "image" + }, + "appearance_status_image_panel/no_restrictions_status_image": { + "file": "ui/skin_picker_screen.json", + "type": "image" + }, + "appearance_status_content": { + "file": "ui/skin_picker_screen.json", + "type": "stack_panel", + "children": [ + "appearance_status_image_panel", + "padding", + "appearance_status_label_panel" + ] + }, + "appearance_status_content/appearance_status_image_panel": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "extend": { + "name": "appearance_status_image_panel", + "namespace": "skin_picker" + } + }, + "appearance_status_content/padding": { + "file": "ui/skin_picker_screen.json", + "type": "panel" + }, + "appearance_status_content/appearance_status_label_panel": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "children": [ + "appearance_status_label" + ] + }, + "appearance_status_content/appearance_status_label_panel/appearance_status_label": { + "file": "ui/skin_picker_screen.json", + "type": "label" + }, + "preview_skin_panel": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "children": [ + "preview", + "button_frame" + ] + }, + "preview_skin_panel/preview": { + "file": "ui/skin_picker_screen.json", + "type": "input_panel", + "extend": { + "name": "skin_viewer_panel", + "namespace": "skin_picker" + } + }, + "preview_skin_panel/button_frame": { + "file": "ui/skin_picker_screen.json", + "type": "stack_panel", + "children": [ + "stack_item_0", + "padding", + "notification_and_accept_input_panel" + ] + }, + "preview_skin_panel/button_frame/stack_item_0": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "extend": { + "name": "stack_item", + "namespace": "skin_picker" + }, + "children": [ + "rotation" + ] + }, + "preview_skin_panel/button_frame/stack_item_0/rotation": { + "file": "ui/skin_picker_screen.json", + "type": "image", + "extend": { + "name": "skin_rotation_arrows", + "namespace": "skin_picker" + } + }, + "preview_skin_panel/button_frame/padding": { + "file": "ui/skin_picker_screen.json", + "type": "panel" + }, + "preview_skin_panel/button_frame/notification_and_accept_input_panel": { + "file": "ui/skin_picker_screen.json", + "type": "input_panel", + "children": [ + "notification_and_accept_stack" + ] + }, + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack": { + "file": "ui/skin_picker_screen.json", + "type": "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": { + "file": "ui/skin_picker_screen.json", + "type": "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": { + "file": "ui/skin_picker_screen.json", + "type": "button", + "extend": { + "name": "static_tooltip_notification_panel", + "namespace": "common_buttons" + } + }, + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "extend": { + "name": "stack_item", + "namespace": "skin_picker" + }, + "children": [ + "accept" + ] + }, + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1/accept": { + "file": "ui/skin_picker_screen.json", + "type": "stack_panel", + "extend": { + "name": "accept_skin_panel", + "namespace": "skin_picker" + } + }, + "skin_model": { + "file": "ui/skin_picker_screen.json", + "type": "custom" + }, + "premium_skin_button": { + "file": "ui/skin_picker_screen.json", + "type": "button", + "extend": { + "name": "skin_button", + "namespace": "skin_picker" + } + }, + "skin_lock": { + "file": "ui/skin_picker_screen.json", + "type": "image" + }, + "new_pack_icon": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "children": [ + "icon" + ] + }, + "new_pack_icon/icon": { + "file": "ui/skin_picker_screen.json", + "type": "image", + "extend": { + "name": "new_offer_icon", + "namespace": "common_store" + } + }, + "pack_lock": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "children": [ + "locked", + "unlocked" + ] + }, + "pack_lock/locked": { + "file": "ui/skin_picker_screen.json", + "type": "image" + }, + "pack_lock/unlocked": { + "file": "ui/skin_picker_screen.json", + "type": "image" + }, + "skin_input_panel": { + "file": "ui/skin_picker_screen.json", + "type": "input_panel", + "children": [ + "sg" + ] + }, + "skin_input_panel/sg": { + "file": "ui/skin_picker_screen.json", + "type": "grid", + "extend": { + "name": "skins_grid", + "namespace": "skin_picker" + } + }, + "skins_grid_item": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "children": [ + "clip", + "lock", + "button" + ] + }, + "skins_grid_item/clip": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "children": [ + "model" + ] + }, + "skins_grid_item/clip/model": { + "file": "ui/skin_picker_screen.json", + "type": "custom", + "extend": { + "name": "skin_model", + "namespace": "skin_picker" + } + }, + "skins_grid_item/lock": { + "file": "ui/skin_picker_screen.json", + "type": "image", + "extend": { + "name": "skin_lock", + "namespace": "skin_picker" + } + }, + "skins_grid_item/button": { + "file": "ui/skin_picker_screen.json", + "type": "button", + "extend": { + "name": "premium_skin_button", + "namespace": "skin_picker" + } + }, + "skins_grid": { + "file": "ui/skin_picker_screen.json", + "type": "grid" + }, + "pack_name": { + "file": "ui/skin_picker_screen.json", + "type": "label" + }, + "pack_grid_item": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "children": [ + "header", + "bg" + ] + }, + "pack_grid_item/header": { + "file": "ui/skin_picker_screen.json", + "type": "stack_panel", + "children": [ + "padding", + "pack_lock", + "pack_name", + "padding_2", + "new_pack_icon", + "padding_3" + ] + }, + "pack_grid_item/header/padding": { + "file": "ui/skin_picker_screen.json", + "type": "panel" + }, + "pack_grid_item/header/pack_lock": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "extend": { + "name": "pack_lock", + "namespace": "skin_picker" + } + }, + "pack_grid_item/header/pack_name": { + "file": "ui/skin_picker_screen.json", + "type": "label", + "extend": { + "name": "pack_name", + "namespace": "skin_picker" + } + }, + "pack_grid_item/header/padding_2": { + "file": "ui/skin_picker_screen.json", + "type": "panel" + }, + "pack_grid_item/header/new_pack_icon": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "extend": { + "name": "new_pack_icon", + "namespace": "skin_picker" + } + }, + "pack_grid_item/header/padding_3": { + "file": "ui/skin_picker_screen.json", + "type": "panel" + }, + "pack_grid_item/bg": { + "file": "ui/skin_picker_screen.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "skin_picker" + }, + "children": [ + "skin_input_panel", + "expand_view_button", + "progress_loading_no_connection", + "progress_loading" + ] + }, + "pack_grid_item/bg/skin_input_panel": { + "file": "ui/skin_picker_screen.json", + "type": "input_panel", + "extend": { + "name": "skin_input_panel", + "namespace": "skin_picker" + } + }, + "pack_grid_item/bg/expand_view_button": { + "file": "ui/skin_picker_screen.json", + "type": "button", + "extend": { + "name": "light_glyph_button", + "namespace": "common_buttons" + } + }, + "pack_grid_item/bg/progress_loading_no_connection": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "pack_grid_item/bg/progress_loading": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "premium_packs_grid": { + "file": "ui/skin_picker_screen.json", + "type": "grid" + }, + "standard_skin_button": { + "file": "ui/skin_picker_screen.json", + "type": "button", + "extend": { + "name": "skin_button", + "namespace": "skin_picker" + } + }, + "default_skins_grid_item": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "children": [ + "model", + "button" + ] + }, + "default_skins_grid_item/model": { + "file": "ui/skin_picker_screen.json", + "type": "custom", + "extend": { + "name": "skin_model", + "namespace": "skin_picker" + } + }, + "default_skins_grid_item/button": { + "file": "ui/skin_picker_screen.json", + "type": "button", + "extend": { + "name": "standard_skin_button", + "namespace": "skin_picker" + } + }, + "default_skins_grid": { + "file": "ui/skin_picker_screen.json", + "type": "grid" + }, + "recent_skins_grid_item": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "children": [ + "clip", + "button" + ] + }, + "recent_skins_grid_item/clip": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "children": [ + "model" + ] + }, + "recent_skins_grid_item/clip/model": { + "file": "ui/skin_picker_screen.json", + "type": "custom", + "extend": { + "name": "skin_model", + "namespace": "skin_picker" + } + }, + "recent_skins_grid_item/button": { + "file": "ui/skin_picker_screen.json", + "type": "button", + "extend": { + "name": "standard_skin_button", + "namespace": "skin_picker" + } + }, + "recent_skins_grid": { + "file": "ui/skin_picker_screen.json", + "type": "grid" + }, + "standard_frame": { + "file": "ui/skin_picker_screen.json", + "type": "panel" + }, + "standard_header": { + "file": "ui/skin_picker_screen.json", + "type": "label", + "extend": { + "name": "label", + "namespace": "skin_picker" + } + }, + "standard_fill": { + "file": "ui/skin_picker_screen.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "skin_picker" + } + }, + "standard_panel": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "children": [ + "default_skins", + "recent_skins" + ] + }, + "standard_panel/default_skins": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "extend": { + "name": "standard_frame", + "namespace": "skin_picker" + }, + "children": [ + "header", + "fill" + ] + }, + "standard_panel/default_skins/header": { + "file": "ui/skin_picker_screen.json", + "type": "label", + "extend": { + "name": "standard_header", + "namespace": "skin_picker" + } + }, + "standard_panel/default_skins/fill": { + "file": "ui/skin_picker_screen.json", + "type": "image", + "extend": { + "name": "standard_fill", + "namespace": "skin_picker" + }, + "children": [ + "default_skins_grid" + ] + }, + "standard_panel/default_skins/fill/default_skins_grid": { + "file": "ui/skin_picker_screen.json", + "type": "grid", + "extend": { + "name": "default_skins_grid", + "namespace": "skin_picker" + } + }, + "standard_panel/recent_skins": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "extend": { + "name": "standard_frame", + "namespace": "skin_picker" + }, + "children": [ + "header", + "fill" + ] + }, + "standard_panel/recent_skins/header": { + "file": "ui/skin_picker_screen.json", + "type": "label", + "extend": { + "name": "standard_header", + "namespace": "skin_picker" + } + }, + "standard_panel/recent_skins/fill": { + "file": "ui/skin_picker_screen.json", + "type": "image", + "extend": { + "name": "standard_fill", + "namespace": "skin_picker" + }, + "children": [ + "recent_skins_grid", + "recent_skins_loading_panel" + ] + }, + "standard_panel/recent_skins/fill/recent_skins_grid": { + "file": "ui/skin_picker_screen.json", + "type": "grid", + "extend": { + "name": "recent_skins_grid", + "namespace": "skin_picker" + } + }, + "standard_panel/recent_skins/fill/recent_skins_loading_panel": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "scrolling_content_stack": { + "file": "ui/skin_picker_screen.json", + "type": "stack_panel", + "children": [ + "standard_panel", + "premium_packs_grid" + ] + }, + "scrolling_content_stack/standard_panel": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "extend": { + "name": "standard_panel", + "namespace": "skin_picker" + } + }, + "scrolling_content_stack/premium_packs_grid": { + "file": "ui/skin_picker_screen.json", + "type": "grid", + "extend": { + "name": "premium_packs_grid", + "namespace": "skin_picker" + } + }, + "all_skins_content": { + "file": "ui/skin_picker_screen.json", + "type": "input_panel", + "children": [ + "scrolling_frame" + ] + }, + "all_skins_content/scrolling_frame": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "children": [ + "change_skin_scroll", + "progress_loading" + ] + }, + "all_skins_content/scrolling_frame/change_skin_scroll": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "all_skins_content/scrolling_frame/progress_loading": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "all_skins_frame": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "children": [ + "all_skins_content" + ] + }, + "all_skins_frame/all_skins_content": { + "file": "ui/skin_picker_screen.json", + "type": "input_panel", + "extend": { + "name": "all_skins_content", + "namespace": "skin_picker" + } + }, + "title_bar": { + "file": "ui/skin_picker_screen.json", + "type": "stack_panel", + "children": [ + "padding_0", + "fill_panel", + "padding_1", + "skin_name_holder", + "padding_2" + ] + }, + "title_bar/padding_0": { + "file": "ui/skin_picker_screen.json", + "type": "panel" + }, + "title_bar/fill_panel": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "children": [ + "title_holder" + ] + }, + "title_bar/fill_panel/title_holder": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "children": [ + "change_skin_title" + ] + }, + "title_bar/fill_panel/title_holder/change_skin_title": { + "file": "ui/skin_picker_screen.json", + "type": "label", + "extend": { + "name": "title_label", + "namespace": "skin_picker" + } + }, + "title_bar/padding_1": { + "file": "ui/skin_picker_screen.json", + "type": "panel" + }, + "title_bar/skin_name_holder": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "children": [ + "preview_skin_name" + ] + }, + "title_bar/skin_name_holder/preview_skin_name": { + "file": "ui/skin_picker_screen.json", + "type": "label", + "extend": { + "name": "title_label", + "namespace": "skin_picker" + } + }, + "title_bar/padding_2": { + "file": "ui/skin_picker_screen.json", + "type": "panel" + }, + "popup_dialog_skin_model": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "children": [ + "paper_doll" + ] + }, + "popup_dialog_skin_model/paper_doll": { + "file": "ui/skin_picker_screen.json", + "type": "custom" + }, + "popup_dialog_choose_skin_type_button": { + "file": "ui/skin_picker_screen.json", + "type": "button", + "children": [ + "hover", + "pressed" + ] + }, + "popup_dialog_choose_skin_type_button/hover": { + "file": "ui/skin_picker_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "popup_dialog_choose_skin_type_button/pressed": { + "file": "ui/skin_picker_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "popup_dialog_choose_skin_type_panel": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "children": [ + "model", + "button_highlight" + ] + }, + "popup_dialog_choose_skin_type_panel/model": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "extend": { + "name": "popup_dialog_skin_model", + "namespace": "skin_picker" + } + }, + "popup_dialog_choose_skin_type_panel/button_highlight": { + "file": "ui/skin_picker_screen.json", + "type": "button", + "extend": { + "name": "popup_dialog_choose_skin_type_button", + "namespace": "skin_picker" + } + }, + "popup_dialog__invalid_custom_skin": { + "file": "ui/skin_picker_screen.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog", + "namespace": "popup_dialog" + }, + "children": [ + "popup_dialog_bg", + "popup_dialog_message", + "popup_dialog_middle_button" + ] + }, + "popup_dialog__invalid_custom_skin/popup_dialog_bg": { + "file": "ui/skin_picker_screen.json", + "type": "image", + "extend": { + "name": "popup_dialog_bg", + "namespace": "popup_dialog" + } + }, + "popup_dialog__invalid_custom_skin/popup_dialog_message": { + "file": "ui/skin_picker_screen.json", + "type": "label", + "extend": { + "name": "popup_dialog_message", + "namespace": "popup_dialog" + } + }, + "popup_dialog__invalid_custom_skin/popup_dialog_middle_button": { + "file": "ui/skin_picker_screen.json", + "type": "button", + "extend": { + "name": "popup_dialog_middle_button", + "namespace": "popup_dialog" + } + }, + "popup_dialog__upsell_without_store": { + "file": "ui/skin_picker_screen.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog__invalid_custom_skin", + "namespace": "skin_picker" + } + }, + "popup_dialog__choose_skin_type": { + "file": "ui/skin_picker_screen.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog", + "namespace": "popup_dialog" + }, + "children": [ + "popup_dialog_bg", + "popup_dialog_message", + "left", + "right" + ] + }, + "popup_dialog__choose_skin_type/popup_dialog_bg": { + "file": "ui/skin_picker_screen.json", + "type": "image", + "extend": { + "name": "popup_dialog_bg", + "namespace": "popup_dialog" + } + }, + "popup_dialog__choose_skin_type/popup_dialog_message": { + "file": "ui/skin_picker_screen.json", + "type": "label", + "extend": { + "name": "popup_dialog_message", + "namespace": "popup_dialog" + } + }, + "popup_dialog__choose_skin_type/left": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "extend": { + "name": "popup_dialog_choose_skin_type_panel", + "namespace": "skin_picker" + } + }, + "popup_dialog__choose_skin_type/right": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "extend": { + "name": "popup_dialog_choose_skin_type_panel", + "namespace": "skin_picker" + } + }, + "content": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "children": [ + "title", + "selector_area", + "content_area", + "section_divider" + ] + }, + "content/title": { + "file": "ui/skin_picker_screen.json", + "type": "stack_panel", + "extend": { + "name": "title_bar", + "namespace": "skin_picker" + } + }, + "content/selector_area": { + "file": "ui/skin_picker_screen.json", + "type": "input_panel", + "extend": { + "name": "selector_area", + "namespace": "skin_picker" + } + }, + "content/content_area": { + "file": "ui/skin_picker_screen.json", + "type": "input_panel", + "extend": { + "name": "content_area", + "namespace": "skin_picker" + } + }, + "content/section_divider": { + "file": "ui/skin_picker_screen.json", + "type": "image", + "extend": { + "name": "section_divider", + "namespace": "skin_picker" + } + }, + "skin_picker_screen": { + "file": "ui/skin_picker_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "skin_picker_screen_content": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + }, + "children": [ + "bg", + "container", + "popup_dialog_factory" + ] + }, + "skin_picker_screen_content/bg": { + "file": "ui/skin_picker_screen.json", + "type": "stack_panel", + "extend": { + "name": "fullscreen_header", + "namespace": "common" + } + }, + "skin_picker_screen_content/container": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "children": [ + "content" + ] + }, + "skin_picker_screen_content/container/content": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "extend": { + "name": "content", + "namespace": "skin_picker" + } + }, + "skin_picker_screen_content/popup_dialog_factory": { + "file": "ui/skin_picker_screen.json", + "type": "factory" + }, + "scrollable_selector_area_content": { + "file": "ui/skin_picker_screen.json", + "type": "panel" + }, + "selector_area": { + "file": "ui/skin_picker_screen.json", + "type": "input_panel", + "extend": { + "name": "modal_area_panel_base", + "namespace": "common" + }, + "children": [ + "all_skins", + "inactive_modal_pane_fade" + ] + }, + "selector_area/all_skins": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "extend": { + "name": "all_skins_frame", + "namespace": "skin_picker" + } + }, + "selector_area/inactive_modal_pane_fade": { + "file": "ui/skin_picker_screen.json", + "type": "image", + "extend": { + "name": "inactive_modal_pane_fade", + "namespace": "common" + } + }, + "content_area": { + "file": "ui/skin_picker_screen.json", + "type": "input_panel", + "extend": { + "name": "modal_area_panel_base", + "namespace": "common" + }, + "children": [ + "preview_skin", + "inactive_modal_pane_fade" + ] + }, + "content_area/preview_skin": { + "file": "ui/skin_picker_screen.json", + "type": "panel", + "extend": { + "name": "preview_skin_panel", + "namespace": "skin_picker" + } + }, + "content_area/inactive_modal_pane_fade": { + "file": "ui/skin_picker_screen.json", + "type": "image", + "extend": { + "name": "inactive_modal_pane_fade", + "namespace": "common" + } + }, + "section_divider": { + "file": "ui/skin_picker_screen.json", + "type": "image" + } + }, + "smithing_table": { + "smithing_image": { + "file": "ui/smithing_table_screen.json", + "type": "image" + }, + "ingot_image": { + "file": "ui/smithing_table_screen.json", + "type": "image", + "extend": { + "name": "smithing_image", + "namespace": "smithing_table" + } + }, + "smithing_icon": { + "file": "ui/smithing_table_screen.json", + "type": "image" + }, + "upgrade_label": { + "file": "ui/smithing_table_screen.json", + "type": "label" + }, + "icon_and_text_panel": { + "file": "ui/smithing_table_screen.json", + "type": "panel", + "children": [ + "smithing_icon_panel", + "upgrade_label" + ] + }, + "icon_and_text_panel/smithing_icon_panel": { + "file": "ui/smithing_table_screen.json", + "type": "panel", + "extend": { + "name": "smithing_icon_panel", + "namespace": "smithing_table" + } + }, + "icon_and_text_panel/upgrade_label": { + "file": "ui/smithing_table_screen.json", + "type": "label", + "extend": { + "name": "upgrade_label", + "namespace": "smithing_table" + } + }, + "smithing_icon_panel": { + "file": "ui/smithing_table_screen.json", + "type": "panel", + "children": [ + "smithing_icon" + ] + }, + "smithing_icon_panel/smithing_icon": { + "file": "ui/smithing_table_screen.json", + "type": "image", + "extend": { + "name": "smithing_icon", + "namespace": "smithing_table" + } + }, + "plus_sign_icon": { + "file": "ui/smithing_table_screen.json", + "type": "image" + }, + "arrow_icon": { + "file": "ui/smithing_table_screen.json", + "type": "image" + }, + "cross_out_icon": { + "file": "ui/smithing_table_screen.json", + "type": "image" + }, + "smithing_table_output_slot_button": { + "file": "ui/smithing_table_screen.json", + "type": "button", + "extend": { + "name": "container_slot_button_prototype", + "namespace": "common" + } + }, + "smithing_table_item_slot": { + "file": "ui/smithing_table_screen.json", + "type": "panel", + "children": [ + "container_item" + ] + }, + "smithing_table_item_slot/container_item": { + "file": "ui/smithing_table_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "recipe_grid": { + "file": "ui/smithing_table_screen.json", + "type": "grid", + "children": [ + "input_item_slot", + "plus", + "material_item_slot", + "yields", + "result_item_slot" + ] + }, + "recipe_grid/input_item_slot": { + "file": "ui/smithing_table_screen.json", + "type": "panel", + "extend": { + "name": "smithing_table_item_slot", + "namespace": "smithing_table" + } + }, + "recipe_grid/plus": { + "file": "ui/smithing_table_screen.json", + "type": "panel", + "children": [ + "plus_sign_icon" + ] + }, + "recipe_grid/plus/plus_sign_icon": { + "file": "ui/smithing_table_screen.json", + "type": "image", + "extend": { + "name": "plus_sign_icon", + "namespace": "smithing_table" + } + }, + "recipe_grid/material_item_slot": { + "file": "ui/smithing_table_screen.json", + "type": "panel", + "extend": { + "name": "smithing_table_item_slot", + "namespace": "smithing_table" + } + }, + "recipe_grid/yields": { + "file": "ui/smithing_table_screen.json", + "type": "panel", + "children": [ + "arrow_icon", + "cross_out_icon" + ] + }, + "recipe_grid/yields/arrow_icon": { + "file": "ui/smithing_table_screen.json", + "type": "image", + "extend": { + "name": "arrow_icon", + "namespace": "smithing_table" + } + }, + "recipe_grid/yields/cross_out_icon": { + "file": "ui/smithing_table_screen.json", + "type": "image", + "extend": { + "name": "cross_out_icon", + "namespace": "smithing_table" + } + }, + "recipe_grid/result_item_slot": { + "file": "ui/smithing_table_screen.json", + "type": "panel", + "extend": { + "name": "smithing_table_item_slot", + "namespace": "smithing_table" + } + }, + "recipe_panel": { + "file": "ui/smithing_table_screen.json", + "type": "panel", + "children": [ + "recipe_grid" + ] + }, + "recipe_panel/recipe_grid": { + "file": "ui/smithing_table_screen.json", + "type": "grid", + "extend": { + "name": "recipe_grid", + "namespace": "smithing_table" + } + }, + "top_half_panel": { + "file": "ui/smithing_table_screen.json", + "type": "panel", + "children": [ + "icon_and_text_panel", + "recipe_panel" + ] + }, + "top_half_panel/icon_and_text_panel": { + "file": "ui/smithing_table_screen.json", + "type": "panel", + "extend": { + "name": "icon_and_text_panel", + "namespace": "smithing_table" + } + }, + "top_half_panel/recipe_panel": { + "file": "ui/smithing_table_screen.json", + "type": "panel", + "extend": { + "name": "recipe_panel", + "namespace": "smithing_table" + } + }, + "smithing_table_panel": { + "file": "ui/smithing_table_screen.json", + "type": "panel", + "children": [ + "container_gamepad_helpers", + "selected_item_details_factory", + "item_lock_notification_factory", + "root_panel", + "flying_item_renderer" + ] + }, + "smithing_table_panel/container_gamepad_helpers": { + "file": "ui/smithing_table_screen.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "smithing_table_panel/selected_item_details_factory": { + "file": "ui/smithing_table_screen.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "smithing_table_panel/item_lock_notification_factory": { + "file": "ui/smithing_table_screen.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "smithing_table_panel/root_panel": { + "file": "ui/smithing_table_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "common_panel", + "smithing_table_screen_inventory", + "inventory_selected_icon_button", + "gamepad_cursor" + ] + }, + "smithing_table_panel/root_panel/common_panel": { + "file": "ui/smithing_table_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "smithing_table_panel/root_panel/smithing_table_screen_inventory": { + "file": "ui/smithing_table_screen.json", + "type": "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": { + "file": "ui/smithing_table_screen.json", + "type": "panel", + "extend": { + "name": "top_half_panel", + "namespace": "smithing_table" + } + }, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label": { + "file": "ui/smithing_table_screen.json", + "type": "panel", + "extend": { + "name": "inventory_panel_bottom_half_with_label", + "namespace": "common" + } + }, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid": { + "file": "ui/smithing_table_screen.json", + "type": "grid", + "extend": { + "name": "hotbar_grid_template", + "namespace": "common" + } + }, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button": { + "file": "ui/smithing_table_screen.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "smithing_table_panel/root_panel/inventory_selected_icon_button": { + "file": "ui/smithing_table_screen.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "smithing_table_panel/root_panel/gamepad_cursor": { + "file": "ui/smithing_table_screen.json", + "type": "button", + "extend": { + "name": "gamepad_cursor_button", + "namespace": "common" + } + }, + "smithing_table_panel/flying_item_renderer": { + "file": "ui/smithing_table_screen.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + }, + "smithing_table_screen": { + "file": "ui/smithing_table_screen.json", + "type": "screen", + "extend": { + "name": "inventory_screen_common", + "namespace": "common" + } + } + }, + "smithing_table_2": { + "smithing_icon": { + "file": "ui/smithing_table_2_screen.json", + "type": "image" + }, + "upgrade_label": { + "file": "ui/smithing_table_2_screen.json", + "type": "label" + }, + "icon_and_text_panel": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "children": [ + "smithing_icon_panel", + "upgrade_label" + ] + }, + "icon_and_text_panel/smithing_icon_panel": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "extend": { + "name": "smithing_icon_panel", + "namespace": "smithing_table_2" + } + }, + "icon_and_text_panel/upgrade_label": { + "file": "ui/smithing_table_2_screen.json", + "type": "label", + "extend": { + "name": "upgrade_label", + "namespace": "smithing_table_2" + } + }, + "smithing_icon_panel": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "children": [ + "smithing_icon" + ] + }, + "smithing_icon_panel/smithing_icon": { + "file": "ui/smithing_table_2_screen.json", + "type": "image", + "extend": { + "name": "smithing_icon", + "namespace": "smithing_table_2" + } + }, + "smithing_image": { + "file": "ui/smithing_table_2_screen.json", + "type": "image" + }, + "smithing_material_image_ingot": { + "file": "ui/smithing_table_2_screen.json", + "type": "image", + "extend": { + "name": "smithing_image", + "namespace": "smithing_table_2" + } + }, + "arrow_icon": { + "file": "ui/smithing_table_2_screen.json", + "type": "image" + }, + "cross_out_icon_image": { + "file": "ui/smithing_table_2_screen.json", + "type": "image" + }, + "cross_out_icon_button": { + "file": "ui/smithing_table_2_screen.json", + "type": "button", + "children": [ + "default", + "hover" + ] + }, + "cross_out_icon_button/default": { + "file": "ui/smithing_table_2_screen.json", + "type": "image", + "extend": { + "name": "cross_out_icon_image", + "namespace": "smithing_table_2" + } + }, + "cross_out_icon_button/hover": { + "file": "ui/smithing_table_2_screen.json", + "type": "custom", + "extend": { + "name": "hover_text", + "namespace": "common" + } + }, + "smithing_input_image_templates": { + "file": "ui/smithing_table_2_screen.json", + "type": "image", + "extend": { + "name": "smithing_image", + "namespace": "smithing_table_2" + } + }, + "smithing_input_image_armors": { + "file": "ui/smithing_table_2_screen.json", + "type": "image", + "extend": { + "name": "smithing_image", + "namespace": "smithing_table_2" + } + }, + "smithing_input_image_armors_and_tools": { + "file": "ui/smithing_table_2_screen.json", + "type": "image", + "extend": { + "name": "smithing_image", + "namespace": "smithing_table_2" + } + }, + "smithing_material_image_all": { + "file": "ui/smithing_table_2_screen.json", + "type": "image", + "extend": { + "name": "smithing_image", + "namespace": "smithing_table_2" + } + }, + "template_overlay_image": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "children": [ + "templates" + ] + }, + "template_overlay_image/templates": { + "file": "ui/smithing_table_2_screen.json", + "type": "image", + "extend": { + "name": "smithing_input_image_templates", + "namespace": "smithing_table_2" + } + }, + "input_overlay_image": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "children": [ + "armors_and_tools", + "armors" + ] + }, + "input_overlay_image/armors_and_tools": { + "file": "ui/smithing_table_2_screen.json", + "type": "image", + "extend": { + "name": "smithing_input_image_armors_and_tools", + "namespace": "smithing_table_2" + } + }, + "input_overlay_image/armors": { + "file": "ui/smithing_table_2_screen.json", + "type": "image", + "extend": { + "name": "smithing_input_image_armors", + "namespace": "smithing_table_2" + } + }, + "material_overlay_image": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "children": [ + "all_materials", + "ingot" + ] + }, + "material_overlay_image/all_materials": { + "file": "ui/smithing_table_2_screen.json", + "type": "image", + "extend": { + "name": "smithing_material_image_all", + "namespace": "smithing_table_2" + } + }, + "material_overlay_image/ingot": { + "file": "ui/smithing_table_2_screen.json", + "type": "image", + "extend": { + "name": "smithing_material_image_ingot", + "namespace": "smithing_table_2" + } + }, + "smithing_table_output_slot_button": { + "file": "ui/smithing_table_2_screen.json", + "type": "button", + "extend": { + "name": "container_slot_button_prototype", + "namespace": "common" + } + }, + "smithing_table_item_slot": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "children": [ + "container_item" + ] + }, + "smithing_table_item_slot/container_item": { + "file": "ui/smithing_table_2_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "recipe_grid": { + "file": "ui/smithing_table_2_screen.json", + "type": "grid", + "children": [ + "template_item_slot", + "input_item_slot", + "material_item_slot", + "yields", + "result_item_slot", + "result_item_preview" + ] + }, + "recipe_grid/template_item_slot": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "extend": { + "name": "smithing_table_item_slot", + "namespace": "smithing_table_2" + } + }, + "recipe_grid/input_item_slot": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "extend": { + "name": "smithing_table_item_slot", + "namespace": "smithing_table_2" + } + }, + "recipe_grid/material_item_slot": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "extend": { + "name": "smithing_table_item_slot", + "namespace": "smithing_table_2" + } + }, + "recipe_grid/yields": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "children": [ + "arrow_icon", + "cross_out_icon" + ] + }, + "recipe_grid/yields/arrow_icon": { + "file": "ui/smithing_table_2_screen.json", + "type": "image", + "extend": { + "name": "arrow_icon", + "namespace": "smithing_table_2" + } + }, + "recipe_grid/yields/cross_out_icon": { + "file": "ui/smithing_table_2_screen.json", + "type": "button", + "extend": { + "name": "cross_out_icon_button", + "namespace": "smithing_table_2" + } + }, + "recipe_grid/result_item_slot": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "extend": { + "name": "smithing_table_item_slot", + "namespace": "smithing_table_2" + } + }, + "recipe_grid/result_item_preview": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "extend": { + "name": "result_item_preview", + "namespace": "smithing_table_2" + } + }, + "recipe_panel": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "children": [ + "recipe_grid" + ] + }, + "recipe_panel/recipe_grid": { + "file": "ui/smithing_table_2_screen.json", + "type": "grid", + "extend": { + "name": "recipe_grid", + "namespace": "smithing_table_2" + } + }, + "result_item_preview": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "children": [ + "inner" + ] + }, + "result_item_preview/inner": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "extend": { + "name": "result_item_preview_inner", + "namespace": "smithing_table_2" + } + }, + "result_item_preview_inner": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "children": [ + "smithing_preview_renderer" + ] + }, + "result_item_preview_inner/smithing_preview_renderer": { + "file": "ui/smithing_table_2_screen.json", + "type": "custom" + }, + "toolbar_background": { + "file": "ui/smithing_table_2_screen.json", + "type": "image" + }, + "help_button": { + "file": "ui/smithing_table_2_screen.json", + "type": "button", + "extend": { + "name": "help_button", + "namespace": "common" + } + }, + "toolbar_panel": { + "file": "ui/smithing_table_2_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "toolbar_background" + ] + }, + "toolbar_panel/toolbar_background": { + "file": "ui/smithing_table_2_screen.json", + "type": "image", + "extend": { + "name": "toolbar_background", + "namespace": "loom" + }, + "children": [ + "toolbar_stack_panel" + ] + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel": { + "file": "ui/smithing_table_2_screen.json", + "type": "stack_panel", + "children": [ + "padding_1", + "help_button_panel", + "close_button_panel", + "padding_2" + ] + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel" + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "children": [ + "help_button" + ] + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": { + "file": "ui/smithing_table_2_screen.json", + "type": "button", + "extend": { + "name": "help_button", + "namespace": "loom" + } + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "children": [ + "close_button" + ] + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": { + "file": "ui/smithing_table_2_screen.json", + "type": "button", + "extend": { + "name": "light_close_button", + "namespace": "common" + } + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel" + }, + "toolbar_anchor": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "children": [ + "toolbar_panel" + ] + }, + "toolbar_anchor/toolbar_panel": { + "file": "ui/smithing_table_2_screen.json", + "type": "input_panel", + "extend": { + "name": "toolbar_panel", + "namespace": "smithing_table_2" + } + }, + "top_half_panel": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "children": [ + "icon_and_text_panel", + "recipe_panel" + ] + }, + "top_half_panel/icon_and_text_panel": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "extend": { + "name": "icon_and_text_panel", + "namespace": "smithing_table_2" + } + }, + "top_half_panel/recipe_panel": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "extend": { + "name": "recipe_panel", + "namespace": "smithing_table_2" + } + }, + "smithing_table_panel": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "children": [ + "container_gamepad_helpers", + "selected_item_details_factory", + "item_lock_notification_factory", + "root_panel", + "flying_item_renderer" + ] + }, + "smithing_table_panel/container_gamepad_helpers": { + "file": "ui/smithing_table_2_screen.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "smithing_table_panel/selected_item_details_factory": { + "file": "ui/smithing_table_2_screen.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "smithing_table_panel/item_lock_notification_factory": { + "file": "ui/smithing_table_2_screen.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "smithing_table_panel/root_panel": { + "file": "ui/smithing_table_2_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "common_panel", + "smithing_table_screen_inventory", + "inventory_selected_icon_button", + "toolbar_anchor", + "gamepad_cursor" + ] + }, + "smithing_table_panel/root_panel/common_panel": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "smithing_table_panel/root_panel/smithing_table_screen_inventory": { + "file": "ui/smithing_table_2_screen.json", + "type": "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": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "extend": { + "name": "top_half_panel", + "namespace": "smithing_table_2" + } + }, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "extend": { + "name": "inventory_panel_bottom_half_with_label", + "namespace": "common" + } + }, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid": { + "file": "ui/smithing_table_2_screen.json", + "type": "grid", + "extend": { + "name": "hotbar_grid_template", + "namespace": "common" + } + }, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button": { + "file": "ui/smithing_table_2_screen.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "smithing_table_panel/root_panel/inventory_selected_icon_button": { + "file": "ui/smithing_table_2_screen.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "smithing_table_panel/root_panel/toolbar_anchor": { + "file": "ui/smithing_table_2_screen.json", + "type": "panel", + "extend": { + "name": "toolbar_anchor", + "namespace": "smithing_table_2" + } + }, + "smithing_table_panel/root_panel/gamepad_cursor": { + "file": "ui/smithing_table_2_screen.json", + "type": "button", + "extend": { + "name": "gamepad_cursor_button", + "namespace": "common" + } + }, + "smithing_table_panel/flying_item_renderer": { + "file": "ui/smithing_table_2_screen.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + } + }, + "smithing_table_pocket": { + "ingot_image": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "image", + "extend": { + "name": "smithing_image", + "namespace": "smithing_table" + } + }, + "background_image": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "image" + }, + "arrow_icon": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "image" + }, + "smithing_icon": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "image" + }, + "upgrade_label": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "label" + }, + "smithing_icon_panel": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "panel", + "children": [ + "smithing_icon" + ] + }, + "smithing_icon_panel/smithing_icon": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "image", + "extend": { + "name": "smithing_icon", + "namespace": "smithing_table_pocket" + } + }, + "smithing_table_title_and_text_panel": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "panel", + "children": [ + "smithing_icon_panel", + "upgrade_label" + ] + }, + "smithing_table_title_and_text_panel/smithing_icon_panel": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "panel", + "extend": { + "name": "smithing_icon_panel", + "namespace": "smithing_table_pocket" + } + }, + "smithing_table_title_and_text_panel/upgrade_label": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "label", + "extend": { + "name": "upgrade_label", + "namespace": "smithing_table_pocket" + } + }, + "slots_panel": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "panel", + "children": [ + "input_slot", + "material_slot", + "result_slot", + "plus_sign", + "arrow" + ] + }, + "slots_panel/input_slot": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_large_container_item", + "namespace": "common" + } + }, + "slots_panel/material_slot": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_large_container_item", + "namespace": "common" + } + }, + "slots_panel/result_slot": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_large_container_item", + "namespace": "common" + } + }, + "slots_panel/plus_sign": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "label", + "extend": { + "name": "upgrade_label", + "namespace": "smithing_table_pocket" + } + }, + "slots_panel/arrow": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "image", + "children": [ + "cross_out" + ] + }, + "slots_panel/arrow/cross_out": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "image" + }, + "smithing_table_contents_panel": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "stack_panel", + "children": [ + "smithing_table_title_and_text_panel", + "slots_panel" + ] + }, + "smithing_table_contents_panel/smithing_table_title_and_text_panel": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "panel", + "extend": { + "name": "smithing_table_title_and_text_panel", + "namespace": "smithing_table_pocket" + } + }, + "smithing_table_contents_panel/slots_panel": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "panel", + "extend": { + "name": "slots_panel", + "namespace": "smithing_table_pocket" + } + }, + "inventory_grid": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "grid" + }, + "inventory_content": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "inventory_content/scrolling_panel": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "inventory_and_smithing_table_panel": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "panel", + "children": [ + "inventory_half_screen", + "smithing_half_screen" + ] + }, + "inventory_and_smithing_table_panel/inventory_half_screen": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "panel", + "children": [ + "inventory_content" + ] + }, + "inventory_and_smithing_table_panel/inventory_half_screen/inventory_content": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "panel", + "extend": { + "name": "inventory_content", + "namespace": "smithing_table_pocket" + } + }, + "inventory_and_smithing_table_panel/smithing_half_screen": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "panel", + "children": [ + "smithing_table_content" + ] + }, + "inventory_and_smithing_table_panel/smithing_half_screen/smithing_table_content": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "smithing_table_contents_panel", + "namespace": "smithing_table_pocket" + } + }, + "header": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "panel", + "children": [ + "header_background", + "close_button", + "panel" + ] + }, + "header/header_background": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "image" + }, + "header/close_button": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "button", + "extend": { + "name": "legacy_pocket_close_button", + "namespace": "common" + } + }, + "header/panel": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "panel", + "children": [ + "title_label" + ] + }, + "header/panel/title_label": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "label", + "extend": { + "name": "upgrade_label", + "namespace": "smithing_table_pocket" + } + }, + "header_and_content_stack_panel": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "stack_panel", + "children": [ + "header", + "inventory_and_smithing_table_panel" + ] + }, + "header_and_content_stack_panel/header": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "smithing_table_pocket" + } + }, + "header_and_content_stack_panel/inventory_and_smithing_table_panel": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "panel", + "extend": { + "name": "inventory_and_smithing_table_panel", + "namespace": "smithing_table_pocket" + } + }, + "smithing_table_panel": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "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": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "image", + "extend": { + "name": "background_image", + "namespace": "smithing_table_pocket" + } + }, + "smithing_table_panel/root_panel": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + } + }, + "smithing_table_panel/header_and_content_stack_panel": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "header_and_content_stack_panel", + "namespace": "smithing_table_pocket" + } + }, + "smithing_table_panel/container_gamepad_helpers": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "smithing_table_panel/inventory_selected_icon_button": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "smithing_table_panel/hold_icon": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "smithing_table_panel/selected_item_details_factory": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "smithing_table_panel/item_lock_notification_factory": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "smithing_table_panel/flying_item_renderer": { + "file": "ui/smithing_table_screen_pocket.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + } + }, + "smithing_table_2_pocket": { + "smithing_table_item_renderer": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "custom" + }, + "smithing_image": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "image" + }, + "smithing_material_image_ingot": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "image", + "extend": { + "name": "smithing_image", + "namespace": "smithing_table_2_pocket" + } + }, + "background_image": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "image" + }, + "smithing_input_image_templates": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "image", + "extend": { + "name": "smithing_image", + "namespace": "smithing_table_2_pocket" + } + }, + "smithing_material_image_all": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "image", + "extend": { + "name": "smithing_image", + "namespace": "smithing_table_2_pocket" + } + }, + "smithing_input_image_armors": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "image", + "extend": { + "name": "smithing_image", + "namespace": "smithing_table_2_pocket" + } + }, + "smithing_input_image_armors_and_tools": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "image", + "extend": { + "name": "smithing_image", + "namespace": "smithing_table_2_pocket" + } + }, + "template_overlay_image": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "children": [ + "templates" + ] + }, + "template_overlay_image/templates": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "image", + "extend": { + "name": "smithing_input_image_templates", + "namespace": "smithing_table_2_pocket" + } + }, + "input_overlay_image": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "children": [ + "armors_and_tools", + "armors" + ] + }, + "input_overlay_image/armors_and_tools": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "image", + "extend": { + "name": "smithing_input_image_armors_and_tools", + "namespace": "smithing_table_2_pocket" + } + }, + "input_overlay_image/armors": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "image", + "extend": { + "name": "smithing_input_image_armors", + "namespace": "smithing_table_2_pocket" + } + }, + "material_overlay_image": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "children": [ + "ingot", + "all_materials" + ] + }, + "material_overlay_image/ingot": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "image", + "extend": { + "name": "smithing_material_image_ingot", + "namespace": "smithing_table_2_pocket" + } + }, + "material_overlay_image/all_materials": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "image", + "extend": { + "name": "smithing_material_image_all", + "namespace": "smithing_table_2_pocket" + } + }, + "arrow_icon": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "image" + }, + "smithing_icon": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "image" + }, + "upgrade_label": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "label" + }, + "slot_grid_item": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "children": [ + "slot" + ] + }, + "slot_grid_item/slot": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_container_item", + "namespace": "common" + } + }, + "template_slot": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "slot_grid_item", + "namespace": "smithing_table_2_pocket" + } + }, + "input_slot": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "slot_grid_item", + "namespace": "smithing_table_2_pocket" + } + }, + "material_slot": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "slot_grid_item", + "namespace": "smithing_table_2_pocket" + } + }, + "inputs_stack": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "stack_panel", + "children": [ + "template_slot", + "padding1", + "input_slot", + "padding2", + "material_slot" + ] + }, + "inputs_stack/template_slot": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "template_slot", + "namespace": "smithing_table_2_pocket" + } + }, + "inputs_stack/padding1": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel" + }, + "inputs_stack/input_slot": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "input_slot", + "namespace": "smithing_table_2_pocket" + } + }, + "inputs_stack/padding2": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel" + }, + "inputs_stack/material_slot": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "material_slot", + "namespace": "smithing_table_2_pocket" + } + }, + "inputs_panel": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "children": [ + "inputs_stack" + ] + }, + "inputs_panel/inputs_stack": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "inputs_stack", + "namespace": "smithing_table_2_pocket" + } + }, + "result_slot": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "slot_grid_item", + "namespace": "smithing_table_2_pocket" + } + }, + "cross_out_image": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "image" + }, + "cross_out_icon": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "button", + "children": [ + "default", + "hover" + ] + }, + "cross_out_icon/default": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "image", + "extend": { + "name": "cross_out_image", + "namespace": "smithing_table_2_pocket" + } + }, + "cross_out_icon/hover": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "custom", + "extend": { + "name": "hover_text", + "namespace": "common" + } + }, + "crafting_arrow": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "image", + "children": [ + "cross_out" + ] + }, + "crafting_arrow/cross_out": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "button", + "extend": { + "name": "cross_out_icon", + "namespace": "smithing_table_2_pocket" + } + }, + "crafting_arrow_grid_item": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "children": [ + "crafting_arrow" + ] + }, + "crafting_arrow_grid_item/crafting_arrow": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "image", + "extend": { + "name": "crafting_arrow", + "namespace": "smithing_table_2_pocket" + } + }, + "result_item_preview": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "children": [ + "smithing_preview_renderer" + ] + }, + "result_item_preview/smithing_preview_renderer": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "custom" + }, + "result_item_preview_grid_item": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "children": [ + "result_preview" + ] + }, + "result_item_preview_grid_item/result_preview": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "result_item_preview", + "namespace": "smithing_table_2_pocket" + } + }, + "smithing_table_contents_panel": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "grid", + "children": [ + "label_holder", + "inputs", + "result_slot", + "crafting_arrow", + "result_item_preview" + ] + }, + "smithing_table_contents_panel/label_holder": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "children": [ + "title_label" + ] + }, + "smithing_table_contents_panel/label_holder/title_label": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "label", + "extend": { + "name": "upgrade_label", + "namespace": "smithing_table_2_pocket" + } + }, + "smithing_table_contents_panel/inputs": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "inputs_panel", + "namespace": "smithing_table_2_pocket" + } + }, + "smithing_table_contents_panel/result_slot": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "result_slot", + "namespace": "smithing_table_2_pocket" + } + }, + "smithing_table_contents_panel/crafting_arrow": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "crafting_arrow_grid_item", + "namespace": "smithing_table_2_pocket" + } + }, + "smithing_table_contents_panel/result_item_preview": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "result_item_preview_grid_item", + "namespace": "smithing_table_2_pocket" + } + }, + "chest_item_renderer": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "custom" + }, + "left_tab_inventory": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "pocket_tab_left", + "namespace": "common_tabs" + } + }, + "left_navigation_tabs": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "stack_panel", + "children": [ + "left_tab_inventory" + ] + }, + "left_navigation_tabs/left_tab_inventory": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "left_tab_inventory", + "namespace": "smithing_table_2_pocket" + } + }, + "inventory_scroll_panel": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "container_scroll_panel", + "namespace": "common" + } + }, + "left_panel": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "stack_panel", + "children": [ + "gamepad_helpers_and_tabs_holder", + "content" + ] + }, + "left_panel/gamepad_helpers_and_tabs_holder": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "children": [ + "navigation_tabs_holder" + ] + }, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "children": [ + "left_navigation_tabs" + ] + }, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "left_navigation_tabs", + "namespace": "smithing_table_2_pocket" + } + }, + "left_panel/content": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "bg", + "inventory_scroll_panel" + ] + }, + "left_panel/content/bg": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "left_panel/content/inventory_scroll_panel": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "inventory_scroll_panel", + "namespace": "smithing_table_2_pocket" + } + }, + "right_tab_smithing_table": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "pocket_tab_right", + "namespace": "common_tabs" + } + }, + "right_navigation_tabs": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "stack_panel", + "children": [ + "pocket_tab_close_and_help_button", + "fill", + "right_tab_smithing_table" + ] + }, + "right_navigation_tabs/pocket_tab_close_and_help_button": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "image", + "extend": { + "name": "pocket_tab_close_and_help_button", + "namespace": "common_tabs" + } + }, + "right_navigation_tabs/fill": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel" + }, + "right_navigation_tabs/right_tab_smithing_table": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "right_tab_smithing_table", + "namespace": "smithing_table_2_pocket" + } + }, + "right_panel": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "stack_panel", + "children": [ + "content", + "navigation_tabs_holder" + ] + }, + "right_panel/content": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "bg", + "smithing_content_stack_panel" + ] + }, + "right_panel/content/bg": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "right_panel/content/smithing_content_stack_panel": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "grid", + "extend": { + "name": "smithing_table_contents_panel", + "namespace": "smithing_table_2_pocket" + } + }, + "right_panel/navigation_tabs_holder": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "panel", + "children": [ + "right_navigation_tabs" + ] + }, + "right_panel/navigation_tabs_holder/right_navigation_tabs": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "right_navigation_tabs", + "namespace": "smithing_table_2_pocket" + } + }, + "pocket_hotbar_and_content_panels": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "pocket_hotbar_and_content_panels", + "namespace": "common" + } + }, + "smithing_table_panel": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "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": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "pocket_hotbar_and_content_panels", + "namespace": "smithing_table_2_pocket" + } + }, + "smithing_table_panel/container_gamepad_helpers": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "smithing_table_panel/selected_item_details_factory": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "smithing_table_panel/item_lock_notification_factory": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "smithing_table_panel/inventory_selected_icon_button": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "smithing_table_panel/inventory_take_progress_icon_button": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "smithing_table_panel/flying_item_renderer": { + "file": "ui/smithing_table_2_screen_pocket.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + } + }, + "smoker": { + "smoker_screen": { + "file": "ui/smoker_screen.json", + "type": "screen", + "extend": { + "name": "furnace_screen", + "namespace": "furnace" + } + } + }, + "start": { + "achievements_icon": { + "file": "ui/start_screen.json", + "type": "image" + }, + "inbox_bell_animated_icon": { + "file": "ui/start_screen.json", + "type": "image" + }, + "inbox_icon": { + "file": "ui/start_screen.json", + "type": "image" + }, + "unread_notification_icon": { + "file": "ui/start_screen.json", + "type": "image" + }, + "feedback_icon": { + "file": "ui/start_screen.json", + "type": "image" + }, + "feedback_icon_edu": { + "file": "ui/start_screen.json", + "type": "image" + }, + "Xbox_icon": { + "file": "ui/start_screen.json", + "type": "image" + }, + "change_skin_icon": { + "file": "ui/start_screen.json", + "type": "image" + }, + "manage_accounts_icon": { + "file": "ui/start_screen.json", + "type": "image" + }, + "new_offers_icon": { + "file": "ui/start_screen.json", + "type": "image", + "extend": { + "name": "new_offer_icon", + "namespace": "common_store" + } + }, + "edu_ai_lesson_crafter_button_content": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "children": [ + "padded_label", + "padded_icon" + ] + }, + "edu_ai_lesson_crafter_button_content/padded_label": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "label" + ] + }, + "edu_ai_lesson_crafter_button_content/padded_label/label": { + "file": "ui/start_screen.json", + "type": "label" + }, + "edu_ai_lesson_crafter_button_content/padded_icon": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "icon" + ] + }, + "edu_ai_lesson_crafter_button_content/padded_icon/icon": { + "file": "ui/start_screen.json", + "type": "image" + }, + "preview_tag": { + "file": "ui/start_screen.json", + "type": "image", + "children": [ + "preview_label" + ] + }, + "preview_tag/preview_label": { + "file": "ui/start_screen.json", + "type": "label" + }, + "update_prompt_icon": { + "file": "ui/start_screen.json", + "type": "image" + }, + "marketplace_error_icon": { + "file": "ui/start_screen.json", + "type": "image", + "extend": { + "name": "marketplace_error_icon", + "namespace": "common_store" + } + }, + "sale_ribbon_icon": { + "file": "ui/start_screen.json", + "type": "image" + }, + "alex_icon": { + "file": "ui/start_screen.json", + "type": "image" + }, + "gamerpic": { + "file": "ui/start_screen.json", + "type": "custom" + }, + "copyright": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "label", + "label_background" + ] + }, + "copyright/label": { + "file": "ui/start_screen.json", + "type": "label" + }, + "copyright/label_background": { + "file": "ui/start_screen.json", + "type": "image" + }, + "development_version": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "label", + "label_background" + ] + }, + "development_version/label": { + "file": "ui/start_screen.json", + "type": "label" + }, + "development_version/label_background": { + "file": "ui/start_screen.json", + "type": "image" + }, + "version": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "label", + "label_background" + ] + }, + "version/label": { + "file": "ui/start_screen.json", + "type": "label" + }, + "version/label_background": { + "file": "ui/start_screen.json", + "type": "image" + }, + "trial_info": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "trial_label", + "label_background" + ] + }, + "trial_info/trial_label": { + "file": "ui/start_screen.json", + "type": "label" + }, + "trial_info/label_background": { + "file": "ui/start_screen.json", + "type": "image" + }, + "text_panel": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "copyright", + "development_version", + "version" + ] + }, + "text_panel/copyright": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "copyright", + "namespace": "start" + } + }, + "text_panel/development_version": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "development_version", + "namespace": "start" + } + }, + "text_panel/version": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "version", + "namespace": "start" + } + }, + "skin_or_profile_panel": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "change_skin", + "change_skin_button_demo", + "dressing_room_button", + "switch_accounts", + "profile_button" + ] + }, + "skin_or_profile_panel/change_skin": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "change_skin_button", + "namespace": "start" + } + }, + "skin_or_profile_panel/change_skin_button_demo": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "change_skin_button_demo", + "namespace": "start" + } + }, + "skin_or_profile_panel/dressing_room_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "dressing_room_button", + "namespace": "start" + } + }, + "skin_or_profile_panel/switch_accounts": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "switch_accounts_button", + "namespace": "start" + } + }, + "skin_or_profile_panel/profile_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "profile_button", + "namespace": "start" + } + }, + "change_skin_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "light_glyph_button", + "namespace": "common_buttons" + } + }, + "change_skin_button_demo": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "light_glyph_button", + "namespace": "common_buttons" + } + }, + "switch_accounts_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "dressing_room_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "light_text_form_fitting_button", + "namespace": "common_buttons" + } + }, + "profile_button_content": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "children": [ + "gamerpic_offset_wrapper", + "padding_middle", + "vertically_central_text", + "padding_right" + ] + }, + "profile_button_content/gamerpic_offset_wrapper": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "gamerpic_with_border" + ] + }, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "gamerpic", + "alex_icon", + "border_black" + ] + }, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic": { + "file": "ui/start_screen.json", + "type": "custom", + "extend": { + "name": "gamerpic", + "namespace": "start" + } + }, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon": { + "file": "ui/start_screen.json", + "type": "image", + "extend": { + "name": "alex_icon", + "namespace": "start" + } + }, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black": { + "file": "ui/start_screen.json", + "type": "image", + "extend": { + "name": "focus_border_black", + "namespace": "common" + } + }, + "profile_button_content/padding_middle": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "profile_button_content/vertically_central_text": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "children": [ + "top_padding", + "profile_button_label" + ] + }, + "profile_button_content/vertically_central_text/top_padding": { + "file": "ui/start_screen.json", + "type": "panel" + }, + "profile_button_content/vertically_central_text/profile_button_label": { + "file": "ui/start_screen.json", + "type": "label", + "extend": { + "name": "new_ui_binding_button_label", + "namespace": "common_buttons" + } + }, + "profile_button_content/padding_right": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "profile_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "light_content_form_fitting_button", + "namespace": "common_buttons" + } + }, + "skin_viewer_panel": { + "file": "ui/start_screen.json", + "type": "input_panel", + "children": [ + "paper_doll_panel", + "paper_doll_name_tag" + ] + }, + "skin_viewer_panel/paper_doll_panel": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "paper_doll", + "appearacne_loading_panel" + ] + }, + "skin_viewer_panel/paper_doll_panel/paper_doll": { + "file": "ui/start_screen.json", + "type": "custom" + }, + "skin_viewer_panel/paper_doll_panel/appearacne_loading_panel": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "skin_viewer_panel/paper_doll_name_tag": { + "file": "ui/start_screen.json", + "type": "custom" + }, + "skin_panel": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "change_profile_or_skin", + "viewer_panel" + ] + }, + "skin_panel/change_profile_or_skin": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "skin_or_profile_panel", + "namespace": "start" + } + }, + "skin_panel/viewer_panel": { + "file": "ui/start_screen.json", + "type": "input_panel", + "extend": { + "name": "skin_viewer_panel", + "namespace": "start" + } + }, + "friendsdrawer_button_panel": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "friendsdrawer_button" + ] + }, + "friendsdrawer_button_panel/friendsdrawer_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "friendsbutton" + } + }, + "gathering_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "badge_and_caption_animated": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "children": [ + "caption_and_padding", + "badge_and_padding" + ] + }, + "badge_and_caption_animated/caption_and_padding": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "children": [ + "pad", + "caption" + ] + }, + "badge_and_caption_animated/caption_and_padding/pad": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "badge_and_caption_animated/caption_and_padding/caption": { + "file": "ui/start_screen.json", + "type": "image", + "extend": { + "name": "gathering_caption", + "namespace": "start" + } + }, + "badge_and_caption_animated/badge_and_padding": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "children": [ + "badge", + "fill" + ] + }, + "badge_and_caption_animated/badge_and_padding/badge": { + "file": "ui/start_screen.json", + "type": "image" + }, + "badge_and_caption_animated/badge_and_padding/fill": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "gathering_badge": { + "file": "ui/start_screen.json", + "type": "image" + }, + "badge_and_caption": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "children": [ + "caption_and_padding", + "badge_and_padding" + ] + }, + "badge_and_caption/caption_and_padding": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "children": [ + "pad", + "caption" + ] + }, + "badge_and_caption/caption_and_padding/pad": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "badge_and_caption/caption_and_padding/caption": { + "file": "ui/start_screen.json", + "type": "image", + "extend": { + "name": "gathering_caption", + "namespace": "start" + } + }, + "badge_and_caption/badge_and_padding": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "children": [ + "badge", + "fill" + ] + }, + "badge_and_caption/badge_and_padding/badge": { + "file": "ui/start_screen.json", + "type": "image", + "extend": { + "name": "gathering_badge", + "namespace": "start" + } + }, + "badge_and_caption/badge_and_padding/fill": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "gathering_caption": { + "file": "ui/start_screen.json", + "type": "image", + "children": [ + "countdown_text" + ] + }, + "gathering_caption/countdown_text": { + "file": "ui/start_screen.json", + "type": "label" + }, + "gathering_panel": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "children": [ + "horizontal_panel", + "bottom_pad" + ] + }, + "gathering_panel/horizontal_panel": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "children": [ + "pad", + "inner_panel" + ] + }, + "gathering_panel/horizontal_panel/pad": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "gathering_panel/horizontal_panel/inner_panel": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "children": [ + "badge_and_caption", + "badge_and_caption_animated", + "gathering_button" + ] + }, + "gathering_panel/horizontal_panel/inner_panel/badge_and_caption": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "extend": { + "name": "badge_and_caption", + "namespace": "start" + } + }, + "gathering_panel/horizontal_panel/inner_panel/badge_and_caption_animated": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "extend": { + "name": "badge_and_caption_animated", + "namespace": "start" + } + }, + "gathering_panel/horizontal_panel/inner_panel/gathering_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "gathering_button", + "namespace": "start" + } + }, + "gathering_panel/bottom_pad": { + "file": "ui/start_screen.json", + "type": "panel" + }, + "edu_feedback_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "release_feedback_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "pre_release_feedback_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "release_feedback_button", + "namespace": "start" + } + }, + "feedback_button": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "edu_feedback_button", + "release_feedback_button", + "pre_release_feedback_button" + ] + }, + "feedback_button/edu_feedback_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "edu_feedback_button", + "namespace": "start" + } + }, + "feedback_button/release_feedback_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "release_feedback_button", + "namespace": "start" + } + }, + "feedback_button/pre_release_feedback_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "pre_release_feedback_button", + "namespace": "start" + } + }, + "achievements_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "achievements_icon_button": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "achievements_button" + ] + }, + "achievements_icon_button/achievements_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "achievements_button", + "namespace": "start" + } + }, + "inbox_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "inbox_button_unread_panel": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "background" + ] + }, + "inbox_button_unread_panel/background": { + "file": "ui/start_screen.json", + "type": "image", + "extend": { + "name": "unread_notification_icon", + "namespace": "start" + } + }, + "inbox_icon_button": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "inbox_button", + "inbox_button_unread_panel" + ] + }, + "inbox_icon_button/inbox_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "inbox_button", + "namespace": "start" + } + }, + "inbox_icon_button/inbox_button_unread_panel": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "inbox_button_unread_panel", + "namespace": "start" + } + }, + "xbl_signin_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "light_text_form_fitting_button", + "namespace": "common_buttons" + } + }, + "platform_signin_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "column_frame": { + "file": "ui/start_screen.json", + "type": "panel" + }, + "educator_resources_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "main_button", + "namespace": "start" + } + }, + "upper_online_buttons_panel": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "children": [ + "top_pad", + "stacked_column", + "bottom_pad" + ] + }, + "upper_online_buttons_panel/top_pad": { + "file": "ui/start_screen.json", + "type": "panel" + }, + "upper_online_buttons_panel/stacked_column": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "children": [ + "xbl_btn_padding", + "xbl_btn", + "platform_signin_btn", + "gamertag_pic_and_label" + ] + }, + "upper_online_buttons_panel/stacked_column/xbl_btn_padding": { + "file": "ui/start_screen.json", + "type": "panel" + }, + "upper_online_buttons_panel/stacked_column/xbl_btn": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "column_frame", + "namespace": "start" + }, + "children": [ + "xbl_signin_button" + ] + }, + "upper_online_buttons_panel/stacked_column/xbl_btn/xbl_signin_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "xbl_signin_button", + "namespace": "start" + } + }, + "upper_online_buttons_panel/stacked_column/platform_signin_btn": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "column_frame", + "namespace": "start" + }, + "children": [ + "platform_signin_button" + ] + }, + "upper_online_buttons_panel/stacked_column/platform_signin_btn/platform_signin_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "platform_signin_button", + "namespace": "start" + } + }, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "children": [ + "gamerpic_with_border", + "spacer", + "label_panel" + ] + }, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "gamerpic", + "border_white" + ] + }, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/gamerpic": { + "file": "ui/start_screen.json", + "type": "custom", + "extend": { + "name": "gamerpic", + "namespace": "start" + } + }, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/border_white": { + "file": "ui/start_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/spacer": { + "file": "ui/start_screen.json", + "type": "panel" + }, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "gamertag_label" + ] + }, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel/gamertag_label": { + "file": "ui/start_screen.json", + "type": "label" + }, + "upper_online_buttons_panel/bottom_pad": { + "file": "ui/start_screen.json", + "type": "panel" + }, + "lower_online_buttons_panel": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "children": [ + "stacked_column" + ] + }, + "lower_online_buttons_panel/stacked_column": { + "file": "ui/start_screen.json", + "type": "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": { + "file": "ui/start_screen.json", + "type": "panel" + }, + "lower_online_buttons_panel/stacked_column/feedback_btn": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "column_frame", + "namespace": "start" + }, + "children": [ + "feedback_button" + ] + }, + "lower_online_buttons_panel/stacked_column/feedback_btn/feedback_button": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "feedback_button", + "namespace": "start" + } + }, + "lower_online_buttons_panel/stacked_column/signingin": { + "file": "ui/start_screen.json", + "type": "label" + }, + "lower_online_buttons_panel/stacked_column/achievements_padding": { + "file": "ui/start_screen.json", + "type": "panel" + }, + "lower_online_buttons_panel/stacked_column/achievements_btn": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "column_frame", + "namespace": "start" + }, + "children": [ + "achievements_icon_button" + ] + }, + "lower_online_buttons_panel/stacked_column/achievements_btn/achievements_icon_button": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "achievements_icon_button", + "namespace": "start" + } + }, + "lower_online_buttons_panel/stacked_column/inbox_padding": { + "file": "ui/start_screen.json", + "type": "panel" + }, + "lower_online_buttons_panel/stacked_column/inbox_btn": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "column_frame", + "namespace": "start" + }, + "children": [ + "inbox_icon_button" + ] + }, + "lower_online_buttons_panel/stacked_column/inbox_btn/inbox_icon_button": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "inbox_icon_button", + "namespace": "start" + } + }, + "lower_online_buttons_panel/stacked_column/profile_btn_padding": { + "file": "ui/start_screen.json", + "type": "panel" + }, + "lower_online_buttons_panel/stacked_column/profile_btn": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "column_frame", + "namespace": "start" + }, + "children": [ + "profile_button" + ] + }, + "lower_online_buttons_panel/stacked_column/profile_btn/profile_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "profile_button", + "namespace": "start" + } + }, + "main_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "main_button_dark": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "dark_text_button", + "namespace": "common_buttons" + } + }, + "main_content_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "main_button_gif": { + "file": "ui/start_screen.json", + "type": "custom" + }, + "main_button_banner": { + "file": "ui/start_screen.json", + "type": "image", + "children": [ + "banner_label" + ] + }, + "main_button_banner/banner_label": { + "file": "ui/start_screen.json", + "type": "label" + }, + "play_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "main_button", + "namespace": "start" + } + }, + "play_button_art": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "default_background", + "hover_background", + "label", + "default_foreground", + "hover_foreground" + ] + }, + "play_button_art/default_background": { + "file": "ui/start_screen.json", + "type": "custom", + "extend": { + "name": "main_button_gif", + "namespace": "start" + } + }, + "play_button_art/hover_background": { + "file": "ui/start_screen.json", + "type": "custom", + "extend": { + "name": "main_button_gif", + "namespace": "start" + } + }, + "play_button_art/label": { + "file": "ui/start_screen.json", + "type": "label" + }, + "play_button_art/default_foreground": { + "file": "ui/start_screen.json", + "type": "custom", + "extend": { + "name": "main_button_gif", + "namespace": "start" + } + }, + "play_button_art/hover_foreground": { + "file": "ui/start_screen.json", + "type": "custom", + "extend": { + "name": "main_button_gif", + "namespace": "start" + } + }, + "play_button_stack": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "stacked_row", + "namespace": "start" + }, + "children": [ + "play_button", + "play_button_art", + "play_button_banner" + ] + }, + "play_button_stack/play_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "play_button", + "namespace": "start" + } + }, + "play_button_stack/play_button_art": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "play_button_art", + "namespace": "start" + } + }, + "play_button_stack/play_button_banner": { + "file": "ui/start_screen.json", + "type": "image", + "extend": { + "name": "main_button_banner", + "namespace": "start" + } + }, + "get_started_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "main_button", + "namespace": "start" + } + }, + "main_menu_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "underline_button", + "namespace": "edu_common" + } + }, + "featured_world_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "main_button", + "namespace": "start" + } + }, + "unlock_full_game_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "main_button", + "namespace": "start" + } + }, + "launch_editions_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "main_button", + "namespace": "start" + } + }, + "ai_lesson_crafter_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "settings_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "main_button", + "namespace": "start" + } + }, + "realms_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "main_button_dark", + "namespace": "start" + } + }, + "servers_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "main_button", + "namespace": "start" + } + }, + "store_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "error_store_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "store_button_sale_banner": { + "file": "ui/start_screen.json", + "type": "image", + "extend": { + "name": "sale_ribbon_icon", + "namespace": "start" + }, + "children": [ + "banner_label_padding" + ] + }, + "store_button_sale_banner/banner_label_padding": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "banner_label" + ] + }, + "store_button_sale_banner/banner_label_padding/banner_label": { + "file": "ui/start_screen.json", + "type": "label" + }, + "store_button_content": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "button_label", + "sales_banner" + ] + }, + "store_button_content/button_label": { + "file": "ui/start_screen.json", + "type": "label", + "extend": { + "name": "new_ui_binding_button_label", + "namespace": "common_buttons" + } + }, + "store_button_content/sales_banner": { + "file": "ui/start_screen.json", + "type": "image", + "extend": { + "name": "store_button_sale_banner", + "namespace": "start" + } + }, + "store_error_image": { + "file": "ui/start_screen.json", + "type": "image" + }, + "store_error_content": { + "file": "ui/start_screen.json", + "type": "image", + "children": [ + "marketplace_button_label" + ] + }, + "store_error_content/marketplace_button_label": { + "file": "ui/start_screen.json", + "type": "label" + }, + "store_sale_label": { + "file": "ui/start_screen.json", + "type": "label" + }, + "store_button_art": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "default_background", + "hover_background", + "label", + "default_foreground", + "hover_foreground" + ] + }, + "store_button_art/default_background": { + "file": "ui/start_screen.json", + "type": "custom", + "extend": { + "name": "main_button_gif", + "namespace": "start" + } + }, + "store_button_art/hover_background": { + "file": "ui/start_screen.json", + "type": "custom", + "extend": { + "name": "main_button_gif", + "namespace": "start" + } + }, + "store_button_art/label": { + "file": "ui/start_screen.json", + "type": "label" + }, + "store_button_art/default_foreground": { + "file": "ui/start_screen.json", + "type": "custom", + "extend": { + "name": "main_button_gif", + "namespace": "start" + } + }, + "store_button_art/hover_foreground": { + "file": "ui/start_screen.json", + "type": "custom", + "extend": { + "name": "main_button_gif", + "namespace": "start" + } + }, + "store_button_stack": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "stacked_row", + "namespace": "start" + }, + "children": [ + "store_button", + "store_button_art", + "store_button_banner", + "update_icon", + "new_offers_icon" + ] + }, + "store_button_stack/store_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "store_button", + "namespace": "start" + } + }, + "store_button_stack/store_button_art": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "store_button_art", + "namespace": "start" + } + }, + "store_button_stack/store_button_banner": { + "file": "ui/start_screen.json", + "type": "image", + "extend": { + "name": "main_button_banner", + "namespace": "start" + } + }, + "store_button_stack/update_icon": { + "file": "ui/start_screen.json", + "type": "image", + "extend": { + "name": "update_prompt_icon", + "namespace": "start" + } + }, + "store_button_stack/new_offers_icon": { + "file": "ui/start_screen.json", + "type": "image", + "extend": { + "name": "new_offers_icon", + "namespace": "start" + } + }, + "buy_game_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "main_button", + "namespace": "start" + } + }, + "stacked_row": { + "file": "ui/start_screen.json", + "type": "panel" + }, + "main_buttons_stack_panel": { + "file": "ui/start_screen.json", + "type": "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": { + "file": "ui/start_screen.json", + "type": "panel" + }, + "main_buttons_stack_panel/title_panel_content": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "start_title_panel_content", + "namespace": "common_art" + } + }, + "main_buttons_stack_panel/padding_fill_1": { + "file": "ui/start_screen.json", + "type": "panel" + }, + "main_buttons_stack_panel/main_buttons_panel": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "main_buttons_panel" + ] + }, + "main_buttons_stack_panel/main_buttons_panel/main_buttons_panel": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "main_buttons_panel", + "namespace": "start" + } + }, + "main_buttons_stack_panel/main_buttons_panel_new_player_flow": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "main_buttons_panel_new_player_flow" + ] + }, + "main_buttons_stack_panel/main_buttons_panel_new_player_flow/main_buttons_panel_new_player_flow": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "main_buttons_panel_new_player_flow", + "namespace": "start" + } + }, + "main_buttons_stack_panel/padding_fill_2": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "gamepad_helpers" + ] + }, + "main_buttons_stack_panel/padding_fill_2/gamepad_helpers": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helpers", + "namespace": "start" + } + }, + "main_buttons_stack_panel/padding_3": { + "file": "ui/start_screen.json", + "type": "panel" + }, + "main_buttons_panel_new_player_flow": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "stacked_rows" + ] + }, + "main_buttons_panel_new_player_flow/stacked_rows": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "children": [ + "test_label_row", + "spacer", + "get_started_row", + "main_menu_row" + ] + }, + "main_buttons_panel_new_player_flow/stacked_rows/test_label_row": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "stacked_row", + "namespace": "start" + }, + "children": [ + "trial_info" + ] + }, + "main_buttons_panel_new_player_flow/stacked_rows/test_label_row/trial_info": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "trial_info", + "namespace": "start" + } + }, + "main_buttons_panel_new_player_flow/stacked_rows/spacer": { + "file": "ui/start_screen.json", + "type": "panel" + }, + "main_buttons_panel_new_player_flow/stacked_rows/get_started_row": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "stacked_row", + "namespace": "start" + }, + "children": [ + "get_started_button" + ] + }, + "main_buttons_panel_new_player_flow/stacked_rows/get_started_row/get_started_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "get_started_button", + "namespace": "start" + } + }, + "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "stacked_row", + "namespace": "start" + }, + "children": [ + "main_menu_button" + ] + }, + "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row/main_menu_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "main_menu_button", + "namespace": "start" + } + }, + "main_buttons_panel": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "stacked_rows" + ] + }, + "main_buttons_panel/stacked_rows": { + "file": "ui/start_screen.json", + "type": "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": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "play_button_stack", + "namespace": "start" + } + }, + "main_buttons_panel/stacked_rows/featured_world": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "stacked_row", + "namespace": "start" + }, + "children": [ + "featured_world_button" + ] + }, + "main_buttons_panel/stacked_rows/featured_world/featured_world_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "featured_world_button", + "namespace": "start" + } + }, + "main_buttons_panel/stacked_rows/stacked_row_2": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "stacked_row", + "namespace": "start" + }, + "children": [ + "stacked_columns" + ] + }, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "children": [ + "stacked_col_0", + "stacked_col_1" + ] + }, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "settings_button" + ] + }, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0/settings_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "settings_button", + "namespace": "start" + } + }, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "store_button", + "update_icon", + "new_offers_icon" + ] + }, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/store_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "store_button", + "namespace": "start" + } + }, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/update_icon": { + "file": "ui/start_screen.json", + "type": "image", + "extend": { + "name": "update_prompt_icon", + "namespace": "start" + } + }, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/new_offers_icon": { + "file": "ui/start_screen.json", + "type": "image", + "extend": { + "name": "new_offers_icon", + "namespace": "start" + } + }, + "main_buttons_panel/stacked_rows/ai_lesson_crafter_row": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "stacked_row", + "namespace": "start" + }, + "children": [ + "ai_lesson_crafter_button", + "lesson_crafter_preview_overlay" + ] + }, + "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/ai_lesson_crafter_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "ai_lesson_crafter_button", + "namespace": "start" + } + }, + "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/lesson_crafter_preview_overlay": { + "file": "ui/start_screen.json", + "type": "image", + "extend": { + "name": "preview_tag", + "namespace": "start" + } + }, + "main_buttons_panel/stacked_rows/edu_featured_button": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "stacked_row", + "namespace": "start" + }, + "children": [ + "new_and_featured_button" + ] + }, + "main_buttons_panel/stacked_rows/edu_featured_button/new_and_featured_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "featured_button", + "namespace": "edu_featured" + } + }, + "main_buttons_panel/stacked_rows/settings_and_editions_panel": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "stacked_row", + "namespace": "start" + }, + "children": [ + "settings_and_editions", + "settings_panel" + ] + }, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "children": [ + "settings_panel", + "editions_panel" + ] + }, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "settings_button" + ] + }, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel/settings_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "settings_button", + "namespace": "start" + } + }, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "launch_editions_button" + ] + }, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel/launch_editions_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "launch_editions_button", + "namespace": "start" + } + }, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "stacked_row", + "namespace": "start" + }, + "children": [ + "settings_button" + ] + }, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel/settings_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "settings_button", + "namespace": "start" + } + }, + "main_buttons_panel/stacked_rows/settings": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "stacked_row", + "namespace": "start" + }, + "children": [ + "settings_button" + ] + }, + "main_buttons_panel/stacked_rows/settings/settings_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "settings_button", + "namespace": "start" + } + }, + "main_buttons_panel/stacked_rows/realms": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "stacked_row", + "namespace": "start" + }, + "children": [ + "realms_button" + ] + }, + "main_buttons_panel/stacked_rows/realms/realms_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "realms_button", + "namespace": "start" + } + }, + "main_buttons_panel/stacked_rows/unlock_full_game_row": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "stacked_row", + "namespace": "start" + }, + "children": [ + "unlock_full_game" + ] + }, + "main_buttons_panel/stacked_rows/unlock_full_game_row/unlock_full_game": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "unlock_full_game_button", + "namespace": "start" + } + }, + "main_buttons_panel/stacked_rows/store": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "store_button_stack", + "namespace": "start" + } + }, + "main_buttons_panel/stacked_rows/buy_game": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "stacked_row", + "namespace": "start" + }, + "children": [ + "buy_game_button" + ] + }, + "main_buttons_panel/stacked_rows/buy_game/buy_game_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "buy_game_button", + "namespace": "start" + } + }, + "main_buttons_panel/stacked_rows/launch_editions": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "stacked_row", + "namespace": "start" + }, + "children": [ + "launch_editions_button" + ] + }, + "main_buttons_panel/stacked_rows/launch_editions/launch_editions_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "launch_editions_button", + "namespace": "start" + } + }, + "gamepad_helpers": { + "file": "ui/start_screen.json", + "type": "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": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_a", + "namespace": "common" + } + }, + "gamepad_helpers/gamepad_helper_b_and_padding": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "gamepad_helper_b" + ] + }, + "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_b", + "namespace": "common" + } + }, + "gamepad_helpers/gamepad_helper_y_and_padding": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "gamepad_helper_y" + ] + }, + "gamepad_helpers/gamepad_helper_y_and_padding/gamepad_helper_y": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_y", + "namespace": "common" + } + }, + "gamepad_helpers/gamepad_helper_x_and_padding": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "gamepad_helper_x" + ] + }, + "gamepad_helpers/gamepad_helper_x_and_padding/gamepad_helper_x": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_x", + "namespace": "common" + } + }, + "invite_notification_icon": { + "file": "ui/start_screen.json", + "type": "image" + }, + "invite_notification_button": { + "file": "ui/start_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "notification_button_text": { + "file": "ui/start_screen.json", + "type": "label" + }, + "notification_button_text_background": { + "file": "ui/start_screen.json", + "type": "image" + }, + "notification_button_text_panel": { + "file": "ui/start_screen.json", + "type": "panel", + "children": [ + "text" + ] + }, + "notification_button_text_panel/text": { + "file": "ui/start_screen.json", + "type": "label", + "extend": { + "name": "notification_button_text", + "namespace": "start" + }, + "children": [ + "background" + ] + }, + "notification_button_text_panel/text/background": { + "file": "ui/start_screen.json", + "type": "image", + "extend": { + "name": "notification_button_text_background", + "namespace": "start" + } + }, + "start_screen": { + "file": "ui/start_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "start_screen_content": { + "file": "ui/start_screen.json", + "type": "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": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_buttons_stack_panel", + "namespace": "start" + } + }, + "start_screen_content/online_button_stack": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "children": [ + "gathering_panel", + "upper_online_buttons_panel", + "lower_online_buttons_panel" + ] + }, + "start_screen_content/online_button_stack/gathering_panel": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "extend": { + "name": "gathering_panel", + "namespace": "start" + } + }, + "start_screen_content/online_button_stack/upper_online_buttons_panel": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "extend": { + "name": "upper_online_buttons_panel", + "namespace": "start" + } + }, + "start_screen_content/online_button_stack/lower_online_buttons_panel": { + "file": "ui/start_screen.json", + "type": "stack_panel", + "extend": { + "name": "lower_online_buttons_panel", + "namespace": "start" + } + }, + "start_screen_content/skin_panel": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "skin_panel", + "namespace": "start" + } + }, + "start_screen_content/text_panel": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "text_panel", + "namespace": "start" + } + }, + "start_screen_content/friendsdrawer_button_panel": { + "file": "ui/start_screen.json", + "type": "panel", + "extend": { + "name": "friendsdrawer_button_panel", + "namespace": "start" + } + } + }, + "stonecutter": { + "stonecutter_label": { + "file": "ui/stonecutter_screen.json", + "type": "label" + }, + "arrow_icon": { + "file": "ui/stonecutter_screen.json", + "type": "image" + }, + "stone_cell_image": { + "file": "ui/stonecutter_screen.json", + "type": "image" + }, + "container_cell_image": { + "file": "ui/stonecutter_screen.json", + "type": "image" + }, + "toolbar_background": { + "file": "ui/stonecutter_screen.json", + "type": "image" + }, + "highlight_slot_panel": { + "file": "ui/stonecutter_screen.json", + "type": "panel", + "children": [ + "hover_text", + "highlight", + "white_border" + ] + }, + "highlight_slot_panel/hover_text": { + "file": "ui/stonecutter_screen.json", + "type": "custom", + "extend": { + "name": "hover_text", + "namespace": "common" + } + }, + "highlight_slot_panel/highlight": { + "file": "ui/stonecutter_screen.json", + "type": "image", + "extend": { + "name": "highlight_slot", + "namespace": "common" + } + }, + "highlight_slot_panel/white_border": { + "file": "ui/stonecutter_screen.json", + "type": "image", + "extend": { + "name": "white_border_slot", + "namespace": "common" + } + }, + "stone_slot_button": { + "file": "ui/stonecutter_screen.json", + "type": "button", + "children": [ + "hover" + ] + }, + "stone_slot_button/hover": { + "file": "ui/stonecutter_screen.json", + "type": "unknown" + }, + "item_panel": { + "file": "ui/stonecutter_screen.json", + "type": "panel", + "children": [ + "item_renderer" + ] + }, + "item_panel/item_renderer": { + "file": "ui/stonecutter_screen.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "common" + }, + "children": [ + "stack_count_label" + ] + }, + "item_panel/item_renderer/stack_count_label": { + "file": "ui/stonecutter_screen.json", + "type": "label", + "extend": { + "name": "stack_count_label", + "namespace": "common" + } + }, + "stone_button": { + "file": "ui/stonecutter_screen.json", + "type": "input_panel", + "children": [ + "banner_pattern", + "item_button_ref" + ] + }, + "stone_button/banner_pattern": { + "file": "ui/stonecutter_screen.json", + "type": "unknown" + }, + "stone_button/item_button_ref": { + "file": "ui/stonecutter_screen.json", + "type": "unknown" + }, + "scroll_grid": { + "file": "ui/stonecutter_screen.json", + "type": "grid" + }, + "scroll_grid_panel": { + "file": "ui/stonecutter_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "grid" + ] + }, + "scroll_grid_panel/grid": { + "file": "ui/stonecutter_screen.json", + "type": "grid", + "extend": { + "name": "scroll_grid", + "namespace": "stonecutter" + } + }, + "scroll_panel": { + "file": "ui/stonecutter_screen.json", + "type": "panel", + "extend": { + "name": "container_scroll_panel", + "namespace": "common" + } + }, + "stone_book_panel": { + "file": "ui/stonecutter_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "bg", + "scroll_panel" + ] + }, + "stone_book_panel/bg": { + "file": "ui/stonecutter_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "stone_book_panel/scroll_panel": { + "file": "ui/stonecutter_screen.json", + "type": "panel", + "extend": { + "name": "scroll_panel", + "namespace": "stonecutter" + } + }, + "result_slot_button": { + "file": "ui/stonecutter_screen.json", + "type": "button", + "extend": { + "name": "no_coalesce_container_slot_button", + "namespace": "common" + } + }, + "input_item_slot": { + "file": "ui/stonecutter_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "result_item_slot": { + "file": "ui/stonecutter_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "input_slots_stack_panel": { + "file": "ui/stonecutter_screen.json", + "type": "stack_panel", + "children": [ + "input_item_slot" + ] + }, + "input_slots_stack_panel/input_item_slot": { + "file": "ui/stonecutter_screen.json", + "type": "input_panel", + "extend": { + "name": "input_item_slot", + "namespace": "stonecutter" + } + }, + "top_half_stack_panel": { + "file": "ui/stonecutter_screen.json", + "type": "stack_panel", + "children": [ + "input_slots_holder", + "padding_1", + "arrow_holder", + "padding_2", + "result_item_slot_holder" + ] + }, + "top_half_stack_panel/input_slots_holder": { + "file": "ui/stonecutter_screen.json", + "type": "panel", + "children": [ + "input_slots_stack_panel" + ] + }, + "top_half_stack_panel/input_slots_holder/input_slots_stack_panel": { + "file": "ui/stonecutter_screen.json", + "type": "stack_panel", + "extend": { + "name": "input_slots_stack_panel", + "namespace": "stonecutter" + } + }, + "top_half_stack_panel/padding_1": { + "file": "ui/stonecutter_screen.json", + "type": "panel" + }, + "top_half_stack_panel/arrow_holder": { + "file": "ui/stonecutter_screen.json", + "type": "panel", + "children": [ + "arrow_icon" + ] + }, + "top_half_stack_panel/arrow_holder/arrow_icon": { + "file": "ui/stonecutter_screen.json", + "type": "image", + "extend": { + "name": "arrow_icon", + "namespace": "stonecutter" + } + }, + "top_half_stack_panel/padding_2": { + "file": "ui/stonecutter_screen.json", + "type": "panel" + }, + "top_half_stack_panel/result_item_slot_holder": { + "file": "ui/stonecutter_screen.json", + "type": "panel", + "children": [ + "result_item_slot" + ] + }, + "top_half_stack_panel/result_item_slot_holder/result_item_slot": { + "file": "ui/stonecutter_screen.json", + "type": "input_panel", + "extend": { + "name": "result_item_slot", + "namespace": "stonecutter" + } + }, + "top_half_panel": { + "file": "ui/stonecutter_screen.json", + "type": "panel", + "children": [ + "top_half_stack_panel" + ] + }, + "top_half_panel/top_half_stack_panel": { + "file": "ui/stonecutter_screen.json", + "type": "stack_panel", + "extend": { + "name": "top_half_stack_panel", + "namespace": "stonecutter" + } + }, + "right_panel": { + "file": "ui/stonecutter_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "common_panel", + "stonecutter_screen_inventory" + ] + }, + "right_panel/common_panel": { + "file": "ui/stonecutter_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "right_panel/stonecutter_screen_inventory": { + "file": "ui/stonecutter_screen.json", + "type": "panel", + "children": [ + "stonecutter_label", + "top_half_panel", + "inventory_panel_bottom_half_with_label", + "hotbar_grid" + ] + }, + "right_panel/stonecutter_screen_inventory/stonecutter_label": { + "file": "ui/stonecutter_screen.json", + "type": "label", + "extend": { + "name": "stonecutter_label", + "namespace": "stonecutter" + } + }, + "right_panel/stonecutter_screen_inventory/top_half_panel": { + "file": "ui/stonecutter_screen.json", + "type": "panel", + "extend": { + "name": "top_half_panel", + "namespace": "stonecutter" + } + }, + "right_panel/stonecutter_screen_inventory/inventory_panel_bottom_half_with_label": { + "file": "ui/stonecutter_screen.json", + "type": "panel", + "extend": { + "name": "inventory_panel_bottom_half_with_label", + "namespace": "common" + } + }, + "right_panel/stonecutter_screen_inventory/hotbar_grid": { + "file": "ui/stonecutter_screen.json", + "type": "grid", + "extend": { + "name": "hotbar_grid_template", + "namespace": "common" + } + }, + "toolbar_panel": { + "file": "ui/stonecutter_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "toolbar_background" + ] + }, + "toolbar_panel/toolbar_background": { + "file": "ui/stonecutter_screen.json", + "type": "image", + "extend": { + "name": "toolbar_background", + "namespace": "stonecutter" + }, + "children": [ + "toolbar_stack_panel" + ] + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel": { + "file": "ui/stonecutter_screen.json", + "type": "stack_panel", + "children": [ + "padding_1", + "close_button_panel", + "padding_2" + ] + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": { + "file": "ui/stonecutter_screen.json", + "type": "panel" + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": { + "file": "ui/stonecutter_screen.json", + "type": "panel", + "children": [ + "close_button" + ] + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": { + "file": "ui/stonecutter_screen.json", + "type": "button", + "extend": { + "name": "light_close_button", + "namespace": "common" + } + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": { + "file": "ui/stonecutter_screen.json", + "type": "panel" + }, + "toolbar_anchor": { + "file": "ui/stonecutter_screen.json", + "type": "panel", + "children": [ + "toolbar_panel" + ] + }, + "toolbar_anchor/toolbar_panel": { + "file": "ui/stonecutter_screen.json", + "type": "input_panel", + "extend": { + "name": "toolbar_panel", + "namespace": "stonecutter" + } + }, + "center_fold": { + "file": "ui/stonecutter_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "center_bg" + ] + }, + "center_fold/center_bg": { + "file": "ui/stonecutter_screen.json", + "type": "image" + }, + "screen_stack_panel": { + "file": "ui/stonecutter_screen.json", + "type": "stack_panel", + "children": [ + "stone_book_panel", + "center_fold", + "right_panel", + "toolbar_anchor" + ] + }, + "screen_stack_panel/stone_book_panel": { + "file": "ui/stonecutter_screen.json", + "type": "input_panel", + "extend": { + "name": "stone_book_panel", + "namespace": "stonecutter" + } + }, + "screen_stack_panel/center_fold": { + "file": "ui/stonecutter_screen.json", + "type": "input_panel", + "extend": { + "name": "center_fold", + "namespace": "stonecutter" + } + }, + "screen_stack_panel/right_panel": { + "file": "ui/stonecutter_screen.json", + "type": "input_panel", + "extend": { + "name": "right_panel", + "namespace": "stonecutter" + } + }, + "screen_stack_panel/toolbar_anchor": { + "file": "ui/stonecutter_screen.json", + "type": "panel", + "extend": { + "name": "toolbar_anchor", + "namespace": "stonecutter" + } + }, + "stonecutter_panel": { + "file": "ui/stonecutter_screen.json", + "type": "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": { + "file": "ui/stonecutter_screen.json", + "type": "stack_panel", + "extend": { + "name": "screen_stack_panel", + "namespace": "stonecutter" + } + }, + "stonecutter_panel/container_gamepad_helpers": { + "file": "ui/stonecutter_screen.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "stonecutter_panel/selected_item_details_factory": { + "file": "ui/stonecutter_screen.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "stonecutter_panel/item_lock_notification_factory": { + "file": "ui/stonecutter_screen.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "stonecutter_panel/inventory_selected_icon_button": { + "file": "ui/stonecutter_screen.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "stonecutter_panel/inventory_take_progress_icon_button": { + "file": "ui/stonecutter_screen.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "stonecutter_panel/flying_item_renderer": { + "file": "ui/stonecutter_screen.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + }, + "stonecutter_screen": { + "file": "ui/stonecutter_screen.json", + "type": "screen", + "extend": { + "name": "inventory_screen_common", + "namespace": "common" + } + } + }, + "stonecutter_pocket": { + "vertical_arrow_icon": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "image" + }, + "chest_item_renderer": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "custom" + }, + "stonecutter_item_renderer": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "custom" + }, + "input_item_slot": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_container_item", + "namespace": "common" + } + }, + "result_item_slot": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_container_item", + "namespace": "common" + } + }, + "right_panel": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "stack_panel", + "children": [ + "content", + "navigation_tabs_holder" + ] + }, + "right_panel/content": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "bg", + "stonecutter_content_stack_panel" + ] + }, + "right_panel/content/bg": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "right_panel/content/stonecutter_content_stack_panel": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "stonecutter_content_stack_panel", + "namespace": "stonecutter_pocket" + } + }, + "right_panel/navigation_tabs_holder": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel", + "children": [ + "right_navigation_tabs" + ] + }, + "right_panel/navigation_tabs_holder/right_navigation_tabs": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "right_navigation_tabs", + "namespace": "stonecutter_pocket" + } + }, + "right_tab_stonecutter": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel", + "extend": { + "name": "pocket_tab_right", + "namespace": "common_tabs" + } + }, + "right_navigation_tabs": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "stack_panel", + "children": [ + "close", + "fill", + "right_tab_stonecutter" + ] + }, + "right_navigation_tabs/close": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "image", + "children": [ + "nodrop_zone", + "close_button" + ] + }, + "right_navigation_tabs/close/nodrop_zone": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + } + }, + "right_navigation_tabs/close/close_button": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "button", + "extend": { + "name": "light_close_button", + "namespace": "common" + } + }, + "right_navigation_tabs/fill": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel" + }, + "right_navigation_tabs/right_tab_stonecutter": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel", + "extend": { + "name": "right_tab_stonecutter", + "namespace": "stonecutter_pocket" + } + }, + "input_slots_stack_panel": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "stack_panel", + "children": [ + "input_item_slot" + ] + }, + "input_slots_stack_panel/input_item_slot": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "input_item_slot", + "namespace": "stonecutter_pocket" + } + }, + "stonecutter_content_stack_panel": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "stack_panel", + "children": [ + "label_holder", + "padding_1", + "panel" + ] + }, + "stonecutter_content_stack_panel/label_holder": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel", + "children": [ + "stonecutter_label" + ] + }, + "stonecutter_content_stack_panel/label_holder/stonecutter_label": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "label", + "extend": { + "name": "stonecutter_label", + "namespace": "stonecutter" + } + }, + "stonecutter_content_stack_panel/padding_1": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel" + }, + "stonecutter_content_stack_panel/panel": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel", + "children": [ + "stack_panel" + ] + }, + "stonecutter_content_stack_panel/panel/stack_panel": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "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": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel", + "children": [ + "input_slots_stack_panel" + ] + }, + "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder/input_slots_stack_panel": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "input_slots_stack_panel", + "namespace": "stonecutter_pocket" + } + }, + "stonecutter_content_stack_panel/panel/stack_panel/padding_3": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel" + }, + "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel", + "children": [ + "vertical_arrow_icon" + ] + }, + "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder/vertical_arrow_icon": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "image", + "extend": { + "name": "vertical_arrow_icon", + "namespace": "stonecutter_pocket" + } + }, + "stonecutter_content_stack_panel/panel/stack_panel/padding_4": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel" + }, + "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel", + "children": [ + "result_item_slot" + ] + }, + "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder/result_item_slot": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "result_item_slot", + "namespace": "stonecutter_pocket" + } + }, + "stonecutter_content_stack_panel/panel/stack_panel/padding_5": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel" + }, + "inventory_panel": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "stack_panel", + "children": [ + "inventory_title_label_centerer", + "inventory_scroll_panel" + ] + }, + "inventory_panel/inventory_title_label_centerer": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel", + "children": [ + "inventory_title_label" + ] + }, + "inventory_panel/inventory_title_label_centerer/inventory_title_label": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "label" + }, + "inventory_panel/inventory_scroll_panel": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel", + "extend": { + "name": "inventory_scroll_panel", + "namespace": "stonecutter_pocket" + } + }, + "inventory_scroll_panel": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel", + "extend": { + "name": "container_scroll_panel", + "namespace": "common" + } + }, + "pattern_button": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "stone_button", + "namespace": "stonecutter" + } + }, + "pattern_scroll_panel": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel", + "extend": { + "name": "scroll_panel", + "namespace": "stonecutter" + } + }, + "left_panel": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "stack_panel", + "children": [ + "gamepad_helpers_and_tabs_holder", + "content" + ] + }, + "left_panel/gamepad_helpers_and_tabs_holder": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel", + "children": [ + "tabs_left_gamepad_helpers", + "navigation_tabs_holder" + ] + }, + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel", + "extend": { + "name": "tabs_left_gamepad_helpers", + "namespace": "common" + } + }, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel", + "children": [ + "left_navigation_tabs" + ] + }, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "left_navigation_tabs", + "namespace": "stonecutter_pocket" + } + }, + "left_panel/content": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "bg", + "inventory_panel", + "pattern_scroll_panel" + ] + }, + "left_panel/content/bg": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "left_panel/content/inventory_panel": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "inventory_panel", + "namespace": "stonecutter_pocket" + } + }, + "left_panel/content/pattern_scroll_panel": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel", + "extend": { + "name": "pattern_scroll_panel", + "namespace": "stonecutter_pocket" + } + }, + "left_tab_stones": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel", + "extend": { + "name": "pocket_tab_left", + "namespace": "common_tabs" + } + }, + "left_tab_inventory": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel", + "extend": { + "name": "pocket_tab_left", + "namespace": "common_tabs" + } + }, + "left_navigation_tabs": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "stack_panel", + "children": [ + "left_tab_stones", + "padding", + "left_tab_inventory" + ] + }, + "left_navigation_tabs/left_tab_stones": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel", + "extend": { + "name": "left_tab_stones", + "namespace": "stonecutter_pocket" + } + }, + "left_navigation_tabs/padding": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel" + }, + "left_navigation_tabs/left_tab_inventory": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "panel", + "extend": { + "name": "left_tab_inventory", + "namespace": "stonecutter_pocket" + } + }, + "pocket_hotbar_and_content_panels": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "pocket_hotbar_and_content_panels", + "namespace": "common" + } + }, + "stonecutter_panel": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "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": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "pocket_hotbar_and_content_panels", + "namespace": "stonecutter_pocket" + } + }, + "stonecutter_panel/container_gamepad_helpers": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "stonecutter_panel/selected_item_details_factory": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "stonecutter_panel/item_lock_notification_factory": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "stonecutter_panel/inventory_selected_icon_button": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "stonecutter_panel/inventory_take_progress_icon_button": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "stonecutter_panel/flying_item_renderer": { + "file": "ui/stonecutter_screen_pocket.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + } + }, + "storage_management": { + "lock_icon": { + "file": "ui/storage_management.json", + "type": "image" + }, + "storage_header_panel": { + "file": "ui/storage_management.json", + "type": "panel", + "children": [ + "header_panel" + ] + }, + "storage_header_panel/header_panel": { + "file": "ui/storage_management.json", + "type": "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": { + "file": "ui/storage_management.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "storage_header_panel/header_panel/file_storage_dropdown_edu": { + "file": "ui/storage_management.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "storage_header_panel/header_panel/clear_cache_button_panel": { + "file": "ui/storage_management.json", + "type": "panel", + "children": [ + "clear_cache_button" + ] + }, + "storage_header_panel/header_panel/clear_cache_button_panel/clear_cache_button": { + "file": "ui/storage_management.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "storage_header_panel/header_panel/clear_download_cache_button_panel": { + "file": "ui/storage_management.json", + "type": "panel", + "children": [ + "clear_download_button" + ] + }, + "storage_header_panel/header_panel/clear_download_cache_button_panel/clear_download_button": { + "file": "ui/storage_management.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "storage_header_panel/header_panel/clear_screenshots_cache_button_panel": { + "file": "ui/storage_management.json", + "type": "panel", + "children": [ + "clear_screenshots_cache_button" + ] + }, + "storage_header_panel/header_panel/clear_screenshots_cache_button_panel/clear_screenshots_cache_button": { + "file": "ui/storage_management.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "storage_header_panel/header_panel/delete_local_screenshots_button_panel": { + "file": "ui/storage_management.json", + "type": "panel", + "children": [ + "delete_local_screenshots_button" + ] + }, + "storage_header_panel/header_panel/delete_local_screenshots_button_panel/delete_local_screenshots_button": { + "file": "ui/storage_management.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "storage_header_panel/header_panel/panel": { + "file": "ui/storage_management.json", + "type": "panel", + "children": [ + "multiselect_button" + ] + }, + "storage_header_panel/header_panel/panel/multiselect_button": { + "file": "ui/storage_management.json", + "type": "panel", + "extend": { + "name": "light_image_toggle", + "namespace": "common_toggles" + } + }, + "x_button_image": { + "file": "ui/storage_management.json", + "type": "image" + }, + "storage_main_panel": { + "file": "ui/storage_management.json", + "type": "panel", + "children": [ + "scroll_content" + ] + }, + "storage_main_panel/scroll_content": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "extend": { + "name": "storage_scroll_pane", + "namespace": "storage_management" + } + }, + "storage_footer_panel": { + "file": "ui/storage_management.json", + "type": "panel", + "children": [ + "visibleContent" + ] + }, + "storage_footer_panel/visibleContent": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "children": [ + "delete_button", + "share_button" + ] + }, + "storage_footer_panel/visibleContent/delete_button": { + "file": "ui/storage_management.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "storage_footer_panel/visibleContent/share_button": { + "file": "ui/storage_management.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "delete_checkbox": { + "file": "ui/storage_management.json", + "type": "panel", + "children": [ + "selected_checkbox_image" + ] + }, + "delete_checkbox/selected_checkbox_image": { + "file": "ui/storage_management.json", + "type": "image", + "extend": { + "name": "checkbox_image", + "namespace": "common" + } + }, + "generic_button": { + "file": "ui/storage_management.json", + "type": "image", + "children": [ + "picture", + "text" + ] + }, + "generic_button/picture": { + "file": "ui/storage_management.json", + "type": "image" + }, + "generic_button/text": { + "file": "ui/storage_management.json", + "type": "label" + }, + "common_scroll_pane": { + "file": "ui/storage_management.json", + "type": "panel" + }, + "common_label": { + "file": "ui/storage_management.json", + "type": "label" + }, + "main_content_panel": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "children": [ + "panel" + ] + }, + "main_content_panel/panel": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "children": [ + "spacing", + "delete_checkbox", + "image_panel", + "text_panel_offset" + ] + }, + "main_content_panel/panel/spacing": { + "file": "ui/storage_management.json", + "type": "panel" + }, + "main_content_panel/panel/delete_checkbox": { + "file": "ui/storage_management.json", + "type": "panel", + "extend": { + "name": "delete_checkbox", + "namespace": "storage_management" + } + }, + "main_content_panel/panel/image_panel": { + "file": "ui/storage_management.json", + "type": "panel", + "children": [ + "image_border" + ] + }, + "main_content_panel/panel/image_panel/image_border": { + "file": "ui/storage_management.json", + "type": "image", + "children": [ + "image" + ] + }, + "main_content_panel/panel/image_panel/image_border/image": { + "file": "ui/storage_management.json", + "type": "image" + }, + "main_content_panel/panel/text_panel_offset": { + "file": "ui/storage_management.json", + "type": "panel", + "children": [ + "text_panel" + ] + }, + "main_content_panel/panel/text_panel_offset/text_panel": { + "file": "ui/storage_management.json", + "type": "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": { + "file": "ui/storage_management.json", + "type": "unknown" + }, + "common_main_button": { + "file": "ui/storage_management.json", + "type": "panel", + "children": [ + "background", + "border", + "main_content_panel" + ] + }, + "common_main_button/background": { + "file": "ui/storage_management.json", + "type": "image" + }, + "common_main_button/border": { + "file": "ui/storage_management.json", + "type": "image" + }, + "common_main_button/main_content_panel": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "extend": { + "name": "main_content_panel", + "namespace": "storage_management" + } + }, + "base_glyph": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "children": [ + "image", + "padding" + ] + }, + "base_glyph/image": { + "file": "ui/storage_management.json", + "type": "image" + }, + "base_glyph/padding": { + "file": "ui/storage_management.json", + "type": "panel" + }, + "main_item_text": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "extend": { + "name": "main_content_panel", + "namespace": "storage_management" + } + }, + "grey_button": { + "file": "ui/storage_management.json", + "type": "panel", + "extend": { + "name": "common_main_button", + "namespace": "storage_management" + } + }, + "icon_item_text": { + "file": "ui/storage_management.json", + "type": "panel", + "extend": { + "name": "grey_button", + "namespace": "storage_management" + } + }, + "world_item_text": { + "file": "ui/storage_management.json", + "type": "panel", + "extend": { + "name": "grey_button", + "namespace": "storage_management" + } + }, + "storage_main_item_toggle": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "children": [ + "main_item_toggle", + "contentPanel", + "padding" + ] + }, + "storage_main_item_toggle/main_item_toggle": { + "file": "ui/storage_management.json", + "type": "panel", + "extend": { + "name": "light_ui_toggle", + "namespace": "common_toggles" + } + }, + "storage_main_item_toggle/contentPanel": { + "file": "ui/storage_management.json", + "type": "stack_panel" + }, + "storage_main_item_toggle/padding": { + "file": "ui/storage_management.json", + "type": "panel" + }, + "storage_scroll_pane": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "children": [ + "category_stack_panel", + "multiselect_padding" + ] + }, + "storage_scroll_pane/category_stack_panel": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "children": [ + "stack_panel", + "legacy_world_stack_panel", + "retailtopreview_world_stack_panel" + ] + }, + "storage_scroll_pane/category_stack_panel/stack_panel": { + "file": "ui/storage_management.json", + "type": "stack_panel" + }, + "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "children": [ + "legacy_world_controls" + ] + }, + "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel/legacy_world_controls": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "extend": { + "name": "storage_main_item_legacy_world_toggle", + "namespace": "storage_management" + } + }, + "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "children": [ + "retailtopreview_world_controls" + ] + }, + "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel/retailtopreview_world_controls": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "extend": { + "name": "storage_main_item_retailtopreview_world_toggle", + "namespace": "storage_management" + } + }, + "storage_scroll_pane/multiselect_padding": { + "file": "ui/storage_management.json", + "type": "panel" + }, + "world_controls": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "extend": { + "name": "storage_main_item_toggle", + "namespace": "storage_management" + } + }, + "world_template_controls": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "extend": { + "name": "storage_main_item_toggle", + "namespace": "storage_management" + } + }, + "resource_controls": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "extend": { + "name": "storage_main_item_toggle", + "namespace": "storage_management" + } + }, + "behavior_controls": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "extend": { + "name": "storage_main_item_toggle", + "namespace": "storage_management" + } + }, + "skin_controls": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "extend": { + "name": "storage_main_item_toggle", + "namespace": "storage_management" + } + }, + "cached_controls": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "extend": { + "name": "storage_main_item_toggle", + "namespace": "storage_management" + } + }, + "resource_sub_item": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "children": [ + "dummy_panel", + "main_panel" + ] + }, + "resource_sub_item/dummy_panel": { + "file": "ui/storage_management.json", + "type": "panel" + }, + "resource_sub_item/main_panel": { + "file": "ui/storage_management.json", + "type": "panel", + "children": [ + "content" + ] + }, + "resource_sub_item/main_panel/content": { + "file": "ui/storage_management.json", + "type": "unknown" + }, + "resource_toggle": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "children": [ + "content_toggle", + "item_button_panel" + ] + }, + "resource_toggle/content_toggle": { + "file": "ui/storage_management.json", + "type": "toggle", + "extend": { + "name": "toggle", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "unchecked", + "unchecked_hover" + ] + }, + "resource_toggle/content_toggle/default": { + "file": "ui/storage_management.json", + "type": "unknown" + }, + "resource_toggle/content_toggle/hover": { + "file": "ui/storage_management.json", + "type": "unknown" + }, + "resource_toggle/content_toggle/unchecked": { + "file": "ui/storage_management.json", + "type": "unknown" + }, + "resource_toggle/content_toggle/unchecked_hover": { + "file": "ui/storage_management.json", + "type": "unknown" + }, + "resource_toggle/item_button_panel": { + "file": "ui/storage_management.json", + "type": "input_panel", + "children": [ + "y_sizing_panel" + ] + }, + "resource_toggle/item_button_panel/y_sizing_panel": { + "file": "ui/storage_management.json", + "type": "panel", + "children": [ + "border" + ] + }, + "resource_toggle/item_button_panel/y_sizing_panel/border": { + "file": "ui/storage_management.json", + "type": "image", + "children": [ + "button_panel" + ] + }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel": { + "file": "ui/storage_management.json", + "type": "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": { + "file": "ui/storage_management.json", + "type": "panel", + "extend": { + "name": "sub_item_blank_button", + "namespace": "storage_management" + } + }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_0": { + "file": "ui/storage_management.json", + "type": "panel" + }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel": { + "file": "ui/storage_management.json", + "type": "panel", + "children": [ + "blank", + "generate_texture_list_button" + ] + }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/blank": { + "file": "ui/storage_management.json", + "type": "panel", + "extend": { + "name": "sub_item_blank_button", + "namespace": "storage_management" + } + }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/generate_texture_list_button": { + "file": "ui/storage_management.json", + "type": "button", + "extend": { + "name": "sub_item_tray_button", + "namespace": "storage_management" + } + }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_1": { + "file": "ui/storage_management.json", + "type": "panel" + }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/delete_button": { + "file": "ui/storage_management.json", + "type": "button", + "extend": { + "name": "sub_item_tray_button", + "namespace": "storage_management" + } + }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_2": { + "file": "ui/storage_management.json", + "type": "panel" + }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel": { + "file": "ui/storage_management.json", + "type": "panel", + "children": [ + "blank", + "share_button" + ] + }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/blank": { + "file": "ui/storage_management.json", + "type": "panel", + "extend": { + "name": "sub_item_blank_button", + "namespace": "storage_management" + } + }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/share_button": { + "file": "ui/storage_management.json", + "type": "button", + "extend": { + "name": "sub_item_tray_button", + "namespace": "storage_management" + } + }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_3": { + "file": "ui/storage_management.json", + "type": "panel" + }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank_3": { + "file": "ui/storage_management.json", + "type": "panel", + "extend": { + "name": "sub_item_blank_button", + "namespace": "storage_management" + } + }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_4": { + "file": "ui/storage_management.json", + "type": "panel" + }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel": { + "file": "ui/storage_management.json", + "type": "panel", + "children": [ + "blank", + "dependency_button" + ] + }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/blank": { + "file": "ui/storage_management.json", + "type": "panel", + "extend": { + "name": "sub_item_blank_button", + "namespace": "storage_management" + } + }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/dependency_button": { + "file": "ui/storage_management.json", + "type": "button", + "extend": { + "name": "sub_item_tray_button", + "namespace": "storage_management" + } + }, + "sub_item_tray_button": { + "file": "ui/storage_management.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "glyph_sub_icon": { + "file": "ui/storage_management.json", + "type": "image" + }, + "sub_item_blank_button": { + "file": "ui/storage_management.json", + "type": "panel", + "extend": { + "name": "new_ui_button_panel", + "namespace": "common_buttons" + } + }, + "texture_icon_text": { + "file": "ui/storage_management.json", + "type": "panel", + "extend": { + "name": "icon_item_text", + "namespace": "storage_management" + } + }, + "texture_icon_sub_item": { + "file": "ui/storage_management.json", + "type": "panel", + "extend": { + "name": "texture_icon_text", + "namespace": "storage_management" + } + }, + "version_sub_item": { + "file": "ui/storage_management.json", + "type": "panel", + "extend": { + "name": "texture_icon_text", + "namespace": "storage_management" + } + }, + "pack_description_sub_item": { + "file": "ui/storage_management.json", + "type": "panel", + "extend": { + "name": "texture_icon_text", + "namespace": "storage_management" + } + }, + "world_sub_text": { + "file": "ui/storage_management.json", + "type": "panel", + "extend": { + "name": "world_item_text", + "namespace": "storage_management" + } + }, + "world_template_sub_text": { + "file": "ui/storage_management.json", + "type": "panel", + "extend": { + "name": "world_item_text", + "namespace": "storage_management" + } + }, + "basic_sub_item": { + "file": "ui/storage_management.json", + "type": "panel", + "extend": { + "name": "icon_item_text", + "namespace": "storage_management" + } + }, + "dropdown_button": { + "file": "ui/storage_management.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "dropdown_button_content": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "children": [ + "image_panel", + "text_panel" + ] + }, + "dropdown_button_content/image_panel": { + "file": "ui/storage_management.json", + "type": "panel", + "children": [ + "icon" + ] + }, + "dropdown_button_content/image_panel/icon": { + "file": "ui/storage_management.json", + "type": "image" + }, + "dropdown_button_content/text_panel": { + "file": "ui/storage_management.json", + "type": "panel", + "children": [ + "main_label" + ] + }, + "dropdown_button_content/text_panel/main_label": { + "file": "ui/storage_management.json", + "type": "label", + "extend": { + "name": "common_label", + "namespace": "storage_management" + } + }, + "filter_options": { + "file": "ui/storage_management.json", + "type": "input_panel", + "children": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ] + }, + "filter_options/0": { + "file": "ui/storage_management.json", + "type": "unknown" + }, + "light_assets": { + "file": "ui/storage_management.json", + "type": "panel" + }, + "button_add": { + "file": "ui/storage_management.json", + "type": "image" + }, + "sort_panel": { + "file": "ui/storage_management.json", + "type": "panel", + "extend": { + "name": "light_assets", + "namespace": "storage_management" + }, + "children": [ + "default" + ] + }, + "sort_panel/default": { + "file": "ui/storage_management.json", + "type": "panel", + "extend": { + "name": "new_ui_button_panel", + "namespace": "common_buttons" + } + }, + "sort_toggle": { + "file": "ui/storage_management.json", + "type": "toggle", + "extend": { + "name": "toggle", + "namespace": "common" + } + }, + "storage_scroll_panel": { + "file": "ui/storage_management.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "storage_main_item_legacy_world_toggle": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "children": [ + "main_item_toggle", + "contentPanel", + "padding" + ] + }, + "storage_main_item_legacy_world_toggle/main_item_toggle": { + "file": "ui/storage_management.json", + "type": "panel", + "extend": { + "name": "light_ui_toggle", + "namespace": "common_toggles" + } + }, + "storage_main_item_legacy_world_toggle/contentPanel": { + "file": "ui/storage_management.json", + "type": "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": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "children": [ + "dummy_panel", + "sync_legacy_world_button" + ] + }, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/dummy_panel": { + "file": "ui/storage_management.json", + "type": "panel" + }, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/sync_legacy_world_button": { + "file": "ui/storage_management.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "storage_main_item_legacy_world_toggle/contentPanel/dummy_panel": { + "file": "ui/storage_management.json", + "type": "panel" + }, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "children": [ + "dummy_panel", + "sync_legacy_world_description" + ] + }, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/dummy_panel": { + "file": "ui/storage_management.json", + "type": "panel" + }, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/sync_legacy_world_description": { + "file": "ui/storage_management.json", + "type": "label" + }, + "storage_main_item_legacy_world_toggle/contentPanel/itemsPanel": { + "file": "ui/storage_management.json", + "type": "stack_panel" + }, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel_dummy_panel": { + "file": "ui/storage_management.json", + "type": "panel" + }, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel": { + "file": "ui/storage_management.json", + "type": "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": { + "file": "ui/storage_management.json", + "type": "panel" + }, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/sync_legacy_world_conversion_description": { + "file": "ui/storage_management.json", + "type": "label" + }, + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel": { + "file": "ui/storage_management.json", + "type": "image", + "extend": { + "name": "label_background", + "namespace": "play" + }, + "children": [ + "loading_legacy_worlds_label", + "padding", + "progress_loading_bars" + ] + }, + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/loading_legacy_worlds_label": { + "file": "ui/storage_management.json", + "type": "label" + }, + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/padding": { + "file": "ui/storage_management.json", + "type": "panel" + }, + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/progress_loading_bars": { + "file": "ui/storage_management.json", + "type": "image" + }, + "storage_main_item_legacy_world_toggle/padding": { + "file": "ui/storage_management.json", + "type": "panel" + }, + "legacy_world_main_item_text": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "extend": { + "name": "main_content_panel", + "namespace": "storage_management" + } + }, + "storage_main_item_retailtopreview_world_toggle": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "children": [ + "main_item_toggle", + "contentPanel", + "padding" + ] + }, + "storage_main_item_retailtopreview_world_toggle/main_item_toggle": { + "file": "ui/storage_management.json", + "type": "panel", + "extend": { + "name": "light_ui_toggle", + "namespace": "common_toggles" + } + }, + "storage_main_item_retailtopreview_world_toggle/contentPanel": { + "file": "ui/storage_management.json", + "type": "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": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "children": [ + "dummy_panel", + "sync_retailtopreview_world_button" + ] + }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/dummy_panel": { + "file": "ui/storage_management.json", + "type": "panel" + }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/sync_retailtopreview_world_button": { + "file": "ui/storage_management.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/dummy_panel": { + "file": "ui/storage_management.json", + "type": "panel" + }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "children": [ + "dummy_panel", + "sync_retailtopreview_world_description" + ] + }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/dummy_panel": { + "file": "ui/storage_management.json", + "type": "panel" + }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/sync_retailtopreview_world_description": { + "file": "ui/storage_management.json", + "type": "label" + }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/itemsPanel": { + "file": "ui/storage_management.json", + "type": "stack_panel" + }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel_dummy_panel": { + "file": "ui/storage_management.json", + "type": "panel" + }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel": { + "file": "ui/storage_management.json", + "type": "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": { + "file": "ui/storage_management.json", + "type": "panel" + }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/sync_retailtopreview_world_conversion_description": { + "file": "ui/storage_management.json", + "type": "label" + }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel": { + "file": "ui/storage_management.json", + "type": "image", + "extend": { + "name": "label_background", + "namespace": "play" + }, + "children": [ + "loading_retailtopreview_worlds_label", + "padding", + "progress_loading_bars" + ] + }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/loading_retailtopreview_worlds_label": { + "file": "ui/storage_management.json", + "type": "label" + }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/padding": { + "file": "ui/storage_management.json", + "type": "panel" + }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/progress_loading_bars": { + "file": "ui/storage_management.json", + "type": "image" + }, + "storage_main_item_retailtopreview_world_toggle/padding": { + "file": "ui/storage_management.json", + "type": "panel" + }, + "retailtopreview_world_main_item_text": { + "file": "ui/storage_management.json", + "type": "stack_panel", + "extend": { + "name": "main_content_panel", + "namespace": "storage_management" + } + } + }, + "storage_management_popup": { + "storage_dependency_modal": { + "file": "ui/storage_management_popup.json", + "type": "input_panel", + "extend": { + "name": "modal_input_panel", + "namespace": "popup_dialog" + }, + "children": [ + "base" + ] + }, + "storage_dependency_modal/base": { + "file": "ui/storage_management_popup.json", + "type": "unknown", + "extend": { + "name": "modal_dialog_base", + "namespace": "popup_dialog" + }, + "children": [ + "background_with_buttons", + "title", + "dependencies", + "two_buttons" + ] + }, + "storage_dependency_modal/base/background_with_buttons": { + "file": "ui/storage_management_popup.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "storage_dependency_modal/base/title": { + "file": "ui/storage_management_popup.json", + "type": "label", + "extend": { + "name": "modal_title_text", + "namespace": "popup_dialog" + } + }, + "storage_dependency_modal/base/dependencies": { + "file": "ui/storage_management_popup.json", + "type": "panel", + "extend": { + "name": "storage_dependency_panel", + "namespace": "storage_management_popup" + } + }, + "storage_dependency_modal/base/two_buttons": { + "file": "ui/storage_management_popup.json", + "type": "panel", + "children": [ + "disabled_left", + "left", + "right" + ] + }, + "storage_dependency_modal/base/two_buttons/disabled_left": { + "file": "ui/storage_management_popup.json", + "type": "unknown", + "extend": { + "name": "modal_first_button", + "namespace": "popup_dialog" + } + }, + "storage_dependency_modal/base/two_buttons/left": { + "file": "ui/storage_management_popup.json", + "type": "unknown", + "extend": { + "name": "modal_first_button", + "namespace": "popup_dialog" + } + }, + "storage_dependency_modal/base/two_buttons/right": { + "file": "ui/storage_management_popup.json", + "type": "unknown", + "extend": { + "name": "modal_second_button", + "namespace": "popup_dialog" + } + }, + "storage_dependency_panel": { + "file": "ui/storage_management_popup.json", + "type": "panel", + "children": [ + "scroll" + ] + }, + "storage_dependency_panel/scroll": { + "file": "ui/storage_management_popup.json", + "type": "panel", + "extend": { + "name": "storage_dependency_scroll_panel", + "namespace": "storage_management_popup" + } + }, + "storage_dependency_scroll_panel": { + "file": "ui/storage_management_popup.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "dependency_item_content": { + "file": "ui/storage_management_popup.json", + "type": "panel", + "children": [ + "content" + ] + }, + "dependency_item_content/content": { + "file": "ui/storage_management_popup.json", + "type": "unknown" + }, + "dependency_scroll_pane": { + "file": "ui/storage_management_popup.json", + "type": "stack_panel", + "children": [ + "main_label", + "contentPanel" + ] + }, + "dependency_scroll_pane/main_label": { + "file": "ui/storage_management_popup.json", + "type": "label" + }, + "dependency_scroll_pane/contentPanel": { + "file": "ui/storage_management_popup.json", + "type": "stack_panel" + }, + "dependency_item": { + "file": "ui/storage_management_popup.json", + "type": "panel", + "extend": { + "name": "pack_description_sub_item", + "namespace": "storage_management" + } + }, + "dependency_item_small": { + "file": "ui/storage_management_popup.json", + "type": "panel", + "extend": { + "name": "version_sub_item", + "namespace": "storage_management" + } + }, + "dependency_resource_item": { + "file": "ui/storage_management_popup.json", + "type": "panel", + "extend": { + "name": "dependency_item", + "namespace": "storage_management_popup" + } + }, + "dependency_resource_item_small": { + "file": "ui/storage_management_popup.json", + "type": "panel", + "extend": { + "name": "dependency_item_small", + "namespace": "storage_management_popup" + } + }, + "dependency_sub_item": { + "file": "ui/storage_management_popup.json", + "type": "stack_panel", + "children": [ + "border", + "padding" + ] + }, + "dependency_sub_item/border": { + "file": "ui/storage_management_popup.json", + "type": "image", + "children": [ + "stack" + ] + }, + "dependency_sub_item/border/stack": { + "file": "ui/storage_management_popup.json", + "type": "stack_panel", + "children": [ + "padding_0", + "wrapper", + "panel_0", + "contentPanel", + "panel_1", + "padding_1" + ] + }, + "dependency_sub_item/border/stack/padding_0": { + "file": "ui/storage_management_popup.json", + "type": "panel" + }, + "dependency_sub_item/border/stack/wrapper": { + "file": "ui/storage_management_popup.json", + "type": "panel", + "children": [ + "dependency_item" + ] + }, + "dependency_sub_item/border/stack/wrapper/dependency_item": { + "file": "ui/storage_management_popup.json", + "type": "panel", + "extend": { + "name": "dependency_item", + "namespace": "storage_management_popup" + } + }, + "dependency_sub_item/border/stack/panel_0": { + "file": "ui/storage_management_popup.json", + "type": "panel", + "children": [ + "main_label" + ] + }, + "dependency_sub_item/border/stack/panel_0/main_label": { + "file": "ui/storage_management_popup.json", + "type": "label" + }, + "dependency_sub_item/border/stack/contentPanel": { + "file": "ui/storage_management_popup.json", + "type": "stack_panel" + }, + "dependency_sub_item/border/stack/panel_1": { + "file": "ui/storage_management_popup.json", + "type": "panel", + "children": [ + "remove_pack_button" + ] + }, + "dependency_sub_item/border/stack/panel_1/remove_pack_button": { + "file": "ui/storage_management_popup.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "dependency_sub_item/border/stack/padding_1": { + "file": "ui/storage_management_popup.json", + "type": "panel" + }, + "dependency_sub_item/padding": { + "file": "ui/storage_management_popup.json", + "type": "panel" + }, + "sharing_popup_content": { + "file": "ui/storage_management_popup.json", + "type": "panel", + "extend": { + "name": "progress_dialog_popup", + "namespace": "popup_dialog" + } + } + }, + "common_store": { + "store_base_screen": { + "file": "ui/store_common.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "label": { + "file": "ui/store_common.json", + "type": "label" + }, + "offer_image_panel": { + "file": "ui/store_common.json", + "type": "image" + }, + "banner_fill": { + "file": "ui/store_common.json", + "type": "image" + }, + "store_description_background": { + "file": "ui/store_common.json", + "type": "image" + }, + "store_description_background_dark": { + "file": "ui/store_common.json", + "type": "image" + }, + "text_style_label": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "text_label" + ] + }, + "text_style_label/text_label": { + "file": "ui/store_common.json", + "type": "label" + }, + "sdl_texture": { + "file": "ui/store_common.json", + "type": "image" + }, + "store_offer_grid_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "hover", + "pressed", + "icon_overlay_panel" + ] + }, + "store_offer_grid_button/hover": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "key_art_size_panel" + ] + }, + "store_offer_grid_button/hover/key_art_size_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "key_art_frame" + ] + }, + "store_offer_grid_button/hover/key_art_size_panel/key_art_frame": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "store_offer_grid_button/pressed": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "key_art_size_panel" + ] + }, + "store_offer_grid_button/pressed/key_art_size_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "key_art_frame" + ] + }, + "store_offer_grid_button/pressed/key_art_size_panel/key_art_frame": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "store_offer_grid_button/icon_overlay_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "icon_overlay_panel", + "namespace": "common_store" + } + }, + "ribbon_bar_text_background": { + "file": "ui/store_common.json", + "type": "image" + }, + "ribbon_bar_red_hover_text_background": { + "file": "ui/store_common.json", + "type": "image" + }, + "store_background": { + "file": "ui/store_common.json", + "type": "image" + }, + "coin_icon": { + "file": "ui/store_common.json", + "type": "image" + }, + "tag": { + "file": "ui/store_common.json", + "type": "image", + "children": [ + "new_offer_label" + ] + }, + "tag/new_offer_label": { + "file": "ui/store_common.json", + "type": "label" + }, + "marketplace_error_icon": { + "file": "ui/store_common.json", + "type": "image" + }, + "new_offer_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "tag", + "namespace": "common_store" + } + }, + "status_new_offer_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "new_offer_icon", + "namespace": "common_store" + } + }, + "update_balloon_icon": { + "file": "ui/store_common.json", + "type": "image" + }, + "badge_overlay_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "top", + "bottom" + ] + }, + "badge_overlay_panel/top": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "badge_overlay_stack", + "namespace": "common_store" + } + }, + "badge_overlay_panel/bottom": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "badge_overlay_stack", + "namespace": "common_store" + } + }, + "badge_overlay_stack": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "left_badge", + "padding", + "right_badge" + ] + }, + "badge_overlay_stack/left_badge": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "content_card_badge", + "namespace": "common_store" + } + }, + "badge_overlay_stack/padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "badge_overlay_stack/right_badge": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "content_card_badge", + "namespace": "common_store" + } + }, + "content_card_tail_image": { + "file": "ui/store_common.json", + "type": "image" + }, + "content_card_badge": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "leftTail", + "background", + "rightTail" + ] + }, + "content_card_badge/leftTail": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "content_card_tail_image", + "namespace": "common_store" + } + }, + "content_card_badge/background": { + "file": "ui/store_common.json", + "type": "image", + "children": [ + "outline" + ] + }, + "content_card_badge/background/outline": { + "file": "ui/store_common.json", + "type": "image", + "children": [ + "badgeStackPanel" + ] + }, + "content_card_badge/background/outline/badgeStackPanel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "paddingLeft", + "badgeIcon", + "paddingMiddle", + "badgeText", + "paddingRight" + ] + }, + "content_card_badge/background/outline/badgeStackPanel/paddingLeft": { + "file": "ui/store_common.json", + "type": "panel" + }, + "content_card_badge/background/outline/badgeStackPanel/badgeIcon": { + "file": "ui/store_common.json", + "type": "image" + }, + "content_card_badge/background/outline/badgeStackPanel/paddingMiddle": { + "file": "ui/store_common.json", + "type": "panel" + }, + "content_card_badge/background/outline/badgeStackPanel/badgeText": { + "file": "ui/store_common.json", + "type": "label" + }, + "content_card_badge/background/outline/badgeStackPanel/paddingRight": { + "file": "ui/store_common.json", + "type": "panel" + }, + "content_card_badge/rightTail": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "content_card_tail_image", + "namespace": "common_store" + } + }, + "icon_overlay_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "icon_overlay_position_factory" + ] + }, + "icon_overlay_panel/icon_overlay_position_factory": { + "file": "ui/store_common.json", + "type": "collection_panel", + "extend": { + "name": "icon_overlay_position_factory", + "namespace": "common_store" + } + }, + "icon_overlay_position_factory": { + "file": "ui/store_common.json", + "type": "collection_panel" + }, + "top_left_icon_factory": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "icon_factory", + "namespace": "common_store" + } + }, + "top_middle_icon_factory": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "icon_factory", + "namespace": "common_store" + } + }, + "top_right_icon_factory": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "icon_factory", + "namespace": "common_store" + } + }, + "left_middle_icon_factory": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "icon_factory", + "namespace": "common_store" + } + }, + "center_icon_factory": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "icon_factory", + "namespace": "common_store" + } + }, + "right_middle_icon_factory": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "icon_factory", + "namespace": "common_store" + } + }, + "bottom_left_icon_factory": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "icon_factory", + "namespace": "common_store" + } + }, + "bottom_middle_icon_factory": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "icon_factory", + "namespace": "common_store" + } + }, + "bottom_right_icon_factory": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "icon_factory", + "namespace": "common_store" + } + }, + "icon_factory": { + "file": "ui/store_common.json", + "type": "stack_panel" + }, + "new_offer_icon_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "new_icon" + ] + }, + "new_offer_icon_panel/new_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "status_new_offer_icon", + "namespace": "common_store" + } + }, + "update_offer_icon_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "update_icon" + ] + }, + "update_offer_icon_panel/update_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "update_balloon_icon", + "namespace": "common_store" + } + }, + "icon_overlay_image_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "image_stack_panel" + ] + }, + "icon_overlay_image_panel/image_stack_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "icon", + "padding" + ] + }, + "icon_overlay_image_panel/image_stack_panel/icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "status_icon_overlay", + "namespace": "common_store" + } + }, + "icon_overlay_image_panel/image_stack_panel/padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "icon_overlay_sdl_padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "status_icon_overlay": { + "file": "ui/store_common.json", + "type": "image", + "children": [ + "icon_overlay_label_panel" + ] + }, + "status_icon_overlay/icon_overlay_label_panel": { + "file": "ui/store_common.json", + "type": "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": { + "file": "ui/store_common.json", + "type": "panel" + }, + "status_icon_overlay/icon_overlay_label_panel/left_padding_1": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "icon_overlay_sdl_padding", + "namespace": "common_store" + } + }, + "status_icon_overlay/icon_overlay_label_panel/left_padding_2": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "icon_overlay_sdl_padding", + "namespace": "common_store" + } + }, + "status_icon_overlay/icon_overlay_label_panel/icon_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "icon_overlay_label" + ] + }, + "status_icon_overlay/icon_overlay_label_panel/icon_panel/icon_overlay_label": { + "file": "ui/store_common.json", + "type": "label" + }, + "status_icon_overlay/icon_overlay_label_panel/right_padding_1": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "icon_overlay_sdl_padding", + "namespace": "common_store" + } + }, + "status_icon_overlay/icon_overlay_label_panel/right_padding_2": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "icon_overlay_sdl_padding", + "namespace": "common_store" + } + }, + "status_icon_overlay/icon_overlay_label_panel/right_margin_padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "status_icon_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "new_offer_icon", + "update_icon" + ] + }, + "status_icon_panel/new_offer_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "status_new_offer_icon", + "namespace": "common_store" + } + }, + "status_icon_panel/update_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "update_balloon_icon", + "namespace": "common_store" + } + }, + "prompt_icon": { + "file": "ui/store_common.json", + "type": "image" + }, + "up_arrow_icon": { + "file": "ui/store_common.json", + "type": "image" + }, + "plus_icon": { + "file": "ui/store_common.json", + "type": "image" + }, + "bang_icon": { + "file": "ui/store_common.json", + "type": "image" + }, + "user_icon_small": { + "file": "ui/store_common.json", + "type": "image" + }, + "user_icon_hover": { + "file": "ui/store_common.json", + "type": "image" + }, + "gamepad_store_helper": { + "file": "ui/store_common.json", + "type": "panel" + }, + "purchase_coins_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "plus_button" + ] + }, + "purchase_coins_panel/plus_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "inventory_panel": { + "file": "ui/store_common.json", + "type": "input_panel", + "children": [ + "inventory_button" + ] + }, + "inventory_panel/inventory_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "progress_loading_bars": { + "file": "ui/store_common.json", + "type": "image" + }, + "progress_loading_spinner": { + "file": "ui/store_common.json", + "type": "image" + }, + "progress_loading": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "centerer", + "progress_loading_outline", + "stack_panel", + "store_failure_code" + ] + }, + "progress_loading/centerer": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "progress_loading_spinner" + ] + }, + "progress_loading/centerer/progress_loading_spinner": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "progress_loading_spinner", + "namespace": "common_store" + } + }, + "progress_loading/progress_loading_outline": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "common_store" + } + }, + "progress_loading/stack_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "top_panel", + "padding", + "image" + ] + }, + "progress_loading/stack_panel/top_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "error_glyph_panel", + "padding", + "store_failure_text" + ] + }, + "progress_loading/stack_panel/top_panel/error_glyph_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "error_image" + ] + }, + "progress_loading/stack_panel/top_panel/error_glyph_panel/error_image": { + "file": "ui/store_common.json", + "type": "image" + }, + "progress_loading/stack_panel/top_panel/padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "progress_loading/stack_panel/top_panel/store_failure_text": { + "file": "ui/store_common.json", + "type": "label" + }, + "progress_loading/stack_panel/padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "progress_loading/stack_panel/image": { + "file": "ui/store_common.json", + "type": "image" + }, + "progress_loading/store_failure_code": { + "file": "ui/store_common.json", + "type": "label" + }, + "store_empty_progress_bar_icon": { + "file": "ui/store_common.json", + "type": "image" + }, + "store_full_progress_bar_icon": { + "file": "ui/store_common.json", + "type": "image" + }, + "store_progress_bar_nub": { + "file": "ui/store_common.json", + "type": "image" + }, + "store_progress_bar_icon": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "empty_progress_bar_icon", + "progress_percent_panel" + ] + }, + "store_progress_bar_icon/empty_progress_bar_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_empty_progress_bar_icon", + "namespace": "common_store" + } + }, + "store_progress_bar_icon/progress_percent_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "full_progress_bar_icon", + "progress_bar_nub" + ] + }, + "store_progress_bar_icon/progress_percent_panel/full_progress_bar_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_full_progress_bar_icon", + "namespace": "common_store" + } + }, + "store_progress_bar_icon/progress_percent_panel/progress_bar_nub": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_progress_bar_nub", + "namespace": "common_store" + } + }, + "screen_contents_with_gamepad_helpers": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "dialog_panel", + "padding", + "gamepad_helpers_panel" + ] + }, + "screen_contents_with_gamepad_helpers/dialog_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "dialog" + ] + }, + "screen_contents_with_gamepad_helpers/dialog_panel/dialog": { + "file": "ui/store_common.json", + "type": "unknown" + }, + "screen_contents_with_gamepad_helpers/padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "screen_contents_with_gamepad_helpers/gamepad_helpers_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "gamepad_helpers_a_and_b" + ] + }, + "screen_contents_with_gamepad_helpers/gamepad_helpers_panel/gamepad_helpers_a_and_b": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helpers_a_and_b", + "namespace": "common" + } + }, + "text_strike_through": { + "file": "ui/store_common.json", + "type": "image" + }, + "markdown_banner": { + "file": "ui/store_common.json", + "type": "image" + }, + "markdown_triangle": { + "file": "ui/store_common.json", + "type": "image" + }, + "timer_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "timer" + ] + }, + "timer_panel/timer": { + "file": "ui/store_common.json", + "type": "label" + }, + "store_offer_type_icon": { + "file": "ui/store_common.json", + "type": "image" + }, + "addon_pack_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_offer_type_icon", + "namespace": "common_store" + } + }, + "addon_pack_small_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_offer_type_icon", + "namespace": "common_store" + } + }, + "realms_plus_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_offer_type_icon", + "namespace": "common_store" + } + }, + "resource_pack_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_offer_type_icon", + "namespace": "common_store" + } + }, + "resource_pack_small_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_offer_type_icon", + "namespace": "common_store" + } + }, + "skinpack_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_offer_type_icon", + "namespace": "common_store" + } + }, + "skinpack_small_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_offer_type_icon", + "namespace": "common_store" + } + }, + "world_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_offer_type_icon", + "namespace": "common_store" + } + }, + "world_small_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_offer_type_icon", + "namespace": "common_store" + } + }, + "mashup_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_offer_type_icon", + "namespace": "common_store" + } + }, + "mashup_small_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_offer_type_icon", + "namespace": "common_store" + } + }, + "persona_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_offer_type_icon", + "namespace": "common_store" + } + }, + "persona_small_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_offer_type_icon", + "namespace": "common_store" + } + }, + "small_padding_panel": { + "file": "ui/store_common.json", + "type": "panel" + }, + "resource_pack_small_icon_with_buffer": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "resource_pack_small_icon", + "small_padding_panel" + ] + }, + "resource_pack_small_icon_with_buffer/resource_pack_small_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "resource_pack_small_icon", + "namespace": "common_store" + } + }, + "resource_pack_small_icon_with_buffer/small_padding_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "small_padding_panel", + "namespace": "common_store" + } + }, + "addon_pack_small_icon_with_buffer": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "addon_pack_small_icon", + "small_padding_panel" + ] + }, + "addon_pack_small_icon_with_buffer/addon_pack_small_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "addon_pack_small_icon", + "namespace": "common_store" + } + }, + "addon_pack_small_icon_with_buffer/small_padding_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "small_padding_panel", + "namespace": "common_store" + } + }, + "skinpack_small_icon_with_buffer": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "skinpack_small_icon", + "small_padding_panel" + ] + }, + "skinpack_small_icon_with_buffer/skinpack_small_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "skinpack_small_icon", + "namespace": "common_store" + } + }, + "skinpack_small_icon_with_buffer/small_padding_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "small_padding_panel", + "namespace": "common_store" + } + }, + "world_small_icon_with_buffer": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "world_small_icon", + "small_padding_panel" + ] + }, + "world_small_icon_with_buffer/world_small_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "world_small_icon", + "namespace": "common_store" + } + }, + "world_small_icon_with_buffer/small_padding_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "small_padding_panel", + "namespace": "common_store" + } + }, + "mashup_small_icon_with_buffer": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "mashup_small_icon", + "small_padding_panel" + ] + }, + "mashup_small_icon_with_buffer/mashup_small_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "mashup_small_icon", + "namespace": "common_store" + } + }, + "mashup_small_icon_with_buffer/small_padding_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "small_padding_panel", + "namespace": "common_store" + } + }, + "persona_small_icon_with_buffer": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "persona_small_icon", + "small_padding_panel" + ] + }, + "persona_small_icon_with_buffer/persona_small_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "persona_small_icon", + "namespace": "common_store" + } + }, + "persona_small_icon_with_buffer/small_padding_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "small_padding_panel", + "namespace": "common_store" + } + }, + "realms_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_offer_type_icon", + "namespace": "common_store" + } + }, + "realms_banner_icon": { + "file": "ui/store_common.json", + "type": "image" + }, + "csb_banner_icon": { + "file": "ui/store_common.json", + "type": "image" + }, + "csb_expiration": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "background", + "contents" + ] + }, + "csb_expiration/background": { + "file": "ui/store_common.json", + "type": "image" + }, + "csb_expiration/contents": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "csb_icon", + "pad_0", + "text_panel" + ] + }, + "csb_expiration/contents/csb_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "csb_banner_icon", + "namespace": "common_store" + } + }, + "csb_expiration/contents/pad_0": { + "file": "ui/store_common.json", + "type": "panel" + }, + "csb_expiration/contents/text_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "text" + ] + }, + "csb_expiration/contents/text_panel/text": { + "file": "ui/store_common.json", + "type": "label" + }, + "pack_icon_stack": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "pack_icon_stack_factory" + ] + }, + "pack_icon_stack/pack_icon_stack_factory": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "pack_icon_stack_factory", + "namespace": "common_store" + } + }, + "pack_icon_stack_factory": { + "file": "ui/store_common.json", + "type": "stack_panel" + }, + "markdown_background": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "banner_panel", + "triangle_panel" + ] + }, + "markdown_background/banner_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "banner" + ] + }, + "markdown_background/banner_panel/banner": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "markdown_banner", + "namespace": "common_store" + }, + "children": [ + "banner_content_stack_panel" + ] + }, + "markdown_background/banner_panel/banner/banner_content_stack_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "timer_panel", + "pack_icon_panel", + "markdown_panel" + ] + }, + "markdown_background/banner_panel/banner/banner_content_stack_panel/timer_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "timer_panel", + "namespace": "common_store" + } + }, + "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "pack_icon_stack" + ] + }, + "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel/pack_icon_stack": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "pack_icon_stack", + "namespace": "common_store" + } + }, + "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "markdown_label" + ] + }, + "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel/markdown_label": { + "file": "ui/store_common.json", + "type": "unknown" + }, + "markdown_background/triangle_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "triangle" + ] + }, + "markdown_background/triangle_panel/triangle": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "markdown_triangle", + "namespace": "common_store" + } + }, + "store_top_bar": { + "file": "ui/store_common.json", + "type": "image" + }, + "store_top_bar_filler": { + "file": "ui/store_common.json", + "type": "image" + }, + "direction_button_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "chevron_image" + ] + }, + "direction_button_panel/chevron_image": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "chevron_image", + "namespace": "common" + } + }, + "cycle_pack_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "cycle_pack_left_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "cycle_pack_button", + "namespace": "common_store" + } + }, + "cycle_pack_right_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "cycle_pack_button", + "namespace": "common_store" + } + }, + "restore_purchases": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "back_content_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "back_button" + ] + }, + "back_content_panel/back_button": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "back_title_button", + "namespace": "common" + } + }, + "unlock_with_coins_button_stack_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "coin_panel", + "padding_1", + "unlock_text" + ] + }, + "unlock_with_coins_button_stack_panel/coin_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "coin" + ] + }, + "unlock_with_coins_button_stack_panel/coin_panel/coin": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "coin_icon", + "namespace": "common_store" + } + }, + "unlock_with_coins_button_stack_panel/padding_1": { + "file": "ui/store_common.json", + "type": "panel" + }, + "unlock_with_coins_button_stack_panel/unlock_text": { + "file": "ui/store_common.json", + "type": "label", + "extend": { + "name": "new_ui_binding_button_label", + "namespace": "common_buttons" + } + }, + "store_dialog_with_coin_header": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + }, + "store_coins_title_label": { + "file": "ui/store_common.json", + "type": "label", + "extend": { + "name": "standard_title_label", + "namespace": "common_dialogs" + } + }, + "search_header_stack": { + "file": "ui/store_common.json", + "type": "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": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "gamepad_helper_y" + ] + }, + "search_header_stack/gamepad_helper_y_alignment_hack/gamepad_helper_y": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_y", + "namespace": "common" + } + }, + "search_header_stack/search_header_text_box_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "search_header_text_box", + "clear_button" + ] + }, + "search_header_stack/search_header_text_box_panel/search_header_text_box": { + "file": "ui/store_common.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "search_header_stack/search_header_text_box_panel/clear_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "common" + } + }, + "search_header_stack/store_layout_search_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "store_layout_ribbon_search_button", + "namespace": "store_layout" + } + }, + "search_header_stack/padding0": { + "file": "ui/store_common.json", + "type": "panel" + }, + "sdl_store_header_with_coins": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "sdl_store_header_with_coins_content" + ] + }, + "sdl_store_header_with_coins/sdl_store_header_with_coins_content": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "sdl_store_header_with_coins_content", + "namespace": "common_store" + } + }, + "top_bar_with_coins_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "top_bar" + ] + }, + "top_bar_with_coins_panel/top_bar": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_top_bar", + "namespace": "common_store" + }, + "children": [ + "title_stack_panel" + ] + }, + "top_bar_with_coins_panel/top_bar/title_stack_panel": { + "file": "ui/store_common.json", + "type": "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": { + "file": "ui/store_common.json", + "type": "panel" + }, + "top_bar_with_coins_panel/top_bar/title_stack_panel/back_button_content_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "back_content_panel", + "namespace": "common_store" + } + }, + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding2": { + "file": "ui/store_common.json", + "type": "panel" + }, + "top_bar_with_coins_panel/top_bar/title_stack_panel/header_title_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "screen_header_title_panel", + "namespace": "common" + } + }, + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding3": { + "file": "ui/store_common.json", + "type": "panel" + }, + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding4": { + "file": "ui/store_common.json", + "type": "panel" + }, + "top_bar_with_coins_panel/top_bar/title_stack_panel/status_and_coins": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "status_with_coins", + "namespace": "common_store" + } + }, + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding5": { + "file": "ui/store_common.json", + "type": "panel" + }, + "top_bar_with_coins_panel/top_bar/title_stack_panel/search_header_stack": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "search_header_stack", + "namespace": "common_store" + } + }, + "sdl_store_header_with_coins_content": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "top_bar_coins" + ] + }, + "sdl_store_header_with_coins_content/top_bar_coins": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "top_bar_with_coins_panel", + "namespace": "common_store" + } + }, + "store_header_with_coins": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "top_bar_coins", + "child_control" + ] + }, + "store_header_with_coins/top_bar_coins": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "top_bar_with_coins_panel", + "namespace": "common_store" + } + }, + "store_header_with_coins/child_control": { + "file": "ui/store_common.json", + "type": "unknown" + }, + "status_with_coins": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "inventory_panel", + "padding0", + "coin_balance_panel", + "padding1" + ] + }, + "status_with_coins/inventory_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "inventory_button" + ] + }, + "status_with_coins/inventory_panel/inventory_button": { + "file": "ui/store_common.json", + "type": "input_panel", + "extend": { + "name": "inventory_panel", + "namespace": "common_store" + } + }, + "status_with_coins/padding0": { + "file": "ui/store_common.json", + "type": "panel" + }, + "status_with_coins/coin_balance_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "coin_balance_panel" + ] + }, + "status_with_coins/coin_balance_panel/coin_balance_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "purchase_coins_panel", + "namespace": "common_store" + } + }, + "status_with_coins/padding1": { + "file": "ui/store_common.json", + "type": "panel" + }, + "coins_with_title": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "coin_balance_panel", + "title_panel" + ] + }, + "coins_with_title/coin_balance_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "purchase_coins_panel", + "namespace": "common_store" + } + }, + "coins_with_title/title_panel": { + "file": "ui/store_common.json", + "type": "unknown" + }, + "wallet_button_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "purchase_coin_panel_alignment_hack", + "plus_image", + "gamepad_helper_x_alignment_hack" + ] + }, + "wallet_button_panel/purchase_coin_panel_alignment_hack": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "purchase_coin_panel" + ] + }, + "wallet_button_panel/purchase_coin_panel_alignment_hack/purchase_coin_panel": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "coin_balance_panel", + "namespace": "common_store" + } + }, + "wallet_button_panel/plus_image": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "new_ui_button_panel", + "namespace": "common_buttons" + } + }, + "wallet_button_panel/gamepad_helper_x_alignment_hack": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "gamepad_helper_x" + ] + }, + "wallet_button_panel/gamepad_helper_x_alignment_hack/gamepad_helper_x": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_x_14", + "namespace": "common" + } + }, + "coin_balance_panel": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "ribbon_bar_text_background", + "namespace": "common_store" + }, + "children": [ + "coin_purchase_in_progress_panel", + "horizontal_coin_stack" + ] + }, + "coin_balance_panel/coin_purchase_in_progress_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "coin_purchase_in_progress" + ] + }, + "coin_balance_panel/coin_purchase_in_progress_panel/coin_purchase_in_progress": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "progress_loading_spinner", + "namespace": "common_store" + } + }, + "coin_balance_panel/horizontal_coin_stack": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "padding", + "coin_icon", + "small_filler", + "coin_text_holder" + ] + }, + "coin_balance_panel/horizontal_coin_stack/padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "coin_balance_panel/horizontal_coin_stack/coin_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "coin_icon", + "namespace": "common_store" + } + }, + "coin_balance_panel/horizontal_coin_stack/small_filler": { + "file": "ui/store_common.json", + "type": "panel" + }, + "coin_balance_panel/horizontal_coin_stack/coin_text_holder": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "coin_balance_text" + ] + }, + "coin_balance_panel/horizontal_coin_stack/coin_text_holder/coin_balance_text": { + "file": "ui/store_common.json", + "type": "label" + }, + "my_account_button_content": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "my_account_content" + ] + }, + "my_account_button_content/my_account_content": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "user_icon", + "my_account_label_panel" + ] + }, + "my_account_button_content/my_account_content/user_icon": { + "file": "ui/store_common.json", + "type": "image" + }, + "my_account_button_content/my_account_content/my_account_label_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "padding", + "my_account_center_label" + ] + }, + "my_account_button_content/my_account_content/my_account_label_panel/padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "my_account_label" + ] + }, + "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label/my_account_label": { + "file": "ui/store_common.json", + "type": "label" + }, + "inventory_button_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "inventory_button" + ] + }, + "inventory_button_panel/inventory_button": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "status_panel" + ] + }, + "inventory_button_panel/inventory_button/status_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "inventory_button", + "namespace": "common_store" + } + }, + "inventory_button": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "my_content_button", + "updates_with_bevel", + "label_alignment_pannel" + ] + }, + "inventory_button/my_content_button": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "library_icon", + "library_icon_bevel" + ] + }, + "inventory_button/my_content_button/library_icon": { + "file": "ui/store_common.json", + "type": "image" + }, + "inventory_button/my_content_button/library_icon_bevel": { + "file": "ui/store_common.json", + "type": "image" + }, + "inventory_button/updates_with_bevel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "update_glyph", + "updates_bevel" + ] + }, + "inventory_button/updates_with_bevel/update_glyph": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "bang_icon", + "namespace": "common_store" + } + }, + "inventory_button/updates_with_bevel/updates_bevel": { + "file": "ui/store_common.json", + "type": "image" + }, + "inventory_button/label_alignment_pannel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "label_panel" + ] + }, + "inventory_button/label_alignment_pannel/label_panel": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "ribbon_bar_text_background", + "namespace": "common_store" + }, + "children": [ + "inventory_label" + ] + }, + "inventory_button/label_alignment_pannel/label_panel/inventory_label": { + "file": "ui/store_common.json", + "type": "label" + }, + "xbl_button_content": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "xbl_icon", + "padding_0", + "disconnected_label", + "padding_1", + "error_icon_panel" + ] + }, + "xbl_button_content/xbl_icon": { + "file": "ui/store_common.json", + "type": "image" + }, + "xbl_button_content/padding_0": { + "file": "ui/store_common.json", + "type": "panel" + }, + "xbl_button_content/disconnected_label": { + "file": "ui/store_common.json", + "type": "label" + }, + "xbl_button_content/padding_1": { + "file": "ui/store_common.json", + "type": "panel" + }, + "xbl_button_content/error_icon_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "error_icon" + ] + }, + "xbl_button_content/error_icon_panel/error_icon": { + "file": "ui/store_common.json", + "type": "image" + }, + "disclaimer_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "legal_text_label" + ] + }, + "disclaimer_panel/legal_text_label": { + "file": "ui/store_common.json", + "type": "label" + }, + "grey_bar_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "color_panel", + "pad" + ] + }, + "grey_bar_panel/color_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "grey_bar", + "green_bar" + ] + }, + "grey_bar_panel/color_panel/grey_bar": { + "file": "ui/store_common.json", + "type": "image" + }, + "grey_bar_panel/color_panel/green_bar": { + "file": "ui/store_common.json", + "type": "image" + }, + "grey_bar_panel/pad": { + "file": "ui/store_common.json", + "type": "panel" + }, + "tab_name_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "bar_panel", + "button_panel", + "pad_1" + ] + }, + "tab_name_panel/bar_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "green_bar" + ] + }, + "tab_name_panel/bar_panel/green_bar": { + "file": "ui/store_common.json", + "type": "image" + }, + "tab_name_panel/button_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "tab_name_button_grey", + "tab_name_button_white" + ] + }, + "tab_name_panel/button_panel/tab_name_button_grey": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "light_text_form_fitting_button", + "namespace": "common_buttons" + } + }, + "tab_name_panel/button_panel/tab_name_button_white": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "light_text_form_fitting_button", + "namespace": "common_buttons" + } + }, + "tab_name_panel/pad_1": { + "file": "ui/store_common.json", + "type": "panel" + }, + "store_offer_item_title_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "offer_title" + ] + }, + "store_offer_item_title_panel/offer_title": { + "file": "ui/store_common.json", + "type": "label", + "extend": { + "name": "store_offer_title", + "namespace": "common_store" + } + }, + "store_offer_item_creator_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "pack_icon_panel", + "creator_label" + ] + }, + "store_offer_item_creator_panel/pack_icon_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "pack_icon_stack" + ] + }, + "store_offer_item_creator_panel/pack_icon_panel/pack_icon_stack": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "pack_icon_stack", + "namespace": "common_store" + } + }, + "store_offer_item_creator_panel/creator_label": { + "file": "ui/store_common.json", + "type": "label" + }, + "store_offer_ratings": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "rating_text_panel" + ] + }, + "store_offer_ratings/rating_text_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "rating_text_panel", + "namespace": "common_store" + } + }, + "vertical_store_offer_price_info_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "sales_banner" + ] + }, + "vertical_store_offer_price_info_panel/sales_banner": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "markdown_stack_panels", + "store_offer_prompt_panel", + "padding_to_right" + ] + }, + "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "markdown_panel", + "padding_markdown_panel_right" + ] + }, + "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/markdown_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "offer_price_markdown_panel", + "namespace": "common_store" + } + }, + "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/padding_markdown_panel_right": { + "file": "ui/store_common.json", + "type": "panel" + }, + "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "offer_status_text" + ] + }, + "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel/offer_status_text": { + "file": "ui/store_common.json", + "type": "label" + }, + "vertical_store_offer_price_info_panel/sales_banner/padding_to_right": { + "file": "ui/store_common.json", + "type": "panel" + }, + "store_offer_price_info_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "sales_banner" + ] + }, + "store_offer_price_info_panel/sales_banner": { + "file": "ui/store_common.json", + "type": "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": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_offer_sales_markdown_percentage_panel", + "namespace": "common_store" + } + }, + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown": { + "file": "ui/store_common.json", + "type": "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": { + "file": "ui/store_common.json", + "type": "panel" + }, + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/markdown_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "offer_price_markdown_panel", + "namespace": "common_store" + } + }, + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/padding_markdown_panel_right": { + "file": "ui/store_common.json", + "type": "panel" + }, + "store_offer_price_info_panel/sales_banner/coin_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "offer_coin_icon" + ] + }, + "store_offer_price_info_panel/sales_banner/coin_panel/offer_coin_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "coin_icon", + "namespace": "common_store" + } + }, + "store_offer_price_info_panel/sales_banner/padding_3": { + "file": "ui/store_common.json", + "type": "panel" + }, + "store_offer_price_info_panel/sales_banner/offer_prompt_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_offer_prompt_panel", + "namespace": "common_store" + } + }, + "store_offer_sales_markdown_percentage_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "markdown_background" + ] + }, + "store_offer_sales_markdown_percentage_panel/markdown_background": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "markdown_background", + "namespace": "common_store" + } + }, + "store_offer_prompt_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "offer_status_text" + ] + }, + "store_offer_prompt_panel/offer_status_text": { + "file": "ui/store_common.json", + "type": "label" + }, + "featured_key_art": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "bg", + "focus_border" + ] + }, + "featured_key_art/bg": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "common_store" + }, + "children": [ + "featured_key_art", + "progress_loading", + "new_offer_icon" + ] + }, + "featured_key_art/bg/featured_key_art": { + "file": "ui/store_common.json", + "type": "image" + }, + "featured_key_art/bg/progress_loading": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "featured_key_art/bg/new_offer_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "status_new_offer_icon", + "namespace": "common_store" + } + }, + "featured_key_art/focus_border": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "price_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "featured_icon_panel", + "price_label_panel", + "padding" + ] + }, + "price_panel/featured_icon_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "featured_offer_coin_icon" + ] + }, + "price_panel/featured_icon_panel/featured_offer_coin_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "coin_icon", + "namespace": "common_store" + } + }, + "price_panel/price_label_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "price" + ] + }, + "price_panel/price_label_panel/price": { + "file": "ui/store_common.json", + "type": "label", + "extend": { + "name": "label", + "namespace": "common_store" + } + }, + "price_panel/padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "vertical_padding_4": { + "file": "ui/store_common.json", + "type": "panel" + }, + "vertical_padding_2": { + "file": "ui/store_common.json", + "type": "panel" + }, + "sdl_vertical_padding_fill": { + "file": "ui/store_common.json", + "type": "panel" + }, + "footer": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "restore_purchases" + ] + }, + "footer/restore_purchases": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "restore_purchases", + "namespace": "common_store" + } + }, + "store_section_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "store_section_panel_outline", + "section_panel" + ] + }, + "store_section_panel/store_section_panel_outline": { + "file": "ui/store_common.json", + "type": "image" + }, + "store_section_panel/section_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "header", + "section_panel" + ] + }, + "store_section_panel/section_panel/header": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "style_header", + "namespace": "common_store" + } + }, + "store_section_panel/section_panel/section_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "background" + ] + }, + "store_section_panel/section_panel/section_panel/background": { + "file": "ui/store_common.json", + "type": "image" + }, + "store_section_factory": { + "file": "ui/store_common.json", + "type": "stack_panel" + }, + "store_static_section_factory": { + "file": "ui/store_common.json", + "type": "stack_panel" + }, + "rtx_label": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "banner" + ] + }, + "rtx_label/banner": { + "file": "ui/store_common.json", + "type": "image", + "children": [ + "icon" + ] + }, + "rtx_label/banner/icon": { + "file": "ui/store_common.json", + "type": "image" + }, + "subscription_chevron": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "subscription_chevron_panel" + ] + }, + "subscription_chevron/subscription_chevron_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "csb_chevron", + "sales_banner_background" + ] + }, + "subscription_chevron/subscription_chevron_panel/csb_chevron": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "csb_banner", + "namespace": "common_store" + } + }, + "subscription_chevron/subscription_chevron_panel/sales_banner_background": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "markdown_banner", + "namespace": "common_store" + } + }, + "csb_banner": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "banner" + ] + }, + "csb_banner/banner": { + "file": "ui/store_common.json", + "type": "image" + }, + "pagination_content_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "padding_left", + "first_page_button", + "pagination_middle_buttons_panel", + "padding_right_fill", + "go_to_top_button" + ] + }, + "pagination_content_panel/padding_left": { + "file": "ui/store_common.json", + "type": "panel" + }, + "pagination_content_panel/first_page_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "pagination_content_panel/pagination_middle_buttons_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "pagination_middle_buttons_panel", + "namespace": "common_store" + } + }, + "pagination_content_panel/padding_right_fill": { + "file": "ui/store_common.json", + "type": "panel" + }, + "pagination_content_panel/go_to_top_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "pagination_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "top_padding", + "pagination_content", + "bottom_padding" + ] + }, + "pagination_panel/top_padding": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "vertical_padding_8px", + "namespace": "common" + } + }, + "pagination_panel/pagination_content": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "pagination_content_panel", + "namespace": "common_store" + } + }, + "pagination_panel/bottom_padding": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "vertical_padding_8px", + "namespace": "common" + } + }, + "store_offer_grid_panel_content": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "header_centerer_panel", + "store_offer_grid_factory", + "pagination_centerer", + "divider" + ] + }, + "store_offer_grid_panel_content/header_centerer_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "vert_stack_centering_panel", + "namespace": "common" + } + }, + "store_offer_grid_panel_content/store_offer_grid_factory": { + "file": "ui/store_common.json", + "type": "collection_panel", + "extend": { + "name": "store_offer_grid_factory", + "namespace": "common_store" + } + }, + "store_offer_grid_panel_content/pagination_centerer": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "vert_stack_centering_panel", + "namespace": "common" + } + }, + "store_offer_grid_panel_content/divider": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "section_divider", + "namespace": "common" + } + }, + "store_offer_grid_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "vert_stack_centering_panel", + "namespace": "common" + } + }, + "pagination_top_button_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "top_button_image" + ] + }, + "pagination_top_button_panel/top_button_image": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "up_arrow_icon", + "namespace": "common_store" + } + }, + "pagination_middle_buttons_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "previous_page_button", + "current_page_number_panel", + "next_page_button" + ] + }, + "pagination_middle_buttons_panel/previous_page_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "pagination_middle_buttons_panel/current_page_number_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "current_page_number" + ] + }, + "pagination_middle_buttons_panel/current_page_number_panel/current_page_number": { + "file": "ui/store_common.json", + "type": "label" + }, + "pagination_middle_buttons_panel/next_page_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "vertical_store_offer_grid_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "header", + "centering_panel", + "padding_0", + "divider" + ] + }, + "vertical_store_offer_grid_panel/header": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "style_header", + "namespace": "common_store" + } + }, + "vertical_store_offer_grid_panel/centering_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "vertical_store_offer_grid_content" + ] + }, + "vertical_store_offer_grid_panel/centering_panel/vertical_store_offer_grid_content": { + "file": "ui/store_common.json", + "type": "grid", + "extend": { + "name": "store_offer_grid", + "namespace": "store_item_list" + } + }, + "vertical_store_offer_grid_panel/padding_0": { + "file": "ui/store_common.json", + "type": "panel" + }, + "vertical_store_offer_grid_panel/divider": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "section_divider", + "namespace": "common" + } + }, + "carousel_row_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "top_panel", + "top_padding", + "middle_panel", + "bottom_panel", + "bottom_padding", + "divider_panel" + ] + }, + "carousel_row_panel/top_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "pad_0", + "tab_names_factory_panel" + ] + }, + "carousel_row_panel/top_panel/pad_0": { + "file": "ui/store_common.json", + "type": "panel" + }, + "carousel_row_panel/top_panel/tab_names_factory_panel": { + "file": "ui/store_common.json", + "type": "stack_panel" + }, + "carousel_row_panel/top_padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "carousel_row_panel/middle_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "left_button_panel", + "main_panel_factory", + "right_button_panel" + ] + }, + "carousel_row_panel/middle_panel/left_button_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "left_button", + "left_bumper" + ] + }, + "carousel_row_panel/middle_panel/left_button_panel/left_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "cycle_pack_button", + "namespace": "common_store" + } + }, + "carousel_row_panel/middle_panel/left_button_panel/left_bumper": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_left_bumper", + "namespace": "common" + } + }, + "carousel_row_panel/middle_panel/main_panel_factory": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "carousel_factory", + "namespace": "common_store" + } + }, + "carousel_row_panel/middle_panel/right_button_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "right_button", + "right_bumper" + ] + }, + "carousel_row_panel/middle_panel/right_button_panel/right_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "cycle_pack_button", + "namespace": "common_store" + } + }, + "carousel_row_panel/middle_panel/right_button_panel/right_bumper": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_right_bumper", + "namespace": "common" + } + }, + "carousel_row_panel/bottom_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "grey_bar_factory_panel" + ] + }, + "carousel_row_panel/bottom_panel/grey_bar_factory_panel": { + "file": "ui/store_common.json", + "type": "stack_panel" + }, + "carousel_row_panel/bottom_padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "carousel_row_panel/divider_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "divider" + ] + }, + "carousel_row_panel/divider_panel/divider": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "common" + } + }, + "carousel_factory": { + "file": "ui/store_common.json", + "type": "stack_panel" + }, + "hero_row_l2_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "header", + "centering_panel", + "padding_0", + "divider" + ] + }, + "hero_row_l2_panel/header": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "style_header", + "namespace": "common_store" + } + }, + "hero_row_l2_panel/centering_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "l2_featured_stack" + ] + }, + "hero_row_l2_panel/centering_panel/l2_featured_stack": { + "file": "ui/store_common.json", + "type": "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": { + "file": "ui/store_common.json", + "type": "panel" + }, + "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_1": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_offer_grid_item", + "namespace": "common_store" + } + }, + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_1": { + "file": "ui/store_common.json", + "type": "panel" + }, + "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_2": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_offer_grid_item", + "namespace": "common_store" + } + }, + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_2": { + "file": "ui/store_common.json", + "type": "panel" + }, + "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_3": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_offer_grid_item", + "namespace": "common_store" + } + }, + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_3": { + "file": "ui/store_common.json", + "type": "panel" + }, + "hero_row_l2_panel/padding_0": { + "file": "ui/store_common.json", + "type": "panel" + }, + "hero_row_l2_panel/divider": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "section_divider", + "namespace": "common" + } + }, + "blade_row_key_art": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "blade_row_key_art_image" + ] + }, + "blade_row_key_art/blade_row_key_art_image": { + "file": "ui/store_common.json", + "type": "image", + "children": [ + "key_art_border" + ] + }, + "blade_row_key_art/blade_row_key_art_image/key_art_border": { + "file": "ui/store_common.json", + "type": "image" + }, + "one_key_art_screenshot": { + "file": "ui/store_common.json", + "type": "image" + }, + "one_key_art_screenshot_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "blade_offer_frame" + ] + }, + "one_key_art_screenshot_panel/blade_offer_frame": { + "file": "ui/store_common.json", + "type": "unknown", + "children": [ + "one_key_art_screenshot" + ] + }, + "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "one_key_art_screenshot", + "namespace": "common_store" + }, + "children": [ + "one_key_art_frame" + ] + }, + "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot/one_key_art_frame": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "screenshots_grid": { + "file": "ui/store_common.json", + "type": "collection_panel", + "children": [ + "screenshot_1", + "screenshot_2", + "screenshot_3", + "screenshot_4" + ] + }, + "screenshots_grid/screenshot_1": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "one_key_art_screenshot_panel", + "namespace": "common_store" + } + }, + "screenshots_grid/screenshot_2": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "one_key_art_screenshot_panel", + "namespace": "common_store" + } + }, + "screenshots_grid/screenshot_3": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "one_key_art_screenshot_panel", + "namespace": "common_store" + } + }, + "screenshots_grid/screenshot_4": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "one_key_art_screenshot_panel", + "namespace": "common_store" + } + }, + "blade_offer_details_title": { + "file": "ui/store_common.json", + "type": "label" + }, + "blade_offer_sale_markdown": { + "file": "ui/store_common.json", + "type": "label" + }, + "blade_offer_description_details": { + "file": "ui/store_common.json", + "type": "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": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "blade_title" + ] + }, + "blade_offer_description_details/blade_title_stack/blade_title": { + "file": "ui/store_common.json", + "type": "label", + "extend": { + "name": "blade_offer_details_title", + "namespace": "common_store" + } + }, + "blade_offer_description_details/blade_offer_creator_label": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "store_offer_item_creator_panel", + "namespace": "common_store" + } + }, + "blade_offer_description_details/blade_offer_description_padding_2": { + "file": "ui/store_common.json", + "type": "panel" + }, + "blade_offer_description_details/ratings_and_coins": { + "file": "ui/store_common.json", + "type": "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": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "subscription_chevron", + "namespace": "common_store" + } + }, + "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "blade_markdown_background" + ] + }, + "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel/blade_markdown_background": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "markdown_background", + "namespace": "common_store" + } + }, + "blade_offer_description_details/ratings_and_coins/ratings_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "blade_ratings" + ] + }, + "blade_offer_description_details/ratings_and_coins/ratings_panel/blade_ratings": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "ratings_description", + "namespace": "common_store" + } + }, + "blade_offer_description_details/ratings_and_coins/blade_rating_count_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_rating_count_panel", + "namespace": "common_store" + } + }, + "blade_offer_description_details/ratings_and_coins/fill_padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "blade_offer_description_details/ratings_and_coins/blade_offer_price_markdown_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "offer_price_markdown_panel", + "namespace": "common_store" + } + }, + "blade_offer_description_details/ratings_and_coins/price_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "price" + ] + }, + "blade_offer_description_details/ratings_and_coins/price_panel/price": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "price_panel", + "namespace": "common_store" + } + }, + "blade_offer_description_details/ratings_and_coins/price_panel_padding_right": { + "file": "ui/store_common.json", + "type": "panel" + }, + "blade_offer_description_details/blade_offer_description_padding_3": { + "file": "ui/store_common.json", + "type": "panel" + }, + "screenshots_and_offer_details_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "blade_offer_screenshots_grid", + "blade_offer_description_area" + ] + }, + "screenshots_and_offer_details_panel/blade_offer_screenshots_grid": { + "file": "ui/store_common.json", + "type": "collection_panel", + "extend": { + "name": "screenshots_grid", + "namespace": "common_store" + } + }, + "screenshots_and_offer_details_panel/blade_offer_description_area": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_description_background", + "namespace": "common_store" + }, + "children": [ + "blade_offer_description_border", + "hero_blade_offer_description_details" + ] + }, + "screenshots_and_offer_details_panel/blade_offer_description_area/blade_offer_description_border": { + "file": "ui/store_common.json", + "type": "image" + }, + "screenshots_and_offer_details_panel/blade_offer_description_area/hero_blade_offer_description_details": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "blade_offer_description_details", + "namespace": "common_store" + } + }, + "blade_row_featured_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "blade_row_featured_key_art", + "blade_offer_screenshots_and_details_panel" + ] + }, + "blade_row_featured_panel/blade_row_featured_key_art": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "blade_row_key_art", + "namespace": "common_store" + } + }, + "blade_row_featured_panel/blade_offer_screenshots_and_details_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "screenshots_and_offer_details_panel", + "namespace": "common_store" + } + }, + "transparent_content_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "hero_blade_row_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "blade_row_transparent_button" + ] + }, + "hero_blade_row_panel/blade_row_transparent_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "transparent_content_button", + "namespace": "common_store" + } + }, + "hero_row_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "header", + "centering_panel", + "padding_0", + "divider" + ] + }, + "hero_row_panel/header": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "style_header", + "namespace": "common_store" + } + }, + "hero_row_panel/centering_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "featured_stack" + ] + }, + "hero_row_panel/centering_panel/featured_stack": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "hero_offer", + "padding_0", + "hero_offer_grid" + ] + }, + "hero_row_panel/centering_panel/featured_stack/hero_offer": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "single_image_with_border_button", + "namespace": "common_buttons" + } + }, + "hero_row_panel/centering_panel/featured_stack/padding_0": { + "file": "ui/store_common.json", + "type": "panel" + }, + "hero_row_panel/centering_panel/featured_stack/hero_offer_grid": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "hero_offer_grid", + "namespace": "common_store" + } + }, + "hero_row_panel/padding_0": { + "file": "ui/store_common.json", + "type": "panel" + }, + "hero_row_panel/divider": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "section_divider", + "namespace": "common" + } + }, + "hero_offer": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "featured_key_art", + "rtx_label", + "offer_description_area" + ] + }, + "hero_offer/featured_key_art": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "featured_key_art", + "namespace": "common_store" + } + }, + "hero_offer/rtx_label": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "rtx_label", + "namespace": "common_store" + } + }, + "hero_offer/offer_description_area": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_description_background", + "namespace": "common_store" + }, + "children": [ + "hero_offer_description_details" + ] + }, + "hero_offer/offer_description_area/hero_offer_description_details": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "hero_offer_description_details", + "namespace": "common_store" + } + }, + "hero_offer_details_title": { + "file": "ui/store_common.json", + "type": "label" + }, + "hero_offer_description_details": { + "file": "ui/store_common.json", + "type": "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": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "title" + ] + }, + "hero_offer_description_details/hero_title_stack/title": { + "file": "ui/store_common.json", + "type": "label", + "extend": { + "name": "hero_offer_details_title", + "namespace": "common_store" + } + }, + "hero_offer_description_details/padding_5": { + "file": "ui/store_common.json", + "type": "panel" + }, + "hero_offer_description_details/progress": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "hero_offer_download_progress", + "namespace": "common_store" + } + }, + "hero_offer_description_details/creator_label": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "store_offer_item_creator_panel", + "namespace": "common_store" + } + }, + "hero_offer_description_details/padding_0": { + "file": "ui/store_common.json", + "type": "panel" + }, + "hero_offer_description_details/durable_offer_info_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "offer_status_panel" + ] + }, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel": { + "file": "ui/store_common.json", + "type": "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": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "subscription_chevron", + "namespace": "common_store" + } + }, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "markdown_banner" + ] + }, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "markdown_background", + "namespace": "common_store" + } + }, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "ratings" + ] + }, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel/ratings": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "ratings_description", + "namespace": "common_store" + } + }, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/rating_count_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_rating_count_panel", + "namespace": "common_store" + } + }, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "pack_icon_stack" + ] + }, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "pack_icon_stack", + "namespace": "common_store" + } + }, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/fill_padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/offer_price_markdown_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "offer_price_markdown_panel", + "namespace": "common_store" + } + }, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "price" + ] + }, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel/price": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "price_panel", + "namespace": "common_store" + } + }, + "hero_offer_description_details/padding_1": { + "file": "ui/store_common.json", + "type": "panel" + }, + "hero_offer_download_progress": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "label", + "bar" + ] + }, + "hero_offer_download_progress/label": { + "file": "ui/store_common.json", + "type": "label" + }, + "hero_offer_download_progress/bar": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_progress_bar_icon", + "namespace": "common_store" + } + }, + "rating_text_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "left_padding", + "star_panel", + "middle_padding", + "rating_label" + ] + }, + "rating_text_panel/left_padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "rating_text_panel/star_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "rating_star" + ] + }, + "rating_text_panel/star_panel/rating_star": { + "file": "ui/store_common.json", + "type": "image" + }, + "rating_text_panel/middle_padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "rating_text_panel/rating_label": { + "file": "ui/store_common.json", + "type": "label" + }, + "ratings_description": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "rating_text_panel" + ] + }, + "ratings_description/rating_text_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "rating_text_panel", + "namespace": "common_store" + } + }, + "store_rating_count_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "rating_count_text" + ] + }, + "store_rating_count_panel/rating_count_text": { + "file": "ui/store_common.json", + "type": "label" + }, + "hero_offer_grid": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "row_1", + "padding_0", + "row_2" + ] + }, + "hero_offer_grid/row_1": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "offer_1", + "padding_0", + "offer_2" + ] + }, + "hero_offer_grid/row_1/offer_1": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_offer_grid_item", + "namespace": "common_store" + } + }, + "hero_offer_grid/row_1/padding_0": { + "file": "ui/store_common.json", + "type": "panel" + }, + "hero_offer_grid/row_1/offer_2": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_offer_grid_item", + "namespace": "common_store" + } + }, + "hero_offer_grid/padding_0": { + "file": "ui/store_common.json", + "type": "panel" + }, + "hero_offer_grid/row_2": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "offer_1", + "padding_0", + "offer_2" + ] + }, + "hero_offer_grid/row_2/offer_1": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_offer_grid_item", + "namespace": "common_store" + } + }, + "hero_offer_grid/row_2/padding_0": { + "file": "ui/store_common.json", + "type": "panel" + }, + "hero_offer_grid/row_2/offer_2": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_offer_grid_item", + "namespace": "common_store" + } + }, + "offer_download_progress": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "label", + "bar" + ] + }, + "offer_download_progress/label": { + "file": "ui/store_common.json", + "type": "label" + }, + "offer_download_progress/bar": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_progress_bar_icon", + "namespace": "common_store" + } + }, + "banner_button": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "new_ui_width_fitting_button_panel", + "namespace": "common_buttons" + } + }, + "sdl_text_aligned_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "sdl_content_aligned_panel", + "namespace": "common_store" + } + }, + "sdl_text_minecraftTen_aligned_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "sdl_content_aligned_panel", + "namespace": "common_store" + } + }, + "sdl_content_aligned_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "left__padding_panel", + "control", + "right_padding_panel" + ] + }, + "sdl_content_aligned_panel/left__padding_panel": { + "file": "ui/store_common.json", + "type": "panel" + }, + "sdl_content_aligned_panel/control": { + "file": "ui/store_common.json", + "type": "unknown" + }, + "sdl_content_aligned_panel/right_padding_panel": { + "file": "ui/store_common.json", + "type": "panel" + }, + "sdl_aligned_text": { + "file": "ui/store_common.json", + "type": "label" + }, + "sdl_aligned_minecraftTen_text": { + "file": "ui/store_common.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "content_offer_key_art": { + "file": "ui/store_common.json", + "type": "image" + }, + "vertical_content_offer_header": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_description_background", + "namespace": "common_store" + }, + "children": [ + "header" + ] + }, + "vertical_content_offer_header/header": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "sdl_text_aligned_panel", + "namespace": "common_store" + } + }, + "vertical_content_offer_panel": { + "file": "ui/store_common.json", + "type": "stack_panel" + }, + "vertical_offer_grid_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_section_panel", + "namespace": "common_store" + } + }, + "offer_content": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "offer_item" + ] + }, + "offer_content/offer_item": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_offer_grid_item", + "namespace": "common_store" + } + }, + "vertical_offer_content": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "offer_item" + ] + }, + "vertical_offer_content/offer_item": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "vertical_store_offer_grid_item", + "namespace": "common_store" + } + }, + "vertical_coin_offer_content": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "offer_item" + ] + }, + "vertical_coin_offer_content/offer_item": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "vertical_store_coin_offer_grid_item", + "namespace": "common_store" + } + }, + "store_offer_key_art": { + "file": "ui/store_common.json", + "type": "image" + }, + "store_offer_grid_show_more": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "frame", + "offer_button" + ] + }, + "store_offer_grid_show_more/frame": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "common_store" + }, + "children": [ + "title" + ] + }, + "store_offer_grid_show_more/frame/title": { + "file": "ui/store_common.json", + "type": "label" + }, + "store_offer_grid_show_more/offer_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "hover", + "pressed" + ] + }, + "store_offer_grid_show_more/offer_button/hover": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + }, + "children": [ + "key_art_size_panel" + ] + }, + "store_offer_grid_show_more/offer_button/hover/key_art_size_panel": { + "file": "ui/store_common.json", + "type": "panel" + }, + "store_offer_grid_show_more/offer_button/pressed": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + }, + "children": [ + "key_art_size_panel" + ] + }, + "store_offer_grid_show_more/offer_button/pressed/key_art_size_panel": { + "file": "ui/store_common.json", + "type": "panel" + }, + "persona_grid_show_more": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "row_offer_sale_markdown": { + "file": "ui/store_common.json", + "type": "label" + }, + "discount_label": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "label_panel", + "icon_panel" + ] + }, + "discount_label/label_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "label" + ] + }, + "discount_label/label_panel/label": { + "file": "ui/store_common.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "discount_label/icon_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "icon" + ] + }, + "discount_label/icon_panel/icon": { + "file": "ui/store_common.json", + "type": "image" + }, + "hero_offer_sale_markdown": { + "file": "ui/store_common.json", + "type": "label" + }, + "offer_price_markdown_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "offer_price" + ] + }, + "offer_price_markdown_panel/offer_price": { + "file": "ui/store_common.json", + "type": "label", + "children": [ + "text_strike_through" + ] + }, + "offer_price_markdown_panel/offer_price/text_strike_through": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "text_strike_through", + "namespace": "common_store" + } + }, + "store_offer_title": { + "file": "ui/store_common.json", + "type": "label" + }, + "store_offer_key_art_frame": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_description_background", + "namespace": "common_store" + }, + "children": [ + "key_art", + "progress_loading" + ] + }, + "store_offer_key_art_frame/key_art": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_offer_key_art", + "namespace": "common_store" + }, + "children": [ + "key_art_frame", + "csb_expiration_banner" + ] + }, + "store_offer_key_art_frame/key_art/key_art_frame": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "store_offer_key_art_frame/key_art/csb_expiration_banner": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "csb_expiration", + "namespace": "common_store" + } + }, + "store_offer_key_art_frame/progress_loading": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "vertical_store_offer_grid_item": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "frame", + "dark_frame" + ] + }, + "vertical_store_offer_grid_item/frame": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_description_background", + "namespace": "common_store" + }, + "children": [ + "horizontal_stack_panel", + "offer_button" + ] + }, + "vertical_store_offer_grid_item/frame/horizontal_stack_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "vertical_store_offer_grid_inside_frame", + "namespace": "common_store" + } + }, + "vertical_store_offer_grid_item/frame/offer_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "store_offer_grid_button", + "namespace": "common_store" + } + }, + "vertical_store_offer_grid_item/dark_frame": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_description_background_dark", + "namespace": "common_store" + }, + "children": [ + "horizontal_stack_panel", + "offer_button" + ] + }, + "vertical_store_offer_grid_item/dark_frame/horizontal_stack_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "vertical_store_offer_grid_inside_frame", + "namespace": "common_store" + } + }, + "vertical_store_offer_grid_item/dark_frame/offer_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "store_offer_grid_button", + "namespace": "common_store" + } + }, + "vertical_store_offer_grid_inside_frame": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "key_art_size_panel", + "offer_details_general_panel" + ] + }, + "vertical_store_offer_grid_inside_frame/key_art_size_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "key_art_frame", + "key_art" + ] + }, + "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art_frame": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_offer_key_art", + "namespace": "common_store" + } + }, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "general_offer_details_stack_panel" + ] + }, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel": { + "file": "ui/store_common.json", + "type": "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": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "title" + ] + }, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding/title": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_offer_item_title_panel", + "namespace": "common_store" + } + }, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding": { + "file": "ui/store_common.json", + "type": "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": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "store_offer_item_creator_panel", + "namespace": "common_store" + } + }, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding": { + "file": "ui/store_common.json", + "type": "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": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_offer_ratings", + "namespace": "common_store" + } + }, + "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": { + "file": "ui/store_common.json", + "type": "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": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "vertical_store_offer_price_info_panel", + "namespace": "common_store" + } + }, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/right_side_padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "vertical_store_coin_offer_grid_item": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "frame", + "dark_frame" + ] + }, + "vertical_store_coin_offer_grid_item/frame": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_description_background", + "namespace": "common_store" + }, + "children": [ + "horizontal_stack_panel" + ] + }, + "vertical_store_coin_offer_grid_item/frame/horizontal_stack_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "vertical_coin_offer_grid_inside_frame", + "namespace": "common_store" + } + }, + "vertical_store_coin_offer_grid_item/dark_frame": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_description_background_dark", + "namespace": "common_store" + }, + "children": [ + "horizontal_stack_panel", + "offer_button" + ] + }, + "vertical_store_coin_offer_grid_item/dark_frame/horizontal_stack_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "vertical_coin_offer_grid_inside_frame", + "namespace": "common_store" + } + }, + "vertical_store_coin_offer_grid_item/dark_frame/offer_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "store_offer_grid_button", + "namespace": "common_store" + } + }, + "vertical_coin_offer_grid_inside_frame": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "key_art_size_panel", + "padding", + "coin_panel", + "Minecoins_panel" + ] + }, + "vertical_coin_offer_grid_inside_frame/key_art_size_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "key_art_frame", + "key_art" + ] + }, + "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art_frame": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_offer_key_art", + "namespace": "common_store" + } + }, + "vertical_coin_offer_grid_inside_frame/padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "vertical_coin_offer_grid_inside_frame/coin_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "offer_coin_icon" + ] + }, + "vertical_coin_offer_grid_inside_frame/coin_panel/offer_coin_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "coin_icon", + "namespace": "common_store" + } + }, + "vertical_coin_offer_grid_inside_frame/Minecoins_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "minecoins_vert_stack_panel" + ] + }, + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel": { + "file": "ui/store_common.json", + "type": "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": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "minecoins_prompt_panel" + ] + }, + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel": { + "file": "ui/store_common.json", + "type": "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": { + "file": "ui/store_common.json", + "type": "label" + }, + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "title" + ] + }, + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding/title": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_offer_item_title_panel", + "namespace": "common_store" + } + }, + "offer_prompt_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "coin_panel", + "padding_3", + "offer_status_text_panel" + ] + }, + "offer_prompt_panel/coin_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "offer_coin_icon" + ] + }, + "offer_prompt_panel/coin_panel/offer_coin_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "coin_icon", + "namespace": "common_store" + } + }, + "offer_prompt_panel/padding_3": { + "file": "ui/store_common.json", + "type": "panel" + }, + "offer_prompt_panel/offer_status_text_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "offer_status_text" + ] + }, + "offer_prompt_panel/offer_status_text_panel/offer_status_text": { + "file": "ui/store_common.json", + "type": "label" + }, + "store_offer_grid_item": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "frame" + ] + }, + "store_offer_grid_item/frame": { + "file": "ui/store_common.json", + "type": "unknown", + "children": [ + "key_art", + "progress_loading", + "progress", + "durable_offer_info_panel", + "offer_button" + ] + }, + "store_offer_grid_item/frame/key_art": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_offer_key_art", + "namespace": "common_store" + }, + "children": [ + "key_art_frame", + "csb_plus_expiration_banner", + "badge_overlay_panel" + ] + }, + "store_offer_grid_item/frame/key_art/key_art_frame": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "store_offer_grid_item/frame/key_art/csb_plus_expiration_banner": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "csb_expiration", + "namespace": "common_store" + } + }, + "store_offer_grid_item/frame/key_art/badge_overlay_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "badge_overlay_panel", + "namespace": "common_store" + } + }, + "store_offer_grid_item/frame/progress_loading": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "store_offer_grid_item/frame/progress": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "offer_download_progress", + "namespace": "common_store" + } + }, + "store_offer_grid_item/frame/durable_offer_info_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "title_label_padding_stack", + "offer_status_panel" + ] + }, + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack": { + "file": "ui/store_common.json", + "type": "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": { + "file": "ui/store_common.json", + "type": "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": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_offer_item_title_panel", + "namespace": "common_store" + } + }, + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/creator_label": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "store_offer_item_creator_panel", + "namespace": "common_store" + } + }, + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/offer_price_info_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "store_offer_price_info_panel", + "namespace": "common_store" + } + }, + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/no_durable_status_padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel": { + "file": "ui/store_common.json", + "type": "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": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "rtx_label", + "namespace": "common_store" + } + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "subscription_chevron", + "namespace": "common_store" + } + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner": { + "file": "ui/store_common.json", + "type": "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": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "markdown_banner" + ] + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel/markdown_banner": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "markdown_background", + "namespace": "common_store" + } + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/ratings": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_offer_ratings", + "namespace": "common_store" + } + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rating_count_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_rating_count_panel", + "namespace": "common_store" + } + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "pack_icon_stack" + ] + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "pack_icon_stack", + "namespace": "common_store" + } + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left": { + "file": "ui/store_common.json", + "type": "panel" + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "offer_price_markdown_panel", + "namespace": "common_store" + } + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right": { + "file": "ui/store_common.json", + "type": "panel" + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "offer_prompt_panel", + "namespace": "common_store" + } + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6": { + "file": "ui/store_common.json", + "type": "panel" + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "sale_timer" + ] + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel/sale_timer": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "timer_panel", + "namespace": "common_store" + } + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_2": { + "file": "ui/store_common.json", + "type": "panel" + }, + "store_offer_grid_item/frame/offer_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "store_offer_grid_button", + "namespace": "common_store" + } + }, + "thumbnail_only_offer": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "frame" + ] + }, + "thumbnail_only_offer/frame": { + "file": "ui/store_common.json", + "type": "unknown", + "children": [ + "key_art", + "offer_button" + ] + }, + "thumbnail_only_offer/frame/key_art": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_offer_key_art", + "namespace": "common_store" + }, + "children": [ + "key_art_frame", + "offer_coin_icon" + ] + }, + "thumbnail_only_offer/frame/key_art/key_art_frame": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "thumbnail_only_offer/frame/key_art/offer_coin_icon": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "coin_icon", + "namespace": "common_store" + } + }, + "thumbnail_only_offer/frame/offer_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "store_offer_grid_button", + "namespace": "common_store" + } + }, + "store_section_header_label": { + "file": "ui/store_common.json", + "type": "label", + "extend": { + "name": "label", + "namespace": "common_store" + } + }, + "persona_store_row_offer": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "persona_offer" + ] + }, + "persona_store_row_offer/persona_offer": { + "file": "ui/store_common.json", + "type": "unknown", + "extend": { + "name": "persona_piece_offer", + "namespace": "persona_sdl" + } + }, + "thumnail_only_row_offer": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "generic_store_offer" + ] + }, + "thumnail_only_row_offer/generic_store_offer": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "thumbnail_only_offer", + "namespace": "common_store" + } + }, + "generic_store_row_offer_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "generic_store_offer" + ] + }, + "generic_store_row_offer_panel/generic_store_offer": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_offer_grid_item", + "namespace": "common_store" + } + }, + "store_row_show_more_button_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "show_more_button" + ] + }, + "store_row_show_more_button_panel/show_more_button": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_offer_grid_show_more", + "namespace": "common_store" + } + }, + "persona_show_more_button_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "show_more_button" + ] + }, + "persona_show_more_button_panel/show_more_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "persona_grid_show_more", + "namespace": "common_store" + } + }, + "persona_grid_panel_stack": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "default_piece_button", + "persona_grid_panel" + ] + }, + "persona_grid_panel_stack/default_piece_button": { + "file": "ui/store_common.json", + "type": "unknown", + "extend": { + "name": "default_piece_button_panel", + "namespace": "persona_sdl" + } + }, + "persona_grid_panel_stack/persona_grid_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "persona_grid_panel", + "namespace": "common_store" + } + }, + "persona_grid_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "persona_offer_grid" + ] + }, + "persona_grid_panel/persona_offer_grid": { + "file": "ui/store_common.json", + "type": "grid", + "extend": { + "name": "persona_offer_grid", + "namespace": "store_item_list" + } + }, + "store_offer_grid_factory": { + "file": "ui/store_common.json", + "type": "collection_panel" + }, + "non_collection_item_horizontal_padding": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "horizontal_padding_2px", + "namespace": "common" + } + }, + "horizontal_store_offer_row_factory": { + "file": "ui/store_common.json", + "type": "stack_panel" + }, + "static_offer_row_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "store_row_dropdown_panel" + ] + }, + "static_offer_row_panel/store_row_dropdown_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "store_row_section_panel" + ] + }, + "static_offer_row_panel/store_row_dropdown_panel/store_row_section_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_section_panel", + "namespace": "common_store" + } + }, + "store_row_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "store_row_dropdown_panel" + ] + }, + "store_row_panel/store_row_dropdown_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "store_row_section_panel" + ] + }, + "store_row_panel/store_row_dropdown_panel/store_row_section_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_section_panel", + "namespace": "common_store" + } + }, + "vertical_store_row_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_section_panel", + "namespace": "common_store" + } + }, + "style_header": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "background", + "style_header" + ] + }, + "style_header/background": { + "file": "ui/store_common.json", + "type": "image" + }, + "style_header/style_header": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "style_header_panel", + "namespace": "common_store" + } + }, + "style_header_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "row_header", + "row_carousel_padding" + ] + }, + "style_header_panel/row_header": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "label_panel" + ] + }, + "style_header_panel/row_header/label_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "indent", + "row_header_label_centering_panel", + "on_sale_banner", + "time_remaining_label" + ] + }, + "style_header_panel/row_header/label_panel/indent": { + "file": "ui/store_common.json", + "type": "panel" + }, + "style_header_panel/row_header/label_panel/row_header_label_centering_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "row_header_label" + ] + }, + "style_header_panel/row_header/label_panel/row_header_label_centering_panel/row_header_label": { + "file": "ui/store_common.json", + "type": "label", + "extend": { + "name": "store_section_header_label", + "namespace": "common_store" + } + }, + "style_header_panel/row_header/label_panel/on_sale_banner": { + "file": "ui/store_common.json", + "type": "image", + "children": [ + "padding_panel" + ] + }, + "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "sales_row_header_label", + "triangle" + ] + }, + "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label": { + "file": "ui/store_common.json", + "type": "label", + "extend": { + "name": "store_section_header_label", + "namespace": "common_store" + } + }, + "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/triangle": { + "file": "ui/store_common.json", + "type": "image" + }, + "style_header_panel/row_header/label_panel/time_remaining_label": { + "file": "ui/store_common.json", + "type": "label", + "extend": { + "name": "label", + "namespace": "common_store" + } + }, + "style_header_panel/row_carousel_padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "store_row_cycle_button_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "cycle_button_panel" + ] + }, + "store_row_cycle_button_panel/cycle_button_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "page_indicator_panel" + ] + }, + "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "page_indicator" + ] + }, + "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel/page_indicator": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "page_indicator_panel", + "namespace": "common_store" + } + }, + "store_row": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "carousel_panel", + "divider" + ] + }, + "store_row/carousel_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "progress_loading", + "cycle_pack_horizontal_stack" + ] + }, + "store_row/carousel_panel/progress_loading": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "store_row/carousel_panel/cycle_pack_horizontal_stack": { + "file": "ui/store_common.json", + "type": "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": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_row_cycle_button_panel", + "namespace": "common_store" + } + }, + "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "offer_grid" + ] + }, + "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel/offer_grid": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "horizontal_store_offer_row_factory", + "namespace": "common_store" + } + }, + "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_right_button_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "store_row_cycle_button_panel", + "namespace": "common_store" + } + }, + "store_row/divider": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "section_divider", + "namespace": "common" + } + }, + "page_indicator_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "first_of_three", + "second_of_three", + "third_of_three", + "first_of_two", + "second_of_two" + ] + }, + "page_indicator_panel/first_of_three": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "page_indicator", + "namespace": "common_store" + } + }, + "page_indicator_panel/second_of_three": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "page_indicator", + "namespace": "common_store" + } + }, + "page_indicator_panel/third_of_three": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "page_indicator", + "namespace": "common_store" + } + }, + "page_indicator_panel/first_of_two": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "page_indicator", + "namespace": "common_store" + } + }, + "page_indicator_panel/second_of_two": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "page_indicator", + "namespace": "common_store" + } + }, + "page_indicator": { + "file": "ui/store_common.json", + "type": "image" + }, + "popup_dialog__no_store_connection": { + "file": "ui/store_common.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog", + "namespace": "popup_dialog" + }, + "children": [ + "popup_dialog_bg", + "popup_dialog_message", + "popup_dialog_middle_button" + ] + }, + "popup_dialog__no_store_connection/popup_dialog_bg": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "popup_dialog_bg", + "namespace": "popup_dialog" + } + }, + "popup_dialog__no_store_connection/popup_dialog_message": { + "file": "ui/store_common.json", + "type": "label", + "extend": { + "name": "popup_dialog_message", + "namespace": "popup_dialog" + } + }, + "popup_dialog__no_store_connection/popup_dialog_middle_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "popup_dialog_middle_button", + "namespace": "popup_dialog" + } + }, + "popup_dialog__restore_popup": { + "file": "ui/store_common.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog", + "namespace": "popup_dialog" + }, + "children": [ + "popup_dialog_bg", + "popup_dialog_message" + ] + }, + "popup_dialog__restore_popup/popup_dialog_bg": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "popup_dialog_bg", + "namespace": "popup_dialog" + } + }, + "popup_dialog__restore_popup/popup_dialog_message": { + "file": "ui/store_common.json", + "type": "label", + "extend": { + "name": "popup_dialog_message", + "namespace": "popup_dialog" + } + }, + "popup_dialog__restore_failed": { + "file": "ui/store_common.json", + "type": "input_panel", + "extend": { + "name": "popup_dialog", + "namespace": "popup_dialog" + }, + "children": [ + "popup_dialog_bg", + "popup_dialog_message", + "popup_dialog_middle_button" + ] + }, + "popup_dialog__restore_failed/popup_dialog_bg": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "popup_dialog_bg", + "namespace": "popup_dialog" + } + }, + "popup_dialog__restore_failed/popup_dialog_message": { + "file": "ui/store_common.json", + "type": "label", + "extend": { + "name": "popup_dialog_message", + "namespace": "popup_dialog" + } + }, + "popup_dialog__restore_failed/popup_dialog_middle_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "popup_dialog_middle_button", + "namespace": "popup_dialog" + } + }, + "suggested_content_offers_grid_item": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "frame" + ] + }, + "suggested_content_offers_grid_item/frame": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "common_store" + }, + "children": [ + "key_art", + "progress_loading", + "progress", + "title_label_panel", + "offer_button" + ] + }, + "suggested_content_offers_grid_item/frame/key_art": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "store_offer_key_art", + "namespace": "common_store" + }, + "children": [ + "key_art_frame" + ] + }, + "suggested_content_offers_grid_item/frame/key_art/key_art_frame": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "suggested_content_offers_grid_item/frame/progress_loading": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "suggested_content_offers_grid_item/frame/progress": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "offer_download_progress", + "namespace": "common_store" + } + }, + "suggested_content_offers_grid_item/frame/title_label_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "title", + "offer_type" + ] + }, + "suggested_content_offers_grid_item/frame/title_label_panel/title": { + "file": "ui/store_common.json", + "type": "label" + }, + "suggested_content_offers_grid_item/frame/title_label_panel/offer_type": { + "file": "ui/store_common.json", + "type": "label" + }, + "suggested_content_offers_grid_item/frame/offer_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "hover", + "pressed" + ] + }, + "suggested_content_offers_grid_item/frame/offer_button/hover": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + }, + "children": [ + "key_art_size_panel" + ] + }, + "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "key_art_frame" + ] + }, + "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "suggested_content_offers_grid_item/frame/offer_button/pressed": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + }, + "children": [ + "key_art_size_panel" + ] + }, + "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "key_art_frame" + ] + }, + "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "suggested_content_offers_grid": { + "file": "ui/store_common.json", + "type": "grid" + }, + "more_suggested_content_offers_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "dark_glyph_button", + "namespace": "common_buttons" + } + }, + "suggested_content_offers_panel_base": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "content", + "progress_loading" + ] + }, + "suggested_content_offers_panel_base/content": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "suggested_content_offers_grid", + "more_suggested_content_offers_button" + ] + }, + "suggested_content_offers_panel_base/content/suggested_content_offers_grid": { + "file": "ui/store_common.json", + "type": "grid", + "extend": { + "name": "suggested_content_offers_grid", + "namespace": "common_store" + } + }, + "suggested_content_offers_panel_base/content/more_suggested_content_offers_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "more_suggested_content_offers_button", + "namespace": "common_store" + } + }, + "suggested_content_offers_panel_base/progress_loading": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "suggested_content_offers_panel_3x1": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "suggested_content_offers_panel_base", + "namespace": "common_store" + } + }, + "suggested_content_offers_panel_4x1": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "suggested_content_offers_panel_base", + "namespace": "common_store" + } + }, + "search_text_box_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "search_text_box", + "clear_button", + "loading_spinner" + ] + }, + "search_text_box_panel/search_text_box": { + "file": "ui/store_common.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "search_text_box_panel/clear_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "light_close_button", + "namespace": "common" + } + }, + "search_text_box_panel/loading_spinner": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "progress_loading_spinner", + "namespace": "common_store" + } + }, + "search_label_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "offset_panel" + ] + }, + "search_label_panel/offset_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "label" + ] + }, + "search_label_panel/offset_panel/label": { + "file": "ui/store_common.json", + "type": "label" + }, + "error_text_panel": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "common_store" + }, + "children": [ + "error_text_content" + ] + }, + "error_text_panel/error_text_content": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "top_padding", + "label_panel", + "bottom_padding" + ] + }, + "error_text_panel/error_text_content/top_padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "error_text_panel/error_text_content/label_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "search_label_panel", + "namespace": "common_store" + } + }, + "error_text_panel/error_text_content/bottom_padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "results_text_panel": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "common_store" + }, + "children": [ + "results_panel" + ] + }, + "results_text_panel/results_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "top_padding", + "results_content", + "bottom_padding" + ] + }, + "results_text_panel/results_panel/top_padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "results_text_panel/results_panel/results_content": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "label_panel", + "mid_padding", + "results_close_centering_panel", + "right_padding" + ] + }, + "results_text_panel/results_panel/results_content/label_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "search_label_panel", + "namespace": "common_store" + } + }, + "results_text_panel/results_panel/results_content/mid_padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "results_text_panel/results_panel/results_content/results_close_centering_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "results_close_button" + ] + }, + "results_text_panel/results_panel/results_content/results_close_centering_panel/results_close_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "light_close_button", + "namespace": "common" + } + }, + "results_text_panel/results_panel/results_content/right_padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "results_text_panel/results_panel/bottom_padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "filter_logo_content_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "filter_logo_image", + "filter_count_label" + ] + }, + "filter_logo_content_panel/filter_logo_image": { + "file": "ui/store_common.json", + "type": "image" + }, + "filter_logo_content_panel/filter_count_label": { + "file": "ui/store_common.json", + "type": "label" + }, + "filter_sort_toggle": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "dark_content_toggle", + "namespace": "common_toggles" + } + }, + "filter_sort_submenu_scrolling_panel_section": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "submenu_scrolling_panel" + ] + }, + "filter_sort_submenu_scrolling_panel_section/submenu_scrolling_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "filter_sort_grid_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "filter_sort_grid" + ] + }, + "filter_sort_grid_panel/filter_sort_grid": { + "file": "ui/store_common.json", + "type": "stack_panel" + }, + "sort_button_content_panel": { + "file": "ui/store_common.json", + "type": "image" + }, + "search_panel_filter": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "search_text_box", + "filter_button", + "sort_button" + ] + }, + "search_panel_filter/search_text_box": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "search_text_box_panel", + "namespace": "common_store" + } + }, + "search_panel_filter/filter_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "search_panel_filter/sort_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "search_results_and_error_stack": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "mid_padding_1", + "error_text_panel", + "mid_padding_2", + "results_text_panel" + ] + }, + "search_results_and_error_stack/mid_padding_1": { + "file": "ui/store_common.json", + "type": "panel" + }, + "search_results_and_error_stack/error_text_panel": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "error_text_panel", + "namespace": "common_store" + } + }, + "search_results_and_error_stack/mid_padding_2": { + "file": "ui/store_common.json", + "type": "panel" + }, + "search_results_and_error_stack/results_text_panel": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "results_text_panel", + "namespace": "common_store" + } + }, + "search_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "search_panel_content" + ] + }, + "search_panel/search_panel_content": { + "file": "ui/store_common.json", + "type": "stack_panel", + "children": [ + "search_text_box", + "search_results_and_error_panel", + "bottom_padding" + ] + }, + "search_panel/search_panel_content/search_text_box": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "search_panel_filter", + "namespace": "common_store" + } + }, + "search_panel/search_panel_content/search_results_and_error_panel": { + "file": "ui/store_common.json", + "type": "stack_panel", + "extend": { + "name": "search_results_and_error_stack", + "namespace": "common_store" + } + }, + "search_panel/search_panel_content/bottom_padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "search_and_offer_content": { + "file": "ui/store_common.json", + "type": "input_panel", + "extend": { + "name": "modal_area_panel_base", + "namespace": "common" + }, + "children": [ + "search_and_offer_panel" + ] + }, + "search_and_offer_content/search_and_offer_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "search_and_offer_content" + ] + }, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content": { + "file": "ui/store_common.json", + "type": "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": { + "file": "ui/store_common.json", + "type": "panel" + }, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "upper_section" + ] + }, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel/upper_section": { + "file": "ui/store_common.json", + "type": "unknown" + }, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/search_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "search_panel", + "namespace": "common_store" + } + }, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "offer_content" + ] + }, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel/offer_content": { + "file": "ui/store_common.json", + "type": "unknown" + }, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/bottom_padding": { + "file": "ui/store_common.json", + "type": "panel" + }, + "search_object": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "search_object_content" + ] + }, + "search_object/search_object_content": { + "file": "ui/store_common.json", + "type": "input_panel", + "extend": { + "name": "search_and_offer_content", + "namespace": "common_store" + } + }, + "sort_and_filter_menu_modal_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "filter_menu" + ] + }, + "sort_and_filter_menu_modal_panel/filter_menu": { + "file": "ui/store_common.json", + "type": "unknown" + }, + "sort_and_filter_menu_modals": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "filter_menu_modal", + "sort_menu_panel" + ] + }, + "sort_and_filter_menu_modals/filter_menu_modal": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "sort_and_filter_menu_modal_panel", + "namespace": "common_store" + } + }, + "sort_and_filter_menu_modals/sort_menu_panel": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "sort_and_filter_menu_modal_panel", + "namespace": "common_store" + } + }, + "search_filter_sort_background": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "screen_background", + "namespace": "common" + } + }, + "search_filter_background_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "search_filter_sort_background" + ] + }, + "search_filter_background_panel/search_filter_sort_background": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "search_filter_sort_background", + "namespace": "common_store" + } + }, + "close_bg_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "close_bg_button/default": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "search_filter_background_panel", + "namespace": "common_store" + } + }, + "close_bg_button/hover": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "search_filter_background_panel", + "namespace": "common_store" + } + }, + "close_bg_button/pressed": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "search_filter_background_panel", + "namespace": "common_store" + } + }, + "close_bg_panel": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "header_close_button", + "main_close_button" + ] + }, + "close_bg_panel/header_close_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "close_bg_button", + "namespace": "common_store" + } + }, + "close_bg_panel/main_close_button": { + "file": "ui/store_common.json", + "type": "button", + "extend": { + "name": "close_bg_button", + "namespace": "common_store" + } + }, + "vertical_line_divider_row": { + "file": "ui/store_common.json", + "type": "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": { + "file": "ui/store_common.json", + "type": "panel" + }, + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding": { + "file": "ui/store_common.json", + "type": "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": { + "file": "ui/store_common.json", + "type": "panel" + }, + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vertical_line_divider_row_line": { + "file": "ui/store_common.json", + "type": "image", + "extend": { + "name": "sdl_texture", + "namespace": "common_store" + } + }, + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_right_buffer": { + "file": "ui/store_common.json", + "type": "panel" + }, + "vertical_line_divider_row/vert_line_divider_row_bottom_buffer": { + "file": "ui/store_common.json", + "type": "panel" + }, + "sdl_dropdown_header_row_button": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "light_content_toggle", + "namespace": "common_toggles" + } + }, + "sdl_subcategory_button": { + "file": "ui/store_common.json", + "type": "unknown", + "extend": { + "name": "subcategory_button", + "namespace": "persona_sdl" + } + }, + "sdl_dropdown_header_row": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "drowdown_header_row_content" + ] + }, + "sdl_dropdown_header_row/drowdown_header_row_content": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "button_aspects" + ] + }, + "sdl_dropdown_header_row/drowdown_header_row_content/button_aspects": { + "file": "ui/store_common.json", + "type": "panel", + "extend": { + "name": "sdl_dropdown_header_row_button", + "namespace": "common_store" + } + }, + "sdl_dropdown_data_row": { + "file": "ui/store_common.json", + "type": "panel", + "children": [ + "row_background", + "button_aspects" + ] + }, + "sdl_dropdown_data_row/row_background": { + "file": "ui/store_common.json", + "type": "image" + }, + "sdl_dropdown_data_row/button_aspects": { + "file": "ui/store_common.json", + "type": "unknown", + "extend": { + "name": "sdl_subcategory_button", + "namespace": "common_store" + } + } + }, + "store_layout": { + "sdl_scrolling_content_panel": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "children": [ + "sdl_scrolling_content_stack" + ] + }, + "sdl_scrolling_content_panel/sdl_scrolling_content_stack": { + "file": "ui/store_data_driven_screen.json", + "type": "stack_panel", + "extend": { + "name": "sdl_scrolling_content_stack", + "namespace": "store_layout" + } + }, + "sdl_scrolling_content_stack": { + "file": "ui/store_data_driven_screen.json", + "type": "stack_panel", + "extend": { + "name": "vertical_stack_panel", + "namespace": "common" + }, + "children": [ + "padding_0", + "store_screen_layout_factory", + "footer" + ] + }, + "sdl_scrolling_content_stack/padding_0": { + "file": "ui/store_data_driven_screen.json", + "type": "panel" + }, + "sdl_scrolling_content_stack/store_screen_layout_factory": { + "file": "ui/store_data_driven_screen.json", + "type": "stack_panel", + "extend": { + "name": "store_section_factory", + "namespace": "common_store" + } + }, + "sdl_scrolling_content_stack/footer": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "extend": { + "name": "footer", + "namespace": "common_store" + } + }, + "sdl_scrolling_section_panel": { + "file": "ui/store_data_driven_screen.json", + "type": "stack_panel", + "children": [ + "padding0", + "top_static_sdl_section", + "padding1", + "sdl_scrolling_section" + ] + }, + "sdl_scrolling_section_panel/padding0": { + "file": "ui/store_data_driven_screen.json", + "type": "panel" + }, + "sdl_scrolling_section_panel/top_static_sdl_section": { + "file": "ui/store_data_driven_screen.json", + "type": "stack_panel", + "extend": { + "name": "store_static_section_factory", + "namespace": "common_store" + } + }, + "sdl_scrolling_section_panel/padding1": { + "file": "ui/store_data_driven_screen.json", + "type": "panel" + }, + "sdl_scrolling_section_panel/sdl_scrolling_section": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "extend": { + "name": "sdl_scrolling_section", + "namespace": "store_layout" + } + }, + "sdl_scrolling_section": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "character_creator_sdl_scroll_section": { + "file": "ui/store_data_driven_screen.json", + "type": "stack_panel", + "extend": { + "name": "sdl_scrolling_section_panel", + "namespace": "store_layout" + } + }, + "character_creator_sdl_section": { + "file": "ui/store_data_driven_screen.json", + "type": "stack_panel", + "children": [ + "sdl_section" + ] + }, + "character_creator_sdl_section/sdl_section": { + "file": "ui/store_data_driven_screen.json", + "type": "unknown", + "extend": { + "name": "dialog_background_object", + "namespace": "persona_sdl" + } + }, + "character_creator_panel": { + "file": "ui/store_data_driven_screen.json", + "type": "stack_panel", + "extend": { + "name": "horizontal_stack_panel", + "namespace": "common" + }, + "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": { + "file": "ui/store_data_driven_screen.json", + "type": "unknown", + "extend": { + "name": "horizontal_2_padding", + "namespace": "persona_sdl" + } + }, + "character_creator_panel/character_creator_sdl_portion": { + "file": "ui/store_data_driven_screen.json", + "type": "stack_panel", + "extend": { + "name": "character_creator_sdl_section", + "namespace": "store_layout" + } + }, + "character_creator_panel/middle_main_panel_padding": { + "file": "ui/store_data_driven_screen.json", + "type": "unknown", + "extend": { + "name": "horizontal_1_padding", + "namespace": "persona_sdl" + } + }, + "character_creator_panel/right_main_panel": { + "file": "ui/store_data_driven_screen.json", + "type": "stack_panel", + "extend": { + "name": "store_static_section_factory", + "namespace": "common_store" + } + }, + "character_creator_panel/right_main_panel_padding": { + "file": "ui/store_data_driven_screen.json", + "type": "unknown", + "extend": { + "name": "horizontal_2_padding", + "namespace": "persona_sdl" + } + }, + "character_creator_screen_layout": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "children": [ + "character_creator_panel" + ] + }, + "character_creator_screen_layout/character_creator_panel": { + "file": "ui/store_data_driven_screen.json", + "type": "stack_panel", + "extend": { + "name": "character_creator_panel", + "namespace": "store_layout" + } + }, + "main_panel": { + "file": "ui/store_data_driven_screen.json", + "type": "input_panel", + "children": [ + "background", + "main_panel_content", + "progress_loading" + ] + }, + "main_panel/background": { + "file": "ui/store_data_driven_screen.json", + "type": "image" + }, + "main_panel/main_panel_content": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "children": [ + "sdl_screen_content" + ] + }, + "main_panel/main_panel_content/sdl_screen_content": { + "file": "ui/store_data_driven_screen.json", + "type": "unknown" + }, + "main_panel/progress_loading": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "nav_button_content": { + "file": "ui/store_data_driven_screen.json", + "type": "stack_panel", + "children": [ + "image_panel", + "small_padding", + "label_panel" + ] + }, + "nav_button_content/image_panel": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "extend": { + "name": "nav_image_panel", + "namespace": "store_layout" + } + }, + "nav_button_content/small_padding": { + "file": "ui/store_data_driven_screen.json", + "type": "panel" + }, + "nav_button_content/label_panel": { + "file": "ui/store_data_driven_screen.json", + "type": "unknown" + }, + "default_nav_label_panel": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "children": [ + "button_text_label" + ] + }, + "default_nav_label_panel/button_text_label": { + "file": "ui/store_data_driven_screen.json", + "type": "label", + "extend": { + "name": "new_ui_binding_button_label", + "namespace": "common_buttons" + } + }, + "styled_nav_label_panel": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "children": [ + "button_text_label" + ] + }, + "styled_nav_label_panel/button_text_label": { + "file": "ui/store_data_driven_screen.json", + "type": "label", + "extend": { + "name": "default_styled_button_text_label", + "namespace": "store_layout" + } + }, + "styled_nav_label_panel_minecraftTen": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "children": [ + "button_text_label" + ] + }, + "styled_nav_label_panel_minecraftTen/button_text_label": { + "file": "ui/store_data_driven_screen.json", + "type": "label", + "extend": { + "name": "default_styled_button_text_label", + "namespace": "store_layout" + } + }, + "default_styled_button_text_label": { + "file": "ui/store_data_driven_screen.json", + "type": "label", + "extend": { + "name": "new_ui_binding_button_label", + "namespace": "common_buttons" + } + }, + "nav_image_panel": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "children": [ + "button_image_panel", + "button_animated_panel" + ] + }, + "nav_image_panel/button_image_panel": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "extend": { + "name": "nav_button_image_panel", + "namespace": "store_layout" + } + }, + "nav_image_panel/button_animated_panel": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "extend": { + "name": "nav_button_image_panel", + "namespace": "store_layout" + } + }, + "nav_button_image_panel": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "children": [ + "button_image" + ] + }, + "nav_button_image_panel/button_image": { + "file": "ui/store_data_driven_screen.json", + "type": "unknown" + }, + "nav_button_image": { + "file": "ui/store_data_driven_screen.json", + "type": "image" + }, + "nav_button_animation": { + "file": "ui/store_data_driven_screen.json", + "type": "image" + }, + "nav_button_fill": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "extend": { + "name": "nav_button_standard", + "namespace": "store_layout" + } + }, + "nav_button_fill_styled": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "extend": { + "name": "nav_button_standard", + "namespace": "store_layout" + } + }, + "nav_button_fill_styled_mc10": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "extend": { + "name": "nav_button_standard", + "namespace": "store_layout" + } + }, + "nav_button_standard_styled": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "extend": { + "name": "nav_button_standard", + "namespace": "store_layout" + } + }, + "nav_button_standard_styled_mc10": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "extend": { + "name": "nav_button_standard", + "namespace": "store_layout" + } + }, + "nav_button_standard": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "children": [ + "nav_button" + ] + }, + "nav_button_standard/nav_button": { + "file": "ui/store_data_driven_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "nav_button_grid_panel": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "children": [ + "nav_button_grid" + ] + }, + "nav_button_grid_panel/nav_button_grid": { + "file": "ui/store_data_driven_screen.json", + "type": "stack_panel" + }, + "store_layout_ribbon_search_button": { + "file": "ui/store_data_driven_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "store_layout_ribbon_search_button_content": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "children": [ + "button_image" + ] + }, + "store_layout_ribbon_search_button_content/button_image": { + "file": "ui/store_data_driven_screen.json", + "type": "image" + }, + "store_data_driven_screen_base": { + "file": "ui/store_data_driven_screen.json", + "type": "screen", + "extend": { + "name": "store_base_screen", + "namespace": "common_store" + } + }, + "store_screen_modal_panel": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "children": [ + "one_button_dialog", + "popup_dialog_factory" + ] + }, + "store_screen_modal_panel/one_button_dialog": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_one_button", + "namespace": "common_dialogs" + } + }, + "store_screen_modal_panel/popup_dialog_factory": { + "file": "ui/store_data_driven_screen.json", + "type": "factory" + }, + "dialog_button": { + "file": "ui/store_data_driven_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "store_screen_main_panel": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "children": [ + "main_content_view", + "sort_and_filter_modals" + ] + }, + "store_screen_main_panel/main_content_view": { + "file": "ui/store_data_driven_screen.json", + "type": "input_panel", + "extend": { + "name": "sidebar_view", + "namespace": "sidebar_navigation" + } + }, + "store_screen_main_panel/sort_and_filter_modals": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "extend": { + "name": "sort_and_filter_menu_modals", + "namespace": "common_store" + } + }, + "store_full_screen_content": { + "file": "ui/store_data_driven_screen.json", + "type": "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": { + "file": "ui/store_data_driven_screen.json", + "type": "input_panel" + }, + "store_full_screen_content/screen_content": { + "file": "ui/store_data_driven_screen.json", + "type": "stack_panel", + "children": [ + "top_bar_section", + "main_panel" + ] + }, + "store_full_screen_content/screen_content/top_bar_section": { + "file": "ui/store_data_driven_screen.json", + "type": "stack_panel", + "extend": { + "name": "store_static_section_factory", + "namespace": "common_store" + } + }, + "store_full_screen_content/screen_content/main_panel": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "children": [ + "main_panel_content" + ] + }, + "store_full_screen_content/screen_content/main_panel/main_panel_content": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "extend": { + "name": "store_screen_main_panel", + "namespace": "store_layout" + } + }, + "store_full_screen_content/popup_dialog_factory": { + "file": "ui/store_data_driven_screen.json", + "type": "factory" + }, + "store_full_screen_content/character_selector_dialog_factory": { + "file": "ui/store_data_driven_screen.json", + "type": "factory" + }, + "store_full_screen_content/custom_skin_dialog_factory": { + "file": "ui/store_data_driven_screen.json", + "type": "factory" + }, + "sdl_base_screen": { + "file": "ui/store_data_driven_screen.json", + "type": "screen", + "extend": { + "name": "store_data_driven_screen_base", + "namespace": "store_layout" + } + }, + "character_creator_base_screen": { + "file": "ui/store_data_driven_screen.json", + "type": "screen", + "extend": { + "name": "sdl_base_screen", + "namespace": "store_layout" + } + }, + "store_data_driven_screen": { + "file": "ui/store_data_driven_screen.json", + "type": "screen", + "extend": { + "name": "sdl_base_screen", + "namespace": "store_layout" + } + }, + "character_creator_screen": { + "file": "ui/store_data_driven_screen.json", + "type": "screen", + "extend": { + "name": "character_creator_base_screen", + "namespace": "store_layout" + } + }, + "dressing_room_color_picker_screen": { + "file": "ui/store_data_driven_screen.json", + "type": "screen", + "extend": { + "name": "character_creator_screen", + "namespace": "store_layout" + } + }, + "expanded_appearance_view_screen": { + "file": "ui/store_data_driven_screen.json", + "type": "screen", + "extend": { + "name": "character_creator_base_screen", + "namespace": "store_layout" + } + }, + "non_scrollable_sdl_screen": { + "file": "ui/store_data_driven_screen.json", + "type": "screen", + "extend": { + "name": "sdl_base_screen", + "namespace": "store_layout" + } + }, + "skin_selector_screen": { + "file": "ui/store_data_driven_screen.json", + "type": "screen", + "extend": { + "name": "sdl_base_screen", + "namespace": "store_layout" + } + }, + "store_data_driven_modal_one_button_screen": { + "file": "ui/store_data_driven_screen.json", + "type": "screen", + "extend": { + "name": "store_data_driven_screen_base", + "namespace": "store_layout" + } + } + }, + "filter_menu": { + "filter_clear_button_panel": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "children": [ + "clear_button" + ] + }, + "filter_clear_button_panel/clear_button": { + "file": "ui/store_filter_menu_screen.json", + "type": "button", + "extend": { + "name": "dark_text_button", + "namespace": "common_buttons" + } + }, + "chevron_icon_panel": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "children": [ + "chevron_icon" + ] + }, + "chevron_icon_panel/chevron_icon": { + "file": "ui/store_filter_menu_screen.json", + "type": "image" + }, + "filter_variables_panel": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel" + }, + "filter_option_button_content": { + "file": "ui/store_filter_menu_screen.json", + "type": "stack_panel", + "children": [ + "left_chevron_icon_panel", + "filter_type_and_selected_panel", + "right_chevron_icon_panel" + ] + }, + "filter_option_button_content/left_chevron_icon_panel": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "chevron_icon_panel", + "namespace": "filter_menu" + } + }, + "filter_option_button_content/filter_type_and_selected_panel": { + "file": "ui/store_filter_menu_screen.json", + "type": "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": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel" + }, + "filter_option_button_content/filter_type_and_selected_panel/filter_type_label": { + "file": "ui/store_filter_menu_screen.json", + "type": "label" + }, + "filter_option_button_content/filter_type_and_selected_panel/middle_padding": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel" + }, + "filter_option_button_content/filter_type_and_selected_panel/selected_label": { + "file": "ui/store_filter_menu_screen.json", + "type": "label" + }, + "filter_option_button_content/filter_type_and_selected_panel/bottom_padding": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel" + }, + "filter_option_button_content/right_chevron_icon_panel": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "chevron_icon_panel", + "namespace": "filter_menu" + } + }, + "filter_options_button_panel": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "children": [ + "filter_variables_panel" + ] + }, + "filter_options_button_panel/filter_variables_panel": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_variables_panel", + "namespace": "filter_menu" + }, + "children": [ + "filter_options_button" + ] + }, + "filter_options_button_panel/filter_variables_panel/filter_options_button": { + "file": "ui/store_filter_menu_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "filter_main_menu_options_button_panel": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_options_button_panel", + "namespace": "filter_menu" + } + }, + "filter_title_bar_content": { + "file": "ui/store_filter_menu_screen.json", + "type": "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": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_logo_content_panel", + "namespace": "common_store" + } + }, + "filter_title_bar_content/centered_filter_title_label": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "children": [ + "filter_title_label" + ] + }, + "filter_title_bar_content/centered_filter_title_label/filter_title_label": { + "file": "ui/store_filter_menu_screen.json", + "type": "label" + }, + "filter_title_bar_content/filter_title_padding_close_button": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel" + }, + "filter_title_bar_content/centered_x": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "children": [ + "close_x_image" + ] + }, + "filter_title_bar_content/centered_x/close_x_image": { + "file": "ui/store_filter_menu_screen.json", + "type": "image" + }, + "filter_title_bar": { + "file": "ui/store_filter_menu_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "filter_checkbox_toggle": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_sort_toggle", + "namespace": "common_store" + } + }, + "filter_checkbox_no_icon_toggle": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "children": [ + "filter_checkbox_no_icon_toggle" + ] + }, + "filter_checkbox_no_icon_toggle/filter_checkbox_no_icon_toggle": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_checkbox_toggle", + "namespace": "filter_menu" + } + }, + "pack_type_sub_menu_panel": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "children": [ + "pack_type_sub_menu" + ] + }, + "pack_type_sub_menu_panel/pack_type_sub_menu": { + "file": "ui/store_filter_menu_screen.json", + "type": "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": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_checkbox_toggle", + "namespace": "filter_menu" + } + }, + "pack_type_sub_menu_panel/pack_type_sub_menu/skin_packs_filter": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_checkbox_toggle", + "namespace": "filter_menu" + } + }, + "pack_type_sub_menu_panel/pack_type_sub_menu/texture_packs_filter": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_checkbox_toggle", + "namespace": "filter_menu" + } + }, + "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel": { + "file": "ui/store_filter_menu_screen.json", + "type": "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": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_checkbox_toggle", + "namespace": "filter_menu" + } + }, + "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/world_template_type_filters": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_sort_grid_panel", + "namespace": "common_store" + } + }, + "pack_type_sub_menu_panel/pack_type_sub_menu/mashup_packs_filter": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_checkbox_toggle", + "namespace": "filter_menu" + } + }, + "offer_type_sub_menu_panel": { + "file": "ui/store_filter_menu_screen.json", + "type": "stack_panel", + "children": [ + "bundles_filter", + "realms_plus_filter", + "csb_filter" + ] + }, + "offer_type_sub_menu_panel/bundles_filter": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_checkbox_toggle", + "namespace": "filter_menu" + } + }, + "offer_type_sub_menu_panel/realms_plus_filter": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "realms_plus_filter", + "namespace": "filter_menu" + } + }, + "offer_type_sub_menu_panel/csb_filter": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "csb_filter", + "namespace": "filter_menu" + } + }, + "realms_plus_filter": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "children": [ + "realms_plus_filter" + ] + }, + "realms_plus_filter/realms_plus_filter": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_checkbox_toggle", + "namespace": "filter_menu" + } + }, + "csb_filter": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "children": [ + "csb_filter" + ] + }, + "csb_filter/csb_filter": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_checkbox_no_icon_toggle", + "namespace": "filter_menu" + } + }, + "realms_plus_gradient_content_panel": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "children": [ + "gradient", + "particles", + "content_panel" + ] + }, + "realms_plus_gradient_content_panel/gradient": { + "file": "ui/store_filter_menu_screen.json", + "type": "image" + }, + "realms_plus_gradient_content_panel/particles": { + "file": "ui/store_filter_menu_screen.json", + "type": "image" + }, + "realms_plus_gradient_content_panel/content_panel": { + "file": "ui/store_filter_menu_screen.json", + "type": "stack_panel", + "extend": { + "name": "toggle_content_panel", + "namespace": "common_toggles" + } + }, + "csb_gradient_content_panel": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "children": [ + "gradient", + "particles", + "content_panel" + ] + }, + "csb_gradient_content_panel/gradient": { + "file": "ui/store_filter_menu_screen.json", + "type": "image" + }, + "csb_gradient_content_panel/particles": { + "file": "ui/store_filter_menu_screen.json", + "type": "image" + }, + "csb_gradient_content_panel/content_panel": { + "file": "ui/store_filter_menu_screen.json", + "type": "stack_panel", + "extend": { + "name": "toggle_content_panel", + "namespace": "common_toggles" + } + }, + "filter_section_content": { + "file": "ui/store_filter_menu_screen.json", + "type": "stack_panel", + "children": [ + "section_title_button", + "clear_button", + "section_sub_menu" + ] + }, + "filter_section_content/section_title_button": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_options_button_panel", + "namespace": "filter_menu" + } + }, + "filter_section_content/clear_button": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_clear_button_panel", + "namespace": "filter_menu" + } + }, + "filter_section_content/section_sub_menu": { + "file": "ui/store_filter_menu_screen.json", + "type": "unknown" + }, + "filter_section_content_dynamic": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_variables_panel", + "namespace": "filter_menu" + }, + "children": [ + "filter_section_content" + ] + }, + "filter_section_content_dynamic/filter_section_content": { + "file": "ui/store_filter_menu_screen.json", + "type": "stack_panel", + "extend": { + "name": "filter_section_content", + "namespace": "filter_menu" + } + }, + "filter_main_menu_content": { + "file": "ui/store_filter_menu_screen.json", + "type": "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": { + "file": "ui/store_filter_menu_screen.json", + "type": "button", + "extend": { + "name": "filter_title_bar", + "namespace": "filter_menu" + } + }, + "filter_main_menu_content/offer_type_button": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_main_menu_options_button_panel", + "namespace": "filter_menu" + } + }, + "filter_main_menu_content/pack_type_button": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_main_menu_options_button_panel", + "namespace": "filter_menu" + } + }, + "filter_main_menu_content/minecoin_button": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_main_menu_options_button_panel", + "namespace": "filter_menu" + } + }, + "filter_main_menu_content/rating_button": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_main_menu_options_button_panel", + "namespace": "filter_menu" + } + }, + "filter_main_menu_content/creator_button": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_main_menu_options_button_panel", + "namespace": "filter_menu" + } + }, + "filter_main_menu_content/graphics_button": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_main_menu_options_button_panel", + "namespace": "filter_menu" + } + }, + "filter_main_menu_content/installed_state_button": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_main_menu_options_button_panel", + "namespace": "filter_menu" + } + }, + "filter_main_menu_content/filter_main_menu_filter_toggles_section": { + "file": "ui/store_filter_menu_screen.json", + "type": "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": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_sort_grid_panel", + "namespace": "common_store" + } + }, + "filter_main_menu_content/clear_button_panel": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_clear_button_panel", + "namespace": "filter_menu" + } + }, + "filter_main_menu_content_persona": { + "file": "ui/store_filter_menu_screen.json", + "type": "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": { + "file": "ui/store_filter_menu_screen.json", + "type": "button", + "extend": { + "name": "filter_title_bar", + "namespace": "filter_menu" + } + }, + "filter_main_menu_content_persona/persona_body_button": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_main_menu_options_button_panel", + "namespace": "filter_menu" + } + }, + "filter_main_menu_content_persona/persona_style_button": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_main_menu_options_button_panel", + "namespace": "filter_menu" + } + }, + "filter_main_menu_content_persona/emote_filter_section": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "children": [ + "filter_emote_toggle_grid_panel" + ] + }, + "filter_main_menu_content_persona/emote_filter_section/filter_emote_toggle_grid_panel": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_sort_grid_panel", + "namespace": "common_store" + } + }, + "filter_main_menu_content_persona/minecoin_button": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_main_menu_options_button_panel", + "namespace": "filter_menu" + } + }, + "filter_main_menu_content_persona/clear_button_panel": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_clear_button_panel", + "namespace": "filter_menu" + } + }, + "filter_section_content_panel": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "children": [ + "filter_menu_screen" + ] + }, + "filter_section_content_panel/filter_menu_screen": { + "file": "ui/store_filter_menu_screen.json", + "type": "unknown" + }, + "filter_main_menu_section": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_section_content_panel", + "namespace": "filter_menu" + } + }, + "filter_main_menu_section_persona": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_section_content_panel", + "namespace": "filter_menu" + } + }, + "filter_pack_type_section": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_section_content_panel", + "namespace": "filter_menu" + } + }, + "filter_offer_type_section": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_section_content_panel", + "namespace": "filter_menu" + } + }, + "filter_type_section": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_section_content_panel", + "namespace": "filter_menu" + } + }, + "filter_menu_content": { + "file": "ui/store_filter_menu_screen.json", + "type": "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": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_main_menu_section", + "namespace": "filter_menu" + } + }, + "filter_menu_content/filter_offer_type_screen": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_offer_type_section", + "namespace": "filter_menu" + } + }, + "filter_menu_content/filter_pack_type_screen": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_pack_type_section", + "namespace": "filter_menu" + } + }, + "filter_menu_content/filter_minecoin_section": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_type_section", + "namespace": "filter_menu" + } + }, + "filter_menu_content/filter_rating_section": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_type_section", + "namespace": "filter_menu" + } + }, + "filter_menu_content/filter_creator_section": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_type_section", + "namespace": "filter_menu" + } + }, + "filter_menu_content/filter_graphics_section": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_type_section", + "namespace": "filter_menu" + } + }, + "filter_menu_content/filter_installed_state_section": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_type_section", + "namespace": "filter_menu" + } + }, + "filter_menu_content_persona": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "children": [ + "filter_main_menu_screen", + "filter_style_section", + "filter_body_section", + "filter_minecoin_section" + ] + }, + "filter_menu_content_persona/filter_main_menu_screen": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_main_menu_section_persona", + "namespace": "filter_menu" + } + }, + "filter_menu_content_persona/filter_style_section": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_type_section", + "namespace": "filter_menu" + } + }, + "filter_menu_content_persona/filter_body_section": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_type_section", + "namespace": "filter_menu" + } + }, + "filter_menu_content_persona/filter_minecoin_section": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_type_section", + "namespace": "filter_menu" + } + }, + "filter_menu_panel": { + "file": "ui/store_filter_menu_screen.json", + "type": "stack_panel", + "extend": { + "name": "vertical_stack_panel", + "namespace": "common" + }, + "children": [ + "top_padding", + "alignment_panel" + ] + }, + "filter_menu_panel/top_padding": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "filter_menu_panel/alignment_panel": { + "file": "ui/store_filter_menu_screen.json", + "type": "stack_panel", + "extend": { + "name": "horizontal_stack_panel", + "namespace": "common" + }, + "children": [ + "left_padding", + "filter_menu_content_scroll", + "right_padding" + ] + }, + "filter_menu_panel/alignment_panel/left_padding": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "filter_menu_panel/alignment_panel/filter_menu_content_scroll": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "filter_menu_panel/alignment_panel/right_padding": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "filter_menu_screen_content": { + "file": "ui/store_filter_menu_screen.json", + "type": "input_panel", + "extend": { + "name": "modal_area_panel_base", + "namespace": "common" + }, + "children": [ + "filter_main_panel", + "filter_main_panel_persona", + "filter_menu_close_background_button" + ] + }, + "filter_menu_screen_content/filter_main_panel": { + "file": "ui/store_filter_menu_screen.json", + "type": "stack_panel", + "extend": { + "name": "filter_menu_panel", + "namespace": "filter_menu" + } + }, + "filter_menu_screen_content/filter_main_panel_persona": { + "file": "ui/store_filter_menu_screen.json", + "type": "stack_panel", + "extend": { + "name": "filter_menu_panel", + "namespace": "filter_menu" + } + }, + "filter_menu_screen_content/filter_menu_close_background_button": { + "file": "ui/store_filter_menu_screen.json", + "type": "panel", + "extend": { + "name": "close_bg_panel", + "namespace": "common_store" + } + } + }, + "store_inventory": { + "sign_in_button": { + "file": "ui/store_inventory_screen.json", + "type": "button", + "extend": { + "name": "light_text_form_fitting_button", + "namespace": "common_buttons" + } + }, + "no_xbl_and_local_content_warning_panel": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "children": [ + "image_and_description_bg_panel", + "bottom_padding" + ] + }, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel": { + "file": "ui/store_inventory_screen.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "common_store" + }, + "children": [ + "image_and_description_panel" + ] + }, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "button", + "extend": { + "name": "sign_in_panel_text_body", + "namespace": "store_inventory" + } + }, + "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": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "button", + "extend": { + "name": "sign_in_button", + "namespace": "store_inventory" + } + }, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding": { + "file": "ui/store_inventory_screen.json", + "type": "panel" + }, + "no_xbl_and_local_content_warning_panel/bottom_padding": { + "file": "ui/store_inventory_screen.json", + "type": "panel" + }, + "no_xbl_and_no_local_conent_warning_panel": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "children": [ + "image_and_description_bg_panel", + "bottom_padding" + ] + }, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel": { + "file": "ui/store_inventory_screen.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "common_store" + }, + "children": [ + "image_and_description_panel" + ] + }, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "button", + "extend": { + "name": "sign_in_panel_text_body", + "namespace": "store_inventory" + } + }, + "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": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "button", + "extend": { + "name": "sign_in_button", + "namespace": "store_inventory" + } + }, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding": { + "file": "ui/store_inventory_screen.json", + "type": "panel" + }, + "no_xbl_and_no_local_conent_warning_panel/bottom_padding": { + "file": "ui/store_inventory_screen.json", + "type": "panel" + }, + "inventory_sign_in_panel": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "no_xbl_and_local_content_warning_panel", + "namespace": "store_inventory" + } + }, + "inventory_sign_in_panel/no_xbl_and_no_local_conent_warning_panel": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "no_xbl_and_no_local_conent_warning_panel", + "namespace": "store_inventory" + } + }, + "divider_panel": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "children": [ + "top_pad", + "divider", + "bottom_pad" + ] + }, + "divider_panel/top_pad": { + "file": "ui/store_inventory_screen.json", + "type": "panel" + }, + "divider_panel/divider": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "common" + } + }, + "divider_panel/bottom_pad": { + "file": "ui/store_inventory_screen.json", + "type": "panel" + }, + "right_image": { + "file": "ui/store_inventory_screen.json", + "type": "image" + }, + "down_image": { + "file": "ui/store_inventory_screen.json", + "type": "image" + }, + "section_toggle_base": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "extend": { + "name": "light_image_toggle_collection", + "namespace": "common_toggles" + } + }, + "owned_toggle": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "store_inventory" + } + }, + "current_toggle": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "store_inventory" + } + }, + "removed_toggle": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "store_inventory" + } + }, + "subscriptions_toggle": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "extend": { + "name": "section_toggle_base", + "namespace": "store_inventory" + } + }, + "inventory_left_panel": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "children": [ + "top_pad", + "owned_toggle", + "owned_dropdown_box_panel", + "divider_0", + "csub_panel", + "divider_1", + "subscriptions_toggle" + ] + }, + "inventory_left_panel/top_pad": { + "file": "ui/store_inventory_screen.json", + "type": "panel" + }, + "inventory_left_panel/owned_toggle": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "extend": { + "name": "owned_toggle", + "namespace": "store_inventory" + } + }, + "inventory_left_panel/owned_dropdown_box_panel": { + "file": "ui/store_inventory_screen.json", + "type": "image", + "children": [ + "owned_dropdown_box" + ] + }, + "inventory_left_panel/owned_dropdown_box_panel/owned_dropdown_box": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "dropdown_box", + "namespace": "store_inventory" + } + }, + "inventory_left_panel/divider_0": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "divider_panel", + "namespace": "store_inventory" + } + }, + "inventory_left_panel/csub_panel": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "children": [ + "csub_stack_panel" + ] + }, + "inventory_left_panel/csub_panel/csub_stack_panel": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "csub_stack_panel", + "namespace": "store_inventory" + } + }, + "inventory_left_panel/divider_1": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "divider_panel", + "namespace": "store_inventory" + } + }, + "inventory_left_panel/subscriptions_toggle": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "extend": { + "name": "subscriptions_toggle", + "namespace": "store_inventory" + } + }, + "csub_stack_panel": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "children": [ + "padding_title_vertical", + "section_title", + "dropdown_panel" + ] + }, + "csub_stack_panel/padding_title_vertical": { + "file": "ui/store_inventory_screen.json", + "type": "panel" + }, + "csub_stack_panel/section_title": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "children": [ + "padding_title_horizontal", + "testTitle" + ] + }, + "csub_stack_panel/section_title/padding_title_horizontal": { + "file": "ui/store_inventory_screen.json", + "type": "panel" + }, + "csub_stack_panel/section_title/testTitle": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "csb_header", + "namespace": "common_csb" + } + }, + "csub_stack_panel/dropdown_panel": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "children": [ + "dropdown_stack_panel" + ] + }, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "extend": { + "name": "current_toggle", + "namespace": "store_inventory" + } + }, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "children": [ + "current_dropdown_box" + ] + }, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "dropdown_box", + "namespace": "store_inventory" + } + }, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1": { + "file": "ui/store_inventory_screen.json", + "type": "panel" + }, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "extend": { + "name": "removed_toggle", + "namespace": "store_inventory" + } + }, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "children": [ + "removed_dropdown_box" + ] + }, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "dropdown_box", + "namespace": "store_inventory" + } + }, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2": { + "file": "ui/store_inventory_screen.json", + "type": "panel" + }, + "subscriptions_text_panel": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "children": [ + "subscriptions_text" + ] + }, + "subscriptions_text_panel/subscriptions_text": { + "file": "ui/store_inventory_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "realms_plus_stack_panel": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "children": [ + "section_title", + "dropdown_panel" + ] + }, + "realms_plus_stack_panel/section_title": { + "file": "ui/store_inventory_screen.json", + "type": "image", + "children": [ + "border", + "section_title_label", + "particles" + ] + }, + "realms_plus_stack_panel/section_title/border": { + "file": "ui/store_inventory_screen.json", + "type": "image" + }, + "realms_plus_stack_panel/section_title/section_title_label": { + "file": "ui/store_inventory_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "realms_plus_stack_panel/section_title/particles": { + "file": "ui/store_inventory_screen.json", + "type": "image" + }, + "realms_plus_stack_panel/dropdown_panel": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "children": [ + "dropdown_stack_panel" + ] + }, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "panel" + }, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "extend": { + "name": "current_toggle", + "namespace": "store_inventory" + } + }, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "children": [ + "current_dropdown_box" + ] + }, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "dropdown_box", + "namespace": "store_inventory" + } + }, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1": { + "file": "ui/store_inventory_screen.json", + "type": "panel" + }, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "extend": { + "name": "removed_toggle", + "namespace": "store_inventory" + } + }, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "children": [ + "removed_dropdown_box" + ] + }, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "dropdown_box", + "namespace": "store_inventory" + } + }, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2": { + "file": "ui/store_inventory_screen.json", + "type": "panel" + }, + "dropdown_button_content": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "dropdown_button_content/pad_0_fill": { + "file": "ui/store_inventory_screen.json", + "type": "panel" + }, + "dropdown_button_content/pad_0": { + "file": "ui/store_inventory_screen.json", + "type": "panel" + }, + "dropdown_button_content/icon_panel": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "children": [ + "block_icon" + ] + }, + "dropdown_button_content/icon_panel/block_icon": { + "file": "ui/store_inventory_screen.json", + "type": "image" + }, + "dropdown_button_content/pad_1": { + "file": "ui/store_inventory_screen.json", + "type": "panel" + }, + "dropdown_button_content/pad_2": { + "file": "ui/store_inventory_screen.json", + "type": "panel" + }, + "dropdown_button_content/count_panel": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "children": [ + "count" + ] + }, + "dropdown_button_content/count_panel/count": { + "file": "ui/store_inventory_screen.json", + "type": "label" + }, + "dropdown_button_content/pad_3": { + "file": "ui/store_inventory_screen.json", + "type": "panel" + }, + "dropdown_button_content/right_carrot": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "children": [ + "right" + ] + }, + "dropdown_button_content/right_carrot/right": { + "file": "ui/store_inventory_screen.json", + "type": "image", + "extend": { + "name": "right_image", + "namespace": "store_inventory" + } + }, + "dropdown_button_content/down_carrot": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "children": [ + "down" + ] + }, + "dropdown_button_content/down_carrot/down": { + "file": "ui/store_inventory_screen.json", + "type": "image", + "extend": { + "name": "down_image", + "namespace": "store_inventory" + } + }, + "owned_dropdown_content": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "dropdown_button_content", + "namespace": "store_inventory" + } + }, + "current_dropdown_content": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "dropdown_button_content", + "namespace": "store_inventory" + } + }, + "removed_dropdown_content": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "dropdown_button_content", + "namespace": "store_inventory" + } + }, + "dropdown_box": { + "file": "ui/store_inventory_screen.json", + "type": "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": { + "file": "ui/store_inventory_screen.json", + "type": "panel" + }, + "dropdown_box/all": { + "file": "ui/store_inventory_screen.json", + "type": "button", + "extend": { + "name": "category_panel_button", + "namespace": "store_inventory" + } + }, + "dropdown_box/divider_0": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "divider_panel", + "namespace": "store_inventory" + } + }, + "dropdown_box/addons": { + "file": "ui/store_inventory_screen.json", + "type": "button", + "extend": { + "name": "category_panel_button", + "namespace": "store_inventory" + } + }, + "dropdown_box/divider_1": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "divider_panel", + "namespace": "store_inventory" + } + }, + "dropdown_box/skins": { + "file": "ui/store_inventory_screen.json", + "type": "button", + "extend": { + "name": "category_panel_button", + "namespace": "store_inventory" + } + }, + "dropdown_box/divider_2": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "divider_panel", + "namespace": "store_inventory" + } + }, + "dropdown_box/worlds": { + "file": "ui/store_inventory_screen.json", + "type": "button", + "extend": { + "name": "category_panel_button", + "namespace": "store_inventory" + } + }, + "dropdown_box/divider_3": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "divider_panel", + "namespace": "store_inventory" + } + }, + "dropdown_box/textures": { + "file": "ui/store_inventory_screen.json", + "type": "button", + "extend": { + "name": "category_panel_button", + "namespace": "store_inventory" + } + }, + "dropdown_box/divider_4": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "divider_panel", + "namespace": "store_inventory" + } + }, + "dropdown_box/mashups": { + "file": "ui/store_inventory_screen.json", + "type": "button", + "extend": { + "name": "category_panel_button", + "namespace": "store_inventory" + } + }, + "dropdown_box/bottom_pad": { + "file": "ui/store_inventory_screen.json", + "type": "panel" + }, + "category_panel_button": { + "file": "ui/store_inventory_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "category_panel_button/default": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "category_stack_panel", + "namespace": "store_inventory" + } + }, + "category_panel_button/hover": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "category_stack_panel", + "namespace": "store_inventory" + } + }, + "category_panel_button/pressed": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "category_stack_panel", + "namespace": "store_inventory" + } + }, + "category_stack_panel": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "children": [ + "text", + "fill_pad", + "icon", + "pad_1", + "number" + ] + }, + "category_stack_panel/text": { + "file": "ui/store_inventory_screen.json", + "type": "label" + }, + "category_stack_panel/fill_pad": { + "file": "ui/store_inventory_screen.json", + "type": "panel" + }, + "category_stack_panel/icon": { + "file": "ui/store_inventory_screen.json", + "type": "image" + }, + "category_stack_panel/pad_1": { + "file": "ui/store_inventory_screen.json", + "type": "panel" + }, + "category_stack_panel/number": { + "file": "ui/store_inventory_screen.json", + "type": "label" + }, + "search_object": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "extend": { + "name": "search_object", + "namespace": "common_store" + } + }, + "list_panel": { + "file": "ui/store_inventory_screen.json", + "type": "input_panel", + "children": [ + "list_panel_content", + "progress_loading" + ] + }, + "list_panel/list_panel_content": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "children": [ + "search_and_offers_grid_scroll_panel" + ] + }, + "list_panel/list_panel_content/search_and_offers_grid_scroll_panel": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "list_panel/progress_loading": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "items_content_section": { + "file": "ui/store_inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "list_panel", + "namespace": "store_inventory" + } + }, + "subscriptions_content_section": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "children": [ + "left_pad", + "search_and_offers_grid_scroll_panel" + ] + }, + "subscriptions_content_section/left_pad": { + "file": "ui/store_inventory_screen.json", + "type": "panel" + }, + "subscriptions_content_section/search_and_offers_grid_scroll_panel": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "right_pane_factory": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel" + }, + "content_area": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "children": [ + "control" + ] + }, + "content_area/control": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "children": [ + "right_pane_factory" + ] + }, + "content_area/control/right_pane_factory": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "right_pane_factory", + "namespace": "store_inventory" + } + }, + "main_panel": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "children": [ + "inventory_left_panel", + "divider_panel", + "inventory_right_panel" + ] + }, + "main_panel/inventory_left_panel": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "children": [ + "inventory_left_image", + "left_scrolling_panel" + ] + }, + "main_panel/inventory_left_panel/inventory_left_image": { + "file": "ui/store_inventory_screen.json", + "type": "image" + }, + "main_panel/inventory_left_panel/left_scrolling_panel": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "main_panel/divider_panel": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "children": [ + "main_divider" + ] + }, + "main_panel/divider_panel/main_divider": { + "file": "ui/store_inventory_screen.json", + "type": "image" + }, + "main_panel/inventory_right_panel": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "children": [ + "right_panel_background_image", + "content_right_panel" + ] + }, + "main_panel/inventory_right_panel/right_panel_background_image": { + "file": "ui/store_inventory_screen.json", + "type": "image" + }, + "main_panel/inventory_right_panel/content_right_panel": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "extend": { + "name": "content_area", + "namespace": "store_inventory" + } + }, + "store_inventory_screen_main_panel": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "children": [ + "main_content_view", + "sort_and_filter_modals" + ] + }, + "store_inventory_screen_main_panel/main_content_view": { + "file": "ui/store_inventory_screen.json", + "type": "input_panel", + "extend": { + "name": "sidebar_view", + "namespace": "sidebar_navigation" + } + }, + "store_inventory_screen_main_panel/sort_and_filter_modals": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "extend": { + "name": "sort_and_filter_menu_modals", + "namespace": "common_store" + } + }, + "store_search_screen_content": { + "file": "ui/store_inventory_screen.json", + "type": "panel", + "children": [ + "main_panel", + "popup_dialog_factory" + ] + }, + "store_search_screen_content/main_panel": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "store_header_with_coins", + "namespace": "common_store" + } + }, + "store_search_screen_content/popup_dialog_factory": { + "file": "ui/store_inventory_screen.json", + "type": "factory" + }, + "store_inventory_screen": { + "file": "ui/store_inventory_screen.json", + "type": "screen", + "extend": { + "name": "store_base_screen", + "namespace": "common_store" + } + }, + "signin_text_section_body": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel" + }, + "signin_text": { + "file": "ui/store_inventory_screen.json", + "type": "label" + }, + "signin_text_02": { + "file": "ui/store_inventory_screen.json", + "type": "label" + }, + "signin_text_section": { + "file": "ui/store_inventory_screen.json", + "type": "stack_panel", + "extend": { + "name": "signin_text_section_body", + "namespace": "store_inventory" + }, + "children": [ + "signin_text", + "line_1_padding_line_2", + "signin_text_02" + ] + }, + "signin_text_section/signin_text": { + "file": "ui/store_inventory_screen.json", + "type": "label", + "extend": { + "name": "signin_text", + "namespace": "store_inventory" + } + }, + "signin_text_section/line_1_padding_line_2": { + "file": "ui/store_inventory_screen.json", + "type": "panel" + }, + "signin_text_section/signin_text_02": { + "file": "ui/store_inventory_screen.json", + "type": "label", + "extend": { + "name": "signin_text_02", + "namespace": "store_inventory" + } + }, + "sign_in_panel_text_body": { + "file": "ui/store_inventory_screen.json", + "type": "button", + "extend": { + "name": "text_body_focus_border_for_controller_button", + "namespace": "common_buttons" + } + } + }, + "store_item_list": { + "store_offer_key_art": { + "file": "ui/store_item_list_screen.json", + "type": "image" + }, + "main_panel": { + "file": "ui/store_item_list_screen.json", + "type": "input_panel", + "children": [ + "search_object", + "progress_loading" + ] + }, + "main_panel/search_object": { + "file": "ui/store_item_list_screen.json", + "type": "panel", + "extend": { + "name": "search_object", + "namespace": "common_store" + } + }, + "main_panel/progress_loading": { + "file": "ui/store_item_list_screen.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "scrolling_content_stack": { + "file": "ui/store_item_list_screen.json", + "type": "stack_panel", + "children": [ + "search_panel" + ] + }, + "scrolling_content_stack/search_panel": { + "file": "ui/store_item_list_screen.json", + "type": "unknown", + "extend": { + "name": "search_object_panel", + "namespace": "common_store" + } + }, + "store_offer_grid": { + "file": "ui/store_item_list_screen.json", + "type": "grid" + }, + "persona_offer_grid": { + "file": "ui/store_item_list_screen.json", + "type": "grid" + }, + "vertical_store_offer_grid": { + "file": "ui/store_item_list_screen.json", + "type": "grid" + }, + "store_offer_title": { + "file": "ui/store_item_list_screen.json", + "type": "label" + }, + "store_offer_grid_item": { + "file": "ui/store_item_list_screen.json", + "type": "panel", + "children": [ + "frame" + ] + }, + "store_offer_grid_item/frame": { + "file": "ui/store_item_list_screen.json", + "type": "image", + "extend": { + "name": "store_description_background", + "namespace": "common_store" + }, + "children": [ + "key_art", + "progress", + "title_label_panel", + "durable_offer_info_panel", + "offer_button" + ] + }, + "store_offer_grid_item/frame/key_art": { + "file": "ui/store_item_list_screen.json", + "type": "image", + "extend": { + "name": "store_offer_key_art", + "namespace": "store_item_list" + }, + "children": [ + "key_art_frame", + "csb_expiration_banner" + ] + }, + "store_offer_grid_item/frame/key_art/key_art_frame": { + "file": "ui/store_item_list_screen.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "store_offer_grid_item/frame/key_art/csb_expiration_banner": { + "file": "ui/store_item_list_screen.json", + "type": "panel", + "extend": { + "name": "csb_expiration", + "namespace": "common_store" + } + }, + "store_offer_grid_item/frame/progress": { + "file": "ui/store_item_list_screen.json", + "type": "panel", + "extend": { + "name": "offer_download_progress", + "namespace": "common_store" + } + }, + "store_offer_grid_item/frame/title_label_panel": { + "file": "ui/store_item_list_screen.json", + "type": "panel", + "children": [ + "durable_offer_title_label" + ] + }, + "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label": { + "file": "ui/store_item_list_screen.json", + "type": "stack_panel", + "children": [ + "title", + "creator_label" + ] + }, + "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/title": { + "file": "ui/store_item_list_screen.json", + "type": "label", + "extend": { + "name": "store_offer_title", + "namespace": "store_item_list" + } + }, + "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/creator_label": { + "file": "ui/store_item_list_screen.json", + "type": "stack_panel", + "extend": { + "name": "store_offer_item_creator_panel", + "namespace": "common_store" + } + }, + "store_offer_grid_item/frame/durable_offer_info_panel": { + "file": "ui/store_item_list_screen.json", + "type": "stack_panel", + "children": [ + "offer_status_panel" + ] + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel": { + "file": "ui/store_item_list_screen.json", + "type": "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": { + "file": "ui/store_item_list_screen.json", + "type": "panel", + "extend": { + "name": "subscription_chevron", + "namespace": "common_store" + } + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label": { + "file": "ui/store_item_list_screen.json", + "type": "panel", + "extend": { + "name": "rtx_label", + "namespace": "common_store" + } + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel": { + "file": "ui/store_item_list_screen.json", + "type": "panel", + "children": [ + "markdown_banner" + ] + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner": { + "file": "ui/store_item_list_screen.json", + "type": "stack_panel", + "extend": { + "name": "markdown_background", + "namespace": "common_store" + } + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel": { + "file": "ui/store_item_list_screen.json", + "type": "panel", + "children": [ + "pack_icon_stack" + ] + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": { + "file": "ui/store_item_list_screen.json", + "type": "panel", + "extend": { + "name": "pack_icon_stack", + "namespace": "common_store" + } + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left": { + "file": "ui/store_item_list_screen.json", + "type": "panel" + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel": { + "file": "ui/store_item_list_screen.json", + "type": "panel", + "extend": { + "name": "offer_price_markdown_panel", + "namespace": "common_store" + } + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right": { + "file": "ui/store_item_list_screen.json", + "type": "panel" + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel": { + "file": "ui/store_item_list_screen.json", + "type": "stack_panel", + "extend": { + "name": "offer_prompt_panel", + "namespace": "common_store" + } + }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6": { + "file": "ui/store_item_list_screen.json", + "type": "panel" + }, + "store_offer_grid_item/frame/offer_button": { + "file": "ui/store_item_list_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "hover", + "pressed", + "offer_status_icon" + ] + }, + "store_offer_grid_item/frame/offer_button/hover": { + "file": "ui/store_item_list_screen.json", + "type": "panel", + "children": [ + "key_art_size_panel" + ] + }, + "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel": { + "file": "ui/store_item_list_screen.json", + "type": "panel", + "children": [ + "key_art_frame" + ] + }, + "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame": { + "file": "ui/store_item_list_screen.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "store_offer_grid_item/frame/offer_button/pressed": { + "file": "ui/store_item_list_screen.json", + "type": "panel", + "children": [ + "key_art_size_panel" + ] + }, + "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel": { + "file": "ui/store_item_list_screen.json", + "type": "panel", + "children": [ + "key_art_frame" + ] + }, + "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame": { + "file": "ui/store_item_list_screen.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "store_offer_grid_item/frame/offer_button/offer_status_icon": { + "file": "ui/store_item_list_screen.json", + "type": "panel", + "extend": { + "name": "status_icon_panel", + "namespace": "common_store" + } + }, + "store_screen_content": { + "file": "ui/store_item_list_screen.json", + "type": "panel", + "children": [ + "main_panel", + "popup_dialog_factory" + ] + }, + "store_screen_content/main_panel": { + "file": "ui/store_item_list_screen.json", + "type": "stack_panel", + "extend": { + "name": "store_header_with_coins", + "namespace": "common_store" + } + }, + "store_screen_content/popup_dialog_factory": { + "file": "ui/store_item_list_screen.json", + "type": "factory" + } + }, + "store_progress": { + "store_progress_screen": { + "file": "ui/store_progress_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "screen_content": { + "file": "ui/store_progress_screen.json", + "type": "panel", + "children": [ + "title_image", + "progress_dialog" + ] + }, + "screen_content/title_image": { + "file": "ui/store_progress_screen.json", + "type": "image" + }, + "screen_content/progress_dialog": { + "file": "ui/store_progress_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + }, + "dialog_content": { + "file": "ui/store_progress_screen.json", + "type": "stack_panel", + "children": [ + "tooltip_panel", + "padding", + "progress_panel" + ] + }, + "dialog_content/tooltip_panel": { + "file": "ui/store_progress_screen.json", + "type": "panel", + "children": [ + "tooltip_text" + ] + }, + "dialog_content/tooltip_panel/tooltip_text": { + "file": "ui/store_progress_screen.json", + "type": "label" + }, + "dialog_content/padding": { + "file": "ui/store_progress_screen.json", + "type": "panel" + }, + "dialog_content/progress_panel": { + "file": "ui/store_progress_screen.json", + "type": "panel", + "children": [ + "empty_progress_bar", + "progress_percent_panel" + ] + }, + "dialog_content/progress_panel/empty_progress_bar": { + "file": "ui/store_progress_screen.json", + "type": "image", + "extend": { + "name": "store_empty_progress_bar_icon", + "namespace": "common_store" + } + }, + "dialog_content/progress_panel/progress_percent_panel": { + "file": "ui/store_progress_screen.json", + "type": "panel", + "children": [ + "full_progress_bar", + "progress_bar_nub" + ] + }, + "dialog_content/progress_panel/progress_percent_panel/full_progress_bar": { + "file": "ui/store_progress_screen.json", + "type": "image", + "extend": { + "name": "store_full_progress_bar_icon", + "namespace": "common_store" + } + }, + "dialog_content/progress_panel/progress_percent_panel/progress_bar_nub": { + "file": "ui/store_progress_screen.json", + "type": "image", + "extend": { + "name": "store_progress_bar_nub", + "namespace": "common_store" + } + }, + "screen_background": { + "file": "ui/store_progress_screen.json", + "type": "image" + } + }, + "promo_timeline": { + "promo_banner_factory": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel" + }, + "promo_banner_button_content": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "promo_banner_button", + "progress_loading_spinner" + ] + }, + "promo_banner_button_content/promo_banner_button": { + "file": "ui/store_promo_timeline_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "promo_banner_button_content/progress_loading_spinner": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_spinner", + "namespace": "common_store" + } + }, + "promo_banner_image": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image" + }, + "promo_banner_panel_content": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "banner_image", + "banner_text_panel", + "button_stack_panel" + ] + }, + "promo_banner_panel_content/banner_image": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "promo_banner_image", + "namespace": "promo_timeline" + } + }, + "promo_banner_panel_content/banner_text_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "padding_0", + "title_stack_panel", + "description" + ] + }, + "promo_banner_panel_content/banner_text_panel/padding_0": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promo_banner_panel_content/banner_text_panel/title_stack_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "banner_title" + ] + }, + "promo_banner_panel_content/banner_text_panel/title_stack_panel/banner_title": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "extend": { + "name": "sdl_text_minecraftTen_aligned_panel", + "namespace": "promo_timeline" + } + }, + "promo_banner_panel_content/banner_text_panel/description": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "extend": { + "name": "sdl_text_aligned_panel", + "namespace": "promo_timeline" + } + }, + "promo_banner_panel_content/button_stack_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "left_offset", + "banner_button", + "right_offset" + ] + }, + "promo_banner_panel_content/button_stack_panel/left_offset": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promo_banner_panel_content/button_stack_panel/banner_button": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "extend": { + "name": "sdl_content_aligned_panel", + "namespace": "promo_timeline" + } + }, + "promo_banner_panel_content/button_stack_panel/right_offset": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promo_banner_holiday_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "banner_full_button" + ] + }, + "promo_banner_holiday_panel/banner_full_button": { + "file": "ui/store_promo_timeline_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "promo_banner_holiday_panel/banner_full_button/default": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "promo_banner_panel_content", + "namespace": "promo_timeline" + } + }, + "promo_banner_holiday_panel/banner_full_button/hover": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "promo_banner_panel_content", + "namespace": "promo_timeline" + } + }, + "promo_banner_holiday_panel/banner_full_button/pressed": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "promo_banner_panel_content", + "namespace": "promo_timeline" + } + }, + "image_message_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "image_message_row_content", + "padding_0" + ] + }, + "image_message_panel/image_message_row_content": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "image_message_row_content", + "namespace": "promo_timeline" + } + }, + "image_message_panel/padding_0": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "image_message_row_content": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "gray_background", + "row_button" + ] + }, + "image_message_row_content/gray_background": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "store_description_background", + "namespace": "common_store" + }, + "children": [ + "message_text", + "row_image" + ] + }, + "image_message_row_content/gray_background/message_text": { + "file": "ui/store_promo_timeline_screen.json", + "type": "label" + }, + "image_message_row_content/gray_background/row_image": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "promo_image_panel", + "namespace": "promo_timeline" + } + }, + "image_message_row_content/row_button": { + "file": "ui/store_promo_timeline_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "promo_image_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "children": [ + "button_image_panel", + "button_animated_panel" + ] + }, + "promo_image_panel/button_image_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "promo_button_image_panel", + "namespace": "promo_timeline" + } + }, + "promo_image_panel/button_animated_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "promo_button_image_panel", + "namespace": "promo_timeline" + } + }, + "promo_button_image_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "button_image" + ] + }, + "promo_button_image_panel/button_image": { + "file": "ui/store_promo_timeline_screen.json", + "type": "unknown" + }, + "promo_button_image": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image" + }, + "promo_button_animation": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image" + }, + "banner_button": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "new_ui_width_fitting_button_panel", + "namespace": "common_buttons" + } + }, + "sdl_text_aligned_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "extend": { + "name": "sdl_content_aligned_panel", + "namespace": "promo_timeline" + } + }, + "sdl_text_minecraftTen_aligned_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "extend": { + "name": "sdl_content_aligned_panel", + "namespace": "promo_timeline" + } + }, + "sdl_content_aligned_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "left__padding_panel", + "control", + "right_padding_panel" + ] + }, + "sdl_content_aligned_panel/left__padding_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "sdl_content_aligned_panel/control": { + "file": "ui/store_promo_timeline_screen.json", + "type": "unknown" + }, + "sdl_content_aligned_panel/right_padding_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "sdl_aligned_text": { + "file": "ui/store_promo_timeline_screen.json", + "type": "label" + }, + "sdl_aligned_minecraftTen_text": { + "file": "ui/store_promo_timeline_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "colored_direction_button_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "chevron_image" + ] + }, + "colored_direction_button_panel/chevron_image": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "chevron_image", + "namespace": "common" + } + }, + "left_corner_art": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image" + }, + "right_corner_art": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image" + }, + "promo_landing_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "input_panel", + "children": [ + "promo_landing_panel_content", + "left_corner_art", + "right_corner_art" + ] + }, + "promo_landing_panel/promo_landing_panel_content": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "promo_top", + "pad_0", + "promo_bottom_panel", + "pad_1" + ] + }, + "promo_landing_panel/promo_landing_panel_content/promo_top": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "promotion_screen_top_section", + "namespace": "promo_timeline" + } + }, + "promo_landing_panel/promo_landing_panel_content/pad_0": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "promo_bottom" + ] + }, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "children": [ + "promotion_period_carousel_panel" + ] + }, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "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": { + "file": "ui/store_promo_timeline_screen.json", + "type": "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": { + "file": "ui/store_promo_timeline_screen.json", + "type": "button", + "extend": { + "name": "cycle_pack_left_button", + "namespace": "common_store" + } + }, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/offer_grid": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "extend": { + "name": "promotion_period_offer_panel", + "namespace": "promo_timeline" + } + }, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "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": { + "file": "ui/store_promo_timeline_screen.json", + "type": "button", + "extend": { + "name": "cycle_pack_right_button", + "namespace": "common_store" + } + }, + "promo_landing_panel/promo_landing_panel_content/pad_1": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promo_landing_panel/left_corner_art": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "left_corner_art", + "namespace": "promo_timeline" + } + }, + "promo_landing_panel/right_corner_art": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "right_corner_art", + "namespace": "promo_timeline" + } + }, + "promotion_screen_top_section": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "main_panel" + ] + }, + "promotion_screen_top_section/main_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "promotion_top_main_panel", + "namespace": "promo_timeline" + } + }, + "promotion_top_main_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "children": [ + "promotion_top_main_stack" + ] + }, + "promotion_top_main_panel/promotion_top_main_stack": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "main_panel_title", + "promo_single_top", + "promo_multi_item" + ] + }, + "promotion_top_main_panel/promotion_top_main_stack/main_panel_title": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "extend": { + "name": "main_panel_title", + "namespace": "promo_timeline" + } + }, + "promotion_top_main_panel/promotion_top_main_stack/promo_single_top": { + "file": "ui/store_promo_timeline_screen.json", + "type": "input_panel", + "children": [ + "single_item_view" + ] + }, + "promotion_top_main_panel/promotion_top_main_stack/promo_single_top/single_item_view": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "extend": { + "name": "promo_detail_panel", + "namespace": "promo_timeline" + } + }, + "promotion_top_main_panel/promotion_top_main_stack/promo_multi_item": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "main_panel_title": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "padding_0", + "header_stack", + "padding_1", + "divdier_centering_panel", + "padding_2" + ] + }, + "main_panel_title/padding_0": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "main_panel_title/header_stack": { + "file": "ui/store_promo_timeline_screen.json", + "type": "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": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "main_panel_title/header_stack/back_button_centering_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "button" + ] + }, + "main_panel_title/header_stack/back_button_centering_panel/button": { + "file": "ui/store_promo_timeline_screen.json", + "type": "button", + "extend": { + "name": "back_button", + "namespace": "common" + } + }, + "main_panel_title/header_stack/padding_1": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "main_panel_title/header_stack/header_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "title_and_description" + ] + }, + "main_panel_title/header_stack/header_panel/title_and_description": { + "file": "ui/store_promo_timeline_screen.json", + "type": "label" + }, + "main_panel_title/header_stack/padding_2": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "main_panel_title/header_stack/claim_all_button_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "claim_all_button" + ] + }, + "main_panel_title/header_stack/claim_all_button_panel/claim_all_button": { + "file": "ui/store_promo_timeline_screen.json", + "type": "button", + "extend": { + "name": "light_text_form_fitting_button", + "namespace": "common_buttons" + } + }, + "main_panel_title/padding_1": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "main_panel_title/divdier_centering_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "divider" + ] + }, + "main_panel_title/divdier_centering_panel/divider": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image" + }, + "main_panel_title/padding_2": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promo_multi_item_grid": { + "file": "ui/store_promo_timeline_screen.json", + "type": "grid" + }, + "promo_button": { + "file": "ui/store_promo_timeline_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "promo_button/default": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "key_art_size_panel" + ] + }, + "promo_button/default/key_art_size_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "key_art_frame", + "button_frame" + ] + }, + "promo_button/default/key_art_size_panel/key_art_frame": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "focus_border_black", + "namespace": "common" + }, + "children": [ + "sizing_panel", + "platform_restricted_warning_image" + ] + }, + "promo_button/default/key_art_size_panel/key_art_frame/sizing_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promo_button/default/key_art_size_panel/key_art_frame/platform_restricted_warning_image": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image" + }, + "promo_button/default/key_art_size_panel/button_frame": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "focus_border_black", + "namespace": "common" + } + }, + "promo_button/hover": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "key_art_size_panel" + ] + }, + "promo_button/hover/key_art_size_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "key_art_frame", + "button_frame" + ] + }, + "promo_button/hover/key_art_size_panel/key_art_frame": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + }, + "children": [ + "sizing_panel" + ] + }, + "promo_button/hover/key_art_size_panel/key_art_frame/sizing_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promo_button/hover/key_art_size_panel/button_frame": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "promo_button/pressed": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "key_art_frame", + "button_frame" + ] + }, + "promo_button/pressed/key_art_frame": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + }, + "children": [ + "sizing_panel" + ] + }, + "promo_button/pressed/key_art_frame/sizing_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promo_button/pressed/button_frame": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "promo_grid_item": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "background_image", + "promo_button", + "platform_restricted_error_multi_item" + ] + }, + "promo_grid_item/background_image": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "store_description_background", + "namespace": "common_store" + }, + "children": [ + "promo_content" + ] + }, + "promo_grid_item/background_image/promo_content": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "extend": { + "name": "promo_grid_item_content", + "namespace": "promo_timeline" + } + }, + "promo_grid_item/promo_button": { + "file": "ui/store_promo_timeline_screen.json", + "type": "button", + "extend": { + "name": "promo_button", + "namespace": "promo_timeline" + } + }, + "promo_grid_item/platform_restricted_error_multi_item": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "platform_restricted_error", + "namespace": "promo_timeline" + } + }, + "platform_restricted_error": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "platform_restricted_error_button" + ] + }, + "platform_restricted_error/platform_restricted_error_button": { + "file": "ui/store_promo_timeline_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed", + "white_overlay_to_gray_out" + ] + }, + "platform_restricted_error/platform_restricted_error_button/default": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "platform_restricted_error/platform_restricted_error_button/hover": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "platform_restricted_error/platform_restricted_error_button/pressed": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "platform_restricted_error/platform_restricted_error_button/white_overlay_to_gray_out": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image" + }, + "promo_grid_item_content": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "thumbnail_image", + "persona_key_art_frame", + "padding_0", + "title_tooltip" + ] + }, + "promo_grid_item_content/thumbnail_image": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image" + }, + "promo_grid_item_content/persona_key_art_frame": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "persona_image_panel", + "background", + "rarity_bar_panel" + ] + }, + "promo_grid_item_content/persona_key_art_frame/persona_image_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image" + }, + "promo_grid_item_content/persona_key_art_frame/background": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "item_rarity_color_background", + "namespace": "persona_common" + } + }, + "promo_grid_item_content/persona_key_art_frame/rarity_bar_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "rarity_bar", + "namespace": "persona_common" + } + }, + "promo_grid_item_content/padding_0": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promo_grid_item_content/title_tooltip": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "promo_title", + "tooltip" + ] + }, + "promo_grid_item_content/title_tooltip/promo_title": { + "file": "ui/store_promo_timeline_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "promo_grid_item_content/title_tooltip/tooltip": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "extend": { + "name": "promo_timer_panel", + "namespace": "promo_timeline" + } + }, + "promotion_period_grid_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "promotion_offer_grid_image" + ] + }, + "promotion_period_grid_panel/promotion_offer_grid_image": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "item_selected_bg", + "promotion_offer_grid_stack_panel" + ] + }, + "promotion_period_grid_panel/promotion_offer_grid_image/item_selected_bg": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image" + }, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "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": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "day_label" + ] + }, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel/day_label": { + "file": "ui/store_promo_timeline_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/pad": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "image_panel" + ] + }, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "item_button" + ] + }, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel/item_button": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "promotion_period_grid_item", + "namespace": "promo_timeline" + } + }, + "promotion_period_offer_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "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": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "promotion_period_grid_panel", + "namespace": "promo_timeline" + } + }, + "promotion_period_offer_panel/padding_0": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promotion_period_offer_panel/period_2": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "promotion_period_grid_panel", + "namespace": "promo_timeline" + } + }, + "promotion_period_offer_panel/padding_1": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promotion_period_offer_panel/period_3": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "promotion_period_grid_panel", + "namespace": "promo_timeline" + } + }, + "promotion_period_offer_panel/padding_2": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promotion_period_offer_panel/period_4": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "promotion_period_grid_panel", + "namespace": "promo_timeline" + } + }, + "promotion_period_offer_panel/padding_3": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promotion_period_offer_panel/period_5": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "promotion_period_grid_panel", + "namespace": "promo_timeline" + } + }, + "promotion_period_offer_panel/padding_4": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promotion_period_offer_panel/period_6": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "promotion_period_grid_panel", + "namespace": "promo_timeline" + } + }, + "promotion_period_offer_panel/padding_5": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promotion_period_offer_panel/period_7": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "promotion_period_grid_panel", + "namespace": "promo_timeline" + } + }, + "toggle_button_control": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "green_check", + "key_art_image_panel" + ] + }, + "toggle_button_control/green_check": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image" + }, + "toggle_button_control/key_art_image_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "image_loading_panel", + "key_art_image" + ] + }, + "toggle_button_control/key_art_image_panel/image_loading_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "toggle_button_control/key_art_image_panel/key_art_image": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image" + }, + "checked_border": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "toggle_checked", + "namespace": "common_toggles" + } + }, + "promotion_period_grid_item": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "frame" + ] + }, + "promotion_period_grid_item/frame": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "offer_button" + ] + }, + "promotion_period_grid_item/frame/offer_button": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "offer_toggle_button" + ] + }, + "promotion_period_grid_item/frame/offer_button/offer_toggle_button": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "dark_ui_toggle", + "namespace": "common_toggles" + } + }, + "vertical_padding_2px": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "timer_icon_tooltip_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "limited_status_image" + ] + }, + "timer_icon_tooltip_panel/limited_status_image": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image" + }, + "timer_tooltip_panel_right_extending": { + "file": "ui/store_promo_timeline_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "timer_tooltip_panel_right_extending/default": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "timer_tooltip_panel_right_extending/hover": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "dynamic_tooltip_popup_with_image_and_text", + "namespace": "common" + } + }, + "timer_tooltip_panel_right_extending/pressed": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "dynamic_tooltip_popup_with_image_and_text", + "namespace": "common" + } + }, + "timer_tooltip_panel_left_extending": { + "file": "ui/store_promo_timeline_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "timer_tooltip_panel_left_extending/default": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "timer_tooltip_panel_left_extending/hover": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "dynamic_tooltip_popup_with_image_and_text", + "namespace": "common" + } + }, + "timer_tooltip_panel_left_extending/pressed": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "dynamic_tooltip_popup_with_image_and_text", + "namespace": "common" + } + }, + "no_timer_tooltip_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "no_timer_tooltip_panel/default": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "no_timer_tooltip_panel/hover": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "no_timer_tooltip_panel/pressed": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "promo_timer_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "timer_icon_and_tooltip_panel", + "padding", + "timer_text" + ] + }, + "promo_timer_panel/timer_icon_and_tooltip_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "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": { + "file": "ui/store_promo_timeline_screen.json", + "type": "button", + "extend": { + "name": "timer_tooltip_panel_right_extending", + "namespace": "promo_timeline" + } + }, + "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_left_extending": { + "file": "ui/store_promo_timeline_screen.json", + "type": "button", + "extend": { + "name": "timer_tooltip_panel_left_extending", + "namespace": "promo_timeline" + } + }, + "promo_timer_panel/timer_icon_and_tooltip_panel/notooltip_button": { + "file": "ui/store_promo_timeline_screen.json", + "type": "button", + "extend": { + "name": "no_timer_tooltip_panel", + "namespace": "promo_timeline" + } + }, + "promo_timer_panel/timer_icon_and_tooltip_panel/timer_icon": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image" + }, + "promo_timer_panel/padding": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promo_timer_panel/timer_text": { + "file": "ui/store_promo_timeline_screen.json", + "type": "label" + }, + "offer_title_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "offer_title_label" + ] + }, + "offer_title_panel/offer_title_label": { + "file": "ui/store_promo_timeline_screen.json", + "type": "label" + }, + "title_and_author_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "author_button_panel" + ] + }, + "title_and_author_panel/author_button_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "summary_author_button" + ] + }, + "title_and_author_panel/author_button_panel/summary_author_button": { + "file": "ui/store_promo_timeline_screen.json", + "type": "button", + "extend": { + "name": "underline_button", + "namespace": "common_buttons" + } + }, + "glyph_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "item_glyph_count_panel" + ] + }, + "glyph_panel/item_glyph_count_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "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": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "glyph_icon" + ] + }, + "glyph_panel/item_glyph_count_panel/glyph_icon_panel/glyph_icon": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image" + }, + "glyph_panel/item_glyph_count_panel/center_item_glyph_padding": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "glyph_panel/item_glyph_count_panel/item_glyph_count_panel_label": { + "file": "ui/store_promo_timeline_screen.json", + "type": "label" + }, + "glyph_panel/item_glyph_count_panel/item_glyph_panel_padding": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_padding_8px", + "namespace": "pdp" + } + }, + "vertical_glyph_section_content": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "glyph_content", + "bottom_glyph_content_padding" + ] + }, + "vertical_glyph_section_content/glyph_content": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "glyph_panel", + "namespace": "promo_timeline" + } + }, + "vertical_glyph_section_content/bottom_glyph_content_padding": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding_2px", + "namespace": "promo_timeline" + } + }, + "glyph_section_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "glyphs" + ] + }, + "glyph_section_panel/glyphs": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "skin_glyph_section", + "world_glyph_section", + "resource_pack_glyph_section" + ] + }, + "glyph_section_panel/glyphs/skin_glyph_section": { + "file": "ui/store_promo_timeline_screen.json", + "type": "unknown" + }, + "glyph_section_panel/glyphs/world_glyph_section": { + "file": "ui/store_promo_timeline_screen.json", + "type": "unknown" + }, + "glyph_section_panel/glyphs/resource_pack_glyph_section": { + "file": "ui/store_promo_timeline_screen.json", + "type": "unknown" + }, + "vertical_glyph_section_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "glyph_section_panel", + "namespace": "promo_timeline" + } + }, + "image_glyphs_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "world_panel", + "persona_panel", + "divider", + "info" + ] + }, + "image_glyphs_panel/world_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "border", + "world_key_image" + ] + }, + "image_glyphs_panel/world_panel/border": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "image_glyphs_panel/world_panel/world_key_image": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image" + }, + "image_glyphs_panel/persona_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "border", + "persona_image", + "background", + "rarity_bar_panel" + ] + }, + "image_glyphs_panel/persona_panel/border": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "image_glyphs_panel/persona_panel/persona_image": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image" + }, + "image_glyphs_panel/persona_panel/background": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "item_rarity_color_background", + "namespace": "persona_common" + } + }, + "image_glyphs_panel/persona_panel/rarity_bar_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "rarity_bar", + "namespace": "persona_common" + } + }, + "image_glyphs_panel/divider": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "image_glyphs_panel/info": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "summary_title_and_author_panel", + "glyph_section" + ] + }, + "image_glyphs_panel/info/summary_title_and_author_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "extend": { + "name": "title_and_author_panel", + "namespace": "promo_timeline" + } + }, + "image_glyphs_panel/info/glyph_section": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "glyph_section_panel" + ] + }, + "image_glyphs_panel/info/glyph_section/glyph_section_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "vertical_glyph_section_panel", + "namespace": "promo_timeline" + } + }, + "promo_lower_button_content": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "promo_banner_button", + "progress_loading_spinner" + ] + }, + "promo_lower_button_content/promo_banner_button": { + "file": "ui/store_promo_timeline_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "promo_lower_button_content/progress_loading_spinner": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_spinner", + "namespace": "common_store" + } + }, + "free_discount_label": { + "file": "ui/store_promo_timeline_screen.json", + "type": "label" + }, + "promo_upper_button_content": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "markdown", + "promo_item_action_text_panel", + "download_progress_bar" + ] + }, + "promo_upper_button_content/markdown": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "sales_banner_offset_panel", + "price_markdown_panel" + ] + }, + "promo_upper_button_content/markdown/sales_banner_offset_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "sales_banner_panel" + ] + }, + "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "markdown_banner" + ] + }, + "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel/markdown_banner": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "extend": { + "name": "markdown_background", + "namespace": "common_store" + } + }, + "promo_upper_button_content/markdown/price_markdown_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "offer_price" + ] + }, + "promo_upper_button_content/markdown/price_markdown_panel/offer_price": { + "file": "ui/store_promo_timeline_screen.json", + "type": "label", + "children": [ + "text_strike_through" + ] + }, + "promo_upper_button_content/markdown/price_markdown_panel/offer_price/text_strike_through": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "text_strike_through", + "namespace": "common_store" + } + }, + "promo_upper_button_content/promo_item_action_text_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "warning_image_panel", + "promo_item_action_text" + ] + }, + "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "platform_restricted_warning_image", + "padding" + ] + }, + "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/platform_restricted_warning_image": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image" + }, + "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/padding": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promo_upper_button_content/promo_item_action_text_panel/promo_item_action_text": { + "file": "ui/store_promo_timeline_screen.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "promo_upper_button_content/download_progress_bar": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "store_progress_bar_icon", + "namespace": "common_store" + } + }, + "description_section_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "contents_description" + ] + }, + "description_section_panel/contents_description": { + "file": "ui/store_promo_timeline_screen.json", + "type": "label" + }, + "offset_title_offer": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "pad_0", + "title_panel" + ] + }, + "offset_title_offer/pad_0": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "offset_title_offer/title_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "offer_title_panel", + "namespace": "promo_timeline" + } + }, + "offset_promo_timer": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "pad_0", + "promo_timer" + ] + }, + "offset_promo_timer/pad_0": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "offset_promo_timer/promo_timer": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "extend": { + "name": "promo_timer_panel", + "namespace": "promo_timeline" + } + }, + "offset_image_glyphs_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "pad_0", + "smaller_panel" + ] + }, + "offset_image_glyphs_panel/pad_0": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "offset_image_glyphs_panel/smaller_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "details", + "description" + ] + }, + "offset_image_glyphs_panel/smaller_panel/details": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "extend": { + "name": "image_glyphs_panel", + "namespace": "promo_timeline" + } + }, + "offset_image_glyphs_panel/smaller_panel/description": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "description_section_panel", + "namespace": "promo_timeline" + } + }, + "promo_pack_detail_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "offset_title_panel", + "offsetted_promo_timer", + "pad_0", + "offsetted_details", + "pad_1" + ] + }, + "promo_pack_detail_panel/offset_title_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "extend": { + "name": "offset_title_offer", + "namespace": "promo_timeline" + } + }, + "promo_pack_detail_panel/offsetted_promo_timer": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "extend": { + "name": "offset_promo_timer", + "namespace": "promo_timeline" + } + }, + "promo_pack_detail_panel/pad_0": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promo_pack_detail_panel/offsetted_details": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "extend": { + "name": "offset_image_glyphs_panel", + "namespace": "promo_timeline" + } + }, + "promo_pack_detail_panel/pad_1": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promo_left_inner_top_scrolling_content": { + "file": "ui/store_promo_timeline_screen.json", + "type": "input_panel", + "children": [ + "details" + ] + }, + "promo_left_inner_top_scrolling_content/details": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "extend": { + "name": "promo_pack_detail_panel", + "namespace": "promo_timeline" + } + }, + "promo_left_inner_top": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "top", + "padding2" + ] + }, + "promo_left_inner_top/top": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "promo_left_inner_top/padding2": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "vertical_padding_2px", + "namespace": "promo_timeline" + } + }, + "promo_left_inner_bottom": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "banner_button_top_panel", + "banner_button_bottom" + ] + }, + "promo_left_inner_bottom/banner_button_top_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "banner_button_top", + "platform_restricted_error_single_item" + ] + }, + "promo_left_inner_bottom/banner_button_top_panel/banner_button_top": { + "file": "ui/store_promo_timeline_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "promo_left_inner_bottom/banner_button_top_panel/platform_restricted_error_single_item": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "platform_restricted_error", + "namespace": "promo_timeline" + } + }, + "promo_left_inner_bottom/banner_button_bottom": { + "file": "ui/store_promo_timeline_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "promo_left_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "top", + "bottom_buttons_padded", + "padding" + ] + }, + "promo_left_panel/top": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "extend": { + "name": "promo_left_inner_top", + "namespace": "promo_timeline" + } + }, + "promo_left_panel/bottom_buttons_padded": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "pad_0", + "bottom" + ] + }, + "promo_left_panel/bottom_buttons_padded/pad_0": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promo_left_panel/bottom_buttons_padded/bottom": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "extend": { + "name": "promo_left_inner_bottom", + "namespace": "promo_timeline" + } + }, + "promo_left_panel/padding": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promo_world_image_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "image" + ] + }, + "promo_world_image_panel/image": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "key_image" + ] + }, + "promo_world_image_panel/image/key_image": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "children": [ + "border" + ] + }, + "promo_world_image_panel/image/key_image/border": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "promo_grey_bar_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "grey_bar", + "green_bar", + "padding" + ] + }, + "promo_grey_bar_panel/grey_bar": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image" + }, + "promo_grey_bar_panel/green_bar": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image" + }, + "promo_grey_bar_panel/padding": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promo_world_button_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "pan_left_button", + "navigation_bar", + "pan_right_button" + ] + }, + "promo_world_button_panel/pan_left_button": { + "file": "ui/store_promo_timeline_screen.json", + "type": "button", + "extend": { + "name": "cycle_pack_left_button", + "namespace": "common_store" + } + }, + "promo_world_button_panel/navigation_bar": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "grey_bar" + ] + }, + "promo_world_button_panel/navigation_bar/grey_bar": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "children": [ + "grey_bar_factory_panel" + ] + }, + "promo_world_button_panel/navigation_bar/grey_bar/grey_bar_factory_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel" + }, + "promo_world_button_panel/pan_right_button": { + "file": "ui/store_promo_timeline_screen.json", + "type": "button", + "extend": { + "name": "cycle_pack_right_button", + "namespace": "common_store" + } + }, + "promo_world_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "image", + "padding1", + "buttons", + "padding_3" + ] + }, + "promo_world_panel/image": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "promo_world_image_panel", + "namespace": "promo_timeline" + } + }, + "promo_world_panel/padding1": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promo_world_panel/buttons": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "extend": { + "name": "promo_world_button_panel", + "namespace": "promo_timeline" + } + }, + "promo_world_panel/padding_3": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promo_skin_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "size_control" + ] + }, + "promo_skin_panel/size_control": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "background", + "skin_button" + ] + }, + "promo_skin_panel/size_control/background": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image" + }, + "promo_skin_panel/size_control/skin_button": { + "file": "ui/store_promo_timeline_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed", + "content_panel" + ] + }, + "promo_skin_panel/size_control/skin_button/default": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "promo_skin_panel/size_control/skin_button/hover": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "promo_skin_panel/size_control/skin_button/pressed": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "promo_skin_panel/size_control/skin_button/content_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "paper_doll" + ] + }, + "promo_skin_panel/size_control/skin_button/content_panel/paper_doll": { + "file": "ui/store_promo_timeline_screen.json", + "type": "custom" + }, + "promo_skin_grid_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "promo_skin_pack_grid" + ] + }, + "promo_skin_grid_panel/promo_skin_pack_grid": { + "file": "ui/store_promo_timeline_screen.json", + "type": "grid" + }, + "promo_right_panel_scroll_content": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "world_screenshots_panel", + "skin_image_panel", + "persona_preview" + ] + }, + "promo_right_panel_scroll_content/world_screenshots_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "world_panel" + ] + }, + "promo_right_panel_scroll_content/world_screenshots_panel/world_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "extend": { + "name": "promo_world_panel", + "namespace": "promo_timeline" + } + }, + "promo_right_panel_scroll_content/skin_image_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "skin_panel" + ] + }, + "promo_right_panel_scroll_content/skin_image_panel/skin_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "unknown", + "extend": { + "name": "skin_scroll_panel", + "namespace": "promo_timeline" + } + }, + "promo_right_panel_scroll_content/persona_preview": { + "file": "ui/store_promo_timeline_screen.json", + "type": "input_panel", + "extend": { + "name": "promotion_skin_viewer_panel", + "namespace": "promo_timeline" + } + }, + "skin_scroll_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "unknown", + "extend": { + "name": "scroll_section", + "namespace": "persona_sdl" + } + }, + "persona_classic_skin_grid_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "persona_skin_pack_category_grid" + ] + }, + "persona_classic_skin_grid_panel/persona_skin_pack_category_grid": { + "file": "ui/store_promo_timeline_screen.json", + "type": "grid" + }, + "promo_right_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "promo_detail_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "children": [ + "detail", + "center_spacing", + "right" + ] + }, + "promo_detail_panel/detail": { + "file": "ui/store_promo_timeline_screen.json", + "type": "stack_panel", + "extend": { + "name": "promo_left_panel", + "namespace": "promo_timeline" + } + }, + "promo_detail_panel/center_spacing": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel" + }, + "promo_detail_panel/right": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "extend": { + "name": "promo_right_panel", + "namespace": "promo_timeline" + } + }, + "promotion_skin_viewer_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "input_panel", + "children": [ + "popup_dialog_factory", + "character_loading_panel", + "skin_model_panel" + ] + }, + "promotion_skin_viewer_panel/popup_dialog_factory": { + "file": "ui/store_promo_timeline_screen.json", + "type": "factory" + }, + "promotion_skin_viewer_panel/character_loading_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "loading_icon", + "namespace": "persona_common" + } + }, + "promotion_skin_viewer_panel/skin_model_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "skin_model", + "arrow_panel" + ] + }, + "promotion_skin_viewer_panel/skin_model_panel/skin_model": { + "file": "ui/store_promo_timeline_screen.json", + "type": "custom" + }, + "promotion_skin_viewer_panel/skin_model_panel/arrow_panel": { + "file": "ui/store_promo_timeline_screen.json", + "type": "panel", + "children": [ + "rotate_arrows" + ] + }, + "promotion_skin_viewer_panel/skin_model_panel/arrow_panel/rotate_arrows": { + "file": "ui/store_promo_timeline_screen.json", + "type": "image", + "extend": { + "name": "skin_rotation_arrows", + "namespace": "skin_picker" + } + }, + "promo_popup_toast": { + "file": "ui/store_promo_timeline_screen.json", + "type": "input_panel", + "extend": { + "name": "popup_common", + "namespace": "persona_popups" + } + } + }, + "store_sale_item_list": { + "banner_header": { + "file": "ui/store_sales_item_list_screen.json", + "type": "panel", + "children": [ + "label_panel" + ] + }, + "banner_header/label_panel": { + "file": "ui/store_sales_item_list_screen.json", + "type": "panel", + "children": [ + "on_sale_banner", + "time_remaining_label" + ] + }, + "banner_header/label_panel/on_sale_banner": { + "file": "ui/store_sales_item_list_screen.json", + "type": "image", + "children": [ + "padding_panel" + ] + }, + "banner_header/label_panel/on_sale_banner/padding_panel": { + "file": "ui/store_sales_item_list_screen.json", + "type": "panel", + "children": [ + "sales_row_header_label", + "triangle" + ] + }, + "banner_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label": { + "file": "ui/store_sales_item_list_screen.json", + "type": "label", + "extend": { + "name": "store_section_header_label", + "namespace": "common_store" + } + }, + "banner_header/label_panel/on_sale_banner/padding_panel/triangle": { + "file": "ui/store_sales_item_list_screen.json", + "type": "image" + }, + "banner_header/label_panel/time_remaining_label": { + "file": "ui/store_sales_item_list_screen.json", + "type": "label", + "extend": { + "name": "label", + "namespace": "common_store" + } + }, + "sales_offer_content": { + "file": "ui/store_sales_item_list_screen.json", + "type": "stack_panel", + "children": [ + "top_padding", + "sales_panel" + ] + }, + "sales_offer_content/top_padding": { + "file": "ui/store_sales_item_list_screen.json", + "type": "panel" + }, + "sales_offer_content/sales_panel": { + "file": "ui/store_sales_item_list_screen.json", + "type": "stack_panel", + "children": [ + "sales_banner_panel", + "top_sales_grid_padding", + "sales_grid_panel" + ] + }, + "sales_offer_content/sales_panel/sales_banner_panel": { + "file": "ui/store_sales_item_list_screen.json", + "type": "panel", + "extend": { + "name": "banner_header", + "namespace": "store_sale_item_list" + } + }, + "sales_offer_content/sales_panel/top_sales_grid_padding": { + "file": "ui/store_sales_item_list_screen.json", + "type": "panel" + }, + "sales_offer_content/sales_panel/sales_grid_panel": { + "file": "ui/store_sales_item_list_screen.json", + "type": "panel", + "children": [ + "sales_offer_grid" + ] + }, + "sales_offer_content/sales_panel/sales_grid_panel/sales_offer_grid": { + "file": "ui/store_sales_item_list_screen.json", + "type": "grid", + "extend": { + "name": "store_offer_grid", + "namespace": "store_item_list" + } + }, + "all_offer_content": { + "file": "ui/store_sales_item_list_screen.json", + "type": "panel", + "children": [ + "store_offer_grid_panel" + ] + }, + "all_offer_content/store_offer_grid_panel": { + "file": "ui/store_sales_item_list_screen.json", + "type": "grid", + "extend": { + "name": "store_offer_grid", + "namespace": "store_item_list" + } + } + }, + "store_search": { + "store_offer_grid_item": { + "file": "ui/store_search_screen.json", + "type": "panel", + "extend": { + "name": "store_offer_grid_item", + "namespace": "common_store" + } + }, + "trending_row_content": { + "file": "ui/store_search_screen.json", + "type": "panel", + "children": [ + "trending_row_panel" + ] + }, + "trending_row_content/trending_row_panel": { + "file": "ui/store_search_screen.json", + "type": "stack_panel", + "children": [ + "trending_row_label_panel", + "mid_padding", + "trending_offers_grid", + "bottom_padding" + ] + }, + "trending_row_content/trending_row_panel/trending_row_label_panel": { + "file": "ui/store_search_screen.json", + "type": "panel", + "children": [ + "trending_row_label" + ] + }, + "trending_row_content/trending_row_panel/trending_row_label_panel/trending_row_label": { + "file": "ui/store_search_screen.json", + "type": "label" + }, + "trending_row_content/trending_row_panel/mid_padding": { + "file": "ui/store_search_screen.json", + "type": "panel" + }, + "trending_row_content/trending_row_panel/trending_offers_grid": { + "file": "ui/store_search_screen.json", + "type": "grid" + }, + "trending_row_content/trending_row_panel/bottom_padding": { + "file": "ui/store_search_screen.json", + "type": "panel" + }, + "trending_rows_grid": { + "file": "ui/store_search_screen.json", + "type": "grid" + }, + "search_offer_content": { + "file": "ui/store_search_screen.json", + "type": "panel", + "children": [ + "trending_grid", + "item_list_panel" + ] + }, + "search_offer_content/trending_grid": { + "file": "ui/store_search_screen.json", + "type": "grid", + "extend": { + "name": "trending_rows_grid", + "namespace": "store_search" + } + }, + "search_offer_content/item_list_panel": { + "file": "ui/store_search_screen.json", + "type": "panel", + "children": [ + "item_list_grid" + ] + }, + "search_offer_content/item_list_panel/item_list_grid": { + "file": "ui/store_search_screen.json", + "type": "grid", + "extend": { + "name": "store_offer_grid", + "namespace": "store_item_list" + } + }, + "main_panel": { + "file": "ui/store_search_screen.json", + "type": "input_panel", + "children": [ + "seach_object", + "progress_loading" + ] + }, + "main_panel/seach_object": { + "file": "ui/store_search_screen.json", + "type": "panel", + "extend": { + "name": "search_object", + "namespace": "common_store" + } + }, + "main_panel/progress_loading": { + "file": "ui/store_search_screen.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "store_search_screen_content": { + "file": "ui/store_search_screen.json", + "type": "panel", + "children": [ + "main_panel", + "popup_dialog_factory" + ] + }, + "store_search_screen_content/main_panel": { + "file": "ui/store_search_screen.json", + "type": "stack_panel", + "extend": { + "name": "store_header_with_coins", + "namespace": "common_store" + } + }, + "store_search_screen_content/popup_dialog_factory": { + "file": "ui/store_search_screen.json", + "type": "factory" + }, + "store_search_screen": { + "file": "ui/store_search_screen.json", + "type": "screen", + "extend": { + "name": "store_base_screen", + "namespace": "common_store" + } + } + }, + "sort_menu": { + "sort_menu_toggle_panel": { + "file": "ui/store_sort_menu_screen.json", + "type": "panel", + "children": [ + "sort_menu_toggle_panel" + ] + }, + "sort_menu_toggle_panel/sort_menu_toggle_panel": { + "file": "ui/store_sort_menu_screen.json", + "type": "panel", + "children": [ + "sort_menu_toggle" + ] + }, + "sort_menu_toggle_panel/sort_menu_toggle_panel/sort_menu_toggle": { + "file": "ui/store_sort_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_sort_toggle", + "namespace": "common_store" + } + }, + "sort_menu_first_button_content_panel": { + "file": "ui/store_sort_menu_screen.json", + "type": "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": { + "file": "ui/store_sort_menu_screen.json", + "type": "panel" + }, + "sort_menu_first_button_content_panel/centered_sort_logo_icon": { + "file": "ui/store_sort_menu_screen.json", + "type": "panel", + "children": [ + "sort_logo_icon" + ] + }, + "sort_menu_first_button_content_panel/centered_sort_logo_icon/sort_logo_icon": { + "file": "ui/store_sort_menu_screen.json", + "type": "image", + "extend": { + "name": "sort_button_content_panel", + "namespace": "common_store" + } + }, + "sort_menu_first_button_content_panel/logo_padding_labels": { + "file": "ui/store_sort_menu_screen.json", + "type": "panel" + }, + "sort_menu_first_button_content_panel/labels_stack_panel": { + "file": "ui/store_sort_menu_screen.json", + "type": "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": { + "file": "ui/store_sort_menu_screen.json", + "type": "panel" + }, + "sort_menu_first_button_content_panel/labels_stack_panel/sort_const_word_top": { + "file": "ui/store_sort_menu_screen.json", + "type": "label" + }, + "sort_menu_first_button_content_panel/labels_stack_panel/middle_padding": { + "file": "ui/store_sort_menu_screen.json", + "type": "panel" + }, + "sort_menu_first_button_content_panel/labels_stack_panel/current_sort_value_label_bottom": { + "file": "ui/store_sort_menu_screen.json", + "type": "label" + }, + "sort_menu_first_button_content_panel/labels_stack_panel/bottom_padding": { + "file": "ui/store_sort_menu_screen.json", + "type": "panel" + }, + "sort_menu_first_button_content_panel/labels_padding_x_image": { + "file": "ui/store_sort_menu_screen.json", + "type": "panel" + }, + "sort_menu_first_button_content_panel/x_image_panel": { + "file": "ui/store_sort_menu_screen.json", + "type": "panel", + "children": [ + "x_image" + ] + }, + "sort_menu_first_button_content_panel/x_image_panel/x_image": { + "file": "ui/store_sort_menu_screen.json", + "type": "image" + }, + "sort_menu_toggles": { + "file": "ui/store_sort_menu_screen.json", + "type": "stack_panel", + "children": [ + "relevance_toggle_panel", + "sort_toggle_grid" + ] + }, + "sort_menu_toggles/relevance_toggle_panel": { + "file": "ui/store_sort_menu_screen.json", + "type": "panel", + "children": [ + "relevance_toggle" + ] + }, + "sort_menu_toggles/relevance_toggle_panel/relevance_toggle": { + "file": "ui/store_sort_menu_screen.json", + "type": "panel", + "extend": { + "name": "sort_menu_toggle_panel", + "namespace": "sort_menu" + } + }, + "sort_menu_toggles/sort_toggle_grid": { + "file": "ui/store_sort_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_sort_grid_panel", + "namespace": "common_store" + } + }, + "sort_menu_show": { + "file": "ui/store_sort_menu_screen.json", + "type": "stack_panel", + "children": [ + "1st_button_centering_panel", + "sort_scrolling_content_panel" + ] + }, + "sort_menu_show/1st_button_centering_panel": { + "file": "ui/store_sort_menu_screen.json", + "type": "panel", + "children": [ + "first_button_main" + ] + }, + "sort_menu_show/1st_button_centering_panel/first_button_main": { + "file": "ui/store_sort_menu_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "sort_menu_show/sort_scrolling_content_panel": { + "file": "ui/store_sort_menu_screen.json", + "type": "panel", + "extend": { + "name": "filter_sort_submenu_scrolling_panel_section", + "namespace": "common_store" + } + }, + "sort_menu_panel": { + "file": "ui/store_sort_menu_screen.json", + "type": "stack_panel", + "extend": { + "name": "vertical_stack_panel", + "namespace": "common" + }, + "children": [ + "top_padding", + "alignment_panel" + ] + }, + "sort_menu_panel/top_padding": { + "file": "ui/store_sort_menu_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "sort_menu_panel/alignment_panel": { + "file": "ui/store_sort_menu_screen.json", + "type": "stack_panel", + "extend": { + "name": "horizontal_stack_panel", + "namespace": "common" + }, + "children": [ + "left_padding", + "sort_menu_show", + "right_padding" + ] + }, + "sort_menu_panel/alignment_panel/left_padding": { + "file": "ui/store_sort_menu_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "sort_menu_panel/alignment_panel/sort_menu_show": { + "file": "ui/store_sort_menu_screen.json", + "type": "stack_panel", + "extend": { + "name": "sort_menu_show", + "namespace": "sort_menu" + } + }, + "sort_menu_panel/alignment_panel/right_padding": { + "file": "ui/store_sort_menu_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "sort_menu_screen_content": { + "file": "ui/store_sort_menu_screen.json", + "type": "input_panel", + "extend": { + "name": "modal_area_panel_base", + "namespace": "common" + }, + "children": [ + "sort_menu_main", + "sort_menu_main_persona", + "sort_menu_background" + ] + }, + "sort_menu_screen_content/sort_menu_main": { + "file": "ui/store_sort_menu_screen.json", + "type": "stack_panel", + "extend": { + "name": "sort_menu_panel", + "namespace": "sort_menu" + } + }, + "sort_menu_screen_content/sort_menu_main_persona": { + "file": "ui/store_sort_menu_screen.json", + "type": "stack_panel", + "extend": { + "name": "sort_menu_panel", + "namespace": "sort_menu" + } + }, + "sort_menu_screen_content/sort_menu_background": { + "file": "ui/store_sort_menu_screen.json", + "type": "panel", + "extend": { + "name": "close_bg_panel", + "namespace": "common_store" + } + } + }, + "structure_editor": { + "small_padding": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "help_icon": { + "file": "ui/structure_editor_screen.json", + "type": "image" + }, + "common_text_label": { + "file": "ui/structure_editor_screen.json", + "type": "label" + }, + "text_edit_control": { + "file": "ui/structure_editor_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "axis_selection_panel": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "children": [ + "label", + "edit_box" + ] + }, + "axis_selection_panel/label": { + "file": "ui/structure_editor_screen.json", + "type": "label", + "extend": { + "name": "common_text_label", + "namespace": "structure_editor" + } + }, + "axis_selection_panel/edit_box": { + "file": "ui/structure_editor_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_control", + "namespace": "structure_editor" + } + }, + "grid_axis_selection_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "children": [ + "label_container", + "axis_grid" + ] + }, + "grid_axis_selection_panel/label_container": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "children": [ + "label" + ] + }, + "grid_axis_selection_panel/label_container/label": { + "file": "ui/structure_editor_screen.json", + "type": "label", + "extend": { + "name": "common_text_label", + "namespace": "structure_editor" + } + }, + "grid_axis_selection_panel/axis_grid": { + "file": "ui/structure_editor_screen.json", + "type": "grid", + "children": [ + "X", + "Y", + "Z" + ] + }, + "grid_axis_selection_panel/axis_grid/X": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "extend": { + "name": "axis_selection_panel", + "namespace": "structure_editor" + } + }, + "grid_axis_selection_panel/axis_grid/Y": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "extend": { + "name": "axis_selection_panel", + "namespace": "structure_editor" + } + }, + "grid_axis_selection_panel/axis_grid/Z": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "extend": { + "name": "axis_selection_panel", + "namespace": "structure_editor" + } + }, + "3d_export_button": { + "file": "ui/structure_editor_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "save_button": { + "file": "ui/structure_editor_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "export_button": { + "file": "ui/structure_editor_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "load_button": { + "file": "ui/structure_editor_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "detect_button": { + "file": "ui/structure_editor_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "import_button": { + "file": "ui/structure_editor_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "reset_button": { + "file": "ui/structure_editor_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "help_button": { + "file": "ui/structure_editor_screen.json", + "type": "button", + "extend": { + "name": "light_glyph_button", + "namespace": "common_buttons" + } + }, + "toggle_option_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "children": [ + "toggle", + "offset_0", + "first_label_wrapper", + "second_label_wrapper" + ] + }, + "toggle_option_panel/toggle": { + "file": "ui/structure_editor_screen.json", + "type": "toggle", + "extend": { + "name": "option_toggle_control", + "namespace": "settings_common" + } + }, + "toggle_option_panel/offset_0": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "toggle_option_panel/first_label_wrapper": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "children": [ + "first_label" + ] + }, + "toggle_option_panel/first_label_wrapper/first_label": { + "file": "ui/structure_editor_screen.json", + "type": "label", + "extend": { + "name": "common_text_label", + "namespace": "structure_editor" + } + }, + "toggle_option_panel/second_label_wrapper": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "children": [ + "second_label" + ] + }, + "toggle_option_panel/second_label_wrapper/second_label": { + "file": "ui/structure_editor_screen.json", + "type": "label", + "extend": { + "name": "common_text_label", + "namespace": "structure_editor" + } + }, + "include_entities_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "children": [ + "label", + "toggle_wrapper" + ] + }, + "include_entities_panel/label": { + "file": "ui/structure_editor_screen.json", + "type": "label", + "extend": { + "name": "common_text_label", + "namespace": "structure_editor" + } + }, + "include_entities_panel/toggle_wrapper": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "children": [ + "toggle" + ] + }, + "include_entities_panel/toggle_wrapper/toggle": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "toggle_option_panel", + "namespace": "structure_editor" + } + }, + "waterlogging_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "children": [ + "label", + "toggle_wrapper" + ] + }, + "waterlogging_panel/label": { + "file": "ui/structure_editor_screen.json", + "type": "label", + "extend": { + "name": "common_text_label", + "namespace": "structure_editor" + } + }, + "waterlogging_panel/toggle_wrapper": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "children": [ + "toggle" + ] + }, + "waterlogging_panel/toggle_wrapper/toggle": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "toggle_option_panel", + "namespace": "structure_editor" + } + }, + "show_bounding_box_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "children": [ + "label", + "toggle_wrapper" + ] + }, + "show_bounding_box_panel/label": { + "file": "ui/structure_editor_screen.json", + "type": "label", + "extend": { + "name": "common_text_label", + "namespace": "structure_editor" + } + }, + "show_bounding_box_panel/toggle_wrapper": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "children": [ + "toggle" + ] + }, + "show_bounding_box_panel/toggle_wrapper/toggle": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "toggle_option_panel", + "namespace": "structure_editor" + } + }, + "include_player_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "children": [ + "label", + "toggle_wrapper" + ] + }, + "include_player_panel/label": { + "file": "ui/structure_editor_screen.json", + "type": "label", + "extend": { + "name": "common_text_label", + "namespace": "structure_editor" + } + }, + "include_player_panel/toggle_wrapper": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "children": [ + "toggle" + ] + }, + "include_player_panel/toggle_wrapper/toggle": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "toggle_option_panel", + "namespace": "structure_editor" + } + }, + "remove_blocks_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "children": [ + "label", + "toggle_wrapper" + ] + }, + "remove_blocks_panel/label": { + "file": "ui/structure_editor_screen.json", + "type": "label", + "extend": { + "name": "common_text_label", + "namespace": "structure_editor" + } + }, + "remove_blocks_panel/toggle_wrapper": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "children": [ + "toggle" + ] + }, + "remove_blocks_panel/toggle_wrapper/toggle": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "toggle_option_panel", + "namespace": "structure_editor" + } + }, + "3d_export_mode_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "children": [ + "size_offset_panel", + "offset_0", + "offset_2", + "remove_blocks" + ] + }, + "3d_export_mode_panel/size_offset_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "children": [ + "size_panel", + "offset_panel" + ] + }, + "3d_export_mode_panel/size_offset_panel/size_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "grid_axis_selection_panel", + "namespace": "structure_editor" + } + }, + "3d_export_mode_panel/size_offset_panel/offset_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "grid_axis_selection_panel", + "namespace": "structure_editor" + } + }, + "3d_export_mode_panel/offset_0": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "3d_export_mode_panel/offset_2": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "3d_export_mode_panel/remove_blocks": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "remove_blocks_panel", + "namespace": "structure_editor" + } + }, + "save_mode_panel": { + "file": "ui/structure_editor_screen.json", + "type": "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": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "extend": { + "name": "structure_name_wrapper", + "namespace": "structure_editor" + } + }, + "save_mode_panel/size_offset_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "children": [ + "size_panel", + "offset_panel" + ] + }, + "save_mode_panel/size_offset_panel/size_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "grid_axis_selection_panel", + "namespace": "structure_editor" + } + }, + "save_mode_panel/size_offset_panel/offset_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "grid_axis_selection_panel", + "namespace": "structure_editor" + } + }, + "save_mode_panel/detect_offset": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "save_mode_panel/detect": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "extend": { + "name": "detect_button_wrapper", + "namespace": "structure_editor" + } + }, + "save_mode_panel/include_entities_offset": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "save_mode_panel/include_entities": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "include_entities_panel", + "namespace": "structure_editor" + } + }, + "save_mode_panel/remove_blocks_offset": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "save_mode_panel/remove_blocks": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "remove_blocks_panel", + "namespace": "structure_editor" + } + }, + "save_mode_panel/redstone_save_offset": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "save_mode_panel/redstone_save_mode": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "extend": { + "name": "redstone_save_mode_panel", + "namespace": "structure_editor" + } + }, + "save_mode_panel/trailing_offset": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "mirror_checkbox": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "children": [ + "label", + "padding", + "check_box" + ] + }, + "mirror_checkbox/label": { + "file": "ui/structure_editor_screen.json", + "type": "label" + }, + "mirror_checkbox/padding": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "mirror_checkbox/check_box": { + "file": "ui/structure_editor_screen.json", + "type": "toggle", + "extend": { + "name": "checkbox", + "namespace": "common" + } + }, + "mirror_checkboxes": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "children": [ + "mirror_checkbox_x", + "padding", + "mirror_checkbox_z" + ] + }, + "mirror_checkboxes/mirror_checkbox_x": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "mirror_checkbox", + "namespace": "structure_editor" + } + }, + "mirror_checkboxes/padding": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "mirror_checkboxes/mirror_checkbox_z": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "mirror_checkbox", + "namespace": "structure_editor" + } + }, + "load_mode_panel": { + "file": "ui/structure_editor_screen.json", + "type": "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": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "extend": { + "name": "structure_name_wrapper", + "namespace": "structure_editor" + } + }, + "load_mode_panel/offset_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "grid_axis_selection_panel", + "namespace": "structure_editor" + } + }, + "load_mode_panel/include_entities_offset": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "load_mode_panel/include_entities": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "include_entities_panel", + "namespace": "structure_editor" + } + }, + "load_mode_panel/remove_blocks_offset": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "load_mode_panel/waterlog_blocks": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "waterlogging_panel", + "namespace": "structure_editor" + } + }, + "load_mode_panel/waterlog_blocks_offset": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "load_mode_panel/remove_blocks": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "remove_blocks_panel", + "namespace": "structure_editor" + } + }, + "load_mode_panel/integrity_offset": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "load_mode_panel/integrity_label": { + "file": "ui/structure_editor_screen.json", + "type": "label", + "extend": { + "name": "common_text_label", + "namespace": "structure_editor" + } + }, + "load_mode_panel/integrity_field": { + "file": "ui/structure_editor_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_control", + "namespace": "structure_editor" + } + }, + "load_mode_panel/offset_1": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "load_mode_panel/seed_label": { + "file": "ui/structure_editor_screen.json", + "type": "label", + "extend": { + "name": "common_text_label", + "namespace": "structure_editor" + } + }, + "load_mode_panel/seed_field": { + "file": "ui/structure_editor_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_control", + "namespace": "structure_editor" + } + }, + "load_mode_panel/offset_2": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "load_mode_panel/rotation_slider": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "extend": { + "name": "option_slider", + "namespace": "settings_common" + } + }, + "load_mode_panel/mirror_label": { + "file": "ui/structure_editor_screen.json", + "type": "label" + }, + "load_mode_panel/mirror_checkboxes_centerer": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "children": [ + "mirror_checkboxes" + ] + }, + "load_mode_panel/mirror_checkboxes_centerer/mirror_checkboxes": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "mirror_checkboxes", + "namespace": "structure_editor" + } + }, + "load_mode_panel/checkbox_offset": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "load_mode_panel/animation_mode": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "extend": { + "name": "animation_mode_dropdown", + "namespace": "structure_editor" + } + }, + "load_mode_panel/animation_time_label": { + "file": "ui/structure_editor_screen.json", + "type": "label" + }, + "load_mode_panel/animation_time_field": { + "file": "ui/structure_editor_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_control", + "namespace": "structure_editor" + } + }, + "data_mode_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "children": [ + "top_offset", + "data_label", + "data_label_offset", + "data_field", + "data_field_offset" + ] + }, + "data_mode_panel/top_offset": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "data_mode_panel/data_label": { + "file": "ui/structure_editor_screen.json", + "type": "label", + "extend": { + "name": "common_text_label", + "namespace": "structure_editor" + } + }, + "data_mode_panel/data_label_offset": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "data_mode_panel/data_field": { + "file": "ui/structure_editor_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_control", + "namespace": "structure_editor" + } + }, + "data_mode_panel/data_field_offset": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "corner_mode_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "children": [ + "structure_name" + ] + }, + "corner_mode_panel/structure_name": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "extend": { + "name": "structure_name_wrapper", + "namespace": "structure_editor" + } + }, + "help_button_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "children": [ + "help", + "help_divider" + ] + }, + "help_button_panel/help": { + "file": "ui/structure_editor_screen.json", + "type": "button", + "extend": { + "name": "help_button", + "namespace": "structure_editor" + } + }, + "help_button_panel/help_divider": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "save_button_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "children": [ + "divider", + "save", + "save_divider", + "export", + "export_divider", + "import_divider", + "reset", + "reset_divider" + ] + }, + "save_button_panel/divider": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "save_button_panel/save": { + "file": "ui/structure_editor_screen.json", + "type": "button", + "extend": { + "name": "save_button", + "namespace": "structure_editor" + } + }, + "save_button_panel/save_divider": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "save_button_panel/export": { + "file": "ui/structure_editor_screen.json", + "type": "button", + "extend": { + "name": "export_button", + "namespace": "structure_editor" + } + }, + "save_button_panel/export_divider": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "save_button_panel/import_divider": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "save_button_panel/reset": { + "file": "ui/structure_editor_screen.json", + "type": "button", + "extend": { + "name": "reset_button", + "namespace": "structure_editor" + } + }, + "save_button_panel/reset_divider": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "save_button_panel_no_export": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "children": [ + "divider", + "save", + "save_divider", + "reset", + "reset_divider" + ] + }, + "save_button_panel_no_export/divider": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "save_button_panel_no_export/save": { + "file": "ui/structure_editor_screen.json", + "type": "button", + "extend": { + "name": "save_button", + "namespace": "structure_editor" + } + }, + "save_button_panel_no_export/save_divider": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "save_button_panel_no_export/reset": { + "file": "ui/structure_editor_screen.json", + "type": "button", + "extend": { + "name": "reset_button", + "namespace": "structure_editor" + } + }, + "save_button_panel_no_export/reset_divider": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "load_button_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "children": [ + "divider", + "load", + "load_divider", + "export_divider", + "import", + "import_divider", + "reset", + "reset_divider" + ] + }, + "load_button_panel/divider": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "load_button_panel/load": { + "file": "ui/structure_editor_screen.json", + "type": "button", + "extend": { + "name": "load_button", + "namespace": "structure_editor" + } + }, + "load_button_panel/load_divider": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "load_button_panel/export_divider": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "load_button_panel/import": { + "file": "ui/structure_editor_screen.json", + "type": "button", + "extend": { + "name": "import_button", + "namespace": "structure_editor" + } + }, + "load_button_panel/import_divider": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "load_button_panel/reset": { + "file": "ui/structure_editor_screen.json", + "type": "button", + "extend": { + "name": "reset_button", + "namespace": "structure_editor" + } + }, + "load_button_panel/reset_divider": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "load_button_panel_no_export": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "children": [ + "divider", + "load", + "load_divider", + "reset", + "reset_divider" + ] + }, + "load_button_panel_no_export/divider": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "load_button_panel_no_export/load": { + "file": "ui/structure_editor_screen.json", + "type": "button", + "extend": { + "name": "load_button", + "namespace": "structure_editor" + } + }, + "load_button_panel_no_export/load_divider": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "load_button_panel_no_export/reset": { + "file": "ui/structure_editor_screen.json", + "type": "button", + "extend": { + "name": "reset_button", + "namespace": "structure_editor" + } + }, + "load_button_panel_no_export/reset_divider": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "3d_export_button_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "children": [ + "divider", + "3d_export", + "3d_export_divider", + "import", + "import_divider", + "reset", + "reset_divider" + ] + }, + "3d_export_button_panel/divider": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "3d_export_button_panel/3d_export": { + "file": "ui/structure_editor_screen.json", + "type": "button", + "extend": { + "name": "3d_export_button", + "namespace": "structure_editor" + } + }, + "3d_export_button_panel/3d_export_divider": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "3d_export_button_panel/import": { + "file": "ui/structure_editor_screen.json", + "type": "button", + "extend": { + "name": "import_button", + "namespace": "structure_editor" + } + }, + "3d_export_button_panel/import_divider": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "3d_export_button_panel/reset": { + "file": "ui/structure_editor_screen.json", + "type": "button", + "extend": { + "name": "reset_button", + "namespace": "structure_editor" + } + }, + "3d_export_button_panel/reset_divider": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "data_button_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "children": [ + "divider", + "reset", + "reset_divider" + ] + }, + "data_button_panel/divider": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "data_button_panel/reset": { + "file": "ui/structure_editor_screen.json", + "type": "button", + "extend": { + "name": "reset_button", + "namespace": "structure_editor" + } + }, + "data_button_panel/reset_divider": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "corner_button_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "children": [ + "reset_divider" + ] + }, + "corner_button_panel/reset_divider": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "button_panel_wrapper": { + "file": "ui/structure_editor_screen.json", + "type": "image", + "children": [ + "panel" + ] + }, + "button_panel_wrapper/panel": { + "file": "ui/structure_editor_screen.json", + "type": "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": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "button_panel_wrapper/panel/save_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "save_button_panel", + "namespace": "structure_editor" + } + }, + "button_panel_wrapper/panel/save_panel_no_export": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "save_button_panel_no_export", + "namespace": "structure_editor" + } + }, + "button_panel_wrapper/panel/corner_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "corner_button_panel", + "namespace": "structure_editor" + } + }, + "button_panel_wrapper/panel/load_panel_no_export": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "load_button_panel_no_export", + "namespace": "structure_editor" + } + }, + "button_panel_wrapper/panel/load_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "load_button_panel", + "namespace": "structure_editor" + } + }, + "button_panel_wrapper/panel/3d_export_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "3d_export_button_panel", + "namespace": "structure_editor" + } + }, + "button_panel_wrapper/panel/data_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "data_button_panel", + "namespace": "structure_editor" + } + }, + "button_panel_wrapper/panel/how_to_play_button": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "help_button_panel", + "namespace": "structure_editor" + } + }, + "button_panel_wrapper/panel/end_divider": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "redstone_dropdown_content": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "redstone_save_mode_panel": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "animation_mode_dropdown_content": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "animation_mode_dropdown": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "structure_name_wrapper": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "children": [ + "structure_name", + "structure_name_offset" + ] + }, + "structure_name_wrapper/structure_name": { + "file": "ui/structure_editor_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_control", + "namespace": "structure_editor" + } + }, + "structure_name_wrapper/structure_name_offset": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "detect_button_wrapper": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "children": [ + "detect", + "detect_offset" + ] + }, + "detect_button_wrapper/detect": { + "file": "ui/structure_editor_screen.json", + "type": "button", + "extend": { + "name": "detect_button", + "namespace": "structure_editor" + } + }, + "detect_button_wrapper/detect_offset": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "mode_dropdown_content": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "extend": { + "name": "option_radio_dropdown_group", + "namespace": "settings_common" + } + }, + "mode_panel": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "extend": { + "name": "option_dropdown", + "namespace": "settings_common" + } + }, + "scrolling_panel_wrapper": { + "file": "ui/structure_editor_screen.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_4", + "namespace": "common" + }, + "children": [ + "scrolling_panel" + ] + }, + "scrolling_panel_wrapper/scrolling_panel": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "structure_editor" + } + }, + "scrolling_panel": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "scroll_panel_content": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "children": [ + "content_stack_panel" + ] + }, + "scroll_panel_content/content_stack_panel": { + "file": "ui/structure_editor_screen.json", + "type": "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": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "scroll_panel_content/content_stack_panel/mode_panel": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "extend": { + "name": "mode_panel", + "namespace": "structure_editor" + } + }, + "scroll_panel_content/content_stack_panel/mode_panel_offset": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "scroll_panel_content/content_stack_panel/3d_export_mode_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "3d_export_mode_panel", + "namespace": "structure_editor" + } + }, + "scroll_panel_content/content_stack_panel/save_mode_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "save_mode_panel", + "namespace": "structure_editor" + } + }, + "scroll_panel_content/content_stack_panel/load_mode_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "load_mode_panel", + "namespace": "structure_editor" + } + }, + "scroll_panel_content/content_stack_panel/data_mode_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "data_mode_panel", + "namespace": "structure_editor" + } + }, + "scroll_panel_content/content_stack_panel/corner_mode_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "corner_mode_panel", + "namespace": "structure_editor" + } + }, + "scroll_panel_content/content_stack_panel/base_mode_offset": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "scroll_panel_content/content_stack_panel/show_bounding_box": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "show_bounding_box_panel", + "namespace": "structure_editor" + } + }, + "scroll_panel_content/content_stack_panel/show_bounding_box_offset": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "scroll_panel_content/content_stack_panel/offset_2": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "left_divider_content": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "left_divider_content/scrolling_panel": { + "file": "ui/structure_editor_screen.json", + "type": "image", + "extend": { + "name": "scrolling_panel_wrapper", + "namespace": "structure_editor" + } + }, + "save_message_text": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "children": [ + "save_message_label" + ] + }, + "save_message_text/save_message_label": { + "file": "ui/structure_editor_screen.json", + "type": "label" + }, + "import_message_text": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "children": [ + "save_message_label" + ] + }, + "import_message_text/save_message_label": { + "file": "ui/structure_editor_screen.json", + "type": "label" + }, + "import_failed_message_text": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "children": [ + "save_message_label" + ] + }, + "import_failed_message_text/save_message_label": { + "file": "ui/structure_editor_screen.json", + "type": "label" + }, + "export_disabled_label": { + "file": "ui/structure_editor_screen.json", + "type": "label" + }, + "image_panel_wrapper": { + "file": "ui/structure_editor_screen.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_4", + "namespace": "common" + }, + "children": [ + "image_panel", + "save_message_factory", + "import_message_factory", + "import_failed_message_factory", + "export_disabled" + ] + }, + "image_panel_wrapper/image_panel": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "extend": { + "name": "image_panel", + "namespace": "structure_editor" + } + }, + "image_panel_wrapper/save_message_factory": { + "file": "ui/structure_editor_screen.json", + "type": "factory" + }, + "image_panel_wrapper/import_message_factory": { + "file": "ui/structure_editor_screen.json", + "type": "factory" + }, + "image_panel_wrapper/import_failed_message_factory": { + "file": "ui/structure_editor_screen.json", + "type": "factory" + }, + "image_panel_wrapper/export_disabled": { + "file": "ui/structure_editor_screen.json", + "type": "label", + "extend": { + "name": "export_disabled_label", + "namespace": "structure_editor" + } + }, + "corner_text": { + "file": "ui/structure_editor_screen.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_4", + "namespace": "common" + }, + "children": [ + "image_panel" + ] + }, + "corner_text/image_panel": { + "file": "ui/structure_editor_screen.json", + "type": "unknown", + "extend": { + "name": "corner_text_section", + "namespace": "structure_editor" + } + }, + "image_panel": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "children": [ + "border_indent" + ] + }, + "image_panel/border_indent": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "children": [ + "background_gradient", + "image_outline", + "structure_renderer", + "text_corner", + "progress_panel", + "rotate_arrows" + ] + }, + "image_panel/border_indent/background_gradient": { + "file": "ui/structure_editor_screen.json", + "type": "custom", + "extend": { + "name": "background_gradient", + "namespace": "structure_editor" + } + }, + "image_panel/border_indent/image_outline": { + "file": "ui/structure_editor_screen.json", + "type": "image", + "extend": { + "name": "focus_border", + "namespace": "common_buttons" + } + }, + "image_panel/border_indent/structure_renderer": { + "file": "ui/structure_editor_screen.json", + "type": "input_panel", + "extend": { + "name": "structure_renderer", + "namespace": "structure_editor" + } + }, + "image_panel/border_indent/text_corner": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "corner_text_panel", + "namespace": "structure_editor" + } + }, + "image_panel/border_indent/progress_panel": { + "file": "ui/structure_editor_screen.json", + "type": "input_panel", + "extend": { + "name": "progress_panel", + "namespace": "structure_editor" + } + }, + "image_panel/border_indent/rotate_arrows": { + "file": "ui/structure_editor_screen.json", + "type": "image", + "extend": { + "name": "rotation_arrows", + "namespace": "structure_editor" + } + }, + "progress_panel": { + "file": "ui/structure_editor_screen.json", + "type": "input_panel", + "children": [ + "stack_panel" + ] + }, + "progress_panel/stack_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "children": [ + "label_wrapper", + "progress_bar" + ] + }, + "progress_panel/stack_panel/label_wrapper": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "children": [ + "progress_label" + ] + }, + "progress_panel/stack_panel/label_wrapper/progress_label": { + "file": "ui/structure_editor_screen.json", + "type": "label", + "extend": { + "name": "common_text_label", + "namespace": "structure_editor" + } + }, + "progress_panel/stack_panel/progress_bar": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "extend": { + "name": "progress_bar_icon", + "namespace": "file_upload" + } + }, + "background_gradient": { + "file": "ui/structure_editor_screen.json", + "type": "custom" + }, + "corner_text_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "children": [ + "paragraph_1_corner", + "padding_1", + "paragraph_2_corner" + ] + }, + "corner_text_panel/paragraph_1_corner": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "corner_text_panel/padding_1": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "extend": { + "name": "small_padding", + "namespace": "structure_editor" + } + }, + "corner_text_panel/paragraph_2_corner": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "extend": { + "name": "paragraph", + "namespace": "how_to_play_common" + } + }, + "structure_renderer": { + "file": "ui/structure_editor_screen.json", + "type": "input_panel", + "children": [ + "renderer" + ] + }, + "structure_renderer/renderer": { + "file": "ui/structure_editor_screen.json", + "type": "custom" + }, + "black_border": { + "file": "ui/structure_editor_screen.json", + "type": "image" + }, + "rotation_arrows": { + "file": "ui/structure_editor_screen.json", + "type": "image" + }, + "right_divider_content": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "children": [ + "base_offset", + "preview", + "image_offset", + "button_wrapper" + ] + }, + "right_divider_content/base_offset": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "right_divider_content/preview": { + "file": "ui/structure_editor_screen.json", + "type": "image", + "extend": { + "name": "image_panel_wrapper", + "namespace": "structure_editor" + } + }, + "right_divider_content/image_offset": { + "file": "ui/structure_editor_screen.json", + "type": "panel" + }, + "right_divider_content/button_wrapper": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "children": [ + "buttons" + ] + }, + "right_divider_content/button_wrapper/buttons": { + "file": "ui/structure_editor_screen.json", + "type": "image", + "extend": { + "name": "button_panel_wrapper", + "namespace": "structure_editor" + } + }, + "divider_content": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "children": [ + "left_side", + "right_side" + ] + }, + "divider_content/left_side": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "extend": { + "name": "left_divider_content", + "namespace": "structure_editor" + } + }, + "divider_content/right_side": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "right_divider_content", + "namespace": "structure_editor" + } + }, + "structure_editor_content": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "children": [ + "background_panel", + "title", + "content" + ] + }, + "structure_editor_content/background_panel": { + "file": "ui/structure_editor_screen.json", + "type": "stack_panel", + "extend": { + "name": "fullscreen_header", + "namespace": "common" + } + }, + "structure_editor_content/title": { + "file": "ui/structure_editor_screen.json", + "type": "label", + "extend": { + "name": "common_text_label", + "namespace": "structure_editor" + } + }, + "structure_editor_content/content": { + "file": "ui/structure_editor_screen.json", + "type": "panel", + "extend": { + "name": "divider_content", + "namespace": "structure_editor" + } + }, + "structure_editor_screen": { + "file": "ui/structure_editor_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + } + }, + "submit_feedback": { + "send_feedback_button": { + "file": "ui/submit_feedback_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "write_feedback_panel": { + "file": "ui/submit_feedback_screen.json", + "type": "stack_panel", + "children": [ + "pad_1", + "write_feedback_label", + "pad_2", + "feedback_textbox", + "remaining_characters_panel" + ] + }, + "write_feedback_panel/pad_1": { + "file": "ui/submit_feedback_screen.json", + "type": "panel" + }, + "write_feedback_panel/write_feedback_label": { + "file": "ui/submit_feedback_screen.json", + "type": "label" + }, + "write_feedback_panel/pad_2": { + "file": "ui/submit_feedback_screen.json", + "type": "panel" + }, + "write_feedback_panel/feedback_textbox": { + "file": "ui/submit_feedback_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "write_feedback_panel/remaining_characters_panel": { + "file": "ui/submit_feedback_screen.json", + "type": "panel", + "children": [ + "remaining_characters_count_label" + ] + }, + "write_feedback_panel/remaining_characters_panel/remaining_characters_count_label": { + "file": "ui/submit_feedback_screen.json", + "type": "label" + }, + "scroll_panel": { + "file": "ui/submit_feedback_screen.json", + "type": "panel", + "children": [ + "write_feedback_panel" + ] + }, + "scroll_panel/write_feedback_panel": { + "file": "ui/submit_feedback_screen.json", + "type": "stack_panel", + "extend": { + "name": "write_feedback_panel", + "namespace": "submit_feedback" + } + }, + "main_panel": { + "file": "ui/submit_feedback_screen.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "main_panel/scrolling_panel": { + "file": "ui/submit_feedback_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "submit_feedback_screen": { + "file": "ui/submit_feedback_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "submit_feedback_content": { + "file": "ui/submit_feedback_screen.json", + "type": "panel", + "children": [ + "submit_feedback_main_panel", + "progress_loading" + ] + }, + "submit_feedback_content/submit_feedback_main_panel": { + "file": "ui/submit_feedback_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_one_button", + "namespace": "common_dialogs" + } + }, + "submit_feedback_content/progress_loading": { + "file": "ui/submit_feedback_screen.json", + "type": "image", + "extend": { + "name": "progress_loading_spinner", + "namespace": "common_store" + } + } + }, + "tabbed_upsell": { + "padding_horizontal": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel" + }, + "padding_vertical": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel" + }, + "text_horizontal_padding": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel" + }, + "tabbed_upsell_buy_now_button": { + "file": "ui/tabbed_upsell_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "tabbed_buy_now_label": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "children": [ + "button_label" + ] + }, + "tabbed_buy_now_label/button_label": { + "file": "ui/tabbed_upsell_screen.json", + "type": "label" + }, + "label_panel": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "children": [ + "label_text" + ] + }, + "label_panel/label_text": { + "file": "ui/tabbed_upsell_screen.json", + "type": "label" + }, + "text_panel": { + "file": "ui/tabbed_upsell_screen.json", + "type": "stack_panel", + "children": [ + "tab_content_title_panel", + "tab_content_description_panel", + "tab_content_description_panel_second" + ] + }, + "text_panel/tab_content_title_panel": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "label_panel", + "namespace": "tabbed_upsell" + } + }, + "text_panel/tab_content_description_panel": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "label_panel", + "namespace": "tabbed_upsell" + } + }, + "text_panel/tab_content_description_panel_second": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "label_panel", + "namespace": "tabbed_upsell" + } + }, + "dialog_image": { + "file": "ui/tabbed_upsell_screen.json", + "type": "image" + }, + "dialog_image_with_border": { + "file": "ui/tabbed_upsell_screen.json", + "type": "image", + "children": [ + "dialog_image" + ] + }, + "dialog_image_with_border/dialog_image": { + "file": "ui/tabbed_upsell_screen.json", + "type": "image", + "extend": { + "name": "dialog_image", + "namespace": "tabbed_upsell" + } + }, + "content_image_panel": { + "file": "ui/tabbed_upsell_screen.json", + "type": "stack_panel", + "children": [ + "minecraft_dialog_image_with_border", + "horizontal_padding_01", + "scrolling_panel" + ] + }, + "content_image_panel/minecraft_dialog_image_with_border": { + "file": "ui/tabbed_upsell_screen.json", + "type": "image", + "extend": { + "name": "dialog_image_with_border", + "namespace": "tabbed_upsell" + } + }, + "content_image_panel/horizontal_padding_01": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "text_horizontal_padding", + "namespace": "tabbed_upsell" + } + }, + "content_image_panel/scrolling_panel": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "scroll_text": { + "file": "ui/tabbed_upsell_screen.json", + "type": "button", + "extend": { + "name": "non_interact_focus_border_button", + "namespace": "common" + } + }, + "image_panel": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "children": [ + "dialog_image_with_border", + "focus_image" + ] + }, + "image_panel/dialog_image_with_border": { + "file": "ui/tabbed_upsell_screen.json", + "type": "image", + "extend": { + "name": "dialog_image_with_border", + "namespace": "tabbed_upsell" + } + }, + "image_panel/focus_image": { + "file": "ui/tabbed_upsell_screen.json", + "type": "unknown" + }, + "top_tab": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "tab_top", + "namespace": "common_tabs" + } + }, + "tab_navigation_panel_layout": { + "file": "ui/tabbed_upsell_screen.json", + "type": "stack_panel", + "children": [ + "navigation_tabs" + ] + }, + "tab_navigation_panel_layout/navigation_tabs": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "children": [ + "content" + ] + }, + "tab_navigation_panel_layout/navigation_tabs/content": { + "file": "ui/tabbed_upsell_screen.json", + "type": "unknown" + }, + "common_tab_navigation_panel_layout": { + "file": "ui/tabbed_upsell_screen.json", + "type": "stack_panel" + }, + "tabbed_tab_navigation_panel_layout": { + "file": "ui/tabbed_upsell_screen.json", + "type": "stack_panel", + "extend": { + "name": "common_tab_navigation_panel_layout", + "namespace": "tabbed_upsell" + }, + "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": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "tabbed_upsell" + } + }, + "tabbed_tab_navigation_panel_layout/nav_padding_01": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "tabbed_upsell" + } + }, + "tabbed_tab_navigation_panel_layout/xbl_navigation_tab": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "tabbed_upsell" + } + }, + "tabbed_tab_navigation_panel_layout/nav_padding_02": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "tabbed_upsell" + } + }, + "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "tabbed_upsell" + } + }, + "tabbed_tab_navigation_panel_layout/nav_padding_03": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "tabbed_upsell" + } + }, + "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "tabbed_upsell" + } + }, + "tabbed_tab_navigation_panel_layout/nav_padding_04": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "tabbed_upsell" + } + }, + "tabbed_tab_navigation_panel_layout/server_navigation_tab": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "tabbed_upsell" + } + }, + "tabbed_tab_navigation_panel_layout/nav_padding_05": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "tabbed_upsell" + } + }, + "tabbed_tab_navigation_panel_layout/store_navigation_tab": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "tabbed_upsell" + } + }, + "tabbed_tab_navigation_panel_layout/nav_padding_06": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "tabbed_upsell" + } + }, + "tabbed_tab_navigation_panel_layout/creative_navigation_tab": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "tabbed_upsell" + } + }, + "tabbed_tab_navigation_panel_layout/nav_padding_07": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "tabbed_upsell" + } + }, + "tabbed_tab_navigation_panel_layout/packs_navigation_tab": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "tabbed_upsell" + } + }, + "tabbed_tab_navigation_panel_layout/nav_padding_08": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "tabbed_upsell" + } + }, + "tabbed_tab_navigation_panel_layout/seeds_navigation_tab": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "tabbed_upsell" + } + }, + "tabbed_tab_content_panel_layout": { + "file": "ui/tabbed_upsell_screen.json", + "type": "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": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "minecraft_tab_content_panel", + "namespace": "tabbed_upsell" + } + }, + "tabbed_tab_content_panel_layout/xbl_tab_content2": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "xbl_tab_content_panel", + "namespace": "tabbed_upsell" + } + }, + "tabbed_tab_content_panel_layout/achievements_tab_content3": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "achievements_tab_content_panel", + "namespace": "tabbed_upsell" + } + }, + "tabbed_tab_content_panel_layout/multiplayer_tab_content4": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "multiplayer_tab_content_panel", + "namespace": "tabbed_upsell" + } + }, + "tabbed_tab_content_panel_layout/server_tab_content5": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "server_tab_content_panel", + "namespace": "tabbed_upsell" + } + }, + "tabbed_tab_content_panel_layout/store_tab_content6": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "store_tab_content_panel", + "namespace": "tabbed_upsell" + } + }, + "tabbed_tab_content_panel_layout/creative_tab_content7": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "creative_tab_content_panel", + "namespace": "tabbed_upsell" + } + }, + "tabbed_tab_content_panel_layout/packs_tab_content8": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "packs_tab_content_panel", + "namespace": "tabbed_upsell" + } + }, + "tabbed_tab_content_panel_layout/seeds_tab_content9": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "seeds_tab_content_panel", + "namespace": "tabbed_upsell" + } + }, + "common_tab_content_panel": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "children": [ + "content" + ] + }, + "common_tab_content_panel/content": { + "file": "ui/tabbed_upsell_screen.json", + "type": "unknown" + }, + "minecraft_tab_content_panel": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_content_panel", + "namespace": "tabbed_upsell" + } + }, + "xbl_tab_content_panel": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_content_panel", + "namespace": "tabbed_upsell" + } + }, + "achievements_tab_content_panel": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_content_panel", + "namespace": "tabbed_upsell" + } + }, + "multiplayer_tab_content_panel": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_content_panel", + "namespace": "tabbed_upsell" + } + }, + "server_tab_content_panel": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_content_panel", + "namespace": "tabbed_upsell" + } + }, + "store_tab_content_panel": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_content_panel", + "namespace": "tabbed_upsell" + } + }, + "creative_tab_content_panel": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_content_panel", + "namespace": "tabbed_upsell" + } + }, + "packs_tab_content_panel": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_content_panel", + "namespace": "tabbed_upsell" + } + }, + "seeds_tab_content_panel": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_content_panel", + "namespace": "tabbed_upsell" + } + }, + "common_tab_screen_panel": { + "file": "ui/tabbed_upsell_screen.json", + "type": "stack_panel", + "children": [ + "tab_navigation_panel", + "padding_01", + "tab_content_panel" + ] + }, + "common_tab_screen_panel/tab_navigation_panel": { + "file": "ui/tabbed_upsell_screen.json", + "type": "stack_panel", + "extend": { + "name": "tab_navigation_panel_layout", + "namespace": "tabbed_upsell" + } + }, + "common_tab_screen_panel/padding_01": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "padding_vertical", + "namespace": "tabbed_upsell" + } + }, + "common_tab_screen_panel/tab_content_panel": { + "file": "ui/tabbed_upsell_screen.json", + "type": "unknown" + }, + "tabbed_screen_panel": { + "file": "ui/tabbed_upsell_screen.json", + "type": "stack_panel", + "extend": { + "name": "common_tab_screen_panel", + "namespace": "tabbed_upsell" + } + }, + "button_panel": { + "file": "ui/tabbed_upsell_screen.json", + "type": "stack_panel", + "children": [ + "padding_5", + "buy_now_button", + "padding_6" + ] + }, + "button_panel/padding_5": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "tabbed_upsell" + } + }, + "button_panel/buy_now_button": { + "file": "ui/tabbed_upsell_screen.json", + "type": "button", + "extend": { + "name": "tabbed_upsell_buy_now_button", + "namespace": "tabbed_upsell" + } + }, + "button_panel/padding_6": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "tabbed_upsell" + } + }, + "tab_panel": { + "file": "ui/tabbed_upsell_screen.json", + "type": "stack_panel", + "children": [ + "padding_3", + "main_control", + "padding_4" + ] + }, + "tab_panel/padding_3": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "tabbed_upsell" + } + }, + "tab_panel/main_control": { + "file": "ui/tabbed_upsell_screen.json", + "type": "stack_panel", + "extend": { + "name": "tabbed_screen_panel", + "namespace": "tabbed_upsell" + } + }, + "tab_panel/padding_4": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "tabbed_upsell" + } + }, + "tabbed_upsell_content": { + "file": "ui/tabbed_upsell_screen.json", + "type": "stack_panel", + "children": [ + "padding_0", + "tab_panel", + "padding_1", + "button_panel", + "padding_2" + ] + }, + "tabbed_upsell_content/padding_0": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "padding_vertical", + "namespace": "tabbed_upsell" + } + }, + "tabbed_upsell_content/tab_panel": { + "file": "ui/tabbed_upsell_screen.json", + "type": "stack_panel", + "extend": { + "name": "tab_panel", + "namespace": "tabbed_upsell" + } + }, + "tabbed_upsell_content/padding_1": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "padding_vertical", + "namespace": "tabbed_upsell" + } + }, + "tabbed_upsell_content/button_panel": { + "file": "ui/tabbed_upsell_screen.json", + "type": "stack_panel", + "extend": { + "name": "button_panel", + "namespace": "tabbed_upsell" + } + }, + "tabbed_upsell_content/padding_2": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "padding_vertical", + "namespace": "tabbed_upsell" + } + }, + "tabbed_upsell_screen": { + "file": "ui/tabbed_upsell_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "tabbed_upsell_screen_panel": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "children": [ + "tabbed_upsell_screen_content", + "background" + ] + }, + "tabbed_upsell_screen_panel/tabbed_upsell_screen_content": { + "file": "ui/tabbed_upsell_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + }, + "tabbed_upsell_screen_panel/background": { + "file": "ui/tabbed_upsell_screen.json", + "type": "image", + "extend": { + "name": "screen_background", + "namespace": "common" + } + } + }, + "thanks_for_testing": { + "padding_horizontal": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel" + }, + "padding_vertical": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel" + }, + "text_horizontal_padding": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel" + }, + "tabbed_upsell_buy_now_button": { + "file": "ui/thanks_for_testing_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "tabbed_buy_now_label": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "children": [ + "button_label" + ] + }, + "tabbed_buy_now_label/button_label": { + "file": "ui/thanks_for_testing_screen.json", + "type": "label" + }, + "label_panel": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "children": [ + "label_text" + ] + }, + "label_panel/label_text": { + "file": "ui/thanks_for_testing_screen.json", + "type": "label" + }, + "text_panel": { + "file": "ui/thanks_for_testing_screen.json", + "type": "stack_panel", + "children": [ + "tab_content_title_panel", + "tab_content_description_panel", + "tab_content_description_panel_second" + ] + }, + "text_panel/tab_content_title_panel": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "label_panel", + "namespace": "thanks_for_testing" + } + }, + "text_panel/tab_content_description_panel": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "label_panel", + "namespace": "thanks_for_testing" + } + }, + "text_panel/tab_content_description_panel_second": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "label_panel", + "namespace": "thanks_for_testing" + } + }, + "dialog_image": { + "file": "ui/thanks_for_testing_screen.json", + "type": "image" + }, + "dialog_image_with_border": { + "file": "ui/thanks_for_testing_screen.json", + "type": "image", + "children": [ + "dialog_image" + ] + }, + "dialog_image_with_border/dialog_image": { + "file": "ui/thanks_for_testing_screen.json", + "type": "image", + "extend": { + "name": "dialog_image", + "namespace": "thanks_for_testing" + } + }, + "content_image_panel": { + "file": "ui/thanks_for_testing_screen.json", + "type": "stack_panel", + "children": [ + "minecraft_dialog_image_with_border", + "horizontal_padding_01", + "scrolling_panel" + ] + }, + "content_image_panel/minecraft_dialog_image_with_border": { + "file": "ui/thanks_for_testing_screen.json", + "type": "image", + "extend": { + "name": "dialog_image_with_border", + "namespace": "thanks_for_testing" + } + }, + "content_image_panel/horizontal_padding_01": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "text_horizontal_padding", + "namespace": "thanks_for_testing" + } + }, + "content_image_panel/scrolling_panel": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "scroll_text": { + "file": "ui/thanks_for_testing_screen.json", + "type": "button", + "extend": { + "name": "non_interact_focus_border_button", + "namespace": "common" + } + }, + "image_panel": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "children": [ + "dialog_image_with_border", + "focus_image" + ] + }, + "image_panel/dialog_image_with_border": { + "file": "ui/thanks_for_testing_screen.json", + "type": "image", + "extend": { + "name": "dialog_image_with_border", + "namespace": "thanks_for_testing" + } + }, + "image_panel/focus_image": { + "file": "ui/thanks_for_testing_screen.json", + "type": "unknown" + }, + "top_tab": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "tab_top", + "namespace": "common_tabs" + } + }, + "tab_navigation_panel_layout": { + "file": "ui/thanks_for_testing_screen.json", + "type": "stack_panel", + "children": [ + "navigation_tabs" + ] + }, + "tab_navigation_panel_layout/navigation_tabs": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "children": [ + "content" + ] + }, + "tab_navigation_panel_layout/navigation_tabs/content": { + "file": "ui/thanks_for_testing_screen.json", + "type": "unknown" + }, + "common_tab_navigation_panel_layout": { + "file": "ui/thanks_for_testing_screen.json", + "type": "stack_panel" + }, + "tabbed_tab_navigation_panel_layout": { + "file": "ui/thanks_for_testing_screen.json", + "type": "stack_panel", + "extend": { + "name": "common_tab_navigation_panel_layout", + "namespace": "thanks_for_testing" + }, + "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": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "thanks_for_testing" + } + }, + "tabbed_tab_navigation_panel_layout/nav_padding_01": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "thanks_for_testing" + } + }, + "tabbed_tab_navigation_panel_layout/xbl_navigation_tab": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "thanks_for_testing" + } + }, + "tabbed_tab_navigation_panel_layout/nav_padding_02": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "thanks_for_testing" + } + }, + "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "thanks_for_testing" + } + }, + "tabbed_tab_navigation_panel_layout/nav_padding_03": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "thanks_for_testing" + } + }, + "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "thanks_for_testing" + } + }, + "tabbed_tab_navigation_panel_layout/nav_padding_04": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "thanks_for_testing" + } + }, + "tabbed_tab_navigation_panel_layout/server_navigation_tab": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "thanks_for_testing" + } + }, + "tabbed_tab_navigation_panel_layout/nav_padding_05": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "thanks_for_testing" + } + }, + "tabbed_tab_navigation_panel_layout/store_navigation_tab": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "thanks_for_testing" + } + }, + "tabbed_tab_navigation_panel_layout/nav_padding_06": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "thanks_for_testing" + } + }, + "tabbed_tab_navigation_panel_layout/creative_navigation_tab": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "thanks_for_testing" + } + }, + "tabbed_tab_navigation_panel_layout/nav_padding_07": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "thanks_for_testing" + } + }, + "tabbed_tab_navigation_panel_layout/packs_navigation_tab": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "thanks_for_testing" + } + }, + "tabbed_tab_navigation_panel_layout/nav_padding_08": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "thanks_for_testing" + } + }, + "tabbed_tab_navigation_panel_layout/seeds_navigation_tab": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "top_tab", + "namespace": "thanks_for_testing" + } + }, + "tabbed_tab_content_panel_layout": { + "file": "ui/thanks_for_testing_screen.json", + "type": "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": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "minecraft_tab_content_panel", + "namespace": "thanks_for_testing" + } + }, + "tabbed_tab_content_panel_layout/xbl_tab_content2": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "xbl_tab_content_panel", + "namespace": "thanks_for_testing" + } + }, + "tabbed_tab_content_panel_layout/achievements_tab_content3": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "achievements_tab_content_panel", + "namespace": "thanks_for_testing" + } + }, + "tabbed_tab_content_panel_layout/multiplayer_tab_content4": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "multiplayer_tab_content_panel", + "namespace": "thanks_for_testing" + } + }, + "tabbed_tab_content_panel_layout/server_tab_content5": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "server_tab_content_panel", + "namespace": "thanks_for_testing" + } + }, + "tabbed_tab_content_panel_layout/store_tab_content6": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "store_tab_content_panel", + "namespace": "thanks_for_testing" + } + }, + "tabbed_tab_content_panel_layout/creative_tab_content7": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "creative_tab_content_panel", + "namespace": "thanks_for_testing" + } + }, + "tabbed_tab_content_panel_layout/packs_tab_content8": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "packs_tab_content_panel", + "namespace": "thanks_for_testing" + } + }, + "tabbed_tab_content_panel_layout/seeds_tab_content9": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "seeds_tab_content_panel", + "namespace": "thanks_for_testing" + } + }, + "common_tab_content_panel": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "children": [ + "content" + ] + }, + "common_tab_content_panel/content": { + "file": "ui/thanks_for_testing_screen.json", + "type": "unknown" + }, + "minecraft_tab_content_panel": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_content_panel", + "namespace": "thanks_for_testing" + } + }, + "xbl_tab_content_panel": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_content_panel", + "namespace": "thanks_for_testing" + } + }, + "achievements_tab_content_panel": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_content_panel", + "namespace": "thanks_for_testing" + } + }, + "multiplayer_tab_content_panel": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_content_panel", + "namespace": "thanks_for_testing" + } + }, + "server_tab_content_panel": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_content_panel", + "namespace": "thanks_for_testing" + } + }, + "store_tab_content_panel": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_content_panel", + "namespace": "thanks_for_testing" + } + }, + "creative_tab_content_panel": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_content_panel", + "namespace": "thanks_for_testing" + } + }, + "packs_tab_content_panel": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_content_panel", + "namespace": "thanks_for_testing" + } + }, + "seeds_tab_content_panel": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "common_tab_content_panel", + "namespace": "thanks_for_testing" + } + }, + "common_tab_screen_panel": { + "file": "ui/thanks_for_testing_screen.json", + "type": "stack_panel", + "children": [ + "tab_navigation_panel", + "padding_01", + "tab_content_panel" + ] + }, + "common_tab_screen_panel/tab_navigation_panel": { + "file": "ui/thanks_for_testing_screen.json", + "type": "stack_panel", + "extend": { + "name": "tab_navigation_panel_layout", + "namespace": "thanks_for_testing" + } + }, + "common_tab_screen_panel/padding_01": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "padding_vertical", + "namespace": "thanks_for_testing" + } + }, + "common_tab_screen_panel/tab_content_panel": { + "file": "ui/thanks_for_testing_screen.json", + "type": "unknown" + }, + "tabbed_screen_panel": { + "file": "ui/thanks_for_testing_screen.json", + "type": "stack_panel", + "extend": { + "name": "common_tab_screen_panel", + "namespace": "thanks_for_testing" + } + }, + "button_panel": { + "file": "ui/thanks_for_testing_screen.json", + "type": "stack_panel", + "children": [ + "padding_5", + "buy_now_button", + "padding_6" + ] + }, + "button_panel/padding_5": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "thanks_for_testing" + } + }, + "button_panel/buy_now_button": { + "file": "ui/thanks_for_testing_screen.json", + "type": "button", + "extend": { + "name": "tabbed_upsell_buy_now_button", + "namespace": "thanks_for_testing" + } + }, + "button_panel/padding_6": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "thanks_for_testing" + } + }, + "tab_panel": { + "file": "ui/thanks_for_testing_screen.json", + "type": "stack_panel", + "children": [ + "padding_3", + "main_control", + "padding_4" + ] + }, + "tab_panel/padding_3": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "thanks_for_testing" + } + }, + "tab_panel/main_control": { + "file": "ui/thanks_for_testing_screen.json", + "type": "stack_panel", + "extend": { + "name": "tabbed_screen_panel", + "namespace": "thanks_for_testing" + } + }, + "tab_panel/padding_4": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "thanks_for_testing" + } + }, + "tabbed_upsell_content": { + "file": "ui/thanks_for_testing_screen.json", + "type": "stack_panel", + "children": [ + "padding_0", + "tab_panel", + "padding_1", + "button_panel", + "padding_2" + ] + }, + "tabbed_upsell_content/padding_0": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "padding_vertical", + "namespace": "thanks_for_testing" + } + }, + "tabbed_upsell_content/tab_panel": { + "file": "ui/thanks_for_testing_screen.json", + "type": "stack_panel", + "extend": { + "name": "tab_panel", + "namespace": "thanks_for_testing" + } + }, + "tabbed_upsell_content/padding_1": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "padding_vertical", + "namespace": "thanks_for_testing" + } + }, + "tabbed_upsell_content/button_panel": { + "file": "ui/thanks_for_testing_screen.json", + "type": "stack_panel", + "extend": { + "name": "button_panel", + "namespace": "thanks_for_testing" + } + }, + "tabbed_upsell_content/padding_2": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "padding_vertical", + "namespace": "thanks_for_testing" + } + }, + "thanks_for_testing_screen": { + "file": "ui/thanks_for_testing_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "tabbed_upsell_screen_panel": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "children": [ + "tabbed_upsell_screen_content", + "background" + ] + }, + "tabbed_upsell_screen_panel/tabbed_upsell_screen_content": { + "file": "ui/thanks_for_testing_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + }, + "tabbed_upsell_screen_panel/background": { + "file": "ui/thanks_for_testing_screen.json", + "type": "image", + "extend": { + "name": "screen_background", + "namespace": "common" + } + } + }, + "third_party_store": { + "third_party_store_screen": { + "file": "ui/third_party_store_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + } + }, + "toast_screen": { + "toast_image": { + "file": "ui/toast_screen.json", + "type": "image" + }, + "toast_icon": { + "file": "ui/toast_screen.json", + "type": "panel", + "children": [ + "toast_icon" + ] + }, + "toast_icon/toast_icon": { + "file": "ui/toast_screen.json", + "type": "image", + "extend": { + "name": "toast_image", + "namespace": "toast_screen" + } + }, + "xbox_icon": { + "file": "ui/toast_screen.json", + "type": "panel", + "extend": { + "name": "toast_icon", + "namespace": "toast_screen" + } + }, + "third_party_invite_icon": { + "file": "ui/toast_screen.json", + "type": "panel", + "extend": { + "name": "toast_icon", + "namespace": "toast_screen" + } + }, + "third_party_achievement_icon": { + "file": "ui/toast_screen.json", + "type": "panel", + "extend": { + "name": "toast_icon", + "namespace": "toast_screen" + } + }, + "persona_icon": { + "file": "ui/toast_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "item" + ] + }, + "persona_icon/item": { + "file": "ui/toast_screen.json", + "type": "panel", + "extend": { + "name": "piece_item_display", + "namespace": "persona_common" + } + }, + "resource_pack_icon": { + "file": "ui/toast_screen.json", + "type": "panel", + "children": [ + "resource_pack_image" + ] + }, + "resource_pack_icon/resource_pack_image": { + "file": "ui/toast_screen.json", + "type": "image" + }, + "key_art_image": { + "file": "ui/toast_screen.json", + "type": "panel", + "extend": { + "name": "resource_pack_icon", + "namespace": "toast_screen" + } + }, + "gamer_score_icon": { + "file": "ui/toast_screen.json", + "type": "image" + }, + "toast_label": { + "file": "ui/toast_screen.json", + "type": "label" + }, + "static_button_state_panel": { + "file": "ui/toast_screen.json", + "type": "panel", + "extend": { + "name": "new_ui_button_panel", + "namespace": "common_buttons" + } + }, + "static_button": { + "file": "ui/toast_screen.json", + "type": "button", + "extend": { + "name": "light_button_assets", + "namespace": "common_buttons" + }, + "children": [ + "default", + "hover", + "pressed", + "locked" + ] + }, + "static_button/default": { + "file": "ui/toast_screen.json", + "type": "panel", + "extend": { + "name": "static_button_state_panel", + "namespace": "toast_screen" + } + }, + "static_button/hover": { + "file": "ui/toast_screen.json", + "type": "panel", + "extend": { + "name": "static_button_state_panel", + "namespace": "toast_screen" + } + }, + "static_button/pressed": { + "file": "ui/toast_screen.json", + "type": "panel", + "extend": { + "name": "static_button_state_panel", + "namespace": "toast_screen" + } + }, + "static_button/locked": { + "file": "ui/toast_screen.json", + "type": "panel", + "extend": { + "name": "static_button_state_panel", + "namespace": "toast_screen" + } + }, + "popup": { + "file": "ui/toast_screen.json", + "type": "input_panel", + "extend": { + "name": "input_panel", + "namespace": "common" + }, + "children": [ + "background", + "popup_content" + ] + }, + "popup/background": { + "file": "ui/toast_screen.json", + "type": "image" + }, + "popup/popup_content": { + "file": "ui/toast_screen.json", + "type": "stack_panel", + "children": [ + "icon_padding", + "text_padding", + "text_panel", + "button_panel" + ] + }, + "popup/popup_content/icon_padding": { + "file": "ui/toast_screen.json", + "type": "stack_panel" + }, + "popup/popup_content/text_padding": { + "file": "ui/toast_screen.json", + "type": "panel" + }, + "popup/popup_content/text_panel": { + "file": "ui/toast_screen.json", + "type": "panel", + "children": [ + "text_stack_panel" + ] + }, + "popup/popup_content/text_panel/text_stack_panel": { + "file": "ui/toast_screen.json", + "type": "stack_panel", + "extend": { + "name": "text_stack_panel", + "namespace": "toast_screen" + } + }, + "popup/popup_content/button_panel": { + "file": "ui/toast_screen.json", + "type": "panel", + "children": [ + "visual_button" + ] + }, + "popup/popup_content/button_panel/visual_button": { + "file": "ui/toast_screen.json", + "type": "button", + "extend": { + "name": "static_button", + "namespace": "toast_screen" + } + }, + "item_renderer": { + "file": "ui/toast_screen.json", + "type": "custom" + }, + "game_tip_label": { + "file": "ui/toast_screen.json", + "type": "label" + }, + "toast_progress_bar": { + "file": "ui/toast_screen.json", + "type": "panel", + "children": [ + "toast_duration_progress_bar" + ] + }, + "toast_progress_bar/toast_duration_progress_bar": { + "file": "ui/toast_screen.json", + "type": "custom" + }, + "recipe_unlocked_icon": { + "file": "ui/toast_screen.json", + "type": "stack_panel", + "children": [ + "padding_vertical", + "item_renderer" + ] + }, + "recipe_unlocked_icon/padding_vertical": { + "file": "ui/toast_screen.json", + "type": "panel" + }, + "recipe_unlocked_icon/item_renderer": { + "file": "ui/toast_screen.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "toast_screen" + } + }, + "recipe_unlocked_popup": { + "file": "ui/toast_screen.json", + "type": "image", + "children": [ + "input_panel" + ] + }, + "recipe_unlocked_popup/input_panel": { + "file": "ui/toast_screen.json", + "type": "input_panel", + "children": [ + "label_panel" + ] + }, + "recipe_unlocked_popup/input_panel/label_panel": { + "file": "ui/toast_screen.json", + "type": "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": { + "file": "ui/toast_screen.json", + "type": "panel" + }, + "recipe_unlocked_popup/input_panel/label_panel/recipe_unlocked_icon": { + "file": "ui/toast_screen.json", + "type": "stack_panel", + "extend": { + "name": "recipe_unlocked_icon", + "namespace": "toast_screen" + } + }, + "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_2": { + "file": "ui/toast_screen.json", + "type": "panel" + }, + "recipe_unlocked_popup/input_panel/label_panel/label_panel": { + "file": "ui/toast_screen.json", + "type": "stack_panel", + "children": [ + "padding_vertical_1", + "label", + "padding_vertical_2" + ] + }, + "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_1": { + "file": "ui/toast_screen.json", + "type": "panel" + }, + "recipe_unlocked_popup/input_panel/label_panel/label_panel/label": { + "file": "ui/toast_screen.json", + "type": "label", + "extend": { + "name": "game_tip_label", + "namespace": "toast_screen" + } + }, + "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_2": { + "file": "ui/toast_screen.json", + "type": "panel" + }, + "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_3": { + "file": "ui/toast_screen.json", + "type": "panel" + }, + "recipe_unlocked_pocket_popup": { + "file": "ui/toast_screen.json", + "type": "image", + "children": [ + "input_panel" + ] + }, + "recipe_unlocked_pocket_popup/input_panel": { + "file": "ui/toast_screen.json", + "type": "input_panel", + "children": [ + "label_panel" + ] + }, + "recipe_unlocked_pocket_popup/input_panel/label_panel": { + "file": "ui/toast_screen.json", + "type": "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": { + "file": "ui/toast_screen.json", + "type": "panel" + }, + "recipe_unlocked_pocket_popup/input_panel/label_panel/recipe_unlocked_icon": { + "file": "ui/toast_screen.json", + "type": "stack_panel", + "extend": { + "name": "recipe_unlocked_icon", + "namespace": "toast_screen" + } + }, + "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_2": { + "file": "ui/toast_screen.json", + "type": "panel" + }, + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel": { + "file": "ui/toast_screen.json", + "type": "stack_panel", + "children": [ + "padding_vertical", + "label", + "padding_vertical_1" + ] + }, + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical": { + "file": "ui/toast_screen.json", + "type": "panel" + }, + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/label": { + "file": "ui/toast_screen.json", + "type": "label", + "extend": { + "name": "game_tip_label", + "namespace": "toast_screen" + } + }, + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical_1": { + "file": "ui/toast_screen.json", + "type": "panel" + }, + "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_3": { + "file": "ui/toast_screen.json", + "type": "panel" + }, + "text_stack_panel": { + "file": "ui/toast_screen.json", + "type": "stack_panel", + "children": [ + "title", + "subtitle" + ] + }, + "text_stack_panel/title": { + "file": "ui/toast_screen.json", + "type": "label", + "extend": { + "name": "toast_label", + "namespace": "toast_screen" + } + }, + "text_stack_panel/subtitle": { + "file": "ui/toast_screen.json", + "type": "stack_panel", + "children": [ + "icon_padding", + "subtext_offset" + ] + }, + "text_stack_panel/subtitle/icon_padding": { + "file": "ui/toast_screen.json", + "type": "panel", + "children": [ + "gamer_score_icon" + ] + }, + "text_stack_panel/subtitle/icon_padding/gamer_score_icon": { + "file": "ui/toast_screen.json", + "type": "image", + "extend": { + "name": "gamer_score_icon", + "namespace": "toast_screen" + } + }, + "text_stack_panel/subtitle/subtext_offset": { + "file": "ui/toast_screen.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "subtext" + ] + }, + "text_stack_panel/subtitle/subtext_offset/subtext": { + "file": "ui/toast_screen.json", + "type": "label", + "extend": { + "name": "toast_label", + "namespace": "toast_screen" + } + }, + "join_button_icon": { + "file": "ui/toast_screen.json", + "type": "image" + }, + "chat_popup": { + "file": "ui/toast_screen.json", + "type": "input_panel", + "extend": { + "name": "popup", + "namespace": "toast_screen" + } + }, + "splitscreen_join_popup": { + "file": "ui/toast_screen.json", + "type": "stack_panel", + "children": [ + "join_button_icon", + "join_prompt_text_panel" + ] + }, + "splitscreen_join_popup/join_button_icon": { + "file": "ui/toast_screen.json", + "type": "image", + "extend": { + "name": "join_button_icon", + "namespace": "toast_screen" + } + }, + "splitscreen_join_popup/join_prompt_text_panel": { + "file": "ui/toast_screen.json", + "type": "panel", + "children": [ + "join_prompt_text" + ] + }, + "splitscreen_join_popup/join_prompt_text_panel/join_prompt_text": { + "file": "ui/toast_screen.json", + "type": "label" + }, + "formfitting_alpha_toast": { + "file": "ui/toast_screen.json", + "type": "panel", + "children": [ + "bg" + ] + }, + "formfitting_alpha_toast/bg": { + "file": "ui/toast_screen.json", + "type": "image", + "children": [ + "label" + ] + }, + "formfitting_alpha_toast/bg/label": { + "file": "ui/toast_screen.json", + "type": "label", + "extend": { + "name": "toast_label", + "namespace": "toast_screen" + } + }, + "snackbar": { + "file": "ui/toast_screen.json", + "type": "panel", + "children": [ + "body" + ] + }, + "snackbar/body": { + "file": "ui/toast_screen.json", + "type": "image", + "children": [ + "background" + ] + }, + "snackbar/body/background": { + "file": "ui/toast_screen.json", + "type": "image", + "children": [ + "content", + "right_shadow" + ] + }, + "snackbar/body/background/content": { + "file": "ui/toast_screen.json", + "type": "stack_panel", + "children": [ + "left_padding", + "vertically_central_text", + "right_padding" + ] + }, + "snackbar/body/background/content/left_padding": { + "file": "ui/toast_screen.json", + "type": "panel" + }, + "snackbar/body/background/content/vertically_central_text": { + "file": "ui/toast_screen.json", + "type": "stack_panel", + "children": [ + "top_padding", + "text" + ] + }, + "snackbar/body/background/content/vertically_central_text/top_padding": { + "file": "ui/toast_screen.json", + "type": "panel" + }, + "snackbar/body/background/content/vertically_central_text/text": { + "file": "ui/toast_screen.json", + "type": "label" + }, + "snackbar/body/background/content/right_padding": { + "file": "ui/toast_screen.json", + "type": "panel" + }, + "snackbar/body/background/right_shadow": { + "file": "ui/toast_screen.json", + "type": "image" + }, + "progress_button_content": { + "file": "ui/toast_screen.json", + "type": "stack_panel", + "children": [ + "gamepad_icon_glyph", + "spacer", + "progress_button_label" + ] + }, + "progress_button_content/gamepad_icon_glyph": { + "file": "ui/toast_screen.json", + "type": "label", + "extend": { + "name": "game_tip_label", + "namespace": "toast_screen" + } + }, + "progress_button_content/spacer": { + "file": "ui/toast_screen.json", + "type": "panel" + }, + "progress_button_content/progress_button_label": { + "file": "ui/toast_screen.json", + "type": "label", + "extend": { + "name": "game_tip_label", + "namespace": "toast_screen" + } + }, + "progress_popup": { + "file": "ui/toast_screen.json", + "type": "input_panel", + "extend": { + "name": "input_panel", + "namespace": "common" + }, + "children": [ + "background", + "popup_content" + ] + }, + "progress_popup/background": { + "file": "ui/toast_screen.json", + "type": "image" + }, + "progress_popup/popup_content": { + "file": "ui/toast_screen.json", + "type": "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": { + "file": "ui/toast_screen.json", + "type": "image" + }, + "progress_popup/popup_content/profilepicture": { + "file": "ui/toast_screen.json", + "type": "custom" + }, + "progress_popup/popup_content/text_padding": { + "file": "ui/toast_screen.json", + "type": "panel" + }, + "progress_popup/popup_content/progress_content_vertical_panel": { + "file": "ui/toast_screen.json", + "type": "stack_panel", + "children": [ + "title_text_label", + "subtext", + "stacked_progress_bar", + "end_progress_padding" + ] + }, + "progress_popup/popup_content/progress_content_vertical_panel/title_text_label": { + "file": "ui/toast_screen.json", + "type": "label", + "extend": { + "name": "game_tip_label", + "namespace": "toast_screen" + } + }, + "progress_popup/popup_content/progress_content_vertical_panel/subtext": { + "file": "ui/toast_screen.json", + "type": "label", + "extend": { + "name": "toast_label", + "namespace": "toast_screen" + } + }, + "progress_popup/popup_content/progress_content_vertical_panel/stacked_progress_bar": { + "file": "ui/toast_screen.json", + "type": "panel", + "extend": { + "name": "toast_progress_bar", + "namespace": "toast_screen" + } + }, + "progress_popup/popup_content/progress_content_vertical_panel/end_progress_padding": { + "file": "ui/toast_screen.json", + "type": "panel" + }, + "progress_popup/popup_content/divider_padding": { + "file": "ui/toast_screen.json", + "type": "panel" + }, + "progress_popup/popup_content/divider_image": { + "file": "ui/toast_screen.json", + "type": "image" + }, + "progress_popup/popup_content/popup_decline_button": { + "file": "ui/toast_screen.json", + "type": "button", + "extend": { + "name": "no_background_content_button", + "namespace": "common_buttons" + } + }, + "progress_popup/popup_content/end_padding": { + "file": "ui/toast_screen.json", + "type": "panel" + }, + "party_invite_popup": { + "file": "ui/toast_screen.json", + "type": "input_panel", + "extend": { + "name": "input_panel", + "namespace": "common" + }, + "children": [ + "background", + "party_invite_content" + ] + }, + "party_invite_popup/background": { + "file": "ui/toast_screen.json", + "type": "image" + }, + "party_invite_popup/party_invite_content": { + "file": "ui/toast_screen.json", + "type": "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": { + "file": "ui/toast_screen.json", + "type": "custom" + }, + "party_invite_popup/party_invite_content/text_padding": { + "file": "ui/toast_screen.json", + "type": "panel" + }, + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel": { + "file": "ui/toast_screen.json", + "type": "stack_panel", + "children": [ + "title_text_label", + "subtext", + "end_padding" + ] + }, + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/title_text_label": { + "file": "ui/toast_screen.json", + "type": "label", + "extend": { + "name": "game_tip_label", + "namespace": "toast_screen" + } + }, + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/subtext": { + "file": "ui/toast_screen.json", + "type": "label", + "extend": { + "name": "toast_label", + "namespace": "toast_screen" + } + }, + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/end_padding": { + "file": "ui/toast_screen.json", + "type": "panel" + }, + "party_invite_popup/party_invite_content/divider_padding": { + "file": "ui/toast_screen.json", + "type": "panel" + }, + "party_invite_popup/party_invite_content/divider_image": { + "file": "ui/toast_screen.json", + "type": "image" + }, + "party_invite_popup/party_invite_content/party_invite_button": { + "file": "ui/toast_screen.json", + "type": "button", + "extend": { + "name": "no_background_content_button", + "namespace": "common_buttons" + } + }, + "party_invite_popup/party_invite_content/end_padding": { + "file": "ui/toast_screen.json", + "type": "panel" + }, + "party_travel_popup": { + "file": "ui/toast_screen.json", + "type": "input_panel", + "extend": { + "name": "progress_popup", + "namespace": "toast_screen" + } + }, + "toast_screen": { + "file": "ui/toast_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "toast_screen_content": { + "file": "ui/toast_screen.json", + "type": "panel", + "children": [ + "content_log_panel", + "perf_turtle_panel" + ] + }, + "toast_screen_content/content_log_panel": { + "file": "ui/toast_screen.json", + "type": "panel", + "extend": { + "name": "content_log_panel", + "namespace": "content_log" + } + }, + "toast_screen_content/perf_turtle_panel": { + "file": "ui/toast_screen.json", + "type": "panel", + "extend": { + "name": "perf_turtle_panel", + "namespace": "perf_turtle" + } + } + }, + "token_faq": { + "main_panel": { + "file": "ui/token_faq_screen.json", + "type": "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": { + "file": "ui/token_faq_screen.json", + "type": "button", + "extend": { + "name": "image_left_faq_question_body", + "namespace": "realmsPlus_faq" + } + }, + "main_panel/faq_question_1_divider": { + "file": "ui/token_faq_screen.json", + "type": "stack_panel", + "extend": { + "name": "section_divider", + "namespace": "common" + } + }, + "main_panel/faq_question_2": { + "file": "ui/token_faq_screen.json", + "type": "button", + "extend": { + "name": "image_right_faq_question_body", + "namespace": "realmsPlus_faq" + } + }, + "main_panel/faq_question_2_divider": { + "file": "ui/token_faq_screen.json", + "type": "stack_panel", + "extend": { + "name": "section_divider", + "namespace": "common" + } + }, + "main_panel/faq_question_3": { + "file": "ui/token_faq_screen.json", + "type": "button", + "extend": { + "name": "image_left_faq_question_body", + "namespace": "realmsPlus_faq" + } + }, + "main_panel/faq_question_3_divider": { + "file": "ui/token_faq_screen.json", + "type": "stack_panel", + "extend": { + "name": "section_divider", + "namespace": "common" + } + }, + "main_panel/faq_question_4": { + "file": "ui/token_faq_screen.json", + "type": "button", + "extend": { + "name": "image_right_faq_question_body", + "namespace": "realmsPlus_faq" + } + }, + "main_panel/faq_question_4_divider": { + "file": "ui/token_faq_screen.json", + "type": "stack_panel", + "extend": { + "name": "section_divider", + "namespace": "common" + } + }, + "main_panel/faq_question_5": { + "file": "ui/token_faq_screen.json", + "type": "button", + "extend": { + "name": "image_left_faq_question_body", + "namespace": "realmsPlus_faq" + } + }, + "scrolling_panel": { + "file": "ui/token_faq_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "token_faq_screen_content": { + "file": "ui/token_faq_screen.json", + "type": "panel", + "children": [ + "dialog" + ] + }, + "token_faq_screen_content/dialog": { + "file": "ui/token_faq_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + }, + "background": { + "file": "ui/token_faq_screen.json", + "type": "image", + "extend": { + "name": "screen_background", + "namespace": "common" + } + }, + "token_faq_screen": { + "file": "ui/token_faq_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "token_content_panel": { + "file": "ui/token_faq_screen.json", + "type": "stack_panel", + "children": [ + "token_info_text" + ] + }, + "token_content_panel/token_info_text": { + "file": "ui/token_faq_screen.json", + "type": "label" + }, + "token_popup_content": { + "file": "ui/token_faq_screen.json", + "type": "panel", + "children": [ + "dialog" + ] + }, + "token_popup_content/dialog": { + "file": "ui/token_faq_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_two_buttons", + "namespace": "common_dialogs" + } + }, + "token_faq_button_panel": { + "file": "ui/token_faq_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "back_button_panel": { + "file": "ui/token_faq_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "token_popup": { + "file": "ui/token_faq_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + } + }, + "trade": { + "cycle_recipe_button": { + "file": "ui/trade_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "cycle_recipe_left_button": { + "file": "ui/trade_screen.json", + "type": "button", + "extend": { + "name": "cycle_recipe_button", + "namespace": "trade" + } + }, + "cycle_recipe_right_button": { + "file": "ui/trade_screen.json", + "type": "button", + "extend": { + "name": "cycle_recipe_button", + "namespace": "trade" + } + }, + "arrow_image": { + "file": "ui/trade_screen.json", + "type": "image" + }, + "cross_out_icon": { + "file": "ui/trade_screen.json", + "type": "image" + }, + "highlight_slot_panel": { + "file": "ui/trade_screen.json", + "type": "panel", + "children": [ + "hover_text" + ] + }, + "highlight_slot_panel/hover_text": { + "file": "ui/trade_screen.json", + "type": "custom", + "extend": { + "name": "hover_text", + "namespace": "common" + } + }, + "recipe_button": { + "file": "ui/trade_screen.json", + "type": "button", + "children": [ + "hover" + ] + }, + "recipe_button/hover": { + "file": "ui/trade_screen.json", + "type": "panel", + "extend": { + "name": "highlight_slot_panel", + "namespace": "trade" + } + }, + "recipe_item_panel": { + "file": "ui/trade_screen.json", + "type": "panel", + "children": [ + "item_renderer", + "recipe_button" + ] + }, + "recipe_item_panel/item_renderer": { + "file": "ui/trade_screen.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "common" + }, + "children": [ + "stack_count_label" + ] + }, + "recipe_item_panel/item_renderer/stack_count_label": { + "file": "ui/trade_screen.json", + "type": "label", + "extend": { + "name": "stack_count_label", + "namespace": "common" + } + }, + "recipe_item_panel/recipe_button": { + "file": "ui/trade_screen.json", + "type": "button", + "extend": { + "name": "recipe_button", + "namespace": "trade" + } + }, + "trade_item_slot": { + "file": "ui/trade_screen.json", + "type": "panel", + "children": [ + "container_item" + ] + }, + "trade_item_slot/container_item": { + "file": "ui/trade_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "trade_item_slotB": { + "file": "ui/trade_screen.json", + "type": "panel", + "extend": { + "name": "trade_item_slot", + "namespace": "trade" + } + }, + "trade_item_slot_result_button": { + "file": "ui/trade_screen.json", + "type": "button", + "extend": { + "name": "container_slot_button_prototype", + "namespace": "common" + } + }, + "trade_item_slot_result": { + "file": "ui/trade_screen.json", + "type": "panel", + "extend": { + "name": "trade_item_slot", + "namespace": "trade" + } + }, + "arrow": { + "file": "ui/trade_screen.json", + "type": "panel", + "children": [ + "arrow_image", + "cross_out_icon", + "recipe_button" + ] + }, + "arrow/arrow_image": { + "file": "ui/trade_screen.json", + "type": "image", + "extend": { + "name": "arrow_image", + "namespace": "trade" + } + }, + "arrow/cross_out_icon": { + "file": "ui/trade_screen.json", + "type": "image", + "extend": { + "name": "cross_out_icon", + "namespace": "trade" + } + }, + "arrow/recipe_button": { + "file": "ui/trade_screen.json", + "type": "button", + "extend": { + "name": "recipe_button", + "namespace": "trade" + } + }, + "purchase_grid_item": { + "file": "ui/trade_screen.json", + "type": "stack_panel", + "children": [ + "top_item", + "padding", + "bottom_item" + ] + }, + "purchase_grid_item/top_item": { + "file": "ui/trade_screen.json", + "type": "unknown" + }, + "purchase_grid_item/padding": { + "file": "ui/trade_screen.json", + "type": "panel" + }, + "purchase_grid_item/bottom_item": { + "file": "ui/trade_screen.json", + "type": "unknown" + }, + "purchase_grid": { + "file": "ui/trade_screen.json", + "type": "grid", + "children": [ + "grid_slot1", + "grid_slot2", + "arrow", + "result_item_slot" + ] + }, + "purchase_grid/grid_slot1": { + "file": "ui/trade_screen.json", + "type": "stack_panel", + "extend": { + "name": "purchase_grid_item", + "namespace": "trade" + } + }, + "purchase_grid/grid_slot2": { + "file": "ui/trade_screen.json", + "type": "stack_panel", + "extend": { + "name": "purchase_grid_item", + "namespace": "trade" + } + }, + "purchase_grid/arrow": { + "file": "ui/trade_screen.json", + "type": "stack_panel", + "extend": { + "name": "purchase_grid_item", + "namespace": "trade" + } + }, + "purchase_grid/result_item_slot": { + "file": "ui/trade_screen.json", + "type": "stack_panel", + "extend": { + "name": "purchase_grid_item", + "namespace": "trade" + } + }, + "greyed_item_panel": { + "file": "ui/trade_screen.json", + "type": "panel", + "children": [ + "item_renderer" + ] + }, + "greyed_item_panel/item_renderer": { + "file": "ui/trade_screen.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "common" + } + }, + "cycle_panel_keyboard": { + "file": "ui/trade_screen.json", + "type": "panel", + "children": [ + "left", + "right" + ] + }, + "cycle_panel_keyboard/left": { + "file": "ui/trade_screen.json", + "type": "button", + "extend": { + "name": "cycle_recipe_left_button", + "namespace": "trade" + } + }, + "cycle_panel_keyboard/right": { + "file": "ui/trade_screen.json", + "type": "button", + "extend": { + "name": "cycle_recipe_right_button", + "namespace": "trade" + } + }, + "cycle_panel_gamepad": { + "file": "ui/trade_screen.json", + "type": "panel", + "children": [ + "left", + "right" + ] + }, + "cycle_panel_gamepad/left": { + "file": "ui/trade_screen.json", + "type": "button", + "extend": { + "name": "cycle_recipe_left_button", + "namespace": "trade" + } + }, + "cycle_panel_gamepad/right": { + "file": "ui/trade_screen.json", + "type": "button", + "extend": { + "name": "cycle_recipe_right_button", + "namespace": "trade" + } + }, + "cycle_panel": { + "file": "ui/trade_screen.json", + "type": "panel", + "children": [ + "keyboard", + "gamepad" + ] + }, + "cycle_panel/keyboard": { + "file": "ui/trade_screen.json", + "type": "panel", + "extend": { + "name": "cycle_panel_keyboard", + "namespace": "trade" + } + }, + "cycle_panel/gamepad": { + "file": "ui/trade_screen.json", + "type": "panel", + "extend": { + "name": "cycle_panel_gamepad", + "namespace": "trade" + } + }, + "merchant_purchase_panel": { + "file": "ui/trade_screen.json", + "type": "panel", + "children": [ + "purchase_grid" + ] + }, + "merchant_purchase_panel/purchase_grid": { + "file": "ui/trade_screen.json", + "type": "grid", + "extend": { + "name": "purchase_grid", + "namespace": "trade" + } + }, + "top_half_panel": { + "file": "ui/trade_screen.json", + "type": "panel", + "children": [ + "villager_name_label", + "cycle_panel", + "merchant_purchase_panel" + ] + }, + "top_half_panel/villager_name_label": { + "file": "ui/trade_screen.json", + "type": "label", + "extend": { + "name": "section_heading_label", + "namespace": "common" + } + }, + "top_half_panel/cycle_panel": { + "file": "ui/trade_screen.json", + "type": "panel", + "extend": { + "name": "cycle_panel", + "namespace": "trade" + } + }, + "top_half_panel/merchant_purchase_panel": { + "file": "ui/trade_screen.json", + "type": "panel", + "extend": { + "name": "merchant_purchase_panel", + "namespace": "trade" + } + }, + "trade_panel": { + "file": "ui/trade_screen.json", + "type": "panel", + "children": [ + "gamepad_helpers", + "selected_item_details_factory", + "item_lock_notification_factory", + "root_panel", + "flying_item_renderer" + ] + }, + "trade_panel/gamepad_helpers": { + "file": "ui/trade_screen.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "trade_panel/selected_item_details_factory": { + "file": "ui/trade_screen.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "trade_panel/item_lock_notification_factory": { + "file": "ui/trade_screen.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "trade_panel/root_panel": { + "file": "ui/trade_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "common_panel", + "trade_inventory" + ] + }, + "trade_panel/root_panel/common_panel": { + "file": "ui/trade_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "trade_panel/root_panel/trade_inventory": { + "file": "ui/trade_screen.json", + "type": "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": { + "file": "ui/trade_screen.json", + "type": "panel", + "extend": { + "name": "top_half_panel", + "namespace": "trade" + } + }, + "trade_panel/root_panel/trade_inventory/inventory_panel_bottom_half_with_label": { + "file": "ui/trade_screen.json", + "type": "panel", + "extend": { + "name": "inventory_panel_bottom_half_with_label", + "namespace": "common" + } + }, + "trade_panel/root_panel/trade_inventory/hotbar_grid_template": { + "file": "ui/trade_screen.json", + "type": "grid", + "extend": { + "name": "hotbar_grid_template", + "namespace": "common" + } + }, + "trade_panel/root_panel/trade_inventory/inventory_selected_icon_button": { + "file": "ui/trade_screen.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "trade_panel/root_panel/trade_inventory/gamepad_cursor": { + "file": "ui/trade_screen.json", + "type": "button", + "extend": { + "name": "gamepad_cursor_button", + "namespace": "common" + } + }, + "trade_panel/flying_item_renderer": { + "file": "ui/trade_screen.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + }, + "trade_screen": { + "file": "ui/trade_screen.json", + "type": "screen", + "extend": { + "name": "inventory_screen_common", + "namespace": "common" + } + } + }, + "trade_pocket": { + "background_image": { + "file": "ui/trade_screen_pocket.json", + "type": "image" + }, + "recipe_item_panel": { + "file": "ui/trade_screen_pocket.json", + "type": "panel", + "children": [ + "item_renderer" + ] + }, + "recipe_item_panel/item_renderer": { + "file": "ui/trade_screen_pocket.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "common" + }, + "children": [ + "stack_count_label" + ] + }, + "recipe_item_panel/item_renderer/stack_count_label": { + "file": "ui/trade_screen_pocket.json", + "type": "label", + "extend": { + "name": "stack_count_label", + "namespace": "common" + } + }, + "result_item_panel": { + "file": "ui/trade_screen_pocket.json", + "type": "panel", + "children": [ + "output_item_name", + "recipe_item_panel" + ] + }, + "result_item_panel/output_item_name": { + "file": "ui/trade_screen_pocket.json", + "type": "label" + }, + "result_item_panel/recipe_item_panel": { + "file": "ui/trade_screen_pocket.json", + "type": "panel", + "extend": { + "name": "recipe_item_panel", + "namespace": "trade" + } + }, + "trade_item_slot": { + "file": "ui/trade_screen_pocket.json", + "type": "panel", + "children": [ + "container_item" + ] + }, + "trade_item_slot/container_item": { + "file": "ui/trade_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_container_item", + "namespace": "common" + } + }, + "trade_item_slotB": { + "file": "ui/trade_screen_pocket.json", + "type": "panel", + "extend": { + "name": "trade_item_slot", + "namespace": "trade_pocket" + } + }, + "trade_item_slot_result_button": { + "file": "ui/trade_screen_pocket.json", + "type": "button", + "extend": { + "name": "container_slot_button_prototype", + "namespace": "common" + } + }, + "trade_item_slot_result": { + "file": "ui/trade_screen_pocket.json", + "type": "panel", + "extend": { + "name": "trade_item_slot", + "namespace": "trade_pocket" + } + }, + "purchase_grid": { + "file": "ui/trade_screen_pocket.json", + "type": "grid", + "children": [ + "grid_slot1", + "grid_slot2", + "arrow", + "result_item_slot" + ] + }, + "purchase_grid/grid_slot1": { + "file": "ui/trade_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "purchase_grid_item", + "namespace": "trade" + } + }, + "purchase_grid/grid_slot2": { + "file": "ui/trade_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "purchase_grid_item", + "namespace": "trade" + } + }, + "purchase_grid/arrow": { + "file": "ui/trade_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "purchase_grid_item", + "namespace": "trade" + } + }, + "purchase_grid/result_item_slot": { + "file": "ui/trade_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "purchase_grid_item", + "namespace": "trade" + } + }, + "merchant_purchase_panel": { + "file": "ui/trade_screen_pocket.json", + "type": "panel", + "children": [ + "left", + "purchase_grid", + "right" + ] + }, + "merchant_purchase_panel/left": { + "file": "ui/trade_screen_pocket.json", + "type": "button", + "extend": { + "name": "cycle_recipe_left_button", + "namespace": "trade" + } + }, + "merchant_purchase_panel/purchase_grid": { + "file": "ui/trade_screen_pocket.json", + "type": "grid", + "extend": { + "name": "purchase_grid", + "namespace": "trade_pocket" + } + }, + "merchant_purchase_panel/right": { + "file": "ui/trade_screen_pocket.json", + "type": "button", + "extend": { + "name": "cycle_recipe_right_button", + "namespace": "trade" + } + }, + "merchant_panel": { + "file": "ui/trade_screen_pocket.json", + "type": "panel", + "children": [ + "merchant_purchase_panel" + ] + }, + "merchant_panel/merchant_purchase_panel": { + "file": "ui/trade_screen_pocket.json", + "type": "panel", + "extend": { + "name": "merchant_purchase_panel", + "namespace": "trade_pocket" + } + }, + "inventory_grid": { + "file": "ui/trade_screen_pocket.json", + "type": "grid" + }, + "inventory_content": { + "file": "ui/trade_screen_pocket.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "inventory_content/scrolling_panel": { + "file": "ui/trade_screen_pocket.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "half_screen": { + "file": "ui/trade_screen_pocket.json", + "type": "panel" + }, + "inventory_half_screen": { + "file": "ui/trade_screen_pocket.json", + "type": "panel", + "extend": { + "name": "half_screen", + "namespace": "trade_pocket" + }, + "children": [ + "inventory_content" + ] + }, + "inventory_half_screen/inventory_content": { + "file": "ui/trade_screen_pocket.json", + "type": "panel", + "extend": { + "name": "inventory_content", + "namespace": "trade_pocket" + } + }, + "merchant_half_screen": { + "file": "ui/trade_screen_pocket.json", + "type": "panel", + "extend": { + "name": "half_screen", + "namespace": "trade_pocket" + }, + "children": [ + "merchant_panel" + ] + }, + "merchant_half_screen/merchant_panel": { + "file": "ui/trade_screen_pocket.json", + "type": "panel", + "extend": { + "name": "merchant_panel", + "namespace": "trade_pocket" + } + }, + "header": { + "file": "ui/trade_screen_pocket.json", + "type": "panel", + "children": [ + "header_background", + "close_button", + "villager_name_label" + ] + }, + "header/header_background": { + "file": "ui/trade_screen_pocket.json", + "type": "image" + }, + "header/close_button": { + "file": "ui/trade_screen_pocket.json", + "type": "button", + "extend": { + "name": "legacy_pocket_close_button", + "namespace": "common" + } + }, + "header/villager_name_label": { + "file": "ui/trade_screen_pocket.json", + "type": "label" + }, + "trade_panel": { + "file": "ui/trade_screen_pocket.json", + "type": "screen", + "extend": { + "name": "inventory_screen_common", + "namespace": "common" + }, + "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": { + "file": "ui/trade_screen_pocket.json", + "type": "image", + "extend": { + "name": "background_image", + "namespace": "trade_pocket" + } + }, + "trade_panel/root_panel": { + "file": "ui/trade_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + } + }, + "trade_panel/header": { + "file": "ui/trade_screen_pocket.json", + "type": "panel", + "extend": { + "name": "header", + "namespace": "trade_pocket" + } + }, + "trade_panel/inventory": { + "file": "ui/trade_screen_pocket.json", + "type": "panel", + "extend": { + "name": "inventory_half_screen", + "namespace": "trade_pocket" + } + }, + "trade_panel/merchant_half_screen": { + "file": "ui/trade_screen_pocket.json", + "type": "panel", + "extend": { + "name": "merchant_half_screen", + "namespace": "trade_pocket" + } + }, + "trade_panel/gamepad_helpers": { + "file": "ui/trade_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "trade_panel/container_gamepad_helpers": { + "file": "ui/trade_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "trade_panel/inventory_selected_icon_button": { + "file": "ui/trade_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "trade_panel/selected_item_details_factory": { + "file": "ui/trade_screen_pocket.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "trade_panel/item_lock_notification_factory": { + "file": "ui/trade_screen_pocket.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "trade_panel/flying_item_renderer": { + "file": "ui/trade_screen_pocket.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + } + }, + "trade2": { + "toolbar_background": { + "file": "ui/trade_2_screen.json", + "type": "image" + }, + "arrow_left_image": { + "file": "ui/trade_2_screen.json", + "type": "image" + }, + "arrow_right_image": { + "file": "ui/trade_2_screen.json", + "type": "image" + }, + "trade_cell_image": { + "file": "ui/trade_2_screen.json", + "type": "image" + }, + "cross_out_image": { + "file": "ui/trade_2_screen.json", + "type": "image" + }, + "lock_image": { + "file": "ui/trade_2_screen.json", + "type": "image" + }, + "scroll_background_image": { + "file": "ui/trade_2_screen.json", + "type": "image" + }, + "red_slash": { + "file": "ui/trade_2_screen.json", + "type": "image" + }, + "blue_progress_bar": { + "file": "ui/trade_2_screen.json", + "type": "image" + }, + "white_progress_bar": { + "file": "ui/trade_2_screen.json", + "type": "image" + }, + "empty_progress_bar": { + "file": "ui/trade_2_screen.json", + "type": "image" + }, + "progress_bar_nub": { + "file": "ui/trade_2_screen.json", + "type": "image" + }, + "hover_button": { + "file": "ui/trade_2_screen.json", + "type": "button", + "children": [ + "hover_text" + ] + }, + "hover_button/hover_text": { + "file": "ui/trade_2_screen.json", + "type": "custom", + "extend": { + "name": "hover_text", + "namespace": "common" + } + }, + "stack_count_label": { + "file": "ui/trade_2_screen.json", + "type": "label" + }, + "changed_item_count_label": { + "file": "ui/trade_2_screen.json", + "type": "stack_panel", + "children": [ + "stack_count_label", + "padding", + "second_stack_count_label" + ] + }, + "changed_item_count_label/stack_count_label": { + "file": "ui/trade_2_screen.json", + "type": "label", + "extend": { + "name": "stack_count_label", + "namespace": "trade2" + }, + "children": [ + "red_slash", + "red_slash_double" + ] + }, + "changed_item_count_label/stack_count_label/red_slash": { + "file": "ui/trade_2_screen.json", + "type": "image", + "extend": { + "name": "red_slash", + "namespace": "trade2" + } + }, + "changed_item_count_label/stack_count_label/red_slash_double": { + "file": "ui/trade_2_screen.json", + "type": "image", + "extend": { + "name": "red_slash", + "namespace": "trade2" + } + }, + "changed_item_count_label/padding": { + "file": "ui/trade_2_screen.json", + "type": "panel" + }, + "changed_item_count_label/second_stack_count_label": { + "file": "ui/trade_2_screen.json", + "type": "label", + "extend": { + "name": "stack_count_label", + "namespace": "trade2" + } + }, + "single_item_grid": { + "file": "ui/trade_2_screen.json", + "type": "grid", + "children": [ + "item_with_count" + ] + }, + "single_item_grid/item_with_count": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "children": [ + "item_renderer" + ] + }, + "single_item_grid/item_with_count/item_renderer": { + "file": "ui/trade_2_screen.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "common" + }, + "children": [ + "stack_count_label", + "changed_item_count_label", + "hover_button" + ] + }, + "single_item_grid/item_with_count/item_renderer/stack_count_label": { + "file": "ui/trade_2_screen.json", + "type": "label", + "extend": { + "name": "stack_count_label", + "namespace": "trade2" + } + }, + "single_item_grid/item_with_count/item_renderer/changed_item_count_label": { + "file": "ui/trade_2_screen.json", + "type": "stack_panel", + "extend": { + "name": "changed_item_count_label", + "namespace": "trade2" + } + }, + "single_item_grid/item_with_count/item_renderer/hover_button": { + "file": "ui/trade_2_screen.json", + "type": "button", + "extend": { + "name": "hover_button", + "namespace": "trade2" + } + }, + "trade_item_1": { + "file": "ui/trade_2_screen.json", + "type": "grid", + "extend": { + "name": "single_item_grid", + "namespace": "trade2" + } + }, + "trade_item_2": { + "file": "ui/trade_2_screen.json", + "type": "grid", + "extend": { + "name": "single_item_grid", + "namespace": "trade2" + } + }, + "sell_item": { + "file": "ui/trade_2_screen.json", + "type": "grid", + "extend": { + "name": "single_item_grid", + "namespace": "trade2" + } + }, + "arrow_holder": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "children": [ + "arrow_image", + "cross_out_image", + "lock_image" + ] + }, + "arrow_holder/arrow_image": { + "file": "ui/trade_2_screen.json", + "type": "image", + "extend": { + "name": "arrow_right_image", + "namespace": "trade2" + } + }, + "arrow_holder/cross_out_image": { + "file": "ui/trade_2_screen.json", + "type": "image", + "extend": { + "name": "cross_out_image", + "namespace": "trade2" + } + }, + "arrow_holder/lock_image": { + "file": "ui/trade_2_screen.json", + "type": "image", + "extend": { + "name": "lock_image", + "namespace": "trade2" + } + }, + "toggle_content": { + "file": "ui/trade_2_screen.json", + "type": "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": { + "file": "ui/trade_2_screen.json", + "type": "panel" + }, + "toggle_content/trade_item_1": { + "file": "ui/trade_2_screen.json", + "type": "grid", + "extend": { + "name": "trade_item_1", + "namespace": "trade2" + } + }, + "toggle_content/padding_2": { + "file": "ui/trade_2_screen.json", + "type": "panel" + }, + "toggle_content/padding_2_extra": { + "file": "ui/trade_2_screen.json", + "type": "panel" + }, + "toggle_content/trade_item_2": { + "file": "ui/trade_2_screen.json", + "type": "grid", + "extend": { + "name": "trade_item_2", + "namespace": "trade2" + } + }, + "toggle_content/padding_3": { + "file": "ui/trade_2_screen.json", + "type": "panel" + }, + "toggle_content/padding_3_extra": { + "file": "ui/trade_2_screen.json", + "type": "panel" + }, + "toggle_content/arrow_holder": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "extend": { + "name": "arrow_holder", + "namespace": "trade2" + } + }, + "toggle_content/padding_4": { + "file": "ui/trade_2_screen.json", + "type": "panel" + }, + "toggle_content/sell_item_holder": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "children": [ + "sell_item" + ] + }, + "toggle_content/sell_item_holder/sell_item": { + "file": "ui/trade_2_screen.json", + "type": "grid", + "extend": { + "name": "sell_item", + "namespace": "trade2" + } + }, + "toggle_content/sell_item_holder_with_less_padding": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "children": [ + "sell_item" + ] + }, + "toggle_content/sell_item_holder_with_less_padding/sell_item": { + "file": "ui/trade_2_screen.json", + "type": "grid", + "extend": { + "name": "sell_item", + "namespace": "trade2" + } + }, + "toggle_content/padding_5": { + "file": "ui/trade_2_screen.json", + "type": "panel" + }, + "toggle_content_holder": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "children": [ + "toggle_content" + ] + }, + "toggle_content_holder/toggle_content": { + "file": "ui/trade_2_screen.json", + "type": "unknown" + }, + "trade_toggle_unchecked": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "children": [ + "toggle_checked_normal", + "toggle_checked_red" + ] + }, + "trade_toggle_unchecked/toggle_checked_normal": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "extend": { + "name": "toggle_unchecked", + "namespace": "common_toggles" + } + }, + "trade_toggle_unchecked/toggle_checked_red": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "extend": { + "name": "toggle_unchecked", + "namespace": "common_toggles" + } + }, + "trade_toggle_checked": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "children": [ + "toggle_checked_normal", + "toggle_checked_red" + ] + }, + "trade_toggle_checked/toggle_checked_normal": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "extend": { + "name": "toggle_checked", + "namespace": "common_toggles" + } + }, + "trade_toggle_checked/toggle_checked_red": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "extend": { + "name": "toggle_checked", + "namespace": "common_toggles" + } + }, + "trade_toggle_locked": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "extend": { + "name": "toggle_locked", + "namespace": "common_toggles" + } + }, + "trade_actual_toggle": { + "file": "ui/trade_2_screen.json", + "type": "toggle", + "extend": { + "name": "toggle", + "namespace": "common" + } + }, + "trade_toggle": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "extend": { + "name": "light_image_toggle_collection", + "namespace": "common_toggles" + } + }, + "trade_toggle_holder": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "children": [ + "trade_toggle" + ] + }, + "trade_toggle_holder/trade_toggle": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "extend": { + "name": "trade_toggle", + "namespace": "trade2" + } + }, + "trade_toggle_stack_panel": { + "file": "ui/trade_2_screen.json", + "type": "stack_panel" + }, + "tier_label": { + "file": "ui/trade_2_screen.json", + "type": "label" + }, + "tier_label_locked": { + "file": "ui/trade_2_screen.json", + "type": "label" + }, + "tier_stack_panel": { + "file": "ui/trade_2_screen.json", + "type": "stack_panel", + "children": [ + "padding", + "tier_label_holder", + "trade_toggle_stack_panel" + ] + }, + "tier_stack_panel/padding": { + "file": "ui/trade_2_screen.json", + "type": "panel" + }, + "tier_stack_panel/tier_label_holder": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "children": [ + "tier_label", + "tier_label_locked" + ] + }, + "tier_stack_panel/tier_label_holder/tier_label": { + "file": "ui/trade_2_screen.json", + "type": "label", + "extend": { + "name": "tier_label", + "namespace": "trade2" + } + }, + "tier_stack_panel/tier_label_holder/tier_label_locked": { + "file": "ui/trade_2_screen.json", + "type": "label", + "extend": { + "name": "tier_label_locked", + "namespace": "trade2" + } + }, + "tier_stack_panel/trade_toggle_stack_panel": { + "file": "ui/trade_2_screen.json", + "type": "stack_panel", + "extend": { + "name": "trade_toggle_stack_panel", + "namespace": "trade2" + } + }, + "trade_selector_stack_panel": { + "file": "ui/trade_2_screen.json", + "type": "stack_panel" + }, + "scroll_inner_input_panel": { + "file": "ui/trade_2_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "trade_selector_stack_panel" + ] + }, + "scroll_inner_input_panel/trade_selector_stack_panel": { + "file": "ui/trade_2_screen.json", + "type": "stack_panel", + "extend": { + "name": "trade_selector_stack_panel", + "namespace": "trade2" + } + }, + "trade_scroll_panel": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "extend": { + "name": "container_scroll_panel", + "namespace": "common" + } + }, + "left_panel": { + "file": "ui/trade_2_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "bg", + "trade_scroll_panel" + ] + }, + "left_panel/bg": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "left_panel/trade_scroll_panel": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "extend": { + "name": "trade_scroll_panel", + "namespace": "trade2" + } + }, + "exp_progress_bar": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "children": [ + "empty_progress_bar" + ] + }, + "exp_progress_bar/empty_progress_bar": { + "file": "ui/trade_2_screen.json", + "type": "image", + "extend": { + "name": "empty_progress_bar", + "namespace": "trade2" + }, + "children": [ + "progress_bar_nub", + "blue_progress_bar", + "white_progress_bar" + ] + }, + "exp_progress_bar/empty_progress_bar/progress_bar_nub": { + "file": "ui/trade_2_screen.json", + "type": "image", + "extend": { + "name": "progress_bar_nub", + "namespace": "trade2" + } + }, + "exp_progress_bar/empty_progress_bar/blue_progress_bar": { + "file": "ui/trade_2_screen.json", + "type": "image", + "extend": { + "name": "blue_progress_bar", + "namespace": "trade2" + } + }, + "exp_progress_bar/empty_progress_bar/white_progress_bar": { + "file": "ui/trade_2_screen.json", + "type": "image", + "extend": { + "name": "white_progress_bar", + "namespace": "trade2" + } + }, + "trade_details": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "children": [ + "item_panel_image" + ] + }, + "trade_details/item_panel_image": { + "file": "ui/trade_2_screen.json", + "type": "image", + "children": [ + "item_text_label" + ] + }, + "trade_details/item_panel_image/item_text_label": { + "file": "ui/trade_2_screen.json", + "type": "label" + }, + "trade_details_factory": { + "file": "ui/trade_2_screen.json", + "type": "factory" + }, + "trade_details_factory_holder": { + "file": "ui/trade_2_screen.json", + "type": "panel" + }, + "trade_details_button": { + "file": "ui/trade_2_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "trade_details_1_button": { + "file": "ui/trade_2_screen.json", + "type": "button", + "extend": { + "name": "trade_details_button", + "namespace": "trade2" + } + }, + "trade_details_2_button": { + "file": "ui/trade_2_screen.json", + "type": "button", + "extend": { + "name": "trade_details_button", + "namespace": "trade2" + } + }, + "enchantment_details_button": { + "file": "ui/trade_2_screen.json", + "type": "button", + "extend": { + "name": "trade_details_button", + "namespace": "trade2" + } + }, + "trade_result_item_slot_button": { + "file": "ui/trade_2_screen.json", + "type": "button", + "extend": { + "name": "container_slot_button_prototype", + "namespace": "common" + } + }, + "red_cell_image": { + "file": "ui/trade_2_screen.json", + "type": "image" + }, + "container_cell_image": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "children": [ + "cell_image", + "red_cell_image" + ] + }, + "container_cell_image/cell_image": { + "file": "ui/trade_2_screen.json", + "type": "image", + "extend": { + "name": "cell_image", + "namespace": "common" + } + }, + "container_cell_image/red_cell_image": { + "file": "ui/trade_2_screen.json", + "type": "image", + "extend": { + "name": "red_cell_image", + "namespace": "trade2" + } + }, + "item_slot": { + "file": "ui/trade_2_screen.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "ingredient_1_item_slot": { + "file": "ui/trade_2_screen.json", + "type": "input_panel", + "extend": { + "name": "item_slot", + "namespace": "trade2" + } + }, + "ingredient_2_item_slot": { + "file": "ui/trade_2_screen.json", + "type": "input_panel", + "extend": { + "name": "item_slot", + "namespace": "trade2" + } + }, + "result_item_slot": { + "file": "ui/trade_2_screen.json", + "type": "input_panel", + "extend": { + "name": "item_slot", + "namespace": "trade2" + } + }, + "item_slot_holder": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "children": [ + "ingredient_1_item_slot", + "trade_details_1_button", + "trade_details_1_factory_holder" + ] + }, + "item_slot_holder/ingredient_1_item_slot": { + "file": "ui/trade_2_screen.json", + "type": "unknown" + }, + "item_slot_holder/trade_details_1_button": { + "file": "ui/trade_2_screen.json", + "type": "unknown" + }, + "item_slot_holder/trade_details_1_factory_holder": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "extend": { + "name": "trade_details_factory_holder", + "namespace": "trade2" + } + }, + "item_slots_stack_panel": { + "file": "ui/trade_2_screen.json", + "type": "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": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "extend": { + "name": "item_slot_holder", + "namespace": "trade2" + } + }, + "item_slots_stack_panel/ingredient_item_2_holder": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "extend": { + "name": "item_slot_holder", + "namespace": "trade2" + } + }, + "item_slots_stack_panel/pointing_right_arrow_holder": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "children": [ + "arrow_right_image" + ] + }, + "item_slots_stack_panel/pointing_right_arrow_holder/arrow_right_image": { + "file": "ui/trade_2_screen.json", + "type": "image", + "extend": { + "name": "arrow_right_image", + "namespace": "trade2" + } + }, + "item_slots_stack_panel/pointing_left_arrow_holder": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "children": [ + "arrow_left_image" + ] + }, + "item_slots_stack_panel/pointing_left_arrow_holder/arrow_left_image": { + "file": "ui/trade_2_screen.json", + "type": "image", + "extend": { + "name": "arrow_left_image", + "namespace": "trade2" + } + }, + "item_slots_stack_panel/result_item_slot_holder": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "extend": { + "name": "item_slot_holder", + "namespace": "trade2" + } + }, + "trade_button": { + "file": "ui/trade_2_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "how_to_play_button": { + "file": "ui/trade_2_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "top_half_stack_panel": { + "file": "ui/trade_2_screen.json", + "type": "stack_panel", + "children": [ + "item_slots_holder", + "padding_1", + "trade_button_holder", + "how_to_play_button_holder" + ] + }, + "top_half_stack_panel/item_slots_holder": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "children": [ + "item_slots_stack_panel" + ] + }, + "top_half_stack_panel/item_slots_holder/item_slots_stack_panel": { + "file": "ui/trade_2_screen.json", + "type": "stack_panel", + "extend": { + "name": "item_slots_stack_panel", + "namespace": "trade2" + } + }, + "top_half_stack_panel/padding_1": { + "file": "ui/trade_2_screen.json", + "type": "panel" + }, + "top_half_stack_panel/trade_button_holder": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "children": [ + "trade_button" + ] + }, + "top_half_stack_panel/trade_button_holder/trade_button": { + "file": "ui/trade_2_screen.json", + "type": "button", + "extend": { + "name": "trade_button", + "namespace": "trade2" + } + }, + "top_half_stack_panel/how_to_play_button_holder": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "children": [ + "how_to_play_button" + ] + }, + "top_half_stack_panel/how_to_play_button_holder/how_to_play_button": { + "file": "ui/trade_2_screen.json", + "type": "button", + "extend": { + "name": "how_to_play_button", + "namespace": "trade2" + } + }, + "top_half_panel": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "children": [ + "top_half_stack_panel" + ] + }, + "top_half_panel/top_half_stack_panel": { + "file": "ui/trade_2_screen.json", + "type": "stack_panel", + "extend": { + "name": "top_half_stack_panel", + "namespace": "trade2" + } + }, + "villager_name_label": { + "file": "ui/trade_2_screen.json", + "type": "label" + }, + "right_panel": { + "file": "ui/trade_2_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "common_panel", + "trade_screen_inventory" + ] + }, + "right_panel/common_panel": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "right_panel/trade_screen_inventory": { + "file": "ui/trade_2_screen.json", + "type": "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": { + "file": "ui/trade_2_screen.json", + "type": "label", + "extend": { + "name": "villager_name_label", + "namespace": "trade2" + } + }, + "right_panel/trade_screen_inventory/exp_progress_bar": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "extend": { + "name": "exp_progress_bar", + "namespace": "trade2" + } + }, + "right_panel/trade_screen_inventory/top_half_panel": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "extend": { + "name": "top_half_panel", + "namespace": "trade2" + } + }, + "right_panel/trade_screen_inventory/inventory_panel_bottom_half_with_label": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "extend": { + "name": "inventory_panel_bottom_half_with_label", + "namespace": "common" + } + }, + "right_panel/trade_screen_inventory/hotbar_grid": { + "file": "ui/trade_2_screen.json", + "type": "grid", + "extend": { + "name": "hotbar_grid_template", + "namespace": "common" + } + }, + "toolbar_panel": { + "file": "ui/trade_2_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "toolbar_background" + ] + }, + "toolbar_panel/toolbar_background": { + "file": "ui/trade_2_screen.json", + "type": "image", + "extend": { + "name": "toolbar_background", + "namespace": "trade2" + }, + "children": [ + "toolbar_stack_panel" + ] + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel": { + "file": "ui/trade_2_screen.json", + "type": "stack_panel", + "children": [ + "padding_1", + "close_button_panel", + "padding_2" + ] + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": { + "file": "ui/trade_2_screen.json", + "type": "panel" + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "children": [ + "close_button" + ] + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": { + "file": "ui/trade_2_screen.json", + "type": "button", + "extend": { + "name": "light_close_button", + "namespace": "common" + } + }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": { + "file": "ui/trade_2_screen.json", + "type": "panel" + }, + "toolbar_anchor": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "children": [ + "toolbar_panel" + ] + }, + "toolbar_anchor/toolbar_panel": { + "file": "ui/trade_2_screen.json", + "type": "input_panel", + "extend": { + "name": "toolbar_panel", + "namespace": "trade2" + } + }, + "center_fold": { + "file": "ui/trade_2_screen.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "center_bg" + ] + }, + "center_fold/center_bg": { + "file": "ui/trade_2_screen.json", + "type": "image" + }, + "screen_stack_panel": { + "file": "ui/trade_2_screen.json", + "type": "stack_panel", + "children": [ + "left_panel", + "center_fold", + "right_panel", + "toolbar_anchor" + ] + }, + "screen_stack_panel/left_panel": { + "file": "ui/trade_2_screen.json", + "type": "input_panel", + "extend": { + "name": "left_panel", + "namespace": "trade2" + } + }, + "screen_stack_panel/center_fold": { + "file": "ui/trade_2_screen.json", + "type": "input_panel", + "extend": { + "name": "center_fold", + "namespace": "trade2" + } + }, + "screen_stack_panel/right_panel": { + "file": "ui/trade_2_screen.json", + "type": "input_panel", + "extend": { + "name": "right_panel", + "namespace": "trade2" + } + }, + "screen_stack_panel/toolbar_anchor": { + "file": "ui/trade_2_screen.json", + "type": "panel", + "extend": { + "name": "toolbar_anchor", + "namespace": "trade2" + } + }, + "gamepad_helper_x": { + "file": "ui/trade_2_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_x", + "namespace": "common" + } + }, + "gamepad_helper_y": { + "file": "ui/trade_2_screen.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_y", + "namespace": "common" + } + }, + "screen_panel": { + "file": "ui/trade_2_screen.json", + "type": "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": { + "file": "ui/trade_2_screen.json", + "type": "stack_panel", + "extend": { + "name": "screen_stack_panel", + "namespace": "trade2" + } + }, + "screen_panel/container_gamepad_helpers": { + "file": "ui/trade_2_screen.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "screen_panel/selected_item_details_factory": { + "file": "ui/trade_2_screen.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "screen_panel/item_lock_notification_factory": { + "file": "ui/trade_2_screen.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "screen_panel/inventory_selected_icon_button": { + "file": "ui/trade_2_screen.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "screen_panel/inventory_take_progress_icon_button": { + "file": "ui/trade_2_screen.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "screen_panel/flying_item_renderer": { + "file": "ui/trade_2_screen.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + }, + "trade_screen": { + "file": "ui/trade_2_screen.json", + "type": "screen", + "extend": { + "name": "inventory_screen_common", + "namespace": "common" + } + } + }, + "trade2_pocket": { + "chest_item_renderer": { + "file": "ui/trade_2_screen_pocket.json", + "type": "custom" + }, + "trade_icon": { + "file": "ui/trade_2_screen_pocket.json", + "type": "image" + }, + "arrow_right_image": { + "file": "ui/trade_2_screen_pocket.json", + "type": "image" + }, + "right_navigation_tabs": { + "file": "ui/trade_2_screen_pocket.json", + "type": "stack_panel", + "children": [ + "pocket_tab_close_button", + "fill" + ] + }, + "right_navigation_tabs/pocket_tab_close_button": { + "file": "ui/trade_2_screen_pocket.json", + "type": "image", + "extend": { + "name": "pocket_tab_close_button", + "namespace": "common_tabs" + } + }, + "right_navigation_tabs/fill": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel" + }, + "trade_slots_panel": { + "file": "ui/trade_2_screen_pocket.json", + "type": "image", + "extend": { + "name": "scroll_background_image", + "namespace": "trade2" + }, + "children": [ + "item_slots_stack_panel" + ] + }, + "trade_slots_panel/item_slots_stack_panel": { + "file": "ui/trade_2_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "item_slots_stack_panel", + "namespace": "trade2" + } + }, + "trade_and_help_buttons": { + "file": "ui/trade_2_screen_pocket.json", + "type": "stack_panel", + "children": [ + "trade_button_holder", + "how_to_play_button_holder" + ] + }, + "trade_and_help_buttons/trade_button_holder": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel", + "children": [ + "trade_button" + ] + }, + "trade_and_help_buttons/trade_button_holder/trade_button": { + "file": "ui/trade_2_screen_pocket.json", + "type": "button", + "extend": { + "name": "trade_button", + "namespace": "trade2" + } + }, + "trade_and_help_buttons/how_to_play_button_holder": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel", + "children": [ + "how_to_play_button" + ] + }, + "trade_and_help_buttons/how_to_play_button_holder/how_to_play_button": { + "file": "ui/trade_2_screen_pocket.json", + "type": "button", + "extend": { + "name": "how_to_play_button", + "namespace": "trade2" + } + }, + "name_and_trade_slots_stack_panel": { + "file": "ui/trade_2_screen_pocket.json", + "type": "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": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel" + }, + "name_and_trade_slots_stack_panel/villager_name_label_holder": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel", + "children": [ + "villager_name_label" + ] + }, + "name_and_trade_slots_stack_panel/villager_name_label_holder/villager_name_label": { + "file": "ui/trade_2_screen_pocket.json", + "type": "label", + "extend": { + "name": "villager_name_label", + "namespace": "trade2" + } + }, + "name_and_trade_slots_stack_panel/padding_2": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel" + }, + "name_and_trade_slots_stack_panel/exp_progress_bar_holder": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel", + "children": [ + "exp_progress_bar" + ] + }, + "name_and_trade_slots_stack_panel/exp_progress_bar_holder/exp_progress_bar": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "exp_progress_bar", + "namespace": "trade2" + } + }, + "name_and_trade_slots_stack_panel/padding_3": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel" + }, + "name_and_trade_slots_stack_panel/trade_slots_panel": { + "file": "ui/trade_2_screen_pocket.json", + "type": "image", + "extend": { + "name": "trade_slots_panel", + "namespace": "trade2_pocket" + } + }, + "name_and_trade_slots_stack_panel/padding_4": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel" + }, + "name_and_trade_slots_stack_panel/trade_and_help_buttons": { + "file": "ui/trade_2_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "trade_and_help_buttons", + "namespace": "trade2_pocket" + } + }, + "right_panel": { + "file": "ui/trade_2_screen_pocket.json", + "type": "stack_panel", + "children": [ + "content", + "navigation_tabs_holder" + ] + }, + "right_panel/content": { + "file": "ui/trade_2_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "bg", + "name_and_trade_slots_stack_panel" + ] + }, + "right_panel/content/bg": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "right_panel/content/name_and_trade_slots_stack_panel": { + "file": "ui/trade_2_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "name_and_trade_slots_stack_panel", + "namespace": "trade2_pocket" + } + }, + "right_panel/navigation_tabs_holder": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel", + "children": [ + "right_navigation_tabs" + ] + }, + "right_panel/navigation_tabs_holder/right_navigation_tabs": { + "file": "ui/trade_2_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "right_navigation_tabs", + "namespace": "trade2_pocket" + } + }, + "left_tab_trade": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "pocket_tab_left", + "namespace": "common_tabs" + } + }, + "left_tab_inventory": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "pocket_tab_left", + "namespace": "common_tabs" + } + }, + "left_navigation_tabs": { + "file": "ui/trade_2_screen_pocket.json", + "type": "stack_panel", + "children": [ + "left_tab_trades", + "padding", + "left_tab_inventory" + ] + }, + "left_navigation_tabs/left_tab_trades": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "left_tab_trade", + "namespace": "trade2_pocket" + } + }, + "left_navigation_tabs/padding": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel" + }, + "left_navigation_tabs/left_tab_inventory": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "left_tab_inventory", + "namespace": "trade2_pocket" + } + }, + "arrow_holder": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel", + "children": [ + "arrow_image", + "cross_out_image", + "lock_image" + ] + }, + "arrow_holder/arrow_image": { + "file": "ui/trade_2_screen_pocket.json", + "type": "image", + "extend": { + "name": "arrow_right_image", + "namespace": "trade2_pocket" + } + }, + "arrow_holder/cross_out_image": { + "file": "ui/trade_2_screen_pocket.json", + "type": "image", + "extend": { + "name": "cross_out_image", + "namespace": "trade2" + } + }, + "arrow_holder/lock_image": { + "file": "ui/trade_2_screen_pocket.json", + "type": "image", + "extend": { + "name": "lock_image", + "namespace": "trade2" + } + }, + "inventory_scroll_panel": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "container_scroll_panel", + "namespace": "common" + } + }, + "toggle_content": { + "file": "ui/trade_2_screen_pocket.json", + "type": "stack_panel", + "children": [ + "padding_1", + "trade_item_holder", + "padding_2", + "arrow_holder", + "padding_3", + "sell_item_holder", + "padding_4" + ] + }, + "toggle_content/padding_1": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel" + }, + "toggle_content/trade_item_holder": { + "file": "ui/trade_2_screen_pocket.json", + "type": "stack_panel", + "children": [ + "padding_left", + "trade_item_1", + "padding_middle", + "trade_item_2", + "padding_right" + ] + }, + "toggle_content/trade_item_holder/padding_left": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel" + }, + "toggle_content/trade_item_holder/trade_item_1": { + "file": "ui/trade_2_screen_pocket.json", + "type": "grid", + "extend": { + "name": "trade_item_1", + "namespace": "trade2" + } + }, + "toggle_content/trade_item_holder/padding_middle": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel" + }, + "toggle_content/trade_item_holder/trade_item_2": { + "file": "ui/trade_2_screen_pocket.json", + "type": "grid", + "extend": { + "name": "trade_item_2", + "namespace": "trade2" + } + }, + "toggle_content/trade_item_holder/padding_right": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel" + }, + "toggle_content/padding_2": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel" + }, + "toggle_content/arrow_holder": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "arrow_holder", + "namespace": "trade2_pocket" + } + }, + "toggle_content/padding_3": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel" + }, + "toggle_content/sell_item_holder": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel", + "children": [ + "sell_item" + ] + }, + "toggle_content/sell_item_holder/sell_item": { + "file": "ui/trade_2_screen_pocket.json", + "type": "grid", + "extend": { + "name": "sell_item", + "namespace": "trade2" + } + }, + "toggle_content/padding_4": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel" + }, + "left_panel": { + "file": "ui/trade_2_screen_pocket.json", + "type": "stack_panel", + "children": [ + "gamepad_helpers_and_tabs_holder", + "content" + ] + }, + "left_panel/gamepad_helpers_and_tabs_holder": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel", + "children": [ + "tabs_left_gamepad_helpers", + "navigation_tabs_holder" + ] + }, + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "tabs_left_gamepad_helpers", + "namespace": "common" + } + }, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel", + "children": [ + "left_navigation_tabs" + ] + }, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": { + "file": "ui/trade_2_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "left_navigation_tabs", + "namespace": "trade2_pocket" + } + }, + "left_panel/content": { + "file": "ui/trade_2_screen_pocket.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "bg", + "inventory_scroll_panel", + "trade_scroll_panel" + ] + }, + "left_panel/content/bg": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "left_panel/content/inventory_scroll_panel": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "inventory_scroll_panel", + "namespace": "trade2_pocket" + } + }, + "left_panel/content/trade_scroll_panel": { + "file": "ui/trade_2_screen_pocket.json", + "type": "panel", + "extend": { + "name": "trade_scroll_panel", + "namespace": "trade2" + } + }, + "pocket_hotbar_and_content_panels": { + "file": "ui/trade_2_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "pocket_hotbar_and_content_panels", + "namespace": "common" + } + }, + "screen_panel": { + "file": "ui/trade_2_screen_pocket.json", + "type": "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": { + "file": "ui/trade_2_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "pocket_hotbar_and_content_panels", + "namespace": "trade2_pocket" + } + }, + "screen_panel/container_gamepad_helpers": { + "file": "ui/trade_2_screen_pocket.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "screen_panel/selected_item_details_factory": { + "file": "ui/trade_2_screen_pocket.json", + "type": "factory", + "extend": { + "name": "selected_item_details_factory", + "namespace": "common" + } + }, + "screen_panel/item_lock_notification_factory": { + "file": "ui/trade_2_screen_pocket.json", + "type": "factory", + "extend": { + "name": "item_lock_notification_factory", + "namespace": "common" + } + }, + "screen_panel/inventory_selected_icon_button": { + "file": "ui/trade_2_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_selected_icon_button", + "namespace": "common" + } + }, + "screen_panel/inventory_take_progress_icon_button": { + "file": "ui/trade_2_screen_pocket.json", + "type": "button", + "extend": { + "name": "inventory_take_progress_icon_button", + "namespace": "common" + } + }, + "screen_panel/flying_item_renderer": { + "file": "ui/trade_2_screen_pocket.json", + "type": "custom", + "extend": { + "name": "flying_item_renderer", + "namespace": "common" + } + } + }, + "trialUpsell": { + "normal_stroke_button": { + "file": "ui/trial_upsell_screen.json", + "type": "image" + }, + "normal_description_label": { + "file": "ui/trial_upsell_screen.json", + "type": "label" + }, + "trialTime": { + "file": "ui/trial_upsell_screen.json", + "type": "custom" + }, + "trial_label": { + "file": "ui/trial_upsell_screen.json", + "type": "label" + }, + "trial_description_panel": { + "file": "ui/trial_upsell_screen.json", + "type": "panel", + "children": [ + "description_text" + ] + }, + "trial_description_panel/description_text": { + "file": "ui/trial_upsell_screen.json", + "type": "label", + "extend": { + "name": "normal_description_label", + "namespace": "trialUpsell" + } + }, + "trial_expired_description_panel": { + "file": "ui/trial_upsell_screen.json", + "type": "stack_panel", + "children": [ + "vertical_padding_0", + "line1", + "vertical_padding_1", + "line2", + "line3", + "line4", + "line5" + ] + }, + "trial_expired_description_panel/vertical_padding_0": { + "file": "ui/trial_upsell_screen.json", + "type": "panel" + }, + "trial_expired_description_panel/line1": { + "file": "ui/trial_upsell_screen.json", + "type": "label", + "extend": { + "name": "normal_description_label", + "namespace": "trialUpsell" + } + }, + "trial_expired_description_panel/vertical_padding_1": { + "file": "ui/trial_upsell_screen.json", + "type": "panel" + }, + "trial_expired_description_panel/line2": { + "file": "ui/trial_upsell_screen.json", + "type": "label", + "extend": { + "name": "normal_description_label", + "namespace": "trialUpsell" + } + }, + "trial_expired_description_panel/line3": { + "file": "ui/trial_upsell_screen.json", + "type": "label", + "extend": { + "name": "normal_description_label", + "namespace": "trialUpsell" + } + }, + "trial_expired_description_panel/line4": { + "file": "ui/trial_upsell_screen.json", + "type": "label", + "extend": { + "name": "normal_description_label", + "namespace": "trialUpsell" + } + }, + "trial_expired_description_panel/line5": { + "file": "ui/trial_upsell_screen.json", + "type": "label", + "extend": { + "name": "normal_description_label", + "namespace": "trialUpsell" + } + }, + "continue_button": { + "file": "ui/trial_upsell_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "buy_button": { + "file": "ui/trial_upsell_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "root_panel": { + "file": "ui/trial_upsell_screen.json", + "type": "panel" + }, + "trial_upsell_screen_dialog": { + "file": "ui/trial_upsell_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_one_button", + "namespace": "common_dialogs" + } + }, + "trial_upsell_expired_screen_dialog": { + "file": "ui/trial_upsell_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_one_button", + "namespace": "common_dialogs" + } + }, + "button_content_panel": { + "file": "ui/trial_upsell_screen.json", + "type": "panel", + "children": [ + "buy", + "continue" + ] + }, + "button_content_panel/buy": { + "file": "ui/trial_upsell_screen.json", + "type": "button", + "extend": { + "name": "buy_button", + "namespace": "trialUpsell" + } + }, + "button_content_panel/continue": { + "file": "ui/trial_upsell_screen.json", + "type": "button", + "extend": { + "name": "continue_button", + "namespace": "trialUpsell" + } + }, + "trial_upsell_screen": { + "file": "ui/trial_upsell_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "trial_upsell_screen_content": { + "file": "ui/trial_upsell_screen.json", + "type": "panel", + "children": [ + "trialTime", + "root_panel" + ] + }, + "trial_upsell_screen_content/trialTime": { + "file": "ui/trial_upsell_screen.json", + "type": "custom", + "extend": { + "name": "trialTime", + "namespace": "trialUpsell" + } + }, + "trial_upsell_screen_content/root_panel": { + "file": "ui/trial_upsell_screen.json", + "type": "panel", + "extend": { + "name": "root_panel", + "namespace": "trialUpsell" + }, + "children": [ + "trial_upsell_screen_dialog" + ] + }, + "trial_upsell_screen_content/root_panel/trial_upsell_screen_dialog": { + "file": "ui/trial_upsell_screen.json", + "type": "panel", + "extend": { + "name": "trial_upsell_screen_dialog", + "namespace": "trialUpsell" + } + }, + "trial_upsell_expired_screen": { + "file": "ui/trial_upsell_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "trial_upsell_expired_screen_content": { + "file": "ui/trial_upsell_screen.json", + "type": "panel", + "children": [ + "trialTime", + "root_panel" + ] + }, + "trial_upsell_expired_screen_content/trialTime": { + "file": "ui/trial_upsell_screen.json", + "type": "custom", + "extend": { + "name": "trialTime", + "namespace": "trialUpsell" + } + }, + "trial_upsell_expired_screen_content/root_panel": { + "file": "ui/trial_upsell_screen.json", + "type": "panel", + "extend": { + "name": "root_panel", + "namespace": "trialUpsell" + }, + "children": [ + "trial_upsell_expired_screen_dialog" + ] + }, + "trial_upsell_expired_screen_content/root_panel/trial_upsell_expired_screen_dialog": { + "file": "ui/trial_upsell_screen.json", + "type": "panel", + "extend": { + "name": "trial_upsell_expired_screen_dialog", + "namespace": "trialUpsell" + } + }, + "content_description_panel": { + "file": "ui/trial_upsell_screen.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "content_description_panel/scrolling_panel": { + "file": "ui/trial_upsell_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + } + }, + "ugc_viewer": { + "padding": { + "file": "ui/ugc_viewer_screen.json", + "type": "panel" + }, + "world_label": { + "file": "ui/ugc_viewer_screen.json", + "type": "label" + }, + "world_image": { + "file": "ui/ugc_viewer_screen.json", + "type": "image" + }, + "button_content": { + "file": "ui/ugc_viewer_screen.json", + "type": "panel", + "children": [ + "stack_panel" + ] + }, + "button_content/stack_panel": { + "file": "ui/ugc_viewer_screen.json", + "type": "stack_panel", + "children": [ + "world_label", + "world_panel" + ] + }, + "button_content/stack_panel/world_label": { + "file": "ui/ugc_viewer_screen.json", + "type": "label", + "extend": { + "name": "world_label", + "namespace": "ugc_viewer" + } + }, + "button_content/stack_panel/world_panel": { + "file": "ui/ugc_viewer_screen.json", + "type": "panel", + "children": [ + "background" + ] + }, + "button_content/stack_panel/world_panel/background": { + "file": "ui/ugc_viewer_screen.json", + "type": "image", + "children": [ + "world_image" + ] + }, + "button_content/stack_panel/world_panel/background/world_image": { + "file": "ui/ugc_viewer_screen.json", + "type": "image", + "extend": { + "name": "world_image", + "namespace": "ugc_viewer" + } + }, + "grid_item": { + "file": "ui/ugc_viewer_screen.json", + "type": "panel", + "children": [ + "button" + ] + }, + "grid_item/button": { + "file": "ui/ugc_viewer_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "place_holder_control": { + "file": "ui/ugc_viewer_screen.json", + "type": "panel", + "children": [ + "search_icon", + "place_holder_text" + ] + }, + "place_holder_control/search_icon": { + "file": "ui/ugc_viewer_screen.json", + "type": "image" + }, + "place_holder_control/place_holder_text": { + "file": "ui/ugc_viewer_screen.json", + "type": "label", + "extend": { + "name": "text_edit_box_place_holder_label", + "namespace": "common" + } + }, + "search_box": { + "file": "ui/ugc_viewer_screen.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "grid_content": { + "file": "ui/ugc_viewer_screen.json", + "type": "grid" + }, + "scrolling_content": { + "file": "ui/ugc_viewer_screen.json", + "type": "panel", + "children": [ + "grid_content" + ] + }, + "scrolling_content/grid_content": { + "file": "ui/ugc_viewer_screen.json", + "type": "grid", + "extend": { + "name": "grid_content", + "namespace": "ugc_viewer" + } + }, + "main_panel": { + "file": "ui/ugc_viewer_screen.json", + "type": "stack_panel", + "children": [ + "padding_0", + "centerer_panel_0", + "padding_1", + "centerer_panel_1", + "padding_2" + ] + }, + "main_panel/padding_0": { + "file": "ui/ugc_viewer_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "ugc_viewer" + } + }, + "main_panel/centerer_panel_0": { + "file": "ui/ugc_viewer_screen.json", + "type": "panel", + "children": [ + "search_box" + ] + }, + "main_panel/centerer_panel_0/search_box": { + "file": "ui/ugc_viewer_screen.json", + "type": "edit_box", + "extend": { + "name": "search_box", + "namespace": "ugc_viewer" + } + }, + "main_panel/padding_1": { + "file": "ui/ugc_viewer_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "ugc_viewer" + } + }, + "main_panel/centerer_panel_1": { + "file": "ui/ugc_viewer_screen.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "main_panel/centerer_panel_1/scrolling_panel": { + "file": "ui/ugc_viewer_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "main_panel/padding_2": { + "file": "ui/ugc_viewer_screen.json", + "type": "panel", + "extend": { + "name": "padding", + "namespace": "ugc_viewer" + } + }, + "ugc_viewer_screen": { + "file": "ui/ugc_viewer_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "screen_content": { + "file": "ui/ugc_viewer_screen.json", + "type": "panel", + "children": [ + "main_panel" + ] + }, + "screen_content/main_panel": { + "file": "ui/ugc_viewer_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_no_buttons", + "namespace": "common_dialogs" + } + } + }, + "common_art": { + "title_image": { + "file": "ui/ui_art_assets_common.json", + "type": "image" + }, + "title_image_edu": { + "file": "ui/ui_art_assets_common.json", + "type": "image" + }, + "splash_text": { + "file": "ui/ui_art_assets_common.json", + "type": "custom" + }, + "title_panel_pocket": { + "file": "ui/ui_art_assets_common.json", + "type": "panel", + "children": [ + "title_image", + "splash_text" + ] + }, + "title_panel_pocket/title_image": { + "file": "ui/ui_art_assets_common.json", + "type": "image", + "extend": { + "name": "title_image", + "namespace": "common_art" + } + }, + "title_panel_pocket/splash_text": { + "file": "ui/ui_art_assets_common.json", + "type": "custom", + "extend": { + "name": "splash_text", + "namespace": "common_art" + } + }, + "title_panel_win10": { + "file": "ui/ui_art_assets_common.json", + "type": "panel", + "children": [ + "title_image", + "splash_text" + ] + }, + "title_panel_win10/title_image": { + "file": "ui/ui_art_assets_common.json", + "type": "image", + "extend": { + "name": "title_image", + "namespace": "common_art" + } + }, + "title_panel_win10/splash_text": { + "file": "ui/ui_art_assets_common.json", + "type": "custom", + "extend": { + "name": "splash_text", + "namespace": "common_art" + } + }, + "title_panel_osx": { + "file": "ui/ui_art_assets_common.json", + "type": "panel", + "children": [ + "title_image", + "splash_text" + ] + }, + "title_panel_osx/title_image": { + "file": "ui/ui_art_assets_common.json", + "type": "image", + "extend": { + "name": "title_image", + "namespace": "common_art" + } + }, + "title_panel_osx/splash_text": { + "file": "ui/ui_art_assets_common.json", + "type": "custom", + "extend": { + "name": "splash_text", + "namespace": "common_art" + } + }, + "title_panel_edu_desktop": { + "file": "ui/ui_art_assets_common.json", + "type": "panel", + "children": [ + "banner_control", + "title_control" + ] + }, + "title_panel_edu_desktop/banner_control": { + "file": "ui/ui_art_assets_common.json", + "type": "panel", + "children": [ + "banner", + "drop_shadow" + ] + }, + "title_panel_edu_desktop/banner_control/banner": { + "file": "ui/ui_art_assets_common.json", + "type": "image" + }, + "title_panel_edu_desktop/banner_control/drop_shadow": { + "file": "ui/ui_art_assets_common.json", + "type": "image" + }, + "title_panel_edu_desktop/title_control": { + "file": "ui/ui_art_assets_common.json", + "type": "panel", + "children": [ + "title_image_edu", + "splash_text" + ] + }, + "title_panel_edu_desktop/title_control/title_image_edu": { + "file": "ui/ui_art_assets_common.json", + "type": "image", + "extend": { + "name": "title_image_edu", + "namespace": "common_art" + } + }, + "title_panel_edu_desktop/title_control/splash_text": { + "file": "ui/ui_art_assets_common.json", + "type": "custom", + "extend": { + "name": "splash_text", + "namespace": "common_art" + } + }, + "title_panel_edu_mobile": { + "file": "ui/ui_art_assets_common.json", + "type": "panel", + "children": [ + "title_control" + ] + }, + "title_panel_edu_mobile/title_control": { + "file": "ui/ui_art_assets_common.json", + "type": "panel", + "children": [ + "title_image_edu", + "splash_text" + ] + }, + "title_panel_edu_mobile/title_control/title_image_edu": { + "file": "ui/ui_art_assets_common.json", + "type": "image", + "extend": { + "name": "title_image_edu", + "namespace": "common_art" + } + }, + "title_panel_edu_mobile/title_control/splash_text": { + "file": "ui/ui_art_assets_common.json", + "type": "custom", + "extend": { + "name": "splash_text", + "namespace": "common_art" + } + }, + "title_panel_content": { + "file": "ui/ui_art_assets_common.json", + "type": "panel" + }, + "start_title_panel_content": { + "file": "ui/ui_art_assets_common.json", + "type": "panel" + }, + "pause_logo_panel": { + "file": "ui/ui_art_assets_common.json", + "type": "input_panel", + "children": [ + "logo" + ] + }, + "pause_logo_panel/logo": { + "file": "ui/ui_art_assets_common.json", + "type": "unknown" + } + }, + "common": { + "empty_panel": { + "file": "ui/ui_common.json", + "type": "panel" + }, + "vertical_padding_8px": { + "file": "ui/ui_common.json", + "type": "panel" + }, + "horizontal_padding_2px": { + "file": "ui/ui_common.json", + "type": "panel" + }, + "empty_image": { + "file": "ui/ui_common.json", + "type": "image" + }, + "horizontal_stack_panel": { + "file": "ui/ui_common.json", + "type": "stack_panel" + }, + "vertical_stack_panel": { + "file": "ui/ui_common.json", + "type": "stack_panel" + }, + "vert_stack_centering_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "stack_content" + ] + }, + "vert_stack_centering_panel/stack_content": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "button": { + "file": "ui/ui_common.json", + "type": "button" + }, + "screen_header_title_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "store_header_title" + ] + }, + "screen_header_title_panel/store_header_title": { + "file": "ui/ui_common.json", + "type": "label" + }, + "back_button": { + "file": "ui/ui_common.json", + "type": "button", + "extend": { + "name": "no_background_content_button", + "namespace": "common_buttons" + } + }, + "back_title_button": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "children": [ + "panel1", + "padding1", + "panel2" + ] + }, + "back_title_button/panel1": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "button" + ] + }, + "back_title_button/panel1/button": { + "file": "ui/ui_common.json", + "type": "button", + "extend": { + "name": "back_button", + "namespace": "common" + } + }, + "back_title_button/padding1": { + "file": "ui/ui_common.json", + "type": "panel" + }, + "back_title_button/panel2": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "label" + ] + }, + "back_title_button/panel2/label": { + "file": "ui/ui_common.json", + "type": "label" + }, + "chevron_image": { + "file": "ui/ui_common.json", + "type": "image" + }, + "back_button_content": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "children": [ + "chevron_panel", + "padding1", + "label_panel" + ] + }, + "back_button_content/chevron_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "left_chevron" + ] + }, + "back_button_content/chevron_panel/left_chevron": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "chevron_image", + "namespace": "common" + } + }, + "back_button_content/padding1": { + "file": "ui/ui_common.json", + "type": "panel" + }, + "back_button_content/label_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "label" + ] + }, + "back_button_content/label_panel/label": { + "file": "ui/ui_common.json", + "type": "label", + "extend": { + "name": "new_ui_binding_button_label", + "namespace": "common_buttons" + } + }, + "label_hover": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "hover" + ] + }, + "label_hover/hover": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "tts_activate_sibling": { + "file": "ui/ui_common.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "pressed", + "hover" + ] + }, + "tts_activate_sibling/default": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "tts_activate_sibling/pressed": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "label_hover", + "namespace": "common" + } + }, + "tts_activate_sibling/hover": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "label_hover", + "namespace": "common" + } + }, + "back_title_button_content": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "children": [ + "padding1", + "chevron_panel", + "padding2" + ] + }, + "back_title_button_content/padding1": { + "file": "ui/ui_common.json", + "type": "panel" + }, + "back_title_button_content/chevron_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "left_chevron" + ] + }, + "back_title_button_content/chevron_panel/left_chevron": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "chevron_image", + "namespace": "common" + } + }, + "back_title_button_content/padding2": { + "file": "ui/ui_common.json", + "type": "panel" + }, + "toggle_visuals": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "unchecked", + "checked", + "unchecked_hover", + "checked_hover", + "unchecked_locked", + "checked_locked", + "unchecked_locked_hover", + "checked_locked_hover" + ] + }, + "toggle_visuals/unchecked": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "toggle_visuals/checked": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "toggle_visuals/unchecked_hover": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "toggle_visuals/checked_hover": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "toggle_visuals/unchecked_locked": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "toggle_visuals/checked_locked": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "toggle_visuals/unchecked_locked_hover": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "toggle_visuals/checked_locked_hover": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "toggle": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "toggle_visuals", + "namespace": "common" + } + }, + "radio_toggle": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "toggle", + "namespace": "common" + } + }, + "checkbox": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "toggle", + "namespace": "common" + } + }, + "checkbox_image": { + "file": "ui/ui_common.json", + "type": "image" + }, + "checked_image": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "checkbox_image", + "namespace": "common" + } + }, + "unchecked_image": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "checkbox_image", + "namespace": "common" + } + }, + "checked_hover_image": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "checkbox_image", + "namespace": "common" + } + }, + "unchecked_hover_image": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "checkbox_image", + "namespace": "common" + } + }, + "rotating_text": { + "file": "ui/ui_common.json", + "type": "carousel_label" + }, + "button_text": { + "file": "ui/ui_common.json", + "type": "label" + }, + "toggle_state_template": { + "file": "ui/ui_common.json", + "type": "image" + }, + "new_button_label": { + "file": "ui/ui_common.json", + "type": "label" + }, + "checkbox_checked_state": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "toggle_state_template", + "namespace": "common" + } + }, + "checkbox_unchecked_state": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "toggle_state_template", + "namespace": "common" + } + }, + "checkbox_checked_hover_state": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "checkbox_checked_state", + "namespace": "common" + } + }, + "checkbox_unchecked_hover_state": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "checkbox_unchecked_state", + "namespace": "common" + } + }, + "checkbox_checked_locked_state": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "checkbox_checked_state", + "namespace": "common" + } + }, + "checkbox_unchecked_locked_state": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "toggle_state_template", + "namespace": "common" + } + }, + "radio_toggle_checked_state": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "checkbox_unchecked_state", + "namespace": "common" + } + }, + "radio_toggle_unchecked_state": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "checkbox_unchecked_state", + "namespace": "common" + } + }, + "radio_toggle_checked_hover_state": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "toggle_state_template", + "namespace": "common" + } + }, + "radio_toggle_unchecked_hover_state": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "checkbox_unchecked_hover_state", + "namespace": "common" + } + }, + "radio_toggle_checked_locked_state": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "toggle_state_template", + "namespace": "common" + } + }, + "radio_toggle_unchecked_locked_state": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "checkbox_unchecked_locked_state", + "namespace": "common" + } + }, + "slider_button_state": { + "file": "ui/ui_common.json", + "type": "image" + }, + "slider_button_layout": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "slider_button_state", + "namespace": "common" + } + }, + "slider_button_hover_layout": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "slider_button_state", + "namespace": "common" + } + }, + "slider_button_locked_layout": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "slider_button_state", + "namespace": "common" + } + }, + "slider_button_indent_layout": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "slider_button_state", + "namespace": "common" + } + }, + "slider_box": { + "file": "ui/ui_common.json", + "type": "slider_box", + "children": [ + "default", + "hover", + "indent", + "locked" + ] + }, + "slider_box/default": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "slider_box/hover": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "slider_box/indent": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "slider_box/locked": { + "file": "ui/ui_common.json", + "type": "unknown", + "children": [ + "transparent_grey" + ] + }, + "slider_box/locked/transparent_grey": { + "file": "ui/ui_common.json", + "type": "image" + }, + "slider_background": { + "file": "ui/ui_common.json", + "type": "image" + }, + "slider_background_hover": { + "file": "ui/ui_common.json", + "type": "image" + }, + "slider_progress": { + "file": "ui/ui_common.json", + "type": "image" + }, + "slider_progress_hover": { + "file": "ui/ui_common.json", + "type": "image" + }, + "slider_border": { + "file": "ui/ui_common.json", + "type": "image" + }, + "slider_bar_default": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "slider_border", + "namespace": "common" + }, + "children": [ + "sizing_panel", + "transparent_grey" + ] + }, + "slider_bar_default/sizing_panel": { + "file": "ui/ui_common.json", + "type": "panel" + }, + "slider_bar_default/transparent_grey": { + "file": "ui/ui_common.json", + "type": "image" + }, + "slider_bar_hover": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "slider_bar_default", + "namespace": "common" + } + }, + "slider_step": { + "file": "ui/ui_common.json", + "type": "image" + }, + "slider_step_hover": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "slider_step", + "namespace": "common" + } + }, + "slider_step_progress": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "slider_step", + "namespace": "common" + } + }, + "slider_step_progress_hover": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "slider_step", + "namespace": "common" + } + }, + "slider": { + "file": "ui/ui_common.json", + "type": "slider", + "children": [ + "slider_box", + "slider_bar_default", + "slider_bar_hover" + ] + }, + "slider/slider_box": { + "file": "ui/ui_common.json", + "type": "slider_box", + "extend": { + "name": "slider_box", + "namespace": "common" + } + }, + "slider/slider_bar_default": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "slider_bar_default", + "namespace": "common" + } + }, + "slider/slider_bar_hover": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "slider_bar_hover", + "namespace": "common" + } + }, + "dropdown_background": { + "file": "ui/ui_common.json", + "type": "image" + }, + "dropdown": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "dropdown_content" + ] + }, + "dropdown/dropdown_content": { + "file": "ui/ui_common.json", + "type": "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": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "dropdown_no_scrollpanel": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "dropdown", + "namespace": "common" + } + }, + "square_image_border_white": { + "file": "ui/ui_common.json", + "type": "image" + }, + "focus_border_white": { + "file": "ui/ui_common.json", + "type": "image" + }, + "focus_border_yellow": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "focus_border_black": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "non_interact_focus_border": { + "file": "ui/ui_common.json", + "type": "image" + }, + "non_interact_focus_border_button": { + "file": "ui/ui_common.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed", + "content" + ] + }, + "non_interact_focus_border_button/default": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "non_interact_focus_border_button/hover": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "non_interact_focus_border_button/pressed": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "non_interact_focus_border_button/content": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "tts_label_focus_wrapper": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "label", + "focus_border" + ] + }, + "tts_label_focus_wrapper/label": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "tts_label_focus_wrapper/focus_border": { + "file": "ui/ui_common.json", + "type": "button", + "extend": { + "name": "non_interact_focus_border_button", + "namespace": "common" + } + }, + "default_indent": { + "file": "ui/ui_common.json", + "type": "image" + }, + "edit_box_indent": { + "file": "ui/ui_common.json", + "type": "image" + }, + "edit_box_indent_hover": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "edit_box_indent", + "namespace": "common" + } + }, + "transparent_edit_box_indent": { + "file": "ui/ui_common.json", + "type": "image" + }, + "transparent_edit_box_indent_hover": { + "file": "ui/ui_common.json", + "type": "image" + }, + "text_edit_box_label": { + "file": "ui/ui_common.json", + "type": "label" + }, + "text_edit_box_place_holder_label": { + "file": "ui/ui_common.json", + "type": "label" + }, + "text_magnifying_glass_image": { + "file": "ui/ui_common.json", + "type": "image" + }, + "text_close_X_button_image": { + "file": "ui/ui_common.json", + "type": "image" + }, + "text_close_X_button_image_hover": { + "file": "ui/ui_common.json", + "type": "image" + }, + "clear_text_button": { + "file": "ui/ui_common.json", + "type": "button", + "children": [ + "default", + "hover", + "pressed" + ] + }, + "clear_text_button/default": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "text_close_X_button_image", + "namespace": "common" + } + }, + "clear_text_button/hover": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "text_close_X_button_image_hover", + "namespace": "common" + } + }, + "clear_text_button/pressed": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "text_close_X_button_image_hover", + "namespace": "common" + } + }, + "text_edit_box": { + "file": "ui/ui_common.json", + "type": "edit_box", + "children": [ + "centering_panel", + "locked", + "default", + "hover", + "pressed" + ] + }, + "text_edit_box/centering_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "clipper_panel" + ] + }, + "text_edit_box/centering_panel/clipper_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "magnifying_glass", + "clear_text_button_panel", + "visibility_panel" + ] + }, + "text_edit_box/centering_panel/clipper_panel/magnifying_glass": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "text_magnifying_glass_image", + "namespace": "common" + } + }, + "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "clear_text_button" + ] + }, + "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel/clear_text_button": { + "file": "ui/ui_common.json", + "type": "button", + "extend": { + "name": "clear_text_button", + "namespace": "common" + } + }, + "text_edit_box/centering_panel/clipper_panel/visibility_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "place_holder_control" + ] + }, + "text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "text_edit_box/locked": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "edit_box_indent" + ] + }, + "text_edit_box/locked/edit_box_indent": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "text_edit_box/default": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "text_edit_box/hover": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "text_edit_box/pressed": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "text_edit_box_scrolling_content": { + "file": "ui/ui_common.json", + "type": "input_panel" + }, + "scrollable_text_edit_box": { + "file": "ui/ui_common.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + }, + "children": [ + "centering_panel", + "locked", + "default", + "hover", + "pressed" + ] + }, + "scrollable_text_edit_box/centering_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "clipper_panel" + ] + }, + "scrollable_text_edit_box/centering_panel/clipper_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "text_edit_text_control", + "visibility_panel" + ] + }, + "scrollable_text_edit_box/centering_panel/clipper_panel/text_edit_text_control": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "place_holder_control" + ] + }, + "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "scrollable_text_edit_box/locked": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "edit_box_indent" + ] + }, + "scrollable_text_edit_box/locked/edit_box_indent": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "scrollable_text_edit_box/default": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "scrollable_text_edit_box/hover": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "scrollable_text_edit_box/pressed": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "transparent_text_edit_box": { + "file": "ui/ui_common.json", + "type": "edit_box", + "children": [ + "clipper_panel", + "locked", + "default", + "hover", + "pressed" + ] + }, + "transparent_text_edit_box/clipper_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "visibility_panel" + ] + }, + "transparent_text_edit_box/clipper_panel/visibility_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "place_holder_control" + ] + }, + "transparent_text_edit_box/clipper_panel/visibility_panel/place_holder_control": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "transparent_text_edit_box/locked": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "edit_box_indent" + ] + }, + "transparent_text_edit_box/locked/edit_box_indent": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "transparent_text_edit_box/default": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "transparent_text_edit_box/hover": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "transparent_text_edit_box/pressed": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "multiline_text_edit_box": { + "file": "ui/ui_common.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "scrollable_multiline_text_edit_box": { + "file": "ui/ui_common.json", + "type": "edit_box", + "extend": { + "name": "scrollable_text_edit_box", + "namespace": "common" + } + }, + "dirt_background": { + "file": "ui/ui_common.json", + "type": "image" + }, + "portal_background": { + "file": "ui/ui_common.json", + "type": "image" + }, + "empty_progress_bar": { + "file": "ui/ui_common.json", + "type": "image" + }, + "filled_progress_bar": { + "file": "ui/ui_common.json", + "type": "image" + }, + "empty_progress_bar_beveled": { + "file": "ui/ui_common.json", + "type": "image" + }, + "progress_bar_beveled_overlay": { + "file": "ui/ui_common.json", + "type": "image" + }, + "filled_progress_bar_for_collections": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "filled_progress_bar", + "namespace": "common" + } + }, + "progress_bar": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "empty_progress_bar", + "filled_progress_bar" + ] + }, + "progress_bar/empty_progress_bar": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "empty_progress_bar", + "namespace": "common" + } + }, + "progress_bar/filled_progress_bar": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "filled_progress_bar", + "namespace": "common" + } + }, + "progress_bar_for_collections": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "progress_bar", + "namespace": "common" + }, + "children": [ + "empty_progress_bar", + "filled_progress_bar_for_collections" + ] + }, + "progress_bar_for_collections/empty_progress_bar": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "empty_progress_bar", + "namespace": "common" + } + }, + "progress_bar_for_collections/filled_progress_bar_for_collections": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "filled_progress_bar_for_collections", + "namespace": "common" + } + }, + "horizontal_divider": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "divider_image" + ] + }, + "horizontal_divider/divider_image": { + "file": "ui/ui_common.json", + "type": "image" + }, + "vertical_divider": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "divider_image" + ] + }, + "vertical_divider/divider_image": { + "file": "ui/ui_common.json", + "type": "image" + }, + "underline": { + "file": "ui/ui_common.json", + "type": "image" + }, + "single_line_label": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "label_panel" + ] + }, + "single_line_label/label_panel": { + "file": "ui/ui_common.json", + "type": "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": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "gamepad_helper_icon_description": { + "file": "ui/ui_common.json", + "type": "label" + }, + "gamepad_helper_icon_image": { + "file": "ui/ui_common.json", + "type": "image" + }, + "keyboard_helper_icon_image": { + "file": "ui/ui_common.json", + "type": "image" + }, + "gamepad_helper": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "children": [ + "icon_panel", + "description_panel" + ] + }, + "gamepad_helper/icon_panel": { + "file": "ui/ui_common.json", + "type": "panel" + }, + "gamepad_helper/description_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "desc" + ] + }, + "gamepad_helper/description_panel/desc": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "gamepad_helpers": { + "file": "ui/ui_common.json", + "type": "stack_panel" + }, + "gamepad_helpers_a_and_b": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "children": [ + "gamepad_helper_a", + "control", + "gamepad_helper_b" + ] + }, + "gamepad_helpers_a_and_b/gamepad_helper_a": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_a", + "namespace": "common" + } + }, + "gamepad_helpers_a_and_b/control": { + "file": "ui/ui_common.json", + "type": "panel" + }, + "gamepad_helpers_a_and_b/gamepad_helper_b": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_b", + "namespace": "common" + } + }, + "container_gamepad_helpers": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helpers", + "namespace": "common" + }, + "children": [ + "fill_panel", + "buttons", + "buffer_panel_right" + ] + }, + "container_gamepad_helpers/fill_panel": { + "file": "ui/ui_common.json", + "type": "panel" + }, + "container_gamepad_helpers/buttons": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "children": [ + "gamepad_helper_x", + "gamepad_helper_a", + "gamepad_helper_y", + "gamepad_helper_b" + ] + }, + "container_gamepad_helpers/buttons/gamepad_helper_x": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "container_gamepad_helpers/buttons/gamepad_helper_a": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "container_gamepad_helpers/buttons/gamepad_helper_y": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "container_gamepad_helpers/buttons/gamepad_helper_b": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "container_gamepad_helpers/buffer_panel_right": { + "file": "ui/ui_common.json", + "type": "panel" + }, + "container_gamepad_helpers_pocket": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "container_gamepad_helpers", + "namespace": "common" + } + }, + "gamepad_helper_bumpers": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "gamepad_helper_left_bumper", + "gamepad_helper_right_bumper" + ] + }, + "gamepad_helper_bumpers/gamepad_helper_left_bumper": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_left_bumper", + "namespace": "common" + } + }, + "gamepad_helper_bumpers/gamepad_helper_right_bumper": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_right_bumper", + "namespace": "common" + } + }, + "tabs_left_gamepad_helpers": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "gamepad_helper_left_bumper", + "gamepad_helper_left_trigger" + ] + }, + "tabs_left_gamepad_helpers/gamepad_helper_left_bumper": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_left_bumper", + "namespace": "common" + } + }, + "tabs_left_gamepad_helpers/gamepad_helper_left_trigger": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_left_trigger", + "namespace": "common" + } + }, + "tabs_right_gamepad_helpers": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "gamepad_helper_right_bumper", + "gamepad_helper_right_trigger" + ] + }, + "tabs_right_gamepad_helpers/gamepad_helper_right_bumper": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_right_bumper", + "namespace": "common" + } + }, + "tabs_right_gamepad_helpers/gamepad_helper_right_trigger": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_right_trigger", + "namespace": "common" + } + }, + "container_x_gamepad_helper": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_x_14", + "namespace": "common" + } + }, + "container_y_gamepad_helper": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_y_14", + "namespace": "common" + } + }, + "container_a_gamepad_helper": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_a_14", + "namespace": "common" + } + }, + "container_b_gamepad_helper": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_b_14", + "namespace": "common" + } + }, + "keyboard_helper_description": { + "file": "ui/ui_common.json", + "type": "label" + }, + "keyboard_helper": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "children": [ + "image_centerer", + "centerer" + ] + }, + "keyboard_helper/image_centerer": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "image" + ] + }, + "keyboard_helper/image_centerer/image": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "keyboard_helper_icon_image", + "namespace": "common" + }, + "children": [ + "keyboard_character" + ] + }, + "keyboard_helper/image_centerer/image/keyboard_character": { + "file": "ui/ui_common.json", + "type": "label" + }, + "keyboard_helper/centerer": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "desc" + ] + }, + "keyboard_helper/centerer/desc": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "keyboard_helpers": { + "file": "ui/ui_common.json", + "type": "panel" + }, + "gamepad_icon_button": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "gamepad_helper_icon_image", + "namespace": "common" + } + }, + "gamepad_helper_start": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper", + "namespace": "common" + } + }, + "gamepad_helper_a": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper", + "namespace": "common" + } + }, + "gamepad_helper_a_14": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper", + "namespace": "common" + } + }, + "gamepad_helper_b": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper", + "namespace": "common" + } + }, + "gamepad_helper_b_14": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper", + "namespace": "common" + } + }, + "gamepad_helper_x": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper", + "namespace": "common" + } + }, + "gamepad_helper_x_14": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper", + "namespace": "common" + } + }, + "gamepad_helper_y": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper", + "namespace": "common" + } + }, + "gamepad_helper_y_14": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper", + "namespace": "common" + } + }, + "keyboard_helper_keys": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "keyboard_helper", + "namespace": "common" + } + }, + "gamepad_helper_left_trigger": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper", + "namespace": "common" + } + }, + "gamepad_helper_right_trigger": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper", + "namespace": "common" + } + }, + "keyboard_left_trigger": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "keyboard_helper", + "namespace": "common" + } + }, + "keyboard_right_trigger": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "keyboard_helper", + "namespace": "common" + } + }, + "gamepad_icon_dpad": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "gamepad_helper_icon_image", + "namespace": "common" + } + }, + "gamepad_helper_dpad": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper", + "namespace": "common" + } + }, + "gamepad_helper_dpad_down": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper", + "namespace": "common" + } + }, + "gamepad_helper_dpad_left": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper", + "namespace": "common" + } + }, + "gamepad_helper_dpad_right": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper", + "namespace": "common" + } + }, + "gamepad_helper_dpad_up": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper", + "namespace": "common" + } + }, + "gamepad_icon_thumbstick": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "gamepad_helper_icon_image", + "namespace": "common" + } + }, + "gamepad_helper_thumbstick": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper", + "namespace": "common" + } + }, + "gamepad_helper_thumbstick_right": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper", + "namespace": "common" + } + }, + "gamepad_helper_thumbstick_left": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper", + "namespace": "common" + } + }, + "gamepad_helper_left_bumper": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper", + "namespace": "common" + } + }, + "gamepad_helper_right_bumper": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper", + "namespace": "common" + } + }, + "dialog_background_common": { + "file": "ui/ui_common.json", + "type": "image" + }, + "dialog_background_hollow_common": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "dialog_background_common", + "namespace": "common" + }, + "children": [ + "control" + ] + }, + "dialog_background_hollow_common/control": { + "file": "ui/ui_common.json", + "type": "image" + }, + "dialog_background_opaque": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "dialog_background_common", + "namespace": "common" + } + }, + "dialog_background_hollow_1": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_common", + "namespace": "common" + } + }, + "dialog_background_hollow_2": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_common", + "namespace": "common" + } + }, + "dialog_background_hollow_3": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_common", + "namespace": "common" + } + }, + "dialog_background_hollow_4": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_common", + "namespace": "common" + } + }, + "dialog_background_hollow_4_thin": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_common", + "namespace": "common" + } + }, + "dialog_background_hollow_5": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_common", + "namespace": "common" + } + }, + "dialog_background_hollow_6": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_common", + "namespace": "common" + } + }, + "dialog_background_hollow_7": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_common", + "namespace": "common" + } + }, + "dialog_background_hollow_8": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_common", + "namespace": "common" + } + }, + "dialog_divider": { + "file": "ui/ui_common.json", + "type": "image" + }, + "normal_button": { + "file": "ui/ui_common.json", + "type": "image" + }, + "normal_stroke_button": { + "file": "ui/ui_common.json", + "type": "image" + }, + "section_heading_label": { + "file": "ui/ui_common.json", + "type": "label" + }, + "center_fold": { + "file": "ui/ui_common.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "center_bg" + ] + }, + "center_fold/center_bg": { + "file": "ui/ui_common.json", + "type": "image" + }, + "section_divider": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "children": [ + "padding1", + "divider_parent", + "padding2" + ] + }, + "section_divider/padding1": { + "file": "ui/ui_common.json", + "type": "panel" + }, + "section_divider/divider_parent": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "divider" + ] + }, + "section_divider/divider_parent/divider": { + "file": "ui/ui_common.json", + "type": "image" + }, + "section_divider/padding2": { + "file": "ui/ui_common.json", + "type": "panel" + }, + "minecraftTenLabel": { + "file": "ui/ui_common.json", + "type": "label" + }, + "close_button_image": { + "file": "ui/ui_common.json", + "type": "image" + }, + "close_button_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "close_button_image" + ] + }, + "close_button_panel/close_button_image": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "close_button_image", + "namespace": "common" + } + }, + "close_button": { + "file": "ui/ui_common.json", + "type": "button", + "children": [ + "default", + "hover", + "pressed" + ] + }, + "close_button/default": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "close_button_panel", + "namespace": "common" + } + }, + "close_button/hover": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "close_button_panel", + "namespace": "common" + } + }, + "close_button/pressed": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "close_button_panel", + "namespace": "common" + } + }, + "close_button_grey_bg": { + "file": "ui/ui_common.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "close_button_grey_bg/default": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "close_button_panel", + "namespace": "common" + } + }, + "close_button_grey_bg/hover": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "close_button_panel", + "namespace": "common" + } + }, + "close_button_grey_bg/pressed": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "close_button_panel", + "namespace": "common" + } + }, + "close_button_high_contrast": { + "file": "ui/ui_common.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "common" + }, + "children": [ + "background", + "default", + "hover", + "pressed" + ] + }, + "close_button_high_contrast/background": { + "file": "ui/ui_common.json", + "type": "image" + }, + "close_button_high_contrast/default": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "close_button_panel", + "namespace": "common" + } + }, + "close_button_high_contrast/hover": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "close_button_panel", + "namespace": "common" + } + }, + "close_button_high_contrast/pressed": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "close_button_panel", + "namespace": "common" + } + }, + "compact_close_button": { + "file": "ui/ui_common.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "compact_close_button/default": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "close_button_panel", + "namespace": "common" + } + }, + "compact_close_button/hover": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "close_button_panel", + "namespace": "common" + } + }, + "compact_close_button/pressed": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "close_button_panel", + "namespace": "common" + } + }, + "light_close_button": { + "file": "ui/ui_common.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "light_close_button/default": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "close_button_panel", + "namespace": "common" + } + }, + "light_close_button/hover": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "close_button_panel", + "namespace": "common" + } + }, + "light_close_button/pressed": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "close_button_panel", + "namespace": "common" + } + }, + "help_button": { + "file": "ui/ui_common.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "help_button/default": { + "file": "ui/ui_common.json", + "type": "image" + }, + "help_button/hover": { + "file": "ui/ui_common.json", + "type": "image" + }, + "help_button/pressed": { + "file": "ui/ui_common.json", + "type": "image" + }, + "cell_image": { + "file": "ui/ui_common.json", + "type": "image" + }, + "cell_image_selected": { + "file": "ui/ui_common.json", + "type": "image" + }, + "cell_image_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "cell_image", + "cell_image_selected" + ] + }, + "cell_image_panel/cell_image": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "cell_image", + "namespace": "common" + } + }, + "cell_image_panel/cell_image_selected": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "cell_image_selected", + "namespace": "common" + } + }, + "cell_overlay": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "highlight_slot": { + "file": "ui/ui_common.json", + "type": "image" + }, + "white_border_slot": { + "file": "ui/ui_common.json", + "type": "image" + }, + "progressive_select_progress_bar": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "stack_progress_bar_down" + ] + }, + "progressive_select_progress_bar/stack_progress_bar_down": { + "file": "ui/ui_common.json", + "type": "image", + "children": [ + "progressive_select_progress_bar", + "progressive_select_text" + ] + }, + "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_progress_bar": { + "file": "ui/ui_common.json", + "type": "image" + }, + "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_text": { + "file": "ui/ui_common.json", + "type": "label" + }, + "stack_splitting_overlay": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "classic_stack_splitting_overlay", + "pocket_stack_splitting_overlay" + ] + }, + "stack_splitting_overlay/classic_stack_splitting_overlay": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "stack_splitting_bar" + ] + }, + "stack_splitting_overlay/classic_stack_splitting_overlay/stack_splitting_bar": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "inventory_hold_icon_holding", + "namespace": "common" + } + }, + "stack_splitting_overlay/pocket_stack_splitting_overlay": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "stack_splitting_bar" + ] + }, + "stack_splitting_overlay/pocket_stack_splitting_overlay/stack_splitting_bar": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "inventory_hold_icon_holding", + "namespace": "common" + } + }, + "inventory_hold_icon_holding": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "progressive_down", + "progressive_up", + "progressive_left_side", + "progressive_right_side" + ] + }, + "inventory_hold_icon_holding/progressive_down": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "progressive_select_progress_bar", + "namespace": "common" + } + }, + "inventory_hold_icon_holding/progressive_up": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "progressive_select_progress_bar", + "namespace": "common" + } + }, + "inventory_hold_icon_holding/progressive_left_side": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "progressive_select_progress_bar", + "namespace": "common" + } + }, + "inventory_hold_icon_holding/progressive_right_side": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "progressive_select_progress_bar", + "namespace": "common" + } + }, + "inventory_hold_icon_release": { + "file": "ui/ui_common.json", + "type": "custom" + }, + "highlight_slot_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "highlight", + "white_border" + ] + }, + "highlight_slot_panel/highlight": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "highlight_slot", + "namespace": "common" + }, + "children": [ + "hover_text" + ] + }, + "highlight_slot_panel/highlight/hover_text": { + "file": "ui/ui_common.json", + "type": "custom", + "extend": { + "name": "hover_text", + "namespace": "common" + } + }, + "highlight_slot_panel/white_border": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "white_border_slot", + "namespace": "common" + } + }, + "pocket_ui_highlight_slot": { + "file": "ui/ui_common.json", + "type": "image" + }, + "hover_text": { + "file": "ui/ui_common.json", + "type": "custom" + }, + "screen_background": { + "file": "ui/ui_common.json", + "type": "image" + }, + "stack_count_label": { + "file": "ui/ui_common.json", + "type": "label" + }, + "durability_bar": { + "file": "ui/ui_common.json", + "type": "custom" + }, + "durability_bar_grabbed": { + "file": "ui/ui_common.json", + "type": "custom", + "extend": { + "name": "durability_bar", + "namespace": "common" + } + }, + "storage_bar": { + "file": "ui/ui_common.json", + "type": "custom" + }, + "storage_bar_grabbed": { + "file": "ui/ui_common.json", + "type": "custom", + "extend": { + "name": "storage_bar", + "namespace": "common" + } + }, + "item_renderer": { + "file": "ui/ui_common.json", + "type": "custom" + }, + "filtered_item_renderer": { + "file": "ui/ui_common.json", + "type": "custom" + }, + "flying_item_renderer": { + "file": "ui/ui_common.json", + "type": "custom" + }, + "selected_item_details": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "item_panel_image" + ] + }, + "selected_item_details/item_panel_image": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "item_panel_image", + "namespace": "common" + } + }, + "item_panel_image": { + "file": "ui/ui_common.json", + "type": "image", + "children": [ + "item_text_label" + ] + }, + "item_panel_image/item_text_label": { + "file": "ui/ui_common.json", + "type": "label", + "extend": { + "name": "item_text_label", + "namespace": "common" + } + }, + "item_text_label": { + "file": "ui/ui_common.json", + "type": "label" + }, + "selected_item_details_factory": { + "file": "ui/ui_common.json", + "type": "factory" + }, + "item_lock_notification": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "notification_background_image" + ] + }, + "item_lock_notification/notification_background_image": { + "file": "ui/ui_common.json", + "type": "image", + "children": [ + "notification_text_label" + ] + }, + "item_lock_notification/notification_background_image/notification_text_label": { + "file": "ui/ui_common.json", + "type": "label" + }, + "item_lock_notification_factory": { + "file": "ui/ui_common.json", + "type": "factory" + }, + "layout_toggle_content": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "image", + "icon" + ] + }, + "layout_toggle_content/image": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "layout_toggle_content/icon": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "layout_template_toggle": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "light_template_toggle", + "namespace": "common_toggles" + } + }, + "layout_toggle": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "light_image_toggle", + "namespace": "common_toggles" + } + }, + "creative_layout_toggle": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "layout_toggle", + "namespace": "common" + } + }, + "recipe_book_layout_toggle": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "layout_toggle", + "namespace": "common" + } + }, + "survival_layout_toggle": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "layout_toggle", + "namespace": "common" + } + }, + "furnace_recipe_book_layout_toggle": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "layout_toggle", + "namespace": "common" + } + }, + "furnace_survival_layout_toggle": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "layout_toggle", + "namespace": "common" + } + }, + "crafting_root_input_panel": { + "file": "ui/ui_common.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + } + }, + "toolbar_background_image": { + "file": "ui/ui_common.json", + "type": "image" + }, + "empty_panel_size_y_0": { + "file": "ui/ui_common.json", + "type": "panel" + }, + "scroll_background_and_viewport": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "background", + "scrolling_view_port" + ] + }, + "scroll_background_and_viewport/background": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "scroll_background_and_viewport/scrolling_view_port": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "scrolling_content" + ] + }, + "scroll_background_and_viewport/scrolling_view_port/scrolling_content": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "scroll_bar_and_track": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "stack_panel" + ] + }, + "scroll_bar_and_track/stack_panel": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "children": [ + "empty_panel_0", + "panel", + "empty_panel_1" + ] + }, + "scroll_bar_and_track/stack_panel/empty_panel_0": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "scroll_bar_and_track/stack_panel/panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "centered_panel" + ] + }, + "scroll_bar_and_track/stack_panel/panel/centered_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "track", + "scroll_box" + ] + }, + "scroll_bar_and_track/stack_panel/panel/centered_panel/track": { + "file": "ui/ui_common.json", + "type": "scroll_track", + "extend": { + "name": "scrollbar_track", + "namespace": "common" + } + }, + "scroll_bar_and_track/stack_panel/panel/centered_panel/scroll_box": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "scroll_box", + "namespace": "common" + } + }, + "scroll_bar_and_track/stack_panel/empty_panel_1": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "scroll_view_control": { + "file": "ui/ui_common.json", + "type": "scroll_view", + "children": [ + "stack_panel", + "panel" + ] + }, + "scroll_view_control/stack_panel": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "children": [ + "background_and_viewport", + "bar_and_track" + ] + }, + "scroll_view_control/stack_panel/background_and_viewport": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "scroll_background_and_viewport", + "namespace": "common" + } + }, + "scroll_view_control/stack_panel/bar_and_track": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "scroll_bar_and_track", + "namespace": "common" + } + }, + "scroll_view_control/panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "background_and_viewport", + "bar_and_track" + ] + }, + "scroll_view_control/panel/background_and_viewport": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "scroll_background_and_viewport", + "namespace": "common" + } + }, + "scroll_view_control/panel/bar_and_track": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "scroll_bar_and_track", + "namespace": "common" + } + }, + "scrollbar_track": { + "file": "ui/ui_common.json", + "type": "scroll_track", + "children": [ + "bar_indent" + ] + }, + "scrollbar_track/bar_indent": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "scroll_box": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "box" + ] + }, + "scroll_box/box": { + "file": "ui/ui_common.json", + "type": "scrollbar_box", + "children": [ + "mouse_box", + "touch_box" + ] + }, + "scroll_box/box/mouse_box": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "scroll_box/box/touch_box": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "scroll_box_indent": { + "file": "ui/ui_common.json", + "type": "image" + }, + "scrollbar_box_image": { + "file": "ui/ui_common.json", + "type": "image" + }, + "touch_scrollbar_box_image": { + "file": "ui/ui_common.json", + "type": "image" + }, + "new_touch_scrollbar_box_image": { + "file": "ui/ui_common.json", + "type": "image" + }, + "container_touch_scrollbar_box_image": { + "file": "ui/ui_common.json", + "type": "image" + }, + "scroll_indent_image": { + "file": "ui/ui_common.json", + "type": "image" + }, + "scrolling_panel_base": { + "file": "ui/ui_common.json", + "type": "input_panel" + }, + "scrolling_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "scroll_touch", + "scroll_mouse" + ] + }, + "scrolling_panel/scroll_touch": { + "file": "ui/ui_common.json", + "type": "input_panel", + "extend": { + "name": "scrolling_panel_base", + "namespace": "common" + } + }, + "scrolling_panel/scroll_mouse": { + "file": "ui/ui_common.json", + "type": "input_panel", + "extend": { + "name": "scrolling_panel_base", + "namespace": "common" + } + }, + "scrolling_panel_with_offset": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "mapped_scroll_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "container_scroll_panel", + "namespace": "common" + } + }, + "scroll_panel_pocket": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "mapped_scroll_panel", + "namespace": "common" + } + }, + "container_slot_button_prototype": { + "file": "ui/ui_common.json", + "type": "button", + "children": [ + "hover" + ] + }, + "container_slot_button_prototype/hover": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "no_coalesce_container_slot_button": { + "file": "ui/ui_common.json", + "type": "button", + "extend": { + "name": "container_slot_button_prototype", + "namespace": "common" + } + }, + "pocket_ui_container_slot": { + "file": "ui/ui_common.json", + "type": "button", + "children": [ + "hover" + ] + }, + "pocket_ui_container_slot/hover": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "highlight_square" + ] + }, + "pocket_ui_container_slot/hover/highlight_square": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "pocket_ui_highlight_slot", + "namespace": "common" + } + }, + "slot_selected": { + "file": "ui/ui_common.json", + "type": "image", + "children": [ + "progress_bar_release" + ] + }, + "slot_selected/progress_bar_release": { + "file": "ui/ui_common.json", + "type": "custom", + "extend": { + "name": "inventory_hold_icon_release", + "namespace": "common" + } + }, + "container_item": { + "file": "ui/ui_common.json", + "type": "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": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "item", + "durability_bar", + "storage_bar" + ] + }, + "container_item/item_cell/item": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "stack_count_label" + ] + }, + "container_item/item_cell/item/stack_count_label": { + "file": "ui/ui_common.json", + "type": "label", + "extend": { + "name": "stack_count_label", + "namespace": "common" + } + }, + "container_item/item_cell/durability_bar": { + "file": "ui/ui_common.json", + "type": "custom", + "extend": { + "name": "durability_bar", + "namespace": "common" + } + }, + "container_item/item_cell/storage_bar": { + "file": "ui/ui_common.json", + "type": "custom", + "extend": { + "name": "storage_bar", + "namespace": "common" + } + }, + "container_item/item_cell_overlay_ref": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "container_item/item_selected_image": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "slot_selected", + "namespace": "common" + } + }, + "container_item/item_button_ref": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "container_item/container_item_lock_overlay": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "container_item_lock_overlay", + "namespace": "common" + } + }, + "container_item/item_lock_cell_image": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "item_lock_cell_image", + "namespace": "common" + } + }, + "container_item/bundle_slot_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "bundle_slot_panel", + "namespace": "gameplay" + } + }, + "pocket_ui_container_item": { + "file": "ui/ui_common.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "pocket_ui_large_container_item": { + "file": "ui/ui_common.json", + "type": "input_panel", + "extend": { + "name": "pocket_ui_container_item", + "namespace": "common" + } + }, + "container_item_lock_yellow": { + "file": "ui/ui_common.json", + "type": "image" + }, + "container_item_lock_red": { + "file": "ui/ui_common.json", + "type": "image" + }, + "container_item_lock_overlay": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "container_item_lock_yellow", + "container_item_lock_red" + ] + }, + "container_item_lock_overlay/container_item_lock_yellow": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "container_item_lock_yellow", + "namespace": "common" + } + }, + "container_item_lock_overlay/container_item_lock_red": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "container_item_lock_red", + "namespace": "common" + } + }, + "item_lock_cell_image": { + "file": "ui/ui_common.json", + "type": "image" + }, + "container_grid": { + "file": "ui/ui_common.json", + "type": "grid" + }, + "pocket_container_grid": { + "file": "ui/ui_common.json", + "type": "grid", + "extend": { + "name": "container_grid", + "namespace": "common" + } + }, + "container_scroll_box_image": { + "file": "ui/ui_common.json", + "type": "image" + }, + "container_scroll_bar_side_rails": { + "file": "ui/ui_common.json", + "type": "image" + }, + "container_scrollbar_track": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "rails" + ] + }, + "container_scrollbar_track/rails": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "container_scroll_bar_side_rails", + "namespace": "common" + } + }, + "container_scroll_background_image": { + "file": "ui/ui_common.json", + "type": "image" + }, + "container_scroll_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "scrolling_panel_with_offset", + "namespace": "common" + } + }, + "pocket_ui_highlight_selected_slot": { + "file": "ui/ui_common.json", + "type": "image" + }, + "pocket_hotbar_panel": { + "file": "ui/ui_common.json", + "type": "input_panel", + "children": [ + "bg", + "hotbar_grid" + ] + }, + "pocket_hotbar_panel/bg": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "pocket_hotbar_panel/hotbar_grid": { + "file": "ui/ui_common.json", + "type": "grid", + "extend": { + "name": "container_grid", + "namespace": "common" + } + }, + "drop_item_panel": { + "file": "ui/ui_common.json", + "type": "input_panel" + }, + "pocket_hotbar_and_content_panels": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "children": [ + "pocket_content_panels", + "hotbar_drop_item_panel" + ] + }, + "pocket_hotbar_and_content_panels/pocket_content_panels": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "pocket_content_panels", + "namespace": "common" + } + }, + "pocket_hotbar_and_content_panels/hotbar_drop_item_panel": { + "file": "ui/ui_common.json", + "type": "input_panel", + "extend": { + "name": "drop_item_panel", + "namespace": "common" + }, + "children": [ + "pocket_hotbar_panel" + ] + }, + "pocket_hotbar_and_content_panels/hotbar_drop_item_panel/pocket_hotbar_panel": { + "file": "ui/ui_common.json", + "type": "input_panel", + "extend": { + "name": "pocket_hotbar_panel", + "namespace": "common" + } + }, + "blank_pocket_content_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "pocket_content_panels": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "children": [ + "left_panel", + "offset_panel", + "right_panel" + ] + }, + "pocket_content_panels/left_panel": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "pocket_content_panels/offset_panel": { + "file": "ui/ui_common.json", + "type": "input_panel", + "extend": { + "name": "root_panel", + "namespace": "common" + }, + "children": [ + "center_bg" + ] + }, + "pocket_content_panels/offset_panel/center_bg": { + "file": "ui/ui_common.json", + "type": "image" + }, + "pocket_content_panels/right_panel": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "inventory_selected_icon": { + "file": "ui/ui_common.json", + "type": "custom", + "extend": { + "name": "item_renderer", + "namespace": "common" + } + }, + "inventory_selected_stack_size_text": { + "file": "ui/ui_common.json", + "type": "label" + }, + "inventory_hold_icon": { + "file": "ui/ui_common.json", + "type": "custom" + }, + "inventory_selected_item_lock_overlay": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "container_item_lock_yellow", + "container_item_lock_red" + ] + }, + "inventory_selected_item_lock_overlay/container_item_lock_yellow": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "container_item_lock_yellow", + "namespace": "common" + } + }, + "inventory_selected_item_lock_overlay/container_item_lock_red": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "container_item_lock_red", + "namespace": "common" + } + }, + "inventory_icon_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "selected_item_icon", + "selected_stack_size_text", + "selected_item_lock_overlay", + "hover_text" + ] + }, + "inventory_icon_panel/selected_item_icon": { + "file": "ui/ui_common.json", + "type": "custom", + "extend": { + "name": "inventory_selected_icon", + "namespace": "common" + } + }, + "inventory_icon_panel/selected_stack_size_text": { + "file": "ui/ui_common.json", + "type": "label", + "extend": { + "name": "inventory_selected_stack_size_text", + "namespace": "common" + } + }, + "inventory_icon_panel/selected_item_lock_overlay": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "inventory_selected_item_lock_overlay", + "namespace": "common" + } + }, + "inventory_icon_panel/hover_text": { + "file": "ui/ui_common.json", + "type": "custom", + "extend": { + "name": "hover_text", + "namespace": "common" + } + }, + "inventory_selected_icon_button": { + "file": "ui/ui_common.json", + "type": "button", + "children": [ + "default", + "pressed", + "hover", + "durability_bar_grabbed", + "storage_bar_grabbed" + ] + }, + "inventory_selected_icon_button/default": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "inventory_icon_panel", + "namespace": "common" + } + }, + "inventory_selected_icon_button/pressed": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "inventory_icon_panel", + "namespace": "common" + } + }, + "inventory_selected_icon_button/hover": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "inventory_icon_panel", + "namespace": "common" + } + }, + "inventory_selected_icon_button/durability_bar_grabbed": { + "file": "ui/ui_common.json", + "type": "custom", + "extend": { + "name": "durability_bar_grabbed", + "namespace": "common" + } + }, + "inventory_selected_icon_button/storage_bar_grabbed": { + "file": "ui/ui_common.json", + "type": "custom", + "extend": { + "name": "storage_bar_grabbed", + "namespace": "common" + } + }, + "inventory_take_progress_icon_button": { + "file": "ui/ui_common.json", + "type": "button", + "children": [ + "default", + "pressed", + "hover" + ] + }, + "inventory_take_progress_icon_button/default": { + "file": "ui/ui_common.json", + "type": "custom", + "extend": { + "name": "inventory_hold_icon", + "namespace": "common" + } + }, + "inventory_take_progress_icon_button/pressed": { + "file": "ui/ui_common.json", + "type": "custom", + "extend": { + "name": "inventory_hold_icon", + "namespace": "common" + } + }, + "inventory_take_progress_icon_button/hover": { + "file": "ui/ui_common.json", + "type": "custom", + "extend": { + "name": "inventory_hold_icon", + "namespace": "common" + } + }, + "gamepad_cursor_image": { + "file": "ui/ui_common.json", + "type": "image" + }, + "gamepad_cursor_button": { + "file": "ui/ui_common.json", + "type": "button", + "children": [ + "default", + "pressed", + "hover" + ] + }, + "gamepad_cursor_button/default": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "gamepad_cursor_image", + "namespace": "common" + } + }, + "gamepad_cursor_button/pressed": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "gamepad_cursor_image", + "namespace": "common" + } + }, + "gamepad_cursor_button/hover": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "gamepad_cursor_image", + "namespace": "common" + } + }, + "grid_item_for_inventory": { + "file": "ui/ui_common.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "grid_item_for_hotbar": { + "file": "ui/ui_common.json", + "type": "input_panel", + "extend": { + "name": "container_item", + "namespace": "common" + } + }, + "hotbar_grid_template": { + "file": "ui/ui_common.json", + "type": "grid" + }, + "inventory_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "inventory_grid" + ] + }, + "inventory_panel/inventory_grid": { + "file": "ui/ui_common.json", + "type": "grid" + }, + "inventory_panel_bottom_half": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "inventory_panel" + ] + }, + "inventory_panel_bottom_half/inventory_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "inventory_panel", + "namespace": "common" + } + }, + "inventory_panel_bottom_half_with_label": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "inventory_panel_bottom_half", + "namespace": "common" + }, + "children": [ + "inventory_panel", + "inventory_label" + ] + }, + "inventory_panel_bottom_half_with_label/inventory_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "inventory_panel", + "namespace": "common" + } + }, + "inventory_panel_bottom_half_with_label/inventory_label": { + "file": "ui/ui_common.json", + "type": "label", + "extend": { + "name": "section_heading_label", + "namespace": "common" + } + }, + "common_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "bg_image", + "dialog_divider", + "close_button_holder" + ] + }, + "common_panel/bg_image": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "common_panel/dialog_divider": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "dialog_divider", + "namespace": "common" + } + }, + "common_panel/close_button_holder": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "close", + "compact_close" + ] + }, + "common_panel/close_button_holder/close": { + "file": "ui/ui_common.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "common" + } + }, + "common_panel/close_button_holder/compact_close": { + "file": "ui/ui_common.json", + "type": "button", + "extend": { + "name": "compact_close_button", + "namespace": "common" + } + }, + "root_panel": { + "file": "ui/ui_common.json", + "type": "input_panel" + }, + "input_panel": { + "file": "ui/ui_common.json", + "type": "input_panel" + }, + "base_screen": { + "file": "ui/ui_common.json", + "type": "screen", + "children": [ + "variables_button_mappings_and_controls", + "loading_bars_background" + ] + }, + "base_screen/variables_button_mappings_and_controls": { + "file": "ui/ui_common.json", + "type": "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": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "base_screen/variables_button_mappings_and_controls/safezone_screen_matrix": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "safezone_outer_matrix", + "namespace": "common" + } + }, + "base_screen/variables_button_mappings_and_controls/screen_background": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "full_screen_background", + "namespace": "common_dialogs" + } + }, + "base_screen/loading_bars_background": { + "file": "ui/ui_common.json", + "type": "image", + "children": [ + "loading_bars" + ] + }, + "base_screen/loading_bars_background/loading_bars": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "common_store" + } + }, + "render_below_base_screen": { + "file": "ui/ui_common.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "safezone_buffer": { + "file": "ui/ui_common.json", + "type": "panel" + }, + "top_safezone_vertical_buffer": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "safezone_buffer", + "namespace": "common" + } + }, + "bottom_safezone_vertical_buffer": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "safezone_buffer", + "namespace": "common" + } + }, + "left_safezone_horizontal_buffer": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "safezone_buffer", + "namespace": "common" + } + }, + "right_safezone_horizontal_buffer": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "safezone_buffer", + "namespace": "common" + } + }, + "safe_zone_stack": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "children": [ + "top_outer_control", + "top_inner_control", + "header_bar" + ] + }, + "safe_zone_stack/top_outer_control": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "safe_zone_stack/top_inner_control": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "safe_zone_stack/header_bar": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "safezone_inner_matrix": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "children": [ + "outer_top", + "inner_top", + "safezone_screen_panel", + "inner_bottom", + "outer_bottom" + ] + }, + "safezone_inner_matrix/outer_top": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "top_safezone_vertical_buffer", + "namespace": "common" + }, + "children": [ + "top_side_control" + ] + }, + "safezone_inner_matrix/outer_top/top_side_control": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "safezone_inner_matrix/inner_top": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "top_safezone_vertical_buffer", + "namespace": "common" + }, + "children": [ + "top_side_control" + ] + }, + "safezone_inner_matrix/inner_top/top_side_control": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "safezone_inner_matrix/safezone_screen_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "screen_panel", + "namespace": "common" + } + }, + "safezone_inner_matrix/inner_bottom": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "bottom_safezone_vertical_buffer", + "namespace": "common" + } + }, + "safezone_inner_matrix/outer_bottom": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "bottom_safezone_vertical_buffer", + "namespace": "common" + } + }, + "safezone_outer_matrix": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "children": [ + "outer_left", + "inner_left", + "inner_matrix", + "inner_right", + "outer_right" + ] + }, + "safezone_outer_matrix/outer_left": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "left_safezone_horizontal_buffer", + "namespace": "common" + }, + "children": [ + "outer_left_safe_zone_stack" + ] + }, + "safezone_outer_matrix/outer_left/outer_left_safe_zone_stack": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "safe_zone_stack", + "namespace": "common" + } + }, + "safezone_outer_matrix/inner_left": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "left_safezone_horizontal_buffer", + "namespace": "common" + }, + "children": [ + "inner_left_safe_zone_stack" + ] + }, + "safezone_outer_matrix/inner_left/inner_left_safe_zone_stack": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "safe_zone_stack", + "namespace": "common" + } + }, + "safezone_outer_matrix/inner_matrix": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "safezone_inner_matrix", + "namespace": "common" + } + }, + "safezone_outer_matrix/inner_right": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "right_safezone_horizontal_buffer", + "namespace": "common" + }, + "children": [ + "inner_right_safe_zone_stack" + ] + }, + "safezone_outer_matrix/inner_right/inner_right_safe_zone_stack": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "safe_zone_stack", + "namespace": "common" + } + }, + "safezone_outer_matrix/outer_right": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "right_safezone_horizontal_buffer", + "namespace": "common" + }, + "children": [ + "outer_right_safe_zone_stack" + ] + }, + "safezone_outer_matrix/outer_right/outer_right_safe_zone_stack": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "safe_zone_stack", + "namespace": "common" + } + }, + "bundle_tooltip_wrapper": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "bundle_tooltip_factory_wrapper", + "bundle_touch_tooltip" + ] + }, + "bundle_tooltip_wrapper/bundle_tooltip_factory_wrapper": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "bundle_tooltip_factory_wrapper", + "namespace": "gameplay" + } + }, + "bundle_tooltip_wrapper/bundle_touch_tooltip": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "bundle_touch_tooltip", + "namespace": "gameplay" + } + }, + "screen_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "root_screen_panel", + "additional_screen_content", + "popup_dialog_factory", + "bundle_hover_tooltip" + ] + }, + "screen_panel/root_screen_panel": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "screen_panel/additional_screen_content": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "screen_panel/popup_dialog_factory": { + "file": "ui/ui_common.json", + "type": "factory" + }, + "screen_panel/bundle_hover_tooltip": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "bundle_tooltip_wrapper", + "namespace": "common" + } + }, + "base_screen_empty_panel": { + "file": "ui/ui_common.json", + "type": "panel" + }, + "modal_screen": { + "file": "ui/ui_common.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "realms_error_modal_screen": { + "file": "ui/ui_common.json", + "type": "screen", + "extend": { + "name": "modal_screen", + "namespace": "common" + } + }, + "modal_area_panel_base": { + "file": "ui/ui_common.json", + "type": "input_panel" + }, + "inactive_modal_pane_fade": { + "file": "ui/ui_common.json", + "type": "image" + }, + "inventory_screen_common": { + "file": "ui/ui_common.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "fullscreen_header": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "children": [ + "top_bar", + "child_control" + ] + }, + "fullscreen_header/top_bar": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "top_bar", + "namespace": "common" + }, + "children": [ + "title_stack_panel" + ] + }, + "fullscreen_header/top_bar/title_stack_panel": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "children": [ + "padding1", + "back_button_content_panel", + "padding2" + ] + }, + "fullscreen_header/top_bar/title_stack_panel/padding1": { + "file": "ui/ui_common.json", + "type": "panel" + }, + "fullscreen_header/top_bar/title_stack_panel/back_button_content_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "back_content_panel", + "namespace": "common" + } + }, + "fullscreen_header/top_bar/title_stack_panel/padding2": { + "file": "ui/ui_common.json", + "type": "panel" + }, + "fullscreen_header/child_control": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "back_content_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "back_button" + ] + }, + "back_content_panel/back_button": { + "file": "ui/ui_common.json", + "type": "stack_panel", + "extend": { + "name": "back_title_button", + "namespace": "common" + } + }, + "top_bar": { + "file": "ui/ui_common.json", + "type": "image" + }, + "tooltip_background": { + "file": "ui/ui_common.json", + "type": "image" + }, + "tooltip_button_content": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "tooltip_background", + "namespace": "common" + }, + "children": [ + "tooltip_panel_content" + ] + }, + "tooltip_button_content/tooltip_panel_content": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "static_tooltip_popup_with_image_and_text": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "tooltip_background", + "namespace": "common" + }, + "children": [ + "image_and_text_stack_panel", + "tooltip_chevron" + ] + }, + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel": { + "file": "ui/ui_common.json", + "type": "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": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "tooltip_image_panel" + ] + }, + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel": { + "file": "ui/ui_common.json", + "type": "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": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding": { + "file": "ui/ui_common.json", + "type": "panel" + }, + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text": { + "file": "ui/ui_common.json", + "type": "label" + }, + "static_tooltip_popup_with_image_and_text/tooltip_chevron": { + "file": "ui/ui_common.json", + "type": "image" + }, + "dynamic_tooltip_popup_with_custom_content": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "tooltip_background", + "namespace": "common" + }, + "children": [ + "tooltip_content", + "tooltip_chevron" + ] + }, + "dynamic_tooltip_popup_with_custom_content/tooltip_content": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "dynamic_tooltip_popup_with_custom_content/tooltip_chevron": { + "file": "ui/ui_common.json", + "type": "image" + }, + "dynamic_tooltip_popup_with_image_and_text": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "tooltip_background", + "namespace": "common" + }, + "children": [ + "image_and_text_stack_panel", + "tooltip_chevron" + ] + }, + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel": { + "file": "ui/ui_common.json", + "type": "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": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "tooltip_image_panel" + ] + }, + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel": { + "file": "ui/ui_common.json", + "type": "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": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding": { + "file": "ui/ui_common.json", + "type": "panel" + }, + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text": { + "file": "ui/ui_common.json", + "type": "label" + }, + "dynamic_tooltip_popup_with_image_and_text/tooltip_chevron": { + "file": "ui/ui_common.json", + "type": "image" + }, + "dynamic_tooltip_left": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "dynamic_tooltip_popup_with_image_and_text", + "namespace": "common" + } + }, + "dynamic_tooltip_below": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "dynamic_tooltip_popup_with_image_and_text", + "namespace": "common" + } + }, + "dynamic_custom_tooltip_below": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "dynamic_tooltip_popup_with_custom_content", + "namespace": "common" + } + }, + "dynamic_tooltip": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "above", + "below" + ] + }, + "dynamic_tooltip/above": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "content" + ] + }, + "dynamic_tooltip/above/content": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "dynamic_tooltip_popup_with_image_and_text", + "namespace": "common" + } + }, + "dynamic_tooltip/below": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "content" + ] + }, + "dynamic_tooltip/below/content": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "dynamic_tooltip_below", + "namespace": "common" + } + }, + "legacy_pocket_close_button_default": { + "file": "ui/ui_common.json", + "type": "image" + }, + "legacy_pocket_close_button_pressed": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "legacy_pocket_close_button_default", + "namespace": "common" + } + }, + "legacy_pocket_close_button": { + "file": "ui/ui_common.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "legacy_pocket_close_button/default": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "legacy_pocket_close_button_default", + "namespace": "common" + } + }, + "legacy_pocket_close_button/hover": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "legacy_pocket_close_button_default", + "namespace": "common" + } + }, + "legacy_pocket_close_button/pressed": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "legacy_pocket_close_button_pressed", + "namespace": "common" + } + }, + "info_icon": { + "file": "ui/ui_common.json", + "type": "image" + }, + "error_glyph": { + "file": "ui/ui_common.json", + "type": "image" + }, + "creative_icon": { + "file": "ui/ui_common.json", + "type": "image" + }, + "inventory_icon": { + "file": "ui/ui_common.json", + "type": "image" + }, + "recipe_book_icon": { + "file": "ui/ui_common.json", + "type": "image" + }, + "tab_icon_image": { + "file": "ui/ui_common.json", + "type": "image" + }, + "search_icon": { + "file": "ui/ui_common.json", + "type": "image", + "extend": { + "name": "tab_icon_image", + "namespace": "common" + } + }, + "service_repo_image_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "service_repo_image", + "progress_loading" + ] + }, + "service_repo_image_panel/service_repo_image": { + "file": "ui/ui_common.json", + "type": "image" + }, + "service_repo_image_panel/progress_loading": { + "file": "ui/ui_common.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "common_cycler": { + "file": "ui/ui_common.json", + "type": "unknown" + }, + "image_cycler": { + "file": "ui/ui_common.json", + "type": "image_cycler", + "extend": { + "name": "common_cycler", + "namespace": "common" + } + }, + "text_cycler": { + "file": "ui/ui_common.json", + "type": "label_cycler", + "extend": { + "name": "common_cycler", + "namespace": "common" + } + }, + "squaring_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "squaring_panel" + ] + }, + "squaring_panel/squaring_panel": { + "file": "ui/ui_common.json", + "type": "panel", + "children": [ + "squaring_panel_content" + ] + }, + "squaring_panel/squaring_panel/squaring_panel_content": { + "file": "ui/ui_common.json", + "type": "unknown" + } + }, + "common-classic": { + "button": { + "file": "ui/ui_common_classic.json", + "type": "button" + }, + "button_state_default": { + "file": "ui/ui_common_classic.json", + "type": "image" + }, + "button_state_hover": { + "file": "ui/ui_common_classic.json", + "type": "image", + "extend": { + "name": "button_state_default", + "namespace": "common-classic" + } + }, + "button_state_pressed": { + "file": "ui/ui_common_classic.json", + "type": "image", + "extend": { + "name": "button_state_default", + "namespace": "common-classic" + } + }, + "toggle": { + "file": "ui/ui_common_classic.json", + "type": "panel", + "extend": { + "name": "toggle", + "namespace": "common" + } + }, + "toggle_checked_state": { + "file": "ui/ui_common_classic.json", + "type": "image" + }, + "toggle_unchecked_state": { + "file": "ui/ui_common_classic.json", + "type": "image" + }, + "toggle_checked_hovered_state": { + "file": "ui/ui_common_classic.json", + "type": "panel", + "children": [ + "toggle_checked_state", + "hover" + ] + }, + "toggle_checked_hovered_state/toggle_checked_state": { + "file": "ui/ui_common_classic.json", + "type": "image", + "extend": { + "name": "toggle_checked_state", + "namespace": "common-classic" + } + }, + "toggle_checked_hovered_state/hover": { + "file": "ui/ui_common_classic.json", + "type": "image" + }, + "toggle_unchecked_hovered_state": { + "file": "ui/ui_common_classic.json", + "type": "panel", + "children": [ + "toggle_unchecked_state", + "hover" + ] + }, + "toggle_unchecked_hovered_state/toggle_unchecked_state": { + "file": "ui/ui_common_classic.json", + "type": "image", + "extend": { + "name": "toggle_unchecked_state", + "namespace": "common-classic" + } + }, + "toggle_unchecked_hovered_state/hover": { + "file": "ui/ui_common_classic.json", + "type": "image" + } + }, + "edu_common": { + "light_label": { + "file": "ui/ui_edu_common.json", + "type": "label" + }, + "dark_label": { + "file": "ui/ui_edu_common.json", + "type": "label" + }, + "readable_label": { + "file": "ui/ui_edu_common.json", + "type": "label" + }, + "slider_toggle": { + "file": "ui/ui_edu_common.json", + "type": "toggle", + "extend": { + "name": "option_toggle_control", + "namespace": "settings_common" + } + }, + "trash_default": { + "file": "ui/ui_edu_common.json", + "type": "image" + }, + "trash_hover": { + "file": "ui/ui_edu_common.json", + "type": "image" + }, + "trash_pressed": { + "file": "ui/ui_edu_common.json", + "type": "image" + }, + "photo_trash_button": { + "file": "ui/ui_edu_common.json", + "type": "button", + "children": [ + "default", + "hover", + "pressed" + ] + }, + "photo_trash_button/default": { + "file": "ui/ui_edu_common.json", + "type": "image", + "extend": { + "name": "trash_default", + "namespace": "edu_common" + } + }, + "photo_trash_button/hover": { + "file": "ui/ui_edu_common.json", + "type": "image", + "extend": { + "name": "trash_hover", + "namespace": "edu_common" + } + }, + "photo_trash_button/pressed": { + "file": "ui/ui_edu_common.json", + "type": "image", + "extend": { + "name": "trash_pressed", + "namespace": "edu_common" + } + }, + "download_progress_modal_panel": { + "file": "ui/ui_edu_common.json", + "type": "input_panel", + "extend": { + "name": "input_panel", + "namespace": "common" + }, + "children": [ + "downloading" + ] + }, + "download_progress_modal_panel/downloading": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "modal_progress_panel_with_cancel", + "namespace": "edu_common" + } + }, + "loading_progress_modal_panel": { + "file": "ui/ui_edu_common.json", + "type": "input_panel", + "extend": { + "name": "input_panel", + "namespace": "common" + }, + "children": [ + "loading" + ] + }, + "loading_progress_modal_panel/loading": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "modal_progress_panel_no_button", + "namespace": "edu_common" + } + }, + "modal_cancel_button": { + "file": "ui/ui_edu_common.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "modal_progress_panel_with_cancel": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "children": [ + "common_panel", + "title", + "content", + "cancel_button" + ] + }, + "modal_progress_panel_with_cancel/common_panel": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "modal_progress_panel_with_cancel/title": { + "file": "ui/ui_edu_common.json", + "type": "label" + }, + "modal_progress_panel_with_cancel/content": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "children": [ + "title_panel", + "label", + "progress_loading_bars" + ] + }, + "modal_progress_panel_with_cancel/content/title_panel": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "title_panel", + "namespace": "progress" + } + }, + "modal_progress_panel_with_cancel/content/label": { + "file": "ui/ui_edu_common.json", + "type": "label" + }, + "modal_progress_panel_with_cancel/content/progress_loading_bars": { + "file": "ui/ui_edu_common.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "progress" + } + }, + "modal_progress_panel_with_cancel/cancel_button": { + "file": "ui/ui_edu_common.json", + "type": "button", + "extend": { + "name": "modal_cancel_button", + "namespace": "edu_common" + } + }, + "modal_progress_panel_no_button": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "children": [ + "common_panel", + "content" + ] + }, + "modal_progress_panel_no_button/common_panel": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "modal_progress_panel_no_button/content": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "children": [ + "progress_title_text", + "progress_loading_bars" + ] + }, + "modal_progress_panel_no_button/content/progress_title_text": { + "file": "ui/ui_edu_common.json", + "type": "label", + "extend": { + "name": "progress_title_text", + "namespace": "progress" + } + }, + "modal_progress_panel_no_button/content/progress_loading_bars": { + "file": "ui/ui_edu_common.json", + "type": "image", + "extend": { + "name": "progress_loading_bars", + "namespace": "progress" + } + }, + "apple_animation": { + "file": "ui/ui_edu_common.json", + "type": "image" + }, + "book_animation": { + "file": "ui/ui_edu_common.json", + "type": "image" + }, + "edu_loading_animation": { + "file": "ui/ui_edu_common.json", + "type": "image", + "extend": { + "name": "book_animation", + "namespace": "edu_common" + } + }, + "horizontal_stack_item": { + "file": "ui/ui_edu_common.json", + "type": "panel" + }, + "vertical_stack_item": { + "file": "ui/ui_edu_common.json", + "type": "panel" + }, + "back_button_padded": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "children": [ + "back_button_padding_before", + "back_button" + ] + }, + "back_button_padded/back_button_padding_before": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "back_button_padded/back_button": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "extend": { + "name": "back_title_button", + "namespace": "common" + } + }, + "home_button_content": { + "file": "ui/ui_edu_common.json", + "type": "image" + }, + "home_button": { + "file": "ui/ui_edu_common.json", + "type": "button", + "extend": { + "name": "light_glyph_button", + "namespace": "common_buttons" + } + }, + "underline_text": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "children": [ + "label_hover" + ] + }, + "underline_text/label_hover": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "single_line_label", + "namespace": "common" + } + }, + "underline_button": { + "file": "ui/ui_edu_common.json", + "type": "button", + "extend": { + "name": "underline_button", + "namespace": "common_buttons" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "underline_button/default": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "underline_text", + "namespace": "edu_common" + } + }, + "underline_button/hover": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "underline_text", + "namespace": "edu_common" + } + }, + "underline_button/pressed": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "underline_text", + "namespace": "edu_common" + } + }, + "edu_screen_header": { + "file": "ui/ui_edu_common.json", + "type": "image", + "extend": { + "name": "top_bar", + "namespace": "common" + }, + "children": [ + "title_controls" + ] + }, + "edu_screen_header/title_controls": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "children": [ + "back_item", + "image_item", + "image_item_template", + "title_text_padding", + "title_item" + ] + }, + "edu_screen_header/title_controls/back_item": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "horizontal_stack_item", + "namespace": "edu_common" + }, + "children": [ + "back_button", + "gamepad" + ] + }, + "edu_screen_header/title_controls/back_item/back_button": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "extend": { + "name": "back_button_padded", + "namespace": "edu_common" + } + }, + "edu_screen_header/title_controls/back_item/gamepad": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_b", + "namespace": "common" + } + }, + "edu_screen_header/title_controls/image_item": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "horizontal_stack_item", + "namespace": "edu_common" + }, + "children": [ + "image" + ] + }, + "edu_screen_header/title_controls/image_item/image": { + "file": "ui/ui_edu_common.json", + "type": "image" + }, + "edu_screen_header/title_controls/image_item_template": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "horizontal_stack_item", + "namespace": "edu_common" + }, + "children": [ + "image" + ] + }, + "edu_screen_header/title_controls/image_item_template/image": { + "file": "ui/ui_edu_common.json", + "type": "image", + "children": [ + "image_color" + ] + }, + "edu_screen_header/title_controls/image_item_template/image/image_color": { + "file": "ui/ui_edu_common.json", + "type": "image" + }, + "edu_screen_header/title_controls/title_text_padding": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "edu_screen_header/title_controls/title_item": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "horizontal_stack_item", + "namespace": "edu_common" + }, + "children": [ + "title" + ] + }, + "edu_screen_header/title_controls/title_item/title": { + "file": "ui/ui_edu_common.json", + "type": "label" + }, + "share_dialog_title": { + "file": "ui/ui_edu_common.json", + "type": "label" + }, + "share_header_panel": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "children": [ + "title", + "close_button" + ] + }, + "share_header_panel/title": { + "file": "ui/ui_edu_common.json", + "type": "label", + "extend": { + "name": "share_dialog_title", + "namespace": "edu_common" + } + }, + "share_header_panel/close_button": { + "file": "ui/ui_edu_common.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "common" + } + }, + "teams_advanced_share_header_panel": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "share_header_panel", + "namespace": "edu_common" + } + }, + "add_resource_share_header_panel": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "share_header_panel", + "namespace": "edu_common" + } + }, + "body_panel": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "children": [ + "body_stack" + ] + }, + "body_panel/body_stack": { + "file": "ui/ui_edu_common.json", + "type": "unknown" + }, + "teams_body_panel": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "body_panel", + "namespace": "edu_common" + } + }, + "teams_body_resource_panel": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "body_panel", + "namespace": "edu_common" + } + }, + "teams_simple_body_resource_panel": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "body_panel", + "namespace": "edu_common" + } + }, + "joincode_body_panel": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "body_panel", + "namespace": "edu_common" + } + }, + "add_resource_body_panel": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "body_panel", + "namespace": "edu_common" + } + }, + "icon_section": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "children": [ + "icon_stack_panel", + "icon_padding" + ] + }, + "icon_section/icon_stack_panel": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "extend": { + "name": "icon_stack_panel", + "namespace": "edu_common" + } + }, + "icon_section/icon_padding": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "add_resources_section": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "children": [ + "divider", + "add_resource_label", + "teams_padding_middle", + "resource_button" + ] + }, + "add_resources_section/divider": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "edu_common" + } + }, + "add_resources_section/add_resource_label": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "share_dialog_body_text", + "namespace": "edu_common" + } + }, + "add_resources_section/teams_padding_middle": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "add_resources_section/resource_button": { + "file": "ui/ui_edu_common.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "edit_resource_uri_glyph": { + "file": "ui/ui_edu_common.json", + "type": "image" + }, + "edit_resources_section": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "children": [ + "divider", + "resource_label_text", + "teams_padding_middle", + "edit_resource_body_button_stack" + ] + }, + "edit_resources_section/divider": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "edu_common" + } + }, + "edit_resources_section/resource_label_text": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "share_dialog_body_text", + "namespace": "edu_common" + } + }, + "edit_resources_section/teams_padding_middle": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "edit_resources_section/edit_resource_body_button_stack": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "children": [ + "resource_button", + "padding_middle", + "edit_resource_uri_button" + ] + }, + "edit_resources_section/edit_resource_body_button_stack/resource_button": { + "file": "ui/ui_edu_common.json", + "type": "unknown", + "extend": { + "name": "shared_resource_uri_button", + "namespace": "edu_pause" + } + }, + "edit_resources_section/edit_resource_body_button_stack/padding_middle": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "edit_resources_section/edit_resource_body_button_stack/edit_resource_uri_button": { + "file": "ui/ui_edu_common.json", + "type": "button", + "extend": { + "name": "light_glyph_button", + "namespace": "common_buttons" + } + }, + "body_content_stack": { + "file": "ui/ui_edu_common.json", + "type": "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": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "vertical_stack_item", + "namespace": "edu_common" + }, + "children": [ + "body_text" + ] + }, + "body_content_stack/body_text_centering_panel/body_text": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "share_dialog_body_text", + "namespace": "edu_common" + } + }, + "body_content_stack/padding_middle": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "body_content_stack/icons": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "extend": { + "name": "icon_section", + "namespace": "edu_common" + } + }, + "body_content_stack/copy_link_centering_panel": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "vertical_stack_item", + "namespace": "edu_common" + }, + "children": [ + "copy_link_panel" + ] + }, + "body_content_stack/copy_link_centering_panel/copy_link_panel": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "extend": { + "name": "copy_link_stack_panel", + "namespace": "edu_common" + } + }, + "body_content_stack/add_resources": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "extend": { + "name": "add_resources_section", + "namespace": "edu_common" + } + }, + "body_content_stack/edit_resources": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "extend": { + "name": "edit_resources_section", + "namespace": "edu_common" + } + }, + "teams_simple_body_content_stack": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "extend": { + "name": "body_content_stack", + "namespace": "edu_common" + } + }, + "teams_body_content_stack": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "extend": { + "name": "body_content_stack", + "namespace": "edu_common" + } + }, + "teams_body_resource_content_stack": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "extend": { + "name": "body_content_stack", + "namespace": "edu_common" + } + }, + "joincode_body_content_stack": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "extend": { + "name": "body_content_stack", + "namespace": "edu_common" + } + }, + "add_resource_body_content_stack": { + "file": "ui/ui_edu_common.json", + "type": "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": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "vertical_stack_item", + "namespace": "edu_common" + }, + "children": [ + "teams_share_label" + ] + }, + "add_resource_body_content_stack/label_one_centering_panel/teams_share_label": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "share_dialog_body_text", + "namespace": "edu_common" + } + }, + "add_resource_body_content_stack/label_padding_middle": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "add_resource_body_content_stack/label_two_centering_panel": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "vertical_stack_item", + "namespace": "edu_common" + }, + "children": [ + "teams_share_label" + ] + }, + "add_resource_body_content_stack/label_two_centering_panel/teams_share_label": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "share_dialog_body_text", + "namespace": "edu_common" + } + }, + "add_resource_body_content_stack/learn_more_padding_middle": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "add_resource_body_content_stack/link1": { + "file": "ui/ui_edu_common.json", + "type": "button", + "extend": { + "name": "underline_button", + "namespace": "edu_common" + } + }, + "add_resource_body_content_stack/url_padding_middle": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "add_resource_body_content_stack/url_label": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "share_dialog_body_text", + "namespace": "edu_common" + } + }, + "add_resource_body_content_stack/url_textbox": { + "file": "ui/ui_edu_common.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "add_resource_body_content_stack/inline_notification": { + "file": "ui/ui_edu_common.json", + "type": "image", + "extend": { + "name": "inline_notification", + "namespace": "edu_common" + } + }, + "add_resource_body_content_stack/inline_notification_spacer": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "add_resource_body_content_stack/button_name_label": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "share_dialog_body_text", + "namespace": "edu_common" + } + }, + "add_resource_body_content_stack/button_middle_spacer": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "add_resource_body_content_stack/button_name_textbox": { + "file": "ui/ui_edu_common.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "add_resource_body_content_stack/button_name_textbox_next_disabled": { + "file": "ui/ui_edu_common.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "add_edit_resource_body_content_stack": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "children": [ + "scroll_content" + ] + }, + "add_edit_resource_body_content_stack/scroll_content": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "add_edit_resource_body_content_stack/scroll_content/scrolling_panel": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "resource_popup_buttons": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "children": [ + "done_button", + "button_padding", + "back_button_panel" + ] + }, + "resource_popup_buttons/done_button": { + "file": "ui/ui_edu_common.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "resource_popup_buttons/button_padding": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "resource_popup_buttons/back_button_panel": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "children": [ + "back_button_enabled", + "back_button_disabled" + ] + }, + "resource_popup_buttons/back_button_panel/back_button_enabled": { + "file": "ui/ui_edu_common.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "resource_popup_buttons/back_button_panel/back_button_disabled": { + "file": "ui/ui_edu_common.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "add_resource_popup_lower_button_panel": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "children": [ + "edit_resource_popup_buttons", + "add_resource_popup_buttons" + ] + }, + "add_resource_popup_lower_button_panel/edit_resource_popup_buttons": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "extend": { + "name": "resource_popup_buttons", + "namespace": "edu_common" + } + }, + "add_resource_popup_lower_button_panel/add_resource_popup_buttons": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "extend": { + "name": "resource_popup_buttons", + "namespace": "edu_common" + } + }, + "share_dialog_body_text": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "children": [ + "tts_border", + "text" + ] + }, + "share_dialog_body_text/tts_border": { + "file": "ui/ui_edu_common.json", + "type": "button", + "extend": { + "name": "non_interact_focus_border_button", + "namespace": "common" + } + }, + "share_dialog_body_text/text": { + "file": "ui/ui_edu_common.json", + "type": "label" + }, + "share_icon": { + "file": "ui/ui_edu_common.json", + "type": "image" + }, + "share_label": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "children": [ + "share_image_offset_panel" + ] + }, + "share_label/share_image_offset_panel": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "children": [ + "link_share" + ] + }, + "share_label/share_image_offset_panel/link_share": { + "file": "ui/ui_edu_common.json", + "type": "image", + "extend": { + "name": "share_icon", + "namespace": "edu_common" + } + }, + "copy_link_stack_panel": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "children": [ + "link_box", + "copy_button" + ] + }, + "copy_link_stack_panel/link_box": { + "file": "ui/ui_edu_common.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "copy_link_stack_panel/copy_button": { + "file": "ui/ui_edu_common.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "icon_stack_panel": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "children": [ + "padding_left", + "teams_button", + "teams_mail_padding", + "mail_button", + "mail_classrooms_padding", + "classrooms_button", + "padding_right" + ] + }, + "icon_stack_panel/padding_left": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "icon_stack_panel/teams_button": { + "file": "ui/ui_edu_common.json", + "type": "button", + "extend": { + "name": "default_share_button", + "namespace": "edu_common" + } + }, + "icon_stack_panel/teams_mail_padding": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "icon_stack_panel/mail_button": { + "file": "ui/ui_edu_common.json", + "type": "button", + "extend": { + "name": "default_share_button", + "namespace": "edu_common" + } + }, + "icon_stack_panel/mail_classrooms_padding": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "icon_stack_panel/classrooms_button": { + "file": "ui/ui_edu_common.json", + "type": "button", + "extend": { + "name": "default_share_button", + "namespace": "edu_common" + } + }, + "icon_stack_panel/padding_right": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "default_share_button_contents": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "children": [ + "background", + "image" + ] + }, + "default_share_button_contents/background": { + "file": "ui/ui_edu_common.json", + "type": "image" + }, + "default_share_button_contents/image": { + "file": "ui/ui_edu_common.json", + "type": "image" + }, + "default_share_button": { + "file": "ui/ui_edu_common.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "default_share_button/default": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "default_share_button_contents", + "namespace": "edu_common" + } + }, + "default_share_button/hover": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "default_share_button_contents", + "namespace": "edu_common" + } + }, + "default_share_button/pressed": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "default_share_button_contents", + "namespace": "edu_common" + } + }, + "vertical_divider": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "children": [ + "divider" + ] + }, + "vertical_divider/divider": { + "file": "ui/ui_edu_common.json", + "type": "image" + }, + "horizontal_divider": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "children": [ + "divider" + ] + }, + "horizontal_divider/divider": { + "file": "ui/ui_edu_common.json", + "type": "image" + }, + "stack_panel_grid_slot": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "children": [ + "stack_panel_grid_item_panel" + ] + }, + "stack_panel_grid_slot/stack_panel_grid_item_panel": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "children": [ + "stack_panel_grid_item" + ] + }, + "stack_panel_grid_slot/stack_panel_grid_item_panel/stack_panel_grid_item": { + "file": "ui/ui_edu_common.json", + "type": "unknown" + }, + "stack_panel_grid_row": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "children": [ + "stack_panel_grid_row_item", + "divider" + ] + }, + "stack_panel_grid_row/stack_panel_grid_row_item": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "children": [ + "row" + ] + }, + "stack_panel_grid_row/stack_panel_grid_row_item/row": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel" + }, + "stack_panel_grid_row/divider": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "children": [ + "line" + ] + }, + "stack_panel_grid_row/divider/line": { + "file": "ui/ui_edu_common.json", + "type": "image" + }, + "stack_panel_grid": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel" + }, + "border": { + "file": "ui/ui_edu_common.json", + "type": "image" + }, + "description_panel": { + "file": "ui/ui_edu_common.json", + "type": "image", + "children": [ + "border", + "description" + ] + }, + "description_panel/border": { + "file": "ui/ui_edu_common.json", + "type": "button", + "extend": { + "name": "non_interact_focus_border_button", + "namespace": "common" + } + }, + "description_panel/description": { + "file": "ui/ui_edu_common.json", + "type": "label" + }, + "edu_share_text_popup": { + "file": "ui/ui_edu_common.json", + "type": "input_panel", + "extend": { + "name": "form_fit_modal_dialog_popup", + "namespace": "popup_dialog" + } + }, + "teams_edu_share_text_popup": { + "file": "ui/ui_edu_common.json", + "type": "input_panel", + "extend": { + "name": "form_fit_modal_dialog_popup", + "namespace": "popup_dialog" + } + }, + "teams_edu_share_resource_popup": { + "file": "ui/ui_edu_common.json", + "type": "input_panel", + "extend": { + "name": "form_fit_modal_dialog_popup", + "namespace": "popup_dialog" + } + }, + "teams_edu_simple_share_resource_popup": { + "file": "ui/ui_edu_common.json", + "type": "input_panel", + "extend": { + "name": "form_fit_modal_dialog_popup", + "namespace": "popup_dialog" + } + }, + "joincode_edu_popup": { + "file": "ui/ui_edu_common.json", + "type": "input_panel", + "extend": { + "name": "form_fit_modal_dialog_popup", + "namespace": "popup_dialog" + } + }, + "add_resource_dialog": { + "file": "ui/ui_edu_common.json", + "type": "input_panel", + "extend": { + "name": "form_fit_modal_dialog_popup", + "namespace": "popup_dialog" + } + }, + "share_popup_dialog_factory": { + "file": "ui/ui_edu_common.json", + "type": "factory" + }, + "inline_notification": { + "file": "ui/ui_edu_common.json", + "type": "image", + "children": [ + "stack" + ] + }, + "inline_notification/stack": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "children": [ + "icon", + "spacer", + "warning_text" + ] + }, + "inline_notification/stack/icon": { + "file": "ui/ui_edu_common.json", + "type": "image" + }, + "inline_notification/stack/spacer": { + "file": "ui/ui_edu_common.json", + "type": "panel" + }, + "inline_notification/stack/warning_text": { + "file": "ui/ui_edu_common.json", + "type": "label" + }, + "search_button_content": { + "file": "ui/ui_edu_common.json", + "type": "image" + }, + "search_bar_and_home_button": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "children": [ + "search_bar", + "search_button", + "search_pad", + "home_button", + "end_pad" + ] + }, + "search_bar_and_home_button/search_bar": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "children": [ + "search_bar" + ] + }, + "search_bar_and_home_button/search_bar/search_bar": { + "file": "ui/ui_edu_common.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "search_bar_and_home_button/search_button": { + "file": "ui/ui_edu_common.json", + "type": "button", + "extend": { + "name": "light_glyph_button", + "namespace": "common_buttons" + } + }, + "search_bar_and_home_button/search_pad": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "search_bar_and_home_button/home_button": { + "file": "ui/ui_edu_common.json", + "type": "button", + "extend": { + "name": "home_button", + "namespace": "edu_common" + } + }, + "search_bar_and_home_button/end_pad": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "hotbar_hint": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "children": [ + "inactive_slot_dimmer", + "bound_key_glyph_background" + ] + }, + "hotbar_hint/inactive_slot_dimmer": { + "file": "ui/ui_edu_common.json", + "type": "image" + }, + "hotbar_hint/bound_key_glyph_background": { + "file": "ui/ui_edu_common.json", + "type": "image", + "children": [ + "bound_key_glyph_text" + ] + }, + "hotbar_hint/bound_key_glyph_background/bound_key_glyph_text": { + "file": "ui/ui_edu_common.json", + "type": "label" + }, + "view_toggle_content": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "extend": { + "name": "edu_common", + "namespace": "edu_common" + }, + "children": [ + "button_image_templates", + "button_image_worlds", + "button_label_wrapper", + "left_edge_text_padding" + ] + }, + "view_toggle_content/button_image_templates": { + "file": "ui/ui_edu_common.json", + "type": "image", + "children": [ + "image_color_templates" + ] + }, + "view_toggle_content/button_image_templates/image_color_templates": { + "file": "ui/ui_edu_common.json", + "type": "image" + }, + "view_toggle_content/button_image_worlds": { + "file": "ui/ui_edu_common.json", + "type": "image" + }, + "view_toggle_content/button_label_wrapper": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "children": [ + "button_label" + ] + }, + "view_toggle_content/button_label_wrapper/button_label": { + "file": "ui/ui_edu_common.json", + "type": "label" + }, + "view_toggle_content/left_edge_text_padding": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "worlds_and_templates_search_bar": { + "file": "ui/ui_edu_common.json", + "type": "image", + "children": [ + "stack_panel" + ] + }, + "worlds_and_templates_search_bar/stack_panel": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel", + "children": [ + "search_bar_wrapper", + "temp_padding", + "view_toggle_background" + ] + }, + "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "children": [ + "search_bar" + ] + }, + "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper/search_bar": { + "file": "ui/ui_edu_common.json", + "type": "edit_box", + "extend": { + "name": "text_edit_box", + "namespace": "common" + } + }, + "worlds_and_templates_search_bar/stack_panel/temp_padding": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "worlds_and_templates_search_bar/stack_panel/view_toggle_background": { + "file": "ui/ui_edu_common.json", + "type": "image", + "children": [ + "stack_panel" + ] + }, + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel": { + "file": "ui/ui_edu_common.json", + "type": "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": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/view_toggle_button": { + "file": "ui/ui_edu_common.json", + "type": "button", + "extend": { + "name": "dark_content_form_fitting_button", + "namespace": "common_buttons" + } + }, + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/right_edge_padding": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "edu_cloud_conflict_resolution_popup_dialog_factory": { + "file": "ui/ui_edu_common.json", + "type": "factory" + }, + "edu_cloud_conflict_resolution_popup": { + "file": "ui/ui_edu_common.json", + "type": "input_panel", + "extend": { + "name": "form_fit_modal_dialog_popup", + "namespace": "popup_dialog" + } + }, + "edu_cloud_conflict_resolution_content": { + "file": "ui/ui_edu_common.json", + "type": "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": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "children": [ + "tts_border", + "conflict_resolution_description" + ] + }, + "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/tts_border": { + "file": "ui/ui_edu_common.json", + "type": "button", + "extend": { + "name": "non_interact_focus_border_button", + "namespace": "common" + } + }, + "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/conflict_resolution_description": { + "file": "ui/ui_edu_common.json", + "type": "label" + }, + "edu_cloud_conflict_resolution_content/padding1": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "edu_cloud_conflict_resolution_content/world_info_wrapper": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "children": [ + "tts_border", + "world_info_stack" + ] + }, + "edu_cloud_conflict_resolution_content/world_info_wrapper/tts_border": { + "file": "ui/ui_edu_common.json", + "type": "button", + "extend": { + "name": "non_interact_focus_border_button", + "namespace": "common" + } + }, + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack": { + "file": "ui/ui_edu_common.json", + "type": "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": { + "file": "ui/ui_edu_common.json", + "type": "label" + }, + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_last_changed_label": { + "file": "ui/ui_edu_common.json", + "type": "label" + }, + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_name_label": { + "file": "ui/ui_edu_common.json", + "type": "label" + }, + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_last_changed_label": { + "file": "ui/ui_edu_common.json", + "type": "label" + }, + "edu_cloud_conflict_resolution_content/padding2": { + "file": "ui/ui_edu_common.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "edu_cloud_conflict_resolution_content/keep_local_button": { + "file": "ui/ui_edu_common.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "edu_cloud_conflict_resolution_content/keep_cloud_button": { + "file": "ui/ui_edu_common.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "edu_cloud_conflict_resolution_content/keep_both_button": { + "file": "ui/ui_edu_common.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "nested_buttons_base_definition": { + "file": "ui/ui_edu_common.json", + "type": "stack_panel" + } + }, + "purchase_common": { + "banner_fill": { + "file": "ui/ui_purchase_common.json", + "type": "image" + }, + "banner_empty": { + "file": "ui/ui_purchase_common.json", + "type": "image" + }, + "screenshots_grid_item": { + "file": "ui/ui_purchase_common.json", + "type": "panel", + "children": [ + "frame" + ] + }, + "screenshots_grid_item/frame": { + "file": "ui/ui_purchase_common.json", + "type": "image", + "extend": { + "name": "banner_empty", + "namespace": "purchase_common" + }, + "children": [ + "screenshot_image", + "progress_loading", + "screenshot_button" + ] + }, + "screenshots_grid_item/frame/screenshot_image": { + "file": "ui/ui_purchase_common.json", + "type": "image" + }, + "screenshots_grid_item/frame/progress_loading": { + "file": "ui/ui_purchase_common.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "screenshots_grid_item/frame/screenshot_button": { + "file": "ui/ui_purchase_common.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "hover", + "pressed" + ] + }, + "screenshots_grid_item/frame/screenshot_button/hover": { + "file": "ui/ui_purchase_common.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "screenshots_grid_item/frame/screenshot_button/pressed": { + "file": "ui/ui_purchase_common.json", + "type": "image", + "extend": { + "name": "focus_border_white", + "namespace": "common" + } + }, + "screenshots_grid": { + "file": "ui/ui_purchase_common.json", + "type": "grid" + }, + "key_image_frame": { + "file": "ui/ui_purchase_common.json", + "type": "image", + "extend": { + "name": "banner_empty", + "namespace": "purchase_common" + }, + "children": [ + "zoomed" + ] + }, + "key_image_frame/zoomed": { + "file": "ui/ui_purchase_common.json", + "type": "image" + }, + "offer_grid_item": { + "file": "ui/ui_purchase_common.json", + "type": "panel", + "children": [ + "frame" + ] + }, + "offer_grid_item/frame": { + "file": "ui/ui_purchase_common.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "purchase_common" + }, + "children": [ + "offer_key_art", + "offer_button" + ] + }, + "offer_grid_item/frame/offer_key_art": { + "file": "ui/ui_purchase_common.json", + "type": "image" + }, + "offer_grid_item/frame/offer_button": { + "file": "ui/ui_purchase_common.json", + "type": "button", + "children": [ + "hover", + "pressed" + ] + }, + "offer_grid_item/frame/offer_button/hover": { + "file": "ui/ui_purchase_common.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "offer_grid_item/frame/offer_button/pressed": { + "file": "ui/ui_purchase_common.json", + "type": "image", + "extend": { + "name": "square_image_border_white", + "namespace": "common" + } + }, + "offer_grid": { + "file": "ui/ui_purchase_common.json", + "type": "grid" + }, + "key_art_and_text": { + "file": "ui/ui_purchase_common.json", + "type": "stack_panel", + "children": [ + "key_image_panel", + "padding", + "description_scroll" + ] + }, + "key_art_and_text/key_image_panel": { + "file": "ui/ui_purchase_common.json", + "type": "input_panel", + "children": [ + "key_image" + ] + }, + "key_art_and_text/key_image_panel/key_image": { + "file": "ui/ui_purchase_common.json", + "type": "image", + "extend": { + "name": "key_image_frame", + "namespace": "purchase_common" + } + }, + "key_art_and_text/padding": { + "file": "ui/ui_purchase_common.json", + "type": "panel" + }, + "key_art_and_text/description_scroll": { + "file": "ui/ui_purchase_common.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "pack_description": { + "file": "ui/ui_purchase_common.json", + "type": "label" + } + }, + "common_buttons": { + "button_image": { + "file": "ui/ui_template_buttons.json", + "type": "image" + }, + "background_button_image": { + "file": "ui/ui_template_buttons.json", + "type": "image" + }, + "locked_button_image": { + "file": "ui/ui_template_buttons.json", + "type": "image" + }, + "light_button_assets": { + "file": "ui/ui_template_buttons.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + } + }, + "dark_button_assets": { + "file": "ui/ui_template_buttons.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + } + }, + "focus_border": { + "file": "ui/ui_template_buttons.json", + "type": "image" + }, + "new_ui_button_panel": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "children": [ + "button_content", + "border" + ] + }, + "new_ui_button_panel/button_content": { + "file": "ui/ui_template_buttons.json", + "type": "panel" + }, + "new_ui_button_panel/border": { + "file": "ui/ui_template_buttons.json", + "type": "image", + "extend": { + "name": "focus_border", + "namespace": "common_buttons" + } + }, + "new_ui_form_fitting_button_panel": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "children": [ + "border" + ] + }, + "new_ui_form_fitting_button_panel/border": { + "file": "ui/ui_template_buttons.json", + "type": "image", + "extend": { + "name": "focus_border", + "namespace": "common_buttons" + } + }, + "new_ui_width_fitting_button_panel": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "children": [ + "border" + ] + }, + "new_ui_width_fitting_button_panel/border": { + "file": "ui/ui_template_buttons.json", + "type": "image", + "extend": { + "name": "focus_border", + "namespace": "common_buttons" + } + }, + "new_ui_height_fitting_button_panel": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "children": [ + "border" + ] + }, + "new_ui_height_fitting_button_panel/border": { + "file": "ui/ui_template_buttons.json", + "type": "image", + "extend": { + "name": "focus_border", + "namespace": "common_buttons" + } + }, + "borderless_form_fitting_button_panel": { + "file": "ui/ui_template_buttons.json", + "type": "panel" + }, + "light_text_button": { + "file": "ui/ui_template_buttons.json", + "type": "button", + "extend": { + "name": "light_button_assets", + "namespace": "common_buttons" + }, + "children": [ + "default", + "hover", + "pressed", + "locked" + ] + }, + "light_text_button/default": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "light_text_button/hover": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "light_text_button/pressed": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "light_text_button/locked": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "dark_text_button": { + "file": "ui/ui_template_buttons.json", + "type": "button", + "extend": { + "name": "dark_button_assets", + "namespace": "common_buttons" + }, + "children": [ + "default", + "hover", + "pressed", + "locked" + ] + }, + "dark_text_button/default": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "dark_text_button/hover": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "dark_text_button/pressed": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "dark_text_button/locked": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "new_ui_binding_button_label": { + "file": "ui/ui_template_buttons.json", + "type": "label" + }, + "underline_button": { + "file": "ui/ui_template_buttons.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "underline_button/default": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "children": [ + "label_default" + ] + }, + "underline_button/default/label_default": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "single_line_label", + "namespace": "common" + } + }, + "underline_button/hover": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "children": [ + "label_hover" + ] + }, + "underline_button/hover/label_hover": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "single_line_label", + "namespace": "common" + } + }, + "underline_button/pressed": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "children": [ + "label_hover" + ] + }, + "underline_button/pressed/label_hover": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "single_line_label", + "namespace": "common" + } + }, + "read_button": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "children": [ + "read_button_inner" + ] + }, + "read_button/read_button_inner": { + "file": "ui/ui_template_buttons.json", + "type": "button", + "extend": { + "name": "underline_button", + "namespace": "common_buttons" + } + }, + "light_content_form_fitting_button": { + "file": "ui/ui_template_buttons.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "dark_content_form_fitting_button": { + "file": "ui/ui_template_buttons.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "light_text_form_fitting_button": { + "file": "ui/ui_template_buttons.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "dark_text_form_fitting_button": { + "file": "ui/ui_template_buttons.json", + "type": "button", + "extend": { + "name": "dark_text_button", + "namespace": "common_buttons" + } + }, + "transparent_content_button": { + "file": "ui/ui_template_buttons.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "single_image_with_border_button": { + "file": "ui/ui_template_buttons.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "light_content_button": { + "file": "ui/ui_template_buttons.json", + "type": "button", + "extend": { + "name": "light_button_assets", + "namespace": "common_buttons" + }, + "children": [ + "default", + "hover", + "pressed", + "locked" + ] + }, + "light_content_button/default": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "light_content_button/hover": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "light_content_button/pressed": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "light_content_button/locked": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "light_content_button_control_content": { + "file": "ui/ui_template_buttons.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + }, + "children": [ + "default", + "hover", + "pressed", + "locked" + ] + }, + "light_content_button_control_content/default": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "light_content_button_control_content/hover": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "light_content_button_control_content/pressed": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "light_content_button_control_content/locked": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "deactivated_light_content_button": { + "file": "ui/ui_template_buttons.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "dark_content_button": { + "file": "ui/ui_template_buttons.json", + "type": "button", + "extend": { + "name": "dark_button_assets", + "namespace": "common_buttons" + }, + "children": [ + "default", + "hover", + "pressed", + "locked" + ] + }, + "dark_content_button/default": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "dark_content_button/hover": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "dark_content_button/pressed": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "dark_content_button/locked": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "no_background_content_button": { + "file": "ui/ui_template_buttons.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed", + "locked" + ] + }, + "no_background_content_button/default": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "no_background_content_button/hover": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "no_background_content_button/pressed": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "no_background_content_button/locked": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "button_content_panel": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "children": [ + "content" + ] + }, + "button_content_panel/content": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "form_fitting_button_content_panel": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "children": [ + "content" + ] + }, + "form_fitting_button_content_panel/content": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "horizontal_form_fitting": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "children": [ + "content" + ] + }, + "horizontal_form_fitting/content": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "width_fitting_button_content_panel": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "children": [ + "content" + ] + }, + "width_fitting_button_content_panel/content": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "height_fitting_button_content_panel": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "children": [ + "content" + ] + }, + "height_fitting_button_content_panel/content": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "light_glyph_button": { + "file": "ui/ui_template_buttons.json", + "type": "button", + "extend": { + "name": "light_button_assets", + "namespace": "common_buttons" + }, + "children": [ + "default", + "hover", + "pressed", + "locked" + ] + }, + "light_glyph_button/default": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "new_ui_button_panel", + "namespace": "common_buttons" + } + }, + "light_glyph_button/hover": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "new_ui_button_panel", + "namespace": "common_buttons" + } + }, + "light_glyph_button/pressed": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "new_ui_button_panel", + "namespace": "common_buttons" + } + }, + "light_glyph_button/locked": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "new_ui_button_panel", + "namespace": "common_buttons" + } + }, + "dark_glyph_button_default": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "new_ui_button_panel", + "namespace": "common_buttons" + } + }, + "dark_glyph_button_hover": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "new_ui_button_panel", + "namespace": "common_buttons" + } + }, + "dark_glyph_button_pressed": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "new_ui_button_panel", + "namespace": "common_buttons" + } + }, + "dark_glyph_button_locked": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "new_ui_button_panel", + "namespace": "common_buttons" + } + }, + "dark_glyph_button": { + "file": "ui/ui_template_buttons.json", + "type": "button", + "extend": { + "name": "dark_button_assets", + "namespace": "common_buttons" + }, + "children": [ + "default", + "hover", + "pressed", + "locked" + ] + }, + "dark_glyph_button/default": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "dark_glyph_button_default", + "namespace": "common_buttons" + } + }, + "dark_glyph_button/hover": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "dark_glyph_button_hover", + "namespace": "common_buttons" + } + }, + "dark_glyph_button/pressed": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "dark_glyph_button_pressed", + "namespace": "common_buttons" + } + }, + "dark_glyph_button/locked": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "dark_glyph_button_locked", + "namespace": "common_buttons" + } + }, + "dark_glyph_button_with_custom_control": { + "file": "ui/ui_template_buttons.json", + "type": "button", + "extend": { + "name": "dark_glyph_button", + "namespace": "common_buttons" + }, + "children": [ + "custom_control", + "default", + "hover", + "pressed", + "locked" + ] + }, + "dark_glyph_button_with_custom_control/custom_control": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "dark_glyph_button_with_custom_control/default": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "dark_glyph_button_default", + "namespace": "common_buttons" + } + }, + "dark_glyph_button_with_custom_control/hover": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "dark_glyph_button_hover", + "namespace": "common_buttons" + } + }, + "dark_glyph_button_with_custom_control/pressed": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "dark_glyph_button_pressed", + "namespace": "common_buttons" + } + }, + "dark_glyph_button_with_custom_control/locked": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "dark_glyph_button_locked", + "namespace": "common_buttons" + } + }, + "glyph_content_panel": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "children": [ + "glyph_button_content" + ] + }, + "glyph_content_panel/glyph_button_content": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "hyperlink_button": { + "file": "ui/ui_template_buttons.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "hyperlink_content_button": { + "file": "ui/ui_template_buttons.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "nested_button_assets": { + "file": "ui/ui_template_buttons.json", + "type": "image" + }, + "nested_overlay_assets": { + "file": "ui/ui_template_buttons.json", + "type": "image", + "extend": { + "name": "nested_button_assets", + "namespace": "common_buttons" + } + }, + "nested_label_content_background_assets": { + "file": "ui/ui_template_buttons.json", + "type": "image", + "extend": { + "name": "nested_button_assets", + "namespace": "common_buttons" + } + }, + "nested_label_background_assets": { + "file": "ui/ui_template_buttons.json", + "type": "image", + "extend": { + "name": "nested_button_assets", + "namespace": "common_buttons" + } + }, + "nested_transparent_label_content_background_assets": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "children": [ + "assets" + ] + }, + "nested_transparent_label_content_background_assets/assets": { + "file": "ui/ui_template_buttons.json", + "type": "image", + "extend": { + "name": "nested_button_assets", + "namespace": "common_buttons" + } + }, + "nested_base_label": { + "file": "ui/ui_template_buttons.json", + "type": "label" + }, + "nested_centered_label_control": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "children": [ + "label" + ] + }, + "nested_centered_label_control/label": { + "file": "ui/ui_template_buttons.json", + "type": "label", + "extend": { + "name": "nested_base_label", + "namespace": "common_buttons" + } + }, + "nested_label_with_image_control": { + "file": "ui/ui_template_buttons.json", + "type": "stack_panel", + "children": [ + "image", + "image_to_label_padding", + "label_panel" + ] + }, + "nested_label_with_image_control/image": { + "file": "ui/ui_template_buttons.json", + "type": "image" + }, + "nested_label_with_image_control/image_to_label_padding": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "nested_label_with_image_control/label_panel": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "children": [ + "label" + ] + }, + "nested_label_with_image_control/label_panel/label": { + "file": "ui/ui_template_buttons.json", + "type": "label", + "extend": { + "name": "nested_base_label", + "namespace": "common_buttons" + } + }, + "nested_six_part_empty_definition": { + "file": "ui/ui_template_buttons.json", + "type": "label" + }, + "nested_six_part_label_control": { + "file": "ui/ui_template_buttons.json", + "type": "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": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "nested_six_part_label_control/left_middle_label": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "nested_six_part_label_control/left_bottom_label": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "nested_six_part_label_control/right_top_label": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "nested_six_part_label_control/right_middle_label": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "nested_six_part_label_control/right_bottom_label": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "nested_dark_button_assets": { + "file": "ui/ui_template_buttons.json", + "type": "image", + "extend": { + "name": "nested_button_assets", + "namespace": "common_buttons" + } + }, + "nested_content_background_assets": { + "file": "ui/ui_template_buttons.json", + "type": "image", + "extend": { + "name": "nested_button_assets", + "namespace": "common_buttons" + } + }, + "nested_content_overlay_assets": { + "file": "ui/ui_template_buttons.json", + "type": "image", + "extend": { + "name": "nested_button_assets", + "namespace": "common_buttons" + } + }, + "nested_dark_control_with_image": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "children": [ + "background", + "image_panel" + ] + }, + "nested_dark_control_with_image/background": { + "file": "ui/ui_template_buttons.json", + "type": "image", + "extend": { + "name": "nested_dark_button_assets", + "namespace": "common_buttons" + } + }, + "nested_dark_control_with_image/image_panel": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "children": [ + "image" + ] + }, + "nested_dark_control_with_image/image_panel/image": { + "file": "ui/ui_template_buttons.json", + "type": "image" + }, + "nestable_button": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "children": [ + "nested_controls_panel", + "base_button" + ] + }, + "nestable_button/nested_controls_panel": { + "file": "ui/ui_template_buttons.json", + "type": "input_panel", + "children": [ + "locked_overlay", + "nested_controls" + ] + }, + "nestable_button/nested_controls_panel/locked_overlay": { + "file": "ui/ui_template_buttons.json", + "type": "image" + }, + "nestable_button/nested_controls_panel/nested_controls": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "nestable_button/base_button": { + "file": "ui/ui_template_buttons.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed", + "locked" + ] + }, + "nestable_button/base_button/default": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "nested_button_base", + "namespace": "common_buttons" + } + }, + "nestable_button/base_button/hover": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "nested_button_base", + "namespace": "common_buttons" + } + }, + "nestable_button/base_button/pressed": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "nested_button_base", + "namespace": "common_buttons" + } + }, + "nestable_button/base_button/locked": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "nested_button_base", + "namespace": "common_buttons" + } + }, + "nested_button_base": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "children": [ + "button_overlay", + "button_control" + ] + }, + "nested_button_base/button_overlay": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "nested_button_base/button_control": { + "file": "ui/ui_template_buttons.json", + "type": "stack_panel", + "children": [ + "control_area", + "button_stack_padding", + "label_area" + ] + }, + "nested_button_base/button_control/control_area": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "children": [ + "background", + "control", + "overlay" + ] + }, + "nested_button_base/button_control/control_area/background": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "nested_button_base/button_control/control_area/control": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "nested_button_base/button_control/control_area/overlay": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "nested_button_base/button_control/button_stack_padding": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "nested_button_base/button_control/label_area": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "children": [ + "background", + "control_background", + "control" + ] + }, + "nested_button_base/button_control/label_area/background": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "nested_button_base/button_control/label_area/control_background": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "nested_button_base/button_control/label_area/control": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + }, + "dark_nestable_button": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "nestable_button", + "namespace": "common_buttons" + } + }, + "transparent_label_nestable_button": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "nestable_button", + "namespace": "common_buttons" + } + }, + "static_tooltip_notification_panel": { + "file": "ui/ui_template_buttons.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "pressed", + "hover", + "locked", + "static_tooltip_popup_panel" + ] + }, + "static_tooltip_notification_panel/default": { + "file": "ui/ui_template_buttons.json", + "type": "image", + "extend": { + "name": "tooltip_button_content", + "namespace": "common" + } + }, + "static_tooltip_notification_panel/pressed": { + "file": "ui/ui_template_buttons.json", + "type": "image", + "extend": { + "name": "tooltip_button_content", + "namespace": "common" + } + }, + "static_tooltip_notification_panel/hover": { + "file": "ui/ui_template_buttons.json", + "type": "image", + "extend": { + "name": "tooltip_button_content", + "namespace": "common" + } + }, + "static_tooltip_notification_panel/locked": { + "file": "ui/ui_template_buttons.json", + "type": "image", + "extend": { + "name": "tooltip_button_content", + "namespace": "common" + } + }, + "static_tooltip_notification_panel/static_tooltip_popup_panel": { + "file": "ui/ui_template_buttons.json", + "type": "image", + "extend": { + "name": "static_tooltip_popup_with_image_and_text", + "namespace": "common" + } + }, + "dynamic_tooltip_notification_panel": { + "file": "ui/ui_template_buttons.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "pressed", + "hover", + "locked", + "dyanmic_tooltip_popup_panel" + ] + }, + "dynamic_tooltip_notification_panel/default": { + "file": "ui/ui_template_buttons.json", + "type": "image", + "extend": { + "name": "tooltip_button_content", + "namespace": "common" + } + }, + "dynamic_tooltip_notification_panel/pressed": { + "file": "ui/ui_template_buttons.json", + "type": "image", + "extend": { + "name": "tooltip_button_content", + "namespace": "common" + } + }, + "dynamic_tooltip_notification_panel/hover": { + "file": "ui/ui_template_buttons.json", + "type": "image", + "extend": { + "name": "tooltip_button_content", + "namespace": "common" + } + }, + "dynamic_tooltip_notification_panel/locked": { + "file": "ui/ui_template_buttons.json", + "type": "image", + "extend": { + "name": "tooltip_button_content", + "namespace": "common" + } + }, + "dynamic_tooltip_notification_panel/dyanmic_tooltip_popup_panel": { + "file": "ui/ui_template_buttons.json", + "type": "image", + "extend": { + "name": "dynamic_tooltip_popup_with_image_and_text", + "namespace": "common" + } + }, + "text_body_focus_border_for_controller_button": { + "file": "ui/ui_template_buttons.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "text_control" + ] + }, + "text_body_focus_border_for_controller_button/default": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "text_body_focus_border_for_controller_button/hover": { + "file": "ui/ui_template_buttons.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + }, + "children": [ + "focus_border" + ] + }, + "text_body_focus_border_for_controller_button/hover/focus_border": { + "file": "ui/ui_template_buttons.json", + "type": "image", + "extend": { + "name": "focus_border", + "namespace": "common_buttons" + } + }, + "text_body_focus_border_for_controller_button/text_control": { + "file": "ui/ui_template_buttons.json", + "type": "unknown" + } + }, + "common_dialogs": { + "standard_title_label": { + "file": "ui/ui_template_dialogs.json", + "type": "label" + }, + "title_label": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "children": [ + "common_dialogs_0", + "common_dialogs_1" + ] + }, + "title_label/common_dialogs_0": { + "file": "ui/ui_template_dialogs.json", + "type": "label", + "extend": { + "name": "standard_title_label", + "namespace": "common_dialogs" + } + }, + "title_label/common_dialogs_1": { + "file": "ui/ui_template_dialogs.json", + "type": "unknown" + }, + "main_panel_three_buttons": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "children": [ + "common_panel", + "title_label", + "panel_indent", + "top_button_panel", + "middle_button_panel", + "bottom_button_panel" + ] + }, + "main_panel_three_buttons/common_panel": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "main_panel_three_buttons/title_label": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "extend": { + "name": "title_label", + "namespace": "common_dialogs" + } + }, + "main_panel_three_buttons/panel_indent": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "children": [ + "inside_header_panel" + ] + }, + "main_panel_three_buttons/panel_indent/inside_header_panel": { + "file": "ui/ui_template_dialogs.json", + "type": "unknown" + }, + "main_panel_three_buttons/top_button_panel": { + "file": "ui/ui_template_dialogs.json", + "type": "unknown" + }, + "main_panel_three_buttons/middle_button_panel": { + "file": "ui/ui_template_dialogs.json", + "type": "unknown" + }, + "main_panel_three_buttons/bottom_button_panel": { + "file": "ui/ui_template_dialogs.json", + "type": "unknown" + }, + "main_panel_two_buttons": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "children": [ + "common_panel", + "title_label", + "panel_indent", + "top_button_panel", + "bottom_button_panel" + ] + }, + "main_panel_two_buttons/common_panel": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "main_panel_two_buttons/title_label": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "extend": { + "name": "title_label", + "namespace": "common_dialogs" + } + }, + "main_panel_two_buttons/panel_indent": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "children": [ + "inside_header_panel" + ] + }, + "main_panel_two_buttons/panel_indent/inside_header_panel": { + "file": "ui/ui_template_dialogs.json", + "type": "unknown" + }, + "main_panel_two_buttons/top_button_panel": { + "file": "ui/ui_template_dialogs.json", + "type": "unknown" + }, + "main_panel_two_buttons/bottom_button_panel": { + "file": "ui/ui_template_dialogs.json", + "type": "unknown" + }, + "main_panel_one_button": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "children": [ + "common_panel", + "title_label", + "panel_indent", + "bottom_button_panel" + ] + }, + "main_panel_one_button/common_panel": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "main_panel_one_button/title_label": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "extend": { + "name": "title_label", + "namespace": "common_dialogs" + } + }, + "main_panel_one_button/panel_indent": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "children": [ + "inside_header_panel" + ] + }, + "main_panel_one_button/panel_indent/inside_header_panel": { + "file": "ui/ui_template_dialogs.json", + "type": "unknown" + }, + "main_panel_one_button/bottom_button_panel": { + "file": "ui/ui_template_dialogs.json", + "type": "unknown" + }, + "main_panel_no_buttons": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "children": [ + "common_panel", + "title_label", + "panel_indent" + ] + }, + "main_panel_no_buttons/common_panel": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "main_panel_no_buttons/title_label": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "extend": { + "name": "title_label", + "namespace": "common_dialogs" + } + }, + "main_panel_no_buttons/panel_indent": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "children": [ + "inside_header_panel" + ] + }, + "main_panel_no_buttons/panel_indent/inside_header_panel": { + "file": "ui/ui_template_dialogs.json", + "type": "unknown" + }, + "main_panel_no_title_no_buttons": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "children": [ + "common_panel", + "panel_indent" + ] + }, + "main_panel_no_title_no_buttons/common_panel": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "main_panel_no_title_no_buttons/panel_indent": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "children": [ + "inside_header_panel" + ] + }, + "main_panel_no_title_no_buttons/panel_indent/inside_header_panel": { + "file": "ui/ui_template_dialogs.json", + "type": "unknown" + }, + "main_panel_small_title_one_button": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "children": [ + "common_panel", + "title_label", + "panel_indent", + "bottom_button_panel" + ] + }, + "main_panel_small_title_one_button/common_panel": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "main_panel_small_title_one_button/title_label": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "extend": { + "name": "title_label", + "namespace": "common_dialogs" + } + }, + "main_panel_small_title_one_button/panel_indent": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "children": [ + "inside_header_panel" + ] + }, + "main_panel_small_title_one_button/panel_indent/inside_header_panel": { + "file": "ui/ui_template_dialogs.json", + "type": "unknown" + }, + "main_panel_small_title_one_button/bottom_button_panel": { + "file": "ui/ui_template_dialogs.json", + "type": "unknown" + }, + "main_panel": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "children": [ + "modal_background_image", + "panel_indent" + ] + }, + "main_panel/modal_background_image": { + "file": "ui/ui_template_dialogs.json", + "type": "unknown", + "extend": { + "name": "modal_background_image", + "namespace": "modal" + } + }, + "main_panel/panel_indent": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "children": [ + "inside_header_panel" + ] + }, + "main_panel/panel_indent/inside_header_panel": { + "file": "ui/ui_template_dialogs.json", + "type": "unknown" + }, + "form_fitting_main_panel_no_buttons": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "children": [ + "common_panel" + ] + }, + "form_fitting_main_panel_no_buttons/common_panel": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common_dialogs" + } + }, + "common_panel": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "children": [ + "bg_image" + ] + }, + "common_panel/bg_image": { + "file": "ui/ui_template_dialogs.json", + "type": "unknown" + }, + "dialog_background_common": { + "file": "ui/ui_template_dialogs.json", + "type": "image" + }, + "dialog_background_thin": { + "file": "ui/ui_template_dialogs.json", + "type": "image" + }, + "flat_solid_background": { + "file": "ui/ui_template_dialogs.json", + "type": "image" + }, + "dialog_background_hollow_common": { + "file": "ui/ui_template_dialogs.json", + "type": "image", + "extend": { + "name": "dialog_background_common", + "namespace": "common_dialogs" + }, + "children": [ + "control" + ] + }, + "dialog_background_hollow_common/control": { + "file": "ui/ui_template_dialogs.json", + "type": "image", + "children": [ + "inside_header_panel", + "close_button_holder", + "title_label" + ] + }, + "dialog_background_hollow_common/control/inside_header_panel": { + "file": "ui/ui_template_dialogs.json", + "type": "unknown" + }, + "dialog_background_hollow_common/control/close_button_holder": { + "file": "ui/ui_template_dialogs.json", + "type": "stack_panel", + "extend": { + "name": "common_close_button_holder", + "namespace": "common_dialogs" + } + }, + "dialog_background_hollow_common/control/title_label": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "extend": { + "name": "title_label", + "namespace": "common_dialogs" + } + }, + "common_close_button_holder": { + "file": "ui/ui_template_dialogs.json", + "type": "stack_panel", + "children": [ + "close", + "compact_close" + ] + }, + "common_close_button_holder/close": { + "file": "ui/ui_template_dialogs.json", + "type": "button", + "extend": { + "name": "close_button", + "namespace": "common" + } + }, + "common_close_button_holder/compact_close": { + "file": "ui/ui_template_dialogs.json", + "type": "button", + "extend": { + "name": "compact_close_button", + "namespace": "common" + } + }, + "dialog_background_opaque": { + "file": "ui/ui_template_dialogs.json", + "type": "image", + "extend": { + "name": "dialog_background_common", + "namespace": "common_dialogs" + } + }, + "dialog_background_opaque_with_child": { + "file": "ui/ui_template_dialogs.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_common", + "namespace": "common_dialogs" + } + }, + "dialog_background_hollow_1": { + "file": "ui/ui_template_dialogs.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_common", + "namespace": "common_dialogs" + } + }, + "dialog_background_hollow_2": { + "file": "ui/ui_template_dialogs.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_common", + "namespace": "common_dialogs" + } + }, + "dialog_background_hollow_3": { + "file": "ui/ui_template_dialogs.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_common", + "namespace": "common_dialogs" + } + }, + "dialog_background_hollow_4": { + "file": "ui/ui_template_dialogs.json", + "type": "image", + "extend": { + "name": "dialog_background_hollow_common", + "namespace": "common_dialogs" + } + }, + "dialog_background_hollow_6": { + "file": "ui/ui_template_dialogs.json", + "type": "unknown", + "extend": { + "name": "dialog_background_hollow_common:", + "namespace": "common_dialogs" + } + }, + "full_screen_background": { + "file": "ui/ui_template_dialogs.json", + "type": "panel", + "children": [ + "background" + ] + }, + "full_screen_background/background": { + "file": "ui/ui_template_dialogs.json", + "type": "unknown" + }, + "background_image": { + "file": "ui/ui_template_dialogs.json", + "type": "image" + } + }, + "common_tabs": { + "empty_tab_panel": { + "file": "ui/ui_template_tabs.json", + "type": "panel", + "children": [ + "img" + ] + }, + "empty_tab_panel/img": { + "file": "ui/ui_template_tabs.json", + "type": "unknown" + }, + "empty_tab_content": { + "file": "ui/ui_template_tabs.json", + "type": "panel" + }, + "tab_image": { + "file": "ui/ui_template_tabs.json", + "type": "image" + }, + "tab_panel": { + "file": "ui/ui_template_tabs.json", + "type": "panel", + "children": [ + "tab_image", + "tab_content_sizer" + ] + }, + "tab_panel/tab_image": { + "file": "ui/ui_template_tabs.json", + "type": "unknown" + }, + "tab_panel/tab_content_sizer": { + "file": "ui/ui_template_tabs.json", + "type": "panel", + "children": [ + "tab_content" + ] + }, + "tab_panel/tab_content_sizer/tab_content": { + "file": "ui/ui_template_tabs.json", + "type": "unknown" + }, + "base_tab": { + "file": "ui/ui_template_tabs.json", + "type": "panel" + }, + "tab_top": { + "file": "ui/ui_template_tabs.json", + "type": "panel", + "extend": { + "name": "base_tab", + "namespace": "common_tabs" + } + }, + "tab_left": { + "file": "ui/ui_template_tabs.json", + "type": "panel", + "extend": { + "name": "base_tab", + "namespace": "common_tabs" + } + }, + "tab_right": { + "file": "ui/ui_template_tabs.json", + "type": "panel", + "extend": { + "name": "base_tab", + "namespace": "common_tabs" + } + }, + "pocket_empty_tab_panel": { + "file": "ui/ui_template_tabs.json", + "type": "panel" + }, + "pocket_tab_left": { + "file": "ui/ui_template_tabs.json", + "type": "panel", + "extend": { + "name": "tab_left", + "namespace": "common_tabs" + } + }, + "pocket_left_tab_v2": { + "file": "ui/ui_template_tabs.json", + "type": "panel", + "extend": { + "name": "tab_left", + "namespace": "common_tabs" + } + }, + "pocket_tab_right": { + "file": "ui/ui_template_tabs.json", + "type": "panel", + "extend": { + "name": "tab_right", + "namespace": "common_tabs" + } + }, + "pocket_right_tab_v2": { + "file": "ui/ui_template_tabs.json", + "type": "panel", + "extend": { + "name": "tab_right", + "namespace": "common_tabs" + } + }, + "pocket_tab_close_button": { + "file": "ui/ui_template_tabs.json", + "type": "image", + "children": [ + "close_button" + ] + }, + "pocket_tab_close_button/close_button": { + "file": "ui/ui_template_tabs.json", + "type": "button", + "extend": { + "name": "light_close_button", + "namespace": "common" + } + }, + "pocket_tab_help_button": { + "file": "ui/ui_template_tabs.json", + "type": "image", + "children": [ + "help_button" + ] + }, + "pocket_tab_help_button/help_button": { + "file": "ui/ui_template_tabs.json", + "type": "button", + "extend": { + "name": "help_button", + "namespace": "common" + } + }, + "pocket_tab_close_and_help_button": { + "file": "ui/ui_template_tabs.json", + "type": "image", + "children": [ + "close_button", + "help_button" + ] + }, + "pocket_tab_close_and_help_button/close_button": { + "file": "ui/ui_template_tabs.json", + "type": "button", + "extend": { + "name": "light_close_button", + "namespace": "common" + } + }, + "pocket_tab_close_and_help_button/help_button": { + "file": "ui/ui_template_tabs.json", + "type": "button", + "extend": { + "name": "help_button", + "namespace": "common" + } + }, + "tab_close_and_help_button": { + "file": "ui/ui_template_tabs.json", + "type": "image", + "children": [ + "close_button", + "help_button" + ] + }, + "tab_close_and_help_button/close_button": { + "file": "ui/ui_template_tabs.json", + "type": "button", + "extend": { + "name": "light_close_button", + "namespace": "common" + } + }, + "tab_close_and_help_button/help_button": { + "file": "ui/ui_template_tabs.json", + "type": "button", + "extend": { + "name": "help_button", + "namespace": "common" + } + } + }, + "common_toggles": { + "content_toggle_image_panel": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "children": [ + "icon" + ] + }, + "content_toggle_image_panel/icon": { + "file": "ui/ui_template_toggles.json", + "type": "image" + }, + "content_toggle_label_panel": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "children": [ + "toggle_label" + ] + }, + "content_toggle_label_panel/toggle_label": { + "file": "ui/ui_template_toggles.json", + "type": "label" + }, + "content_toggle_icon_panel": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "children": [ + "content_toggle_image" + ] + }, + "content_toggle_icon_panel/content_toggle_image": { + "file": "ui/ui_template_toggles.json", + "type": "image" + }, + "toggle_content_panel": { + "file": "ui/ui_template_toggles.json", + "type": "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": { + "file": "ui/ui_template_toggles.json", + "type": "unknown" + }, + "toggle_content_panel/toggle_image_padding_label": { + "file": "ui/ui_template_toggles.json", + "type": "panel" + }, + "toggle_content_panel/toggle_label_panel": { + "file": "ui/ui_template_toggles.json", + "type": "unknown" + }, + "toggle_content_panel/toggle_label_padding_toggle_icon": { + "file": "ui/ui_template_toggles.json", + "type": "panel" + }, + "toggle_content_panel/toggle_icon": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "content_toggle_icon_panel", + "namespace": "common_toggles" + } + }, + "vertical_form_fitting_toggle_content": { + "file": "ui/ui_template_toggles.json", + "type": "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": { + "file": "ui/ui_template_toggles.json", + "type": "unknown" + }, + "vertical_form_fitting_toggle_content/toggle_image_padding_label": { + "file": "ui/ui_template_toggles.json", + "type": "panel" + }, + "vertical_form_fitting_toggle_content/toggle_label_panel": { + "file": "ui/ui_template_toggles.json", + "type": "unknown" + }, + "vertical_form_fitting_toggle_content/toggle_label_padding_toggle_icon": { + "file": "ui/ui_template_toggles.json", + "type": "panel" + }, + "vertical_form_fitting_toggle_content/toggle_icon": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "content_toggle_icon_panel", + "namespace": "common_toggles" + } + }, + "light_text_toggle": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "light_ui_toggle", + "namespace": "common_toggles" + } + }, + "light_image_toggle": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "light_ui_toggle", + "namespace": "common_toggles" + } + }, + "light_content_toggle": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "light_ui_toggle", + "namespace": "common_toggles" + } + }, + "dark_ui_toggle": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "light_ui_toggle", + "namespace": "common_toggles" + } + }, + "dark_text_toggle": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "dark_ui_toggle", + "namespace": "common_toggles" + } + }, + "dark_image_toggle": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "dark_ui_toggle", + "namespace": "common_toggles" + } + }, + "dark_content_toggle": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "dark_ui_toggle", + "namespace": "common_toggles" + } + }, + "dark_vertical_template_toggle": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "dark_template_toggle", + "namespace": "common_toggles" + } + }, + "dark_vertical_form_fitting_content_toggle": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "children": [ + "dark_content_toggle" + ] + }, + "dark_vertical_form_fitting_content_toggle/dark_content_toggle": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "light_ui_toggle", + "namespace": "common_toggles" + } + }, + "dark_template_toggle": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "light_template_toggle", + "namespace": "common_toggles" + } + }, + "light_template_toggle": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "toggle", + "namespace": "common" + } + }, + "light_ui_toggle": { + "file": "ui/ui_template_toggles.json", + "type": "panel" + }, + "switch_toggle": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "light_image_toggle", + "namespace": "common_toggles" + } + }, + "light_text_toggle_collection": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "light_ui_toggle_collection", + "namespace": "common_toggles" + } + }, + "light_image_toggle_collection": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "light_ui_toggle_collection", + "namespace": "common_toggles" + } + }, + "dark_text_toggle_collection": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "dark_ui_toggle_collection", + "namespace": "common_toggles" + } + }, + "dark_image_toggle_collection": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "dark_ui_toggle_collection", + "namespace": "common_toggles" + } + }, + "dark_ui_toggle_collection": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "light_ui_toggle_collection", + "namespace": "common_toggles" + } + }, + "light_ui_toggle_collection": { + "file": "ui/ui_template_toggles.json", + "type": "panel" + }, + "switch_toggle_collection": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "light_image_toggle_collection", + "namespace": "common_toggles" + } + }, + "toggle_state_panel": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "children": [ + "button_panel" + ] + }, + "toggle_state_panel/button_panel": { + "file": "ui/ui_template_toggles.json", + "type": "unknown" + }, + "toggle_unchecked": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "toggle_state_panel", + "namespace": "common_toggles" + } + }, + "toggle_checked": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "toggle_state_panel", + "namespace": "common_toggles" + } + }, + "toggle_unchecked_hover": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "toggle_state_panel", + "namespace": "common_toggles" + } + }, + "toggle_checked_hover": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "toggle_state_panel", + "namespace": "common_toggles" + } + }, + "toggle_locked": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "toggle_state_panel", + "namespace": "common_toggles" + } + }, + "toggle_unchecked_locked": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "toggle_state_panel", + "namespace": "common_toggles" + } + }, + "toggle_checked_locked": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "toggle_state_panel", + "namespace": "common_toggles" + } + }, + "toggle_unchecked_hover_with_chevron": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "toggle_unchecked_hover", + "namespace": "common_toggles" + } + }, + "toggle_checked_hover_with_chevron": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "toggle_checked_hover", + "namespace": "common_toggles" + } + }, + "toggle_image": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "children": [ + "image" + ] + }, + "toggle_image/image": { + "file": "ui/ui_template_toggles.json", + "type": "unknown" + }, + "radio_off_icon": { + "file": "ui/ui_template_toggles.json", + "type": "image" + }, + "radio_off_hover_icon": { + "file": "ui/ui_template_toggles.json", + "type": "image" + }, + "radio_on_icon": { + "file": "ui/ui_template_toggles.json", + "type": "image" + }, + "radio_on_hover_icon": { + "file": "ui/ui_template_toggles.json", + "type": "image" + }, + "check_box_button_toggle_image": { + "file": "ui/ui_template_toggles.json", + "type": "image" + }, + "checkbox_button_checked_state": { + "file": "ui/ui_template_toggles.json", + "type": "image", + "extend": { + "name": "check_box_button_toggle_image", + "namespace": "common_toggles" + } + }, + "checkbox_button_unchecked_state": { + "file": "ui/ui_template_toggles.json", + "type": "image", + "extend": { + "name": "check_box_button_toggle_image", + "namespace": "common_toggles" + } + }, + "checkbox_button_checked_hover_state": { + "file": "ui/ui_template_toggles.json", + "type": "image", + "extend": { + "name": "check_box_button_toggle_image", + "namespace": "common_toggles" + } + }, + "checkbox_button_unchecked_hover_state": { + "file": "ui/ui_template_toggles.json", + "type": "image", + "extend": { + "name": "check_box_button_toggle_image", + "namespace": "common_toggles" + } + }, + "checkbox_button_checked_locked_state": { + "file": "ui/ui_template_toggles.json", + "type": "image", + "extend": { + "name": "check_box_button_toggle_image", + "namespace": "common_toggles" + } + }, + "checkbox_button_unchecked_locked_state": { + "file": "ui/ui_template_toggles.json", + "type": "image", + "extend": { + "name": "check_box_button_toggle_image", + "namespace": "common_toggles" + } + }, + "toggle_checkbox_unchecked": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "check_box_button_ui_panel", + "namespace": "common_toggles" + } + }, + "toggle_checkbox_checked": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "check_box_button_ui_panel", + "namespace": "common_toggles" + } + }, + "toggle_checkbox_unchecked_hover": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "check_box_button_ui_panel", + "namespace": "common_toggles" + } + }, + "toggle_checkbox_checked_hover": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "check_box_button_ui_panel", + "namespace": "common_toggles" + } + }, + "toggle_checkbox_unchecked_locked": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "check_box_button_ui_panel", + "namespace": "common_toggles" + } + }, + "toggle_checkbox_checked_locked": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "check_box_button_ui_panel", + "namespace": "common_toggles" + } + }, + "check_box_button_ui_panel": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "new_ui_button_panel", + "namespace": "common_buttons" + }, + "children": [ + "toggle_image" + ] + }, + "check_box_button_ui_panel/toggle_image": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "children": [ + "button_content", + "border", + "checkbox_image" + ] + }, + "check_box_button_ui_panel/toggle_image/button_content": { + "file": "ui/ui_template_toggles.json", + "type": "panel" + }, + "check_box_button_ui_panel/toggle_image/border": { + "file": "ui/ui_template_toggles.json", + "type": "image", + "extend": { + "name": "focus_border", + "namespace": "common_buttons" + } + }, + "check_box_button_ui_panel/toggle_image/checkbox_image": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "children": [ + "image" + ] + }, + "check_box_button_ui_panel/toggle_image/checkbox_image/image": { + "file": "ui/ui_template_toggles.json", + "type": "unknown" + }, + "button_and_checkbox_template": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "light_template_toggle", + "namespace": "common_toggles" + } + }, + "button_with_checkbox_toggle": { + "file": "ui/ui_template_toggles.json", + "type": "panel", + "extend": { + "name": "light_text_toggle", + "namespace": "common_toggles" + } + } + }, + "friendsbutton": { + "friendsdrawer_animated_icon": { + "file": "ui/ui_friendsbutton.json", + "type": "image" + }, + "profilepicture": { + "file": "ui/ui_friendsbutton.json", + "type": "custom" + }, + "persona_icon_with_border": { + "file": "ui/ui_friendsbutton.json", + "type": "panel", + "children": [ + "profile_icon", + "border_black" + ] + }, + "persona_icon_with_border/profile_icon": { + "file": "ui/ui_friendsbutton.json", + "type": "custom", + "extend": { + "name": "profilepicture", + "namespace": "friendsbutton" + } + }, + "persona_icon_with_border/border_black": { + "file": "ui/ui_friendsbutton.json", + "type": "image", + "extend": { + "name": "focus_border_black", + "namespace": "common" + } + }, + "friendsdrawer_persona_icons": { + "file": "ui/ui_friendsbutton.json", + "type": "stack_panel" + }, + "social_button_stackpanel": { + "file": "ui/ui_friendsbutton.json", + "type": "stack_panel", + "extend": { + "name": "friendsdrawer_persona_icons", + "namespace": "friendsbutton" + }, + "children": [ + "image_panel" + ] + }, + "social_button_stackpanel/image_panel": { + "file": "ui/ui_friendsbutton.json", + "type": "panel", + "children": [ + "social_icon" + ] + }, + "social_button_stackpanel/image_panel/social_icon": { + "file": "ui/ui_friendsbutton.json", + "type": "image", + "extend": { + "name": "friendsdrawer_animated_icon", + "namespace": "friendsbutton" + } + }, + "social_button_hover_stackpanel": { + "file": "ui/ui_friendsbutton.json", + "type": "stack_panel", + "extend": { + "name": "social_button_stackpanel", + "namespace": "friendsbutton" + } + }, + "self_persona_stackpanel": { + "file": "ui/ui_friendsbutton.json", + "type": "stack_panel", + "extend": { + "name": "friendsdrawer_persona_icons", + "namespace": "friendsbutton" + }, + "children": [ + "self_icon" + ] + }, + "self_persona_stackpanel/self_icon": { + "file": "ui/ui_friendsbutton.json", + "type": "panel", + "extend": { + "name": "persona_icon_with_border", + "namespace": "friendsbutton" + } + }, + "single_friend_persona_stackpanel": { + "file": "ui/ui_friendsbutton.json", + "type": "stack_panel", + "extend": { + "name": "friendsdrawer_persona_icons", + "namespace": "friendsbutton" + }, + "children": [ + "self_icon", + "friend_one_icon" + ] + }, + "single_friend_persona_stackpanel/self_icon": { + "file": "ui/ui_friendsbutton.json", + "type": "stack_panel", + "extend": { + "name": "self_persona_stackpanel", + "namespace": "friendsbutton" + } + }, + "single_friend_persona_stackpanel/friend_one_icon": { + "file": "ui/ui_friendsbutton.json", + "type": "panel", + "extend": { + "name": "persona_icon_with_border", + "namespace": "friendsbutton" + } + }, + "many_friend_persona_stackpanel": { + "file": "ui/ui_friendsbutton.json", + "type": "stack_panel", + "extend": { + "name": "friendsdrawer_persona_icons", + "namespace": "friendsbutton" + }, + "children": [ + "self_icon", + "extra_friends_text_panel" + ] + }, + "many_friend_persona_stackpanel/self_icon": { + "file": "ui/ui_friendsbutton.json", + "type": "stack_panel", + "extend": { + "name": "self_persona_stackpanel", + "namespace": "friendsbutton" + } + }, + "many_friend_persona_stackpanel/extra_friends_text_panel": { + "file": "ui/ui_friendsbutton.json", + "type": "panel", + "children": [ + "background", + "extra_members_label", + "border_black" + ] + }, + "many_friend_persona_stackpanel/extra_friends_text_panel/background": { + "file": "ui/ui_friendsbutton.json", + "type": "image" + }, + "many_friend_persona_stackpanel/extra_friends_text_panel/extra_members_label": { + "file": "ui/ui_friendsbutton.json", + "type": "label" + }, + "many_friend_persona_stackpanel/extra_friends_text_panel/border_black": { + "file": "ui/ui_friendsbutton.json", + "type": "image", + "extend": { + "name": "focus_border_black", + "namespace": "common" + } + }, + "button": { + "file": "ui/ui_friendsbutton.json", + "type": "button", + "extend": { + "name": "light_content_form_fitting_button", + "namespace": "common_buttons" + }, + "children": [ + "default", + "hover", + "pressed", + "locked" + ] + }, + "button/default": { + "file": "ui/ui_friendsbutton.json", + "type": "unknown" + }, + "button/hover": { + "file": "ui/ui_friendsbutton.json", + "type": "unknown" + }, + "button/pressed": { + "file": "ui/ui_friendsbutton.json", + "type": "unknown" + }, + "button/locked": { + "file": "ui/ui_friendsbutton.json", + "type": "unknown" + }, + "social_factory_stackpanel_default": { + "file": "ui/ui_friendsbutton.json", + "type": "stack_panel" + }, + "social_factory_stackpanel_hovered": { + "file": "ui/ui_friendsbutton.json", + "type": "stack_panel" + }, + "friendsdrawer_button_content": { + "file": "ui/ui_friendsbutton.json", + "type": "stack_panel", + "children": [ + "social_factory_stackpanel", + "padding_middle", + "vertically_centered_text", + "padding_right" + ] + }, + "friendsdrawer_button_content/social_factory_stackpanel": { + "file": "ui/ui_friendsbutton.json", + "type": "unknown" + }, + "friendsdrawer_button_content/padding_middle": { + "file": "ui/ui_friendsbutton.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "friendsdrawer_button_content/vertically_centered_text": { + "file": "ui/ui_friendsbutton.json", + "type": "stack_panel", + "children": [ + "top_padding", + "profile_button_label" + ] + }, + "friendsdrawer_button_content/vertically_centered_text/top_padding": { + "file": "ui/ui_friendsbutton.json", + "type": "panel" + }, + "friendsdrawer_button_content/vertically_centered_text/profile_button_label": { + "file": "ui/ui_friendsbutton.json", + "type": "label", + "extend": { + "name": "new_ui_binding_button_label", + "namespace": "common_buttons" + } + }, + "friendsdrawer_button_content/padding_right": { + "file": "ui/ui_friendsbutton.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "friendsdrawer_hover_button_content": { + "file": "ui/ui_friendsbutton.json", + "type": "stack_panel", + "extend": { + "name": "friendsdrawer_button_content", + "namespace": "friendsbutton" + } + }, + "friends_drawer_popup": { + "file": "ui/ui_friendsbutton.json", + "type": "button", + "extend": { + "name": "static_tooltip_notification_panel", + "namespace": "common_buttons" + } + } + }, + "iconbutton": { + "iconbutton_animated_icon": { + "file": "ui/ui_iconbutton.json", + "type": "image" + }, + "button": { + "file": "ui/ui_iconbutton.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "iconbutton_button_content": { + "file": "ui/ui_iconbutton.json", + "type": "stack_panel", + "children": [ + "icon_wrapper", + "padding_middle", + "vertically_centered_text" + ] + }, + "iconbutton_button_content/icon_wrapper": { + "file": "ui/ui_iconbutton.json", + "type": "panel", + "children": [ + "icon_with_border" + ] + }, + "iconbutton_button_content/icon_wrapper/icon_with_border": { + "file": "ui/ui_iconbutton.json", + "type": "panel", + "children": [ + "iconbutton_animated_icon", + "border_black" + ] + }, + "iconbutton_button_content/icon_wrapper/icon_with_border/iconbutton_animated_icon": { + "file": "ui/ui_iconbutton.json", + "type": "image", + "extend": { + "name": "iconbutton_animated_icon", + "namespace": "iconbutton" + } + }, + "iconbutton_button_content/icon_wrapper/icon_with_border/border_black": { + "file": "ui/ui_iconbutton.json", + "type": "image", + "extend": { + "name": "focus_border_black", + "namespace": "common" + } + }, + "iconbutton_button_content/padding_middle": { + "file": "ui/ui_iconbutton.json", + "type": "panel", + "extend": { + "name": "empty_panel", + "namespace": "common" + } + }, + "iconbutton_button_content/vertically_centered_text": { + "file": "ui/ui_iconbutton.json", + "type": "stack_panel", + "children": [ + "top_padding", + "profile_button_label" + ] + }, + "iconbutton_button_content/vertically_centered_text/top_padding": { + "file": "ui/ui_iconbutton.json", + "type": "panel" + }, + "iconbutton_button_content/vertically_centered_text/profile_button_label": { + "file": "ui/ui_iconbutton.json", + "type": "label", + "extend": { + "name": "new_ui_binding_button_label", + "namespace": "common_buttons" + } + } + }, + "update_dimensions": { + "update_dimensions_update_and_play_button": { + "file": "ui/update_dimensions.json", + "type": "button", + "extend": { + "name": "popup_dialog_button", + "namespace": "popup_dialog" + } + }, + "update_dimensions_description": { + "file": "ui/update_dimensions.json", + "type": "label" + }, + "update_dimensions_label_panel": { + "file": "ui/update_dimensions.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "make_backup_checkbox": { + "file": "ui/update_dimensions.json", + "type": "panel", + "extend": { + "name": "checkbox", + "namespace": "common" + }, + "children": [ + "header_description_stack_panel" + ] + }, + "make_backup_checkbox/header_description_stack_panel": { + "file": "ui/update_dimensions.json", + "type": "stack_panel", + "children": [ + "checkbox_visuals", + "buffer_panel", + "another_panel" + ] + }, + "make_backup_checkbox/header_description_stack_panel/checkbox_visuals": { + "file": "ui/update_dimensions.json", + "type": "panel", + "extend": { + "name": "toggle_visuals", + "namespace": "common" + } + }, + "make_backup_checkbox/header_description_stack_panel/buffer_panel": { + "file": "ui/update_dimensions.json", + "type": "panel", + "children": [ + "label" + ] + }, + "make_backup_checkbox/header_description_stack_panel/buffer_panel/label": { + "file": "ui/update_dimensions.json", + "type": "label" + }, + "make_backup_checkbox/header_description_stack_panel/another_panel": { + "file": "ui/update_dimensions.json", + "type": "panel" + }, + "world_upgrade": { + "file": "ui/update_dimensions.json", + "type": "image" + }, + "update_dimensions_dialog": { + "file": "ui/update_dimensions.json", + "type": "panel", + "extend": { + "name": "main_panel_three_buttons", + "namespace": "common_dialogs" + }, + "children": [ + "common_panel", + "title_label", + "panel_indent", + "top_button_panel", + "bottom_button_panel", + "world_upgrade_image" + ] + }, + "update_dimensions_dialog/common_panel": { + "file": "ui/update_dimensions.json", + "type": "panel", + "extend": { + "name": "common_panel", + "namespace": "common" + } + }, + "update_dimensions_dialog/title_label": { + "file": "ui/update_dimensions.json", + "type": "panel", + "extend": { + "name": "title_label", + "namespace": "common_dialogs" + } + }, + "update_dimensions_dialog/panel_indent": { + "file": "ui/update_dimensions.json", + "type": "panel", + "children": [ + "inside_header_panel" + ] + }, + "update_dimensions_dialog/panel_indent/inside_header_panel": { + "file": "ui/update_dimensions.json", + "type": "unknown" + }, + "update_dimensions_dialog/top_button_panel": { + "file": "ui/update_dimensions.json", + "type": "unknown" + }, + "update_dimensions_dialog/bottom_button_panel": { + "file": "ui/update_dimensions.json", + "type": "unknown" + }, + "update_dimensions_dialog/world_upgrade_image": { + "file": "ui/update_dimensions.json", + "type": "image", + "extend": { + "name": "world_upgrade", + "namespace": "update_dimensions" + } + }, + "gamepad_helpers": { + "file": "ui/update_dimensions.json", + "type": "panel", + "children": [ + "gamepad_helper_a" + ] + }, + "gamepad_helpers/gamepad_helper_a": { + "file": "ui/update_dimensions.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_a", + "namespace": "common" + } + }, + "update_dimensions_screen": { + "file": "ui/update_dimensions.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "update_dimensions_screen_content": { + "file": "ui/update_dimensions.json", + "type": "panel", + "children": [ + "update_dimensions_dialog", + "gamepad_helpers" + ] + }, + "update_dimensions_screen_content/update_dimensions_dialog": { + "file": "ui/update_dimensions.json", + "type": "panel", + "extend": { + "name": "update_dimensions_dialog", + "namespace": "update_dimensions" + } + }, + "update_dimensions_screen_content/gamepad_helpers": { + "file": "ui/update_dimensions.json", + "type": "panel", + "extend": { + "name": "gamepad_helpers", + "namespace": "update_dimensions" + } + } + }, + "update_version": { + "update_version_screen": { + "file": "ui/update_version.json", + "type": "screen", + "extend": { + "name": "modal_screen", + "namespace": "common" + } + }, + "update_version_popup": { + "file": "ui/update_version.json", + "type": "panel", + "extend": { + "name": "main_panel_one_button", + "namespace": "common_dialogs" + } + }, + "background": { + "file": "ui/update_version.json", + "type": "image", + "extend": { + "name": "screen_background", + "namespace": "common" + } + }, + "update_version_content": { + "file": "ui/update_version.json", + "type": "stack_panel", + "children": [ + "top_of_version_panel", + "spacer_1px", + "update_body_text", + "spacer_1px_2" + ] + }, + "update_version_content/top_of_version_panel": { + "file": "ui/update_version.json", + "type": "stack_panel", + "extend": { + "name": "picture_and_patch_notes", + "namespace": "update_version" + } + }, + "update_version_content/spacer_1px": { + "file": "ui/update_version.json", + "type": "panel" + }, + "update_version_content/update_body_text": { + "file": "ui/update_version.json", + "type": "label", + "extend": { + "name": "update_body_text", + "namespace": "update_version" + } + }, + "update_version_content/spacer_1px_2": { + "file": "ui/update_version.json", + "type": "panel" + }, + "patch_notes_panel": { + "file": "ui/update_version.json", + "type": "image", + "children": [ + "patch_notes_text" + ] + }, + "patch_notes_panel/patch_notes_text": { + "file": "ui/update_version.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "picture_and_patch_notes": { + "file": "ui/update_version.json", + "type": "stack_panel", + "children": [ + "patch_notes_image_outline", + "patch_notes_panel" + ] + }, + "picture_and_patch_notes/patch_notes_image_outline": { + "file": "ui/update_version.json", + "type": "image", + "children": [ + "patch_notes_image" + ] + }, + "picture_and_patch_notes/patch_notes_image_outline/patch_notes_image": { + "file": "ui/update_version.json", + "type": "image" + }, + "picture_and_patch_notes/patch_notes_panel": { + "file": "ui/update_version.json", + "type": "image", + "extend": { + "name": "patch_notes_panel", + "namespace": "update_version" + } + }, + "patch_notes": { + "file": "ui/update_version.json", + "type": "panel", + "children": [ + "patch_notes_text" + ] + }, + "patch_notes/patch_notes_text": { + "file": "ui/update_version.json", + "type": "label" + }, + "update_body_text": { + "file": "ui/update_version.json", + "type": "label" + }, + "update_button": { + "file": "ui/update_version.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + } + }, + "world_recovery": { + "world_recovery_screen": { + "file": "ui/world_recovery_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "world_recovery_screen_content": { + "file": "ui/world_recovery_screen.json", + "type": "panel", + "children": [ + "dialog" + ] + }, + "world_recovery_screen_content/dialog": { + "file": "ui/world_recovery_screen.json", + "type": "panel", + "extend": { + "name": "main_panel_one_button", + "namespace": "common_dialogs" + } + }, + "description_panel": { + "file": "ui/world_recovery_screen.json", + "type": "panel", + "extend": { + "name": "tts_label_focus_wrapper", + "namespace": "common" + } + }, + "scrolling_panel": { + "file": "ui/world_recovery_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "description_label": { + "file": "ui/world_recovery_screen.json", + "type": "label" + }, + "button_panel": { + "file": "ui/world_recovery_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "background": { + "file": "ui/world_recovery_screen.json", + "type": "image", + "extend": { + "name": "screen_background", + "namespace": "common" + } + } + }, + "world_templates": { + "horizontal_padding": { + "file": "ui/world_templates_screen.json", + "type": "panel" + }, + "world_icon": { + "file": "ui/world_templates_screen.json", + "type": "image" + }, + "realms_icon": { + "file": "ui/world_templates_screen.json", + "type": "image" + }, + "label_background": { + "file": "ui/world_templates_screen.json", + "type": "image" + }, + "lock_icon": { + "file": "ui/world_templates_screen.json", + "type": "image" + }, + "realms_plus_icon": { + "file": "ui/world_templates_screen.json", + "type": "image", + "extend": { + "name": "store_offer_type_icon", + "namespace": "common_store" + } + }, + "new_world_toggle": { + "file": "ui/world_templates_screen.json", + "type": "panel", + "extend": { + "name": "dark_image_toggle", + "namespace": "common_toggles" + } + }, + "new_realm_toggle": { + "file": "ui/world_templates_screen.json", + "type": "panel", + "extend": { + "name": "dark_image_toggle", + "namespace": "common_toggles" + } + }, + "world_button_content": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "children": [ + "horizontal_padding_0", + "icon_panel", + "horizontal_padding_1", + "world_button_label_panel", + "horizontal_padding_2" + ] + }, + "world_button_content/horizontal_padding_0": { + "file": "ui/world_templates_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_padding", + "namespace": "world_templates" + } + }, + "world_button_content/icon_panel": { + "file": "ui/world_templates_screen.json", + "type": "panel" + }, + "world_button_content/horizontal_padding_1": { + "file": "ui/world_templates_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_padding", + "namespace": "world_templates" + } + }, + "world_button_content/world_button_label_panel": { + "file": "ui/world_templates_screen.json", + "type": "panel", + "children": [ + "world_button_label" + ] + }, + "world_button_content/world_button_label_panel/world_button_label": { + "file": "ui/world_templates_screen.json", + "type": "label", + "extend": { + "name": "world_button_label", + "namespace": "world_templates" + } + }, + "world_button_content/horizontal_padding_2": { + "file": "ui/world_templates_screen.json", + "type": "panel", + "extend": { + "name": "horizontal_padding", + "namespace": "world_templates" + } + }, + "world_button_label": { + "file": "ui/world_templates_screen.json", + "type": "label" + }, + "common_button_template": { + "file": "ui/world_templates_screen.json", + "type": "button", + "extend": { + "name": "light_glyph_button", + "namespace": "common_buttons" + } + }, + "generate_random": { + "file": "ui/world_templates_screen.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "help_button": { + "file": "ui/world_templates_screen.json", + "type": "button", + "extend": { + "name": "dark_text_button", + "namespace": "common_buttons" + } + }, + "grid_button_content_template": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "children": [ + "content" + ] + }, + "grid_button_content_template/content": { + "file": "ui/world_templates_screen.json", + "type": "unknown" + }, + "label_content_template": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "children": [ + "label_panel" + ] + }, + "label_content_template/label_panel": { + "file": "ui/world_templates_screen.json", + "type": "panel", + "children": [ + "label_panel_layout" + ] + }, + "label_content_template/label_panel/label_panel_layout": { + "file": "ui/world_templates_screen.json", + "type": "panel", + "children": [ + "label" + ] + }, + "label_content_template/label_panel/label_panel_layout/label": { + "file": "ui/world_templates_screen.json", + "type": "label" + }, + "my_templates_label": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "extend": { + "name": "label_content_template", + "namespace": "world_templates" + } + }, + "realms_plus_templates_label": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "extend": { + "name": "label_content_template", + "namespace": "world_templates" + } + }, + "custom_templates_label": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "extend": { + "name": "label_content_template", + "namespace": "world_templates" + } + }, + "generate_random_button": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "extend": { + "name": "grid_button_content_template", + "namespace": "world_templates" + } + }, + "realms_templates_info": { + "file": "ui/world_templates_screen.json", + "type": "image", + "extend": { + "name": "label_background", + "namespace": "world_templates" + }, + "children": [ + "info_label" + ] + }, + "realms_templates_info/info_label": { + "file": "ui/world_templates_screen.json", + "type": "label" + }, + "world_list_text": { + "file": "ui/world_templates_screen.json", + "type": "label" + }, + "world_template_screenshot": { + "file": "ui/world_templates_screen.json", + "type": "image", + "children": [ + "picture" + ] + }, + "world_template_screenshot/picture": { + "file": "ui/world_templates_screen.json", + "type": "image" + }, + "world_template_name": { + "file": "ui/world_templates_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "world_templates" + } + }, + "world_template_description": { + "file": "ui/world_templates_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "world_templates" + } + }, + "world_template_version": { + "file": "ui/world_templates_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "world_templates" + } + }, + "template_download_text": { + "file": "ui/world_templates_screen.json", + "type": "label", + "extend": { + "name": "world_list_text", + "namespace": "world_templates" + } + }, + "world_template_text_panel": { + "file": "ui/world_templates_screen.json", + "type": "panel", + "children": [ + "text_indent" + ] + }, + "world_template_text_panel/text_indent": { + "file": "ui/world_templates_screen.json", + "type": "panel", + "children": [ + "top_side", + "bottom_side" + ] + }, + "world_template_text_panel/text_indent/top_side": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "children": [ + "world_template_name", + "download_text_label" + ] + }, + "world_template_text_panel/text_indent/top_side/world_template_name": { + "file": "ui/world_templates_screen.json", + "type": "label", + "extend": { + "name": "world_template_name", + "namespace": "world_templates" + } + }, + "world_template_text_panel/text_indent/top_side/download_text_label": { + "file": "ui/world_templates_screen.json", + "type": "label", + "extend": { + "name": "template_download_text", + "namespace": "world_templates" + } + }, + "world_template_text_panel/text_indent/bottom_side": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "children": [ + "csb_icon", + "pad", + "world_template_description", + "world_template_version" + ] + }, + "world_template_text_panel/text_indent/bottom_side/csb_icon": { + "file": "ui/world_templates_screen.json", + "type": "panel", + "extend": { + "name": "csb_banner", + "namespace": "world_templates" + } + }, + "world_template_text_panel/text_indent/bottom_side/pad": { + "file": "ui/world_templates_screen.json", + "type": "panel" + }, + "world_template_text_panel/text_indent/bottom_side/world_template_description": { + "file": "ui/world_templates_screen.json", + "type": "label", + "extend": { + "name": "world_template_description", + "namespace": "world_templates" + } + }, + "world_template_text_panel/text_indent/bottom_side/world_template_version": { + "file": "ui/world_templates_screen.json", + "type": "label", + "extend": { + "name": "world_template_version", + "namespace": "world_templates" + } + }, + "csb_banner": { + "file": "ui/world_templates_screen.json", + "type": "panel", + "children": [ + "banner" + ] + }, + "csb_banner/banner": { + "file": "ui/world_templates_screen.json", + "type": "image" + }, + "world_template_content_panel": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "children": [ + "world_template_screenshot", + "world_template_text_panel", + "lock_panel" + ] + }, + "world_template_content_panel/world_template_screenshot": { + "file": "ui/world_templates_screen.json", + "type": "image", + "extend": { + "name": "world_template_screenshot", + "namespace": "world_templates" + } + }, + "world_template_content_panel/world_template_text_panel": { + "file": "ui/world_templates_screen.json", + "type": "panel", + "extend": { + "name": "world_template_text_panel", + "namespace": "world_templates" + } + }, + "world_template_content_panel/lock_panel": { + "file": "ui/world_templates_screen.json", + "type": "panel", + "children": [ + "lock_icon" + ] + }, + "world_template_content_panel/lock_panel/lock_icon": { + "file": "ui/world_templates_screen.json", + "type": "image", + "extend": { + "name": "lock_icon", + "namespace": "world_templates" + } + }, + "world_template_item_button": { + "file": "ui/world_templates_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "realms_plus_template_item_button": { + "file": "ui/world_templates_screen.json", + "type": "button", + "extend": { + "name": "dark_content_button", + "namespace": "common_buttons" + } + }, + "world_template_item": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "children": [ + "world_template_item_button" + ] + }, + "world_template_item/world_template_item_button": { + "file": "ui/world_templates_screen.json", + "type": "button", + "extend": { + "name": "world_template_item_button", + "namespace": "world_templates" + } + }, + "realms_plus_template_item": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "children": [ + "realms_plus_template_item_button" + ] + }, + "realms_plus_template_item/realms_plus_template_item_button": { + "file": "ui/world_templates_screen.json", + "type": "button", + "extend": { + "name": "realms_plus_template_item_button", + "namespace": "world_templates" + } + }, + "world_template_item_grid": { + "file": "ui/world_templates_screen.json", + "type": "grid" + }, + "see_more_templates_button": { + "file": "ui/world_templates_screen.json", + "type": "button", + "extend": { + "name": "dark_text_button", + "namespace": "common_buttons" + } + }, + "suggested_see_more_button": { + "file": "ui/world_templates_screen.json", + "type": "button", + "extend": { + "name": "see_more_templates_button", + "namespace": "world_templates" + } + }, + "realms_plus_see_more_button": { + "file": "ui/world_templates_screen.json", + "type": "button", + "extend": { + "name": "see_more_templates_button", + "namespace": "world_templates" + } + }, + "world_template_inventory_see_more_button": { + "file": "ui/world_templates_screen.json", + "type": "button", + "extend": { + "name": "see_more_templates_button", + "namespace": "world_templates" + } + }, + "custom_world_template_see_more_button": { + "file": "ui/world_templates_screen.json", + "type": "button", + "extend": { + "name": "see_more_templates_button", + "namespace": "world_templates" + } + }, + "world_template_section_factory": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel" + }, + "suggested_template_section_factory": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "extend": { + "name": "world_template_section_factory", + "namespace": "world_templates" + } + }, + "realms_plus_template_section_factory": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "extend": { + "name": "world_template_section_factory", + "namespace": "world_templates" + } + }, + "world_template_inventory_section_factory": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "extend": { + "name": "world_template_section_factory", + "namespace": "world_templates" + } + }, + "custom_world_template_section_factory": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "extend": { + "name": "world_template_section_factory", + "namespace": "world_templates" + } + }, + "custom_world_template_item_grid": { + "file": "ui/world_templates_screen.json", + "type": "grid" + }, + "no_owned_templates_text_label": { + "file": "ui/world_templates_screen.json", + "type": "label" + }, + "no_owned_templates_text": { + "file": "ui/world_templates_screen.json", + "type": "label", + "extend": { + "name": "no_owned_templates_text_label", + "namespace": "world_templates" + } + }, + "no_template_content_owned": { + "file": "ui/world_templates_screen.json", + "type": "image", + "children": [ + "no_template_content_owned_text_panel" + ] + }, + "no_template_content_owned/no_template_content_owned_text_panel": { + "file": "ui/world_templates_screen.json", + "type": "label", + "extend": { + "name": "no_owned_templates_text", + "namespace": "world_templates" + } + }, + "common_scrolling_panel": { + "file": "ui/world_templates_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "common_content": { + "file": "ui/world_templates_screen.json", + "type": "panel" + }, + "scrolling_offsets": { + "file": "ui/world_templates_screen.json", + "type": "panel", + "extend": { + "name": "common_scrolling_panel", + "namespace": "world_templates" + } + }, + "template_scroll_content": { + "file": "ui/world_templates_screen.json", + "type": "panel", + "extend": { + "name": "common_content", + "namespace": "world_templates" + }, + "children": [ + "scrolling_panel" + ] + }, + "template_scroll_content/scrolling_panel": { + "file": "ui/world_templates_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_offsets", + "namespace": "world_templates" + } + }, + "common_scroll_pane": { + "file": "ui/world_templates_screen.json", + "type": "panel" + }, + "template_scroll_panel": { + "file": "ui/world_templates_screen.json", + "type": "panel", + "extend": { + "name": "common_scroll_pane", + "namespace": "world_templates" + }, + "children": [ + "world_template_screen_content_stack_panel" + ] + }, + "template_scroll_panel/world_template_screen_content_stack_panel": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "extend": { + "name": "world_template_screen_content_stack_panel", + "namespace": "world_templates" + } + }, + "world_list_grids_stack": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "children": [ + "template_list_panel", + "store_panel", + "custom_template_panel", + "realms_info_panel" + ] + }, + "world_list_grids_stack/template_list_panel": { + "file": "ui/world_templates_screen.json", + "type": "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": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "extend": { + "name": "my_templates_label", + "namespace": "world_templates" + } + }, + "world_list_grids_stack/template_list_panel/world_template_inventory_section_factory": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "extend": { + "name": "world_template_inventory_section_factory", + "namespace": "world_templates" + } + }, + "world_list_grids_stack/template_list_panel/template_bottom_padding": { + "file": "ui/world_templates_screen.json", + "type": "panel" + }, + "world_list_grids_stack/store_panel": { + "file": "ui/world_templates_screen.json", + "type": "panel", + "children": [ + "loading_panel", + "store_grids" + ] + }, + "world_list_grids_stack/store_panel/loading_panel": { + "file": "ui/world_templates_screen.json", + "type": "panel", + "extend": { + "name": "progress_loading", + "namespace": "common_store" + } + }, + "world_list_grids_stack/store_panel/store_grids": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "children": [ + "realms_plus_list_panel", + "suggested_content_panel" + ] + }, + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel": { + "file": "ui/world_templates_screen.json", + "type": "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": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "extend": { + "name": "realms_plus_templates_label", + "namespace": "world_templates" + } + }, + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_section_factory": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "extend": { + "name": "realms_plus_template_section_factory", + "namespace": "world_templates" + } + }, + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_bottom_padding": { + "file": "ui/world_templates_screen.json", + "type": "panel" + }, + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel": { + "file": "ui/world_templates_screen.json", + "type": "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": { + "file": "ui/world_templates_screen.json", + "type": "label", + "extend": { + "name": "suggested_content_offers_title_label", + "namespace": "resource_packs" + } + }, + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_section_factory": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "extend": { + "name": "suggested_template_section_factory", + "namespace": "world_templates" + } + }, + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_bottom_padding": { + "file": "ui/world_templates_screen.json", + "type": "panel" + }, + "world_list_grids_stack/custom_template_panel": { + "file": "ui/world_templates_screen.json", + "type": "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": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "extend": { + "name": "custom_templates_label", + "namespace": "world_templates" + } + }, + "world_list_grids_stack/custom_template_panel/custom_world_template_section_factory": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "extend": { + "name": "custom_world_template_section_factory", + "namespace": "world_templates" + } + }, + "world_list_grids_stack/custom_template_panel/custom_template_list_bottom_padding": { + "file": "ui/world_templates_screen.json", + "type": "panel" + }, + "world_list_grids_stack/realms_info_panel": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "children": [ + "padding", + "realms_templates_info", + "open_uri_button" + ] + }, + "world_list_grids_stack/realms_info_panel/padding": { + "file": "ui/world_templates_screen.json", + "type": "panel" + }, + "world_list_grids_stack/realms_info_panel/realms_templates_info": { + "file": "ui/world_templates_screen.json", + "type": "image", + "extend": { + "name": "realms_templates_info", + "namespace": "world_templates" + } + }, + "world_list_grids_stack/realms_info_panel/open_uri_button": { + "file": "ui/world_templates_screen.json", + "type": "button", + "extend": { + "name": "open_account_setting_button", + "namespace": "disconnect" + } + }, + "world_list_grid_content": { + "file": "ui/world_templates_screen.json", + "type": "panel", + "children": [ + "world_list_grids_stack" + ] + }, + "world_list_grid_content/world_list_grids_stack": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "extend": { + "name": "world_list_grids_stack", + "namespace": "world_templates" + } + }, + "world_template_screen_content_stack_panel": { + "file": "ui/world_templates_screen.json", + "type": "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": { + "file": "ui/world_templates_screen.json", + "type": "panel" + }, + "world_template_screen_content_stack_panel/crossplatform_disabled_panel": { + "file": "ui/world_templates_screen.json", + "type": "image", + "extend": { + "name": "label_background", + "namespace": "world_templates" + }, + "children": [ + "disable_text" + ] + }, + "world_template_screen_content_stack_panel/crossplatform_disabled_panel/disable_text": { + "file": "ui/world_templates_screen.json", + "type": "label" + }, + "world_template_screen_content_stack_panel/crossplatform_disable_spacer": { + "file": "ui/world_templates_screen.json", + "type": "panel" + }, + "world_template_screen_content_stack_panel/generate_random_panel": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "extend": { + "name": "generate_random_button", + "namespace": "world_templates" + } + }, + "world_template_screen_content_stack_panel/generate_random_button_bottom_padding": { + "file": "ui/world_templates_screen.json", + "type": "panel" + }, + "world_template_screen_content_stack_panel/world_list_grid_content": { + "file": "ui/world_templates_screen.json", + "type": "panel", + "extend": { + "name": "world_list_grid_content", + "namespace": "world_templates" + } + }, + "open_account_setting_button": { + "file": "ui/world_templates_screen.json", + "type": "button", + "extend": { + "name": "hyperlink_button", + "namespace": "common_buttons" + } + }, + "world_templates_screen": { + "file": "ui/world_templates_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "world_templates_picker_content": { + "file": "ui/world_templates_screen.json", + "type": "panel", + "children": [ + "background" + ] + }, + "world_templates_picker_content/background": { + "file": "ui/world_templates_screen.json", + "type": "stack_panel", + "extend": { + "name": "fullscreen_header", + "namespace": "common" + } + } + }, + "xbl_console_qr_signin": { + "banner_fill": { + "file": "ui/xbl_console_qr_signin.json", + "type": "image" + }, + "main_panel_qr": { + "file": "ui/xbl_console_qr_signin.json", + "type": "stack_panel", + "children": [ + "left_panel", + "divider", + "right_panel" + ] + }, + "main_panel_qr/left_panel": { + "file": "ui/xbl_console_qr_signin.json", + "type": "stack_panel", + "extend": { + "name": "left_panel", + "namespace": "xbl_console_qr_signin" + } + }, + "main_panel_qr/divider": { + "file": "ui/xbl_console_qr_signin.json", + "type": "panel", + "extend": { + "name": "vertical_divider", + "namespace": "common" + } + }, + "main_panel_qr/right_panel": { + "file": "ui/xbl_console_qr_signin.json", + "type": "stack_panel", + "children": [ + "scrolling_panel_sizer" + ] + }, + "main_panel_qr/right_panel/scrolling_panel_sizer": { + "file": "ui/xbl_console_qr_signin.json", + "type": "panel", + "children": [ + "right_scroll_panel" + ] + }, + "main_panel_qr/right_panel/scrolling_panel_sizer/right_scroll_panel": { + "file": "ui/xbl_console_qr_signin.json", + "type": "button", + "extend": { + "name": "scroll_content_focus_border", + "namespace": "xbl_console_qr_signin" + } + }, + "common_scrolling_panel": { + "file": "ui/xbl_console_qr_signin.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "gamepad_helpers": { + "file": "ui/xbl_console_qr_signin.json", + "type": "panel", + "children": [ + "gamepad_helper_b" + ] + }, + "gamepad_helpers/gamepad_helper_b": { + "file": "ui/xbl_console_qr_signin.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_b", + "namespace": "common" + } + }, + "xbl_console_qr_signin": { + "file": "ui/xbl_console_qr_signin.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "xbl_console_qr_signin_screen_content": { + "file": "ui/xbl_console_qr_signin.json", + "type": "panel", + "children": [ + "gamepad_helpers", + "dialog" + ] + }, + "xbl_console_qr_signin_screen_content/gamepad_helpers": { + "file": "ui/xbl_console_qr_signin.json", + "type": "panel", + "extend": { + "name": "gamepad_helpers", + "namespace": "xbl_console_qr_signin" + } + }, + "xbl_console_qr_signin_screen_content/dialog": { + "file": "ui/xbl_console_qr_signin.json", + "type": "panel", + "extend": { + "name": "dialog", + "namespace": "xbl_console_qr_signin" + } + }, + "dialog": { + "file": "ui/xbl_console_qr_signin.json", + "type": "panel", + "extend": { + "name": "form_fitting_main_panel_no_buttons", + "namespace": "common_dialogs" + } + }, + "scroll_content_focus_border": { + "file": "ui/xbl_console_qr_signin.json", + "type": "button", + "extend": { + "name": "non_interact_focus_border_button", + "namespace": "common" + } + }, + "left_panel": { + "file": "ui/xbl_console_qr_signin.json", + "type": "stack_panel", + "children": [ + "left_header", + "padding_1", + "left_body", + "padding_2", + "qr_panel" + ] + }, + "left_panel/left_header": { + "file": "ui/xbl_console_qr_signin.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "left_panel/padding_1": { + "file": "ui/xbl_console_qr_signin.json", + "type": "panel" + }, + "left_panel/left_body": { + "file": "ui/xbl_console_qr_signin.json", + "type": "label" + }, + "left_panel/padding_2": { + "file": "ui/xbl_console_qr_signin.json", + "type": "panel" + }, + "left_panel/qr_panel": { + "file": "ui/xbl_console_qr_signin.json", + "type": "panel", + "children": [ + "qr_border", + "qr_code", + "bee_overlay" + ] + }, + "left_panel/qr_panel/qr_border": { + "file": "ui/xbl_console_qr_signin.json", + "type": "image" + }, + "left_panel/qr_panel/qr_code": { + "file": "ui/xbl_console_qr_signin.json", + "type": "custom" + }, + "left_panel/qr_panel/bee_overlay": { + "file": "ui/xbl_console_qr_signin.json", + "type": "image" + }, + "input_panel_wrapper": { + "file": "ui/xbl_console_qr_signin.json", + "type": "input_panel", + "children": [ + "r_scroll_panel" + ] + }, + "input_panel_wrapper/r_scroll_panel": { + "file": "ui/xbl_console_qr_signin.json", + "type": "stack_panel", + "extend": { + "name": "right_scroll_panel", + "namespace": "xbl_console_qr_signin" + } + }, + "right_scroll_panel": { + "file": "ui/xbl_console_qr_signin.json", + "type": "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": { + "file": "ui/xbl_console_qr_signin.json", + "type": "label", + "extend": { + "name": "minecraftTenLabel", + "namespace": "common" + } + }, + "right_scroll_panel/padding_1": { + "file": "ui/xbl_console_qr_signin.json", + "type": "panel" + }, + "right_scroll_panel/website_message_label": { + "file": "ui/xbl_console_qr_signin.json", + "type": "label" + }, + "right_scroll_panel/padding_2": { + "file": "ui/xbl_console_qr_signin.json", + "type": "panel" + }, + "right_scroll_panel/wrapper_panel_1": { + "file": "ui/xbl_console_qr_signin.json", + "type": "panel", + "children": [ + "banner_1" + ] + }, + "right_scroll_panel/wrapper_panel_1/banner_1": { + "file": "ui/xbl_console_qr_signin.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "xbl_console_qr_signin" + }, + "children": [ + "url_label" + ] + }, + "right_scroll_panel/wrapper_panel_1/banner_1/url_label": { + "file": "ui/xbl_console_qr_signin.json", + "type": "label" + }, + "right_scroll_panel/padding_3": { + "file": "ui/xbl_console_qr_signin.json", + "type": "panel" + }, + "right_scroll_panel/code_message_label": { + "file": "ui/xbl_console_qr_signin.json", + "type": "label" + }, + "right_scroll_panel/padding_4": { + "file": "ui/xbl_console_qr_signin.json", + "type": "panel" + }, + "right_scroll_panel/wrapper_panel_2": { + "file": "ui/xbl_console_qr_signin.json", + "type": "panel", + "children": [ + "banner_2" + ] + }, + "right_scroll_panel/wrapper_panel_2/banner_2": { + "file": "ui/xbl_console_qr_signin.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "xbl_console_qr_signin" + }, + "children": [ + "code_label" + ] + }, + "right_scroll_panel/wrapper_panel_2/banner_2/code_label": { + "file": "ui/xbl_console_qr_signin.json", + "type": "label" + }, + "right_scroll_panel/padding_5": { + "file": "ui/xbl_console_qr_signin.json", + "type": "panel" + }, + "right_scroll_panel/code_message_body1": { + "file": "ui/xbl_console_qr_signin.json", + "type": "label" + }, + "right_scroll_panel/padding_6": { + "file": "ui/xbl_console_qr_signin.json", + "type": "panel" + }, + "right_scroll_panel/code_message_body2": { + "file": "ui/xbl_console_qr_signin.json", + "type": "label" + }, + "right_scroll_panel/padding_7": { + "file": "ui/xbl_console_qr_signin.json", + "type": "panel" + }, + "right_scroll_panel/warning_messages": { + "file": "ui/xbl_console_qr_signin.json", + "type": "stack_panel", + "extend": { + "name": "ps4_warning_message_panel", + "namespace": "xbl_console_qr_signin" + } + }, + "ps4_warning_message_panel": { + "file": "ui/xbl_console_qr_signin.json", + "type": "stack_panel", + "children": [ + "sign_in_account_message", + "padding_1", + "permanent_linking_message" + ] + }, + "ps4_warning_message_panel/sign_in_account_message": { + "file": "ui/xbl_console_qr_signin.json", + "type": "label" + }, + "ps4_warning_message_panel/padding_1": { + "file": "ui/xbl_console_qr_signin.json", + "type": "panel" + }, + "ps4_warning_message_panel/permanent_linking_message": { + "file": "ui/xbl_console_qr_signin.json", + "type": "label" + } + }, + "xbl_console_signin": { + "banner_fill": { + "file": "ui/xbl_console_signin.json", + "type": "image" + }, + "main_panel": { + "file": "ui/xbl_console_signin.json", + "type": "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": { + "file": "ui/xbl_console_signin.json", + "type": "panel" + }, + "main_panel/message_label_panel": { + "file": "ui/xbl_console_signin.json", + "type": "stack_panel", + "children": [ + "message_label" + ] + }, + "main_panel/message_label_panel/message_label": { + "file": "ui/xbl_console_signin.json", + "type": "label" + }, + "main_panel/padding_1": { + "file": "ui/xbl_console_signin.json", + "type": "panel" + }, + "main_panel/website_message_label": { + "file": "ui/xbl_console_signin.json", + "type": "label" + }, + "main_panel/banner_1": { + "file": "ui/xbl_console_signin.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "xbl_console_signin" + }, + "children": [ + "url_label" + ] + }, + "main_panel/banner_1/url_label": { + "file": "ui/xbl_console_signin.json", + "type": "label" + }, + "main_panel/padding_2": { + "file": "ui/xbl_console_signin.json", + "type": "panel" + }, + "main_panel/code_message_label": { + "file": "ui/xbl_console_signin.json", + "type": "label" + }, + "main_panel/banner_2": { + "file": "ui/xbl_console_signin.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "xbl_console_signin" + }, + "children": [ + "code_label" + ] + }, + "main_panel/banner_2/code_label": { + "file": "ui/xbl_console_signin.json", + "type": "label" + }, + "gamepad_helpers": { + "file": "ui/xbl_console_signin.json", + "type": "panel", + "children": [ + "gamepad_helper_b" + ] + }, + "gamepad_helpers/gamepad_helper_b": { + "file": "ui/xbl_console_signin.json", + "type": "stack_panel", + "extend": { + "name": "gamepad_helper_b", + "namespace": "common" + } + }, + "xbl_console_signin": { + "file": "ui/xbl_console_signin.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "xbl_console_signin_screen_content": { + "file": "ui/xbl_console_signin.json", + "type": "panel", + "children": [ + "gamepad_helpers", + "dialog" + ] + }, + "xbl_console_signin_screen_content/gamepad_helpers": { + "file": "ui/xbl_console_signin.json", + "type": "panel", + "extend": { + "name": "gamepad_helpers", + "namespace": "xbl_console_signin" + } + }, + "xbl_console_signin_screen_content/dialog": { + "file": "ui/xbl_console_signin.json", + "type": "panel", + "extend": { + "name": "dialog", + "namespace": "xbl_console_signin" + } + }, + "dialog": { + "file": "ui/xbl_console_signin.json", + "type": "panel", + "extend": { + "name": "form_fitting_main_panel_no_buttons", + "namespace": "common_dialogs" + } + } + }, + "xbl_console_signin_succeeded": { + "banner_fill": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "image" + }, + "gamer_score_icon": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "image" + }, + "profile_pic": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "custom" + }, + "gamertag_label": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "label" + }, + "gamer_score_label": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "label" + }, + "gamer_score_panel": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "stack_panel", + "children": [ + "gamer_score_icon", + "padding_0", + "gamer_score_panel" + ] + }, + "gamer_score_panel/gamer_score_icon": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "image", + "extend": { + "name": "gamer_score_icon", + "namespace": "xbl_console_signin_succeeded" + } + }, + "gamer_score_panel/padding_0": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "panel" + }, + "gamer_score_panel/gamer_score_panel": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "panel", + "children": [ + "gamer_score" + ] + }, + "gamer_score_panel/gamer_score_panel/gamer_score": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "label", + "extend": { + "name": "gamer_score_label", + "namespace": "xbl_console_signin_succeeded" + } + }, + "button_panel": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "panel", + "children": [ + "play" + ] + }, + "button_panel/play": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "button", + "extend": { + "name": "light_text_button", + "namespace": "common_buttons" + } + }, + "text_panel": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "panel", + "children": [ + "new_account_text" + ] + }, + "text_panel/new_account_text": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "label" + }, + "third_party_platform_legal_text": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "panel", + "extend": { + "name": "text_panel", + "namespace": "xbl_console_signin_succeeded" + } + }, + "new_account_text_panel": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "panel", + "extend": { + "name": "text_panel", + "namespace": "xbl_console_signin_succeeded" + } + }, + "gamer_profile_panel": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "stack_panel", + "children": [ + "picture_panel", + "padding_1", + "info_panel" + ] + }, + "gamer_profile_panel/picture_panel": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "panel", + "children": [ + "banner" + ] + }, + "gamer_profile_panel/picture_panel/banner": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "image", + "extend": { + "name": "banner_fill", + "namespace": "xbl_console_signin_succeeded" + }, + "children": [ + "profile_pic" + ] + }, + "gamer_profile_panel/picture_panel/banner/profile_pic": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "custom", + "extend": { + "name": "profile_pic", + "namespace": "xbl_console_signin_succeeded" + } + }, + "gamer_profile_panel/padding_1": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "panel" + }, + "gamer_profile_panel/info_panel": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "panel", + "children": [ + "profile_info_panel" + ] + }, + "gamer_profile_panel/info_panel/profile_info_panel": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "stack_panel", + "children": [ + "gamertag_label", + "padding_0", + "gamer_score_panel" + ] + }, + "gamer_profile_panel/info_panel/profile_info_panel/gamertag_label": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "label", + "extend": { + "name": "gamertag_label", + "namespace": "xbl_console_signin_succeeded" + } + }, + "gamer_profile_panel/info_panel/profile_info_panel/padding_0": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "panel" + }, + "gamer_profile_panel/info_panel/profile_info_panel/gamer_score_panel": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "stack_panel", + "extend": { + "name": "gamer_score_panel", + "namespace": "xbl_console_signin_succeeded" + } + }, + "main_panel": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "stack_panel", + "children": [ + "profile", + "padding_0", + "third_party_legal_text_panel", + "padding_1", + "new_account_text_panel", + "padding_2", + "button_panel" + ] + }, + "main_panel/profile": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "stack_panel", + "extend": { + "name": "gamer_profile_panel", + "namespace": "xbl_console_signin_succeeded" + } + }, + "main_panel/padding_0": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "panel" + }, + "main_panel/third_party_legal_text_panel": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "panel", + "extend": { + "name": "third_party_platform_legal_text", + "namespace": "xbl_console_signin_succeeded" + } + }, + "main_panel/padding_1": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "panel" + }, + "main_panel/new_account_text_panel": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "panel", + "extend": { + "name": "new_account_text_panel", + "namespace": "xbl_console_signin_succeeded" + } + }, + "main_panel/padding_2": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "panel" + }, + "main_panel/button_panel": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "panel", + "extend": { + "name": "button_panel", + "namespace": "xbl_console_signin_succeeded" + } + }, + "xbl_console_signin_succeeded": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "xbl_console_signin_succeeded_screen_content": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "panel", + "children": [ + "dialog" + ] + }, + "xbl_console_signin_succeeded_screen_content/dialog": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "panel", + "extend": { + "name": "dialog", + "namespace": "xbl_console_signin_succeeded" + } + }, + "dialog": { + "file": "ui/xbl_console_signin_succeeded.json", + "type": "panel", + "extend": { + "name": "form_fitting_main_panel_no_buttons", + "namespace": "common_dialogs" + } + } + }, + "xbl_immediate_signin": { + "xbl_immediate_signin_screen": { + "file": "ui/xbl_immediate_signin.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "xbl_immediate_signin_screen_content": { + "file": "ui/xbl_immediate_signin.json", + "type": "panel", + "children": [ + "root_panel" + ] + }, + "xbl_immediate_signin_screen_content/root_panel": { + "file": "ui/xbl_immediate_signin.json", + "type": "panel" + } + }, + "win10_trial_conversion": { + "padding_horizontal": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel" + }, + "padding_vertical": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel" + }, + "padding_vertical_3": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel" + }, + "background_image": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "image" + }, + "title_image": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "image" + }, + "focus_border": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "image" + }, + "pack_image": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "image" + }, + "pack_image_panel": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "children": [ + "pack_image" + ] + }, + "pack_image_panel/pack_image": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "image", + "extend": { + "name": "pack_image_with_border", + "namespace": "win10_trial_conversion" + } + }, + "title_image_border": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "image", + "children": [ + "image" + ] + }, + "title_image_border/image": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "image", + "extend": { + "name": "title_image", + "namespace": "win10_trial_conversion" + } + }, + "pack_image_with_border": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "image", + "children": [ + "image" + ] + }, + "pack_image_with_border/image": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "image", + "extend": { + "name": "pack_image", + "namespace": "win10_trial_conversion" + } + }, + "label_panel": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "label" + }, + "button_panel": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "stack_panel", + "children": [ + "padding_5", + "buy_now_button", + "padding_6" + ] + }, + "button_panel/padding_5": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "win10_trial_conversion" + } + }, + "button_panel/buy_now_button": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "button", + "extend": { + "name": "buy_now_button", + "namespace": "win10_trial_conversion" + } + }, + "button_panel/padding_6": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "win10_trial_conversion" + } + }, + "buy_now_button": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "buy_now_label": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "children": [ + "button_label" + ] + }, + "buy_now_label/button_label": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "label", + "extend": { + "name": "label_panel", + "namespace": "win10_trial_conversion" + } + }, + "is_focused": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "image", + "extend": { + "name": "focus_border", + "namespace": "win10_trial_conversion" + } + }, + "filler_panel": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel" + }, + "focus_border_button": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "focus_border_button/default": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "extend": { + "name": "filler_panel", + "namespace": "win10_trial_conversion" + } + }, + "focus_border_button/hover": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "image", + "extend": { + "name": "is_focused", + "namespace": "win10_trial_conversion" + } + }, + "focus_border_button/pressed": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "image", + "extend": { + "name": "is_focused", + "namespace": "win10_trial_conversion" + } + }, + "grid_item": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "stack_panel", + "children": [ + "padding_1", + "pack_image_pane", + "padding_2", + "pack_panel", + "padding_3" + ] + }, + "grid_item/padding_1": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "win10_trial_conversion" + } + }, + "grid_item/pack_image_pane": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "extend": { + "name": "pack_image_panel", + "namespace": "win10_trial_conversion" + } + }, + "grid_item/padding_2": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "win10_trial_conversion" + } + }, + "grid_item/pack_panel": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "stack_panel", + "extend": { + "name": "pack_panel", + "namespace": "win10_trial_conversion" + } + }, + "grid_item/padding_3": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "win10_trial_conversion" + } + }, + "grid_item_vertical": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "children": [ + "grid_item_horizontal", + "pack_grid" + ] + }, + "grid_item_vertical/grid_item_horizontal": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "stack_panel", + "extend": { + "name": "grid_item", + "namespace": "win10_trial_conversion" + } + }, + "grid_item_vertical/pack_grid": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "button", + "extend": { + "name": "focus_border_button", + "namespace": "win10_trial_conversion" + } + }, + "pack_panel": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "stack_panel", + "children": [ + "packtitle", + "padding_2", + "packdesc" + ] + }, + "pack_panel/packtitle": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "label", + "extend": { + "name": "label_panel", + "namespace": "win10_trial_conversion" + } + }, + "pack_panel/padding_2": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "extend": { + "name": "padding_vertical", + "namespace": "win10_trial_conversion" + } + }, + "pack_panel/packdesc": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "label", + "extend": { + "name": "label_panel", + "namespace": "win10_trial_conversion" + } + }, + "collection_main_panel": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "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": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "extend": { + "name": "padding_vertical", + "namespace": "win10_trial_conversion" + } + }, + "collection_main_panel/title_panel": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "label", + "extend": { + "name": "label_panel", + "namespace": "win10_trial_conversion" + } + }, + "collection_main_panel/padding_2": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "extend": { + "name": "padding_vertical", + "namespace": "win10_trial_conversion" + } + }, + "collection_main_panel/title_image_panel": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "children": [ + "border_image" + ] + }, + "collection_main_panel/title_image_panel/border_image": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "image", + "extend": { + "name": "title_image_border", + "namespace": "win10_trial_conversion" + } + }, + "collection_main_panel/padding_3": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "extend": { + "name": "padding_vertical", + "namespace": "win10_trial_conversion" + } + }, + "collection_main_panel/offer_panel": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "stack_panel", + "children": [ + "padding_1", + "label_panel", + "padding_2" + ] + }, + "collection_main_panel/offer_panel/padding_1": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "win10_trial_conversion" + } + }, + "collection_main_panel/offer_panel/label_panel": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "children": [ + "offer_label" + ] + }, + "collection_main_panel/offer_panel/label_panel/offer_label": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "label", + "extend": { + "name": "label_panel", + "namespace": "win10_trial_conversion" + } + }, + "collection_main_panel/offer_panel/padding_2": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "win10_trial_conversion" + } + }, + "collection_main_panel/padding_4": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "extend": { + "name": "padding_vertical", + "namespace": "win10_trial_conversion" + } + }, + "collection_main_panel/button_panel": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "stack_panel", + "extend": { + "name": "button_panel", + "namespace": "win10_trial_conversion" + } + }, + "collection_main_panel/padding_5": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "extend": { + "name": "padding_vertical_3", + "namespace": "win10_trial_conversion" + } + }, + "collection_main_panel/include_panel": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "stack_panel", + "children": [ + "padding_1", + "include_label" + ] + }, + "collection_main_panel/include_panel/padding_1": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "win10_trial_conversion" + } + }, + "collection_main_panel/include_panel/include_label": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "label", + "extend": { + "name": "label_panel", + "namespace": "win10_trial_conversion" + } + }, + "collection_main_panel/padding_6": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "extend": { + "name": "padding_vertical", + "namespace": "win10_trial_conversion" + } + }, + "collection_main_panel/pack_list_grid": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "grid" + }, + "background_image_with_border": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "image", + "children": [ + "main_panel_no_buttons" + ] + }, + "background_image_with_border/main_panel_no_buttons": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "stack_panel", + "extend": { + "name": "collection_main_panel", + "namespace": "win10_trial_conversion" + } + }, + "win10_trial_conversion_main_panel": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "children": [ + "scrolling_panel" + ] + }, + "win10_trial_conversion_main_panel/scrolling_panel": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "extend": { + "name": "scrolling_panel", + "namespace": "common" + } + }, + "vertical_main_panel": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "stack_panel", + "children": [ + "padding_1", + "panel", + "padding_2" + ] + }, + "vertical_main_panel/padding_1": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "extend": { + "name": "padding_vertical", + "namespace": "win10_trial_conversion" + } + }, + "vertical_main_panel/panel": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "stack_panel", + "extend": { + "name": "horizontal_main_panel", + "namespace": "win10_trial_conversion" + } + }, + "vertical_main_panel/padding_2": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "extend": { + "name": "padding_vertical", + "namespace": "win10_trial_conversion" + } + }, + "horizontal_main_panel": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "stack_panel", + "children": [ + "padding_1", + "starter_collection", + "padding_2", + "master_collection" + ] + }, + "horizontal_main_panel/padding_1": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "win10_trial_conversion" + } + }, + "horizontal_main_panel/starter_collection": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "image", + "extend": { + "name": "background_image_with_border", + "namespace": "win10_trial_conversion" + } + }, + "horizontal_main_panel/padding_2": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "panel", + "extend": { + "name": "padding_horizontal", + "namespace": "win10_trial_conversion" + } + }, + "horizontal_main_panel/master_collection": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "image", + "extend": { + "name": "background_image_with_border", + "namespace": "win10_trial_conversion" + } + }, + "win10_trial_conversion_screen": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "screen", + "extend": { + "name": "base_screen", + "namespace": "common" + } + }, + "win10_trial_conversion_panel": { + "file": "ui/win10_trial_conversion_screen.json", + "type": "stack_panel", + "extend": { + "name": "fullscreen_header", + "namespace": "common" + } + } + } +} \ No newline at end of file diff --git a/src/compilers/bindings/Checker.ts b/src/compilers/bindings/Checker.ts index 0f4646c..16de11f 100644 --- a/src/compilers/bindings/Checker.ts +++ b/src/compilers/bindings/Checker.ts @@ -29,3 +29,7 @@ export function isCompileBinding(input: string) { export function isHasBinding(input: string) { return /#\w+/.test(input) } + +export function isString(input: string) { + return /^'.+'$/.test(input) +} diff --git a/src/compilers/bindings/Function.ts b/src/compilers/bindings/Function.ts index ae2a050..322e7b4 100644 --- a/src/compilers/bindings/Function.ts +++ b/src/compilers/bindings/Function.ts @@ -1,6 +1,7 @@ -import { RandomBindingString, ResolveBinding } from "../../components/Utils.js" +import { RandomBindingString, RandomString, ResolveBinding } from "../../components/Utils.js" import { BindingItem } from "../../types/properties/value.js" import { bindingFuntions } from "../Configuration.js" +import { isString } from "./Checker.js" import { Expression, GenBinding } from "./types.js" type CallbackRet = { @@ -140,6 +141,60 @@ export const defaultFunctions = { } }, + contains: (source_str, contains_str) => { + return { + value: `not ((${source_str} - ${contains_str}) = ${source_str})`, + } + }, + + starts_with: (source_str, start_str) => { + const prefix = `'asajs:${RandomString(5)}:'` + if (isString(source_str)) { + if (isString(start_str)) { + return { + value: `${source_str.slice(1, -1).startsWith(start_str.slice(1, -1))}`, + } + } else { + source_str = prefix.slice(0, -1) + source_str.slice(1) + const start_str_bind = RandomBindingString() + + return { + genBindings: [ + { + source: `${prefix} + ${start_str}`, + target: start_str_bind, + }, + ], + value: `not ((${source_str} - ${start_str_bind}) = ${source_str})`, + } + } + } else { + if (isString(start_str)) { + const strLength = start_str.length - 2 + return { + value: `('%.${strLength}s' * ${source_str} = ${start_str})`, + } + } else { + const source_str_bind = RandomBindingString() + const start_str_bind = RandomBindingString() + + return { + genBindings: [ + { + source: `${prefix} + ${source_str}`, + target: source_str_bind, + }, + { + source: `${prefix} + ${start_str}`, + target: start_str_bind, + }, + ], + value: `not ((${source_str_bind} - ${start_str_bind}) = ${source_str_bind})`, + } + } + } + }, + /** * Return a translatable string * @param key diff --git a/src/components/UI.ts b/src/components/UI.ts index 7deee84..71aa1d9 100644 --- a/src/components/UI.ts +++ b/src/components/UI.ts @@ -121,9 +121,16 @@ export class UI extends Class * @param name * @returns */ - addChild(child: UI, properties?: Properties, name?: string) { + addChild( + child: UI, + properties?: Properties, + name?: string, + callback?: (name: string) => void, + ) { if (this === child) throw new Error("Cannot add a child to itself") - this.controls.set(name || RandomString(16), [child, properties || {}]) + const childName = name || RandomString(16) + this.controls.set(childName, [child, properties || {}]) + callback?.(childName) return this } @@ -307,8 +314,12 @@ export class ModifyUI ex }) } - insertChild(child: UI, properties?: Properties) { - return this.insertFrontChild(child, properties) + insertChild( + child: UI, + properties?: Properties, + name?: string, + ) { + return this.insertFrontChild(child, properties, name) } replaceChild(where: S, child: UI, properties?: Properties) { diff --git a/src/components/Utils.ts b/src/components/Utils.ts index dc213e3..32b83ba 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -199,10 +199,12 @@ export function Modify>(namespace: T, const memoryUI = MemoryModify[paths[namespace][name]]?.[name] // @ts-ignore if (memoryUI) return memoryUI as ModifyUI, VanillaElementChilds> - if (!paths[namespace]) { + const path = paths[namespace] + + if (!path) { throw new Error(`Namespace '${namespace}' does not exist`) // @ts-ignore - } else if (!paths[namespace][name]) { + } else if (typeof path !== "string" && !paths[namespace][name]) { throw new Error(`Element '${name}' does not exist in namespace '${namespace}'`) } // @ts-ignore @@ -210,7 +212,7 @@ export function Modify>(namespace: T, namespace, name, // @ts-ignore - paths[namespace][name], + typeof path === "string" ? path : paths[namespace][name], ) // @ts-ignore ;(MemoryModify[paths[namespace][name]] ||= {})[name] = modifyUI diff --git a/src/types/enums/Items.ts b/src/types/enums/Items.ts index 87c52fc..40ad58a 100644 --- a/src/types/enums/Items.ts +++ b/src/types/enums/Items.ts @@ -557,6 +557,7 @@ export enum ItemAuxID { GOLDEN_BOOTS = 25296896, GOLDEN_CARROT = 20447232, GOLDEN_CHESTPLATE = 25165824, + GOLDEN_DANDELION = -71499776, GOLDEN_HELMET = 25100288, GOLDEN_HOE = 23920640, GOLDEN_HORSE_ARMOR = 37421056, diff --git a/src/types/properties/element/Control.ts b/src/types/properties/element/Control.ts index 7992fa5..5520f7d 100644 --- a/src/types/properties/element/Control.ts +++ b/src/types/properties/element/Control.ts @@ -18,6 +18,7 @@ export interface Control { draggable?: Value follows_cursor?: Value property_bag?: Value + collection_index?: Value property_bag_for_children?: Value [key: Binding]: Value [key: Variable]: Value diff --git a/src/types/vanilla/intellisense.ts b/src/types/vanilla/intellisense.ts index a7391a8..873616f 100644 --- a/src/types/vanilla/intellisense.ts +++ b/src/types/vanilla/intellisense.ts @@ -1330,10 +1330,20 @@ export type ChatType = { "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 }, + "new_messages": { type: T.IMAGE, children: 'focus_border' }, + "new_messages/focus_border": { type: T.IMAGE, children: 'stack' }, + "new_messages/focus_border/stack": { type: T.STACK_PANEL, children: 'arrow_icon' | 'separator' | 'tooltip_text' }, + "new_messages/focus_border/stack/arrow_icon": { type: T.IMAGE, children: string }, + "new_messages/focus_border/stack/separator": { type: T.PANEL, children: string }, + "new_messages/focus_border/stack/tooltip_text": { type: T.LABEL, 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 }, + "new_messages_button": { type: T.BUTTON, children: 'default' | 'pressed' | 'hover' }, + "new_messages_button/default": { type: T.IMAGE, children: string }, + "new_messages_button/pressed": { type: T.IMAGE, children: string }, + "new_messages_button/hover": { type: T.IMAGE, 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 }, @@ -1389,10 +1399,11 @@ export type ChatType = { "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": { type: T.PANEL, children: 'messages_panel' | 'chat_bottom_panel' | 'chat_top_panel' | 'new_messages_button' | '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/new_messages_button": { type: T.BUTTON, 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 }, @@ -5993,22 +6004,34 @@ export type CraftingType = { "tab_content_padding": { type: T.PANEL, children: string }, "creative_label": { type: T.LABEL, 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": { type: T.STACK_PANEL, children: 'vertical_padding_1' | 'pocket_vertical_padding_1' | 'creative_label_and_filter_toggle_holder' | 'vertical_padding_2' | 'pocket_vertical_padding_2' | 'pocket_vertical_padding_3' | 'search_and_filter_panel' | 'vertical_padding_3' | 'vertical_padding_3_1' | 'items_panel' }, "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/pocket_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' | 'pocket_horizontal_padding_1' }, "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/creative_label_and_filter_toggle_holder/pocket_horizontal_padding_1": { 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/pocket_vertical_padding_2": { type: T.PANEL, children: string }, + "tab_content/tab_content_search_bar_panel/pocket_vertical_padding_3": { 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' | 'pocket_horizontal_padding_1' }, "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/search_and_filter_panel/pocket_horizontal_padding_1": { 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/tab_content_search_bar_panel/vertical_padding_3_1": { type: T.PANEL, children: string }, + "tab_content/tab_content_search_bar_panel/items_panel": { type: T.PANEL, children: 'scroll_pane' | 'shadow_stack' }, + "tab_content/tab_content_search_bar_panel/items_panel/scroll_pane": { type: T.UNKNOWN, children: string }, + "tab_content/tab_content_search_bar_panel/items_panel/shadow_stack": { type: T.STACK_PANEL, children: 'shadow_container' | 'shadow_cutter' }, + "tab_content/tab_content_search_bar_panel/items_panel/shadow_stack/shadow_container": { type: T.PANEL, children: 'top_shadow' | 'top_overlay' }, + "tab_content/tab_content_search_bar_panel/items_panel/shadow_stack/shadow_container/top_shadow": { type: T.IMAGE, children: string }, + "tab_content/tab_content_search_bar_panel/items_panel/shadow_stack/shadow_container/top_overlay": { type: T.IMAGE, children: string }, + "tab_content/tab_content_search_bar_panel/items_panel/shadow_stack/shadow_cutter": { type: T.PANEL, 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 }, @@ -6505,7 +6528,8 @@ export type InviteType = { "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": { type: T.STACK_PANEL, children: 'invite_party_panel' | '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/invite_party_panel": { type: T.PANEL, children: string }, "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' }, @@ -6533,6 +6557,12 @@ export type InviteType = { "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 }, + "invite_party_panel": { type: T.PANEL, children: 'frame_label' | 'frame_description' | 'our_toggle' | 'border_outline' }, + "invite_party_panel/frame_label": { type: T.LABEL, children: string }, + "invite_party_panel/frame_description": { type: T.LABEL, children: string }, + "invite_party_panel/our_toggle": { type: T.TOGGLE, children: string }, + "invite_party_panel/border_outline": { type: T.IMAGE, children: string }, + "friend_button_test": { type: T.TOGGLE, 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 }, @@ -7459,6 +7489,9 @@ export type PauseType = { "take_screenshot_icon": { type: T.IMAGE, children: string }, "settings_icon": { type: T.IMAGE, children: string }, "achievements_icon": { type: T.IMAGE, children: string }, + "how_to_play_icon": { type: T.IMAGE, children: string }, + "store_icon": { type: T.IMAGE, children: string }, + "realms_stories_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 }, @@ -7523,16 +7556,53 @@ export type PauseType = { "invite_players_button": { type: T.BUTTON, children: string }, "buy_button": { type: T.BUTTON, children: string }, "quit_button": { type: T.BUTTON, children: string }, + "feedback_button_primary_panel": { type: T.PANEL, children: 'feedback_button_primary' }, + "feedback_button_primary_panel/feedback_button_primary": { type: T.BUTTON, children: string }, + "feedback_button_primary": { type: T.BUTTON, children: string }, + "icon_button_hover_text": { type: T.IMAGE, children: 'tooltip_text' }, + "icon_button_hover_text/tooltip_text": { type: T.LABEL, children: string }, + "icon_button_tooltip_trigger": { type: T.BUTTON, children: 'default' | 'pressed' | 'hover' }, + "icon_button_tooltip_trigger/default": { type: T.PANEL, children: string }, + "icon_button_tooltip_trigger/pressed": { type: T.PANEL, children: string }, + "icon_button_tooltip_trigger/hover": { type: T.IMAGE, children: string }, "feedback_button": { type: T.BUTTON, children: string }, - "feedback_icon_button": { type: T.PANEL, children: 'feedback_button' }, + "feedback_icon_button": { type: T.PANEL, children: 'feedback_button' | 'tooltip_trigger' }, "feedback_icon_button/feedback_button": { type: T.BUTTON, children: string }, + "feedback_icon_button/tooltip_trigger": { 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 }, + "how_to_play_button_small": { type: T.BUTTON, children: string }, + "how_to_play_button_small_with_tooltip": { type: T.PANEL, children: 'button' | 'tooltip_trigger' }, + "how_to_play_button_small_with_tooltip/button": { type: T.BUTTON, children: string }, + "how_to_play_button_small_with_tooltip/tooltip_trigger": { type: T.BUTTON, children: string }, + "achievements_button_small_with_tooltip": { type: T.PANEL, children: 'button' | 'tooltip_trigger' }, + "achievements_button_small_with_tooltip/button": { type: T.BUTTON, children: string }, + "achievements_button_small_with_tooltip/tooltip_trigger": { type: T.BUTTON, children: string }, "settings_button_small": { type: T.BUTTON, children: string }, + "settings_button_small_with_tooltip": { type: T.PANEL, children: 'button' | 'tooltip_trigger' }, + "settings_button_small_with_tooltip/button": { type: T.BUTTON, children: string }, + "settings_button_small_with_tooltip/tooltip_trigger": { type: T.BUTTON, children: string }, "take_screenshot_button": { type: T.BUTTON, children: string }, + "take_screenshot_button_with_tooltip": { type: T.PANEL, children: 'button' | 'tooltip_trigger' }, + "take_screenshot_button_with_tooltip/button": { type: T.BUTTON, children: string }, + "take_screenshot_button_with_tooltip/tooltip_trigger": { type: T.BUTTON, children: string }, + "take_screenshot_gamepad_button_with_tooltip": { type: T.PANEL, children: 'button' | 'tooltip_trigger' }, + "take_screenshot_gamepad_button_with_tooltip/button": { type: T.BUTTON, children: string }, + "take_screenshot_gamepad_button_with_tooltip/tooltip_trigger": { type: T.BUTTON, children: string }, + "store_button_small": { type: T.BUTTON, children: string }, + "store_button_small_disabled": { type: T.BUTTON, children: string }, + "store_icon_disabled": { type: T.IMAGE, children: string }, + "store_button_small_with_tooltip": { type: T.PANEL, children: 'enabled_button' | 'disabled_button' | 'tooltip_trigger' }, + "store_button_small_with_tooltip/enabled_button": { type: T.BUTTON, children: string }, + "store_button_small_with_tooltip/disabled_button": { type: T.BUTTON, children: string }, + "store_button_small_with_tooltip/tooltip_trigger": { type: T.BUTTON, children: string }, + "realms_stories_button_small": { type: T.BUTTON, children: string }, + "realms_stories_button_small_with_tooltip": { type: T.PANEL, children: 'button' | 'tooltip_trigger' }, + "realms_stories_button_small_with_tooltip/button": { type: T.BUTTON, children: string }, + "realms_stories_button_small_with_tooltip/tooltip_trigger": { 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' | 'top_right_panel' | 'gamepad_helpers' | 'keyboard_helpers' | 'debug_drawer_button_panel' }, "pause_screen_content/pause_screen_main_panels": { type: T.STACK_PANEL, children: string }, @@ -7555,18 +7625,27 @@ export type PauseType = { "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": { type: T.STACK_PANEL, children: 'fill_1' | 'side_padding' | 'small_settings_button' | 'small_settings_padding' | 'small_achievements_button' | 'small_achievements_padding' | 'small_how_to_play_button' | 'small_how_to_play_padding' | 'small_realms_stories_button' | 'small_realms_stories_padding' | 'small_store_button' | 'small_store_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_button/small_settings_btn": { type: T.PANEL, 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_button/small_achievements_btn": { type: T.PANEL, children: string }, "smaller_buttons_panel/stacked_column/small_achievements_padding": { type: T.PANEL, children: string }, + "smaller_buttons_panel/stacked_column/small_how_to_play_button": { type: T.INPUT_PANEL, children: 'small_how_to_play_btn' }, + "smaller_buttons_panel/stacked_column/small_how_to_play_button/small_how_to_play_btn": { type: T.PANEL, children: string }, + "smaller_buttons_panel/stacked_column/small_how_to_play_padding": { type: T.PANEL, children: string }, + "smaller_buttons_panel/stacked_column/small_realms_stories_button": { type: T.INPUT_PANEL, children: 'small_realms_stories_btn' }, + "smaller_buttons_panel/stacked_column/small_realms_stories_button/small_realms_stories_btn": { type: T.PANEL, children: string }, + "smaller_buttons_panel/stacked_column/small_realms_stories_padding": { type: T.PANEL, children: string }, + "smaller_buttons_panel/stacked_column/small_store_button": { type: T.INPUT_PANEL, children: 'small_store_btn' }, + "smaller_buttons_panel/stacked_column/small_store_button/small_store_btn": { type: T.PANEL, children: string }, + "smaller_buttons_panel/stacked_column/small_store_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/take_screenshot_btn/take_screenshot_button": { type: T.PANEL, children: string }, + "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_gamepad_button": { type: T.PANEL, 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 }, @@ -7607,7 +7686,7 @@ export type PauseType = { "pause_announcement_panel_green/horizontal_stack/pause_text": { type: T.IMAGE, children: string }, "pause_announcement_panel_green/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' | 'settings_button' | 'settings' | '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": { type: T.STACK_PANEL, children: 'title_image' | 'fill_1' | 'return_to_game_button' | 'return' | 'settings_button' | 'settings' | 'feedback_button_primary_panel' | 'feedback' | '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 }, @@ -7615,6 +7694,8 @@ export type PauseType = { "menu_background/button_panel/return": { type: T.PANEL, children: string }, "menu_background/button_panel/settings_button": { type: T.BUTTON, children: string }, "menu_background/button_panel/settings": { type: T.PANEL, children: string }, + "menu_background/button_panel/feedback_button_primary_panel": { type: T.PANEL, children: string }, + "menu_background/button_panel/feedback": { 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 }, @@ -8040,18 +8121,16 @@ export type PdpType = { "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": { type: T.STACK_PANEL, children: 'summary_title_and_author_panel' | 'pad_fill' | 'info_buttons_factory' }, "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/top/info/info_buttons_factory": { type: T.STACK_PANEL, children: string }, "summary_content_left_side/full_content/bottom": { type: T.PANEL, children: string }, + "info_buttons_factory": { type: T.STACK_PANEL, children: string }, + "ratings_summary": { type: T.STACK_PANEL, children: 'ratings_display' }, + "ratings_summary/ratings_display": { type: T.STACK_PANEL, children: 'rating' | 'summary_rating_button' }, + "ratings_summary/ratings_display/rating": { type: T.PANEL, children: string }, + "ratings_summary/ratings_display/summary_rating_button": { type: T.BUTTON, 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 }, @@ -8089,26 +8168,17 @@ export type PdpType = { "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": { type: T.STACK_PANEL, children: 'mashup_text_row' | 'mashup_line_two' | 'basic_vertical_glyphs' }, "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 }, + "mashup_glyph_tooltip_content/basic_vertical_glyphs": { 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 }, @@ -10033,6 +10103,11 @@ export type ProgressType = { "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 }, + "modal_ok_button_panel_with_retry": { type: T.PANEL, children: 'left_ok_button' | 'center_cancel_button' | 'center_ok_button' | 'right_retry_button' }, + "modal_ok_button_panel_with_retry/left_ok_button": { type: T.BUTTON, children: string }, + "modal_ok_button_panel_with_retry/center_cancel_button": { type: T.BUTTON, children: string }, + "modal_ok_button_panel_with_retry/center_ok_button": { type: T.BUTTON, children: string }, + "modal_ok_button_panel_with_retry/right_retry_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 }, @@ -10114,18 +10189,23 @@ export type ProgressType = { "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": { type: T.PANEL, children: 'common_panel' | 'content_wrapper' }, "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 }, + "world_modal_progress_panel/content_wrapper": { type: T.PANEL, children: 'base_content' | 'inside_content' }, + "world_modal_progress_panel/content_wrapper/base_content": { type: T.STACK_PANEL, children: 'vertical_title_padding' | 'title_text_panel' | 'vertical_text_padding' | 'progress_text_panel' }, + "world_modal_progress_panel/content_wrapper/base_content/vertical_title_padding": { type: T.PANEL, children: string }, + "world_modal_progress_panel/content_wrapper/base_content/title_text_panel": { type: T.PANEL, children: 'progress_title_text' }, + "world_modal_progress_panel/content_wrapper/base_content/title_text_panel/progress_title_text": { type: T.LABEL, children: string }, + "world_modal_progress_panel/content_wrapper/base_content/vertical_text_padding": { type: T.PANEL, children: string }, + "world_modal_progress_panel/content_wrapper/base_content/progress_text_panel": { type: T.PANEL, children: 'progress_bar_text' }, + "world_modal_progress_panel/content_wrapper/base_content/progress_text_panel/progress_bar_text": { type: T.LABEL, children: string }, + "world_modal_progress_panel/content_wrapper/inside_content": { type: T.STACK_PANEL, children: 'loading_bar_panel' | 'vertical_padding' | 'modal_button_panel' | 'vertical_padding_2' }, + "world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel": { type: T.PANEL, children: 'fancy_progress_loading_bars' | 'progress_loading_bars' }, + "world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel/fancy_progress_loading_bars": { type: T.PANEL, children: string }, + "world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel/progress_loading_bars": { type: T.IMAGE, children: string }, + "world_modal_progress_panel/content_wrapper/inside_content/vertical_padding": { type: T.PANEL, children: string }, + "world_modal_progress_panel/content_wrapper/inside_content/modal_button_panel": { type: T.UNKNOWN, children: string }, + "world_modal_progress_panel/content_wrapper/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' }, @@ -10200,8 +10280,7 @@ export type ProgressType = { "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": { type: T.STACK_PANEL, children: 'server_region_connected_text' | 'padding' | 'server_region_ping_icon' }, "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 }, @@ -10403,7 +10482,7 @@ export type RealmsPendingInvitationsType = { "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 }, + "realm_inviter_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 }, @@ -10816,68 +10895,10 @@ export type RealmsSettingsType = { "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": { 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' | '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 }, @@ -10887,18 +10908,16 @@ export type RealmsSettingsType = { "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": { type: T.PANEL, children: 'world_section' | 'players_section' | 'subscription_section' | 'invite_links_section' | 'advanced_section' | 'dev_options_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' }, @@ -12338,11 +12357,9 @@ export type SettingsType = { "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": { type: T.STACK_PANEL, children: 'spacer_0' | 'accessibility_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 }, @@ -12422,7 +12439,7 @@ export type SettingsType = { "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' | 'keyboard_and_mouse_section' | 'controller_section' | 'touch_section' | 'party_section' | 'general_tab_section' | 'account_section' | 'global_texture_pack_section' | 'storage_management_header' | 'storage_management_section' | 'edu_cloud_storage_section' | 'creator_section' | 'video_section' | 'view_subscriptions_prerelease_section' | 'view_subscriptions_section' | 'sound_section' | 'language_section' | '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": { type: T.STACK_PANEL, children: 'accessibility_section' | 'keyboard_and_mouse_section' | 'controller_section' | 'touch_section' | 'party_section' | 'general_tab_section' | 'account_section' | 'global_texture_pack_section' | 'storage_management_header' | 'storage_management_section' | 'edu_cloud_storage_section' | 'creator_section' | 'video_section' | 'view_subscriptions_prerelease_section' | 'view_subscriptions_section' | 'sound_section' | 'language_section' | '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' }, "section_content_panels/general_and_controls_sections/accessibility_section": { 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/controller_section": { type: T.STACK_PANEL, children: string }, @@ -12450,7 +12467,6 @@ export type SettingsType = { "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 }, @@ -12602,7 +12618,7 @@ export type ControlsSectionType = { export type GeneralSectionType = { "general_button": { type: T.PANEL, 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": { 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' | 'pause_menu_on_focus_lost' | '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 }, @@ -12628,6 +12644,7 @@ export type GeneralSectionType = { "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/pause_menu_on_focus_lost": { 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 }, @@ -12816,6 +12833,13 @@ export type GeneralSectionType = { "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 }, + "editor_toggles_panel": { type: T.STACK_PANEL, children: 'section_panel_1' | 'primary_panel' }, + "editor_toggles_panel/section_panel_1": { type: T.PANEL, children: 'section_divider' }, + "editor_toggles_panel/section_panel_1/section_divider": { type: T.IMAGE, children: string }, + "editor_toggles_panel/primary_panel": { type: T.STACK_PANEL, children: 'content_log_section_label' | 'content_log_section_label_spacer' | 'clipboard_setting' }, + "editor_toggles_panel/primary_panel/content_log_section_label": { type: T.LABEL, children: string }, + "editor_toggles_panel/primary_panel/content_log_section_label_spacer": { type: T.PANEL, children: string }, + "editor_toggles_panel/primary_panel/clipboard_setting": { 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 }, @@ -12862,12 +12886,13 @@ export type GeneralSectionType = { "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": { type: T.STACK_PANEL, children: 'editor_toggle' | 'creator_toggles' | 'debugger_toggles_panel' | 'diagnostics_toggle_panel' | 'watchdog_toggles_panel' | 'editor_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/editor_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 }, @@ -12881,7 +12906,7 @@ export type GeneralSectionType = { "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": { 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' | 'texture_streaming_toggle' | 'spacer_37' | '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 }, @@ -12984,6 +13009,8 @@ export type GeneralSectionType = { "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/texture_streaming_toggle": { type: T.PANEL, children: string }, + "video_section/spacer_37": { 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 }, @@ -13228,7 +13255,7 @@ export type GeneralSectionType = { "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": { type: T.STACK_PANEL, children: 'option_toggle_treatment_override' | 'spacer_0' | 'override_treatment_options_panel' | 'treatments_label_panel' | 'treatment_grid' | 'unused_treatments_label_panel' | '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' }, @@ -13242,13 +13269,9 @@ export type GeneralSectionType = { "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' }, @@ -13367,7 +13390,7 @@ export type GeneralSectionType = { "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_show_test_running_text' | '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_authentication_option' | 'reset_report_timer_option' | 'reset_online_safety_option' | 'reset_low_ping_warning_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": { 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_show_test_running_text' | '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_authentication_option' | 'reset_report_timer_option' | 'reset_online_safety_option' | 'reset_show_hardcore_warning_option' | 'reset_low_ping_warning_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 }, @@ -13450,6 +13473,7 @@ export type GeneralSectionType = { "debug_section/reset_authentication_option": { type: T.BUTTON, 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_show_hardcore_warning_option": { type: T.BUTTON, children: string }, "debug_section/reset_low_ping_warning_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 }, @@ -13546,7 +13570,7 @@ export type GeneralSectionType = { "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": { 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' | 'end_of_other_options_divider' | 'end_of_other_options_spacer' | 'debug_data_label' | 'debug_data_label_spacer' | 'option_continuous_repaint' | 'option_show_paint_rects' | 'option_show_element_aabb' | 'option_emulate_touch_events' | 'end_of_debug_data_divider' | 'end_of_debug_data_spacer' | '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 }, @@ -13607,6 +13631,18 @@ export type GeneralSectionType = { "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/end_of_other_options_divider": { type: T.PANEL, children: 'section_divider' }, + "ui_debug_section/end_of_other_options_divider/section_divider": { type: T.IMAGE, children: string }, + "ui_debug_section/end_of_other_options_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/debug_data_label": { type: T.LABEL, children: string }, + "ui_debug_section/debug_data_label_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/option_continuous_repaint": { type: T.PANEL, children: string }, + "ui_debug_section/option_show_paint_rects": { type: T.PANEL, children: string }, + "ui_debug_section/option_show_element_aabb": { type: T.PANEL, children: string }, + "ui_debug_section/option_emulate_touch_events": { type: T.PANEL, children: string }, + "ui_debug_section/end_of_debug_data_divider": { type: T.PANEL, children: 'section_divider' }, + "ui_debug_section/end_of_debug_data_divider/section_divider": { type: T.IMAGE, children: string }, + "ui_debug_section/end_of_debug_data_spacer": { 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 }, @@ -13948,6 +13984,7 @@ export type SettingsCommonType = { "option_custom_control": { type: T.PANEL, children: string }, "option_info_label": { type: T.PANEL, children: string }, "dynamic_dialog_screen": { type: T.SCREEN, children: string }, + "dynamic_dialog_fullscreen": { 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' }, @@ -18432,6 +18469,7 @@ export type CommonType = { "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 }, + "container_gamepad_helpers_pocket": { 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 }, @@ -18441,6 +18479,10 @@ export type CommonType = { "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 }, + "container_x_gamepad_helper": { type: T.STACK_PANEL, children: string }, + "container_y_gamepad_helper": { type: T.STACK_PANEL, children: string }, + "container_a_gamepad_helper": { type: T.STACK_PANEL, children: string }, + "container_b_gamepad_helper": { 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' }, @@ -18626,6 +18668,8 @@ export type CommonType = { "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 }, + "mapped_scroll_panel": { type: T.PANEL, children: string }, + "scroll_panel_pocket": { 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 }, @@ -19355,6 +19399,8 @@ export type CommonDialogsType = { } export type CommonTabsType = { + "empty_tab_panel": { type: T.PANEL, children: 'img' }, + "empty_tab_panel/img": { type: T.UNKNOWN, children: string }, "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' }, @@ -19365,8 +19411,11 @@ export type CommonTabsType = { "tab_top": { type: T.PANEL, children: string }, "tab_left": { type: T.PANEL, children: string }, "tab_right": { type: T.PANEL, children: string }, + "pocket_empty_tab_panel": { type: T.PANEL, children: string }, "pocket_tab_left": { type: T.PANEL, children: string }, + "pocket_left_tab_v2": { type: T.PANEL, children: string }, "pocket_tab_right": { type: T.PANEL, children: string }, + "pocket_right_tab_v2": { 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' }, diff --git a/src/types/vanilla/paths.ts b/src/types/vanilla/paths.ts index 595b3c7..989a533 100644 --- a/src/types/vanilla/paths.ts +++ b/src/types/vanilla/paths.ts @@ -1,19474 +1,210 @@ export const paths = { - "achievement": { - "empty_progress_bar_icon": "ui/achievement_screen.json", - "full_progress_bar_icon_base": "ui/achievement_screen.json", - }, - "add_external_server": { - "play_button": "ui/add_external_server_screen.json", - "play_disabled_button": "ui/add_external_server_screen.json", - "remove_button": "ui/add_external_server_screen.json", - "save_button": "ui/add_external_server_screen.json", - "save_disabled_button": "ui/add_external_server_screen.json", - "text_edit_group": "ui/add_external_server_screen.json", - "text_edit_group/name_label": "ui/add_external_server_screen.json", - "text_edit_group/edit_box": "ui/add_external_server_screen.json", - "title_text": "ui/add_external_server_screen.json", - "content_panel": "ui/add_external_server_screen.json", - "content_panel/name_edit": "ui/add_external_server_screen.json", - "content_panel/ip_edit": "ui/add_external_server_screen.json", - "content_panel/port_edit": "ui/add_external_server_screen.json", - "main_panel": "ui/add_external_server_screen.json", - "main_panel/common_panel": "ui/add_external_server_screen.json", - "main_panel/title": "ui/add_external_server_screen.json", - "main_panel/main_content": "ui/add_external_server_screen.json", - "main_panel/play": "ui/add_external_server_screen.json", - "main_panel/play_disabled": "ui/add_external_server_screen.json", - "main_panel/remove": "ui/add_external_server_screen.json", - "main_panel/save": "ui/add_external_server_screen.json", - "main_panel/save_disabled": "ui/add_external_server_screen.json", - "gamepad_helpers": "ui/add_external_server_screen.json", - "gamepad_helpers/gamepad_helper_a": "ui/add_external_server_screen.json", - "add_external_server_screen_new": "ui/add_external_server_screen.json", - "add_external_server_screen_edit": "ui/add_external_server_screen.json", - "add_external_server_screen": "ui/add_external_server_screen.json", - "add_external_server_screen_content": "ui/add_external_server_screen.json", - "add_external_server_screen_content/root_panel": "ui/add_external_server_screen.json", - "add_external_server_screen_content/root_panel/gamepad_helpers": "ui/add_external_server_screen.json", - "add_external_server_screen_content/root_panel/main_panel": "ui/add_external_server_screen.json", - }, - "adhoc_inprogress": { - "title_text": "ui/adhoc_inprogess_screen.json", - "main_panel": "ui/adhoc_inprogess_screen.json", - "main_panel/common_panel": "ui/adhoc_inprogess_screen.json", - "main_panel/title": "ui/adhoc_inprogess_screen.json", - "main_panel/main_content": "ui/adhoc_inprogess_screen.json", - "main_panel/progress_loading_bars": "ui/adhoc_inprogess_screen.json", - "adhoc_inprogress_screen": "ui/adhoc_inprogess_screen.json", - "adhoc_inprogress_screen_content": "ui/adhoc_inprogess_screen.json", - "adhoc_inprogress_screen_content/root_panel": "ui/adhoc_inprogess_screen.json", - "adhoc_inprogress_screen_content/root_panel/main_panel": "ui/adhoc_inprogess_screen.json", - }, - "adhoc": { - "online_button": "ui/adhoc_screen.json", - "local_button": "ui/adhoc_screen.json", - "title_text": "ui/adhoc_screen.json", - "content_panel": "ui/adhoc_screen.json", - "content_panel/title_text": "ui/adhoc_screen.json", - "main_panel": "ui/adhoc_screen.json", - "main_panel/common_panel": "ui/adhoc_screen.json", - "main_panel/title": "ui/adhoc_screen.json", - "main_panel/main_content": "ui/adhoc_screen.json", - "main_panel/online": "ui/adhoc_screen.json", - "main_panel/local": "ui/adhoc_screen.json", - "gamepad_helpers": "ui/adhoc_screen.json", - "gamepad_helpers/gamepad_helper_a": "ui/adhoc_screen.json", - "adhoc_screen": "ui/adhoc_screen.json", - "adhoc_screen_content": "ui/adhoc_screen.json", - "adhoc_screen_content/root_panel": "ui/adhoc_screen.json", - "adhoc_screen_content/root_panel/gamepad_helpers": "ui/adhoc_screen.json", - "adhoc_screen_content/root_panel/main_panel": "ui/adhoc_screen.json", - }, - "anvil": { - "generic_label": "ui/anvil_screen.json", - "anvil_icon": "ui/anvil_screen.json", - "title_label": "ui/anvil_screen.json", - "anvil_icon_panel": "ui/anvil_screen.json", - "anvil_icon_panel/anvil_icon": "ui/anvil_screen.json", - "text_edit_control": "ui/anvil_screen.json", - "icon_and_text_panel": "ui/anvil_screen.json", - "icon_and_text_panel/anvil_icon_panel": "ui/anvil_screen.json", - "icon_and_text_panel/anvil_title_and_text_panel": "ui/anvil_screen.json", - "title_panel": "ui/anvil_screen.json", - "title_panel/title_label": "ui/anvil_screen.json", - "text_edit_panel": "ui/anvil_screen.json", - "text_edit_panel/text_edit_control": "ui/anvil_screen.json", - "anvil_title_and_text_panel": "ui/anvil_screen.json", - "anvil_title_and_text_panel/title_panel": "ui/anvil_screen.json", - "anvil_title_and_text_panel/text_edit_panel": "ui/anvil_screen.json", - "plus_sign_icon": "ui/anvil_screen.json", - "arrow_icon": "ui/anvil_screen.json", - "cross_out_icon": "ui/anvil_screen.json", - "anvil_output_slot_button": "ui/anvil_screen.json", - "anvil_item_slot": "ui/anvil_screen.json", - "anvil_item_slot/container_item": "ui/anvil_screen.json", - "recipe_grid": "ui/anvil_screen.json", - "recipe_grid/input_item_slot": "ui/anvil_screen.json", - "recipe_grid/plus": "ui/anvil_screen.json", - "recipe_grid/plus/plus_sign_icon": "ui/anvil_screen.json", - "recipe_grid/material_item_slot": "ui/anvil_screen.json", - "recipe_grid/yields": "ui/anvil_screen.json", - "recipe_grid/yields/arrow_icon": "ui/anvil_screen.json", - "recipe_grid/yields/cross_out_icon": "ui/anvil_screen.json", - "recipe_grid/result_item_slot": "ui/anvil_screen.json", - "cost_label": "ui/anvil_screen.json", - "cost_label/gray": "ui/anvil_screen.json", - "recipe_panel": "ui/anvil_screen.json", - "recipe_panel/recipe_grid": "ui/anvil_screen.json", - "recipe_panel/cost_label_0": "ui/anvil_screen.json", - "recipe_panel/cost_label_1": "ui/anvil_screen.json", - "top_half_panel": "ui/anvil_screen.json", - "top_half_panel/icon_and_text_panel": "ui/anvil_screen.json", - "top_half_panel/recipe_panel": "ui/anvil_screen.json", - "anvil_panel": "ui/anvil_screen.json", - "anvil_panel/container_gamepad_helpers": "ui/anvil_screen.json", - "anvil_panel/selected_item_details_factory": "ui/anvil_screen.json", - "anvil_panel/item_lock_notification_factory": "ui/anvil_screen.json", - "anvil_panel/root_panel": "ui/anvil_screen.json", - "anvil_panel/root_panel/common_panel": "ui/anvil_screen.json", - "anvil_panel/root_panel/anvil_screen_inventory": "ui/anvil_screen.json", - "anvil_panel/root_panel/anvil_screen_inventory/top_half_panel": "ui/anvil_screen.json", - "anvil_panel/root_panel/anvil_screen_inventory/inventory_panel_bottom_half_with_label": "ui/anvil_screen.json", - "anvil_panel/root_panel/anvil_screen_inventory/hotbar_grid": "ui/anvil_screen.json", - "anvil_panel/root_panel/anvil_screen_inventory/inventory_take_progress_icon_button": "ui/anvil_screen.json", - "anvil_panel/root_panel/inventory_selected_icon_button": "ui/anvil_screen.json", - "anvil_panel/root_panel/gamepad_cursor": "ui/anvil_screen.json", - "anvil_panel/flying_item_renderer": "ui/anvil_screen.json", - "anvil_screen": "ui/anvil_screen.json", - }, - "anvil_pocket": { - "generic_label": "ui/anvil_screen_pocket.json", - "background_image": "ui/anvil_screen_pocket.json", - "arrow_icon": "ui/anvil_screen_pocket.json", - "cost_label": "ui/anvil_screen_pocket.json", - "cost_label/gray": "ui/anvil_screen_pocket.json", - "title_label": "ui/anvil_screen_pocket.json", - "text_edit_control": "ui/anvil_screen_pocket.json", - "anvil_title_and_text_panel": "ui/anvil_screen_pocket.json", - "anvil_title_and_text_panel/title_label": "ui/anvil_screen_pocket.json", - "anvil_title_and_text_panel/text_edit_control": "ui/anvil_screen_pocket.json", - "slots_panel": "ui/anvil_screen_pocket.json", - "slots_panel/input_slot": "ui/anvil_screen_pocket.json", - "slots_panel/material_slot": "ui/anvil_screen_pocket.json", - "slots_panel/result_slot": "ui/anvil_screen_pocket.json", - "slots_panel/plus_sign": "ui/anvil_screen_pocket.json", - "slots_panel/arrow": "ui/anvil_screen_pocket.json", - "slots_panel/arrow/cross_out": "ui/anvil_screen_pocket.json", - "anvil_contents_panel": "ui/anvil_screen_pocket.json", - "anvil_contents_panel/red_cost": "ui/anvil_screen_pocket.json", - "anvil_contents_panel/green_cost": "ui/anvil_screen_pocket.json", - "anvil_contents_panel/slots_panel": "ui/anvil_screen_pocket.json", - "anvil_contents_panel/anvil_title_and_text_panel": "ui/anvil_screen_pocket.json", - "inventory_grid": "ui/anvil_screen_pocket.json", - "inventory_content": "ui/anvil_screen_pocket.json", - "inventory_content/scrolling_panel": "ui/anvil_screen_pocket.json", - "inventory_and_anvil_panel": "ui/anvil_screen_pocket.json", - "inventory_and_anvil_panel/inventory_half_screen": "ui/anvil_screen_pocket.json", - "inventory_and_anvil_panel/inventory_half_screen/inventory_content": "ui/anvil_screen_pocket.json", - "inventory_and_anvil_panel/anvil_half_screen": "ui/anvil_screen_pocket.json", - "inventory_and_anvil_panel/anvil_half_screen/anvil_contents_panel": "ui/anvil_screen_pocket.json", - "header": "ui/anvil_screen_pocket.json", - "header/header_background": "ui/anvil_screen_pocket.json", - "header/legacy_pocket_close_button": "ui/anvil_screen_pocket.json", - "header/panel": "ui/anvil_screen_pocket.json", - "header/panel/title_label": "ui/anvil_screen_pocket.json", - "header_and_content_stack_panel": "ui/anvil_screen_pocket.json", - "header_and_content_stack_panel/header": "ui/anvil_screen_pocket.json", - "header_and_content_stack_panel/inventory_and_anvil_panel": "ui/anvil_screen_pocket.json", - "anvil_panel": "ui/anvil_screen_pocket.json", - "anvil_panel/bg": "ui/anvil_screen_pocket.json", - "anvil_panel/root_panel": "ui/anvil_screen_pocket.json", - "anvil_panel/header_and_content_stack_panel": "ui/anvil_screen_pocket.json", - "anvil_panel/container_gamepad_helpers": "ui/anvil_screen_pocket.json", - "anvil_panel/inventory_selected_icon_button": "ui/anvil_screen_pocket.json", - "anvil_panel/hold_icon": "ui/anvil_screen_pocket.json", - "anvil_panel/selected_item_details_factory": "ui/anvil_screen_pocket.json", - "anvil_panel/item_lock_notification_factory": "ui/anvil_screen_pocket.json", - "anvil_panel/flying_item_renderer": "ui/anvil_screen_pocket.json", - }, - "authentication_modals": { - "modal_dialog_label": "ui/authentication_modals.json", - "modal_dialog_content": "ui/authentication_modals.json", - "modal_dialog_content/body_text": "ui/authentication_modals.json", - "modal_dialog_content/button_wrapper": "ui/authentication_modals.json", - "modal_dialog_content/button_wrapper/buttons": "ui/authentication_modals.json", - "modal_dialog_content/button_wrapper/buttons/left": "ui/authentication_modals.json", - "modal_dialog_content/button_wrapper/buttons/padding": "ui/authentication_modals.json", - "modal_dialog_content/button_wrapper/buttons/right": "ui/authentication_modals.json", - "modal_dialog_frame": "ui/authentication_modals.json", - "modal_dialog_frame/title": "ui/authentication_modals.json", - "modal_dialog_frame/close": "ui/authentication_modals.json", - "modal_dialog_frame/black_tint_image": "ui/authentication_modals.json", - "modal_dialog_frame/black_tint_image/content": "ui/authentication_modals.json", - "ad_modal_dialog": "ui/authentication_modals.json", - }, - "authentication": { - "nothing": "ui/authentication_screen.json", - "tts_control": "ui/authentication_screen.json", - "split_button_panel": "ui/authentication_screen.json", - "split_button_panel/buttons": "ui/authentication_screen.json", - "split_button_panel/buttons/a": "ui/authentication_screen.json", - "split_button_panel/buttons/paddding": "ui/authentication_screen.json", - "split_button_panel/buttons/b": "ui/authentication_screen.json", - "vertical_split_button_panel": "ui/authentication_screen.json", - "fixed_width_wrapper": "ui/authentication_screen.json", - "fixed_width_wrapper/content": "ui/authentication_screen.json", - "sign_in_button": "ui/authentication_screen.json", - "download_button": "ui/authentication_screen.json", - "smooth_label": "ui/authentication_screen.json", - "smooth_bound_label": "ui/authentication_screen.json", - "title_label": "ui/authentication_screen.json", - "eula_hyperlink": "ui/authentication_screen.json", - "accept_eula_button": "ui/authentication_screen.json", - "eula_content": "ui/authentication_screen.json", - "eula_content/prompt_wrapper": "ui/authentication_screen.json", - "eula_content/prompt_wrapper/border": "ui/authentication_screen.json", - "eula_content/prompt_wrapper/prompt_text": "ui/authentication_screen.json", - "eula_content/padding": "ui/authentication_screen.json", - "eula_content/buttons": "ui/authentication_screen.json", - "eula": "ui/authentication_screen.json", - "version": "ui/authentication_screen.json", - "version/label": "ui/authentication_screen.json", - "version/label_background": "ui/authentication_screen.json", - "view_terms_button": "ui/authentication_screen.json", - "privacy_policy_button": "ui/authentication_screen.json", - "agree_panel": "ui/authentication_screen.json", - "agree_panel/checkbox_control": "ui/authentication_screen.json", - "agree_panel/i_agree_label": "ui/authentication_screen.json", - "term_item": "ui/authentication_screen.json", - "term_item/item": "ui/authentication_screen.json", - "terms_and_conditions_panel": "ui/authentication_screen.json", - "terms_and_conditions_panel/terms_string_panel": "ui/authentication_screen.json", - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": "ui/authentication_screen.json", - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree": "ui/authentication_screen.json", - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": "ui/authentication_screen.json", - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": "ui/authentication_screen.json", - "confirmation_panel": "ui/authentication_screen.json", - "confirmation_panel/confirm_button": "ui/authentication_screen.json", - "scroll_stack_panel": "ui/authentication_screen.json", - "scroll_stack_panel/border": "ui/authentication_screen.json", - "scroll_stack_panel/terms": "ui/authentication_screen.json", - "purchase_confirm_content": "ui/authentication_screen.json", - "purchase_confirm_content/header_padding": "ui/authentication_screen.json", - "purchase_confirm_content/panel_wrap": "ui/authentication_screen.json", - "purchase_confirm_content/panel_wrap/scrolling_panel": "ui/authentication_screen.json", - "purchase_confirm_content/terms_and_conditions_panel": "ui/authentication_screen.json", - "purchase_confirm_content/button_padding": "ui/authentication_screen.json", - "purchase_confirm_content/confirmation_panel": "ui/authentication_screen.json", - "purchase_confirm_content/padding": "ui/authentication_screen.json", - "purchase_prompt_content": "ui/authentication_screen.json", - "purchase_prompt_content/prompt_wrap": "ui/authentication_screen.json", - "purchase_prompt_content/prompt_wrap/border": "ui/authentication_screen.json", - "purchase_prompt_content/prompt_wrap/prompt": "ui/authentication_screen.json", - "purchase_prompt_content/purchase_wrap_centering_container": "ui/authentication_screen.json", - "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap": "ui/authentication_screen.json", - "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/purchase": "ui/authentication_screen.json", - "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/padding_middle": "ui/authentication_screen.json", - "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/signout": "ui/authentication_screen.json", - "purchase_prompt": "ui/authentication_screen.json", - "purchase_confirm": "ui/authentication_screen.json", - "purchase_panel": "ui/authentication_screen.json", - "purchase_panel/prompt": "ui/authentication_screen.json", - "purchase_panel/confirm": "ui/authentication_screen.json", - "title_panel": "ui/authentication_screen.json", - "title_panel/title_label_wrapper": "ui/authentication_screen.json", - "hyperlink_panel": "ui/authentication_screen.json", - "hyperlink_panel/link_stack": "ui/authentication_screen.json", - "hyperlink_panel/link_stack/link1": "ui/authentication_screen.json", - "hyperlink_panel/link_stack/link2": "ui/authentication_screen.json", - "hyperlink_panel/link_stack/padding": "ui/authentication_screen.json", - "auth_screen": "ui/authentication_screen.json", - "sign_in_content": "ui/authentication_screen.json", - "sign_in_content/body_text": "ui/authentication_screen.json", - "sign_in_content/body_hyperlink": "ui/authentication_screen.json", - "sign_in_content/sign_in_wrapper": "ui/authentication_screen.json", - "sign_in_content/sign_in_wrapper/button": "ui/authentication_screen.json", - "sign_in_content/download_wrapper": "ui/authentication_screen.json", - "sign_in_content/download_wrapper/button": "ui/authentication_screen.json", - "authentication_screen_content": "ui/authentication_screen.json", - "authentication_screen_content/debug": "ui/authentication_screen.json", - "authentication_screen_content/client_version": "ui/authentication_screen.json", - "authentication_screen_content/client_version/version": "ui/authentication_screen.json", - "authentication_screen_content/sign_in": "ui/authentication_screen.json", - "authentication_screen_content/sign_in_ios": "ui/authentication_screen.json", - "authentication_screen_content/pack_progress": "ui/authentication_screen.json", - "authentication_screen_content/welcome": "ui/authentication_screen.json", - "authentication_screen_content/demo": "ui/authentication_screen.json", - "authentication_screen_content/eula": "ui/authentication_screen.json", - "authentication_screen_content/purchase_panel": "ui/authentication_screen.json", - "authentication_screen_content/popup_dialog_factory": "ui/authentication_screen.json", - "popup_content_base": "ui/authentication_screen.json", - "popup_content_base/message": "ui/authentication_screen.json", - "popup_content_base/message/border": "ui/authentication_screen.json", - "popup_content_base/message/text": "ui/authentication_screen.json", - "popup_content_base/content": "ui/authentication_screen.json", - "popup_content_base/footer_padding": "ui/authentication_screen.json", - "popup_dialog": "ui/authentication_screen.json", - "popup_dialog/dialog": "ui/authentication_screen.json", - "trial_info_ios_additional_content": "ui/authentication_screen.json", - "trial_info_ios_additional_content/dismiss": "ui/authentication_screen.json", - "popup_dialog_trial_info_ios": "ui/authentication_screen.json", - "student_message_panel": "ui/authentication_screen.json", - "trial_info_additional_content": "ui/authentication_screen.json", - "trial_info_additional_content/buttons": "ui/authentication_screen.json", - "generic_welcome_additional_content": "ui/authentication_screen.json", - "generic_welcome_additional_content/button_wrapper": "ui/authentication_screen.json", - "generic_welcome_additional_content/button_wrapper/buttons": "ui/authentication_screen.json", - "popup_dialog_trial_info": "ui/authentication_screen.json", - "popup_dialog_generic_welcome": "ui/authentication_screen.json", - "popup_message": "ui/authentication_screen.json", - "popup_message/main_message": "ui/authentication_screen.json", - "popup_message/extra_message": "ui/authentication_screen.json", - "popup_message/padding": "ui/authentication_screen.json", - "popup_message_student": "ui/authentication_screen.json", - "popup_hyperlink": "ui/authentication_screen.json", - "popup_purchase_link": "ui/authentication_screen.json", - "popup_dismiss_button": "ui/authentication_screen.json", - "pack_progress_content": "ui/authentication_screen.json", - "pack_progress_content/top_padding": "ui/authentication_screen.json", - "pack_progress_content/loading_text_panel": "ui/authentication_screen.json", - "pack_progress_content/loading_text_panel/loading_text": "ui/authentication_screen.json", - "pack_progress_content/loading_bar_panel": "ui/authentication_screen.json", - "pack_progress_content/loading_bar_panel/loading_bar": "ui/authentication_screen.json", - "pack_progress_content/loading_padding": "ui/authentication_screen.json", - "pack_progress_content/skip_panel": "ui/authentication_screen.json", - "pack_progress_content/skip_panel/skip_button": "ui/authentication_screen.json", - "pack_progress_content/bottom_padding": "ui/authentication_screen.json", - "sign_in_ios_content": "ui/authentication_screen.json", - "sign_in_ios_content/body_text": "ui/authentication_screen.json", - "sign_in_ios_content/body_hyperlink": "ui/authentication_screen.json", - "sign_in_ios_content/signin_ios_button_panel": "ui/authentication_screen.json", - "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap": "ui/authentication_screen.json", - "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap/prompt": "ui/authentication_screen.json", - "sign_in_ios_content/signin_ios_button_panel/buttons": "ui/authentication_screen.json", - "sign_in_ios_content/signin_ios_button_panel/pad_footer": "ui/authentication_screen.json", - "sign_in_ios_content/error_sign_in_panel": "ui/authentication_screen.json", - "sign_in_ios_content/error_sign_in_panel/button": "ui/authentication_screen.json", - "sign_in_ios_content/error_download_panel": "ui/authentication_screen.json", - "sign_in_ios_content/error_download_panel/button": "ui/authentication_screen.json", - "sign_in_ios_button": "ui/authentication_screen.json", - "to_app_store": "ui/authentication_screen.json", - "debug_panel": "ui/authentication_screen.json", - "debug_panel/state_label": "ui/authentication_screen.json", - "debug_panel/state_text_box": "ui/authentication_screen.json", - "debug_panel/open_popup": "ui/authentication_screen.json", - "debug_panel/refresh_popup": "ui/authentication_screen.json", - "debug_panel/reset": "ui/authentication_screen.json", - "debug_panel/toggle_ios": "ui/authentication_screen.json", - "authentication_popup_link_button": "ui/authentication_screen.json", - "authentication_popup_link_button/top_padding": "ui/authentication_screen.json", - "authentication_popup_link_button/link_button": "ui/authentication_screen.json", - "authentication_popup_contents": "ui/authentication_screen.json", - "authentication_popup_contents/initial_padding": "ui/authentication_screen.json", - "authentication_popup_contents/body": "ui/authentication_screen.json", - "authentication_popup_contents/learn_more_link": "ui/authentication_screen.json", - "authentication_popup_contents/link2": "ui/authentication_screen.json", - "authentication_popup_contents/end_padding": "ui/authentication_screen.json", - "resizeable_scrolling_panel": "ui/authentication_screen.json", - "authentication_popup_content_panel": "ui/authentication_screen.json", - "authentication_popup_button": "ui/authentication_screen.json", - "authentication_popup_one_button": "ui/authentication_screen.json", - "authentication_popup_one_button/button": "ui/authentication_screen.json", - "authentication_popup_two_buttons": "ui/authentication_screen.json", - "authentication_popup_two_buttons/first_button": "ui/authentication_screen.json", - "authentication_popup_two_buttons/button_padding": "ui/authentication_screen.json", - "authentication_popup_two_buttons/second_button": "ui/authentication_screen.json", - "authentication_popup_lower_button_panel": "ui/authentication_screen.json", - "authentication_popup_lower_button_panel/one_button": "ui/authentication_screen.json", - "authentication_popup_lower_button_panel/two_buttons": "ui/authentication_screen.json", - "authentication_popup": "ui/authentication_screen.json", - }, - "auto_save_info": { - "auto_save": "ui/auto_save_info_screen.json", - "accept_label": "ui/auto_save_info_screen.json", - "accept_label/button_label": "ui/auto_save_info_screen.json", - "accept_button": "ui/auto_save_info_screen.json", - "main_panel": "ui/auto_save_info_screen.json", - "main_panel/common_panel": "ui/auto_save_info_screen.json", - "main_panel/title_label": "ui/auto_save_info_screen.json", - "main_panel/message_label": "ui/auto_save_info_screen.json", - "main_panel/save_icon": "ui/auto_save_info_screen.json", - "main_panel/a": "ui/auto_save_info_screen.json", - "main_panel/gamepad_helpers": "ui/auto_save_info_screen.json", - "gamepad_helpers": "ui/auto_save_info_screen.json", - "gamepad_helpers/gamepad_helper_a": "ui/auto_save_info_screen.json", - "auto_save_info_screen": "ui/auto_save_info_screen.json", - "auto_save_info_screen_content": "ui/auto_save_info_screen.json", - "auto_save_info_screen_content/root_panel": "ui/auto_save_info_screen.json", - "auto_save_info_screen_content/root_panel/main_panel": "ui/auto_save_info_screen.json", - }, - "beacon": { - "selected_item_details": "ui/beacon_screen.json", - "beacon_panel": "ui/beacon_screen.json", - "beacon_panel/container_gamepad_helpers": "ui/beacon_screen.json", - "beacon_panel/selected_item_details_factory": "ui/beacon_screen.json", - "beacon_panel/item_lock_notification_factory": "ui/beacon_screen.json", - "beacon_panel/root_panel": "ui/beacon_screen.json", - "beacon_panel/root_panel/common_panel": "ui/beacon_screen.json", - "beacon_panel/root_panel/beacon_inventory": "ui/beacon_screen.json", - "beacon_panel/root_panel/beacon_inventory/beacon_inner_panel": "ui/beacon_screen.json", - "beacon_panel/root_panel/beacon_inventory/payment_panel": "ui/beacon_screen.json", - "beacon_panel/root_panel/beacon_inventory/inventory_panel_bottom_half": "ui/beacon_screen.json", - "beacon_panel/root_panel/beacon_inventory/hotbar_grid_template": "ui/beacon_screen.json", - "beacon_panel/root_panel/beacon_inventory/inventory_selected_icon_button": "ui/beacon_screen.json", - "beacon_panel/root_panel/beacon_inventory/gamepad_cursor": "ui/beacon_screen.json", - "beacon_panel/flying_item_renderer": "ui/beacon_screen.json", - "inventory_slot_button": "ui/beacon_screen.json", - "hotbar_slot_button": "ui/beacon_screen.json", - "image_atlas": "ui/beacon_screen.json", - "pyramid_image": "ui/beacon_screen.json", - "pyramid_panel": "ui/beacon_screen.json", - "pyramid_panel/level1": "ui/beacon_screen.json", - "pyramid_panel/level2": "ui/beacon_screen.json", - "pyramid_panel/level3": "ui/beacon_screen.json", - "pyramid_panel/level4": "ui/beacon_screen.json", - "item_seperator": "ui/beacon_screen.json", - "item_renderer": "ui/beacon_screen.json", - "usable_items_panel": "ui/beacon_screen.json", - "usable_items_panel/netherite": "ui/beacon_screen.json", - "usable_items_panel/item_seperator_0": "ui/beacon_screen.json", - "usable_items_panel/emerald": "ui/beacon_screen.json", - "usable_items_panel/item_seperator_1": "ui/beacon_screen.json", - "usable_items_panel/diamond": "ui/beacon_screen.json", - "usable_items_panel/item_seperator_2": "ui/beacon_screen.json", - "usable_items_panel/gold": "ui/beacon_screen.json", - "usable_items_panel/item_seperator_3": "ui/beacon_screen.json", - "usable_items_panel/iron": "ui/beacon_screen.json", - "base_image": "ui/beacon_screen.json", - "hover_text": "ui/beacon_screen.json", - "hover_state": "ui/beacon_screen.json", - "hover_state/hover_text": "ui/beacon_screen.json", - "button_unchecked_default": "ui/beacon_screen.json", - "button_unchecked_hover": "ui/beacon_screen.json", - "button_unchecked_hover/hover_text": "ui/beacon_screen.json", - "button_checked_hover": "ui/beacon_screen.json", - "button_checked_hover/hover_text": "ui/beacon_screen.json", - "button_locked": "ui/beacon_screen.json", - "button_locked_hover": "ui/beacon_screen.json", - "button_locked_hover/hover_text": "ui/beacon_screen.json", - "button_checked": "ui/beacon_screen.json", - "toggle_button": "ui/beacon_screen.json", - "base_button": "ui/beacon_screen.json", - "base_button/default": "ui/beacon_screen.json", - "base_button/hover": "ui/beacon_screen.json", - "base_button/pressed": "ui/beacon_screen.json", - "active_button": "ui/beacon_screen.json", - "inactive_button": "ui/beacon_screen.json", - "inactive_button/default": "ui/beacon_screen.json", - "inactive_button/hover": "ui/beacon_screen.json", - "selected_button": "ui/beacon_screen.json", - "selected_button/default": "ui/beacon_screen.json", - "selected_button/hover": "ui/beacon_screen.json", - "secondary_effect_base": "ui/beacon_screen.json", - "speed_secondary": "ui/beacon_screen.json", - "haste_secondary": "ui/beacon_screen.json", - "resist_secondary": "ui/beacon_screen.json", - "jump_secondary": "ui/beacon_screen.json", - "strength_secondary": "ui/beacon_screen.json", - "image_template": "ui/beacon_screen.json", - "image_template/base_image": "ui/beacon_screen.json", - "secondary_effect_images": "ui/beacon_screen.json", - "secondary_effect_images/speed_secondary": "ui/beacon_screen.json", - "secondary_effect_images/haste_secondary": "ui/beacon_screen.json", - "secondary_effect_images/resist_secondary": "ui/beacon_screen.json", - "secondary_effect_images/jump_secondary": "ui/beacon_screen.json", - "secondary_effect_images/strength_secondary": "ui/beacon_screen.json", - "toggle_template": "ui/beacon_screen.json", - "toggle_template/toggle_button": "ui/beacon_screen.json", - "button_template": "ui/beacon_screen.json", - "button_template/active_button": "ui/beacon_screen.json", - "button_template/inactive_button": "ui/beacon_screen.json", - "button_template/image_template": "ui/beacon_screen.json", - "panel_template": "ui/beacon_screen.json", - "button_panel": "ui/beacon_screen.json", - "button_panel/speed_panel": "ui/beacon_screen.json", - "button_panel/speed_panel/toggle_template": "ui/beacon_screen.json", - "button_panel/haste_panel": "ui/beacon_screen.json", - "button_panel/resist_panel": "ui/beacon_screen.json", - "button_panel/jump_panel": "ui/beacon_screen.json", - "button_panel/strength_panel": "ui/beacon_screen.json", - "button_panel/regen_panel": "ui/beacon_screen.json", - "button_panel/extra_panel": "ui/beacon_screen.json", - "payment_panel": "ui/beacon_screen.json", - "payment_panel/confirm_panel": "ui/beacon_screen.json", - "payment_panel/cancel_panel": "ui/beacon_screen.json", - "payment_panel/ingredient_item": "ui/beacon_screen.json", - "payment_panel/usable_items_panel": "ui/beacon_screen.json", - "beacon_label": "ui/beacon_screen.json", - "beacon_inner_panel": "ui/beacon_screen.json", - "beacon_inner_panel/button_panel": "ui/beacon_screen.json", - "beacon_inner_panel/pyramid_panel": "ui/beacon_screen.json", - "beacon_inner_panel/middle_strip": "ui/beacon_screen.json", - "beacon_inner_panel/primary_power_label": "ui/beacon_screen.json", - "beacon_inner_panel/secondary_power_label": "ui/beacon_screen.json", - "beacon_screen": "ui/beacon_screen.json", - }, - "beacon_pocket": { - "generic_label": "ui/beacon_screen_pocket.json", - "panel_outline": "ui/beacon_screen_pocket.json", - "dark_bg": "ui/beacon_screen_pocket.json", - "background_image": "ui/beacon_screen_pocket.json", - "item_seperator": "ui/beacon_screen_pocket.json", - "item_renderer": "ui/beacon_screen_pocket.json", - "usable_items_panel": "ui/beacon_screen_pocket.json", - "usable_items_panel/netherite": "ui/beacon_screen_pocket.json", - "usable_items_panel/item_seperator_0": "ui/beacon_screen_pocket.json", - "usable_items_panel/emerald": "ui/beacon_screen_pocket.json", - "usable_items_panel/item_seperator_1": "ui/beacon_screen_pocket.json", - "usable_items_panel/diamond": "ui/beacon_screen_pocket.json", - "usable_items_panel/item_seperator_2": "ui/beacon_screen_pocket.json", - "usable_items_panel/gold": "ui/beacon_screen_pocket.json", - "usable_items_panel/item_seperator_3": "ui/beacon_screen_pocket.json", - "usable_items_panel/iron": "ui/beacon_screen_pocket.json", - "pyramid_image": "ui/beacon_screen_pocket.json", - "pyramid_panel": "ui/beacon_screen_pocket.json", - "pyramid_panel/pyramid_image": "ui/beacon_screen_pocket.json", - "background_panel": "ui/beacon_screen_pocket.json", - "beacon_background": "ui/beacon_screen_pocket.json", - "beacon_background/middle_strip": "ui/beacon_screen_pocket.json", - "inventory_grid": "ui/beacon_screen_pocket.json", - "inventory_content": "ui/beacon_screen_pocket.json", - "inventory_content/scrolling_panel": "ui/beacon_screen_pocket.json", - "highlight_hover_square": "ui/beacon_screen_pocket.json", - "highlight_hover_square/highlight_square": "ui/beacon_screen_pocket.json", - "button_unchecked_default": "ui/beacon_screen_pocket.json", - "button_unchecked_hover": "ui/beacon_screen_pocket.json", - "button_unchecked_hover/highlight_hover_square": "ui/beacon_screen_pocket.json", - "button_checked": "ui/beacon_screen_pocket.json", - "button_checked_hover": "ui/beacon_screen_pocket.json", - "button_checked_hover/highlight_hover_square": "ui/beacon_screen_pocket.json", - "button_locked": "ui/beacon_screen_pocket.json", - "button_locked_hover": "ui/beacon_screen_pocket.json", - "button_locked_hover/highlight_hover_square": "ui/beacon_screen_pocket.json", - "toggle_button": "ui/beacon_screen_pocket.json", - "base_button": "ui/beacon_screen_pocket.json", - "base_button/default": "ui/beacon_screen_pocket.json", - "base_button/hover": "ui/beacon_screen_pocket.json", - "base_button/hover/highlight_hover_square": "ui/beacon_screen_pocket.json", - "base_button/pressed": "ui/beacon_screen_pocket.json", - "active_button": "ui/beacon_screen_pocket.json", - "inactive_button_image": "ui/beacon_screen_pocket.json", - "inactive_button": "ui/beacon_screen_pocket.json", - "inactive_button/default": "ui/beacon_screen_pocket.json", - "inactive_button/hover": "ui/beacon_screen_pocket.json", - "inactive_button/hover/highlight_hover_square": "ui/beacon_screen_pocket.json", - "selected_button_image": "ui/beacon_screen_pocket.json", - "selected_button": "ui/beacon_screen_pocket.json", - "selected_button/default": "ui/beacon_screen_pocket.json", - "selected_button/hover": "ui/beacon_screen_pocket.json", - "selected_button/hover/highlight_hover_square": "ui/beacon_screen_pocket.json", - "secondary_effect_base": "ui/beacon_screen_pocket.json", - "speed_secondary": "ui/beacon_screen_pocket.json", - "haste_secondary": "ui/beacon_screen_pocket.json", - "resist_secondary": "ui/beacon_screen_pocket.json", - "jump_secondary": "ui/beacon_screen_pocket.json", - "strength_secondary": "ui/beacon_screen_pocket.json", - "secondary_effect_images": "ui/beacon_screen_pocket.json", - "secondary_effect_images/speed_secondary": "ui/beacon_screen_pocket.json", - "secondary_effect_images/haste_secondary": "ui/beacon_screen_pocket.json", - "secondary_effect_images/resist_secondary": "ui/beacon_screen_pocket.json", - "secondary_effect_images/jump_secondary": "ui/beacon_screen_pocket.json", - "secondary_effect_images/strength_secondary": "ui/beacon_screen_pocket.json", - "base_image": "ui/beacon_screen_pocket.json", - "image_template": "ui/beacon_screen_pocket.json", - "image_template/base_image": "ui/beacon_screen_pocket.json", - "toggle_template": "ui/beacon_screen_pocket.json", - "toggle_template/toggle_button": "ui/beacon_screen_pocket.json", - "button_template": "ui/beacon_screen_pocket.json", - "button_template/active_button": "ui/beacon_screen_pocket.json", - "button_template/inactive_button": "ui/beacon_screen_pocket.json", - "button_template/image_template": "ui/beacon_screen_pocket.json", - "panel_template": "ui/beacon_screen_pocket.json", - "beacon_power_label": "ui/beacon_screen_pocket.json", - "beacon_power_label/label": "ui/beacon_screen_pocket.json", - "beacon_sub_panel": "ui/beacon_screen_pocket.json", - "beacon_button_left_panel": "ui/beacon_screen_pocket.json", - "beacon_button_left_panel/primary_power_label": "ui/beacon_screen_pocket.json", - "beacon_button_left_panel/panel": "ui/beacon_screen_pocket.json", - "beacon_button_left_panel/panel/pyramids_and_buttons": "ui/beacon_screen_pocket.json", - "beacon_button_left_panel/panel/pyramids_and_buttons/level1": "ui/beacon_screen_pocket.json", - "beacon_button_left_panel/panel/pyramids_and_buttons/speed_panel": "ui/beacon_screen_pocket.json", - "beacon_button_left_panel/panel/pyramids_and_buttons/haste_panel": "ui/beacon_screen_pocket.json", - "beacon_button_left_panel/panel/pyramids_and_buttons/level2": "ui/beacon_screen_pocket.json", - "beacon_button_left_panel/panel/pyramids_and_buttons/resist_panel": "ui/beacon_screen_pocket.json", - "beacon_button_left_panel/panel/pyramids_and_buttons/jump_panel": "ui/beacon_screen_pocket.json", - "beacon_button_left_panel/panel/pyramids_and_buttons/level3": "ui/beacon_screen_pocket.json", - "beacon_button_left_panel/panel/pyramids_and_buttons/strength_panel": "ui/beacon_screen_pocket.json", - "beacon_button_right_panel": "ui/beacon_screen_pocket.json", - "beacon_button_right_panel/secondary_power_label": "ui/beacon_screen_pocket.json", - "beacon_button_right_panel/panel": "ui/beacon_screen_pocket.json", - "beacon_button_right_panel/panel/buttons_and_pyramid": "ui/beacon_screen_pocket.json", - "beacon_button_right_panel/panel/buttons_and_pyramid/level4": "ui/beacon_screen_pocket.json", - "beacon_button_right_panel/panel/buttons_and_pyramid/regen_panel": "ui/beacon_screen_pocket.json", - "beacon_button_right_panel/panel/buttons_and_pyramid/extra_panel": "ui/beacon_screen_pocket.json", - "beacon_buttons_panel": "ui/beacon_screen_pocket.json", - "beacon_buttons_panel/beacon_background": "ui/beacon_screen_pocket.json", - "beacon_buttons_panel/left_panel": "ui/beacon_screen_pocket.json", - "beacon_buttons_panel/right_panel": "ui/beacon_screen_pocket.json", - "confirm_panel": "ui/beacon_screen_pocket.json", - "confirm_panel/ingredient_item": "ui/beacon_screen_pocket.json", - "confirm_panel/confirm_panel": "ui/beacon_screen_pocket.json", - "confirm_panel/cancel_panel": "ui/beacon_screen_pocket.json", - "beacon_payment_panel": "ui/beacon_screen_pocket.json", - "beacon_payment_panel/usable_items_panel": "ui/beacon_screen_pocket.json", - "beacon_payment_panel/pad": "ui/beacon_screen_pocket.json", - "beacon_payment_panel/confirm_panel": "ui/beacon_screen_pocket.json", - "beacon_contents_panel": "ui/beacon_screen_pocket.json", - "beacon_contents_panel/fill1": "ui/beacon_screen_pocket.json", - "beacon_contents_panel/beacon_buttons_panel": "ui/beacon_screen_pocket.json", - "beacon_contents_panel/pad1": "ui/beacon_screen_pocket.json", - "beacon_contents_panel/beacon_payment_panel": "ui/beacon_screen_pocket.json", - "beacon_contents_panel/fill2": "ui/beacon_screen_pocket.json", - "header": "ui/beacon_screen_pocket.json", - "header/header_background": "ui/beacon_screen_pocket.json", - "header/legacy_pocket_close_button": "ui/beacon_screen_pocket.json", - "header/panel": "ui/beacon_screen_pocket.json", - "header/panel/title_label": "ui/beacon_screen_pocket.json", - "inventory_and_beacon_panel": "ui/beacon_screen_pocket.json", - "inventory_and_beacon_panel/inventory_half_screen": "ui/beacon_screen_pocket.json", - "inventory_and_beacon_panel/inventory_half_screen/inventory_content": "ui/beacon_screen_pocket.json", - "inventory_and_beacon_panel/beacon_half_screen": "ui/beacon_screen_pocket.json", - "inventory_and_beacon_panel/beacon_half_screen/beacon_content": "ui/beacon_screen_pocket.json", - "header_and_content_stack_panel": "ui/beacon_screen_pocket.json", - "header_and_content_stack_panel/header": "ui/beacon_screen_pocket.json", - "header_and_content_stack_panel/inventory_and_beacon_panel": "ui/beacon_screen_pocket.json", - "beacon_panel": "ui/beacon_screen_pocket.json", - "beacon_panel/bg": "ui/beacon_screen_pocket.json", - "beacon_panel/root_panel": "ui/beacon_screen_pocket.json", - "beacon_panel/header_and_content_stack_panel": "ui/beacon_screen_pocket.json", - "beacon_panel/container_gamepad_helpers": "ui/beacon_screen_pocket.json", - "beacon_panel/inventory_selected_icon_button": "ui/beacon_screen_pocket.json", - "beacon_panel/hold_icon": "ui/beacon_screen_pocket.json", - "beacon_panel/selected_item_details_factory": "ui/beacon_screen_pocket.json", - "beacon_panel/item_lock_notification_factory": "ui/beacon_screen_pocket.json", - "beacon_panel/flying_item_renderer": "ui/beacon_screen_pocket.json", - }, - "blast_furnace": { - "blast_furnace_screen": "ui/blast_furnace_screen.json", - }, - "book": { - "screenshot": "ui/book_screen.json", - "screenshot_frame": "ui/book_screen.json", - "screenshot_frame/caption_edit": "ui/book_screen.json", - "photo_corner": "ui/book_screen.json", - "photo_corner_bl": "ui/book_screen.json", - "photo_corner_br": "ui/book_screen.json", - "photo_corner_tr": "ui/book_screen.json", - "photo_corner_tl": "ui/book_screen.json", - "page_caption": "ui/book_screen.json", - "page_photo": "ui/book_screen.json", - "page_photo/screenshot": "ui/book_screen.json", - "page_photo/screenshot_frame": "ui/book_screen.json", - "page_photo/photo_corner_bl": "ui/book_screen.json", - "page_photo/photo_corner_br": "ui/book_screen.json", - "page_photo/photo_corner_tl": "ui/book_screen.json", - "page_photo/photo_corner_tr": "ui/book_screen.json", - "pick_item": "ui/book_screen.json", - "pick_item/photo": "ui/book_screen.json", - "pick_item/button": "ui/book_screen.json", - "pick_item_inventory": "ui/book_screen.json", - "pick_item_inventory/photo": "ui/book_screen.json", - "pick_item_inventory/button": "ui/book_screen.json", - "header": "ui/book_screen.json", - "text_centering_panel_inventory": "ui/book_screen.json", - "text_centering_panel_inventory/inventory_header": "ui/book_screen.json", - "text_centering_panel_portfolio": "ui/book_screen.json", - "text_centering_panel_portfolio/portfolio_header": "ui/book_screen.json", - "pick_scrolling_content": "ui/book_screen.json", - "pick_scrolling_content/inventory_header": "ui/book_screen.json", - "pick_scrolling_content/inventory_grid": "ui/book_screen.json", - "pick_scrolling_content/portfolio_header": "ui/book_screen.json", - "pick_scrolling_content/portfolio_grid": "ui/book_screen.json", - "pick_panel": "ui/book_screen.json", - "pick_panel/scroll": "ui/book_screen.json", - "pick_panel/close_button": "ui/book_screen.json", - "blank": "ui/book_screen.json", - "book_background": "ui/book_screen.json", - "book_spine_image": "ui/book_screen.json", - "page_crease_left_image": "ui/book_screen.json", - "page_crease_right_image": "ui/book_screen.json", - "page_edge_left_image": "ui/book_screen.json", - "page_edge_right_image": "ui/book_screen.json", - "text_edit_hover_image": "ui/book_screen.json", - "base_button": "ui/book_screen.json", - "base_button/default": "ui/book_screen.json", - "base_button/hover": "ui/book_screen.json", - "base_button/pressed": "ui/book_screen.json", - "book_buttons_panel": "ui/book_screen.json", - "book_buttons_panel/sign_export_buttons": "ui/book_screen.json", - "book_buttons_panel/sign_export_buttons/left_spacer": "ui/book_screen.json", - "book_buttons_panel/sign_export_buttons/sign_button": "ui/book_screen.json", - "book_buttons_panel/sign_export_buttons/export_button": "ui/book_screen.json", - "book_buttons_panel/sign_export_buttons/right_spacer": "ui/book_screen.json", - "book_buttons_panel/im_content_button": "ui/book_screen.json", - "cover_buttons_stack_panel_holder": "ui/book_screen.json", - "cover_buttons_stack_panel_holder/cover_buttons_stack_panel": "ui/book_screen.json", - "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/finalize_button": "ui/book_screen.json", - "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/padding_1": "ui/book_screen.json", - "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/cancel_sign_button": "ui/book_screen.json", - "close_button_default": "ui/book_screen.json", - "close_button_hover": "ui/book_screen.json", - "close_button_pressed": "ui/book_screen.json", - "close_button": "ui/book_screen.json", - "close_button/default": "ui/book_screen.json", - "close_button/hover": "ui/book_screen.json", - "close_button/pressed": "ui/book_screen.json", - "page_text_edit": "ui/book_screen.json", - "page_text": "ui/book_screen.json", - "page_number_label": "ui/book_screen.json", - "padded_button": "ui/book_screen.json", - "padded_button/button": "ui/book_screen.json", - "page_buttons_panel": "ui/book_screen.json", - "page_buttons_panel/swap_page_left": "ui/book_screen.json", - "page_buttons_panel/insert_text_page": "ui/book_screen.json", - "page_buttons_panel/insert_photo_page": "ui/book_screen.json", - "page_buttons_panel/delete_page": "ui/book_screen.json", - "page_buttons_panel/swap_page_right": "ui/book_screen.json", - "page_content_panel": "ui/book_screen.json", - "page_content_panel/page_text": "ui/book_screen.json", - "page_content_panel/page_photo": "ui/book_screen.json", - "page_content_panel/page_number_label": "ui/book_screen.json", - "page_content_panel/page_buttons_panel": "ui/book_screen.json", - "page_content_panel/edit_page": "ui/book_screen.json", - "title_label": "ui/book_screen.json", - "title_text_box": "ui/book_screen.json", - "author_label": "ui/book_screen.json", - "author_text_box": "ui/book_screen.json", - "author_stack_panel": "ui/book_screen.json", - "author_stack_panel/author_label_panel": "ui/book_screen.json", - "author_stack_panel/author_label_panel/author_label": "ui/book_screen.json", - "author_stack_panel/author_text_panel": "ui/book_screen.json", - "author_stack_panel/author_text_panel/author_text_box": "ui/book_screen.json", - "warning_label": "ui/book_screen.json", - "cover_content_panel": "ui/book_screen.json", - "cover_content_panel/title_label": "ui/book_screen.json", - "cover_content_panel/title_text_box": "ui/book_screen.json", - "cover_content_panel/author_stack_panel": "ui/book_screen.json", - "cover_content_panel/warning_label": "ui/book_screen.json", - "cover_and_buttons_panel": "ui/book_screen.json", - "cover_and_buttons_panel/cover_panel": "ui/book_screen.json", - "cover_and_buttons_panel/cover_panel/cover_content_panel": "ui/book_screen.json", - "cover_and_buttons_panel/cover_panel/book_background": "ui/book_screen.json", - "cover_and_buttons_panel/cover_panel/close_button": "ui/book_screen.json", - "cover_and_buttons_panel/cover_buttons_stack_panel_holder": "ui/book_screen.json", - "page_panel": "ui/book_screen.json", - "page_panel/page_content_panel": "ui/book_screen.json", - "book_grid": "ui/book_screen.json", - "book_grid/page_panel_left": "ui/book_screen.json", - "book_grid/page_panel_right": "ui/book_screen.json", - "book_and_buttons_panel": "ui/book_screen.json", - "book_and_buttons_panel/book_panel": "ui/book_screen.json", - "book_and_buttons_panel/book_panel/book_grid": "ui/book_screen.json", - "book_and_buttons_panel/book_panel/book_background": "ui/book_screen.json", - "book_and_buttons_panel/book_panel/book_spine_image": "ui/book_screen.json", - "book_and_buttons_panel/book_panel/close_button": "ui/book_screen.json", - "book_and_buttons_panel/book_panel/prev_button": "ui/book_screen.json", - "book_and_buttons_panel/book_panel/next_button": "ui/book_screen.json", - "book_and_buttons_panel/book_buttons_panel": "ui/book_screen.json", - "root_panel": "ui/book_screen.json", - "book_screen": "ui/book_screen.json", - "book_screen_content": "ui/book_screen.json", - "book_screen_content/root_panel": "ui/book_screen.json", - "book_screen_content/root_panel/book_and_buttons_panel": "ui/book_screen.json", - "book_screen_content/root_panel/cover_and_buttons_panel": "ui/book_screen.json", - "book_screen_content/root_panel/pick_panel": "ui/book_screen.json", - "book_screen_content/root_panel/export_progress": "ui/book_screen.json", - "book_screen_content/root_panel/gamepad_helper_a": "ui/book_screen.json", - "book_screen_content/root_panel/gamepad_helper_b": "ui/book_screen.json", - }, - "brewing_stand": { - "brewing_pipes": "ui/brewing_stand_screen.json", - "brewing_fuel_pipes": "ui/brewing_stand_screen.json", - "bottle_empty_image": "ui/brewing_stand_screen.json", - "fuel_empty_image": "ui/brewing_stand_screen.json", - "bubbles_empty_image": "ui/brewing_stand_screen.json", - "bubbles_full_image": "ui/brewing_stand_screen.json", - "brewing_arrow_empty_image": "ui/brewing_stand_screen.json", - "brewing_arrow_full_image": "ui/brewing_stand_screen.json", - "brewing_fuel_bar_empty_image": "ui/brewing_stand_screen.json", - "brewing_fuel_bar_full_image": "ui/brewing_stand_screen.json", - "brewing_label": "ui/brewing_stand_screen.json", - "brewingstand_output_item": "ui/brewing_stand_screen.json", - "brewing_output_slots": "ui/brewing_stand_screen.json", - "brewing_output_slots/left_offset": "ui/brewing_stand_screen.json", - "brewing_output_slots/left_offset/output_grid_item1": "ui/brewing_stand_screen.json", - "brewing_output_slots/output_grid_item2": "ui/brewing_stand_screen.json", - "brewing_output_slots/right_offset": "ui/brewing_stand_screen.json", - "brewing_output_slots/right_offset/output_grid_item3": "ui/brewing_stand_screen.json", - "brewing_input_slot": "ui/brewing_stand_screen.json", - "brewing_input_slot/input_grid_item": "ui/brewing_stand_screen.json", - "brewing_fuel_slot": "ui/brewing_stand_screen.json", - "brewing_fuel_slot/fuel_grid_item": "ui/brewing_stand_screen.json", - "brewing_panel_top_half": "ui/brewing_stand_screen.json", - "brewing_panel_top_half/brewing_label": "ui/brewing_stand_screen.json", - "brewing_panel_top_half/brewing_stand_pictogram": "ui/brewing_stand_screen.json", - "brewing_stand_pictogram": "ui/brewing_stand_screen.json", - "brewing_stand_pictogram/brewing_input_slot": "ui/brewing_stand_screen.json", - "brewing_stand_pictogram/brewing_output_slots": "ui/brewing_stand_screen.json", - "brewing_stand_pictogram/brewing_fuel_slot": "ui/brewing_stand_screen.json", - "brewing_stand_pictogram/brewing_arrow_empty_image": "ui/brewing_stand_screen.json", - "brewing_stand_pictogram/brewing_arrow_full_image": "ui/brewing_stand_screen.json", - "brewing_stand_pictogram/brewing_fuel_bar_empty_image": "ui/brewing_stand_screen.json", - "brewing_stand_pictogram/brewing_fuel_bar_full_image": "ui/brewing_stand_screen.json", - "brewing_stand_pictogram/bubbles_empty_image": "ui/brewing_stand_screen.json", - "brewing_stand_pictogram/bubbles_full_image": "ui/brewing_stand_screen.json", - "brewing_stand_pictogram/brewing_fuel_pipes": "ui/brewing_stand_screen.json", - "brewing_stand_pictogram/brewing_pipes": "ui/brewing_stand_screen.json", - "brewing_stand_panel": "ui/brewing_stand_screen.json", - "brewing_stand_panel/container_gamepad_helpers": "ui/brewing_stand_screen.json", - "brewing_stand_panel/selected_item_details_factory": "ui/brewing_stand_screen.json", - "brewing_stand_panel/item_lock_notification_factory": "ui/brewing_stand_screen.json", - "brewing_stand_panel/root_panel": "ui/brewing_stand_screen.json", - "brewing_stand_panel/root_panel/common_panel": "ui/brewing_stand_screen.json", - "brewing_stand_panel/root_panel/furnace_screen_inventory": "ui/brewing_stand_screen.json", - "brewing_stand_panel/root_panel/furnace_screen_inventory/brewing_panel_top_half": "ui/brewing_stand_screen.json", - "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label": "ui/brewing_stand_screen.json", - "brewing_stand_panel/root_panel/furnace_screen_inventory/hotbar_grid": "ui/brewing_stand_screen.json", - "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button": "ui/brewing_stand_screen.json", - "brewing_stand_panel/root_panel/inventory_selected_icon_button": "ui/brewing_stand_screen.json", - "brewing_stand_panel/root_panel/gamepad_cursor": "ui/brewing_stand_screen.json", - "brewing_stand_panel/flying_item_renderer": "ui/brewing_stand_screen.json", - "brewing_stand_screen": "ui/brewing_stand_screen.json", - }, - "brewing_stand_pocket": { - "generic_label": "ui/brewing_stand_screen_pocket.json", - "brewing_fuel_pipes": "ui/brewing_stand_screen_pocket.json", - "bubbles_empty_image": "ui/brewing_stand_screen_pocket.json", - "bubbles_full_image": "ui/brewing_stand_screen_pocket.json", - "bottle_empty_image": "ui/brewing_stand_screen_pocket.json", - "background_image": "ui/brewing_stand_screen_pocket.json", - "output_slot": "ui/brewing_stand_screen_pocket.json", - "brewing_input_slot": "ui/brewing_stand_screen_pocket.json", - "brewing_input_slot/input_slot": "ui/brewing_stand_screen_pocket.json", - "brewing_fuel_slot": "ui/brewing_stand_screen_pocket.json", - "brewing_fuel_slot/fuel_slot": "ui/brewing_stand_screen_pocket.json", - "brewing_out_slots": "ui/brewing_stand_screen_pocket.json", - "brewing_out_slots/left_offset": "ui/brewing_stand_screen_pocket.json", - "brewing_out_slots/left_offset/output_slot1": "ui/brewing_stand_screen_pocket.json", - "brewing_out_slots/middle": "ui/brewing_stand_screen_pocket.json", - "brewing_out_slots/middle/output_slot2": "ui/brewing_stand_screen_pocket.json", - "brewing_out_slots/right_offset": "ui/brewing_stand_screen_pocket.json", - "brewing_out_slots/right_offset/output_slot3": "ui/brewing_stand_screen_pocket.json", - "slots_panel": "ui/brewing_stand_screen_pocket.json", - "slots_panel/brewing_input_slot": "ui/brewing_stand_screen_pocket.json", - "slots_panel/brewing_fuel_slot": "ui/brewing_stand_screen_pocket.json", - "slots_panel/brewing_out_slots": "ui/brewing_stand_screen_pocket.json", - "slots_panel/brewing_arrow_panel": "ui/brewing_stand_screen_pocket.json", - "slots_panel/brewing_arrow_panel/brewing_arrow_empty_image": "ui/brewing_stand_screen_pocket.json", - "slots_panel/brewing_arrow_panel/brewing_arrow_full_image": "ui/brewing_stand_screen_pocket.json", - "slots_panel/brewing_bubbles_panel": "ui/brewing_stand_screen_pocket.json", - "slots_panel/brewing_bubbles_panel/bubbles_empty_image": "ui/brewing_stand_screen_pocket.json", - "slots_panel/brewing_bubbles_panel/bubbles_full_image": "ui/brewing_stand_screen_pocket.json", - "slots_panel/brewing_fuel_bar_panel": "ui/brewing_stand_screen_pocket.json", - "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_empty_image": "ui/brewing_stand_screen_pocket.json", - "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_full_image": "ui/brewing_stand_screen_pocket.json", - "slots_panel/brewing_fuel_pipes": "ui/brewing_stand_screen_pocket.json", - "slots_panel/brewing_pipes": "ui/brewing_stand_screen_pocket.json", - "inventory_grid": "ui/brewing_stand_screen_pocket.json", - "inventory_content": "ui/brewing_stand_screen_pocket.json", - "inventory_content/scrolling_panel": "ui/brewing_stand_screen_pocket.json", - "brewing_stand_contents_panel": "ui/brewing_stand_screen_pocket.json", - "brewing_stand_contents_panel/slots_panel": "ui/brewing_stand_screen_pocket.json", - "header": "ui/brewing_stand_screen_pocket.json", - "header/header_background": "ui/brewing_stand_screen_pocket.json", - "header/legacy_pocket_close_button": "ui/brewing_stand_screen_pocket.json", - "header/panel": "ui/brewing_stand_screen_pocket.json", - "header/panel/title_label": "ui/brewing_stand_screen_pocket.json", - "inventory_and_brewing_panel": "ui/brewing_stand_screen_pocket.json", - "inventory_and_brewing_panel/inventory_half_screen": "ui/brewing_stand_screen_pocket.json", - "inventory_and_brewing_panel/inventory_half_screen/inventory_content": "ui/brewing_stand_screen_pocket.json", - "inventory_and_brewing_panel/brewing_half_screen": "ui/brewing_stand_screen_pocket.json", - "inventory_and_brewing_panel/brewing_half_screen/brewing_stand_contents_panel": "ui/brewing_stand_screen_pocket.json", - "header_and_content_stack_panel": "ui/brewing_stand_screen_pocket.json", - "header_and_content_stack_panel/header": "ui/brewing_stand_screen_pocket.json", - "header_and_content_stack_panel/inventory_and_brewing_panel": "ui/brewing_stand_screen_pocket.json", - "brewing_stand_panel": "ui/brewing_stand_screen_pocket.json", - "brewing_stand_panel/bg": "ui/brewing_stand_screen_pocket.json", - "brewing_stand_panel/root_panel": "ui/brewing_stand_screen_pocket.json", - "brewing_stand_panel/header_and_content_stack_panel": "ui/brewing_stand_screen_pocket.json", - "brewing_stand_panel/container_gamepad_helpers": "ui/brewing_stand_screen_pocket.json", - "brewing_stand_panel/inventory_selected_icon_button": "ui/brewing_stand_screen_pocket.json", - "brewing_stand_panel/hold_icon": "ui/brewing_stand_screen_pocket.json", - "brewing_stand_panel/selected_item_details_factory": "ui/brewing_stand_screen_pocket.json", - "brewing_stand_panel/item_lock_notification_factory": "ui/brewing_stand_screen_pocket.json", - "brewing_stand_panel/flying_item_renderer": "ui/brewing_stand_screen_pocket.json", - }, - "bundle_purchase_warning": { - "x_padding": "ui/bundle_purchase_warning_screen.json", - "y_padding": "ui/bundle_purchase_warning_screen.json", - "bundle_grid_item": "ui/bundle_purchase_warning_screen.json", - "bundle_grid_item/banner_image": "ui/bundle_purchase_warning_screen.json", - "bundle_grid_item/content": "ui/bundle_purchase_warning_screen.json", - "bundle_grid_item/game_pad_focus_border": "ui/bundle_purchase_warning_screen.json", - "is_focused": "ui/bundle_purchase_warning_screen.json", - "is_focused/image_border": "ui/bundle_purchase_warning_screen.json", - "is_focused/banner_border": "ui/bundle_purchase_warning_screen.json", - "focus_border": "ui/bundle_purchase_warning_screen.json", - "focus_border_button": "ui/bundle_purchase_warning_screen.json", - "focus_border_button/default": "ui/bundle_purchase_warning_screen.json", - "focus_border_button/hover": "ui/bundle_purchase_warning_screen.json", - "focus_border_button/pressed": "ui/bundle_purchase_warning_screen.json", - "grid_item_content": "ui/bundle_purchase_warning_screen.json", - "grid_item_content/image_border": "ui/bundle_purchase_warning_screen.json", - "grid_item_content/image_border/bundle_thumbnail": "ui/bundle_purchase_warning_screen.json", - "grid_item_content/padding_0": "ui/bundle_purchase_warning_screen.json", - "grid_item_content/bundle_title_panel": "ui/bundle_purchase_warning_screen.json", - "grid_item_content/bundle_title_panel/bundle_title": "ui/bundle_purchase_warning_screen.json", - "bundle_grid": "ui/bundle_purchase_warning_screen.json", - "side_contents": "ui/bundle_purchase_warning_screen.json", - "side_contents/title_alignment_hack": "ui/bundle_purchase_warning_screen.json", - "side_contents/title_alignment_hack/side_section_title": "ui/bundle_purchase_warning_screen.json", - "side_contents/padding_y_0": "ui/bundle_purchase_warning_screen.json", - "side_contents/grid_input_panel": "ui/bundle_purchase_warning_screen.json", - "side_contents/grid_input_panel/grid_scroll": "ui/bundle_purchase_warning_screen.json", - "dialog_content": "ui/bundle_purchase_warning_screen.json", - "dialog_content/grid_stack": "ui/bundle_purchase_warning_screen.json", - "dialog_content/grid_stack/left_grid_scroll": "ui/bundle_purchase_warning_screen.json", - "dialog_content/grid_stack/padding_x_divider": "ui/bundle_purchase_warning_screen.json", - "dialog_content/grid_stack/right_grid_scroll": "ui/bundle_purchase_warning_screen.json", - "purchase_button_panel": "ui/bundle_purchase_warning_screen.json", - "screen_dialog": "ui/bundle_purchase_warning_screen.json", - "bundle_purchase_warning_screen_content": "ui/bundle_purchase_warning_screen.json", - "bundle_purchase_warning_screen_content/dialog": "ui/bundle_purchase_warning_screen.json", - "background": "ui/bundle_purchase_warning_screen.json", - "bundle_purchase_warning_screen": "ui/bundle_purchase_warning_screen.json", - }, - "cartography": { - "title_label": "ui/cartography_screen.json", - "arrow_icon": "ui/cartography_screen.json", - "plus_sign_icon": "ui/cartography_screen.json", - "text_edit_control": "ui/cartography_screen.json", - "cartography_output_slot_button": "ui/cartography_screen.json", - "cartography_item_slot": "ui/cartography_screen.json", - "cartography_item_slot/container_item": "ui/cartography_screen.json", - "map_image": "ui/cartography_screen.json", - "map_image_panel": "ui/cartography_screen.json", - "map_image_panel/none_map": "ui/cartography_screen.json", - "map_image_panel/copy_map": "ui/cartography_screen.json", - "map_image_panel/rename_map": "ui/cartography_screen.json", - "map_image_panel/map": "ui/cartography_screen.json", - "map_image_panel/locator_map": "ui/cartography_screen.json", - "map_image_panel/zoom_map": "ui/cartography_screen.json", - "map_image_panel/lock_map": "ui/cartography_screen.json", - "text_box_panel": "ui/cartography_screen.json", - "text_box_panel/map_name_label": "ui/cartography_screen.json", - "text_box_panel/text_edit_control": "ui/cartography_screen.json", - "input_slots": "ui/cartography_screen.json", - "input_slots/input_item_slot": "ui/cartography_screen.json", - "input_slots/plus_centerer": "ui/cartography_screen.json", - "input_slots/plus_centerer/plus_sign_icon": "ui/cartography_screen.json", - "input_slots/additional_item_slot": "ui/cartography_screen.json", - "output_description_label": "ui/cartography_screen.json", - "main_panel": "ui/cartography_screen.json", - "main_panel/input_slots": "ui/cartography_screen.json", - "main_panel/arrow_icon": "ui/cartography_screen.json", - "main_panel/map_image_panel": "ui/cartography_screen.json", - "main_panel/arrow_icon2": "ui/cartography_screen.json", - "main_panel/result_item_slot": "ui/cartography_screen.json", - "top_half_panel": "ui/cartography_screen.json", - "top_half_panel/padding1": "ui/cartography_screen.json", - "top_half_panel/title_panel": "ui/cartography_screen.json", - "top_half_panel/title_panel/title_label": "ui/cartography_screen.json", - "top_half_panel/padding2": "ui/cartography_screen.json", - "top_half_panel/text_box_panel": "ui/cartography_screen.json", - "top_half_panel/padding3": "ui/cartography_screen.json", - "top_half_panel/padding4": "ui/cartography_screen.json", - "top_half_panel/main_panel_wrap": "ui/cartography_screen.json", - "top_half_panel/main_panel_wrap/main_panel": "ui/cartography_screen.json", - "top_half_panel/output_description_label": "ui/cartography_screen.json", - "top_half_panel/padding5": "ui/cartography_screen.json", - "cartography_panel": "ui/cartography_screen.json", - "cartography_panel/container_gamepad_helpers": "ui/cartography_screen.json", - "cartography_panel/selected_item_details_factory": "ui/cartography_screen.json", - "cartography_panel/item_lock_notification_factory": "ui/cartography_screen.json", - "cartography_panel/root_panel": "ui/cartography_screen.json", - "cartography_panel/root_panel/common_panel": "ui/cartography_screen.json", - "cartography_panel/root_panel/cartography_screen_inventory": "ui/cartography_screen.json", - "cartography_panel/root_panel/cartography_screen_inventory/top_half_panel": "ui/cartography_screen.json", - "cartography_panel/root_panel/cartography_screen_inventory/inventory_panel_bottom_half_with_label": "ui/cartography_screen.json", - "cartography_panel/root_panel/cartography_screen_inventory/hotbar_grid": "ui/cartography_screen.json", - "cartography_panel/root_panel/cartography_screen_inventory/inventory_take_progress_icon_button": "ui/cartography_screen.json", - "cartography_panel/root_panel/inventory_selected_icon_button": "ui/cartography_screen.json", - "cartography_panel/root_panel/gamepad_cursor": "ui/cartography_screen.json", - "cartography_panel/root_panel/tab_close_and_help_button": "ui/cartography_screen.json", - "cartography_panel/flying_item_renderer": "ui/cartography_screen.json", - "cartography_screen": "ui/cartography_screen.json", - }, - "cartography_pocket": { - "vertical_arrow_icon": "ui/cartography_screen_pocket.json", - "chest_item_renderer": "ui/cartography_screen_pocket.json", - "cartography_item_renderer": "ui/cartography_screen_pocket.json", - "input_item_slot": "ui/cartography_screen_pocket.json", - "additional_item_slot": "ui/cartography_screen_pocket.json", - "result_item_slot": "ui/cartography_screen_pocket.json", - "right_panel": "ui/cartography_screen_pocket.json", - "right_panel/content": "ui/cartography_screen_pocket.json", - "right_panel/content/bg": "ui/cartography_screen_pocket.json", - "right_panel/content/cartography_content_stack_panel": "ui/cartography_screen_pocket.json", - "right_panel/navigation_tabs_holder": "ui/cartography_screen_pocket.json", - "right_panel/navigation_tabs_holder/right_navigation_tabs": "ui/cartography_screen_pocket.json", - "right_tab_cartography": "ui/cartography_screen_pocket.json", - "right_navigation_tabs": "ui/cartography_screen_pocket.json", - "right_navigation_tabs/pocket_tab_close_and_help_button": "ui/cartography_screen_pocket.json", - "right_navigation_tabs/fill": "ui/cartography_screen_pocket.json", - "right_navigation_tabs/right_tab_cartography": "ui/cartography_screen_pocket.json", - "input_slots_stack_panel": "ui/cartography_screen_pocket.json", - "input_slots_stack_panel/input_item_slot": "ui/cartography_screen_pocket.json", - "input_slots": "ui/cartography_screen_pocket.json", - "input_slots/input_item_slot": "ui/cartography_screen_pocket.json", - "input_slots/plus_centerer": "ui/cartography_screen_pocket.json", - "input_slots/plus_centerer/plus_sign_icon": "ui/cartography_screen_pocket.json", - "input_slots/additional_item_slot": "ui/cartography_screen_pocket.json", - "cartography_content_stack_panel": "ui/cartography_screen_pocket.json", - "cartography_content_stack_panel/label_holder": "ui/cartography_screen_pocket.json", - "cartography_content_stack_panel/label_holder/cartography_label": "ui/cartography_screen_pocket.json", - "cartography_content_stack_panel/padding_1": "ui/cartography_screen_pocket.json", - "cartography_content_stack_panel/panel": "ui/cartography_screen_pocket.json", - "cartography_content_stack_panel/panel/input_slots": "ui/cartography_screen_pocket.json", - "cartography_content_stack_panel/padding_2": "ui/cartography_screen_pocket.json", - "cartography_content_stack_panel/map_centerer": "ui/cartography_screen_pocket.json", - "cartography_content_stack_panel/map_centerer/map_image_panel": "ui/cartography_screen_pocket.json", - "cartography_content_stack_panel/description_centerer": "ui/cartography_screen_pocket.json", - "cartography_content_stack_panel/description_centerer/output_description_label": "ui/cartography_screen_pocket.json", - "cartography_content_stack_panel/padding_3": "ui/cartography_screen_pocket.json", - "cartography_content_stack_panel/arrow_centerer": "ui/cartography_screen_pocket.json", - "cartography_content_stack_panel/arrow_centerer/vertical_arrow_icon": "ui/cartography_screen_pocket.json", - "cartography_content_stack_panel/padding_4": "ui/cartography_screen_pocket.json", - "cartography_content_stack_panel/result_centerer": "ui/cartography_screen_pocket.json", - "cartography_content_stack_panel/result_centerer/result_item_slot": "ui/cartography_screen_pocket.json", - "cartography_content_stack_panel/filling_panel": "ui/cartography_screen_pocket.json", - "cartography_content_stack_panel/text_box_panel": "ui/cartography_screen_pocket.json", - "inventory_panel": "ui/cartography_screen_pocket.json", - "inventory_panel/inventory_title_label_centerer": "ui/cartography_screen_pocket.json", - "inventory_panel/inventory_title_label_centerer/inventory_title_label": "ui/cartography_screen_pocket.json", - "inventory_panel/inventory_scroll_panel": "ui/cartography_screen_pocket.json", - "inventory_scroll_panel": "ui/cartography_screen_pocket.json", - "pattern_button": "ui/cartography_screen_pocket.json", - "pattern_scroll_panel": "ui/cartography_screen_pocket.json", - "left_panel": "ui/cartography_screen_pocket.json", - "left_panel/gamepad_helpers_and_tabs_holder": "ui/cartography_screen_pocket.json", - "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": "ui/cartography_screen_pocket.json", - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": "ui/cartography_screen_pocket.json", - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": "ui/cartography_screen_pocket.json", - "left_panel/content": "ui/cartography_screen_pocket.json", - "left_panel/content/bg": "ui/cartography_screen_pocket.json", - "left_panel/content/inventory_panel": "ui/cartography_screen_pocket.json", - "left_tab_inventory": "ui/cartography_screen_pocket.json", - "left_navigation_tabs": "ui/cartography_screen_pocket.json", - "left_navigation_tabs/padding": "ui/cartography_screen_pocket.json", - "left_navigation_tabs/left_tab_inventory": "ui/cartography_screen_pocket.json", - "pocket_hotbar_and_content_panels": "ui/cartography_screen_pocket.json", - "cartography_panel": "ui/cartography_screen_pocket.json", - "cartography_panel/pocket_hotbar_and_content_panels": "ui/cartography_screen_pocket.json", - "cartography_panel/container_gamepad_helpers": "ui/cartography_screen_pocket.json", - "cartography_panel/selected_item_details_factory": "ui/cartography_screen_pocket.json", - "cartography_panel/item_lock_notification_factory": "ui/cartography_screen_pocket.json", - "cartography_panel/inventory_selected_icon_button": "ui/cartography_screen_pocket.json", - "cartography_panel/inventory_take_progress_icon_button": "ui/cartography_screen_pocket.json", - "cartography_panel/flying_item_renderer": "ui/cartography_screen_pocket.json", - }, - "chalkboard": { - "text_edit_control": "ui/chalkboard_screen.json", - "locked_toggle": "ui/chalkboard_screen.json", - "locked_label": "ui/chalkboard_screen.json", - "lock_control": "ui/chalkboard_screen.json", - "lock_control/toggle": "ui/chalkboard_screen.json", - "lock_control/pad_wrap": "ui/chalkboard_screen.json", - "lock_control/pad_wrap/label": "ui/chalkboard_screen.json", - "gamepad_helpers": "ui/chalkboard_screen.json", - "gamepad_helpers/gamepad_helper_a": "ui/chalkboard_screen.json", - "chalkboard_screen": "ui/chalkboard_screen.json", - "chalkboard_root": "ui/chalkboard_screen.json", - "chalkboard_content": "ui/chalkboard_screen.json", - "chalkboard_content/gamepad_helpers": "ui/chalkboard_screen.json", - "chalkboard_content/edit_box": "ui/chalkboard_screen.json", - "chalkboard_content/locked_toggle": "ui/chalkboard_screen.json", - }, - "chat": { - "down_arrow_image": "ui/chat_screen.json", - "keyboard_image": "ui/chat_screen.json", - "copy_image": "ui/chat_screen.json", - "paste_image": "ui/chat_screen.json", - "gear_image": "ui/chat_screen.json", - "send_image": "ui/chat_screen.json", - "send_panel": "ui/chat_screen.json", - "send_panel/send_image_panel": "ui/chat_screen.json", - "send_panel/send_image_panel/send_image": "ui/chat_screen.json", - "send_panel/gamepad_x_button": "ui/chat_screen.json", - "send_panel/gamepad_x_button/side_padding": "ui/chat_screen.json", - "send_panel/gamepad_x_button/gamepad_x_button_image": "ui/chat_screen.json", - "send_panel/gamepad_x_button/gamepad_x_button_image/icon": "ui/chat_screen.json", - "keyboard_image_panel": "ui/chat_screen.json", - "keyboard_image_panel/keyboard_image": "ui/chat_screen.json", - "keyboard_image_panel/down_arrow_image": "ui/chat_screen.json", - "small_button": "ui/chat_screen.json", - "keyboard_button": "ui/chat_screen.json", - "chat_settings_button": "ui/chat_screen.json", - "send_button": "ui/chat_screen.json", - "messages_text": "ui/chat_screen.json", - "messages_text/text": "ui/chat_screen.json", - "message_tts_wrapper": "ui/chat_screen.json", - "messages_stack_panel": "ui/chat_screen.json", - "messages_scrolling_panel": "ui/chat_screen.json", - "text_edit_box": "ui/chat_screen.json", - "commands_background": "ui/chat_screen.json", - "click_autocomplete_is_focused": "ui/chat_screen.json", - "auto_complete_panel_contents_with_item": "ui/chat_screen.json", - "auto_complete_panel_contents_with_item/auto_complete_item_renderer": "ui/chat_screen.json", - "auto_complete_panel_contents_with_item/text": "ui/chat_screen.json", - "auto_complete_panel_contents_with_item/autocomplete_button": "ui/chat_screen.json", - "auto_complete_panel_contents_with_item/autocomplete_button/default": "ui/chat_screen.json", - "auto_complete_panel_contents_with_item/autocomplete_button/hover": "ui/chat_screen.json", - "auto_complete_panel_contents_with_item/autocomplete_button/pressed": "ui/chat_screen.json", - "auto_complete_panel": "ui/chat_screen.json", - "auto_complete_panel/panel": "ui/chat_screen.json", - "auto_complete_panel/panel/auto_complete_grid": "ui/chat_screen.json", - "commands_panel": "ui/chat_screen.json", - "commands_panel/auto_complete_panel": "ui/chat_screen.json", - "chat_bottom_panel": "ui/chat_screen.json", - "chat_bottom_panel/keyboard_button": "ui/chat_screen.json", - "chat_bottom_panel/host_main_button": "ui/chat_screen.json", - "chat_bottom_panel/chat_settings": "ui/chat_screen.json", - "chat_bottom_panel/text_box": "ui/chat_screen.json", - "chat_bottom_panel/send_button": "ui/chat_screen.json", - "title_text": "ui/chat_screen.json", - "title_text/title_panel": "ui/chat_screen.json", - "back_content_panel": "ui/chat_screen.json", - "back_content_panel/back_button": "ui/chat_screen.json", - "back_content_panel/gamepad_back_helper": "ui/chat_screen.json", - "back_content_panel/gamepad_back_helper/gamepad_helper_button": "ui/chat_screen.json", - "coordinate_dropdown_content": "ui/chat_screen.json", - "coordinate_dropdown_content/top_padding": "ui/chat_screen.json", - "coordinate_dropdown_content/my_position": "ui/chat_screen.json", - "coordinate_dropdown_content/block_position": "ui/chat_screen.json", - "coordinate_dropdown_content/bottom_padding": "ui/chat_screen.json", - "coordinate_dropdown": "ui/chat_screen.json", - "popup_toast": "ui/chat_screen.json", - "copy_coordinate_button": "ui/chat_screen.json", - "paste_button": "ui/chat_screen.json", - "chat_header": "ui/chat_screen.json", - "chat_header/title_panel": "ui/chat_screen.json", - "chat_header/title_panel/back_button_content_panel": "ui/chat_screen.json", - "chat_header/title_panel/title": "ui/chat_screen.json", - "chat_header/title_panel/popup_dialog_factory": "ui/chat_screen.json", - "chat_header/title_panel/chat_header_content_area": "ui/chat_screen.json", - "chat_header/title_panel/chat_header_content_area/coordinate_dropdown": "ui/chat_screen.json", - "chat_header/title_panel/chat_header_content_area/coordinates_panel": "ui/chat_screen.json", - "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image": "ui/chat_screen.json", - "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image/coordinates_text": "ui/chat_screen.json", - "chat_header/title_panel/chat_header_content_area/copy_coordinate_button": "ui/chat_screen.json", - "chat_header/title_panel/chat_header_content_area/icon": "ui/chat_screen.json", - "chat_header/title_panel/chat_header_content_area/paste_button": "ui/chat_screen.json", - "chat_screen": "ui/chat_screen.json", - "chat_screen_content": "ui/chat_screen.json", - "chat_screen_content/messages_panel": "ui/chat_screen.json", - "chat_screen_content/chat_bottom_panel": "ui/chat_screen.json", - "chat_screen_content/chat_top_panel": "ui/chat_screen.json", - "chat_screen_content/autocomplete_commands_panel": "ui/chat_screen.json", - "chat_screen_content/host_main_panel": "ui/chat_screen.json", - "chat_screen_content/popup_factory": "ui/chat_screen.json", - "chat_background": "ui/chat_screen.json", - }, - "chat_settings": { - "mute_all_toggle": "ui/chat_settings_menu_screen.json", - "mute_emote_chat_toggle": "ui/chat_settings_menu_screen.json", - "chat_tts_toggle": "ui/chat_settings_menu_screen.json", - "reset_button": "ui/chat_settings_menu_screen.json", - "typeface_dropdown_content": "ui/chat_settings_menu_screen.json", - "typeface_dropdown_content/top_padding": "ui/chat_settings_menu_screen.json", - "typeface_dropdown_content/mojangles": "ui/chat_settings_menu_screen.json", - "typeface_dropdown_content/noto_sans": "ui/chat_settings_menu_screen.json", - "typeface_dropdown_content/bottom_padding": "ui/chat_settings_menu_screen.json", - "typeface_dropdown": "ui/chat_settings_menu_screen.json", - "chat_color_dropdown_content": "ui/chat_settings_menu_screen.json", - "chat_color_dropdown_content/top_padding": "ui/chat_settings_menu_screen.json", - "chat_color_dropdown_content/0": "ui/chat_settings_menu_screen.json", - "chat_color_dropdown_content/1": "ui/chat_settings_menu_screen.json", - "chat_color_dropdown_content/2": "ui/chat_settings_menu_screen.json", - "chat_color_dropdown_content/3": "ui/chat_settings_menu_screen.json", - "chat_color_dropdown_content/4": "ui/chat_settings_menu_screen.json", - "chat_color_dropdown_content/5": "ui/chat_settings_menu_screen.json", - "chat_color_dropdown_content/6": "ui/chat_settings_menu_screen.json", - "chat_color_dropdown_content/bottom_padding": "ui/chat_settings_menu_screen.json", - "colors_dropdown_base": "ui/chat_settings_menu_screen.json", - "chat_color_dropdown": "ui/chat_settings_menu_screen.json", - "mentions_color_dropdown": "ui/chat_settings_menu_screen.json", - "font_size_slider": "ui/chat_settings_menu_screen.json", - "line_spacing_slider": "ui/chat_settings_menu_screen.json", - "colored_icon_panel": "ui/chat_settings_menu_screen.json", - "colored_icon_panel/icon": "ui/chat_settings_menu_screen.json", - "colored_icon_panel/icon_overlay": "ui/chat_settings_menu_screen.json", - "paintbrush": "ui/chat_settings_menu_screen.json", - "line_break": "ui/chat_settings_menu_screen.json", - "line_break/line_break_image": "ui/chat_settings_menu_screen.json", - "chat_settings_scrolling_content": "ui/chat_settings_menu_screen.json", - "chat_settings_scrolling_content/chat_settings_content_area": "ui/chat_settings_menu_screen.json", - "chat_settings_scrolling_content/chat_settings_content_area/mute_all_toggle": "ui/chat_settings_menu_screen.json", - "chat_settings_scrolling_content/chat_settings_content_area/mute_emote_chat_toggle": "ui/chat_settings_menu_screen.json", - "chat_settings_scrolling_content/chat_settings_content_area/chat_tts_toggle": "ui/chat_settings_menu_screen.json", - "chat_settings_scrolling_content/chat_settings_content_area/toggles_to_font_shape": "ui/chat_settings_menu_screen.json", - "chat_settings_scrolling_content/chat_settings_content_area/typeface_dropdown": "ui/chat_settings_menu_screen.json", - "chat_settings_scrolling_content/chat_settings_content_area/font_size": "ui/chat_settings_menu_screen.json", - "chat_settings_scrolling_content/chat_settings_content_area/line_spacing": "ui/chat_settings_menu_screen.json", - "chat_settings_scrolling_content/chat_settings_content_area/font_shape_to_font_colors": "ui/chat_settings_menu_screen.json", - "chat_settings_scrolling_content/chat_settings_content_area/chat_color": "ui/chat_settings_menu_screen.json", - "chat_settings_scrolling_content/chat_settings_content_area/mentions_color": "ui/chat_settings_menu_screen.json", - "chat_settings_scrolling_content/chat_settings_content_area/reset_button": "ui/chat_settings_menu_screen.json", - "chat_setting_scrolling_panel": "ui/chat_settings_menu_screen.json", - "chat_settings_popup": "ui/chat_settings_menu_screen.json", - "popup_factory": "ui/chat_settings_menu_screen.json", - }, - "chest": { - "chest_label": "ui/chest_screen.json", - "chest_grid_item": "ui/chest_screen.json", - "small_chest_grid": "ui/chest_screen.json", - "large_chest_grid": "ui/chest_screen.json", - "small_chest_panel_top_half": "ui/chest_screen.json", - "small_chest_panel_top_half/chest_label": "ui/chest_screen.json", - "small_chest_panel_top_half/small_chest_grid": "ui/chest_screen.json", - "large_chest_panel_top_half": "ui/chest_screen.json", - "large_chest_panel_top_half/chest_label": "ui/chest_screen.json", - "large_chest_panel_top_half/large_chest_grid": "ui/chest_screen.json", - "small_chest_panel": "ui/chest_screen.json", - "small_chest_panel/container_gamepad_helpers": "ui/chest_screen.json", - "small_chest_panel/selected_item_details_factory": "ui/chest_screen.json", - "small_chest_panel/item_lock_notification_factory": "ui/chest_screen.json", - "small_chest_panel/root_panel": "ui/chest_screen.json", - "small_chest_panel/root_panel/common_panel": "ui/chest_screen.json", - "small_chest_panel/root_panel/chest_panel": "ui/chest_screen.json", - "small_chest_panel/root_panel/chest_panel/small_chest_panel_top_half": "ui/chest_screen.json", - "small_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label": "ui/chest_screen.json", - "small_chest_panel/root_panel/chest_panel/hotbar_grid": "ui/chest_screen.json", - "small_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button": "ui/chest_screen.json", - "small_chest_panel/root_panel/chest_panel/flying_item_renderer": "ui/chest_screen.json", - "small_chest_panel/root_panel/inventory_selected_icon_button": "ui/chest_screen.json", - "small_chest_panel/root_panel/gamepad_cursor": "ui/chest_screen.json", - "selected_item_details": "ui/chest_screen.json", - "large_chest_panel": "ui/chest_screen.json", - "large_chest_panel/container_gamepad_helpers": "ui/chest_screen.json", - "large_chest_panel/selected_item_details_factory": "ui/chest_screen.json", - "large_chest_panel/item_lock_notification_factory": "ui/chest_screen.json", - "large_chest_panel/root_panel": "ui/chest_screen.json", - "large_chest_panel/root_panel/common_panel": "ui/chest_screen.json", - "large_chest_panel/root_panel/chest_panel": "ui/chest_screen.json", - "large_chest_panel/root_panel/chest_panel/large_chest_panel_top_half": "ui/chest_screen.json", - "large_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label": "ui/chest_screen.json", - "large_chest_panel/root_panel/chest_panel/hotbar_grid": "ui/chest_screen.json", - "large_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button": "ui/chest_screen.json", - "large_chest_panel/root_panel/chest_panel/flying_item_renderer": "ui/chest_screen.json", - "large_chest_panel/root_panel/inventory_selected_icon_button": "ui/chest_screen.json", - "large_chest_panel/root_panel/gamepad_cursor": "ui/chest_screen.json", - "ender_chest_panel": "ui/chest_screen.json", - "shulker_box_panel": "ui/chest_screen.json", - "barrel_panel": "ui/chest_screen.json", - "small_chest_screen": "ui/chest_screen.json", - "large_chest_screen": "ui/chest_screen.json", - "ender_chest_screen": "ui/chest_screen.json", - "shulker_box_screen": "ui/chest_screen.json", - "barrel_screen": "ui/chest_screen.json", - }, - "choose_realm": { - "realm_screenshot": "ui/choose_realm_screen.json", - "realm_screenshot/picture": "ui/choose_realm_screen.json", - "realms_scroll_content": "ui/choose_realm_screen.json", - "realms_scroll_content/scrolling_panel": "ui/choose_realm_screen.json", - "realms_scroll_panel": "ui/choose_realm_screen.json", - "realms_scroll_panel/realms_stack_panel": "ui/choose_realm_screen.json", - "realms_scroll_panel/realms_stack_panel/realms_world_item_grid": "ui/choose_realm_screen.json", - "realms_scroll_panel/realms_stack_panel/padding_0": "ui/choose_realm_screen.json", - "realms_scroll_panel/realms_stack_panel/add_realm_button": "ui/choose_realm_screen.json", - "realms_scroll_panel/realms_stack_panel/ten_player_button": "ui/choose_realm_screen.json", - "realms_scroll_panel/realms_stack_panel/padding_1": "ui/choose_realm_screen.json", - "realms_scroll_panel/realms_stack_panel/two_player_button": "ui/choose_realm_screen.json", - "realms_world_item_grid": "ui/choose_realm_screen.json", - "realms_world_item": "ui/choose_realm_screen.json", - "realms_world_item/realms_world_item_button": "ui/choose_realm_screen.json", - "realms_world_item_button": "ui/choose_realm_screen.json", - "add_realm_button": "ui/choose_realm_screen.json", - "ten_player_button": "ui/choose_realm_screen.json", - "two_player_button": "ui/choose_realm_screen.json", - "realms_world_content_panel": "ui/choose_realm_screen.json", - "realms_world_content_panel/realm_screenshot": "ui/choose_realm_screen.json", - "realms_world_content_panel/padding": "ui/choose_realm_screen.json", - "realms_world_content_panel/realms_world_content_text_area_panel": "ui/choose_realm_screen.json", - "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel": "ui/choose_realm_screen.json", - "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel/realms_world_header": "ui/choose_realm_screen.json", - "realms_world_content_panel/realms_world_content_status_area_panel": "ui/choose_realm_screen.json", - "realms_world_content_panel/realms_world_content_status_area_panel/world_player_count_text_panel": "ui/choose_realm_screen.json", - "realms_world_content_panel/realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count": "ui/choose_realm_screen.json", - "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon": "ui/choose_realm_screen.json", - "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_online_icon": "ui/choose_realm_screen.json", - "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_unavailable_icon": "ui/choose_realm_screen.json", - "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_offline_icon": "ui/choose_realm_screen.json", - "main_panel": "ui/choose_realm_screen.json", - "main_panel/progress_loading_bars": "ui/choose_realm_screen.json", - "main_panel/realms_scroll_content": "ui/choose_realm_screen.json", - "slots_scroll_panel": "ui/choose_realm_screen.json", - "slots_scroll_panel/slots_stack_panel": "ui/choose_realm_screen.json", - "slots_scroll_panel/slots_stack_panel/padding_0": "ui/choose_realm_screen.json", - "slots_scroll_panel/slots_stack_panel/choose_slot_text": "ui/choose_realm_screen.json", - "slots_scroll_panel/slots_stack_panel/padding_1": "ui/choose_realm_screen.json", - "slots_scroll_panel/slots_stack_panel/slots_grid": "ui/choose_realm_screen.json", - "slots_grid": "ui/choose_realm_screen.json", - "slots_grid/slot_1": "ui/choose_realm_screen.json", - "slots_grid/padding_0": "ui/choose_realm_screen.json", - "slots_grid/slot_2": "ui/choose_realm_screen.json", - "slots_grid/padding_1": "ui/choose_realm_screen.json", - "slots_grid/slot_3": "ui/choose_realm_screen.json", - "slot_content_panel": "ui/choose_realm_screen.json", - "slot_content_panel/world_slot_top": "ui/choose_realm_screen.json", - "slot_content_panel/world_slot_top/plus_image": "ui/choose_realm_screen.json", - "slot_content_panel/world_slot_top/world_thumbnail": "ui/choose_realm_screen.json", - "slot_content_panel/world_slot_bottom": "ui/choose_realm_screen.json", - "slot_content_panel/world_slot_bottom/white_line_hover": "ui/choose_realm_screen.json", - "slot_content_panel/world_slot_bottom/world_text_panel": "ui/choose_realm_screen.json", - "slot_content_panel/world_slot_bottom/world_text_panel/background_grey": "ui/choose_realm_screen.json", - "slot_content_panel/world_slot_bottom/world_text_panel/background_green": "ui/choose_realm_screen.json", - "slot_content_panel/world_slot_bottom/world_text_panel/world_text": "ui/choose_realm_screen.json", - "slot_panel": "ui/choose_realm_screen.json", - "slot_panel/slots_scroll_content": "ui/choose_realm_screen.json", - "slot_panel/slots_scroll_content/scrolling_panel": "ui/choose_realm_screen.json", - "choose_realm_screen": "ui/choose_realm_screen.json", - "choose_realm_screen_content": "ui/choose_realm_screen.json", - "choose_realm_screen_content/realm_dialog": "ui/choose_realm_screen.json", - "choose_realm_screen_content/slot_dialog": "ui/choose_realm_screen.json", - "background": "ui/choose_realm_screen.json", - }, - "coin_purchase": { - "black_image": "ui/coin_purchase_screen.json", - "banner_fill": "ui/coin_purchase_screen.json", - "coins_stack_panel": "ui/coin_purchase_screen.json", - "coins_stack_panel/coin": "ui/coin_purchase_screen.json", - "coins_stack_panel/coin_padding": "ui/coin_purchase_screen.json", - "coins_stack_panel/text_padding": "ui/coin_purchase_screen.json", - "coins_stack_panel/text_padding/coins_without_bonus": "ui/coin_purchase_screen.json", - "call_out_coins_stack_panel": "ui/coin_purchase_screen.json", - "call_out_coins_stack_panel/coin": "ui/coin_purchase_screen.json", - "call_out_coins_stack_panel/coin_padding": "ui/coin_purchase_screen.json", - "call_out_coins_stack_panel/text_padding": "ui/coin_purchase_screen.json", - "call_out_coins_stack_panel/text_padding/coins_without_bonus": "ui/coin_purchase_screen.json", - "button_content": "ui/coin_purchase_screen.json", - "button_content/bonus_coins_stack": "ui/coin_purchase_screen.json", - "button_content/call_out_background": "ui/coin_purchase_screen.json", - "button_content/call_out_background/bevel": "ui/coin_purchase_screen.json", - "call_out_button_content": "ui/coin_purchase_screen.json", - "call_out_button_content/call_out_header": "ui/coin_purchase_screen.json", - "call_out_button_content/call_out_bonus_coins_stack": "ui/coin_purchase_screen.json", - "call_out_button_content/call_out_background": "ui/coin_purchase_screen.json", - "call_out_button_content/call_out_background/call_out_border": "ui/coin_purchase_screen.json", - "call_out_header": "ui/coin_purchase_screen.json", - "call_out_header/call_out_banner": "ui/coin_purchase_screen.json", - "call_out_header/call_out_label": "ui/coin_purchase_screen.json", - "bonus_coins_stack": "ui/coin_purchase_screen.json", - "bonus_coins_stack/image_padding": "ui/coin_purchase_screen.json", - "bonus_coins_stack/image_panel": "ui/coin_purchase_screen.json", - "bonus_coins_stack/image_panel/image": "ui/coin_purchase_screen.json", - "bonus_coins_stack/non_bonus_padding_0": "ui/coin_purchase_screen.json", - "bonus_coins_stack/price_panel": "ui/coin_purchase_screen.json", - "bonus_coins_stack/price_panel/coins_stack_panel": "ui/coin_purchase_screen.json", - "bonus_coins_stack/plus_label": "ui/coin_purchase_screen.json", - "bonus_coins_stack/plus_label/plus_label": "ui/coin_purchase_screen.json", - "bonus_coins_stack/non_bonus_padding_1": "ui/coin_purchase_screen.json", - "bonus_coins_stack/bonus_label_panel": "ui/coin_purchase_screen.json", - "bonus_coins_stack/bonus_label_panel/bonus_label": "ui/coin_purchase_screen.json", - "bonus_coins_stack/padding_0": "ui/coin_purchase_screen.json", - "bonus_coins_stack/bonus_price_panel": "ui/coin_purchase_screen.json", - "bonus_coins_stack/bonus_price_panel/coins_stack_panel": "ui/coin_purchase_screen.json", - "bonus_coins_stack/padding_1": "ui/coin_purchase_screen.json", - "bonus_coins_stack/currency_panel": "ui/coin_purchase_screen.json", - "bonus_coins_stack/currency_panel/currency_price_panel": "ui/coin_purchase_screen.json", - "bonus_coins_stack/currency_panel/currency_price_panel/price": "ui/coin_purchase_screen.json", - "bonus_coins_stack/currency_panel/currency_price_panel/debug_price": "ui/coin_purchase_screen.json", - "bonus_coins_stack/padding_2": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack/image_padding": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack/image_panel": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack/image_panel/image": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack/non_bonus_padding_0": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack/price_panel": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack/price_panel/call_out_coins_stack_panel": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack/plus_label": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack/plus_label/plus_label": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack/non_bonus_padding": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack/bonus_label_panel": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack/bonus_label_panel/bonus_label": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack/padding_0": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack/bonus_coin_panel": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_0": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel/coin": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack/bonus_coin_panel/coin_padding": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel/bonus_coins": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_1": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack/padding_1": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack/currency_panel": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack/currency_panel/currency_price_panel": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack/currency_panel/currency_price_panel/price": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack/currency_panel/currency_price_panel/debug_price": "ui/coin_purchase_screen.json", - "call_out_bonus_coins_stack/padding_2": "ui/coin_purchase_screen.json", - "price": "ui/coin_purchase_screen.json", - "offer_panel": "ui/coin_purchase_screen.json", - "call_out_offer_panel": "ui/coin_purchase_screen.json", - "offer_item": "ui/coin_purchase_screen.json", - "offer_item/offer_panel": "ui/coin_purchase_screen.json", - "offer_item/call_out_offer_panel": "ui/coin_purchase_screen.json", - "offer_grid_item": "ui/coin_purchase_screen.json", - "offer_grid_item/offer_item": "ui/coin_purchase_screen.json", - "not_enough_coins": "ui/coin_purchase_screen.json", - "faq_button": "ui/coin_purchase_screen.json", - "divider_panel": "ui/coin_purchase_screen.json", - "divider_panel/divider": "ui/coin_purchase_screen.json", - "coin_purchase_panel": "ui/coin_purchase_screen.json", - "coin_purchase_panel/padding_0": "ui/coin_purchase_screen.json", - "coin_purchase_panel/not_enough_coins_panel": "ui/coin_purchase_screen.json", - "coin_purchase_panel/not_enough_coins_panel/not_enough_coins": "ui/coin_purchase_screen.json", - "coin_purchase_panel/padding_1": "ui/coin_purchase_screen.json", - "coin_purchase_panel/coin_purchase_grid": "ui/coin_purchase_screen.json", - "coin_purchase_panel/divider_panel": "ui/coin_purchase_screen.json", - "coin_purchase_panel/faq_button": "ui/coin_purchase_screen.json", - "main_panel": "ui/coin_purchase_screen.json", - "main_panel/coin_purchase_panel": "ui/coin_purchase_screen.json", - "main_panel/loading_background": "ui/coin_purchase_screen.json", - "main_panel/progress_loading_spinner": "ui/coin_purchase_screen.json", - "main_panel/no_offers_panel": "ui/coin_purchase_screen.json", - "background": "ui/coin_purchase_screen.json", - "bundle_description": "ui/coin_purchase_screen.json", - "bundle_description_left": "ui/coin_purchase_screen.json", - "bundle_description_center": "ui/coin_purchase_screen.json", - "bundle_description_right": "ui/coin_purchase_screen.json", - "bundle_coins_stack": "ui/coin_purchase_screen.json", - "bundle_coins_stack/content_panel": "ui/coin_purchase_screen.json", - "bundle_coins_stack/content_panel/text_stack": "ui/coin_purchase_screen.json", - "bundle_coins_stack/content_panel/text_stack/title_label": "ui/coin_purchase_screen.json", - "bundle_coins_stack/content_panel/text_stack/padding_1": "ui/coin_purchase_screen.json", - "bundle_coins_stack/content_panel/text_stack/description_section_factory": "ui/coin_purchase_screen.json", - "bundle_coins_stack/content_panel/thumbnail_panel": "ui/coin_purchase_screen.json", - "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail": "ui/coin_purchase_screen.json", - "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail/coin_image": "ui/coin_purchase_screen.json", - "bundle_coins_stack/content_panel/padding_0": "ui/coin_purchase_screen.json", - "bundle_coins_stack/padding_0": "ui/coin_purchase_screen.json", - "bundle_coins_stack/currency_panel": "ui/coin_purchase_screen.json", - "bundle_coins_stack/currency_panel/currency_price_panel": "ui/coin_purchase_screen.json", - "bundle_coins_stack/currency_panel/currency_price_panel/price": "ui/coin_purchase_screen.json", - "bundle_coins_stack/currency_panel/currency_price_panel/debug_price": "ui/coin_purchase_screen.json", - "bundle_coins_stack/padding_2": "ui/coin_purchase_screen.json", - "bundle_button_content": "ui/coin_purchase_screen.json", - "bundle_button_content/bundle_coins_stack": "ui/coin_purchase_screen.json", - "bundle_button_content/call_out_background": "ui/coin_purchase_screen.json", - "bundle_button_content/call_out_background/bevel": "ui/coin_purchase_screen.json", - "bundle_offer_panel": "ui/coin_purchase_screen.json", - "bundle_offer_item": "ui/coin_purchase_screen.json", - "bundle_offer_item/offer_panel": "ui/coin_purchase_screen.json", - "bundle_offer_grid_item": "ui/coin_purchase_screen.json", - "bundle_offer_grid_item/offer_item": "ui/coin_purchase_screen.json", - "bundle_stack_factory": "ui/coin_purchase_screen.json", - "bundle_factory_panel": "ui/coin_purchase_screen.json", - "bundle_factory_panel/bundle_stack_factory": "ui/coin_purchase_screen.json", - "bundle_panel": "ui/coin_purchase_screen.json", - "bundle_panel/progress_loading_spinner": "ui/coin_purchase_screen.json", - "bundle_panel/loading_background": "ui/coin_purchase_screen.json", - "bundle_panel/bundle_stack_factory": "ui/coin_purchase_screen.json", - }, - "command_block": { - "plus_icon": "ui/command_block_screen.json", - "paste_icon": "ui/command_block_screen.json", - "plus_button": "ui/command_block_screen.json", - "paste_button": "ui/command_block_screen.json", - "icon_dropdown_toggle_button_state_content": "ui/command_block_screen.json", - "icon_dropdown_toggle_button_state_content/icon_panel": "ui/command_block_screen.json", - "icon_dropdown_toggle_button_state_content/icon_panel/dropdown_contents_icon": "ui/command_block_screen.json", - "icon_dropdown_toggle_button_state_content/spacer": "ui/command_block_screen.json", - "icon_dropdown_toggle_button_state_content/label_panel": "ui/command_block_screen.json", - "icon_dropdown_toggle_button_state_content/label_panel/label": "ui/command_block_screen.json", - "icon_dropdown_toggle_button_state_content/arrow_panel": "ui/command_block_screen.json", - "icon_dropdown_toggle_button_state_content/arrow_panel/arrow": "ui/command_block_screen.json", - "command_block_multiline_text_edit_box": "ui/command_block_screen.json", - "command_block_text_edit_box": "ui/command_block_screen.json", - "command_block_helper_stack": "ui/command_block_screen.json", - "command_block_helper_stack/offset": "ui/command_block_screen.json", - "command_block_helper_stack/text_": "ui/command_block_screen.json", - "previous_command_block_info_stack": "ui/command_block_screen.json", - "previous_command_block_info_stack/offset": "ui/command_block_screen.json", - "previous_command_block_info_stack/start_label": "ui/command_block_screen.json", - "previous_command_block_info_stack/offset1": "ui/command_block_screen.json", - "previous_command_block_info_stack/start_label_dynamic_text": "ui/command_block_screen.json", - "cancel_button": "ui/command_block_screen.json", - "blocktype_dropdown_content": "ui/command_block_screen.json", - "block_type_panel": "ui/command_block_screen.json", - "condition_dropdown_content": "ui/command_block_screen.json", - "condition_mode_panel": "ui/command_block_screen.json", - "redstone_dropdown_content": "ui/command_block_screen.json", - "redstone_mode_panel": "ui/command_block_screen.json", - "left_scrolling_panel": "ui/command_block_screen.json", - "left_scroll_panel_content": "ui/command_block_screen.json", - "left_scroll_panel_content/content_stack_panel": "ui/command_block_screen.json", - "left_scroll_panel_content/content_stack_panel/offset1": "ui/command_block_screen.json", - "left_scroll_panel_content/content_stack_panel/offset2": "ui/command_block_screen.json", - "left_scroll_panel_content/content_stack_panel/offset2/hover_note_text": "ui/command_block_screen.json", - "left_scroll_panel_content/content_stack_panel/offset3": "ui/command_block_screen.json", - "left_scroll_panel_content/content_stack_panel/block_type_mode_panel": "ui/command_block_screen.json", - "left_scroll_panel_content/content_stack_panel/offset4": "ui/command_block_screen.json", - "left_scroll_panel_content/content_stack_panel/condition_mode_panel": "ui/command_block_screen.json", - "left_scroll_panel_content/content_stack_panel/offset5": "ui/command_block_screen.json", - "left_scroll_panel_content/content_stack_panel/redstone_mode_panel": "ui/command_block_screen.json", - "left_scroll_panel_content/content_stack_panel/offset_execute_on_first_tick": "ui/command_block_screen.json", - "left_scroll_panel_content/content_stack_panel/option_label_execute_on_first_tick": "ui/command_block_screen.json", - "left_scroll_panel_content/content_stack_panel/execute_on_first_tick_toggle": "ui/command_block_screen.json", - "left_scroll_panel_content/content_stack_panel/offset_tick_delay": "ui/command_block_screen.json", - "left_scroll_panel_content/content_stack_panel/option_label_tick_delay": "ui/command_block_screen.json", - "left_scroll_panel_content/content_stack_panel/tick_delay_text": "ui/command_block_screen.json", - "left_scroll_panel_content/content_stack_panel/offset7": "ui/command_block_screen.json", - "left_scroll_panel_content/content_stack_panel/cancel": "ui/command_block_screen.json", - "left_scroll_panel_content/content_stack_panel/offset8": "ui/command_block_screen.json", - "left_divider_content": "ui/command_block_screen.json", - "left_divider_content/left_scrolling_panel": "ui/command_block_screen.json", - "right_scrolling_panel": "ui/command_block_screen.json", - "right_scroll_panel_content": "ui/command_block_screen.json", - "right_scroll_panel_content/command_block_commands_panel": "ui/command_block_screen.json", - "right_scroll_panel_content/command_block_commands_panel/spacer1": "ui/command_block_screen.json", - "right_scroll_panel_content/command_block_commands_panel/centering_panel": "ui/command_block_screen.json", - "right_scroll_panel_content/command_block_commands_panel/centering_panel/option_label": "ui/command_block_screen.json", - "right_scroll_panel_content/command_block_commands_panel/spacer2": "ui/command_block_screen.json", - "right_scroll_panel_content/command_block_commands_panel/centering_panel1": "ui/command_block_screen.json", - "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel": "ui/command_block_screen.json", - "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset": "ui/command_block_screen.json", - "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset/command_block_commands_text": "ui/command_block_screen.json", - "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/paste_button": "ui/command_block_screen.json", - "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/plus_button": "ui/command_block_screen.json", - "right_scroll_panel_content/switch_warning_panel": "ui/command_block_screen.json", - "right_scroll_panel_content/switch_warning_panel/switch_warning_label": "ui/command_block_screen.json", - "right_scroll_panel_content/self_label": "ui/command_block_screen.json", - "right_scroll_panel_content/self_label_offset": "ui/command_block_screen.json", - "right_scroll_panel_content/nearest_player_label": "ui/command_block_screen.json", - "right_scroll_panel_content/nearest_player_label_offset": "ui/command_block_screen.json", - "right_scroll_panel_content/random_player_label": "ui/command_block_screen.json", - "right_scroll_panel_content/random_player_label_offset": "ui/command_block_screen.json", - "right_scroll_panel_content/all_players_label": "ui/command_block_screen.json", - "right_scroll_panel_content/all_players_label_offset": "ui/command_block_screen.json", - "right_scroll_panel_content/all_entities_label": "ui/command_block_screen.json", - "right_scroll_panel_content/all_entities_label_offset": "ui/command_block_screen.json", - "right_scroll_panel_content/nearest_label": "ui/command_block_screen.json", - "right_scroll_panel_content/nearest_label_offset": "ui/command_block_screen.json", - "right_scroll_panel_content/command_block_previous_output_panel": "ui/command_block_screen.json", - "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel": "ui/command_block_screen.json", - "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack": "ui/command_block_screen.json", - "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/show_output_toggle": "ui/command_block_screen.json", - "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/option_label": "ui/command_block_screen.json", - "right_scroll_panel_content/command_block_previous_output_panel/spacer": "ui/command_block_screen.json", - "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel": "ui/command_block_screen.json", - "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel/command_output_text": "ui/command_block_screen.json", - "right_scroll_panel_content/previous_block_type_text": "ui/command_block_screen.json", - "right_scroll_panel_content/offset4": "ui/command_block_screen.json", - "right_scroll_panel_content/previous_conditional_mode_text": "ui/command_block_screen.json", - "right_scroll_panel_content/offset5": "ui/command_block_screen.json", - "right_scroll_panel_content/previous_redstone_mode_text": "ui/command_block_screen.json", - "divider_content": "ui/command_block_screen.json", - "divider_content/left_side": "ui/command_block_screen.json", - "divider_content/right_side": "ui/command_block_screen.json", - "command_block_screen_content": "ui/command_block_screen.json", - "command_block_screen_content/background_divider": "ui/command_block_screen.json", - "command_block_screen_content/background_divider/bg_image": "ui/command_block_screen.json", - "command_block_screen_content/background_divider/dialog_divider": "ui/command_block_screen.json", - "command_block_screen_content/background_divider/header_buttons_stack_panel": "ui/command_block_screen.json", - "command_block_screen_content/background_divider/header_buttons_stack_panel/paste_button": "ui/command_block_screen.json", - "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder": "ui/command_block_screen.json", - "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/close": "ui/command_block_screen.json", - "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize": "ui/command_block_screen.json", - "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/default": "ui/command_block_screen.json", - "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/hover": "ui/command_block_screen.json", - "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/pressed": "ui/command_block_screen.json", - "command_block_screen_content/title": "ui/command_block_screen.json", - "command_block_screen_content/content": "ui/command_block_screen.json", - "command_block_screen_content/maximized_command_block_text": "ui/command_block_screen.json", - "right_divider_content": "ui/command_block_screen.json", - "right_divider_content/right_scrolling_panel": "ui/command_block_screen.json", - "command_block_screen": "ui/command_block_screen.json", - }, - "confirm_delete_account": { - "horizontal_divider": "ui/confirm_delete_account_screen.json", - "image_panel": "ui/confirm_delete_account_screen.json", - "image_panel/image": "ui/confirm_delete_account_screen.json", - "header_panel": "ui/confirm_delete_account_screen.json", - "header_panel/image_panel": "ui/confirm_delete_account_screen.json", - "header_panel/padding": "ui/confirm_delete_account_screen.json", - "header_panel/text_panel": "ui/confirm_delete_account_screen.json", - "header_panel/text_panel/header_text": "ui/confirm_delete_account_screen.json", - "header_panel/text_panel/padding_2": "ui/confirm_delete_account_screen.json", - "header_panel/text_panel/header_text_2": "ui/confirm_delete_account_screen.json", - "dialog_content": "ui/confirm_delete_account_screen.json", - "dialog_content/body_content": "ui/confirm_delete_account_screen.json", - "dialog_content/padding": "ui/confirm_delete_account_screen.json", - "dialog_content/button_panel": "ui/confirm_delete_account_screen.json", - "dialog_content/button_panel/confirm_delete_account_button": "ui/confirm_delete_account_screen.json", - "dialog_content/button_panel/padding": "ui/confirm_delete_account_screen.json", - "dialog_content/button_panel/cancel_delete_account_button": "ui/confirm_delete_account_screen.json", - "confirm_checkbox": "ui/confirm_delete_account_screen.json", - "confirm_checkbox/check_box_wrapper": "ui/confirm_delete_account_screen.json", - "confirm_checkbox/check_box_wrapper/check_box": "ui/confirm_delete_account_screen.json", - "confirm_checkbox/padding": "ui/confirm_delete_account_screen.json", - "confirm_checkbox/label_wrapper": "ui/confirm_delete_account_screen.json", - "confirm_checkbox/label_wrapper/label": "ui/confirm_delete_account_screen.json", - "scrolling_panel": "ui/confirm_delete_account_screen.json", - "description_label_panel": "ui/confirm_delete_account_screen.json", - "description_label_panel/header_label_wrapper": "ui/confirm_delete_account_screen.json", - "description_label_panel/padding": "ui/confirm_delete_account_screen.json", - "description_label_panel/divider_0": "ui/confirm_delete_account_screen.json", - "description_label_panel/confirm_0": "ui/confirm_delete_account_screen.json", - "description_label_panel/divider_1": "ui/confirm_delete_account_screen.json", - "description_label_panel/confirm_1": "ui/confirm_delete_account_screen.json", - "description_label_panel/divider_2": "ui/confirm_delete_account_screen.json", - "description_label_panel/confirm_2": "ui/confirm_delete_account_screen.json", - "description_label_panel/divider_3": "ui/confirm_delete_account_screen.json", - "description_label_panel/confirm_3": "ui/confirm_delete_account_screen.json", - "confirm_delete_account_screen": "ui/confirm_delete_account_screen.json", - "confirm_delete_account_screen_content": "ui/confirm_delete_account_screen.json", - "confirm_delete_account_screen_content/root_panel": "ui/confirm_delete_account_screen.json", - "confirm_delete_account_screen_content/root_panel/dialog": "ui/confirm_delete_account_screen.json", - "screen_dialog": "ui/confirm_delete_account_screen.json", - "background": "ui/confirm_delete_account_screen.json", - }, - "content_log": { - "content_log_label": "ui/content_log.json", - "content_log_grid_item": "ui/content_log.json", - "content_log_grid_item/content_log_background": "ui/content_log.json", - "content_log_grid_item/content_log_background/content_log_text": "ui/content_log.json", - "content_log_panel": "ui/content_log.json", - "content_log_panel/stack_panel": "ui/content_log.json", - }, - "content_log_history": { - "clipboard_icon": "ui/content_log_history_screen.json", - "clipboard_icon_wrapper": "ui/content_log_history_screen.json", - "clipboard_icon_wrapper/stack_panel": "ui/content_log_history_screen.json", - "clipboard_icon_wrapper/stack_panel/icon_panel": "ui/content_log_history_screen.json", - "clipboard_icon_wrapper/stack_panel/icon_panel/icon": "ui/content_log_history_screen.json", - "clipboard_icon_wrapper/stack_panel/offset": "ui/content_log_history_screen.json", - "clipboard_icon_wrapper/stack_panel/label_panel": "ui/content_log_history_screen.json", - "clipboard_icon_wrapper/stack_panel/label_panel/label": "ui/content_log_history_screen.json", - "clipboard_button": "ui/content_log_history_screen.json", - "clear_icon": "ui/content_log_history_screen.json", - "clear_icon_wrapper": "ui/content_log_history_screen.json", - "clear_icon_wrapper/stack_panel": "ui/content_log_history_screen.json", - "clear_icon_wrapper/stack_panel/icon_panel": "ui/content_log_history_screen.json", - "clear_icon_wrapper/stack_panel/icon_panel/icon": "ui/content_log_history_screen.json", - "clear_icon_wrapper/stack_panel/offset": "ui/content_log_history_screen.json", - "clear_icon_wrapper/stack_panel/label_panel": "ui/content_log_history_screen.json", - "clear_icon_wrapper/stack_panel/label_panel/label": "ui/content_log_history_screen.json", - "clear_button": "ui/content_log_history_screen.json", - "horizontal_button_stack_panel": "ui/content_log_history_screen.json", - "horizontal_button_stack_panel/clipboard_button": "ui/content_log_history_screen.json", - "horizontal_button_stack_panel/clear_button": "ui/content_log_history_screen.json", - "content_log_message": "ui/content_log_history_screen.json", - "content_log_message_panel": "ui/content_log_history_screen.json", - "content_log_message_panel/content_log_message": "ui/content_log_history_screen.json", - "content_log_message_panel_panel": "ui/content_log_history_screen.json", - "content_log_message_panel_panel/content_log_message_panel": "ui/content_log_history_screen.json", - "messages_stack_panel": "ui/content_log_history_screen.json", - "messages_scrolling_panel": "ui/content_log_history_screen.json", - "main_stack_panel": "ui/content_log_history_screen.json", - "main_stack_panel/messages_scrolling_panel": "ui/content_log_history_screen.json", - "content_log_history_panel": "ui/content_log_history_screen.json", - "content_log_history_panel/content_log_history_dialog": "ui/content_log_history_screen.json", - "content_log_history_screen": "ui/content_log_history_screen.json", - }, - "crafter_pocket": { - "generic_label": "ui/crafter_screen_pocket.json", - "header_panel": "ui/crafter_screen_pocket.json", - "header_panel/header_background": "ui/crafter_screen_pocket.json", - "header_panel/title_label": "ui/crafter_screen_pocket.json", - "header_area": "ui/crafter_screen_pocket.json", - "header_area/x": "ui/crafter_screen_pocket.json", - "header_area/inventory_header": "ui/crafter_screen_pocket.json", - "header_area/container_header": "ui/crafter_screen_pocket.json", - "dark_bg": "ui/crafter_screen_pocket.json", - "panel_outline": "ui/crafter_screen_pocket.json", - "background_panel": "ui/crafter_screen_pocket.json", - "inventory_panel": "ui/crafter_screen_pocket.json", - "inventory_panel/scrolling_panel": "ui/crafter_screen_pocket.json", - "left_screen": "ui/crafter_screen_pocket.json", - "left_screen/inventory_panel": "ui/crafter_screen_pocket.json", - "crafter_input_grid": "ui/crafter_screen_pocket.json", - "crafter_disabled_slot": "ui/crafter_screen_pocket.json", - "crafter_disabled_slot/default": "ui/crafter_screen_pocket.json", - "crafter_disabled_slot/hover": "ui/crafter_screen_pocket.json", - "crafter_disabled_slot/pressed": "ui/crafter_screen_pocket.json", - "cell_image": "ui/crafter_screen_pocket.json", - "crafter_highlight_slot": "ui/crafter_screen_pocket.json", - "crafter_container_slot_button_prototype": "ui/crafter_screen_pocket.json", - "crafter_highlight_slot_panel": "ui/crafter_screen_pocket.json", - "crafter_highlight_slot_panel/highlight": "ui/crafter_screen_pocket.json", - "crafter_highlight_slot_panel/highlight/hover_text": "ui/crafter_screen_pocket.json", - "crafter_highlight_slot_panel/white_border": "ui/crafter_screen_pocket.json", - "crafter_enabled_slot_template": "ui/crafter_screen_pocket.json", - "output_slot_hover_info": "ui/crafter_screen_pocket.json", - "output_slot_hover_info/hover": "ui/crafter_screen_pocket.json", - "output_slot_hover_info/output_slot": "ui/crafter_screen_pocket.json", - "output_slot_hover_info/output_slot_border": "ui/crafter_screen_pocket.json", - "output_slot_hover_info/output_count": "ui/crafter_screen_pocket.json", - "panel_crafter": "ui/crafter_screen_pocket.json", - "panel_crafter/item_lock_notification_factory": "ui/crafter_screen_pocket.json", - "panel_crafter/root_panel": "ui/crafter_screen_pocket.json", - "panel_crafter/root_panel/disabled_slot_0_button": "ui/crafter_screen_pocket.json", - "panel_crafter/root_panel/disabled_slot_1_button": "ui/crafter_screen_pocket.json", - "panel_crafter/root_panel/disabled_slot_2_button": "ui/crafter_screen_pocket.json", - "panel_crafter/root_panel/disabled_slot_3_button": "ui/crafter_screen_pocket.json", - "panel_crafter/root_panel/disabled_slot_4_button": "ui/crafter_screen_pocket.json", - "panel_crafter/root_panel/disabled_slot_5_button": "ui/crafter_screen_pocket.json", - "panel_crafter/root_panel/disabled_slot_6_button": "ui/crafter_screen_pocket.json", - "panel_crafter/root_panel/disabled_slot_7_button": "ui/crafter_screen_pocket.json", - "panel_crafter/root_panel/disabled_slot_8_button": "ui/crafter_screen_pocket.json", - "panel_crafter/root_panel/redstone_screen_inventory": "ui/crafter_screen_pocket.json", - "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid": "ui/crafter_screen_pocket.json", - "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid": "ui/crafter_screen_pocket.json", - "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon": "ui/crafter_screen_pocket.json", - "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line": "ui/crafter_screen_pocket.json", - "panel_crafter/root_panel/redstone_screen_inventory/crafter_output": "ui/crafter_screen_pocket.json", - "panel_crafter/root_panel/red_icon": "ui/crafter_screen_pocket.json", - "right_screen_background": "ui/crafter_screen_pocket.json", - "right_screen": "ui/crafter_screen_pocket.json", - "right_screen/right_screen_bg": "ui/crafter_screen_pocket.json", - "right_screen/right_screen_bg/inventory_panel": "ui/crafter_screen_pocket.json", - "panel": "ui/crafter_screen_pocket.json", - "panel/container_gamepad_helpers": "ui/crafter_screen_pocket.json", - "panel/header": "ui/crafter_screen_pocket.json", - "panel/bg": "ui/crafter_screen_pocket.json", - "panel/inventory": "ui/crafter_screen_pocket.json", - "panel/container": "ui/crafter_screen_pocket.json", - "panel/selected_item_details_factory": "ui/crafter_screen_pocket.json", - "panel/item_lock_notification_factory": "ui/crafter_screen_pocket.json", - "panel/gamepad_cursor": "ui/crafter_screen_pocket.json", - "panel/flying_item_renderer": "ui/crafter_screen_pocket.json", - "crafter": "ui/crafter_screen_pocket.json", - }, - "create_world_upsell": { - "world_icon": "ui/create_world_upsell_screen.json", - "realms_icon": "ui/create_world_upsell_screen.json", - "dark_banner": "ui/create_world_upsell_screen.json", - "grey_banner": "ui/create_world_upsell_screen.json", - "checkmark": "ui/create_world_upsell_screen.json", - "largex": "ui/create_world_upsell_screen.json", - "realms_art_icon": "ui/create_world_upsell_screen.json", - "new_world_button": "ui/create_world_upsell_screen.json", - "new_realm_button": "ui/create_world_upsell_screen.json", - "remove_trial_button": "ui/create_world_upsell_screen.json", - "button_content": "ui/create_world_upsell_screen.json", - "button_content/padding_0": "ui/create_world_upsell_screen.json", - "button_content/icon_panel": "ui/create_world_upsell_screen.json", - "button_content/padding_1": "ui/create_world_upsell_screen.json", - "button_content/label_panel": "ui/create_world_upsell_screen.json", - "realm_button_content": "ui/create_world_upsell_screen.json", - "world_button_content": "ui/create_world_upsell_screen.json", - "realms_button_text_panel": "ui/create_world_upsell_screen.json", - "realms_button_text_panel/new_realm_label": "ui/create_world_upsell_screen.json", - "realms_button_text_panel/new_realm_trial_label": "ui/create_world_upsell_screen.json", - "price_label": "ui/create_world_upsell_screen.json", - "new_realm_label": "ui/create_world_upsell_screen.json", - "new_realm_trial_label": "ui/create_world_upsell_screen.json", - "new_world_label": "ui/create_world_upsell_screen.json", - "button_and_price_panel": "ui/create_world_upsell_screen.json", - "button_and_price_panel/padding": "ui/create_world_upsell_screen.json", - "button_and_price_panel/price_label_panel": "ui/create_world_upsell_screen.json", - "button_and_price_panel/price_label_panel/price": "ui/create_world_upsell_screen.json", - "border_shell": "ui/create_world_upsell_screen.json", - "head_banner_panel": "ui/create_world_upsell_screen.json", - "create_new_realm_content": "ui/create_world_upsell_screen.json", - "create_new_realm_content/head_banner_panel": "ui/create_world_upsell_screen.json", - "create_new_realm_content/head_banner_panel/realm_button_price": "ui/create_world_upsell_screen.json", - "create_new_realm_content/realm_grid": "ui/create_world_upsell_screen.json", - "create_world_upsell_grid_item": "ui/create_world_upsell_screen.json", - "create_world_upsell_grid_item/db": "ui/create_world_upsell_screen.json", - "create_world_upsell_grid_item/gb": "ui/create_world_upsell_screen.json", - "create_world_upsell_grid_item/gp": "ui/create_world_upsell_screen.json", - "grid_panel": "ui/create_world_upsell_screen.json", - "grid_panel/padding": "ui/create_world_upsell_screen.json", - "grid_panel/upsell_text_panel": "ui/create_world_upsell_screen.json", - "grid_panel/upsell_text_panel/upsell_label": "ui/create_world_upsell_screen.json", - "create_new_world_content": "ui/create_world_upsell_screen.json", - "create_new_world_content/head_banner_panel": "ui/create_world_upsell_screen.json", - "create_new_world_content/head_banner_panel/world_button_price": "ui/create_world_upsell_screen.json", - "create_new_world_content/world_grid": "ui/create_world_upsell_screen.json", - "new_world_or_realm_scroll": "ui/create_world_upsell_screen.json", - "create_new_world_or_realm_content": "ui/create_world_upsell_screen.json", - "create_new_world_or_realm_content/world": "ui/create_world_upsell_screen.json", - "create_new_world_or_realm_content/padding": "ui/create_world_upsell_screen.json", - "create_new_world_or_realm_content/realm_content": "ui/create_world_upsell_screen.json", - "new_realm_scroll": "ui/create_world_upsell_screen.json", - "new_realm_content_panel": "ui/create_world_upsell_screen.json", - "new_realm_content_panel/key_art_panel": "ui/create_world_upsell_screen.json", - "new_realm_content_panel/key_art_panel/realms_art_icon": "ui/create_world_upsell_screen.json", - "new_realm_content_panel/padding_hack": "ui/create_world_upsell_screen.json", - "new_realm_content_panel/padding_0": "ui/create_world_upsell_screen.json", - "new_realm_content_panel/new_realm_scroll": "ui/create_world_upsell_screen.json", - "new_realm_content_panel/padding_1": "ui/create_world_upsell_screen.json", - "create_realm_upsell_content": "ui/create_world_upsell_screen.json", - "create_realm_upsell_content/realm_content": "ui/create_world_upsell_screen.json", - "create_realm_upsell_content/padding_0": "ui/create_world_upsell_screen.json", - "create_realm_upsell_content/remove_trial_button": "ui/create_world_upsell_screen.json", - "create_realm_upsell_content/padding_1": "ui/create_world_upsell_screen.json", - "realm_content": "ui/create_world_upsell_screen.json", - "create_world_upsell": "ui/create_world_upsell_screen.json", - "create_world_upsell_realms": "ui/create_world_upsell_screen.json", - "main_panel": "ui/create_world_upsell_screen.json", - "variable_screen_size_panel": "ui/create_world_upsell_screen.json", - "variable_screen_size_panel/dialog_0": "ui/create_world_upsell_screen.json", - "variable_screen_size_panel/dialog_1": "ui/create_world_upsell_screen.json", - "main_panel_realms_only": "ui/create_world_upsell_screen.json", - }, - "credits": { - "fade_in_image": "ui/credits_screen.json", - "fade_out_image": "ui/credits_screen.json", - "skip_panel": "ui/credits_screen.json", - "skip_panel/skip_button": "ui/credits_screen.json", - "skip_panel/exit_credits_input_panel": "ui/credits_screen.json", - "credits_renderer": "ui/credits_screen.json", - "credits_screen_content": "ui/credits_screen.json", - "credits_screen_content/credits_renderer": "ui/credits_screen.json", - "credits_screen_content/vignette_renderer": "ui/credits_screen.json", - "credits_screen_content/fade_in_image": "ui/credits_screen.json", - "credits_screen_content/credits_factory": "ui/credits_screen.json", - "credits_screen_content/whole_screen_input_panel": "ui/credits_screen.json", - "background": "ui/credits_screen.json", - "credits_screen": "ui/credits_screen.json", - }, - "csb_purchase_error": { - "csb_purchase_error_screen": "ui/csb_purchase_error_screen.json", - "purchase_error_screen_content": "ui/csb_purchase_error_screen.json", - "purchase_error_screen_content/main_panel": "ui/csb_purchase_error_screen.json", - "purchase_error_modal_main_panel": "ui/csb_purchase_error_screen.json", - "purchase_error_modal_main_panel/text_panel": "ui/csb_purchase_error_screen.json", - "purchase_error_modal_main_panel/text_panel/text": "ui/csb_purchase_error_screen.json", - "purchase_error_modal_main_panel/padding_1": "ui/csb_purchase_error_screen.json", - "purchase_error_modal_main_panel/art_panel": "ui/csb_purchase_error_screen.json", - "purchase_error_modal_main_panel/art_panel/art": "ui/csb_purchase_error_screen.json", - "purchase_error_modal_main_panel/padding_2": "ui/csb_purchase_error_screen.json", - "purchase_error_modal_main_panel/error_panel": "ui/csb_purchase_error_screen.json", - "purchase_error_modal_main_panel/error_panel/error_code": "ui/csb_purchase_error_screen.json", - "purchase_error_modal_main_panel/error_panel/correlation_id": "ui/csb_purchase_error_screen.json", - "purchase_error_modal_back_button": "ui/csb_purchase_error_screen.json", - }, - "csb": { - "csb_pdp_screen": "ui/csb_screen.json", - "csb_upgrade_notice_screen": "ui/csb_screen.json", - "csb_background": "ui/csb_screen.json", - "gradient_image_stack": "ui/csb_screen.json", - "gradient_image_stack/gradient": "ui/csb_screen.json", - "gradient_content_panel": "ui/csb_screen.json", - "gradient_content_panel/gradient": "ui/csb_screen.json", - "gradient_content_panel/particles": "ui/csb_screen.json", - "gradient_content_panel/content_panel": "ui/csb_screen.json", - "csb_screen_main_panel": "ui/csb_screen.json", - "csb_main_panel": "ui/csb_screen.json", - "csb_main_panel/root_panel": "ui/csb_screen.json", - "csb_main_panel/root_panel/main_panel": "ui/csb_screen.json", - "dialog_content": "ui/csb_screen.json", - "dialog_content/selector_area": "ui/csb_screen.json", - "dialog_content/padding_1": "ui/csb_screen.json", - "dialog_content/allow_divider_offset_panel": "ui/csb_screen.json", - "dialog_content/allow_divider_offset_panel/left_right_pane_divider": "ui/csb_screen.json", - "dialog_content/padding_2": "ui/csb_screen.json", - "dialog_content/content_area": "ui/csb_screen.json", - "dialog_content/padding_3": "ui/csb_screen.json", - "selector_area": "ui/csb_screen.json", - "selector_area/scrolling_panel": "ui/csb_screen.json", - "scrollable_selector_area_content": "ui/csb_screen.json", - "scrollable_selector_area_content/focus_reset_input_panel": "ui/csb_screen.json", - "scrollable_selector_area_content/csb_toggle": "ui/csb_screen.json", - "scrollable_selector_area_content/content_toggle": "ui/csb_screen.json", - "scrollable_selector_area_content/faq_toggle": "ui/csb_screen.json", - "scrollable_selector_area_content/toggle_section_divider": "ui/csb_screen.json", - "scrollable_selector_area_content/buy_now_toggle": "ui/csb_screen.json", - "scrollable_selector_area_content/xbl_btn_panel": "ui/csb_screen.json", - "scrollable_selector_area_content/xbl_btn_panel/xbl_btn": "ui/csb_screen.json", - "section_toggle_base": "ui/csb_screen.json", - "tab_button_text": "ui/csb_screen.json", - "toggle_base": "ui/csb_screen.json", - "toggle_base/toggle": "ui/csb_screen.json", - "toggle_base/padding": "ui/csb_screen.json", - "csb_toggle": "ui/csb_screen.json", - "content_toggle": "ui/csb_screen.json", - "faq_toggle": "ui/csb_screen.json", - "buy_now_toggle": "ui/csb_screen.json", - "left_right_pane_divider": "ui/csb_screen.json", - "content_area": "ui/csb_screen.json", - "content_area/control": "ui/csb_screen.json", - "content_area/control/scrolling_panel_csb": "ui/csb_screen.json", - "section_content_panels": "ui/csb_screen.json", - "vertical_padding_4px": "ui/csb_screen.json", - "section_base": "ui/csb_screen.json", - "buy_now_content_section": "ui/csb_screen.json", - "buy_now_content_section/vertical_padding": "ui/csb_screen.json", - "buy_now_content_section/content": "ui/csb_screen.json", - "markdown_background_animated": "ui/csb_screen.json", - "markdown_background_animated/csb_chevron": "ui/csb_screen.json", - "markdown_background": "ui/csb_screen.json", - "markdown_background/banner_panel": "ui/csb_screen.json", - "markdown_background/banner_panel/banner": "ui/csb_screen.json", - "markdown_background/banner_panel/banner/banner_stack_panel": "ui/csb_screen.json", - "markdown_background/banner_panel/banner/banner_stack_panel/0": "ui/csb_screen.json", - "markdown_background/triangle_panel": "ui/csb_screen.json", - "markdown_background/triangle_panel/triangle": "ui/csb_screen.json", - "empty_label": "ui/csb_screen.json", - "full_width_section_divider": "ui/csb_screen.json", - }, - "csb_content": { - "csb_content_section": "ui/csb_sections/content_section.json", - "csb_content_section/content_section_vertical_padding_1": "ui/csb_sections/content_section.json", - "csb_content_section/popular_packs_label_panel": "ui/csb_sections/content_section.json", - "csb_content_section/popular_packs_label_panel/label_with_gradient": "ui/csb_sections/content_section.json", - "csb_content_section/popular_packs_label_panel/tts_border": "ui/csb_sections/content_section.json", - "csb_content_section/content_section_vertical_padding_2": "ui/csb_sections/content_section.json", - "csb_content_section/content_pack_types": "ui/csb_sections/content_section.json", - "csb_content_section/content_packs_included": "ui/csb_sections/content_section.json", - "csb_content_section/content_section_vertical_padding_3": "ui/csb_sections/content_section.json", - "content_pack_types_section": "ui/csb_sections/content_section.json", - "content_pack_types_section/pack_types": "ui/csb_sections/content_section.json", - "content_pack_types_section/padding": "ui/csb_sections/content_section.json", - "content_packs_included_section": "ui/csb_sections/content_section.json", - "content_packs_included_section/popular_packs": "ui/csb_sections/content_section.json", - "content_packs_included_section/section_divider": "ui/csb_sections/content_section.json", - "pack_types": "ui/csb_sections/content_section.json", - "pack_types/padding_01": "ui/csb_sections/content_section.json", - "pack_types/pack_types_1": "ui/csb_sections/content_section.json", - "pack_types/padding_02": "ui/csb_sections/content_section.json", - "pack_types/pack_types_2": "ui/csb_sections/content_section.json", - "pack_types/padding_03": "ui/csb_sections/content_section.json", - "pack_types_1": "ui/csb_sections/content_section.json", - "pack_types_1/worlds": "ui/csb_sections/content_section.json", - "pack_types_1/padding_01": "ui/csb_sections/content_section.json", - "pack_types_1/textures": "ui/csb_sections/content_section.json", - "pack_types_1/padding_02": "ui/csb_sections/content_section.json", - "pack_types_1/persona": "ui/csb_sections/content_section.json", - "pack_types_2": "ui/csb_sections/content_section.json", - "pack_types_2/padding_1": "ui/csb_sections/content_section.json", - "pack_types_2/skins": "ui/csb_sections/content_section.json", - "pack_types_2/padding_2": "ui/csb_sections/content_section.json", - "pack_types_2/mashups": "ui/csb_sections/content_section.json", - "pack_types_2/padding_3": "ui/csb_sections/content_section.json", - "pack_type_description": "ui/csb_sections/content_section.json", - "pack_type_description/image_nesting_panel": "ui/csb_sections/content_section.json", - "pack_type_description/image_nesting_panel/texture": "ui/csb_sections/content_section.json", - "pack_type_description/padding_0": "ui/csb_sections/content_section.json", - "pack_type_description/description_nesting_panel": "ui/csb_sections/content_section.json", - "pack_type_description/description_nesting_panel/description_label": "ui/csb_sections/content_section.json", - "pack_type_description/description_nesting_panel/tts_border": "ui/csb_sections/content_section.json", - "pack_type_description/padding_1": "ui/csb_sections/content_section.json", - "popular_packs": "ui/csb_sections/content_section.json", - "popular_packs/padding_0": "ui/csb_sections/content_section.json", - "popular_packs/pack_grid": "ui/csb_sections/content_section.json", - "popular_packs/view_all_packs_panel": "ui/csb_sections/content_section.json", - "popular_packs/view_all_packs_panel/view_all_packs_button": "ui/csb_sections/content_section.json", - "popular_packs/view_all_packs_panel/padding": "ui/csb_sections/content_section.json", - "popular_packs/view_all_packs_panel/view_character_creator_items": "ui/csb_sections/content_section.json", - "popular_packs/padding_1": "ui/csb_sections/content_section.json", - "popular_packs_label": "ui/csb_sections/content_section.json", - "packs_collection": "ui/csb_sections/content_section.json", - "packs_collection/row_1": "ui/csb_sections/content_section.json", - "packs_collection/row_1/pack_image_grid_item_0": "ui/csb_sections/content_section.json", - "packs_collection/row_1/padding": "ui/csb_sections/content_section.json", - "packs_collection/row_1/pack_image_grid_item_1": "ui/csb_sections/content_section.json", - "packs_collection/padding_1": "ui/csb_sections/content_section.json", - "packs_collection/row_2": "ui/csb_sections/content_section.json", - "packs_collection/row_2/pack_image_grid_item_0": "ui/csb_sections/content_section.json", - "packs_collection/row_2/padding": "ui/csb_sections/content_section.json", - "packs_collection/row_2/pack_image_grid_item_1": "ui/csb_sections/content_section.json", - "packs_collection/padding_2": "ui/csb_sections/content_section.json", - "pack_image_grid_item": "ui/csb_sections/content_section.json", - "pack_image_grid_item/bg": "ui/csb_sections/content_section.json", - "pack_image_grid_item/bg/featured_key_art": "ui/csb_sections/content_section.json", - "pack_image_grid_item/bg/progress_loading": "ui/csb_sections/content_section.json", - "pack_image_grid_item/offer_button": "ui/csb_sections/content_section.json", - "pack_image_grid_item/offer_button/default": "ui/csb_sections/content_section.json", - "pack_image_grid_item/offer_button/hover": "ui/csb_sections/content_section.json", - "pack_image_grid_item/offer_button/pressed": "ui/csb_sections/content_section.json", - }, - "csb_banner": { - "csb_banner": "ui/csb_sections/csb_banner.json", - "csb_banner/static_button": "ui/csb_sections/csb_banner.json", - "csb_banner/animated_button": "ui/csb_sections/csb_banner.json", - "csb_banner_slim": "ui/csb_sections/csb_banner.json", - "csb_banner_slim/banner_button": "ui/csb_sections/csb_banner.json", - "csb_banner_portal": "ui/csb_sections/csb_banner.json", - "csb_banner_portal/banner_button": "ui/csb_sections/csb_banner.json", - "promo_banner_csb_button": "ui/csb_sections/csb_banner.json", - "promo_banner_csb_button/default": "ui/csb_sections/csb_banner.json", - "promo_banner_csb_button/hover": "ui/csb_sections/csb_banner.json", - "csb_banner_slim_content": "ui/csb_sections/csb_banner.json", - "csb_banner_slim_content/banner_content": "ui/csb_sections/csb_banner.json", - "csb_banner_portal_content": "ui/csb_sections/csb_banner.json", - "csb_banner_portal_content/banner_content": "ui/csb_sections/csb_banner.json", - "slim_logo_panel": "ui/csb_sections/csb_banner.json", - "slim_logo_panel/mpp_logo": "ui/csb_sections/csb_banner.json", - "portal_logo_panel": "ui/csb_sections/csb_banner.json", - "portal_logo_panel/mpp_logo": "ui/csb_sections/csb_banner.json", - "csb_banner_new_content": "ui/csb_sections/csb_banner.json", - "csb_banner_new_content/text": "ui/csb_sections/csb_banner.json", - "csb_banner_new_content/text/logo_panel": "ui/csb_sections/csb_banner.json", - "csb_banner_new_content/text/offer_panel": "ui/csb_sections/csb_banner.json", - "csb_banner_new_content/text/offer_panel/upsell_text": "ui/csb_sections/csb_banner.json", - "csb_banner_new_content/text/pixel_art": "ui/csb_sections/csb_banner.json", - "sdl_upsell_text_component_factory": "ui/csb_sections/csb_banner.json", - "csb_banner_content": "ui/csb_sections/csb_banner.json", - "csb_banner_content/banner": "ui/csb_sections/csb_banner.json", - "csb_banner_content/text": "ui/csb_sections/csb_banner.json", - "csb_banner_content/text/logo_panel": "ui/csb_sections/csb_banner.json", - "csb_banner_content/text/logo_panel/logo": "ui/csb_sections/csb_banner.json", - "csb_banner_content/text/offer_panel": "ui/csb_sections/csb_banner.json", - "csb_banner_content/text/offer_panel/offer": "ui/csb_sections/csb_banner.json", - "csb_banner_content/text/learn_more_panel": "ui/csb_sections/csb_banner.json", - "csb_banner_content/text/learn_more_panel/learn_more": "ui/csb_sections/csb_banner.json", - "csb_banner_content/text/learn_more_panel/learn_more/more": "ui/csb_sections/csb_banner.json", - "csb_banner_content/text/learn_more_panel/learn_more/more_chevron": "ui/csb_sections/csb_banner.json", - "animated_promo_banner_csb_button": "ui/csb_sections/csb_banner.json", - "animated_promo_banner_csb_button/default": "ui/csb_sections/csb_banner.json", - "animated_promo_banner_csb_button/hover": "ui/csb_sections/csb_banner.json", - "animated_csb_banner_content": "ui/csb_sections/csb_banner.json", - "animated_csb_banner_content/banner": "ui/csb_sections/csb_banner.json", - "animated_csb_banner_content/text": "ui/csb_sections/csb_banner.json", - "animated_csb_banner_content/text/logo_panel": "ui/csb_sections/csb_banner.json", - "animated_csb_banner_content/text/logo_panel/logo": "ui/csb_sections/csb_banner.json", - "animated_csb_banner_content/text/offer_panel": "ui/csb_sections/csb_banner.json", - "animated_csb_banner_content/text/offer_panel/offer": "ui/csb_sections/csb_banner.json", - "animated_csb_banner_content/text/learn_more_panel": "ui/csb_sections/csb_banner.json", - "animated_csb_banner_content/text/learn_more_panel/learn_more": "ui/csb_sections/csb_banner.json", - "animated_csb_banner_content/text/learn_more_panel/learn_more/more": "ui/csb_sections/csb_banner.json", - "animated_csb_banner_content/text/learn_more_panel/learn_more/more_chevron": "ui/csb_sections/csb_banner.json", - "still_pixel_art_panel": "ui/csb_sections/csb_banner.json", - "still_pixel_art_panel/banner": "ui/csb_sections/csb_banner.json", - "animated_pixel_art_panel": "ui/csb_sections/csb_banner.json", - "animated_pixel_art_panel/mygif": "ui/csb_sections/csb_banner.json", - "image_component_factory": "ui/csb_sections/csb_banner.json", - "image_asset_factory": "ui/csb_sections/csb_banner.json", - }, - "csb_buy": { - "buy_now_content": "ui/csb_sections/csb_buy_now_screen.json", - "buy_now_content/description_stack": "ui/csb_sections/csb_buy_now_screen.json", - "buy_now_content/terms_and_conditions": "ui/csb_sections/csb_buy_now_screen.json", - "buy_now_content/padding_2": "ui/csb_sections/csb_buy_now_screen.json", - "buy_now_content/button_panel": "ui/csb_sections/csb_buy_now_screen.json", - "buy_now_content/button_panel/buy_button": "ui/csb_sections/csb_buy_now_screen.json", - "buy_now_content/button_panel/icon_panel": "ui/csb_sections/csb_buy_now_screen.json", - "buy_now_content/padding_3": "ui/csb_sections/csb_buy_now_screen.json", - "buy_now_content/terms": "ui/csb_sections/csb_buy_now_screen.json", - "content_text_section": "ui/csb_sections/csb_buy_now_screen.json", - "content_text_section/text_description": "ui/csb_sections/csb_buy_now_screen.json", - "content_text_section/padding": "ui/csb_sections/csb_buy_now_screen.json", - "content_description": "ui/csb_sections/csb_buy_now_screen.json", - "content_description/content_description_label": "ui/csb_sections/csb_buy_now_screen.json", - "content_description/tts_hover": "ui/csb_sections/csb_buy_now_screen.json", - "trial_image_and_description": "ui/csb_sections/csb_buy_now_screen.json", - "trial_image_and_description/image_border": "ui/csb_sections/csb_buy_now_screen.json", - "trial_image_and_description/padding": "ui/csb_sections/csb_buy_now_screen.json", - "trial_image_and_description/description_text": "ui/csb_sections/csb_buy_now_screen.json", - "trial_image_and_description/description_text/descriptions_label": "ui/csb_sections/csb_buy_now_screen.json", - "trial_image_and_description/description_text/tts_hover": "ui/csb_sections/csb_buy_now_screen.json", - "title_text": "ui/csb_sections/csb_buy_now_screen.json", - "title_text/inner_text": "ui/csb_sections/csb_buy_now_screen.json", - "title_text/tts_hover": "ui/csb_sections/csb_buy_now_screen.json", - "description_stack": "ui/csb_sections/csb_buy_now_screen.json", - "description_stack/title_with_gradient": "ui/csb_sections/csb_buy_now_screen.json", - "description_stack/padding": "ui/csb_sections/csb_buy_now_screen.json", - "description_stack/image_and_description": "ui/csb_sections/csb_buy_now_screen.json", - "terms_and_conditions": "ui/csb_sections/csb_buy_now_screen.json", - "terms_and_conditions/terms_panel": "ui/csb_sections/csb_buy_now_screen.json", - "terms_and_conditions_panel": "ui/csb_sections/csb_buy_now_screen.json", - "terms_and_conditions_panel/name_label": "ui/csb_sections/csb_buy_now_screen.json", - "terms_and_conditions_panel/terms_string_panel": "ui/csb_sections/csb_buy_now_screen.json", - "terms_and_conditions_panel/terms_string_panel/banner_fill": "ui/csb_sections/csb_buy_now_screen.json", - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": "ui/csb_sections/csb_buy_now_screen.json", - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": "ui/csb_sections/csb_buy_now_screen.json", - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": "ui/csb_sections/csb_buy_now_screen.json", - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": "ui/csb_sections/csb_buy_now_screen.json", - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": "ui/csb_sections/csb_buy_now_screen.json", - "button_text": "ui/csb_sections/csb_buy_now_screen.json", - "mcten_text_centering_panel": "ui/csb_sections/csb_buy_now_screen.json", - "mcten_text_centering_panel/button_text": "ui/csb_sections/csb_buy_now_screen.json", - "view_terms_button": "ui/csb_sections/csb_buy_now_screen.json", - "privacy_policy_button": "ui/csb_sections/csb_buy_now_screen.json", - "buy_button_panel": "ui/csb_sections/csb_buy_now_screen.json", - "buy_button_panel/buy_button": "ui/csb_sections/csb_buy_now_screen.json", - "tool_tip_icon_panel": "ui/csb_sections/csb_buy_now_screen.json", - "tool_tip_icon_panel/issue_icon": "ui/csb_sections/csb_buy_now_screen.json", - "tool_tip_icon_panel/issue_icon/info_icon": "ui/csb_sections/csb_buy_now_screen.json", - "tool_tip_icon_panel/issue_icon/default": "ui/csb_sections/csb_buy_now_screen.json", - "tool_tip_icon_panel/issue_icon/hover": "ui/csb_sections/csb_buy_now_screen.json", - "tool_tip_icon_panel/issue_icon/pressed": "ui/csb_sections/csb_buy_now_screen.json", - "buy_button_content": "ui/csb_sections/csb_buy_now_screen.json", - "buy_button_content/button_chevron_panel": "ui/csb_sections/csb_buy_now_screen.json", - "buy_button_content/button_chevron_panel/buy_button_chevron": "ui/csb_sections/csb_buy_now_screen.json", - "buy_button_content/button_text_centering_panel": "ui/csb_sections/csb_buy_now_screen.json", - "info_icon": "ui/csb_sections/csb_buy_now_screen.json", - "info_icon/panel_icon": "ui/csb_sections/csb_buy_now_screen.json", - }, - "common_csb": { - "csb_expiration_banner": "ui/csb_sections/csb_common.json", - "csb_expiration_banner/background": "ui/csb_sections/csb_common.json", - "csb_expiration_banner/icon": "ui/csb_sections/csb_common.json", - "csb_expiration_banner/text": "ui/csb_sections/csb_common.json", - "csb_icon_large": "ui/csb_sections/csb_common.json", - "csb_header": "ui/csb_sections/csb_common.json", - "csb_header/label_a_text_csb": "ui/csb_sections/csb_common.json", - "csb_header/label_space_text_csb": "ui/csb_sections/csb_common.json", - "csb_header/label_b_text_pass": "ui/csb_sections/csb_common.json", - "csb_header_two_lines": "ui/csb_sections/csb_common.json", - "csb_header_two_lines/top_header": "ui/csb_sections/csb_common.json", - "csb_header_two_lines/panel_centre_second_line": "ui/csb_sections/csb_common.json", - "csb_header_two_lines/panel_centre_second_line/sub_header": "ui/csb_sections/csb_common.json", - "csb_gold_button": "ui/csb_sections/csb_common.json", - "csb_gold_text_button": "ui/csb_sections/csb_common.json", - }, - "csb_purchase_amazondevicewarning": { - "csb_purchase_amazondevicewarning_screen": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", - "screen_content": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", - "screen_content/main_panel": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", - "main_panel": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", - "main_panel/text_panel_1": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", - "main_panel/text_panel_1/text": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", - "main_panel/art_panel": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", - "main_panel/art_panel/art": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", - "main_panel/padding": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", - "main_panel/text_panel_2": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", - "main_panel/text_panel_2/text": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", - "back_button": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", - }, - "csb_purchase_warning": { - "csb_purchase_warning_screen": "ui/csb_sections/csb_purchase_warning_screen.json", - "purchase_warning_screen_content": "ui/csb_sections/csb_purchase_warning_screen.json", - "purchase_warning_screen_content/main_panel": "ui/csb_sections/csb_purchase_warning_screen.json", - "warning_modal_main_panel": "ui/csb_sections/csb_purchase_warning_screen.json", - "warning_modal_main_panel/text_panel_1": "ui/csb_sections/csb_purchase_warning_screen.json", - "warning_modal_main_panel/text_panel_1/text": "ui/csb_sections/csb_purchase_warning_screen.json", - "warning_modal_main_panel/padding_1": "ui/csb_sections/csb_purchase_warning_screen.json", - "warning_modal_main_panel/art_panel": "ui/csb_sections/csb_purchase_warning_screen.json", - "warning_modal_main_panel/art_panel/art": "ui/csb_sections/csb_purchase_warning_screen.json", - "warning_modal_main_panel/padding_2": "ui/csb_sections/csb_purchase_warning_screen.json", - "warning_modal_main_panel/text_panel_2": "ui/csb_sections/csb_purchase_warning_screen.json", - "warning_modal_main_panel/text_panel_2/text": "ui/csb_sections/csb_purchase_warning_screen.json", - "warning_modal_back_button": "ui/csb_sections/csb_purchase_warning_screen.json", - }, - "csb_subscription_panel": { - "csb_container": "ui/csb_sections/csb_subscription_panel.json", - "csb_container/fill": "ui/csb_sections/csb_subscription_panel.json", - "csb_container/border": "ui/csb_sections/csb_subscription_panel.json", - "csb_container/panel_contents": "ui/csb_sections/csb_subscription_panel.json", - "csb_container/panel_contents/content_container": "ui/csb_sections/csb_subscription_panel.json", - "csb_container/panel_contents/content_container/side_image_stack_left": "ui/csb_sections/csb_subscription_panel.json", - "csb_container/panel_contents/content_container/side_image_stack_left/csb_image": "ui/csb_sections/csb_subscription_panel.json", - "csb_container/panel_contents/content_container/padding_02": "ui/csb_sections/csb_subscription_panel.json", - "csb_container/panel_contents/content_container/side_stack_right": "ui/csb_sections/csb_subscription_panel.json", - "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack": "ui/csb_sections/csb_subscription_panel.json", - "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/panel_label": "ui/csb_sections/csb_subscription_panel.json", - "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding_01": "ui/csb_sections/csb_subscription_panel.json", - "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_01_container": "ui/csb_sections/csb_subscription_panel.json", - "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_02_container": "ui/csb_sections/csb_subscription_panel.json", - "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_03_container": "ui/csb_sections/csb_subscription_panel.json", - "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding02": "ui/csb_sections/csb_subscription_panel.json", - "csb_container/panel_contents/button_panel_spacer": "ui/csb_sections/csb_subscription_panel.json", - "csb_container/panel_contents/csb_buttons": "ui/csb_sections/csb_subscription_panel.json", - "csb_container/panel_contents/csb_buttons/button_panel_padding": "ui/csb_sections/csb_subscription_panel.json", - "csb_container/panel_contents/csb_buttons/padding_01": "ui/csb_sections/csb_subscription_panel.json", - "csb_container/panel_contents/csb_buttons/csb_info_button": "ui/csb_sections/csb_subscription_panel.json", - "csb_marketplace_benefit": "ui/csb_sections/csb_subscription_panel.json", - "csb_marketplace_benefit/bullet_holder_01": "ui/csb_sections/csb_subscription_panel.json", - "csb_marketplace_benefit/bullet_holder_01/bullet_spacer": "ui/csb_sections/csb_subscription_panel.json", - "csb_marketplace_benefit/bullet_holder_01/bullet_01": "ui/csb_sections/csb_subscription_panel.json", - "csb_marketplace_benefit/panel_details_ln1": "ui/csb_sections/csb_subscription_panel.json", - "csb_buy_container": "ui/csb_sections/csb_subscription_panel.json", - "csb_buy_container/csb_buy_button": "ui/csb_sections/csb_subscription_panel.json", - "csb_buy_button_text": "ui/csb_sections/csb_subscription_panel.json", - "csb_cancel_button": "ui/csb_sections/csb_subscription_panel.json", - }, - "csb_upsell": { - "csb_upsell_screen": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_compare_dialog": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_compare_dialog/csb_upsell_compare_main_screen": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_popup_content": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_popup_content/two_side_panels": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_popup_content/two_side_panels/border_panel_left": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_popup_content/two_side_panels/border_panel_left/border": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_popup_content/two_side_panels/border_panel_left/background_panel": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_popup_content/two_side_panels/border_panel_left/left_side_panel": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering/learn_more_left": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_popup_content/two_side_panels/middle_spacer": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_popup_content/two_side_panels/border_panel_right": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_popup_content/two_side_panels/border_panel_right/border": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_popup_content/two_side_panels/border_panel_right/background_panel": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_popup_content/two_side_panels/border_panel_right/right_side_panel": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering/learn_more_right": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_left_side_panel": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_left_side_panel/upper_half": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_left_side_panel/upper_half/header_panel": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_left_side_panel/upper_half/header_panel/blank_space": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_left_side_panel/upper_half/header_panel/top_header": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_left_side_panel/upper_half/header_panel/price_amount": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_left_side_panel/middle_spacer": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_left_side_panel/bottom_half": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_left_side_panel/bottom_half/padding_b": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_left_side_panel/bottom_half/bullet_one": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_left_side_panel/bottom_half/padding_0": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_left_side_panel/bottom_half/bullet_two": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_left_side_panel/bottom_half/padding_1": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_left_side_panel/bottom_half/bullet_three": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_right_side_panel": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_right_side_panel/upper_half": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_right_side_panel/upper_half/marketing_banner": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_right_side_panel/upper_half/marketing_banner/background_color": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_right_side_panel/upper_half/marketing_banner/marketing_banner_label": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_right_side_panel/upper_half/header_panel": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_right_side_panel/upper_half/header_panel/top_header": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_right_side_panel/upper_half/header_panel/price_amount": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_right_side_panel/middle_spacer": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_right_side_panel/bottom_half": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_right_side_panel/bottom_half/padding_b": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_right_side_panel/bottom_half/bullet_one": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_right_side_panel/bottom_half/padding_1": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_right_side_panel/bottom_half/bullet_two": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_right_side_panel/bottom_half/padding_0": "ui/csb_sections/csb_upsell_dialog.json", - "csb_upsell_right_side_panel/bottom_half/bullet_three": "ui/csb_sections/csb_upsell_dialog.json", - "csb_big_padding": "ui/csb_sections/csb_upsell_dialog.json", - "csb_bullet_padding": "ui/csb_sections/csb_upsell_dialog.json", - "csb_bullet_padding/desktop": "ui/csb_sections/csb_upsell_dialog.json", - "csb_bullet_padding/pocket": "ui/csb_sections/csb_upsell_dialog.json", - "csb_bullet_desktop_padding": "ui/csb_sections/csb_upsell_dialog.json", - "csb_bullet_pocket_padding": "ui/csb_sections/csb_upsell_dialog.json", - "csb_bullet": "ui/csb_sections/csb_upsell_dialog.json", - "csb_bullet/padding_icon_left": "ui/csb_sections/csb_upsell_dialog.json", - "csb_bullet/padding_icon_vertical": "ui/csb_sections/csb_upsell_dialog.json", - "csb_bullet/padding_icon_vertical/padding_vertical": "ui/csb_sections/csb_upsell_dialog.json", - "csb_bullet/padding_icon_vertical/label_icon": "ui/csb_sections/csb_upsell_dialog.json", - "csb_bullet/padding_icon_right": "ui/csb_sections/csb_upsell_dialog.json", - "csb_bullet_point": "ui/csb_sections/csb_upsell_dialog.json", - "csb_bullet_point/bullet_icon": "ui/csb_sections/csb_upsell_dialog.json", - "csb_bullet_point/label_text": "ui/csb_sections/csb_upsell_dialog.json", - "csb_bullet_split_point": "ui/csb_sections/csb_upsell_dialog.json", - "csb_bullet_split_point/bullet_icon": "ui/csb_sections/csb_upsell_dialog.json", - "csb_bullet_split_point/label_text": "ui/csb_sections/csb_upsell_dialog.json", - "csb_bullet_split_point/space": "ui/csb_sections/csb_upsell_dialog.json", - "csb_bullet_split_point/space/label_text_csb": "ui/csb_sections/csb_upsell_dialog.json", - "csb_bullet_split_point/csb_name": "ui/csb_sections/csb_upsell_dialog.json", - "csb_bullet_split_point/csb_name/csb_name_string": "ui/csb_sections/csb_upsell_dialog.json", - "csb_price": "ui/csb_sections/csb_upsell_dialog.json", - "csb_price/price_details": "ui/csb_sections/csb_upsell_dialog.json", - "csb_price_details": "ui/csb_sections/csb_upsell_dialog.json", - "csb_price_details/price_panel_1": "ui/csb_sections/csb_upsell_dialog.json", - "csb_price_details/price_panel_1/amount": "ui/csb_sections/csb_upsell_dialog.json", - "csb_price_details/price_panel_first_period": "ui/csb_sections/csb_upsell_dialog.json", - "csb_price_details/price_panel_first_period/second_line": "ui/csb_sections/csb_upsell_dialog.json", - "csb_learn_more": "ui/csb_sections/csb_upsell_dialog.json", - "csb_learn_more/learn_more": "ui/csb_sections/csb_upsell_dialog.json", - }, - "csb_packs": { - "view_all_packs_screen": "ui/csb_sections/csb_view_packs_screen.json", - "view_packs_screen_content": "ui/csb_sections/csb_view_packs_screen.json", - "view_packs_screen_content/main_panel": "ui/csb_sections/csb_view_packs_screen.json", - "csb_view_packs_screen_main_panel": "ui/csb_sections/csb_view_packs_screen.json", - "main_panel": "ui/csb_sections/csb_view_packs_screen.json", - "main_panel/offers": "ui/csb_sections/csb_view_packs_screen.json", - "main_panel/progress_loading": "ui/csb_sections/csb_view_packs_screen.json", - "scrolling_content_stack": "ui/csb_sections/csb_view_packs_screen.json", - "scrolling_content_stack/padding_0": "ui/csb_sections/csb_view_packs_screen.json", - "scrolling_content_stack/store_factory": "ui/csb_sections/csb_view_packs_screen.json", - }, - "csb_welcome": { - "csb_welcome_screen": "ui/csb_sections/csb_welcome_screen.json", - "welcome_screen_content": "ui/csb_sections/csb_welcome_screen.json", - "welcome_screen_content/main_panel": "ui/csb_sections/csb_welcome_screen.json", - "welcome_modal_main_panel": "ui/csb_sections/csb_welcome_screen.json", - "welcome_modal_main_panel/art_panel": "ui/csb_sections/csb_welcome_screen.json", - "welcome_modal_main_panel/art_panel/art": "ui/csb_sections/csb_welcome_screen.json", - "welcome_modal_main_panel/padding": "ui/csb_sections/csb_welcome_screen.json", - "welcome_modal_main_panel/text_panel": "ui/csb_sections/csb_welcome_screen.json", - "welcome_modal_main_panel/text_panel/text": "ui/csb_sections/csb_welcome_screen.json", - "welcome_modal_continue_button": "ui/csb_sections/csb_welcome_screen.json", - }, - "csb_faq": { - "faq_bottom_button": "ui/csb_sections/faq_section.json", - "faq_image_section": "ui/csb_sections/faq_section.json", - "faq_image_section/faq_image": "ui/csb_sections/faq_section.json", - "faq_text_section_body": "ui/csb_sections/faq_section.json", - "faq_text_question": "ui/csb_sections/faq_section.json", - "faq_text_section": "ui/csb_sections/faq_section.json", - "faq_text_section/faq_text_question": "ui/csb_sections/faq_section.json", - "faq_text_section/faq_text_answer": "ui/csb_sections/faq_section.json", - "faq_price_bound_text_section": "ui/csb_sections/faq_section.json", - "faq_price_bound_text_section/faq_text_question": "ui/csb_sections/faq_section.json", - "faq_price_bound_text_section/faq_text_answer": "ui/csb_sections/faq_section.json", - "faq_question_body": "ui/csb_sections/faq_section.json", - "faq_question_body/0": "ui/csb_sections/faq_section.json", - "faq_question_body_stack": "ui/csb_sections/faq_section.json", - "faq_question_body_horz_padding": "ui/csb_sections/faq_section.json", - "image_left_faq_question_body": "ui/csb_sections/faq_section.json", - "image_right_faq_question_body": "ui/csb_sections/faq_section.json", - "image_left_faq_price_bound": "ui/csb_sections/faq_section.json", - "image_right_faq_price_bound": "ui/csb_sections/faq_section.json", - "faq_section_header_space": "ui/csb_sections/faq_section.json", - "faq_section_divider": "ui/csb_sections/faq_section.json", - "faq_content_section": "ui/csb_sections/faq_section.json", - "faq_content_section/faq_section_vertical_padding_1": "ui/csb_sections/faq_section.json", - "faq_content_section/faq_header": "ui/csb_sections/faq_section.json", - "faq_content_section/faq_section_vertical_padding_2": "ui/csb_sections/faq_section.json", - "faq_content_section/faq_question_1": "ui/csb_sections/faq_section.json", - "faq_content_section/faq_question_1_divider": "ui/csb_sections/faq_section.json", - "faq_content_section/faq_question_2": "ui/csb_sections/faq_section.json", - "faq_content_section/faq_question_2_divider": "ui/csb_sections/faq_section.json", - "faq_content_section/faq_question_3": "ui/csb_sections/faq_section.json", - "faq_content_section/faq_question_3_divider": "ui/csb_sections/faq_section.json", - "faq_content_section/faq_question_4": "ui/csb_sections/faq_section.json", - "faq_content_section/faq_question_4_divider": "ui/csb_sections/faq_section.json", - "faq_content_section/faq_question_5": "ui/csb_sections/faq_section.json", - "faq_content_section/faq_question_5_divider": "ui/csb_sections/faq_section.json", - "faq_content_section/faq_question_6": "ui/csb_sections/faq_section.json", - "faq_content_section/faq_question_6_divider": "ui/csb_sections/faq_section.json", - "faq_content_section/faq_question_7": "ui/csb_sections/faq_section.json", - "faq_content_section/faq_question_7_divider": "ui/csb_sections/faq_section.json", - "faq_content_section/faq_question_8": "ui/csb_sections/faq_section.json", - "faq_content_section/faq_question_8_divider": "ui/csb_sections/faq_section.json", - "faq_content_section/faq_question_9": "ui/csb_sections/faq_section.json", - "faq_content_section/faq_question_9_divider": "ui/csb_sections/faq_section.json", - "faq_content_section/faq_question_10": "ui/csb_sections/faq_section.json", - "faq_content_section/faq_question_10_divider": "ui/csb_sections/faq_section.json", - "faq_content_section/faq_button": "ui/csb_sections/faq_section.json", - "faq_content_section/faq_bottom_padding": "ui/csb_sections/faq_section.json", - "faq_content_section/faq_bottom_padding/bottom_left_particles": "ui/csb_sections/faq_section.json", - }, - "csb_landing": { - "landing_content_section": "ui/csb_sections/landing_section.json", - "landing_content_section/landing_section_vertical_padding": "ui/csb_sections/landing_section.json", - "landing_content_section/landing_content": "ui/csb_sections/landing_section.json", - "landing_content_section/landing_content/title_stack": "ui/csb_sections/landing_section.json", - "landing_content_section/landing_content/vertical_small_spacer_0": "ui/csb_sections/landing_section.json", - "landing_content_section/landing_content/vertical_small_spacer_1": "ui/csb_sections/landing_section.json", - "landing_content_section/landing_content/info_stack": "ui/csb_sections/landing_section.json", - "landing_content_section/landing_content/vertical_small_spacer_2": "ui/csb_sections/landing_section.json", - "horizontal_small_spacer": "ui/csb_sections/landing_section.json", - "vertical_small_spacer": "ui/csb_sections/landing_section.json", - "vertical_large_spacer": "ui/csb_sections/landing_section.json", - "title_stack": "ui/csb_sections/landing_section.json", - "title_stack/title_image_panel": "ui/csb_sections/landing_section.json", - "title_stack/title_space": "ui/csb_sections/landing_section.json", - "title_stack/action_button": "ui/csb_sections/landing_section.json", - "title_stack/sign_in_button": "ui/csb_sections/landing_section.json", - "title_stack/vertical_space2": "ui/csb_sections/landing_section.json", - "title_stack/gradient_panel": "ui/csb_sections/landing_section.json", - "title_stack/gradient_panel/label_with_gradient": "ui/csb_sections/landing_section.json", - "title_stack/gradient_panel/tts_hover": "ui/csb_sections/landing_section.json", - "title_stack/gradient_panel2": "ui/csb_sections/landing_section.json", - "title_stack/gradient_panel2/label_with_gradient2": "ui/csb_sections/landing_section.json", - "title_stack/gradient_panel2/tts_hover": "ui/csb_sections/landing_section.json", - "subscription_includes_text": "ui/csb_sections/landing_section.json", - "free_trial_text": "ui/csb_sections/landing_section.json", - "title_space": "ui/csb_sections/landing_section.json", - "title_image_panel": "ui/csb_sections/landing_section.json", - "title_image_panel/vertical_small_spacer_1": "ui/csb_sections/landing_section.json", - "title_image_panel/title_image_container": "ui/csb_sections/landing_section.json", - "title_image_panel/title_image_container/title_image": "ui/csb_sections/landing_section.json", - "title_image_panel/vertical_small_spacer_2": "ui/csb_sections/landing_section.json", - "info_stack": "ui/csb_sections/landing_section.json", - "info_stack/info_section_image": "ui/csb_sections/landing_section.json", - "info_stack/info_description_stack_retail": "ui/csb_sections/landing_section.json", - "info_description_stack_retail": "ui/csb_sections/landing_section.json", - "info_description_stack_retail/info_section_stack_1": "ui/csb_sections/landing_section.json", - "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer": "ui/csb_sections/landing_section.json", - "info_description_stack_retail/info_section_stack_1/info_section_text_1": "ui/csb_sections/landing_section.json", - "info_section_stack": "ui/csb_sections/landing_section.json", - "info_section_image_with_border": "ui/csb_sections/landing_section.json", - "info_section_text_1": "ui/csb_sections/landing_section.json", - "info_section_text_1/info_section_text": "ui/csb_sections/landing_section.json", - "info_section_text_1/vertical_small_spacer_0": "ui/csb_sections/landing_section.json", - "info_section_text_1/info_text_bullet_1": "ui/csb_sections/landing_section.json", - "info_section_text_1/vertical_small_spacer_1": "ui/csb_sections/landing_section.json", - "info_section_text_1/info_text_bullet_2": "ui/csb_sections/landing_section.json", - "info_section_text_1/vertical_small_spacer_2": "ui/csb_sections/landing_section.json", - "info_section_text_1/info_text_bullet_3": "ui/csb_sections/landing_section.json", - "info_section_text_1/vertical_small_spacer_3": "ui/csb_sections/landing_section.json", - "info_section_text_1/info_text_bullet_4": "ui/csb_sections/landing_section.json", - "info_section_text_1/vertical_small_spacer_4": "ui/csb_sections/landing_section.json", - "info_section_text_1/info_text_bullet_5": "ui/csb_sections/landing_section.json", - "info_section_text_1/vertical_small_spacer_5": "ui/csb_sections/landing_section.json", - "info_section_text_1/info_text_bullet_6": "ui/csb_sections/landing_section.json", - "info_section_text_1/vertical_large_spacer_6": "ui/csb_sections/landing_section.json", - "info_section_text_2": "ui/csb_sections/landing_section.json", - "info_section_text_2/info_text_bullet_1": "ui/csb_sections/landing_section.json", - "info_section_text_2/vertical_small_spacer_0": "ui/csb_sections/landing_section.json", - "info_section_text_2/info_text_bullet_2": "ui/csb_sections/landing_section.json", - "info_section_text_2/vertical_small_spacer_1": "ui/csb_sections/landing_section.json", - "info_section_text_2/info_text_bullet_4": "ui/csb_sections/landing_section.json", - "info_section_text_2/vertical_small_spacer_3": "ui/csb_sections/landing_section.json", - "info_section_text_2/info_text_bullet_5": "ui/csb_sections/landing_section.json", - "info_section_text": "ui/csb_sections/landing_section.json", - "info_text_bullet": "ui/csb_sections/landing_section.json", - "info_text_bullet/info_text_bullet_bullet": "ui/csb_sections/landing_section.json", - "info_text_bullet/bullet_spacer": "ui/csb_sections/landing_section.json", - "info_text_bullet/info_text_bullet_body": "ui/csb_sections/landing_section.json", - "info_text_bullet/bullet_spacer_end": "ui/csb_sections/landing_section.json", - "info_text_unbulletted": "ui/csb_sections/landing_section.json", - "info_text_unbulletted/info_text_bullet_body": "ui/csb_sections/landing_section.json", - "info_text_body": "ui/csb_sections/landing_section.json", - "info_text_body/text_body": "ui/csb_sections/landing_section.json", - "info_text_body/tts_border": "ui/csb_sections/landing_section.json", - }, - "custom_templates": { - "lock_icon": "ui/custom_templates_screen.json", - "templates_scroll_content": "ui/custom_templates_screen.json", - "templates_scroll_content/scrolling_panel": "ui/custom_templates_screen.json", - "templates_scroll_panel": "ui/custom_templates_screen.json", - "templates_scroll_panel/templates_stack_panel": "ui/custom_templates_screen.json", - "templates_scroll_panel/templates_stack_panel/templates_item_grid": "ui/custom_templates_screen.json", - "templates_item_grid": "ui/custom_templates_screen.json", - "templates_item": "ui/custom_templates_screen.json", - "templates_item/template_item_button": "ui/custom_templates_screen.json", - "template_item_button": "ui/custom_templates_screen.json", - "template_content_panel": "ui/custom_templates_screen.json", - "template_content_panel/template_screenshot": "ui/custom_templates_screen.json", - "template_content_panel/template_text_panel": "ui/custom_templates_screen.json", - "template_content_panel/lock_panel": "ui/custom_templates_screen.json", - "template_content_panel/lock_panel/lock_icon": "ui/custom_templates_screen.json", - "template_screenshot": "ui/custom_templates_screen.json", - "template_screenshot/picture": "ui/custom_templates_screen.json", - "template_text_panel": "ui/custom_templates_screen.json", - "template_text_panel/text_indent": "ui/custom_templates_screen.json", - "template_text_panel/text_indent/top_side": "ui/custom_templates_screen.json", - "template_text_panel/text_indent/top_side/template_name": "ui/custom_templates_screen.json", - "template_text_panel/text_indent/top_side/download_text_label": "ui/custom_templates_screen.json", - "template_text_panel/text_indent/bottom_side": "ui/custom_templates_screen.json", - "template_text_panel/text_indent/bottom_side/template_description": "ui/custom_templates_screen.json", - "template_text_panel/text_indent/bottom_side/template_version": "ui/custom_templates_screen.json", - "template_name": "ui/custom_templates_screen.json", - "template_download_text": "ui/custom_templates_screen.json", - "template_list_text": "ui/custom_templates_screen.json", - "template_description": "ui/custom_templates_screen.json", - "template_version": "ui/custom_templates_screen.json", - "main_panel": "ui/custom_templates_screen.json", - "main_panel/templates_scroll_content": "ui/custom_templates_screen.json", - "custom_templates_screen": "ui/custom_templates_screen.json", - "custom_templates_screen_content": "ui/custom_templates_screen.json", - "custom_templates_screen_content/dialog": "ui/custom_templates_screen.json", - "background": "ui/custom_templates_screen.json", - }, - "world_conversion_complete": { - "background": "ui/world_conversion_complete_screen.json", - "prompt_text": "ui/world_conversion_complete_screen.json", - "prompt_text/message": "ui/world_conversion_complete_screen.json", - "converted_world_preview_name": "ui/world_conversion_complete_screen.json", - "converted_world_preview_date": "ui/world_conversion_complete_screen.json", - "converted_world_preview_game_mode": "ui/world_conversion_complete_screen.json", - "converted_world_preview_filesize": "ui/world_conversion_complete_screen.json", - "converted_world_preview_text_panel": "ui/world_conversion_complete_screen.json", - "converted_world_preview_text_panel/text_indent": "ui/world_conversion_complete_screen.json", - "converted_world_preview_text_panel/text_indent/top_side": "ui/world_conversion_complete_screen.json", - "converted_world_preview_text_panel/text_indent/top_side/converted_world_name": "ui/world_conversion_complete_screen.json", - "converted_world_preview_text_panel/text_indent/top_side/converted_world_date": "ui/world_conversion_complete_screen.json", - "converted_world_preview_text_panel/text_indent/bottom_side": "ui/world_conversion_complete_screen.json", - "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_game_mode": "ui/world_conversion_complete_screen.json", - "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_filesize": "ui/world_conversion_complete_screen.json", - "converted_world_preview_panel": "ui/world_conversion_complete_screen.json", - "converted_world_preview_panel/world_preview_content": "ui/world_conversion_complete_screen.json", - "converted_world_preview_panel/world_preview_content/converted_world_screenshot": "ui/world_conversion_complete_screen.json", - "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content": "ui/world_conversion_complete_screen.json", - "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content/picture": "ui/world_conversion_complete_screen.json", - "converted_world_preview_panel/world_preview_content/converted_world_text_panel": "ui/world_conversion_complete_screen.json", - "main_panel": "ui/world_conversion_complete_screen.json", - "main_panel/padding_0": "ui/world_conversion_complete_screen.json", - "main_panel/prompt_1": "ui/world_conversion_complete_screen.json", - "main_panel/world_entry_container": "ui/world_conversion_complete_screen.json", - "main_panel/world_entry_container/world_entry_sizer": "ui/world_conversion_complete_screen.json", - "main_panel/world_entry_container/world_entry_sizer/world_entry": "ui/world_conversion_complete_screen.json", - "main_panel/buttons_panel_sizer": "ui/world_conversion_complete_screen.json", - "main_panel/buttons_panel_sizer/buttons_panel": "ui/world_conversion_complete_screen.json", - "main_panel/buttons_panel_sizer/buttons_panel/load_game_button": "ui/world_conversion_complete_screen.json", - "main_panel/buttons_panel_sizer/buttons_panel/padding": "ui/world_conversion_complete_screen.json", - "main_panel/buttons_panel_sizer/buttons_panel/return_button": "ui/world_conversion_complete_screen.json", - "world_conversion_complete_screen_content": "ui/world_conversion_complete_screen.json", - "world_conversion_complete_screen_content/dialog": "ui/world_conversion_complete_screen.json", - "world_conversion_complete_screen": "ui/world_conversion_complete_screen.json", - }, - "day_one_experience_intro": { - "padding_horizontal": "ui/day_one_experience_intro_screen.json", - "padding_vertical": "ui/day_one_experience_intro_screen.json", - "label_panel": "ui/day_one_experience_intro_screen.json", - "label_panel/label_text": "ui/day_one_experience_intro_screen.json", - "text_panel": "ui/day_one_experience_intro_screen.json", - "text_panel/padding_00": "ui/day_one_experience_intro_screen.json", - "text_panel/tab_content_description_panel": "ui/day_one_experience_intro_screen.json", - "text_panel/padding_01": "ui/day_one_experience_intro_screen.json", - "dialog_image": "ui/day_one_experience_intro_screen.json", - "image_panel": "ui/day_one_experience_intro_screen.json", - "image_panel/dialog_image_with_border": "ui/day_one_experience_intro_screen.json", - "image_panel/focus_image": "ui/day_one_experience_intro_screen.json", - "top_tab": "ui/day_one_experience_intro_screen.json", - "common_tab_navigation_panel_layout": "ui/day_one_experience_intro_screen.json", - "tabbed_tab_navigation_panel_layout": "ui/day_one_experience_intro_screen.json", - "tabbed_tab_navigation_panel_layout/nav_padding_01": "ui/day_one_experience_intro_screen.json", - "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper": "ui/day_one_experience_intro_screen.json", - "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper/gamepad_helper_left_bumper": "ui/day_one_experience_intro_screen.json", - "tabbed_tab_navigation_panel_layout/nav_padding_02": "ui/day_one_experience_intro_screen.json", - "tabbed_tab_navigation_panel_layout/welcome_navigation_tab": "ui/day_one_experience_intro_screen.json", - "tabbed_tab_navigation_panel_layout/nav_padding_03": "ui/day_one_experience_intro_screen.json", - "tabbed_tab_navigation_panel_layout/marketplace_navigation_tab": "ui/day_one_experience_intro_screen.json", - "tabbed_tab_navigation_panel_layout/nav_padding_04": "ui/day_one_experience_intro_screen.json", - "tabbed_tab_navigation_panel_layout/cross_platform_navigation_tab": "ui/day_one_experience_intro_screen.json", - "tabbed_tab_navigation_panel_layout/nav_padding_05": "ui/day_one_experience_intro_screen.json", - "tabbed_tab_navigation_panel_layout/realms_navigation_tab": "ui/day_one_experience_intro_screen.json", - "tabbed_tab_navigation_panel_layout/nav_padding_06": "ui/day_one_experience_intro_screen.json", - "tabbed_tab_navigation_panel_layout/villagers_navigation_tab": "ui/day_one_experience_intro_screen.json", - "tabbed_tab_navigation_panel_layout/nav_padding_07": "ui/day_one_experience_intro_screen.json", - "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper": "ui/day_one_experience_intro_screen.json", - "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper/gamepad_helper_right_bumper": "ui/day_one_experience_intro_screen.json", - "tabbed_tab_navigation_panel_layout/nav_padding_08": "ui/day_one_experience_intro_screen.json", - "tab_header_image_panel": "ui/day_one_experience_intro_screen.json", - "tab_header_image_panel/welcome_tab_content": "ui/day_one_experience_intro_screen.json", - "tab_header_image_panel/marketplace_tab_content": "ui/day_one_experience_intro_screen.json", - "tab_header_image_panel/cross_platform_tab_content": "ui/day_one_experience_intro_screen.json", - "tab_header_image_panel/realms_tab_content": "ui/day_one_experience_intro_screen.json", - "tab_header_image_panel/villager_tab_content": "ui/day_one_experience_intro_screen.json", - "tabbed_tab_content_panel_layout": "ui/day_one_experience_intro_screen.json", - "tabbed_tab_content_panel_layout/welcome_tab_content": "ui/day_one_experience_intro_screen.json", - "tabbed_tab_content_panel_layout/marketplace_tab_content": "ui/day_one_experience_intro_screen.json", - "tabbed_tab_content_panel_layout/cross_platform_tab_content": "ui/day_one_experience_intro_screen.json", - "tabbed_tab_content_panel_layout/realms_tab_content": "ui/day_one_experience_intro_screen.json", - "tabbed_tab_content_panel_layout/villager_tab_content": "ui/day_one_experience_intro_screen.json", - "common_tab_header_image_panel": "ui/day_one_experience_intro_screen.json", - "common_tab_header_image_panel/header_image": "ui/day_one_experience_intro_screen.json", - "common_tab_content_panel": "ui/day_one_experience_intro_screen.json", - "common_tab_content_panel/content": "ui/day_one_experience_intro_screen.json", - "welcome_tab_header_image_panel": "ui/day_one_experience_intro_screen.json", - "welcome_tab_content_panel": "ui/day_one_experience_intro_screen.json", - "marketplace_tab_header_image_panel": "ui/day_one_experience_intro_screen.json", - "marketplace_tab_content_panel": "ui/day_one_experience_intro_screen.json", - "cross_platform_tab_header_image_panel": "ui/day_one_experience_intro_screen.json", - "cross_platform_tab_content_panel": "ui/day_one_experience_intro_screen.json", - "realms_tab_header_image_panel": "ui/day_one_experience_intro_screen.json", - "realms_tab_content_panel": "ui/day_one_experience_intro_screen.json", - "villager_tab_header_image_panel": "ui/day_one_experience_intro_screen.json", - "villager_tab_content_panel": "ui/day_one_experience_intro_screen.json", - "tab_panel": "ui/day_one_experience_intro_screen.json", - "tab_panel/tab_header_image": "ui/day_one_experience_intro_screen.json", - "tab_panel/padding_00": "ui/day_one_experience_intro_screen.json", - "tab_panel/tab_navigation_panel": "ui/day_one_experience_intro_screen.json", - "tab_panel/tab_content_panel": "ui/day_one_experience_intro_screen.json", - "tab_panel/padding_4": "ui/day_one_experience_intro_screen.json", - "tab_panel/continue_button_panel": "ui/day_one_experience_intro_screen.json", - "tab_panel/continue_button_panel/continue_button": "ui/day_one_experience_intro_screen.json", - "day_one_experience_intro_screen": "ui/day_one_experience_intro_screen.json", - "day_one_experience_intro_screen_content": "ui/day_one_experience_intro_screen.json", - "day_one_experience_intro_screen_content/welcome_dialog": "ui/day_one_experience_intro_screen.json", - }, - "day_one_experience": { - "alpha_scroll_background": "ui/day_one_experience_screen.json", - "tip_text": "ui/day_one_experience_screen.json", - "tip_arrow_base": "ui/day_one_experience_screen.json", - "tip_arrow_left": "ui/day_one_experience_screen.json", - "tip_arrow_right": "ui/day_one_experience_screen.json", - "import_time": "ui/day_one_experience_screen.json", - "skins_tip_image": "ui/day_one_experience_screen.json", - "skins_tip_image/arrows": "ui/day_one_experience_screen.json", - "skins_tip_image/arrows/right_arrow": "ui/day_one_experience_screen.json", - "skins_tip_image/arrows/padding": "ui/day_one_experience_screen.json", - "skins_tip_image/arrows/left_arrow": "ui/day_one_experience_screen.json", - "skins_tip_top_text": "ui/day_one_experience_screen.json", - "skins_tip_panel": "ui/day_one_experience_screen.json", - "skins_tip_panel/top_text_sizer": "ui/day_one_experience_screen.json", - "skins_tip_panel/top_text_sizer/settings_and_skin_text": "ui/day_one_experience_screen.json", - "skins_tip_panel/top_text_sizer/settings_text": "ui/day_one_experience_screen.json", - "skins_tip_panel/image_sizer": "ui/day_one_experience_screen.json", - "skins_tip_panel/image_sizer/image_section": "ui/day_one_experience_screen.json", - "skins_tip_panel/bottom_text_sizer": "ui/day_one_experience_screen.json", - "skins_tip_panel/bottom_text_sizer/bottom_text": "ui/day_one_experience_screen.json", - "skin_viewer_panel_text": "ui/day_one_experience_screen.json", - "skin_viewer_panel": "ui/day_one_experience_screen.json", - "skin_viewer_panel/paper_doll_container": "ui/day_one_experience_screen.json", - "skin_viewer_panel/paper_doll_container/paper_doll": "ui/day_one_experience_screen.json", - "skin_viewer_panel/legacy_skin_loading_panel": "ui/day_one_experience_screen.json", - "skin_viewer_panel/bottom_skin_text": "ui/day_one_experience_screen.json", - "skin_viewer_panel/bottom_skin_text/current_skin_text": "ui/day_one_experience_screen.json", - "skin_viewer_panel/bottom_skin_text/default_skin_text": "ui/day_one_experience_screen.json", - "skin_tip_screen": "ui/day_one_experience_screen.json", - "skin_tip_screen/primary_content": "ui/day_one_experience_screen.json", - "skin_tip_screen/primary_content/skin_viewer_panel": "ui/day_one_experience_screen.json", - "skin_tip_screen/primary_content/skin_viewer_panel/skin_viewer": "ui/day_one_experience_screen.json", - "skin_tip_screen/primary_content/padding": "ui/day_one_experience_screen.json", - "skin_tip_screen/primary_content/skins_tip_panel_container": "ui/day_one_experience_screen.json", - "skin_tip_screen/primary_content/skins_tip_panel_container/background": "ui/day_one_experience_screen.json", - "skin_tip_screen/primary_content/skins_tip_panel_container/skins_tip_panel": "ui/day_one_experience_screen.json", - "skin_tip_screen/no_network_message": "ui/day_one_experience_screen.json", - "legacy_world_item": "ui/day_one_experience_screen.json", - "legacy_world_item/header_button_panel": "ui/day_one_experience_screen.json", - "legacy_world_item_grid": "ui/day_one_experience_screen.json", - "world_picker_scrolling_content": "ui/day_one_experience_screen.json", - "world_picker_scrolling_content/padding_0": "ui/day_one_experience_screen.json", - "world_picker_scrolling_content/skip_button": "ui/day_one_experience_screen.json", - "world_picker_scrolling_content/padding_1": "ui/day_one_experience_screen.json", - "world_picker_scrolling_content/loading_legacy_worlds_panel": "ui/day_one_experience_screen.json", - "world_picker_scrolling_content/loading_legacy_worlds_panel/loading_legacy_worlds_label": "ui/day_one_experience_screen.json", - "world_picker_scrolling_content/loading_legacy_worlds_panel/padding": "ui/day_one_experience_screen.json", - "world_picker_scrolling_content/loading_legacy_worlds_panel/progress_loading_bars": "ui/day_one_experience_screen.json", - "world_picker_scrolling_content/padding_2": "ui/day_one_experience_screen.json", - "world_picker_scrolling_content/world_item_grid": "ui/day_one_experience_screen.json", - "world_picker_content": "ui/day_one_experience_screen.json", - "world_picker_content/scrolling_panel": "ui/day_one_experience_screen.json", - "advanced_worlds_screen": "ui/day_one_experience_screen.json", - "advanced_worlds_screen/world_picker": "ui/day_one_experience_screen.json", - "advanced_worlds_screen/padding_1": "ui/day_one_experience_screen.json", - "advanced_worlds_screen/import_time_container": "ui/day_one_experience_screen.json", - "advanced_worlds_screen/import_time_container/import_time_label": "ui/day_one_experience_screen.json", - "next_screen_button_content": "ui/day_one_experience_screen.json", - "next_screen_button_content/arrow_panel": "ui/day_one_experience_screen.json", - "next_screen_button_content/arrow_panel/label_panel": "ui/day_one_experience_screen.json", - "next_screen_button_content/arrow_panel/label_panel/label": "ui/day_one_experience_screen.json", - "next_screen_button_content/arrow_panel/image": "ui/day_one_experience_screen.json", - "next_screen_button_content/loading_panel": "ui/day_one_experience_screen.json", - "next_screen_button": "ui/day_one_experience_screen.json", - "next_panel": "ui/day_one_experience_screen.json", - "next_panel/next_button": "ui/day_one_experience_screen.json", - "common_scrolling_panel": "ui/day_one_experience_screen.json", - "skin_tip_scroll_panel": "ui/day_one_experience_screen.json", - "skin_tip_scroll_panel/skin_tip_screen": "ui/day_one_experience_screen.json", - "worlds_import_scroll_panel": "ui/day_one_experience_screen.json", - "worlds_import_scroll_panel/advanced_screen": "ui/day_one_experience_screen.json", - "common_content": "ui/day_one_experience_screen.json", - "skin_tip_scroll_content": "ui/day_one_experience_screen.json", - "skin_tip_scroll_content/scrolling_panel": "ui/day_one_experience_screen.json", - "world_import_scroll_content": "ui/day_one_experience_screen.json", - "world_import_scroll_content/scrolling_panel": "ui/day_one_experience_screen.json", - "default_tab_content_panel_layout": "ui/day_one_experience_screen.json", - "default_tab_content_panel_layout/skin_tip_tab_content": "ui/day_one_experience_screen.json", - "default_tab_content_panel_layout/world_import_tab_content": "ui/day_one_experience_screen.json", - "default_wizard_screen": "ui/day_one_experience_screen.json", - "default_wizard_screen/tab_content_panel": "ui/day_one_experience_screen.json", - "wizard_screen": "ui/day_one_experience_screen.json", - "wizard_screen_content": "ui/day_one_experience_screen.json", - "wizard_screen_content/main_control": "ui/day_one_experience_screen.json", - "wizard_screen_content/next_button": "ui/day_one_experience_screen.json", - }, - "death": { - "a_button_panel": "ui/death_screen.json", - "a_button_panel/gamepad_helper_a": "ui/death_screen.json", - "you_died_panel": "ui/death_screen.json", - "you_died_panel/you_died_label": "ui/death_screen.json", - "death_reason_panel": "ui/death_screen.json", - "death_reason_panel/death_reason_label": "ui/death_screen.json", - "labels_panel": "ui/death_screen.json", - "labels_panel/fill_1": "ui/death_screen.json", - "labels_panel/you_died": "ui/death_screen.json", - "labels_panel/padd_1": "ui/death_screen.json", - "labels_panel/death_reason": "ui/death_screen.json", - "labels_panel/padd_2": "ui/death_screen.json", - "buttons_panel": "ui/death_screen.json", - "buttons_panel/padd_0": "ui/death_screen.json", - "buttons_panel/respawn_button": "ui/death_screen.json", - "buttons_panel/padd_1": "ui/death_screen.json", - "buttons_panel/main_menu_button": "ui/death_screen.json", - "buttons_panel/fill_2": "ui/death_screen.json", - "buttons_panel/select_button": "ui/death_screen.json", - "death_screen_content": "ui/death_screen.json", - "death_screen_content/death_screen_buttons_and_stuff": "ui/death_screen.json", - "death_screen_content/death_screen_buttons_and_stuff/labels_panel": "ui/death_screen.json", - "death_screen_content/death_screen_buttons_and_stuff/buttons_panel": "ui/death_screen.json", - "death_screen_content/loading_label": "ui/death_screen.json", - "background_gradient": "ui/death_screen.json", - "death_screen": "ui/death_screen.json", - }, - "debug_screen": { - "access_button": "ui/debug_screen.json", - "special_render": "ui/debug_screen.json", - "content_panel": "ui/debug_screen.json", - "content_panel/access_button": "ui/debug_screen.json", - "content_panel/special_render": "ui/debug_screen.json", - "debug_screen": "ui/debug_screen.json", - }, - "dev_console": { - "keyboard_button_content": "ui/dev_console_screen.json", - "keyboard_button_content/keyboard_image": "ui/dev_console_screen.json", - "keyboard_button": "ui/dev_console_screen.json", - "button_content": "ui/dev_console_screen.json", - "button_content/image": "ui/dev_console_screen.json", - "up_arrow": "ui/dev_console_screen.json", - "down_arrow": "ui/dev_console_screen.json", - "send_button": "ui/dev_console_screen.json", - "sent_message_up_button": "ui/dev_console_screen.json", - "sent_message_down_button": "ui/dev_console_screen.json", - "chat_stack_panel": "ui/dev_console_screen.json", - "chat_stack_panel/text_box": "ui/dev_console_screen.json", - "chat_stack_panel/send_button": "ui/dev_console_screen.json", - "chat_stack_panel/sent_message_up_button": "ui/dev_console_screen.json", - "chat_stack_panel/sent_message_down_button": "ui/dev_console_screen.json", - "main_stack_panel": "ui/dev_console_screen.json", - "main_stack_panel/messages_scrolling_panel": "ui/dev_console_screen.json", - "main_stack_panel/chat_stack_panel": "ui/dev_console_screen.json", - "main_with_intellisense": "ui/dev_console_screen.json", - "main_with_intellisense/main_stack": "ui/dev_console_screen.json", - "main_with_intellisense/commands_panel": "ui/dev_console_screen.json", - "dev_console_dialog": "ui/dev_console_screen.json", - "dev_console_screen": "ui/dev_console_screen.json", - }, - "disconnect": { - "disconnect_screen_text": "ui/disconnect_screen.json", - "disconnect_text": "ui/disconnect_screen.json", - "disconnect_title_text": "ui/disconnect_screen.json", - "title_panel": "ui/disconnect_screen.json", - "title_panel/disconnect_title_text": "ui/disconnect_screen.json", - "title_panel/disconnect_text": "ui/disconnect_screen.json", - "menu_button_template": "ui/disconnect_screen.json", - "continue_button": "ui/disconnect_screen.json", - "check_store_button": "ui/disconnect_screen.json", - "exit_button": "ui/disconnect_screen.json", - "ok_button": "ui/disconnect_screen.json", - "open_uri_button": "ui/disconnect_screen.json", - "cancel_button": "ui/disconnect_screen.json", - "button_panel": "ui/disconnect_screen.json", - "button_panel/open_uri_button_panel": "ui/disconnect_screen.json", - "button_panel/open_uri_button_panel/open_uri_button": "ui/disconnect_screen.json", - "button_panel/open_button_panel": "ui/disconnect_screen.json", - "button_panel/open_button_panel/ok_button": "ui/disconnect_screen.json", - "gamepad_helpers": "ui/disconnect_screen.json", - "gamepad_helpers/gamepad_helper_a": "ui/disconnect_screen.json", - "disconnect_screen": "ui/disconnect_screen.json", - "disconnect_screen_content": "ui/disconnect_screen.json", - "disconnect_screen_content/title_panel": "ui/disconnect_screen.json", - "disconnect_screen_content/gamepad_helpers": "ui/disconnect_screen.json", - "spacing_gap": "ui/disconnect_screen.json", - "realms_disconnect_screen": "ui/disconnect_screen.json", - "realms_disconnect_button_panel": "ui/disconnect_screen.json", - "realms_disconnect_button_panel/open_uri_button_panel": "ui/disconnect_screen.json", - "realms_disconnect_button_panel/open_uri_button_panel/open_uri_button": "ui/disconnect_screen.json", - "realms_disconnect_button_panel/realm_buttons_panel": "ui/disconnect_screen.json", - "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons": "ui/disconnect_screen.json", - "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/check_store_button": "ui/disconnect_screen.json", - "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/spacing_gap": "ui/disconnect_screen.json", - "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/exit_button": "ui/disconnect_screen.json", - "realms_warning_screen": "ui/disconnect_screen.json", - "realms_warning_button_panel": "ui/disconnect_screen.json", - "realms_warning_button_panel/continue_button_panel": "ui/disconnect_screen.json", - "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel": "ui/disconnect_screen.json", - "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/check_store_button": "ui/disconnect_screen.json", - "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/spacing_gap": "ui/disconnect_screen.json", - "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/continue_button": "ui/disconnect_screen.json", - "realms_warning_button_panel/realms_warning_button_gap": "ui/disconnect_screen.json", - "realms_warning_button_panel/cancel_button_panel": "ui/disconnect_screen.json", - "realms_warning_button_panel/cancel_button_panel/cancel_button": "ui/disconnect_screen.json", - "open_account_setting_button": "ui/disconnect_screen.json", - }, - "display_logged_error": { - "display_logged_error_screen": "ui/display_logged_error_screen.json", - "factory_panel": "ui/display_logged_error_screen.json", - "factory_panel/error_dialog_factory": "ui/display_logged_error_screen.json", - "display_logged_error_modal": "ui/display_logged_error_screen.json", - "error_message_stack": "ui/display_logged_error_screen.json", - "error_message_stack/error_message": "ui/display_logged_error_screen.json", - "error_message_stack/error_count": "ui/display_logged_error_screen.json", - "input_blocking_button_base": "ui/display_logged_error_screen.json", - "details_button": "ui/display_logged_error_screen.json", - "dismiss_button": "ui/display_logged_error_screen.json", - "error_details_modal": "ui/display_logged_error_screen.json", - "copy_path_button": "ui/display_logged_error_screen.json", - "hide_error_details_button": "ui/display_logged_error_screen.json", - "error_stack_scrolling_panel": "ui/display_logged_error_screen.json", - "error_stack": "ui/display_logged_error_screen.json", - "error_controller_panel": "ui/display_logged_error_screen.json", - "error_controller_panel/error_message": "ui/display_logged_error_screen.json", - "error_controller_panel/controller_button": "ui/display_logged_error_screen.json", - "error_controller_panel/controller_button/hover": "ui/display_logged_error_screen.json", - "error_controller_panel/controller_button/pressed": "ui/display_logged_error_screen.json", - "error_base": "ui/display_logged_error_screen.json", - "error_base/error_message": "ui/display_logged_error_screen.json", - "error_base/expand_button": "ui/display_logged_error_screen.json", - "error_short": "ui/display_logged_error_screen.json", - "error_expanded": "ui/display_logged_error_screen.json", - }, - "discovery_dialog": { - "service_body_label": "ui/edu_discovery_dialog.json", - "service_button": "ui/edu_discovery_dialog.json", - "service_buttons": "ui/edu_discovery_dialog.json", - "content": "ui/edu_discovery_dialog.json", - "content/body_text": "ui/edu_discovery_dialog.json", - "content/text_to_button_padding": "ui/edu_discovery_dialog.json", - "content/buttons": "ui/edu_discovery_dialog.json", - "service_dialog": "ui/edu_discovery_dialog.json", - "discovery_dialog_factory": "ui/edu_discovery_dialog.json", - }, - "edu_featured": { - "featured_button_content": "ui/edu_featured.json", - "featured_button_content/button_label": "ui/edu_featured.json", - "featured_button": "ui/edu_featured.json", - }, - "edu_quit_button": { - "quit_button": "ui/edu_pause_screen_pause_button.json", - }, - "persona_emote": { - "emote_wheel_screen": "ui/emote_wheel_screen.json", - "emote_wheel_touch_zone": "ui/emote_wheel_screen.json", - "emote_wheel_screen_content": "ui/emote_wheel_screen.json", - "emote_wheel_screen_content/top_padding": "ui/emote_wheel_screen.json", - "emote_wheel_screen_content/root_panel": "ui/emote_wheel_screen.json", - "emote_wheel_screen_content/root_panel/emotes_panel": "ui/emote_wheel_screen.json", - "emote_wheel_screen_content/instruction_padding": "ui/emote_wheel_screen.json", - "emote_wheel_screen_content/instruction_panel": "ui/emote_wheel_screen.json", - "emote_wheel_screen_content/instruction_panel/instruction_background": "ui/emote_wheel_screen.json", - "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack": "ui/emote_wheel_screen.json", - "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/instruction_label_gamepad": "ui/emote_wheel_screen.json", - "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers": "ui/emote_wheel_screen.json", - "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack": "ui/emote_wheel_screen.json", - "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_start": "ui/emote_wheel_screen.json", - "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel": "ui/emote_wheel_screen.json", - "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel/gamepad_exit": "ui/emote_wheel_screen.json", - "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_keyboard": "ui/emote_wheel_screen.json", - "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_touch": "ui/emote_wheel_screen.json", - "emote_wheel_screen_content/dressing_room_button_panel": "ui/emote_wheel_screen.json", - "emote_wheel_screen_content/dressing_room_button_panel/dressing_room_button": "ui/emote_wheel_screen.json", - "emote_wheel_screen_content/bottom_padding": "ui/emote_wheel_screen.json", - "swap_emote_button": "ui/emote_wheel_screen.json", - }, - "enchanting": { - "enchanting_image": "ui/enchanting_screen.json", - "lapis_image": "ui/enchanting_screen.json", - "dust_image": "ui/enchanting_screen.json", - "dust_image_selectable": "ui/enchanting_screen.json", - "dust_image_unselectable": "ui/enchanting_screen.json", - "dust_template": "ui/enchanting_screen.json", - "dust_template/dust_image_selectable": "ui/enchanting_screen.json", - "dust_template/dust_image_unselectable": "ui/enchanting_screen.json", - "dust_panel": "ui/enchanting_screen.json", - "dust_panel/a": "ui/enchanting_screen.json", - "dust_panel/b": "ui/enchanting_screen.json", - "dust_panel/c": "ui/enchanting_screen.json", - "background_with_hover_text": "ui/enchanting_screen.json", - "background_with_hover_text/hover_text": "ui/enchanting_screen.json", - "dark_background": "ui/enchanting_screen.json", - "dark_background_with_hover_text": "ui/enchanting_screen.json", - "active_background": "ui/enchanting_screen.json", - "active_background_with_hover_text": "ui/enchanting_screen.json", - "enchant_runes": "ui/enchanting_screen.json", - "enchant_cost": "ui/enchanting_screen.json", - "success_runes": "ui/enchanting_screen.json", - "fail_runes": "ui/enchanting_screen.json", - "success_cost": "ui/enchanting_screen.json", - "fail_cost": "ui/enchanting_screen.json", - "enchanting_label": "ui/enchanting_screen.json", - "base_button": "ui/enchanting_screen.json", - "unselectable_button": "ui/enchanting_screen.json", - "unselectable_button/default": "ui/enchanting_screen.json", - "unselectable_button/hover": "ui/enchanting_screen.json", - "unselectable_button/pressed": "ui/enchanting_screen.json", - "unselectable_button/rune_text": "ui/enchanting_screen.json", - "unselectable_button/enchant_cost": "ui/enchanting_screen.json", - "selectable_button": "ui/enchanting_screen.json", - "selectable_button/default": "ui/enchanting_screen.json", - "selectable_button/hover": "ui/enchanting_screen.json", - "selectable_button/pressed": "ui/enchanting_screen.json", - "selectable_button/rune_text": "ui/enchanting_screen.json", - "selectable_button/enchant_cost": "ui/enchanting_screen.json", - "enchant_button_panel": "ui/enchanting_screen.json", - "enchant_button_panel/dark_background": "ui/enchanting_screen.json", - "enchant_button_panel/unselectable_button": "ui/enchanting_screen.json", - "enchant_button_panel/selectable_button": "ui/enchanting_screen.json", - "enchanting_panel_top_half": "ui/enchanting_screen.json", - "enchanting_panel_top_half/enchanting_label": "ui/enchanting_screen.json", - "enchanting_panel_top_half/enchanting_book_panel": "ui/enchanting_screen.json", - "enchanting_panel_top_half/enchanting_book_panel/enchanting_book": "ui/enchanting_screen.json", - "enchanting_panel_top_half/item_grid": "ui/enchanting_screen.json", - "enchanting_panel_top_half/item_grid/item_slot": "ui/enchanting_screen.json", - "enchanting_panel_top_half/lapis_grid": "ui/enchanting_screen.json", - "enchanting_panel_top_half/lapis_grid/lapis": "ui/enchanting_screen.json", - "enchanting_panel_top_half/grid_panel": "ui/enchanting_screen.json", - "enchanting_panel_top_half/grid_panel/indent": "ui/enchanting_screen.json", - "enchanting_panel_top_half/grid_panel/dust_panel": "ui/enchanting_screen.json", - "enchanting_panel_top_half/grid_panel/enchantments_grid": "ui/enchanting_screen.json", - "enchanting_panel": "ui/enchanting_screen.json", - "enchanting_panel/container_gamepad_helpers": "ui/enchanting_screen.json", - "enchanting_panel/selected_item_details_factory": "ui/enchanting_screen.json", - "enchanting_panel/item_lock_notification_factory": "ui/enchanting_screen.json", - "enchanting_panel/root_panel": "ui/enchanting_screen.json", - "enchanting_panel/root_panel/common_panel": "ui/enchanting_screen.json", - "enchanting_panel/root_panel/enchanting_screen_inventory": "ui/enchanting_screen.json", - "enchanting_panel/root_panel/enchanting_screen_inventory/enchanting_panel_top_half": "ui/enchanting_screen.json", - "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_panel_bottom_half_with_label": "ui/enchanting_screen.json", - "enchanting_panel/root_panel/enchanting_screen_inventory/hotbar_grid": "ui/enchanting_screen.json", - "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_take_progress_icon_button": "ui/enchanting_screen.json", - "enchanting_panel/root_panel/inventory_selected_icon_button": "ui/enchanting_screen.json", - "enchanting_panel/root_panel/gamepad_cursor": "ui/enchanting_screen.json", - "enchanting_panel/flying_item_renderer": "ui/enchanting_screen.json", - "enchanting_screen": "ui/enchanting_screen.json", - }, - "enchanting_pocket": { - "generic_label": "ui/enchanting_screen_pocket.json", - "background_image": "ui/enchanting_screen_pocket.json", - "inventory_grid": "ui/enchanting_screen_pocket.json", - "inventory_content": "ui/enchanting_screen_pocket.json", - "inventory_content/scrolling_panel": "ui/enchanting_screen_pocket.json", - "lapis_image": "ui/enchanting_screen_pocket.json", - "enchanting_slots_panel": "ui/enchanting_screen_pocket.json", - "enchanting_slots_panel/input_slot": "ui/enchanting_screen_pocket.json", - "enchanting_slots_panel/lapis_slot": "ui/enchanting_screen_pocket.json", - "enchant_text_runes": "ui/enchanting_screen_pocket.json", - "show_highlighted_slot_control": "ui/enchanting_screen_pocket.json", - "show_highlighted_hover_slot_control": "ui/enchanting_screen_pocket.json", - "inactive_background": "ui/enchanting_screen_pocket.json", - "unselectable_button": "ui/enchanting_screen_pocket.json", - "unselectable_button/default": "ui/enchanting_screen_pocket.json", - "unselectable_button/hover": "ui/enchanting_screen_pocket.json", - "unselectable_button/pressed": "ui/enchanting_screen_pocket.json", - "unselectable_button/enchant_cost": "ui/enchanting_screen_pocket.json", - "selectable_button": "ui/enchanting_screen_pocket.json", - "selectable_button/default": "ui/enchanting_screen_pocket.json", - "selectable_button/hover": "ui/enchanting_screen_pocket.json", - "selectable_button/pressed": "ui/enchanting_screen_pocket.json", - "selectable_button/enchant_cost": "ui/enchanting_screen_pocket.json", - "enchant_button_panel": "ui/enchanting_screen_pocket.json", - "enchant_button_panel/inactive_background": "ui/enchanting_screen_pocket.json", - "enchant_button_panel/unselectable_button": "ui/enchanting_screen_pocket.json", - "enchant_button_panel/selectable_button": "ui/enchanting_screen_pocket.json", - "enchant_button_panel/dust": "ui/enchanting_screen_pocket.json", - "enchant_button_panel/rune_text": "ui/enchanting_screen_pocket.json", - "enchant_button_panel/highlight": "ui/enchanting_screen_pocket.json", - "enchant_selection_panel": "ui/enchanting_screen_pocket.json", - "enchant_selection_panel/grid": "ui/enchanting_screen_pocket.json", - "enchant_selection_panel/grid/button1": "ui/enchanting_screen_pocket.json", - "enchant_selection_panel/grid/button2": "ui/enchanting_screen_pocket.json", - "enchant_selection_panel/grid/button3": "ui/enchanting_screen_pocket.json", - "item_renderer": "ui/enchanting_screen_pocket.json", - "confirm_default_control": "ui/enchanting_screen_pocket.json", - "enchanting_confirm_button": "ui/enchanting_screen_pocket.json", - "enchanting_confirm_button/default": "ui/enchanting_screen_pocket.json", - "enchanting_confirm_button/hover": "ui/enchanting_screen_pocket.json", - "enchanting_confirm_button/pressed": "ui/enchanting_screen_pocket.json", - "enchanting_confirm_button/arrow_active": "ui/enchanting_screen_pocket.json", - "enchanting_confirm_button/arrow_inactive": "ui/enchanting_screen_pocket.json", - "enchanting_confirm_button/input_item_renderer": "ui/enchanting_screen_pocket.json", - "enchanting_confirm_button/output_item_renderer": "ui/enchanting_screen_pocket.json", - "enchanting_confirm_panel": "ui/enchanting_screen_pocket.json", - "enchanting_confirm_panel/confirm": "ui/enchanting_screen_pocket.json", - "enchanting_confirm_panel/enchantment_hint_text": "ui/enchanting_screen_pocket.json", - "enchanting_book_contents_panel": "ui/enchanting_screen_pocket.json", - "enchanting_book_contents_panel/enchanting_book": "ui/enchanting_screen_pocket.json", - "enchanting_book_contents_panel/player_level_label": "ui/enchanting_screen_pocket.json", - "enchanting_book_contents_panel/level_label": "ui/enchanting_screen_pocket.json", - "enchanting_book_panel": "ui/enchanting_screen_pocket.json", - "enchanting_book_panel/enchanting_slots_panel": "ui/enchanting_screen_pocket.json", - "enchanting_slots_and_selection": "ui/enchanting_screen_pocket.json", - "enchanting_slots_and_selection/enchanting_slots_panel": "ui/enchanting_screen_pocket.json", - "enchanting_slots_and_selection/pad1": "ui/enchanting_screen_pocket.json", - "enchanting_slots_and_selection/enchant_selection_panel": "ui/enchanting_screen_pocket.json", - "enchanting_contents_panel": "ui/enchanting_screen_pocket.json", - "enchanting_contents_panel/fill1": "ui/enchanting_screen_pocket.json", - "enchanting_contents_panel/enchanting_book_panel": "ui/enchanting_screen_pocket.json", - "enchanting_contents_panel/pad1": "ui/enchanting_screen_pocket.json", - "enchanting_contents_panel/enchanting_slots_and_selection": "ui/enchanting_screen_pocket.json", - "enchanting_contents_panel/pad2": "ui/enchanting_screen_pocket.json", - "enchanting_contents_panel/enchanting_confirm_panel": "ui/enchanting_screen_pocket.json", - "enchanting_contents_panel/fill2": "ui/enchanting_screen_pocket.json", - "header": "ui/enchanting_screen_pocket.json", - "header/header_background": "ui/enchanting_screen_pocket.json", - "header/legacy_pocket_close_button": "ui/enchanting_screen_pocket.json", - "header/panel": "ui/enchanting_screen_pocket.json", - "header/panel/title_label": "ui/enchanting_screen_pocket.json", - "inventory_and_enchanting_panel": "ui/enchanting_screen_pocket.json", - "inventory_and_enchanting_panel/inventory_half_screen": "ui/enchanting_screen_pocket.json", - "inventory_and_enchanting_panel/inventory_half_screen/inventory_content": "ui/enchanting_screen_pocket.json", - "inventory_and_enchanting_panel/enchanting_half_screen": "ui/enchanting_screen_pocket.json", - "inventory_and_enchanting_panel/enchanting_half_screen/enchanting_content": "ui/enchanting_screen_pocket.json", - "header_and_content_stack_panel": "ui/enchanting_screen_pocket.json", - "header_and_content_stack_panel/header": "ui/enchanting_screen_pocket.json", - "header_and_content_stack_panel/inventory_and_enchanting_panel": "ui/enchanting_screen_pocket.json", - "error_text_panel": "ui/enchanting_screen_pocket.json", - "error_text_panel/item_text_label": "ui/enchanting_screen_pocket.json", - "enchanting_panel": "ui/enchanting_screen_pocket.json", - "enchanting_panel/bg": "ui/enchanting_screen_pocket.json", - "enchanting_panel/root_panel": "ui/enchanting_screen_pocket.json", - "enchanting_panel/header_and_content_stack_panel": "ui/enchanting_screen_pocket.json", - "enchanting_panel/container_gamepad_helpers": "ui/enchanting_screen_pocket.json", - "enchanting_panel/inventory_selected_icon_button": "ui/enchanting_screen_pocket.json", - "enchanting_panel/hold_icon": "ui/enchanting_screen_pocket.json", - "enchanting_panel/selected_item_details_factory": "ui/enchanting_screen_pocket.json", - "enchanting_panel/item_lock_notification_factory": "ui/enchanting_screen_pocket.json", - "enchanting_panel/flying_item_renderer": "ui/enchanting_screen_pocket.json", - }, - "encyclopedia": { - "encyclopedia_screen": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/overworld_category": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_stand_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/banners_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beacons_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beds_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/blocks_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/book_and_quill_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/chests_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/conduits_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dyes_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/farming_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fireworks_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fishing_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jigsaw_blocks_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mounts_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/navigation_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/nether_portals_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/pets_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/raids_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/ranching_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/scaffolding_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/structure_blocks_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/tools_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/transportation_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/trading_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/weapons_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/stands_and_tables_category": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/anvil_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/brewing_stand_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/cauldron_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/crafting_table_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/enchanting_table_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/furnace_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/loom_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/smithing_table_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_engineering_category": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/droppers_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dispensers_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/hoppers_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jukebox_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_dimension_category": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/eye_of_ender_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/end_cities_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/elytra_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/shulker_boxes_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/options_and_cheats_category": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/game_settings_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/difficulty_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/adventure_mode_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/creative_mode_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/commands_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/host_and_player_options_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/command_blocks_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_category": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_stories_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/marketplace_category": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/minecoins_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/addons_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/worlds_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/textures_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/skins_button": "ui/encyclopedia_screen.json", - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mashups_button": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/section_contents_header": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/armor_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/armor_stand_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/banners_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/beacons_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/beds_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/blocks_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/book_and_quill_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/chests_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/conduits_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/dyes_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/farming_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/fireworks_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/fishing_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/jigsaw": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/mounts_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/navigation_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/nether_portals_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/pets_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/raids_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/ranching_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/scaffolding_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/structure_blocks_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/tools_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/transportation_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/trading_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/weapons_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/anvil_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/brewing_stand_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/cauldron_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/crafting_table_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/enchanting_table_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/furnace_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/loom_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/smithing_table_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/droppers_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/dispensers_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/hoppers_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/jukebox_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/redstone_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/the_end_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/eye_of_ender_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/end_cities_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/elytra_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/shulker_boxes_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/game_settings_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/difficulty_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/adventure_mode_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/creative_mode_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/commands_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/host_and_player_options_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/command_blocks_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/realms_stories_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/minecoins_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/addons_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/worlds_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/textures_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/skins_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/mashups_section": "ui/encyclopedia_screen.json", - "encyclopedia_section_content_panels/general_tips_sections/section_contents_footer": "ui/encyclopedia_screen.json", - "adventure_mode_button": "ui/encyclopedia_screen.json", - "adventure_mode_section": "ui/encyclopedia_screen.json", - "adventure_mode_section/paragraph_1": "ui/encyclopedia_screen.json", - "adventure_mode_section/padding_1": "ui/encyclopedia_screen.json", - "adventure_mode_section/paragraph_2": "ui/encyclopedia_screen.json", - "anvil_button": "ui/encyclopedia_screen.json", - "anvil_section": "ui/encyclopedia_screen.json", - "anvil_section/paragraph_1": "ui/encyclopedia_screen.json", - "anvil_section/padding_1": "ui/encyclopedia_screen.json", - "anvil_section/header_1": "ui/encyclopedia_screen.json", - "anvil_section/paragraph_2": "ui/encyclopedia_screen.json", - "anvil_section/padding_2": "ui/encyclopedia_screen.json", - "anvil_section/header_2": "ui/encyclopedia_screen.json", - "anvil_section/paragraph_3": "ui/encyclopedia_screen.json", - "anvil_section/padding_3": "ui/encyclopedia_screen.json", - "anvil_section/paragraph_4": "ui/encyclopedia_screen.json", - "anvil_section/padding_4": "ui/encyclopedia_screen.json", - "anvil_section/paragraph_5": "ui/encyclopedia_screen.json", - "armor_button": "ui/encyclopedia_screen.json", - "armor_section": "ui/encyclopedia_screen.json", - "armor_section/paragraph_1": "ui/encyclopedia_screen.json", - "armor_section/padding_1": "ui/encyclopedia_screen.json", - "armor_section/header_1": "ui/encyclopedia_screen.json", - "armor_section/paragraph_2": "ui/encyclopedia_screen.json", - "armor_section/padding_2": "ui/encyclopedia_screen.json", - "armor_section/paragraph_3": "ui/encyclopedia_screen.json", - "armor_section/padding_3": "ui/encyclopedia_screen.json", - "armor_section/paragraph_4": "ui/encyclopedia_screen.json", - "armor_section/padding_4": "ui/encyclopedia_screen.json", - "armor_section/header_2": "ui/encyclopedia_screen.json", - "armor_section/paragraph_5_keyboard": "ui/encyclopedia_screen.json", - "armor_section/paragraph_5_gamepad": "ui/encyclopedia_screen.json", - "armor_section/paragraph_5a_touch": "ui/encyclopedia_screen.json", - "armor_section/padding_5a_touch": "ui/encyclopedia_screen.json", - "armor_section/paragraph_5b_touch": "ui/encyclopedia_screen.json", - "armor_section/padding_5b_touch": "ui/encyclopedia_screen.json", - "armor_section/paragraph_5c_touch": "ui/encyclopedia_screen.json", - "armor_section/padding_5": "ui/encyclopedia_screen.json", - "armor_section/paragraph_6": "ui/encyclopedia_screen.json", - "armor_section/padding_6": "ui/encyclopedia_screen.json", - "armor_section/header_3": "ui/encyclopedia_screen.json", - "armor_section/paragraph_7": "ui/encyclopedia_screen.json", - "armor_stand_button": "ui/encyclopedia_screen.json", - "armor_stand_section": "ui/encyclopedia_screen.json", - "armor_stand_section/paragraph_1": "ui/encyclopedia_screen.json", - "armor_stand_section/padding_1": "ui/encyclopedia_screen.json", - "armor_stand_section/header_1": "ui/encyclopedia_screen.json", - "armor_stand_section/paragraph_2_keyboard": "ui/encyclopedia_screen.json", - "armor_stand_section/paragraph_2_gamepad": "ui/encyclopedia_screen.json", - "armor_stand_section/paragraph_2_touch": "ui/encyclopedia_screen.json", - "armor_stand_section/padding_2": "ui/encyclopedia_screen.json", - "armor_stand_section/paragraph_3_keyboard": "ui/encyclopedia_screen.json", - "armor_stand_section/paragraph_3_gamepad": "ui/encyclopedia_screen.json", - "armor_stand_section/paragraph_3_touch": "ui/encyclopedia_screen.json", - "armor_stand_section/padding_3": "ui/encyclopedia_screen.json", - "armor_stand_section/header_2": "ui/encyclopedia_screen.json", - "armor_stand_section/paragraph_4_keyboard": "ui/encyclopedia_screen.json", - "armor_stand_section/paragraph_4_gamepad": "ui/encyclopedia_screen.json", - "armor_stand_section/paragraph_4_touch": "ui/encyclopedia_screen.json", - "armor_stand_section/padding_4": "ui/encyclopedia_screen.json", - "armor_stand_section/header_3": "ui/encyclopedia_screen.json", - "armor_stand_section/paragraph_5": "ui/encyclopedia_screen.json", - "banners_button": "ui/encyclopedia_screen.json", - "banners_section": "ui/encyclopedia_screen.json", - "banners_section/paragraph_1": "ui/encyclopedia_screen.json", - "banners_section/padding_1": "ui/encyclopedia_screen.json", - "banners_section/paragraph_2": "ui/encyclopedia_screen.json", - "banners_section/padding_2": "ui/encyclopedia_screen.json", - "banners_section/header_1": "ui/encyclopedia_screen.json", - "banners_section/paragraph_3": "ui/encyclopedia_screen.json", - "banners_section/padding_3": "ui/encyclopedia_screen.json", - "banners_section/paragraph_4": "ui/encyclopedia_screen.json", - "banners_section/padding_4": "ui/encyclopedia_screen.json", - "banners_section/paragraph_5": "ui/encyclopedia_screen.json", - "banners_section/padding_5": "ui/encyclopedia_screen.json", - "banners_section/paragraph_6": "ui/encyclopedia_screen.json", - "banners_section/padding_6": "ui/encyclopedia_screen.json", - "banners_section/paragraph_7": "ui/encyclopedia_screen.json", - "banners_section/padding_7": "ui/encyclopedia_screen.json", - "banners_section/header_2": "ui/encyclopedia_screen.json", - "banners_section/paragraph_8": "ui/encyclopedia_screen.json", - "banners_section/padding_8": "ui/encyclopedia_screen.json", - "banners_section/header_3": "ui/encyclopedia_screen.json", - "banners_section/paragraph_9": "ui/encyclopedia_screen.json", - "beacons_button": "ui/encyclopedia_screen.json", - "beacons_section": "ui/encyclopedia_screen.json", - "beacons_section/paragraph_1": "ui/encyclopedia_screen.json", - "beacons_section/padding_1": "ui/encyclopedia_screen.json", - "beacons_section/paragraph_2": "ui/encyclopedia_screen.json", - "beacons_section/padding_2": "ui/encyclopedia_screen.json", - "beacons_section/header_1": "ui/encyclopedia_screen.json", - "beacons_section/paragraph_3": "ui/encyclopedia_screen.json", - "beacons_section/padding_3": "ui/encyclopedia_screen.json", - "beacons_section/paragraph_4": "ui/encyclopedia_screen.json", - "beacons_section/padding_4": "ui/encyclopedia_screen.json", - "beacons_section/header_2": "ui/encyclopedia_screen.json", - "beacons_section/paragraph_5": "ui/encyclopedia_screen.json", - "beacons_section/padding_5": "ui/encyclopedia_screen.json", - "beacons_section/paragraph_6": "ui/encyclopedia_screen.json", - "beacons_section/padding_6": "ui/encyclopedia_screen.json", - "beacons_section/paragraph_7": "ui/encyclopedia_screen.json", - "beacons_section/padding_7": "ui/encyclopedia_screen.json", - "beacons_section/paragraph_8": "ui/encyclopedia_screen.json", - "conduits_button": "ui/encyclopedia_screen.json", - "conduits_section": "ui/encyclopedia_screen.json", - "conduits_section/paragraph_1": "ui/encyclopedia_screen.json", - "conduits_section/padding_1": "ui/encyclopedia_screen.json", - "conduits_section/paragraph_2": "ui/encyclopedia_screen.json", - "conduits_section/padding_2": "ui/encyclopedia_screen.json", - "conduits_section/header_1": "ui/encyclopedia_screen.json", - "conduits_section/paragraph_3": "ui/encyclopedia_screen.json", - "conduits_section/padding_3": "ui/encyclopedia_screen.json", - "conduits_section/paragraph_4": "ui/encyclopedia_screen.json", - "beds_button": "ui/encyclopedia_screen.json", - "beds_section": "ui/encyclopedia_screen.json", - "beds_section/paragraph_1": "ui/encyclopedia_screen.json", - "beds_section/padding_1": "ui/encyclopedia_screen.json", - "beds_section/paragraph_2_keyboard": "ui/encyclopedia_screen.json", - "beds_section/paragraph_2_gamepad": "ui/encyclopedia_screen.json", - "beds_section/paragraph_2_touch": "ui/encyclopedia_screen.json", - "beds_section/padding_2": "ui/encyclopedia_screen.json", - "beds_section/paragraph_3": "ui/encyclopedia_screen.json", - "beds_section/padding_3": "ui/encyclopedia_screen.json", - "beds_section/paragraph_4": "ui/encyclopedia_screen.json", - "beds_section/padding_4": "ui/encyclopedia_screen.json", - "beds_section/paragraph_5": "ui/encyclopedia_screen.json", - "blocks_button": "ui/encyclopedia_screen.json", - "blocks_section": "ui/encyclopedia_screen.json", - "blocks_section/paragraph_1": "ui/encyclopedia_screen.json", - "blocks_section/padding_1": "ui/encyclopedia_screen.json", - "blocks_section/paragraph_2": "ui/encyclopedia_screen.json", - "blocks_section/padding_2": "ui/encyclopedia_screen.json", - "blocks_section/header_1": "ui/encyclopedia_screen.json", - "blocks_section/paragraph_3": "ui/encyclopedia_screen.json", - "blocks_section/padding_3": "ui/encyclopedia_screen.json", - "blocks_section/header_2": "ui/encyclopedia_screen.json", - "blocks_section/paragraph_4": "ui/encyclopedia_screen.json", - "blocks_section/padding_4": "ui/encyclopedia_screen.json", - "blocks_section/paragraph_5": "ui/encyclopedia_screen.json", - "blocks_section/padding_5": "ui/encyclopedia_screen.json", - "blocks_section/paragraph_6": "ui/encyclopedia_screen.json", - "blocks_section/padding_6": "ui/encyclopedia_screen.json", - "blocks_section/paragraph_7": "ui/encyclopedia_screen.json", - "blocks_section/padding_7": "ui/encyclopedia_screen.json", - "blocks_section/paragraph_8": "ui/encyclopedia_screen.json", - "blocks_section/padding_8": "ui/encyclopedia_screen.json", - "blocks_section/paragraph_9": "ui/encyclopedia_screen.json", - "book_and_quill_button": "ui/encyclopedia_screen.json", - "book_and_quill_section": "ui/encyclopedia_screen.json", - "book_and_quill_section/paragraph_1": "ui/encyclopedia_screen.json", - "brewing_stand_button": "ui/encyclopedia_screen.json", - "brewing_stand_section": "ui/encyclopedia_screen.json", - "brewing_stand_section/paragraph_1": "ui/encyclopedia_screen.json", - "brewing_stand_section/padding_1": "ui/encyclopedia_screen.json", - "brewing_stand_section/header_1": "ui/encyclopedia_screen.json", - "brewing_stand_section/paragraph_2": "ui/encyclopedia_screen.json", - "brewing_stand_section/padding_2": "ui/encyclopedia_screen.json", - "brewing_stand_section/header_2": "ui/encyclopedia_screen.json", - "brewing_stand_section/paragraph_3": "ui/encyclopedia_screen.json", - "brewing_stand_section/padding_3": "ui/encyclopedia_screen.json", - "brewing_stand_section/paragraph_4": "ui/encyclopedia_screen.json", - "cauldron_button": "ui/encyclopedia_screen.json", - "cauldron_section": "ui/encyclopedia_screen.json", - "cauldron_section/paragraph_1": "ui/encyclopedia_screen.json", - "cauldron_section/padding_1": "ui/encyclopedia_screen.json", - "cauldron_section/header_1": "ui/encyclopedia_screen.json", - "cauldron_section/paragraph_2_keyboard": "ui/encyclopedia_screen.json", - "cauldron_section/paragraph_2_gamepad": "ui/encyclopedia_screen.json", - "cauldron_section/paragraph_2_touch": "ui/encyclopedia_screen.json", - "cauldron_section/padding_2": "ui/encyclopedia_screen.json", - "cauldron_section/paragraph_3": "ui/encyclopedia_screen.json", - "cauldron_section/padding_3": "ui/encyclopedia_screen.json", - "cauldron_section/header_2": "ui/encyclopedia_screen.json", - "cauldron_section/paragraph_4_keyboard": "ui/encyclopedia_screen.json", - "cauldron_section/paragraph_4_gamepad": "ui/encyclopedia_screen.json", - "cauldron_section/paragraph_4_touch": "ui/encyclopedia_screen.json", - "cauldron_section/padding_4": "ui/encyclopedia_screen.json", - "cauldron_section/header_3": "ui/encyclopedia_screen.json", - "cauldron_section/paragraph_5_keyboard": "ui/encyclopedia_screen.json", - "cauldron_section/paragraph_5_gamepad": "ui/encyclopedia_screen.json", - "cauldron_section/paragraph_5_touch": "ui/encyclopedia_screen.json", - "cauldron_section/padding_5": "ui/encyclopedia_screen.json", - "cauldron_section/paragraph_6": "ui/encyclopedia_screen.json", - "chests_button": "ui/encyclopedia_screen.json", - "chests_section": "ui/encyclopedia_screen.json", - "chests_section/paragraph_1_keyboard": "ui/encyclopedia_screen.json", - "chests_section/paragraph_1_gamepad": "ui/encyclopedia_screen.json", - "chests_section/paragraph_1_touch": "ui/encyclopedia_screen.json", - "chests_section/padding_1": "ui/encyclopedia_screen.json", - "chests_section/paragraph_2": "ui/encyclopedia_screen.json", - "chests_section/padding_2": "ui/encyclopedia_screen.json", - "chests_section/paragraph_3": "ui/encyclopedia_screen.json", - "command_blocks_button": "ui/encyclopedia_screen.json", - "command_blocks_section": "ui/encyclopedia_screen.json", - "command_blocks_section/paragraph_1": "ui/encyclopedia_screen.json", - "command_blocks_section/padding_1": "ui/encyclopedia_screen.json", - "command_blocks_section/paragraph_2": "ui/encyclopedia_screen.json", - "command_blocks_section/padding_2": "ui/encyclopedia_screen.json", - "command_blocks_section/paragraph_3": "ui/encyclopedia_screen.json", - "command_blocks_section/padding_3": "ui/encyclopedia_screen.json", - "command_blocks_section/paragraph_4": "ui/encyclopedia_screen.json", - "command_blocks_section/padding_4": "ui/encyclopedia_screen.json", - "command_blocks_section/paragraph_5": "ui/encyclopedia_screen.json", - "command_blocks_section/paragraph_5_1": "ui/encyclopedia_screen.json", - "command_blocks_section/paragraph_5_2": "ui/encyclopedia_screen.json", - "command_blocks_section/paragraph_5_3": "ui/encyclopedia_screen.json", - "command_blocks_section/padding_5": "ui/encyclopedia_screen.json", - "command_blocks_section/paragraph_6": "ui/encyclopedia_screen.json", - "command_blocks_section/paragraph_6_1": "ui/encyclopedia_screen.json", - "command_blocks_section/paragraph_6_2": "ui/encyclopedia_screen.json", - "command_blocks_section/padding_6": "ui/encyclopedia_screen.json", - "command_blocks_section/paragraph_7": "ui/encyclopedia_screen.json", - "command_blocks_section/paragraph_7_1": "ui/encyclopedia_screen.json", - "command_blocks_section/paragraph_7_2": "ui/encyclopedia_screen.json", - "command_blocks_section/padding_7": "ui/encyclopedia_screen.json", - "command_blocks_section/paragraph_8": "ui/encyclopedia_screen.json", - "commands_button": "ui/encyclopedia_screen.json", - "commands_section": "ui/encyclopedia_screen.json", - "commands_section/paragraph_1": "ui/encyclopedia_screen.json", - "commands_section/padding_1": "ui/encyclopedia_screen.json", - "commands_section/paragraph_2": "ui/encyclopedia_screen.json", - "crafting_table_button": "ui/encyclopedia_screen.json", - "crafting_table_section": "ui/encyclopedia_screen.json", - "crafting_table_section/paragraph_1": "ui/encyclopedia_screen.json", - "crafting_table_section/padding_1": "ui/encyclopedia_screen.json", - "crafting_table_section/paragraph_2_keyboard": "ui/encyclopedia_screen.json", - "crafting_table_section/paragraph_2_gamepad": "ui/encyclopedia_screen.json", - "crafting_table_section/paragraph_2_touch": "ui/encyclopedia_screen.json", - "creative_mode_button": "ui/encyclopedia_screen.json", - "creative_mode_section": "ui/encyclopedia_screen.json", - "creative_mode_section/paragraph_1": "ui/encyclopedia_screen.json", - "creative_mode_section/padding_1": "ui/encyclopedia_screen.json", - "creative_mode_section/header_1": "ui/encyclopedia_screen.json", - "creative_mode_section/paragraph_2": "ui/encyclopedia_screen.json", - "creative_mode_section/padding_2": "ui/encyclopedia_screen.json", - "creative_mode_section/paragraph_3": "ui/encyclopedia_screen.json", - "creative_mode_section/padding_3": "ui/encyclopedia_screen.json", - "creative_mode_section/header_2": "ui/encyclopedia_screen.json", - "creative_mode_section/paragraph_4_keyboard": "ui/encyclopedia_screen.json", - "creative_mode_section/paragraph_4_gamepad": "ui/encyclopedia_screen.json", - "creative_mode_section/paragraph_4a_touch_joystick_tap": "ui/encyclopedia_screen.json", - "creative_mode_section/paragraph_4a_touch_classic_dpad": "ui/encyclopedia_screen.json", - "creative_mode_section/paragraph_4a_touch_joystick_crosshair": "ui/encyclopedia_screen.json", - "creative_mode_section/padding_4a_touch": "ui/encyclopedia_screen.json", - "creative_mode_section/paragraph_4b_touch_joystick_tap": "ui/encyclopedia_screen.json", - "creative_mode_section/paragraph_4b_touch_classic_dpad": "ui/encyclopedia_screen.json", - "creative_mode_section/paragraph_4b_touch_joystick_crosshair": "ui/encyclopedia_screen.json", - "difficulty_button": "ui/encyclopedia_screen.json", - "difficulty_section": "ui/encyclopedia_screen.json", - "difficulty_section/paragraph_1": "ui/encyclopedia_screen.json", - "difficulty_section/padding_1": "ui/encyclopedia_screen.json", - "difficulty_section/header_1": "ui/encyclopedia_screen.json", - "difficulty_section/paragraph_2": "ui/encyclopedia_screen.json", - "difficulty_section/padding_2": "ui/encyclopedia_screen.json", - "difficulty_section/header_2": "ui/encyclopedia_screen.json", - "difficulty_section/paragraph_3": "ui/encyclopedia_screen.json", - "difficulty_section/padding_3": "ui/encyclopedia_screen.json", - "difficulty_section/header_3": "ui/encyclopedia_screen.json", - "difficulty_section/paragraph_4": "ui/encyclopedia_screen.json", - "difficulty_section/padding_4": "ui/encyclopedia_screen.json", - "difficulty_section/header_4": "ui/encyclopedia_screen.json", - "difficulty_section/paragraph_5": "ui/encyclopedia_screen.json", - "dispensers_button": "ui/encyclopedia_screen.json", - "dispensers_section": "ui/encyclopedia_screen.json", - "dispensers_section/paragraph_1": "ui/encyclopedia_screen.json", - "dispensers_section/padding_1": "ui/encyclopedia_screen.json", - "dispensers_section/paragraph_2_keyboard": "ui/encyclopedia_screen.json", - "dispensers_section/paragraph_2_gamepad": "ui/encyclopedia_screen.json", - "dispensers_section/paragraph_2_touch": "ui/encyclopedia_screen.json", - "dispensers_section/padding_2": "ui/encyclopedia_screen.json", - "dispensers_section/header_1": "ui/encyclopedia_screen.json", - "dispensers_section/paragraph_3": "ui/encyclopedia_screen.json", - "dispensers_section/padding_3": "ui/encyclopedia_screen.json", - "dispensers_section/paragraph_4": "ui/encyclopedia_screen.json", - "droppers_button": "ui/encyclopedia_screen.json", - "droppers_section": "ui/encyclopedia_screen.json", - "droppers_section/paragraph_1_keyboard": "ui/encyclopedia_screen.json", - "droppers_section/paragraph_1_gamepad": "ui/encyclopedia_screen.json", - "droppers_section/paragraph_1_touch": "ui/encyclopedia_screen.json", - "droppers_section/padding_1": "ui/encyclopedia_screen.json", - "droppers_section/header_1": "ui/encyclopedia_screen.json", - "droppers_section/paragraph_2": "ui/encyclopedia_screen.json", - "dyes_button": "ui/encyclopedia_screen.json", - "dyes_section": "ui/encyclopedia_screen.json", - "dyes_section/paragraph_1": "ui/encyclopedia_screen.json", - "dyes_section/padding_1": "ui/encyclopedia_screen.json", - "dyes_section/paragraph_2": "ui/encyclopedia_screen.json", - "dyes_section/padding_2": "ui/encyclopedia_screen.json", - "dyes_section/paragraph_3": "ui/encyclopedia_screen.json", - "dyes_section/padding_3": "ui/encyclopedia_screen.json", - "dyes_section/paragraph_4": "ui/encyclopedia_screen.json", - "dyes_section/padding_4": "ui/encyclopedia_screen.json", - "dyes_section/paragraph_5": "ui/encyclopedia_screen.json", - "dyes_section/padding_5": "ui/encyclopedia_screen.json", - "dyes_section/paragraph_6": "ui/encyclopedia_screen.json", - "dyes_section/padding_6": "ui/encyclopedia_screen.json", - "dyes_section/paragraph_7": "ui/encyclopedia_screen.json", - "elytra_button": "ui/encyclopedia_screen.json", - "elytra_section": "ui/encyclopedia_screen.json", - "elytra_section/paragraph_1": "ui/encyclopedia_screen.json", - "elytra_section/padding_1": "ui/encyclopedia_screen.json", - "elytra_section/paragraph_2": "ui/encyclopedia_screen.json", - "elytra_section/padding_2": "ui/encyclopedia_screen.json", - "elytra_section/header_1": "ui/encyclopedia_screen.json", - "elytra_section/paragraph_3_keyboard": "ui/encyclopedia_screen.json", - "elytra_section/paragraph_3_gamepad": "ui/encyclopedia_screen.json", - "elytra_section/paragraph_3_touch": "ui/encyclopedia_screen.json", - "elytra_section/padding_3": "ui/encyclopedia_screen.json", - "elytra_section/paragraph_4": "ui/encyclopedia_screen.json", - "elytra_section/paragraph_4_touch": "ui/encyclopedia_screen.json", - "elytra_section/padding_4": "ui/encyclopedia_screen.json", - "elytra_section/paragraph_5": "ui/encyclopedia_screen.json", - "elytra_section/padding_5": "ui/encyclopedia_screen.json", - "elytra_section/header_2": "ui/encyclopedia_screen.json", - "elytra_section/paragraph_6": "ui/encyclopedia_screen.json", - "enchanting_table_button": "ui/encyclopedia_screen.json", - "enchanting_table_section": "ui/encyclopedia_screen.json", - "enchanting_table_section/paragraph_1": "ui/encyclopedia_screen.json", - "enchanting_table_section/padding_1": "ui/encyclopedia_screen.json", - "enchanting_table_section/header_1": "ui/encyclopedia_screen.json", - "enchanting_table_section/paragraph_2": "ui/encyclopedia_screen.json", - "enchanting_table_section/padding_2": "ui/encyclopedia_screen.json", - "enchanting_table_section/paragraph_3": "ui/encyclopedia_screen.json", - "enchanting_table_section/padding_3": "ui/encyclopedia_screen.json", - "enchanting_table_section/header_2": "ui/encyclopedia_screen.json", - "enchanting_table_section/paragraph_4": "ui/encyclopedia_screen.json", - "enchanting_table_section/padding_4": "ui/encyclopedia_screen.json", - "enchanting_table_section/header_3": "ui/encyclopedia_screen.json", - "enchanting_table_section/paragraph_5": "ui/encyclopedia_screen.json", - "end_cities_button": "ui/encyclopedia_screen.json", - "end_cities_section": "ui/encyclopedia_screen.json", - "end_cities_section/paragraph_1": "ui/encyclopedia_screen.json", - "end_cities_section/padding_1": "ui/encyclopedia_screen.json", - "end_cities_section/paragraph_2": "ui/encyclopedia_screen.json", - "eye_of_ender_button": "ui/encyclopedia_screen.json", - "eye_of_ender_section": "ui/encyclopedia_screen.json", - "eye_of_ender_section/paragraph_1": "ui/encyclopedia_screen.json", - "eye_of_ender_section/padding_1": "ui/encyclopedia_screen.json", - "eye_of_ender_section/paragraph_2": "ui/encyclopedia_screen.json", - "farming_button": "ui/encyclopedia_screen.json", - "farming_section": "ui/encyclopedia_screen.json", - "farming_section/paragraph_1": "ui/encyclopedia_screen.json", - "farming_section/padding_1": "ui/encyclopedia_screen.json", - "farming_section/header_1": "ui/encyclopedia_screen.json", - "farming_section/paragraph_2": "ui/encyclopedia_screen.json", - "farming_section/padding_2": "ui/encyclopedia_screen.json", - "farming_section/paragraph_3": "ui/encyclopedia_screen.json", - "farming_section/padding_3": "ui/encyclopedia_screen.json", - "farming_section/header_2": "ui/encyclopedia_screen.json", - "farming_section/paragraph_4": "ui/encyclopedia_screen.json", - "farming_section/padding_4": "ui/encyclopedia_screen.json", - "farming_section/paragraph_5": "ui/encyclopedia_screen.json", - "farming_section/padding_5": "ui/encyclopedia_screen.json", - "farming_section/paragraph_6": "ui/encyclopedia_screen.json", - "farming_section/padding_6": "ui/encyclopedia_screen.json", - "farming_section/paragraph_7": "ui/encyclopedia_screen.json", - "fireworks_button": "ui/encyclopedia_screen.json", - "fireworks_section": "ui/encyclopedia_screen.json", - "fireworks_section/paragraph_1": "ui/encyclopedia_screen.json", - "fireworks_section/padding_1": "ui/encyclopedia_screen.json", - "fireworks_section/paragraph_2": "ui/encyclopedia_screen.json", - "fireworks_section/padding_2": "ui/encyclopedia_screen.json", - "fireworks_section/header_1": "ui/encyclopedia_screen.json", - "fireworks_section/paragraph_3_keyboard": "ui/encyclopedia_screen.json", - "fireworks_section/paragraph_3_gamepad": "ui/encyclopedia_screen.json", - "fireworks_section/paragraph_3_touch": "ui/encyclopedia_screen.json", - "fireworks_section/padding_3": "ui/encyclopedia_screen.json", - "fireworks_section/paragraph_4": "ui/encyclopedia_screen.json", - "fireworks_section/padding_4": "ui/encyclopedia_screen.json", - "fireworks_section/header_2": "ui/encyclopedia_screen.json", - "fireworks_section/paragraph_5": "ui/encyclopedia_screen.json", - "fireworks_section/padding_5": "ui/encyclopedia_screen.json", - "fireworks_section/paragraph_6": "ui/encyclopedia_screen.json", - "fireworks_section/padding_5a": "ui/encyclopedia_screen.json", - "fireworks_section/paragraph_6_1": "ui/encyclopedia_screen.json", - "fireworks_section/padding_5b": "ui/encyclopedia_screen.json", - "fireworks_section/paragraph_6_2": "ui/encyclopedia_screen.json", - "fireworks_section/padding_5c": "ui/encyclopedia_screen.json", - "fireworks_section/paragraph_6_3": "ui/encyclopedia_screen.json", - "fireworks_section/padding_5d": "ui/encyclopedia_screen.json", - "fireworks_section/paragraph_6_4": "ui/encyclopedia_screen.json", - "fireworks_section/padding_5e": "ui/encyclopedia_screen.json", - "fireworks_section/paragraph_6_5": "ui/encyclopedia_screen.json", - "fireworks_section/padding_5f": "ui/encyclopedia_screen.json", - "fireworks_section/paragraph_6_6": "ui/encyclopedia_screen.json", - "fireworks_section/padding_6": "ui/encyclopedia_screen.json", - "fireworks_section/header_3": "ui/encyclopedia_screen.json", - "fireworks_section/paragraph_7": "ui/encyclopedia_screen.json", - "jigsaw_blocks_button": "ui/encyclopedia_screen.json", - "jigsaw_blocks_section": "ui/encyclopedia_screen.json", - "jigsaw_blocks_section/paragraph_1": "ui/encyclopedia_screen.json", - "jigsaw_blocks_section/padding_1": "ui/encyclopedia_screen.json", - "jigsaw_blocks_section/header_1": "ui/encyclopedia_screen.json", - "jigsaw_blocks_section/paragraph_2": "ui/encyclopedia_screen.json", - "jigsaw_blocks_section/padding_2": "ui/encyclopedia_screen.json", - "jigsaw_blocks_section/header_2": "ui/encyclopedia_screen.json", - "jigsaw_blocks_section/paragraph_3": "ui/encyclopedia_screen.json", - "jigsaw_blocks_section/padding_3": "ui/encyclopedia_screen.json", - "jigsaw_blocks_section/paragraph_4": "ui/encyclopedia_screen.json", - "jigsaw_blocks_section/padding_4": "ui/encyclopedia_screen.json", - "jigsaw_blocks_section/paragraph_5": "ui/encyclopedia_screen.json", - "jigsaw_blocks_section/padding_5": "ui/encyclopedia_screen.json", - "jigsaw_blocks_section/paragraph_6": "ui/encyclopedia_screen.json", - "jigsaw_blocks_section/padding_6": "ui/encyclopedia_screen.json", - "jigsaw_blocks_section/paragraph_7": "ui/encyclopedia_screen.json", - "jigsaw_blocks_section/padding_7": "ui/encyclopedia_screen.json", - "jigsaw_blocks_section/paragraph_8": "ui/encyclopedia_screen.json", - "jigsaw_blocks_section/padding_8": "ui/encyclopedia_screen.json", - "jigsaw_blocks_section/paragraph_9": "ui/encyclopedia_screen.json", - "fishing_button": "ui/encyclopedia_screen.json", - "fishing_section": "ui/encyclopedia_screen.json", - "fishing_section/paragraph_1": "ui/encyclopedia_screen.json", - "fishing_section/padding_1": "ui/encyclopedia_screen.json", - "fishing_section/header_1": "ui/encyclopedia_screen.json", - "fishing_section/paragraph_2_keyboard": "ui/encyclopedia_screen.json", - "fishing_section/paragraph_2_gamepad": "ui/encyclopedia_screen.json", - "fishing_section/paragraph_2_touch": "ui/encyclopedia_screen.json", - "fishing_section/padding_2": "ui/encyclopedia_screen.json", - "fishing_section/header_2": "ui/encyclopedia_screen.json", - "fishing_section/paragraph_3": "ui/encyclopedia_screen.json", - "fishing_section/padding_3": "ui/encyclopedia_screen.json", - "fishing_section/paragraph_4_keyboard": "ui/encyclopedia_screen.json", - "fishing_section/paragraph_4_gamepad": "ui/encyclopedia_screen.json", - "fishing_section/paragraph_4_touch": "ui/encyclopedia_screen.json", - "furnace_button": "ui/encyclopedia_screen.json", - "furnace_section": "ui/encyclopedia_screen.json", - "furnace_section/paragraph_1": "ui/encyclopedia_screen.json", - "furnace_section/padding_1": "ui/encyclopedia_screen.json", - "furnace_section/paragraph_2_keyboard": "ui/encyclopedia_screen.json", - "furnace_section/paragraph_2_gamepad": "ui/encyclopedia_screen.json", - "furnace_section/paragraph_2_touch": "ui/encyclopedia_screen.json", - "furnace_section/padding_2": "ui/encyclopedia_screen.json", - "furnace_section/paragraph_3": "ui/encyclopedia_screen.json", - "game_settings_button": "ui/encyclopedia_screen.json", - "game_settings_section": "ui/encyclopedia_screen.json", - "game_settings_section/paragraph_1": "ui/encyclopedia_screen.json", - "game_settings_section/padding_1": "ui/encyclopedia_screen.json", - "game_settings_section/paragraph_2": "ui/encyclopedia_screen.json", - "game_settings_section/padding_2": "ui/encyclopedia_screen.json", - "game_settings_section/paragraph_3": "ui/encyclopedia_screen.json", - "game_settings_section/padding_3": "ui/encyclopedia_screen.json", - "game_settings_section/paragraph_4": "ui/encyclopedia_screen.json", - "game_settings_section/padding_4": "ui/encyclopedia_screen.json", - "game_settings_section/header_1": "ui/encyclopedia_screen.json", - "game_settings_section/paragraph_5": "ui/encyclopedia_screen.json", - "game_settings_section/padding_5": "ui/encyclopedia_screen.json", - "game_settings_section/paragraph_6": "ui/encyclopedia_screen.json", - "game_settings_section/padding_6": "ui/encyclopedia_screen.json", - "game_settings_section/paragraph_7": "ui/encyclopedia_screen.json", - "game_settings_section/paragraph_7_1": "ui/encyclopedia_screen.json", - "game_settings_section/paragraph_7_2": "ui/encyclopedia_screen.json", - "game_settings_section/padding_7": "ui/encyclopedia_screen.json", - "game_settings_section/paragraph_8": "ui/encyclopedia_screen.json", - "game_settings_section/padding_8": "ui/encyclopedia_screen.json", - "game_settings_section/header_2": "ui/encyclopedia_screen.json", - "game_settings_section/paragraph_9": "ui/encyclopedia_screen.json", - "game_settings_section/padding_9": "ui/encyclopedia_screen.json", - "game_settings_section/paragraph_10": "ui/encyclopedia_screen.json", - "game_settings_section/padding_10": "ui/encyclopedia_screen.json", - "game_settings_section/paragraph_11": "ui/encyclopedia_screen.json", - "game_settings_section/padding_11": "ui/encyclopedia_screen.json", - "game_settings_section/paragraph_12": "ui/encyclopedia_screen.json", - "game_settings_section/padding_12": "ui/encyclopedia_screen.json", - "game_settings_section/paragraph_13": "ui/encyclopedia_screen.json", - "game_settings_section/padding_13": "ui/encyclopedia_screen.json", - "game_settings_section/paragraph_14": "ui/encyclopedia_screen.json", - "game_settings_section/padding_14": "ui/encyclopedia_screen.json", - "game_settings_section/paragraph_15": "ui/encyclopedia_screen.json", - "game_settings_section/padding_15": "ui/encyclopedia_screen.json", - "game_settings_section/paragraph_16": "ui/encyclopedia_screen.json", - "game_settings_section/padding_16": "ui/encyclopedia_screen.json", - "game_settings_section/paragraph_17": "ui/encyclopedia_screen.json", - "hoppers_button": "ui/encyclopedia_screen.json", - "hoppers_section": "ui/encyclopedia_screen.json", - "hoppers_section/paragraph_1": "ui/encyclopedia_screen.json", - "hoppers_section/padding_1": "ui/encyclopedia_screen.json", - "hoppers_section/paragraph_2": "ui/encyclopedia_screen.json", - "hoppers_section/padding_2": "ui/encyclopedia_screen.json", - "hoppers_section/header_1": "ui/encyclopedia_screen.json", - "hoppers_section/paragraph_3": "ui/encyclopedia_screen.json", - "hoppers_section/padding_3": "ui/encyclopedia_screen.json", - "hoppers_section/paragraph_4": "ui/encyclopedia_screen.json", - "host_and_player_options_button": "ui/encyclopedia_screen.json", - "host_and_player_options_section": "ui/encyclopedia_screen.json", - "host_and_player_options_section/paragraph_1_not_touch": "ui/encyclopedia_screen.json", - "host_and_player_options_section/paragraph_1_touch": "ui/encyclopedia_screen.json", - "jukebox_button": "ui/encyclopedia_screen.json", - "jukebox_section": "ui/encyclopedia_screen.json", - "jukebox_section/paragraph_1": "ui/encyclopedia_screen.json", - "jukebox_section/padding_1": "ui/encyclopedia_screen.json", - "jukebox_section/header_1": "ui/encyclopedia_screen.json", - "jukebox_section/paragraph_2_not_touch": "ui/encyclopedia_screen.json", - "jukebox_section/paragraph_2_touch": "ui/encyclopedia_screen.json", - "jukebox_section/padding_2": "ui/encyclopedia_screen.json", - "jukebox_section/header_2": "ui/encyclopedia_screen.json", - "jukebox_section/paragraph_3": "ui/encyclopedia_screen.json", - "jukebox_section/padding_3": "ui/encyclopedia_screen.json", - "jukebox_section/paragraph_4": "ui/encyclopedia_screen.json", - "jukebox_section/padding_4": "ui/encyclopedia_screen.json", - "jukebox_section/paragraph_5": "ui/encyclopedia_screen.json", - "jukebox_section/padding_5": "ui/encyclopedia_screen.json", - "jukebox_section/paragraph_6": "ui/encyclopedia_screen.json", - "jukebox_section/padding_6": "ui/encyclopedia_screen.json", - "jukebox_section/header_3": "ui/encyclopedia_screen.json", - "jukebox_section/paragraph_7": "ui/encyclopedia_screen.json", - "jukebox_section/padding_7": "ui/encyclopedia_screen.json", - "jukebox_section/paragraph_8": "ui/encyclopedia_screen.json", - "loom_button": "ui/encyclopedia_screen.json", - "loom_section": "ui/encyclopedia_screen.json", - "loom_section/paragraph_1": "ui/encyclopedia_screen.json", - "loom_section/padding_1": "ui/encyclopedia_screen.json", - "loom_section/header_1": "ui/encyclopedia_screen.json", - "loom_section/paragraph_2": "ui/encyclopedia_screen.json", - "loom_section/padding_2": "ui/encyclopedia_screen.json", - "loom_section/paragraph_3": "ui/encyclopedia_screen.json", - "loom_section/padding_3": "ui/encyclopedia_screen.json", - "loom_section/header_2": "ui/encyclopedia_screen.json", - "loom_section/paragraph_4": "ui/encyclopedia_screen.json", - "realms_stories_button": "ui/encyclopedia_screen.json", - "realms_stories_section": "ui/encyclopedia_screen.json", - "realms_stories_section/paragraph_1": "ui/encyclopedia_screen.json", - "realms_stories_section/padding_1": "ui/encyclopedia_screen.json", - "realms_stories_section/header_1": "ui/encyclopedia_screen.json", - "realms_stories_section/paragraph_2": "ui/encyclopedia_screen.json", - "realms_stories_section/padding_2": "ui/encyclopedia_screen.json", - "realms_stories_section/header_2": "ui/encyclopedia_screen.json", - "realms_stories_section/paragraph_3": "ui/encyclopedia_screen.json", - "realms_stories_section/padding_3": "ui/encyclopedia_screen.json", - "realms_stories_section/header_3": "ui/encyclopedia_screen.json", - "realms_stories_section/paragraph_4": "ui/encyclopedia_screen.json", - "realms_stories_section/padding_4": "ui/encyclopedia_screen.json", - "realms_stories_section/header_4": "ui/encyclopedia_screen.json", - "realms_stories_section/paragraph_5": "ui/encyclopedia_screen.json", - "realms_stories_section/padding_5": "ui/encyclopedia_screen.json", - "realms_stories_section/header_5": "ui/encyclopedia_screen.json", - "realms_stories_section/paragraph_6": "ui/encyclopedia_screen.json", - "smithing_table_button": "ui/encyclopedia_screen.json", - "smithing_table_section": "ui/encyclopedia_screen.json", - "smithing_table_section/paragraph_1": "ui/encyclopedia_screen.json", - "smithing_table_section/padding_1": "ui/encyclopedia_screen.json", - "smithing_table_section/paragraph_2": "ui/encyclopedia_screen.json", - "smithing_table_section/padding_2": "ui/encyclopedia_screen.json", - "smithing_table_section/header_1": "ui/encyclopedia_screen.json", - "smithing_table_section/paragraph_3": "ui/encyclopedia_screen.json", - "smithing_table_section/padding_3": "ui/encyclopedia_screen.json", - "smithing_table_section/paragraph_4": "ui/encyclopedia_screen.json", - "smithing_table_section/padding_4": "ui/encyclopedia_screen.json", - "smithing_table_section/paragraph_5": "ui/encyclopedia_screen.json", - "smithing_table_section/padding_5": "ui/encyclopedia_screen.json", - "smithing_table_section/paragraph_6": "ui/encyclopedia_screen.json", - "smithing_table_section/padding_6": "ui/encyclopedia_screen.json", - "smithing_table_section/header_2": "ui/encyclopedia_screen.json", - "smithing_table_section/paragraph_7": "ui/encyclopedia_screen.json", - "smithing_table_section/padding_7": "ui/encyclopedia_screen.json", - "smithing_table_section/paragraph_8": "ui/encyclopedia_screen.json", - "smithing_table_section/padding_8": "ui/encyclopedia_screen.json", - "smithing_table_section/paragraph_9": "ui/encyclopedia_screen.json", - "mounts_button": "ui/encyclopedia_screen.json", - "mounts_section": "ui/encyclopedia_screen.json", - "mounts_section/paragraph_1": "ui/encyclopedia_screen.json", - "mounts_section/padding_1": "ui/encyclopedia_screen.json", - "mounts_section/paragraph_2": "ui/encyclopedia_screen.json", - "mounts_section/padding_2": "ui/encyclopedia_screen.json", - "mounts_section/header_1": "ui/encyclopedia_screen.json", - "mounts_section/paragraph_3_not_touch": "ui/encyclopedia_screen.json", - "mounts_section/paragraph_3_touch": "ui/encyclopedia_screen.json", - "mounts_section/padding_3": "ui/encyclopedia_screen.json", - "mounts_section/paragraph_4": "ui/encyclopedia_screen.json", - "mounts_section/padding_4": "ui/encyclopedia_screen.json", - "mounts_section/header_2": "ui/encyclopedia_screen.json", - "mounts_section/paragraph_5": "ui/encyclopedia_screen.json", - "mounts_section/padding_5": "ui/encyclopedia_screen.json", - "mounts_section/paragraph_6": "ui/encyclopedia_screen.json", - "mounts_section/padding_6": "ui/encyclopedia_screen.json", - "mounts_section/paragraph_6b": "ui/encyclopedia_screen.json", - "mounts_section/padding_6b": "ui/encyclopedia_screen.json", - "mounts_section/paragraph_7": "ui/encyclopedia_screen.json", - "mounts_section/padding_7": "ui/encyclopedia_screen.json", - "mounts_section/paragraph_8": "ui/encyclopedia_screen.json", - "mounts_section/padding_8": "ui/encyclopedia_screen.json", - "mounts_section/header_3": "ui/encyclopedia_screen.json", - "mounts_section/paragraph_9": "ui/encyclopedia_screen.json", - "mounts_section/padding_9": "ui/encyclopedia_screen.json", - "mounts_section/paragraph_10": "ui/encyclopedia_screen.json", - "mounts_section/padding_10": "ui/encyclopedia_screen.json", - "mounts_section/paragraph_11": "ui/encyclopedia_screen.json", - "mounts_section/padding_11": "ui/encyclopedia_screen.json", - "mounts_section/paragraph_12": "ui/encyclopedia_screen.json", - "mounts_section/padding_12": "ui/encyclopedia_screen.json", - "mounts_section/header_4": "ui/encyclopedia_screen.json", - "mounts_section/paragraph_13": "ui/encyclopedia_screen.json", - "mounts_section/padding_13": "ui/encyclopedia_screen.json", - "mounts_section/paragraph_14": "ui/encyclopedia_screen.json", - "mounts_section/padding_14": "ui/encyclopedia_screen.json", - "mounts_section/header_5": "ui/encyclopedia_screen.json", - "mounts_section/paragraph_15_not_touch": "ui/encyclopedia_screen.json", - "mounts_section/paragraph_15a_touch": "ui/encyclopedia_screen.json", - "mounts_section/padding_15": "ui/encyclopedia_screen.json", - "mounts_section/paragraph_15b_touch": "ui/encyclopedia_screen.json", - "navigation_button": "ui/encyclopedia_screen.json", - "navigation_section": "ui/encyclopedia_screen.json", - "navigation_section/paragraph_1": "ui/encyclopedia_screen.json", - "navigation_section/padding_1": "ui/encyclopedia_screen.json", - "navigation_section/paragraph_2": "ui/encyclopedia_screen.json", - "navigation_section/padding_2": "ui/encyclopedia_screen.json", - "navigation_section/header_1": "ui/encyclopedia_screen.json", - "navigation_section/paragraph_3": "ui/encyclopedia_screen.json", - "navigation_section/padding_3": "ui/encyclopedia_screen.json", - "navigation_section/paragraph_4": "ui/encyclopedia_screen.json", - "navigation_section/padding_4": "ui/encyclopedia_screen.json", - "navigation_section/paragraph_5": "ui/encyclopedia_screen.json", - "navigation_section/padding_5": "ui/encyclopedia_screen.json", - "navigation_section/paragraph_6": "ui/encyclopedia_screen.json", - "navigation_section/padding_6": "ui/encyclopedia_screen.json", - "navigation_section/paragraph_7": "ui/encyclopedia_screen.json", - "navigation_section/padding_7": "ui/encyclopedia_screen.json", - "navigation_section/header_2": "ui/encyclopedia_screen.json", - "navigation_section/paragraph_8": "ui/encyclopedia_screen.json", - "navigation_section/padding_8": "ui/encyclopedia_screen.json", - "navigation_section/paragraph_9": "ui/encyclopedia_screen.json", - "navigation_section/padding_9": "ui/encyclopedia_screen.json", - "navigation_section/header_3": "ui/encyclopedia_screen.json", - "navigation_section/paragraph_10": "ui/encyclopedia_screen.json", - "nether_portals_button": "ui/encyclopedia_screen.json", - "nether_portals_section": "ui/encyclopedia_screen.json", - "nether_portals_section/paragraph_1": "ui/encyclopedia_screen.json", - "nether_portals_section/padding_1": "ui/encyclopedia_screen.json", - "nether_portals_section/paragraph_2": "ui/encyclopedia_screen.json", - "nether_portals_section/padding_2": "ui/encyclopedia_screen.json", - "nether_portals_section/paragraph_3": "ui/encyclopedia_screen.json", - "nether_portals_section/padding_3": "ui/encyclopedia_screen.json", - "nether_portals_section/image_1": "ui/encyclopedia_screen.json", - "pets_button": "ui/encyclopedia_screen.json", - "pets_section": "ui/encyclopedia_screen.json", - "pets_section/header_1": "ui/encyclopedia_screen.json", - "pets_section/paragraph_1_not_touch": "ui/encyclopedia_screen.json", - "pets_section/paragraph_1_touch": "ui/encyclopedia_screen.json", - "pets_section/padding_1": "ui/encyclopedia_screen.json", - "pets_section/header_2": "ui/encyclopedia_screen.json", - "pets_section/paragraph_2": "ui/encyclopedia_screen.json", - "pets_section/padding_2": "ui/encyclopedia_screen.json", - "pets_section/header_3": "ui/encyclopedia_screen.json", - "pets_section/paragraph_3": "ui/encyclopedia_screen.json", - "pets_section/padding_3": "ui/encyclopedia_screen.json", - "pets_section/header_4": "ui/encyclopedia_screen.json", - "pets_section/paragraph_4": "ui/encyclopedia_screen.json", - "raids_button": "ui/encyclopedia_screen.json", - "raids_section": "ui/encyclopedia_screen.json", - "raids_section/paragraph_1": "ui/encyclopedia_screen.json", - "raids_section/padding_1": "ui/encyclopedia_screen.json", - "raids_section/paragraph_2": "ui/encyclopedia_screen.json", - "raids_section/padding_2": "ui/encyclopedia_screen.json", - "raids_section/header_1": "ui/encyclopedia_screen.json", - "raids_section/paragraph_3": "ui/encyclopedia_screen.json", - "ranching_button": "ui/encyclopedia_screen.json", - "ranching_section": "ui/encyclopedia_screen.json", - "ranching_section/paragraph_1": "ui/encyclopedia_screen.json", - "ranching_section/padding_1": "ui/encyclopedia_screen.json", - "ranching_section/header_1": "ui/encyclopedia_screen.json", - "ranching_section/paragraph_2": "ui/encyclopedia_screen.json", - "ranching_section/padding_2": "ui/encyclopedia_screen.json", - "ranching_section/paragraph_3": "ui/encyclopedia_screen.json", - "ranching_section/padding_3": "ui/encyclopedia_screen.json", - "ranching_section/header_2": "ui/encyclopedia_screen.json", - "ranching_section/paragraph_4": "ui/encyclopedia_screen.json", - "ranching_section/padding_4": "ui/encyclopedia_screen.json", - "ranching_section/paragraph_5": "ui/encyclopedia_screen.json", - "redstone_button": "ui/encyclopedia_screen.json", - "redstone_section": "ui/encyclopedia_screen.json", - "redstone_section/paragraph_1": "ui/encyclopedia_screen.json", - "redstone_section/padding_1": "ui/encyclopedia_screen.json", - "redstone_section/header_1": "ui/encyclopedia_screen.json", - "redstone_section/paragraph_2": "ui/encyclopedia_screen.json", - "redstone_section/padding_2": "ui/encyclopedia_screen.json", - "redstone_section/paragraph_3": "ui/encyclopedia_screen.json", - "redstone_section/padding_3": "ui/encyclopedia_screen.json", - "redstone_section/paragraph_4": "ui/encyclopedia_screen.json", - "redstone_section/padding_4": "ui/encyclopedia_screen.json", - "redstone_section/paragraph_5": "ui/encyclopedia_screen.json", - "scaffolding_button": "ui/encyclopedia_screen.json", - "scaffolding_section": "ui/encyclopedia_screen.json", - "scaffolding_section/header_1": "ui/encyclopedia_screen.json", - "scaffolding_section/paragraph_1_keyboard": "ui/encyclopedia_screen.json", - "scaffolding_section/paragraph_1_gamepad": "ui/encyclopedia_screen.json", - "scaffolding_section/paragraph_1a_touch": "ui/encyclopedia_screen.json", - "scaffolding_section/padding_1a_touch": "ui/encyclopedia_screen.json", - "scaffolding_section/paragraph_1b_touch": "ui/encyclopedia_screen.json", - "scaffolding_section/padding_1b_touch": "ui/encyclopedia_screen.json", - "scaffolding_section/paragraph_1c_touch": "ui/encyclopedia_screen.json", - "scaffolding_section/padding_1": "ui/encyclopedia_screen.json", - "scaffolding_section/header_2": "ui/encyclopedia_screen.json", - "scaffolding_section/paragraph_2": "ui/encyclopedia_screen.json", - "scaffolding_section/image_1": "ui/encyclopedia_screen.json", - "scaffolding_section/padding_2": "ui/encyclopedia_screen.json", - "scaffolding_section/header_3": "ui/encyclopedia_screen.json", - "scaffolding_section/paragraph_3": "ui/encyclopedia_screen.json", - "scaffolding_section/padding_3": "ui/encyclopedia_screen.json", - "structure_blocks_button": "ui/encyclopedia_screen.json", - "structure_blocks_section": "ui/encyclopedia_screen.json", - "structure_blocks_section/paragraph_1": "ui/encyclopedia_screen.json", - "structure_blocks_section/padding_1": "ui/encyclopedia_screen.json", - "structure_blocks_section/header_1": "ui/encyclopedia_screen.json", - "structure_blocks_section/paragraph_2": "ui/encyclopedia_screen.json", - "structure_blocks_section/padding_2": "ui/encyclopedia_screen.json", - "structure_blocks_section/header_2": "ui/encyclopedia_screen.json", - "structure_blocks_section/paragraph_3": "ui/encyclopedia_screen.json", - "structure_blocks_section/padding_3": "ui/encyclopedia_screen.json", - "structure_blocks_section/paragraph_4": "ui/encyclopedia_screen.json", - "structure_blocks_section/padding_4": "ui/encyclopedia_screen.json", - "structure_blocks_section/paragraph_5": "ui/encyclopedia_screen.json", - "structure_blocks_section/padding_5": "ui/encyclopedia_screen.json", - "structure_blocks_section/paragraph_6": "ui/encyclopedia_screen.json", - "structure_blocks_section/padding_6": "ui/encyclopedia_screen.json", - "structure_blocks_section/paragraph_7": "ui/encyclopedia_screen.json", - "structure_blocks_section/padding_7": "ui/encyclopedia_screen.json", - "structure_blocks_section/header_3": "ui/encyclopedia_screen.json", - "structure_blocks_section/paragraph_8": "ui/encyclopedia_screen.json", - "structure_blocks_section/padding_8": "ui/encyclopedia_screen.json", - "structure_blocks_section/paragraph_9_keyboard": "ui/encyclopedia_screen.json", - "structure_blocks_section/paragraph_9_gamepad": "ui/encyclopedia_screen.json", - "structure_blocks_section/paragraph_9_touch": "ui/encyclopedia_screen.json", - "structure_blocks_section/padding_9": "ui/encyclopedia_screen.json", - "structure_blocks_section/header_4": "ui/encyclopedia_screen.json", - "structure_blocks_section/paragraph_10": "ui/encyclopedia_screen.json", - "structure_blocks_section/padding_10": "ui/encyclopedia_screen.json", - "structure_blocks_section/header_5": "ui/encyclopedia_screen.json", - "structure_blocks_section/paragraph_11": "ui/encyclopedia_screen.json", - "structure_blocks_section/padding_11": "ui/encyclopedia_screen.json", - "structure_blocks_section/paragraph_12": "ui/encyclopedia_screen.json", - "structure_blocks_section/padding_12": "ui/encyclopedia_screen.json", - "structure_blocks_section/paragraph_13": "ui/encyclopedia_screen.json", - "structure_blocks_section/padding_13": "ui/encyclopedia_screen.json", - "structure_blocks_section/header_6": "ui/encyclopedia_screen.json", - "structure_blocks_section/paragraph_14": "ui/encyclopedia_screen.json", - "structure_blocks_section/padding_14": "ui/encyclopedia_screen.json", - "structure_blocks_section/paragraph_15": "ui/encyclopedia_screen.json", - "structure_blocks_section/padding_15": "ui/encyclopedia_screen.json", - "structure_blocks_section/header_7": "ui/encyclopedia_screen.json", - "structure_blocks_section/paragraph_16": "ui/encyclopedia_screen.json", - "structure_blocks_section/padding_16": "ui/encyclopedia_screen.json", - "structure_blocks_section/paragraph_17": "ui/encyclopedia_screen.json", - "shulker_boxes_button": "ui/encyclopedia_screen.json", - "shulker_boxes_section": "ui/encyclopedia_screen.json", - "shulker_boxes_section/paragraph_1": "ui/encyclopedia_screen.json", - "the_end_button": "ui/encyclopedia_screen.json", - "the_end_section": "ui/encyclopedia_screen.json", - "the_end_section/paragraph_1": "ui/encyclopedia_screen.json", - "the_end_section/padding_1": "ui/encyclopedia_screen.json", - "the_end_section/paragraph_2": "ui/encyclopedia_screen.json", - "the_end_section/padding_2": "ui/encyclopedia_screen.json", - "the_end_section/header_1": "ui/encyclopedia_screen.json", - "the_end_section/paragraph_3": "ui/encyclopedia_screen.json", - "the_end_section/padding_3": "ui/encyclopedia_screen.json", - "the_end_section/paragraph_4": "ui/encyclopedia_screen.json", - "the_end_section/padding_4": "ui/encyclopedia_screen.json", - "the_end_section/paragraph_5": "ui/encyclopedia_screen.json", - "tools_button": "ui/encyclopedia_screen.json", - "tools_section": "ui/encyclopedia_screen.json", - "tools_section/paragraph_1": "ui/encyclopedia_screen.json", - "tools_section/padding_1": "ui/encyclopedia_screen.json", - "tools_section/paragraph_2": "ui/encyclopedia_screen.json", - "tools_section/padding_2": "ui/encyclopedia_screen.json", - "tools_section/header_1": "ui/encyclopedia_screen.json", - "tools_section/paragraph_3": "ui/encyclopedia_screen.json", - "tools_section/padding_3": "ui/encyclopedia_screen.json", - "tools_section/paragraph_4": "ui/encyclopedia_screen.json", - "tools_section/padding_4": "ui/encyclopedia_screen.json", - "tools_section/paragraph_5_not_touch": "ui/encyclopedia_screen.json", - "tools_section/paragraph_5_touch": "ui/encyclopedia_screen.json", - "tools_section/padding_5": "ui/encyclopedia_screen.json", - "tools_section/paragraph_6_not_touch": "ui/encyclopedia_screen.json", - "tools_section/paragraph_6_touch": "ui/encyclopedia_screen.json", - "tools_section/padding_6": "ui/encyclopedia_screen.json", - "tools_section/paragraph_7": "ui/encyclopedia_screen.json", - "tools_section/padding_7": "ui/encyclopedia_screen.json", - "tools_section/header_2": "ui/encyclopedia_screen.json", - "tools_section/paragraph_8": "ui/encyclopedia_screen.json", - "tools_section/padding_8": "ui/encyclopedia_screen.json", - "tools_section/paragraph_9": "ui/encyclopedia_screen.json", - "tools_section/padding_9": "ui/encyclopedia_screen.json", - "tools_section/paragraph_10": "ui/encyclopedia_screen.json", - "tools_section/padding_10": "ui/encyclopedia_screen.json", - "tools_section/paragraph_11": "ui/encyclopedia_screen.json", - "tools_section/padding_11": "ui/encyclopedia_screen.json", - "tools_section/paragraph_12": "ui/encyclopedia_screen.json", - "trading_button": "ui/encyclopedia_screen.json", - "trading_section": "ui/encyclopedia_screen.json", - "trading_section/paragraph_1": "ui/encyclopedia_screen.json", - "trading_section/padding_1": "ui/encyclopedia_screen.json", - "trading_section/header_1": "ui/encyclopedia_screen.json", - "trading_section/paragraph_2": "ui/encyclopedia_screen.json", - "trading_section/padding_2": "ui/encyclopedia_screen.json", - "trading_section/paragraph_3": "ui/encyclopedia_screen.json", - "trading_section/padding_3": "ui/encyclopedia_screen.json", - "trading_section/paragraph_4": "ui/encyclopedia_screen.json", - "transportation_button": "ui/encyclopedia_screen.json", - "transportation_section": "ui/encyclopedia_screen.json", - "transportation_section/paragraph_1": "ui/encyclopedia_screen.json", - "transportation_section/padding_1": "ui/encyclopedia_screen.json", - "transportation_section/header_1": "ui/encyclopedia_screen.json", - "transportation_section/paragraph_2": "ui/encyclopedia_screen.json", - "transportation_section/paragraph_2_touch": "ui/encyclopedia_screen.json", - "transportation_section/padding_2": "ui/encyclopedia_screen.json", - "transportation_section/paragraph_3_keyboard": "ui/encyclopedia_screen.json", - "transportation_section/paragraph_3_gamepad": "ui/encyclopedia_screen.json", - "transportation_section/paragraph_3a_touch": "ui/encyclopedia_screen.json", - "transportation_section/padding_3a": "ui/encyclopedia_screen.json", - "transportation_section/paragraph_3b_touch": "ui/encyclopedia_screen.json", - "transportation_section/padding_3b": "ui/encyclopedia_screen.json", - "transportation_section/paragraph_3c_touch": "ui/encyclopedia_screen.json", - "transportation_section/padding_3": "ui/encyclopedia_screen.json", - "transportation_section/header_2": "ui/encyclopedia_screen.json", - "transportation_section/paragraph_4": "ui/encyclopedia_screen.json", - "transportation_section/paragraph_4_touch": "ui/encyclopedia_screen.json", - "transportation_section/padding_4": "ui/encyclopedia_screen.json", - "transportation_section/paragraph_5_keyboard": "ui/encyclopedia_screen.json", - "transportation_section/paragraph_5_gamepad": "ui/encyclopedia_screen.json", - "transportation_section/paragraph_5a_touch": "ui/encyclopedia_screen.json", - "transportation_section/padding_5a": "ui/encyclopedia_screen.json", - "transportation_section/paragraph_5b_touch": "ui/encyclopedia_screen.json", - "transportation_section/padding_5b": "ui/encyclopedia_screen.json", - "transportation_section/paragraph_5c_touch": "ui/encyclopedia_screen.json", - "weapons_button": "ui/encyclopedia_screen.json", - "weapons_section": "ui/encyclopedia_screen.json", - "weapons_section/header_1": "ui/encyclopedia_screen.json", - "weapons_section/paragraph_1": "ui/encyclopedia_screen.json", - "weapons_section/padding_1": "ui/encyclopedia_screen.json", - "weapons_section/paragraph_2_not_touch": "ui/encyclopedia_screen.json", - "weapons_section/paragraph_2_touch": "ui/encyclopedia_screen.json", - "weapons_section/padding_2": "ui/encyclopedia_screen.json", - "weapons_section/header_2": "ui/encyclopedia_screen.json", - "weapons_section/paragraph_3_not_touch": "ui/encyclopedia_screen.json", - "weapons_section/paragraph_3_touch": "ui/encyclopedia_screen.json", - "weapons_section/padding_3": "ui/encyclopedia_screen.json", - "weapons_section/paragraph_4": "ui/encyclopedia_screen.json", - "weapons_section/padding_5": "ui/encyclopedia_screen.json", - "weapons_section/header_3": "ui/encyclopedia_screen.json", - "weapons_section/paragraph_5_not_touch": "ui/encyclopedia_screen.json", - "weapons_section/paragraph_5a_touch": "ui/encyclopedia_screen.json", - "weapons_section/padding_5a_touch": "ui/encyclopedia_screen.json", - "weapons_section/paragraph_5b_touch": "ui/encyclopedia_screen.json", - "weapons_section/padding_5b_touch": "ui/encyclopedia_screen.json", - "weapons_section/paragraph_5c_touch": "ui/encyclopedia_screen.json", - "weapons_section/padding_5c_touch": "ui/encyclopedia_screen.json", - "weapons_section/paragraph_5d_touch": "ui/encyclopedia_screen.json", - "weapons_section/padding_6": "ui/encyclopedia_screen.json", - "weapons_section/header_4": "ui/encyclopedia_screen.json", - "weapons_section/paragraph_6_not_touch": "ui/encyclopedia_screen.json", - "weapons_section/paragraph_6_touch": "ui/encyclopedia_screen.json", - "weapons_section/padding_7": "ui/encyclopedia_screen.json", - "weapons_section/header_5": "ui/encyclopedia_screen.json", - "weapons_section/paragraph_7": "ui/encyclopedia_screen.json", - "minecoins_button": "ui/encyclopedia_screen.json", - "minecoins_section": "ui/encyclopedia_screen.json", - "minecoins_section/paragraph_1": "ui/encyclopedia_screen.json", - "minecoins_section/padding_1": "ui/encyclopedia_screen.json", - "minecoins_section/paragraph_2": "ui/encyclopedia_screen.json", - "minecoins_section/padding_2": "ui/encyclopedia_screen.json", - "minecoins_section/get_minecoins_button": "ui/encyclopedia_screen.json", - "minecoins_section/padding_3": "ui/encyclopedia_screen.json", - "minecoins_section/header_1": "ui/encyclopedia_screen.json", - "minecoins_section/paragraph_3": "ui/encyclopedia_screen.json", - "addons_button": "ui/encyclopedia_screen.json", - "addons_section": "ui/encyclopedia_screen.json", - "addons_section/paragraph_1": "ui/encyclopedia_screen.json", - "addons_section/padding_1": "ui/encyclopedia_screen.json", - "addons_section/paragraph_2": "ui/encyclopedia_screen.json", - "addons_section/padding_2": "ui/encyclopedia_screen.json", - "addons_section/header_1": "ui/encyclopedia_screen.json", - "addons_section/paragraph_3": "ui/encyclopedia_screen.json", - "addons_section/padding_3": "ui/encyclopedia_screen.json", - "addons_section/paragraph_4": "ui/encyclopedia_screen.json", - "addons_section/padding_4": "ui/encyclopedia_screen.json", - "addons_section/paragraph_5": "ui/encyclopedia_screen.json", - "addons_section/addons_faq_button": "ui/encyclopedia_screen.json", - "worlds_button": "ui/encyclopedia_screen.json", - "worlds_section": "ui/encyclopedia_screen.json", - "worlds_section/paragraph_1": "ui/encyclopedia_screen.json", - "worlds_section/padding_1": "ui/encyclopedia_screen.json", - "worlds_section/paragraph_2": "ui/encyclopedia_screen.json", - "worlds_section/padding_2": "ui/encyclopedia_screen.json", - "worlds_section/paragraph_3": "ui/encyclopedia_screen.json", - "worlds_section/padding_3": "ui/encyclopedia_screen.json", - "worlds_section/paragraph_4": "ui/encyclopedia_screen.json", - "worlds_section/padding_4": "ui/encyclopedia_screen.json", - "worlds_section/header_1": "ui/encyclopedia_screen.json", - "worlds_section/paragraph_5": "ui/encyclopedia_screen.json", - "worlds_section/padding_5": "ui/encyclopedia_screen.json", - "worlds_section/paragraph_6": "ui/encyclopedia_screen.json", - "worlds_section/padding_6": "ui/encyclopedia_screen.json", - "worlds_section/header_2": "ui/encyclopedia_screen.json", - "worlds_section/paragraph_7": "ui/encyclopedia_screen.json", - "worlds_section/padding_7": "ui/encyclopedia_screen.json", - "worlds_section/paragraph_8": "ui/encyclopedia_screen.json", - "worlds_section/padding_8": "ui/encyclopedia_screen.json", - "worlds_section/header_3": "ui/encyclopedia_screen.json", - "worlds_section/paragraph_9": "ui/encyclopedia_screen.json", - "worlds_section/padding_9": "ui/encyclopedia_screen.json", - "worlds_section/paragraph_10": "ui/encyclopedia_screen.json", - "worlds_section/padding_10": "ui/encyclopedia_screen.json", - "worlds_section/header_4": "ui/encyclopedia_screen.json", - "worlds_section/paragraph_11": "ui/encyclopedia_screen.json", - "worlds_section/padding_11": "ui/encyclopedia_screen.json", - "worlds_section/paragraph_12": "ui/encyclopedia_screen.json", - "worlds_section/padding_12": "ui/encyclopedia_screen.json", - "textures_button": "ui/encyclopedia_screen.json", - "textures_section": "ui/encyclopedia_screen.json", - "textures_section/paragraph_1": "ui/encyclopedia_screen.json", - "skins_button": "ui/encyclopedia_screen.json", - "skins_section": "ui/encyclopedia_screen.json", - "skins_section/paragraph_1": "ui/encyclopedia_screen.json", - "mashups_button": "ui/encyclopedia_screen.json", - "mashups_section": "ui/encyclopedia_screen.json", - "mashups_section/paragraph_1": "ui/encyclopedia_screen.json", - }, - "expanded_skin_pack": { - "banner_fill": "ui/expanded_skin_pack_screen.json", - "title_label": "ui/expanded_skin_pack_screen.json", - "label": "ui/expanded_skin_pack_screen.json", - "undo_image": "ui/expanded_skin_pack_screen.json", - "lock_icon": "ui/expanded_skin_pack_screen.json", - "skin_button": "ui/expanded_skin_pack_screen.json", - "skin_button/hover": "ui/expanded_skin_pack_screen.json", - "skin_button/pressed": "ui/expanded_skin_pack_screen.json", - "skin_rotation_arrows": "ui/expanded_skin_pack_screen.json", - "skin_viewer_panel": "ui/expanded_skin_pack_screen.json", - "skin_viewer_panel/skin_model_panel": "ui/expanded_skin_pack_screen.json", - "skin_viewer_panel/skin_model_panel/skin_model": "ui/expanded_skin_pack_screen.json", - "skin_viewer_panel/lock": "ui/expanded_skin_pack_screen.json", - "undo_skin_button": "ui/expanded_skin_pack_screen.json", - "confirm_skin_button": "ui/expanded_skin_pack_screen.json", - "stack_item": "ui/expanded_skin_pack_screen.json", - "accept_skin_panel": "ui/expanded_skin_pack_screen.json", - "accept_skin_panel/stack_item_0": "ui/expanded_skin_pack_screen.json", - "accept_skin_panel/stack_item_0/undo_btn": "ui/expanded_skin_pack_screen.json", - "accept_skin_panel/stack_item_1": "ui/expanded_skin_pack_screen.json", - "accept_skin_panel/stack_item_1/confirm_button": "ui/expanded_skin_pack_screen.json", - "preview_skin_panel": "ui/expanded_skin_pack_screen.json", - "preview_skin_panel/preview": "ui/expanded_skin_pack_screen.json", - "preview_skin_panel/button_frame": "ui/expanded_skin_pack_screen.json", - "preview_skin_panel/button_frame/stack_item_0": "ui/expanded_skin_pack_screen.json", - "preview_skin_panel/button_frame/stack_item_0/rotation": "ui/expanded_skin_pack_screen.json", - "preview_skin_panel/button_frame/stack_item_1": "ui/expanded_skin_pack_screen.json", - "preview_skin_panel/button_frame/stack_item_1/accept": "ui/expanded_skin_pack_screen.json", - "skin_model": "ui/expanded_skin_pack_screen.json", - "scrolling_content": "ui/expanded_skin_pack_screen.json", - "scrolling_content/padding_0": "ui/expanded_skin_pack_screen.json", - "scrolling_content/pack_info_panel": "ui/expanded_skin_pack_screen.json", - "scrolling_content/pack_info_panel/pack_info_panel": "ui/expanded_skin_pack_screen.json", - "scrolling_content/skin_grid_panel": "ui/expanded_skin_pack_screen.json", - "scrolling_content/skin_grid_panel/skins_grid": "ui/expanded_skin_pack_screen.json", - "pack_info_panel": "ui/expanded_skin_pack_screen.json", - "pack_info_panel/lock_icon_panel": "ui/expanded_skin_pack_screen.json", - "pack_info_panel/lock_icon_panel/lock_icon": "ui/expanded_skin_pack_screen.json", - "pack_info_panel/pack_info_panel": "ui/expanded_skin_pack_screen.json", - "pack_info_panel/pack_info_panel/pack_name": "ui/expanded_skin_pack_screen.json", - "pack_info_panel/pack_info_panel/creator_name": "ui/expanded_skin_pack_screen.json", - "skins_grid_item": "ui/expanded_skin_pack_screen.json", - "skins_grid_item/clip": "ui/expanded_skin_pack_screen.json", - "skins_grid_item/clip/model": "ui/expanded_skin_pack_screen.json", - "skins_grid_item/lock": "ui/expanded_skin_pack_screen.json", - "skins_grid_item/button": "ui/expanded_skin_pack_screen.json", - "skins_grid": "ui/expanded_skin_pack_screen.json", - "select_skin_button": "ui/expanded_skin_pack_screen.json", - "select_skin_button/default": "ui/expanded_skin_pack_screen.json", - "select_skin_button/hover": "ui/expanded_skin_pack_screen.json", - "select_skin_button/pressed": "ui/expanded_skin_pack_screen.json", - "all_skins_content": "ui/expanded_skin_pack_screen.json", - "all_skins_content/scrolling_frame": "ui/expanded_skin_pack_screen.json", - "all_skins_content/scrolling_frame/change_skin_scroll": "ui/expanded_skin_pack_screen.json", - "all_skins_frame": "ui/expanded_skin_pack_screen.json", - "all_skins_frame/all_skins_content": "ui/expanded_skin_pack_screen.json", - "title_bar": "ui/expanded_skin_pack_screen.json", - "title_bar/padding_0": "ui/expanded_skin_pack_screen.json", - "title_bar/fill_panel": "ui/expanded_skin_pack_screen.json", - "title_bar/fill_panel/title_holder": "ui/expanded_skin_pack_screen.json", - "title_bar/fill_panel/title_holder/change_skin_title": "ui/expanded_skin_pack_screen.json", - "title_bar/padding_1": "ui/expanded_skin_pack_screen.json", - "title_bar/skin_name_holder": "ui/expanded_skin_pack_screen.json", - "title_bar/skin_name_holder/preview_skin_name": "ui/expanded_skin_pack_screen.json", - "title_bar/padding_2": "ui/expanded_skin_pack_screen.json", - "content": "ui/expanded_skin_pack_screen.json", - "content/title": "ui/expanded_skin_pack_screen.json", - "content/selector_area": "ui/expanded_skin_pack_screen.json", - "content/content_area": "ui/expanded_skin_pack_screen.json", - "content/section_divider": "ui/expanded_skin_pack_screen.json", - "expanded_skin_pack_screen": "ui/expanded_skin_pack_screen.json", - "skin_picker_screen_content": "ui/expanded_skin_pack_screen.json", - "skin_picker_screen_content/bg": "ui/expanded_skin_pack_screen.json", - "skin_picker_screen_content/container": "ui/expanded_skin_pack_screen.json", - "skin_picker_screen_content/container/content": "ui/expanded_skin_pack_screen.json", - "scrollable_selector_area_content": "ui/expanded_skin_pack_screen.json", - "selector_area": "ui/expanded_skin_pack_screen.json", - "selector_area/all_skins": "ui/expanded_skin_pack_screen.json", - "selector_area/inactive_modal_pane_fade": "ui/expanded_skin_pack_screen.json", - "content_area": "ui/expanded_skin_pack_screen.json", - "content_area/preview_skin": "ui/expanded_skin_pack_screen.json", - "content_area/inactive_modal_pane_fade": "ui/expanded_skin_pack_screen.json", - "section_divider": "ui/expanded_skin_pack_screen.json", - }, - "feed_common": { - "top_bar_gradient": "ui/feed_common.json", - "label": "ui/feed_common.json", - "smooth_label": "ui/feed_common.json", - "share_label": "ui/feed_common.json", - "title_label": "ui/feed_common.json", - "feed_label": "ui/feed_common.json", - "item_label": "ui/feed_common.json", - "return_label": "ui/feed_common.json", - "prev_label": "ui/feed_common.json", - "next_label": "ui/feed_common.json", - "delete_label": "ui/feed_common.json", - "report_to_club_label": "ui/feed_common.json", - "report_to_xbox_label": "ui/feed_common.json", - "new_post_header_text": "ui/feed_common.json", - "feed_button": "ui/feed_common.json", - "return_button": "ui/feed_common.json", - "prev_button": "ui/feed_common.json", - "prev_panel": "ui/feed_common.json", - "prev_panel/padding_1": "ui/feed_common.json", - "prev_panel/lab_panel": "ui/feed_common.json", - "prev_panel/lab_panel/vert_pad": "ui/feed_common.json", - "prev_panel/lab_panel/prevlab": "ui/feed_common.json", - "next_button": "ui/feed_common.json", - "next_panel": "ui/feed_common.json", - "next_panel/lab_panel2": "ui/feed_common.json", - "next_panel/lab_panel2/vert_pad2": "ui/feed_common.json", - "next_panel/lab_panel2/nextlab": "ui/feed_common.json", - "next_panel/padding_2": "ui/feed_common.json", - "like_button": "ui/feed_common.json", - "delete_button": "ui/feed_common.json", - "report_to_xbox_button": "ui/feed_common.json", - "report_to_club_button": "ui/feed_common.json", - "options_button": "ui/feed_common.json", - "options_close_button_high_contrast": "ui/feed_common.json", - "options_close_button_high_contrast/background": "ui/feed_common.json", - "options_close_button_high_contrast/default": "ui/feed_common.json", - "options_close_button_high_contrast/hover": "ui/feed_common.json", - "options_close_button_high_contrast/pressed": "ui/feed_common.json", - "share_button": "ui/feed_common.json", - "spacing_gap": "ui/feed_common.json", - "platform_icon": "ui/feed_common.json", - "platform_icon_panel": "ui/feed_common.json", - "platform_icon_panel/platform_icon": "ui/feed_common.json", - "account_link_image": "ui/feed_common.json", - "account_link_icon": "ui/feed_common.json", - "account_link_icon/space_01": "ui/feed_common.json", - "account_link_icon/account_link_image": "ui/feed_common.json", - "account_link_icon/space_02": "ui/feed_common.json", - "player_pic_bevel": "ui/feed_common.json", - "no_feed_item_content": "ui/feed_common.json", - "gamepad_helpers": "ui/feed_common.json", - "share_text_box": "ui/feed_common.json", - "progress_loading_bars": "ui/feed_common.json", - "popup_dialog_bg": "ui/feed_common.json", - "pagination_panel": "ui/feed_common.json", - "pagination_panel/prev_button": "ui/feed_common.json", - "pagination_panel/page_text": "ui/feed_common.json", - "pagination_panel/next_button": "ui/feed_common.json", - "pagination_panel_gamepad": "ui/feed_common.json", - "pagination_panel_gamepad/prev_panel": "ui/feed_common.json", - "pagination_panel_gamepad/page_text": "ui/feed_common.json", - "pagination_panel_gamepad/next_panel": "ui/feed_common.json", - "like_image": "ui/feed_common.json", - "like_image_default": "ui/feed_common.json", - "like_image_panel": "ui/feed_common.json", - "like_image_panel/like_image_instance": "ui/feed_common.json", - "like_image_panel/like_image_default": "ui/feed_common.json", - "feed_like_content_panel": "ui/feed_common.json", - "feed_like_content_panel/like_image_panel": "ui/feed_common.json", - "feed_like_content_panel/like_label": "ui/feed_common.json", - "white_banner": "ui/feed_common.json", - "page_text": "ui/feed_common.json", - "options_icon": "ui/feed_common.json", - "transparent_background": "ui/feed_common.json", - "black_arrow": "ui/feed_common.json", - "faded_background_image": "ui/feed_common.json", - "unviewed_post_badge": "ui/feed_common.json", - "unviewed_post_badge/unviewed_post_text": "ui/feed_common.json", - }, - "file_upload": { - "empty_progress_bar_icon": "ui/file_upload_screen.json", - "full_progress_bar_icon": "ui/file_upload_screen.json", - "progress_bar_nub": "ui/file_upload_screen.json", - "progress_bar_icon": "ui/file_upload_screen.json", - "progress_bar_icon/empty_progress_bar_icon": "ui/file_upload_screen.json", - "progress_bar_icon/progress_percent_panel": "ui/file_upload_screen.json", - "progress_bar_icon/progress_percent_panel/full_progress_bar_icon": "ui/file_upload_screen.json", - "progress_bar_icon/progress_percent_panel/progress_bar_nub": "ui/file_upload_screen.json", - "common_label": "ui/file_upload_screen.json", - "progress_text_panel": "ui/file_upload_screen.json", - "progress_text_panel/progress": "ui/file_upload_screen.json", - "progress_text_panel/total": "ui/file_upload_screen.json", - "message_text_panel": "ui/file_upload_screen.json", - "message_text_panel/message_text": "ui/file_upload_screen.json", - "button_common": "ui/file_upload_screen.json", - "lets_go_button": "ui/file_upload_screen.json", - "cancel_button": "ui/file_upload_screen.json", - "continue_button": "ui/file_upload_screen.json", - "continue_or_cancel_button": "ui/file_upload_screen.json", - "continue_or_cancel_button/continue": "ui/file_upload_screen.json", - "continue_or_cancel_button/cancel": "ui/file_upload_screen.json", - "single_title_panel": "ui/file_upload_screen.json", - "single_title_panel/center": "ui/file_upload_screen.json", - "dual_title_panel": "ui/file_upload_screen.json", - "dual_title_panel/left": "ui/file_upload_screen.json", - "dual_title_panel/right": "ui/file_upload_screen.json", - "upload_title_panel": "ui/file_upload_screen.json", - "upload_title_panel/single_label": "ui/file_upload_screen.json", - "upload_title_panel/dual_label": "ui/file_upload_screen.json", - "content_panel": "ui/file_upload_screen.json", - "content_panel/stack_panel_0": "ui/file_upload_screen.json", - "content_panel/stack_panel_1": "ui/file_upload_screen.json", - "content_stack_panel": "ui/file_upload_screen.json", - "content_stack_panel/message": "ui/file_upload_screen.json", - "content_stack_panel/description": "ui/file_upload_screen.json", - "content_stack_panel/progress": "ui/file_upload_screen.json", - "warning_content_panel": "ui/file_upload_screen.json", - "warning_content_panel/message": "ui/file_upload_screen.json", - "button_panel": "ui/file_upload_screen.json", - "button_panel/play": "ui/file_upload_screen.json", - "button_panel/cancel": "ui/file_upload_screen.json", - "button_panel/continue_cancel": "ui/file_upload_screen.json", - "file_upload_content": "ui/file_upload_screen.json", - "file_upload_content/title_panel_content": "ui/file_upload_screen.json", - "file_upload_content/content": "ui/file_upload_screen.json", - "file_upload_content/content/background": "ui/file_upload_screen.json", - "file_upload_content/content/title": "ui/file_upload_screen.json", - "file_upload_content/content/content": "ui/file_upload_screen.json", - "file_upload_content/content/buttons": "ui/file_upload_screen.json", - "file_transmission_screen": "ui/file_upload_screen.json", - }, - "furnace": { - "flame_panel": "ui/furnace_screen.json", - "flame_panel/flame_empty_image": "ui/furnace_screen.json", - "flame_panel/flame_full_image": "ui/furnace_screen.json", - "furnace_arrow_empty_image": "ui/furnace_screen.json", - "furnace_arrow_full_image": "ui/furnace_screen.json", - "flame_empty_image": "ui/furnace_screen.json", - "flame_full_image": "ui/furnace_screen.json", - "furnace_label": "ui/furnace_screen.json", - "furnace_input_panel": "ui/furnace_screen.json", - "furnace_input_panel/panel": "ui/furnace_screen.json", - "furnace_input_panel/panel/furnace_ingredient_panel": "ui/furnace_screen.json", - "furnace_input_panel/panel/flame_panel": "ui/furnace_screen.json", - "furnace_input_panel/panel/furnace_fuel_panel": "ui/furnace_screen.json", - "furnace_ingredient_panel": "ui/furnace_screen.json", - "furnace_ingredient_panel/ingredient_item": "ui/furnace_screen.json", - "furnace_fuel_panel": "ui/furnace_screen.json", - "furnace_fuel_panel/fuel_item": "ui/furnace_screen.json", - "furnace_output_panel": "ui/furnace_screen.json", - "furnace_output_panel/output_item": "ui/furnace_screen.json", - "furnace_panel_top_half": "ui/furnace_screen.json", - "furnace_panel_top_half/furnace_label": "ui/furnace_screen.json", - "furnace_panel_top_half/input": "ui/furnace_screen.json", - "furnace_panel_top_half/furnace_arrow_empty_image": "ui/furnace_screen.json", - "furnace_panel_top_half/furnace_arrow_full_image": "ui/furnace_screen.json", - "furnace_panel_top_half/output": "ui/furnace_screen.json", - "furnace_panel": "ui/furnace_screen.json", - "furnace_panel/container_gamepad_helpers": "ui/furnace_screen.json", - "furnace_panel/selected_item_details_factory": "ui/furnace_screen.json", - "furnace_panel/item_lock_notification_factory": "ui/furnace_screen.json", - "furnace_panel/root_panel": "ui/furnace_screen.json", - "furnace_panel/root_panel/common_panel": "ui/furnace_screen.json", - "furnace_panel/root_panel/furnace_screen_inventory": "ui/furnace_screen.json", - "furnace_panel/root_panel/furnace_screen_inventory/furnace_panel_top_half": "ui/furnace_screen.json", - "furnace_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label": "ui/furnace_screen.json", - "furnace_panel/root_panel/furnace_screen_inventory/hotbar_grid": "ui/furnace_screen.json", - "furnace_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button": "ui/furnace_screen.json", - "furnace_panel/root_panel/inventory_selected_icon_button": "ui/furnace_screen.json", - "furnace_panel/root_panel/gamepad_cursor": "ui/furnace_screen.json", - "furnace_panel/flying_item_renderer": "ui/furnace_screen.json", - "furnace_screen": "ui/furnace_screen.json", - }, - "furnace_pocket": { - "generic_label": "ui/furnace_screen_pocket.json", - "background_image": "ui/furnace_screen_pocket.json", - "empty_arrow": "ui/furnace_screen_pocket.json", - "full_arrow": "ui/furnace_screen_pocket.json", - "flame_empty": "ui/furnace_screen_pocket.json", - "flame_full": "ui/furnace_screen_pocket.json", - "input_label": "ui/furnace_screen_pocket.json", - "fuel_label": "ui/furnace_screen_pocket.json", - "result_label": "ui/furnace_screen_pocket.json", - "result_name_label": "ui/furnace_screen_pocket.json", - "furnace_content": "ui/furnace_screen_pocket.json", - "furnace_content/input_panel": "ui/furnace_screen_pocket.json", - "furnace_content/input_panel/input_label": "ui/furnace_screen_pocket.json", - "furnace_content/input_panel/ingredient_item": "ui/furnace_screen_pocket.json", - "furnace_content/flame_empty": "ui/furnace_screen_pocket.json", - "furnace_content/flame_full": "ui/furnace_screen_pocket.json", - "furnace_content/fuel_panel": "ui/furnace_screen_pocket.json", - "furnace_content/fuel_panel/fuel_label": "ui/furnace_screen_pocket.json", - "furnace_content/fuel_panel/fuel_item": "ui/furnace_screen_pocket.json", - "furnace_content/empty_arrow": "ui/furnace_screen_pocket.json", - "furnace_content/full_arrow": "ui/furnace_screen_pocket.json", - "furnace_content/output_panel": "ui/furnace_screen_pocket.json", - "furnace_content/output_panel/result_label": "ui/furnace_screen_pocket.json", - "furnace_content/output_panel/result_name_label": "ui/furnace_screen_pocket.json", - "furnace_content/output_panel/output_item": "ui/furnace_screen_pocket.json", - "inventory_grid": "ui/furnace_screen_pocket.json", - "inventory_content": "ui/furnace_screen_pocket.json", - "inventory_content/scrolling_panel": "ui/furnace_screen_pocket.json", - "header": "ui/furnace_screen_pocket.json", - "header/header_background": "ui/furnace_screen_pocket.json", - "header/close_button": "ui/furnace_screen_pocket.json", - "header/panel": "ui/furnace_screen_pocket.json", - "header/panel/title_label": "ui/furnace_screen_pocket.json", - "inventory_and_furnace_panel": "ui/furnace_screen_pocket.json", - "inventory_and_furnace_panel/inventory_half_screen": "ui/furnace_screen_pocket.json", - "inventory_and_furnace_panel/inventory_half_screen/inventory_content": "ui/furnace_screen_pocket.json", - "inventory_and_furnace_panel/furnace_half_screen": "ui/furnace_screen_pocket.json", - "inventory_and_furnace_panel/furnace_half_screen/furnace_content": "ui/furnace_screen_pocket.json", - "header_and_content_stack_panel": "ui/furnace_screen_pocket.json", - "header_and_content_stack_panel/header": "ui/furnace_screen_pocket.json", - "header_and_content_stack_panel/inventory_and_furnace_panel": "ui/furnace_screen_pocket.json", - "furnace_panel": "ui/furnace_screen_pocket.json", - "furnace_panel/bg": "ui/furnace_screen_pocket.json", - "furnace_panel/root_panel": "ui/furnace_screen_pocket.json", - "furnace_panel/header_and_content_stack_panel": "ui/furnace_screen_pocket.json", - "furnace_panel/container_gamepad_helpers": "ui/furnace_screen_pocket.json", - "furnace_panel/inventory_selected_icon_button": "ui/furnace_screen_pocket.json", - "furnace_panel/hold_icon": "ui/furnace_screen_pocket.json", - "furnace_panel/selected_item_details_factory": "ui/furnace_screen_pocket.json", - "furnace_panel/item_lock_notification_factory": "ui/furnace_screen_pocket.json", - "furnace_panel/flying_item_renderer": "ui/furnace_screen_pocket.json", - }, - "game_tip": { - "game_tip_animation": "ui/game_tip_screen.json", - "game_tip_animation_panel": "ui/game_tip_screen.json", - "game_tip_animation_panel/animated_icon": "ui/game_tip_screen.json", - "game_tip_label": "ui/game_tip_screen.json", - "game_tip_text_panel": "ui/game_tip_screen.json", - "game_tip_text_panel/upper_padding": "ui/game_tip_screen.json", - "game_tip_text_panel/label": "ui/game_tip_screen.json", - "game_tip_text_panel/lower_padding": "ui/game_tip_screen.json", - "game_tip_arrow_image": "ui/game_tip_screen.json", - "game_tip_arrow_panel": "ui/game_tip_screen.json", - "game_tip_arrow_panel/tip_arrow": "ui/game_tip_screen.json", - "game_tip_panel": "ui/game_tip_screen.json", - "game_tip_panel/animated_panel": "ui/game_tip_screen.json", - "game_tip_panel/middle_padding": "ui/game_tip_screen.json", - "game_tip_panel/label": "ui/game_tip_screen.json", - "game_tip_panel/right_padding": "ui/game_tip_screen.json", - "game_tip_item_background": "ui/game_tip_screen.json", - "game_tip_item_background/horizontal_container": "ui/game_tip_screen.json", - "game_tip_item_background/arrow_panel": "ui/game_tip_screen.json", - "chat_stack_game_tip_panel": "ui/game_tip_screen.json", - "chat_stack_game_tip_panel/top_padding": "ui/game_tip_screen.json", - "chat_stack_game_tip_panel/game_tip_background": "ui/game_tip_screen.json", - "game_tip_factory": "ui/game_tip_screen.json", - "game_tip_chat_stack_factory": "ui/game_tip_screen.json", - }, - "gamepad_disconnected": { - "gamepad_disconnected_modal": "ui/gamepad_disconnected.json", - "gamepad_disconnected_modal/dialog_background_hollow_3": "ui/gamepad_disconnected.json", - "gamepad_disconnected_modal/dialog_background_hollow_3/control": "ui/gamepad_disconnected.json", - "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel": "ui/gamepad_disconnected.json", - "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_0": "ui/gamepad_disconnected.json", - "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/title": "ui/gamepad_disconnected.json", - "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_1": "ui/gamepad_disconnected.json", - "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/description": "ui/gamepad_disconnected.json", - "gamepad_disconnected_screen": "ui/gamepad_disconnected.json", - }, - "gameplay": { - "bundle_selected_item_icon": "ui/gameplay_common.json", - "bundle_open_icon_back": "ui/gameplay_common.json", - "bundle_open_icon_front": "ui/gameplay_common.json", - "bundle_selected_item_background": "ui/gameplay_common.json", - "bundle_selected_item_background/bundle_selected_item_background_colour_green": "ui/gameplay_common.json", - "bundle_selected_item_background/bundle_selected_item_background_colour": "ui/gameplay_common.json", - "bundle_selected_item_background/bundle_selected_item_frame": "ui/gameplay_common.json", - "bundle_selected_item_panel": "ui/gameplay_common.json", - "bundle_selected_item_panel/bundle_selected_item_background": "ui/gameplay_common.json", - "bundle_selected_item_panel/bundle_open_icon_back": "ui/gameplay_common.json", - "bundle_selected_item_panel/bundle_selected_item_icon": "ui/gameplay_common.json", - "bundle_selected_item_panel/bundle_open_icon_front": "ui/gameplay_common.json", - "bundle_selected_item_panel/storage_bar": "ui/gameplay_common.json", - "bundle_slot_panel": "ui/gameplay_common.json", - "bundle_slot_panel/bundle_selected_item_panel": "ui/gameplay_common.json", - "bundle_cell_image": "ui/gameplay_common.json", - "bundle_cell_image/background_panel": "ui/gameplay_common.json", - "bundle_cell_image/background_panel/item_background": "ui/gameplay_common.json", - "bundle_cell_image/highlight_panel": "ui/gameplay_common.json", - "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_green": "ui/gameplay_common.json", - "bundle_cell_image/highlight_panel/bundle_selected_item_background_border_white": "ui/gameplay_common.json", - "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_blue": "ui/gameplay_common.json", - "bundle_tooltip_slot_button": "ui/gameplay_common.json", - "bundle_tooltip_slot_pocket": "ui/gameplay_common.json", - "bundle_tooltip_slot_pocket/item_in_bundle_tooltip_pocket": "ui/gameplay_common.json", - "bundle_tooltip_slot_pocket/more_hidden_items_label": "ui/gameplay_common.json", - "bundle_tooltip_slot_classic": "ui/gameplay_common.json", - "bundle_tooltip_slot_classic/item_in_bundle_tooltip_pocket": "ui/gameplay_common.json", - "bundle_tooltip_slot_classic/more_hidden_items_label": "ui/gameplay_common.json", - "bundle_tooltip": "ui/gameplay_common.json", - "bundle_tooltip/background": "ui/gameplay_common.json", - "bundle_tooltip/background/empty_button": "ui/gameplay_common.json", - "bundle_tooltip/background/empty_button/default": "ui/gameplay_common.json", - "bundle_tooltip/background/empty_button/hover": "ui/gameplay_common.json", - "bundle_tooltip/background/empty_button/pressed": "ui/gameplay_common.json", - "bundle_tooltip/background/selected_item_tooltip": "ui/gameplay_common.json", - "bundle_tooltip/background/selected_item_tooltip/item_text_label": "ui/gameplay_common.json", - "bundle_tooltip/header_stack": "ui/gameplay_common.json", - "bundle_tooltip/header_stack/bundle_label": "ui/gameplay_common.json", - "bundle_tooltip/header_stack/close_button": "ui/gameplay_common.json", - "bundle_tooltip/header_stack/close_button/default": "ui/gameplay_common.json", - "bundle_tooltip/header_stack/close_button/hover": "ui/gameplay_common.json", - "bundle_tooltip/header_stack/close_button/pressed": "ui/gameplay_common.json", - "bundle_tooltip/wrapper": "ui/gameplay_common.json", - "bundle_tooltip/wrapper/vertical_layout_stack": "ui/gameplay_common.json", - "bundle_tooltip/wrapper/vertical_layout_stack/header_padding": "ui/gameplay_common.json", - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack": "ui/gameplay_common.json", - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/left_padding": "ui/gameplay_common.json", - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack": "ui/gameplay_common.json", - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/item_grid": "ui/gameplay_common.json", - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/info_message": "ui/gameplay_common.json", - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel": "ui/gameplay_common.json", - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar": "ui/gameplay_common.json", - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/empty_message": "ui/gameplay_common.json", - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_fill": "ui/gameplay_common.json", - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full": "ui/gameplay_common.json", - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full/full_label": "ui/gameplay_common.json", - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_border": "ui/gameplay_common.json", - "bundle_touch_tooltip": "ui/gameplay_common.json", - "bundle_tooltip_factory_wrapper": "ui/gameplay_common.json", - "bundle_tooltip_factory_wrapper/bundle_cursor_tooltip": "ui/gameplay_common.json", - "bundle_cursor_tooltip": "ui/gameplay_common.json", - "bundle_cursor_tooltip/tooltip": "ui/gameplay_common.json", - }, - "gathering_info": { - "gathering_info_screen": "ui/gathering_info_screen.json", - "info_content": "ui/gathering_info_screen.json", - "info_content/header": "ui/gathering_info_screen.json", - "info_content/left_panel": "ui/gathering_info_screen.json", - "info_content/left_panel/stack": "ui/gathering_info_screen.json", - "info_content/left_panel/stack/event_image": "ui/gathering_info_screen.json", - "info_content/left_panel/stack/pad_2": "ui/gathering_info_screen.json", - "info_content/left_panel/stack/button_and_caption": "ui/gathering_info_screen.json", - "info_content/left_panel/stack/button_and_caption/caption": "ui/gathering_info_screen.json", - "info_content/left_panel/stack/button_and_caption/action_button": "ui/gathering_info_screen.json", - "info_content/left_panel/stack/pad_3": "ui/gathering_info_screen.json", - "info_content/left_panel/stack/info_button": "ui/gathering_info_screen.json", - "info_content/left_panel/stack/pad_4": "ui/gathering_info_screen.json", - "info_content/left_panel/stack/gamepad_helper_panel": "ui/gathering_info_screen.json", - "info_content/left_panel/stack/gamepad_helper_panel/gamepad_helpers": "ui/gathering_info_screen.json", - "info_content/left_panel/stack/pad_fill": "ui/gathering_info_screen.json", - "info_content/left_panel/stack/gathering_id_label": "ui/gathering_info_screen.json", - "info_content/left_panel/stack/pad_5": "ui/gathering_info_screen.json", - "info_content/section_divider": "ui/gathering_info_screen.json", - "info_content/right_panel": "ui/gathering_info_screen.json", - "info_content/right_panel/scroll": "ui/gathering_info_screen.json", - "right_panel_content": "ui/gathering_info_screen.json", - "right_panel_content/pad": "ui/gathering_info_screen.json", - "right_panel_content/sign_in_panel": "ui/gathering_info_screen.json", - "right_panel_content/sign_in_panel/sign_in_image": "ui/gathering_info_screen.json", - "right_panel_content/sign_in_panel/horizontal_pad": "ui/gathering_info_screen.json", - "right_panel_content/sign_in_panel/text_stack": "ui/gathering_info_screen.json", - "right_panel_content/sign_in_panel/text_stack/sign_in_title": "ui/gathering_info_screen.json", - "right_panel_content/sign_in_panel/text_stack/text_pad": "ui/gathering_info_screen.json", - "right_panel_content/sign_in_panel/text_stack/sign_in_body": "ui/gathering_info_screen.json", - "right_panel_content/sign_in_pad": "ui/gathering_info_screen.json", - "right_panel_content/qr_panel": "ui/gathering_info_screen.json", - "right_panel_content/qr_panel/qr_background": "ui/gathering_info_screen.json", - "right_panel_content/qr_panel/qr_background/qr_image": "ui/gathering_info_screen.json", - "right_panel_content/qr_panel/horizontal_pad": "ui/gathering_info_screen.json", - "right_panel_content/qr_panel/text_stack": "ui/gathering_info_screen.json", - "right_panel_content/qr_panel/text_stack/qr_title": "ui/gathering_info_screen.json", - "right_panel_content/qr_panel/text_stack/text_pad": "ui/gathering_info_screen.json", - "right_panel_content/qr_panel/text_stack/qr_body": "ui/gathering_info_screen.json", - "right_panel_content/qr_pad": "ui/gathering_info_screen.json", - "right_panel_content/title": "ui/gathering_info_screen.json", - "right_panel_content/pad_1": "ui/gathering_info_screen.json", - "right_panel_content/body": "ui/gathering_info_screen.json", - "right_panel_content/pad_2": "ui/gathering_info_screen.json", - "right_panel_content/body_image": "ui/gathering_info_screen.json", - "right_panel_content/footer": "ui/gathering_info_screen.json", - "tts_label": "ui/gathering_info_screen.json", - "tts_label_title": "ui/gathering_info_screen.json", - "sign_in_title": "ui/gathering_info_screen.json", - "sign_in_body": "ui/gathering_info_screen.json", - "qr_title": "ui/gathering_info_screen.json", - "qr_body": "ui/gathering_info_screen.json", - "title_panel": "ui/gathering_info_screen.json", - "body_panel": "ui/gathering_info_screen.json", - "section_divider": "ui/gathering_info_screen.json", - "gamepad_helpers": "ui/gathering_info_screen.json", - "gamepad_helpers/gamepad_helper_a": "ui/gathering_info_screen.json", - "gamepad_helpers/gamepad_helper_b": "ui/gathering_info_screen.json", - }, - "globalpause": { - "message": "ui/global_pause_screen.json", - "quit_button": "ui/global_pause_screen.json", - "globalpause_screen": "ui/global_pause_screen.json", - "pause_screen_content": "ui/global_pause_screen.json", - "pause_screen_content/transparentFill": "ui/global_pause_screen.json", - "pause_screen_content/message": "ui/global_pause_screen.json", - "pause_screen_content/quit_button": "ui/global_pause_screen.json", - }, - "grindstone": { - "title_label": "ui/grindstone_screen.json", - "arrow_icon": "ui/grindstone_screen.json", - "cross_out_icon": "ui/grindstone_screen.json", - "grindstone_output_slot_button": "ui/grindstone_screen.json", - "grindstone_item_slot": "ui/grindstone_screen.json", - "grindstone_item_slot/container_item": "ui/grindstone_screen.json", - "grindstone_middle_panel": "ui/grindstone_screen.json", - "grindstone_middle_panel/input_item_slot": "ui/grindstone_screen.json", - "grindstone_middle_panel/additional_item_slot": "ui/grindstone_screen.json", - "grindstone_slots_panel": "ui/grindstone_screen.json", - "grindstone_slots_panel/grindstone_middle_panel": "ui/grindstone_screen.json", - "grindstone_slots_panel/yields": "ui/grindstone_screen.json", - "grindstone_slots_panel/yields/arrow_icon": "ui/grindstone_screen.json", - "grindstone_slots_panel/yields/cross_out_icon": "ui/grindstone_screen.json", - "grindstone_slots_panel/result_item_slot": "ui/grindstone_screen.json", - "top_half_panel": "ui/grindstone_screen.json", - "top_half_panel/title_label": "ui/grindstone_screen.json", - "top_half_panel/grindstone_slots_panel": "ui/grindstone_screen.json", - "grindstone_panel": "ui/grindstone_screen.json", - "grindstone_panel/container_gamepad_helpers": "ui/grindstone_screen.json", - "grindstone_panel/selected_item_details_factory": "ui/grindstone_screen.json", - "grindstone_panel/item_lock_notification_factory": "ui/grindstone_screen.json", - "grindstone_panel/root_panel": "ui/grindstone_screen.json", - "grindstone_panel/root_panel/common_panel": "ui/grindstone_screen.json", - "grindstone_panel/root_panel/grindstone_screen_inventory": "ui/grindstone_screen.json", - "grindstone_panel/root_panel/grindstone_screen_inventory/top_half_panel": "ui/grindstone_screen.json", - "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_panel_bottom_half_with_label": "ui/grindstone_screen.json", - "grindstone_panel/root_panel/grindstone_screen_inventory/hotbar_grid": "ui/grindstone_screen.json", - "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_take_progress_icon_button": "ui/grindstone_screen.json", - "grindstone_panel/root_panel/inventory_selected_icon_button": "ui/grindstone_screen.json", - "grindstone_panel/root_panel/gamepad_cursor": "ui/grindstone_screen.json", - "grindstone_panel/flying_item_renderer": "ui/grindstone_screen.json", - "grindstone_screen": "ui/grindstone_screen.json", - }, - "grindstone_pocket": { - "background_image": "ui/grindstone_screen_pocket.json", - "repair_title_label": "ui/grindstone_screen_pocket.json", - "grindstone_middle_panel": "ui/grindstone_screen_pocket.json", - "grindstone_middle_panel/input_slot": "ui/grindstone_screen_pocket.json", - "grindstone_middle_panel/additional_slot": "ui/grindstone_screen_pocket.json", - "slots_panel": "ui/grindstone_screen_pocket.json", - "slots_panel/grindstone_middle_panel": "ui/grindstone_screen_pocket.json", - "slots_panel/arrow": "ui/grindstone_screen_pocket.json", - "slots_panel/arrow/cross_out": "ui/grindstone_screen_pocket.json", - "slots_panel/result_slot": "ui/grindstone_screen_pocket.json", - "grindstone_contents_panel": "ui/grindstone_screen_pocket.json", - "grindstone_contents_panel/repair_title_label": "ui/grindstone_screen_pocket.json", - "grindstone_contents_panel/slots_panel": "ui/grindstone_screen_pocket.json", - "inventory_grid": "ui/grindstone_screen_pocket.json", - "inventory_content": "ui/grindstone_screen_pocket.json", - "inventory_content/scrolling_panel": "ui/grindstone_screen_pocket.json", - "header": "ui/grindstone_screen_pocket.json", - "header/header_background": "ui/grindstone_screen_pocket.json", - "header/legacy_pocket_close_button": "ui/grindstone_screen_pocket.json", - "header/panel": "ui/grindstone_screen_pocket.json", - "header/panel/title_label": "ui/grindstone_screen_pocket.json", - "inventory_and_grindstone_panel": "ui/grindstone_screen_pocket.json", - "inventory_and_grindstone_panel/inventory_half_screen": "ui/grindstone_screen_pocket.json", - "inventory_and_grindstone_panel/inventory_half_screen/inventory_content": "ui/grindstone_screen_pocket.json", - "inventory_and_grindstone_panel/grindstone_half_screen": "ui/grindstone_screen_pocket.json", - "inventory_and_grindstone_panel/grindstone_half_screen/grindstone_content": "ui/grindstone_screen_pocket.json", - "header_and_content_stack_panel": "ui/grindstone_screen_pocket.json", - "header_and_content_stack_panel/header": "ui/grindstone_screen_pocket.json", - "header_and_content_stack_panel/inventory_and_grindstone_panel": "ui/grindstone_screen_pocket.json", - "grindstone_panel": "ui/grindstone_screen_pocket.json", - "grindstone_panel/bg": "ui/grindstone_screen_pocket.json", - "grindstone_panel/root_panel": "ui/grindstone_screen_pocket.json", - "grindstone_panel/header_and_content_stack_panel": "ui/grindstone_screen_pocket.json", - "grindstone_panel/container_gamepad_helpers": "ui/grindstone_screen_pocket.json", - "grindstone_panel/inventory_selected_icon_button": "ui/grindstone_screen_pocket.json", - "grindstone_panel/hold_icon": "ui/grindstone_screen_pocket.json", - "grindstone_panel/selected_item_details_factory": "ui/grindstone_screen_pocket.json", - "grindstone_panel/item_lock_notification_factory": "ui/grindstone_screen_pocket.json", - "grindstone_panel/flying_item_renderer": "ui/grindstone_screen_pocket.json", - }, - "gamma_calibration": { - "stack_panel_centering_panel": "ui/gamma_calibration_screen.json", - "stack_panel_centering_panel/child": "ui/gamma_calibration_screen.json", - "stack_panel_align_left_panel": "ui/gamma_calibration_screen.json", - "stack_panel_align_left_panel/child": "ui/gamma_calibration_screen.json", - "stack_panel_align_right_panel": "ui/gamma_calibration_screen.json", - "stack_panel_align_right_panel/child": "ui/gamma_calibration_screen.json", - "image_panel": "ui/gamma_calibration_screen.json", - "image_panel/padding": "ui/gamma_calibration_screen.json", - "image_panel/image": "ui/gamma_calibration_screen.json", - "horizontal_padding": "ui/gamma_calibration_screen.json", - "image_stack": "ui/gamma_calibration_screen.json", - "image_stack/not_visible_image": "ui/gamma_calibration_screen.json", - "image_stack/padding_0": "ui/gamma_calibration_screen.json", - "image_stack/barely_visible_image": "ui/gamma_calibration_screen.json", - "image_stack/padding_1": "ui/gamma_calibration_screen.json", - "image_stack/easily_visible_image": "ui/gamma_calibration_screen.json", - "button_stack": "ui/gamma_calibration_screen.json", - "button_stack/continue_button_panel": "ui/gamma_calibration_screen.json", - "button_stack/padding": "ui/gamma_calibration_screen.json", - "button_stack/reset_button_panel": "ui/gamma_calibration_screen.json", - "message_panel": "ui/gamma_calibration_screen.json", - "message_panel/message_label": "ui/gamma_calibration_screen.json", - "calibration_slider": "ui/gamma_calibration_screen.json", - "calibration_slider/slider": "ui/gamma_calibration_screen.json", - "continue_button": "ui/gamma_calibration_screen.json", - "reset_button": "ui/gamma_calibration_screen.json", - "main_panel": "ui/gamma_calibration_screen.json", - "main_panel/hdr_message_panel": "ui/gamma_calibration_screen.json", - "main_panel/image_stack_panel": "ui/gamma_calibration_screen.json", - "main_panel/padding_0": "ui/gamma_calibration_screen.json", - "main_panel/slider_panel": "ui/gamma_calibration_screen.json", - "main_panel/padding_1": "ui/gamma_calibration_screen.json", - "main_panel/button_stack_panel": "ui/gamma_calibration_screen.json", - "gamma_calibration_screen": "ui/gamma_calibration_screen.json", - }, - "horse": { - "renderer_bg": "ui/horse_screen.json", - "overlay_image": "ui/horse_screen.json", - "saddle_image": "ui/horse_screen.json", - "horse_armor_image": "ui/horse_screen.json", - "carpet_image": "ui/horse_screen.json", - "nautilus_armor_image": "ui/horse_screen.json", - "horse_label": "ui/horse_screen.json", - "equip_grid": "ui/horse_screen.json", - "inv_grid": "ui/horse_screen.json", - "inv_bg_panel": "ui/horse_screen.json", - "inv_bg_panel/cell_image": "ui/horse_screen.json", - "equip_panel": "ui/horse_screen.json", - "equip_panel/equip_grid": "ui/horse_screen.json", - "equip_panel/saddle": "ui/horse_screen.json", - "equip_panel/horse_armor_0": "ui/horse_screen.json", - "equip_panel/carpet_0": "ui/horse_screen.json", - "equip_panel/nautilus_armor_0": "ui/horse_screen.json", - "equip_panel/horse_armor_1": "ui/horse_screen.json", - "equip_panel/carpet_1": "ui/horse_screen.json", - "equip_panel/nautilus_armor_1": "ui/horse_screen.json", - "inv_panel": "ui/horse_screen.json", - "inv_panel/inv_bg_panel": "ui/horse_screen.json", - "inv_panel/inv_grid": "ui/horse_screen.json", - "horse_renderer": "ui/horse_screen.json", - "horse_renderer/renderer_bg": "ui/horse_screen.json", - "horse_renderer/horse_custom_panel": "ui/horse_screen.json", - "horse_renderer/horse_custom_panel/horse_custom": "ui/horse_screen.json", - "horse_panel": "ui/horse_screen.json", - "horse_panel/container_gamepad_helpers": "ui/horse_screen.json", - "horse_panel/selected_item_details_factory": "ui/horse_screen.json", - "horse_panel/item_lock_notification_factory": "ui/horse_screen.json", - "horse_panel/root_panel": "ui/horse_screen.json", - "horse_panel/root_panel/common_panel": "ui/horse_screen.json", - "horse_panel/root_panel/horse_section_label": "ui/horse_screen.json", - "horse_panel/root_panel/inv_panel": "ui/horse_screen.json", - "horse_panel/root_panel/equipment": "ui/horse_screen.json", - "horse_panel/root_panel/renderer": "ui/horse_screen.json", - "horse_panel/root_panel/inventory_panel_bottom_half_with_label": "ui/horse_screen.json", - "horse_panel/root_panel/hotbar_grid_template": "ui/horse_screen.json", - "horse_panel/root_panel/inventory_selected_icon_button": "ui/horse_screen.json", - "horse_panel/root_panel/gamepad_cursor": "ui/horse_screen.json", - "horse_panel/flying_item_renderer": "ui/horse_screen.json", - "horse_screen": "ui/horse_screen.json", - }, - "horse_pocket": { - "horse_panel": "ui/horse_screen_pocket.json", - "horse_panel/gamepad_helpers": "ui/horse_screen_pocket.json", - "horse_panel/inventory_selected_icon_button": "ui/horse_screen_pocket.json", - "horse_panel/gamepad_cursor": "ui/horse_screen_pocket.json", - "horse_panel/selected_item_details_factory": "ui/horse_screen_pocket.json", - "horse_panel/item_lock_notification_factory": "ui/horse_screen_pocket.json", - "horse_panel/base_panel": "ui/horse_screen_pocket.json", - "horse_panel/base_panel/root_panel": "ui/horse_screen_pocket.json", - "horse_panel/base_panel/hold_icon": "ui/horse_screen_pocket.json", - "horse_panel/base_panel/bg": "ui/horse_screen_pocket.json", - "horse_panel/base_panel/interactive_tabs": "ui/horse_screen_pocket.json", - "horse_panel/base_panel/close_button": "ui/horse_screen_pocket.json", - "horse_panel/base_panel/inventory": "ui/horse_screen_pocket.json", - "horse_panel/base_panel/equipment": "ui/horse_screen_pocket.json", - "horse_panel/base_panel/chest_tab": "ui/horse_screen_pocket.json", - "horse_panel/base_panel/chest_tab/visual_tabs_chest": "ui/horse_screen_pocket.json", - "horse_panel/base_panel/chest_tab/chest": "ui/horse_screen_pocket.json", - "horse_panel/base_panel/renderer_tab": "ui/horse_screen_pocket.json", - "horse_panel/base_panel/renderer_tab/visual_tabs_equip": "ui/horse_screen_pocket.json", - "horse_panel/base_panel/renderer_tab/renderer": "ui/horse_screen_pocket.json", - "horse_panel/flying_item_renderer": "ui/horse_screen_pocket.json", - "background_image": "ui/horse_screen_pocket.json", - "dark_bg": "ui/horse_screen_pocket.json", - "renderer_bg": "ui/horse_screen_pocket.json", - "saddle_image": "ui/horse_screen_pocket.json", - "horse_armor_image": "ui/horse_screen_pocket.json", - "carpet_image": "ui/horse_screen_pocket.json", - "nautilus_armor_image": "ui/horse_screen_pocket.json", - "panel_outline": "ui/horse_screen_pocket.json", - "close_button_default": "ui/horse_screen_pocket.json", - "close_button_pressed": "ui/horse_screen_pocket.json", - "close_button": "ui/horse_screen_pocket.json", - "close_button/default": "ui/horse_screen_pocket.json", - "close_button/hover": "ui/horse_screen_pocket.json", - "close_button/pressed": "ui/horse_screen_pocket.json", - "base_grid": "ui/horse_screen_pocket.json", - "inventory_grid": "ui/horse_screen_pocket.json", - "chest_grid": "ui/horse_screen_pocket.json", - "base_grid_panel": "ui/horse_screen_pocket.json", - "base_grid_panel/panel_outline": "ui/horse_screen_pocket.json", - "base_grid_panel/dark_bg": "ui/horse_screen_pocket.json", - "base_grid_panel/scrolling_panel": "ui/horse_screen_pocket.json", - "inventory_panel": "ui/horse_screen_pocket.json", - "chest_panel": "ui/horse_screen_pocket.json", - "half_screen": "ui/horse_screen_pocket.json", - "middle_screen": "ui/horse_screen_pocket.json", - "half_screen_inventory": "ui/horse_screen_pocket.json", - "half_screen_inventory/inventory_panel": "ui/horse_screen_pocket.json", - "half_screen_chest": "ui/horse_screen_pocket.json", - "half_screen_chest/chest_panel": "ui/horse_screen_pocket.json", - "horse_renderer": "ui/horse_screen_pocket.json", - "horse_renderer/horse_custom": "ui/horse_screen_pocket.json", - "half_screen_renderer": "ui/horse_screen_pocket.json", - "half_screen_renderer/renderer_bg": "ui/horse_screen_pocket.json", - "half_screen_renderer/horse_custom_panel": "ui/horse_screen_pocket.json", - "half_screen_renderer/camel_custom_panel": "ui/horse_screen_pocket.json", - "equip_item_panel": "ui/horse_screen_pocket.json", - "equip_item_panel/equip_container_item": "ui/horse_screen_pocket.json", - "equip_grid": "ui/horse_screen_pocket.json", - "equip_middle_screen": "ui/horse_screen_pocket.json", - "equip_middle_screen/equip_grid_panel": "ui/horse_screen_pocket.json", - "equip_middle_screen/equip_grid_panel/equip_grid": "ui/horse_screen_pocket.json", - "equip_middle_screen/equip_grid_panel/centered_0": "ui/horse_screen_pocket.json", - "equip_middle_screen/equip_grid_panel/offset": "ui/horse_screen_pocket.json", - "equip_middle_screen/equip_grid_panel/centered_1": "ui/horse_screen_pocket.json", - "equip_middle_screen/equip_grid_panel/centered_2": "ui/horse_screen_pocket.json", - "equip_middle_screen/equip_grid_panel/horse_armor_image": "ui/horse_screen_pocket.json", - "equip_middle_screen/equip_grid_panel/carpet_image": "ui/horse_screen_pocket.json", - "horse_screen_tab_toggle": "ui/horse_screen_pocket.json", - "interactive_tabs": "ui/horse_screen_pocket.json", - "interactive_tabs/renderer_tab_interactive": "ui/horse_screen_pocket.json", - "interactive_tabs/chest_tab_interactive": "ui/horse_screen_pocket.json", - "tab_front": "ui/horse_screen_pocket.json", - "tab_back": "ui/horse_screen_pocket.json", - "close_tab": "ui/horse_screen_pocket.json", - "item_icon_renderer": "ui/horse_screen_pocket.json", - "saddle_icon_front": "ui/horse_screen_pocket.json", - "chest_icon_front": "ui/horse_screen_pocket.json", - "visual_tabs_equip": "ui/horse_screen_pocket.json", - "visual_tabs_equip/close_tab": "ui/horse_screen_pocket.json", - "visual_tabs_equip/close_tab/nodrop_zone": "ui/horse_screen_pocket.json", - "visual_tabs_equip/chest": "ui/horse_screen_pocket.json", - "visual_tabs_equip/chest/chest_icon": "ui/horse_screen_pocket.json", - "visual_tabs_equip/equip": "ui/horse_screen_pocket.json", - "visual_tabs_equip/equip/equip_icon": "ui/horse_screen_pocket.json", - "visual_tabs_chest": "ui/horse_screen_pocket.json", - "visual_tabs_chest/close_tab": "ui/horse_screen_pocket.json", - "visual_tabs_chest/chest": "ui/horse_screen_pocket.json", - "visual_tabs_chest/chest/chest_icon": "ui/horse_screen_pocket.json", - "visual_tabs_chest/equip": "ui/horse_screen_pocket.json", - "visual_tabs_chest/equip/equip_icon": "ui/horse_screen_pocket.json", - }, - "how_to_play_common": { - "dynamic_dialog_screen": "ui/how_to_play_common.json", - "screen_background": "ui/how_to_play_common.json", - "top_bar": "ui/how_to_play_common.json", - "button_panel": "ui/how_to_play_common.json", - "light_text_button": "ui/how_to_play_common.json", - "action_button": "ui/how_to_play_common.json", - "topic_category": "ui/how_to_play_common.json", - "topic_category/top_padding": "ui/how_to_play_common.json", - "topic_category/category_text": "ui/how_to_play_common.json", - "toggle_button_control": "ui/how_to_play_common.json", - "toggle_button_control/tab_button_text": "ui/how_to_play_common.json", - "glyph_button_control": "ui/how_to_play_common.json", - "glyph_button_control/tab_button_text": "ui/how_to_play_common.json", - "glyph_button_control/glyph": "ui/how_to_play_common.json", - "section_toggle_button": "ui/how_to_play_common.json", - "section_toggle_button/section_toggle_button": "ui/how_to_play_common.json", - "edu_section_toggle_button": "ui/how_to_play_common.json", - "padding": "ui/how_to_play_common.json", - "touch_padding": "ui/how_to_play_common.json", - "small_padding": "ui/how_to_play_common.json", - "large_padding": "ui/how_to_play_common.json", - "section_contents_header": "ui/how_to_play_common.json", - "section_contents_footer": "ui/how_to_play_common.json", - "main_sections": "ui/how_to_play_common.json", - "splitscreen_only_content": "ui/how_to_play_common.json", - "splitscreen_only_content/0": "ui/how_to_play_common.json", - "tts_focus_border": "ui/how_to_play_common.json", - "header_tts_focus_border": "ui/how_to_play_common.json", - "header_background": "ui/how_to_play_common.json", - "header_background/header_label": "ui/how_to_play_common.json", - "header_background/focus_border": "ui/how_to_play_common.json", - "header": "ui/how_to_play_common.json", - "header/header": "ui/how_to_play_common.json", - "paragraph_panel": "ui/how_to_play_common.json", - "paragraph_label": "ui/how_to_play_common.json", - "paragraph_tts_focus_border": "ui/how_to_play_common.json", - "paragraph": "ui/how_to_play_common.json", - "paragraph/label": "ui/how_to_play_common.json", - "paragraph/focus_border": "ui/how_to_play_common.json", - "paragraph_with_icons": "ui/how_to_play_common.json", - "paragraph_with_icons/label": "ui/how_to_play_common.json", - "paragraph_with_icons/focus_border": "ui/how_to_play_common.json", - "input_conditional_paragraph": "ui/how_to_play_common.json", - "input_conditional_paragraph_with_icons": "ui/how_to_play_common.json", - "paragraph_keyboard": "ui/how_to_play_common.json", - "paragraph_gamepad": "ui/how_to_play_common.json", - "paragraph_gamepad_no_icons": "ui/how_to_play_common.json", - "paragraph_touch": "ui/how_to_play_common.json", - "paragraph_touch_classic_dpad_spacing": "ui/how_to_play_common.json", - "paragraph_touch_no_icons": "ui/how_to_play_common.json", - "paragraph_touch_joystick_tap": "ui/how_to_play_common.json", - "paragraph_touch_classic_dpad": "ui/how_to_play_common.json", - "paragraph_touch_joystick_crosshair": "ui/how_to_play_common.json", - "paragraph_not_touch": "ui/how_to_play_common.json", - "image": "ui/how_to_play_common.json", - "how_to_play_header": "ui/how_to_play_common.json", - "how_to_play_header/top_bar": "ui/how_to_play_common.json", - "how_to_play_header/top_bar/back_button": "ui/how_to_play_common.json", - "how_to_play_header/top_bar/how_to_play_title": "ui/how_to_play_common.json", - "how_to_play_header/top_bar/gamepad_bumper_helpers": "ui/how_to_play_common.json", - "how_to_play_content": "ui/how_to_play_common.json", - "how_to_play_content/header": "ui/how_to_play_common.json", - "how_to_play_content/container": "ui/how_to_play_common.json", - "dialog_content": "ui/how_to_play_common.json", - "dialog_content/selector_area": "ui/how_to_play_common.json", - "dialog_content/content_area": "ui/how_to_play_common.json", - "dialog_content/section_divider": "ui/how_to_play_common.json", - "scrollable_selector_area_content": "ui/how_to_play_common.json", - "selector_area": "ui/how_to_play_common.json", - "selector_area/scrolling_panel": "ui/how_to_play_common.json", - "section_divider": "ui/how_to_play_common.json", - "content_area_wrapper": "ui/how_to_play_common.json", - "content_area_wrapper/content_area": "ui/how_to_play_common.json", - "content_area": "ui/how_to_play_common.json", - "content_area/control": "ui/how_to_play_common.json", - "content_area/control/scrolling_panel": "ui/how_to_play_common.json", - "screen_base": "ui/how_to_play_common.json", - "gamepad_bumper_helper_description": "ui/how_to_play_common.json", - "gamepad_bumper_helpers": "ui/how_to_play_common.json", - "gamepad_bumper_helpers/gamepad_helper_left_bumper": "ui/how_to_play_common.json", - "gamepad_bumper_helpers/padding": "ui/how_to_play_common.json", - "gamepad_bumper_helpers/gamepad_helper_right_bumper": "ui/how_to_play_common.json", - }, - "how_to_play": { - "how_to_play_screen": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_started_category": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/moving_around_button": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/gathering_resources_button": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/selecting_items_button": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/placing_blocks_button": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/inventory_button": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/preparing_for_the_night_category": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/your_first_craft_button": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/recipe_book_button": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/the_crafting_table_button": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/crafting_a_tool_button": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/mining_button": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/surviving_the_first_night_category": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/nightfall_new_button": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/building_a_shelter_button": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/death_and_respawn_button": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_settled_category": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/food_button": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/beds_new_button": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/improved_tools_button": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/education_category": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/world_builder_button": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/permission_blocks_button": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/chalkboard_button": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/chemistry_button": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/npc_button": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/camera_button": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/portfolio_button": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/classroom_mode_button": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/code_builder_button": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/padding_1": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/playing_together_button": "ui/how_to_play_screen.json", - "how_to_play_selector_stack_panel/how_to_play_selector_pane/encyclopedia_button": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/section_contents_header": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/moving_around_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/gathering_resources_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/selecting_items_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/placing_blocks_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/inventory_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/your_first_craft_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/recipe_book_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/the_crafting_table_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/crafting_a_tool_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/mining_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/nightfall_new_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/building_a_shelter_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/death_and_respawn_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/food_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/beds_new_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/improved_tools_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/world_builder_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/permission_blocks_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/chalkboard_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/chemistry_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/npc_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/camera_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/portfolio_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/classroom_mode_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/code_builder_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/playing_together_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/encyclopedia_section": "ui/how_to_play_screen.json", - "how_to_play_section_content_panels/general_tips_sections/section_contents_footer": "ui/how_to_play_screen.json", - "moving_around_button": "ui/how_to_play_screen.json", - "moving_around_section": "ui/how_to_play_screen.json", - "moving_around_section/paragraph_1": "ui/how_to_play_screen.json", - "moving_around_section/padding_1": "ui/how_to_play_screen.json", - "moving_around_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", - "moving_around_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", - "moving_around_section/paragraph_touch_joystick_tap": "ui/how_to_play_screen.json", - "moving_around_section/padding_2": "ui/how_to_play_screen.json", - "moving_around_section/paragraph_3a_keyboard": "ui/how_to_play_screen.json", - "moving_around_section/paragraph_3b_keyboard": "ui/how_to_play_screen.json", - "moving_around_section/paragraph_3a_gamepad": "ui/how_to_play_screen.json", - "moving_around_section/paragraph_3b_gamepad": "ui/how_to_play_screen.json", - "moving_around_section/paragraph_3_touch_joystick_tap": "ui/how_to_play_screen.json", - "moving_around_section/paragraph_3a_touch_classic_dpad": "ui/how_to_play_screen.json", - "moving_around_section/paragraph_3b_touch_classic_dpad": "ui/how_to_play_screen.json", - "moving_around_section/paragraph_3c_touch_classic_dpad": "ui/how_to_play_screen.json", - "moving_around_section/paragraph_3d_touch_classic_dpad": "ui/how_to_play_screen.json", - "moving_around_section/paragraph_3e_touch_classic_dpad": "ui/how_to_play_screen.json", - "moving_around_section/paragraph_3_touch_joystick_crosshair": "ui/how_to_play_screen.json", - "moving_around_section/image_1": "ui/how_to_play_screen.json", - "gathering_resources_button": "ui/how_to_play_screen.json", - "gathering_resources_section": "ui/how_to_play_screen.json", - "gathering_resources_section/paragraph_1": "ui/how_to_play_screen.json", - "gathering_resources_section/padding_1": "ui/how_to_play_screen.json", - "gathering_resources_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", - "gathering_resources_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", - "gathering_resources_section/paragraph_2_touch_joystick_tap": "ui/how_to_play_screen.json", - "gathering_resources_section/paragraph_2_touch_classic_dpad": "ui/how_to_play_screen.json", - "gathering_resources_section/paragraph_2_touch_joystick_crosshair": "ui/how_to_play_screen.json", - "gathering_resources_section/padding_2": "ui/how_to_play_screen.json", - "gathering_resources_section/paragraph_3": "ui/how_to_play_screen.json", - "selecting_items_button": "ui/how_to_play_screen.json", - "selecting_items_section": "ui/how_to_play_screen.json", - "selecting_items_section/paragraph_1": "ui/how_to_play_screen.json", - "selecting_items_section/padding_1": "ui/how_to_play_screen.json", - "selecting_items_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", - "selecting_items_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", - "selecting_items_section/paragraph_touch_joystick_tap": "ui/how_to_play_screen.json", - "selecting_items_section/padding_2": "ui/how_to_play_screen.json", - "selecting_items_section/paragraph_3_keyboard": "ui/how_to_play_screen.json", - "selecting_items_section/paragraph_3_gamepad": "ui/how_to_play_screen.json", - "selecting_items_section/paragraph_3_touch_joystick_tap": "ui/how_to_play_screen.json", - "selecting_items_section/paragraph_3_touch_classic_dpad": "ui/how_to_play_screen.json", - "selecting_items_section/paragraph_3_touch_joystick_crosshair": "ui/how_to_play_screen.json", - "selecting_items_section/padding_3": "ui/how_to_play_screen.json", - "selecting_items_section/header_1": "ui/how_to_play_screen.json", - "selecting_items_section/image_1_not_touch": "ui/how_to_play_screen.json", - "selecting_items_section/image_1_touch": "ui/how_to_play_screen.json", - "placing_blocks_button": "ui/how_to_play_screen.json", - "placing_blocks_section": "ui/how_to_play_screen.json", - "placing_blocks_section/paragraph_1": "ui/how_to_play_screen.json", - "placing_blocks_section/padding_1": "ui/how_to_play_screen.json", - "placing_blocks_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", - "placing_blocks_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", - "placing_blocks_section/paragraph_2_touch_joystick_tap": "ui/how_to_play_screen.json", - "placing_blocks_section/paragraph_2_touch_classic_dpad": "ui/how_to_play_screen.json", - "placing_blocks_section/paragraph_2_touch_joystick_crosshair": "ui/how_to_play_screen.json", - "placing_blocks_section/padding_2": "ui/how_to_play_screen.json", - "placing_blocks_section/paragraph_3": "ui/how_to_play_screen.json", - "inventory_button": "ui/how_to_play_screen.json", - "inventory_section": "ui/how_to_play_screen.json", - "inventory_section/image_1_not_touch": "ui/how_to_play_screen.json", - "inventory_section/image_1_touch": "ui/how_to_play_screen.json", - "inventory_section/header_1": "ui/how_to_play_screen.json", - "inventory_section/paragraph_1_keyboard": "ui/how_to_play_screen.json", - "inventory_section/paragraph_1_gamepad": "ui/how_to_play_screen.json", - "inventory_section/paragraph_1_touch": "ui/how_to_play_screen.json", - "inventory_section/padding_2": "ui/how_to_play_screen.json", - "inventory_section/header_2": "ui/how_to_play_screen.json", - "inventory_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", - "inventory_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", - "inventory_section/paragraph_2_touch": "ui/how_to_play_screen.json", - "your_first_craft_button": "ui/how_to_play_screen.json", - "your_first_craft_section": "ui/how_to_play_screen.json", - "your_first_craft_section/image_1_not_touch": "ui/how_to_play_screen.json", - "your_first_craft_section/image_1_touch": "ui/how_to_play_screen.json", - "your_first_craft_section/header_1": "ui/how_to_play_screen.json", - "your_first_craft_section/paragraph_1": "ui/how_to_play_screen.json", - "your_first_craft_section/padding_2": "ui/how_to_play_screen.json", - "your_first_craft_section/paragraph_2": "ui/how_to_play_screen.json", - "your_first_craft_section/padding_3": "ui/how_to_play_screen.json", - "your_first_craft_section/paragraph_3_touch": "ui/how_to_play_screen.json", - "your_first_craft_section/paragraph_3_keyboard": "ui/how_to_play_screen.json", - "your_first_craft_section/paragraph_3_gamepad": "ui/how_to_play_screen.json", - "your_first_craft_section/padding_4": "ui/how_to_play_screen.json", - "your_first_craft_section/header_2": "ui/how_to_play_screen.json", - "your_first_craft_section/paragraph_4": "ui/how_to_play_screen.json", - "your_first_craft_section/padding_5": "ui/how_to_play_screen.json", - "your_first_craft_section/paragraph_5": "ui/how_to_play_screen.json", - "recipe_book_button": "ui/how_to_play_screen.json", - "recipe_book_section": "ui/how_to_play_screen.json", - "recipe_book_section/paragraph_1_keyboard": "ui/how_to_play_screen.json", - "recipe_book_section/paragraph_1_gamepad": "ui/how_to_play_screen.json", - "recipe_book_section/paragraph_1_touch": "ui/how_to_play_screen.json", - "recipe_book_section/padding_1": "ui/how_to_play_screen.json", - "recipe_book_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", - "recipe_book_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", - "recipe_book_section/paragraph_2_touch": "ui/how_to_play_screen.json", - "the_crafting_table_button": "ui/how_to_play_screen.json", - "the_crafting_table_section": "ui/how_to_play_screen.json", - "the_crafting_table_section/image_1": "ui/how_to_play_screen.json", - "the_crafting_table_section/paragraph_1": "ui/how_to_play_screen.json", - "the_crafting_table_section/padding_2": "ui/how_to_play_screen.json", - "the_crafting_table_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", - "the_crafting_table_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", - "the_crafting_table_section/paragraph_2_touch": "ui/how_to_play_screen.json", - "crafting_a_tool_button": "ui/how_to_play_screen.json", - "crafting_a_tool_section": "ui/how_to_play_screen.json", - "crafting_a_tool_section/paragraph_1": "ui/how_to_play_screen.json", - "crafting_a_tool_section/padding_1": "ui/how_to_play_screen.json", - "crafting_a_tool_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", - "crafting_a_tool_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", - "crafting_a_tool_section/paragraph_2_touch": "ui/how_to_play_screen.json", - "mining_button": "ui/how_to_play_screen.json", - "mining_section": "ui/how_to_play_screen.json", - "mining_section/image_1": "ui/how_to_play_screen.json", - "mining_section/paragraph_1": "ui/how_to_play_screen.json", - "mining_section/padding_2": "ui/how_to_play_screen.json", - "mining_section/paragraph_2": "ui/how_to_play_screen.json", - "mining_section/padding_3": "ui/how_to_play_screen.json", - "mining_section/paragraph_3": "ui/how_to_play_screen.json", - "nightfall_new_button": "ui/how_to_play_screen.json", - "nightfall_new_section": "ui/how_to_play_screen.json", - "nightfall_new_section/paragraph_1": "ui/how_to_play_screen.json", - "nightfall_new_section/padding_1": "ui/how_to_play_screen.json", - "nightfall_new_section/paragraph_2": "ui/how_to_play_screen.json", - "nightfall_new_section/padding_2": "ui/how_to_play_screen.json", - "nightfall_new_section/paragraph_3": "ui/how_to_play_screen.json", - "nightfall_new_section/padding_3": "ui/how_to_play_screen.json", - "nightfall_new_section/paragraph_4_keyboard": "ui/how_to_play_screen.json", - "nightfall_new_section/paragraph_4_gamepad": "ui/how_to_play_screen.json", - "nightfall_new_section/paragraph_4_touch_joystick_tap": "ui/how_to_play_screen.json", - "nightfall_new_section/paragraph_4_touch_classic_dpad": "ui/how_to_play_screen.json", - "nightfall_new_section/paragraph_4_touch_joystick_crosshair": "ui/how_to_play_screen.json", - "building_a_shelter_button": "ui/how_to_play_screen.json", - "building_a_shelter_section": "ui/how_to_play_screen.json", - "building_a_shelter_section/image_1": "ui/how_to_play_screen.json", - "building_a_shelter_section/paragraph_1": "ui/how_to_play_screen.json", - "building_a_shelter_section/padding_2": "ui/how_to_play_screen.json", - "building_a_shelter_section/paragraph_2": "ui/how_to_play_screen.json", - "building_a_shelter_section/padding_3": "ui/how_to_play_screen.json", - "building_a_shelter_section/paragraph_3": "ui/how_to_play_screen.json", - "death_and_respawn_button": "ui/how_to_play_screen.json", - "death_and_respawn_section": "ui/how_to_play_screen.json", - "death_and_respawn_section/paragraph_1": "ui/how_to_play_screen.json", - "death_and_respawn_section/padding_1": "ui/how_to_play_screen.json", - "death_and_respawn_section/paragraph_2": "ui/how_to_play_screen.json", - "food_button": "ui/how_to_play_screen.json", - "food_section": "ui/how_to_play_screen.json", - "food_section/paragraph_1": "ui/how_to_play_screen.json", - "food_section/padding_1": "ui/how_to_play_screen.json", - "food_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", - "food_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", - "food_section/paragraph_2_touch": "ui/how_to_play_screen.json", - "food_section/padding_2": "ui/how_to_play_screen.json", - "food_section/paragraph_3": "ui/how_to_play_screen.json", - "beds_new_button": "ui/how_to_play_screen.json", - "beds_new_section": "ui/how_to_play_screen.json", - "beds_new_section/paragraph_1": "ui/how_to_play_screen.json", - "beds_new_section/padding_1": "ui/how_to_play_screen.json", - "beds_new_section/paragraph_2": "ui/how_to_play_screen.json", - "beds_new_section/padding_2": "ui/how_to_play_screen.json", - "beds_new_section/paragraph_3": "ui/how_to_play_screen.json", - "improved_tools_button": "ui/how_to_play_screen.json", - "improved_tools_section": "ui/how_to_play_screen.json", - "improved_tools_section/paragraph_1": "ui/how_to_play_screen.json", - "improved_tools_section/padding_1": "ui/how_to_play_screen.json", - "improved_tools_section/paragraph_2": "ui/how_to_play_screen.json", - "world_builder_button": "ui/how_to_play_screen.json", - "world_builder_section": "ui/how_to_play_screen.json", - "world_builder_section/paragraph_1": "ui/how_to_play_screen.json", - "world_builder_section/padding_1": "ui/how_to_play_screen.json", - "world_builder_section/paragraph_2": "ui/how_to_play_screen.json", - "world_builder_section/padding_2": "ui/how_to_play_screen.json", - "world_builder_section/paragraph_3": "ui/how_to_play_screen.json", - "world_builder_section/padding_3": "ui/how_to_play_screen.json", - "world_builder_section/paragraph_4": "ui/how_to_play_screen.json", - "world_builder_section/padding_4": "ui/how_to_play_screen.json", - "world_builder_section/paragraph_5": "ui/how_to_play_screen.json", - "world_builder_section/padding_5": "ui/how_to_play_screen.json", - "world_builder_section/paragraph_6": "ui/how_to_play_screen.json", - "world_builder_section/paragraph_7": "ui/how_to_play_screen.json", - "world_builder_section/padding_7": "ui/how_to_play_screen.json", - "world_builder_section/paragraph_8": "ui/how_to_play_screen.json", - "world_builder_section/padding_8": "ui/how_to_play_screen.json", - "world_builder_section/paragraph_9": "ui/how_to_play_screen.json", - "permission_blocks_button": "ui/how_to_play_screen.json", - "permission_blocks_section": "ui/how_to_play_screen.json", - "permission_blocks_section/paragraph_1": "ui/how_to_play_screen.json", - "permission_blocks_section/padding_1": "ui/how_to_play_screen.json", - "permission_blocks_section/header_1": "ui/how_to_play_screen.json", - "permission_blocks_section/paragraph_2": "ui/how_to_play_screen.json", - "permission_blocks_section/padding_3": "ui/how_to_play_screen.json", - "permission_blocks_section/paragraph_3": "ui/how_to_play_screen.json", - "permission_blocks_section/padding_4": "ui/how_to_play_screen.json", - "permission_blocks_section/paragraph_4": "ui/how_to_play_screen.json", - "permission_blocks_section/padding_5": "ui/how_to_play_screen.json", - "permission_blocks_section/paragraph_5": "ui/how_to_play_screen.json", - "permission_blocks_section/padding_7": "ui/how_to_play_screen.json", - "permission_blocks_section/header_2": "ui/how_to_play_screen.json", - "permission_blocks_section/paragraph_6": "ui/how_to_play_screen.json", - "chalkboard_button": "ui/how_to_play_screen.json", - "chalkboard_section": "ui/how_to_play_screen.json", - "chalkboard_section/paragraph_1_keyboard": "ui/how_to_play_screen.json", - "chalkboard_section/paragraph_1_gamepad": "ui/how_to_play_screen.json", - "chalkboard_section/paragraph_1_touch": "ui/how_to_play_screen.json", - "chemistry_button": "ui/how_to_play_screen.json", - "chemistry_section": "ui/how_to_play_screen.json", - "chemistry_section/paragraph_1": "ui/how_to_play_screen.json", - "chemistry_section/padding_1": "ui/how_to_play_screen.json", - "chemistry_section/paragraph_2": "ui/how_to_play_screen.json", - "npc_button": "ui/how_to_play_screen.json", - "npc_section": "ui/how_to_play_screen.json", - "npc_section/paragraph_1": "ui/how_to_play_screen.json", - "npc_section/padding_1": "ui/how_to_play_screen.json", - "npc_section/paragraph_2": "ui/how_to_play_screen.json", - "npc_section/padding_2": "ui/how_to_play_screen.json", - "npc_section/paragraph_3": "ui/how_to_play_screen.json", - "camera_button": "ui/how_to_play_screen.json", - "camera_section": "ui/how_to_play_screen.json", - "camera_section/paragraph_1": "ui/how_to_play_screen.json", - "camera_section/padding_1": "ui/how_to_play_screen.json", - "camera_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", - "camera_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", - "camera_section/paragraph_2_touch": "ui/how_to_play_screen.json", - "camera_section/padding_2": "ui/how_to_play_screen.json", - "camera_section/paragraph_3_keyboard": "ui/how_to_play_screen.json", - "camera_section/paragraph_3_gamepad": "ui/how_to_play_screen.json", - "camera_section/paragraph_3_touch": "ui/how_to_play_screen.json", - "camera_section/padding_3": "ui/how_to_play_screen.json", - "camera_section/paragraph_4": "ui/how_to_play_screen.json", - "portfolio_button": "ui/how_to_play_screen.json", - "portfolio_section": "ui/how_to_play_screen.json", - "portfolio_section/paragraph_1_keyboard": "ui/how_to_play_screen.json", - "portfolio_section/paragraph_1_gamepad": "ui/how_to_play_screen.json", - "portfolio_section/paragraph_1_touch": "ui/how_to_play_screen.json", - "classroom_mode_button": "ui/how_to_play_screen.json", - "classroom_mode_section": "ui/how_to_play_screen.json", - "classroom_mode_section/paragraph_1": "ui/how_to_play_screen.json", - "classroom_mode_section/padding_1": "ui/how_to_play_screen.json", - "classroom_mode_section/paragraph_2": "ui/how_to_play_screen.json", - "code_builder_button": "ui/how_to_play_screen.json", - "code_builder_section": "ui/how_to_play_screen.json", - "code_builder_section/paragraph_1": "ui/how_to_play_screen.json", - "code_builder_section/padding_1": "ui/how_to_play_screen.json", - "code_builder_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", - "code_builder_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", - "code_builder_section/paragraph_2_touch": "ui/how_to_play_screen.json", - "playing_together_button": "ui/how_to_play_screen.json", - "playing_together_section": "ui/how_to_play_screen.json", - "playing_together_section/paragraph_1": "ui/how_to_play_screen.json", - "playing_together_section/padding_1": "ui/how_to_play_screen.json", - "playing_together_section/header_1": "ui/how_to_play_screen.json", - "playing_together_section/paragraph_2": "ui/how_to_play_screen.json", - "playing_together_section/padding_2": "ui/how_to_play_screen.json", - "playing_together_section/header_2": "ui/how_to_play_screen.json", - "playing_together_section/paragraph_3": "ui/how_to_play_screen.json", - "playing_together_section/padding_3": "ui/how_to_play_screen.json", - "playing_together_section/paragraph_4": "ui/how_to_play_screen.json", - "playing_together_section/padding_4": "ui/how_to_play_screen.json", - "playing_together_section/paragraph_5": "ui/how_to_play_screen.json", - "playing_together_section/padding_5": "ui/how_to_play_screen.json", - "playing_together_section/header_3": "ui/how_to_play_screen.json", - "playing_together_section/paragraph_6": "ui/how_to_play_screen.json", - "playing_together_section/padding_6": "ui/how_to_play_screen.json", - "playing_together_section/paragraph_7": "ui/how_to_play_screen.json", - "playing_together_section/padding_7": "ui/how_to_play_screen.json", - "playing_together_section/paragraph_8": "ui/how_to_play_screen.json", - "playing_together_section/realms_button": "ui/how_to_play_screen.json", - "playing_together_section/sign_in_button": "ui/how_to_play_screen.json", - "playing_together_section/padding_8": "ui/how_to_play_screen.json", - "playing_together_section/header_4": "ui/how_to_play_screen.json", - "playing_together_section/paragraph_9": "ui/how_to_play_screen.json", - "playing_together_section/padding_9": "ui/how_to_play_screen.json", - "playing_together_section/paragraph_10": "ui/how_to_play_screen.json", - "try_realms_action_button": "ui/how_to_play_screen.json", - "encyclopedia_button": "ui/how_to_play_screen.json", - "encyclopedia_section": "ui/how_to_play_screen.json", - "encyclopedia_section/paragraph_1": "ui/how_to_play_screen.json", - }, - "hud": { - "hud_player_renderer": "ui/hud_screen.json", - "hud_player_renderer/hud_player": "ui/hud_screen.json", - "hotbar_renderer": "ui/hud_screen.json", - "hotbar_renderer/hotbar_slot_image": "ui/hud_screen.json", - "cooldown_renderer": "ui/hud_screen.json", - "heart_renderer": "ui/hud_screen.json", - "horse_heart_renderer": "ui/hud_screen.json", - "armor_renderer": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend/dash_rend": "ui/hud_screen.json", - "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": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/progress_text_label": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend/hotbar": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/hotbar": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/size_without_hotbar": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/horse_jump_rend": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/dash_rend": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/locator_bar": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/progress_text_label": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar/item_text_factory": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar_pocket": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/progress_text_label": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/locator_bar": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/progress_text_label": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar_pocket/hotbar_panel": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar_pocket/item_text": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar_pocket/item_text/item_text_factory": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar_pocket/horse_jump_rend": "ui/hud_screen.json", - "exp_progress_bar_and_hotbar_pocket/dash_rend": "ui/hud_screen.json", - "full_progress_bar": "ui/hud_screen.json", - "empty_progress_bar": "ui/hud_screen.json", - "progress_bar_nub": "ui/hud_screen.json", - "progress_text_label": "ui/hud_screen.json", - "horse_jump_renderer": "ui/hud_screen.json", - "dash_renderer": "ui/hud_screen.json", - "locator_bar": "ui/hud_screen.json", - "hunger_renderer": "ui/hud_screen.json", - "bubbles_renderer": "ui/hud_screen.json", - "mob_effects_renderer": "ui/hud_screen.json", - "vignette_renderer": "ui/hud_screen.json", - "editor_gizmo_renderer": "ui/hud_screen.json", - "cursor_renderer": "ui/hud_screen.json", - "progress_indicator_renderer": "ui/hud_screen.json", - "camera_renderer": "ui/hud_screen.json", - "editor_volume_highlight_renderer": "ui/hud_screen.json", - "editor_compass_renderer": "ui/hud_screen.json", - "hotbar_hud_item_icon": "ui/hud_screen.json", - "elipses_image": "ui/hud_screen.json", - "bound_button_label": "ui/hud_screen.json", - "default_borderless_button_layout": "ui/hud_screen.json", - "hover_borderless_button_layout": "ui/hud_screen.json", - "pressed_borderless_button_layout": "ui/hud_screen.json", - "borderless_button": "ui/hud_screen.json", - "borderless_button/default": "ui/hud_screen.json", - "borderless_button/hover": "ui/hud_screen.json", - "borderless_button/pressed": "ui/hud_screen.json", - "borderless_button/elipses": "ui/hud_screen.json", - "hotbar_elipses_button": "ui/hud_screen.json", - "start_cap_image": "ui/hud_screen.json", - "end_cap_image": "ui/hud_screen.json", - "hotbar_start_cap": "ui/hud_screen.json", - "hotbar_start_cap/start_cap_image": "ui/hud_screen.json", - "hotbar_end_cap": "ui/hud_screen.json", - "hotbar_end_cap/end_cap_image": "ui/hud_screen.json", - "heart_image": "ui/hud_screen.json", - "hotbar_slot_image": "ui/hud_screen.json", - "hotbar_slot_selected_image": "ui/hud_screen.json", - "gui_hotbar_slot_button_prototype": "ui/hud_screen.json", - "player_position": "ui/hud_screen.json", - "player_position/player_position_text": "ui/hud_screen.json", - "number_of_days_played": "ui/hud_screen.json", - "number_of_days_played/number_of_days_played_text": "ui/hud_screen.json", - "chat_label": "ui/hud_screen.json", - "chat_grid_item": "ui/hud_screen.json", - "chat_grid_item/chat_background": "ui/hud_screen.json", - "chat_grid_item/chat_background/chat_text": "ui/hud_screen.json", - "chat_panel": "ui/hud_screen.json", - "chat_panel/stack_panel": "ui/hud_screen.json", - "subtitle_panel": "ui/hud_screen.json", - "subtitle_panel/stack_panel": "ui/hud_screen.json", - "item_durability": "ui/hud_screen.json", - "item_storage": "ui/hud_screen.json", - "container_item_lock_overlay": "ui/hud_screen.json", - "item_lock_cell_image": "ui/hud_screen.json", - "gui_hotbar_grid_item": "ui/hud_screen.json", - "gui_hotbar_grid_item/hotbar_slot_selected_image": "ui/hud_screen.json", - "gui_hotbar_grid_item/hotbar_renderer": "ui/hud_screen.json", - "gui_hotbar_grid_item/hotbar_parent": "ui/hud_screen.json", - "gui_hotbar_grid_item/hotbar_parent/item_icon": "ui/hud_screen.json", - "gui_hotbar_grid_item/hotbar_parent/item_count": "ui/hud_screen.json", - "gui_hotbar_grid_item/hotbar_parent/hotbar_hint": "ui/hud_screen.json", - "gui_hotbar_grid_item/hotbar_parent/item_dura": "ui/hud_screen.json", - "gui_hotbar_grid_item/hotbar_parent/item_store": "ui/hud_screen.json", - "gui_hotbar_grid_item/hotbar_parent/container_item_lock_overlay": "ui/hud_screen.json", - "gui_hotbar_grid_item/cooldown_renderer": "ui/hud_screen.json", - "gui_hotbar_grid_item/hotbar_slot_button": "ui/hud_screen.json", - "gui_hotbar_grid_item_pocket": "ui/hud_screen.json", - "gui_hotbar_grid_item_pocket/hotbar_slot_selected_image": "ui/hud_screen.json", - "gui_hotbar_grid_item_pocket/hotbar_renderer": "ui/hud_screen.json", - "gui_hotbar_grid_item_pocket/hotbar_parent": "ui/hud_screen.json", - "gui_hotbar_grid_item_pocket/hotbar_parent/item_icon": "ui/hud_screen.json", - "gui_hotbar_grid_item_pocket/hotbar_parent/item_count": "ui/hud_screen.json", - "gui_hotbar_grid_item_pocket/hotbar_parent/item_dura": "ui/hud_screen.json", - "gui_hotbar_grid_item_pocket/hotbar_parent/item_store": "ui/hud_screen.json", - "gui_hotbar_grid_item_pocket/hotbar_parent/container_item_lock_overlay": "ui/hud_screen.json", - "gui_hotbar_grid_item_pocket/cooldown_renderer": "ui/hud_screen.json", - "gui_hotbar_grid_item_pocket/hotbar_slot_button": "ui/hud_screen.json", - "centered_gui_elements": "ui/hud_screen.json", - "centered_gui_elements/hud_player_rend_desktop": "ui/hud_screen.json", - "centered_gui_elements_at_bottom_middle": "ui/hud_screen.json", - "centered_gui_elements_at_bottom_middle/heart_rend": "ui/hud_screen.json", - "centered_gui_elements_at_bottom_middle/horse_heart_rend_0": "ui/hud_screen.json", - "centered_gui_elements_at_bottom_middle/horse_heart_rend_1": "ui/hud_screen.json", - "centered_gui_elements_at_bottom_middle/armor_rend": "ui/hud_screen.json", - "centered_gui_elements_at_bottom_middle/hunger_rend": "ui/hud_screen.json", - "centered_gui_elements_at_bottom_middle/bubbles_rend_0": "ui/hud_screen.json", - "centered_gui_elements_at_bottom_middle/bubbles_rend_1": "ui/hud_screen.json", - "centered_gui_elements_at_bottom_middle/exp_rend": "ui/hud_screen.json", - "centered_gui_elements_at_bottom_middle_touch": "ui/hud_screen.json", - "centered_gui_elements_at_bottom_middle_touch/heart_rend": "ui/hud_screen.json", - "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_0": "ui/hud_screen.json", - "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_1": "ui/hud_screen.json", - "centered_gui_elements_at_bottom_middle_touch/armor_rend": "ui/hud_screen.json", - "centered_gui_elements_at_bottom_middle_touch/hunger_rend": "ui/hud_screen.json", - "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_0": "ui/hud_screen.json", - "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_1": "ui/hud_screen.json", - "centered_gui_elements_at_bottom_middle_touch/exp_rend": "ui/hud_screen.json", - "not_centered_gui_elements": "ui/hud_screen.json", - "not_centered_gui_elements/heart_rend": "ui/hud_screen.json", - "not_centered_gui_elements/horse_heart_rend": "ui/hud_screen.json", - "not_centered_gui_elements/hunger_rend": "ui/hud_screen.json", - "not_centered_gui_elements/armor_rend": "ui/hud_screen.json", - "not_centered_gui_elements/hud_player_rend_pocket": "ui/hud_screen.json", - "not_centered_gui_elements/bubbles_rend_0": "ui/hud_screen.json", - "not_centered_gui_elements/bubbles_rend_1": "ui/hud_screen.json", - "hotbar_chooser": "ui/hud_screen.json", - "hotbar_chooser/desktop_hotbar": "ui/hud_screen.json", - "hotbar_chooser/pocket_hotbar": "ui/hud_screen.json", - "hotbar_elipses_panel_right_content": "ui/hud_screen.json", - "hotbar_elipses_panel_right_content/elipses_content": "ui/hud_screen.json", - "hotbar_elipses_panel_right_art": "ui/hud_screen.json", - "hotbar_elipses_panel_right_art/slot": "ui/hud_screen.json", - "hotbar_elipses_panel_right_art/button": "ui/hud_screen.json", - "hotbar_elipses_panel_left_content": "ui/hud_screen.json", - "hotbar_elipses_panel_left_content/button": "ui/hud_screen.json", - "hotbar_elipses_panel_left_art": "ui/hud_screen.json", - "hotbar_elipses_panel_left_art/slot": "ui/hud_screen.json", - "hotbar_elipses_panel_left_art/button": "ui/hud_screen.json", - "hotbar_panel": "ui/hud_screen.json", - "hotbar_panel/hotbar_start_cap": "ui/hud_screen.json", - "hotbar_panel/hotbar_elipses_panel_left": "ui/hud_screen.json", - "hotbar_panel/hotbar_grid": "ui/hud_screen.json", - "hotbar_panel/hotbar_elipses_panel_right": "ui/hud_screen.json", - "hotbar_panel/hotbar_end_cap": "ui/hud_screen.json", - "hotbar_panel_pocket": "ui/hud_screen.json", - "hotbar_panel_pocket/hotbar_start_cap_frame": "ui/hud_screen.json", - "hotbar_panel_pocket/hotbar_start_cap_frame/hotbar_start_cap": "ui/hud_screen.json", - "hotbar_panel_pocket/hotbar_elipses_panel_left": "ui/hud_screen.json", - "hotbar_panel_pocket/hotbar_elipses_panel_left/hotbar_elipses_panel_left": "ui/hud_screen.json", - "hotbar_panel_pocket/hotbar_grid": "ui/hud_screen.json", - "hotbar_panel_pocket/hotbar_elipses_panel_right": "ui/hud_screen.json", - "hotbar_panel_pocket/hotbar_elipses_panel_right/hotbar_elipses_panel_right": "ui/hud_screen.json", - "hotbar_panel_pocket/hotbar_end_cap_frame": "ui/hud_screen.json", - "hotbar_panel_pocket/hotbar_end_cap_frame/hotbar_end_cap": "ui/hud_screen.json", - "hotbar_grid": "ui/hud_screen.json", - "edu_hotbar_grid": "ui/hud_screen.json", - "item_name_text_root": "ui/hud_screen.json", - "item_name_text_root/item_text_aligner": "ui/hud_screen.json", - "item_name_text_root/item_text_aligner/item_text_control": "ui/hud_screen.json", - "item_name_text_root/item_text_aligner/item_text_control/item_text_background": "ui/hud_screen.json", - "item_name_text_root/item_text_aligner/item_text_control/item_text_label": "ui/hud_screen.json", - "item_name_text_root/item_text_aligner/interact_padding": "ui/hud_screen.json", - "item_name_text_root/item_text_aligner/survival_buffer": "ui/hud_screen.json", - "item_name_text": "ui/hud_screen.json", - "jukebox_popup_text": "ui/hud_screen.json", - "hud_tip_text": "ui/hud_screen.json", - "hud_tip_text/item_text_label": "ui/hud_screen.json", - "auto_save": "ui/hud_screen.json", - "hud_actionbar_text": "ui/hud_screen.json", - "hud_actionbar_text/actionbar_message": "ui/hud_screen.json", - "hud_title_text": "ui/hud_screen.json", - "hud_title_text/title_frame": "ui/hud_screen.json", - "hud_title_text/title_frame/title_background": "ui/hud_screen.json", - "hud_title_text/title_frame/title": "ui/hud_screen.json", - "hud_title_text/subtitle_frame": "ui/hud_screen.json", - "hud_title_text/subtitle_frame/subtitle_background": "ui/hud_screen.json", - "hud_title_text/subtitle_frame/subtitle": "ui/hud_screen.json", - "boss_name_panel": "ui/hud_screen.json", - "boss_name_panel/boss_name": "ui/hud_screen.json", - "tooltip_helper_icon_description": "ui/hud_screen.json", - "tooltip_helper_icon_description/label_background": "ui/hud_screen.json", - "tooltip_helper": "ui/hud_screen.json", - "tooltip_helper/icon": "ui/hud_screen.json", - "tooltip_helper/padding": "ui/hud_screen.json", - "tooltip_helper/centerer": "ui/hud_screen.json", - "tooltip_helper/centerer/desc": "ui/hud_screen.json", - "tooltip_helper_form_fitting": "ui/hud_screen.json", - "tooltip_helper_form_fitting/icon": "ui/hud_screen.json", - "tooltip_helper_form_fitting/padding": "ui/hud_screen.json", - "tooltip_helper_form_fitting/centerer": "ui/hud_screen.json", - "tooltip_helper_form_fitting/centerer/desc": "ui/hud_screen.json", - "keyboard_tooltip_helper": "ui/hud_screen.json", - "keyboard_tooltip_helper_form_fitting": "ui/hud_screen.json", - "mixed_tooltip_helper": "ui/hud_screen.json", - "mixed_tooltip_helper/gamepad_tooltip": "ui/hud_screen.json", - "mixed_tooltip_helper/keyboard_tooltip": "ui/hud_screen.json", - "mixed_tooltip_helper_form_fitting": "ui/hud_screen.json", - "mixed_tooltip_helper_form_fitting/gamepad_tooltip": "ui/hud_screen.json", - "mixed_tooltip_helper_form_fitting/keyboard_tooltip": "ui/hud_screen.json", - "base_icon_image": "ui/hud_screen.json", - "base_icon_image/icon": "ui/hud_screen.json", - "base_icon_image/postfix_label_wrapper": "ui/hud_screen.json", - "base_icon_image/postfix_label_wrapper/label": "ui/hud_screen.json", - "base_keyboard_icon": "ui/hud_screen.json", - "base_keyboard_icon/icon": "ui/hud_screen.json", - "base_keyboard_icon/icon/key_backing": "ui/hud_screen.json", - "base_keyboard_icon/icon/key_backing/key_label": "ui/hud_screen.json", - "base_keyboard_icon/icon/mouse_buttons": "ui/hud_screen.json", - "left_helpers_edu": "ui/hud_screen.json", - "left_helpers_edu/tip_window": "ui/hud_screen.json", - "left_helpers_edu/tip_window/stack_panel": "ui/hud_screen.json", - "left_helpers_edu/tip_paddding": "ui/hud_screen.json", - "left_helpers_edu/controls_toggle_label": "ui/hud_screen.json", - "left_helpers_edu/controls_toggle_label/tip": "ui/hud_screen.json", - "left_helpers_edu/controls_inventory_label": "ui/hud_screen.json", - "left_helpers_edu/controls_inventory_label/tip": "ui/hud_screen.json", - "left_helpers_edu/controls_menu_label": "ui/hud_screen.json", - "left_helpers_edu/controls_menu_label/tip": "ui/hud_screen.json", - "left_helpers": "ui/hud_screen.json", - "left_helpers/stack_panel": "ui/hud_screen.json", - "emote_label_background": "ui/hud_screen.json", - "emote_tip": "ui/hud_screen.json", - "emote_tip/emote_keyboard_centerer": "ui/hud_screen.json", - "emote_tip/emote_keyboard_centerer/emote_keyboard_helper": "ui/hud_screen.json", - "emote_tip/emote_gamepad_helper": "ui/hud_screen.json", - "emote_expediate_helpers": "ui/hud_screen.json", - "emote_expediate_helpers/stack_panel": "ui/hud_screen.json", - "emote_expediate_helpers/stack_panel/emote_tip_0": "ui/hud_screen.json", - "emote_expediate_helpers/stack_panel/emote_tip_1": "ui/hud_screen.json", - "emote_expediate_helpers/stack_panel/emote_tip_2": "ui/hud_screen.json", - "emote_expediate_helpers/stack_panel/emote_tip_3": "ui/hud_screen.json", - "right_helpers": "ui/hud_screen.json", - "right_helpers/stack_panel": "ui/hud_screen.json", - "boss_health_panel": "ui/hud_screen.json", - "boss_health_panel/boss_name": "ui/hud_screen.json", - "boss_health_panel/progress_bar_for_collections": "ui/hud_screen.json", - "boss_health_grid": "ui/hud_screen.json", - "wysiwyg_reset_modal_ok": "ui/hud_screen.json", - "wysiwyg_reset_modal_cancel": "ui/hud_screen.json", - "wysiwyg_close_without_saving_modal_ok": "ui/hud_screen.json", - "wysiwyg_close_without_saving_modal_cancel": "ui/hud_screen.json", - "root_panel": "ui/hud_screen.json", - "root_panel/layout_customization_reset": "ui/hud_screen.json", - "root_panel/layout_customization_reset/layout_customization_reset_modal": "ui/hud_screen.json", - "root_panel/layout_customization_close_without_saving": "ui/hud_screen.json", - "root_panel/layout_customization_close_without_saving/layout_customization_close_without_saving_modal": "ui/hud_screen.json", - "root_panel/layout_customization_main_panel": "ui/hud_screen.json", - "root_panel/layout_customization_sub_panel": "ui/hud_screen.json", - "root_panel/layout_customization_hint_drag_frame": "ui/hud_screen.json", - "root_panel/layout_customization_hint_drag_frame/layout_customization_hint_drag": "ui/hud_screen.json", - "root_panel/layout_customization_hint_deselect_frame": "ui/hud_screen.json", - "root_panel/layout_customization_hint_deselect_frame/layout_customization_hint_deselect": "ui/hud_screen.json", - "root_panel/layout_customization_hint_saved": "ui/hud_screen.json", - "root_panel/layout_customization_hint_saved/layout_customization_hint_saved": "ui/hud_screen.json", - "root_panel/left_helpers": "ui/hud_screen.json", - "root_panel/right_helpers": "ui/hud_screen.json", - "root_panel/subtitle_stack": "ui/hud_screen.json", - "root_panel/subtitle_stack/subtitle_padding": "ui/hud_screen.json", - "root_panel/subtitle_stack/subtitle_panel": "ui/hud_screen.json", - "root_panel/emote_expediate_helpers": "ui/hud_screen.json", - "root_panel/centered_gui_elements": "ui/hud_screen.json", - "root_panel/centered_gui_elements_at_bottom_middle": "ui/hud_screen.json", - "root_panel/centered_gui_elements_at_bottom_middle_touch": "ui/hud_screen.json", - "root_panel/not_centered_gui_elements": "ui/hud_screen.json", - "root_panel/gamertag_label_for_splitscreen": "ui/hud_screen.json", - "root_panel/exp_rend": "ui/hud_screen.json", - "root_panel/exp_rend_resizable": "ui/hud_screen.json", - "root_panel/hud_tip_text_factory": "ui/hud_screen.json", - "root_panel/hud_actionbar_text_area": "ui/hud_screen.json", - "root_panel/hud_title_text_area": "ui/hud_screen.json", - "root_panel/mob_effects_renderer": "ui/hud_screen.json", - "root_panel/vignette_rend": "ui/hud_screen.json", - "root_panel/curor_rend": "ui/hud_screen.json", - "root_panel/game_tip": "ui/hud_screen.json", - "root_panel/sidebar": "ui/hud_screen.json", - "root_panel/progress_rend": "ui/hud_screen.json", - "root_panel/chat_stack": "ui/hud_screen.json", - "root_panel/chat_stack/paper_doll_padding": "ui/hud_screen.json", - "root_panel/chat_stack/non_centered_gui_padding": "ui/hud_screen.json", - "root_panel/chat_stack/player_position": "ui/hud_screen.json", - "root_panel/chat_stack/number_of_days_played": "ui/hud_screen.json", - "root_panel/chat_stack/game_tip": "ui/hud_screen.json", - "root_panel/chat_stack/chat_panel": "ui/hud_screen.json", - "root_panel/boss_health_panel": "ui/hud_screen.json", - "root_panel/boss_health_panel/boss_hud_padding": "ui/hud_screen.json", - "root_panel/boss_health_panel/boss_hud_touch_padding": "ui/hud_screen.json", - "root_panel/boss_health_panel/boss_hud_panel": "ui/hud_screen.json", - "root_panel/boss_health_panel/boss_hud_panel/boss_health_grid": "ui/hud_screen.json", - "root_panel/save_icon": "ui/hud_screen.json", - "hud_screen": "ui/hud_screen.json", - "hud_content": "ui/hud_screen.json", - "hud_content/root_panel": "ui/hud_screen.json", - "hud_content/editor_gizmo_renderer": "ui/hud_screen.json", - "hud_content/editor_compass_renderer": "ui/hud_screen.json", - "hud_content/editor_volume_highlight_renderer": "ui/hud_screen.json", - "hud_content/camera_renderer": "ui/hud_screen.json", - "layout_customization_main_panel_button": "ui/hud_screen.json", - "layout_customization_main_panel_button/button": "ui/hud_screen.json", - "layout_customization_main_panel": "ui/hud_screen.json", - "layout_customization_main_panel/main_panel_frame": "ui/hud_screen.json", - "layout_customization_main_panel/main_panel_frame/main_panel_content": "ui/hud_screen.json", - "layout_customization_main_panel/main_panel_frame/main_panel_content/reset_button": "ui/hud_screen.json", - "layout_customization_main_panel/main_panel_frame/main_panel_content/exit_button": "ui/hud_screen.json", - "layout_customization_main_panel/main_panel_frame/main_panel_content/opacity_button": "ui/hud_screen.json", - "layout_customization_main_panel/main_panel_frame/main_panel_content/size_button": "ui/hud_screen.json", - "layout_customization_option_slider": "ui/hud_screen.json", - "layout_customization_option_slider/slider": "ui/hud_screen.json", - "layout_customization_option_slider/reset": "ui/hud_screen.json", - "layout_customization_option_slider/reset/reset_button": "ui/hud_screen.json", - "layout_customization_option_slider/reset/reset_button/default": "ui/hud_screen.json", - "layout_customization_option_slider/reset/reset_button/hover": "ui/hud_screen.json", - "layout_customization_option_slider/reset/reset_button/pressed": "ui/hud_screen.json", - "layout_customization_option_content": "ui/hud_screen.json", - "layout_customization_option_content/scale_option": "ui/hud_screen.json", - "layout_customization_option_content/opacity_option": "ui/hud_screen.json", - "layout_customization_option_content/apply_to_all_toggle": "ui/hud_screen.json", - "layout_customization_option_content/apply_to_all_toggle/checkbox_frame": "ui/hud_screen.json", - "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_unchecked": "ui/hud_screen.json", - "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_checked": "ui/hud_screen.json", - "layout_customization_option_content/apply_to_all_toggle/caption_frame": "ui/hud_screen.json", - "layout_customization_option_content/apply_to_all_toggle/caption_frame/caption": "ui/hud_screen.json", - "layout_customization_option": "ui/hud_screen.json", - "layout_customization_option/content": "ui/hud_screen.json", - "layout_customization_sub_panel": "ui/hud_screen.json", - "layout_customization_sub_panel/background": "ui/hud_screen.json", - "layout_customization_sub_panel/background/sub_panel_content": "ui/hud_screen.json", - }, - "host_options": { - "button_label": "ui/host_options_screen.json", - "host_image_panel": "ui/host_options_screen.json", - "host_image_panel/host_image": "ui/host_options_screen.json", - "host_glyph_panel": "ui/host_options_screen.json", - "scrollable_selector_area": "ui/host_options_screen.json", - "host_main_button": "ui/host_options_screen.json", - "scrolling_panel": "ui/host_options_screen.json", - "scrolling_panel/background": "ui/host_options_screen.json", - "scrolling_panel/scrollable_tab": "ui/host_options_screen.json", - "button_content": "ui/host_options_screen.json", - "button_content/button_label": "ui/host_options_screen.json", - "button_content/image": "ui/host_options_screen.json", - "main_light_button": "ui/host_options_screen.json", - "main_dark_button": "ui/host_options_screen.json", - "host_grid": "ui/host_options_screen.json", - "host_sub_command_grid_item": "ui/host_options_screen.json", - "host_sub_command_grid_item/host_option_banner": "ui/host_options_screen.json", - "return_from_sub_command_button": "ui/host_options_screen.json", - "platform_icon_panel": "ui/host_options_screen.json", - "gamertag_wrapper": "ui/host_options_screen.json", - "player_pic_panel": "ui/host_options_screen.json", - "player_pic_panel/player_gamer_pic": "ui/host_options_screen.json", - "player_pic_panel/player_local_icon": "ui/host_options_screen.json", - "player_button_content": "ui/host_options_screen.json", - "player_button_content/player_pic_panel": "ui/host_options_screen.json", - "player_button_content/player_gamertag": "ui/host_options_screen.json", - "player_button_content/platform_icon": "ui/host_options_screen.json", - "player_grid_item": "ui/host_options_screen.json", - "player_grid_item/player_banner": "ui/host_options_screen.json", - "host_friends_tab": "ui/host_options_screen.json", - "host_friends_tab/players_grid": "ui/host_options_screen.json", - "host_teleport_grid_item": "ui/host_options_screen.json", - "host_teleport_grid_item/host_option_toggle": "ui/host_options_screen.json", - "host_teleport_grid_item/host_option_button": "ui/host_options_screen.json", - "host_teleport_buttons": "ui/host_options_screen.json", - "host_teleport_buttons/return": "ui/host_options_screen.json", - "host_teleport_buttons/sub_tab": "ui/host_options_screen.json", - "host_teleport_buttons/sub_tab/host_main_grid": "ui/host_options_screen.json", - "host_teleport_player_list_buttons": "ui/host_options_screen.json", - "host_teleport_player_list_buttons/toggle": "ui/host_options_screen.json", - "host_teleport_player_list_buttons/toggle/host_time_panel": "ui/host_options_screen.json", - "host_teleport_player_buttons": "ui/host_options_screen.json", - "host_time_buttons": "ui/host_options_screen.json", - "host_time_buttons/return": "ui/host_options_screen.json", - "host_time_buttons/sub_tab": "ui/host_options_screen.json", - "host_time_buttons/sub_tab/scrolli_scrolli_ravioli": "ui/host_options_screen.json", - "host_weather_buttons": "ui/host_options_screen.json", - "host_weather_buttons/return": "ui/host_options_screen.json", - "host_weather_buttons/sub_tab": "ui/host_options_screen.json", - "host_weather_buttons/sub_tab/host_main_grid": "ui/host_options_screen.json", - "host_menu_grid_item": "ui/host_options_screen.json", - "host_menu_grid_item/host_option_banner": "ui/host_options_screen.json", - "host_main_buttons": "ui/host_options_screen.json", - "host_main_buttons/host_main_grid": "ui/host_options_screen.json", - "host_panel": "ui/host_options_screen.json", - "host_panel/host_main_panel": "ui/host_options_screen.json", - "host_panel/host_teleport_panel": "ui/host_options_screen.json", - "host_panel/host_teleport_player_panel": "ui/host_options_screen.json", - "host_panel/host_time_panel": "ui/host_options_screen.json", - "host_panel/host_weather_panel": "ui/host_options_screen.json", - }, - "bed": { - "in_bed_screen": "ui/in_bed_screen.json", - "in_bed_screen_content": "ui/in_bed_screen.json", - "in_bed_screen_content/wake_up_button_panel": "ui/in_bed_screen.json", - "in_bed_screen_content/wake_up_button_panel/wake_up_button": "ui/in_bed_screen.json", - "in_bed_screen_content/wake_up_button_panel/spacer": "ui/in_bed_screen.json", - "in_bed_screen_content/wake_up_button_panel/chat_button": "ui/in_bed_screen.json", - "in_bed_screen_content/wake_up_label_panel": "ui/in_bed_screen.json", - "in_bed_screen_content/select_button": "ui/in_bed_screen.json", - "background": "ui/in_bed_screen.json", - }, - "im_reader": { - "reader_button_contents": "ui/immersive_reader.json", - "reader_button": "ui/immersive_reader.json", - "webview": "ui/immersive_reader.json", - "loading": "ui/immersive_reader.json", - "loading/animation_item": "ui/immersive_reader.json", - "loading/animation_item/animation": "ui/immersive_reader.json", - "loading/loading_text_item": "ui/immersive_reader.json", - "loading/loading_text_item/loading_text": "ui/immersive_reader.json", - "loading/bottom_padding": "ui/immersive_reader.json", - "loading/cancel_button": "ui/immersive_reader.json", - "no_retry_error_button": "ui/immersive_reader.json", - "retry_error_buttons": "ui/immersive_reader.json", - "retry_error_buttons/try_again": "ui/immersive_reader.json", - "retry_error_buttons/middle_padding": "ui/immersive_reader.json", - "retry_error_buttons/cancel": "ui/immersive_reader.json", - "error": "ui/immersive_reader.json", - "error/error_text": "ui/immersive_reader.json", - "error/error_buttons": "ui/immersive_reader.json", - "error/error_buttons/retry": "ui/immersive_reader.json", - "error/error_buttons/no_retry": "ui/immersive_reader.json", - "loading_and_error_panel": "ui/immersive_reader.json", - "loading_and_error_panel/loading": "ui/immersive_reader.json", - "loading_and_error_panel/error": "ui/immersive_reader.json", - "immersive_reader_screen_content": "ui/immersive_reader.json", - "immersive_reader_screen_content/loading_and_error": "ui/immersive_reader.json", - "immersive_reader_screen_content/webview": "ui/immersive_reader.json", - "immersive_reader_screen": "ui/immersive_reader.json", - }, - "crafting": { - "inventory_x_gamepad_helper": "ui/inventory_screen.json", - "inventory_y_gamepad_helper": "ui/inventory_screen.json", - "inventory_a_gamepad_helper": "ui/inventory_screen.json", - "inventory_b_gamepad_helper": "ui/inventory_screen.json", - "gamepad_helper_left_trigger": "ui/inventory_screen.json", - "gamepad_helper_right_trigger": "ui/inventory_screen.json", - "container_gamepad_helpers_second_row": "ui/inventory_screen.json", - "container_gamepad_helpers_second_row/buffer_panel_left": "ui/inventory_screen.json", - "container_gamepad_helpers_second_row/left_thumbstick_visibility": "ui/inventory_screen.json", - "container_gamepad_helpers_second_row/left_thumbstick_visibility/gamepad_helper_thumbstick_left": "ui/inventory_screen.json", - "container_gamepad_helpers_second_row/fill_panel": "ui/inventory_screen.json", - "container_gamepad_helpers_second_row/right_thumbstick_visibility": "ui/inventory_screen.json", - "container_gamepad_helpers_second_row/right_thumbstick_visibility/gamepad_helper_thumbstick_right": "ui/inventory_screen.json", - "container_gamepad_helpers_second_row/buffer_panel_right": "ui/inventory_screen.json", - "inventory_container_slot_button": "ui/inventory_screen.json", - "creative_hotbar_container_slot_button": "ui/inventory_screen.json", - "no_coalesce_container_slot_button": "ui/inventory_screen.json", - "creative_no_coalesce_container_slot_button": "ui/inventory_screen.json", - "output_no_coalesce_container_slot_button": "ui/inventory_screen.json", - "item_renderer": "ui/inventory_screen.json", - "equipment_icon": "ui/inventory_screen.json", - "construction_icon": "ui/inventory_screen.json", - "nature_icon": "ui/inventory_screen.json", - "items_icon": "ui/inventory_screen.json", - "empty_tab_panel": "ui/inventory_screen.json", - "empty_tab_panel/img": "ui/inventory_screen.json", - "top_tab": "ui/inventory_screen.json", - "search_tab": "ui/inventory_screen.json", - "construction_tab": "ui/inventory_screen.json", - "equipment_tab": "ui/inventory_screen.json", - "nature_tab": "ui/inventory_screen.json", - "items_tab": "ui/inventory_screen.json", - "tab_navigation_panel_layout": "ui/inventory_screen.json", - "tab_navigation_panel_layout/navigation_tabs": "ui/inventory_screen.json", - "tab_navigation_panel_layout/navigation_tabs/content": "ui/inventory_screen.json", - "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel": "ui/inventory_screen.json", - "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel/construction_tab_factory": "ui/inventory_screen.json", - "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel": "ui/inventory_screen.json", - "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel/equipment_tab_factory": "ui/inventory_screen.json", - "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel": "ui/inventory_screen.json", - "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel/items_tab_factory": "ui/inventory_screen.json", - "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel": "ui/inventory_screen.json", - "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel/nature_tab_factory": "ui/inventory_screen.json", - "tab_navigation_panel_layout/navigation_tabs/content/fill_panel_0": "ui/inventory_screen.json", - "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder": "ui/inventory_screen.json", - "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_end_creative": "ui/inventory_screen.json", - "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_creative": "ui/inventory_screen.json", - "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_survival": "ui/inventory_screen.json", - "tab_content_padding": "ui/inventory_screen.json", - "creative_label": "ui/inventory_screen.json", - "tab_content": "ui/inventory_screen.json", - "tab_content/tab_content_search_bar_panel": "ui/inventory_screen.json", - "tab_content/tab_content_search_bar_panel/vertical_padding_1": "ui/inventory_screen.json", - "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder": "ui/inventory_screen.json", - "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_1": "ui/inventory_screen.json", - "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/creative_label": "ui/inventory_screen.json", - "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_2": "ui/inventory_screen.json", - "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder": "ui/inventory_screen.json", - "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder/filter_toggle": "ui/inventory_screen.json", - "tab_content/tab_content_search_bar_panel/vertical_padding_2": "ui/inventory_screen.json", - "tab_content/tab_content_search_bar_panel/search_and_filter_panel": "ui/inventory_screen.json", - "tab_content/tab_content_search_bar_panel/search_and_filter_panel/text_edit_control": "ui/inventory_screen.json", - "tab_content/tab_content_search_bar_panel/search_and_filter_panel/padding_1": "ui/inventory_screen.json", - "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder": "ui/inventory_screen.json", - "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder/filter_toggle": "ui/inventory_screen.json", - "tab_content/tab_content_search_bar_panel/vertical_padding_3": "ui/inventory_screen.json", - "tab_content/tab_content_search_bar_panel/scroll_pane": "ui/inventory_screen.json", - "tab_content/nodrop_zone": "ui/inventory_screen.json", - "armor_overlay": "ui/inventory_screen.json", - "offhand_overlay": "ui/inventory_screen.json", - "armor_overlay_helmet": "ui/inventory_screen.json", - "armor_overlay_chest": "ui/inventory_screen.json", - "armor_overlay_legs": "ui/inventory_screen.json", - "armor_image_feet": "ui/inventory_screen.json", - "armor_overlay_shield": "ui/inventory_screen.json", - "player_armor_panel": "ui/inventory_screen.json", - "player_armor_panel/player_bg": "ui/inventory_screen.json", - "player_armor_panel/player_bg/player_renderer_panel": "ui/inventory_screen.json", - "player_armor_panel/player_bg/player_renderer_panel/player_renderer": "ui/inventory_screen.json", - "player_armor_panel/player_preview_border": "ui/inventory_screen.json", - "player_armor_panel/armor_grid": "ui/inventory_screen.json", - "player_armor_panel/armor_grid/head_grid_item": "ui/inventory_screen.json", - "player_armor_panel/armor_grid/chest_grid_item": "ui/inventory_screen.json", - "player_armor_panel/armor_grid/legs_grid_item": "ui/inventory_screen.json", - "player_armor_panel/armor_grid/feet_grid_item": "ui/inventory_screen.json", - "player_armor_panel/offhand_grid": "ui/inventory_screen.json", - "player_armor_panel/offhand_grid/offhand_grid_item": "ui/inventory_screen.json", - "crafting_label": "ui/inventory_screen.json", - "inventory_label": "ui/inventory_screen.json", - "crafting_arrow": "ui/inventory_screen.json", - "crafting_arrow_large": "ui/inventory_screen.json", - "crafting_input_grid_item": "ui/inventory_screen.json", - "crafting_grid_3x3": "ui/inventory_screen.json", - "crafting_grid_3x3/crafting_input_item_top_left": "ui/inventory_screen.json", - "crafting_grid_3x3/crafting_input_item_top_mid": "ui/inventory_screen.json", - "crafting_grid_3x3/crafting_input_item_top_right": "ui/inventory_screen.json", - "crafting_grid_3x3/crafting_input_item_mid_left": "ui/inventory_screen.json", - "crafting_grid_3x3/crafting_input_item_middle": "ui/inventory_screen.json", - "crafting_grid_3x3/crafting_input_item_mid_right": "ui/inventory_screen.json", - "crafting_grid_3x3/crafting_input_item_bot_left": "ui/inventory_screen.json", - "crafting_grid_3x3/crafting_input_item_bot_mid": "ui/inventory_screen.json", - "crafting_grid_3x3/crafting_input_item_bot_right": "ui/inventory_screen.json", - "crafting_grid_2x2": "ui/inventory_screen.json", - "crafting_grid_2x2/crafting_input_item_top_left": "ui/inventory_screen.json", - "crafting_grid_2x2/crafting_input_item_top_right": "ui/inventory_screen.json", - "crafting_grid_2x2/crafting_input_item_bot_left": "ui/inventory_screen.json", - "crafting_grid_2x2/crafting_input_item_bot_right": "ui/inventory_screen.json", - "output_grid_3x3": "ui/inventory_screen.json", - "output_grid_3x3/work_bench_output": "ui/inventory_screen.json", - "output_grid_2x2": "ui/inventory_screen.json", - "output_grid_2x2/work_bench_output": "ui/inventory_screen.json", - "work_bench_panel_3x3": "ui/inventory_screen.json", - "work_bench_panel_3x3/inventory_label": "ui/inventory_screen.json", - "work_bench_panel_3x3/crafting_arrow_large": "ui/inventory_screen.json", - "work_bench_panel_3x3/crafting_grid_3x3_with_label_0": "ui/inventory_screen.json", - "work_bench_panel_3x3/work_bench_output_grid": "ui/inventory_screen.json", - "crafting_grid_3x3_with_label": "ui/inventory_screen.json", - "crafting_grid_3x3_with_label/crafting_label": "ui/inventory_screen.json", - "crafting_grid_3x3_with_label/crafting_grid_3x3": "ui/inventory_screen.json", - "crafting_grid_2x2_with_label": "ui/inventory_screen.json", - "crafting_grid_2x2_with_label/crafting_label": "ui/inventory_screen.json", - "crafting_grid_2x2_with_label/crafting_grid_2x2": "ui/inventory_screen.json", - "crafting_panel_2x2": "ui/inventory_screen.json", - "crafting_panel_2x2/crafting_arrow": "ui/inventory_screen.json", - "crafting_panel_2x2/crafting_table": "ui/inventory_screen.json", - "crafting_panel_2x2/crafting_grid_2x2": "ui/inventory_screen.json", - "crafting_panel_2x2/survival_crafting_output_grid": "ui/inventory_screen.json", - "survival_panel_top_half": "ui/inventory_screen.json", - "survival_panel_top_half/player_armor_panel": "ui/inventory_screen.json", - "survival_panel_top_half/crafting_panel": "ui/inventory_screen.json", - "crafting_panel_top_half": "ui/inventory_screen.json", - "crafting_panel_top_half/crafting_panel": "ui/inventory_screen.json", - "recipe_container_cell_images": "ui/inventory_screen.json", - "cell_image_recipe_default": "ui/inventory_screen.json", - "cell_image_recipe_group_head_collapsed": "ui/inventory_screen.json", - "cell_image_recipe_group_head_expanded": "ui/inventory_screen.json", - "cell_image_recipe_group_item": "ui/inventory_screen.json", - "cell_image_recipe_selected": "ui/inventory_screen.json", - "cell_image_recipe_default_red": "ui/inventory_screen.json", - "container_cell_images": "ui/inventory_screen.json", - "container_cell_images/cell_classic": "ui/inventory_screen.json", - "container_cell_images/cell_normal": "ui/inventory_screen.json", - "container_cell_images/cell_invert": "ui/inventory_screen.json", - "container_cell_images/cell_red": "ui/inventory_screen.json", - "container_cell_images/cell_selected": "ui/inventory_screen.json", - "container_cell_images/cell_darkgrey": "ui/inventory_screen.json", - "crafting_container_cell_images": "ui/inventory_screen.json", - "cell_image": "ui/inventory_screen.json", - "cell_image_classic": "ui/inventory_screen.json", - "cell_image_normal": "ui/inventory_screen.json", - "cell_image_invert": "ui/inventory_screen.json", - "cell_image_red": "ui/inventory_screen.json", - "cell_image_selected": "ui/inventory_screen.json", - "cell_image_darkgrey": "ui/inventory_screen.json", - "container_overlay_images": "ui/inventory_screen.json", - "container_overlay_images/expand": "ui/inventory_screen.json", - "container_overlay_images/contract": "ui/inventory_screen.json", - "item_overlay_image": "ui/inventory_screen.json", - "item_overlay_contract": "ui/inventory_screen.json", - "item_overlay_expand": "ui/inventory_screen.json", - "inventory_container_item": "ui/inventory_screen.json", - "inventory_container_item/item_cell": "ui/inventory_screen.json", - "inventory_container_item/item_cell/item": "ui/inventory_screen.json", - "inventory_container_item/item_cell/item/stack_count_label": "ui/inventory_screen.json", - "inventory_container_item/item_cell/durability_bar": "ui/inventory_screen.json", - "inventory_container_item/item_cell/storage_bar": "ui/inventory_screen.json", - "inventory_container_item/item_cell_overlay_ref": "ui/inventory_screen.json", - "inventory_container_item/item_selected_image": "ui/inventory_screen.json", - "inventory_container_item/item_button_ref": "ui/inventory_screen.json", - "inventory_container_item/container_item_lock_overlay": "ui/inventory_screen.json", - "inventory_container_item/item_lock_cell_image": "ui/inventory_screen.json", - "inventory_container_item/bundle_slot_panel": "ui/inventory_screen.json", - "grid_item_for_recipe_book": "ui/inventory_screen.json", - "scroll_grid": "ui/inventory_screen.json", - "scroll_grid_panel": "ui/inventory_screen.json", - "scroll_grid_panel/grid": "ui/inventory_screen.json", - "recipe_book_scroll_panel": "ui/inventory_screen.json", - "scroll_panel": "ui/inventory_screen.json", - "filter_toggle": "ui/inventory_screen.json", - "player_inventory": "ui/inventory_screen.json", - "player_inventory/common_panel": "ui/inventory_screen.json", - "player_inventory/inventory_panel_top_half": "ui/inventory_screen.json", - "player_inventory/inventory_panel_bottom_half": "ui/inventory_screen.json", - "player_inventory/hotbar_grid": "ui/inventory_screen.json", - "recipe_book": "ui/inventory_screen.json", - "recipe_book/gamepad_helper_bumpers": "ui/inventory_screen.json", - "recipe_book/tab_navigation_panel": "ui/inventory_screen.json", - "recipe_book/bg": "ui/inventory_screen.json", - "recipe_book/tab_content_panel": "ui/inventory_screen.json", - "recipe_book/creative_hotbar_panel": "ui/inventory_screen.json", - "creative_hotbar_panel": "ui/inventory_screen.json", - "creative_hotbar_panel/creative_hotbar_background": "ui/inventory_screen.json", - "creative_hotbar_panel/creative_hotbar_background/hotbar_grid": "ui/inventory_screen.json", - "toolbar_panel": "ui/inventory_screen.json", - "toolbar_panel/toolbar_background": "ui/inventory_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel": "ui/inventory_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor": "ui/inventory_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor/gamepad_helper_left_trigger": "ui/inventory_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_0": "ui/inventory_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel": "ui/inventory_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel/creative_layout_toggle": "ui/inventory_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": "ui/inventory_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel": "ui/inventory_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel/recipe_book_layout_toggle": "ui/inventory_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": "ui/inventory_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel": "ui/inventory_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel/survival_layout_toggle": "ui/inventory_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_3": "ui/inventory_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": "ui/inventory_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": "ui/inventory_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": "ui/inventory_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": "ui/inventory_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_4": "ui/inventory_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor": "ui/inventory_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor/gamepad_helper_right_trigger": "ui/inventory_screen.json", - "inventory_screen_base": "ui/inventory_screen.json", - "crafting_screen": "ui/inventory_screen.json", - "inventory_screen": "ui/inventory_screen.json", - "recipe_inventory_screen_content": "ui/inventory_screen.json", - "recipe_inventory_screen_content/content_stack_panel": "ui/inventory_screen.json", - "recipe_inventory_screen_content/content_stack_panel/recipe_book": "ui/inventory_screen.json", - "recipe_inventory_screen_content/content_stack_panel/center_fold": "ui/inventory_screen.json", - "recipe_inventory_screen_content/content_stack_panel/survival_padding": "ui/inventory_screen.json", - "recipe_inventory_screen_content/content_stack_panel/player_inventory": "ui/inventory_screen.json", - "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor": "ui/inventory_screen.json", - "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor/toolbar_panel": "ui/inventory_screen.json", - "recipe_inventory_screen_content/inventory_take_progress_icon_button": "ui/inventory_screen.json", - "recipe_inventory_screen_content/inventory_selected_icon_button": "ui/inventory_screen.json", - "recipe_inventory_screen_content/hold_icon": "ui/inventory_screen.json", - "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel": "ui/inventory_screen.json", - "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers_second_row": "ui/inventory_screen.json", - "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers": "ui/inventory_screen.json", - "recipe_inventory_screen_content/selected_item_details_factory": "ui/inventory_screen.json", - "recipe_inventory_screen_content/item_lock_notification_factory": "ui/inventory_screen.json", - "recipe_inventory_screen_content/flying_item_renderer": "ui/inventory_screen.json", - }, - "crafting_pocket": { - "survival_icon": "ui/inventory_screen_pocket.json", - "full_screen_icon": "ui/inventory_screen_pocket.json", - "crafting_icon": "ui/inventory_screen_pocket.json", - "armor_icon": "ui/inventory_screen_pocket.json", - "crafting_arrow_down": "ui/inventory_screen_pocket.json", - "empty_tab_panel": "ui/inventory_screen_pocket.json", - "left_tab": "ui/inventory_screen_pocket.json", - "right_tab": "ui/inventory_screen_pocket.json", - "full_screen_tab": "ui/inventory_screen_pocket.json", - "crafting_tab": "ui/inventory_screen_pocket.json", - "armor_tab": "ui/inventory_screen_pocket.json", - "search_tab": "ui/inventory_screen_pocket.json", - "construction_tab": "ui/inventory_screen_pocket.json", - "equipment_tab": "ui/inventory_screen_pocket.json", - "items_tab": "ui/inventory_screen_pocket.json", - "nature_tab": "ui/inventory_screen_pocket.json", - "inventory_tab": "ui/inventory_screen_pocket.json", - "left_tab_navigation_panel_pocket": "ui/inventory_screen_pocket.json", - "left_tab_navigation_panel_pocket/content": "ui/inventory_screen_pocket.json", - "left_tab_navigation_panel_pocket/content/search_tab_panel": "ui/inventory_screen_pocket.json", - "left_tab_navigation_panel_pocket/content/search_tab_panel/search_tab": "ui/inventory_screen_pocket.json", - "left_tab_navigation_panel_pocket/content/construction_tab_panel": "ui/inventory_screen_pocket.json", - "left_tab_navigation_panel_pocket/content/construction_tab_panel/construction_tab_factory": "ui/inventory_screen_pocket.json", - "left_tab_navigation_panel_pocket/content/equipment_tab_panel": "ui/inventory_screen_pocket.json", - "left_tab_navigation_panel_pocket/content/equipment_tab_panel/equipment_tab_factory": "ui/inventory_screen_pocket.json", - "left_tab_navigation_panel_pocket/content/items_tab_panel": "ui/inventory_screen_pocket.json", - "left_tab_navigation_panel_pocket/content/items_tab_panel/items_tab_factory": "ui/inventory_screen_pocket.json", - "left_tab_navigation_panel_pocket/content/nature_tab_panel": "ui/inventory_screen_pocket.json", - "left_tab_navigation_panel_pocket/content/nature_tab_panel/nature_tab_factory": "ui/inventory_screen_pocket.json", - "left_tab_navigation_panel_pocket/content/fill": "ui/inventory_screen_pocket.json", - "left_tab_navigation_panel_pocket/content/inventory_tab": "ui/inventory_screen_pocket.json", - "right_tab_navigation_panel_pocket": "ui/inventory_screen_pocket.json", - "right_tab_navigation_panel_pocket/content": "ui/inventory_screen_pocket.json", - "right_tab_navigation_panel_pocket/content/close": "ui/inventory_screen_pocket.json", - "right_tab_navigation_panel_pocket/content/close/nodrop_zone": "ui/inventory_screen_pocket.json", - "right_tab_navigation_panel_pocket/content/close/close_button": "ui/inventory_screen_pocket.json", - "right_tab_navigation_panel_pocket/content/fill": "ui/inventory_screen_pocket.json", - "right_tab_navigation_panel_pocket/content/full_screen_tab": "ui/inventory_screen_pocket.json", - "right_tab_navigation_panel_pocket/content/crafting_tab": "ui/inventory_screen_pocket.json", - "right_tab_navigation_panel_pocket/content/armor_tab": "ui/inventory_screen_pocket.json", - "recipe_book_tab_content": "ui/inventory_screen_pocket.json", - "inventory_tab_content": "ui/inventory_screen_pocket.json", - "right_tab_content": "ui/inventory_screen_pocket.json", - "right_tab_content/bg": "ui/inventory_screen_pocket.json", - "right_tab_content/content": "ui/inventory_screen_pocket.json", - "crafting_input_grid_item": "ui/inventory_screen_pocket.json", - "crafting_grid_3x3": "ui/inventory_screen_pocket.json", - "crafting_grid_2x2": "ui/inventory_screen_pocket.json", - "output_grid_and_label": "ui/inventory_screen_pocket.json", - "output_grid_and_label/recipe_item_label": "ui/inventory_screen_pocket.json", - "output_grid_and_label/output_grid": "ui/inventory_screen_pocket.json", - "output_grid": "ui/inventory_screen_pocket.json", - "output_grid/work_bench_output": "ui/inventory_screen_pocket.json", - "crafting_grid_3x3_with_label": "ui/inventory_screen_pocket.json", - "crafting_grid_3x3_with_label/crafting_label": "ui/inventory_screen_pocket.json", - "crafting_grid_3x3_with_label/crafting_grid_3x3": "ui/inventory_screen_pocket.json", - "crafting_grid_2x2_with_label": "ui/inventory_screen_pocket.json", - "crafting_grid_2x2_with_label/crafting_label": "ui/inventory_screen_pocket.json", - "crafting_grid_2x2_with_label/crafting_grid_2x2": "ui/inventory_screen_pocket.json", - "scroll_background_image": "ui/inventory_screen_pocket.json", - "grid_item_for_inventory": "ui/inventory_screen_pocket.json", - "survival_inventory_grid": "ui/inventory_screen_pocket.json", - "scroll_panel_pocket": "ui/inventory_screen_pocket.json", - "recipe_book_scroll_panel_pocket": "ui/inventory_screen_pocket.json", - "survival_scroll_panel": "ui/inventory_screen_pocket.json", - "pocket_armor_tab_content": "ui/inventory_screen_pocket.json", - "pocket_armor_tab_content/label_and_renderer": "ui/inventory_screen_pocket.json", - "pocket_armor_tab_content/label_and_renderer/label_panel": "ui/inventory_screen_pocket.json", - "pocket_armor_tab_content/label_and_renderer/label_panel/armor_label": "ui/inventory_screen_pocket.json", - "pocket_armor_tab_content/label_and_renderer/renderer_panel": "ui/inventory_screen_pocket.json", - "pocket_armor_tab_content/label_and_renderer/renderer_panel/armor_renderer": "ui/inventory_screen_pocket.json", - "pocket_armor_tab_content/equipment_and_renderer": "ui/inventory_screen_pocket.json", - "pocket_armor_tab_content/equipment_and_renderer/equipment": "ui/inventory_screen_pocket.json", - "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid": "ui/inventory_screen_pocket.json", - "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/head_grid_item": "ui/inventory_screen_pocket.json", - "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/chest_grid_item": "ui/inventory_screen_pocket.json", - "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/legs_grid_item": "ui/inventory_screen_pocket.json", - "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/feet_grid_item": "ui/inventory_screen_pocket.json", - "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid": "ui/inventory_screen_pocket.json", - "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid/offhand_grid_item": "ui/inventory_screen_pocket.json", - "pocket_armor_tab_content/equipment_and_renderer/armor_panel": "ui/inventory_screen_pocket.json", - "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player": "ui/inventory_screen_pocket.json", - "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border": "ui/inventory_screen_pocket.json", - "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg": "ui/inventory_screen_pocket.json", - "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg/player_renderer_panel": "ui/inventory_screen_pocket.json", - "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg/player_renderer_panel/player_renderer": "ui/inventory_screen_pocket.json", - "hotbar_panel": "ui/inventory_screen_pocket.json", - "hotbar_panel/bg": "ui/inventory_screen_pocket.json", - "hotbar_panel/hotbar_grid": "ui/inventory_screen_pocket.json", - "hotbar_grid_item": "ui/inventory_screen_pocket.json", - "survival_panel_pocket": "ui/inventory_screen_pocket.json", - "survival_panel_pocket/crafting_panel": "ui/inventory_screen_pocket.json", - "survival_panel_pocket/crafting_arrow_down": "ui/inventory_screen_pocket.json", - "survival_panel_pocket/crafting_table": "ui/inventory_screen_pocket.json", - "survival_panel_pocket/output": "ui/inventory_screen_pocket.json", - "survival_panel_crafting_pocket": "ui/inventory_screen_pocket.json", - "survival_panel_crafting_pocket/crafting_panel": "ui/inventory_screen_pocket.json", - "survival_panel_crafting_pocket/crafting_arrow_down": "ui/inventory_screen_pocket.json", - "survival_panel_crafting_pocket/output": "ui/inventory_screen_pocket.json", - "inventory_screen_pocket_base": "ui/inventory_screen_pocket.json", - "crafting_screen_pocket": "ui/inventory_screen_pocket.json", - "inventory_screen_pocket": "ui/inventory_screen_pocket.json", - "left_panel": "ui/inventory_screen_pocket.json", - "left_panel/left_background": "ui/inventory_screen_pocket.json", - "left_panel/recipe_book_tab_content": "ui/inventory_screen_pocket.json", - "left_panel/inventory_tab_content": "ui/inventory_screen_pocket.json", - "right_panel": "ui/inventory_screen_pocket.json", - "right_panel/right_background": "ui/inventory_screen_pocket.json", - "right_panel/help_button": "ui/inventory_screen_pocket.json", - "right_panel/crafting_tab_content": "ui/inventory_screen_pocket.json", - "right_panel/armor_tab_content": "ui/inventory_screen_pocket.json", - "both_panels": "ui/inventory_screen_pocket.json", - "both_panels/left_tab_navigation_panel_pocket": "ui/inventory_screen_pocket.json", - "both_panels/left_panel": "ui/inventory_screen_pocket.json", - "both_panels/offset_panel": "ui/inventory_screen_pocket.json", - "both_panels/offset_panel/center_bg": "ui/inventory_screen_pocket.json", - "both_panels/right_panel": "ui/inventory_screen_pocket.json", - "both_panels/right_tab_navigation_panel_pocket": "ui/inventory_screen_pocket.json", - "gamepad_helper_border": "ui/inventory_screen_pocket.json", - "gamepad_helper_border/left_gamepad_panel": "ui/inventory_screen_pocket.json", - "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_bumper": "ui/inventory_screen_pocket.json", - "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_trigger": "ui/inventory_screen_pocket.json", - "gamepad_helper_border/both_panels": "ui/inventory_screen_pocket.json", - "gamepad_helper_border/right_gamepad_panel": "ui/inventory_screen_pocket.json", - "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper_creative": "ui/inventory_screen_pocket.json", - "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper": "ui/inventory_screen_pocket.json", - "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_trigger": "ui/inventory_screen_pocket.json", - "hotbar_and_panels": "ui/inventory_screen_pocket.json", - "hotbar_and_panels/padding_1": "ui/inventory_screen_pocket.json", - "hotbar_and_panels/gamepad_helper_border": "ui/inventory_screen_pocket.json", - "hotbar_and_panels/hotbar_section_panel": "ui/inventory_screen_pocket.json", - "hotbar_and_panels/hotbar_section_panel/hotbar": "ui/inventory_screen_pocket.json", - "recipe_inventory_screen_content_pocket": "ui/inventory_screen_pocket.json", - "recipe_inventory_screen_content_pocket/container_gamepad_helpers_pocket": "ui/inventory_screen_pocket.json", - "recipe_inventory_screen_content_pocket/toast_screen_content": "ui/inventory_screen_pocket.json", - "recipe_inventory_screen_content_pocket/selected_item_details_factory": "ui/inventory_screen_pocket.json", - "recipe_inventory_screen_content_pocket/item_lock_notification_factory": "ui/inventory_screen_pocket.json", - "recipe_inventory_screen_content_pocket/base_panel": "ui/inventory_screen_pocket.json", - "recipe_inventory_screen_content_pocket/base_panel/root_panel": "ui/inventory_screen_pocket.json", - "recipe_inventory_screen_content_pocket/base_panel/inventory_selected_icon_button": "ui/inventory_screen_pocket.json", - "recipe_inventory_screen_content_pocket/base_panel/gamepad_cursor": "ui/inventory_screen_pocket.json", - "recipe_inventory_screen_content_pocket/base_panel/hold_icon": "ui/inventory_screen_pocket.json", - "recipe_inventory_screen_content_pocket/base_panel/hotbar_and_panels": "ui/inventory_screen_pocket.json", - "recipe_inventory_screen_content_pocket/flying_item_renderer": "ui/inventory_screen_pocket.json", - }, - "invite": { - "black_border": "ui/invite_screen.json", - "black_border_hover": "ui/invite_screen.json", - "platform_icon": "ui/invite_screen.json", - "grey_borderless_locked": "ui/invite_screen.json", - "checked_locked_image": "ui/invite_screen.json", - "unchecked_locked_image": "ui/invite_screen.json", - "left_arrow_image": "ui/invite_screen.json", - "right_arrow_image": "ui/invite_screen.json", - "account_link_image": "ui/invite_screen.json", - "panel_text": "ui/invite_screen.json", - "loading_friends": "ui/invite_screen.json", - "account_link_icon": "ui/invite_screen.json", - "account_link_icon/space_01": "ui/invite_screen.json", - "account_link_icon/account_link_image": "ui/invite_screen.json", - "account_link_icon/space_03": "ui/invite_screen.json", - "gamerpic": "ui/invite_screen.json", - "third_party_profile_pic": "ui/invite_screen.json", - "gamerpic_panel": "ui/invite_screen.json", - "gamerpic_panel/black_border": "ui/invite_screen.json", - "gamerpic_panel/gamerpic": "ui/invite_screen.json", - "gamerpic_panel/online_indication_positioner": "ui/invite_screen.json", - "gamerpic_panel/online_indication_positioner/indicator_images": "ui/invite_screen.json", - "third_party_profile_pic_panel": "ui/invite_screen.json", - "third_party_profile_pic_panel/black_border": "ui/invite_screen.json", - "third_party_profile_pic_panel/third_party_profile_pic": "ui/invite_screen.json", - "platform_icon_panel": "ui/invite_screen.json", - "platform_icon_panel/platform_icon": "ui/invite_screen.json", - "status_image": "ui/invite_screen.json", - "online_image": "ui/invite_screen.json", - "offline_image": "ui/invite_screen.json", - "online_indicator": "ui/invite_screen.json", - "online_indicator/online_image": "ui/invite_screen.json", - "checkbox_panel": "ui/invite_screen.json", - "checked_panel": "ui/invite_screen.json", - "checked_panel/checked_image": "ui/invite_screen.json", - "unchecked_panel": "ui/invite_screen.json", - "unchecked_panel/unchecked_image": "ui/invite_screen.json", - "checked_locked_panel": "ui/invite_screen.json", - "checked_locked_panel/checked_image": "ui/invite_screen.json", - "unchecked_locked_panel": "ui/invite_screen.json", - "unchecked_locked_panel/unchecked_image": "ui/invite_screen.json", - "checked_hover_panel": "ui/invite_screen.json", - "checked_hover_panel/checked_hover_image": "ui/invite_screen.json", - "unchecked_hover_panel": "ui/invite_screen.json", - "unchecked_hover_panel/unchecked_hover_image": "ui/invite_screen.json", - "friend_label": "ui/invite_screen.json", - "friend_grid_xbl_gamertag": "ui/invite_screen.json", - "friend_grid_current_game_label": "ui/invite_screen.json", - "friend_grid_third_party_tag": "ui/invite_screen.json", - "friend_background": "ui/invite_screen.json", - "friend_background_hover": "ui/invite_screen.json", - "friend_background_borderless": "ui/invite_screen.json", - "hover_friend_button": "ui/invite_screen.json", - "hover_friend_button/friend_button_layout": "ui/invite_screen.json", - "hover_friend_button/hover_text": "ui/invite_screen.json", - "linked_hover_friend_button": "ui/invite_screen.json", - "linked_hover_friend_button/hover_text": "ui/invite_screen.json", - "msa_friend_button_layout": "ui/invite_screen.json", - "msa_friend_button_layout/spacer01": "ui/invite_screen.json", - "msa_friend_button_layout/platform_icon_spacer": "ui/invite_screen.json", - "msa_friend_button_layout/spacer_02": "ui/invite_screen.json", - "msa_friend_button_layout/friend_grid_label_layout": "ui/invite_screen.json", - "msa_friend_button_layout/friend_grid_label_layout/spacer_01": "ui/invite_screen.json", - "msa_friend_button_layout/friend_grid_label_layout/friend_grid_xbl_gamertag": "ui/invite_screen.json", - "msa_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label": "ui/invite_screen.json", - "platform_friend_button_layout": "ui/invite_screen.json", - "platform_friend_button_layout/spacer01": "ui/invite_screen.json", - "platform_friend_button_layout/platform_icon_spacer": "ui/invite_screen.json", - "platform_friend_button_layout/third_party_pic_panel_positioner": "ui/invite_screen.json", - "platform_friend_button_layout/third_party_pic_panel_positioner/pp": "ui/invite_screen.json", - "platform_friend_button_layout/spacer_02": "ui/invite_screen.json", - "platform_friend_button_layout/friend_grid_label_layout": "ui/invite_screen.json", - "platform_friend_button_layout/friend_grid_label_layout/spacer_01": "ui/invite_screen.json", - "platform_friend_button_layout/friend_grid_label_layout/friend_grid_third_party_tag": "ui/invite_screen.json", - "platform_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label": "ui/invite_screen.json", - "platform_friend_button_layout/platform_icon_positioner": "ui/invite_screen.json", - "platform_friend_button_layout/platform_icon_positioner/platform_icon": "ui/invite_screen.json", - "platform_friend_button_layout/online_indication_positioner": "ui/invite_screen.json", - "platform_friend_button_layout/online_indication_positioner/indicator_images": "ui/invite_screen.json", - "linked_friend_button_layout": "ui/invite_screen.json", - "linked_friend_button_layout/spacer01": "ui/invite_screen.json", - "linked_friend_button_layout/platform_icon_positioner": "ui/invite_screen.json", - "linked_friend_button_layout/platform_icon_positioner/platform_icon": "ui/invite_screen.json", - "linked_friend_button_layout/spacer02": "ui/invite_screen.json", - "linked_friend_button_layout/platform_profile_pictures": "ui/invite_screen.json", - "linked_friend_button_layout/platform_profile_pictures/spacer_01": "ui/invite_screen.json", - "linked_friend_button_layout/platform_profile_pictures/pp2": "ui/invite_screen.json", - "linked_friend_button_layout/platform_profile_pictures/account_link": "ui/invite_screen.json", - "linked_friend_button_layout/platform_profile_pictures/pp1": "ui/invite_screen.json", - "linked_friend_button_layout/platform_profile_pictures/spacer_03": "ui/invite_screen.json", - "linked_friend_button_layout/spacer03": "ui/invite_screen.json", - "linked_friend_button_layout/platform_profile_names": "ui/invite_screen.json", - "linked_friend_button_layout/platform_profile_names/spacer_01": "ui/invite_screen.json", - "linked_friend_button_layout/platform_profile_names/friend_grid_third_party_tag": "ui/invite_screen.json", - "linked_friend_button_layout/platform_profile_names/spacer_02": "ui/invite_screen.json", - "linked_friend_button_layout/platform_profile_names/friend_grid_xbl_gamertag": "ui/invite_screen.json", - "linked_friend_button_layout/platform_profile_names/friend_grid_current_game_label": "ui/invite_screen.json", - "linked_friend_button_layout/online_indication_positioner": "ui/invite_screen.json", - "linked_friend_button_layout/online_indication_positioner/indicator_images": "ui/invite_screen.json", - "template_msa_friend_button_layout": "ui/invite_screen.json", - "template_msa_friend_button_layout/friend_background": "ui/invite_screen.json", - "template_msa_friend_button_layout/friend_button_layout": "ui/invite_screen.json", - "template_msa_friend_button_layout/unchecked": "ui/invite_screen.json", - "template_platform_friend_button_layout": "ui/invite_screen.json", - "template_platform_friend_button_layout/friend_background": "ui/invite_screen.json", - "template_platform_friend_button_layout/friend_button_layout": "ui/invite_screen.json", - "template_platform_friend_button_layout/unchecked": "ui/invite_screen.json", - "template_linked_friend_button_layout": "ui/invite_screen.json", - "template_linked_friend_button_layout/friend_background": "ui/invite_screen.json", - "template_linked_friend_button_layout/horizontal_spacer_panel": "ui/invite_screen.json", - "template_linked_friend_button_layout/horizontal_spacer_panel/unchecked_locked": "ui/invite_screen.json", - "template_linked_friend_button_layout/horizontal_spacer_panel/friend_button_layout": "ui/invite_screen.json", - "msa_friend_button": "ui/invite_screen.json", - "msa_friend_button/checked": "ui/invite_screen.json", - "msa_friend_button/unchecked": "ui/invite_screen.json", - "msa_friend_button/checked_hover": "ui/invite_screen.json", - "msa_friend_button/unchecked_hover": "ui/invite_screen.json", - "msa_friend_button/checked_locked": "ui/invite_screen.json", - "msa_friend_button/unchecked_locked": "ui/invite_screen.json", - "msa_friend_button/checked_locked_hover": "ui/invite_screen.json", - "msa_friend_button/unchecked_locked_hover": "ui/invite_screen.json", - "platform_friend_button": "ui/invite_screen.json", - "platform_friend_button/checked": "ui/invite_screen.json", - "platform_friend_button/unchecked": "ui/invite_screen.json", - "platform_friend_button/checked_hover": "ui/invite_screen.json", - "platform_friend_button/unchecked_hover": "ui/invite_screen.json", - "platform_friend_button/checked_locked": "ui/invite_screen.json", - "platform_friend_button/unchecked_locked": "ui/invite_screen.json", - "platform_friend_button/checked_locked_hover": "ui/invite_screen.json", - "platform_friend_button/unchecked_locked_hover": "ui/invite_screen.json", - "linked_friend_button": "ui/invite_screen.json", - "linked_friend_button/checked": "ui/invite_screen.json", - "linked_friend_button/unchecked": "ui/invite_screen.json", - "linked_friend_button/checked_hover": "ui/invite_screen.json", - "linked_friend_button/unchecked_hover": "ui/invite_screen.json", - "linked_friend_button/checked_locked": "ui/invite_screen.json", - "linked_friend_button/unchecked_locked": "ui/invite_screen.json", - "linked_friend_button/checked_locked_hover": "ui/invite_screen.json", - "linked_friend_button/unchecked_locked_hover": "ui/invite_screen.json", - "msa_friend_grid_item_template": "ui/invite_screen.json", - "msa_friend_grid_item_template/friend_button_Panel": "ui/invite_screen.json", - "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner": "ui/invite_screen.json", - "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner/pp": "ui/invite_screen.json", - "msa_friend_grid_item_template/friend_button_Panel/friend_button": "ui/invite_screen.json", - "msa_friend_grid_item_template/profile_button_pannel": "ui/invite_screen.json", - "msa_friend_grid_item_template/profile_button_pannel/view_profile_button": "ui/invite_screen.json", - "msa_friend_grid_item_template/spacer_03": "ui/invite_screen.json", - "platform_friend_grid_item_template": "ui/invite_screen.json", - "platform_friend_grid_item_template/friend_button": "ui/invite_screen.json", - "friend_linked_account_grid_item_template": "ui/invite_screen.json", - "friend_linked_account_grid_item_template/friend_button": "ui/invite_screen.json", - "online_xbox_live_friend_grid_item": "ui/invite_screen.json", - "offline_xbox_live_friend_grid_item": "ui/invite_screen.json", - "online_linked_account_friend_grid_item": "ui/invite_screen.json", - "offline_linked_account_friend_grid_item": "ui/invite_screen.json", - "online_platform_friend_grid_item": "ui/invite_screen.json", - "offline_platform_friend_grid_item": "ui/invite_screen.json", - "online_xbox_live_friend_list_grid": "ui/invite_screen.json", - "offline_xbox_live_friend_list_grid": "ui/invite_screen.json", - "online_platform_friend_list_grid": "ui/invite_screen.json", - "offline_platform_friend_list_grid": "ui/invite_screen.json", - "online_linked_account_friend_list_grid": "ui/invite_screen.json", - "offline_linked_account_friend_list_grid": "ui/invite_screen.json", - "friends_pagination_controls": "ui/invite_screen.json", - "friends_pagination_controls/previous_button": "ui/invite_screen.json", - "friends_pagination_controls/center_panel": "ui/invite_screen.json", - "friends_pagination_controls/center_panel/page_counter": "ui/invite_screen.json", - "friends_pagination_controls/next_button": "ui/invite_screen.json", - "friends_category": "ui/invite_screen.json", - "friends_category/friends_grid": "ui/invite_screen.json", - "friends_category/pagination_stack_panel": "ui/invite_screen.json", - "friends_category/pagination_stack_panel/padding_1": "ui/invite_screen.json", - "friends_category/pagination_stack_panel/pagination_controls": "ui/invite_screen.json", - "friends_category/pagination_stack_panel/padding_2": "ui/invite_screen.json", - "friends_category/pagination_stack_panel/divider": "ui/invite_screen.json", - "friends_category/padding": "ui/invite_screen.json", - "frame_label": "ui/invite_screen.json", - "friend_panel": "ui/invite_screen.json", - "scrolling_content_stack": "ui/invite_screen.json", - "scrolling_content_stack/message": "ui/invite_screen.json", - "scrolling_content_stack/message/frame_label": "ui/invite_screen.json", - "scrolling_content_stack/online_platform": "ui/invite_screen.json", - "scrolling_content_stack/online_platform/frame_label": "ui/invite_screen.json", - "scrolling_content_stack/vertical_padding_0": "ui/invite_screen.json", - "scrolling_content_stack/online_platform_friend_list_category": "ui/invite_screen.json", - "scrolling_content_stack/crossplatform_disabled_panel": "ui/invite_screen.json", - "scrolling_content_stack/crossplatform_disabled_panel/disable_text": "ui/invite_screen.json", - "scrolling_content_stack/crossplatform_disable_spacer": "ui/invite_screen.json", - "scrolling_content_stack/online_cross_platform": "ui/invite_screen.json", - "scrolling_content_stack/online_cross_platform/frame_label": "ui/invite_screen.json", - "scrolling_content_stack/vertical_padding_1": "ui/invite_screen.json", - "scrolling_content_stack/online_linked_account_friend_list_category": "ui/invite_screen.json", - "scrolling_content_stack/online_xbox_live_friend_list_category": "ui/invite_screen.json", - "scrolling_content_stack/offline_platform": "ui/invite_screen.json", - "scrolling_content_stack/offline_platform/frame_label": "ui/invite_screen.json", - "scrolling_content_stack/vertical_padding_2": "ui/invite_screen.json", - "scrolling_content_stack/offline_platform_friend_list_category": "ui/invite_screen.json", - "scrolling_content_stack/no_platform_friends": "ui/invite_screen.json", - "scrolling_content_stack/no_platform_friends/no_friends_tts_wrapper": "ui/invite_screen.json", - "scrolling_content_stack/offline_cross_platform": "ui/invite_screen.json", - "scrolling_content_stack/offline_cross_platform/frame_label": "ui/invite_screen.json", - "scrolling_content_stack/vertical_padding_3": "ui/invite_screen.json", - "scrolling_content_stack/offline_linked_account_friend_list_category": "ui/invite_screen.json", - "scrolling_content_stack/offline_xbox_live_friend_list_category": "ui/invite_screen.json", - "scrolling_content_stack/no_xbox_live_friends": "ui/invite_screen.json", - "scrolling_content_stack/no_xbox_live_friends/no_friends_tts_wrapper": "ui/invite_screen.json", - "progress_bar_and_scrolling_content_panel": "ui/invite_screen.json", - "progress_bar_and_scrolling_content_panel/progress_loading_bars": "ui/invite_screen.json", - "progress_bar_and_scrolling_content_panel/invite_scrolling_area": "ui/invite_screen.json", - "no_xbox_live_friends_frame_label": "ui/invite_screen.json", - "no_platform_friends_frame_label": "ui/invite_screen.json", - "horizontal_invite_panel": "ui/invite_screen.json", - "vertical_invite_panel": "ui/invite_screen.json", - "scrolling_area": "ui/invite_screen.json", - "invite_button_content": "ui/invite_screen.json", - "invite_button_content/gameplay_helper": "ui/invite_screen.json", - "invite_button_content/button_label": "ui/invite_screen.json", - "invite_button_content_hover": "ui/invite_screen.json", - "invite_button_content_pressed": "ui/invite_screen.json", - "invite_button_content_locked": "ui/invite_screen.json", - "add_friend_button": "ui/invite_screen.json", - "profile_button_content": "ui/invite_screen.json", - "profile_button_content/button_label": "ui/invite_screen.json", - "profile_button_content_hover": "ui/invite_screen.json", - "profile_button_content_pressed": "ui/invite_screen.json", - "profile_button_content_locked": "ui/invite_screen.json", - "add_member_button": "ui/invite_screen.json", - "send_button": "ui/invite_screen.json", - "profile_button": "ui/invite_screen.json", - "horizontal_button_stack_panel": "ui/invite_screen.json", - "horizontal_button_stack_panel/add_friend_button": "ui/invite_screen.json", - "horizontal_button_stack_panel/add_member_button": "ui/invite_screen.json", - "horizontal_button_stack_panel/padding": "ui/invite_screen.json", - "horizontal_button_stack_panel/send_button": "ui/invite_screen.json", - "vertical_buttons_top_panel": "ui/invite_screen.json", - "vertical_buttons_top_panel/add_friend_button": "ui/invite_screen.json", - "vertical_buttons_top_panel/add_member_button": "ui/invite_screen.json", - "vertical_buttons_bottom_panel": "ui/invite_screen.json", - "vertical_buttons_bottom_panel/send_button": "ui/invite_screen.json", - "gamepad_helpers": "ui/invite_screen.json", - "gamepad_helpers/gamepad_helper_a": "ui/invite_screen.json", - "invite_screen": "ui/invite_screen.json", - "invite_screen_content": "ui/invite_screen.json", - "invite_screen_content/gamepad_helpers": "ui/invite_screen.json", - "invite_screen_content/invite_panel": "ui/invite_screen.json", - }, - "jigsaw_editor": { - "horizontal_buffer": "ui/jigsaw_editor_screen.json", - "vertical_buffer": "ui/jigsaw_editor_screen.json", - "common_text_label": "ui/jigsaw_editor_screen.json", - "text_edit_box": "ui/jigsaw_editor_screen.json", - "help_icon": "ui/jigsaw_editor_screen.json", - "toggle_with_label": "ui/jigsaw_editor_screen.json", - "toggle_with_label/toggle": "ui/jigsaw_editor_screen.json", - "toggle_with_label/toggle_label_padding": "ui/jigsaw_editor_screen.json", - "toggle_with_label/toggle_label_wrapper": "ui/jigsaw_editor_screen.json", - "toggle_with_label/toggle_label_wrapper/toggle_label": "ui/jigsaw_editor_screen.json", - "toggle_with_label/toggle_label_wrapper/toggle_label_disabled": "ui/jigsaw_editor_screen.json", - "data_item_title_and_edit": "ui/jigsaw_editor_screen.json", - "data_item_title_and_edit/data_title": "ui/jigsaw_editor_screen.json", - "data_item_title_and_edit/data_text_edit": "ui/jigsaw_editor_screen.json", - "data_item_title_and_edit_fill": "ui/jigsaw_editor_screen.json", - "data_item_title_and_toggle": "ui/jigsaw_editor_screen.json", - "data_item_title_and_toggle/data_title": "ui/jigsaw_editor_screen.json", - "data_item_title_and_toggle/toggle": "ui/jigsaw_editor_screen.json", - "exit_buttons": "ui/jigsaw_editor_screen.json", - "exit_buttons/done_button": "ui/jigsaw_editor_screen.json", - "exit_buttons/buffer": "ui/jigsaw_editor_screen.json", - "exit_buttons/help_button": "ui/jigsaw_editor_screen.json", - "scrolling_panel_wrapper": "ui/jigsaw_editor_screen.json", - "scrolling_panel_wrapper/scrolling_panel": "ui/jigsaw_editor_screen.json", - "scrolling_panel": "ui/jigsaw_editor_screen.json", - "scroll_panel_content": "ui/jigsaw_editor_screen.json", - "scroll_panel_content/target_pool_title_and_edit": "ui/jigsaw_editor_screen.json", - "scroll_panel_content/buffer_1": "ui/jigsaw_editor_screen.json", - "scroll_panel_content/name_title_and_edit": "ui/jigsaw_editor_screen.json", - "scroll_panel_content/buffer_2": "ui/jigsaw_editor_screen.json", - "scroll_panel_content/target_title_and_edit": "ui/jigsaw_editor_screen.json", - "scroll_panel_content/buffer_3": "ui/jigsaw_editor_screen.json", - "scroll_panel_content/final_block_title_and_edit": "ui/jigsaw_editor_screen.json", - "scroll_panel_content/buffer_4": "ui/jigsaw_editor_screen.json", - "scroll_panel_content/selection_and_placement_priority": "ui/jigsaw_editor_screen.json", - "scroll_panel_content/buffer_5": "ui/jigsaw_editor_screen.json", - "scroll_panel_content/joint_type_title_and_toggle": "ui/jigsaw_editor_screen.json", - "scroll_panel_content/buffer_6": "ui/jigsaw_editor_screen.json", - "selection_and_placement_priority": "ui/jigsaw_editor_screen.json", - "selection_and_placement_priority/selection_priority_title_and_edit": "ui/jigsaw_editor_screen.json", - "selection_and_placement_priority/buffer_1": "ui/jigsaw_editor_screen.json", - "selection_and_placement_priority/placement_priority_title_and_edit": "ui/jigsaw_editor_screen.json", - "button_panel_wrapper": "ui/jigsaw_editor_screen.json", - "button_panel_wrapper/exit_buttons": "ui/jigsaw_editor_screen.json", - "jigsaw_editor_panel": "ui/jigsaw_editor_screen.json", - "jigsaw_editor_panel/scrolling_panel": "ui/jigsaw_editor_screen.json", - "jigsaw_editor_panel/button_wrapper": "ui/jigsaw_editor_screen.json", - "jigsaw_editor_panel/button_wrapper/buttons": "ui/jigsaw_editor_screen.json", - "jigsaw_editor_content": "ui/jigsaw_editor_screen.json", - "jigsaw_editor_content/background_panel": "ui/jigsaw_editor_screen.json", - "jigsaw_editor_content/title": "ui/jigsaw_editor_screen.json", - "jigsaw_editor_content/jigsaw_editor_panel": "ui/jigsaw_editor_screen.json", - "jigsaw_editor_screen": "ui/jigsaw_editor_screen.json", - }, - "late_join": { - "animation_panel": "ui/late_join_pregame_screen.json", - "animation_panel/stacked_column": "ui/late_join_pregame_screen.json", - "animation_panel/stacked_column/waiting_animating_text": "ui/late_join_pregame_screen.json", - "gamepad_helpers": "ui/late_join_pregame_screen.json", - "gamepad_helpers/gamepad_helper_b_and_padding": "ui/late_join_pregame_screen.json", - "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b": "ui/late_join_pregame_screen.json", - "late_join_pregame_screen": "ui/late_join_pregame_screen.json", - "late_join_screen_content": "ui/late_join_pregame_screen.json", - "late_join_screen_content/animation_panel": "ui/late_join_pregame_screen.json", - "late_join_screen_content/gamepad_helpers": "ui/late_join_pregame_screen.json", - }, - "library_modal": { - "modal_button": "ui/library_modal_screen.json", - "modal_text_content": "ui/library_modal_screen.json", - "modal_ok": "ui/library_modal_screen.json", - "modal_cancel": "ui/library_modal_screen.json", - "in_game_prompt": "ui/library_modal_screen.json", - "fetch_error": "ui/library_modal_screen.json", - "content": "ui/library_modal_screen.json", - "content/fetch": "ui/library_modal_screen.json", - "content/ingame": "ui/library_modal_screen.json", - "content_wrapper": "ui/library_modal_screen.json", - "content_wrapper/content": "ui/library_modal_screen.json", - "background": "ui/library_modal_screen.json", - "library_modal_screen": "ui/library_modal_screen.json", - "text_panel": "ui/library_modal_screen.json", - "edu_icon": "ui/library_modal_screen.json", - "continue_button": "ui/library_modal_screen.json", - "paragraph": "ui/library_modal_screen.json", - "welcome_text_panel": "ui/library_modal_screen.json", - "welcome_text_panel/padding_1": "ui/library_modal_screen.json", - "welcome_text_panel/paragraph_1_wrapper": "ui/library_modal_screen.json", - "welcome_text_panel/paragraph_1_wrapper/edu_icon": "ui/library_modal_screen.json", - "welcome_text_panel/paragraph_1_wrapper/stack_buffer1": "ui/library_modal_screen.json", - "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel": "ui/library_modal_screen.json", - "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel/paragraph_1": "ui/library_modal_screen.json", - "welcome_text_panel/padding_2": "ui/library_modal_screen.json", - "welcome_text_panel/paragraph_two": "ui/library_modal_screen.json", - "welcome_text_panel/padding_3": "ui/library_modal_screen.json", - "welcome_text_panel/paragraph_three": "ui/library_modal_screen.json", - "welcome_scrolling_panel": "ui/library_modal_screen.json", - "welcome_panel_content": "ui/library_modal_screen.json", - "welcome_panel_content/background_panel": "ui/library_modal_screen.json", - "welcome_panel_content/welcome_scrolling_panel": "ui/library_modal_screen.json", - "welcome_panel_content/continue_button": "ui/library_modal_screen.json", - "welcome_panel": "ui/library_modal_screen.json", - "welcome_panel/welcome": "ui/library_modal_screen.json", - }, - "local_world_picker": { - "local_world_picker_screen": "ui/local_world_picker_screen.json", - "local_world_picker_content": "ui/local_world_picker_screen.json", - "local_world_picker_content/background": "ui/local_world_picker_screen.json", - "local_world_picker_content/panel_label": "ui/local_world_picker_screen.json", - "local_world_picker_content/content": "ui/local_world_picker_screen.json", - }, - "loom": { - "loom_label": "ui/loom_screen.json", - "arrow_icon": "ui/loom_screen.json", - "pattern_cell_image": "ui/loom_screen.json", - "container_cell_image": "ui/loom_screen.json", - "banner_outline": "ui/loom_screen.json", - "item_empty_image": "ui/loom_screen.json", - "banner_empty_image": "ui/loom_screen.json", - "dye_empty_image": "ui/loom_screen.json", - "pattern_item_empty_image": "ui/loom_screen.json", - "toolbar_background": "ui/loom_screen.json", - "highlight_slot_panel": "ui/loom_screen.json", - "highlight_slot_panel/highlight": "ui/loom_screen.json", - "highlight_slot_panel/white_border": "ui/loom_screen.json", - "pattern_slot_button": "ui/loom_screen.json", - "pattern_slot_button/hover": "ui/loom_screen.json", - "banner_pattern": "ui/loom_screen.json", - "pattern_button": "ui/loom_screen.json", - "pattern_button/banner_pattern": "ui/loom_screen.json", - "pattern_button/item_button_ref": "ui/loom_screen.json", - "scroll_grid": "ui/loom_screen.json", - "scroll_grid_panel": "ui/loom_screen.json", - "scroll_grid_panel/grid": "ui/loom_screen.json", - "scroll_panel": "ui/loom_screen.json", - "pattern_book_panel": "ui/loom_screen.json", - "pattern_book_panel/bg": "ui/loom_screen.json", - "pattern_book_panel/scroll_panel": "ui/loom_screen.json", - "result_slot_button": "ui/loom_screen.json", - "input_item_slot": "ui/loom_screen.json", - "dye_item_slot": "ui/loom_screen.json", - "material_item_slot": "ui/loom_screen.json", - "result_item_slot": "ui/loom_screen.json", - "input_slots_stack_panel": "ui/loom_screen.json", - "input_slots_stack_panel/input_item_slot": "ui/loom_screen.json", - "input_slots_stack_panel/padding_1": "ui/loom_screen.json", - "input_slots_stack_panel/dye_item_slot": "ui/loom_screen.json", - "input_slots_stack_panel/padding_2": "ui/loom_screen.json", - "input_slots_stack_panel/material_item_slot": "ui/loom_screen.json", - "result_banner_renderer": "ui/loom_screen.json", - "top_half_stack_panel": "ui/loom_screen.json", - "top_half_stack_panel/input_slots_holder": "ui/loom_screen.json", - "top_half_stack_panel/input_slots_holder/input_slots_stack_panel": "ui/loom_screen.json", - "top_half_stack_panel/padding_1": "ui/loom_screen.json", - "top_half_stack_panel/arrow_holder": "ui/loom_screen.json", - "top_half_stack_panel/arrow_holder/arrow_icon": "ui/loom_screen.json", - "top_half_stack_panel/padding_2": "ui/loom_screen.json", - "top_half_stack_panel/result_item_slot_holder": "ui/loom_screen.json", - "top_half_stack_panel/result_item_slot_holder/result_item_slot": "ui/loom_screen.json", - "top_half_stack_panel/padding_3": "ui/loom_screen.json", - "top_half_stack_panel/result_banner_outline": "ui/loom_screen.json", - "top_half_stack_panel/result_banner_outline/result_banner_renderer": "ui/loom_screen.json", - "top_half_panel": "ui/loom_screen.json", - "top_half_panel/top_half_stack_panel": "ui/loom_screen.json", - "right_panel": "ui/loom_screen.json", - "right_panel/common_panel": "ui/loom_screen.json", - "right_panel/loom_screen_inventory": "ui/loom_screen.json", - "right_panel/loom_screen_inventory/loom_label": "ui/loom_screen.json", - "right_panel/loom_screen_inventory/top_half_panel": "ui/loom_screen.json", - "right_panel/loom_screen_inventory/inventory_panel_bottom_half_with_label": "ui/loom_screen.json", - "right_panel/loom_screen_inventory/hotbar_grid": "ui/loom_screen.json", - "help_button": "ui/loom_screen.json", - "toolbar_panel": "ui/loom_screen.json", - "toolbar_panel/toolbar_background": "ui/loom_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel": "ui/loom_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": "ui/loom_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": "ui/loom_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": "ui/loom_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": "ui/loom_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": "ui/loom_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": "ui/loom_screen.json", - "toolbar_anchor": "ui/loom_screen.json", - "toolbar_anchor/toolbar_panel": "ui/loom_screen.json", - "center_fold": "ui/loom_screen.json", - "center_fold/center_bg": "ui/loom_screen.json", - "screen_stack_panel": "ui/loom_screen.json", - "screen_stack_panel/pattern_book_panel": "ui/loom_screen.json", - "screen_stack_panel/center_fold": "ui/loom_screen.json", - "screen_stack_panel/right_panel": "ui/loom_screen.json", - "screen_stack_panel/toolbar_anchor": "ui/loom_screen.json", - "loom_panel": "ui/loom_screen.json", - "loom_panel/screen_stack_panel": "ui/loom_screen.json", - "loom_panel/container_gamepad_helpers": "ui/loom_screen.json", - "loom_panel/selected_item_details_factory": "ui/loom_screen.json", - "loom_panel/item_lock_notification_factory": "ui/loom_screen.json", - "loom_panel/inventory_selected_icon_button": "ui/loom_screen.json", - "loom_panel/inventory_take_progress_icon_button": "ui/loom_screen.json", - "loom_panel/flying_item_renderer": "ui/loom_screen.json", - "loom_screen": "ui/loom_screen.json", - }, - "loom_pocket": { - "vertical_arrow_icon": "ui/loom_screen_pocket.json", - "banner_empty_image": "ui/loom_screen_pocket.json", - "dye_empty_image": "ui/loom_screen_pocket.json", - "pattern_item_empty_image": "ui/loom_screen_pocket.json", - "chest_item_renderer": "ui/loom_screen_pocket.json", - "banner_item_renderer": "ui/loom_screen_pocket.json", - "loom_item_renderer": "ui/loom_screen_pocket.json", - "input_item_slot": "ui/loom_screen_pocket.json", - "dye_item_slot": "ui/loom_screen_pocket.json", - "material_item_slot": "ui/loom_screen_pocket.json", - "result_item_slot": "ui/loom_screen_pocket.json", - "right_panel": "ui/loom_screen_pocket.json", - "right_panel/content": "ui/loom_screen_pocket.json", - "right_panel/content/bg": "ui/loom_screen_pocket.json", - "right_panel/content/loom_content_stack_panel": "ui/loom_screen_pocket.json", - "right_panel/navigation_tabs_holder": "ui/loom_screen_pocket.json", - "right_panel/navigation_tabs_holder/right_navigation_tabs": "ui/loom_screen_pocket.json", - "right_tab_loom": "ui/loom_screen_pocket.json", - "right_navigation_tabs": "ui/loom_screen_pocket.json", - "right_navigation_tabs/pocket_tab_close_and_help_button": "ui/loom_screen_pocket.json", - "right_navigation_tabs/fill": "ui/loom_screen_pocket.json", - "right_navigation_tabs/right_tab_loom": "ui/loom_screen_pocket.json", - "input_slots_stack_panel": "ui/loom_screen_pocket.json", - "input_slots_stack_panel/input_item_slot": "ui/loom_screen_pocket.json", - "input_slots_stack_panel/padding_1": "ui/loom_screen_pocket.json", - "input_slots_stack_panel/dye_item_slot": "ui/loom_screen_pocket.json", - "input_slots_stack_panel/padding_2": "ui/loom_screen_pocket.json", - "input_slots_stack_panel/material_item_slot": "ui/loom_screen_pocket.json", - "result_banner_outline": "ui/loom_screen_pocket.json", - "result_banner_outline/result_banner_renderer": "ui/loom_screen_pocket.json", - "loom_content_stack_panel": "ui/loom_screen_pocket.json", - "loom_content_stack_panel/label_holder": "ui/loom_screen_pocket.json", - "loom_content_stack_panel/label_holder/loom_label": "ui/loom_screen_pocket.json", - "loom_content_stack_panel/padding_1": "ui/loom_screen_pocket.json", - "loom_content_stack_panel/input_slots_holder": "ui/loom_screen_pocket.json", - "loom_content_stack_panel/input_slots_holder/input_slots_stack_panel": "ui/loom_screen_pocket.json", - "loom_content_stack_panel/padding_2": "ui/loom_screen_pocket.json", - "loom_content_stack_panel/banner_pattern_holder": "ui/loom_screen_pocket.json", - "loom_content_stack_panel/banner_pattern_holder/result_banner_outline": "ui/loom_screen_pocket.json", - "loom_content_stack_panel/padding_3": "ui/loom_screen_pocket.json", - "loom_content_stack_panel/arrow_holder": "ui/loom_screen_pocket.json", - "loom_content_stack_panel/arrow_holder/vertical_arrow_icon": "ui/loom_screen_pocket.json", - "loom_content_stack_panel/padding_4": "ui/loom_screen_pocket.json", - "loom_content_stack_panel/result_item_slot_holder": "ui/loom_screen_pocket.json", - "loom_content_stack_panel/result_item_slot_holder/result_item_slot": "ui/loom_screen_pocket.json", - "loom_content_stack_panel/padding_5": "ui/loom_screen_pocket.json", - "inventory_scroll_panel": "ui/loom_screen_pocket.json", - "pattern_button": "ui/loom_screen_pocket.json", - "banner_pattern": "ui/loom_screen_pocket.json", - "pattern_scroll_panel": "ui/loom_screen_pocket.json", - "left_panel": "ui/loom_screen_pocket.json", - "left_panel/gamepad_helpers_and_tabs_holder": "ui/loom_screen_pocket.json", - "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": "ui/loom_screen_pocket.json", - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": "ui/loom_screen_pocket.json", - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": "ui/loom_screen_pocket.json", - "left_panel/content": "ui/loom_screen_pocket.json", - "left_panel/content/bg": "ui/loom_screen_pocket.json", - "left_panel/content/inventory_scroll_panel": "ui/loom_screen_pocket.json", - "left_panel/content/pattern_scroll_panel": "ui/loom_screen_pocket.json", - "left_tab_patterns": "ui/loom_screen_pocket.json", - "left_tab_inventory": "ui/loom_screen_pocket.json", - "left_navigation_tabs": "ui/loom_screen_pocket.json", - "left_navigation_tabs/left_tab_patterns": "ui/loom_screen_pocket.json", - "left_navigation_tabs/padding": "ui/loom_screen_pocket.json", - "left_navigation_tabs/left_tab_inventory": "ui/loom_screen_pocket.json", - "pocket_hotbar_and_content_panels": "ui/loom_screen_pocket.json", - "loom_panel": "ui/loom_screen_pocket.json", - "loom_panel/pocket_hotbar_and_content_panels": "ui/loom_screen_pocket.json", - "loom_panel/container_gamepad_helpers": "ui/loom_screen_pocket.json", - "loom_panel/selected_item_details_factory": "ui/loom_screen_pocket.json", - "loom_panel/item_lock_notification_factory": "ui/loom_screen_pocket.json", - "loom_panel/inventory_selected_icon_button": "ui/loom_screen_pocket.json", - "loom_panel/inventory_take_progress_icon_button": "ui/loom_screen_pocket.json", - "loom_panel/flying_item_renderer": "ui/loom_screen_pocket.json", - }, - "manage_feed": { - "manage_feed_item_scrolling_panel": "ui/manage_feed_screen.json", - "manage_feed_item_scrolling_panel/manage_feed_item_scrolling_panel_content": "ui/manage_feed_screen.json", - "manage_feed_item_scrolling_panel_content": "ui/manage_feed_screen.json", - "grid_panel": "ui/manage_feed_screen.json", - "grid_panel/top_spacing_gap": "ui/manage_feed_screen.json", - "grid_panel/manage_feed_loading_grid_item": "ui/manage_feed_screen.json", - "grid_panel/manage_feed_grid": "ui/manage_feed_screen.json", - "grid_panel/spacing_gap2": "ui/manage_feed_screen.json", - "grid_panel/pagination_panel": "ui/manage_feed_screen.json", - "pagination_panel": "ui/manage_feed_screen.json", - "manage_feed_grid": "ui/manage_feed_screen.json", - "manage_feed_grid_item": "ui/manage_feed_screen.json", - "manage_feed_grid_item/image_panel_instance": "ui/manage_feed_screen.json", - "manage_feed_grid_item/manage_feed_buttons_panel": "ui/manage_feed_screen.json", - "manage_feed_grid_item/manage_feed_text_instance": "ui/manage_feed_screen.json", - "manage_feed_grid_item/feed_timesince_instance": "ui/manage_feed_screen.json", - "manage_feed_grid_item/nr_of_reports": "ui/manage_feed_screen.json", - "manage_feed_grid_item/manage_player_pic_panel": "ui/manage_feed_screen.json", - "manage_feed_grid_item/manage_feed_gamertag_instance": "ui/manage_feed_screen.json", - "manage_feed_buttons_panel": "ui/manage_feed_screen.json", - "manage_feed_buttons_panel/ignore_button": "ui/manage_feed_screen.json", - "manage_feed_buttons_panel/delete_button": "ui/manage_feed_screen.json", - "manage_feed_loading_grid_item": "ui/manage_feed_screen.json", - "manage_feed_loading_grid_item/loading_image_panel": "ui/manage_feed_screen.json", - "feed_buttons_panel_loading": "ui/manage_feed_screen.json", - "feed_buttons_panel_loading/like_button_loading": "ui/manage_feed_screen.json", - "feed_buttons_panel_loading/spacing_gap1": "ui/manage_feed_screen.json", - "feed_buttons_panel_loading/comment_button_loading": "ui/manage_feed_screen.json", - "feed_buttons_panel_loading/spacing_gap2": "ui/manage_feed_screen.json", - "feed_buttons_panel_loading/options_button_loading": "ui/manage_feed_screen.json", - "like_button_loading": "ui/manage_feed_screen.json", - "comment_button_loading": "ui/manage_feed_screen.json", - "options_button_loading": "ui/manage_feed_screen.json", - "player_pic_panel_loading": "ui/manage_feed_screen.json", - "player_pic_panel_loading/player_gamer_pic_loading": "ui/manage_feed_screen.json", - "player_gamer_pic_loading": "ui/manage_feed_screen.json", - "loading_image_panel": "ui/manage_feed_screen.json", - "loading_image_panel/progress_loading_bars": "ui/manage_feed_screen.json", - "loading_image_panel/manage_feed_image_loading": "ui/manage_feed_screen.json", - "loading_image_panel/no_feed_item_content": "ui/manage_feed_screen.json", - "manage_feed_image_loading": "ui/manage_feed_screen.json", - "ignore_button": "ui/manage_feed_screen.json", - "ignore_content_panel": "ui/manage_feed_screen.json", - "ignore_content_panel/ignore_label": "ui/manage_feed_screen.json", - "delete_button": "ui/manage_feed_screen.json", - "delete_content_panel": "ui/manage_feed_screen.json", - "delete_content_panel/delete_label": "ui/manage_feed_screen.json", - "manage_feed_image": "ui/manage_feed_screen.json", - "manage_feed_image_content_panel": "ui/manage_feed_screen.json", - "manage_feed_image_content_panel/manage_feed_image": "ui/manage_feed_screen.json", - "manage_feed_image_content_panel/textpost_content": "ui/manage_feed_screen.json", - "textpost_content": "ui/manage_feed_screen.json", - "image_panel": "ui/manage_feed_screen.json", - "image_panel/manage_feed_image_content_panel": "ui/manage_feed_screen.json", - "manage_player_pic_panel": "ui/manage_feed_screen.json", - "manage_player_pic_panel/manage_player_gamer_pic": "ui/manage_feed_screen.json", - "manage_player_gamer_pic": "ui/manage_feed_screen.json", - "content": "ui/manage_feed_screen.json", - "content/top_bar_gradient": "ui/manage_feed_screen.json", - "content/gamepad_helpers": "ui/manage_feed_screen.json", - "content/return_button": "ui/manage_feed_screen.json", - "content/reported_items_label": "ui/manage_feed_screen.json", - "content/manage_feed_item_scrolling_panel_instance": "ui/manage_feed_screen.json", - "manage_feed_screen": "ui/manage_feed_screen.json", - "manage_feed_screen_content": "ui/manage_feed_screen.json", - "manage_feed_screen_content/transparent_background": "ui/manage_feed_screen.json", - "manage_feed_screen_content/container": "ui/manage_feed_screen.json", - "manage_feed_screen_content/container/content": "ui/manage_feed_screen.json", - }, - "manifest_validation": { - "clipboard_icon": "ui/manifest_validation_screen.json", - "clipboard_icon_wrapper": "ui/manifest_validation_screen.json", - "clipboard_icon_wrapper/icon": "ui/manifest_validation_screen.json", - "trash_icon": "ui/manifest_validation_screen.json", - "trash_icon_wrapper": "ui/manifest_validation_screen.json", - "trash_icon_wrapper/icon": "ui/manifest_validation_screen.json", - "trash_icon_wrapper/progress_loading_bars": "ui/manifest_validation_screen.json", - "refresh_icon": "ui/manifest_validation_screen.json", - "refresh_icon_wrapper": "ui/manifest_validation_screen.json", - "refresh_icon_wrapper/icon": "ui/manifest_validation_screen.json", - "refresh_icon_wrapper/progress_loading_bars": "ui/manifest_validation_screen.json", - "section_divider": "ui/manifest_validation_screen.json", - "section_divider/divider_image": "ui/manifest_validation_screen.json", - "text_label": "ui/manifest_validation_screen.json", - "icon_image": "ui/manifest_validation_screen.json", - "progress_loading_bars": "ui/manifest_validation_screen.json", - "background": "ui/manifest_validation_screen.json", - "black_background_fill": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/stack_panel": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background/icon": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/title": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/padding": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/pack_size": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/description": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/padding": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/top_pad": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh/button": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/pad": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete/button": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/stack_panel/pad": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/secondary_panel": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_0": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/title_text": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/space": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset/title": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_0": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_1": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/version_text": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/space": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset/version": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_1": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_2": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/path_text": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/space": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset": "ui/manifest_validation_screen.json", - "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset/description": "ui/manifest_validation_screen.json", - "error_pack_content_layout": "ui/manifest_validation_screen.json", - "error_pack_content_layout/black": "ui/manifest_validation_screen.json", - "error_pack_content_layout/black/error_panel": "ui/manifest_validation_screen.json", - "error_pack_content_layout/black/error_panel/error_header_panel": "ui/manifest_validation_screen.json", - "error_pack_content_layout/black/error_panel/error_header_panel/error_type_panel": "ui/manifest_validation_screen.json", - "error_pack_content_layout/black/error_panel/error_header_panel/button": "ui/manifest_validation_screen.json", - "error_pack_content_layout/black/error_panel/padding_0": "ui/manifest_validation_screen.json", - "error_pack_content_layout/black/error_panel/error_text_panel": "ui/manifest_validation_screen.json", - "error_pack_content_layout/black/error_panel/error_text_panel/error_text": "ui/manifest_validation_screen.json", - "error_pack_content_layout/black/error_panel/error_text_panel/space": "ui/manifest_validation_screen.json", - "error_pack_content_layout/black/error_panel/error_text_panel/offset": "ui/manifest_validation_screen.json", - "error_pack_content_layout/black/error_panel/error_text_panel/offset/error_label": "ui/manifest_validation_screen.json", - "delete_button": "ui/manifest_validation_screen.json", - "delete_text_button": "ui/manifest_validation_screen.json", - "clipboard_button": "ui/manifest_validation_screen.json", - "refresh_button": "ui/manifest_validation_screen.json", - "refresh_text_button": "ui/manifest_validation_screen.json", - "pack_secondary_info": "ui/manifest_validation_screen.json", - "pack_secondary_info/layout": "ui/manifest_validation_screen.json", - "error_content_grid": "ui/manifest_validation_screen.json", - "pack_error_item": "ui/manifest_validation_screen.json", - "pack_error_item/secondary": "ui/manifest_validation_screen.json", - "pack_error_item/error_header": "ui/manifest_validation_screen.json", - "pack_error_item/error_header/error_text": "ui/manifest_validation_screen.json", - "pack_error_item/error": "ui/manifest_validation_screen.json", - "pack_error_group": "ui/manifest_validation_screen.json", - "pack_error_group/top_padding": "ui/manifest_validation_screen.json", - "pack_error_group/errors": "ui/manifest_validation_screen.json", - "pack_error_group/padding": "ui/manifest_validation_screen.json", - "common_scrolling_panel": "ui/manifest_validation_screen.json", - "common_content": "ui/manifest_validation_screen.json", - "scrolling_offsets": "ui/manifest_validation_screen.json", - "manifest_validation_scroll_content": "ui/manifest_validation_screen.json", - "manifest_validation_scroll_content/scrolling_panel": "ui/manifest_validation_screen.json", - "common_scroll_panel": "ui/manifest_validation_screen.json", - "manifest_validation_scroll_panel": "ui/manifest_validation_screen.json", - "manifest_validation_scroll_panel/pack_error_group": "ui/manifest_validation_screen.json", - "manifest_validation_screen": "ui/manifest_validation_screen.json", - "manifest_validation_screen_content": "ui/manifest_validation_screen.json", - "manifest_validation_screen_content/background": "ui/manifest_validation_screen.json", - }, - "sdl_label": { - "sdl_label_factory": "ui/marketplace_sdl/sdl_label.json", - "sdl_label": "ui/marketplace_sdl/sdl_label.json", - "sdl_mc_ten_label": "ui/marketplace_sdl/sdl_label.json", - }, - "sdl_dropdowns": { - "sdl_dropdown_rows": "ui/marketplace_sdl/sdl_dropdowns.json", - "sdl_dropdown_rows/container_panel": "ui/marketplace_sdl/sdl_dropdowns.json", - "sdl_dropdown_rows/container_panel/toggle": "ui/marketplace_sdl/sdl_dropdowns.json", - "sdl_dropdown_rows/container_panel/pad": "ui/marketplace_sdl/sdl_dropdowns.json", - "sdl_rows_toggle": "ui/marketplace_sdl/sdl_dropdowns.json", - }, - "sdl_image_row": { - "image_row_factory": "ui/marketplace_sdl/sdl_image_row.json", - "buffer_panel": "ui/marketplace_sdl/sdl_image_row.json", - "single_image": "ui/marketplace_sdl/sdl_image_row.json", - "single_image/image_with_border": "ui/marketplace_sdl/sdl_image_row.json", - "single_image/image_with_border/screenshot_image": "ui/marketplace_sdl/sdl_image_row.json", - "single_image/image_with_border/dark_border": "ui/marketplace_sdl/sdl_image_row.json", - "single_image/image_with_border/progress_loading": "ui/marketplace_sdl/sdl_image_row.json", - "single_image/image_selector": "ui/marketplace_sdl/sdl_image_row.json", - "double_image": "ui/marketplace_sdl/sdl_image_row.json", - "triple_image_with_buffer": "ui/marketplace_sdl/sdl_image_row.json", - "triple_image_with_buffer/buffer_panel_in_1": "ui/marketplace_sdl/sdl_image_row.json", - "triple_image_with_buffer/buffer_panel_in_2": "ui/marketplace_sdl/sdl_image_row.json", - "triple_image_with_buffer/triple_image": "ui/marketplace_sdl/sdl_image_row.json", - "triple_image_with_buffer/buffer_panel_out_1": "ui/marketplace_sdl/sdl_image_row.json", - "triple_image_with_buffer/buffer_panel_out_2": "ui/marketplace_sdl/sdl_image_row.json", - }, - "sdl_text_row": { - "sdl_text_row_factory": "ui/marketplace_sdl/sdl_text_row.json", - "sdl_header_component_factory": "ui/marketplace_sdl/sdl_text_row.json", - "label_button": "ui/marketplace_sdl/sdl_text_row.json", - "sdl_header_component_panel": "ui/marketplace_sdl/sdl_text_row.json", - "sdl_header_component_panel/header_background": "ui/marketplace_sdl/sdl_text_row.json", - "sdl_header_component_panel/header_internals": "ui/marketplace_sdl/sdl_text_row.json", - "sdl_header_component_panel/header_highlight": "ui/marketplace_sdl/sdl_text_row.json", - "sdl_header_component_panel/text_row_header_text": "ui/marketplace_sdl/sdl_text_row.json", - "sdl_text_row_component_panel": "ui/marketplace_sdl/sdl_text_row.json", - "sdl_text_row_component_panel/text_background": "ui/marketplace_sdl/sdl_text_row.json", - "sdl_text_row_component_panel/text_row_selector": "ui/marketplace_sdl/sdl_text_row.json", - "sdl_text_row_component_panel/text_row_background": "ui/marketplace_sdl/sdl_text_row.json", - "sdl_text_row_component_panel/text_row_component_text": "ui/marketplace_sdl/sdl_text_row.json", - "solo_text_row": "ui/marketplace_sdl/sdl_text_row.json", - "solo_text_row/buffer_panel_front": "ui/marketplace_sdl/sdl_text_row.json", - "solo_text_row/headercomp_and_textcomp_panel": "ui/marketplace_sdl/sdl_text_row.json", - "solo_text_row/headercomp_and_textcomp_panel/text_row_header_text_panel": "ui/marketplace_sdl/sdl_text_row.json", - "solo_text_row/headercomp_and_textcomp_panel/text_row_text_panel": "ui/marketplace_sdl/sdl_text_row.json", - "solo_text_row/buffer_panel_back": "ui/marketplace_sdl/sdl_text_row.json", - }, - "mob_effect": { - "effect_background": "ui/mob_effect_screen.json", - "effect_background/default_background": "ui/mob_effect_screen.json", - "effect_background/ambient_background": "ui/mob_effect_screen.json", - "main_background": "ui/mob_effect_screen.json", - "button_background": "ui/mob_effect_screen.json", - "effect_name": "ui/mob_effect_screen.json", - "effect_timer": "ui/mob_effect_screen.json", - "effect_icon": "ui/mob_effect_screen.json", - "mob_effect_grid_panel": "ui/mob_effect_screen.json", - "mob_effect_grid_panel/mob_effect_grid": "ui/mob_effect_screen.json", - "mob_effect_grid": "ui/mob_effect_screen.json", - "mob_effect_grid_item": "ui/mob_effect_screen.json", - "mob_effect_grid_item/bg": "ui/mob_effect_screen.json", - "mob_effect_grid_item/name": "ui/mob_effect_screen.json", - "mob_effect_grid_item/timer": "ui/mob_effect_screen.json", - "mob_effect_grid_item/icon": "ui/mob_effect_screen.json", - "mob_effect_list_content_panel": "ui/mob_effect_screen.json", - "mob_effect_list_content_panel/scrolling_panel": "ui/mob_effect_screen.json", - "mob_effect_screen_close_button": "ui/mob_effect_screen.json", - "close_button_panel": "ui/mob_effect_screen.json", - "close_button_panel/bg": "ui/mob_effect_screen.json", - "close_button_panel/close_button": "ui/mob_effect_screen.json", - "mob_effect_content": "ui/mob_effect_screen.json", - "mob_effect_content/bg": "ui/mob_effect_screen.json", - "mob_effect_content/close_panel": "ui/mob_effect_screen.json", - "mob_effect_content/content_panel": "ui/mob_effect_screen.json", - "main_screen": "ui/mob_effect_screen.json", - "main_screen/main_screen": "ui/mob_effect_screen.json", - "mob_effect_screen": "ui/mob_effect_screen.json", - }, - "non_xbl_user_management": { - "black_tint_image": "ui/non_xbl_user_management_screen.json", - "modal_title_text": "ui/non_xbl_user_management_screen.json", - "modal_label_text": "ui/non_xbl_user_management_screen.json", - "modal_label_text/padding": "ui/non_xbl_user_management_screen.json", - "modal_label_text/text": "ui/non_xbl_user_management_screen.json", - "modal_label_panel": "ui/non_xbl_user_management_screen.json", - "modal_left_button": "ui/non_xbl_user_management_screen.json", - "modal_middle_button": "ui/non_xbl_user_management_screen.json", - "modal_rightcancel_button": "ui/non_xbl_user_management_screen.json", - "three_buttons_panel": "ui/non_xbl_user_management_screen.json", - "three_buttons_panel/left": "ui/non_xbl_user_management_screen.json", - "three_buttons_panel/middle": "ui/non_xbl_user_management_screen.json", - "three_buttons_panel/right": "ui/non_xbl_user_management_screen.json", - "two_buttons_panel": "ui/non_xbl_user_management_screen.json", - "two_buttons_panel/left": "ui/non_xbl_user_management_screen.json", - "two_buttons_panel/right": "ui/non_xbl_user_management_screen.json", - "single_button_panel": "ui/non_xbl_user_management_screen.json", - "single_button_panel/left": "ui/non_xbl_user_management_screen.json", - "modal_dialog_with_buttons": "ui/non_xbl_user_management_screen.json", - "modal_dialog_with_buttons/background_with_buttons": "ui/non_xbl_user_management_screen.json", - "modal_dialog_with_buttons/title": "ui/non_xbl_user_management_screen.json", - "modal_dialog_with_buttons/text_with_buttons": "ui/non_xbl_user_management_screen.json", - "modal_dialog_with_buttons/button_panel": "ui/non_xbl_user_management_screen.json", - "modal_input_panel": "ui/non_xbl_user_management_screen.json", - "modal_input_panel/black_tint_image": "ui/non_xbl_user_management_screen.json", - "user_confirm_dialog_screen_content": "ui/non_xbl_user_management_screen.json", - "user_confirm_dialog_screen_content/modal_input": "ui/non_xbl_user_management_screen.json", - "user_confirm_dialog_screen_content/modal_input/modal_bg_buttons": "ui/non_xbl_user_management_screen.json", - "user_confirm_dialog_screen": "ui/non_xbl_user_management_screen.json", - }, - "npc_interact": { - "multiline_text_edit_control": "ui/npc_interact_screen.json", - "text_edit_control": "ui/npc_interact_screen.json", - "label_padding": "ui/npc_interact_screen.json", - "main_stack_panel": "ui/npc_interact_screen.json", - "skin_button": "ui/npc_interact_screen.json", - "skin_model": "ui/npc_interact_screen.json", - "skin_model_clipper": "ui/npc_interact_screen.json", - "skins_grid_item": "ui/npc_interact_screen.json", - "skins_grid_item/clip": "ui/npc_interact_screen.json", - "skins_grid_item/clip/model": "ui/npc_interact_screen.json", - "skins_grid_item/button": "ui/npc_interact_screen.json", - "skins_grid_item/selectFrame": "ui/npc_interact_screen.json", - "skins_grid": "ui/npc_interact_screen.json", - "cycle_pack_button": "ui/npc_interact_screen.json", - "cycle_pack_left_button": "ui/npc_interact_screen.json", - "cycle_pack_right_button": "ui/npc_interact_screen.json", - "banner_fill": "ui/npc_interact_screen.json", - "skin_picker": "ui/npc_interact_screen.json", - "skin_picker/left": "ui/npc_interact_screen.json", - "skin_picker/sg": "ui/npc_interact_screen.json", - "skin_picker/right": "ui/npc_interact_screen.json", - "name_edit": "ui/npc_interact_screen.json", - "advanced_button": "ui/npc_interact_screen.json", - "advanced_button/button": "ui/npc_interact_screen.json", - "dialog_button": "ui/npc_interact_screen.json", - "dialog_button/button": "ui/npc_interact_screen.json", - "basic_stack_panel": "ui/npc_interact_screen.json", - "basic_stack_panel/top_pad": "ui/npc_interact_screen.json", - "basic_stack_panel/name_label": "ui/npc_interact_screen.json", - "basic_stack_panel/name_padding": "ui/npc_interact_screen.json", - "basic_stack_panel/name_edit": "ui/npc_interact_screen.json", - "basic_stack_panel/dialog_pre_padding": "ui/npc_interact_screen.json", - "basic_stack_panel/dialog_label": "ui/npc_interact_screen.json", - "basic_stack_panel/dialog_post_padding": "ui/npc_interact_screen.json", - "basic_stack_panel/dialog__padding": "ui/npc_interact_screen.json", - "basic_stack_panel/dialog_button": "ui/npc_interact_screen.json", - "basic_stack_panel/appearance_pre_padding": "ui/npc_interact_screen.json", - "basic_stack_panel/appearance_label": "ui/npc_interact_screen.json", - "basic_stack_panel/appearance_post_padding": "ui/npc_interact_screen.json", - "basic_stack_panel/skins": "ui/npc_interact_screen.json", - "basic_stack_panel/advanced_button": "ui/npc_interact_screen.json", - "basic_content": "ui/npc_interact_screen.json", - "basic_content/basic": "ui/npc_interact_screen.json", - "advanced_stack_panel": "ui/npc_interact_screen.json", - "advanced_stack_panel/top_pad": "ui/npc_interact_screen.json", - "advanced_stack_panel/add_help_text": "ui/npc_interact_screen.json", - "advanced_stack_panel/middle_pad": "ui/npc_interact_screen.json", - "advanced_stack_panel/actions": "ui/npc_interact_screen.json", - "advanced_stack_panel/add_buttons": "ui/npc_interact_screen.json", - "advanced_stack_panel/bottom_pad": "ui/npc_interact_screen.json", - "action_title": "ui/npc_interact_screen.json", - "plus_icon": "ui/npc_interact_screen.json", - "plus_button": "ui/npc_interact_screen.json", - "action_text_edit": "ui/npc_interact_screen.json", - "maximized_action_edit": "ui/npc_interact_screen.json", - "action_edit": "ui/npc_interact_screen.json", - "action_edit/text_edit": "ui/npc_interact_screen.json", - "action_edit/expand": "ui/npc_interact_screen.json", - "button_name_edit": "ui/npc_interact_screen.json", - "command_toggle": "ui/npc_interact_screen.json", - "command_toggle_panel": "ui/npc_interact_screen.json", - "command_toggle_panel/command_toggle": "ui/npc_interact_screen.json", - "command_toggle_panel/toggle_label": "ui/npc_interact_screen.json", - "action_mode": "ui/npc_interact_screen.json", - "action_mode/button_mode_toggle_panel": "ui/npc_interact_screen.json", - "action_mode/on_enter_toggle_panel": "ui/npc_interact_screen.json", - "action_mode/on_exit_toggle_panel": "ui/npc_interact_screen.json", - "button_name_label": "ui/npc_interact_screen.json", - "url_notifications": "ui/npc_interact_screen.json", - "url_notifications/empty_uri_warning": "ui/npc_interact_screen.json", - "url_notifications/invalid_uri_warning": "ui/npc_interact_screen.json", - "action_template": "ui/npc_interact_screen.json", - "action_template/title": "ui/npc_interact_screen.json", - "action_template/label_pad": "ui/npc_interact_screen.json", - "action_template/edit": "ui/npc_interact_screen.json", - "action_template/edit_pad": "ui/npc_interact_screen.json", - "action_template/url_warning": "ui/npc_interact_screen.json", - "action_template/url_pad": "ui/npc_interact_screen.json", - "action_template/action_mode": "ui/npc_interact_screen.json", - "action_template/mode_pad": "ui/npc_interact_screen.json", - "action_template/button_name_label": "ui/npc_interact_screen.json", - "action_template/button_name": "ui/npc_interact_screen.json", - "action_command": "ui/npc_interact_screen.json", - "action_url": "ui/npc_interact_screen.json", - "padded_action": "ui/npc_interact_screen.json", - "padded_action/action": "ui/npc_interact_screen.json", - "padded_action/padding": "ui/npc_interact_screen.json", - "action": "ui/npc_interact_screen.json", - "action/trash": "ui/npc_interact_screen.json", - "action/command": "ui/npc_interact_screen.json", - "action/url": "ui/npc_interact_screen.json", - "action_panel": "ui/npc_interact_screen.json", - "add_button": "ui/npc_interact_screen.json", - "help_label": "ui/npc_interact_screen.json", - "add_help_section": "ui/npc_interact_screen.json", - "add_help_section/text_url": "ui/npc_interact_screen.json", - "add_help_section/text_url/tts_border": "ui/npc_interact_screen.json", - "add_help_section/text_url/wrapper_panel_url": "ui/npc_interact_screen.json", - "add_help_section/text_url/wrapper_panel_url/text_url_a": "ui/npc_interact_screen.json", - "add_help_section/text_url/wrapper_panel_url/padding": "ui/npc_interact_screen.json", - "add_help_section/text_url/wrapper_panel_url/text_url_b": "ui/npc_interact_screen.json", - "add_help_section/padding": "ui/npc_interact_screen.json", - "add_help_section/text_command": "ui/npc_interact_screen.json", - "add_help_section/text_command/tts_border": "ui/npc_interact_screen.json", - "add_help_section/text_command/wrapper_panel_command": "ui/npc_interact_screen.json", - "add_help_section/text_command/wrapper_panel_command/text_command_a": "ui/npc_interact_screen.json", - "add_help_section/text_command/wrapper_panel_command/padding": "ui/npc_interact_screen.json", - "add_help_section/text_command/wrapper_panel_command/text_command_b": "ui/npc_interact_screen.json", - "add_help_text": "ui/npc_interact_screen.json", - "add_buttons": "ui/npc_interact_screen.json", - "add_buttons/add_url": "ui/npc_interact_screen.json", - "add_buttons/padding": "ui/npc_interact_screen.json", - "add_buttons/add_command": "ui/npc_interact_screen.json", - "advanced_scrolling_panel": "ui/npc_interact_screen.json", - "advanced_scrolling_content": "ui/npc_interact_screen.json", - "advanced_scrolling_content/advanced": "ui/npc_interact_screen.json", - "message_model": "ui/npc_interact_screen.json", - "message_model/model": "ui/npc_interact_screen.json", - "clipped_message_model": "ui/npc_interact_screen.json", - "clipped_message_model/model": "ui/npc_interact_screen.json", - "message_model_window": "ui/npc_interact_screen.json", - "message_model_window/model": "ui/npc_interact_screen.json", - "message_model_window/immersive_reader_button": "ui/npc_interact_screen.json", - "edit_box_background": "ui/npc_interact_screen.json", - "npc_message": "ui/npc_interact_screen.json", - "npc_message/label": "ui/npc_interact_screen.json", - "npc_message/visibility_panel": "ui/npc_interact_screen.json", - "npc_message/visibility_panel/place_holder": "ui/npc_interact_screen.json", - "npc_message/background": "ui/npc_interact_screen.json", - "text_scroll": "ui/npc_interact_screen.json", - "student_message_bubble": "ui/npc_interact_screen.json", - "student_message_bubble/dialog_panel": "ui/npc_interact_screen.json", - "student_message_bubble/dialog_panel/text_scroll": "ui/npc_interact_screen.json", - "bubble_point": "ui/npc_interact_screen.json", - "student_message_section": "ui/npc_interact_screen.json", - "student_message_section/model": "ui/npc_interact_screen.json", - "student_message_section/point": "ui/npc_interact_screen.json", - "student_message_section/message": "ui/npc_interact_screen.json", - "student_button_label": "ui/npc_interact_screen.json", - "student_button_label_panel": "ui/npc_interact_screen.json", - "student_button_label_panel/url": "ui/npc_interact_screen.json", - "student_button_label_panel/command": "ui/npc_interact_screen.json", - "student_button": "ui/npc_interact_screen.json", - "student_button/button": "ui/npc_interact_screen.json", - "student_buttons": "ui/npc_interact_screen.json", - "student_buttons/buttons": "ui/npc_interact_screen.json", - "student_buttons/buttons/actions": "ui/npc_interact_screen.json", - "student_stack_panel": "ui/npc_interact_screen.json", - "student_stack_panel/top_pad": "ui/npc_interact_screen.json", - "student_stack_panel/message": "ui/npc_interact_screen.json", - "student_stack_panel/message_pad": "ui/npc_interact_screen.json", - "student_stack_panel/buttons": "ui/npc_interact_screen.json", - "student_view_content": "ui/npc_interact_screen.json", - "student_view_content/student": "ui/npc_interact_screen.json", - "student_view_content/close": "ui/npc_interact_screen.json", - "close_button_base": "ui/npc_interact_screen.json", - "close_button_base/default": "ui/npc_interact_screen.json", - "close_button_base/hover": "ui/npc_interact_screen.json", - "close_button_base/pressed": "ui/npc_interact_screen.json", - "x_close_button": "ui/npc_interact_screen.json", - "ignorable_x_close_button": "ui/npc_interact_screen.json", - "ignorable_x_close_button/button": "ui/npc_interact_screen.json", - "close_button_holder": "ui/npc_interact_screen.json", - "close_button_holder/close_basic": "ui/npc_interact_screen.json", - "close_button_holder/close_student_edit": "ui/npc_interact_screen.json", - "close_button_holder/close_student": "ui/npc_interact_screen.json", - "close_button_holder/close_maximized_action_edit": "ui/npc_interact_screen.json", - "close_button_holder/close_advanced": "ui/npc_interact_screen.json", - "main_content": "ui/npc_interact_screen.json", - "main_content/basic": "ui/npc_interact_screen.json", - "main_content/advanced": "ui/npc_interact_screen.json", - "main_content/maximized_action_edit": "ui/npc_interact_screen.json", - "main_content/close": "ui/npc_interact_screen.json", - "root_panel": "ui/npc_interact_screen.json", - "gamepad_helper_exit_text": "ui/npc_interact_screen.json", - "close_text": "ui/npc_interact_screen.json", - "npc_screen_contents": "ui/npc_interact_screen.json", - "npc_screen_contents/teacher": "ui/npc_interact_screen.json", - "npc_screen_contents/student": "ui/npc_interact_screen.json", - "npc_screen_contents/npc_screen_close": "ui/npc_interact_screen.json", - "npc_screen": "ui/npc_interact_screen.json", - }, - "online_safety": { - "online_safety_proceed_button": "ui/online_safety_screen.json", - "online_safety_back_button": "ui/online_safety_screen.json", - "online_safety_description": "ui/online_safety_screen.json", - "ip_safety_description": "ui/online_safety_screen.json", - "online_safety_label_panel": "ui/online_safety_screen.json", - "ip_safety_label_panel": "ui/online_safety_screen.json", - "do_not_show_checkbox": "ui/online_safety_screen.json", - "do_not_show_checkbox/header_description_stack_panel": "ui/online_safety_screen.json", - "do_not_show_checkbox/header_description_stack_panel/checkbox_visuals": "ui/online_safety_screen.json", - "do_not_show_checkbox/header_description_stack_panel/buffer_panel": "ui/online_safety_screen.json", - "do_not_show_checkbox/header_description_stack_panel/buffer_panel/label": "ui/online_safety_screen.json", - "do_not_show_checkbox/header_description_stack_panel/another_panel": "ui/online_safety_screen.json", - "online_safety_dialog": "ui/online_safety_screen.json", - "ip_safety_dialog": "ui/online_safety_screen.json", - "gamepad_helpers": "ui/online_safety_screen.json", - "gamepad_helpers/gamepad_helper_a": "ui/online_safety_screen.json", - "online_safety_screen": "ui/online_safety_screen.json", - "online_safety_screen_content": "ui/online_safety_screen.json", - "online_safety_screen_content/online_safety_dialog": "ui/online_safety_screen.json", - "online_safety_screen_content/gamepad_helpers": "ui/online_safety_screen.json", - "ip_safety_screen": "ui/online_safety_screen.json", - "ip_safety_screen_content": "ui/online_safety_screen.json", - "ip_safety_screen_content/ip_safety_dialog": "ui/online_safety_screen.json", - "ip_safety_screen_content/gamepad_helpers": "ui/online_safety_screen.json", - }, - "pack_settings": { - "background": "ui/pack_settings_screen.json", - "screen": "ui/pack_settings_screen.json", - "main_screen_content": "ui/pack_settings_screen.json", - "pack_scroll_panel": "ui/pack_settings_screen.json", - "scrolling_content": "ui/pack_settings_screen.json", - "scrolling_content/content_tiering_panel": "ui/pack_settings_screen.json", - "scrolling_content/generated_form": "ui/pack_settings_screen.json", - "content_tiering_panel": "ui/pack_settings_screen.json", - "content_tiering_panel/label_panel": "ui/pack_settings_screen.json", - "content_tiering_panel/label_panel/content_tier_label": "ui/pack_settings_screen.json", - "content_tiering_panel/label_panel/unsupported_content_tier_label": "ui/pack_settings_screen.json", - "content_tiering_panel/slider_panel": "ui/pack_settings_screen.json", - "content_tiering_panel/slider_panel/content_tier_slider": "ui/pack_settings_screen.json", - "content_tiering_panel/incompatible_label_panel": "ui/pack_settings_screen.json", - "content_tiering_panel/incompatible_label_panel/label": "ui/pack_settings_screen.json", - }, - "panorama": { - "panorama_view": "ui/panorama_screen.json", - "panorama_view/pan_left": "ui/panorama_screen.json", - "panorama_view/screenshot": "ui/panorama_screen.json", - "panorama_view/pan_right": "ui/panorama_screen.json", - "panorama_input_panel": "ui/panorama_screen.json", - "panorama_input_panel/image_border": "ui/panorama_screen.json", - "panorama_input_panel/image_border/panorama_key_art": "ui/panorama_screen.json", - "panorama_input_panel/image_border/progress_loading": "ui/panorama_screen.json", - "pan_left_button": "ui/panorama_screen.json", - "pan_right_button": "ui/panorama_screen.json", - }, - "patch_notes": { - "solid_texture": "ui/patch_notes_screen.json", - "image_with_background": "ui/patch_notes_screen.json", - "image_with_background/image": "ui/patch_notes_screen.json", - "image_with_background/image/loading_animation": "ui/patch_notes_screen.json", - "white_image": "ui/patch_notes_screen.json", - "patch_main_image": "ui/patch_notes_screen.json", - "store_image": "ui/patch_notes_screen.json", - "patch_notes_header_background": "ui/patch_notes_screen.json", - "patch_notes_header_background/black_background": "ui/patch_notes_screen.json", - "patch_notes_header_background/black_background/content": "ui/patch_notes_screen.json", - "button_label_panel": "ui/patch_notes_screen.json", - "button_label_panel/text_label": "ui/patch_notes_screen.json", - "button_content": "ui/patch_notes_screen.json", - "button_content/button_label2": "ui/patch_notes_screen.json", - "patch_image": "ui/patch_notes_screen.json", - "patch_notes_header_content_without_offer": "ui/patch_notes_screen.json", - "patch_notes_header_content_without_offer/patch_image": "ui/patch_notes_screen.json", - "patch_notes_header_content_with_offer": "ui/patch_notes_screen.json", - "patch_notes_header_content_with_offer/patch_image": "ui/patch_notes_screen.json", - "patch_notes_header_content_with_offer/padding": "ui/patch_notes_screen.json", - "patch_notes_header_content_with_offer/store_item_section": "ui/patch_notes_screen.json", - "patch_notes_header_content_with_offer/store_item_section/store_image": "ui/patch_notes_screen.json", - "patch_notes_header_content_with_offer/store_item_section/padding": "ui/patch_notes_screen.json", - "patch_notes_header_content_with_offer/store_item_section/store_button": "ui/patch_notes_screen.json", - "store_button": "ui/patch_notes_screen.json", - "store_button/store_button": "ui/patch_notes_screen.json", - "store_button/loading_animation": "ui/patch_notes_screen.json", - "patch_notes_header": "ui/patch_notes_screen.json", - "patch_notes_header/patch_notes_background": "ui/patch_notes_screen.json", - "scroll_content": "ui/patch_notes_screen.json", - "scroll_content/padding_0": "ui/patch_notes_screen.json", - "scroll_content/patch_notes_header": "ui/patch_notes_screen.json", - "scroll_content/padding_1": "ui/patch_notes_screen.json", - "scroll_content/tts_label_wrapper": "ui/patch_notes_screen.json", - "patch_notes_panel": "ui/patch_notes_screen.json", - "patch_notes_panel/patch_notes_text": "ui/patch_notes_screen.json", - "patch_notes_panel/patch_notes_text/loading_animation": "ui/patch_notes_screen.json", - "patch_notes_content": "ui/patch_notes_screen.json", - "patch_notes_content/scrolling_panel": "ui/patch_notes_screen.json", - "continue_button": "ui/patch_notes_screen.json", - "patch_notes_dialog": "ui/patch_notes_screen.json", - "patch_notes_screen": "ui/patch_notes_screen.json", - "sunsetting_button_panel": "ui/patch_notes_screen.json", - "sunsetting_button_panel/padding_0": "ui/patch_notes_screen.json", - "sunsetting_button_panel/more_info_button": "ui/patch_notes_screen.json", - "sunsetting_button_panel/padding_1": "ui/patch_notes_screen.json", - "sunsetting_button_panel/continue_button": "ui/patch_notes_screen.json", - "sunsetting_button_panel/padding_2": "ui/patch_notes_screen.json", - "sunsetting_button_panel/sunsetting_toggle_panel": "ui/patch_notes_screen.json", - "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel": "ui/patch_notes_screen.json", - "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/checkbox_visuals": "ui/patch_notes_screen.json", - "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel": "ui/patch_notes_screen.json", - "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel/label": "ui/patch_notes_screen.json", - "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/another_panel": "ui/patch_notes_screen.json", - "sunsetting_content": "ui/patch_notes_screen.json", - "sunsetting_content/scrolling_panel": "ui/patch_notes_screen.json", - "sunsetting_dialog": "ui/patch_notes_screen.json", - "sunsetting_screen": "ui/patch_notes_screen.json", - }, - "pause": { - "pause_icon": "ui/pause_screen.json", - "feedback_icon": "ui/pause_screen.json", - "change_skin_icon": "ui/pause_screen.json", - "take_screenshot_icon": "ui/pause_screen.json", - "settings_icon": "ui/pause_screen.json", - "achievements_icon": "ui/pause_screen.json", - "alex_icon": "ui/pause_screen.json", - "profile_gamerpic": "ui/pause_screen.json", - "button_x": "ui/pause_screen.json", - "dressing_room_controller_button_content": "ui/pause_screen.json", - "dressing_room_controller_button_content/button_x": "ui/pause_screen.json", - "dressing_room_controller_button_content/button_label_panel": "ui/pause_screen.json", - "dressing_room_controller_button_content/button_label_panel/button_label_text_left": "ui/pause_screen.json", - "controller_button_label": "ui/pause_screen.json", - "column_frame": "ui/pause_screen.json", - "dressing_room_button_gamepad": "ui/pause_screen.json", - "dressing_room_button": "ui/pause_screen.json", - "profile_button_content": "ui/pause_screen.json", - "profile_button_content/button_offset_wrapper": "ui/pause_screen.json", - "profile_button_content/button_offset_wrapper/button_x": "ui/pause_screen.json", - "profile_button_content/gamerpic_offset_wrapper": "ui/pause_screen.json", - "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border": "ui/pause_screen.json", - "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic": "ui/pause_screen.json", - "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon": "ui/pause_screen.json", - "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black": "ui/pause_screen.json", - "profile_button_content/padding_middle": "ui/pause_screen.json", - "profile_button_content/vertically_central_text": "ui/pause_screen.json", - "profile_button_content/vertically_central_text/top_padding": "ui/pause_screen.json", - "profile_button_content/vertically_central_text/profile_button_label": "ui/pause_screen.json", - "profile_button_content/padding_right": "ui/pause_screen.json", - "profile_button": "ui/pause_screen.json", - "skin_viewer_panel": "ui/pause_screen.json", - "skin_viewer_panel/paper_doll_panel": "ui/pause_screen.json", - "skin_viewer_panel/paper_doll_panel/paper_doll": "ui/pause_screen.json", - "skin_viewer_panel/paper_doll_name_tag": "ui/pause_screen.json", - "skin_panel": "ui/pause_screen.json", - "skin_panel/interior": "ui/pause_screen.json", - "skin_panel_interior": "ui/pause_screen.json", - "skin_panel_interior/offset_panel": "ui/pause_screen.json", - "skin_panel_interior/offset_panel/viewer_panel": "ui/pause_screen.json", - "skin_panel_interior/fill_1": "ui/pause_screen.json", - "skin_panel_interior/change_profile_panel": "ui/pause_screen.json", - "skin_panel_interior/change_profile_panel/centering_panel_1": "ui/pause_screen.json", - "skin_panel_interior/change_profile_panel/centering_panel_1/dressing_room_button": "ui/pause_screen.json", - "skin_panel_interior/change_profile_panel/centering_panel_2": "ui/pause_screen.json", - "skin_panel_interior/change_profile_panel/centering_panel_2/dressing_room_button_gamepad": "ui/pause_screen.json", - "skin_panel_interior/change_profile_panel/centering_panel_3": "ui/pause_screen.json", - "skin_panel_interior/change_profile_panel/centering_panel_3/profile_button": "ui/pause_screen.json", - "pause_button_template": "ui/pause_screen.json", - "grid_button_template": "ui/pause_screen.json", - "return_to_game_button": "ui/pause_screen.json", - "realms_stories_button_panel": "ui/pause_screen.json", - "realms_stories_button_panel/realms_stories_button": "ui/pause_screen.json", - "realms_stories_button_panel/unread_story_count_panel": "ui/pause_screen.json", - "realms_stories_button": "ui/pause_screen.json", - "unread_story_count_panel": "ui/pause_screen.json", - "unread_story_count_panel/text": "ui/pause_screen.json", - "unread_story_count_panel/text/background": "ui/pause_screen.json", - "store_button_panel": "ui/pause_screen.json", - "store_button_panel/store_button": "ui/pause_screen.json", - "store_button_panel/store_error_button": "ui/pause_screen.json", - "store_button": "ui/pause_screen.json", - "store_error_button": "ui/pause_screen.json", - "store_error_button_content": "ui/pause_screen.json", - "store_error_button_content/marketplace_button_label": "ui/pause_screen.json", - "settings_button": "ui/pause_screen.json", - "how_to_play_button": "ui/pause_screen.json", - "invite_players_button": "ui/pause_screen.json", - "buy_button": "ui/pause_screen.json", - "quit_button": "ui/pause_screen.json", - "feedback_button": "ui/pause_screen.json", - "feedback_icon_button": "ui/pause_screen.json", - "feedback_icon_button/feedback_button": "ui/pause_screen.json", - "take_screenshot_gamepad_button_content": "ui/pause_screen.json", - "take_screenshot_gamepad_button_content/button_y": "ui/pause_screen.json", - "take_screenshot_gamepad_button_content/take_screenshot_icon": "ui/pause_screen.json", - "take_screenshot_gamepad_button": "ui/pause_screen.json", - "achievements_button_small": "ui/pause_screen.json", - "settings_button_small": "ui/pause_screen.json", - "take_screenshot_button": "ui/pause_screen.json", - "pause_screen": "ui/pause_screen.json", - "pause_screen_content": "ui/pause_screen.json", - "pause_screen_content/pause_screen_main_panels": "ui/pause_screen.json", - "pause_screen_content/skin_panel": "ui/pause_screen.json", - "pause_screen_content/top_right_panel": "ui/pause_screen.json", - "pause_screen_content/gamepad_helpers": "ui/pause_screen.json", - "pause_screen_content/keyboard_helpers": "ui/pause_screen.json", - "pause_screen_content/debug_drawer_button_panel": "ui/pause_screen.json", - "top_right_panel": "ui/pause_screen.json", - "top_right_panel/pause_panel": "ui/pause_screen.json", - "top_right_panel/friendsdrawer_button_panel": "ui/pause_screen.json", - "friendsdrawer_button_panel": "ui/pause_screen.json", - "friendsdrawer_button_panel/friendsdrawer_button": "ui/pause_screen.json", - "friendsdrawer_button_panel/friends_drawer_ftue_popup_wrapper": "ui/pause_screen.json", - "friendsdrawer_button_panel/friends_drawer_ftue_popup_wrapper/friends_drawer_ftue_popup": "ui/pause_screen.json", - "pause_screen_main_panels": "ui/pause_screen.json", - "pause_screen_main_panels/menu": "ui/pause_screen.json", - "left_buttons_panel": "ui/pause_screen.json", - "left_buttons_panel/filler": "ui/pause_screen.json", - "left_buttons_panel/trialTime": "ui/pause_screen.json", - "left_buttons_panel/the_rest_panel": "ui/pause_screen.json", - "smaller_buttons_panel": "ui/pause_screen.json", - "smaller_buttons_panel/stacked_column": "ui/pause_screen.json", - "smaller_buttons_panel/stacked_column/fill_1": "ui/pause_screen.json", - "smaller_buttons_panel/stacked_column/side_padding": "ui/pause_screen.json", - "smaller_buttons_panel/stacked_column/small_settings_button": "ui/pause_screen.json", - "smaller_buttons_panel/stacked_column/small_settings_button/small_settings_btn": "ui/pause_screen.json", - "smaller_buttons_panel/stacked_column/small_settings_padding": "ui/pause_screen.json", - "smaller_buttons_panel/stacked_column/small_achievements_button": "ui/pause_screen.json", - "smaller_buttons_panel/stacked_column/small_achievements_button/small_achievements_btn": "ui/pause_screen.json", - "smaller_buttons_panel/stacked_column/small_achievements_padding": "ui/pause_screen.json", - "smaller_buttons_panel/stacked_column/take_screenshot_btn": "ui/pause_screen.json", - "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_button": "ui/pause_screen.json", - "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_gamepad_button": "ui/pause_screen.json", - "smaller_buttons_panel/stacked_column/screenshot_padding": "ui/pause_screen.json", - "smaller_buttons_panel/stacked_column/fill_3": "ui/pause_screen.json", - "smaller_buttons_panel/padding_bottom": "ui/pause_screen.json", - "social_buttons_panel": "ui/pause_screen.json", - "social_buttons_panel/friendsbutton_panel": "ui/pause_screen.json", - "social_buttons_panel/friendsbutton_panel/friendsdrawer_button": "ui/pause_screen.json", - "social_buttons_panel/friendsbutton_panel/friends_drawer__ftue_popup": "ui/pause_screen.json", - "social_buttons_panel/invitebutton_panel": "ui/pause_screen.json", - "social_buttons_panel/invitebutton_panel/invite_button": "ui/pause_screen.json", - "social_buttons_panel/invitebutton_panel/vertical_padding_2": "ui/pause_screen.json", - "the_rest_panel": "ui/pause_screen.json", - "the_rest_panel/fill_1": "ui/pause_screen.json", - "the_rest_panel/pause_menu": "ui/pause_screen.json", - "the_rest_panel/fill_3": "ui/pause_screen.json", - "paused_text": "ui/pause_screen.json", - "green_tag": "ui/pause_screen.json", - "paused_text_panel_grey": "ui/pause_screen.json", - "paused_text_panel_grey/pause": "ui/pause_screen.json", - "paused_text_panel_green": "ui/pause_screen.json", - "paused_text_panel_green/horizontal_stack": "ui/pause_screen.json", - "paused_text_panel_green/horizontal_stack/pause_icon": "ui/pause_screen.json", - "paused_text_panel_green/horizontal_stack/fill_1": "ui/pause_screen.json", - "paused_text_panel_green/horizontal_stack/pause": "ui/pause_screen.json", - "transparent_background": "ui/pause_screen.json", - "non_transparent_background": "ui/pause_screen.json", - "menu_the_rest_panel": "ui/pause_screen.json", - "menu_the_rest_panel/menu_button_control": "ui/pause_screen.json", - "menu_button_control": "ui/pause_screen.json", - "menu_button_control/menu_background": "ui/pause_screen.json", - "pause_announcement_panel_grey": "ui/pause_screen.json", - "pause_announcement_panel_grey/horizontal_stack": "ui/pause_screen.json", - "pause_announcement_panel_grey/horizontal_stack/fill_1": "ui/pause_screen.json", - "pause_announcement_panel_grey/horizontal_stack/pause_text": "ui/pause_screen.json", - "pause_announcement_panel_grey/horizontal_stack/fill_2": "ui/pause_screen.json", - "pause_announcement_panel_green": "ui/pause_screen.json", - "pause_announcement_panel_green/horizontal_stack": "ui/pause_screen.json", - "pause_announcement_panel_green/horizontal_stack/fill_1": "ui/pause_screen.json", - "pause_announcement_panel_green/horizontal_stack/pause_text": "ui/pause_screen.json", - "pause_announcement_panel_green/horizontal_stack/fill_2": "ui/pause_screen.json", - "menu_background": "ui/pause_screen.json", - "menu_background/button_panel": "ui/pause_screen.json", - "menu_background/button_panel/title_image": "ui/pause_screen.json", - "menu_background/button_panel/title_image/image": "ui/pause_screen.json", - "menu_background/button_panel/fill_1": "ui/pause_screen.json", - "menu_background/button_panel/return_to_game_button": "ui/pause_screen.json", - "menu_background/button_panel/return": "ui/pause_screen.json", - "menu_background/button_panel/settings_button": "ui/pause_screen.json", - "menu_background/button_panel/settings": "ui/pause_screen.json", - "menu_background/button_panel/realms_stories_button_panel": "ui/pause_screen.json", - "menu_background/button_panel/realms_stories": "ui/pause_screen.json", - "menu_background/button_panel/buy_button": "ui/pause_screen.json", - "menu_background/button_panel/buy": "ui/pause_screen.json", - "menu_background/button_panel/store_button_panel": "ui/pause_screen.json", - "menu_background/button_panel/store_button_panel_padding": "ui/pause_screen.json", - "menu_background/button_panel/quit_button": "ui/pause_screen.json", - "menu_background/button_panel/smaller_buttons": "ui/pause_screen.json", - "menu_background/button_panel/pause_panel": "ui/pause_screen.json", - "info_panel_content_list": "ui/pause_screen.json", - "info_panel_content_list/player_list_scrolling_panel": "ui/pause_screen.json", - "info_panel_content_list/vertical_padding": "ui/pause_screen.json", - "info_panel_background": "ui/pause_screen.json", - "info_panel": "ui/pause_screen.json", - "info_panel/info_panel_background": "ui/pause_screen.json", - "info_panel/info_panel_list": "ui/pause_screen.json", - "player_panel_background": "ui/pause_screen.json", - "player_panel_background/player_list_scrolling_panel": "ui/pause_screen.json", - "player_list": "ui/pause_screen.json", - "player_list/vertical_padding_0": "ui/pause_screen.json", - "player_list/social_buttons_panel": "ui/pause_screen.json", - "player_list/players_label": "ui/pause_screen.json", - "player_list/vertical_padding_4": "ui/pause_screen.json", - "player_list/players_grid_panel": "ui/pause_screen.json", - "player_list/vertical_padding_5": "ui/pause_screen.json", - "player_list/invite_players_button_panel": "ui/pause_screen.json", - "player_list/vertical_padding_6": "ui/pause_screen.json", - "player_list/disconnected_from_multiplayer_label_panel": "ui/pause_screen.json", - "player_list/vertical_padding_7": "ui/pause_screen.json", - "player_lists": "ui/pause_screen.json", - "player_lists/normal_list": "ui/pause_screen.json", - "player_lists/scoreboard_list": "ui/pause_screen.json", - "player_list_scrolling_panel": "ui/pause_screen.json", - "disconnected_label": "ui/pause_screen.json", - "disconnected_from_multiplayer_label_panel": "ui/pause_screen.json", - "disconnected_from_multiplayer_label_panel/disconnected_from_xbox_live_label": "ui/pause_screen.json", - "disconnected_from_multiplayer_label_panel/disconnected_from_third_party_label": "ui/pause_screen.json", - "disconnected_from_multiplayer_label_panel/disconnected_from_adhoc_label": "ui/pause_screen.json", - "disconnected_from_multiplayer_label_panel/disconnected_from_crossplatform_multiplayer": "ui/pause_screen.json", - "disconnected_from_multiplayer_label_panel/disconnected_from_multiplayer": "ui/pause_screen.json", - "invite_players_button_panel": "ui/pause_screen.json", - "invite_players_button_panel/invite_players_button": "ui/pause_screen.json", - "ip_label": "ui/pause_screen.json", - "players_label": "ui/pause_screen.json", - "players_grid": "ui/pause_screen.json", - "player_grid_item": "ui/pause_screen.json", - "player_grid_item/player_grid_item_content": "ui/pause_screen.json", - "player_grid_item_content": "ui/pause_screen.json", - "player_grid_item_content/player_button_panel": "ui/pause_screen.json", - "player_grid_item_content/player_button_panel/player_button_banner": "ui/pause_screen.json", - "player_grid_item_content/player_button_panel/player_button_banner/player_button": "ui/pause_screen.json", - "player_grid_item_content/player_button_panel/player_button_banner/player_banner": "ui/pause_screen.json", - "player_grid_item_content/player_button_panel/player_permission_button_padding": "ui/pause_screen.json", - "player_grid_item_content/player_permission_button_panel": "ui/pause_screen.json", - "player_grid_item_content/player_permission_button_panel/player_permission_button": "ui/pause_screen.json", - "player_permission_button": "ui/pause_screen.json", - "player_permission_button_content": "ui/pause_screen.json", - "player_permission_button_content/permission_icon_image": "ui/pause_screen.json", - "vertical_padding": "ui/pause_screen.json", - "horizontal_padding": "ui/pause_screen.json", - "player_button_content": "ui/pause_screen.json", - "player_button_content/player_pic_panel": "ui/pause_screen.json", - "player_button_content/player_gamertag": "ui/pause_screen.json", - "player_button_content/platform_icon": "ui/pause_screen.json", - "player_button": "ui/pause_screen.json", - "player_banner": "ui/pause_screen.json", - "player_pic_panel": "ui/pause_screen.json", - "player_pic_panel/player_gamer_pic": "ui/pause_screen.json", - "player_pic_panel/player_local_icon": "ui/pause_screen.json", - "player_local_icon": "ui/pause_screen.json", - "player_gamer_pic": "ui/pause_screen.json", - "player_gamer_pic/player_panel_black_border": "ui/pause_screen.json", - "gametag_wrapper": "ui/pause_screen.json", - "gametag_wrapper/gamertag": "ui/pause_screen.json", - "platform_icon_panel": "ui/pause_screen.json", - "platform_icon_panel/platform_icon": "ui/pause_screen.json", - "player_gamertag": "ui/pause_screen.json", - "platform_icon": "ui/pause_screen.json", - "player_grid_banner_no_focus": "ui/pause_screen.json", - "player_grid_banner": "ui/pause_screen.json", - "player_grid_banner/player_grid_banner_no_focus": "ui/pause_screen.json", - "player_grid_banner/player_grid_banner_no_focus/player_button_content": "ui/pause_screen.json", - "player_grid_banner/focus_border_button": "ui/pause_screen.json", - "focus_border_button": "ui/pause_screen.json", - "focus_border_button/default": "ui/pause_screen.json", - "focus_border_button/hover": "ui/pause_screen.json", - "focus_border_button/pressed": "ui/pause_screen.json", - "focus_border": "ui/pause_screen.json", - "pause_screen_border": "ui/pause_screen.json", - "filler_panel": "ui/pause_screen.json", - "gamepad_helpers": "ui/pause_screen.json", - "gamepad_helpers/gamepad_helper_y": "ui/pause_screen.json", - "keyboard_helpers": "ui/pause_screen.json", - "keyboard_helpers/keyboard_helper_keys": "ui/pause_screen.json", - "debug_drawer_button_content": "ui/pause_screen.json", - "debug_drawer_button_content/button_label_panel": "ui/pause_screen.json", - "debug_drawer_button_content/button_label_panel/button_label_text_left": "ui/pause_screen.json", - "debug_drawer_button_panel": "ui/pause_screen.json", - "debug_drawer_button_panel/debug_drawer_button_input": "ui/pause_screen.json", - "debug_drawer_button_panel/debug_drawer_button_input/debug_drawer_button": "ui/pause_screen.json", - }, - "pdp": { - "download_progress": "ui/pdp_screen.json", - "download_progress/stacker": "ui/pdp_screen.json", - "download_progress/stacker/sizer_text": "ui/pdp_screen.json", - "download_progress/stacker/sizer_text/download_progress_text": "ui/pdp_screen.json", - "download_progress/stacker/sizer_bar": "ui/pdp_screen.json", - "download_progress/stacker/sizer_bar/download_progress_bar": "ui/pdp_screen.json", - "summary_box_button_panel": "ui/pdp_screen.json", - "summary_box_button_panel/buttons_panel": "ui/pdp_screen.json", - "summary_box_button_panel/download_buttons_panel": "ui/pdp_screen.json", - "summary_box_button_panel/focus_border": "ui/pdp_screen.json", - "interaction_button_content": "ui/pdp_screen.json", - "interaction_button_content/line1_panel": "ui/pdp_screen.json", - "interaction_button_content/line1_panel/upsell_text": "ui/pdp_screen.json", - "interaction_button_panel": "ui/pdp_screen.json", - "interaction_button_panel/content_action_button": "ui/pdp_screen.json", - "interaction_button_panel/progress_bar": "ui/pdp_screen.json", - "interaction_button_panel/focus_border": "ui/pdp_screen.json", - "download_progress_small": "ui/pdp_screen.json", - "download_progress_small/stacker": "ui/pdp_screen.json", - "download_progress_small/stacker/sizer_text": "ui/pdp_screen.json", - "download_progress_small/stacker/sizer_text/download_progress_text": "ui/pdp_screen.json", - "download_progress_small/stacker/sizer_bar": "ui/pdp_screen.json", - "download_progress_small/stacker/sizer_bar/download_progress_bar": "ui/pdp_screen.json", - "progress_loading_anim": "ui/pdp_screen.json", - "focus_border": "ui/pdp_screen.json", - "focus_border/default": "ui/pdp_screen.json", - "focus_border/default/loading_anim": "ui/pdp_screen.json", - "focus_border/hover": "ui/pdp_screen.json", - "focus_border/hover/loading_anim": "ui/pdp_screen.json", - "focus_border/pressed": "ui/pdp_screen.json", - "focus_border/pressed/loading_anim": "ui/pdp_screen.json", - "purchase_button_base": "ui/pdp_screen.json", - "deactivated_purchase_button_base": "ui/pdp_screen.json", - "download_buttons_panel": "ui/pdp_screen.json", - "download_buttons_panel/progress_panel": "ui/pdp_screen.json", - "download_buttons_panel/progress_panel/progress_bar": "ui/pdp_screen.json", - "smooth_purchase_buttons_panel": "ui/pdp_screen.json", - "smooth_purchase_buttons_panel/activated_purchase_buttons_panel": "ui/pdp_screen.json", - "smooth_purchase_buttons_panel/deactivated_purchase_buttons_panel": "ui/pdp_screen.json", - "smooth_buttons_panel": "ui/pdp_screen.json", - "smooth_buttons_panel/purchase_buttons_panel": "ui/pdp_screen.json", - "smooth_buttons_panel/interact_filling_button": "ui/pdp_screen.json", - "smooth_buttons_panel/interact_exit_world_filling_button": "ui/pdp_screen.json", - "disabled_interact_label_formfitting": "ui/pdp_screen.json", - "disabled_interact_label_formfitting/info_icon": "ui/pdp_screen.json", - "disabled_interact_label_formfitting/info_icon_pad": "ui/pdp_screen.json", - "disabled_interact_label_formfitting/interact_label_panel": "ui/pdp_screen.json", - "disabled_interact_label_formfitting/interact_label_panel/interact_label_text_left": "ui/pdp_screen.json", - "disabled_interact_label_formfitting/pad": "ui/pdp_screen.json", - "interact_label_text": "ui/pdp_screen.json", - "activated_smooth_purchase_buttons_panel": "ui/pdp_screen.json", - "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel": "ui/pdp_screen.json", - "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel/smooth_purchase_with_coins_button": "ui/pdp_screen.json", - "activated_smooth_purchase_buttons_panel/pad_h1": "ui/pdp_screen.json", - "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel": "ui/pdp_screen.json", - "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel/purchase_with_currency_button": "ui/pdp_screen.json", - "deactivated_purchase_hover_popup": "ui/pdp_screen.json", - "deactivated_smooth_purchase_buttons_panel": "ui/pdp_screen.json", - "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button": "ui/pdp_screen.json", - "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/deactivated_purchase_hover_popup": "ui/pdp_screen.json", - "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/content": "ui/pdp_screen.json", - "deactivated_smooth_purchase_buttons_panel/pad_h1": "ui/pdp_screen.json", - "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel": "ui/pdp_screen.json", - "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel/deactivated_purchase_with_currency_button": "ui/pdp_screen.json", - "smooth_save_share_button_panel": "ui/pdp_screen.json", - "smooth_save_share_button_panel/pad_0": "ui/pdp_screen.json", - "smooth_save_share_button_panel/share_button": "ui/pdp_screen.json", - "smooth_save_share_button_panel/pad_1": "ui/pdp_screen.json", - "smooth_save_share_button_panel/save_button": "ui/pdp_screen.json", - "currency_purchase_label": "ui/pdp_screen.json", - "currency_purchase_label/currency_purchase_label_text": "ui/pdp_screen.json", - "coin_image": "ui/pdp_screen.json", - "smooth_currency_purchase_label": "ui/pdp_screen.json", - "smooth_currency_purchase_label/currency_purchase_label_text": "ui/pdp_screen.json", - "discount_label": "ui/pdp_screen.json", - "discount_label/label_panel": "ui/pdp_screen.json", - "discount_label/label_panel/label": "ui/pdp_screen.json", - "discount_label/icon_panel": "ui/pdp_screen.json", - "discount_label/icon_panel/icon": "ui/pdp_screen.json", - "coin_purchase_label_text": "ui/pdp_screen.json", - "smooth_coin_purchase_label_formfitting": "ui/pdp_screen.json", - "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel": "ui/pdp_screen.json", - "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel": "ui/pdp_screen.json", - "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner": "ui/pdp_screen.json", - "smooth_coin_purchase_label_formfitting/markdown_panel": "ui/pdp_screen.json", - "smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label": "ui/pdp_screen.json", - "smooth_coin_purchase_label_formfitting/fill_pad_left": "ui/pdp_screen.json", - "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel": "ui/pdp_screen.json", - "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin": "ui/pdp_screen.json", - "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel": "ui/pdp_screen.json", - "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left": "ui/pdp_screen.json", - "smooth_coin_purchase_label_formfitting/pad": "ui/pdp_screen.json", - "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel": "ui/pdp_screen.json", - "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin": "ui/pdp_screen.json", - "smooth_coin_purchase_label_formfitting/fill_pad_right": "ui/pdp_screen.json", - "disabled_smooth_coin_purchase_label_formfitting": "ui/pdp_screen.json", - "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel": "ui/pdp_screen.json", - "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel": "ui/pdp_screen.json", - "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner": "ui/pdp_screen.json", - "disabled_smooth_coin_purchase_label_formfitting/markdown_panel": "ui/pdp_screen.json", - "disabled_smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label": "ui/pdp_screen.json", - "disabled_smooth_coin_purchase_label_formfitting/fill_pad_left": "ui/pdp_screen.json", - "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel": "ui/pdp_screen.json", - "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel/info_bulb": "ui/pdp_screen.json", - "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel": "ui/pdp_screen.json", - "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin": "ui/pdp_screen.json", - "disabled_smooth_coin_purchase_label_formfitting/info_icon_pad": "ui/pdp_screen.json", - "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel": "ui/pdp_screen.json", - "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left": "ui/pdp_screen.json", - "disabled_smooth_coin_purchase_label_formfitting/pad": "ui/pdp_screen.json", - "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel": "ui/pdp_screen.json", - "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin": "ui/pdp_screen.json", - "disabled_smooth_coin_purchase_label_formfitting/fill_pad_right": "ui/pdp_screen.json", - "share_icon": "ui/pdp_screen.json", - "share_label": "ui/pdp_screen.json", - "share_label/share_image_offset_panel": "ui/pdp_screen.json", - "share_label/share_image_offset_panel/link_share": "ui/pdp_screen.json", - "save_label_panel": "ui/pdp_screen.json", - "save_label_panel/heart_image": "ui/pdp_screen.json", - "save_label_panel/progress_loading": "ui/pdp_screen.json", - "save_label": "ui/pdp_screen.json", - "save_label/save_image_offset_panel": "ui/pdp_screen.json", - "save_label/save_image_offset_panel/full_heart": "ui/pdp_screen.json", - "save_label/save_image_offset_panel/empty_heart": "ui/pdp_screen.json", - "large_button_coin_purchase_label": "ui/pdp_screen.json", - "large_button_coin_purchase_label/markdown_banner_filler_panel": "ui/pdp_screen.json", - "large_button_coin_purchase_label/center_markdown_panel": "ui/pdp_screen.json", - "large_button_coin_purchase_label/center_markdown_panel/markdown_banner": "ui/pdp_screen.json", - "large_button_coin_purchase_label/sales_padding_0": "ui/pdp_screen.json", - "large_button_coin_purchase_label/price_markdown_panel": "ui/pdp_screen.json", - "large_button_coin_purchase_label/price_markdown_panel/price_markdown_label": "ui/pdp_screen.json", - "large_button_coin_purchase_label/sales_padding_1": "ui/pdp_screen.json", - "large_button_coin_purchase_label/left_coin_image_offset_panel": "ui/pdp_screen.json", - "large_button_coin_purchase_label/left_coin_image_offset_panel/coin": "ui/pdp_screen.json", - "large_button_coin_purchase_label/coin_purchase_label_panel": "ui/pdp_screen.json", - "large_button_coin_purchase_label/coin_purchase_label_panel/coin_purchase_label_text": "ui/pdp_screen.json", - "large_button_coin_purchase_label/right_coin_image_offset_panel": "ui/pdp_screen.json", - "large_button_coin_purchase_label/right_coin_image_offset_panel/coin": "ui/pdp_screen.json", - "large_button_coin_purchase_label/fill_padding_1": "ui/pdp_screen.json", - "price_markdown_panel": "ui/pdp_screen.json", - "price_markdown_panel/offer_price": "ui/pdp_screen.json", - "price_markdown_panel/offer_price/text_strike_through": "ui/pdp_screen.json", - "vertical_padding_2px": "ui/pdp_screen.json", - "vertical_padding_4px": "ui/pdp_screen.json", - "vertical_padding_fill": "ui/pdp_screen.json", - "horizontal_padding_2px": "ui/pdp_screen.json", - "horizontal_padding_4px": "ui/pdp_screen.json", - "horizontal_padding_8px": "ui/pdp_screen.json", - "horizontal_padding_fill": "ui/pdp_screen.json", - "empty_content_panel": "ui/pdp_screen.json", - "section_header": "ui/pdp_screen.json", - "section_header/header_label": "ui/pdp_screen.json", - "content_section_bg": "ui/pdp_screen.json", - "content_section_bg/pad": "ui/pdp_screen.json", - "content_section_bg/section_header": "ui/pdp_screen.json", - "content_section_bg/bg_and_content": "ui/pdp_screen.json", - "content_section_bg/bg_and_content/bg": "ui/pdp_screen.json", - "content_section_boarder_bg": "ui/pdp_screen.json", - "content_section_boarder_bg/pad": "ui/pdp_screen.json", - "content_section_boarder_bg/bg_and_content": "ui/pdp_screen.json", - "content_section_boarder_bg/bg_and_content/bg": "ui/pdp_screen.json", - "content_section_boarder_bg/bg_and_content/bg/inner": "ui/pdp_screen.json", - "content_section_boarder_bg/pad_3": "ui/pdp_screen.json", - "content_section_boarder_bg/divider_3": "ui/pdp_screen.json", - "summary_factory_object": "ui/pdp_screen.json", - "summary_factory_object/summary": "ui/pdp_screen.json", - "summary_factory_object/navigation_tab_section": "ui/pdp_screen.json", - "summary_factory_object/update_notification_section": "ui/pdp_screen.json", - "screenshot_carousel_factory_object": "ui/pdp_screen.json", - "screenshot_carousel_factory_object/resource_pack_content_panel": "ui/pdp_screen.json", - "screenshot_carousel_factory_object/pad_3": "ui/pdp_screen.json", - "screenshot_carousel_factory_object/divider_3": "ui/pdp_screen.json", - "image_gallery_factory_object": "ui/pdp_screen.json", - "image_gallery_factory_object/resource_pack_content_panel": "ui/pdp_screen.json", - "left_text_right_image_factory_object": "ui/pdp_screen.json", - "left_text_right_image_factory_object/resource_pack_content_panel": "ui/pdp_screen.json", - "right_text_left_image_factory_object": "ui/pdp_screen.json", - "right_text_left_image_factory_object/resource_pack_content_panel": "ui/pdp_screen.json", - "skin_pack_section_factory_object": "ui/pdp_screen.json", - "skin_pack_section_factory_object/skin_pack_section_factory_content": "ui/pdp_screen.json", - "skin_pack_section_factory_object/skin_pack_section_factory_content/skin_pack_content_panel": "ui/pdp_screen.json", - "skin_pack_section_factory_object/skin_pack_section_factory_content/pad_3": "ui/pdp_screen.json", - "skin_pack_section_factory_object/skin_pack_section_factory_content/divider_3": "ui/pdp_screen.json", - "panorama_view_factory_object": "ui/pdp_screen.json", - "panorama_view_factory_object/panorama_view_content_panel": "ui/pdp_screen.json", - "panorama_view_factory_object/pad_3": "ui/pdp_screen.json", - "panorama_view_factory_object/divider_3": "ui/pdp_screen.json", - "ratings_factory_object": "ui/pdp_screen.json", - "ratings_factory_object/rating_factory_object_content": "ui/pdp_screen.json", - "focus_container_button": "ui/pdp_screen.json", - "focus_container_button/default": "ui/pdp_screen.json", - "bundle_summary_factory_object": "ui/pdp_screen.json", - "bundle_summary_factory_object/bundle_summary_factory_object_content": "ui/pdp_screen.json", - "pdp_cycle_offer_row_content": "ui/pdp_screen.json", - "pdp_cycle_offer_row_content/store_row_panel": "ui/pdp_screen.json", - "pdp_cycle_offer_row_content/pad_3": "ui/pdp_screen.json", - "pdp_cycle_offer_row_content/divider_3": "ui/pdp_screen.json", - "pdp_cycle_offer_row_section": "ui/pdp_screen.json", - "scrolling_content_stack": "ui/pdp_screen.json", - "warning_image": "ui/pdp_screen.json", - "scaling_rating": "ui/pdp_screen.json", - "scaling_rating/empty_rating": "ui/pdp_screen.json", - "scaling_rating/empty_rating/full_rating": "ui/pdp_screen.json", - "scaling_rating_new": "ui/pdp_screen.json", - "scaling_rating_new/empty_rating": "ui/pdp_screen.json", - "scaling_rating_new/empty_rating/full_rating": "ui/pdp_screen.json", - "chart_section": "ui/pdp_screen.json", - "chart_section/stack": "ui/pdp_screen.json", - "chart_section/stack/star_number_panel": "ui/pdp_screen.json", - "chart_section/stack/star_number_panel/star_number": "ui/pdp_screen.json", - "chart_section/stack/star_panel": "ui/pdp_screen.json", - "chart_section/stack/star_panel/star_img": "ui/pdp_screen.json", - "chart_section/stack/pad_0": "ui/pdp_screen.json", - "chart_section/stack/bar_panel": "ui/pdp_screen.json", - "chart_section/stack/bar_panel/bar": "ui/pdp_screen.json", - "chart_section/stack/bar_panel/bar/full_bar": "ui/pdp_screen.json", - "chart_section/stack/pad_1": "ui/pdp_screen.json", - "chart_section/stack/percent": "ui/pdp_screen.json", - "ratings_chart": "ui/pdp_screen.json", - "ratings_chart/5_star": "ui/pdp_screen.json", - "ratings_chart/4_star": "ui/pdp_screen.json", - "ratings_chart/3_star": "ui/pdp_screen.json", - "ratings_chart/2_star": "ui/pdp_screen.json", - "ratings_chart/1_star": "ui/pdp_screen.json", - "ratings_chart_panel": "ui/pdp_screen.json", - "ratings_chart_panel/ratings_chart_content": "ui/pdp_screen.json", - "ratings_chart_panel/ratings_chart_content/pad_0": "ui/pdp_screen.json", - "ratings_chart_panel/ratings_chart_content/title": "ui/pdp_screen.json", - "ratings_chart_panel/ratings_chart_content/title/title_text": "ui/pdp_screen.json", - "ratings_chart_panel/ratings_chart_content/pad_1": "ui/pdp_screen.json", - "ratings_chart_panel/ratings_chart_content/rating_panel": "ui/pdp_screen.json", - "ratings_chart_panel/ratings_chart_content/rating_panel/rating": "ui/pdp_screen.json", - "ratings_chart_panel/ratings_chart_content/rating_panel/rating/rating_bar": "ui/pdp_screen.json", - "ratings_chart_panel/ratings_chart_content/rating_panel/rating/pad": "ui/pdp_screen.json", - "ratings_chart_panel/ratings_chart_content/rating_text_panel": "ui/pdp_screen.json", - "ratings_chart_panel/ratings_chart_content/rating_text_panel/rating_text": "ui/pdp_screen.json", - "ratings_chart_panel/ratings_chart_content/count_panel": "ui/pdp_screen.json", - "ratings_chart_panel/ratings_chart_content/count_panel/count": "ui/pdp_screen.json", - "ratings_chart_panel/ratings_chart_content/pad_2": "ui/pdp_screen.json", - "ratings_chart_panel/ratings_chart_content/chart": "ui/pdp_screen.json", - "ratings_chart_panel/ratings_chart_content/pad_3": "ui/pdp_screen.json", - "ratings_box": "ui/pdp_screen.json", - "ratings_box/ratings_panel_focus_point": "ui/pdp_screen.json", - "ratings_box/ratings_full_panel": "ui/pdp_screen.json", - "ratings_box/ratings_full_panel/ratings_chart_and_button": "ui/pdp_screen.json", - "ratings_box/ratings_full_panel/ratings_chart_and_button/chart": "ui/pdp_screen.json", - "ratings_box/ratings_full_panel/ratings_chart_and_button/pad_1": "ui/pdp_screen.json", - "ratings_box/divider": "ui/pdp_screen.json", - "user_rating_star_button": "ui/pdp_screen.json", - "user_rating_star_button/default": "ui/pdp_screen.json", - "user_rating_star_button/default/default_user_rating_star": "ui/pdp_screen.json", - "user_rating_star_button/hover": "ui/pdp_screen.json", - "user_rating_star_button/hover/hover_user_rating_star": "ui/pdp_screen.json", - "user_rating_star_list_grid": "ui/pdp_screen.json", - "ratings_interact_panel": "ui/pdp_screen.json", - "ratings_interact_panel/title_text": "ui/pdp_screen.json", - "ratings_interact_panel/pad_vertical_4px": "ui/pdp_screen.json", - "ratings_interact_panel/rating_stars_and_button_panel": "ui/pdp_screen.json", - "ratings_interact_panel/rating_stars_and_button_panel/fill_stars": "ui/pdp_screen.json", - "ratings_interact_panel/rating_stars_and_button_panel/fill_stars/rating_buttons": "ui/pdp_screen.json", - "ratings_interact_panel/rating_stars_and_button_panel/pad_3_percent": "ui/pdp_screen.json", - "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel": "ui/pdp_screen.json", - "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel/submit": "ui/pdp_screen.json", - "ratings_interact_panel/pad_vertical_8px": "ui/pdp_screen.json", - "ratings_interact_panel/fill_pad": "ui/pdp_screen.json", - "ratings_interact_panel/fill_pad/text": "ui/pdp_screen.json", - "ratings_interact_panel/send_feedback_button": "ui/pdp_screen.json", - "ratings_interact_panel/pad_1": "ui/pdp_screen.json", - "ratings_info_panel": "ui/pdp_screen.json", - "ratings_info_panel/ratings": "ui/pdp_screen.json", - "ratings_info_panel/ratings_right": "ui/pdp_screen.json", - "ratings_info_panel/ratings_right/ratings_interact_panel": "ui/pdp_screen.json", - "ratings_content_panel": "ui/pdp_screen.json", - "panorama_view_content": "ui/pdp_screen.json", - "panorama_view_content/panorama_panel": "ui/pdp_screen.json", - "panorama_view_content/panorama_panel/panorama_content": "ui/pdp_screen.json", - "skins": "ui/pdp_screen.json", - "skin_pack_content_panel": "ui/pdp_screen.json", - "resource_pack_content": "ui/pdp_screen.json", - "resource_pack_content/screenshots": "ui/pdp_screen.json", - "image_row_left_text_content": "ui/pdp_screen.json", - "image_row_left_text_content/buffer_panel_front": "ui/pdp_screen.json", - "image_row_left_text_content/text_section": "ui/pdp_screen.json", - "image_row_left_text_content/text_section/left_header": "ui/pdp_screen.json", - "image_row_left_text_content/text_section/left_text": "ui/pdp_screen.json", - "image_row_left_text_content/text_section/buffer_panel_bottom": "ui/pdp_screen.json", - "image_row_left_text_content/buffer_panel_mid": "ui/pdp_screen.json", - "image_row_left_text_content/screenshots_single": "ui/pdp_screen.json", - "image_row_left_text_content/buffer_panel_back": "ui/pdp_screen.json", - "image_row_right_text_content": "ui/pdp_screen.json", - "image_row_right_text_content/buffer_panel_front": "ui/pdp_screen.json", - "image_row_right_text_content/screenshots_single": "ui/pdp_screen.json", - "image_row_right_text_content/buffer_panel_mid": "ui/pdp_screen.json", - "image_row_right_text_content/text_section": "ui/pdp_screen.json", - "image_row_right_text_content/text_section/right_header": "ui/pdp_screen.json", - "image_row_right_text_content/text_section/right_text": "ui/pdp_screen.json", - "image_row_right_text_content/text_section/buffer_panel_bottom": "ui/pdp_screen.json", - "image_row_right_text_content/buffer_panel_back": "ui/pdp_screen.json", - "image_row_content": "ui/pdp_screen.json", - "image_row_content/screenshots_triple": "ui/pdp_screen.json", - "play_button": "ui/pdp_screen.json", - "csb_expiration": "ui/pdp_screen.json", - "csb_expiration/background": "ui/pdp_screen.json", - "csb_expiration/background/content_stack_panel": "ui/pdp_screen.json", - "csb_expiration/background/content_stack_panel/icon_wrapper": "ui/pdp_screen.json", - "csb_expiration/background/content_stack_panel/icon_wrapper/icon": "ui/pdp_screen.json", - "csb_expiration/background/content_stack_panel/text_wrapper": "ui/pdp_screen.json", - "csb_expiration/background/content_stack_panel/text_wrapper/text": "ui/pdp_screen.json", - "summary_content_left_side": "ui/pdp_screen.json", - "summary_content_left_side/pad_left": "ui/pdp_screen.json", - "summary_content_left_side/full_content": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/image": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/image/key_image": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/image/key_image/border": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/image/key_image/csb_expiration_banner": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/image/key_image/video_overlay_button": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/mask": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/default": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/hover": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/image/key_image/rtx_label": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/divider": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/info": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/info/summary_title_and_author_panel": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/info/pad_fill": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/info/glyph_section": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/info/glyph_section/glyph_section_panel": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/info/ratings_summary": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel/rating": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/summary_rating_button": "ui/pdp_screen.json", - "summary_content_left_side/full_content/top/info/vibrant_visuals_badge_and_hover": "ui/pdp_screen.json", - "summary_content_left_side/full_content/bottom": "ui/pdp_screen.json", - "offer_title_label": "ui/pdp_screen.json", - "title_and_author_panel": "ui/pdp_screen.json", - "title_and_author_panel/title_panel": "ui/pdp_screen.json", - "title_and_author_panel/author_button_panel": "ui/pdp_screen.json", - "title_and_author_panel/author_button_panel/summary_author_button": "ui/pdp_screen.json", - "description_label": "ui/pdp_screen.json", - "warning_stack_panel": "ui/pdp_screen.json", - "warning_stack_panel/warning_icon": "ui/pdp_screen.json", - "warning_stack_panel/pad_0": "ui/pdp_screen.json", - "warning_stack_panel/warning_text_panel": "ui/pdp_screen.json", - "warning_stack_panel/warning_text_panel/warning_text": "ui/pdp_screen.json", - "warning_panel": "ui/pdp_screen.json", - "warning_panel/background": "ui/pdp_screen.json", - "warning_panel/content_stack_panel": "ui/pdp_screen.json", - "description_toggle_show_button_panel": "ui/pdp_screen.json", - "description_toggle_show_button_panel/description_bottom_right_button_border": "ui/pdp_screen.json", - "description_toggle_show_button_panel/description_toggle_show_button": "ui/pdp_screen.json", - "description_toggle_show_button_panel/warning_icon": "ui/pdp_screen.json", - "vibrant_visuals_underline_button": "ui/pdp_screen.json", - "vibrant_visuals_hover_popup": "ui/pdp_screen.json", - "vibrant_visuals_badge_display": "ui/pdp_screen.json", - "vibrant_visuals_badge_display/vibrant_visuals_underline_button": "ui/pdp_screen.json", - "vibrant_visuals_badge_and_hover": "ui/pdp_screen.json", - "vibrant_visuals_badge_and_hover/vibrant_visuals_hover_popup": "ui/pdp_screen.json", - "vibrant_visuals_badge_and_hover/vibrant_visuals_badge_display": "ui/pdp_screen.json", - "glyph_icon": "ui/pdp_screen.json", - "glyph_count_label": "ui/pdp_screen.json", - "glyph_count_underline_button": "ui/pdp_screen.json", - "glyph_count_hover_underline_button_panel": "ui/pdp_screen.json", - "glyph_count_hover_underline_button_panel/glyph_hover_popup": "ui/pdp_screen.json", - "glyph_count_hover_underline_button_panel/glyph_count_underline_button": "ui/pdp_screen.json", - "glyph_icon_with_count": "ui/pdp_screen.json", - "glyph_icon_with_count/glyph_icon": "ui/pdp_screen.json", - "glyph_icon_with_count/horizontal_padding": "ui/pdp_screen.json", - "glyph_icon_with_count/item_glyph_count_panel_label": "ui/pdp_screen.json", - "glyph_panel_hover_popup": "ui/pdp_screen.json", - "glyph_panel_mashup_hover_popup": "ui/pdp_screen.json", - "mashup_glyph_tooltip_content": "ui/pdp_screen.json", - "mashup_glyph_tooltip_content/mashup_text_row": "ui/pdp_screen.json", - "mashup_glyph_tooltip_content/mashup_text_row/info_icon": "ui/pdp_screen.json", - "mashup_glyph_tooltip_content/mashup_text_row/mashup_line_one": "ui/pdp_screen.json", - "mashup_glyph_tooltip_content/mashup_line_two": "ui/pdp_screen.json", - "mashup_glyph_tooltip_content/offset_panel": "ui/pdp_screen.json", - "mashup_glyph_tooltip_content/offset_panel/basic_vertical_glyph_section_panel": "ui/pdp_screen.json", - "glyph_section_mashup": "ui/pdp_screen.json", - "glyph_section_skin": "ui/pdp_screen.json", - "glyph_section_resource_pack": "ui/pdp_screen.json", - "glyph_section_world": "ui/pdp_screen.json", - "glyph_section_addon": "ui/pdp_screen.json", - "basic_vertical_glyph_section_panel": "ui/pdp_screen.json", - "basic_vertical_glyph_section_panel/glyph_section_skin": "ui/pdp_screen.json", - "basic_vertical_glyph_section_panel/glyph_section_world": "ui/pdp_screen.json", - "basic_vertical_glyph_section_panel/glyph_section_resource_pack": "ui/pdp_screen.json", - "basic_vertical_glyph_section_panel/glyph_section_addon": "ui/pdp_screen.json", - "vertical_glyph_section_panel": "ui/pdp_screen.json", - "vertical_glyph_section_panel/glyph_section_mashup": "ui/pdp_screen.json", - "vertical_glyph_section_panel/basic_vertical_glyph_section_panel": "ui/pdp_screen.json", - "summary_text_panel": "ui/pdp_screen.json", - "summary_text_panel/top_interact_button_stack": "ui/pdp_screen.json", - "summary_text_panel/top_interact_button_stack/top_interact": "ui/pdp_screen.json", - "summary_text_panel/apply_to_realm_panel": "ui/pdp_screen.json", - "summary_text_panel/apply_to_realm_panel/apply_to_realm_button": "ui/pdp_screen.json", - "summary_text_panel/in_csb_panel": "ui/pdp_screen.json", - "summary_text_panel/in_csb_panel/in_csb_button": "ui/pdp_screen.json", - "summary_text_panel/progress_loading_anim_panel": "ui/pdp_screen.json", - "summary_text_panel/progress_loading_anim_panel/progress_loading_anim": "ui/pdp_screen.json", - "summary_text_panel/pad_0": "ui/pdp_screen.json", - "summary_text_panel/disclaimer_panel": "ui/pdp_screen.json", - "summary_text_panel/pad_1": "ui/pdp_screen.json", - "summary_text_panel/save_share_button_panel": "ui/pdp_screen.json", - "summary_text_panel/pad_2": "ui/pdp_screen.json", - "info_bulb_image": "ui/pdp_screen.json", - "info_bulb_image_small": "ui/pdp_screen.json", - "info_bulb_image_small_centered": "ui/pdp_screen.json", - "info_bulb_image_small_centered/top_filler": "ui/pdp_screen.json", - "info_bulb_image_small_centered/middle_panel": "ui/pdp_screen.json", - "info_bulb_image_small_centered/middle_panel/front_filler": "ui/pdp_screen.json", - "info_bulb_image_small_centered/middle_panel/info_bulb": "ui/pdp_screen.json", - "info_bulb_image_small_centered/middle_panel/bottom_filler": "ui/pdp_screen.json", - "info_bulb_image_small_centered/bottom_filler": "ui/pdp_screen.json", - "realms_incompatable_content": "ui/pdp_screen.json", - "realms_incompatable_content/realms_content_stack_panel": "ui/pdp_screen.json", - "realms_incompatable_content/realms_content_stack_panel/info_bulb_image": "ui/pdp_screen.json", - "realms_incompatable_content/realms_content_stack_panel/padding": "ui/pdp_screen.json", - "realms_incompatable_content/realms_content_stack_panel/realms_incompatable_button_label": "ui/pdp_screen.json", - "apply_to_realm_button": "ui/pdp_screen.json", - "in_csb_button": "ui/pdp_screen.json", - "read_more_button": "ui/pdp_screen.json", - "read_more_button/default": "ui/pdp_screen.json", - "read_more_button/hover": "ui/pdp_screen.json", - "read_more_button/pressed": "ui/pdp_screen.json", - "summary_content_right_side": "ui/pdp_screen.json", - "summary_content_right_side/pad_middle": "ui/pdp_screen.json", - "summary_content_right_side/text": "ui/pdp_screen.json", - "summary_content_right_side/entitlements_progress_panel": "ui/pdp_screen.json", - "summary_content_right_side/entitlements_progress_panel/progress_loading": "ui/pdp_screen.json", - "summary_content_right_side/pad_right": "ui/pdp_screen.json", - "summary_content_whole_stack_panel": "ui/pdp_screen.json", - "summary_content_whole_stack_panel/left_side": "ui/pdp_screen.json", - "summary_content_whole_stack_panel/divider_panel": "ui/pdp_screen.json", - "summary_content_whole_stack_panel/right_side": "ui/pdp_screen.json", - "summary_content_panel": "ui/pdp_screen.json", - "summary_content_panel/pad_top": "ui/pdp_screen.json", - "summary_content_panel/summary_content_whole_stack": "ui/pdp_screen.json", - "summary_content_panel/pad_3": "ui/pdp_screen.json", - "summary_content_panel/divider_3": "ui/pdp_screen.json", - "appearance_status_image_panel": "ui/pdp_screen.json", - "appearance_status_image_panel/limited_status_image": "ui/pdp_screen.json", - "appearance_status_image_panel/no_restrictions_status_image": "ui/pdp_screen.json", - "appearance_status_content": "ui/pdp_screen.json", - "appearance_status_content/appearance_status_image_panel": "ui/pdp_screen.json", - "appearance_status_content/last_update_panel": "ui/pdp_screen.json", - "appearance_status_content/last_update_panel/last_update_label": "ui/pdp_screen.json", - "dynamic_tooltip_notification_panel": "ui/pdp_screen.json", - "dynamic_tooltip_notification_panel/default": "ui/pdp_screen.json", - "dynamic_tooltip_notification_panel/hover": "ui/pdp_screen.json", - "dynamic_tooltip_notification_panel/pressed": "ui/pdp_screen.json", - "update_notification_content": "ui/pdp_screen.json", - "update_notification_content/dynamic_tooltip_notification_panel": "ui/pdp_screen.json", - "update_notification_content/status": "ui/pdp_screen.json", - "update_notification_stack_panel": "ui/pdp_screen.json", - "update_notification_stack_panel/pad_0": "ui/pdp_screen.json", - "update_notification_stack_panel/content": "ui/pdp_screen.json", - "update_notification_stack_panel/pad_1": "ui/pdp_screen.json", - "tag_base": "ui/pdp_screen.json", - "tag_button_panel": "ui/pdp_screen.json", - "tag_button_panel/button": "ui/pdp_screen.json", - "tag_button_panel/button/default": "ui/pdp_screen.json", - "tag_button_panel/button/hover": "ui/pdp_screen.json", - "tag_button_panel/button/pressed": "ui/pdp_screen.json", - "tag_button_panel/button/label": "ui/pdp_screen.json", - "tag_row_factory": "ui/pdp_screen.json", - "player_count_button_panel": "ui/pdp_screen.json", - "player_count_button_panel/player_count_button": "ui/pdp_screen.json", - "player_count_button_panel/comma": "ui/pdp_screen.json", - "player_count_factory": "ui/pdp_screen.json", - "language_button_panel": "ui/pdp_screen.json", - "language_button_panel/language_button": "ui/pdp_screen.json", - "language_button_panel/comma": "ui/pdp_screen.json", - "language_row_factory": "ui/pdp_screen.json", - "description_inner_panel": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/pad_0": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/title_stack_panel": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_label_icon": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/pad_0": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel/title_label": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/title_stack_panel/pad_0": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel/divider": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/title_stack_panel/pad_1": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/description_text_panel_full": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/description_label": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/pad_0": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/warning_panel": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/description_text_panel_full/button_panel": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/description_text_panel_collapsed": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/description_text_panel_collapsed/description_text_collapsed": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/description_text_panel_collapsed/collapsed_show_more_panel": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/pad_1": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/divider_panel": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/divider_panel/divider": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/pad_2": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/tags_panel": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/tags_panel/label_text_panel": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/tags_panel/label_text_panel/label_text": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/tags_panel/pad": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory_with_rows": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/genre_panel": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/genre_panel/label_text": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/genre_panel/pad": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/genre_panel/text_panel": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/genre_button": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/pad_0": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/slash_divider": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/subgenre_button": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/players_panel": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/players_panel/label_text": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/players_panel/pad": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/players_panel/text_panel": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_button_factory": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/pad": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_range_panel": "ui/pdp_screen.json", - "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": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/note_text": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/languages_panel": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/languages_panel/label_text_panel": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/languages_panel/label_text_panel/label_text": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/languages_panel/pad": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/languages_panel/languages_factory": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/pad_3": "ui/pdp_screen.json", - "description_inner_panel/description_stack_panel/show_less_button_panel": "ui/pdp_screen.json", - "description_section": "ui/pdp_screen.json", - "changelog_section": "ui/pdp_screen.json", - "bundle_thumbnail": "ui/pdp_screen.json", - "bundle_thumbnail_section_content": "ui/pdp_screen.json", - "bundle_thumbnail_section_content/bundle_thumbnail_grid": "ui/pdp_screen.json", - "bundle_thumbnail_section": "ui/pdp_screen.json", - "price_panel": "ui/pdp_screen.json", - "price_panel/coin_non_sale_price_label": "ui/pdp_screen.json", - "price_panel/price_padding": "ui/pdp_screen.json", - "price_panel/offer_prompt_panel": "ui/pdp_screen.json", - "price_panel/offer_prompt_panel/offer_status_text": "ui/pdp_screen.json", - "price_panel/padding_3": "ui/pdp_screen.json", - "price_panel/coin_panel": "ui/pdp_screen.json", - "price_panel/coin_panel/offer_coin_icon": "ui/pdp_screen.json", - "rating_and_coins_panel": "ui/pdp_screen.json", - "rating_and_coins_panel/rating_panel": "ui/pdp_screen.json", - "rating_and_coins_panel/rating_padding_coin": "ui/pdp_screen.json", - "rating_and_coins_panel/price_panel": "ui/pdp_screen.json", - "bundle_offer_texture": "ui/pdp_screen.json", - "bundle_offer_texture/texture": "ui/pdp_screen.json", - "bundle_offer_texture/texture/border": "ui/pdp_screen.json", - "bundle_offer_info": "ui/pdp_screen.json", - "bundle_offer_info/top_padding": "ui/pdp_screen.json", - "bundle_offer_info/offer_title_and_author_panel": "ui/pdp_screen.json", - "bundle_offer_info/glyph_section": "ui/pdp_screen.json", - "bundle_offer_info/glyph_description_padding": "ui/pdp_screen.json", - "bundle_offer_info/description_panel": "ui/pdp_screen.json", - "bundle_offer_info/description_padding": "ui/pdp_screen.json", - "bundle_offer_info/description_padding_bottom": "ui/pdp_screen.json", - "bundle_offer_info/rating_and_price_panel": "ui/pdp_screen.json", - "bundle_offer_info/bottom_padding": "ui/pdp_screen.json", - "bundle_offer_summary_grid_item_content": "ui/pdp_screen.json", - "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel": "ui/pdp_screen.json", - "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/focus_border": "ui/pdp_screen.json", - "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel": "ui/pdp_screen.json", - "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/key_art": "ui/pdp_screen.json", - "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/mid_padding": "ui/pdp_screen.json", - "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/info": "ui/pdp_screen.json", - "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/right_padding": "ui/pdp_screen.json", - "bundle_offer_summary_grid_item": "ui/pdp_screen.json", - "bundle_offer_summary_grid_item/bundle_offer_summary_button": "ui/pdp_screen.json", - "bundle_offer_content_section": "ui/pdp_screen.json", - "bundle_offer_content_section/bundle_grid": "ui/pdp_screen.json", - "bundle_summary_section_panel": "ui/pdp_screen.json", - "bundle_summary_section_panel/bundle_summary_section": "ui/pdp_screen.json", - "bundle_summary_section_panel/bundle_summary_section/bundle_header_and_thumnails_section": "ui/pdp_screen.json", - "bundle_summary_section_panel/bundle_summary_section/mid_padding": "ui/pdp_screen.json", - "bundle_summary_section_panel/bundle_summary_section/bundle_offers_info_section": "ui/pdp_screen.json", - "bundle_summary_section_panel/bundle_summary_section/mid_padding_2": "ui/pdp_screen.json", - "bundle_summary_section_panel/bundle_summary_section/interact_panel": "ui/pdp_screen.json", - "bundle_summary_section_panel/bundle_summary_section/interact_panel/bundle_interact": "ui/pdp_screen.json", - "bundle_summary_section_panel/divider_3": "ui/pdp_screen.json", - "pdp_screen": "ui/pdp_screen.json", - "mashup_screen_content": "ui/pdp_screen.json", - "mashup_screen_content/header": "ui/pdp_screen.json", - "mashup_screen_content/popup_dialog_factory": "ui/pdp_screen.json", - "mashup_screen_main": "ui/pdp_screen.json", - "mashup_screen_main/pack_content": "ui/pdp_screen.json", - "mashup_screen_main/progress_loading": "ui/pdp_screen.json", - }, - "pdp_screenshots": { - "banner_empty": "ui/pdp_screenshots_section.json", - "screenshot_carousel": "ui/pdp_screenshots_section.json", - "screenshot_carousel/screenshot_carousel_content": "ui/pdp_screenshots_section.json", - "screenshot_carousel/screenshot_carousel_content/cycle_pack_left_button": "ui/pdp_screenshots_section.json", - "screenshot_carousel/screenshot_carousel_content/screenshots_grid": "ui/pdp_screenshots_section.json", - "screenshot_carousel/screenshot_carousel_content/cycle_pack_right_button": "ui/pdp_screenshots_section.json", - "screenshots_grid": "ui/pdp_screenshots_section.json", - "screenshots_grid/left_image_panel": "ui/pdp_screenshots_section.json", - "screenshots_grid/middle_image_panel": "ui/pdp_screenshots_section.json", - "screenshots_grid/right_image_panel": "ui/pdp_screenshots_section.json", - "screenshots_grid_item": "ui/pdp_screenshots_section.json", - "screenshots_grid_item/frame": "ui/pdp_screenshots_section.json", - "screenshots_grid_item/frame/screenshot_button": "ui/pdp_screenshots_section.json", - "screenshots_grid_item/frame/screenshot_button/hover": "ui/pdp_screenshots_section.json", - "screenshots_grid_item/frame/screenshot_button/pressed": "ui/pdp_screenshots_section.json", - "screenshots_grid_item/screenshot_image": "ui/pdp_screenshots_section.json", - "screenshots_grid_item/progress_loading": "ui/pdp_screenshots_section.json", - }, - "permissions": { - "permissions_screen": "ui/permissions_screen.json", - "permissions_screen_content": "ui/permissions_screen.json", - "permissions_screen_content/top_bar_panel": "ui/permissions_screen.json", - "permissions_screen_content/content_panel": "ui/permissions_screen.json", - "top_bar_panel": "ui/permissions_screen.json", - "top_bar_panel/top_bar": "ui/permissions_screen.json", - "top_bar_panel/back_button": "ui/permissions_screen.json", - "top_bar_panel/gamepad_helper_b": "ui/permissions_screen.json", - "top_bar_panel/title_label": "ui/permissions_screen.json", - "content_panel": "ui/permissions_screen.json", - "content_panel/content_stack_panel": "ui/permissions_screen.json", - "content_panel/content_stack_panel/content_padding_1": "ui/permissions_screen.json", - "content_panel/content_stack_panel/ip_label": "ui/permissions_screen.json", - "content_panel/content_stack_panel/world_label": "ui/permissions_screen.json", - "content_panel/content_stack_panel/content_padding_2": "ui/permissions_screen.json", - "content_panel/content_stack_panel/player_and_permissions_panel": "ui/permissions_screen.json", - "player_and_permissions_panel": "ui/permissions_screen.json", - "player_and_permissions_panel/selector_area": "ui/permissions_screen.json", - "player_and_permissions_panel/content_area": "ui/permissions_screen.json", - "selector_area": "ui/permissions_screen.json", - "selector_area/player_scrolling_panel": "ui/permissions_screen.json", - "content_area": "ui/permissions_screen.json", - "content_area/permissions_options_background": "ui/permissions_screen.json", - "content_area/permissions_options_background/permissions_options_background_image": "ui/permissions_screen.json", - "content_area/permissions_options_background/permissions_options_background_image/permissions_options_scrolling_panel": "ui/permissions_screen.json", - "content_area/inactive_modal_pane_fade": "ui/permissions_screen.json", - "kick_button": "ui/permissions_screen.json", - "ban_button": "ui/permissions_screen.json", - "players_grid_panel": "ui/permissions_screen.json", - "players_grid_panel/players_grid": "ui/permissions_screen.json", - "players_grid": "ui/permissions_screen.json", - "player_grid_item": "ui/permissions_screen.json", - "player_grid_item/player_toggle": "ui/permissions_screen.json", - "player_grid_item/inactive_modal_pane_fade": "ui/permissions_screen.json", - "permissions_options_scrolling_panel": "ui/permissions_screen.json", - "permissions_options_panel": "ui/permissions_screen.json", - "permissions_options_panel/inner_permissions_options_panel": "ui/permissions_screen.json", - "permissions_options_panel/inner_permissions_options_panel/permissions_options_stack_panel": "ui/permissions_screen.json", - "permissions_options_stack_panel": "ui/permissions_screen.json", - "permissions_options_stack_panel/permissions_padding_0": "ui/permissions_screen.json", - "permissions_options_stack_panel/world_template_option_lock_panel": "ui/permissions_screen.json", - "permissions_options_stack_panel/world_template_option_lock_panel/option_info_label": "ui/permissions_screen.json", - "permissions_options_stack_panel/permissions_padding_1": "ui/permissions_screen.json", - "permissions_options_stack_panel/permission_level_dropdown": "ui/permissions_screen.json", - "permissions_options_stack_panel/permissions_padding_2": "ui/permissions_screen.json", - "permissions_options_stack_panel/permissions_options_grid": "ui/permissions_screen.json", - "permissions_options_stack_panel/permissions_padding_3": "ui/permissions_screen.json", - "permissions_options_stack_panel/permissions_kick_button_panel": "ui/permissions_screen.json", - "permissions_options_stack_panel/permissions_padding_4": "ui/permissions_screen.json", - "permissions_options_stack_panel/permissions_ban_button_panel": "ui/permissions_screen.json", - "permissions_options_stack_panel/permissions_padding_5": "ui/permissions_screen.json", - "permissions_options_grid": "ui/permissions_screen.json", - "permissions_options_grid_item": "ui/permissions_screen.json", - "permissions_options_grid_item/option_label_panel": "ui/permissions_screen.json", - "permissions_options_grid_item/option_label_panel/option_label": "ui/permissions_screen.json", - "permissions_options_grid_item/option_state_label_panel": "ui/permissions_screen.json", - "permissions_options_grid_item/option_state_label_panel/option_state_label": "ui/permissions_screen.json", - "permissions_options_grid_item/option_toggle": "ui/permissions_screen.json", - "permissions_kick_button_panel": "ui/permissions_screen.json", - "permissions_kick_button_panel/kick_button": "ui/permissions_screen.json", - "permissions_ban_button_panel": "ui/permissions_screen.json", - "permissions_ban_button_panel/ban_button": "ui/permissions_screen.json", - "title_label": "ui/permissions_screen.json", - "ip_label": "ui/permissions_screen.json", - "world_label": "ui/permissions_screen.json", - "gamertag_label": "ui/permissions_screen.json", - "option_state_label": "ui/permissions_screen.json", - "option_label": "ui/permissions_screen.json", - "top_bar": "ui/permissions_screen.json", - "banner_background": "ui/permissions_screen.json", - "player_local_icon": "ui/permissions_screen.json", - "player_gamer_pic": "ui/permissions_screen.json", - "player_gamer_pic/player_panel_black_border": "ui/permissions_screen.json", - "back_button": "ui/permissions_screen.json", - "back_button_content": "ui/permissions_screen.json", - "back_button_content/chevron_panel": "ui/permissions_screen.json", - "back_button_content/chevron_panel/left_chevron": "ui/permissions_screen.json", - "back_button_content/back_button_padding": "ui/permissions_screen.json", - "back_button_content/label_panel": "ui/permissions_screen.json", - "back_button_content/label_panel/label": "ui/permissions_screen.json", - "player_toggle": "ui/permissions_screen.json", - "player_button_content": "ui/permissions_screen.json", - "player_button_content/player_pic_panel": "ui/permissions_screen.json", - "player_button_content/player_button_padding_1": "ui/permissions_screen.json", - "player_button_content/gamertag_panel": "ui/permissions_screen.json", - "player_button_content/gamertag_panel/gamertag_label": "ui/permissions_screen.json", - "player_button_content/icon_panel": "ui/permissions_screen.json", - "player_button_content/icon_panel/dropdown_icon_image": "ui/permissions_screen.json", - "player_button_content/player_button_padding_2": "ui/permissions_screen.json", - "player_pic_panel": "ui/permissions_screen.json", - "player_pic_panel/player_gamer_pic": "ui/permissions_screen.json", - "player_pic_panel/player_local_icon": "ui/permissions_screen.json", - "option_toggle": "ui/permissions_screen.json", - "permission_level_dropdown": "ui/permissions_screen.json", - "radio_title_and_icon": "ui/permissions_screen.json", - "radio_title_and_icon/radio_icon": "ui/permissions_screen.json", - "radio_title_and_icon/radio_title": "ui/permissions_screen.json", - "radio_content_with_title_bar": "ui/permissions_screen.json", - "radio_content_with_title_bar/title_and_icon": "ui/permissions_screen.json", - "radio_content_with_title_bar/helper_text": "ui/permissions_screen.json", - "radio_content_with_title_bar/bottom_padding": "ui/permissions_screen.json", - "radio_visuals_with_title": "ui/permissions_screen.json", - "radio_visuals_with_title/radio_content": "ui/permissions_screen.json", - "radio_visuals_with_title_hover": "ui/permissions_screen.json", - "radio_visuals_with_title_hover/radio_content": "ui/permissions_screen.json", - "permissions_visitor_visuals_with_title_normal": "ui/permissions_screen.json", - "permissions_visitor_visuals_with_title_hover": "ui/permissions_screen.json", - "permissions_member_visuals_with_title_normal": "ui/permissions_screen.json", - "permissions_member_visuals_with_title_hover": "ui/permissions_screen.json", - "permissions_op_visuals_with_title_normal": "ui/permissions_screen.json", - "permissions_op_visuals_with_title_hover": "ui/permissions_screen.json", - "permissions_visitor_radio_visuals_normal": "ui/permissions_screen.json", - "permissions_visitor_radio_visuals_hover": "ui/permissions_screen.json", - "permissions_member_radio_visuals_normal": "ui/permissions_screen.json", - "permissions_member_radio_visuals_hover": "ui/permissions_screen.json", - "permissions_op_radio_visuals_normal": "ui/permissions_screen.json", - "permissions_op_radio_visuals_hover": "ui/permissions_screen.json", - "permissions_custom_radio_visuals_normal": "ui/permissions_screen.json", - "permissions_custom_radio_visuals_hover": "ui/permissions_screen.json", - "permission_level_radio": "ui/permissions_screen.json", - "permission_level_radio/radio_with_label_core": "ui/permissions_screen.json", - "permission_level_dropdown_content": "ui/permissions_screen.json", - "permission_level_dropdown_state_content": "ui/permissions_screen.json", - "permission_level_dropdown_state_content/icon_panel": "ui/permissions_screen.json", - "permission_level_dropdown_state_content/icon_panel/dropdown_icon_image": "ui/permissions_screen.json", - "permission_level_dropdown_state_content/dropdown_label_padding": "ui/permissions_screen.json", - "permission_level_dropdown_state_content/label_panel": "ui/permissions_screen.json", - "permission_level_dropdown_state_content/label_panel/label": "ui/permissions_screen.json", - "permission_level_dropdown_state_content/arrow_panel": "ui/permissions_screen.json", - "permission_level_dropdown_state_content/arrow_panel/arrow_image": "ui/permissions_screen.json", - }, - "persona_cast_character_screen": { - "cast_modal_bottom_bar": "ui/persona_cast_character_screen.json", - "cast_modal_bottom_bar/0": "ui/persona_cast_character_screen.json", - "cast_common_dialog_background": "ui/persona_cast_character_screen.json", - "cast_common_dialog_background/top_bar": "ui/persona_cast_character_screen.json", - "cast_common_dialog_background/popup_inner_contents": "ui/persona_cast_character_screen.json", - "cast_common_dialog_background/cast_modal_bottom_bar": "ui/persona_cast_character_screen.json", - "cast_modal_panel": "ui/persona_cast_character_screen.json", - "cast_modal_panel/cast_preview_modal_content": "ui/persona_cast_character_screen.json", - "popup_dialog__cast_character_select": "ui/persona_cast_character_screen.json", - "popup_dialog__cast_character_select/background": "ui/persona_cast_character_screen.json", - "popup_dialog__cast_character_select/popup_background": "ui/persona_cast_character_screen.json", - "common_dcast_popup_framework": "ui/persona_cast_character_screen.json", - "common_cast_modal_top_bar": "ui/persona_cast_character_screen.json", - "common_cast_modal_top_bar/title_panel": "ui/persona_cast_character_screen.json", - "common_cast_modal_top_bar/close_button_holder": "ui/persona_cast_character_screen.json", - "cast_character_select_main": "ui/persona_cast_character_screen.json", - "cast_character_select_main/modal_inner_background": "ui/persona_cast_character_screen.json", - "cast_character_select_main/main_content_horizontal_stack": "ui/persona_cast_character_screen.json", - "cast_character_select_main/main_content_horizontal_stack/cast_grid": "ui/persona_cast_character_screen.json", - "cast_character_select_main/main_content_horizontal_stack/vertical_centerer": "ui/persona_cast_character_screen.json", - "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/top_fill": "ui/persona_cast_character_screen.json", - "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/skin_viewer_panel": "ui/persona_cast_character_screen.json", - "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_fill": "ui/persona_cast_character_screen.json", - "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_padding": "ui/persona_cast_character_screen.json", - "cast_scroll_view_panel": "ui/persona_cast_character_screen.json", - "cast_grid_with_buttons": "ui/persona_cast_character_screen.json", - "cast_grid_with_buttons/top_spacing": "ui/persona_cast_character_screen.json", - "cast_grid_with_buttons/cast_grid": "ui/persona_cast_character_screen.json", - "cast_grid_with_buttons/bottom_spacing": "ui/persona_cast_character_screen.json", - "cast_grid_panel": "ui/persona_cast_character_screen.json", - "cast_grid_panel/cast_grid": "ui/persona_cast_character_screen.json", - "cast_single_character_button_panel": "ui/persona_cast_character_screen.json", - "cast_single_character_button_panel/cast_character_button": "ui/persona_cast_character_screen.json", - "cast_single_character_button_panel/cast_character_button/background_image": "ui/persona_cast_character_screen.json", - "cast_single_character_button_panel/cast_character_button/selected": "ui/persona_cast_character_screen.json", - "cast_single_character_button_panel/cast_character_button/default": "ui/persona_cast_character_screen.json", - "cast_single_character_button_panel/cast_character_button/hover": "ui/persona_cast_character_screen.json", - "cast_single_character_button_panel/cast_character_button/pressed": "ui/persona_cast_character_screen.json", - "cast_single_character_button_panel/cast_character_button/button_outline": "ui/persona_cast_character_screen.json", - "cast_single_character_button_panel/cast_character_button/button_outline/cast_character_content": "ui/persona_cast_character_screen.json", - "cast_character_button_content_panel": "ui/persona_cast_character_screen.json", - "cast_character_button_content_panel/cast_single_character_content_visible_panel": "ui/persona_cast_character_screen.json", - "cast_character_button_content_panel/cast_single_character_content_visible_panel/cast_single_character_button_content": "ui/persona_cast_character_screen.json", - "in_use_grid_item": "ui/persona_cast_character_screen.json", - "persona_cast_paper_doll_panel": "ui/persona_cast_character_screen.json", - "persona_cast_paper_doll_panel/preset_input_panel": "ui/persona_cast_character_screen.json", - "character_loading_anim": "ui/persona_cast_character_screen.json", - "character_loading_anim_panel": "ui/persona_cast_character_screen.json", - "character_loading_anim_panel/character_loading_anim": "ui/persona_cast_character_screen.json", - "skin_viewer_panel_skin_model": "ui/persona_cast_character_screen.json", - "skin_viewer_panel_skin_model/skin_model": "ui/persona_cast_character_screen.json", - "cast_character_screen_right_side_model": "ui/persona_cast_character_screen.json", - "cast_character_screen_right_side_model/skin_model_panel": "ui/persona_cast_character_screen.json", - "cast_character_screen_right_side_model/skin_model_loading_anim": "ui/persona_cast_character_screen.json", - "cast_character_screen_right_side_model/skin_model_label": "ui/persona_cast_character_screen.json", - "common_background_blocker": "ui/persona_cast_character_screen.json", - "common_background_blocker/modal_background_button": "ui/persona_cast_character_screen.json", - "common_preview_page_framework": "ui/persona_cast_character_screen.json", - "common_preview_page_framework/background": "ui/persona_cast_character_screen.json", - "common_preview_page_framework/cast_preview_modal": "ui/persona_cast_character_screen.json", - "cast_preview_page_one": "ui/persona_cast_character_screen.json", - "cast_preview_page_two": "ui/persona_cast_character_screen.json", - "cast_preview_page_one_inner_section": "ui/persona_cast_character_screen.json", - "cast_preview_page_one_inner_section/modal_inner_background": "ui/persona_cast_character_screen.json", - "cast_preview_page_one_inner_section/cast_content": "ui/persona_cast_character_screen.json", - "cast_preview_page_one_inner_section/cast_content/cast_image_cycler": "ui/persona_cast_character_screen.json", - "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel": "ui/persona_cast_character_screen.json", - "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel": "ui/persona_cast_character_screen.json", - "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel/text_cycler": "ui/persona_cast_character_screen.json", - "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/buffer_panel": "ui/persona_cast_character_screen.json", - "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_shoulder_button_display_panel": "ui/persona_cast_character_screen.json", - "chevron_image_panel": "ui/persona_cast_character_screen.json", - "chevron_image_panel/chevron_image": "ui/persona_cast_character_screen.json", - "chevron_button": "ui/persona_cast_character_screen.json", - "shift_page_panel": "ui/persona_cast_character_screen.json", - "shift_page_panel/centering_panel": "ui/persona_cast_character_screen.json", - "shift_page_panel/centering_panel/0": "ui/persona_cast_character_screen.json", - "shift_page_left_panel": "ui/persona_cast_character_screen.json", - "shift_page_right_panel": "ui/persona_cast_character_screen.json", - "horizontal_8px_padding": "ui/persona_cast_character_screen.json", - "horizontal_20px_padding": "ui/persona_cast_character_screen.json", - "ftue_subpage_indicator_panel": "ui/persona_cast_character_screen.json", - "ftue_subpage_indicator_panel/controls_shoulder_button_display": "ui/persona_cast_character_screen.json", - "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_padding": "ui/persona_cast_character_screen.json", - "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_panel": "ui/persona_cast_character_screen.json", - "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_padding": "ui/persona_cast_character_screen.json", - "ftue_subpage_indicator_panel/controls_shoulder_button_display/page_indicator_grid": "ui/persona_cast_character_screen.json", - "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_padding": "ui/persona_cast_character_screen.json", - "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_panel": "ui/persona_cast_character_screen.json", - "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_padding": "ui/persona_cast_character_screen.json", - "individaul_cast_page_indicator": "ui/persona_cast_character_screen.json", - "individaul_cast_page_indicator/panel_when_current_page": "ui/persona_cast_character_screen.json", - "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding": "ui/persona_cast_character_screen.json", - "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding/cast_dot": "ui/persona_cast_character_screen.json", - "individaul_cast_page_indicator/panel_when_not_current_page": "ui/persona_cast_character_screen.json", - "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding": "ui/persona_cast_character_screen.json", - "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding/cast_dot": "ui/persona_cast_character_screen.json", - "how_to_section": "ui/persona_cast_character_screen.json", - "how_to_section/how_to_image": "ui/persona_cast_character_screen.json", - "how_to_section/how_to_label_section": "ui/persona_cast_character_screen.json", - "how_to_section/how_to_label_section/how_to_label": "ui/persona_cast_character_screen.json", - "cast_preview_page_two_inner_section": "ui/persona_cast_character_screen.json", - "cast_preview_page_two_inner_section/how_to_section_stack": "ui/persona_cast_character_screen.json", - "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_left": "ui/persona_cast_character_screen.json", - "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel": "ui/persona_cast_character_screen.json", - "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel/divider": "ui/persona_cast_character_screen.json", - "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_right": "ui/persona_cast_character_screen.json", - }, - "persona_common": { - "icon_image": "ui/persona_common.json", - "mashup_world": "ui/persona_common.json", - "mashup_hangar": "ui/persona_common.json", - "mashup_paintbrush": "ui/persona_common.json", - "info_bulb_icon": "ui/persona_common.json", - "green_checkmark_icon": "ui/persona_common.json", - "persona_screen_background_content": "ui/persona_common.json", - "loading_icon": "ui/persona_common.json", - "focus_border": "ui/persona_common.json", - "selected_border": "ui/persona_common.json", - "equipped_border": "ui/persona_common.json", - "progress_loading": "ui/persona_common.json", - "progress_loading/progress_loading": "ui/persona_common.json", - "title_rarity_positionable_title": "ui/persona_common.json", - "generic_title_panel": "ui/persona_common.json", - "generic_title_panel/title_label": "ui/persona_common.json", - "rarity_bar": "ui/persona_common.json", - "item_rarity_color_background": "ui/persona_common.json", - "piece_item_display": "ui/persona_common.json", - "piece_item_display/item_renderer": "ui/persona_common.json", - "piece_item_display/item_renderer/background": "ui/persona_common.json", - "piece_item_display/item_renderer/item_image": "ui/persona_common.json", - "piece_item_display/item_renderer/rarity_bar_panel": "ui/persona_common.json", - "piece_item_display/item_renderer/extra_control": "ui/persona_common.json", - "piece_item_display/item_renderer/extra_control/control_instance": "ui/persona_common.json", - "piece_item_display/loading_progress_spinner": "ui/persona_common.json", - "wheel_state": "ui/persona_common.json", - "emote_label": "ui/persona_common.json", - "touch_name_label": "ui/persona_common.json", - "emote_image": "ui/persona_common.json", - "emote_image/empty": "ui/persona_common.json", - "emote_image/emote_preview": "ui/persona_common.json", - "emote_image/emote_preview/valid": "ui/persona_common.json", - "emote_image/emote_preview/valid_no_image": "ui/persona_common.json", - "emote_image/emote_preview/valid_no_image/valid_text": "ui/persona_common.json", - "keyboard_hotkey_helpers": "ui/persona_common.json", - "keyboard_hotkey_helpers/keyboard_1": "ui/persona_common.json", - "keyboard_hotkey_helpers/keyboard_2": "ui/persona_common.json", - "keyboard_hotkey_helpers/keyboard_3": "ui/persona_common.json", - "keyboard_hotkey_helpers/keyboard_4": "ui/persona_common.json", - "gamepad_hotkey_helpers": "ui/persona_common.json", - "gamepad_hotkey_helpers/quick_select_gamepad_helpers": "ui/persona_common.json", - "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_y": "ui/persona_common.json", - "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_b": "ui/persona_common.json", - "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_a": "ui/persona_common.json", - "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_x": "ui/persona_common.json", - "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel": "ui/persona_common.json", - "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel/analog_select_gamepad_helper": "ui/persona_common.json", - "emote_wheel_slot_content": "ui/persona_common.json", - "emote_wheel_slot_content/image_0": "ui/persona_common.json", - "emote_wheel_slot_content/touch_label_0": "ui/persona_common.json", - "selection_wheel": "ui/persona_common.json", - "emote_selection_wheel": "ui/persona_common.json", - "emote_selection_wheel/default_state": "ui/persona_common.json", - "emote_selection_wheel/emote_slot_0_content": "ui/persona_common.json", - "emote_selection_wheel/emote_slot_1_content": "ui/persona_common.json", - "emote_selection_wheel/emote_slot_2_content": "ui/persona_common.json", - "emote_selection_wheel/emote_slot_3_content": "ui/persona_common.json", - "emote_wheel_panel": "ui/persona_common.json", - "emote_wheel_panel/emote_name": "ui/persona_common.json", - "emote_wheel_panel/emote_wheel_content_panel": "ui/persona_common.json", - "emote_wheel_panel/emote_wheel_content_panel/gamepad_helpers": "ui/persona_common.json", - "emote_wheel_panel/emote_wheel_content_panel/keyboard_helpers": "ui/persona_common.json", - "emote_wheel_panel/emote_wheel_content_panel/emote_wheel": "ui/persona_common.json", - }, - "persona_popups": { - "no_content_panel": "ui/persona_popups.json", - "common_image": "ui/persona_popups.json", - "common_icon": "ui/persona_popups.json", - "create_persona_choice_checked_image": "ui/persona_popups.json", - "create_persona_choice_unchecked_image": "ui/persona_popups.json", - "modal_window_input_blocker": "ui/persona_popups.json", - "modal_popup_background": "ui/persona_popups.json", - "general_text_field": "ui/persona_popups.json", - "title_text": "ui/persona_popups.json", - "popup_title": "ui/persona_popups.json", - "popup_content": "ui/persona_popups.json", - "popup_ok_button": "ui/persona_popups.json", - "popup_frame": "ui/persona_popups.json", - "popup_frame/title_label": "ui/persona_popups.json", - "popup_frame/close_button": "ui/persona_popups.json", - "popup_frame/content": "ui/persona_popups.json", - "popup_frame/ok_button": "ui/persona_popups.json", - "popup_info_panel": "ui/persona_popups.json", - "popup_info_panel/background": "ui/persona_popups.json", - "popup_info_panel/frame": "ui/persona_popups.json", - "common_dialog": "ui/persona_popups.json", - "common_dialog/background": "ui/persona_popups.json", - "common_dialog/panel": "ui/persona_popups.json", - "popup_dialog_bg": "ui/persona_popups.json", - "popup_dialog_bg/background_image": "ui/persona_popups.json", - "popup_dialog_bg/title_panel": "ui/persona_popups.json", - "popup_dialog_bg/title_panel/title": "ui/persona_popups.json", - "popup_dialog_bg/popup_content": "ui/persona_popups.json", - "icon_title_bar": "ui/persona_popups.json", - "icon_title_bar/icon": "ui/persona_popups.json", - "icon_title_bar/padding": "ui/persona_popups.json", - "icon_title_bar/text_title_panel": "ui/persona_popups.json", - "popup_common": "ui/persona_popups.json", - "popup_common/background": "ui/persona_popups.json", - "popup_common/background/text_stack_panel": "ui/persona_popups.json", - "popup_dialog__difference_information": "ui/persona_popups.json", - "differences_left_details": "ui/persona_popups.json", - "differences_left_section": "ui/persona_popups.json", - "differences_left_section/title_bar": "ui/persona_popups.json", - "differences_left_section/padding_1": "ui/persona_popups.json", - "differences_left_section/details": "ui/persona_popups.json", - "differences_detail_image": "ui/persona_popups.json", - "differences_title_card_display": "ui/persona_popups.json", - "differences_title_card_display/left": "ui/persona_popups.json", - "differences_title_card_display/padding_1": "ui/persona_popups.json", - "differences_title_card_display/right": "ui/persona_popups.json", - "differences_persona_detail_section": "ui/persona_popups.json", - "differences_classic_skin_detail_section": "ui/persona_popups.json", - "different_info_panel_contents": "ui/persona_popups.json", - "different_info_panel_contents/character_display": "ui/persona_popups.json", - "different_info_panel_contents/item_1_padding": "ui/persona_popups.json", - "different_info_panel_contents/divider": "ui/persona_popups.json", - "different_info_panel_contents/item_2_padding": "ui/persona_popups.json", - "different_info_panel_contents/classic_skin_display": "ui/persona_popups.json", - "popup_dialog__preview_difference_information": "ui/persona_popups.json", - "popup_dialog__delete_persona": "ui/persona_popups.json", - "popup_dialog__delete_persona/popup_dialog_bg": "ui/persona_popups.json", - "popup_dialog_delete_persona_content": "ui/persona_popups.json", - "popup_dialog_delete_persona_content/image": "ui/persona_popups.json", - "popup_dialog_delete_persona_content/message": "ui/persona_popups.json", - "popup_dialog_delete_persona_content/buttons": "ui/persona_popups.json", - "alex_warning": "ui/persona_popups.json", - "delete_popup_dialog_message": "ui/persona_popups.json", - "delete_persona_button_stack": "ui/persona_popups.json", - "delete_persona_button_stack/left_button": "ui/persona_popups.json", - "delete_persona_button_stack/padding": "ui/persona_popups.json", - "delete_persona_button_stack/right_button": "ui/persona_popups.json", - "delete_persona_left_button": "ui/persona_popups.json", - "delete_persona_right_button": "ui/persona_popups.json", - "popup_dialog__create_persona": "ui/persona_popups.json", - "create_persona_display": "ui/persona_popups.json", - "create_persona_display/vertical_padding_2px": "ui/persona_popups.json", - "create_persona_display/stack_content": "ui/persona_popups.json", - "create_persona_choice_stack": "ui/persona_popups.json", - "create_persona_choice_stack/background1": "ui/persona_popups.json", - "create_persona_choice_stack/background2": "ui/persona_popups.json", - "create_persona_choice_character": "ui/persona_popups.json", - "create_persona_choice_character/create_persona_choice_character": "ui/persona_popups.json", - "select_default_character_button_vertical_panel": "ui/persona_popups.json", - "select_default_character_button_vertical_panel/padding": "ui/persona_popups.json", - "select_default_character_button_vertical_panel/select_default_character_button_panel": "ui/persona_popups.json", - "select_default_character_button_vertical_panel/select_default_character_button_panel/select_default_character_button": "ui/persona_popups.json", - "select_default_character_button": "ui/persona_popups.json", - "create_persona_choice_classic_skin": "ui/persona_popups.json", - "create_persona_choice_button": "ui/persona_popups.json", - "create_persona_choice_button/choice_toggle": "ui/persona_popups.json", - "create_persona_choice_background": "ui/persona_popups.json", - "create_persona_choice_background/choice_title_bar": "ui/persona_popups.json", - "create_persona_choice_background/choice_details_body": "ui/persona_popups.json", - "create_persona_choice_background/choice_bottom_content": "ui/persona_popups.json", - "create_persona_choice_title_bar": "ui/persona_popups.json", - "create_persona_choice_title_bar/checkbox": "ui/persona_popups.json", - "create_persona_choice_title_bar/spacing": "ui/persona_popups.json", - "create_persona_choice_title_bar/icon_title": "ui/persona_popups.json", - "create_persona_choice_check_positioning": "ui/persona_popups.json", - "create_persona_choice_check_positioning/toggle_image": "ui/persona_popups.json", - "create_persona_choice_icon_title": "ui/persona_popups.json", - "create_persona_choice_detail_panel": "ui/persona_popups.json", - "create_persona_choice_detail_panel/spacing": "ui/persona_popups.json", - "create_persona_choice_detail_panel/choice_details_body": "ui/persona_popups.json", - "create_persona_choice_detail": "ui/persona_popups.json", - "popup_dialog__invalid_custom_skin": "ui/persona_popups.json", - "popup_dialog__invalid_custom_skin/popup_dialog_bg": "ui/persona_popups.json", - "popup_dialog_invalid_custom_skin_content": "ui/persona_popups.json", - "popup_dialog_invalid_custom_skin_content/popup_dialog_message": "ui/persona_popups.json", - "popup_dialog_invalid_custom_skin_content/popup_dialog_middle_button": "ui/persona_popups.json", - "popup_dialog__upsell_without_store": "ui/persona_popups.json", - "popup_dialog__choose_skin_type": "ui/persona_popups.json", - "popup_dialog__choose_skin_type/popup_dialog_bg": "ui/persona_popups.json", - "popup_dialog_choose_skin_type_content": "ui/persona_popups.json", - "popup_dialog_choose_skin_type_content/popup_dialog_message": "ui/persona_popups.json", - "popup_dialog_choose_skin_type_content/left": "ui/persona_popups.json", - "popup_dialog_choose_skin_type_content/right": "ui/persona_popups.json", - "popup_dialog_choose_skin_type_panel": "ui/persona_popups.json", - "popup_dialog_choose_skin_type_panel/choose_skin_type_button": "ui/persona_popups.json", - "popup_dialog_skin_model": "ui/persona_popups.json", - "popup_dialog_skin_model/paper_doll": "ui/persona_popups.json", - "popup_dialog__custom_skin_info": "ui/persona_popups.json", - "popup_dialog__custom_skin_info/background_image": "ui/persona_popups.json", - "popup_dialog__custom_skin_info/popup_dialog_bg": "ui/persona_popups.json", - "custom_skin_info_panel_text": "ui/persona_popups.json", - "custom_skin_info_panel": "ui/persona_popups.json", - "custom_skin_info_panel/message": "ui/persona_popups.json", - "custom_skin_info_panel/button_group": "ui/persona_popups.json", - "custom_skin_info_button_collection": "ui/persona_popups.json", - "custom_skin_info_button_collection/settings": "ui/persona_popups.json", - "custom_skin_info_button_collection/vertical_4_padding": "ui/persona_popups.json", - "custom_skin_info_button_collection/close": "ui/persona_popups.json", - "popup_dialog_close_button": "ui/persona_popups.json", - "usage_limited_settings_profile_button": "ui/persona_popups.json", - "custom_skin_popup_dialog_bg": "ui/persona_popups.json", - "custom_skin_popup_dialog_bg/background_image": "ui/persona_popups.json", - "custom_skin_popup_dialog_bg/vertical_align_title": "ui/persona_popups.json", - "custom_skin_popup_dialog_bg/vertical_align_title/title": "ui/persona_popups.json", - "custom_skin_popup_dialog_bg/popup_content": "ui/persona_popups.json", - "popup_dialog__emote_equip_slot_editor": "ui/persona_popups.json", - "popup_dialog__emote_equip_slot_editor/background_image": "ui/persona_popups.json", - "popup_dialog__emote_equip_slot_editor/popup_emote_wheel_dialog": "ui/persona_popups.json", - "popup_emote_wheel_dialog": "ui/persona_popups.json", - "popup_emote_wheel_dialog/popup_background": "ui/persona_popups.json", - "emote_equip_slot_content": "ui/persona_popups.json", - "emote_equip_slot_content/close": "ui/persona_popups.json", - "emote_equip_slot_content/emote_wheel_content_panel": "ui/persona_popups.json", - "emote_equip_slot_content/emote_wheel_content_panel/cancel": "ui/persona_popups.json", - "emote_equip_slot_content/emote_wheel_content_panel/emote_wheel_prompt_content": "ui/persona_popups.json", - "close_emote_popup_controller": "ui/persona_popups.json", - "close_emote_popup_controller/close_ui": "ui/persona_popups.json", - "emote_wheel_content": "ui/persona_popups.json", - "popup_dialog__realms_plus_extra_info": "ui/persona_popups.json", - "popup_dialog__realms_plus_extra_info/background_image": "ui/persona_popups.json", - "popup_dialog__realms_plus_extra_info/dialog_bg": "ui/persona_popups.json", - "realms_plus_extra_info_popup_dialog_bg": "ui/persona_popups.json", - "realms_plus_extra_info_popup_dialog_bg/background_image": "ui/persona_popups.json", - "realms_plus_extra_info_popup_dialog_bg/title": "ui/persona_popups.json", - "realms_plus_extra_info_popup_dialog_bg/popup_content": "ui/persona_popups.json", - "realms_extra_info_panel_text": "ui/persona_popups.json", - "realms_extra_info_panel": "ui/persona_popups.json", - "realms_extra_info_panel/realms_extra": "ui/persona_popups.json", - "realms_extra_info_panel/button_group": "ui/persona_popups.json", - "realms_extra_info_button_collection": "ui/persona_popups.json", - "realms_extra_info_button_collection/close": "ui/persona_popups.json", - "realms_extra_info_content": "ui/persona_popups.json", - "realms_extra_info_content/the_spread": "ui/persona_popups.json", - "realms_extra_info_content/the_spread/pack_image": "ui/persona_popups.json", - "realms_extra_info_content/the_spread/horizontal_6_padding": "ui/persona_popups.json", - "realms_extra_info_content/the_spread/the_info_stack": "ui/persona_popups.json", - "realms_extra_info_content/the_spread/the_info_stack/skins_and_world": "ui/persona_popups.json", - "realms_extra_info_content/the_spread/the_info_stack/padding": "ui/persona_popups.json", - "realms_extra_info_content/the_spread/the_info_stack/textures_and_usage": "ui/persona_popups.json", - "pack_information_textures_and_usage_tooltip": "ui/persona_popups.json", - "pack_information_textures_and_usage_tooltip/textures": "ui/persona_popups.json", - "pack_information_textures_and_usage_tooltip/mid_padding": "ui/persona_popups.json", - "pack_information_textures_and_usage_tooltip/appearance_status": "ui/persona_popups.json", - "roamable_status_notification_panel": "ui/persona_popups.json", - "roamable_status_notification_panel/appearance_status_notification": "ui/persona_popups.json", - "roamable_status_notification_panel/roamable_status": "ui/persona_popups.json", - "appearance_status_image_panel": "ui/persona_popups.json", - "appearance_status_image_panel/usage_limited": "ui/persona_popups.json", - "appearance_status_image_panel/usage_not_limited": "ui/persona_popups.json", - "pack_information_skins_and_world": "ui/persona_popups.json", - "pack_information_skins_and_world/skins": "ui/persona_popups.json", - "pack_information_skins_and_world/mid_padding": "ui/persona_popups.json", - "pack_information_skins_and_world/worlds": "ui/persona_popups.json", - "skin_info_label_and_image": "ui/persona_popups.json", - "skin_info_label_and_image/content_stack": "ui/persona_popups.json", - "skin_info_image_panel": "ui/persona_popups.json", - "skin_info_image_panel/image": "ui/persona_popups.json", - "skin_info_label_panel_label": "ui/persona_popups.json", - "skin_info_label_panel": "ui/persona_popups.json", - "skin_info_label_panel/label": "ui/persona_popups.json", - "skin_info_content_stack": "ui/persona_popups.json", - "skin_info_content_stack/image_panel": "ui/persona_popups.json", - "skin_info_content_stack/horizontal_2_padding": "ui/persona_popups.json", - "skin_info_content_stack/label_panel": "ui/persona_popups.json", - "realms_extra_info_pack_info": "ui/persona_popups.json", - "popup_toast": "ui/persona_popups.json", - }, - "play": { - "label_background": "ui/play_screen.json", - "dark_label_background": "ui/play_screen.json", - "world_screenshot_base": "ui/play_screen.json", - "collection_world_screenshot": "ui/play_screen.json", - "collection_world_screenshot/screenshot_picture": "ui/play_screen.json", - "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel": "ui/play_screen.json", - "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/gradient_image_realmsplus_expired": "ui/play_screen.json", - "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired": "ui/play_screen.json", - "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired/exclamationmark": "ui/play_screen.json", - "world_item_grid_base": "ui/play_screen.json", - "edit_icon": "ui/play_screen.json", - "realms_stories_icon": "ui/play_screen.json", - "realms_stories_icon_animated": "ui/play_screen.json", - "realms_slots_edit_icon": "ui/play_screen.json", - "worlds_icon": "ui/play_screen.json", - "realms_icon": "ui/play_screen.json", - "realms_chevron": "ui/play_screen.json", - "friends_icon_1": "ui/play_screen.json", - "friends_icon_2": "ui/play_screen.json", - "bell_icon": "ui/play_screen.json", - "invite_icon": "ui/play_screen.json", - "delete_icon": "ui/play_screen.json", - "world_download_icon": "ui/play_screen.json", - "third_party_servers_icon": "ui/play_screen.json", - "lan_icon": "ui/play_screen.json", - "friends_server_icon": "ui/play_screen.json", - "cross_platform_friends_server_icon": "ui/play_screen.json", - "realms_remove_icon": "ui/play_screen.json", - "game_online_icon": "ui/play_screen.json", - "game_offline_icon": "ui/play_screen.json", - "game_unavailable_icon": "ui/play_screen.json", - "import_icon": "ui/play_screen.json", - "add_server_icon": "ui/play_screen.json", - "server_tab_icon": "ui/play_screen.json", - "realms_art_icon": "ui/play_screen.json", - "realms_text_background": "ui/play_screen.json", - "connected_storage": "ui/play_screen.json", - "feedback_icon": "ui/play_screen.json", - "local_only_storage": "ui/play_screen.json", - "local_and_cloud_storage": "ui/play_screen.json", - "cloud_only_storage": "ui/play_screen.json", - "left_arrow_icon": "ui/play_screen.json", - "right_arrow_icon": "ui/play_screen.json", - "small_progress_panel": "ui/play_screen.json", - "sign_in_realms_image": "ui/play_screen.json", - "sign_in_realms_image/chevron": "ui/play_screen.json", - "sign_in_realms_image/portal": "ui/play_screen.json", - "realms_sign_in_prompt_label": "ui/play_screen.json", - "realms_sign_in_prompt": "ui/play_screen.json", - "realms_sign_in_prompt/realms_sign_in_prompt_label": "ui/play_screen.json", - "realms_sign_in_prompt_friends": "ui/play_screen.json", - "realms_sign_in_prompt_friends/realms_sign_in_prompt_label_friends": "ui/play_screen.json", - "sign_in_to_view_realms_content_panel": "ui/play_screen.json", - "sign_in_to_view_realms_content_panel/sign_in_realms_image": "ui/play_screen.json", - "sign_in_to_view_realms_content_panel/realms_sign_in_prompt": "ui/play_screen.json", - "sign_in_to_view_realms_content_panel_friends": "ui/play_screen.json", - "sign_in_to_view_realms_button": "ui/play_screen.json", - "sign_in_to_view_realms_button_friends": "ui/play_screen.json", - "realms_list_text": "ui/play_screen.json", - "realms_world_header": "ui/play_screen.json", - "realms_world_details": "ui/play_screen.json", - "realms_world_type": "ui/play_screen.json", - "realms_world_player_count": "ui/play_screen.json", - "realms_world_game_status_icon": "ui/play_screen.json", - "realms_world_game_status_icon/game_online_icon": "ui/play_screen.json", - "realms_world_game_status_icon/game_unavailable_icon": "ui/play_screen.json", - "realms_world_game_status_icon/game_offline_icon": "ui/play_screen.json", - "realms_world_text_panel": "ui/play_screen.json", - "realms_world_text_panel/realms_world_header": "ui/play_screen.json", - "realms_world_text_panel/realms_world_details": "ui/play_screen.json", - "realms_world_trial_text_panel": "ui/play_screen.json", - "realms_world_trial_text_panel/realms_world_header_text": "ui/play_screen.json", - "realms_world_trial_text_panel/realms_world_details": "ui/play_screen.json", - "realms_world_content_text_area_panel": "ui/play_screen.json", - "realms_world_content_text_area_panel/realms_world_text_panel": "ui/play_screen.json", - "realms_trial_content_text_area_panel": "ui/play_screen.json", - "realms_trial_content_text_area_panel/realms_world_trial_text_panel": "ui/play_screen.json", - "realms_world_content_status_area_panel": "ui/play_screen.json", - "realms_world_content_status_area_panel/world_player_count_text_panel": "ui/play_screen.json", - "realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count": "ui/play_screen.json", - "realms_world_content_status_area_panel/padding": "ui/play_screen.json", - "realms_world_content_status_area_panel/realms_world_game_status_icon": "ui/play_screen.json", - "realms_world_content_status_area_panel_container": "ui/play_screen.json", - "realms_world_content_status_area_panel_container/realms_world_status_panel": "ui/play_screen.json", - "realms_world_content_status_area_panel_container/realms_world_status_panel/realms_world_content_status_area_panel": "ui/play_screen.json", - "realms_world_content_status_area_panel_container/realms_world_type": "ui/play_screen.json", - "realms_world_content_panel": "ui/play_screen.json", - "realms_world_content_panel/realm_screenshot": "ui/play_screen.json", - "realms_world_content_panel/padding": "ui/play_screen.json", - "realms_world_content_panel/realms_world_content_text_area_panel": "ui/play_screen.json", - "realms_world_content_panel/realms_world_content_status_area_panel": "ui/play_screen.json", - "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_content_status_area_panel_container": "ui/play_screen.json", - "realms_trial_content_panel": "ui/play_screen.json", - "realms_trial_content_panel/realm_screenshot": "ui/play_screen.json", - "realms_trial_content_panel/padding": "ui/play_screen.json", - "realms_trial_content_panel/realms_trial_content_text_area_panel": "ui/play_screen.json", - "realms_world_item_button": "ui/play_screen.json", - "realms_world_edit_button": "ui/play_screen.json", - "realms_feed_button_content": "ui/play_screen.json", - "realms_feed_button_content/default_icon": "ui/play_screen.json", - "realms_feed_button_content/unread_icon_active": "ui/play_screen.json", - "persistent_realms_feed_button_control": "ui/play_screen.json", - "realms_feed_button": "ui/play_screen.json", - "leave_friends_realm_button": "ui/play_screen.json", - "unread_story_count_text": "ui/play_screen.json", - "unread_story_count_text_background": "ui/play_screen.json", - "unread_story_count_panel": "ui/play_screen.json", - "unread_story_count_panel/text": "ui/play_screen.json", - "unread_story_count_panel/text/background": "ui/play_screen.json", - "realms_world_item": "ui/play_screen.json", - "realms_world_item/realms_button_panel": "ui/play_screen.json", - "realms_world_item/realms_button_panel/realms_world_item_button": "ui/play_screen.json", - "realms_world_item/realms_button_panel/tts_border": "ui/play_screen.json", - "realms_world_item/edit_panel": "ui/play_screen.json", - "realms_world_item/edit_panel/realms_world_edit_button": "ui/play_screen.json", - "realms_world_item/edit_panel/realms_world_expiry_notification_image": "ui/play_screen.json", - "realms_world_item/feed_panel_with_unread_count": "ui/play_screen.json", - "realms_world_item/feed_panel_with_unread_count/feed_panel": "ui/play_screen.json", - "realms_world_item/feed_panel_with_unread_count/feed_panel/realms_feed_button": "ui/play_screen.json", - "realms_world_item/feed_panel_with_unread_count/unread_story_count": "ui/play_screen.json", - "realms_world_item/leave_realm_panel": "ui/play_screen.json", - "realms_world_item/leave_realm_panel/leave_friends_realm_button": "ui/play_screen.json", - "realms_world_item_grid": "ui/play_screen.json", - "network_world_header": "ui/play_screen.json", - "network_world_header/network_world_header_icon": "ui/play_screen.json", - "network_world_header/spacer": "ui/play_screen.json", - "network_world_header/header_panel": "ui/play_screen.json", - "network_world_header/header_panel/network_world_header_text": "ui/play_screen.json", - "network_world_details": "ui/play_screen.json", - "network_world_player_count": "ui/play_screen.json", - "network_world_player_count/count": "ui/play_screen.json", - "network_world_game_status_icon": "ui/play_screen.json", - "network_world_game_status_icon/game_online_icon": "ui/play_screen.json", - "network_world_game_status_icon/game_unavailable_icon": "ui/play_screen.json", - "network_world_game_status_icon/game_offline_icon": "ui/play_screen.json", - "network_world_text_panel": "ui/play_screen.json", - "network_world_text_panel/network_world_header": "ui/play_screen.json", - "network_world_text_panel/network_world_details": "ui/play_screen.json", - "network_world_content_text_area_panel": "ui/play_screen.json", - "network_world_content_text_area_panel/network_world_text_panel": "ui/play_screen.json", - "network_world_content_status_area_panel": "ui/play_screen.json", - "network_world_content_status_area_panel/network_player_count_text_panel": "ui/play_screen.json", - "network_world_content_status_area_panel/network_player_count_text_panel/network_world_player_count": "ui/play_screen.json", - "network_world_content_status_area_panel/padding": "ui/play_screen.json", - "network_world_content_status_area_panel/network_world_game_status_icon": "ui/play_screen.json", - "network_world_content_status_area_panel_container": "ui/play_screen.json", - "network_world_content_status_area_panel_container/network_world_status_panel": "ui/play_screen.json", - "network_world_content_status_area_panel_container/network_world_status_panel/network_world_content_status_area_panel": "ui/play_screen.json", - "network_world_content_status_area_panel_container/network_world_type": "ui/play_screen.json", - "network_world_type": "ui/play_screen.json", - "network_world_type/type": "ui/play_screen.json", - "network_world_item_button_content": "ui/play_screen.json", - "network_world_item_button_content/network_world_content_text_area_panel": "ui/play_screen.json", - "network_world_item_button_content/network_status_area_panel": "ui/play_screen.json", - "network_world_item_button_content/network_status_area_panel/network_world_content_status_area_panel_container": "ui/play_screen.json", - "network_world_item_button_content/network_world_type_icon": "ui/play_screen.json", - "network_world_item_button_content/network_world_type_icon/padding": "ui/play_screen.json", - "network_world_item_button": "ui/play_screen.json", - "network_server_world_edit_button": "ui/play_screen.json", - "network_world_item": "ui/play_screen.json", - "network_world_item/network_world_item_button": "ui/play_screen.json", - "network_world_item/tts_border": "ui/play_screen.json", - "network_world_item_grid": "ui/play_screen.json", - "network_world_item_ignore_crossplay": "ui/play_screen.json", - "network_world_item_ignore_crossplay/network_world_item_button": "ui/play_screen.json", - "label_content_template": "ui/play_screen.json", - "label_content_template/label_panel": "ui/play_screen.json", - "label_content_template/label_panel/label_panel_layout": "ui/play_screen.json", - "label_content_template/label_panel/label_panel_layout/label": "ui/play_screen.json", - "label_content_template/content": "ui/play_screen.json", - "information_panel": "ui/play_screen.json", - "information_panel/background": "ui/play_screen.json", - "information_panel/background/label_panel_layout": "ui/play_screen.json", - "information_panel/background/label_panel_layout/label": "ui/play_screen.json", - "information_panel/focus_button": "ui/play_screen.json", - "blocked_multiplayer_privileges_panel": "ui/play_screen.json", - "blocked_multiplayer_privileges_panel/background": "ui/play_screen.json", - "blocked_multiplayer_privileges_panel/background/label_panel_layout": "ui/play_screen.json", - "blocked_multiplayer_privileges_panel/background/label_panel_layout/label": "ui/play_screen.json", - "more_servers_grid": "ui/play_screen.json", - "additional_server_toggle_content": "ui/play_screen.json", - "additional_server_toggle_content/network_world_content_text_area_panel": "ui/play_screen.json", - "more_servers_label_panel": "ui/play_screen.json", - "more_servers_label_panel/list_label": "ui/play_screen.json", - "more_servers_world_item": "ui/play_screen.json", - "more_servers_world_item/additional_server_toggle_base": "ui/play_screen.json", - "more_servers_world_item/network_server_world_edit_button": "ui/play_screen.json", - "additional_server_info_panel": "ui/play_screen.json", - "additional_server_info_panel/server_info_stack_panel": "ui/play_screen.json", - "additional_server_info_panel/server_info_stack_panel/padding_1": "ui/play_screen.json", - "additional_server_info_panel/server_info_stack_panel/server_name": "ui/play_screen.json", - "additional_server_info_panel/server_info_stack_panel/padding_2": "ui/play_screen.json", - "additional_server_info_panel/server_info_stack_panel/player_count": "ui/play_screen.json", - "additional_server_info_panel/server_info_stack_panel/padding_3": "ui/play_screen.json", - "additional_server_info_panel/server_info_stack_panel/ping": "ui/play_screen.json", - "additional_server_info_panel/server_info_stack_panel/padding_4": "ui/play_screen.json", - "additional_server_info_panel/server_info_stack_panel/join_server_button": "ui/play_screen.json", - "ping_rate_icon": "ui/play_screen.json", - "ping_rate_panel": "ui/play_screen.json", - "ping_rate_panel/concurrency_stack": "ui/play_screen.json", - "ping_rate_panel/concurrency_stack/player_count": "ui/play_screen.json", - "ping_rate_panel/concurrency_stack/padding_0": "ui/play_screen.json", - "ping_rate_panel/concurrency_stack/ping_rate_icon": "ui/play_screen.json", - "add_server_info_panel": "ui/play_screen.json", - "add_server_info_panel/server_info_stack_panel": "ui/play_screen.json", - "add_server_info_panel/server_info_stack_panel/padding_0": "ui/play_screen.json", - "add_server_info_panel/server_info_stack_panel/add_server_title": "ui/play_screen.json", - "add_server_info_panel/server_info_stack_panel/padding_1": "ui/play_screen.json", - "add_server_info_panel/server_info_stack_panel/add_server_description": "ui/play_screen.json", - "third_party_featured_server_grid": "ui/play_screen.json", - "featured_server_world_item": "ui/play_screen.json", - "featured_server_world_item/server_button": "ui/play_screen.json", - "server_button_content_panel": "ui/play_screen.json", - "server_button_content_panel/top_panel": "ui/play_screen.json", - "server_button_content_panel/top_panel/third_party_server_screenshot": "ui/play_screen.json", - "server_button_content_panel/top_panel/padding_0": "ui/play_screen.json", - "server_button_content_panel/top_panel/title_panel": "ui/play_screen.json", - "server_button_content_panel/top_panel/title_panel/third_party_server_name": "ui/play_screen.json", - "server_button_content_panel/top_panel/title_panel/progress": "ui/play_screen.json", - "server_button_content_panel/padding": "ui/play_screen.json", - "server_button_content_panel/bottom_panel": "ui/play_screen.json", - "server_button_content_panel/bottom_panel/third_party_server_message": "ui/play_screen.json", - "third_party_server_content_panel": "ui/play_screen.json", - "third_party_server_content_panel/ping_rate_panel": "ui/play_screen.json", - "loading_featured_servers_panel": "ui/play_screen.json", - "loading_featured_servers_panel/load_bars": "ui/play_screen.json", - "loading_featured_servers_panel/load_bars/progress_loading_bars": "ui/play_screen.json", - "third_party_server_screenshot": "ui/play_screen.json", - "third_party_server_screenshot/picture": "ui/play_screen.json", - "third_party_server_info_panel": "ui/play_screen.json", - "third_party_server_info_panel/server_info_stack_panel": "ui/play_screen.json", - "third_party_server_info_panel/server_info_stack_panel/padding_0": "ui/play_screen.json", - "third_party_server_info_panel/server_info_stack_panel/server_screenshot": "ui/play_screen.json", - "third_party_server_info_panel/server_info_stack_panel/padding_1": "ui/play_screen.json", - "third_party_server_info_panel/server_info_stack_panel/server_name": "ui/play_screen.json", - "third_party_server_info_panel/server_info_stack_panel/padding_2": "ui/play_screen.json", - "third_party_server_info_panel/server_info_stack_panel/player_count": "ui/play_screen.json", - "third_party_server_info_panel/server_info_stack_panel/padding_3": "ui/play_screen.json", - "third_party_server_info_panel/server_info_stack_panel/ping": "ui/play_screen.json", - "third_party_server_info_panel/server_info_stack_panel/padding_4": "ui/play_screen.json", - "third_party_server_info_panel/server_info_stack_panel/join_server_button": "ui/play_screen.json", - "third_party_server_info_panel/server_info_stack_panel/view_offers_button": "ui/play_screen.json", - "third_party_server_info_panel/server_info_stack_panel/padding_5": "ui/play_screen.json", - "third_party_server_info_panel/server_info_stack_panel/screenshots_section": "ui/play_screen.json", - "third_party_server_info_panel/server_info_stack_panel/description_section": "ui/play_screen.json", - "third_party_server_info_panel/server_info_stack_panel/games_section": "ui/play_screen.json", - "third_party_server_info_panel/server_info_stack_panel/news_section": "ui/play_screen.json", - "third_party_server_info_panel/progress": "ui/play_screen.json", - "text_icon_number_panel": "ui/play_screen.json", - "text_icon_number_panel/text": "ui/play_screen.json", - "text_icon_number_panel/padding_0": "ui/play_screen.json", - "text_icon_number_panel/stack_panel": "ui/play_screen.json", - "text_icon_number_panel/stack_panel/icon_panel": "ui/play_screen.json", - "text_icon_number_panel/stack_panel/icon_panel/icon": "ui/play_screen.json", - "text_icon_number_panel/stack_panel/padding_1": "ui/play_screen.json", - "text_icon_number_panel/stack_panel/number": "ui/play_screen.json", - "grey_bar_panel": "ui/play_screen.json", - "grey_bar_panel/grey_bar": "ui/play_screen.json", - "grey_bar_panel/green_bar": "ui/play_screen.json", - "grey_bar_panel/padding": "ui/play_screen.json", - "screenshots_section_panel": "ui/play_screen.json", - "screenshots_section_panel/divider_0": "ui/play_screen.json", - "screenshots_section_panel/padding_0": "ui/play_screen.json", - "screenshots_section_panel/screenshots_label": "ui/play_screen.json", - "screenshots_section_panel/padding_1": "ui/play_screen.json", - "screenshots_section_panel/screenshots": "ui/play_screen.json", - "screenshots_section_panel/padding_2": "ui/play_screen.json", - "screenshots_section_panel/navigation_panel": "ui/play_screen.json", - "screenshots_section_panel/navigation_panel/left_arrow_button": "ui/play_screen.json", - "screenshots_section_panel/navigation_panel/padding_0": "ui/play_screen.json", - "screenshots_section_panel/navigation_panel/navigation_bar": "ui/play_screen.json", - "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar": "ui/play_screen.json", - "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar/grey_bar_factory_panel": "ui/play_screen.json", - "screenshots_section_panel/navigation_panel/padding_1": "ui/play_screen.json", - "screenshots_section_panel/navigation_panel/right_arrow_button": "ui/play_screen.json", - "screenshots_section_panel/padding_3": "ui/play_screen.json", - "description_text_panel": "ui/play_screen.json", - "description_text_panel/contents_description": "ui/play_screen.json", - "description_section_panel": "ui/play_screen.json", - "description_section_panel/divider_0": "ui/play_screen.json", - "description_section_panel/padding_0": "ui/play_screen.json", - "description_section_panel/description_label": "ui/play_screen.json", - "description_section_panel/padding_1": "ui/play_screen.json", - "description_section_panel/read_more_panel": "ui/play_screen.json", - "description_section_panel/read_more_panel/description_text_small": "ui/play_screen.json", - "description_section_panel/read_more_panel/description_text_full": "ui/play_screen.json", - "description_section_panel/read_more_panel/description_read_more_button_panel": "ui/play_screen.json", - "description_section_panel/read_more_panel/description_read_less_button_panel": "ui/play_screen.json", - "description_section_panel/padding_3": "ui/play_screen.json", - "games_factory_object": "ui/play_screen.json", - "games_factory_object/games_factory_panel": "ui/play_screen.json", - "games_factory_object/games_factory_panel/top_panel": "ui/play_screen.json", - "games_factory_object/games_factory_panel/top_panel/game_image_panel": "ui/play_screen.json", - "games_factory_object/games_factory_panel/top_panel/game_image_panel/game_image": "ui/play_screen.json", - "games_factory_object/games_factory_panel/top_panel/padding": "ui/play_screen.json", - "games_factory_object/games_factory_panel/top_panel/game_title_panel": "ui/play_screen.json", - "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_title": "ui/play_screen.json", - "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_subtitle": "ui/play_screen.json", - "games_factory_object/games_factory_panel/bottom_panel": "ui/play_screen.json", - "games_factory_object/games_factory_panel/bottom_panel/bottom_panel": "ui/play_screen.json", - "games_factory_object/padding": "ui/play_screen.json", - "games_section_panel": "ui/play_screen.json", - "games_section_panel/divider_0": "ui/play_screen.json", - "games_section_panel/padding_0": "ui/play_screen.json", - "games_section_panel/description_label": "ui/play_screen.json", - "games_section_panel/padding_1": "ui/play_screen.json", - "games_section_panel/games_factory_panel": "ui/play_screen.json", - "games_section_panel/padding_3": "ui/play_screen.json", - "news_text_panel": "ui/play_screen.json", - "news_text_panel/contents_news": "ui/play_screen.json", - "news_section_panel": "ui/play_screen.json", - "news_section_panel/divider_0": "ui/play_screen.json", - "news_section_panel/padding_0": "ui/play_screen.json", - "news_section_panel/news_label": "ui/play_screen.json", - "news_section_panel/padding_1": "ui/play_screen.json", - "news_section_panel/read_more_panel": "ui/play_screen.json", - "news_section_panel/read_more_panel/text_stack_panel": "ui/play_screen.json", - "news_section_panel/read_more_panel/text_stack_panel/news_title_text": "ui/play_screen.json", - "news_section_panel/read_more_panel/text_stack_panel/divider_panel": "ui/play_screen.json", - "news_section_panel/read_more_panel/text_stack_panel/divider_panel/divider_0": "ui/play_screen.json", - "news_section_panel/read_more_panel/text_stack_panel/news_text_small": "ui/play_screen.json", - "news_section_panel/read_more_panel/text_stack_panel/news_text_full": "ui/play_screen.json", - "news_section_panel/read_more_panel/news_read_more_button_panel": "ui/play_screen.json", - "news_section_panel/read_more_panel/news_read_less_button_panel": "ui/play_screen.json", - "news_section_panel/padding_3": "ui/play_screen.json", - "divider": "ui/play_screen.json", - "blue_diskspace_bar": "ui/play_screen.json", - "green_diskspace_bar": "ui/play_screen.json", - "empty_diskspace_bar": "ui/play_screen.json", - "legacy_world_content_status_area_panel": "ui/play_screen.json", - "legacy_world_content_status_area_panel/world_storage_content_panel": "ui/play_screen.json", - "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_separator": "ui/play_screen.json", - "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information": "ui/play_screen.json", - "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_label": "ui/play_screen.json", - "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/padding": "ui/play_screen.json", - "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar": "ui/play_screen.json", - "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/local_diskspace_bar": "ui/play_screen.json", - "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/legacy_diskspace_bar": "ui/play_screen.json", - "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/empty_diskspace_bar": "ui/play_screen.json", - "world_list_text": "ui/play_screen.json", - "realm_screenshot": "ui/play_screen.json", - "realm_screenshot/picture": "ui/play_screen.json", - "local_world_name": "ui/play_screen.json", - "legacy_world_name": "ui/play_screen.json", - "world_lock": "ui/play_screen.json", - "local_world_game_mode": "ui/play_screen.json", - "legacy_world_game_mode": "ui/play_screen.json", - "local_world_date": "ui/play_screen.json", - "legacy_world_date": "ui/play_screen.json", - "local_world_filesize": "ui/play_screen.json", - "legacy_world_filesize": "ui/play_screen.json", - "local_world_connected_storage": "ui/play_screen.json", - "local_world_connected_storage/local_and_cloud": "ui/play_screen.json", - "local_world_connected_storage/local_only": "ui/play_screen.json", - "local_world_connected_storage/cloud_only": "ui/play_screen.json", - "local_world_lock_panel": "ui/play_screen.json", - "local_world_lock_panel/lock": "ui/play_screen.json", - "realms_plus_banner": "ui/play_screen.json", - "realms_plus_banner/realms_banner": "ui/play_screen.json", - "local_world_text_panel": "ui/play_screen.json", - "local_world_text_panel/text_indent": "ui/play_screen.json", - "local_world_text_panel/text_indent/top_side": "ui/play_screen.json", - "local_world_text_panel/text_indent/top_side/local_world_name": "ui/play_screen.json", - "local_world_text_panel/text_indent/top_side/lock_1": "ui/play_screen.json", - "local_world_text_panel/text_indent/top_side/local_world_date": "ui/play_screen.json", - "local_world_text_panel/text_indent/bottom_side": "ui/play_screen.json", - "local_world_text_panel/text_indent/bottom_side/realms_plus_icon": "ui/play_screen.json", - "local_world_text_panel/text_indent/bottom_side/pad": "ui/play_screen.json", - "local_world_text_panel/text_indent/bottom_side/local_world_game_mode": "ui/play_screen.json", - "local_world_text_panel/text_indent/bottom_side/local_world_connected_storage": "ui/play_screen.json", - "local_world_text_panel/text_indent/bottom_side/local_world_filesize": "ui/play_screen.json", - "legacy_world_text_panel": "ui/play_screen.json", - "legacy_world_text_panel/text_indent": "ui/play_screen.json", - "legacy_world_text_panel/text_indent/top_side": "ui/play_screen.json", - "legacy_world_text_panel/text_indent/top_side/legacy_world_name": "ui/play_screen.json", - "legacy_world_text_panel/text_indent/top_side/legacy_world_date": "ui/play_screen.json", - "legacy_world_text_panel/text_indent/bottom_side": "ui/play_screen.json", - "legacy_world_text_panel/text_indent/bottom_side/legacy_world_game_mode": "ui/play_screen.json", - "legacy_world_text_panel/text_indent/bottom_side/legacy_world_filesize": "ui/play_screen.json", - "beta_retail_world_text_panel": "ui/play_screen.json", - "beta_retail_world_text_panel/text_indent": "ui/play_screen.json", - "beta_retail_world_text_panel/text_indent/top_side": "ui/play_screen.json", - "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_name": "ui/play_screen.json", - "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_date": "ui/play_screen.json", - "beta_retail_world_text_panel/text_indent/bottom_side": "ui/play_screen.json", - "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_game_mode": "ui/play_screen.json", - "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_filesize": "ui/play_screen.json", - "world_content_panel": "ui/play_screen.json", - "world_content_panel/world_screenshot": "ui/play_screen.json", - "world_content_panel/world_text_panel": "ui/play_screen.json", - "ownership_verification_in_progress_content": "ui/play_screen.json", - "ownership_verification_in_progress_content/top_padding": "ui/play_screen.json", - "ownership_verification_in_progress_content/loading_bar_panel": "ui/play_screen.json", - "ownership_verification_in_progress_content/loading_bar_panel/loading_bar_animation": "ui/play_screen.json", - "ownership_verification_in_progress_content/mid_padding": "ui/play_screen.json", - "ownership_verification_in_progress_content/loading_label": "ui/play_screen.json", - "ownership_verification_in_progress_content/bottom_padding": "ui/play_screen.json", - "ownership_verification_in_progress_panel": "ui/play_screen.json", - "ownership_verification_in_progress_panel/ownership_verification_in_progress_content": "ui/play_screen.json", - "local_world_item_button": "ui/play_screen.json", - "legacy_world_item_button": "ui/play_screen.json", - "beta_retail_world_item_button": "ui/play_screen.json", - "local_world_edit_button": "ui/play_screen.json", - "legacy_world_delete_button": "ui/play_screen.json", - "legacy_world_migrate_button": "ui/play_screen.json", - "local_world_item": "ui/play_screen.json", - "local_world_item/header_button_panel": "ui/play_screen.json", - "local_world_item/signin_in_progress_panel": "ui/play_screen.json", - "legacy_world_item": "ui/play_screen.json", - "legacy_world_item/header_button_panel_with_delete": "ui/play_screen.json", - "legacy_world_item/header_button_panel_with_migrate": "ui/play_screen.json", - "legacy_world_item/header_button_panel_no_delete": "ui/play_screen.json", - "beta_retail_world_item": "ui/play_screen.json", - "local_world_item_grid": "ui/play_screen.json", - "legacy_world_item_grid": "ui/play_screen.json", - "beta_retail_local_world_item_grid": "ui/play_screen.json", - "beta_retail_legacy_world_item_grid": "ui/play_screen.json", - "common_button_template": "ui/play_screen.json", - "common_button_text": "ui/play_screen.json", - "add_friend_and_invite_panel": "ui/play_screen.json", - "add_friend_and_invite_panel/add_friend_button": "ui/play_screen.json", - "add_friend_and_invite_panel/padding_1": "ui/play_screen.json", - "add_friend_and_invite_panel/join_by_code_button": "ui/play_screen.json", - "add_friend_and_invite_panel/padding_2": "ui/play_screen.json", - "add_friend_and_invite_panel/notification_button_panel": "ui/play_screen.json", - "add_friend_and_invite_panel/notification_button_panel/notification_button": "ui/play_screen.json", - "add_friend_button": "ui/play_screen.json", - "join_by_code_button": "ui/play_screen.json", - "add_server_toggle_button": "ui/play_screen.json", - "server_toggle_base": "ui/play_screen.json", - "quick_play_button": "ui/play_screen.json", - "create_new_world_button": "ui/play_screen.json", - "create_on_realms_button_panel": "ui/play_screen.json", - "create_on_realms_button_panel/create_on_realms_button": "ui/play_screen.json", - "import_world_button": "ui/play_screen.json", - "sync_legacy_worlds_button": "ui/play_screen.json", - "notification_button_text_layout": "ui/play_screen.json", - "notification_button_text_layout/image1": "ui/play_screen.json", - "notification_button_text_layout/image2": "ui/play_screen.json", - "notification_button_text_layout/count": "ui/play_screen.json", - "notification_button_label_panel": "ui/play_screen.json", - "notification_button_label_panel/notification_button_label": "ui/play_screen.json", - "notification_content": "ui/play_screen.json", - "notification_button": "ui/play_screen.json", - "header_button_panel": "ui/play_screen.json", - "header_button_panel/buttons": "ui/play_screen.json", - "header_button_panel/buttons/primary_panel": "ui/play_screen.json", - "header_button_panel/buttons/primary_panel/primary": "ui/play_screen.json", - "header_button_panel/buttons/secondary": "ui/play_screen.json", - "header_button_panel_opt_in": "ui/play_screen.json", - "header_button_panel_opt_in/buttons": "ui/play_screen.json", - "header_button_panel_opt_in/buttons/primary_panel": "ui/play_screen.json", - "header_button_panel_opt_in/buttons/primary_panel/primary": "ui/play_screen.json", - "header_button_panel_opt_in/buttons/secondary": "ui/play_screen.json", - "header_button_panel_opt_in/buttons/ternary": "ui/play_screen.json", - "header_single_button_panel": "ui/play_screen.json", - "header_single_button_panel/buttons": "ui/play_screen.json", - "header_single_button_panel/buttons/primary": "ui/play_screen.json", - "open_account_setting_button_gamecore": "ui/play_screen.json", - "common_scroll_pane": "ui/play_screen.json", - "worlds_scroll_panel": "ui/play_screen.json", - "worlds_scroll_panel/worlds_list_stack_panel": "ui/play_screen.json", - "game_tip_item_panel": "ui/play_screen.json", - "game_tip_item_panel/info_bulb": "ui/play_screen.json", - "game_tip_item_panel/padding_1": "ui/play_screen.json", - "game_tip_item_panel/label_panel": "ui/play_screen.json", - "game_tip_item_panel/label_panel/padding_vertical": "ui/play_screen.json", - "game_tip_item_panel/label_panel/realms_warning_text": "ui/play_screen.json", - "game_tip_item_panel/label_panel/padding_vertical_1": "ui/play_screen.json", - "game_tip_item_panel/more_info_button": "ui/play_screen.json", - "realm_warning_tip": "ui/play_screen.json", - "realm_warning_tip/padding_vertical": "ui/play_screen.json", - "realm_warning_tip/info_panel": "ui/play_screen.json", - "new_ui_switch_button_options_panel": "ui/play_screen.json", - "new_ui_switch_button_options_panel/unlock_template_options_button": "ui/play_screen.json", - "new_ui_servers_switch_button_options_panel": "ui/play_screen.json", - "new_ui_servers_switch_button_options_panel/unlock_template_options_button": "ui/play_screen.json", - "new_ui_servers_switch_button_options_panel/padding_0": "ui/play_screen.json", - "worlds_stack_panel": "ui/play_screen.json", - "worlds_stack_panel/padding_0": "ui/play_screen.json", - "worlds_stack_panel/play_screen_warning": "ui/play_screen.json", - "worlds_stack_panel/header_button": "ui/play_screen.json", - "worlds_stack_panel/header_button/quick_play": "ui/play_screen.json", - "worlds_stack_panel/header_button/buttons": "ui/play_screen.json", - "worlds_stack_panel/worlds_crossplatform_disabled_panel": "ui/play_screen.json", - "worlds_stack_panel/worlds_crossplatform_disable_spacer": "ui/play_screen.json", - "worlds_stack_panel/realms_panel": "ui/play_screen.json", - "worlds_stack_panel/realms_panel/realms_label": "ui/play_screen.json", - "worlds_stack_panel/realms_panel/sign_in_to_view_realms_button": "ui/play_screen.json", - "worlds_stack_panel/realms_panel/realms_previews_panel": "ui/play_screen.json", - "worlds_stack_panel/realms_panel/realms_previews_panel/new_offers_icon": "ui/play_screen.json", - "worlds_stack_panel/realms_panel/realms_previews_panel/realms_world_item_button": "ui/play_screen.json", - "worlds_stack_panel/realms_panel/create_on_realms_button_panel": "ui/play_screen.json", - "worlds_stack_panel/realms_panel/personal_realms": "ui/play_screen.json", - "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel": "ui/play_screen.json", - "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/placeholder_loading_personal_realms": "ui/play_screen.json", - "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/loading_friends_realms_label": "ui/play_screen.json", - "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/padding": "ui/play_screen.json", - "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/progress_loading_bars": "ui/play_screen.json", - "worlds_stack_panel/realms_panel/realms_trial_panel": "ui/play_screen.json", - "worlds_stack_panel/realms_panel/realms_trial_panel/realms_world_item_button": "ui/play_screen.json", - "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel": "ui/play_screen.json", - "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel/realms_world_item_button": "ui/play_screen.json", - "worlds_stack_panel/realms_panel/padding_1": "ui/play_screen.json", - "worlds_stack_panel/realms_multiplayer_blocked_panel": "ui/play_screen.json", - "worlds_stack_panel/realms_multiplayer_blocked_panel/text_panel": "ui/play_screen.json", - "worlds_stack_panel/realms_multiplayer_blocked_panel/open_uri_button": "ui/play_screen.json", - "worlds_stack_panel/realms_multiplayer_blocked_panel/open_account_setting_button_gamecore": "ui/play_screen.json", - "worlds_stack_panel/worlds_label": "ui/play_screen.json", - "worlds_stack_panel/grid": "ui/play_screen.json", - "worlds_stack_panel/no_local_worlds_label": "ui/play_screen.json", - "worlds_stack_panel/no_local_worlds_switch_setting": "ui/play_screen.json", - "worlds_stack_panel/beta_retail_local_padding": "ui/play_screen.json", - "worlds_stack_panel/beta_retail_local_worlds_label": "ui/play_screen.json", - "worlds_stack_panel/beta_retail_local_grid": "ui/play_screen.json", - "worlds_stack_panel/loading_legacy_worlds_panel_padding": "ui/play_screen.json", - "worlds_stack_panel/legacy_worlds_button": "ui/play_screen.json", - "worlds_stack_panel/legacy_worlds_button/legacy_worlds_label": "ui/play_screen.json", - "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel": "ui/play_screen.json", - "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel/button": "ui/play_screen.json", - "worlds_stack_panel/loading_legacy_worlds_panel": "ui/play_screen.json", - "worlds_stack_panel/loading_legacy_worlds_panel/loading_legacy_worlds_label": "ui/play_screen.json", - "worlds_stack_panel/loading_legacy_worlds_panel/padding": "ui/play_screen.json", - "worlds_stack_panel/loading_legacy_worlds_panel/progress_loading_bars": "ui/play_screen.json", - "worlds_stack_panel/padding_2": "ui/play_screen.json", - "worlds_stack_panel/upgrade_legacy_worlds_label": "ui/play_screen.json", - "worlds_stack_panel/legacy_world_item_grid": "ui/play_screen.json", - "worlds_stack_panel/beta_retail_legacy_padding": "ui/play_screen.json", - "worlds_stack_panel/beta_retail_legacy_worlds_label": "ui/play_screen.json", - "worlds_stack_panel/beta_retail_legacy_grid": "ui/play_screen.json", - "worlds_stack_panel/pad_hack_panel": "ui/play_screen.json", - "no_local_worlds_switch_setting": "ui/play_screen.json", - "no_local_worlds_switch_setting/bg": "ui/play_screen.json", - "no_local_worlds_switch_setting/bg/no_local_worlds_switch_setting": "ui/play_screen.json", - "no_local_worlds_switch_setting/bg/no_local_worlds_get_help": "ui/play_screen.json", - "no_local_worlds_launch_help": "ui/play_screen.json", - "storage_location_dropdown_panel": "ui/play_screen.json", - "storage_location_dropdown_panel/padding1": "ui/play_screen.json", - "storage_location_dropdown_panel/storage_location_dropdown": "ui/play_screen.json", - "storage_location_dropdown": "ui/play_screen.json", - "switch_storage_type_content": "ui/play_screen.json", - "light_centered_loading_label": "ui/play_screen.json", - "light_loading_label": "ui/play_screen.json", - "loading_label": "ui/play_screen.json", - "progress_loading_bars": "ui/play_screen.json", - "world_list_label_panel": "ui/play_screen.json", - "world_list_label_panel/list_label": "ui/play_screen.json", - "world_list_label_with_color_panel": "ui/play_screen.json", - "world_list_label_with_color_panel/colored_square_sizer": "ui/play_screen.json", - "world_list_label_with_color_panel/colored_square_sizer/colored_square": "ui/play_screen.json", - "world_list_label_with_color_panel/padding": "ui/play_screen.json", - "world_list_label_with_color_panel/list_label": "ui/play_screen.json", - "empty_panel": "ui/play_screen.json", - "empty_grid": "ui/play_screen.json", - "lan_servers_scroll_content": "ui/play_screen.json", - "friends_scroll_panel": "ui/play_screen.json", - "friends_scroll_panel/stack_panel": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/padding_0": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/friends_screen_warning": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/header_button": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/header_button/add_friend_and_invite_panel": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/friends_crossplatform_disabled_panel": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/friends_crossplatform_disable_spacer": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/joinable_realms_panel": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms_label": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/joinable_realms_panel/sign_in_to_view_realms_button_friends": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/placeholder_loading_friends_realms": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/loading_friends_realms_label": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/padding": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/progress_loading_bars": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel/message_label": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel/link_image": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/hover": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/pressed": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/joinable_realms_panel/no_realms_grid": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/joinable_realms_panel/padding_1": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/friends_grid": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/pad_hack_panel": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/no_friends_grid_message": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/switch_find_cross_platform_friend_button": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/add_friend_button_padding": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/cross_platform_friends_grid": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/no_cross_platform_friends_grid_message": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/general_no_multiplayer_grid_message": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/lan_grid": "ui/play_screen.json", - "friends_scroll_panel/stack_panel/open_account_setting_button_gamecore": "ui/play_screen.json", - "manually_added_servers_scrolling_content": "ui/play_screen.json", - "manually_added_servers_scrolling_content/padding_0": "ui/play_screen.json", - "manually_added_servers_scrolling_content/more_servers_label": "ui/play_screen.json", - "manually_added_servers_scrolling_content/padding_1": "ui/play_screen.json", - "manually_added_servers_scrolling_content/more_servers_grid": "ui/play_screen.json", - "manually_added_servers_scrolling_content/padding_3": "ui/play_screen.json", - "servers_content_panel": "ui/play_screen.json", - "servers_content_panel/new_ui_servers_switch_button_options_panel": "ui/play_screen.json", - "servers_content_panel/featured_servers_panel": "ui/play_screen.json", - "servers_content_panel/featured_servers_panel/loading_featured_panel": "ui/play_screen.json", - "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_friends_realms_label": "ui/play_screen.json", - "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_featured_servers_panel": "ui/play_screen.json", - "servers_content_panel/featured_servers_panel/padding_1": "ui/play_screen.json", - "servers_content_panel/featured_servers_panel/featured_servers_label": "ui/play_screen.json", - "servers_content_panel/featured_servers_panel/padding_2": "ui/play_screen.json", - "servers_content_panel/featured_servers_panel/third_party_featured_grid": "ui/play_screen.json", - "servers_content_panel/featured_servers_panel/padding_3": "ui/play_screen.json", - "servers_content_panel/more_servers_divider": "ui/play_screen.json", - "servers_content_panel/more_servers_panel": "ui/play_screen.json", - "server_scroll_panel": "ui/play_screen.json", - "server_scroll_panel/stack_panel": "ui/play_screen.json", - "server_scroll_panel/stack_panel/padding_0": "ui/play_screen.json", - "server_scroll_panel/stack_panel/servers_crossplatform_disabled_panel": "ui/play_screen.json", - "server_scroll_panel/stack_panel/no_featured_server_connection": "ui/play_screen.json", - "server_scroll_panel/stack_panel/more_servers_blocked_panel": "ui/play_screen.json", - "server_scroll_panel/stack_panel/more_servers_blocked_panel/server_multiplayer_privileges_blocked": "ui/play_screen.json", - "server_scroll_panel/stack_panel/more_servers_blocked_panel/open_uri_button": "ui/play_screen.json", - "server_scroll_panel/stack_panel/padding_1": "ui/play_screen.json", - "server_scroll_panel/stack_panel/server_content": "ui/play_screen.json", - "server_scroll_panel/stack_panel/add_server_button": "ui/play_screen.json", - "crossplatform_disabled_panel": "ui/play_screen.json", - "crossplatform_disable_spacer": "ui/play_screen.json", - "common_scrolling_panel": "ui/play_screen.json", - "common_content": "ui/play_screen.json", - "scrolling_offsets": "ui/play_screen.json", - "worlds_scroll_content": "ui/play_screen.json", - "worlds_scroll_content/worlds_stack_panel": "ui/play_screen.json", - "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer": "ui/play_screen.json", - "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer/scrolling_panel": "ui/play_screen.json", - "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer": "ui/play_screen.json", - "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer/scrolling_panel": "ui/play_screen.json", - "friends_scroll_content": "ui/play_screen.json", - "friends_scroll_content/scrolling_panel": "ui/play_screen.json", - "show_servers_panel": "ui/play_screen.json", - "show_servers_panel/left_panel": "ui/play_screen.json", - "show_servers_panel/left_panel/scrolling_panel": "ui/play_screen.json", - "show_servers_panel/divider_panel": "ui/play_screen.json", - "show_servers_panel/divider_panel/main_divider": "ui/play_screen.json", - "show_servers_panel/right_panel": "ui/play_screen.json", - "server_scroll_content": "ui/play_screen.json", - "server_scroll_content/severs_panel": "ui/play_screen.json", - "server_scroll_content/severs_panel/offset_panel": "ui/play_screen.json", - "server_scroll_content/severs_panel/offset_panel/servers_sunsetting_warning": "ui/play_screen.json", - "server_scroll_content/severs_panel/show_servers_panel": "ui/play_screen.json", - "server_scroll_content/feature_server_message_panel": "ui/play_screen.json", - "server_scroll_content/feature_server_message_panel/featured_servers_label": "ui/play_screen.json", - "server_scroll_content/feature_server_message_panel/pad": "ui/play_screen.json", - "server_scroll_content/feature_server_message_panel/feature_server_message_panel": "ui/play_screen.json", - "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout": "ui/play_screen.json", - "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout/label": "ui/play_screen.json", - "server_scroll_content/feature_server_message_panel/open_account_setting_button_gamecore": "ui/play_screen.json", - "server_content_area": "ui/play_screen.json", - "server_content_area/third_party_scrolling_panel": "ui/play_screen.json", - "server_content_area/additional_server_scrolling_panel": "ui/play_screen.json", - "server_content_area/add_server_pane": "ui/play_screen.json", - "tab_front": "ui/play_screen.json", - "tab_front_middle": "ui/play_screen.json", - "tab_back": "ui/play_screen.json", - "X_tab_back": "ui/play_screen.json", - "tab_text_stack_panel": "ui/play_screen.json", - "tab_text_stack_panel/padding": "ui/play_screen.json", - "tab_text_stack_panel/text_section": "ui/play_screen.json", - "tab_text_stack_panel/text_section/text": "ui/play_screen.json", - "tab_text_stack_panel/count_section": "ui/play_screen.json", - "tab_text_stack_panel/count_section/count_background_image": "ui/play_screen.json", - "tab_text_stack_panel/count_section/count_background_image/count": "ui/play_screen.json", - "common_navigation_tab_content": "ui/play_screen.json", - "common_navigation_tab_content/padding_0": "ui/play_screen.json", - "common_navigation_tab_content/icon_section": "ui/play_screen.json", - "common_navigation_tab_content/icon_section/icon": "ui/play_screen.json", - "common_navigation_tab_content/padding_1": "ui/play_screen.json", - "common_navigation_tab_content/count_text": "ui/play_screen.json", - "friends_navigation_tab_content": "ui/play_screen.json", - "friends_navigation_tab_content/padding": "ui/play_screen.json", - "friends_navigation_tab_content/icon_section": "ui/play_screen.json", - "friends_navigation_tab_content/icon_section/icon": "ui/play_screen.json", - "friends_navigation_tab_content/icon_section_2": "ui/play_screen.json", - "friends_navigation_tab_content/icon_section_2/icon": "ui/play_screen.json", - "friends_navigation_tab_content/icon_section_nobounce": "ui/play_screen.json", - "friends_navigation_tab_content/icon_section_nobounce/icon": "ui/play_screen.json", - "friends_navigation_tab_content/icon_section_nobounce_2": "ui/play_screen.json", - "friends_navigation_tab_content/icon_section_nobounce_2/icon": "ui/play_screen.json", - "friends_navigation_tab_content/icon_section_notification": "ui/play_screen.json", - "friends_navigation_tab_content/icon_section_notification/icon1": "ui/play_screen.json", - "friends_navigation_tab_content/icon_section_notification/icon2": "ui/play_screen.json", - "friends_navigation_tab_content/count_text": "ui/play_screen.json", - "top_tab": "ui/play_screen.json", - "world_navigation_tab": "ui/play_screen.json", - "friends_navigation_tab": "ui/play_screen.json", - "server_navigation_tab": "ui/play_screen.json", - "close_navigation_tab": "ui/play_screen.json", - "close_navigation_tab/background": "ui/play_screen.json", - "close_navigation_tab/x_image": "ui/play_screen.json", - "common_tab_content_panel": "ui/play_screen.json", - "common_tab_content_panel/background": "ui/play_screen.json", - "common_tab_content_panel/content": "ui/play_screen.json", - "worlds_tab_content_panel": "ui/play_screen.json", - "friends_tab_content_panel": "ui/play_screen.json", - "server_tab_content_panel": "ui/play_screen.json", - "common_tab_content_panel_type": "ui/play_screen.json", - "edu_tab_content_panel_layout": "ui/play_screen.json", - "edu_tab_content_panel_layout/worlds_tab_content": "ui/play_screen.json", - "edu_tab_content_panel_layout/friends_tab_content": "ui/play_screen.json", - "edu_tab_content_panel_layout/server_tab_content_panel": "ui/play_screen.json", - "trial_tab_content_panel_layout": "ui/play_screen.json", - "trial_tab_content_panel_layout/worlds_tab_content": "ui/play_screen.json", - "default_tab_content_panel_layout": "ui/play_screen.json", - "default_tab_content_panel_layout/worlds_tab_content": "ui/play_screen.json", - "default_tab_content_panel_layout/friends_tab_content": "ui/play_screen.json", - "default_tab_content_panel_layout/server_tab_content_panel": "ui/play_screen.json", - "tab_navigation_panel_layout": "ui/play_screen.json", - "tab_navigation_panel_layout/navigation_tabs": "ui/play_screen.json", - "tab_navigation_panel_layout/navigation_tabs/content": "ui/play_screen.json", - "tab_navigation_panel_layout/close_navigation_tab": "ui/play_screen.json", - "tab_navigation_panel_layout/close_navigation_tab/close_button": "ui/play_screen.json", - "common_tab_navigation_panel_layout": "ui/play_screen.json", - "edu_tab_navigation_panel_layout": "ui/play_screen.json", - "edu_tab_navigation_panel_layout/world_navigation_tab": "ui/play_screen.json", - "edu_tab_navigation_panel_layout/friends_navigation_tab": "ui/play_screen.json", - "edu_tab_navigation_panel_layout/server_navigation_tab": "ui/play_screen.json", - "trial_tab_navigation_panel_layout": "ui/play_screen.json", - "trial_tab_navigation_panel_layout/world_navigation_tab": "ui/play_screen.json", - "default_tab_navigation_panel_layout": "ui/play_screen.json", - "default_tab_navigation_panel_layout/world_navigation_tab": "ui/play_screen.json", - "default_tab_navigation_panel_layout/friends_navigation_tab": "ui/play_screen.json", - "default_tab_navigation_panel_layout/server_navigation_tab": "ui/play_screen.json", - "common_play_screen_panel": "ui/play_screen.json", - "play_screen_panel": "ui/play_screen.json", - "play_screen_panel/tab_navigation_panel": "ui/play_screen.json", - "play_screen_panel/tab_content_panel": "ui/play_screen.json", - "play_screen_panel/gamepad_helper_left_bumper": "ui/play_screen.json", - "play_screen_panel/gamepad_helper_right_bumper": "ui/play_screen.json", - "play_screen_panel/keyboard_helper_left_bracket": "ui/play_screen.json", - "play_screen_panel/keyboard_helper_right_bracket": "ui/play_screen.json", - "default_play_screen_panel": "ui/play_screen.json", - "trial_play_screen_panel": "ui/play_screen.json", - "edu_play_screen_panel": "ui/play_screen.json", - "play_screen": "ui/play_screen.json", - "play_screen_content": "ui/play_screen.json", - "play_screen_content/main_control": "ui/play_screen.json", - "play_screen_content/editor_text_panel": "ui/play_screen.json", - "play_screen_content/popup_dialog_factory": "ui/play_screen.json", - "popup_dialog_join_by_code": "ui/play_screen.json", - "popup_dialog_join_by_code/join_by_code_popup_background": "ui/play_screen.json", - "popup_dialog_join_by_code/join_by_code_popup_content": "ui/play_screen.json", - "popup_dialog_join_by_code/gamepad_helpers": "ui/play_screen.json", - "join_by_code_popup_background": "ui/play_screen.json", - "join_by_code_popup_content": "ui/play_screen.json", - "join_by_code_popup_content/popup_dialog_bg": "ui/play_screen.json", - "join_by_code_popup_content/popup_stack_panel": "ui/play_screen.json", - "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_header": "ui/play_screen.json", - "join_by_code_popup_content/popup_stack_panel/spacing_1": "ui/play_screen.json", - "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_upper_body": "ui/play_screen.json", - "join_by_code_popup_content/popup_stack_panel/spacing_2": "ui/play_screen.json", - "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_lower_body": "ui/play_screen.json", - "join_by_code_popup_dialog_header": "ui/play_screen.json", - "join_by_code_popup_dialog_header/join_by_code_popup_header_text": "ui/play_screen.json", - "join_by_code_popup_dialog_header/close_button": "ui/play_screen.json", - "join_by_code_popup_header_text": "ui/play_screen.json", - "join_by_code_popup_dialog_upper_body": "ui/play_screen.json", - "join_by_code_popup_dialog_upper_body/margin1": "ui/play_screen.json", - "join_by_code_popup_dialog_upper_body/join_by_code_popup_code_text_field": "ui/play_screen.json", - "join_by_code_popup_dialog_upper_body/spacing": "ui/play_screen.json", - "join_by_code_popup_dialog_upper_body/join_by_code_popup_join_button": "ui/play_screen.json", - "join_by_code_popup_dialog_upper_body/margin2": "ui/play_screen.json", - "join_by_code_popup_code_text_field": "ui/play_screen.json", - "join_by_code_popup_join_button": "ui/play_screen.json", - "join_by_code_popup_help_text": "ui/play_screen.json", - "lower_body_default_content": "ui/play_screen.json", - "lower_body_default_content/info_text": "ui/play_screen.json", - "join_by_code_popup_dialog_lower_body": "ui/play_screen.json", - "join_by_code_popup_dialog_lower_body/default": "ui/play_screen.json", - "open_account_setting_button": "ui/play_screen.json", - "popup_dialog_high_ping": "ui/play_screen.json", - "popup_dialog_high_ping/high_ping_popup_background": "ui/play_screen.json", - "popup_dialog_high_ping/high_ping_popup_content": "ui/play_screen.json", - "popup_dialog_high_ping/gamepad_helpers": "ui/play_screen.json", - "popup_two_buttons": "ui/play_screen.json", - "popup_two_buttons/common_panel": "ui/play_screen.json", - "popup_two_buttons/title_label": "ui/play_screen.json", - "popup_two_buttons/panel_indent": "ui/play_screen.json", - "popup_two_buttons/panel_indent/inside_header_panel": "ui/play_screen.json", - "popup_two_buttons/button_panel": "ui/play_screen.json", - "popup_two_buttons/button_panel/left_button_panel": "ui/play_screen.json", - "popup_two_buttons/button_panel/pad": "ui/play_screen.json", - "popup_two_buttons/button_panel/right_button_panel": "ui/play_screen.json", - "high_ping_popup_content_stack_panel": "ui/play_screen.json", - "high_ping_popup_content_stack_panel/pad_0": "ui/play_screen.json", - "high_ping_popup_content_stack_panel/ping_images_panel": "ui/play_screen.json", - "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel": "ui/play_screen.json", - "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/medium_connection": "ui/play_screen.json", - "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/pad": "ui/play_screen.json", - "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/low_connection": "ui/play_screen.json", - "high_ping_popup_content_stack_panel/pad_1": "ui/play_screen.json", - "high_ping_popup_content_stack_panel/text_line_1": "ui/play_screen.json", - "high_ping_popup_content_stack_panel/pad_2": "ui/play_screen.json", - "high_ping_popup_content_stack_panel/text_line_2": "ui/play_screen.json", - "high_ping_popup_content_stack_panel/pad_3": "ui/play_screen.json", - "high_ping_popup_join_button": "ui/play_screen.json", - "high_ping_popup_cancel_button": "ui/play_screen.json", - "copyright": "ui/play_screen.json", - "development_version": "ui/play_screen.json", - "version": "ui/play_screen.json", - "editor_text_panel": "ui/play_screen.json", - "editor_text_panel/copyright": "ui/play_screen.json", - "editor_text_panel/development_version": "ui/play_screen.json", - "editor_text_panel/version": "ui/play_screen.json", - "editor_settings_image_content": "ui/play_screen.json", - "editor_settings_menu_button": "ui/play_screen.json", - "editor_server_content_panel": "ui/play_screen.json", - "editor_server_content_panel/more_servers_panel": "ui/play_screen.json", - "editor_tab_content_panel_layout": "ui/play_screen.json", - "editor_tab_content_panel_layout/worlds_tab_content": "ui/play_screen.json", - "editor_tab_content_panel_layout/friends_tab_content": "ui/play_screen.json", - "editor_tab_content_panel_layout/server_tab_content_panel": "ui/play_screen.json", - "editor_play_screen_panel": "ui/play_screen.json", - }, - "perf_turtle": { - "perf_turtle_panel": "ui/perf_turtle.json", - "perf_turtle_panel/perf_turtle_background": "ui/perf_turtle.json", - "perf_turtle_panel/stack_panel": "ui/perf_turtle.json", - "perf_turtle_panel/stack_panel/turtle": "ui/perf_turtle.json", - "perf_turtle_panel/stack_panel/turtle_text": "ui/perf_turtle.json", - }, - "pocket_containers": { - "generic_label": "ui/pocket_containers.json", - "header_panel": "ui/pocket_containers.json", - "header_panel/header_background": "ui/pocket_containers.json", - "header_panel/title_label": "ui/pocket_containers.json", - "header_area": "ui/pocket_containers.json", - "header_area/x": "ui/pocket_containers.json", - "header_area/inventory_header": "ui/pocket_containers.json", - "header_area/container_header": "ui/pocket_containers.json", - "dark_bg": "ui/pocket_containers.json", - "panel_outline": "ui/pocket_containers.json", - "background_panel": "ui/pocket_containers.json", - "inventory_grid": "ui/pocket_containers.json", - "inventory_panel": "ui/pocket_containers.json", - "inventory_panel/scrolling_panel": "ui/pocket_containers.json", - "half_screen": "ui/pocket_containers.json", - "half_screen/inventory_panel": "ui/pocket_containers.json", - "panel": "ui/pocket_containers.json", - "panel/container_gamepad_helpers": "ui/pocket_containers.json", - "panel/header": "ui/pocket_containers.json", - "panel/bg": "ui/pocket_containers.json", - "panel/inventory": "ui/pocket_containers.json", - "panel/container": "ui/pocket_containers.json", - "panel/selected_item_details_factory": "ui/pocket_containers.json", - "panel/item_lock_notification_factory": "ui/pocket_containers.json", - "panel/gamepad_cursor": "ui/pocket_containers.json", - "panel/inventory_selected_icon_button": "ui/pocket_containers.json", - "panel/hold_icon": "ui/pocket_containers.json", - "panel/flying_item_renderer": "ui/pocket_containers.json", - "small_chest_panel": "ui/pocket_containers.json", - "large_chest_panel": "ui/pocket_containers.json", - "hopper_panel": "ui/pocket_containers.json", - "dispenser_panel": "ui/pocket_containers.json", - "dropper_panel": "ui/pocket_containers.json", - "ender_chest_panel": "ui/pocket_containers.json", - "shulker_box_panel": "ui/pocket_containers.json", - "barrel_panel": "ui/pocket_containers.json", - }, - "popup_dialog": { - "popup_dialog_bg": "ui/popup_dialog.json", - "popup_dialog_message": "ui/popup_dialog.json", - "popup_dialog_button": "ui/popup_dialog.json", - "popup_dialog_button_with_binding": "ui/popup_dialog.json", - "popup_dialog_left_button": "ui/popup_dialog.json", - "popup_dialog_middle_button": "ui/popup_dialog.json", - "popup_dialog_right_button": "ui/popup_dialog.json", - "popup_dialog": "ui/popup_dialog.json", - "modal_background_image": "ui/popup_dialog.json", - "black_tint_image": "ui/popup_dialog.json", - "modal_title_text": "ui/popup_dialog.json", - "modal_label_text": "ui/popup_dialog.json", - "modal_label_text/padding": "ui/popup_dialog.json", - "modal_label_text/text": "ui/popup_dialog.json", - "modal_checkbox_button": "ui/popup_dialog.json", - "modal_checkbox_button/header_description_stack_panel": "ui/popup_dialog.json", - "modal_checkbox_button/header_description_stack_panel/checkbox_visuals": "ui/popup_dialog.json", - "modal_checkbox_button/header_description_stack_panel/buffer_panel": "ui/popup_dialog.json", - "modal_checkbox_button/header_description_stack_panel/buffer_panel/label": "ui/popup_dialog.json", - "modal_checkbox_button/header_description_stack_panel/padding_panel": "ui/popup_dialog.json", - "dialog_text_wrapper": "ui/popup_dialog.json", - "modal_label_panel": "ui/popup_dialog.json", - "modal_left_button": "ui/popup_dialog.json", - "modal_middle_button": "ui/popup_dialog.json", - "modal_rightcancel_button": "ui/popup_dialog.json", - "three_buttons_panel": "ui/popup_dialog.json", - "three_buttons_panel/left": "ui/popup_dialog.json", - "three_buttons_panel/middle": "ui/popup_dialog.json", - "three_buttons_panel/right": "ui/popup_dialog.json", - "two_buttons_checkbox_panel": "ui/popup_dialog.json", - "two_buttons_checkbox_panel/left": "ui/popup_dialog.json", - "two_buttons_checkbox_panel/middle": "ui/popup_dialog.json", - "two_buttons_checkbox_panel/checkbox": "ui/popup_dialog.json", - "destructive_three_buttons_panel": "ui/popup_dialog.json", - "destructive_three_buttons_panel/left": "ui/popup_dialog.json", - "destructive_three_buttons_panel/middle": "ui/popup_dialog.json", - "destructive_three_buttons_panel/right": "ui/popup_dialog.json", - "two_buttons_panel": "ui/popup_dialog.json", - "two_buttons_panel/left": "ui/popup_dialog.json", - "two_buttons_panel/right": "ui/popup_dialog.json", - "destructive_two_buttons_panel": "ui/popup_dialog.json", - "destructive_two_buttons_panel/left": "ui/popup_dialog.json", - "destructive_two_buttons_panel/right": "ui/popup_dialog.json", - "single_button_panel": "ui/popup_dialog.json", - "single_button_panel/left": "ui/popup_dialog.json", - "single_button_checkbox_panel": "ui/popup_dialog.json", - "single_button_checkbox_panel/left": "ui/popup_dialog.json", - "single_button_checkbox_panel/checkbox": "ui/popup_dialog.json", - "modal_dialog_base": "ui/popup_dialog.json", - "modal_dialog_with_buttons": "ui/popup_dialog.json", - "modal_dialog_with_buttons/background_with_buttons": "ui/popup_dialog.json", - "modal_dialog_with_buttons/title": "ui/popup_dialog.json", - "modal_dialog_with_buttons/text": "ui/popup_dialog.json", - "modal_dialog_with_buttons/button_panel": "ui/popup_dialog.json", - "modal_input_panel": "ui/popup_dialog.json", - "modal_input_panel/black_tint_image": "ui/popup_dialog.json", - "modal_dialog_popup": "ui/popup_dialog.json", - "modal_dialog_popup/modal_input": "ui/popup_dialog.json", - "modal_dialog_popup/modal_input/modal_bg_buttons": "ui/popup_dialog.json", - "modal_dialog_popup/modal_input/black_background": "ui/popup_dialog.json", - "hollow_2_bottom_button_panel": "ui/popup_dialog.json", - "hollow_2_bottom_button_panel/lower_button_controls": "ui/popup_dialog.json", - "form_fit_screen_with_title_and_close_and_bottom_buttons": "ui/popup_dialog.json", - "form_fit_screen_with_title_and_close": "ui/popup_dialog.json", - "form_fit_screen_with_title_and_close/panel_background": "ui/popup_dialog.json", - "form_fit_screen_with_title_and_close/panel_content": "ui/popup_dialog.json", - "form_fit_screen_with_title_and_close/panel_content/header": "ui/popup_dialog.json", - "form_fit_screen_with_title_and_close/panel_content/header/header_content": "ui/popup_dialog.json", - "form_fit_screen_with_title_and_close/panel_content/close_button_panel": "ui/popup_dialog.json", - "form_fit_screen_with_title_and_close/panel_content/close_button_panel/close": "ui/popup_dialog.json", - "form_fit_screen_with_title_and_close/panel_content/contents": "ui/popup_dialog.json", - "form_fit_screen_with_title_and_close/panel_content/contents/contents": "ui/popup_dialog.json", - "form_fit_screen_with_title_and_close/panel_content/contents/content_padding": "ui/popup_dialog.json", - "form_fit_screen_with_title_and_close/panel_content/lower_contents": "ui/popup_dialog.json", - "form_fit_screen_with_title_and_close/panel_content/lower_contents/contents": "ui/popup_dialog.json", - "form_fit_modal_dialog_popup": "ui/popup_dialog.json", - "form_fit_modal_dialog_popup/background": "ui/popup_dialog.json", - "form_fit_modal_dialog_popup/content": "ui/popup_dialog.json", - "progress_dialog_popup": "ui/popup_dialog.json", - "progress_dialog_popup/background": "ui/popup_dialog.json", - "progress_dialog_popup/title": "ui/popup_dialog.json", - "progress_dialog_popup/progress_content": "ui/popup_dialog.json", - "progress_dialog_popup/button": "ui/popup_dialog.json", - "progress_content": "ui/popup_dialog.json", - "progress_content/progress_titles": "ui/popup_dialog.json", - "progress_content/progress_titles/current_progress_label": "ui/popup_dialog.json", - "progress_content/progress_titles/total_progress_label": "ui/popup_dialog.json", - "progress_content/progress_bar": "ui/popup_dialog.json", - "progress_label": "ui/popup_dialog.json", - "current_progress_label": "ui/popup_dialog.json", - "total_progress_label": "ui/popup_dialog.json", - "progress_bar_icon": "ui/popup_dialog.json", - "progress_bar_icon/full_progress_bar_icon": "ui/popup_dialog.json", - "progress_bar_icon/empty_progress_bar_icon": "ui/popup_dialog.json", - "progress_bar_icon/progress_bar_nub": "ui/popup_dialog.json", - "empty_progress_bar_icon": "ui/popup_dialog.json", - "full_progress_bar_icon": "ui/popup_dialog.json", - "progress_bar_nub": "ui/popup_dialog.json", - }, - "portfolio": { - "screenshot": "ui/portfolio_screen.json", - "screenshot_frame": "ui/portfolio_screen.json", - "trash_default": "ui/portfolio_screen.json", - "trash_hover": "ui/portfolio_screen.json", - "trash_pressed": "ui/portfolio_screen.json", - "photo_trash_button_left": "ui/portfolio_screen.json", - "photo_trash_button_left/default": "ui/portfolio_screen.json", - "photo_trash_button_left/hover": "ui/portfolio_screen.json", - "photo_trash_button_left/pressed": "ui/portfolio_screen.json", - "photo_trash_button_right": "ui/portfolio_screen.json", - "photo_trash_button_right/default": "ui/portfolio_screen.json", - "photo_trash_button_right/hover": "ui/portfolio_screen.json", - "photo_trash_button_right/pressed": "ui/portfolio_screen.json", - "photo_number": "ui/portfolio_screen.json", - "photo_number_left": "ui/portfolio_screen.json", - "photo_number_right": "ui/portfolio_screen.json", - "photo_corner_bl": "ui/portfolio_screen.json", - "photo_corner_br": "ui/portfolio_screen.json", - "photo_corner_tr": "ui/portfolio_screen.json", - "photo_corner_tl": "ui/portfolio_screen.json", - "page_photo": "ui/portfolio_screen.json", - "page_photo/screenshot": "ui/portfolio_screen.json", - "page_photo/screenshot_frame": "ui/portfolio_screen.json", - "page_photo/photo_corner_bl": "ui/portfolio_screen.json", - "page_photo/photo_corner_br": "ui/portfolio_screen.json", - "page_photo/photo_corner_tl": "ui/portfolio_screen.json", - "page_photo/photo_corner_tr": "ui/portfolio_screen.json", - "pick_item": "ui/portfolio_screen.json", - "pick_item/photo": "ui/portfolio_screen.json", - "pick_item/button": "ui/portfolio_screen.json", - "header": "ui/portfolio_screen.json", - "screenshot_grid": "ui/portfolio_screen.json", - "text_centering_panel": "ui/portfolio_screen.json", - "text_centering_panel/header": "ui/portfolio_screen.json", - "pick_scrolling_content": "ui/portfolio_screen.json", - "pick_scrolling_content/header": "ui/portfolio_screen.json", - "pick_scrolling_content/portfolio_grid": "ui/portfolio_screen.json", - "no_pick_photos_alert_label": "ui/portfolio_screen.json", - "pick_panel": "ui/portfolio_screen.json", - "pick_panel/scroll": "ui/portfolio_screen.json", - "pick_panel/close_button": "ui/portfolio_screen.json", - "pick_panel/no_pick_photos_alert_label": "ui/portfolio_screen.json", - "text_edit_box_default_indent": "ui/portfolio_screen.json", - "text_edit_box_hover_indent": "ui/portfolio_screen.json", - "text_edit_box_hover_indent/focus_border_white": "ui/portfolio_screen.json", - "text_edit_control": "ui/portfolio_screen.json", - "text_edit_control/clipper_panel": "ui/portfolio_screen.json", - "text_edit_control/clipper_panel/display_text": "ui/portfolio_screen.json", - "text_edit_control/clipper_panel/place_holder_control": "ui/portfolio_screen.json", - "text_edit_control/locked": "ui/portfolio_screen.json", - "text_edit_control/locked/edit_box_indent": "ui/portfolio_screen.json", - "text_edit_control/default": "ui/portfolio_screen.json", - "text_edit_control/hover": "ui/portfolio_screen.json", - "text_edit_control/pressed": "ui/portfolio_screen.json", - "photo_item": "ui/portfolio_screen.json", - "photo_item/screenshot": "ui/portfolio_screen.json", - "photo_item/screenshot_frame": "ui/portfolio_screen.json", - "photo_item/text_edit_control": "ui/portfolio_screen.json", - "photo_item/photo_corner_bl": "ui/portfolio_screen.json", - "photo_item/photo_corner_br": "ui/portfolio_screen.json", - "photo_item/photo_corner_tl": "ui/portfolio_screen.json", - "photo_item/photo_corner_tr": "ui/portfolio_screen.json", - "photo_grid_item": "ui/portfolio_screen.json", - "photo_grid_item/photo_item": "ui/portfolio_screen.json", - "photo_list_grid": "ui/portfolio_screen.json", - "prev_button_default": "ui/portfolio_screen.json", - "prev_button_hover": "ui/portfolio_screen.json", - "prev_button_pressed": "ui/portfolio_screen.json", - "photo_page_prev_button": "ui/portfolio_screen.json", - "photo_page_prev_button/default": "ui/portfolio_screen.json", - "photo_page_prev_button/hover": "ui/portfolio_screen.json", - "photo_page_prev_button/pressed": "ui/portfolio_screen.json", - "next_button_default": "ui/portfolio_screen.json", - "next_button_hover": "ui/portfolio_screen.json", - "next_button_pressed": "ui/portfolio_screen.json", - "photo_page_next_button": "ui/portfolio_screen.json", - "photo_page_next_button/default": "ui/portfolio_screen.json", - "photo_page_next_button/hover": "ui/portfolio_screen.json", - "photo_page_next_button/pressed": "ui/portfolio_screen.json", - "convert_button_default": "ui/portfolio_screen.json", - "convert_button_hover": "ui/portfolio_screen.json", - "convert_button_pressed": "ui/portfolio_screen.json", - "photo_convert_left_button": "ui/portfolio_screen.json", - "photo_convert_left_button/default": "ui/portfolio_screen.json", - "photo_convert_left_button/hover": "ui/portfolio_screen.json", - "photo_convert_left_button/pressed": "ui/portfolio_screen.json", - "photo_convert_right_button": "ui/portfolio_screen.json", - "photo_convert_right_button/default": "ui/portfolio_screen.json", - "photo_convert_right_button/hover": "ui/portfolio_screen.json", - "photo_convert_right_button/pressed": "ui/portfolio_screen.json", - "bottom_button_panel": "ui/portfolio_screen.json", - "bottom_button_panel/export_button": "ui/portfolio_screen.json", - "bottom_button_panel/im_content_button": "ui/portfolio_screen.json", - "bottom_button_panel/add_photo_button": "ui/portfolio_screen.json", - "im_content_button": "ui/portfolio_screen.json", - "export_button": "ui/portfolio_screen.json", - "add_photo_button": "ui/portfolio_screen.json", - "book_binding": "ui/portfolio_screen.json", - "book_spine": "ui/portfolio_screen.json", - "book_background": "ui/portfolio_screen.json", - "book_background/book_binding": "ui/portfolio_screen.json", - "book_background/top_spine": "ui/portfolio_screen.json", - "book_background/bottom_spine": "ui/portfolio_screen.json", - "header_panel": "ui/portfolio_screen.json", - "header_panel/header_background": "ui/portfolio_screen.json", - "close_button_default": "ui/portfolio_screen.json", - "close_button_hover": "ui/portfolio_screen.json", - "close_button_pressed": "ui/portfolio_screen.json", - "close_button": "ui/portfolio_screen.json", - "close_button/default": "ui/portfolio_screen.json", - "close_button/hover": "ui/portfolio_screen.json", - "close_button/pressed": "ui/portfolio_screen.json", - "no_photos_alert_label": "ui/portfolio_screen.json", - "book_and_buttons_panel": "ui/portfolio_screen.json", - "book_and_buttons_panel/book_panel": "ui/portfolio_screen.json", - "book_and_buttons_panel/book_panel/book_background": "ui/portfolio_screen.json", - "book_and_buttons_panel/book_panel/close_button": "ui/portfolio_screen.json", - "book_and_buttons_panel/book_panel/photo_list_grid": "ui/portfolio_screen.json", - "book_and_buttons_panel/book_panel/photo_number_left": "ui/portfolio_screen.json", - "book_and_buttons_panel/book_panel/photo_number_right": "ui/portfolio_screen.json", - "book_and_buttons_panel/book_panel/photo_trash_button_left": "ui/portfolio_screen.json", - "book_and_buttons_panel/book_panel/photo_trash_button_right": "ui/portfolio_screen.json", - "book_and_buttons_panel/book_panel/photo_page_prev_button": "ui/portfolio_screen.json", - "book_and_buttons_panel/book_panel/photo_page_next_button": "ui/portfolio_screen.json", - "book_and_buttons_panel/book_panel/photo_convert_left_button": "ui/portfolio_screen.json", - "book_and_buttons_panel/book_panel/photo_convert_right_button": "ui/portfolio_screen.json", - "book_and_buttons_panel/book_panel/no_photos_alert_label": "ui/portfolio_screen.json", - "book_and_buttons_panel/bottom_button_panel": "ui/portfolio_screen.json", - "root_panel": "ui/portfolio_screen.json", - "portfolio_screen": "ui/portfolio_screen.json", - "portfolio_screen_content": "ui/portfolio_screen.json", - "portfolio_screen_content/root_panel": "ui/portfolio_screen.json", - "portfolio_screen_content/root_panel/book_and_buttons_panel": "ui/portfolio_screen.json", - "portfolio_screen_content/root_panel/pick_panel": "ui/portfolio_screen.json", - }, - "progress": { - "popup_dialog_base": "ui/progress_screen.json", - "popup_dialog_base/background": "ui/progress_screen.json", - "popup_dialog_base/scrolling_panel": "ui/progress_screen.json", - "popup_dialog_base/totalSelected": "ui/progress_screen.json", - "popup_dialog_base/totalSelectedSize": "ui/progress_screen.json", - "popup_dialog_base/left": "ui/progress_screen.json", - "popup_dialog_base/right": "ui/progress_screen.json", - "checkbox_visual": "ui/progress_screen.json", - "checkbox_visual/control": "ui/progress_screen.json", - "checkbox_visuals_unchecked": "ui/progress_screen.json", - "checkbox_visuals_checked": "ui/progress_screen.json", - "checkbox_visuals_unchecked_locked": "ui/progress_screen.json", - "checkbox_visuals_checked_locked": "ui/progress_screen.json", - "checkbox_visuals_unchecked_hover": "ui/progress_screen.json", - "checkbox_visuals_checked_hover": "ui/progress_screen.json", - "checkbox_with_label_core": "ui/progress_screen.json", - "checkbox_with_label": "ui/progress_screen.json", - "checkbox_with_label/checkbox_with_label_core": "ui/progress_screen.json", - "resource_pack_grid_item": "ui/progress_screen.json", - "resource_pack_section": "ui/progress_screen.json", - "resource_pack_section/required_resource_pack_list_grid": "ui/progress_screen.json", - "resource_pack_section/optional_resource_pack_list_grid": "ui/progress_screen.json", - "simple_popup_dialog_base": "ui/progress_screen.json", - "simple_popup_dialog_base/dialog_background_hollow_3": "ui/progress_screen.json", - "simple_popup_dialog_base/dialog_background_hollow_3/control": "ui/progress_screen.json", - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel": "ui/progress_screen.json", - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_0": "ui/progress_screen.json", - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/title": "ui/progress_screen.json", - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_1": "ui/progress_screen.json", - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description": "ui/progress_screen.json", - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_2": "ui/progress_screen.json", - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description2": "ui/progress_screen.json", - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_3": "ui/progress_screen.json", - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/top_optional_button": "ui/progress_screen.json", - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_4": "ui/progress_screen.json", - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/middle_button": "ui/progress_screen.json", - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_5": "ui/progress_screen.json", - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/bottom_button": "ui/progress_screen.json", - "resource_pack_download_popup_base": "ui/progress_screen.json", - "resource_pack_download_server_required": "ui/progress_screen.json", - "resource_pack_download_optional_and_required": "ui/progress_screen.json", - "resource_pack_download_optional": "ui/progress_screen.json", - "resource_pack_download_required": "ui/progress_screen.json", - "normal_stroke_button": "ui/progress_screen.json", - "progress_screen_text": "ui/progress_screen.json", - "progress_title_text": "ui/progress_screen.json", - "progress_bar_text": "ui/progress_screen.json", - "code_text": "ui/progress_screen.json", - "code_number": "ui/progress_screen.json", - "progress_loading_bars": "ui/progress_screen.json", - "progress_loading_spinner": "ui/progress_screen.json", - "fancy_progress_loading_bars": "ui/progress_screen.json", - "fancy_progress_loading_bars/full_progress_bar_icon": "ui/progress_screen.json", - "fancy_progress_loading_bars/empty_progress_bar_icon": "ui/progress_screen.json", - "fancy_progress_loading_bars/progress_bar_nub": "ui/progress_screen.json", - "progress_bar": "ui/progress_screen.json", - "progress_bar_nub": "ui/progress_screen.json", - "thick_progress_bar_icon_base": "ui/progress_screen.json", - "thick_progress_bar_icon_empty": "ui/progress_screen.json", - "thick_progress_bar": "ui/progress_screen.json", - "thick_progress_bar/full_progress_bar_icon": "ui/progress_screen.json", - "thick_progress_bar/empty_progress_bar_icon": "ui/progress_screen.json", - "edu_cloud_upload_progress_bar": "ui/progress_screen.json", - "edu_cloud_upload_progress_bar/waveform_loading_bar": "ui/progress_screen.json", - "edu_cloud_upload_progress_bar/determinate_loading_bar": "ui/progress_screen.json", - "cancel_button": "ui/progress_screen.json", - "retry_button": "ui/progress_screen.json", - "abort_button": "ui/progress_screen.json", - "ok_button": "ui/progress_screen.json", - "title_panel": "ui/progress_screen.json", - "title_panel/progress_title_text": "ui/progress_screen.json", - "title_panel/progress_bar_text": "ui/progress_screen.json", - "title_panel/progress_bar": "ui/progress_screen.json", - "button_panel": "ui/progress_screen.json", - "button_panel/cancel_button": "ui/progress_screen.json", - "modal_button_panel": "ui/progress_screen.json", - "modal_button_panel/cancel_button": "ui/progress_screen.json", - "modal_button_panel_with_retry": "ui/progress_screen.json", - "modal_button_panel_with_retry/abort_button": "ui/progress_screen.json", - "modal_button_panel_with_retry/cancel_button": "ui/progress_screen.json", - "modal_button_panel_with_retry/retry_button": "ui/progress_screen.json", - "modal_ok_button_panel": "ui/progress_screen.json", - "modal_ok_button_panel/ok_button": "ui/progress_screen.json", - "gamepad_helpers": "ui/progress_screen.json", - "gamepad_helpers/gamepad_helper_a": "ui/progress_screen.json", - "world_image": "ui/progress_screen.json", - "cloud_image": "ui/progress_screen.json", - "server_image": "ui/progress_screen.json", - "edu_cloud_upload_image": "ui/progress_screen.json", - "edu_cloud_upload_image/world_image_wrapper": "ui/progress_screen.json", - "edu_cloud_upload_image/world_image_wrapper/fetch_world_image": "ui/progress_screen.json", - "edu_cloud_upload_image/arrow_image_wrapper": "ui/progress_screen.json", - "edu_cloud_upload_image/arrow_image_wrapper/arrow_image": "ui/progress_screen.json", - "edu_cloud_upload_image/cloud_image_wrapper": "ui/progress_screen.json", - "edu_cloud_upload_image/cloud_image_wrapper/upload_cloud_image": "ui/progress_screen.json", - "edu_cloud_fetch_image": "ui/progress_screen.json", - "edu_cloud_fetch_image/cloud_image_wrapper": "ui/progress_screen.json", - "edu_cloud_fetch_image/cloud_image_wrapper/fetch_cloud_image": "ui/progress_screen.json", - "edu_cloud_fetch_image/spyglass_image_wrapper": "ui/progress_screen.json", - "edu_cloud_fetch_image/spyglass_image_wrapper/spyglass_image": "ui/progress_screen.json", - "edu_cloud_fetch_image/world_image_wrapper": "ui/progress_screen.json", - "edu_cloud_fetch_image/world_image_wrapper/fetch_world_image": "ui/progress_screen.json", - "edu_cloud_download_image": "ui/progress_screen.json", - "edu_cloud_download_image/cloud_image_wrapper": "ui/progress_screen.json", - "edu_cloud_download_image/cloud_image_wrapper/download_cloud_image": "ui/progress_screen.json", - "edu_cloud_download_image/arrow_image_wrapper": "ui/progress_screen.json", - "edu_cloud_download_image/arrow_image_wrapper/arrow_image": "ui/progress_screen.json", - "edu_cloud_download_image/world_image_wrapper": "ui/progress_screen.json", - "edu_cloud_download_image/world_image_wrapper/download_world_image": "ui/progress_screen.json", - "edu_server_fetch_image": "ui/progress_screen.json", - "edu_server_fetch_image/server_image_wrapper_left": "ui/progress_screen.json", - "edu_server_fetch_image/server_image_wrapper_left/server_image": "ui/progress_screen.json", - "edu_server_fetch_image/spyglass_image_wrapper": "ui/progress_screen.json", - "edu_server_fetch_image/spyglass_image_wrapper/spyglass_image": "ui/progress_screen.json", - "edu_server_fetch_image/server_image_wrapper_right": "ui/progress_screen.json", - "edu_server_fetch_image/server_image_wrapper_right/server_image": "ui/progress_screen.json", - "modal_progress_panel_no_cancel": "ui/progress_screen.json", - "modal_progress_panel_no_cancel/common_panel": "ui/progress_screen.json", - "modal_progress_panel_no_cancel/content": "ui/progress_screen.json", - "modal_progress_panel_no_cancel/content/title_panel": "ui/progress_screen.json", - "modal_progress_panel_no_cancel/content/progress_loading_bars": "ui/progress_screen.json", - "modal_progress_panel_with_cancel": "ui/progress_screen.json", - "modal_progress_panel_with_cancel/common_panel": "ui/progress_screen.json", - "modal_progress_panel_with_cancel/content": "ui/progress_screen.json", - "modal_progress_panel_with_cancel/content/title_panel": "ui/progress_screen.json", - "modal_progress_panel_with_cancel/content/progress_loading_bars": "ui/progress_screen.json", - "modal_progress_panel_with_cancel/modal_button_panel": "ui/progress_screen.json", - "progress_panel": "ui/progress_screen.json", - "progress_panel/progress_loading_bars": "ui/progress_screen.json", - "progress_panel/title_panel": "ui/progress_screen.json", - "progress_panel/button_panel": "ui/progress_screen.json", - "modal_progress_screen": "ui/progress_screen.json", - "delete_progress_screen": "ui/progress_screen.json", - "realms_loading_background": "ui/progress_screen.json", - "realms_loading_background/solid_blue": "ui/progress_screen.json", - "realms_loading_background/solid_blue/gradient": "ui/progress_screen.json", - "realms_stories_loading_progress_screen": "ui/progress_screen.json", - "world_loading_progress_screen": "ui/progress_screen.json", - "world_loading_screen_background": "ui/progress_screen.json", - "overworld_loading_background": "ui/progress_screen.json", - "overworld_loading_background/background_gradient": "ui/progress_screen.json", - "overworld_loading_progress_screen": "ui/progress_screen.json", - "nether_loading_background": "ui/progress_screen.json", - "nether_loading_background/background_gradient": "ui/progress_screen.json", - "nether_loading_progress_screen": "ui/progress_screen.json", - "theend_loading_background": "ui/progress_screen.json", - "theend_loading_background/background_gradient": "ui/progress_screen.json", - "theend_loading_progress_screen": "ui/progress_screen.json", - "world_saving_progress_screen": "ui/progress_screen.json", - "fetching_edu_cloud_worlds": "ui/progress_screen.json", - "edu_cloud_download_progress_screen": "ui/progress_screen.json", - "fetching_edu_servers": "ui/progress_screen.json", - "joining_edu_server": "ui/progress_screen.json", - "world_convert_modal_progress_screen": "ui/progress_screen.json", - "progress_screen": "ui/progress_screen.json", - "popup_dialog_factory": "ui/progress_screen.json", - "progress_screen_content": "ui/progress_screen.json", - "progress_screen_content/progress_content_panel": "ui/progress_screen.json", - "progress_screen_content/popup_dialog_factory": "ui/progress_screen.json", - "progress_content_panel": "ui/progress_screen.json", - "progress_content_panel/progress_panel": "ui/progress_screen.json", - "progress_content_panel/gamepad_helpers": "ui/progress_screen.json", - "modal_screen_content": "ui/progress_screen.json", - "modal_screen_content/modal_progress_panel": "ui/progress_screen.json", - "world_modal_progress_panel": "ui/progress_screen.json", - "world_modal_progress_panel/common_panel": "ui/progress_screen.json", - "world_modal_progress_panel/base_content": "ui/progress_screen.json", - "world_modal_progress_panel/base_content/progress_title_text": "ui/progress_screen.json", - "world_modal_progress_panel/base_content/progress_bar_text": "ui/progress_screen.json", - "world_modal_progress_panel/inside_content": "ui/progress_screen.json", - "world_modal_progress_panel/inside_content/loading_bar_panel": "ui/progress_screen.json", - "world_modal_progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": "ui/progress_screen.json", - "world_modal_progress_panel/inside_content/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json", - "world_modal_progress_panel/inside_content/vertical_padding": "ui/progress_screen.json", - "world_modal_progress_panel/inside_content/modal_button_panel": "ui/progress_screen.json", - "world_modal_progress_panel/inside_content/vertical_padding_2": "ui/progress_screen.json", - "cloud_upload_panel": "ui/progress_screen.json", - "cloud_upload_panel/common_panel": "ui/progress_screen.json", - "cloud_upload_panel/base_content": "ui/progress_screen.json", - "cloud_upload_panel/base_content/progress_title_text": "ui/progress_screen.json", - "cloud_upload_panel/base_content/progress_text": "ui/progress_screen.json", - "cloud_upload_panel/base_content/edu_cloud_upload_image": "ui/progress_screen.json", - "cloud_upload_panel/base_content/loading_bar_panel": "ui/progress_screen.json", - "cloud_upload_panel/base_content/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json", - "cloud_error_panel": "ui/progress_screen.json", - "cloud_error_panel/common_panel": "ui/progress_screen.json", - "cloud_error_panel/content_wrapper": "ui/progress_screen.json", - "cloud_error_panel/content_wrapper/title_wrapper": "ui/progress_screen.json", - "cloud_error_panel/content_wrapper/title_wrapper/progress_title_text": "ui/progress_screen.json", - "cloud_error_panel/content_wrapper/error_text_tts_wrapper": "ui/progress_screen.json", - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/tts_border": "ui/progress_screen.json", - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper": "ui/progress_screen.json", - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/edu_cloud_error_text": "ui/progress_screen.json", - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding": "ui/progress_screen.json", - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code": "ui/progress_screen.json", - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_text": "ui/progress_screen.json", - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_number": "ui/progress_screen.json", - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding_2": "ui/progress_screen.json", - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link": "ui/progress_screen.json", - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/cloud_support_hypertext": "ui/progress_screen.json", - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon": "ui/progress_screen.json", - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon/icon": "ui/progress_screen.json", - "cloud_error_panel/content_wrapper/button_content": "ui/progress_screen.json", - "cloud_error_panel/content_wrapper/button_content/modal_button_panel": "ui/progress_screen.json", - "cloud_error_panel/content_wrapper/error_button_content": "ui/progress_screen.json", - "cloud_error_panel/content_wrapper/error_button_content/download_ok_button": "ui/progress_screen.json", - "cloud_error_panel/content_wrapper/error_button_content/download_cancel_button": "ui/progress_screen.json", - "cloud_fetch_panel": "ui/progress_screen.json", - "cloud_fetch_panel/common_panel": "ui/progress_screen.json", - "cloud_fetch_panel/base_content": "ui/progress_screen.json", - "cloud_fetch_panel/base_content/progress_title_text": "ui/progress_screen.json", - "cloud_fetch_panel/base_content/progress_text": "ui/progress_screen.json", - "cloud_fetch_panel/base_content/edu_cloud_fetch_image": "ui/progress_screen.json", - "cloud_fetch_panel/base_content/loading_bar_panel": "ui/progress_screen.json", - "cloud_fetch_panel/base_content/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json", - "server_fetch_panel": "ui/progress_screen.json", - "server_fetch_panel/common_panel": "ui/progress_screen.json", - "server_fetch_panel/base_content": "ui/progress_screen.json", - "server_fetch_panel/base_content/progress_title_text": "ui/progress_screen.json", - "server_fetch_panel/base_content/progress_text": "ui/progress_screen.json", - "server_fetch_panel/base_content/edu_server_fetch_image": "ui/progress_screen.json", - "server_fetch_panel/base_content/loading_bar_panel": "ui/progress_screen.json", - "server_fetch_panel/base_content/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json", - "cloud_download_panel": "ui/progress_screen.json", - "cloud_download_panel/common_panel": "ui/progress_screen.json", - "cloud_download_panel/base_content": "ui/progress_screen.json", - "cloud_download_panel/base_content/progress_title_text": "ui/progress_screen.json", - "cloud_download_panel/base_content/progress_bar_text": "ui/progress_screen.json", - "cloud_download_panel/base_content/edu_cloud_download_image": "ui/progress_screen.json", - "cloud_download_panel/loading_bar_panel": "ui/progress_screen.json", - "cloud_download_panel/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json", - "server_fetch_timeout_panel": "ui/progress_screen.json", - "server_fetch_timeout_panel/common_panel": "ui/progress_screen.json", - "server_fetch_timeout_panel/base_content": "ui/progress_screen.json", - "server_fetch_timeout_panel/base_content/progress_title_text": "ui/progress_screen.json", - "server_fetch_timeout_panel/base_content/progress_text": "ui/progress_screen.json", - "server_fetch_timeout_panel/base_content/edu_server_fetch_image": "ui/progress_screen.json", - "server_fetch_timeout_panel/base_content/loading_bar_panel": "ui/progress_screen.json", - "server_fetch_timeout_panel/base_content/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json", - "server_fetch_timeout_panel/base_content/timeout_button": "ui/progress_screen.json", - "world_convert_modal_progress_screen_content": "ui/progress_screen.json", - "world_convert_modal_progress_screen_content/mobile_data_icon": "ui/progress_screen.json", - "world_convert_modal_progress_screen_content/title_panel_content": "ui/progress_screen.json", - "world_convert_modal_progress_screen_content/world_modal_progress_panel": "ui/progress_screen.json", - "world_convert_modal_progress_screen_content/popup_dialog_factory": "ui/progress_screen.json", - "realms_loading_world_modal_progress_screen_content": "ui/progress_screen.json", - "realms_loading_world_modal_progress_screen_content/mobile_data_icon": "ui/progress_screen.json", - "realms_loading_world_modal_progress_screen_content/realms_title_image": "ui/progress_screen.json", - "realms_loading_world_modal_progress_screen_content/world_modal_progress_panel": "ui/progress_screen.json", - "realms_loading_world_modal_progress_screen_content/popup_dialog_factory": "ui/progress_screen.json", - "realms_loading_world_modal_progress_screen_content/server_region_connected": "ui/progress_screen.json", - "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_label": "ui/progress_screen.json", - "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_connected_text": "ui/progress_screen.json", - "realms_loading_world_modal_progress_screen_content/server_region_connected/padding": "ui/progress_screen.json", - "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_ping_icon": "ui/progress_screen.json", - "world_save_modal_progress_screen_content": "ui/progress_screen.json", - "world_save_modal_progress_screen_content/title_panel_content": "ui/progress_screen.json", - "world_save_modal_progress_screen_content/world_modal_progress_panel": "ui/progress_screen.json", - "world_save_modal_progress_screen_content/save_icon": "ui/progress_screen.json", - "world_save_modal_progress_screen_content/popup_dialog_factory": "ui/progress_screen.json", - "cloud_upload_screen_content": "ui/progress_screen.json", - "cloud_upload_screen_content/title_panel_content": "ui/progress_screen.json", - "cloud_upload_screen_content/cloud_upload_panel": "ui/progress_screen.json", - "cloud_upload_screen_content/cloud_upload_error_panel": "ui/progress_screen.json", - "cloud_upload_screen_content/popup_dialog_factory": "ui/progress_screen.json", - "cloud_upload_screen_content/cloud_conflict_resolution_popup_factory": "ui/progress_screen.json", - "edu_cloud_fetch_screen_content": "ui/progress_screen.json", - "edu_cloud_fetch_screen_content/cloud_fetch_panel": "ui/progress_screen.json", - "edu_cloud_fetch_screen_content/popup_dialog_factory": "ui/progress_screen.json", - "edu_server_fetch_screen_content": "ui/progress_screen.json", - "edu_server_fetch_screen_content/server_fetch_panel": "ui/progress_screen.json", - "edu_server_fetch_screen_content/server_fetch_timeout_panel": "ui/progress_screen.json", - "edu_server_fetch_screen_content/popup_dialog_factory": "ui/progress_screen.json", - "joining_edu_server_progress_screen_content": "ui/progress_screen.json", - "joining_edu_server_progress_screen_content/title_panel_content": "ui/progress_screen.json", - "joining_edu_server_progress_screen_content/world_modal_progress_panel": "ui/progress_screen.json", - "joining_edu_server_progress_screen_content/popup_dialog_factory": "ui/progress_screen.json", - "cloud_download_screen_content": "ui/progress_screen.json", - "cloud_download_screen_content/background": "ui/progress_screen.json", - "cloud_download_screen_content/cloud_download_panel": "ui/progress_screen.json", - "cloud_download_screen_content/cloud_download_error_panel": "ui/progress_screen.json", - "cloud_download_screen_content/popup_dialog_factory": "ui/progress_screen.json", - "auto_save": "ui/progress_screen.json", - "mobile_data_ios_icon": "ui/progress_screen.json", - "mobile_data_android_icon": "ui/progress_screen.json", - "mobile_data_icon_text": "ui/progress_screen.json", - "mobile_data_icon": "ui/progress_screen.json", - "mobile_data_icon/icon_android": "ui/progress_screen.json", - "mobile_data_icon/icon_ios": "ui/progress_screen.json", - "mobile_data_icon/text": "ui/progress_screen.json", - }, - "rating_prompt": { - "padding_horizontal": "ui/rating_prompt.json", - "padding_vertical": "ui/rating_prompt.json", - "rating_prompt_yes_label": "ui/rating_prompt.json", - "rating_prompt_yes_label/button_label": "ui/rating_prompt.json", - "rating_prompt_no_label": "ui/rating_prompt.json", - "rating_prompt_no_label/button_label": "ui/rating_prompt.json", - "rating_prompt_yes_button": "ui/rating_prompt.json", - "rating_prompt_no_button": "ui/rating_prompt.json", - "dialog_image": "ui/rating_prompt.json", - "dialog_image_with_border": "ui/rating_prompt.json", - "dialog_image_with_border/dialog_image": "ui/rating_prompt.json", - "button_panel": "ui/rating_prompt.json", - "button_panel/padding_3": "ui/rating_prompt.json", - "button_panel/yes_button": "ui/rating_prompt.json", - "button_panel/no_button": "ui/rating_prompt.json", - "image_panel": "ui/rating_prompt.json", - "image_panel/padding_2": "ui/rating_prompt.json", - "image_panel/dialog_image_with_border": "ui/rating_prompt.json", - "main_panel": "ui/rating_prompt.json", - "main_panel/padding_0": "ui/rating_prompt.json", - "main_panel/image_panel": "ui/rating_prompt.json", - "main_panel/padding_1": "ui/rating_prompt.json", - "main_panel/button_panel": "ui/rating_prompt.json", - "rating_prompt_screen": "ui/rating_prompt.json", - "rating_prompt_screen_content": "ui/rating_prompt.json", - }, - "realms_common": { - "pending_invites_icon": "ui/realms_common.json", - "dark_banner": "ui/realms_common.json", - "dark_banner_hover": "ui/realms_common.json", - "legacy_banner": "ui/realms_common.json", - "main_banner": "ui/realms_common.json", - "hollow_banner": "ui/realms_common.json", - "popup_dialog_bg": "ui/realms_common.json", - "popup_dialog__play_on_realm": "ui/realms_common.json", - "popup_dialog__play_on_realm/play_on_realm_popup_background": "ui/realms_common.json", - "popup_dialog__play_on_realm/gamepad_helpers": "ui/realms_common.json", - "popup_dialog__play_on_realm/play_on_realm_popup_content": "ui/realms_common.json", - "play_on_realm_popup_background": "ui/realms_common.json", - "play_on_realm_popup_content": "ui/realms_common.json", - "play_on_realm_popup_content/popup_dialog_bg": "ui/realms_common.json", - "play_on_realm_popup_content/play_on_realm_popup_dialog_header": "ui/realms_common.json", - "play_on_realm_popup_content/play_on_realm_popup_dialog_upper_body": "ui/realms_common.json", - "play_on_realm_popup_content/play_on_realm_popup_dialog_lower_body": "ui/realms_common.json", - "play_on_realm_popup_dialog_header": "ui/realms_common.json", - "play_on_realm_popup_dialog_header/play_on_realm_popup_dialog_header_text": "ui/realms_common.json", - "play_on_realm_popup_dialog_header/close_button": "ui/realms_common.json", - "play_on_realm_popup_dialog_header_text": "ui/realms_common.json", - "play_on_realm_popup_dialog_upper_body": "ui/realms_common.json", - "play_on_realm_popup_dialog_upper_body/play_on_realm_banner": "ui/realms_common.json", - "play_on_realm_popup_dialog_upper_body/play_on_realm_panel": "ui/realms_common.json", - "play_on_realm_popup_dialog_upper_body/background_panel": "ui/realms_common.json", - "play_on_realm_popup_dialog_upper_body/background_panel/black_background": "ui/realms_common.json", - "play_on_realm_panel": "ui/realms_common.json", - "play_on_realm_panel/play_on_realm_content_panel": "ui/realms_common.json", - "play_on_realm_panel/play_on_realm_content_panel/play_image_panel": "ui/realms_common.json", - "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/spacing_gap_image": "ui/realms_common.json", - "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/realms_image": "ui/realms_common.json", - "play_on_realm_panel/play_on_realm_content_panel/play_text_panel": "ui/realms_common.json", - "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_1": "ui/realms_common.json", - "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_1": "ui/realms_common.json", - "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_2": "ui/realms_common.json", - "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_2": "ui/realms_common.json", - "play_on_realm_popup_dialog_lower_body": "ui/realms_common.json", - "play_on_realm_popup_dialog_lower_body/button_panel": "ui/realms_common.json", - "play_on_realm_popup_dialog_lower_body/button_panel/play_with_friends_button": "ui/realms_common.json", - "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap1": "ui/realms_common.json", - "play_on_realm_popup_dialog_lower_body/button_panel/play_solo_button": "ui/realms_common.json", - "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap2": "ui/realms_common.json", - "play_on_realm_popup_dialog_lower_body/button_panel/go_back_button": "ui/realms_common.json", - }, - "realms_create": { - "title_label": "ui/realms_create.json", - "label": "ui/realms_create.json", - "enter_name_panel": "ui/realms_create.json", - "enter_name_panel/name_label_0": "ui/realms_create.json", - "enter_name_panel/name_edit": "ui/realms_create.json", - "selected_option_checkbox": "ui/realms_create.json", - "selected_option_checkbox_empty": "ui/realms_create.json", - "selected_option_checkbox_filled": "ui/realms_create.json", - "checkbox_panel": "ui/realms_create.json", - "checkbox_panel/selected_option_checkbox_empty": "ui/realms_create.json", - "checkbox_panel/selected_option_checkbox_filled": "ui/realms_create.json", - "checkbox_panel/button_label": "ui/realms_create.json", - "realms_option_button": "ui/realms_create.json", - "choose_duration_panel": "ui/realms_create.json", - "choose_duration_panel/name_label": "ui/realms_create.json", - "choose_duration_panel/choose_duration_stack_panel": "ui/realms_create.json", - "choose_duration_panel/choose_duration_stack_panel/short": "ui/realms_create.json", - "choose_duration_panel/choose_duration_stack_panel/long": "ui/realms_create.json", - "choose_tier_panel": "ui/realms_create.json", - "choose_tier_panel/name_label": "ui/realms_create.json", - "choose_tier_panel/choose_tier_stack_panel": "ui/realms_create.json", - "choose_tier_panel/choose_tier_stack_panel/player_count_2": "ui/realms_create.json", - "view_terms_button": "ui/realms_create.json", - "privacy_policy_button": "ui/realms_create.json", - "terms_and_conditions_panel": "ui/realms_create.json", - "terms_and_conditions_panel/name_label": "ui/realms_create.json", - "terms_and_conditions_panel/terms_string_panel": "ui/realms_create.json", - "terms_and_conditions_panel/terms_string_panel/banner_fill": "ui/realms_create.json", - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": "ui/realms_create.json", - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": "ui/realms_create.json", - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": "ui/realms_create.json", - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": "ui/realms_create.json", - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": "ui/realms_create.json", - "confirmation_panel": "ui/realms_create.json", - "confirmation_panel/create_realms_button": "ui/realms_create.json", - "create_realms_stack_panel": "ui/realms_create.json", - "create_realms_stack_panel/padding_0": "ui/realms_create.json", - "create_realms_stack_panel/create_realms_text_panel": "ui/realms_create.json", - "create_realms_text_panel": "ui/realms_create.json", - "create_realms_text_panel/create": "ui/realms_create.json", - "stack_item": "ui/realms_create.json", - "scroll_stack_panel": "ui/realms_create.json", - "scroll_stack_panel/name": "ui/realms_create.json", - "scroll_stack_panel/name/enter_name_panel": "ui/realms_create.json", - "scroll_stack_panel/padding_0": "ui/realms_create.json", - "scroll_stack_panel/duration": "ui/realms_create.json", - "scroll_stack_panel/duration/choose_duration_panel": "ui/realms_create.json", - "scroll_stack_panel/tier": "ui/realms_create.json", - "scroll_stack_panel/tier/choose_tier_panel": "ui/realms_create.json", - "scroll_stack_panel/toc": "ui/realms_create.json", - "scroll_stack_panel/toc/terms_and_conditions_panel": "ui/realms_create.json", - "scroll_stack_panel/padding_1": "ui/realms_create.json", - "scroll_stack_panel/realms_terms_info": "ui/realms_create.json", - "scroll_stack_panel/realms_terms_info/label_panel": "ui/realms_create.json", - "scroll_stack_panel/realms_terms_info/label_panel/padding_1": "ui/realms_create.json", - "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper": "ui/realms_create.json", - "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper_extra": "ui/realms_create.json", - "scroll_stack_panel/realms_terms_info/label_panel/padding_2": "ui/realms_create.json", - "scroll_stack_panel/realms_switch_nso_info": "ui/realms_create.json", - "terms_section": "ui/realms_create.json", - "terms_section/terms_section_label": "ui/realms_create.json", - "terms_section_extra": "ui/realms_create.json", - "terms_section_extra/terms_section_label": "ui/realms_create.json", - "main_panel": "ui/realms_create.json", - "main_panel/scrolling_panel": "ui/realms_create.json", - "main_panel/padding_0": "ui/realms_create.json", - "main_panel/confirmation_panel": "ui/realms_create.json", - "main_panel/padding_1": "ui/realms_create.json", - "content": "ui/realms_create.json", - "content/main_panel": "ui/realms_create.json", - "realms_create_screen": "ui/realms_create.json", - "realms_create_content_and_factory": "ui/realms_create.json", - "realms_create_content_and_factory/realms_create_content": "ui/realms_create.json", - "realms_create_content_and_factory/popup_dialog_factory": "ui/realms_create.json", - }, - "realms_pending_invitations": { - "panel_text": "ui/realms_pending_invitations.json", - "banner_panel_base": "ui/realms_pending_invitations.json", - "banner_panel_base/background": "ui/realms_pending_invitations.json", - "banner_panel_base/indent_panel": "ui/realms_pending_invitations.json", - "banner_panel_base/indent_panel/content": "ui/realms_pending_invitations.json", - "banner_panel": "ui/realms_pending_invitations.json", - "banner_panel_hover": "ui/realms_pending_invitations.json", - "realm_invite_button": "ui/realms_pending_invitations.json", - "realm_name_label": "ui/realms_pending_invitations.json", - "realm_owner_label": "ui/realms_pending_invitations.json", - "tts_gamertag_item_info_wrapper": "ui/realms_pending_invitations.json", - "gamertag_item_info": "ui/realms_pending_invitations.json", - "gamertag_item_info/rnl": "ui/realms_pending_invitations.json", - "gamertag_item_info/rol": "ui/realms_pending_invitations.json", - "accept_button_content": "ui/realms_pending_invitations.json", - "decline_button_content": "ui/realms_pending_invitations.json", - "realm_accept_button": "ui/realms_pending_invitations.json", - "realm_decline_button": "ui/realms_pending_invitations.json", - "realm_accepted_panel": "ui/realms_pending_invitations.json", - "gamertag_item_content": "ui/realms_pending_invitations.json", - "gamertag_item_content/lb": "ui/realms_pending_invitations.json", - "gamertag_item_content/a": "ui/realms_pending_invitations.json", - "gamertag_item_content/d": "ui/realms_pending_invitations.json", - "gamertag_item_content/ap": "ui/realms_pending_invitations.json", - "gamertag_item": "ui/realms_pending_invitations.json", - "gamertag_item_grid": "ui/realms_pending_invitations.json", - "show_friends_only_toggle_state_content": "ui/realms_pending_invitations.json", - "show_friends_only_toggle_state_content/checkbox_holding_panel": "ui/realms_pending_invitations.json", - "show_friends_only_toggle_state_content/checkbox_holding_panel/hide_invites": "ui/realms_pending_invitations.json", - "show_friends_only_toggle_state_content/hide_invites_text_panel": "ui/realms_pending_invitations.json", - "show_friends_only_toggle_state_content/hide_invites_text_panel/hide_invites_text": "ui/realms_pending_invitations.json", - "show_friends_only_toggle_on_state_content": "ui/realms_pending_invitations.json", - "show_friends_only_toggle_on_state": "ui/realms_pending_invitations.json", - "show_friends_only_toggle_off_state_content": "ui/realms_pending_invitations.json", - "show_friends_only_toggle_off_state": "ui/realms_pending_invitations.json", - "show_friends_only_toggle_on_hover_state_content": "ui/realms_pending_invitations.json", - "show_friends_only_toggle_on_hover_state": "ui/realms_pending_invitations.json", - "show_friends_only_toggle_off_hover_state_content": "ui/realms_pending_invitations.json", - "show_friends_only_toggle_off_hover_state": "ui/realms_pending_invitations.json", - "show_friends_only_toggle_on_locked_state_content": "ui/realms_pending_invitations.json", - "show_friends_only_toggle_on_locked_state": "ui/realms_pending_invitations.json", - "show_friends_only_toggle_off_locked_state_content": "ui/realms_pending_invitations.json", - "show_friends_only_toggle_off_locked_state": "ui/realms_pending_invitations.json", - "show_friends_only_toggle": "ui/realms_pending_invitations.json", - "gamepad_helpers": "ui/realms_pending_invitations.json", - "gamepad_helpers/a": "ui/realms_pending_invitations.json", - "gamepad_helpers/b": "ui/realms_pending_invitations.json", - "no_invites_label_wrapper": "ui/realms_pending_invitations.json", - "no_invites_label": "ui/realms_pending_invitations.json", - "no_invites_label/label": "ui/realms_pending_invitations.json", - "realms_pending_invitation_list": "ui/realms_pending_invitations.json", - "realms_pending_invitation_list/upper_padding": "ui/realms_pending_invitations.json", - "realms_pending_invitation_list/sfop": "ui/realms_pending_invitations.json", - "realms_pending_invitation_list/gig": "ui/realms_pending_invitations.json", - "realms_pending_invitation_list/lower_padding": "ui/realms_pending_invitations.json", - "realms_pending_invitation_list/nil": "ui/realms_pending_invitations.json", - "content_panel": "ui/realms_pending_invitations.json", - "realms_pending_invitations_screen": "ui/realms_pending_invitations.json", - "realms_invitation_screen_content": "ui/realms_pending_invitations.json", - "realms_invitation_screen_content/root_panel": "ui/realms_pending_invitations.json", - "realms_invitation_screen_content/root_panel/main_panel": "ui/realms_pending_invitations.json", - "realms_invitation_screen_content/root_panel/sgh": "ui/realms_pending_invitations.json", - }, - "realms_slots": { - "vertical_padding": "ui/realms_slots_screen.json", - "horizontal_padding": "ui/realms_slots_screen.json", - "horizontal_padding_sibling_height": "ui/realms_slots_screen.json", - "realms_background": "ui/realms_slots_screen.json", - "realms_background/gradient": "ui/realms_slots_screen.json", - "realms_background/particle_1": "ui/realms_slots_screen.json", - "realms_background/particle_2": "ui/realms_slots_screen.json", - "plus": "ui/realms_slots_screen.json", - "check": "ui/realms_slots_screen.json", - "world_thumbnail": "ui/realms_slots_screen.json", - "realms_stories_icon_glyph": "ui/realms_slots_screen.json", - "realms_stories_icon_glyph/realms_stories_icon": "ui/realms_slots_screen.json", - "play_button": "ui/realms_slots_screen.json", - "edit_realm_button": "ui/realms_slots_screen.json", - "realms_feed_button": "ui/realms_slots_screen.json", - "unread_story_count_text": "ui/realms_slots_screen.json", - "unread_story_count_text_background": "ui/realms_slots_screen.json", - "unread_story_count_panel": "ui/realms_slots_screen.json", - "unread_story_count_panel/text": "ui/realms_slots_screen.json", - "unread_story_count_panel/text/background": "ui/realms_slots_screen.json", - "edit_world_button_panel": "ui/realms_slots_screen.json", - "edit_world_button_panel/edit_world_button": "ui/realms_slots_screen.json", - "edit_world_button_panel/padding": "ui/realms_slots_screen.json", - "edit_world_button_panel/activate_world_button": "ui/realms_slots_screen.json", - "world_slot_button": "ui/realms_slots_screen.json", - "world_slot_button_content": "ui/realms_slots_screen.json", - "world_slot_button_content/world_slot_top": "ui/realms_slots_screen.json", - "world_slot_button_content/world_slot_top/background": "ui/realms_slots_screen.json", - "world_slot_button_content/world_slot_top/add_world_image_panel": "ui/realms_slots_screen.json", - "world_slot_button_content/world_slot_top/add_world_image_panel/plus_image": "ui/realms_slots_screen.json", - "world_slot_button_content/world_slot_top/world_thumbnail_image_panel": "ui/realms_slots_screen.json", - "world_slot_button_content/world_slot_top/world_thumbnail_image_panel/world_thumbnail": "ui/realms_slots_screen.json", - "world_slot_button_content/world_slot_top/edit_world_button_panel": "ui/realms_slots_screen.json", - "world_slot_button_content/world_slot_top/foreground": "ui/realms_slots_screen.json", - "world_slot_button_content/world_slot_top/check_image": "ui/realms_slots_screen.json", - "world_slot_button_content/world_slot_bottom": "ui/realms_slots_screen.json", - "world_slot_button_content/world_slot_bottom/divider_line_black": "ui/realms_slots_screen.json", - "world_slot_button_content/world_slot_bottom/divider_line_white": "ui/realms_slots_screen.json", - "world_slot_button_content/world_slot_bottom/add_world_text_panel": "ui/realms_slots_screen.json", - "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_grey": "ui/realms_slots_screen.json", - "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_green": "ui/realms_slots_screen.json", - "world_slot_button_content/world_slot_bottom/add_world_text_panel/add_world_text": "ui/realms_slots_screen.json", - "world_slot_button_content/world_slot_bottom/world_info_panel": "ui/realms_slots_screen.json", - "world_slot_button_content/world_slot_bottom/world_info_panel/background": "ui/realms_slots_screen.json", - "world_slot_button_content/world_slot_bottom/world_info_panel/background_green": "ui/realms_slots_screen.json", - "world_slot_button_content/world_slot_bottom/world_info_panel/world_info_stack_panel": "ui/realms_slots_screen.json", - "world_info_stack_panel": "ui/realms_slots_screen.json", - "world_info_stack_panel/world_name_panel": "ui/realms_slots_screen.json", - "world_info_stack_panel/world_name_panel/world_name": "ui/realms_slots_screen.json", - "world_info_stack_panel/world_type_panel": "ui/realms_slots_screen.json", - "world_info_stack_panel/world_type_panel/world_type": "ui/realms_slots_screen.json", - "world_info_stack_panel/bottom_padding": "ui/realms_slots_screen.json", - "main_stack_panel": "ui/realms_slots_screen.json", - "main_stack_panel/padding_0": "ui/realms_slots_screen.json", - "main_stack_panel/button_panel": "ui/realms_slots_screen.json", - "main_stack_panel/button_panel/play_button": "ui/realms_slots_screen.json", - "main_stack_panel/button_panel/left_padding": "ui/realms_slots_screen.json", - "main_stack_panel/button_panel/edit_realm_button": "ui/realms_slots_screen.json", - "main_stack_panel/button_panel/right_padding": "ui/realms_slots_screen.json", - "main_stack_panel/button_panel/feed_panel_with_unread_count": "ui/realms_slots_screen.json", - "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel": "ui/realms_slots_screen.json", - "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel/realms_feed_button": "ui/realms_slots_screen.json", - "main_stack_panel/button_panel/feed_panel_with_unread_count/unread_story_count": "ui/realms_slots_screen.json", - "main_stack_panel/padding_1": "ui/realms_slots_screen.json", - "main_stack_panel/text_panel_0": "ui/realms_slots_screen.json", - "main_stack_panel/text_panel_0/text": "ui/realms_slots_screen.json", - "main_stack_panel/padding_2": "ui/realms_slots_screen.json", - "main_stack_panel/worlds_panel": "ui/realms_slots_screen.json", - "main_stack_panel/worlds_panel/world_slot_1": "ui/realms_slots_screen.json", - "main_stack_panel/worlds_panel/padding_0": "ui/realms_slots_screen.json", - "main_stack_panel/worlds_panel/world_slot_2": "ui/realms_slots_screen.json", - "main_stack_panel/worlds_panel/padding_1": "ui/realms_slots_screen.json", - "main_stack_panel/worlds_panel/world_slot_3": "ui/realms_slots_screen.json", - "main_stack_panel/padding_3": "ui/realms_slots_screen.json", - "main_stack_panel/text_panel_1": "ui/realms_slots_screen.json", - "main_stack_panel/text_panel_1/text": "ui/realms_slots_screen.json", - "realms_slots_screen": "ui/realms_slots_screen.json", - "realms_slots_screen_content": "ui/realms_slots_screen.json", - "realms_slots_screen_content/background": "ui/realms_slots_screen.json", - "realms_slots_screen_content_panel": "ui/realms_slots_screen.json", - "realms_slots_screen_content_panel/main_scroll_panel": "ui/realms_slots_screen.json", - }, - "realms_settings": { - "settings_screen": "ui/realms_settings_screen.json", - "generic_section": "ui/realms_settings_screen.json", - "generic_section_wrapper": "ui/realms_settings_screen.json", - "generic_section_wrapper/generic_section": "ui/realms_settings_screen.json", - "checkbox_image": "ui/realms_settings_screen.json", - "checkbox_unchecked_state": "ui/realms_settings_screen.json", - "checkbox_checked_state": "ui/realms_settings_screen.json", - "checkbox_unchecked_hover_state": "ui/realms_settings_screen.json", - "checkbox_checked_hover_state": "ui/realms_settings_screen.json", - "checkbox_unchecked_locked_state": "ui/realms_settings_screen.json", - "checkbox_checked_locked_state": "ui/realms_settings_screen.json", - "player_count_label": "ui/realms_settings_screen.json", - "realm_duration_label": "ui/realms_settings_screen.json", - "realm_subscription_origin_label": "ui/realms_settings_screen.json", - "realm_consumable_to_subscription_info_label": "ui/realms_settings_screen.json", - "manage_subscriptions_button": "ui/realms_settings_screen.json", - "delete_realm_button": "ui/realms_settings_screen.json", - "open_realm_button": "ui/realms_settings_screen.json", - "close_realm_button": "ui/realms_settings_screen.json", - "subscriptions_section": "ui/realms_settings_screen.json", - "subscriptions_section/loading_view": "ui/realms_settings_screen.json", - "subscriptions_section/loading_failed_view": "ui/realms_settings_screen.json", - "subscriptions_section/loaded_view": "ui/realms_settings_screen.json", - "subscriptions_section/loaded_view/player_count_label": "ui/realms_settings_screen.json", - "subscriptions_section/loaded_view/realm_duration_label": "ui/realms_settings_screen.json", - "subscriptions_section/loaded_view/possible_store_mismatch": "ui/realms_settings_screen.json", - "subscriptions_section/loaded_view/realm_subscription_origin_label": "ui/realms_settings_screen.json", - "subscriptions_section/loaded_view/realm_consumable_to_subscription_info_label": "ui/realms_settings_screen.json", - "subscriptions_section/loaded_view/_0": "ui/realms_settings_screen.json", - "subscriptions_section/loaded_view/delete_realm_button": "ui/realms_settings_screen.json", - "subscriptions_section/loaded_view/open_realm_button": "ui/realms_settings_screen.json", - "subscriptions_section/loaded_view/close_realm_button": "ui/realms_settings_screen.json", - "subscriptions_section/loaded_view/_1": "ui/realms_settings_screen.json", - "subscriptions_section/loaded_view/manage_subscriptions_button": "ui/realms_settings_screen.json", - "invite_link_item_content": "ui/realms_settings_screen.json", - "invite_link_item_content/invite_link_item_name_and_expiry_text": "ui/realms_settings_screen.json", - "invite_link_item_content/invite_link_item_name_and_expiry_text/name_text": "ui/realms_settings_screen.json", - "invite_link_item_content/invite_link_item_name_and_expiry_text/spacing_gap": "ui/realms_settings_screen.json", - "invite_link_item_content/invite_link_item_name_and_expiry_text/expiry_text": "ui/realms_settings_screen.json", - "invite_link_item_content/invite_link_item_state_text": "ui/realms_settings_screen.json", - "invite_link_item_content/invite_link_item_state_text/state_text": "ui/realms_settings_screen.json", - "invite_link_item_content/spacing_gap": "ui/realms_settings_screen.json", - "invite_link_item_template": "ui/realms_settings_screen.json", - "invite_link_item_template/invite_link_item_button": "ui/realms_settings_screen.json", - "invite_links_section": "ui/realms_settings_screen.json", - "invite_links_section/loading_view": "ui/realms_settings_screen.json", - "invite_links_section/loading_failed_view": "ui/realms_settings_screen.json", - "invite_links_section/loaded_view": "ui/realms_settings_screen.json", - "invite_links_section/loaded_view/spacing_gap_0": "ui/realms_settings_screen.json", - "invite_links_section/loaded_view/invite_links_info": "ui/realms_settings_screen.json", - "invite_links_section/loaded_view/invite_links_grid": "ui/realms_settings_screen.json", - "invite_links_section/loaded_view/spacing_gap_1": "ui/realms_settings_screen.json", - "invite_links_section/loaded_view/add_invite_link_button": "ui/realms_settings_screen.json", - "advanced_section": "ui/realms_settings_screen.json", - "advanced_section/loading_view": "ui/realms_settings_screen.json", - "advanced_section/loading_failed_view": "ui/realms_settings_screen.json", - "advanced_section/loaded_view": "ui/realms_settings_screen.json", - "advanced_section/loaded_view/spacing_gap_0": "ui/realms_settings_screen.json", - "advanced_section/loaded_view/server_preference": "ui/realms_settings_screen.json", - "advanced_section/loaded_view/set_region_content": "ui/realms_settings_screen.json", - "advanced_section/loaded_view/changes_not_applied_panel": "ui/realms_settings_screen.json", - "advanced_section/loaded_view/changes_not_applied_panel/changes_not_applied_label": "ui/realms_settings_screen.json", - "advanced_section/loaded_view/spacing_gap_1": "ui/realms_settings_screen.json", - "advanced_section/loaded_view/region_help_button": "ui/realms_settings_screen.json", - "set_region_dropdown": "ui/realms_settings_screen.json", - "region_dropdown_content": "ui/realms_settings_screen.json", - "region_dropdown_radio": "ui/realms_settings_screen.json", - "region_help_button_content": "ui/realms_settings_screen.json", - "region_help_button_content/external_link_icon": "ui/realms_settings_screen.json", - "region_help_button_content/spacing_gap_1": "ui/realms_settings_screen.json", - "region_help_button_content/help_text": "ui/realms_settings_screen.json", - "tts_focus_border": "ui/realms_settings_screen.json", - "saves_section": "ui/realms_settings_screen.json", - "saves_section/padding_saves_section_top": "ui/realms_settings_screen.json", - "saves_section/loaded_view": "ui/realms_settings_screen.json", - "saves_section/loaded_view/storage_bar_header_panel": "ui/realms_settings_screen.json", - "saves_section/loaded_view/storage_bar_header_panel/storage_bar_with_header": "ui/realms_settings_screen.json", - "saves_section/loaded_view/storage_bar_header_panel/focus_border": "ui/realms_settings_screen.json", - "saves_section/loaded_view/padding3": "ui/realms_settings_screen.json", - "saves_section/loaded_view/save_active_world_button": "ui/realms_settings_screen.json", - "saves_section/loaded_view/padding4": "ui/realms_settings_screen.json", - "saves_section/loaded_view/active_world_info": "ui/realms_settings_screen.json", - "saves_section/loaded_view/padding5": "ui/realms_settings_screen.json", - "saves_section/loaded_view/storage_warning": "ui/realms_settings_screen.json", - "saves_section/loaded_view/storage_warning/warning_text_panel": "ui/realms_settings_screen.json", - "saves_section/loaded_view/storage_warning/focus_border": "ui/realms_settings_screen.json", - "saves_section/loaded_view/padding6": "ui/realms_settings_screen.json", - "saves_section/loaded_view/save_list_container": "ui/realms_settings_screen.json", - "saves_section/loaded_view/save_list_container/tab_buttons": "ui/realms_settings_screen.json", - "saves_section/loaded_view/save_list_container/tab_content_panel": "ui/realms_settings_screen.json", - "saves_section/loaded_view/padding_loaded_view_bottom": "ui/realms_settings_screen.json", - "saves_section/loaded_view/restore_info": "ui/realms_settings_screen.json", - "saves_section/loaded_view/saves_help_panel": "ui/realms_settings_screen.json", - "saves_section/loading_indicator": "ui/realms_settings_screen.json", - "saves_section/loading_indicator/restore_info": "ui/realms_settings_screen.json", - "saves_section/loading_indicator/loading_text_panel": "ui/realms_settings_screen.json", - "saves_section/loading_indicator/loading_text_panel/loading_text": "ui/realms_settings_screen.json", - "saves_section/loading_indicator/loading_text_panel/loading_text_padding": "ui/realms_settings_screen.json", - "saves_section/loading_indicator/loading_bars": "ui/realms_settings_screen.json", - "saves_section/loading_indicator/loading_bars/progress_loading_bars": "ui/realms_settings_screen.json", - "saves_section/loading_failed_panel": "ui/realms_settings_screen.json", - "saves_section/loading_failed_panel/restore_info": "ui/realms_settings_screen.json", - "saves_section/loading_failed_panel/saves_help_panel": "ui/realms_settings_screen.json", - "saves_section/loading_failed_panel/loading_failed_message": "ui/realms_settings_screen.json", - "saves_help_panel": "ui/realms_settings_screen.json", - "saves_help_panel/padding_help_button_top": "ui/realms_settings_screen.json", - "saves_help_panel/saves_help_button": "ui/realms_settings_screen.json", - "saves_help_panel/padding_help_button_bottom": "ui/realms_settings_screen.json", - "saves_help_button_content": "ui/realms_settings_screen.json", - "saves_help_button_content/external_link_icon": "ui/realms_settings_screen.json", - "saves_help_button_content/spacing_gap_1": "ui/realms_settings_screen.json", - "saves_help_button_content/help_text": "ui/realms_settings_screen.json", - "storage_bar_label_stack_panel": "ui/realms_settings_screen.json", - "storage_bar_label_stack_panel/text_left": "ui/realms_settings_screen.json", - "storage_bar_label_stack_panel/padding": "ui/realms_settings_screen.json", - "storage_bar_label_stack_panel/text_right": "ui/realms_settings_screen.json", - "storage_bar_panel_with_header": "ui/realms_settings_screen.json", - "storage_bar_panel_with_header/label_panel": "ui/realms_settings_screen.json", - "storage_bar_panel_with_header/label_panel/heading_label": "ui/realms_settings_screen.json", - "storage_bar_panel_with_header/padding2": "ui/realms_settings_screen.json", - "storage_bar_panel_with_header/storage_bar_panel": "ui/realms_settings_screen.json", - "realm_storage_heading_label": "ui/realms_settings_screen.json", - "storage_bar_panel": "ui/realms_settings_screen.json", - "storage_bar_panel/storage_bar_label": "ui/realms_settings_screen.json", - "storage_bar_panel/padding": "ui/realms_settings_screen.json", - "storage_bar_panel/storage_bar": "ui/realms_settings_screen.json", - "storage_bar_panel_with_tts_focus_border": "ui/realms_settings_screen.json", - "storage_bar_panel_with_tts_focus_border/storage_bar_panel": "ui/realms_settings_screen.json", - "storage_bar_panel_with_tts_focus_border/focus_border": "ui/realms_settings_screen.json", - "storage_bar": "ui/realms_settings_screen.json", - "storage_bar/empty_progress_bar_beveled": "ui/realms_settings_screen.json", - "storage_bar/storage_fill": "ui/realms_settings_screen.json", - "storage_bar/storage_bar_beveled_overlay": "ui/realms_settings_screen.json", - "active_world_info_panel": "ui/realms_settings_screen.json", - "active_world_info_panel/active_world_info_label_stack_panel": "ui/realms_settings_screen.json", - "active_world_info_panel/active_world_info_label_stack_panel/active_world_name_label": "ui/realms_settings_screen.json", - "active_world_info_panel/active_world_info_label_stack_panel/active_world_size_label": "ui/realms_settings_screen.json", - "active_world_info_panel/focus_border": "ui/realms_settings_screen.json", - "warning_text_panel": "ui/realms_settings_screen.json", - "warning_text_panel/warning_panel": "ui/realms_settings_screen.json", - "warning_text_panel/warning_panel/padding1": "ui/realms_settings_screen.json", - "warning_text_panel/warning_panel/warning_image": "ui/realms_settings_screen.json", - "warning_text_panel/warning_panel/padding2": "ui/realms_settings_screen.json", - "warning_text_panel/padding1": "ui/realms_settings_screen.json", - "warning_text_panel/text_label": "ui/realms_settings_screen.json", - "popup_dialog_background": "ui/realms_settings_screen.json", - "popup_dialog_label": "ui/realms_settings_screen.json", - "delete_selected_saves_button": "ui/realms_settings_screen.json", - "cancel_popup_button": "ui/realms_settings_screen.json", - "free_up_space_popup_content": "ui/realms_settings_screen.json", - "free_up_space_popup_content/common_panel": "ui/realms_settings_screen.json", - "free_up_space_popup_content/title_label": "ui/realms_settings_screen.json", - "free_up_space_popup_content/panel_indent": "ui/realms_settings_screen.json", - "free_up_space_popup_content/panel_indent/inside_header_panel": "ui/realms_settings_screen.json", - "free_up_space_popup_content/button_panel": "ui/realms_settings_screen.json", - "free_up_space_popup_content/button_panel/left_button_panel": "ui/realms_settings_screen.json", - "free_up_space_popup_content/button_panel/pad": "ui/realms_settings_screen.json", - "free_up_space_popup_content/button_panel/right_button_panel": "ui/realms_settings_screen.json", - "free_up_space_popup_scrolling_panel": "ui/realms_settings_screen.json", - "free_up_space_text_description": "ui/realms_settings_screen.json", - "free_up_space_popup_content_stack_panel": "ui/realms_settings_screen.json", - "free_up_space_popup_content_stack_panel/free_up_space_description_label": "ui/realms_settings_screen.json", - "free_up_space_popup_content_stack_panel/padding1": "ui/realms_settings_screen.json", - "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_panel": "ui/realms_settings_screen.json", - "free_up_space_popup_content_stack_panel/padding2": "ui/realms_settings_screen.json", - "free_up_space_popup_content_stack_panel/free_up_space_manual_save_list_stack_panel": "ui/realms_settings_screen.json", - "popup_dialog__free_up_space": "ui/realms_settings_screen.json", - "popup_dialog__free_up_space/free_up_space_popup_background": "ui/realms_settings_screen.json", - "popup_dialog__free_up_space/free_up_space_popup_content": "ui/realms_settings_screen.json", - "top_tab": "ui/realms_settings_screen.json", - "tab_content": "ui/realms_settings_screen.json", - "tab_content/text": "ui/realms_settings_screen.json", - "manual_navigation_tab": "ui/realms_settings_screen.json", - "automatic_navigation_tab": "ui/realms_settings_screen.json", - "tab_navigation_panel_layout": "ui/realms_settings_screen.json", - "tab_navigation_panel_layout/content": "ui/realms_settings_screen.json", - "button_tabs_container": "ui/realms_settings_screen.json", - "button_tabs_container/manual_navigation_tab": "ui/realms_settings_screen.json", - "button_tabs_container/automatic_navigation_tab": "ui/realms_settings_screen.json", - "tab_content_panel": "ui/realms_settings_screen.json", - "tab_content_panel/background": "ui/realms_settings_screen.json", - "tab_content_panel/background/manual_save_list": "ui/realms_settings_screen.json", - "tab_content_panel/background/automatic_save_list": "ui/realms_settings_screen.json", - "save_list_panel": "ui/realms_settings_screen.json", - "save_list_panel/save_list": "ui/realms_settings_screen.json", - "manual_save_list_panel": "ui/realms_settings_screen.json", - "manual_tab_info_panel": "ui/realms_settings_screen.json", - "manual_tab_info_panel/info_label": "ui/realms_settings_screen.json", - "manual_save_list_stack_panel": "ui/realms_settings_screen.json", - "manual_save_list_stack_panel/padding1": "ui/realms_settings_screen.json", - "manual_save_list_stack_panel/save_tab_info_label": "ui/realms_settings_screen.json", - "manual_save_list_stack_panel/padding2": "ui/realms_settings_screen.json", - "manual_save_list_stack_panel/stack_panel": "ui/realms_settings_screen.json", - "manual_save_list_stack_panel/padding3": "ui/realms_settings_screen.json", - "automatic_save_list_panel": "ui/realms_settings_screen.json", - "automatic_tab_info_panel": "ui/realms_settings_screen.json", - "automatic_tab_info_panel/info_label": "ui/realms_settings_screen.json", - "automatic_save_list_stack_panel": "ui/realms_settings_screen.json", - "automatic_save_list_stack_panel/padding1": "ui/realms_settings_screen.json", - "automatic_save_list_stack_panel/save_tab_info_label": "ui/realms_settings_screen.json", - "automatic_save_list_stack_panel/padding2": "ui/realms_settings_screen.json", - "automatic_save_list_stack_panel/stack_panel": "ui/realms_settings_screen.json", - "automatic_save_list_stack_panel/padding3": "ui/realms_settings_screen.json", - "options_icon": "ui/realms_settings_screen.json", - "saves_info_accordian": "ui/realms_settings_screen.json", - "saves_info_accordian/main_content_panel": "ui/realms_settings_screen.json", - "saves_info_accordian/main_content_panel/checkbox_button": "ui/realms_settings_screen.json", - "saves_info_accordian/main_content_panel/main_item_toggle": "ui/realms_settings_screen.json", - "saves_info_accordian/main_content_panel/options_button": "ui/realms_settings_screen.json", - "saves_info_accordian/sub_content_panel": "ui/realms_settings_screen.json", - "saves_info_accordian/sub_content_panel/saves_content": "ui/realms_settings_screen.json", - "saves_info_accordion_checkbox": "ui/realms_settings_screen.json", - "saves_info_accordion_checkbox/unchecked_control": "ui/realms_settings_screen.json", - "saves_info_accordion_checkbox/checked_control": "ui/realms_settings_screen.json", - "saves_info_accordion_checkbox/unchecked_hover_control": "ui/realms_settings_screen.json", - "saves_info_accordion_checkbox/checked__hover_control": "ui/realms_settings_screen.json", - "main_item_content": "ui/realms_settings_screen.json", - "main_item_content/date_and_name": "ui/realms_settings_screen.json", - "main_item_content/date_and_name/date_saved_label": "ui/realms_settings_screen.json", - "main_item_content/date_and_name/world_name_label": "ui/realms_settings_screen.json", - "main_item_content/time_and_size": "ui/realms_settings_screen.json", - "main_item_content/time_and_size/save_data_time_label": "ui/realms_settings_screen.json", - "main_item_content/time_and_size/save_data_size_label": "ui/realms_settings_screen.json", - "main_item_content/padding_left_down_icon": "ui/realms_settings_screen.json", - "main_item_content/down_icon": "ui/realms_settings_screen.json", - "main_item_content/down_icon/options_icon": "ui/realms_settings_screen.json", - "main_item_content/padding_right_down_icon": "ui/realms_settings_screen.json", - "option_saves_info_label": "ui/realms_settings_screen.json", - "saves_info_container": "ui/realms_settings_screen.json", - "saves_info_container/saves_info_content": "ui/realms_settings_screen.json", - "saves_info_content": "ui/realms_settings_screen.json", - "saves_info_content/version_panel": "ui/realms_settings_screen.json", - "saves_info_content/pack_header_panel": "ui/realms_settings_screen.json", - "saves_info_content/world_packs_label": "ui/realms_settings_screen.json", - "version_panel": "ui/realms_settings_screen.json", - "version_panel/left_content": "ui/realms_settings_screen.json", - "version_panel/left_content/save_version_label": "ui/realms_settings_screen.json", - "pack_header_panel": "ui/realms_settings_screen.json", - "pack_header_panel/left_content": "ui/realms_settings_screen.json", - "pack_header_panel/left_content/packs_label": "ui/realms_settings_screen.json", - "label_text": "ui/realms_settings_screen.json", - "branch_grid_item_content": "ui/realms_settings_screen.json", - "branch_grid_item_content/branch_text": "ui/realms_settings_screen.json", - "branch_grid_item_content/commit_text": "ui/realms_settings_screen.json", - "matching_item_button_content": "ui/realms_settings_screen.json", - "matching_item_button_content/branch_text": "ui/realms_settings_screen.json", - "matching_item_button_content/commit_text": "ui/realms_settings_screen.json", - "branch_item_template": "ui/realms_settings_screen.json", - "branch_item_template/branch_item_button": "ui/realms_settings_screen.json", - "branches_grid": "ui/realms_settings_screen.json", - "branch_set_panel": "ui/realms_settings_screen.json", - "branch_set_panel/set_branch_id_label": "ui/realms_settings_screen.json", - "version_filter_text_box": "ui/realms_settings_screen.json", - "branch_page_panel": "ui/realms_settings_screen.json", - "branch_page_panel/prev_button": "ui/realms_settings_screen.json", - "branch_page_panel/page_text": "ui/realms_settings_screen.json", - "branch_page_panel/next_button": "ui/realms_settings_screen.json", - "branches_panel": "ui/realms_settings_screen.json", - "branches_panel/branch_label": "ui/realms_settings_screen.json", - "branches_panel/spacing_gap_1": "ui/realms_settings_screen.json", - "branches_panel/set_branch_version_label": "ui/realms_settings_screen.json", - "branches_panel/branch_set_panel": "ui/realms_settings_screen.json", - "branches_panel/spacing_gap_2": "ui/realms_settings_screen.json", - "branches_panel/matching_version_label": "ui/realms_settings_screen.json", - "branches_panel/matching_item_button": "ui/realms_settings_screen.json", - "branches_panel/spacing_gap_3": "ui/realms_settings_screen.json", - "branches_panel/all_commits_label": "ui/realms_settings_screen.json", - "branches_panel/version_filter_text_box": "ui/realms_settings_screen.json", - "branches_panel/branches_grid": "ui/realms_settings_screen.json", - "branches_panel/spacing_gap": "ui/realms_settings_screen.json", - "branches_panel/branch_page_panel": "ui/realms_settings_screen.json", - "branch_section": "ui/realms_settings_screen.json", - "branch_section/branches_panel": "ui/realms_settings_screen.json", - "popup_dialog__backups": "ui/realms_settings_screen.json", - "popup_dialog__backups/transparent_close_button": "ui/realms_settings_screen.json", - "popup_dialog__backups/backup_restore_popup_content": "ui/realms_settings_screen.json", - "backup_restore_popup_content": "ui/realms_settings_screen.json", - "backup_restore_popup_content/popup_dialog_bg": "ui/realms_settings_screen.json", - "backup_restore_popup_content/backup_restore_popup_dialog_header": "ui/realms_settings_screen.json", - "backup_restore_popup_content/backup_restore_popup_dialog_body": "ui/realms_settings_screen.json", - "backup_restore_popup_dialog_header": "ui/realms_settings_screen.json", - "backup_restore_popup_dialog_header/backup_restore_popup_dialog_header_text": "ui/realms_settings_screen.json", - "backup_restore_popup_dialog_header_text": "ui/realms_settings_screen.json", - "backup_restore_popup_dialog_body": "ui/realms_settings_screen.json", - "backup_restore_popup_dialog_body/backup_restore_loading_panel": "ui/realms_settings_screen.json", - "backup_restore_loading_panel": "ui/realms_settings_screen.json", - "backup_restore_loading_panel/backup_restore_loading_stack_panel": "ui/realms_settings_screen.json", - "backup_restore_loading_stack_panel": "ui/realms_settings_screen.json", - "backup_restore_loading_stack_panel/padding": "ui/realms_settings_screen.json", - "backup_restore_loading_stack_panel/backup_restore_text_panel": "ui/realms_settings_screen.json", - "backup_restore_loading_stack_panel/backup_restore_loading_bar_panel": "ui/realms_settings_screen.json", - "backup_restore_loading_stack_panel/padding2": "ui/realms_settings_screen.json", - "backup_restore_text_panel": "ui/realms_settings_screen.json", - "backup_restore_text_panel/loading_text": "ui/realms_settings_screen.json", - "backup_restore_loading_bar_panel": "ui/realms_settings_screen.json", - "backup_restore_loading_bar_panel/progress_loading_bars": "ui/realms_settings_screen.json", - "backup_replace_icon": "ui/realms_settings_screen.json", - "backup_download_icon": "ui/realms_settings_screen.json", - "backup_grid_item_content": "ui/realms_settings_screen.json", - "backup_grid_item_content/backup_grid_item_icon_panel": "ui/realms_settings_screen.json", - "backup_grid_item_content/backup_grid_item_name_and_time_since": "ui/realms_settings_screen.json", - "backup_grid_item_content/backup_grid_item_date_and_time": "ui/realms_settings_screen.json", - "backup_grid_item_content/spacing_gap": "ui/realms_settings_screen.json", - "backup_grid_item_name_and_time_since": "ui/realms_settings_screen.json", - "backup_grid_item_name_and_time_since/date_text": "ui/realms_settings_screen.json", - "backup_grid_item_name_and_time_since/spacing_gap": "ui/realms_settings_screen.json", - "backup_grid_item_name_and_time_since/version_text": "ui/realms_settings_screen.json", - "backup_grid_item_date_and_time": "ui/realms_settings_screen.json", - "backup_grid_item_date_and_time/time_text": "ui/realms_settings_screen.json", - "backup_grid_item_date_and_time/spacing_gap": "ui/realms_settings_screen.json", - "backup_grid_item_date_and_time/size_text": "ui/realms_settings_screen.json", - "backup_grid_item_icon_panel": "ui/realms_settings_screen.json", - "backup_grid_item_icon_panel/backup_replace_icon": "ui/realms_settings_screen.json", - "backup_item_template": "ui/realms_settings_screen.json", - "backup_item_template/backup_item_button": "ui/realms_settings_screen.json", - "backup_item_template/download_backup_panel": "ui/realms_settings_screen.json", - "backup_item_template/download_backup_panel/download_backup_button": "ui/realms_settings_screen.json", - "download_backup_button": "ui/realms_settings_screen.json", - "backup_grid": "ui/realms_settings_screen.json", - "backup_section": "ui/realms_settings_screen.json", - "backup_section/backup_panel": "ui/realms_settings_screen.json", - "backup_info_label": "ui/realms_settings_screen.json", - "backup_network_error_label": "ui/realms_settings_screen.json", - "backup_panel": "ui/realms_settings_screen.json", - "backup_panel/spacing_gap": "ui/realms_settings_screen.json", - "backup_panel/backup_info_label": "ui/realms_settings_screen.json", - "backup_panel/spacing_gap2": "ui/realms_settings_screen.json", - "backup_panel/progress_panel": "ui/realms_settings_screen.json", - "backup_panel/progress_panel/progress_loading_bars": "ui/realms_settings_screen.json", - "backup_panel/backup_grid": "ui/realms_settings_screen.json", - "backup_panel/backup_network_error_label": "ui/realms_settings_screen.json", - "test_content": "ui/realms_settings_screen.json", - "test_content/realms_allowlist_content_panel": "ui/realms_settings_screen.json", - "test_content/gamepad_helpers": "ui/realms_settings_screen.json", - "selector_panel": "ui/realms_settings_screen.json", - "selector_panel/play_button": "ui/realms_settings_screen.json", - "selector_panel/disabled_play_button": "ui/realms_settings_screen.json", - "selector_panel/expired_play_button": "ui/realms_settings_screen.json", - "selector_panel/padding": "ui/realms_settings_screen.json", - "selector_panel/selector_group_label": "ui/realms_settings_screen.json", - "selector_panel/world_button": "ui/realms_settings_screen.json", - "selector_panel/members_button": "ui/realms_settings_screen.json", - "selector_panel/saves_button": "ui/realms_settings_screen.json", - "selector_panel/subscription_button": "ui/realms_settings_screen.json", - "selector_panel/backup_button": "ui/realms_settings_screen.json", - "selector_panel/dev_options_button": "ui/realms_settings_screen.json", - "selector_panel/invite_links_button": "ui/realms_settings_screen.json", - "selector_panel/advanced_button": "ui/realms_settings_screen.json", - "section_content_panels": "ui/realms_settings_screen.json", - "section_content_panels/world_section": "ui/realms_settings_screen.json", - "section_content_panels/players_section": "ui/realms_settings_screen.json", - "section_content_panels/subscription_section": "ui/realms_settings_screen.json", - "section_content_panels/invite_links_section": "ui/realms_settings_screen.json", - "section_content_panels/advanced_section": "ui/realms_settings_screen.json", - "section_content_panels/dev_options_section": "ui/realms_settings_screen.json", - "section_content_panels/backup_section": "ui/realms_settings_screen.json", - "section_content_panels/saves_section": "ui/realms_settings_screen.json", - "popup_dialog__save_options": "ui/realms_settings_screen.json", - "save_options_popup_content": "ui/realms_settings_screen.json", - "save_options_popup_content/restore_button": "ui/realms_settings_screen.json", - "save_options_popup_content/spacing_1": "ui/realms_settings_screen.json", - "save_options_popup_content/download_button": "ui/realms_settings_screen.json", - "save_options_popup_content/spacing_2": "ui/realms_settings_screen.json", - "save_options_popup_content/save_button_container": "ui/realms_settings_screen.json", - "save_options_popup_content/save_button_container/save_button": "ui/realms_settings_screen.json", - "save_options_popup_content/save_button_container/spacing_3": "ui/realms_settings_screen.json", - "save_options_popup_content/delete_button_container": "ui/realms_settings_screen.json", - "save_options_popup_content/delete_button_container/delete_button": "ui/realms_settings_screen.json", - "standalone_dialog_title": "ui/realms_settings_screen.json", - "standalone_dialog_title/left_padding": "ui/realms_settings_screen.json", - "standalone_dialog_title/dialog_title_label": "ui/realms_settings_screen.json", - "standalone_dialog_title/right_padding": "ui/realms_settings_screen.json", - "standalone_dialog_content": "ui/realms_settings_screen.json", - "standalone_dialog_content/dialog_title": "ui/realms_settings_screen.json", - "standalone_dialog_content/content_area": "ui/realms_settings_screen.json", - "standalone_content_area": "ui/realms_settings_screen.json", - "standalone_content_area/control": "ui/realms_settings_screen.json", - "standalone_content_area/control/scrolling_panel": "ui/realms_settings_screen.json", - "realms_settings_screen_base_no_selector_area": "ui/realms_settings_screen.json", - "screen_realm_hub_manage_members": "ui/realms_settings_screen.json", - "screen_realm_hub_invite_links": "ui/realms_settings_screen.json", - "screen_realm_hub_saves": "ui/realms_settings_screen.json", - }, - "realms_allowlist": { - "spacing_gap": "ui/realms_allowlist.json", - "friends_containing_panel": "ui/realms_allowlist.json", - "friends_containing_panel/friends_panel": "ui/realms_allowlist.json", - "friends_panel": "ui/realms_allowlist.json", - "friends_panel/add_friends_and_invite_link_panel": "ui/realms_allowlist.json", - "friends_panel/option_dropdown_permissions": "ui/realms_allowlist.json", - "friends_panel/player_filter_label": "ui/realms_allowlist.json", - "friends_panel/player_filter_text_box": "ui/realms_allowlist.json", - "friends_panel/spacing_gap_members_top": "ui/realms_allowlist.json", - "friends_panel/lists": "ui/realms_allowlist.json", - "friends_panel/lists/members_label": "ui/realms_allowlist.json", - "friends_panel/lists/members_stack": "ui/realms_allowlist.json", - "friends_panel/lists/spacing_gap_members_bottom": "ui/realms_allowlist.json", - "friends_panel/lists/members_page_panel": "ui/realms_allowlist.json", - "friends_panel/lists/invited_friends_label": "ui/realms_allowlist.json", - "friends_panel/lists/invited_stack": "ui/realms_allowlist.json", - "friends_panel/lists/spacing_gap_invited_friends": "ui/realms_allowlist.json", - "friends_panel/lists/invited_friends_page_panel": "ui/realms_allowlist.json", - "friends_panel/lists/uninvited_friends_label": "ui/realms_allowlist.json", - "friends_panel/lists/uninvited_stack": "ui/realms_allowlist.json", - "friends_panel/lists/spacing_gap_uninvited_friends": "ui/realms_allowlist.json", - "friends_panel/lists/uninvited_friends_page_panel": "ui/realms_allowlist.json", - "friends_panel/lists/blocked_players_label": "ui/realms_allowlist.json", - "friends_panel/lists/blocked_players_stack": "ui/realms_allowlist.json", - "friends_panel/lists/spacing_gap_blocked_players": "ui/realms_allowlist.json", - "friends_panel/lists/blocked_players_page_panel": "ui/realms_allowlist.json", - "friends_panel/lists/no_invites_label": "ui/realms_allowlist.json", - "friends_panel/loading_friends": "ui/realms_allowlist.json", - "add_friends_and_invite_link_panel": "ui/realms_allowlist.json", - "add_friends_and_invite_link_panel/allowlist_stack_panel": "ui/realms_allowlist.json", - "add_friends_and_invite_link_panel/allowlist_stack_panel/find_friends_button_panel": "ui/realms_allowlist.json", - "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_1": "ui/realms_allowlist.json", - "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel": "ui/realms_allowlist.json", - "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel/invite_links_button": "ui/realms_allowlist.json", - "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_2": "ui/realms_allowlist.json", - "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel": "ui/realms_allowlist.json", - "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel/clear_members_button": "ui/realms_allowlist.json", - "options_icon": "ui/realms_allowlist.json", - "account_link_image": "ui/realms_allowlist.json", - "account_link_icon": "ui/realms_allowlist.json", - "account_link_icon/space_01": "ui/realms_allowlist.json", - "account_link_icon/account_link_image": "ui/realms_allowlist.json", - "account_link_icon/space_03": "ui/realms_allowlist.json", - "find_friends_button_panel": "ui/realms_allowlist.json", - "find_friends_button_panel/find_friends_button": "ui/realms_allowlist.json", - "invited_friends_label": "ui/realms_allowlist.json", - "invited_friends_label/friend_title": "ui/realms_allowlist.json", - "player_filter_label": "ui/realms_allowlist.json", - "player_filter_label/player_filter_title": "ui/realms_allowlist.json", - "members_label": "ui/realms_allowlist.json", - "members_label/friend_title": "ui/realms_allowlist.json", - "members_label/padding_panel": "ui/realms_allowlist.json", - "members_label/loading_text": "ui/realms_allowlist.json", - "blocked_players_label": "ui/realms_allowlist.json", - "blocked_players_label/friend_title": "ui/realms_allowlist.json", - "uninvited_friends_label": "ui/realms_allowlist.json", - "uninvited_friends_label/friend_title": "ui/realms_allowlist.json", - "no_invites_label": "ui/realms_allowlist.json", - "loading_friends": "ui/realms_allowlist.json", - "blocked_grid_item": "ui/realms_allowlist.json", - "blocked_grid_item/blocked_panel": "ui/realms_allowlist.json", - "factory_stack": "ui/realms_allowlist.json", - "member_factory_xbl_profile": "ui/realms_allowlist.json", - "member_factory_linked_account": "ui/realms_allowlist.json", - "invited_factory_xbl_profile": "ui/realms_allowlist.json", - "invited_factory_linked_account": "ui/realms_allowlist.json", - "uninvited_factory_xbl_profile": "ui/realms_allowlist.json", - "uninvited_factory_linked_account": "ui/realms_allowlist.json", - "blocked_factory_xbl_profile": "ui/realms_allowlist.json", - "blocked_factory_linked_account": "ui/realms_allowlist.json", - "xbl_profile_panel_factory": "ui/realms_allowlist.json", - "xbl_profile_blocked_panel_factory": "ui/realms_allowlist.json", - "linked_account_panel_factory": "ui/realms_allowlist.json", - "linked_account_blocked_panel_factory": "ui/realms_allowlist.json", - "xbl_profile_panel": "ui/realms_allowlist.json", - "xbl_profile_panel/player_status_panel": "ui/realms_allowlist.json", - "xbl_profile_panel/xbl_user_panel": "ui/realms_allowlist.json", - "xbl_profile_panel/right_controls_panel": "ui/realms_allowlist.json", - "xbl_profile_panel/progress": "ui/realms_allowlist.json", - "factory_gap_template": "ui/realms_allowlist.json", - "factory_gap_template/gapped_control": "ui/realms_allowlist.json", - "factory_gap_template/spacing1": "ui/realms_allowlist.json", - "gapped_xbl_profile_panel": "ui/realms_allowlist.json", - "gapped_linked_account_panel": "ui/realms_allowlist.json", - "gapped_blocked_xbl_profile_panel": "ui/realms_allowlist.json", - "gapped_blocked_linked_account_panel": "ui/realms_allowlist.json", - "blocked_panel": "ui/realms_allowlist.json", - "blocked_panel/xbl_user_panel": "ui/realms_allowlist.json", - "blocked_panel/unblock_button": "ui/realms_allowlist.json", - "linked_account_panel": "ui/realms_allowlist.json", - "linked_account_panel/linked_account_positioning_panel": "ui/realms_allowlist.json", - "linked_account_panel/right_controls_panel": "ui/realms_allowlist.json", - "linked_account_panel/progress": "ui/realms_allowlist.json", - "linked_account_blocked_panel": "ui/realms_allowlist.json", - "linked_account_blocked_panel/linked_account_positioning_panel": "ui/realms_allowlist.json", - "linked_account_blocked_panel/unblock_button": "ui/realms_allowlist.json", - "linked_account_blocked_panel/progress": "ui/realms_allowlist.json", - "xbl_user_panel": "ui/realms_allowlist.json", - "xbl_user_panel/spacing1": "ui/realms_allowlist.json", - "xbl_user_panel/platform_icon_positioner": "ui/realms_allowlist.json", - "xbl_user_panel/gamerpic_panel": "ui/realms_allowlist.json", - "xbl_user_panel/spacing2": "ui/realms_allowlist.json", - "xbl_user_panel/gamertag_label_panel": "ui/realms_allowlist.json", - "third_party_user_panel": "ui/realms_allowlist.json", - "third_party_user_panel/spacing1": "ui/realms_allowlist.json", - "third_party_user_panel/profile_picture": "ui/realms_allowlist.json", - "third_party_user_panel/spacing2": "ui/realms_allowlist.json", - "third_party_user_panel/third_party_profile_label": "ui/realms_allowlist.json", - "linked_profile_pictures_panel": "ui/realms_allowlist.json", - "linked_profile_pictures_panel/pp2": "ui/realms_allowlist.json", - "linked_profile_pictures_panel/account_link": "ui/realms_allowlist.json", - "linked_profile_pictures_panel/pp1": "ui/realms_allowlist.json", - "platform_profile_names": "ui/realms_allowlist.json", - "platform_profile_names/friend_grid_third_party_tag": "ui/realms_allowlist.json", - "platform_profile_names/spacer_02": "ui/realms_allowlist.json", - "platform_profile_names/friend_grid_xbl_gamertag": "ui/realms_allowlist.json", - "platform_profile_names/spacer_03": "ui/realms_allowlist.json", - "linked_user_stack_panel": "ui/realms_allowlist.json", - "linked_user_stack_panel/allow_offset_control": "ui/realms_allowlist.json", - "linked_user_stack_panel/allow_offset_control/player_status_panel": "ui/realms_allowlist.json", - "linked_user_stack_panel/platform_icon_positioner": "ui/realms_allowlist.json", - "linked_user_stack_panel/platform_icon_positioner/platform_icon": "ui/realms_allowlist.json", - "linked_user_stack_panel/spacing1": "ui/realms_allowlist.json", - "linked_user_stack_panel/profile_picture": "ui/realms_allowlist.json", - "linked_user_stack_panel/spacing2": "ui/realms_allowlist.json", - "linked_user_stack_panel/platform_names_label": "ui/realms_allowlist.json", - "linked_user_stack_panel/spacing3": "ui/realms_allowlist.json", - "horizontal_indent": "ui/realms_allowlist.json", - "vertical_indent": "ui/realms_allowlist.json", - "gamerpic_panel": "ui/realms_allowlist.json", - "gamerpic_panel/black_border": "ui/realms_allowlist.json", - "gamerpic_panel/gamer_pic": "ui/realms_allowlist.json", - "third_party_profile_pic_panel": "ui/realms_allowlist.json", - "third_party_profile_pic_panel/black_border": "ui/realms_allowlist.json", - "third_party_profile_pic_panel/third_party_profile_picture": "ui/realms_allowlist.json", - "gamertag_label_panel": "ui/realms_allowlist.json", - "gamertag_label_panel/gamertag_label": "ui/realms_allowlist.json", - "gamertag_label_panel/real_name_label": "ui/realms_allowlist.json", - "third_party_profile_label": "ui/realms_allowlist.json", - "third_party_profile_label/profile_name_label": "ui/realms_allowlist.json", - "panel_text": "ui/realms_allowlist.json", - "gamertag_label": "ui/realms_allowlist.json", - "third_party_profile_name_label": "ui/realms_allowlist.json", - "real_name_label": "ui/realms_allowlist.json", - "right_settings_panel": "ui/realms_allowlist.json", - "right_settings_panel/member_settings": "ui/realms_allowlist.json", - "member_settings": "ui/realms_allowlist.json", - "member_settings/minus_button": "ui/realms_allowlist.json", - "member_settings/horizontal_space": "ui/realms_allowlist.json", - "member_settings/member_permissions": "ui/realms_allowlist.json", - "member_settings/op_deop_button": "ui/realms_allowlist.json", - "right_controls_panel": "ui/realms_allowlist.json", - "right_controls_panel/right_settings_panel": "ui/realms_allowlist.json", - "right_controls_panel/uninvited_friends_invite_button": "ui/realms_allowlist.json", - "player_status_panel": "ui/realms_allowlist.json", - "player_status_panel/player_online_icon": "ui/realms_allowlist.json", - "player_status_panel/player_offline_icon": "ui/realms_allowlist.json", - "permissions_dropdown": "ui/realms_allowlist.json", - "permissions_dropdown/vertical_space": "ui/realms_allowlist.json", - "permissions_dropdown/option_dropdown_permissions": "ui/realms_allowlist.json", - "invite_button": "ui/realms_allowlist.json", - "minus_button": "ui/realms_allowlist.json", - "unblock_label": "ui/realms_allowlist.json", - "unblock_button": "ui/realms_allowlist.json", - "op_deop_button": "ui/realms_allowlist.json", - "find_friends_button": "ui/realms_allowlist.json", - "black_border": "ui/realms_allowlist.json", - "gamer_pic": "ui/realms_allowlist.json", - "third_party_profile_picture": "ui/realms_allowlist.json", - "player_online_icon": "ui/realms_allowlist.json", - "player_offline_icon": "ui/realms_allowlist.json", - "plus_icon": "ui/realms_allowlist.json", - "more_icon": "ui/realms_allowlist.json", - "share_icon": "ui/realms_allowlist.json", - "minus_icon": "ui/realms_allowlist.json", - "op_icon": "ui/realms_allowlist.json", - "deop_icon": "ui/realms_allowlist.json", - "player_filter_text_box": "ui/realms_allowlist.json", - "page_panel": "ui/realms_allowlist.json", - "page_panel/prev_button": "ui/realms_allowlist.json", - "page_panel/page_text": "ui/realms_allowlist.json", - "page_panel/next_button": "ui/realms_allowlist.json", - "realms_allowlist_panel_content": "ui/realms_allowlist.json", - "realms_allowlist_content_panel": "ui/realms_allowlist.json", - "realms_allowlist_content_panel_children": "ui/realms_allowlist.json", - "realms_allowlist_content_panel_children/realms_allowlist_panel_content": "ui/realms_allowlist.json", - "realms_allowlist_content_panel_children/done_button": "ui/realms_allowlist.json", - "realms_allowlist_screen": "ui/realms_allowlist.json", - "realms_allowlist_content": "ui/realms_allowlist.json", - "realms_allowlist_content/root_panel": "ui/realms_allowlist.json", - "realms_allowlist_content/root_panel/realms_allowlist_content_panel": "ui/realms_allowlist.json", - "transparent_close_button": "ui/realms_allowlist.json", - }, - "realms_invite_link_settings": { - "generic_section_wrapper": "ui/realms_invite_link_settings_screen.json", - "generic_section_wrapper/generic_section": "ui/realms_invite_link_settings_screen.json", - "link_banner": "ui/realms_invite_link_settings_screen.json", - "clipboard_icon": "ui/realms_invite_link_settings_screen.json", - "description_wrap": "ui/realms_invite_link_settings_screen.json", - "description_wrap/description": "ui/realms_invite_link_settings_screen.json", - "invite_link_url": "ui/realms_invite_link_settings_screen.json", - "link_panel": "ui/realms_invite_link_settings_screen.json", - "link_panel/invite_link_url_wrapper": "ui/realms_invite_link_settings_screen.json", - "link_panel/link_copy_container": "ui/realms_invite_link_settings_screen.json", - "link_panel/link_copy_container/link_copy": "ui/realms_invite_link_settings_screen.json", - "general_content": "ui/realms_invite_link_settings_screen.json", - "general_content/spacing_gap_0": "ui/realms_invite_link_settings_screen.json", - "general_content/invite_link_title": "ui/realms_invite_link_settings_screen.json", - "general_content/invite_link_description": "ui/realms_invite_link_settings_screen.json", - "general_content/spacing_gap_1": "ui/realms_invite_link_settings_screen.json", - "general_content/link_panel": "ui/realms_invite_link_settings_screen.json", - "general_content/spacing_gap_2": "ui/realms_invite_link_settings_screen.json", - "general_content/activate_link_toggle": "ui/realms_invite_link_settings_screen.json", - "general_content/activate_link_description": "ui/realms_invite_link_settings_screen.json", - "general_content/spacing_gap_3": "ui/realms_invite_link_settings_screen.json", - "general_content/infinite_link_toggle": "ui/realms_invite_link_settings_screen.json", - "general_content/spacing_gap_4": "ui/realms_invite_link_settings_screen.json", - "general_content/share_link_title": "ui/realms_invite_link_settings_screen.json", - "general_content/share_link_description": "ui/realms_invite_link_settings_screen.json", - "general_content/spacing_gap_5": "ui/realms_invite_link_settings_screen.json", - "general_content/share_link_button": "ui/realms_invite_link_settings_screen.json", - "general_content/spacing_gap_6": "ui/realms_invite_link_settings_screen.json", - "general_content/remove_link_title": "ui/realms_invite_link_settings_screen.json", - "general_content/remove_invite_link_button": "ui/realms_invite_link_settings_screen.json", - "invite_link_expiration": "ui/realms_invite_link_settings_screen.json", - "advanced_content": "ui/realms_invite_link_settings_screen.json", - "advanced_content/spacing_gap_0": "ui/realms_invite_link_settings_screen.json", - "advanced_content/expiry_title": "ui/realms_invite_link_settings_screen.json", - "advanced_content/spacing_gap_1": "ui/realms_invite_link_settings_screen.json", - "advanced_content/expiration_description": "ui/realms_invite_link_settings_screen.json", - "advanced_content/spacing_gap_2": "ui/realms_invite_link_settings_screen.json", - "advanced_content/expiration_panel": "ui/realms_invite_link_settings_screen.json", - "advanced_content/expiration_panel/invite_link_expiration_wrapper": "ui/realms_invite_link_settings_screen.json", - "advanced_content/expiration_dropdown": "ui/realms_invite_link_settings_screen.json", - "expiration_dropdown_content": "ui/realms_invite_link_settings_screen.json", - "selector_panel": "ui/realms_invite_link_settings_screen.json", - "selector_panel/spacing_gap_0": "ui/realms_invite_link_settings_screen.json", - "selector_panel/general_button": "ui/realms_invite_link_settings_screen.json", - "selector_panel/advanced_button": "ui/realms_invite_link_settings_screen.json", - "section_content_panels": "ui/realms_invite_link_settings_screen.json", - "section_content_panels/general_section": "ui/realms_invite_link_settings_screen.json", - "section_content_panels/advanced_section": "ui/realms_invite_link_settings_screen.json", - }, - "realms_plus_ended": { - "subscription_ended_screen": "ui/realms_plus_ended_screen.json", - "subscription_ended_screen_content": "ui/realms_plus_ended_screen.json", - "subscription_ended_screen_content/root_panel": "ui/realms_plus_ended_screen.json", - "subscription_ended_screen_content/root_panel/gamepad_helpers": "ui/realms_plus_ended_screen.json", - "subscription_ended_screen_content/root_panel/main_panel": "ui/realms_plus_ended_screen.json", - "main_panel": "ui/realms_plus_ended_screen.json", - "main_panel/dialog": "ui/realms_plus_ended_screen.json", - "gamepad_helpers": "ui/realms_plus_ended_screen.json", - "gamepad_helpers/gamepad_helper_a": "ui/realms_plus_ended_screen.json", - "content_stack_panel": "ui/realms_plus_ended_screen.json", - "content_stack_panel/pad_0": "ui/realms_plus_ended_screen.json", - "content_stack_panel/main_content": "ui/realms_plus_ended_screen.json", - "content_stack_panel/pad_1": "ui/realms_plus_ended_screen.json", - "content_stack_panel/button_center_panel": "ui/realms_plus_ended_screen.json", - "content_stack_panel/button_center_panel/buttons": "ui/realms_plus_ended_screen.json", - "content_stack_panel/pad_2": "ui/realms_plus_ended_screen.json", - "main_content_panel": "ui/realms_plus_ended_screen.json", - "main_content_panel/main_content_stack_panel": "ui/realms_plus_ended_screen.json", - "main_content_panel/main_content_stack_panel/image_panel": "ui/realms_plus_ended_screen.json", - "main_content_panel/main_content_stack_panel/pad": "ui/realms_plus_ended_screen.json", - "main_content_panel/main_content_stack_panel/text_panel": "ui/realms_plus_ended_screen.json", - "main_content_panel/main_content_stack_panel/text_panel/text": "ui/realms_plus_ended_screen.json", - "buttons_panel": "ui/realms_plus_ended_screen.json", - "buttons_panel/more_info_button": "ui/realms_plus_ended_screen.json", - "buttons_panel/pad": "ui/realms_plus_ended_screen.json", - "buttons_panel/renew_subscription_button": "ui/realms_plus_ended_screen.json", - }, - "realmsPlus": { - "realms_plus_pdp_screen": "ui/realmsPlus_screen.json", - "realms_plus_upgrade_notice_screen": "ui/realmsPlus_screen.json", - "purple_background": "ui/realmsPlus_screen.json", - "purple_background/bottom_left_particles": "ui/realmsPlus_screen.json", - "purple_background/top_right_particles": "ui/realmsPlus_screen.json", - "main_background": "ui/realmsPlus_screen.json", - "main_background/dark_blue": "ui/realmsPlus_screen.json", - "main_background/grey_gradient": "ui/realmsPlus_screen.json", - "dark_blue_background": "ui/realmsPlus_screen.json", - "gradient_image_stack": "ui/realmsPlus_screen.json", - "gradient_image_stack/solid_pink": "ui/realmsPlus_screen.json", - "gradient_image_stack/gradient": "ui/realmsPlus_screen.json", - "gradient_content_panel": "ui/realmsPlus_screen.json", - "gradient_content_panel/gradient": "ui/realmsPlus_screen.json", - "gradient_content_panel/content_panel": "ui/realmsPlus_screen.json", - "realmsPlus_screen_main_panel": "ui/realmsPlus_screen.json", - "realmsPlus_main_panel": "ui/realmsPlus_screen.json", - "realmsPlus_main_panel/root_panel": "ui/realmsPlus_screen.json", - "realmsPlus_main_panel/root_panel/main_panel": "ui/realmsPlus_screen.json", - "realmsPlus_main_panel/popup_dialog_factory": "ui/realmsPlus_screen.json", - "dialog_content": "ui/realmsPlus_screen.json", - "dialog_content/selector_area": "ui/realmsPlus_screen.json", - "dialog_content/content_area": "ui/realmsPlus_screen.json", - "dialog_content/left_right_pane_divider": "ui/realmsPlus_screen.json", - "selector_area": "ui/realmsPlus_screen.json", - "selector_area/scrolling_panel": "ui/realmsPlus_screen.json", - "scrollable_selector_area_content": "ui/realmsPlus_screen.json", - "scrollable_selector_area_content/realmsPlus_toggle": "ui/realmsPlus_screen.json", - "scrollable_selector_area_content/content_toggle": "ui/realmsPlus_screen.json", - "scrollable_selector_area_content/faq_toggle": "ui/realmsPlus_screen.json", - "scrollable_selector_area_content/toggle_section_divider": "ui/realmsPlus_screen.json", - "scrollable_selector_area_content/buy_now_toggle": "ui/realmsPlus_screen.json", - "scrollable_selector_area_content/xbl_btn_panel": "ui/realmsPlus_screen.json", - "scrollable_selector_area_content/xbl_btn_panel/xbl_btn": "ui/realmsPlus_screen.json", - "scrollable_selector_area_content/focus_reset_input_panel": "ui/realmsPlus_screen.json", - "section_toggle_base": "ui/realmsPlus_screen.json", - "tab_button_text": "ui/realmsPlus_screen.json", - "toggle_base": "ui/realmsPlus_screen.json", - "toggle_base/toggle": "ui/realmsPlus_screen.json", - "toggle_base/padding": "ui/realmsPlus_screen.json", - "realmsPlus_toggle": "ui/realmsPlus_screen.json", - "content_toggle": "ui/realmsPlus_screen.json", - "faq_toggle": "ui/realmsPlus_screen.json", - "buy_now_toggle": "ui/realmsPlus_screen.json", - "left_right_pane_divider": "ui/realmsPlus_screen.json", - "content_area": "ui/realmsPlus_screen.json", - "content_area/control": "ui/realmsPlus_screen.json", - "content_area/control/scrolling_panel": "ui/realmsPlus_screen.json", - "section_content_panels": "ui/realmsPlus_screen.json", - "content_section_top_padding": "ui/realmsPlus_screen.json", - "section_base": "ui/realmsPlus_screen.json", - "buy_now_content_section": "ui/realmsPlus_screen.json", - "buy_now_content_section/content_section_top_padding": "ui/realmsPlus_screen.json", - "buy_now_content_section/content": "ui/realmsPlus_screen.json", - "markdown_background_animated": "ui/realmsPlus_screen.json", - "markdown_background_animated/realms_banner": "ui/realmsPlus_screen.json", - "markdown_background_animated/realms_plus_normal": "ui/realmsPlus_screen.json", - "markdown_background_animated/realms_plus_hover": "ui/realmsPlus_screen.json", - "markdown_background": "ui/realmsPlus_screen.json", - "markdown_background/banner_panel": "ui/realmsPlus_screen.json", - "markdown_background/banner_panel/banner": "ui/realmsPlus_screen.json", - "markdown_background/banner_panel/banner/banner_stack_panel": "ui/realmsPlus_screen.json", - "markdown_background/banner_panel/banner/banner_stack_panel/0": "ui/realmsPlus_screen.json", - "markdown_background/triangle_panel": "ui/realmsPlus_screen.json", - "markdown_background/triangle_panel/triangle": "ui/realmsPlus_screen.json", - "empty_label": "ui/realmsPlus_screen.json", - "full_width_section_divider": "ui/realmsPlus_screen.json", - }, - "realmsPlus_content": { - "realmsPlus_content_section": "ui/realmsPlus_sections/content_section.json", - "realmsPlus_content_section/content_section_top_padding": "ui/realmsPlus_sections/content_section.json", - "realmsPlus_content_section/content_sections": "ui/realmsPlus_sections/content_section.json", - "realmsPlus_content_section/content_section_bottom_padding": "ui/realmsPlus_sections/content_section.json", - "content_pack_types_section": "ui/realmsPlus_sections/content_section.json", - "content_pack_types_section/includes_marketplace_pass_wrapper": "ui/realmsPlus_sections/content_section.json", - "content_pack_types_section/padding_contentSub": "ui/realmsPlus_sections/content_section.json", - "content_pack_types_section/pack_types_wrapper": "ui/realmsPlus_sections/content_section.json", - "content_packs_included_section": "ui/realmsPlus_sections/content_section.json", - "content_packs_included_section/popular_packs": "ui/realmsPlus_sections/content_section.json", - "content_packs_included_section/section_divider": "ui/realmsPlus_sections/content_section.json", - "persona_row": "ui/realmsPlus_sections/content_section.json", - "persona_row/persona": "ui/realmsPlus_sections/content_section.json", - "worlds_row": "ui/realmsPlus_sections/content_section.json", - "pack_types": "ui/realmsPlus_sections/content_section.json", - "pack_types/middle_row": "ui/realmsPlus_sections/content_section.json", - "pack_types/middle_row/worlds_contentSub": "ui/realmsPlus_sections/content_section.json", - "pack_types/middle_row/textures": "ui/realmsPlus_sections/content_section.json", - "pack_types/bottom_row": "ui/realmsPlus_sections/content_section.json", - "pack_types/bottom_row/skins_persona_contentSub": "ui/realmsPlus_sections/content_section.json", - "pack_types/bottom_row/mashups": "ui/realmsPlus_sections/content_section.json", - "pack_types/bottom_contentSub": "ui/realmsPlus_sections/content_section.json", - "skins": "ui/realmsPlus_sections/content_section.json", - "friends_get_access": "ui/realmsPlus_sections/content_section.json", - "pack_type_row_panel": "ui/realmsPlus_sections/content_section.json", - "pack_type_description": "ui/realmsPlus_sections/content_section.json", - "pack_type_description/image_nesting_panel": "ui/realmsPlus_sections/content_section.json", - "pack_type_description/image_nesting_panel/texture": "ui/realmsPlus_sections/content_section.json", - "pack_type_description/padding_0": "ui/realmsPlus_sections/content_section.json", - "pack_type_description/description_nesting_panel": "ui/realmsPlus_sections/content_section.json", - "pack_type_description/description_nesting_panel/description_label": "ui/realmsPlus_sections/content_section.json", - "popular_packs": "ui/realmsPlus_sections/content_section.json", - "popular_packs/padding_0": "ui/realmsPlus_sections/content_section.json", - "popular_packs/pack_grid": "ui/realmsPlus_sections/content_section.json", - "popular_packs/view_all_packs_panel": "ui/realmsPlus_sections/content_section.json", - "popular_packs/view_all_packs_panel/view_all_packs_button": "ui/realmsPlus_sections/content_section.json", - "popular_packs/padding_1": "ui/realmsPlus_sections/content_section.json", - "popular_packs/view_character_creator_items_button": "ui/realmsPlus_sections/content_section.json", - "popular_packs/padding_2": "ui/realmsPlus_sections/content_section.json", - "popular_packs_label": "ui/realmsPlus_sections/content_section.json", - "includes_marketplace_pass": "ui/realmsPlus_sections/content_section.json", - "includes_marketplace_pass_label": "ui/realmsPlus_sections/content_section.json", - "packs_collection": "ui/realmsPlus_sections/content_section.json", - "packs_collection/row_1": "ui/realmsPlus_sections/content_section.json", - "packs_collection/row_1/pack_image_grid_item_0": "ui/realmsPlus_sections/content_section.json", - "packs_collection/row_1/padding": "ui/realmsPlus_sections/content_section.json", - "packs_collection/row_1/pack_image_grid_item_1": "ui/realmsPlus_sections/content_section.json", - "packs_collection/padding_1": "ui/realmsPlus_sections/content_section.json", - "packs_collection/row_2": "ui/realmsPlus_sections/content_section.json", - "packs_collection/row_2/pack_image_grid_item_0": "ui/realmsPlus_sections/content_section.json", - "packs_collection/row_2/padding": "ui/realmsPlus_sections/content_section.json", - "packs_collection/row_2/pack_image_grid_item_1": "ui/realmsPlus_sections/content_section.json", - "packs_collection/padding_2": "ui/realmsPlus_sections/content_section.json", - "pack_image_grid_item": "ui/realmsPlus_sections/content_section.json", - "pack_image_grid_item/bg": "ui/realmsPlus_sections/content_section.json", - "pack_image_grid_item/bg/featured_key_art": "ui/realmsPlus_sections/content_section.json", - "pack_image_grid_item/bg/progress_loading": "ui/realmsPlus_sections/content_section.json", - "pack_image_grid_item/offer_button": "ui/realmsPlus_sections/content_section.json", - "pack_image_grid_item/offer_button/default": "ui/realmsPlus_sections/content_section.json", - "pack_image_grid_item/offer_button/hover": "ui/realmsPlus_sections/content_section.json", - "pack_image_grid_item/offer_button/pressed": "ui/realmsPlus_sections/content_section.json", - }, - "realmsPlus_faq": { - "faq_image_section": "ui/realmsPlus_sections/faq_section.json", - "faq_image_local": "ui/realmsPlus_sections/faq_section.json", - "faq_image_type": "ui/realmsPlus_sections/faq_section.json", - "faq_image_type/0": "ui/realmsPlus_sections/faq_section.json", - "faq_text_section_body": "ui/realmsPlus_sections/faq_section.json", - "faq_text_question": "ui/realmsPlus_sections/faq_section.json", - "faq_text_section": "ui/realmsPlus_sections/faq_section.json", - "faq_text_section/faq_text_question": "ui/realmsPlus_sections/faq_section.json", - "faq_text_section/faq_text_answer": "ui/realmsPlus_sections/faq_section.json", - "faq_price_bound_text_section": "ui/realmsPlus_sections/faq_section.json", - "faq_price_bound_text_section/faq_text_question": "ui/realmsPlus_sections/faq_section.json", - "faq_price_bound_text_section/faq_text_answer": "ui/realmsPlus_sections/faq_section.json", - "faq_question_body": "ui/realmsPlus_sections/faq_section.json", - "faq_question_body/0": "ui/realmsPlus_sections/faq_section.json", - "faq_question_body_stack": "ui/realmsPlus_sections/faq_section.json", - "faq_question_body_horz_padding": "ui/realmsPlus_sections/faq_section.json", - "image_left_faq_question_body": "ui/realmsPlus_sections/faq_section.json", - "image_right_faq_question_body": "ui/realmsPlus_sections/faq_section.json", - "image_left_faq_question_body_flip": "ui/realmsPlus_sections/faq_section.json", - "image_left_faq_question_body_flip/faq_question_left": "ui/realmsPlus_sections/faq_section.json", - "image_right_faq_question_body_flip": "ui/realmsPlus_sections/faq_section.json", - "image_right_faq_question_body_flip/faq_question_right": "ui/realmsPlus_sections/faq_section.json", - "image_left_faq_price_bound": "ui/realmsPlus_sections/faq_section.json", - "faq_section_header_space": "ui/realmsPlus_sections/faq_section.json", - "faq_section_divider": "ui/realmsPlus_sections/faq_section.json", - "faq_content_section": "ui/realmsPlus_sections/faq_section.json", - "faq_content_section/content_section_top_padding_1": "ui/realmsPlus_sections/faq_section.json", - "faq_content_section/faq_header": "ui/realmsPlus_sections/faq_section.json", - "faq_content_section/content_section_top_padding_2": "ui/realmsPlus_sections/faq_section.json", - "faq_content_section/faq_question_1": "ui/realmsPlus_sections/faq_section.json", - "faq_content_section/faq_question_1_divider": "ui/realmsPlus_sections/faq_section.json", - "faq_content_section/faq_question_2": "ui/realmsPlus_sections/faq_section.json", - "faq_content_section/faq_question_2_divider": "ui/realmsPlus_sections/faq_section.json", - "faq_content_section/faq_question_3": "ui/realmsPlus_sections/faq_section.json", - "faq_content_section/faq_question_3_divider": "ui/realmsPlus_sections/faq_section.json", - "faq_content_section/faq_question_4": "ui/realmsPlus_sections/faq_section.json", - "faq_content_section/faq_question_4_divider": "ui/realmsPlus_sections/faq_section.json", - "faq_content_section/faq_question_5": "ui/realmsPlus_sections/faq_section.json", - "faq_content_section/faq_question_5_divider": "ui/realmsPlus_sections/faq_section.json", - "faq_content_section/faq_question_6": "ui/realmsPlus_sections/faq_section.json", - "faq_content_section/faq_question_6_divider": "ui/realmsPlus_sections/faq_section.json", - "faq_content_section/faq_question_7": "ui/realmsPlus_sections/faq_section.json", - "faq_content_section/faq_question_7_divider": "ui/realmsPlus_sections/faq_section.json", - "faq_content_section/faq_question_8": "ui/realmsPlus_sections/faq_section.json", - "faq_content_section/faq_question_8_divider": "ui/realmsPlus_sections/faq_section.json", - "faq_content_section/faq_question_9": "ui/realmsPlus_sections/faq_section.json", - "faq_content_section/faq_question_9_divider": "ui/realmsPlus_sections/faq_section.json", - "faq_content_section/faq_question_10": "ui/realmsPlus_sections/faq_section.json", - "faq_content_section/faq_question_10_divider": "ui/realmsPlus_sections/faq_section.json", - "faq_content_section/faq_question_11": "ui/realmsPlus_sections/faq_section.json", - "faq_content_section/content_section_top_padding_3": "ui/realmsPlus_sections/faq_section.json", - }, - "realmsPlus_landing": { - "landing_content_section": "ui/realmsPlus_sections/landing_section.json", - "landing_content_section/landing_content": "ui/realmsPlus_sections/landing_section.json", - "landing_content_section/landing_content/title_stack": "ui/realmsPlus_sections/landing_section.json", - "landing_content_section/landing_content/vertical_small_spacer_0": "ui/realmsPlus_sections/landing_section.json", - "landing_content_section/landing_content/divider_panel": "ui/realmsPlus_sections/landing_section.json", - "landing_content_section/landing_content/divider_panel/section_divider": "ui/realmsPlus_sections/landing_section.json", - "landing_content_section/landing_content/vertical_small_spacer_1": "ui/realmsPlus_sections/landing_section.json", - "landing_content_section/landing_content/info_stack": "ui/realmsPlus_sections/landing_section.json", - "landing_content_section/landing_content/vertical_small_spacer_2": "ui/realmsPlus_sections/landing_section.json", - "horizontal_small_spacer": "ui/realmsPlus_sections/landing_section.json", - "vertical_small_spacer": "ui/realmsPlus_sections/landing_section.json", - "vertical_med_spacer": "ui/realmsPlus_sections/landing_section.json", - "vertical_large_spacer": "ui/realmsPlus_sections/landing_section.json", - "title_stack": "ui/realmsPlus_sections/landing_section.json", - "title_stack/title_image_panel": "ui/realmsPlus_sections/landing_section.json", - "title_stack/gradient_panel": "ui/realmsPlus_sections/landing_section.json", - "title_stack/gradient_panel/label_with_gradient_wrapper": "ui/realmsPlus_sections/landing_section.json", - "title_stack/vertical_space": "ui/realmsPlus_sections/landing_section.json", - "title_stack/action_button": "ui/realmsPlus_sections/landing_section.json", - "title_stack/sign_in_button": "ui/realmsPlus_sections/landing_section.json", - "title_stack/vertical_space2": "ui/realmsPlus_sections/landing_section.json", - "label_with_gradient": "ui/realmsPlus_sections/landing_section.json", - "free_trial_text": "ui/realmsPlus_sections/landing_section.json", - "title_image_panel": "ui/realmsPlus_sections/landing_section.json", - "title_image_panel/title_image_container": "ui/realmsPlus_sections/landing_section.json", - "title_image_panel/title_image_container/title_image": "ui/realmsPlus_sections/landing_section.json", - "title_image_panel/title_image_container/title_art_image": "ui/realmsPlus_sections/landing_section.json", - "title_image_panel/title_image_pre_release_container": "ui/realmsPlus_sections/landing_section.json", - "title_image_panel/title_image_pre_release_container/title_image_pre_release": "ui/realmsPlus_sections/landing_section.json", - "info_stack": "ui/realmsPlus_sections/landing_section.json", - "info_stack/info_stack": "ui/realmsPlus_sections/landing_section.json", - "info_stack/info_stack/info_description_stack_retail": "ui/realmsPlus_sections/landing_section.json", - "info_stack/info_stack/info_description_stack_preview": "ui/realmsPlus_sections/landing_section.json", - "info_description_stack_retail": "ui/realmsPlus_sections/landing_section.json", - "info_description_stack_retail/info_section_stack_1": "ui/realmsPlus_sections/landing_section.json", - "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer": "ui/realmsPlus_sections/landing_section.json", - "info_description_stack_retail/info_section_stack_1/info_section_text_1_wrapper": "ui/realmsPlus_sections/landing_section.json", - "info_description_stack_retail/vertical_med_spacer0": "ui/realmsPlus_sections/landing_section.json", - "info_description_stack_retail/divider_centering_panel": "ui/realmsPlus_sections/landing_section.json", - "info_description_stack_retail/divider_centering_panel/divider": "ui/realmsPlus_sections/landing_section.json", - "info_description_stack_retail/vertical_med_spacer1": "ui/realmsPlus_sections/landing_section.json", - "info_description_stack_retail/info_section_stack_recently_added": "ui/realmsPlus_sections/landing_section.json", - "info_description_stack_retail/info_section_stack_recently_added/horizontal_small_spacer": "ui/realmsPlus_sections/landing_section.json", - "info_description_stack_retail/info_section_stack_recently_added/info_section_text_recently_added_wrapper": "ui/realmsPlus_sections/landing_section.json", - "info_description_stack_retail/vertical_med_spacer2": "ui/realmsPlus_sections/landing_section.json", - "info_description_stack_retail/divider_centering_panel2": "ui/realmsPlus_sections/landing_section.json", - "info_description_stack_retail/divider_centering_panel2/divider2": "ui/realmsPlus_sections/landing_section.json", - "info_description_stack_retail/vertical_med_spacer3": "ui/realmsPlus_sections/landing_section.json", - "info_description_stack_retail/info_section_stack_2": "ui/realmsPlus_sections/landing_section.json", - "info_description_stack_retail/info_section_stack_2/horizontal_small_spacer": "ui/realmsPlus_sections/landing_section.json", - "info_description_stack_retail/info_section_stack_2/info_section_text_2_wrapper": "ui/realmsPlus_sections/landing_section.json", - "info_description_stack_prerelease": "ui/realmsPlus_sections/landing_section.json", - "info_description_stack_prerelease/info_section_stack": "ui/realmsPlus_sections/landing_section.json", - "info_description_stack_prerelease/info_section_stack/horizontal_large_spacer": "ui/realmsPlus_sections/landing_section.json", - "info_description_stack_prerelease/info_section_stack/info_section_text_3_wrapper": "ui/realmsPlus_sections/landing_section.json", - "info_section_stack": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_1": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_1/info_text_bullet_1": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_1/vertical_small_spacer_0": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_1/info_text_bullet_2": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_1/vertical_small_spacer_1": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_1/info_text_bullet_3": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_recently_added": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_recently_added/recently_added_header": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_recently_added/info_text_bullet_contentSub": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_recently_added/info_text_bullet_contentSub/vertical_small_spacer_0": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_recently_added/info_text_bullet_contentSub/info_text_bullet_0": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_recently_added/vertical_small_spacer_1": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_recently_added/info_text_bullet_1": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_recently_added/vertical_small_spacer_2": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_recently_added/info_text_bullet_2": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_2": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_2/info_text_bullet_2": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_2/vertical_small_spacer_0": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_2/info_text_bullet_3": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_2/vertical_small_spacer_1": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_2/info_text_bullet_4": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_2/info_text_bullet_notFreeTrial": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_2/info_text_bullet_notFreeTrial/vertical_small_spacer": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_2/info_text_bullet_notFreeTrial/info_text_bullet_4": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_3": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_3/info_text_unbulletted_1": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_3/vertical_large_spacer_0": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_3/info_text_unbulletted_2": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_3/vertical_large_spacer_1": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_3/info_text_unbulletted_3": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_3/vertical_large_spacer_2": "ui/realmsPlus_sections/landing_section.json", - "info_section_text_3/info_text_unbulletted_4": "ui/realmsPlus_sections/landing_section.json", - "info_section_text": "ui/realmsPlus_sections/landing_section.json", - "info_text_bullet": "ui/realmsPlus_sections/landing_section.json", - "info_text_bullet/info_text_bullet_bullet": "ui/realmsPlus_sections/landing_section.json", - "info_text_bullet/info_text_bullet_body": "ui/realmsPlus_sections/landing_section.json", - "info_text_unbulletted": "ui/realmsPlus_sections/landing_section.json", - "info_text_unbulletted/info_text_bullet_body": "ui/realmsPlus_sections/landing_section.json", - }, - "realmsPlus_buy": { - "buy_now_content": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "buy_now_content/description_stack": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "buy_now_content/realm_name": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "buy_now_content/terms_and_conditions": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "buy_now_content/padding_2": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "buy_now_content/buy_button": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "buy_now_content/padding_3": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "buy_now_content/platform_terms_factory": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "content_text_section": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "content_text_section/text_description_wrapper": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "content_text_section/padding": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "content_description": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "content_description/content_description_label": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "trial_image_and_description": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "trial_image_and_description/realms_image": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "trial_image_and_description/padding": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "trial_image_and_description/description_text_wrapper": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "description_text": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "title_text": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "title_with_gradient": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "description_stack": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "description_stack/title_with_gradient_wrapper": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "description_stack/padding": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "description_stack/image_and_description": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "realm_name_stack": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "realm_name_stack/realm_name_label": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "realm_name_stack/padding_0": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "realm_name_stack/realm_name_text_box": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "terms_and_conditions": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "terms_and_conditions/terms_panel": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "terms_and_conditions_panel": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "terms_and_conditions_panel/name_label": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "terms_and_conditions_panel/terms_string_panel": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "terms_and_conditions_panel/terms_string_panel/banner_fill": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "button_text": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "view_terms_button": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "privacy_policy_button": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "buy_button_panel": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "buy_button_panel/buy_button": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "buy_button_content": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "buy_button_content/button_chevron_panel": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "buy_button_content/button_chevron_panel/buy_button_chevron": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "buy_button_content/button_text": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - }, - "realmsPlus_packs": { - "view_all_packs_screen": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", - "view_packs_screen_content": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", - "view_packs_screen_content/main_panel": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", - "realmsPlus_view_packs_screen_main_panel": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", - "main_panel": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", - "main_panel/offers": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", - "main_panel/progress_loading": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", - "scrolling_content_stack": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", - "scrolling_content_stack/padding_0": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", - "scrolling_content_stack/store_factory": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", - }, - "realmsPlus_purchase_warning": { - "realmsPlus_purchase_warning_screen": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", - "purchase_warning_screen_content": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", - "purchase_warning_screen_content/main_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", - "warning_modal_main_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", - "warning_modal_main_panel/art_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", - "warning_modal_main_panel/art_panel/art": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", - "warning_modal_main_panel/padding": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", - "warning_modal_main_panel/text_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", - "warning_modal_main_panel/text_panel/description_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", - "warning_modal_main_panel/text_panel/description_panel/description_text": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", - "warning_modal_main_panel/text_panel/padding": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", - "warning_modal_main_panel/text_panel/checkbox_with_label_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", - "warning_modal_main_panel/text_panel/checkbox_with_label_panel/checkbox_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", - "warning_modal_main_panel/text_panel/checkbox_with_label_panel/padding": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", - "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", - "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel/label_text": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", - "warning_modal_button_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", - "warning_modal_button_panel/back_button": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", - "warning_modal_button_panel/padding": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", - "warning_modal_button_panel/continue_button": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", - }, - "realms_stories_transition": { - "realms_stories_transition_screen": "ui/realms_stories_transition_screen.json", - }, - "redstone": { - "item_dropper_label": "ui/redstone_screen.json", - "dispenser_label": "ui/redstone_screen.json", - "crafter_label": "ui/redstone_screen.json", - "dropper_label": "ui/redstone_screen.json", - "hopper_label": "ui/redstone_screen.json", - "redstone_input_grid": "ui/redstone_screen.json", - "redstone_panel_top_half": "ui/redstone_screen.json", - "redstone_panel_top_half/redstone_input_grid": "ui/redstone_screen.json", - "panel": "ui/redstone_screen.json", - "panel/container_gamepad_helpers": "ui/redstone_screen.json", - "panel/selected_item_details_factory": "ui/redstone_screen.json", - "panel/item_lock_notification_factory": "ui/redstone_screen.json", - "panel/root_panel": "ui/redstone_screen.json", - "panel/root_panel/common_panel": "ui/redstone_screen.json", - "panel/root_panel/redstone_screen_inventory": "ui/redstone_screen.json", - "panel/root_panel/redstone_screen_inventory/red_panel": "ui/redstone_screen.json", - "panel/root_panel/redstone_screen_inventory/red_bottom_half": "ui/redstone_screen.json", - "panel/root_panel/redstone_screen_inventory/hotbar_grid": "ui/redstone_screen.json", - "panel/root_panel/redstone_screen_inventory/red_hold_icon": "ui/redstone_screen.json", - "panel/root_panel/red_icon": "ui/redstone_screen.json", - "panel/root_panel/gamepad_cursor": "ui/redstone_screen.json", - "panel/flying_item_renderer": "ui/redstone_screen.json", - "crafter_input_grid": "ui/redstone_screen.json", - "cell_image": "ui/redstone_screen.json", - "crafter_highlight_slot": "ui/redstone_screen.json", - "crafter_container_slot_button_prototype": "ui/redstone_screen.json", - "crafter_highlight_slot_panel": "ui/redstone_screen.json", - "crafter_highlight_slot_panel/highlight": "ui/redstone_screen.json", - "crafter_highlight_slot_panel/highlight/hover_text": "ui/redstone_screen.json", - "crafter_highlight_slot_panel/white_border": "ui/redstone_screen.json", - "crafter_enabled_slot_template": "ui/redstone_screen.json", - "crafter_disabled_slot": "ui/redstone_screen.json", - "crafter_disabled_slot/default": "ui/redstone_screen.json", - "crafter_disabled_slot/hover": "ui/redstone_screen.json", - "crafter_disabled_slot/pressed": "ui/redstone_screen.json", - "output_slot_hover_info": "ui/redstone_screen.json", - "output_slot_hover_info/hover": "ui/redstone_screen.json", - "output_slot_hover_info/output_slot": "ui/redstone_screen.json", - "output_slot_hover_info/output_slot_border": "ui/redstone_screen.json", - "output_slot_hover_info/output_count": "ui/redstone_screen.json", - "panel_crafter": "ui/redstone_screen.json", - "panel_crafter/container_gamepad_helpers": "ui/redstone_screen.json", - "panel_crafter/selected_item_details_factory": "ui/redstone_screen.json", - "panel_crafter/item_lock_notification_factory": "ui/redstone_screen.json", - "panel_crafter/root_panel": "ui/redstone_screen.json", - "panel_crafter/root_panel/common_panel": "ui/redstone_screen.json", - "panel_crafter/root_panel/disabled_slot_0_button": "ui/redstone_screen.json", - "panel_crafter/root_panel/disabled_slot_1_button": "ui/redstone_screen.json", - "panel_crafter/root_panel/disabled_slot_2_button": "ui/redstone_screen.json", - "panel_crafter/root_panel/disabled_slot_3_button": "ui/redstone_screen.json", - "panel_crafter/root_panel/disabled_slot_4_button": "ui/redstone_screen.json", - "panel_crafter/root_panel/disabled_slot_5_button": "ui/redstone_screen.json", - "panel_crafter/root_panel/disabled_slot_6_button": "ui/redstone_screen.json", - "panel_crafter/root_panel/disabled_slot_7_button": "ui/redstone_screen.json", - "panel_crafter/root_panel/disabled_slot_8_button": "ui/redstone_screen.json", - "panel_crafter/root_panel/redstone_screen_inventory": "ui/redstone_screen.json", - "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid": "ui/redstone_screen.json", - "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid": "ui/redstone_screen.json", - "panel_crafter/root_panel/redstone_screen_inventory/red_bottom_half": "ui/redstone_screen.json", - "panel_crafter/root_panel/redstone_screen_inventory/hotbar_grid": "ui/redstone_screen.json", - "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon": "ui/redstone_screen.json", - "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line": "ui/redstone_screen.json", - "panel_crafter/root_panel/redstone_screen_inventory/crafter_output": "ui/redstone_screen.json", - "panel_crafter/root_panel/red_icon": "ui/redstone_screen.json", - "panel_crafter/root_panel/gamepad_cursor": "ui/redstone_screen.json", - "panel_crafter/flying_item_renderer": "ui/redstone_screen.json", - "hopper_screen": "ui/redstone_screen.json", - "dispenser_screen": "ui/redstone_screen.json", - "crafter_screen": "ui/redstone_screen.json", - "dropper_screen": "ui/redstone_screen.json", - }, - "resource_packs": { - "black_image": "ui/resource_packs_screen.json", - "gray_image": "ui/resource_packs_screen.json", - "yellow_image": "ui/resource_packs_screen.json", - "white_image": "ui/resource_packs_screen.json", - "white_image/border": "ui/resource_packs_screen.json", - "icon_image": "ui/resource_packs_screen.json", - "resource_packs_toggle_button_control": "ui/resource_packs_screen.json", - "resource_packs_toggle_button_control/icon_border": "ui/resource_packs_screen.json", - "resource_packs_toggle_button_control/cycling_icon": "ui/resource_packs_screen.json", - "resource_packs_toggle_button_control/tab_button_text": "ui/resource_packs_screen.json", - "resource_packs_section_toggle_base": "ui/resource_packs_screen.json", - "selected_icon_image": "ui/resource_packs_screen.json", - "available_icon_image": "ui/resource_packs_screen.json", - "realms_icon_image": "ui/resource_packs_screen.json", - "unowned_icon_image": "ui/resource_packs_screen.json", - "invalid_icon_image": "ui/resource_packs_screen.json", - "minus_image": "ui/resource_packs_screen.json", - "plus_image": "ui/resource_packs_screen.json", - "minus_text": "ui/resource_packs_screen.json", - "plus_text": "ui/resource_packs_screen.json", - "store_text": "ui/resource_packs_screen.json", - "error_image": "ui/resource_packs_screen.json", - "error_image_hover": "ui/resource_packs_screen.json", - "error_image_panel": "ui/resource_packs_screen.json", - "error_image_panel/default": "ui/resource_packs_screen.json", - "error_image_panel/hover": "ui/resource_packs_screen.json", - "warning_image": "ui/resource_packs_screen.json", - "warning_image_hover": "ui/resource_packs_screen.json", - "warning_panel": "ui/resource_packs_screen.json", - "warning_panel/default": "ui/resource_packs_screen.json", - "warning_panel/hover": "ui/resource_packs_screen.json", - "no_error_image": "ui/resource_packs_screen.json", - "no_error_image_hover": "ui/resource_packs_screen.json", - "no_error_panel": "ui/resource_packs_screen.json", - "no_error_panel/default": "ui/resource_packs_screen.json", - "no_error_panel/hover": "ui/resource_packs_screen.json", - "up_arrow_image": "ui/resource_packs_screen.json", - "down_arrow_image": "ui/resource_packs_screen.json", - "up_arrow_image_hover": "ui/resource_packs_screen.json", - "down_arrow_image_hover": "ui/resource_packs_screen.json", - "up_arrow_panel": "ui/resource_packs_screen.json", - "up_arrow_panel/default": "ui/resource_packs_screen.json", - "up_arrow_panel/hover": "ui/resource_packs_screen.json", - "up_arrow_wrapper": "ui/resource_packs_screen.json", - "up_arrow_wrapper/down_arrow": "ui/resource_packs_screen.json", - "up_arrow_wrapper/divider_right": "ui/resource_packs_screen.json", - "down_arrow_panel": "ui/resource_packs_screen.json", - "down_arrow_panel/default": "ui/resource_packs_screen.json", - "down_arrow_panel/hover": "ui/resource_packs_screen.json", - "down_arrow_wrapper": "ui/resource_packs_screen.json", - "down_arrow_wrapper/down_arrow": "ui/resource_packs_screen.json", - "down_arrow_wrapper/divider_right": "ui/resource_packs_screen.json", - "progress_loading_bars": "ui/resource_packs_screen.json", - "warning_image_wrapper": "ui/resource_packs_screen.json", - "warning_image_wrapper/error_image": "ui/resource_packs_screen.json", - "warning_image_wrapper/warning_image": "ui/resource_packs_screen.json", - "warning_image_wrapper/no_error_panel": "ui/resource_packs_screen.json", - "warning_image_wrapper/progress_loading_bars": "ui/resource_packs_screen.json", - "tooltip_image_wrapper": "ui/resource_packs_screen.json", - "tooltip_image_wrapper/error_image": "ui/resource_packs_screen.json", - "tooltip_image_wrapper/warning_image": "ui/resource_packs_screen.json", - "options_image": "ui/resource_packs_screen.json", - "options_image_hover": "ui/resource_packs_screen.json", - "options_image_panel": "ui/resource_packs_screen.json", - "options_image_panel/default": "ui/resource_packs_screen.json", - "options_image_panel/hover": "ui/resource_packs_screen.json", - "options_image_panel/hover/image": "ui/resource_packs_screen.json", - "options_image_panel/hover/border": "ui/resource_packs_screen.json", - "options_wrapper": "ui/resource_packs_screen.json", - "options_wrapper/options": "ui/resource_packs_screen.json", - "options_wrapper/divider_right": "ui/resource_packs_screen.json", - "common_pack_button": "ui/resource_packs_screen.json", - "available_text_panel": "ui/resource_packs_screen.json", - "available_text_panel/name_panel": "ui/resource_packs_screen.json", - "available_text_panel/name_panel/available_pack_name_label": "ui/resource_packs_screen.json", - "available_text_panel/name_panel/available_file_size_label": "ui/resource_packs_screen.json", - "available_text_panel/full_panel": "ui/resource_packs_screen.json", - "available_text_panel/full_panel/description_panel": "ui/resource_packs_screen.json", - "available_text_panel/full_panel/description_panel/available_pack_description_label": "ui/resource_packs_screen.json", - "realms_text_panel": "ui/resource_packs_screen.json", - "realms_text_panel/name_panel": "ui/resource_packs_screen.json", - "realms_text_panel/name_panel/realms_pack_name_label": "ui/resource_packs_screen.json", - "realms_text_panel/name_panel/realms_file_size_label": "ui/resource_packs_screen.json", - "realms_text_panel/description_panel": "ui/resource_packs_screen.json", - "realms_text_panel/description_panel/realms_pack_description_label": "ui/resource_packs_screen.json", - "unowned_text_panel": "ui/resource_packs_screen.json", - "unowned_text_panel/name_panel": "ui/resource_packs_screen.json", - "unowned_text_panel/name_panel/unowned_pack_name_label": "ui/resource_packs_screen.json", - "unowned_text_panel/name_panel/unowned_file_size_label": "ui/resource_packs_screen.json", - "unowned_text_panel/description_panel": "ui/resource_packs_screen.json", - "unowned_text_panel/description_panel/unowned_pack_description_label": "ui/resource_packs_screen.json", - "selected_text_panel": "ui/resource_packs_screen.json", - "selected_text_panel/name_panel": "ui/resource_packs_screen.json", - "selected_text_panel/name_panel/selected_pack_name_label": "ui/resource_packs_screen.json", - "selected_text_panel/name_panel/selected_file_size_label": "ui/resource_packs_screen.json", - "selected_text_panel/name_panel/active_dot_panel": "ui/resource_packs_screen.json", - "selected_text_panel/name_panel/active_dot_panel/active_dot": "ui/resource_packs_screen.json", - "selected_text_panel/full_panel": "ui/resource_packs_screen.json", - "selected_text_panel/full_panel/warning_line": "ui/resource_packs_screen.json", - "selected_text_panel/full_panel/warning_line/warning_text": "ui/resource_packs_screen.json", - "selected_text_panel/full_panel/warning_line/warning_number": "ui/resource_packs_screen.json", - "selected_text_panel/full_panel/error_line": "ui/resource_packs_screen.json", - "selected_text_panel/full_panel/error_line/error_text": "ui/resource_packs_screen.json", - "selected_text_panel/full_panel/error_line/error_number": "ui/resource_packs_screen.json", - "selected_text_panel/full_panel/expired_line": "ui/resource_packs_screen.json", - "selected_text_panel/full_panel/expired_line/expired_text": "ui/resource_packs_screen.json", - "selected_text_panel/full_panel/description_panel": "ui/resource_packs_screen.json", - "selected_text_panel/full_panel/description_panel/selected_pack_description_label": "ui/resource_packs_screen.json", - "invalid_text_panel": "ui/resource_packs_screen.json", - "invalid_text_panel/full_panel": "ui/resource_packs_screen.json", - "invalid_text_panel/full_panel/error_line": "ui/resource_packs_screen.json", - "invalid_text_panel/full_panel/error_line/error_text": "ui/resource_packs_screen.json", - "invalid_text_panel/full_panel/error_line/error_number": "ui/resource_packs_screen.json", - "available_pack_button_layout": "ui/resource_packs_screen.json", - "available_pack_button_layout/available_icon_image": "ui/resource_packs_screen.json", - "available_pack_button_layout/text_panel_small": "ui/resource_packs_screen.json", - "available_pack_button_layout/text_panel_full": "ui/resource_packs_screen.json", - "available_pack_button_layout/read_more_button_panel": "ui/resource_packs_screen.json", - "available_pack_button_layout/read_less_button_panel": "ui/resource_packs_screen.json", - "available_pack_button_layout_hover": "ui/resource_packs_screen.json", - "available_pack_button_layout_hover/hover_small": "ui/resource_packs_screen.json", - "available_pack_button_layout_hover/available_icon_image": "ui/resource_packs_screen.json", - "available_pack_button_layout_hover/text_panel_small": "ui/resource_packs_screen.json", - "available_pack_button_layout_hover/text_panel_full_hover": "ui/resource_packs_screen.json", - "available_pack_button_layout_hover/text_panel_full_hover/text_panel_full": "ui/resource_packs_screen.json", - "available_pack_button_layout_hover/read_more_button_panel": "ui/resource_packs_screen.json", - "available_pack_button_layout_hover/read_less_button_panel": "ui/resource_packs_screen.json", - "available_pack_button": "ui/resource_packs_screen.json", - "available_pack_button/default": "ui/resource_packs_screen.json", - "available_pack_button/pressed": "ui/resource_packs_screen.json", - "available_pack_button/hover": "ui/resource_packs_screen.json", - "realms_pack_button_layout": "ui/resource_packs_screen.json", - "realms_pack_button_layout/realms_icon_image": "ui/resource_packs_screen.json", - "realms_pack_button_layout/text_panel_small": "ui/resource_packs_screen.json", - "realms_pack_button_layout/text_panel_full": "ui/resource_packs_screen.json", - "realms_pack_button_layout/read_more_button_panel": "ui/resource_packs_screen.json", - "realms_pack_button_layout/read_less_button_panel": "ui/resource_packs_screen.json", - "realms_pack_button_layout_hover": "ui/resource_packs_screen.json", - "realms_pack_button_layout_hover/hover_small": "ui/resource_packs_screen.json", - "realms_pack_button_layout_hover/realms_icon_image": "ui/resource_packs_screen.json", - "realms_pack_button_layout_hover/text_panel_small": "ui/resource_packs_screen.json", - "realms_pack_button_layout_hover/text_panel_full_hover": "ui/resource_packs_screen.json", - "realms_pack_button_layout_hover/text_panel_full_hover/text_panel_full": "ui/resource_packs_screen.json", - "realms_pack_button_layout_hover/read_more_button_panel": "ui/resource_packs_screen.json", - "realms_pack_button_layout_hover/read_less_button_panel": "ui/resource_packs_screen.json", - "realms_pack_button": "ui/resource_packs_screen.json", - "realms_pack_button/default": "ui/resource_packs_screen.json", - "realms_pack_button/pressed": "ui/resource_packs_screen.json", - "realms_pack_button/hover": "ui/resource_packs_screen.json", - "unowned_pack_button_layout": "ui/resource_packs_screen.json", - "unowned_pack_button_layout/unowned_icon_image": "ui/resource_packs_screen.json", - "unowned_pack_button_layout/text_panel_small": "ui/resource_packs_screen.json", - "unowned_pack_button_layout/text_panel_full": "ui/resource_packs_screen.json", - "unowned_pack_button_layout/read_more_button_panel": "ui/resource_packs_screen.json", - "unowned_pack_button_layout/read_less_button_panel": "ui/resource_packs_screen.json", - "unowned_pack_button_layout_hover": "ui/resource_packs_screen.json", - "unowned_pack_button_layout_hover/hover_small": "ui/resource_packs_screen.json", - "unowned_pack_button_layout_hover/unowned_icon_image": "ui/resource_packs_screen.json", - "unowned_pack_button_layout_hover/text_panel_small": "ui/resource_packs_screen.json", - "unowned_pack_button_layout_hover/text_panel_full_hover": "ui/resource_packs_screen.json", - "unowned_pack_button_layout_hover/text_panel_full_hover/text_panel_full": "ui/resource_packs_screen.json", - "unowned_pack_button_layout_hover/read_more_button_panel": "ui/resource_packs_screen.json", - "unowned_pack_button_layout_hover/read_less_button_panel": "ui/resource_packs_screen.json", - "unowned_pack_button": "ui/resource_packs_screen.json", - "unowned_pack_button/default": "ui/resource_packs_screen.json", - "unowned_pack_button/pressed": "ui/resource_packs_screen.json", - "unowned_pack_button/hover": "ui/resource_packs_screen.json", - "invalid_pack_button_layout": "ui/resource_packs_screen.json", - "invalid_pack_button_layout/invalid_icon_image": "ui/resource_packs_screen.json", - "invalid_pack_button_layout/text_panel": "ui/resource_packs_screen.json", - "invalid_pack_button_layout_hover": "ui/resource_packs_screen.json", - "invalid_pack_button_layout_hover/hover_small": "ui/resource_packs_screen.json", - "invalid_pack_button_layout_hover/invalid_icon_image": "ui/resource_packs_screen.json", - "invalid_pack_button_layout_hover/text_panel_full_hover": "ui/resource_packs_screen.json", - "invalid_pack_button_layout_hover/text_panel_full_hover/text_panel": "ui/resource_packs_screen.json", - "invalid_pack_button": "ui/resource_packs_screen.json", - "invalid_pack_button/default": "ui/resource_packs_screen.json", - "invalid_pack_button/pressed": "ui/resource_packs_screen.json", - "invalid_pack_button/hover": "ui/resource_packs_screen.json", - "empty_resource_pack_button": "ui/resource_packs_screen.json", - "resource_pack_button_padding": "ui/resource_packs_screen.json", - "input_button_panel": "ui/resource_packs_screen.json", - "input_button_panel/border_image": "ui/resource_packs_screen.json", - "input_button_panel/border_image/button_panel": "ui/resource_packs_screen.json", - "input_button_panel/border_image/button_panel/padding_0": "ui/resource_packs_screen.json", - "input_button_panel/border_image/button_panel/padding_1": "ui/resource_packs_screen.json", - "input_button_panel/border_image/button_panel/padding_2": "ui/resource_packs_screen.json", - "input_button_panel/border_image/button_panel/padding_3": "ui/resource_packs_screen.json", - "input_button_panel/border_image/button_panel/padding_4": "ui/resource_packs_screen.json", - "input_button_panel/background": "ui/resource_packs_screen.json", - "selected_pack_button_layout": "ui/resource_packs_screen.json", - "selected_pack_button_layout/selected_icon_image": "ui/resource_packs_screen.json", - "selected_pack_button_layout/text_panel_small": "ui/resource_packs_screen.json", - "selected_pack_button_layout/text_panel_full": "ui/resource_packs_screen.json", - "selected_pack_button_layout/read_more_button_panel": "ui/resource_packs_screen.json", - "selected_pack_button_layout/read_less_button_panel": "ui/resource_packs_screen.json", - "selected_pack_button_layout_hover": "ui/resource_packs_screen.json", - "selected_pack_button_layout_hover/hover_small": "ui/resource_packs_screen.json", - "selected_pack_button_layout_hover/selected_icon_image": "ui/resource_packs_screen.json", - "selected_pack_button_layout_hover/text_panel_small": "ui/resource_packs_screen.json", - "selected_pack_button_layout_hover/text_panel_full_hover": "ui/resource_packs_screen.json", - "selected_pack_button_layout_hover/text_panel_full_hover/text_panel_full": "ui/resource_packs_screen.json", - "selected_pack_button_layout_hover/read_more_button_panel": "ui/resource_packs_screen.json", - "selected_pack_button_layout_hover/read_less_button_panel": "ui/resource_packs_screen.json", - "selected_pack_button": "ui/resource_packs_screen.json", - "selected_pack_button/default": "ui/resource_packs_screen.json", - "selected_pack_button/pressed": "ui/resource_packs_screen.json", - "selected_pack_button/hover": "ui/resource_packs_screen.json", - "selected_pack_movement_button": "ui/resource_packs_screen.json", - "selected_pack_transparent_movement_button": "ui/resource_packs_screen.json", - "selected_pack_minus_button": "ui/resource_packs_screen.json", - "selected_pack_plus_button": "ui/resource_packs_screen.json", - "selected_pack_store_button": "ui/resource_packs_screen.json", - "selected_pack_store_button_fill": "ui/resource_packs_screen.json", - "selected_pack_up_button": "ui/resource_packs_screen.json", - "selected_pack_down_button": "ui/resource_packs_screen.json", - "selected_pack_warning_button": "ui/resource_packs_screen.json", - "selected_pack_options_button": "ui/resource_packs_screen.json", - "white_label": "ui/resource_packs_screen.json", - "gray_label": "ui/resource_packs_screen.json", - "suggested_content_offers_title_label": "ui/resource_packs_screen.json", - "available_packs_title_content": "ui/resource_packs_screen.json", - "realms_packs_title_content": "ui/resource_packs_screen.json", - "unowned_packs_title_content": "ui/resource_packs_screen.json", - "selected_packs_title_content": "ui/resource_packs_screen.json", - "selected_packs_title_content/selected_packs_title_label": "ui/resource_packs_screen.json", - "selected_packs_title_content/fill_pad": "ui/resource_packs_screen.json", - "selected_packs_title_content/icon_panel": "ui/resource_packs_screen.json", - "selected_packs_title_content/icon_panel/block_icon": "ui/resource_packs_screen.json", - "selected_packs_title_content/pad_0": "ui/resource_packs_screen.json", - "selected_packs_title_content/count": "ui/resource_packs_screen.json", - "selected_packs_title_content/pad_1": "ui/resource_packs_screen.json", - "selected_packs_title_content/plus_panel": "ui/resource_packs_screen.json", - "selected_packs_title_content/plus_panel/plus": "ui/resource_packs_screen.json", - "selected_packs_title_content/minus_panel": "ui/resource_packs_screen.json", - "selected_packs_title_content/minus_panel/minus": "ui/resource_packs_screen.json", - "available_packs_title_button": "ui/resource_packs_screen.json", - "realms_packs_title_button": "ui/resource_packs_screen.json", - "unowned_packs_title_button": "ui/resource_packs_screen.json", - "selected_packs_title_button": "ui/resource_packs_screen.json", - "name_label": "ui/resource_packs_screen.json", - "size_label": "ui/resource_packs_screen.json", - "description_label": "ui/resource_packs_screen.json", - "pack_label": "ui/resource_packs_screen.json", - "selected_pack_description_label": "ui/resource_packs_screen.json", - "available_pack_description_label": "ui/resource_packs_screen.json", - "realms_pack_description_label": "ui/resource_packs_screen.json", - "unowned_pack_description_label": "ui/resource_packs_screen.json", - "selected_pack_name_label": "ui/resource_packs_screen.json", - "selected_file_size_label": "ui/resource_packs_screen.json", - "available_pack_name_label": "ui/resource_packs_screen.json", - "available_file_size_label": "ui/resource_packs_screen.json", - "realms_pack_name_label": "ui/resource_packs_screen.json", - "realms_file_size_label": "ui/resource_packs_screen.json", - "unowned_pack_name_label": "ui/resource_packs_screen.json", - "unowned_file_size_label": "ui/resource_packs_screen.json", - "invalid_pack_name_label": "ui/resource_packs_screen.json", - "invalid_pack_description_label": "ui/resource_packs_screen.json", - "available_panel": "ui/resource_packs_screen.json", - "available_panel/selected_packs": "ui/resource_packs_screen.json", - "checkbox_visuals": "ui/resource_packs_screen.json", - "header_control": "ui/resource_packs_screen.json", - "header_control/header_description_stack_panel": "ui/resource_packs_screen.json", - "header_control/header_description_stack_panel/checkbox_visuals": "ui/resource_packs_screen.json", - "header_control/header_description_stack_panel/buffer_panel": "ui/resource_packs_screen.json", - "header_control/header_description_stack_panel/buffer_panel/label": "ui/resource_packs_screen.json", - "addon_header_control": "ui/resource_packs_screen.json", - "addon_header_control/header_description_stack_panel": "ui/resource_packs_screen.json", - "addon_header_control/header_description_stack_panel/padding_0": "ui/resource_packs_screen.json", - "addon_header_control/header_description_stack_panel/description_center_panel": "ui/resource_packs_screen.json", - "addon_header_control/header_description_stack_panel/description_center_panel/label": "ui/resource_packs_screen.json", - "addon_header_control/header_description_stack_panel/padding_1": "ui/resource_packs_screen.json", - "addon_header_control/header_description_stack_panel/link_center_panel": "ui/resource_packs_screen.json", - "addon_header_control/header_description_stack_panel/link_center_panel/addon_link_button": "ui/resource_packs_screen.json", - "addon_header_control/header_description_stack_panel/padding_2": "ui/resource_packs_screen.json", - "panel_bg": "ui/resource_packs_screen.json", - "panel_bg/black_background": "ui/resource_packs_screen.json", - "panel_bg/gray": "ui/resource_packs_screen.json", - "addon_panel_bg": "ui/resource_packs_screen.json", - "addon_panel_bg/black_background": "ui/resource_packs_screen.json", - "addon_panel_bg/yellow": "ui/resource_packs_screen.json", - "error_panel": "ui/resource_packs_screen.json", - "error_panel/black_background": "ui/resource_packs_screen.json", - "error_panel/black_background/gray": "ui/resource_packs_screen.json", - "error_panel/black_background/gray/panel": "ui/resource_packs_screen.json", - "error_panel/black_background/gray/panel/error_label": "ui/resource_packs_screen.json", - "selected_stack_panel": "ui/resource_packs_screen.json", - "selected_stack_panel/world_template_option_lock_panel": "ui/resource_packs_screen.json", - "selected_stack_panel/world_template_option_lock_panel/option_info_label": "ui/resource_packs_screen.json", - "selected_stack_panel/top_panel": "ui/resource_packs_screen.json", - "selected_stack_panel/top_panel/panel_bg": "ui/resource_packs_screen.json", - "selected_stack_panel/top_panel/header_control": "ui/resource_packs_screen.json", - "selected_stack_panel/offset_0": "ui/resource_packs_screen.json", - "selected_stack_panel/addon_stacking_warning_panel": "ui/resource_packs_screen.json", - "selected_stack_panel/addon_stacking_warning_panel/addon_panel_bg": "ui/resource_packs_screen.json", - "selected_stack_panel/addon_stacking_warning_panel/header_control": "ui/resource_packs_screen.json", - "selected_stack_panel/offset_1": "ui/resource_packs_screen.json", - "selected_stack_panel/selected_packs_title_panel": "ui/resource_packs_screen.json", - "selected_stack_panel/selected_packs_title_panel/selected_packs_title_button": "ui/resource_packs_screen.json", - "selected_stack_panel/selected_packs_title_panel/tooltip": "ui/resource_packs_screen.json", - "selected_stack_panel/selected_packs_title_panel/tooltip/button": "ui/resource_packs_screen.json", - "selected_stack_panel/selected_pack_section": "ui/resource_packs_screen.json", - "selected_stack_panel/selected_pack_section/offset": "ui/resource_packs_screen.json", - "selected_stack_panel/selected_pack_section/selected_pack_grid": "ui/resource_packs_screen.json", - "selected_stack_panel/selected_pack_section/default_item": "ui/resource_packs_screen.json", - "selected_stack_panel/selected_pack_section/default_item/icon_image": "ui/resource_packs_screen.json", - "selected_stack_panel/selected_pack_section/default_item/name_panel": "ui/resource_packs_screen.json", - "selected_stack_panel/selected_pack_section/default_item/name_panel/white_label": "ui/resource_packs_screen.json", - "selected_stack_panel/selected_pack_section/default_item/description_panel": "ui/resource_packs_screen.json", - "selected_stack_panel/selected_pack_section/default_item/description_panel/white_label": "ui/resource_packs_screen.json", - "selected_stack_panel/selected_pack_section/filler_panel": "ui/resource_packs_screen.json", - "selected_stack_panel/selected_pack_section/filler_panel/description_label": "ui/resource_packs_screen.json", - "selected_stack_panel/offset_2": "ui/resource_packs_screen.json", - "selected_stack_panel/available_packs_title_panel": "ui/resource_packs_screen.json", - "selected_stack_panel/available_packs_title_panel/available_packs_title_button": "ui/resource_packs_screen.json", - "selected_stack_panel/available_packs_title_panel/tooltip": "ui/resource_packs_screen.json", - "selected_stack_panel/available_packs_title_panel/tooltip/button": "ui/resource_packs_screen.json", - "selected_stack_panel/available_packs_section": "ui/resource_packs_screen.json", - "selected_stack_panel/available_packs_section/offset": "ui/resource_packs_screen.json", - "selected_stack_panel/available_packs_section/empty_panel": "ui/resource_packs_screen.json", - "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel": "ui/resource_packs_screen.json", - "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel/no_packs_text": "ui/resource_packs_screen.json", - "selected_stack_panel/available_packs_section/empty_panel/to_store_button": "ui/resource_packs_screen.json", - "selected_stack_panel/available_packs_section/available_pack_grid": "ui/resource_packs_screen.json", - "selected_stack_panel/available_packs_section/invalid_pack_grid": "ui/resource_packs_screen.json", - "selected_stack_panel/offset_3": "ui/resource_packs_screen.json", - "selected_stack_panel/realms_packs_title_button": "ui/resource_packs_screen.json", - "selected_stack_panel/realms_packs_section": "ui/resource_packs_screen.json", - "selected_stack_panel/realms_packs_section/offset": "ui/resource_packs_screen.json", - "selected_stack_panel/realms_packs_section/realms_pack_grid": "ui/resource_packs_screen.json", - "selected_stack_panel/realms_packs_section/offset_4": "ui/resource_packs_screen.json", - "selected_stack_panel/offset_4": "ui/resource_packs_screen.json", - "selected_stack_panel/unowned_packs_title_button": "ui/resource_packs_screen.json", - "selected_stack_panel/unowned_packs_section": "ui/resource_packs_screen.json", - "selected_stack_panel/unowned_packs_section/offset": "ui/resource_packs_screen.json", - "selected_stack_panel/unowned_packs_section/unowned_pack_grid": "ui/resource_packs_screen.json", - "selected_stack_panel/unowned_packs_section/to_store_button": "ui/resource_packs_screen.json", - "selected_stack_panel/unowned_packs_section/offset_4": "ui/resource_packs_screen.json", - "available_stack_panel": "ui/resource_packs_screen.json", - "available_stack_panel/available_packs_title_button": "ui/resource_packs_screen.json", - "available_stack_panel/available_pack_grid": "ui/resource_packs_screen.json", - "pack_background": "ui/resource_packs_screen.json", - "pack_background/white_image": "ui/resource_packs_screen.json", - "pack_background/gray_image": "ui/resource_packs_screen.json", - "selected_pack_panel": "ui/resource_packs_screen.json", - "selected_pack_panel/selected_pack_button": "ui/resource_packs_screen.json", - "selected_pack_panel/pad_0": "ui/resource_packs_screen.json", - "selected_pack_panel/center_panel": "ui/resource_packs_screen.json", - "selected_pack_panel/center_panel/visibility_panel": "ui/resource_packs_screen.json", - "selected_pack_panel/center_panel/visibility_panel/selected_pack_direction_buttons": "ui/resource_packs_screen.json", - "selected_pack_panel/divider": "ui/resource_packs_screen.json", - "selected_pack_panel/pad_1": "ui/resource_packs_screen.json", - "available_pack_panel": "ui/resource_packs_screen.json", - "available_pack_panel/available_pack_button": "ui/resource_packs_screen.json", - "available_pack_panel/pad_0": "ui/resource_packs_screen.json", - "available_pack_panel/center_panel": "ui/resource_packs_screen.json", - "available_pack_panel/center_panel/available_pack_direction_buttons": "ui/resource_packs_screen.json", - "available_pack_panel/divider": "ui/resource_packs_screen.json", - "available_pack_panel/pad_1": "ui/resource_packs_screen.json", - "realms_pack_panel": "ui/resource_packs_screen.json", - "realms_pack_panel/realms_pack_button": "ui/resource_packs_screen.json", - "realms_pack_panel/pad_0": "ui/resource_packs_screen.json", - "realms_pack_panel/center_panel": "ui/resource_packs_screen.json", - "realms_pack_panel/center_panel/realms_pack_direction_buttons": "ui/resource_packs_screen.json", - "realms_pack_panel/divider": "ui/resource_packs_screen.json", - "realms_pack_panel/pad_1": "ui/resource_packs_screen.json", - "unowned_pack_panel": "ui/resource_packs_screen.json", - "unowned_pack_panel/unowned_pack_button": "ui/resource_packs_screen.json", - "unowned_pack_panel/pad_0": "ui/resource_packs_screen.json", - "unowned_pack_panel/center_panel": "ui/resource_packs_screen.json", - "unowned_pack_panel/center_panel/realms_pack_direction_buttons": "ui/resource_packs_screen.json", - "unowned_pack_panel/divider": "ui/resource_packs_screen.json", - "unowned_pack_panel/pad_1": "ui/resource_packs_screen.json", - "invalid_pack_panel": "ui/resource_packs_screen.json", - "invalid_pack_panel/invalid_pack_button": "ui/resource_packs_screen.json", - "invalid_pack_panel/pad_0": "ui/resource_packs_screen.json", - "invalid_pack_panel/divider": "ui/resource_packs_screen.json", - "invalid_pack_panel/pad_1": "ui/resource_packs_screen.json", - "selected_pack_grid": "ui/resource_packs_screen.json", - "available_pack_grid": "ui/resource_packs_screen.json", - "realms_pack_grid": "ui/resource_packs_screen.json", - "unowned_pack_grid": "ui/resource_packs_screen.json", - "invalid_pack_grid": "ui/resource_packs_screen.json", - }, - "safe_zone": { - "corner_image_common": "ui/safe_zone_screen.json", - "corner_bl": "ui/safe_zone_screen.json", - "corner_br": "ui/safe_zone_screen.json", - "corner_tr": "ui/safe_zone_screen.json", - "corner_tl": "ui/safe_zone_screen.json", - "confirm_button": "ui/safe_zone_screen.json", - "title_text": "ui/safe_zone_screen.json", - "instructions_text": "ui/safe_zone_screen.json", - "instructions_text/inner_label": "ui/safe_zone_screen.json", - "label_button": "ui/safe_zone_screen.json", - "label_button_hover": "ui/safe_zone_screen.json", - "label_button_hover/hover": "ui/safe_zone_screen.json", - "label_button_hover/hover/button_hover_text": "ui/safe_zone_screen.json", - "content_panel": "ui/safe_zone_screen.json", - "content_panel/safe_zone_slider_all": "ui/safe_zone_screen.json", - "content_panel/safe_zone_slider_x": "ui/safe_zone_screen.json", - "content_panel/safe_zone_slider_y": "ui/safe_zone_screen.json", - "content_panel/screen_position_slider_x": "ui/safe_zone_screen.json", - "content_panel/screen_position_slider_y": "ui/safe_zone_screen.json", - "content_panel/instruction_text_button": "ui/safe_zone_screen.json", - "content_panel/instruction_text_button/default": "ui/safe_zone_screen.json", - "content_panel/instruction_text_button/pressed": "ui/safe_zone_screen.json", - "content_panel/instruction_text_button/hover": "ui/safe_zone_screen.json", - "safe_zone_screen": "ui/safe_zone_screen.json", - "safe_zone_screen/safe_zone_bounds_markers": "ui/safe_zone_screen.json", - "safe_zone_screen/safe_zone_bounds_markers/top_left_marker": "ui/safe_zone_screen.json", - "safe_zone_screen/safe_zone_bounds_markers/top_right_marker": "ui/safe_zone_screen.json", - "safe_zone_screen/safe_zone_bounds_markers/bottom_left_marker": "ui/safe_zone_screen.json", - "safe_zone_screen/safe_zone_bounds_markers/bottom_right_marker": "ui/safe_zone_screen.json", - "safe_zone_screen/main_content_panel": "ui/safe_zone_screen.json", - "safe_zone_screen/main_content_panel/common_panel": "ui/safe_zone_screen.json", - "safe_zone_screen/main_content_panel/title_text": "ui/safe_zone_screen.json", - "safe_zone_screen/main_content_panel/scrolling_panel": "ui/safe_zone_screen.json", - "safe_zone_screen/main_content_panel/confirm_button": "ui/safe_zone_screen.json", - }, - "storage_migration_common": { - "progress_panel": "ui/storage_migration_common.json", - "progress_panel/common_panel": "ui/storage_migration_common.json", - "progress_panel/base_content": "ui/storage_migration_common.json", - "progress_panel/base_content/progress_title_text": "ui/storage_migration_common.json", - "progress_panel/base_content/progress_bar_text": "ui/storage_migration_common.json", - "progress_panel/inside_content": "ui/storage_migration_common.json", - "progress_panel/inside_content/size_label": "ui/storage_migration_common.json", - "progress_panel/inside_content/padding_1": "ui/storage_migration_common.json", - "progress_panel/inside_content/loading_bar_panel": "ui/storage_migration_common.json", - "progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": "ui/storage_migration_common.json", - "progress_panel/inside_content/loading_bar_panel/progress_loading_bars": "ui/storage_migration_common.json", - "progress_panel/inside_content/padding_3": "ui/storage_migration_common.json", - "label": "ui/storage_migration_common.json", - "base_button": "ui/storage_migration_common.json", - "retry_button": "ui/storage_migration_common.json", - "go_to_faq_button": "ui/storage_migration_common.json", - "next_button": "ui/storage_migration_common.json", - "get_started_button": "ui/storage_migration_common.json", - "start_transfer_button": "ui/storage_migration_common.json", - "finished_main_menu_button": "ui/storage_migration_common.json", - "start_transfer_out_of_space_button": "ui/storage_migration_common.json", - "continue_out_of_space_button": "ui/storage_migration_common.json", - "resume_transfer_button": "ui/storage_migration_common.json", - "exit_button": "ui/storage_migration_common.json", - "retry_help_button_panel": "ui/storage_migration_common.json", - "retry_help_button_panel/retry": "ui/storage_migration_common.json", - "retry_help_button_panel/padding": "ui/storage_migration_common.json", - "retry_help_button_panel/help": "ui/storage_migration_common.json", - "modal_no_buttons": "ui/storage_migration_common.json", - "modal_one_button": "ui/storage_migration_common.json", - "modal_two_buttons": "ui/storage_migration_common.json", - "base_child_control": "ui/storage_migration_common.json", - "base_child_control/scrolling_panel": "ui/storage_migration_common.json", - "file_size_description": "ui/storage_migration_common.json", - "file_size_description/description": "ui/storage_migration_common.json", - "file_size_description/padding": "ui/storage_migration_common.json", - "file_size_description/size_stack": "ui/storage_migration_common.json", - "file_size_description/size_stack/file_text": "ui/storage_migration_common.json", - "file_size_description/size_stack/padding_1": "ui/storage_migration_common.json", - "file_size_description/size_stack/file_size_total": "ui/storage_migration_common.json", - "file_size_description/size_stack/padding_2": "ui/storage_migration_common.json", - "file_size_description/size_stack/file_size_available": "ui/storage_migration_common.json", - "file_size_description/file_location": "ui/storage_migration_common.json", - "error_icon_and_description": "ui/storage_migration_common.json", - "error_icon_and_description/error_image": "ui/storage_migration_common.json", - "error_icon_and_description/description": "ui/storage_migration_common.json", - "file_size_description_with_error": "ui/storage_migration_common.json", - "file_size_description_with_error/file_size": "ui/storage_migration_common.json", - "file_size_description_with_error/padding": "ui/storage_migration_common.json", - "file_size_description_with_error/error_icon_and_description": "ui/storage_migration_common.json", - "start_transfer": "ui/storage_migration_common.json", - "start_transfer_content": "ui/storage_migration_common.json", - "resume_transfer": "ui/storage_migration_common.json", - "resume_transfer_content": "ui/storage_migration_common.json", - "resume_transfer_content/file_size": "ui/storage_migration_common.json", - "transfer_error_out_of_space": "ui/storage_migration_common.json", - "transfer_error_out_of_space_content": "ui/storage_migration_common.json", - }, - "storage_migration_generic": { - "storage_migration_generic_screen": "ui/storage_migration_generic_screen.json", - "modal_screen_content": "ui/storage_migration_generic_screen.json", - "modal_screen_content/modal_progress_panel_no_cancel": "ui/storage_migration_generic_screen.json", - "modal_screen_content/popup_dialog_factory": "ui/storage_migration_generic_screen.json", - "start_transfer": "ui/storage_migration_generic_screen.json", - "start_transfer_out_of_space": "ui/storage_migration_generic_screen.json", - "start_transfer_out_of_space_content": "ui/storage_migration_generic_screen.json", - "start_transfer_out_of_space_content/base_start_content": "ui/storage_migration_generic_screen.json", - "start_transfer_out_of_space_content/padding": "ui/storage_migration_generic_screen.json", - "start_transfer_out_of_space_content/error_icon_and_description": "ui/storage_migration_generic_screen.json", - "finished": "ui/storage_migration_generic_screen.json", - "finished_content": "ui/storage_migration_generic_screen.json", - "finished_content/description": "ui/storage_migration_generic_screen.json", - "resume_transfer_out_of_space": "ui/storage_migration_generic_screen.json", - "resume_transfer_out_of_space_content": "ui/storage_migration_generic_screen.json", - "transfer_error": "ui/storage_migration_generic_screen.json", - "transfer_error_content": "ui/storage_migration_generic_screen.json", - "transfer_error_content/description": "ui/storage_migration_generic_screen.json", - "transfer_error_out_of_space": "ui/storage_migration_generic_screen.json", - }, - "scoreboard": { - "scoreboard_sidebar_score": "ui/scoreboards.json", - "scoreboard_sidebar_player": "ui/scoreboards.json", - "scoreboard_sidebar": "ui/scoreboards.json", - "scoreboard_sidebar/main": "ui/scoreboards.json", - "scoreboard_sidebar/main/displayed_objective": "ui/scoreboards.json", - "scoreboard_sidebar/main/lists": "ui/scoreboards.json", - "scoreboard_sidebar/main/lists/players": "ui/scoreboards.json", - "scoreboard_sidebar/main/lists/horizontal_padding": "ui/scoreboards.json", - "scoreboard_sidebar/main/lists/scores": "ui/scoreboards.json", - "scoreboard_sidebar/displayed_objective_background": "ui/scoreboards.json", - "scoreboard_player_list": "ui/scoreboards.json", - "scoreboard_player_list/vertical_padding_0": "ui/scoreboards.json", - "scoreboard_player_list/social_buttons_panel": "ui/scoreboards.json", - "scoreboard_player_list/vertical_padding_1": "ui/scoreboards.json", - "scoreboard_player_list/permissions_button": "ui/scoreboards.json", - "scoreboard_player_list/vertical_padding_2": "ui/scoreboards.json", - "scoreboard_player_list/players_label": "ui/scoreboards.json", - "scoreboard_player_list/vertical_padding_3": "ui/scoreboards.json", - "scoreboard_player_list/scored_players_grid_panel": "ui/scoreboards.json", - "scoreboard_player_list/vertical_padding_4": "ui/scoreboards.json", - "scoreboard_player_list/unscored_players_grid_panel": "ui/scoreboards.json", - "scoreboard_player_list/vertical_padding_5": "ui/scoreboards.json", - "scoreboard_player_list/invite_players_button_panel": "ui/scoreboards.json", - "scoreboard_player_list/vertical_padding_6": "ui/scoreboards.json", - "scoreboard_player_list/disconnected_from_multiplayer_label_panel": "ui/scoreboards.json", - "scoreboard_player_list/vertical_padding_7": "ui/scoreboards.json", - "list_objective_label": "ui/scoreboards.json", - "player_rank_panel": "ui/scoreboards.json", - "player_rank_panel/player_rank_bg": "ui/scoreboards.json", - "player_rank_panel/player_rank_bg/player_rank": "ui/scoreboards.json", - "player_icon_panel": "ui/scoreboards.json", - "player_icon_panel/player_icon": "ui/scoreboards.json", - "player_icon_panel/player_icon/player_panel_black_border": "ui/scoreboards.json", - "player_icon_panel/permission_icon": "ui/scoreboards.json", - "player_name": "ui/scoreboards.json", - "player_score": "ui/scoreboards.json", - "player_details": "ui/scoreboards.json", - "player_details/name_panel": "ui/scoreboards.json", - "player_details/name_panel/name": "ui/scoreboards.json", - "player_details/score_panel": "ui/scoreboards.json", - "player_details/score_panel/score": "ui/scoreboards.json", - "player_content": "ui/scoreboards.json", - "player_content/icon": "ui/scoreboards.json", - "player_content/padding": "ui/scoreboards.json", - "player_content/details": "ui/scoreboards.json", - "base_player_button": "ui/scoreboards.json", - "player_panel": "ui/scoreboards.json", - "player_panel/rank_base": "ui/scoreboards.json", - "player_panel/rank_base/player_rank": "ui/scoreboards.json", - "player_panel/player_button": "ui/scoreboards.json", - "players_grid_list": "ui/scoreboards.json", - "players_unscored_grid_list": "ui/scoreboards.json", - "players_scored_grid_list": "ui/scoreboards.json", - }, - "screenshot": { - "screenshot_flash_image": "ui/screenshot_screen.json", - "screenshot_screen": "ui/screenshot_screen.json", - "screenshot_screen_content": "ui/screenshot_screen.json", - "screenshot_screen_content/transparent_background": "ui/screenshot_screen.json", - "screenshot_screen_content/screenshot_flash": "ui/screenshot_screen.json", - }, - "select_world": { - "popup_dialog__add_on_common": "ui/select_world_screen.json", - "popup_dialog__add_on_common_no_buttons": "ui/select_world_screen.json", - "popup_dialog__add_on_common_no_buttons/popup_dialog_bg": "ui/select_world_screen.json", - "popup_dialog__add_on_common_no_buttons/popup_dialog_message": "ui/select_world_screen.json", - "popup_dialog__add_on_common_no_buttons/close_button": "ui/select_world_screen.json", - "popup_dialog__add_on_common_no_buttons/add_on_popup_content_panel": "ui/select_world_screen.json", - "popup_dialog__add_on_common_two_buttons": "ui/select_world_screen.json", - "popup_dialog__add_on_common_two_buttons/popup_dialog_bg": "ui/select_world_screen.json", - "popup_dialog__add_on_common_two_buttons/popup_dialog_message": "ui/select_world_screen.json", - "popup_dialog__add_on_common_two_buttons/close_button": "ui/select_world_screen.json", - "popup_dialog__add_on_common_two_buttons/add_on_popup_content_panel": "ui/select_world_screen.json", - "popup_dialog__add_on_common_two_buttons/button_copy": "ui/select_world_screen.json", - "popup_dialog__add_on_common_two_buttons/button_continue": "ui/select_world_screen.json", - "add_on_button_copy": "ui/select_world_screen.json", - "add_on_button_continue": "ui/select_world_screen.json", - "add_on_popup_content_panel": "ui/select_world_screen.json", - "add_on_popup_content_panel/popup_content": "ui/select_world_screen.json", - "popup_dialog__activate_add_on": "ui/select_world_screen.json", - "popup_dialog__activate_add_on_select_world": "ui/select_world_screen.json", - "popup_dialog__copy_local_world": "ui/select_world_screen.json", - "popup_dialog__copy_realms_world": "ui/select_world_screen.json", - "copy_local_world_panel": "ui/select_world_screen.json", - "copy_local_world_panel/padding_top": "ui/select_world_screen.json", - "copy_local_world_panel/text_box": "ui/select_world_screen.json", - "copy_local_world_panel/padding_middle": "ui/select_world_screen.json", - "copy_local_world_panel/text_box2": "ui/select_world_screen.json", - "copy_realms_world_panel": "ui/select_world_screen.json", - "copy_realms_world_panel/padding_top": "ui/select_world_screen.json", - "copy_realms_world_panel/text_box": "ui/select_world_screen.json", - "copy_realms_world_panel/padding_middle": "ui/select_world_screen.json", - "copy_realms_world_panel/text_box2": "ui/select_world_screen.json", - "new_or_existing_world_panel": "ui/select_world_screen.json", - "new_or_existing_world_panel/padding_left": "ui/select_world_screen.json", - "new_or_existing_world_panel/world_icon_existing": "ui/select_world_screen.json", - "new_or_existing_world_panel/padding_middle": "ui/select_world_screen.json", - "new_or_existing_world_panel/world_icon_new": "ui/select_world_screen.json", - "new_or_existing_world_panel/padding_right": "ui/select_world_screen.json", - "world_icon_with_button": "ui/select_world_screen.json", - "world_icon_with_button/padding_top": "ui/select_world_screen.json", - "world_icon_with_button/world_icon": "ui/select_world_screen.json", - "world_icon_with_button/button": "ui/select_world_screen.json", - "world_icon_with_button/padding_bottom": "ui/select_world_screen.json", - "world_icon_new": "ui/select_world_screen.json", - "world_icon_new/plus_button": "ui/select_world_screen.json", - "world_icon_existing": "ui/select_world_screen.json", - "select_world_panel": "ui/select_world_screen.json", - "select_world_list": "ui/select_world_screen.json", - "select_world_list/realms_world_label": "ui/select_world_screen.json", - "select_world_list/realms_world_list": "ui/select_world_screen.json", - "select_world_list/padding_middle": "ui/select_world_screen.json", - "select_world_list/local_world_label": "ui/select_world_screen.json", - "select_world_list/local_world_list": "ui/select_world_screen.json", - "select_world_list/padding_end": "ui/select_world_screen.json", - "local_world_item_button": "ui/select_world_screen.json", - "realms_world_item_button": "ui/select_world_screen.json", - "select_world_screen_content": "ui/select_world_screen.json", - "select_world_screen_content/popup_dialog_factory": "ui/select_world_screen.json", - "select_world_popup_screen": "ui/select_world_screen.json", - }, - "server_form": { - "third_party_server_screen": "ui/server_form.json", - "main_screen_content": "ui/server_form.json", - "main_screen_content/server_form_factory": "ui/server_form.json", - "long_form": "ui/server_form.json", - "long_form_panel": "ui/server_form.json", - "long_form_panel/scrolling_panel": "ui/server_form.json", - "long_form_scrolling_content": "ui/server_form.json", - "long_form_scrolling_content/label_offset_panel": "ui/server_form.json", - "long_form_scrolling_content/label_offset_panel/main_label": "ui/server_form.json", - "long_form_scrolling_content/padding": "ui/server_form.json", - "long_form_scrolling_content/wrapping_panel": "ui/server_form.json", - "long_form_scrolling_content/wrapping_panel/long_form_dynamic_buttons_panel": "ui/server_form.json", - "long_form_dynamic_buttons_panel": "ui/server_form.json", - "dynamic_button": "ui/server_form.json", - "dynamic_button/panel_name": "ui/server_form.json", - "dynamic_button/panel_name/image": "ui/server_form.json", - "dynamic_button/panel_name/progress": "ui/server_form.json", - "dynamic_button/form_button": "ui/server_form.json", - "dynamic_label": "ui/server_form.json", - "dynamic_header": "ui/server_form.json", - "custom_form": "ui/server_form.json", - "custom_form_panel": "ui/server_form.json", - "generated_contents": "ui/server_form.json", - "custom_form_scrolling_content": "ui/server_form.json", - "custom_form_scrolling_content/generated_form": "ui/server_form.json", - "custom_form_scrolling_content/submit_button": "ui/server_form.json", - "custom_label": "ui/server_form.json", - "custom_header": "ui/server_form.json", - "custom_toggle": "ui/server_form.json", - "custom_slider": "ui/server_form.json", - "custom_step_slider": "ui/server_form.json", - "custom_dropdown": "ui/server_form.json", - "custom_dropdown/dropdown": "ui/server_form.json", - "custom_dropdown_content": "ui/server_form.json", - "custom_dropdown_radio": "ui/server_form.json", - "custom_input": "ui/server_form.json", - }, - "settings": { - "settings_screen_base": "ui/settings_screen.json", - "settings_screen_base_fullscreen": "ui/settings_screen.json", - "screen_world_create": "ui/settings_screen.json", - "screen_template_create": "ui/settings_screen.json", - "screen_world_edit": "ui/settings_screen.json", - "screen_controls_and_settings": "ui/settings_screen.json", - "screen_controls_and_settings_fullscreen": "ui/settings_screen.json", - "screen_world_controls_and_settings": "ui/settings_screen.json", - "screen_world_controls_and_settings_fullscreen": "ui/settings_screen.json", - "screen_realm_controls_and_settings": "ui/settings_screen.json", - "screen_realm_controls_and_settings_fullscreen": "ui/settings_screen.json", - "screen_realm_member_controls_and_settings": "ui/settings_screen.json", - "screen_realm_member_controls_and_settings_fullscreen": "ui/settings_screen.json", - "screen_realm_settings": "ui/settings_screen.json", - "screen_world_slot_edit": "ui/settings_screen.json", - "screen_realm_manage": "ui/settings_screen.json", - "screen_realm_invite_link_settings": "ui/settings_screen.json", - "selector_stack_panel": "ui/settings_screen.json", - "selector_stack_panel/spacer_0": "ui/settings_screen.json", - "selector_stack_panel/accessibility_button": "ui/settings_screen.json", - "selector_stack_panel/spacer_1": "ui/settings_screen.json", - "selector_stack_panel/how_to_play_button": "ui/settings_screen.json", - "selector_stack_panel/spacer_01": "ui/settings_screen.json", - "selector_stack_panel/world_selector_pane": "ui/settings_screen.json", - "selector_stack_panel/realm_selector_pane": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_1": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_1_no_spatial": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_1": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/keyboard_and_mouse_button": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_01": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/controller_button": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_02": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/switch_controller_button": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_03": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/touch_button": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_04": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_04_no_spatial": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_2": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/party_button": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_05": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_05_no_spatial": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_3": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/general_button": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_06": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/video_button": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_07": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/sound_button": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_08": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/account_button": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_09": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/view_subscriptions_button": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_10": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/global_texture_pack_button": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_11": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/storage_management_button": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_12": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/edu_cloud_storage_button": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_13": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/language_button": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_14": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/creator_button": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_15": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/preview_button": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_4": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_4_no_spatial": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_4": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/debug_button": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_16": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/discovery_debug_button": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_17": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/ui_debug_button": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_18": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/edu_debug_button": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_19": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/marketplace_debug_button": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_20": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/gatherings_debug_button": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_21": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/flighting_debug_button": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_22": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/realms_debug_button": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/spacer_23": "ui/settings_screen.json", - "selector_stack_panel/controls_and_settings_selector_pane/automation_button": "ui/settings_screen.json", - "selector_stack_panel/spacer_24": "ui/settings_screen.json", - "selector_stack_panel/addons_selector_panel": "ui/settings_screen.json", - "selector_stack_panel/realms_invite_link_settings_pane": "ui/settings_screen.json", - "section_content_panels": "ui/settings_screen.json", - "section_content_panels/realm_invite_link_settings_content_panels": "ui/settings_screen.json", - "section_content_panels/world_sections": "ui/settings_screen.json", - "section_content_panels/world_sections/game_section": "ui/settings_screen.json", - "section_content_panels/world_sections/classroom_section_panel": "ui/settings_screen.json", - "section_content_panels/world_sections/classroom_section_panel/classroom_section": "ui/settings_screen.json", - "section_content_panels/world_sections/server_section": "ui/settings_screen.json", - "section_content_panels/world_sections/multiplayer_section": "ui/settings_screen.json", - "section_content_panels/world_sections/edu_cloud_section": "ui/settings_screen.json", - "section_content_panels/world_sections/debug_section": "ui/settings_screen.json", - "section_content_panels/packs_sections": "ui/settings_screen.json", - "section_content_panels/packs_sections/level_texture_pack_section": "ui/settings_screen.json", - "section_content_panels/packs_sections/addon_section": "ui/settings_screen.json", - "section_content_panels/section_content_panels": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/accessibility_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/controller_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/touch_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/party_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/general_tab_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/account_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/global_texture_pack_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/storage_management_header": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/storage_management_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/edu_cloud_storage_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/creator_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/video_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/view_subscriptions_prerelease_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/view_subscriptions_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/sound_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/language_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/preview_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/debug_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/ui_debug_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/edu_debug_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/marketplace_debug_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/gatherings_debug_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/flighting_debug_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/realms_debug_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/automation_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/discovery_debug_section": "ui/settings_screen.json", - "section_content_panels/general_and_controls_sections/how_to_play_section": "ui/settings_screen.json", - "section_header_panels": "ui/settings_screen.json", - "section_header_panels/world_sections": "ui/settings_screen.json", - "section_header_panels/general_and_controls_sections": "ui/settings_screen.json", - "section_footer_panels": "ui/settings_screen.json", - "section_footer_panels/world_sections": "ui/settings_screen.json", - "section_footer_panels/general_and_controls_sections": "ui/settings_screen.json", - "section_footer_panels/general_and_controls_sections/storage_management_footer": "ui/settings_screen.json", - }, - "controls_section": { - "binding_button": "ui/settings_sections/controls_section.json", - "binding_button_content": "ui/settings_sections/controls_section.json", - "binding_button_content/default_label": "ui/settings_sections/controls_section.json", - "image_binding_button": "ui/settings_sections/controls_section.json", - "image_binding_button_content": "ui/settings_sections/controls_section.json", - "image_binding_button_content/base_icon_image": "ui/settings_sections/controls_section.json", - "image_binding_button_content/default_label": "ui/settings_sections/controls_section.json", - "arrow_reset": "ui/settings_sections/controls_section.json", - "reset_binding_button": "ui/settings_sections/controls_section.json", - "keymapping_item_parent": "ui/settings_sections/controls_section.json", - "keymapping_item_parent/keymapping_row": "ui/settings_sections/controls_section.json", - "keymapping_item_frame": "ui/settings_sections/controls_section.json", - "keymapping_item_frame/keymap": "ui/settings_sections/controls_section.json", - "keymapping_item_frame/command_macro_command": "ui/settings_sections/controls_section.json", - "command_macro_command_textbox": "ui/settings_sections/controls_section.json", - "command_macro_command_textbox/text_box": "ui/settings_sections/controls_section.json", - "keymapping_item": "ui/settings_sections/controls_section.json", - "keymapping_item/option_info_label_control": "ui/settings_sections/controls_section.json", - "keymapping_item/option_info_label_control/keymapping_label_control": "ui/settings_sections/controls_section.json", - "keymapping_item/keymapping_button_0": "ui/settings_sections/controls_section.json", - "keymapping_item/keymapping_button_1": "ui/settings_sections/controls_section.json", - "keymapping_grid": "ui/settings_sections/controls_section.json", - "full_keymapping_grid": "ui/settings_sections/controls_section.json", - "gamepad_mapping_item": "ui/settings_sections/controls_section.json", - "gamepad_mapping_item/option_info_label_control": "ui/settings_sections/controls_section.json", - "gamepad_mapping_item/option_info_label_control/keymapping_label_control": "ui/settings_sections/controls_section.json", - "gamepad_mapping_item/keymapping_button_0": "ui/settings_sections/controls_section.json", - "gamepad_mapping_item/keymapping_button_1": "ui/settings_sections/controls_section.json", - "gamepad_mapping_grid": "ui/settings_sections/controls_section.json", - "keyboard_command_macros_grid": "ui/settings_sections/controls_section.json", - "keyboard_command_macros_grid/divider_before": "ui/settings_sections/controls_section.json", - "keyboard_command_macros_grid/divider_before/section_divider": "ui/settings_sections/controls_section.json", - "keyboard_command_macros_grid/divider_before_padding": "ui/settings_sections/controls_section.json", - "keyboard_command_macros_grid/command_macro_title": "ui/settings_sections/controls_section.json", - "keyboard_command_macros_grid/command_macro_title_desc": "ui/settings_sections/controls_section.json", - "keyboard_command_macros_grid/command_macro_title_padding": "ui/settings_sections/controls_section.json", - "keyboard_command_macros_grid/command_macro_keymapping_grid": "ui/settings_sections/controls_section.json", - "keyboard_command_macros_grid/divider_after": "ui/settings_sections/controls_section.json", - "keyboard_command_macros_grid/divider_after/section_divider": "ui/settings_sections/controls_section.json", - "keyboard_command_macros_grid/divider_after_padding": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_button": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section/option_slider_0": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section/option_slider_damen": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section/option_toggle_0": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section/option_toggle_1": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section/option_toggle_2": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section/option_toggle_full_keyboard_gameplay": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section/option_toggle_show_keyboard_prompts": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section/option_toggle_show_learning_prompts": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section/keyboard_section": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section/keyboard_section/option_group_label": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section/keyboard_section/keyboard_keymapping_grid": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/option_group_label": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/control_alt_chord_keymapping_grid": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section/keyboard_section/command_macros": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section/full_keyboard_section": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section/full_keyboard_section/option_slider_smooth_rotation_speed": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section/full_keyboard_section/full_keyboard_label": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section/full_keyboard_section/keyboard_full_keymapping_grid": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/option_group_label": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/control_alt_chord_keymapping_grid": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section/full_keyboard_section/command_macros": "ui/settings_sections/controls_section.json", - "keyboard_and_mouse_section/reset_button": "ui/settings_sections/controls_section.json", - "controller_button": "ui/settings_sections/controls_section.json", - "controller_section": "ui/settings_sections/controls_section.json", - "controller_section/option_slider_0": "ui/settings_sections/controls_section.json", - "controller_section/option_slider_damen": "ui/settings_sections/controls_section.json", - "controller_section/option_toggle_0": "ui/settings_sections/controls_section.json", - "controller_section/option_toggle_1": "ui/settings_sections/controls_section.json", - "controller_section/option_toggle9": "ui/settings_sections/controls_section.json", - "controller_section/option_toggle10": "ui/settings_sections/controls_section.json", - "controller_section/option_toggle_11": "ui/settings_sections/controls_section.json", - "controller_section/gamepad_swap_ab": "ui/settings_sections/controls_section.json", - "controller_section/gamepad_swap_xy": "ui/settings_sections/controls_section.json", - "controller_section/gamepad_cursor_sensitivity_option_slider": "ui/settings_sections/controls_section.json", - "controller_section/option_toggle_3": "ui/settings_sections/controls_section.json", - "controller_section/option_toggle_4": "ui/settings_sections/controls_section.json", - "controller_section/option_toggle_5": "ui/settings_sections/controls_section.json", - "controller_section/option_group_label": "ui/settings_sections/controls_section.json", - "controller_section/gamepad_keymapping_grid": "ui/settings_sections/controls_section.json", - "controller_section/reset_button": "ui/settings_sections/controls_section.json", - "touch_button": "ui/settings_sections/controls_section.json", - "touch_section": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/option_enable_new_touch_control_schemes_button": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/control_scheme_section": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/control_scheme_section/section_label": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/control_scheme_section/padding_0": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/control_scheme_section/image_and_button": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/control_scheme_section/image_and_button/images": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/touch_image": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/crosshair_image": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/classic_image": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/control_scheme_section/image_and_button/padding": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_label": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_control": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/control_scheme_section/padding_1": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/control_scheme_section/select_control_mode": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/control_scheme_section/padding_2": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/modify_control_layout_section": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/modify_control_layout_section/modify_control_layout_button": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/modify_control_layout_section/customize_tooltip_option": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/modify_control_layout_section/padding": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/option_slider_0": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/option_slider_damen": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/option_show_action_button": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/option_show_block_select_button": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/option_toggle_left_handed": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/option_toggle_auto_jump": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/option_bool_sprint_on_movement": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/option_show_toggle_camera_perspective_button": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/joystick_visibility_dropdown": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/top_button_scale": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/sneak_dropdown": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/option_toggle_destroy_vibration": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/option_toggle_split_vibration": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/option_creative_delayed_block_breaking": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/option_toggle_invert_y": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/option_always_highlight_hovering_box_in_crosshair": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/option_toggle_use_touchpad": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/option_toggle_swap_jump_and_sneak": "ui/settings_sections/controls_section.json", - "touch_section/common_touch_settings/hotbar_only_touch_toggle": "ui/settings_sections/controls_section.json", - "touch_section/reset_button": "ui/settings_sections/controls_section.json", - "joystick_visibility_dropdown_content": "ui/settings_sections/controls_section.json", - "top_button_scale_dropdown_content": "ui/settings_sections/controls_section.json", - "sneak_dropdown_content": "ui/settings_sections/controls_section.json", - "customize_tooltip_option_image": "ui/settings_sections/controls_section.json", - "customize_tooltip_option_popup": "ui/settings_sections/controls_section.json", - "customize_tooltip_option": "ui/settings_sections/controls_section.json", - "customize_tooltip_option/customize_tooltip_option_image": "ui/settings_sections/controls_section.json", - "customize_tooltip_option/customize_tooltip_option_image/hover_detection_input_panel": "ui/settings_sections/controls_section.json", - "customize_tooltip_option/customize_tooltip_option_popup": "ui/settings_sections/controls_section.json", - }, - "general_section": { - "general_button": "ui/settings_sections/general_section.json", - "general_tab_section": "ui/settings_sections/general_section.json", - "general_tab_section/option_toggle_fail_realms_purchase_fulfillment": "ui/settings_sections/general_section.json", - "general_tab_section/network_label_header": "ui/settings_sections/general_section.json", - "general_tab_section/paddingCrossPlatform": "ui/settings_sections/general_section.json", - "general_tab_section/cross_platform_enabled_toggle": "ui/settings_sections/general_section.json", - "general_tab_section/paddingCellularData": "ui/settings_sections/general_section.json", - "general_tab_section/mobile_data_option_toggle": "ui/settings_sections/general_section.json", - "general_tab_section/paddingWebSockets": "ui/settings_sections/general_section.json", - "general_tab_section/websockets_enabled_toggle": "ui/settings_sections/general_section.json", - "general_tab_section/websocket_encryption_toggle": "ui/settings_sections/general_section.json", - "general_tab_section/paddingAutoUpdate": "ui/settings_sections/general_section.json", - "general_tab_section/auto_update_mode_dropdown": "ui/settings_sections/general_section.json", - "general_tab_section/paddingAutoUpdateToggle": "ui/settings_sections/general_section.json", - "general_tab_section/auto_update_enabled_toggle": "ui/settings_sections/general_section.json", - "general_tab_section/paddingGameTipsFeature": "ui/settings_sections/general_section.json", - "general_tab_section/tutorial_toggle": "ui/settings_sections/general_section.json", - "general_tab_section/tutorial_animation_toggle": "ui/settings_sections/general_section.json", - "general_tab_section/tutorial_restart_button": "ui/settings_sections/general_section.json", - "general_tab_section/paddingTrustedSkins": "ui/settings_sections/general_section.json", - "general_tab_section/only_allow_trusted_skins_toggle": "ui/settings_sections/general_section.json", - "general_tab_section/paddingFilterProfanity": "ui/settings_sections/general_section.json", - "general_tab_section/filter_profanity_toggle": "ui/settings_sections/general_section.json", - "general_tab_section/filter_profanity_toggle/option_generic_core": "ui/settings_sections/general_section.json", - "general_tab_section/pause_label_header": "ui/settings_sections/general_section.json", - "general_tab_section/paddingPauseFeature": "ui/settings_sections/general_section.json", - "general_tab_section/pause_toggle": "ui/settings_sections/general_section.json", - "general_tab_section/paddingLinkEduSupport": "ui/settings_sections/general_section.json", - "general_tab_section/link_button": "ui/settings_sections/general_section.json", - "general_tab_section/paddingDividerSustainability": "ui/settings_sections/general_section.json", - "general_tab_section/ecomode_label_header": "ui/settings_sections/general_section.json", - "general_tab_section/paddingEcoMode": "ui/settings_sections/general_section.json", - "general_tab_section/ecomode_enabled_toggle": "ui/settings_sections/general_section.json", - "general_tab_section/paddingDividerTermsCreditsAttribution": "ui/settings_sections/general_section.json", - "general_tab_section/dividerTermsCreditsAttribution": "ui/settings_sections/general_section.json", - "general_tab_section/dividerTermsCreditsAttribution/section_divider": "ui/settings_sections/general_section.json", - "general_tab_section/paddingDividerTermsCreditsAttributionAfter": "ui/settings_sections/general_section.json", - "general_tab_section/paddingTermsNConditions": "ui/settings_sections/general_section.json", - "general_tab_section/terms_and_conditions_link_button": "ui/settings_sections/general_section.json", - "general_tab_section/paddingCreditsButton": "ui/settings_sections/general_section.json", - "general_tab_section/credits_button": "ui/settings_sections/general_section.json", - "general_tab_section/paddingAttribution": "ui/settings_sections/general_section.json", - "general_tab_section/attribution_link_button": "ui/settings_sections/general_section.json", - "general_tab_section/paddingfeedback": "ui/settings_sections/general_section.json", - "general_tab_section/feedback_link_button": "ui/settings_sections/general_section.json", - "general_tab_section/paddingLicenses": "ui/settings_sections/general_section.json", - "general_tab_section/dividerLicenses": "ui/settings_sections/general_section.json", - "general_tab_section/dividerLicenses/section_divider": "ui/settings_sections/general_section.json", - "general_tab_section/paddingLicensesAfter": "ui/settings_sections/general_section.json", - "general_tab_section/paddingLicensesHeader": "ui/settings_sections/general_section.json", - "general_tab_section/licenses_label_header": "ui/settings_sections/general_section.json", - "general_tab_section/paddingLicensedContent": "ui/settings_sections/general_section.json", - "general_tab_section/licensed_content_link_button": "ui/settings_sections/general_section.json", - "general_tab_section/paddingFontLicense": "ui/settings_sections/general_section.json", - "general_tab_section/font_license_popup_button": "ui/settings_sections/general_section.json", - "general_tab_section/third_party_copyright_info_label_panel": "ui/settings_sections/general_section.json", - "general_tab_section/third_party_copyright_info_label_panel/spacer_0": "ui/settings_sections/general_section.json", - "general_tab_section/third_party_copyright_info_label_panel/copyright_label": "ui/settings_sections/general_section.json", - "general_tab_section/third_party_copyright_info_label_panel/spacer_1": "ui/settings_sections/general_section.json", - "general_tab_section/third_party_copyright_info_label_panel/copyright_icon": "ui/settings_sections/general_section.json", - "general_tab_section/paddingSectionDividerContentLog": "ui/settings_sections/general_section.json", - "general_tab_section/build_info_label_panel": "ui/settings_sections/general_section.json", - "general_tab_section/build_info_label_panel/build_info_label": "ui/settings_sections/general_section.json", - "general_tab_section/paddingSectionDividerBuildInfo": "ui/settings_sections/general_section.json", - "general_tab_section/treatment_ids_label": "ui/settings_sections/general_section.json", - "account_button": "ui/settings_sections/general_section.json", - "view_account_errors_button_content": "ui/settings_sections/general_section.json", - "switch_accounts_button_content": "ui/settings_sections/general_section.json", - "switch_accounts_button_content/padded_icon": "ui/settings_sections/general_section.json", - "switch_accounts_button_content/padded_icon/icon": "ui/settings_sections/general_section.json", - "switch_accounts_button_content/padded_label": "ui/settings_sections/general_section.json", - "switch_accounts_button_content/padded_label/label": "ui/settings_sections/general_section.json", - "sign_out_button_content": "ui/settings_sections/general_section.json", - "sign_out_button_content/padded_label": "ui/settings_sections/general_section.json", - "sign_out_button_content/padded_label/label": "ui/settings_sections/general_section.json", - "switch_accounts_panel": "ui/settings_sections/general_section.json", - "switch_accounts_panel/name_label": "ui/settings_sections/general_section.json", - "switch_accounts_panel/paddingSwitchAccounts": "ui/settings_sections/general_section.json", - "switch_accounts_panel/switch_accounts": "ui/settings_sections/general_section.json", - "sign_out_panel": "ui/settings_sections/general_section.json", - "sign_out_panel/sign_out": "ui/settings_sections/general_section.json", - "sign_out_fail_popup": "ui/settings_sections/general_section.json", - "sign_out_fail_body_panel": "ui/settings_sections/general_section.json", - "sign_out_fail_body_content_stack": "ui/settings_sections/general_section.json", - "sign_out_fail_body_content_stack/body_text_centering_panel1": "ui/settings_sections/general_section.json", - "sign_out_fail_body_content_stack/body_text_centering_panel1/body_text1": "ui/settings_sections/general_section.json", - "sign_out_fail_body_content_stack/body_text_centering_panel2": "ui/settings_sections/general_section.json", - "sign_out_fail_body_content_stack/body_text_centering_panel2/body_text2": "ui/settings_sections/general_section.json", - "sign_out_fail_body_content_stack/padding1": "ui/settings_sections/general_section.json", - "sign_out_fail_body_content_stack/learn_more_button": "ui/settings_sections/general_section.json", - "sign_out_fail_body_content_stack/padding2": "ui/settings_sections/general_section.json", - "sign_out_fail_body_content_stack/close_button": "ui/settings_sections/general_section.json", - "account_section": "ui/settings_sections/general_section.json", - "account_section/use_edu_remember_me": "ui/settings_sections/general_section.json", - "account_section/paddingUseSSO": "ui/settings_sections/general_section.json", - "account_section/switch_accounts": "ui/settings_sections/general_section.json", - "account_section/sign_out": "ui/settings_sections/general_section.json", - "account_section/paddingNameControls": "ui/settings_sections/general_section.json", - "account_section/name_controls": "ui/settings_sections/general_section.json", - "account_section/paddingSignInControls": "ui/settings_sections/general_section.json", - "account_section/signin_controls": "ui/settings_sections/general_section.json", - "account_section/paddingGamerTagControls": "ui/settings_sections/general_section.json", - "account_section/gamertag_controls": "ui/settings_sections/general_section.json", - "account_section/paddingClearMSAToken": "ui/settings_sections/general_section.json", - "account_section/clear_msa_token": "ui/settings_sections/general_section.json", - "account_section/clear_msa_token/clear_msa_token_button": "ui/settings_sections/general_section.json", - "account_section/paddingUnlinkMSAAccount": "ui/settings_sections/general_section.json", - "account_section/unlink_msa_account": "ui/settings_sections/general_section.json", - "account_section/unlink_msa_account_nx": "ui/settings_sections/general_section.json", - "account_section/paddingDeleteAccount": "ui/settings_sections/general_section.json", - "account_section/delete_account": "ui/settings_sections/general_section.json", - "account_section/paddingUseRemoteConnect": "ui/settings_sections/general_section.json", - "account_section/remote_connect_toggle": "ui/settings_sections/general_section.json", - "account_section/paddingInfoLabels": "ui/settings_sections/general_section.json", - "account_section/account_info_buttom": "ui/settings_sections/general_section.json", - "account_section/account_info_buttom/account_info_label": "ui/settings_sections/general_section.json", - "name_controls": "ui/settings_sections/general_section.json", - "name_controls/option_text_edit_control": "ui/settings_sections/general_section.json", - "signin_controls": "ui/settings_sections/general_section.json", - "signin_controls/sign_in": "ui/settings_sections/general_section.json", - "signin_controls/sign_in/action_button": "ui/settings_sections/general_section.json", - "signin_subscription": "ui/settings_sections/general_section.json", - "signin_subscription/sign_in": "ui/settings_sections/general_section.json", - "signin_subscription/sign_in/please_signin_label": "ui/settings_sections/general_section.json", - "gamertag_controls": "ui/settings_sections/general_section.json", - "gamertag_controls/gamertag_label": "ui/settings_sections/general_section.json", - "gamertag_controls/gamertag_label/panel_descriptor": "ui/settings_sections/general_section.json", - "gamertag_controls/gamertag_label/panel_descriptor/label_descriptor": "ui/settings_sections/general_section.json", - "gamertag_controls/gamertag_label/spacer": "ui/settings_sections/general_section.json", - "gamertag_controls/gamertag_label/gamerpic": "ui/settings_sections/general_section.json", - "gamertag_controls/gamertag_label/spacer_2": "ui/settings_sections/general_section.json", - "gamertag_controls/gamertag_label/panel_gamertag": "ui/settings_sections/general_section.json", - "gamertag_controls/gamertag_label/panel_gamertag/gamertag_label": "ui/settings_sections/general_section.json", - "gamertag_controls/paddingXboxAccountButtons": "ui/settings_sections/general_section.json", - "gamertag_controls/xboxlive_deep_link_buttons": "ui/settings_sections/general_section.json", - "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button": "ui/settings_sections/general_section.json", - "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button_mobile": "ui/settings_sections/general_section.json", - "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button": "ui/settings_sections/general_section.json", - "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button_mobile": "ui/settings_sections/general_section.json", - "gamertag_controls/xboxlive_deep_link_buttons/paddingXboxSettingsPrivacyControl": "ui/settings_sections/general_section.json", - "gamertag_controls/xboxlive_deep_link_buttons/link_button": "ui/settings_sections/general_section.json", - "gamertag_controls/paddingSignOut": "ui/settings_sections/general_section.json", - "gamertag_controls/realms_invites": "ui/settings_sections/general_section.json", - "gamertag_controls/realms_invites/check_realms_invites_button": "ui/settings_sections/general_section.json", - "gamertag_controls/sign_out": "ui/settings_sections/general_section.json", - "gamertag_controls/sign_out/action_button": "ui/settings_sections/general_section.json", - "gamertag_controls/offline_token_authorization": "ui/settings_sections/general_section.json", - "gamertag_controls/offline_token_authorization/request_psn_authorization_button": "ui/settings_sections/general_section.json", - "auto_update_mode_dropdown_content": "ui/settings_sections/general_section.json", - "global_texture_pack_button": "ui/settings_sections/general_section.json", - "global_texture_pack_section": "ui/settings_sections/general_section.json", - "storage_management_button": "ui/settings_sections/general_section.json", - "storage_management_section": "ui/settings_sections/general_section.json", - "storage_management_header": "ui/settings_sections/general_section.json", - "storage_management_footer": "ui/settings_sections/general_section.json", - "edu_cloud_storage_button": "ui/settings_sections/general_section.json", - "edu_cloud_storage_section": "ui/settings_sections/general_section.json", - "edu_cloud_storage_section/spacing1": "ui/settings_sections/general_section.json", - "edu_cloud_storage_section/edu_cloud_backup_toggle": "ui/settings_sections/general_section.json", - "edu_cloud_storage_section/spacing2": "ui/settings_sections/general_section.json", - "edu_cloud_storage_section/body_wrapper_panel": "ui/settings_sections/general_section.json", - "edu_cloud_storage_section/body_wrapper_panel/tts_border": "ui/settings_sections/general_section.json", - "edu_cloud_storage_section/body_wrapper_panel/edu_cloud_storage_body_label": "ui/settings_sections/general_section.json", - "edu_cloud_storage_section/spacing3": "ui/settings_sections/general_section.json", - "edu_cloud_storage_section/edu_cloud_onedrive_button": "ui/settings_sections/general_section.json", - "edu_cloud_storage_section/spacing4": "ui/settings_sections/general_section.json", - "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel": "ui/settings_sections/general_section.json", - "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/learn_more_button": "ui/settings_sections/general_section.json", - "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon": "ui/settings_sections/general_section.json", - "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon/icon": "ui/settings_sections/general_section.json", - "edu_cloud_onedrive_button_content": "ui/settings_sections/general_section.json", - "edu_cloud_onedrive_button_content/padded_label": "ui/settings_sections/general_section.json", - "edu_cloud_onedrive_button_content/padded_label/label": "ui/settings_sections/general_section.json", - "edu_cloud_onedrive_button_content/padded_icon": "ui/settings_sections/general_section.json", - "edu_cloud_onedrive_button_content/padded_icon/icon": "ui/settings_sections/general_section.json", - "edu_cloud_onedrive_error_popup": "ui/settings_sections/general_section.json", - "edu_cloud_onedrive_error_content": "ui/settings_sections/general_section.json", - "edu_cloud_onedrive_error_content/body_text_centering_panel2": "ui/settings_sections/general_section.json", - "edu_cloud_onedrive_error_content/body_text_centering_panel2/body_text2": "ui/settings_sections/general_section.json", - "edu_cloud_onedrive_error_content/padding2": "ui/settings_sections/general_section.json", - "edu_cloud_onedrive_error_content/learn_more_button": "ui/settings_sections/general_section.json", - "edu_cloud_onedrive_error_content/padding3": "ui/settings_sections/general_section.json", - "edu_cloud_onedrive_error_content/ok_button": "ui/settings_sections/general_section.json", - "creator_button": "ui/settings_sections/general_section.json", - "editor_toggle_panel": "ui/settings_sections/general_section.json", - "editor_toggle_panel/editor_confirmation_panel": "ui/settings_sections/general_section.json", - "editor_toggle_panel/editor_confirmation_panel/editor_active_label": "ui/settings_sections/general_section.json", - "editor_toggle_panel/editor_confirmation_panel/toggle_spacer": "ui/settings_sections/general_section.json", - "editor_toggle_panel/editor_confirmation_panel/editor_confirmation_section_label": "ui/settings_sections/general_section.json", - "editor_toggle_panel/editor_toggle_spacer": "ui/settings_sections/general_section.json", - "editor_toggle_panel/editor_image_panel": "ui/settings_sections/general_section.json", - "editor_toggle_panel/editor_image_panel/editor_icon": "ui/settings_sections/general_section.json", - "creator_toggles_panel": "ui/settings_sections/general_section.json", - "creator_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json", - "creator_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json", - "creator_toggles_panel/primary_panel": "ui/settings_sections/general_section.json", - "creator_toggles_panel/primary_panel/content_log_section_label": "ui/settings_sections/general_section.json", - "creator_toggles_panel/primary_panel/content_log_section_label_spacer": "ui/settings_sections/general_section.json", - "creator_toggles_panel/primary_panel/clipboard_setting": "ui/settings_sections/general_section.json", - "debugger_toggles_panel": "ui/settings_sections/general_section.json", - "debugger_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json", - "debugger_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json", - "debugger_toggles_panel/primary_panel": "ui/settings_sections/general_section.json", - "debugger_toggles_panel/primary_panel/heading": "ui/settings_sections/general_section.json", - "debugger_toggles_panel/primary_panel/spacer": "ui/settings_sections/general_section.json", - "debugger_toggles_panel/primary_panel/passcode_required_toggle": "ui/settings_sections/general_section.json", - "debugger_toggles_panel/primary_panel/passcode_input": "ui/settings_sections/general_section.json", - "debugger_toggles_panel/primary_panel/auto_attach_toggle": "ui/settings_sections/general_section.json", - "debugger_toggles_panel/primary_panel/all_options_panel": "ui/settings_sections/general_section.json", - "debugger_toggles_panel/primary_panel/all_options_panel/attach_mode_option": "ui/settings_sections/general_section.json", - "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel": "ui/settings_sections/general_section.json", - "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/host_input": "ui/settings_sections/general_section.json", - "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/spacer": "ui/settings_sections/general_section.json", - "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/port_input": "ui/settings_sections/general_section.json", - "debugger_toggles_panel/primary_panel/all_options_panel/auto_attach_timeout_slider": "ui/settings_sections/general_section.json", - "diagnostics_toggles_panel": "ui/settings_sections/general_section.json", - "diagnostics_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json", - "diagnostics_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json", - "diagnostics_toggles_panel/primary_panel": "ui/settings_sections/general_section.json", - "diagnostics_toggles_panel/primary_panel/heading": "ui/settings_sections/general_section.json", - "diagnostics_toggles_panel/primary_panel/spacer": "ui/settings_sections/general_section.json", - "diagnostics_toggles_panel/primary_panel/serverbound_client_diagnostics_toggle": "ui/settings_sections/general_section.json", - "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons": "ui/settings_sections/general_section.json", - "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons/clear_diagnostics_capture_files": "ui/settings_sections/general_section.json", - "watchdog_toggles_panel": "ui/settings_sections/general_section.json", - "watchdog_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json", - "watchdog_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json", - "watchdog_toggles_panel/primary_panel": "ui/settings_sections/general_section.json", - "watchdog_toggles_panel/primary_panel/heading": "ui/settings_sections/general_section.json", - "watchdog_toggles_panel/primary_panel/spacer": "ui/settings_sections/general_section.json", - "watchdog_toggles_panel/primary_panel/hang_threshold_slider": "ui/settings_sections/general_section.json", - "watchdog_toggles_panel/primary_panel/spike_warning_toggle": "ui/settings_sections/general_section.json", - "watchdog_toggles_panel/primary_panel/spike_threshold_slider": "ui/settings_sections/general_section.json", - "watchdog_toggles_panel/primary_panel/slow_warning_toggle": "ui/settings_sections/general_section.json", - "watchdog_toggles_panel/primary_panel/slow_threshold_slider": "ui/settings_sections/general_section.json", - "device_info_toggles_panel": "ui/settings_sections/general_section.json", - "device_info_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json", - "device_info_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json", - "device_info_toggles_panel/primary_panel": "ui/settings_sections/general_section.json", - "device_info_toggles_panel/primary_panel/heading": "ui/settings_sections/general_section.json", - "device_info_toggles_panel/primary_panel/spacer": "ui/settings_sections/general_section.json", - "device_info_toggles_panel/primary_panel/device_info_memory_tier_use_override_toggle": "ui/settings_sections/general_section.json", - "device_info_toggles_panel/device_info_memory_tier_dropdown": "ui/settings_sections/general_section.json", - "content_memory_tier_dropdown_content": "ui/settings_sections/general_section.json", - "content_log_gui_level_content": "ui/settings_sections/general_section.json", - "content_log_panel": "ui/settings_sections/general_section.json", - "content_log_panel/section_panel_1": "ui/settings_sections/general_section.json", - "content_log_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json", - "content_log_panel/content_log_section_label": "ui/settings_sections/general_section.json", - "content_log_panel/content_log_section_label_spacer": "ui/settings_sections/general_section.json", - "content_log_panel/option_content_file_log": "ui/settings_sections/general_section.json", - "content_log_panel/option_content_gui_log": "ui/settings_sections/general_section.json", - "content_log_panel/option_content_gui_log_show_on_errors": "ui/settings_sections/general_section.json", - "content_log_panel/option_content_log_gui_level": "ui/settings_sections/general_section.json", - "content_log_panel/content_log_buttons": "ui/settings_sections/general_section.json", - "content_log_panel/content_log_buttons/open_content_log_history": "ui/settings_sections/general_section.json", - "content_log_panel/content_log_buttons/content_log_section_label_spacer": "ui/settings_sections/general_section.json", - "content_log_panel/content_log_buttons/clear_content_log_files": "ui/settings_sections/general_section.json", - "content_log_panel/content_log_section_label_spacer_2": "ui/settings_sections/general_section.json", - "content_log_panel/content_log_location_label_header": "ui/settings_sections/general_section.json", - "content_log_panel/content_log_location_label": "ui/settings_sections/general_section.json", - "creator_section": "ui/settings_sections/general_section.json", - "creator_section/editor_toggle": "ui/settings_sections/general_section.json", - "creator_section/creator_toggles": "ui/settings_sections/general_section.json", - "creator_section/debugger_toggles_panel": "ui/settings_sections/general_section.json", - "creator_section/diagnostics_toggle_panel": "ui/settings_sections/general_section.json", - "creator_section/watchdog_toggles_panel": "ui/settings_sections/general_section.json", - "creator_section/device_info_toggles_panel": "ui/settings_sections/general_section.json", - "creator_section/content_log_panel": "ui/settings_sections/general_section.json", - "video_button": "ui/settings_sections/general_section.json", - "advanced_video_options_toggle": "ui/settings_sections/general_section.json", - "video_menu_slider_step_progress": "ui/settings_sections/general_section.json", - "video_menu_slider_progress": "ui/settings_sections/general_section.json", - "video_menu_slider_bar_default": "ui/settings_sections/general_section.json", - "video_menu_customization_slider_control": "ui/settings_sections/general_section.json", - "video_menu_customization_slider_control/slider": "ui/settings_sections/general_section.json", - "video_menu_customization_slider_control/slider/slider_box": "ui/settings_sections/general_section.json", - "video_menu_customization_slider_control/slider/slider_bar_default": "ui/settings_sections/general_section.json", - "video_menu_customization_slider_control/slider/slider_bar_hover": "ui/settings_sections/general_section.json", - "video_menu_customization_option_slider": "ui/settings_sections/general_section.json", - "video_section": "ui/settings_sections/general_section.json", - "video_section/advanced_graphics_options_panel": "ui/settings_sections/general_section.json", - "video_section/advanced_graphics_options_panel/graphics_mode": "ui/settings_sections/general_section.json", - "video_section/advanced_graphics_options_panel/graphics_quality_preset_mode_dropdown_content": "ui/settings_sections/general_section.json", - "video_section/advanced_graphics_options_panel/spacer_0": "ui/settings_sections/general_section.json", - "video_section/advanced_graphics_options_panel/advanced_graphics_options_button": "ui/settings_sections/general_section.json", - "video_section/advanced_graphics_options_panel/advanced_graphics_options_section": "ui/settings_sections/general_section.json", - "video_section/spacer_1": "ui/settings_sections/general_section.json", - "video_section/graphics_api_dropdown": "ui/settings_sections/general_section.json", - "video_section/raytracing_render_distance_slider": "ui/settings_sections/general_section.json", - "video_section/raytracing_render_distance_slider/option_generic_core": "ui/settings_sections/general_section.json", - "video_section/deferred_render_distance_slider": "ui/settings_sections/general_section.json", - "video_section/deferred_render_distance_slider/option_generic_core": "ui/settings_sections/general_section.json", - "video_section/render_distance_slider": "ui/settings_sections/general_section.json", - "video_section/render_distance_slider/render_distance_warning": "ui/settings_sections/general_section.json", - "video_section/render_distance_slider/option_generic_core": "ui/settings_sections/general_section.json", - "video_section/render_distance_warning_text": "ui/settings_sections/general_section.json", - "video_section/render_distance_warning_text/render_distance_popup": "ui/settings_sections/general_section.json", - "video_section/spacer_2": "ui/settings_sections/general_section.json", - "video_section/brightness_slider": "ui/settings_sections/general_section.json", - "video_section/spacer_3": "ui/settings_sections/general_section.json", - "video_section/perspective_dropdown": "ui/settings_sections/general_section.json", - "video_section/spacer_4": "ui/settings_sections/general_section.json", - "video_section/fullscreen_toggle": "ui/settings_sections/general_section.json", - "video_section/spacer_5": "ui/settings_sections/general_section.json", - "video_section/option_toggle_hidehand": "ui/settings_sections/general_section.json", - "video_section/spacer_6": "ui/settings_sections/general_section.json", - "video_section/hide_paperdoll_toggle": "ui/settings_sections/general_section.json", - "video_section/spacer_7": "ui/settings_sections/general_section.json", - "video_section/option_toggle_hidehud": "ui/settings_sections/general_section.json", - "video_section/spacer_8": "ui/settings_sections/general_section.json", - "video_section/option_toggle_screen_animations": "ui/settings_sections/general_section.json", - "video_section/spacer_9": "ui/settings_sections/general_section.json", - "video_section/hud_opacity_slider": "ui/settings_sections/general_section.json", - "video_section/spacer_10": "ui/settings_sections/general_section.json", - "video_section/splitscreen_hud_opacity_slider": "ui/settings_sections/general_section.json", - "video_section/spacer_11": "ui/settings_sections/general_section.json", - "video_section/setup_safe_zone": "ui/settings_sections/general_section.json", - "video_section/setup_safe_zone/action_button": "ui/settings_sections/general_section.json", - "video_section/spacer_12": "ui/settings_sections/general_section.json", - "video_section/fov_slider": "ui/settings_sections/general_section.json", - "video_section/spacer_13": "ui/settings_sections/general_section.json", - "video_section/split_screen_dropdown": "ui/settings_sections/general_section.json", - "video_section/spacer_14": "ui/settings_sections/general_section.json", - "video_section/auto_save_icon_toggle": "ui/settings_sections/general_section.json", - "video_section/spacer_15": "ui/settings_sections/general_section.json", - "video_section/outline_selection_toggle": "ui/settings_sections/general_section.json", - "video_section/spacer_16": "ui/settings_sections/general_section.json", - "video_section/player_names_toggle": "ui/settings_sections/general_section.json", - "video_section/spacer_17": "ui/settings_sections/general_section.json", - "video_section/splitscreen_player_names_toggle": "ui/settings_sections/general_section.json", - "video_section/spacer_18": "ui/settings_sections/general_section.json", - "video_section/view_bobbing_toggle": "ui/settings_sections/general_section.json", - "video_section/spacer_19": "ui/settings_sections/general_section.json", - "video_section/camera_shake_toggle": "ui/settings_sections/general_section.json", - "video_section/spacer_20": "ui/settings_sections/general_section.json", - "video_section/fancy_leaves_toggle": "ui/settings_sections/general_section.json", - "video_section/spacer_21": "ui/settings_sections/general_section.json", - "video_section/fancy_bubbles_toggle": "ui/settings_sections/general_section.json", - "video_section/spacer_22": "ui/settings_sections/general_section.json", - "video_section/render_clouds_toggle": "ui/settings_sections/general_section.json", - "video_section/spacer_23": "ui/settings_sections/general_section.json", - "video_section/fancy_clouds_toggle": "ui/settings_sections/general_section.json", - "video_section/spacer_24": "ui/settings_sections/general_section.json", - "video_section/smooth_lighting_toggle": "ui/settings_sections/general_section.json", - "video_section/spacer_25": "ui/settings_sections/general_section.json", - "video_section/rendering_profile_option_slider": "ui/settings_sections/general_section.json", - "video_section/field_of_view_toggle": "ui/settings_sections/general_section.json", - "video_section/spacer_26": "ui/settings_sections/general_section.json", - "video_section/damage_bob_option_slider": "ui/settings_sections/general_section.json", - "video_section/spacer_26.5": "ui/settings_sections/general_section.json", - "video_section/super_fancy_panel": "ui/settings_sections/general_section.json", - "video_section/super_fancy_panel/super_fancy_section": "ui/settings_sections/general_section.json", - "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents": "ui/settings_sections/general_section.json", - "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/atmospherics_toggle": "ui/settings_sections/general_section.json", - "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/edge_highlight_toggle": "ui/settings_sections/general_section.json", - "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/bloom_toggle": "ui/settings_sections/general_section.json", - "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/terrain_shadows_toggle": "ui/settings_sections/general_section.json", - "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/super_fancy_water_toggle": "ui/settings_sections/general_section.json", - "video_section/ui_profile_dropdown": "ui/settings_sections/general_section.json", - "video_section/spacer_27": "ui/settings_sections/general_section.json", - "video_section/gui_scale_slider": "ui/settings_sections/general_section.json", - "video_section/gui_scale_slider/option_generic_core": "ui/settings_sections/general_section.json", - "video_section/spacer_28": "ui/settings_sections/general_section.json", - "video_section/gui_accessibility_scaling_toggle": "ui/settings_sections/general_section.json", - "video_section/gui_accessibility_scaling_toggle/option_generic_core": "ui/settings_sections/general_section.json", - "video_section/spacer_29": "ui/settings_sections/general_section.json", - "video_section/option_toggle_improved_input_response": "ui/settings_sections/general_section.json", - "video_section/option_toggle_improved_input_response/option_generic_core": "ui/settings_sections/general_section.json", - "video_section/spacer_30": "ui/settings_sections/general_section.json", - "video_section/frame_pacing_toggle": "ui/settings_sections/general_section.json", - "video_section/frame_pacing_toggle/option_generic_core": "ui/settings_sections/general_section.json", - "video_section/spacer_31": "ui/settings_sections/general_section.json", - "video_section/graphics_mode_switch_toggle": "ui/settings_sections/general_section.json", - "video_section/spacer_32": "ui/settings_sections/general_section.json", - "video_section/upscaling_toggle": "ui/settings_sections/general_section.json", - "video_section/spacer_33": "ui/settings_sections/general_section.json", - "video_section/max_framerate_slider": "ui/settings_sections/general_section.json", - "video_section/spacer_34": "ui/settings_sections/general_section.json", - "video_section/msaa_slider": "ui/settings_sections/general_section.json", - "video_section/spacer_35": "ui/settings_sections/general_section.json", - "video_section/texel_anti_aliasing_toggle": "ui/settings_sections/general_section.json", - "video_section/spacer_36": "ui/settings_sections/general_section.json", - "video_section/reset_button": "ui/settings_sections/general_section.json", - "max_framerate_slider": "ui/settings_sections/general_section.json", - "max_framerate_slider/option_generic_core": "ui/settings_sections/general_section.json", - "msaa_slider": "ui/settings_sections/general_section.json", - "upscaling_toggle": "ui/settings_sections/general_section.json", - "upscaling_toggle/option_generic_core": "ui/settings_sections/general_section.json", - "render_distance_warning_image": "ui/settings_sections/general_section.json", - "render_distance_warning": "ui/settings_sections/general_section.json", - "render_distance_warning/render_distance_warning_image": "ui/settings_sections/general_section.json", - "ui_profile_dropdown_content": "ui/settings_sections/general_section.json", - "split_screen_dropdown_content": "ui/settings_sections/general_section.json", - "third_person_dropdown_content": "ui/settings_sections/general_section.json", - "toast_notification_duration_dropdown_content": "ui/settings_sections/general_section.json", - "chat_message_duration_dropdown_content": "ui/settings_sections/general_section.json", - "file_storage_location_content": "ui/settings_sections/general_section.json", - "background": "ui/settings_sections/general_section.json", - "background/fill": "ui/settings_sections/general_section.json", - "background/border": "ui/settings_sections/general_section.json", - "left_button_label": "ui/settings_sections/general_section.json", - "right_button_label": "ui/settings_sections/general_section.json", - "realms_button_panel": "ui/settings_sections/general_section.json", - "realms_button_panel/pad_0": "ui/settings_sections/general_section.json", - "realms_button_panel/left_button_panel": "ui/settings_sections/general_section.json", - "realms_button_panel/left_button_panel/left_button": "ui/settings_sections/general_section.json", - "realms_button_panel/left_button_panel/left_button_loading": "ui/settings_sections/general_section.json", - "realms_button_panel/pad_1": "ui/settings_sections/general_section.json", - "realms_button_panel/right_button": "ui/settings_sections/general_section.json", - "realms_button_panel/pad_2": "ui/settings_sections/general_section.json", - "consumable_not_extendable": "ui/settings_sections/general_section.json", - "consumable_not_extendable/panel_content": "ui/settings_sections/general_section.json", - "consumable_not_extendable/panel_content/padded_icon_0": "ui/settings_sections/general_section.json", - "consumable_not_extendable/panel_content/limited_status_image": "ui/settings_sections/general_section.json", - "consumable_not_extendable/panel_content/padded_icon_1": "ui/settings_sections/general_section.json", - "consumable_not_extendable/panel_content/label_panel": "ui/settings_sections/general_section.json", - "consumable_not_extendable/panel_content/label_panel/name_label2": "ui/settings_sections/general_section.json", - "possible_store_mismatch": "ui/settings_sections/general_section.json", - "possible_store_mismatch/panel_content": "ui/settings_sections/general_section.json", - "possible_store_mismatch/panel_content/padded_icon_0": "ui/settings_sections/general_section.json", - "possible_store_mismatch/panel_content/limited_status_image": "ui/settings_sections/general_section.json", - "possible_store_mismatch/panel_content/padded_icon_1": "ui/settings_sections/general_section.json", - "possible_store_mismatch/panel_content/label_panel": "ui/settings_sections/general_section.json", - "possible_store_mismatch/panel_content/label_panel/name_label2": "ui/settings_sections/general_section.json", - "realms_subscription_stack": "ui/settings_sections/general_section.json", - "realms_subscription_stack/image_panel": "ui/settings_sections/general_section.json", - "realms_subscription_stack/image_panel/0": "ui/settings_sections/general_section.json", - "realms_subscription_stack/pad": "ui/settings_sections/general_section.json", - "realms_subscription_stack/info": "ui/settings_sections/general_section.json", - "realms_subscription_stack/info/realm_name": "ui/settings_sections/general_section.json", - "realms_subscription_stack/info/realms_desc_label": "ui/settings_sections/general_section.json", - "realms_subscription_stack/info/bottom_pad": "ui/settings_sections/general_section.json", - "realms_subscription_main": "ui/settings_sections/general_section.json", - "realms_subscription_main/black_background": "ui/settings_sections/general_section.json", - "realms_subscription_main/realms_plus_subscription_stack": "ui/settings_sections/general_section.json", - "realms_subscription_main/realms_plus_subscription_stack/realms_plus_subscription_top_stack": "ui/settings_sections/general_section.json", - "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack": "ui/settings_sections/general_section.json", - "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/top_pad": "ui/settings_sections/general_section.json", - "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/realms_plus_bottom_button_panel": "ui/settings_sections/general_section.json", - "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/bottom_pad": "ui/settings_sections/general_section.json", - "realms_subscription_panel": "ui/settings_sections/general_section.json", - "realms_subscription_panel/top_panel": "ui/settings_sections/general_section.json", - "realms_subscription_panel/pad_1": "ui/settings_sections/general_section.json", - "realms_subscription_panel/middle_panel": "ui/settings_sections/general_section.json", - "realms_subscription_panel/middle_panel/black_background": "ui/settings_sections/general_section.json", - "realms_subscription_panel/middle_panel/renews_text": "ui/settings_sections/general_section.json", - "realms_subscription_panel/pad_2": "ui/settings_sections/general_section.json", - "realms_subscription_panel/lower_panel": "ui/settings_sections/general_section.json", - "realms_subscription_panel/lower_panel/black_background": "ui/settings_sections/general_section.json", - "realms_subscription_panel/lower_panel/consumable_not_extendable": "ui/settings_sections/general_section.json", - "realms_subscription_panel/pad_3": "ui/settings_sections/general_section.json", - "realms_subscription_panel/platform_mismatch_container": "ui/settings_sections/general_section.json", - "realms_subscription_panel/platform_mismatch_container/black_background": "ui/settings_sections/general_section.json", - "realms_subscription_panel/platform_mismatch_container/possible_store_mismatch": "ui/settings_sections/general_section.json", - "realms_subscription_panel/pad_4": "ui/settings_sections/general_section.json", - "realms_plus_subscription_panel": "ui/settings_sections/general_section.json", - "additional_subscription_panel": "ui/settings_sections/general_section.json", - "view_subscriptions_button": "ui/settings_sections/general_section.json", - "view_subscriptions_prerelease_section": "ui/settings_sections/general_section.json", - "view_subscriptions_prerelease_section/black_background": "ui/settings_sections/general_section.json", - "view_subscriptions_prerelease_section/renews_text": "ui/settings_sections/general_section.json", - "view_subscriptions_section": "ui/settings_sections/general_section.json", - "view_subscriptions_section/sunsetting_label": "ui/settings_sections/general_section.json", - "view_subscriptions_section/failed_loading_subscriptions_label": "ui/settings_sections/general_section.json", - "view_subscriptions_section/loading_subscriptions_label": "ui/settings_sections/general_section.json", - "view_subscriptions_section/no_active_subscriptions_panel": "ui/settings_sections/general_section.json", - "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions": "ui/settings_sections/general_section.json", - "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions/text": "ui/settings_sections/general_section.json", - "view_subscriptions_section/no_active_subscriptions_panel/background_panel": "ui/settings_sections/general_section.json", - "view_subscriptions_section/realms_plus_header_my_subscriptions": "ui/settings_sections/general_section.json", - "view_subscriptions_section/realms_plus_header_my_subscriptions/text": "ui/settings_sections/general_section.json", - "view_subscriptions_section/realms_plus_subscriptions_grid": "ui/settings_sections/general_section.json", - "view_subscriptions_section/csb_purchased_with_cancel": "ui/settings_sections/general_section.json", - "view_subscriptions_section/csb_purchased_with_buy": "ui/settings_sections/general_section.json", - "view_subscriptions_section/csb_purchased_padding": "ui/settings_sections/general_section.json", - "view_subscriptions_section/platform_mismatch_container": "ui/settings_sections/general_section.json", - "view_subscriptions_section/platform_mismatch_container/black_background": "ui/settings_sections/general_section.json", - "view_subscriptions_section/platform_mismatch_container/possible_store_mismatch": "ui/settings_sections/general_section.json", - "view_subscriptions_section/csb_expiration_container": "ui/settings_sections/general_section.json", - "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container": "ui/settings_sections/general_section.json", - "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration_text_padding": "ui/settings_sections/general_section.json", - "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration": "ui/settings_sections/general_section.json", - "view_subscriptions_section/csb_expiration_container/background_panel": "ui/settings_sections/general_section.json", - "view_subscriptions_section/csb_expiration_and_platform_mismatch_padding": "ui/settings_sections/general_section.json", - "view_subscriptions_section/additional_realms_subscriptions_grid": "ui/settings_sections/general_section.json", - "view_subscriptions_section/settings_additional_subscription_offers_section": "ui/settings_sections/general_section.json", - "view_subscriptions_section/pad_3": "ui/settings_sections/general_section.json", - "settings_additional_subscription_offers_section": "ui/settings_sections/general_section.json", - "settings_additional_subscription_offers_section/active_available_divider": "ui/settings_sections/general_section.json", - "settings_additional_subscription_offers_section/realms_plus_header_label": "ui/settings_sections/general_section.json", - "settings_additional_subscription_offers_section/pad_0": "ui/settings_sections/general_section.json", - "settings_additional_subscription_offers_section/additional_realms_buy_offer": "ui/settings_sections/general_section.json", - "settings_additional_subscription_offers_section/pad_8": "ui/settings_sections/general_section.json", - "settings_additional_subscription_offers_section/csb_buy_panel": "ui/settings_sections/general_section.json", - "accessibility_button": "ui/settings_sections/general_section.json", - "toast_notification_duration_label": "ui/settings_sections/general_section.json", - "toast_notification_duration_info_label": "ui/settings_sections/general_section.json", - "toast_notification_duration_info_edu_label": "ui/settings_sections/general_section.json", - "chat_message_duration_label": "ui/settings_sections/general_section.json", - "chat_message_duration_info_label": "ui/settings_sections/general_section.json", - "accessibility_section": "ui/settings_sections/general_section.json", - "accessibility_section/option_toggle_subtitles": "ui/settings_sections/general_section.json", - "accessibility_section/option_toggle0": "ui/settings_sections/general_section.json", - "accessibility_section/option_toggle1": "ui/settings_sections/general_section.json", - "accessibility_section/option_toggle2": "ui/settings_sections/general_section.json", - "accessibility_section/option_slider_0": "ui/settings_sections/general_section.json", - "accessibility_section/option_toggle3": "ui/settings_sections/general_section.json", - "accessibility_section/hud_text_background_opacity_slider": "ui/settings_sections/general_section.json", - "accessibility_section/chat_opacity_slider": "ui/settings_sections/general_section.json", - "accessibility_section/actionbar_text_background_opacity_slider": "ui/settings_sections/general_section.json", - "accessibility_section/camera_shake_toggle": "ui/settings_sections/general_section.json", - "accessibility_section/hide_endflash_toggle": "ui/settings_sections/general_section.json", - "accessibility_section/enable_dithering_blocks_toggle": "ui/settings_sections/general_section.json", - "accessibility_section/enable_dithering_mobs_toggle": "ui/settings_sections/general_section.json", - "accessibility_section/darkness_slider": "ui/settings_sections/general_section.json", - "accessibility_section/glint_strength_slider": "ui/settings_sections/general_section.json", - "accessibility_section/glint_speed_slider": "ui/settings_sections/general_section.json", - "accessibility_section/toast_notification_duration_options_panel": "ui/settings_sections/general_section.json", - "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_label_wrapper": "ui/settings_sections/general_section.json", - "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_wrapper": "ui/settings_sections/general_section.json", - "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_edu_wrapper": "ui/settings_sections/general_section.json", - "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown_spacer_pre": "ui/settings_sections/general_section.json", - "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown": "ui/settings_sections/general_section.json", - "accessibility_section/chat_message_duration_options_panel": "ui/settings_sections/general_section.json", - "accessibility_section/chat_message_duration_options_panel/chat_message_duration_label_wrapper": "ui/settings_sections/general_section.json", - "accessibility_section/chat_message_duration_options_panel/chat_message_duration_info_label_wrapper": "ui/settings_sections/general_section.json", - "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown_spacer_pre": "ui/settings_sections/general_section.json", - "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown": "ui/settings_sections/general_section.json", - "accessibility_section/gui_scale_slider": "ui/settings_sections/general_section.json", - "accessibility_section/gui_scale_slider/option_generic_core": "ui/settings_sections/general_section.json", - "accessibility_section/gui_accessibility_scaling_toggle": "ui/settings_sections/general_section.json", - "accessibility_section/gui_accessibility_scaling_toggle/option_generic_core": "ui/settings_sections/general_section.json", - "accessibility_section/reset_button": "ui/settings_sections/general_section.json", - "sound_button": "ui/settings_sections/general_section.json", - "sound_section": "ui/settings_sections/general_section.json", - "sound_section/paddingMainVolume": "ui/settings_sections/general_section.json", - "sound_section/option_slider_0": "ui/settings_sections/general_section.json", - "sound_section/paddingDividerAudioSettings": "ui/settings_sections/general_section.json", - "sound_section/dividerAudioSettings": "ui/settings_sections/general_section.json", - "sound_section/dividerAudioSettings/section_divider": "ui/settings_sections/general_section.json", - "sound_section/paddingMusic": "ui/settings_sections/general_section.json", - "sound_section/option_slider_1": "ui/settings_sections/general_section.json", - "sound_section/paddingSound": "ui/settings_sections/general_section.json", - "sound_section/option_slider_2": "ui/settings_sections/general_section.json", - "sound_section/paddingAmbient": "ui/settings_sections/general_section.json", - "sound_section/option_slider_3": "ui/settings_sections/general_section.json", - "sound_section/paddingBlockVolume": "ui/settings_sections/general_section.json", - "sound_section/option_slider_4": "ui/settings_sections/general_section.json", - "sound_section/paddingHostile": "ui/settings_sections/general_section.json", - "sound_section/option_slider_5": "ui/settings_sections/general_section.json", - "sound_section/paddingNeutralVolume": "ui/settings_sections/general_section.json", - "sound_section/option_slider_6": "ui/settings_sections/general_section.json", - "sound_section/paddingPlayervolume": "ui/settings_sections/general_section.json", - "sound_section/option_slider_7": "ui/settings_sections/general_section.json", - "sound_section/paddingRecordVolume": "ui/settings_sections/general_section.json", - "sound_section/option_slider_8": "ui/settings_sections/general_section.json", - "sound_section/paddingWeatherVolume": "ui/settings_sections/general_section.json", - "sound_section/option_slider_9": "ui/settings_sections/general_section.json", - "sound_section/paddingTTSVolume": "ui/settings_sections/general_section.json", - "sound_section/option_slider_10": "ui/settings_sections/general_section.json", - "sound_section/paddingResetVolumes": "ui/settings_sections/general_section.json", - "sound_section/reset_button": "ui/settings_sections/general_section.json", - "sound_section/paddingEndOfList": "ui/settings_sections/general_section.json", - "language_button": "ui/settings_sections/general_section.json", - "language_grid_item": "ui/settings_sections/general_section.json", - "language_section": "ui/settings_sections/general_section.json", - "language_section/language_list_grid": "ui/settings_sections/general_section.json", - "preview_button": "ui/settings_sections/general_section.json", - "preview_section": "ui/settings_sections/general_section.json", - "preview_section/spacer_0": "ui/settings_sections/general_section.json", - "preview_section/generic_label": "ui/settings_sections/general_section.json", - "preview_section/preview_store_launch_app1_button": "ui/settings_sections/general_section.json", - "preview_section/preview_store_launch_app2_button": "ui/settings_sections/general_section.json", - "override_date_panel": "ui/settings_sections/general_section.json", - "override_date_panel/year_text_box": "ui/settings_sections/general_section.json", - "override_date_panel/year_month_slash": "ui/settings_sections/general_section.json", - "override_date_panel/month_text_box": "ui/settings_sections/general_section.json", - "override_date_panel/month_day_slash": "ui/settings_sections/general_section.json", - "override_date_panel/day_text_box": "ui/settings_sections/general_section.json", - "override_date_panel/day_hour_slash": "ui/settings_sections/general_section.json", - "override_date_panel/hour_text_box": "ui/settings_sections/general_section.json", - "override_date_panel/hour_minute_slash": "ui/settings_sections/general_section.json", - "override_date_panel/minute_text_box": "ui/settings_sections/general_section.json", - "timezonetype_dropdown_content": "ui/settings_sections/general_section.json", - "date_options_panel": "ui/settings_sections/general_section.json", - "date_options_panel/padding0": "ui/settings_sections/general_section.json", - "date_options_panel/display_override_datetime_option_toggle": "ui/settings_sections/general_section.json", - "date_options_panel/option_toggle_date_override": "ui/settings_sections/general_section.json", - "date_options_panel/override_date_options_panel": "ui/settings_sections/general_section.json", - "override_date_options_panel": "ui/settings_sections/general_section.json", - "override_date_options_panel/override_date_options_background_panel": "ui/settings_sections/general_section.json", - "override_date_options_panel/override_date_options_background_panel/load_override_date_option_toggle": "ui/settings_sections/general_section.json", - "override_date_options_panel/override_date_options_background_panel/select_dropdown": "ui/settings_sections/general_section.json", - "override_date_options_panel/override_date_options_background_panel/override_date_panel": "ui/settings_sections/general_section.json", - "override_date_options_panel/override_date_options_background_panel/padding1": "ui/settings_sections/general_section.json", - "override_date_options_panel/override_date_options_background_panel/override_time_scale_option": "ui/settings_sections/general_section.json", - "override_date_options_panel/override_date_options_background_panel/reset_time_button": "ui/settings_sections/general_section.json", - "override_date_options_panel/override_date_options_background_panel/padding2": "ui/settings_sections/general_section.json", - "debug_display_logged_error_panel": "ui/settings_sections/general_section.json", - "debug_display_logged_error_panel/debug_display_logged_error_panel_background": "ui/settings_sections/general_section.json", - "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_marketplace": "ui/settings_sections/general_section.json", - "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_ui": "ui/settings_sections/general_section.json", - "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_osi": "ui/settings_sections/general_section.json", - "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_other": "ui/settings_sections/general_section.json", - "debug_display_logged_error_panel/debug_display_logged_error_panel_background/spacer_0": "ui/settings_sections/general_section.json", - "xbox_sandbox_panel": "ui/settings_sections/general_section.json", - "xbox_sandbox_panel/padding0": "ui/settings_sections/general_section.json", - "xbox_sandbox_panel/display_override_xbox_sandbox_toggle_windows": "ui/settings_sections/general_section.json", - "xbox_sandbox_panel/display_override_xbox_sandbox_toggle": "ui/settings_sections/general_section.json", - "xbox_sandbox_panel/override_xbox_options_panel": "ui/settings_sections/general_section.json", - "override_xbox_options_panel": "ui/settings_sections/general_section.json", - "override_xbox_options_panel/override_xbox_options": "ui/settings_sections/general_section.json", - "override_xbox_options_panel/override_xbox_options/option_dropdown_xbox": "ui/settings_sections/general_section.json", - "override_version_options_panel": "ui/settings_sections/general_section.json", - "override_version_options_panel/override_version_panel": "ui/settings_sections/general_section.json", - "override_version_options_panel/override_version_button_panel": "ui/settings_sections/general_section.json", - "override_version_options_panel/override_version_button_panel/update_override_version_button": "ui/settings_sections/general_section.json", - "override_version_options_panel/override_date_panel_bottom_padding": "ui/settings_sections/general_section.json", - "override_version_panel": "ui/settings_sections/general_section.json", - "override_version_panel/major_version_text_box": "ui/settings_sections/general_section.json", - "override_version_panel/first_dot": "ui/settings_sections/general_section.json", - "override_version_panel/minor_version_text_box": "ui/settings_sections/general_section.json", - "override_version_panel/second_dot": "ui/settings_sections/general_section.json", - "override_version_panel/patch_version_text_box": "ui/settings_sections/general_section.json", - "dot_label": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background/option_toggle_treatment_override": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background/spacer_0": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/apply_treatments_button": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/text_edit_treatment": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel/add_button": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/reset_to_default": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/clear_treatments": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel/treatments_label": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1/progress_loading_spinner_1": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background/treatment_grid": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel/treatments_label": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2/progress_loading_spinner_2": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background/unused_treatment_grid": "ui/settings_sections/general_section.json", - "debug_override_treatments_panel/override_treatments_panel_background/spacer_1": "ui/settings_sections/general_section.json", - "debug_override_configurations_panel": "ui/settings_sections/general_section.json", - "debug_override_configurations_panel/override_configurations_panel_background": "ui/settings_sections/general_section.json", - "debug_override_configurations_panel/override_configurations_panel_background/option_toggle_configuration_override": "ui/settings_sections/general_section.json", - "debug_override_configurations_panel/override_configurations_panel_background/spacer_0": "ui/settings_sections/general_section.json", - "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel": "ui/settings_sections/general_section.json", - "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel": "ui/settings_sections/general_section.json", - "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/text_edit_configuration": "ui/settings_sections/general_section.json", - "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel": "ui/settings_sections/general_section.json", - "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel/add_button": "ui/settings_sections/general_section.json", - "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel": "ui/settings_sections/general_section.json", - "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/reset_to_default": "ui/settings_sections/general_section.json", - "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/clear_configurations": "ui/settings_sections/general_section.json", - "debug_override_configurations_panel/override_configurations_panel_background/configuration_grid": "ui/settings_sections/general_section.json", - "debug_override_realms_features_panel": "ui/settings_sections/general_section.json", - "debug_override_realms_features_panel/override_realms_features_panel_background": "ui/settings_sections/general_section.json", - "debug_override_realms_features_panel/override_realms_features_panel_background/option_toggle_realms_feature_override": "ui/settings_sections/general_section.json", - "debug_override_realms_features_panel/override_realms_features_panel_background/spacer_0": "ui/settings_sections/general_section.json", - "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel": "ui/settings_sections/general_section.json", - "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel": "ui/settings_sections/general_section.json", - "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/text_edit_realms_features": "ui/settings_sections/general_section.json", - "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/add_button_panel": "ui/settings_sections/general_section.json", - "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/add_button_panel/add_button": "ui/settings_sections/general_section.json", - "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel": "ui/settings_sections/general_section.json", - "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/reset_to_default": "ui/settings_sections/general_section.json", - "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/clear_realms_features": "ui/settings_sections/general_section.json", - "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel": "ui/settings_sections/general_section.json", - "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel/realms_features_label": "ui/settings_sections/general_section.json", - "debug_override_realms_features_panel/override_realms_features_panel_background/realms_features_grid": "ui/settings_sections/general_section.json", - "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel": "ui/settings_sections/general_section.json", - "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel/realms_features_label": "ui/settings_sections/general_section.json", - "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_grid": "ui/settings_sections/general_section.json", - "configuration_grid_item": "ui/settings_sections/general_section.json", - "configuration_grid_item/configuration_id_panel": "ui/settings_sections/general_section.json", - "configuration_grid_item/configuration_id_panel/configuration_id": "ui/settings_sections/general_section.json", - "configuration_grid_item/remove_button": "ui/settings_sections/general_section.json", - "remove_configuration_icon": "ui/settings_sections/general_section.json", - "realms_feature_grid_item": "ui/settings_sections/general_section.json", - "realms_feature_grid_item/realms_feature_id_panel": "ui/settings_sections/general_section.json", - "realms_feature_grid_item/realms_feature_id_panel/realms_feature_id": "ui/settings_sections/general_section.json", - "realms_feature_grid_item/disable_button": "ui/settings_sections/general_section.json", - "disable_realms_feature_icon": "ui/settings_sections/general_section.json", - "unused_realms_feature_grid_item": "ui/settings_sections/general_section.json", - "unused_realms_feature_grid_item/unused_realms_feature_id_panel": "ui/settings_sections/general_section.json", - "unused_realms_feature_grid_item/unused_realms_feature_id_panel/unused_realms_feature_id": "ui/settings_sections/general_section.json", - "unused_realms_feature_grid_item/enable_button": "ui/settings_sections/general_section.json", - "enable_realms_feature_icon": "ui/settings_sections/general_section.json", - "treatment_grid_item": "ui/settings_sections/general_section.json", - "treatment_grid_item/treatment_id_panel": "ui/settings_sections/general_section.json", - "treatment_grid_item/treatment_id_panel/treatment_id": "ui/settings_sections/general_section.json", - "treatment_grid_item/remove_button": "ui/settings_sections/general_section.json", - "remove_treatment_icon": "ui/settings_sections/general_section.json", - "unused_treatment_grid_item": "ui/settings_sections/general_section.json", - "unused_treatment_grid_item/unused_treatment_id_panel": "ui/settings_sections/general_section.json", - "unused_treatment_grid_item/unused_treatment_id_panel/unused_treatment_id": "ui/settings_sections/general_section.json", - "unused_treatment_grid_item/add_button": "ui/settings_sections/general_section.json", - "add_treatment_icon": "ui/settings_sections/general_section.json", - "debug_select_windows_store_panel": "ui/settings_sections/general_section.json", - "debug_select_windows_store_panel/select_store_dropdown": "ui/settings_sections/general_section.json", - "debug_select_windows_store_panel/stores_label": "ui/settings_sections/general_section.json", - "debug_select_windows_store_panel/sandbox_label": "ui/settings_sections/general_section.json", - "windows_store_dropdown_content": "ui/settings_sections/general_section.json", - "mock_http_panel": "ui/settings_sections/general_section.json", - "mock_http_panel/display_mock_http_panel_toggle": "ui/settings_sections/general_section.json", - "mock_http_panel/mock_http_panel_content": "ui/settings_sections/general_section.json", - "mock_http_panel_content": "ui/settings_sections/general_section.json", - "mock_http_panel_content/mock_http_panel_background": "ui/settings_sections/general_section.json", - "mock_http_panel_content/mock_http_panel_background/add_mock_rules_button": "ui/settings_sections/general_section.json", - "mock_http_panel_content/mock_http_panel_background/remove_all_mock_rules_button": "ui/settings_sections/general_section.json", - "mock_http_panel_content/mock_http_panel_background/active_rules_label": "ui/settings_sections/general_section.json", - "mock_http_panel_content/mock_http_panel_background/rule_list": "ui/settings_sections/general_section.json", - "mock_http_panel_content/mock_http_panel_background/divider": "ui/settings_sections/general_section.json", - "mock_http_rule_list": "ui/settings_sections/general_section.json", - "mock_http_rule": "ui/settings_sections/general_section.json", - "mock_http_rule/rule_details_label": "ui/settings_sections/general_section.json", - "mock_http_rule/rule_spacer": "ui/settings_sections/general_section.json", - "automation_button": "ui/settings_sections/general_section.json", - "automation_section": "ui/settings_sections/general_section.json", - "automation_section/automation_tab_label": "ui/settings_sections/general_section.json", - "automation_section/padding": "ui/settings_sections/general_section.json", - "automation_section/automation_test_asset_sas_text_box": "ui/settings_sections/general_section.json", - "automation_section/automation_functional_test_tags_text_box": "ui/settings_sections/general_section.json", - "automation_section/automation_server_test_tags_text_box": "ui/settings_sections/general_section.json", - "automation_section/automation_unit_test_tags_text_box": "ui/settings_sections/general_section.json", - "automation_section/automation_broken_functional_test_tags_text_box": "ui/settings_sections/general_section.json", - "automation_section/automation_broken_server_test_tags_text_box": "ui/settings_sections/general_section.json", - "automation_section/automation_broken_unit_test_tags_text_box": "ui/settings_sections/general_section.json", - "automation_section/automation_repeat_count_text_box": "ui/settings_sections/general_section.json", - "automation_section/automation_soak_test_duration_minutes_text_box": "ui/settings_sections/general_section.json", - "automation_section/automation_repeat_failures_only_toggle": "ui/settings_sections/general_section.json", - "automation_section/automation_run_entire_server_test_group": "ui/settings_sections/general_section.json", - "automation_section/automation_testbuild_id_text_box": "ui/settings_sections/general_section.json", - "automation_section/automation_functional_test_block_input_toggle": "ui/settings_sections/general_section.json", - "automation_section/automation_server_test_assert_on_level_diff_toggle": "ui/settings_sections/general_section.json", - "discovery_debug_button": "ui/settings_sections/general_section.json", - "discovery_debug_section": "ui/settings_sections/general_section.json", - "discovery_debug_section/option_discovery_environment": "ui/settings_sections/general_section.json", - "discovery_debug_section/debug_override_discovery_panel": "ui/settings_sections/general_section.json", - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background": "ui/settings_sections/general_section.json", - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/option_toggle_discovery_override": "ui/settings_sections/general_section.json", - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/spacer_0": "ui/settings_sections/general_section.json", - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel": "ui/settings_sections/general_section.json", - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_name": "ui/settings_sections/general_section.json", - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_type": "ui/settings_sections/general_section.json", - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_branch": "ui/settings_sections/general_section.json", - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_custom": "ui/settings_sections/general_section.json", - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel": "ui/settings_sections/general_section.json", - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/reset_endpoint_override": "ui/settings_sections/general_section.json", - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/apply_endpoint_override": "ui/settings_sections/general_section.json", - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_1": "ui/settings_sections/general_section.json", - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/active_service_overrides_label": "ui/settings_sections/general_section.json", - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_2": "ui/settings_sections/general_section.json", - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/reset_all_endpoint_overrides_button": "ui/settings_sections/general_section.json", - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/discovery_overrides_do_not_save_label": "ui/settings_sections/general_section.json", - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_3": "ui/settings_sections/general_section.json", - "debug_button": "ui/settings_sections/general_section.json", - "feature_toggle": "ui/settings_sections/general_section.json", - "debug_section": "ui/settings_sections/general_section.json", - "debug_section/options_for_qa_convenience": "ui/settings_sections/general_section.json", - "debug_section/options_for_qa_convenience_spacer": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_dev_console_button_0": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_assertions_debug_break": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_assertions_show_dialog": "ui/settings_sections/general_section.json", - "debug_section/option_dev_show_display_logged_error": "ui/settings_sections/general_section.json", - "debug_section/display_logged_error_panel": "ui/settings_sections/general_section.json", - "debug_section/option_dev_force_trial_mode": "ui/settings_sections/general_section.json", - "debug_section/option_dev_force_trial_mode_spacer": "ui/settings_sections/general_section.json", - "debug_section/debug_overlay_pages_label": "ui/settings_sections/general_section.json", - "debug_section/debug_overlay_button_panel": "ui/settings_sections/general_section.json", - "debug_section/debug_overlay_button_panel/debug_overlay_previous_button": "ui/settings_sections/general_section.json", - "debug_section/debug_overlay_button_panel/debug_overlay_next_button": "ui/settings_sections/general_section.json", - "debug_section/pre_feature_toggles_label_spacer": "ui/settings_sections/general_section.json", - "debug_section/feature_toggles_label": "ui/settings_sections/general_section.json", - "debug_section/feature_toggles_label_spacer": "ui/settings_sections/general_section.json", - "debug_section/feature_toggles": "ui/settings_sections/general_section.json", - "debug_section/end_of_feature_toggles_label_spacer": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_dev_disable_lan_signaling": "ui/settings_sections/general_section.json", - "debug_section/option_dropdown_nethernet_logging_verbosity": "ui/settings_sections/general_section.json", - "debug_section/option_dropdown_http_logging_verbosity": "ui/settings_sections/general_section.json", - "debug_section/option_dropdown_xsapi_logging_verbosity": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_remote_imgui": "ui/settings_sections/general_section.json", - "debug_section/option_dropdown_0": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_extra_debug_hud_info": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_show_test_running_text": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_0_1": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_0_2": "ui/settings_sections/general_section.json", - "debug_section/option_slider_0": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_3": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_4": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_5": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_6": "ui/settings_sections/general_section.json", - "debug_section/option_dropdown_server_chunk_map": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_9": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_disable_render_terrain": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_disable_render_entities": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_disable_render_blockentities": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_disable_render_particles": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_disable_render_sky": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_disable_render_weather": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_disable_render_hud": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_disable_render_item_in_hand": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_disable_render_main_menu_cubemap": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_disable_render_main_menu_paperdoll_animation": "ui/settings_sections/general_section.json", - "debug_section/leak_memory": "ui/settings_sections/general_section.json", - "debug_section/log_area": "ui/settings_sections/general_section.json", - "debug_section/log_priority": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_build_info": "ui/settings_sections/general_section.json", - "debug_section/option_perf_turtle": "ui/settings_sections/general_section.json", - "debug_section/option_default_profiling_option": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_7": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_8": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_game_tip": "ui/settings_sections/general_section.json", - "debug_section/option_toggle_10": "ui/settings_sections/general_section.json", - "debug_section/dev_disable_client_blob_cache_toggle": "ui/settings_sections/general_section.json", - "debug_section/dev_force_client_blob_cache_toggle": "ui/settings_sections/general_section.json", - "debug_section/devquality_dropdown": "ui/settings_sections/general_section.json", - "debug_section/dev_add_http_delay_seconds": "ui/settings_sections/general_section.json", - "debug_section/dev_show_latency_graph_toggle": "ui/settings_sections/general_section.json", - "debug_section/xbox_sandbox_panel": "ui/settings_sections/general_section.json", - "debug_section/multithreaded_rendering_toggle": "ui/settings_sections/general_section.json", - "debug_section/filewatcher_rendering_toggle": "ui/settings_sections/general_section.json", - "debug_section/enable_texture_hot_reloader_toggle": "ui/settings_sections/general_section.json", - "debug_section/mock_http_panel": "ui/settings_sections/general_section.json", - "debug_section/vsync_dropdown": "ui/settings_sections/general_section.json", - "debug_section/sunsetting_use_overrides_toggle": "ui/settings_sections/general_section.json", - "debug_section/padding_sunsetting": "ui/settings_sections/general_section.json", - "debug_section/sunseting_state_toggle": "ui/settings_sections/general_section.json", - "debug_section/sunsetting_tier_dropdown": "ui/settings_sections/general_section.json", - "debug_section/padding_sunsetting_2": "ui/settings_sections/general_section.json", - "debug_section/padding1": "ui/settings_sections/general_section.json", - "debug_section/copy_internal_settings_folder_to_external": "ui/settings_sections/general_section.json", - "debug_section/padding_reset_day_one": "ui/settings_sections/general_section.json", - "debug_section/reset_new_player_flow": "ui/settings_sections/general_section.json", - "debug_section/reset_day_one_experience": "ui/settings_sections/general_section.json", - "debug_section/option_text_edit_1": "ui/settings_sections/general_section.json", - "debug_section/option_text_edit_2": "ui/settings_sections/general_section.json", - "debug_section/option_text_edit_3": "ui/settings_sections/general_section.json", - "debug_section/reset_authentication_option": "ui/settings_sections/general_section.json", - "debug_section/reset_report_timer_option": "ui/settings_sections/general_section.json", - "debug_section/reset_online_safety_option": "ui/settings_sections/general_section.json", - "debug_section/reset_low_ping_warning_option": "ui/settings_sections/general_section.json", - "debug_section/reset_ip_safety_option": "ui/settings_sections/general_section.json", - "debug_section/padding_graphics_options": "ui/settings_sections/general_section.json", - "debug_section/option_shadersdk_service_ip": "ui/settings_sections/general_section.json", - "debug_section/option_shadersdk_service_port": "ui/settings_sections/general_section.json", - "debug_section/option_shadersdk_target_port": "ui/settings_sections/general_section.json", - "debug_section/padding_graphics_buttons": "ui/settings_sections/general_section.json", - "debug_section/trigger_graphics_device_loss": "ui/settings_sections/general_section.json", - "debug_section/allocate_texture_handles": "ui/settings_sections/general_section.json", - "debug_section/padding_deferred_debug": "ui/settings_sections/general_section.json", - "debug_section/deferred_platform_override": "ui/settings_sections/general_section.json", - "realms_debug_button": "ui/settings_sections/general_section.json", - "realms_debug_section": "ui/settings_sections/general_section.json", - "realms_debug_section/realms_menu_title": "ui/settings_sections/general_section.json", - "realms_debug_section/realms_title_spacer": "ui/settings_sections/general_section.json", - "realms_debug_section/feature_toggles_label": "ui/settings_sections/general_section.json", - "realms_debug_section/feature_toggles_label_spacer": "ui/settings_sections/general_section.json", - "realms_debug_section/feature_toggles": "ui/settings_sections/general_section.json", - "realms_debug_section/end_of_feature_toggles_label_spacer": "ui/settings_sections/general_section.json", - "realms_debug_section/realms_dev_toggles_title": "ui/settings_sections/general_section.json", - "realms_debug_section/realms_dev_toggle_spacer": "ui/settings_sections/general_section.json", - "realms_debug_section/realms_without_purchase_toggle": "ui/settings_sections/general_section.json", - "realms_debug_section/realms_debug_options_title": "ui/settings_sections/general_section.json", - "realms_debug_section/realms_debug_options_spacer": "ui/settings_sections/general_section.json", - "realms_debug_section/option_dropdown_1": "ui/settings_sections/general_section.json", - "realms_debug_section/option_dropdown_2": "ui/settings_sections/general_section.json", - "realms_debug_section/option_text_edit_0": "ui/settings_sections/general_section.json", - "realms_debug_section/realms_features_override_panel": "ui/settings_sections/general_section.json", - "realms_debug_section/realms_features_override_panel/option_toggle_realms_features_override": "ui/settings_sections/general_section.json", - "realms_debug_section/realms_features_override_panel/override_realms_features_panel": "ui/settings_sections/general_section.json", - "realms_debug_section/realms_debug_options_spacer_2": "ui/settings_sections/general_section.json", - "realms_feature_toggle": "ui/settings_sections/general_section.json", - "marketplace_debug_button": "ui/settings_sections/general_section.json", - "marketplace_debug_section": "ui/settings_sections/general_section.json", - "marketplace_debug_section/marketplace_feature_toggles_label": "ui/settings_sections/general_section.json", - "marketplace_debug_section/marketplace_feature_toggles_label_spacer": "ui/settings_sections/general_section.json", - "marketplace_debug_section/marketplace_feature_toggles": "ui/settings_sections/general_section.json", - "marketplace_debug_section/playfab_token_refresh_threshold": "ui/settings_sections/general_section.json", - "marketplace_debug_section/option_dropdown_skin_rotation_speed": "ui/settings_sections/general_section.json", - "marketplace_debug_section/option_toggle_all_skins_rotate": "ui/settings_sections/general_section.json", - "marketplace_debug_section/option_toggle_display_marketplace_document_id": "ui/settings_sections/general_section.json", - "marketplace_debug_section/option_toggle_display_platform_offer_check": "ui/settings_sections/general_section.json", - "marketplace_debug_section/version_options_panel": "ui/settings_sections/general_section.json", - "marketplace_debug_section/version_options_panel/option_version_override": "ui/settings_sections/general_section.json", - "marketplace_debug_section/version_options_panel/override_version_options_panel": "ui/settings_sections/general_section.json", - "marketplace_debug_section/select_windows_store_panel": "ui/settings_sections/general_section.json", - "marketplace_debug_section/date_options_panel": "ui/settings_sections/general_section.json", - "marketplace_debug_section/option_clear_store_cache_button": "ui/settings_sections/general_section.json", - "marketplace_debug_section/option_clear_all_cache_button": "ui/settings_sections/general_section.json", - "marketplace_debug_section/option_delete_all_personas_button": "ui/settings_sections/general_section.json", - "marketplace_debug_section/option_delete_legacy_personas_button": "ui/settings_sections/general_section.json", - "marketplace_debug_section/padding2": "ui/settings_sections/general_section.json", - "marketplace_debug_section/enable_coin_debug_switch_toggle": "ui/settings_sections/general_section.json", - "marketplace_debug_section/add_500_coins": "ui/settings_sections/general_section.json", - "marketplace_debug_section/add_100000_coins": "ui/settings_sections/general_section.json", - "marketplace_debug_section/padding3": "ui/settings_sections/general_section.json", - "marketplace_debug_section/reset_entitlements": "ui/settings_sections/general_section.json", - "marketplace_debug_section/reset_wallet": "ui/settings_sections/general_section.json", - "marketplace_feature_toggle": "ui/settings_sections/general_section.json", - "gatherings_debug_button": "ui/settings_sections/general_section.json", - "gatherings_debug_section": "ui/settings_sections/general_section.json", - "gatherings_debug_section/refresh_gatherings_button": "ui/settings_sections/general_section.json", - "gatherings_debug_section/spacer_1": "ui/settings_sections/general_section.json", - "gatherings_debug_section/clear_system_service_pack_cache_button": "ui/settings_sections/general_section.json", - "gatherings_debug_section/spacer_2": "ui/settings_sections/general_section.json", - "gatherings_debug_section/active_gathering_label": "ui/settings_sections/general_section.json", - "gatherings_debug_section/spacer_3": "ui/settings_sections/general_section.json", - "gatherings_debug_section/text_edit_filter_gatherings": "ui/settings_sections/general_section.json", - "gatherings_debug_section/spacer_4": "ui/settings_sections/general_section.json", - "gatherings_debug_section/available_gatherings_section": "ui/settings_sections/general_section.json", - "gathering_grid_item_content": "ui/settings_sections/general_section.json", - "gathering_grid_item_content/gathering_name": "ui/settings_sections/general_section.json", - "gathering_grid_item_content/gathering_uuid": "ui/settings_sections/general_section.json", - "gathering_item_template": "ui/settings_sections/general_section.json", - "gathering_item_template/gathering_item_button": "ui/settings_sections/general_section.json", - "available_gatherings_grid": "ui/settings_sections/general_section.json", - "available_gatherings_panel": "ui/settings_sections/general_section.json", - "available_gatherings_panel/available_label": "ui/settings_sections/general_section.json", - "available_gatherings_panel/gatherings_grid": "ui/settings_sections/general_section.json", - "available_gatherings_panel/spacing_gap": "ui/settings_sections/general_section.json", - "available_gatherings_section": "ui/settings_sections/general_section.json", - "available_gatherings_section/available_gatherings_panel": "ui/settings_sections/general_section.json", - "ui_debug_button": "ui/settings_sections/general_section.json", - "ui_feature_toggle": "ui/settings_sections/general_section.json", - "edu_debug_button": "ui/settings_sections/general_section.json", - "edu_feature_toggle": "ui/settings_sections/general_section.json", - "new_create_world_grid_item": "ui/settings_sections/general_section.json", - "new_edu_create_world_screen_grid_item": "ui/settings_sections/general_section.json", - "new_play_screen_grid_item": "ui/settings_sections/general_section.json", - "new_edit_world_screen_grid_item": "ui/settings_sections/general_section.json", - "new_player_permissions_screen_grid_item": "ui/settings_sections/general_section.json", - "new_send_invites_screen_grid_item": "ui/settings_sections/general_section.json", - "new_death_grid_item": "ui/settings_sections/general_section.json", - "new_bed_grid_item": "ui/settings_sections/general_section.json", - "ore_ui_gameplay_ui_grid_item": "ui/settings_sections/general_section.json", - "new_settings_screen_grid_item": "ui/settings_sections/general_section.json", - "ui_debug_section": "ui/settings_sections/general_section.json", - "ui_debug_section/ui_feature_toggles_label": "ui/settings_sections/general_section.json", - "ui_debug_section/ui_feature_toggles_info_label": "ui/settings_sections/general_section.json", - "ui_debug_section/ui_feature_toggles_label_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/ui_feature_toggles": "ui/settings_sections/general_section.json", - "ui_debug_section/end_of_ui_feature_toggles_label_divider": "ui/settings_sections/general_section.json", - "ui_debug_section/end_of_ui_feature_toggles_label_divider/section_divider": "ui/settings_sections/general_section.json", - "ui_debug_section/end_of_ui_feature_toggles_label_divider_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/end_of_ui_feature_toggles_label_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/screen_override_label": "ui/settings_sections/general_section.json", - "ui_debug_section/screen_override_info_label": "ui/settings_sections/general_section.json", - "ui_debug_section/screen_override_label_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/new_edu_create_world_screen_radio_label": "ui/settings_sections/general_section.json", - "ui_debug_section/new_edu_create_world_screen_radio_label_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/new_edu_create_world_screen_radio_button": "ui/settings_sections/general_section.json", - "ui_debug_section/new_edu_create_world_screen_radio_button_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/new_play_screen_radio_label": "ui/settings_sections/general_section.json", - "ui_debug_section/new_play_screen_radio_label_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/new_play_screen_radio_button": "ui/settings_sections/general_section.json", - "ui_debug_section/new_play_screen_radio_button_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/new_edit_world_screen_radio_label": "ui/settings_sections/general_section.json", - "ui_debug_section/new_edit_world_screen_radio_label_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/new_edit_world_screen_radio_button": "ui/settings_sections/general_section.json", - "ui_debug_section/new_edit_world_screen_radio_button_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/new_send_invites_radio_label": "ui/settings_sections/general_section.json", - "ui_debug_section/new_send_invites_screen_radio_label_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/new_send_invites_screen_radio_button": "ui/settings_sections/general_section.json", - "ui_debug_section/new_send_invites_screen_radio_button_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/new_death_screen_radio_label": "ui/settings_sections/general_section.json", - "ui_debug_section/new_death_screen_radio_label_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/new_death_screen_radio_button": "ui/settings_sections/general_section.json", - "ui_debug_section/new_death_screen_radio_button_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/new_bed_screen_radio_label": "ui/settings_sections/general_section.json", - "ui_debug_section/new_bed_screen_radio_label_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/new_bed_screen_radio_button": "ui/settings_sections/general_section.json", - "ui_debug_section/new_bed_screen_radio_button_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/ore_ui_gameplay_ui_radio_label": "ui/settings_sections/general_section.json", - "ui_debug_section/ore_ui_gameplay_ui_radio_label_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/ore_ui_gameplay_ui_radio_button": "ui/settings_sections/general_section.json", - "ui_debug_section/ore_ui_gameplay_ui_radio_button_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/end_of_ui_screen_override_divider": "ui/settings_sections/general_section.json", - "ui_debug_section/end_of_ui_screen_override_divider/section_divider": "ui/settings_sections/general_section.json", - "ui_debug_section/end_of_ui_sceen_override_divider_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/new_settings_screen_radio_label": "ui/settings_sections/general_section.json", - "ui_debug_section/new_settings_screen_radio_label_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/new_settings_screen_radio_button": "ui/settings_sections/general_section.json", - "ui_debug_section/new_settings_screen_radio_button_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/screen_opt_in_options_label": "ui/settings_sections/general_section.json", - "ui_debug_section/screen_opt_in_info_label": "ui/settings_sections/general_section.json", - "ui_debug_section/screen_opt_in_options_label_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/end_of_ui_screen_opt_in_divider": "ui/settings_sections/general_section.json", - "ui_debug_section/end_of_ui_screen_opt_in_divider/section_divider": "ui/settings_sections/general_section.json", - "ui_debug_section/end_of_ui_sceen_opt_in_divider_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/other_ui_options_label": "ui/settings_sections/general_section.json", - "ui_debug_section/other_ui_options_label_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/option_toggle_default_font_override": "ui/settings_sections/general_section.json", - "ui_debug_section/option_toggle_dev_show_tcui_replacement": "ui/settings_sections/general_section.json", - "ui_debug_section/option_toggle_use_mobile_data_blocked_modal": "ui/settings_sections/general_section.json", - "ui_debug_section/ui_feature_toggles_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/option_show_touch_control_selection_screen": "ui/settings_sections/general_section.json", - "ui_debug_section/option_reset_on_start": "ui/settings_sections/general_section.json", - "ui_debug_section/option_slider_drag_dwell": "ui/settings_sections/general_section.json", - "ui_debug_section/option_slider_stack_splitting": "ui/settings_sections/general_section.json", - "ui_debug_section/reset_render_distance_warning_modal_label": "ui/settings_sections/general_section.json", - "ui_debug_section/reset_render_distance_warning_modal_label_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/reset_render_distance_warning_modal": "ui/settings_sections/general_section.json", - "ui_debug_section/reset_render_distance_warning_modal_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/ore_ui_developer_pages_divider": "ui/settings_sections/general_section.json", - "ui_debug_section/ore_ui_developer_pages_divider/section_divider": "ui/settings_sections/general_section.json", - "ui_debug_section/ore_ui_developer_pages_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/open_ore_ui_label": "ui/settings_sections/general_section.json", - "ui_debug_section/open_ore_ui_info_label": "ui/settings_sections/general_section.json", - "ui_debug_section/open_ore_ui_label_spacer": "ui/settings_sections/general_section.json", - "ui_debug_section/open_ore_ui_docs": "ui/settings_sections/general_section.json", - "ui_debug_section/open_ore_ui_tests": "ui/settings_sections/general_section.json", - "ui_debug_section/open_ore_ui_perf": "ui/settings_sections/general_section.json", - "ui_debug_section/open_ore_ui_test_modal": "ui/settings_sections/general_section.json", - "ui_debug_section/open_ore_ui_tests_spacer": "ui/settings_sections/general_section.json", - "edu_debug_section": "ui/settings_sections/general_section.json", - "edu_debug_section/edu_feature_toggles_label": "ui/settings_sections/general_section.json", - "edu_debug_section/edu_feature_toggles_label_spacer": "ui/settings_sections/general_section.json", - "edu_debug_section/edu_demo": "ui/settings_sections/general_section.json", - "edu_debug_section/edu_ad_debug_panel": "ui/settings_sections/general_section.json", - "edu_debug_section/edu_ad_token_refresh_threshold": "ui/settings_sections/general_section.json", - "edu_debug_section/edu_ad_max_signin_token_refresh": "ui/settings_sections/general_section.json", - "edu_debug_section/edu_ad_max_graph_token_refresh": "ui/settings_sections/general_section.json", - "edu_debug_section/edu_environment_divider": "ui/settings_sections/general_section.json", - "edu_debug_section/edu_environment_divider/section_divider": "ui/settings_sections/general_section.json", - "edu_debug_section/edu_environment_spacer": "ui/settings_sections/general_section.json", - "edu_debug_section/edu_env_dropdown": "ui/settings_sections/general_section.json", - "flighting_debug_button": "ui/settings_sections/general_section.json", - "flighting_debug_section": "ui/settings_sections/general_section.json", - "flighting_debug_section/treatment_override_panel": "ui/settings_sections/general_section.json", - "flighting_debug_section/treatment_override_panel/option_toggle_treatment_override": "ui/settings_sections/general_section.json", - "flighting_debug_section/treatment_override_panel/override_treatments_panel": "ui/settings_sections/general_section.json", - "flighting_debug_section/configuration_override_panel": "ui/settings_sections/general_section.json", - "flighting_debug_section/configuration_override_panel/option_toggle_configuration_override": "ui/settings_sections/general_section.json", - "flighting_debug_section/configuration_override_panel/override_configurations_panel": "ui/settings_sections/general_section.json", - "how_to_play_button": "ui/settings_sections/general_section.json", - "how_to_play_section": "ui/settings_sections/general_section.json", - "how_to_play_section/spacer_0": "ui/settings_sections/general_section.json", - "how_to_play_section/generic_label": "ui/settings_sections/general_section.json", - "how_to_play_section/spacer_1": "ui/settings_sections/general_section.json", - "how_to_play_section/gamepad_helper_label": "ui/settings_sections/general_section.json", - "dev_xbox_environment_dropdown_content": "ui/settings_sections/general_section.json", - "dev_discovery_environment_dropdown_content": "ui/settings_sections/general_section.json", - "dev_service_override_type_dropdown_content": "ui/settings_sections/general_section.json", - "dev_realms_environment_dropdown_content": "ui/settings_sections/general_section.json", - "dev_realms_sku_dropdown_content": "ui/settings_sections/general_section.json", - "default_profiling_group_dropdown_content": "ui/settings_sections/general_section.json", - "dev_nethernet_logging_verbosity_dropdown_content": "ui/settings_sections/general_section.json", - "dev_http_logging_verbosity_dropdown_content": "ui/settings_sections/general_section.json", - "dev_xsapi_logging_verbosity_dropdown_content": "ui/settings_sections/general_section.json", - "dev_debug_speed_multiplier_options": "ui/settings_sections/general_section.json", - "dev_debug_hud_dropdown_content": "ui/settings_sections/general_section.json", - "dev_chunkMapMode_content": "ui/settings_sections/general_section.json", - "dev_quality_dropdown_content": "ui/settings_sections/general_section.json", - "vysnc_dropdown_content": "ui/settings_sections/general_section.json", - "deferred_platform_override_dropdown_content": "ui/settings_sections/general_section.json", - "dev_education_environment_dropdown_content": "ui/settings_sections/general_section.json", - "dev_sunsetting_tier_dropdown_content": "ui/settings_sections/general_section.json", - "graphics_api_dropdown_content": "ui/settings_sections/general_section.json", - "graphics_mode_dropdown_content": "ui/settings_sections/general_section.json", - "upscaling_mode_dropdown_content": "ui/settings_sections/general_section.json", - "advanced_graphics_options_button_content": "ui/settings_sections/general_section.json", - "advanced_graphics_options_button_content/advanced_graphics_options_label": "ui/settings_sections/general_section.json", - "advanced_graphics_options_button_content/fill_pad": "ui/settings_sections/general_section.json", - "advanced_graphics_options_button_content/plus_panel": "ui/settings_sections/general_section.json", - "advanced_graphics_options_button_content/plus_panel/plus": "ui/settings_sections/general_section.json", - "advanced_graphics_options_button_content/minus_panel": "ui/settings_sections/general_section.json", - "advanced_graphics_options_button_content/minus_panel/minus": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/spacer_0": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/gamma_calibration": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/spacer_1": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/max_framerate_slider": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/spacer_2": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/msaa_slider": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/spacer_3": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/shadow_quality_slider": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/spacer_4": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/point_light_shadow_quality_slider": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/spacer_5": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/point_light_loding_quality_slider": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/spacer_6": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/cloud_quality_slider": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/spacer_7": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/volumetric_fog_quality_slider": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/spacer_8": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/reflections_quality_slider": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/spacer_9": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/bloom_strength": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/spacer_10": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/upscaling_toggle": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/spacer_11": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/upscaling_mode": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/spacer_12": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/upscaling_percentage": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/fancy_clouds_toggle": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/spacer_13": "ui/settings_sections/general_section.json", - "advanced_graphics_options_section/smooth_lighting_toggle": "ui/settings_sections/general_section.json", - }, - "realms_world_section": { - "realm_name_edit": "ui/settings_sections/realms_world_section.json", - "world_name_edit": "ui/settings_sections/realms_world_section.json", - "realm_description_edit": "ui/settings_sections/realms_world_section.json", - "download_world_button": "ui/settings_sections/realms_world_section.json", - "upload_world_button": "ui/settings_sections/realms_world_section.json", - "reset_world_button": "ui/settings_sections/realms_world_section.json", - "manage_feed_button": "ui/settings_sections/realms_world_section.json", - "club_info_label": "ui/settings_sections/realms_world_section.json", - "difficulty_dropdown": "ui/settings_sections/realms_world_section.json", - "game_mode_dropdown": "ui/settings_sections/realms_world_section.json", - "panel_content": "ui/settings_sections/realms_world_section.json", - "panel_content/new_edit_world_opt_in_panel": "ui/settings_sections/realms_world_section.json", - "panel_content/new_edit_world_opt_in_panel/panel_title": "ui/settings_sections/realms_world_section.json", - "panel_content/new_edit_world_opt_in_panel/panel_text": "ui/settings_sections/realms_world_section.json", - "panel_content/new_edit_world_opt_in_panel/opt_in_button": "ui/settings_sections/realms_world_section.json", - "panel_content/new_edit_world_opt_in_divider": "ui/settings_sections/realms_world_section.json", - "panel_content/new_edit_world_opt_in_divider/section_divider": "ui/settings_sections/realms_world_section.json", - "panel_content/option_info_label": "ui/settings_sections/realms_world_section.json", - "panel_content/hardcore_info_label": "ui/settings_sections/realms_world_section.json", - "panel_content/realm_name_edit": "ui/settings_sections/realms_world_section.json", - "panel_content/world_name_edit": "ui/settings_sections/realms_world_section.json", - "panel_content/realm_description_edit": "ui/settings_sections/realms_world_section.json", - "panel_content/difficulty_dropdown": "ui/settings_sections/realms_world_section.json", - "panel_content/game_mode_dropdown": "ui/settings_sections/realms_world_section.json", - "panel_content/is_hardcore_toggle": "ui/settings_sections/realms_world_section.json", - "panel_content/world_options_label": "ui/settings_sections/realms_world_section.json", - "panel_content/pvp_toggle": "ui/settings_sections/realms_world_section.json", - "panel_content/show_coordinates_toggle": "ui/settings_sections/realms_world_section.json", - "panel_content/locator_bar_toggle": "ui/settings_sections/realms_world_section.json", - "panel_content/show_days_played_toggle": "ui/settings_sections/realms_world_section.json", - "panel_content/fire_spreads_toggle": "ui/settings_sections/realms_world_section.json", - "panel_content/recipes_unlock_toggle": "ui/settings_sections/realms_world_section.json", - "panel_content/tnt_explodes_toggle": "ui/settings_sections/realms_world_section.json", - "panel_content/respawn_blocks_explode_toggle": "ui/settings_sections/realms_world_section.json", - "panel_content/mob_loot_toggle": "ui/settings_sections/realms_world_section.json", - "panel_content/natural_regeneration_toggle": "ui/settings_sections/realms_world_section.json", - "panel_content/tile_drops_toggle": "ui/settings_sections/realms_world_section.json", - "panel_content/player_sleep_toggle": "ui/settings_sections/realms_world_section.json", - "panel_content/player_sleep_percentage_slider": "ui/settings_sections/realms_world_section.json", - "panel_content/immediate_respawn_toggle": "ui/settings_sections/realms_world_section.json", - "panel_content/respawn_radius": "ui/settings_sections/realms_world_section.json", - "panel_content/world_cheats_label": "ui/settings_sections/realms_world_section.json", - "panel_content/allow_cheats_toggle": "ui/settings_sections/realms_world_section.json", - "panel_content/daylight_cycle_toggle": "ui/settings_sections/realms_world_section.json", - "panel_content/keep_inventory_toggle": "ui/settings_sections/realms_world_section.json", - "panel_content/mob_spawn_toggle": "ui/settings_sections/realms_world_section.json", - "panel_content/mob_griefing_toggle": "ui/settings_sections/realms_world_section.json", - "panel_content/entities_drop_loot_toggle": "ui/settings_sections/realms_world_section.json", - "panel_content/weather_cycle_toggle": "ui/settings_sections/realms_world_section.json", - "panel_content/command_blocks_enabled_toggle": "ui/settings_sections/realms_world_section.json", - "panel_content/random_tick_speed": "ui/settings_sections/realms_world_section.json", - "panel_content/download_world_button": "ui/settings_sections/realms_world_section.json", - "panel_content/padding_0": "ui/settings_sections/realms_world_section.json", - "panel_content/upload_world_button": "ui/settings_sections/realms_world_section.json", - "panel_content/padding_1": "ui/settings_sections/realms_world_section.json", - "panel_content/reset_world_button": "ui/settings_sections/realms_world_section.json", - "panel_content/padding_2": "ui/settings_sections/realms_world_section.json", - "panel_content/club_info_label": "ui/settings_sections/realms_world_section.json", - "panel_content/manage_feed_button": "ui/settings_sections/realms_world_section.json", - }, - "settings_common": { - "arrow_image": "ui/settings_sections/settings_common.json", - "subsection_title": "ui/settings_sections/settings_common.json", - "subsection_title/spacer_0": "ui/settings_sections/settings_common.json", - "subsection_title/sizer_0": "ui/settings_sections/settings_common.json", - "subsection_title/sizer_0/title": "ui/settings_sections/settings_common.json", - "subsection_title/spacer_1": "ui/settings_sections/settings_common.json", - "subsection_title/sizer_1": "ui/settings_sections/settings_common.json", - "subsection_title/sizer_1/section_divider": "ui/settings_sections/settings_common.json", - "action_button": "ui/settings_sections/settings_common.json", - "action_button_dark_text": "ui/settings_sections/settings_common.json", - "link_button": "ui/settings_sections/settings_common.json", - "option_group_label": "ui/settings_sections/settings_common.json", - "option_group_label/text": "ui/settings_sections/settings_common.json", - "option_group_header": "ui/settings_sections/settings_common.json", - "option_group_header/text": "ui/settings_sections/settings_common.json", - "option_group_spaced_label": "ui/settings_sections/settings_common.json", - "option_group_spaced_label/text": "ui/settings_sections/settings_common.json", - "option_group_spaced_header": "ui/settings_sections/settings_common.json", - "option_group_spaced_header/text": "ui/settings_sections/settings_common.json", - "option_group_section_divider": "ui/settings_sections/settings_common.json", - "option_group_section_divider/background": "ui/settings_sections/settings_common.json", - "option_generic": "ui/settings_sections/settings_common.json", - "option_generic/option_generic_core": "ui/settings_sections/settings_common.json", - "white_label": "ui/settings_sections/settings_common.json", - "option_generic_core": "ui/settings_sections/settings_common.json", - "option_generic_core/two_line_layout": "ui/settings_sections/settings_common.json", - "option_generic_core/two_line_layout/option_label_panel": "ui/settings_sections/settings_common.json", - "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01": "ui/settings_sections/settings_common.json", - "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01/option_label": "ui/settings_sections/settings_common.json", - "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02": "ui/settings_sections/settings_common.json", - "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02/option_label": "ui/settings_sections/settings_common.json", - "option_generic_core/two_line_layout/option_label_panel/option_tooltip": "ui/settings_sections/settings_common.json", - "option_generic_core/two_line_layout/spacer": "ui/settings_sections/settings_common.json", - "option_generic_core/two_line_layout/option_descriptive_text_0": "ui/settings_sections/settings_common.json", - "option_generic_core/two_line_layout/spacer2": "ui/settings_sections/settings_common.json", - "option_generic_core/one_line_layout": "ui/settings_sections/settings_common.json", - "option_generic_core/one_line_layout/option_label_subpanel_01": "ui/settings_sections/settings_common.json", - "option_generic_core/one_line_layout/option_label_subpanel_01/option_label": "ui/settings_sections/settings_common.json", - "option_generic_core/one_line_layout/option_label_subpanel_02": "ui/settings_sections/settings_common.json", - "option_generic_core/one_line_layout/option_label_subpanel_02/option_label": "ui/settings_sections/settings_common.json", - "option_generic_core/one_line_layout/option_descriptive_text": "ui/settings_sections/settings_common.json", - "option_generic_core/one_line_layout/option_tooltip": "ui/settings_sections/settings_common.json", - "option_generic_core/spacer": "ui/settings_sections/settings_common.json", - "option_generic_core_label": "ui/settings_sections/settings_common.json", - "option_generic_tooltip_image": "ui/settings_sections/settings_common.json", - "option_generic_tooltip_top_popup": "ui/settings_sections/settings_common.json", - "option_generic_tooltip_bottom_popup": "ui/settings_sections/settings_common.json", - "option_generic_tooltip": "ui/settings_sections/settings_common.json", - "option_generic_tooltip/focus_detection_input_panel_two_line_layout": "ui/settings_sections/settings_common.json", - "option_generic_tooltip/hover_detection_input_panel": "ui/settings_sections/settings_common.json", - "option_generic_tooltip/hover_detection_input_panel/option_generic_tooltip_image": "ui/settings_sections/settings_common.json", - "option_generic_tooltip/option_generic_tooltip_top_popup": "ui/settings_sections/settings_common.json", - "option_generic_tooltip/option_generic_tooltip_bottom_popup": "ui/settings_sections/settings_common.json", - "option_text_edit_control": "ui/settings_sections/settings_common.json", - "option_text_edit_control_with_button": "ui/settings_sections/settings_common.json", - "option_text_edit_control_with_button/text_box": "ui/settings_sections/settings_common.json", - "option_text_edit_control_with_button/button": "ui/settings_sections/settings_common.json", - "option_text_edit_control_with_text_button": "ui/settings_sections/settings_common.json", - "option_text_edit_control_with_text_button/text_box": "ui/settings_sections/settings_common.json", - "option_text_edit_control_with_text_button/button": "ui/settings_sections/settings_common.json", - "option_toggle_state_template": "ui/settings_sections/settings_common.json", - "option_toggle_on": "ui/settings_sections/settings_common.json", - "option_toggle_off": "ui/settings_sections/settings_common.json", - "option_toggle_on_hover": "ui/settings_sections/settings_common.json", - "option_toggle_off_hover": "ui/settings_sections/settings_common.json", - "option_toggle_on_locked": "ui/settings_sections/settings_common.json", - "option_toggle_off_locked": "ui/settings_sections/settings_common.json", - "option_toggle_control": "ui/settings_sections/settings_common.json", - "checkbox_visuals_unchecked": "ui/settings_sections/settings_common.json", - "checkbox_visuals_checked": "ui/settings_sections/settings_common.json", - "checkbox_visuals_unchecked_locked": "ui/settings_sections/settings_common.json", - "checkbox_visuals_checked_locked": "ui/settings_sections/settings_common.json", - "checkbox_visuals_unchecked_hover": "ui/settings_sections/settings_common.json", - "checkbox_visuals_checked_hover": "ui/settings_sections/settings_common.json", - "checkbox_visuals": "ui/settings_sections/settings_common.json", - "checkbox_visuals/checkbox_image": "ui/settings_sections/settings_common.json", - "checkbox_visuals/checkbox_label": "ui/settings_sections/settings_common.json", - "checkbox_visuals/accessibility_selection_highlight": "ui/settings_sections/settings_common.json", - "checkbox_with_highlight_and_label": "ui/settings_sections/settings_common.json", - "radio_visuals_unchecked": "ui/settings_sections/settings_common.json", - "radio_visuals_checked": "ui/settings_sections/settings_common.json", - "radio_visuals_unchecked_locked": "ui/settings_sections/settings_common.json", - "radio_visuals_checked_locked": "ui/settings_sections/settings_common.json", - "radio_visuals_unchecked_hover": "ui/settings_sections/settings_common.json", - "radio_visuals_checked_hover": "ui/settings_sections/settings_common.json", - "radio_visuals": "ui/settings_sections/settings_common.json", - "radio_visuals/radio_image": "ui/settings_sections/settings_common.json", - "radio_visuals/radio_label": "ui/settings_sections/settings_common.json", - "radio_visuals/accessibility_selection_highlight": "ui/settings_sections/settings_common.json", - "radio_with_label_core": "ui/settings_sections/settings_common.json", - "option_radio_group_control": "ui/settings_sections/settings_common.json", - "option_radio_group_control/0": "ui/settings_sections/settings_common.json", - "radio_with_label": "ui/settings_sections/settings_common.json", - "radio_with_label/radio_with_label_core": "ui/settings_sections/settings_common.json", - "radio_with_label_and_icon": "ui/settings_sections/settings_common.json", - "radio_with_label_and_icon/radio_with_label_core": "ui/settings_sections/settings_common.json", - "radio_with_label_and_icon/radio_with_label_icon": "ui/settings_sections/settings_common.json", - "radio_with_label_and_content_unchecked": "ui/settings_sections/settings_common.json", - "radio_with_label_and_content_checked": "ui/settings_sections/settings_common.json", - "radio_with_label_and_content_unchecked_locked": "ui/settings_sections/settings_common.json", - "radio_with_label_and_content_checked_locked": "ui/settings_sections/settings_common.json", - "radio_with_label_and_content_unchecked_hover": "ui/settings_sections/settings_common.json", - "radio_with_label_and_content_checked_hover": "ui/settings_sections/settings_common.json", - "radio_with_label_and_content_stack_item": "ui/settings_sections/settings_common.json", - "radio_with_label_and_content": "ui/settings_sections/settings_common.json", - "radio_with_label_and_content/radio_background": "ui/settings_sections/settings_common.json", - "radio_with_label_and_content/radio_item_with_description_stack": "ui/settings_sections/settings_common.json", - "radio_with_label_and_content/radio_item_with_description_stack/radio_icon_and_label": "ui/settings_sections/settings_common.json", - "radio_with_label_and_content/radio_item_with_description_stack/radio_description": "ui/settings_sections/settings_common.json", - "radio_item_with_label_and_content_stack": "ui/settings_sections/settings_common.json", - "radio_item_with_label_and_content_stack/initial_padding": "ui/settings_sections/settings_common.json", - "radio_item_with_label_and_content_stack/radio_image_panel": "ui/settings_sections/settings_common.json", - "radio_item_with_label_and_content_stack/radio_image_panel/image": "ui/settings_sections/settings_common.json", - "radio_item_with_label_and_content_stack/radio_to_content_padding": "ui/settings_sections/settings_common.json", - "radio_item_with_label_and_content_stack/radio_content_panel": "ui/settings_sections/settings_common.json", - "radio_item_with_label_and_content_stack/radio_content_panel/radio_image": "ui/settings_sections/settings_common.json", - "radio_item_with_label_and_content_stack/content_to_label_padding": "ui/settings_sections/settings_common.json", - "radio_item_with_label_and_content_stack/radio_label_panel": "ui/settings_sections/settings_common.json", - "radio_item_with_label_and_content_stack/radio_label_panel/radio_label": "ui/settings_sections/settings_common.json", - "radio_description_panel": "ui/settings_sections/settings_common.json", - "radio_description_panel/description": "ui/settings_sections/settings_common.json", - "radio_description": "ui/settings_sections/settings_common.json", - "radio_item_with_label_and_content": "ui/settings_sections/settings_common.json", - "radio_item_with_label_and_content/radio_with_label_core": "ui/settings_sections/settings_common.json", - "option_slider_control": "ui/settings_sections/settings_common.json", - "option_slider_control/slider": "ui/settings_sections/settings_common.json", - "default_options_dropdown_toggle_button_state_content": "ui/settings_sections/settings_common.json", - "default_options_dropdown_toggle_button_state_content/left_padding": "ui/settings_sections/settings_common.json", - "default_options_dropdown_toggle_button_state_content/option_content": "ui/settings_sections/settings_common.json", - "default_options_dropdown_toggle_button_state_content/option_content_padding": "ui/settings_sections/settings_common.json", - "default_options_dropdown_toggle_button_state_content/label_panel": "ui/settings_sections/settings_common.json", - "default_options_dropdown_toggle_button_state_content/label_panel/label": "ui/settings_sections/settings_common.json", - "default_options_dropdown_toggle_button_state_content/arrow_panel": "ui/settings_sections/settings_common.json", - "default_options_dropdown_toggle_button_state_content/arrow_panel/dropdown_chevron_image": "ui/settings_sections/settings_common.json", - "default_options_dropdown_toggle_button_state_content/right_padding": "ui/settings_sections/settings_common.json", - "options_dropdown_toggle_control": "ui/settings_sections/settings_common.json", - "options_dropdown_dark_toggle_control": "ui/settings_sections/settings_common.json", - "option_dropdown_control": "ui/settings_sections/settings_common.json", - "option_dropdown_control/dropdown": "ui/settings_sections/settings_common.json", - "option_dropdown_control_no_scroll": "ui/settings_sections/settings_common.json", - "option_info_label_with_icon": "ui/settings_sections/settings_common.json", - "option_info_label_with_icon/control": "ui/settings_sections/settings_common.json", - "option_info_label_with_icon/icon_panel": "ui/settings_sections/settings_common.json", - "option_info_label_with_icon/icon_panel/icon_image": "ui/settings_sections/settings_common.json", - "option_info_label_with_icon/icon_panel/padding2": "ui/settings_sections/settings_common.json", - "option_info_label_icon": "ui/settings_sections/settings_common.json", - "option_icon_label": "ui/settings_sections/settings_common.json", - "option_info_label_with_bulb": "ui/settings_sections/settings_common.json", - "option_info_label_with_bulb/stack_panel": "ui/settings_sections/settings_common.json", - "option_info_label_with_bulb/stack_panel/padding1": "ui/settings_sections/settings_common.json", - "option_info_label_with_bulb/stack_panel/bulb_panel": "ui/settings_sections/settings_common.json", - "option_info_label_with_bulb/stack_panel/bulb_panel/padding1": "ui/settings_sections/settings_common.json", - "option_info_label_with_bulb/stack_panel/bulb_panel/bulb_image": "ui/settings_sections/settings_common.json", - "option_info_label_with_bulb/stack_panel/bulb_panel/padding2": "ui/settings_sections/settings_common.json", - "option_info_label_with_bulb/stack_panel/padding2": "ui/settings_sections/settings_common.json", - "option_info_label_with_bulb/stack_panel/label_panel": "ui/settings_sections/settings_common.json", - "option_info_label_with_bulb/stack_panel/label_panel/info_label1": "ui/settings_sections/settings_common.json", - "option_info_label_with_bulb/stack_panel/label_panel/padding2": "ui/settings_sections/settings_common.json", - "option_info_label_with_bulb/stack_panel/label_panel/info_label2": "ui/settings_sections/settings_common.json", - "option_info_label_with_bulb/stack_panel/padding3": "ui/settings_sections/settings_common.json", - "option_info_label_with_image": "ui/settings_sections/settings_common.json", - "option_info_label_with_image/control": "ui/settings_sections/settings_common.json", - "option_info_label_image": "ui/settings_sections/settings_common.json", - "option_toggle": "ui/settings_sections/settings_common.json", - "option_radio_group": "ui/settings_sections/settings_common.json", - "option_radio_dropdown_group": "ui/settings_sections/settings_common.json", - "option_radio_dropdown_group/radio_control_group": "ui/settings_sections/settings_common.json", - "option_text_edit": "ui/settings_sections/settings_common.json", - "option_text_edit_with_button": "ui/settings_sections/settings_common.json", - "option_text_edit_with_text_button": "ui/settings_sections/settings_common.json", - "option_slider": "ui/settings_sections/settings_common.json", - "option_dropdown": "ui/settings_sections/settings_common.json", - "option_dropdown_no_scroll": "ui/settings_sections/settings_common.json", - "option_custom_control": "ui/settings_sections/settings_common.json", - "option_info_label": "ui/settings_sections/settings_common.json", - "dynamic_dialog_screen": "ui/settings_sections/settings_common.json", - "settings_content": "ui/settings_sections/settings_common.json", - "settings_content/background": "ui/settings_sections/settings_common.json", - "settings_content/stack_panel": "ui/settings_sections/settings_common.json", - "settings_content/stack_panel/content_panel": "ui/settings_sections/settings_common.json", - "settings_content/stack_panel/content_panel/common_panel": "ui/settings_sections/settings_common.json", - "settings_content/stack_panel/content_panel/container": "ui/settings_sections/settings_common.json", - "settings_content/popup_dialog_factory": "ui/settings_sections/settings_common.json", - "toggle_button_control": "ui/settings_sections/settings_common.json", - "toggle_button_control/glyph": "ui/settings_sections/settings_common.json", - "toggle_button_control/glyph_color": "ui/settings_sections/settings_common.json", - "toggle_button_control/progress_loading_bars": "ui/settings_sections/settings_common.json", - "toggle_button_control/tab_button_text": "ui/settings_sections/settings_common.json", - "section_toggle_base": "ui/settings_sections/settings_common.json", - "section_title_label": "ui/settings_sections/settings_common.json", - "dialog_title_label": "ui/settings_sections/settings_common.json", - "dialog_titles": "ui/settings_sections/settings_common.json", - "dialog_titles/left_padding": "ui/settings_sections/settings_common.json", - "dialog_titles/dialog_title_label": "ui/settings_sections/settings_common.json", - "dialog_titles/center_padding": "ui/settings_sections/settings_common.json", - "dialog_titles/section_title_label": "ui/settings_sections/settings_common.json", - "dialog_titles/right_padding_is_always_right": "ui/settings_sections/settings_common.json", - "dialog_content": "ui/settings_sections/settings_common.json", - "dialog_content/dialog_titles": "ui/settings_sections/settings_common.json", - "dialog_content/selector_area": "ui/settings_sections/settings_common.json", - "dialog_content/content_area": "ui/settings_sections/settings_common.json", - "dialog_content/section_divider": "ui/settings_sections/settings_common.json", - "dialog_content_fullscreen": "ui/settings_sections/settings_common.json", - "dialog_content_fullscreen/dialog_titles": "ui/settings_sections/settings_common.json", - "dialog_content_fullscreen/selector_area": "ui/settings_sections/settings_common.json", - "dialog_content_fullscreen/content_area": "ui/settings_sections/settings_common.json", - "dialog_content_fullscreen/section_divider": "ui/settings_sections/settings_common.json", - "selector_group_label": "ui/settings_sections/settings_common.json", - "scrollable_selector_area_content": "ui/settings_sections/settings_common.json", - "selector_area": "ui/settings_sections/settings_common.json", - "selector_area/scrolling_panel": "ui/settings_sections/settings_common.json", - "selector_area_no_scroll": "ui/settings_sections/settings_common.json", - "selector_area_no_scroll/scrolling_panel": "ui/settings_sections/settings_common.json", - "content_area": "ui/settings_sections/settings_common.json", - "content_area/control": "ui/settings_sections/settings_common.json", - "content_area/control/header_panel": "ui/settings_sections/settings_common.json", - "content_area/control/header_panel/content": "ui/settings_sections/settings_common.json", - "content_area/control/scrolling_panel": "ui/settings_sections/settings_common.json", - "content_area/control/footer_panel": "ui/settings_sections/settings_common.json", - "content_area/control/footer_panel/content": "ui/settings_sections/settings_common.json", - "section_divider": "ui/settings_sections/settings_common.json", - "screen_base": "ui/settings_sections/settings_common.json", - "screen_base_fullscreen": "ui/settings_sections/settings_common.json", - }, - "world_section": { - "selector_pane_content": "ui/settings_sections/world_section.json", - "selector_pane_content/world_snapshot_image": "ui/settings_sections/world_section.json", - "selector_pane_content/world_snapshot_image/thumbnail": "ui/settings_sections/world_section.json", - "selector_pane_content/world_snapshot_image/thumbnail/border": "ui/settings_sections/world_section.json", - "selector_pane_content/play_or_create_panel": "ui/settings_sections/world_section.json", - "selector_pane_content/play_or_host_panel": "ui/settings_sections/world_section.json", - "selector_pane_content/spacer": "ui/settings_sections/world_section.json", - "selector_pane_content/server_settings_visibility_panel": "ui/settings_sections/world_section.json", - "selector_pane_content/server_settings_visibility_panel/selector_group_label_0": "ui/settings_sections/world_section.json", - "selector_pane_content/server_settings_visibility_panel/server_settings_button": "ui/settings_sections/world_section.json", - "selector_pane_content/server_settings_visibility_panel/server_spacer": "ui/settings_sections/world_section.json", - "selector_pane_content/selector_group_label_1": "ui/settings_sections/world_section.json", - "selector_pane_content/game_button": "ui/settings_sections/world_section.json", - "selector_pane_content/spacer_01": "ui/settings_sections/world_section.json", - "selector_pane_content/classroom_button": "ui/settings_sections/world_section.json", - "selector_pane_content/spacer_02": "ui/settings_sections/world_section.json", - "selector_pane_content/switch_game_button": "ui/settings_sections/world_section.json", - "selector_pane_content/spacer_03": "ui/settings_sections/world_section.json", - "selector_pane_content/multiplayer_button": "ui/settings_sections/world_section.json", - "selector_pane_content/spacer_04": "ui/settings_sections/world_section.json", - "selector_pane_content/edu_cloud_button": "ui/settings_sections/world_section.json", - "selector_pane_content/spacer_05": "ui/settings_sections/world_section.json", - "selector_pane_content/debug_button": "ui/settings_sections/world_section.json", - "launch_world_button_stack_def": "ui/settings_sections/world_section.json", - "play_or_create_stack_bedrock": "ui/settings_sections/world_section.json", - "play_or_create_stack_bedrock/create_or_play_button": "ui/settings_sections/world_section.json", - "play_or_create_stack_bedrock/play_on_realm_button": "ui/settings_sections/world_section.json", - "edu_play_host_button": "ui/settings_sections/world_section.json", - "play_or_host_stack_edu": "ui/settings_sections/world_section.json", - "play_or_host_stack_edu/edu_play_button": "ui/settings_sections/world_section.json", - "play_or_host_stack_edu/edu_host_button": "ui/settings_sections/world_section.json", - "addons_selector_panel": "ui/settings_sections/world_section.json", - "addons_selector_panel/spacer_01": "ui/settings_sections/world_section.json", - "addons_selector_panel/selector_group_label_2": "ui/settings_sections/world_section.json", - "addons_selector_panel/level_texture_pack_button": "ui/settings_sections/world_section.json", - "addons_selector_panel/spacer_02": "ui/settings_sections/world_section.json", - "addons_selector_panel/addon_button": "ui/settings_sections/world_section.json", - "server_settings_button": "ui/settings_sections/world_section.json", - "server_section": "ui/settings_sections/world_section.json", - "game_button": "ui/settings_sections/world_section.json", - "export_world_button": "ui/settings_sections/world_section.json", - "delete_world_button": "ui/settings_sections/world_section.json", - "export_template_button": "ui/settings_sections/world_section.json", - "copy_world_button": "ui/settings_sections/world_section.json", - "edit_world_manipulation_buttons": "ui/settings_sections/world_section.json", - "edit_world_manipulation_buttons/export": "ui/settings_sections/world_section.json", - "edit_world_manipulation_buttons/padding": "ui/settings_sections/world_section.json", - "edit_world_manipulation_buttons/delete": "ui/settings_sections/world_section.json", - "game_section": "ui/settings_sections/world_section.json", - "game_section/new_edit_world_opt_in_panel": "ui/settings_sections/world_section.json", - "game_section/new_edit_world_opt_in_panel/panel_title": "ui/settings_sections/world_section.json", - "game_section/new_edit_world_opt_in_panel/panel_text": "ui/settings_sections/world_section.json", - "game_section/new_edit_world_opt_in_panel/opt_in_button": "ui/settings_sections/world_section.json", - "game_section/new_edit_world_opt_in_divider": "ui/settings_sections/world_section.json", - "game_section/new_edit_world_opt_in_divider/section_divider": "ui/settings_sections/world_section.json", - "game_section/unlock_template_options_panel": "ui/settings_sections/world_section.json", - "game_section/unlock_template_options_panel/option_info_label": "ui/settings_sections/world_section.json", - "game_section/unlock_template_options_panel/unlock_template_options_button": "ui/settings_sections/world_section.json", - "game_section/option_info_label": "ui/settings_sections/world_section.json", - "game_section/hardcore_info_label": "ui/settings_sections/world_section.json", - "game_section/world_settings_label": "ui/settings_sections/world_section.json", - "game_section/option_text_edit_0": "ui/settings_sections/world_section.json", - "game_section/project_section_divider_1": "ui/settings_sections/world_section.json", - "game_section/project_header_label": "ui/settings_sections/world_section.json", - "game_section/project_section_divider_2": "ui/settings_sections/world_section.json", - "game_section/project_spacer": "ui/settings_sections/world_section.json", - "game_section/option_text_edit_1": "ui/settings_sections/world_section.json", - "game_section/export_settings_section_divider_1": "ui/settings_sections/world_section.json", - "game_section/export_settings_header_label": "ui/settings_sections/world_section.json", - "game_section/export_settings_header_description": "ui/settings_sections/world_section.json", - "game_section/export_settings_section_divider_2": "ui/settings_sections/world_section.json", - "game_section/export_settings_spacer": "ui/settings_sections/world_section.json", - "game_section/option_dropdown_0": "ui/settings_sections/world_section.json", - "game_section/option_dropdown_1": "ui/settings_sections/world_section.json", - "game_section/is_hardcore_toggle": "ui/settings_sections/world_section.json", - "game_section/option_dropdown_2": "ui/settings_sections/world_section.json", - "game_section/world_preferences_label": "ui/settings_sections/world_section.json", - "game_section/starting_map_toggle": "ui/settings_sections/world_section.json", - "game_section/bonus_chest_toggle": "ui/settings_sections/world_section.json", - "game_section/option_dropdown_permissions": "ui/settings_sections/world_section.json", - "game_section/option_dropdown_3": "ui/settings_sections/world_section.json", - "game_section/level_seed_selector_edu": "ui/settings_sections/world_section.json", - "game_section/level_seed_selector": "ui/settings_sections/world_section.json", - "game_section/level_seed_selector_trial": "ui/settings_sections/world_section.json", - "game_section/server_sim_distance_slider": "ui/settings_sections/world_section.json", - "game_section/world_options_label": "ui/settings_sections/world_section.json", - "game_section/pvp_toggle": "ui/settings_sections/world_section.json", - "game_section/show_coordinates_toggle": "ui/settings_sections/world_section.json", - "game_section/locator_bar_toggle": "ui/settings_sections/world_section.json", - "game_section/show_days_played_toggle": "ui/settings_sections/world_section.json", - "game_section/fire_spreads_toggle": "ui/settings_sections/world_section.json", - "game_section/recipes_unlock_toggle": "ui/settings_sections/world_section.json", - "game_section/tnt_explodes_toggle": "ui/settings_sections/world_section.json", - "game_section/respawn_blocks_explode_toggle": "ui/settings_sections/world_section.json", - "game_section/mob_loot_toggle": "ui/settings_sections/world_section.json", - "game_section/natural_regeneration_toggle": "ui/settings_sections/world_section.json", - "game_section/tile_drops_toggle": "ui/settings_sections/world_section.json", - "game_section/player_sleep_toggle": "ui/settings_sections/world_section.json", - "game_section/player_sleep_percentage_slider": "ui/settings_sections/world_section.json", - "game_section/immediate_respawn_toggle": "ui/settings_sections/world_section.json", - "game_section/respawn_radius": "ui/settings_sections/world_section.json", - "game_section/experimental_toggles_label": "ui/settings_sections/world_section.json", - "game_section/experimental_toggles_label_info": "ui/settings_sections/world_section.json", - "game_section/experimental_toggles": "ui/settings_sections/world_section.json", - "game_section/world_cheats_label": "ui/settings_sections/world_section.json", - "game_section/allow_cheats_toggle": "ui/settings_sections/world_section.json", - "game_section/education_toggle": "ui/settings_sections/world_section.json", - "game_section/always_day_toggle": "ui/settings_sections/world_section.json", - "game_section/daylight_cycle_toggle": "ui/settings_sections/world_section.json", - "game_section/keep_inventory_toggle": "ui/settings_sections/world_section.json", - "game_section/mob_spawn_toggle": "ui/settings_sections/world_section.json", - "game_section/mob_griefing_toggle": "ui/settings_sections/world_section.json", - "game_section/entities_drop_loot_toggle": "ui/settings_sections/world_section.json", - "game_section/weather_cycle_toggle": "ui/settings_sections/world_section.json", - "game_section/command_blocks_enabled_toggle": "ui/settings_sections/world_section.json", - "game_section/random_tick_speed": "ui/settings_sections/world_section.json", - "game_section/world_management_label": "ui/settings_sections/world_section.json", - "game_section/convert_to_infinite_panel": "ui/settings_sections/world_section.json", - "game_section/convert_to_infinite_panel/convert_to_infinite_button": "ui/settings_sections/world_section.json", - "game_section/delete_button": "ui/settings_sections/world_section.json", - "game_section/button_panel": "ui/settings_sections/world_section.json", - "game_section/button_panel/manipulation_controls": "ui/settings_sections/world_section.json", - "game_section/export_template_panel": "ui/settings_sections/world_section.json", - "game_section/export_template_panel/padding": "ui/settings_sections/world_section.json", - "game_section/export_template_panel/template_version": "ui/settings_sections/world_section.json", - "game_section/export_template_panel/template_buttons": "ui/settings_sections/world_section.json", - "game_section/export_template_panel/template_buttons/template_image_picker_button": "ui/settings_sections/world_section.json", - "game_section/export_template_panel/template_buttons/padding": "ui/settings_sections/world_section.json", - "game_section/export_template_panel/template_buttons/template_localization_picker_button": "ui/settings_sections/world_section.json", - "game_section/export_template_panel/export_template": "ui/settings_sections/world_section.json", - "game_section/clear_player_data_panel": "ui/settings_sections/world_section.json", - "game_section/clear_player_data_panel/padding": "ui/settings_sections/world_section.json", - "game_section/clear_player_data_panel/clear_player_data_button": "ui/settings_sections/world_section.json", - "game_section/copy_world_panel": "ui/settings_sections/world_section.json", - "game_section/copy_world_panel/copy_world": "ui/settings_sections/world_section.json", - "game_section/upload_download_slot_panel": "ui/settings_sections/world_section.json", - "game_section/upload_download_slot_panel/upload_download_slot_button": "ui/settings_sections/world_section.json", - "game_section/replace_slot_panel": "ui/settings_sections/world_section.json", - "game_section/replace_slot_panel/replace_slot_button": "ui/settings_sections/world_section.json", - "level_texture_pack_button": "ui/settings_sections/world_section.json", - "level_texture_pack_section": "ui/settings_sections/world_section.json", - "addon_button": "ui/settings_sections/world_section.json", - "addon_section": "ui/settings_sections/world_section.json", - "world_game_mode_dropdown_content": "ui/settings_sections/world_section.json", - "xbl_broadcast_dropdown_content": "ui/settings_sections/world_section.json", - "platform_broadcast_dropdown_content": "ui/settings_sections/world_section.json", - "player_game_mode_dropdown_content": "ui/settings_sections/world_section.json", - "world_type_dropdown_content": "ui/settings_sections/world_section.json", - "world_difficulty_dropdown_content": "ui/settings_sections/world_section.json", - "multiplayer_button": "ui/settings_sections/world_section.json", - "cross_platform_warning_label": "ui/settings_sections/world_section.json", - "multiplayer_section": "ui/settings_sections/world_section.json", - "multiplayer_section/multiplayer_game_toggle": "ui/settings_sections/world_section.json", - "multiplayer_section/platform_settings_dropdown": "ui/settings_sections/world_section.json", - "multiplayer_section/xbl_settings_dropdown": "ui/settings_sections/world_section.json", - "multiplayer_section/server_visible_toggle": "ui/settings_sections/world_section.json", - "multiplayer_section/general_multiplayer_warning_label": "ui/settings_sections/world_section.json", - "multiplayer_section/open_uri_button": "ui/settings_sections/world_section.json", - "multiplayer_section/platform_multiplayer_warning_label": "ui/settings_sections/world_section.json", - "multiplayer_section/xbl_multiplayer_warning_label": "ui/settings_sections/world_section.json", - "option_text_edit_mock_with_button": "ui/settings_sections/world_section.json", - "option_text_edit_mock_control_with_button": "ui/settings_sections/world_section.json", - "option_text_edit_mock_control_with_button/trial_text_box_button": "ui/settings_sections/world_section.json", - "option_text_edit_mock_control_with_button/seed_arrow_button": "ui/settings_sections/world_section.json", - "experimental_toggle": "ui/settings_sections/world_section.json", - "open_account_setting_button": "ui/settings_sections/world_section.json", - "edu_cloud_button": "ui/settings_sections/world_section.json", - "edu_cloud_section": "ui/settings_sections/world_section.json", - "edu_cloud_section/edu_cloud_label": "ui/settings_sections/world_section.json", - "edu_cloud_section/cloud_file_name": "ui/settings_sections/world_section.json", - "edu_cloud_section/cloud_file_last_changed": "ui/settings_sections/world_section.json", - "edu_cloud_section/cloud_upload_toggle": "ui/settings_sections/world_section.json", - "edu_cloud_section/cloud_help_wrapper_panel": "ui/settings_sections/world_section.json", - "edu_cloud_section/cloud_help_wrapper_panel/cloud_help_button": "ui/settings_sections/world_section.json", - "edu_cloud_section/cloud_help_wrapper_panel/padded_icon": "ui/settings_sections/world_section.json", - "edu_cloud_section/cloud_help_wrapper_panel/padded_icon/icon": "ui/settings_sections/world_section.json", - "debug_button": "ui/settings_sections/world_section.json", - "debug_section": "ui/settings_sections/world_section.json", - "debug_section/flat_nether_toggle": "ui/settings_sections/world_section.json", - "debug_section/game_version_override_toggle": "ui/settings_sections/world_section.json", - "debug_section/game_version_override_textbox": "ui/settings_sections/world_section.json", - "debug_section/spawn_dimension_dropdown": "ui/settings_sections/world_section.json", - "debug_section/spawn_biome_dropdown": "ui/settings_sections/world_section.json", - "debug_section/biome_override_dropdown": "ui/settings_sections/world_section.json", - "debug_section/base_game_version_debug_text": "ui/settings_sections/world_section.json", - "debug_spawn_dimension_dropdown_content": "ui/settings_sections/world_section.json", - "debug_spawn_biome_dropdown_content": "ui/settings_sections/world_section.json", - "debug_biome_override_dropdown_content": "ui/settings_sections/world_section.json", - "editor_edit_world_manipulation_buttons_content": "ui/settings_sections/world_section.json", - "editor_edit_world_manipulation_buttons_content/export_as_project": "ui/settings_sections/world_section.json", - "editor_edit_world_manipulation_buttons_content/padding": "ui/settings_sections/world_section.json", - "editor_edit_world_manipulation_buttons_content/export_as_world_buttons": "ui/settings_sections/world_section.json", - "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_world": "ui/settings_sections/world_section.json", - "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/padding": "ui/settings_sections/world_section.json", - "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_template": "ui/settings_sections/world_section.json", - "editor_edit_world_manipulation_buttons_content/padding_2": "ui/settings_sections/world_section.json", - "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons": "ui/settings_sections/world_section.json", - "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/copy_project": "ui/settings_sections/world_section.json", - "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/padding": "ui/settings_sections/world_section.json", - "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/delete_project": "ui/settings_sections/world_section.json", - "editor_edit_world_manipulation_buttons": "ui/settings_sections/world_section.json", - }, - "social_section": { - "party_button": "ui/settings_sections/social_section.json", - "party_section": "ui/settings_sections/social_section.json", - "party_section/party_invite_filter_dropdown": "ui/settings_sections/social_section.json", - "party_section/party_invite_reset_default_padding": "ui/settings_sections/social_section.json", - "party_section/party_invite_send_privileges_dropdown": "ui/settings_sections/social_section.json", - "party_section/party_privacy_default_padding": "ui/settings_sections/social_section.json", - "party_section/party_privacy_dropdown": "ui/settings_sections/social_section.json", - "party_section/party_privacy_label_wrapper": "ui/settings_sections/social_section.json", - "party_section/party_settings_reset_default_button_default_padding": "ui/settings_sections/social_section.json", - "party_section/party_settings_reset_default_button": "ui/settings_sections/social_section.json", - "party_section/microsoft_account_settings_divider": "ui/settings_sections/social_section.json", - "party_section/microsoft_account_settings_divider/section_divider": "ui/settings_sections/social_section.json", - "party_section/microsoft_account_settings_header": "ui/settings_sections/social_section.json", - "party_section/microsoft_account_settings_padding": "ui/settings_sections/social_section.json", - "party_section/microsoft_account_settings_label_wrapper": "ui/settings_sections/social_section.json", - "party_section/privacy_and_online_safety_button_padding": "ui/settings_sections/social_section.json", - "party_section/privacy_and_online_safety_button": "ui/settings_sections/social_section.json", - "party_section/microsoft_account_settings_ending_padding": "ui/settings_sections/social_section.json", - "party_privacy_label": "ui/settings_sections/social_section.json", - "microsoft_account_settings_label": "ui/settings_sections/social_section.json", - "platform_settings_label": "ui/settings_sections/social_section.json", - "party_invite_filter_dropdown_content": "ui/settings_sections/social_section.json", - "party_privacy_dropdown_content": "ui/settings_sections/social_section.json", - "party_invite_send_privileges_dropdown_content": "ui/settings_sections/social_section.json", - }, - "sidebar_navigation": { - "empty_panel": "ui/sidebar_navigation.json", - "empty_fill_x_panel": "ui/sidebar_navigation.json", - "empty_default_panel": "ui/sidebar_navigation.json", - "vertical_padding_panel": "ui/sidebar_navigation.json", - "sidebar_bg": "ui/sidebar_navigation.json", - "sidebar_divider": "ui/sidebar_navigation.json", - "sidebar_divider_panel": "ui/sidebar_navigation.json", - "sidebar_divider_panel/sidebar_divider": "ui/sidebar_navigation.json", - "toggle_content": "ui/sidebar_navigation.json", - "toggle_content/toggle_content": "ui/sidebar_navigation.json", - "sidebar_section_scroll_panel": "ui/sidebar_navigation.json", - "sidebar_bg_content_panel": "ui/sidebar_navigation.json", - "sidebar_bg_content_panel/sidebar_bg_content": "ui/sidebar_navigation.json", - "sidebar_nav_toggle_image": "ui/sidebar_navigation.json", - "sidebar_nav_toggle_image_panel": "ui/sidebar_navigation.json", - "sidebar_nav_toggle_image_panel/sidebar_nav_toggle_image": "ui/sidebar_navigation.json", - "sidebar_nav_toggle_image_panel/gamepad_helper_icon": "ui/sidebar_navigation.json", - "gamepad_helper_icon_start_toggle": "ui/sidebar_navigation.json", - "verbose_view_toggle_content": "ui/sidebar_navigation.json", - "verbose_view_toggle_content/left_padding": "ui/sidebar_navigation.json", - "verbose_view_toggle_content/sidebar_nav_toggle_image": "ui/sidebar_navigation.json", - "sidebar_toggle_bg": "ui/sidebar_navigation.json", - "sidebar_toggle": "ui/sidebar_navigation.json", - "sidebar_option_toggle": "ui/sidebar_navigation.json", - "simple_sidebar_toggle": "ui/sidebar_navigation.json", - "verbose_toggle": "ui/sidebar_navigation.json", - "verbose_sidebar_option": "ui/sidebar_navigation.json", - "verbose_expand_option": "ui/sidebar_navigation.json", - "verbose_dropdown_option": "ui/sidebar_navigation.json", - "verbose_dropdown_expanded_option": "ui/sidebar_navigation.json", - "verbose_sidebar_expand_section_bg": "ui/sidebar_navigation.json", - "verbose_sidebar_expand_section_panel": "ui/sidebar_navigation.json", - "verbose_expand_section_panel": "ui/sidebar_navigation.json", - "verbose_view_toggle": "ui/sidebar_navigation.json", - "sidebar_option_factory": "ui/sidebar_navigation.json", - "sidebar_option_factory_panel": "ui/sidebar_navigation.json", - "sidebar_option_factory_panel/sidebar_option_factory": "ui/sidebar_navigation.json", - "verbose_button_content": "ui/sidebar_navigation.json", - "verbose_button_content/button_label": "ui/sidebar_navigation.json", - "verbose_button": "ui/sidebar_navigation.json", - "verbose_nav_button_panel": "ui/sidebar_navigation.json", - "verbose_nav_button_panel/verbose_nav_button": "ui/sidebar_navigation.json", - "verbose_screen_nav_button": "ui/sidebar_navigation.json", - "verbose_screen_nav_option_panel": "ui/sidebar_navigation.json", - "verbose_screen_nav_option_panel/verbose_nav_button": "ui/sidebar_navigation.json", - "sidebar_option_factory_scroll_panel": "ui/sidebar_navigation.json", - "sidebar_screen_nav_option_factory_panel": "ui/sidebar_navigation.json", - "sidebar_screen_nav_option_factory_panel/fill_panel": "ui/sidebar_navigation.json", - "sidebar_screen_nav_option_factory_panel/button": "ui/sidebar_navigation.json", - "sidebar_screen_nav_option_factory_panel/padding": "ui/sidebar_navigation.json", - "sidebar_screen_nav_option_factory_panel/platform_icon_padding": "ui/sidebar_navigation.json", - "root_section_content_panel": "ui/sidebar_navigation.json", - "root_section_content_panel/sidebar_option_factory": "ui/sidebar_navigation.json", - "root_section_content_panel/verbose_sidebar_screen_Nav": "ui/sidebar_navigation.json", - "edge_bar": "ui/sidebar_navigation.json", - "verbose_view_stack_panel": "ui/sidebar_navigation.json", - "verbose_view_stack_panel/verbose_view_toggle": "ui/sidebar_navigation.json", - "sidebar_section": "ui/sidebar_navigation.json", - "sidebar_section/left_edge_bar": "ui/sidebar_navigation.json", - "sidebar_section/verbose_view_stack_panel": "ui/sidebar_navigation.json", - "sidebar_section/right_edge_bar": "ui/sidebar_navigation.json", - "root_section": "ui/sidebar_navigation.json", - "verbose_root_section": "ui/sidebar_navigation.json", - "simple_root_section": "ui/sidebar_navigation.json", - "simple_root_section/verbose_view_toggle": "ui/sidebar_navigation.json", - "simple_root_section/root_section": "ui/sidebar_navigation.json", - "sidebar_section_factory_panel": "ui/sidebar_navigation.json", - "sidebar_section_factory_panel/sidebar_section_factory": "ui/sidebar_navigation.json", - "sidebar_view_content_panel": "ui/sidebar_navigation.json", - "sidebar_view_content_panel/view_stack_panel": "ui/sidebar_navigation.json", - "sidebar_view_content_panel/view_stack_panel/sidebar_view": "ui/sidebar_navigation.json", - "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel": "ui/sidebar_navigation.json", - "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button": "ui/sidebar_navigation.json", - "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/default": "ui/sidebar_navigation.json", - "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/hover": "ui/sidebar_navigation.json", - "sidebar_view_content_panel/verbose_view_exit": "ui/sidebar_navigation.json", - "verbose_sidebar_view_modal": "ui/sidebar_navigation.json", - "sidebar_views": "ui/sidebar_navigation.json", - "sidebar_views/sidebar_view_conent": "ui/sidebar_navigation.json", - "sidebar_views/sidebar_view_conent/simple_sidebar_view": "ui/sidebar_navigation.json", - "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal": "ui/sidebar_navigation.json", - "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal/verbose_sidebar_view": "ui/sidebar_navigation.json", - "sidebar_empty_panel": "ui/sidebar_navigation.json", - "content_view": "ui/sidebar_navigation.json", - "content_view/content_view_stack": "ui/sidebar_navigation.json", - "content_view/content_view_stack/sidebar_view_stack": "ui/sidebar_navigation.json", - "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel": "ui/sidebar_navigation.json", - "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel": "ui/sidebar_navigation.json", - "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button": "ui/sidebar_navigation.json", - "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/default": "ui/sidebar_navigation.json", - "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/hover": "ui/sidebar_navigation.json", - "content_view/content_view_stack/sidebar_view_stack/divider": "ui/sidebar_navigation.json", - "content_view/content_view_stack/main_view_content": "ui/sidebar_navigation.json", - "content_view/content_view_stack/main_view_content/screen_content": "ui/sidebar_navigation.json", - "sidebar_view": "ui/sidebar_navigation.json", - "sidebar_view/sidebar_content": "ui/sidebar_navigation.json", - "sidebar_view/content_view": "ui/sidebar_navigation.json", - "sidebar_view/progress_loading": "ui/sidebar_navigation.json", - "platform_store_icon_spacing": "ui/sidebar_navigation.json", - }, - "sign": { - "sign_background": "ui/sign_screen.json", - "hanging_sign_background": "ui/sign_screen.json", - "base_sign_text_multiline": "ui/sign_screen.json", - "regular_sign_text_multiline": "ui/sign_screen.json", - "hanging_sign_text_multiline": "ui/sign_screen.json", - "sign_screen_content": "ui/sign_screen.json", - "sign_screen_content/input_eating_panel": "ui/sign_screen.json", - "sign_screen_content/input_eating_panel/text_edit": "ui/sign_screen.json", - "sign_screen_content/invisible_exit_background": "ui/sign_screen.json", - "sign_screen": "ui/sign_screen.json", - }, - "simple_inprogress": { - "title_text": "ui/simple_inprogress_screen.json", - "main_panel": "ui/simple_inprogress_screen.json", - "main_panel/common_panel": "ui/simple_inprogress_screen.json", - "main_panel/title": "ui/simple_inprogress_screen.json", - "main_panel/main_content": "ui/simple_inprogress_screen.json", - "main_panel/progress_loading_bars": "ui/simple_inprogress_screen.json", - "simple_inprogress_screen": "ui/simple_inprogress_screen.json", - "simple_inprogress_screen_content": "ui/simple_inprogress_screen.json", - "simple_inprogress_screen_content/root_panel": "ui/simple_inprogress_screen.json", - "simple_inprogress_screen_content/root_panel/main_panel": "ui/simple_inprogress_screen.json", - }, - "skin_pack_purchase": { - "cycle_pack_left_button": "ui/skin_pack_purchase_screen.json", - "cycle_pack_right_button": "ui/skin_pack_purchase_screen.json", - "skin_model": "ui/skin_pack_purchase_screen.json", - "skin_model/paper_doll": "ui/skin_pack_purchase_screen.json", - "skin_lock": "ui/skin_pack_purchase_screen.json", - "skin_focus_border": "ui/skin_pack_purchase_screen.json", - "skin_focus_border/equip": "ui/skin_pack_purchase_screen.json", - "skin_button_panel_gamepad": "ui/skin_pack_purchase_screen.json", - "skin_button_panel_gamepad/skin_button": "ui/skin_pack_purchase_screen.json", - "skin_button_panel_gamepad/skin_button/hover": "ui/skin_pack_purchase_screen.json", - "skin_button_panel_gamepad/skin_button/pressed": "ui/skin_pack_purchase_screen.json", - "skin_button_panel_not_gamepad": "ui/skin_pack_purchase_screen.json", - "skin_button_panel_not_gamepad/skin_button": "ui/skin_pack_purchase_screen.json", - "skin_button_panel_not_gamepad/skin_button/hover": "ui/skin_pack_purchase_screen.json", - "skin_button_panel_not_gamepad/skin_button/pressed": "ui/skin_pack_purchase_screen.json", - "skin_button_panel_not_gamepad/equip_button": "ui/skin_pack_purchase_screen.json", - "skin_button_panel": "ui/skin_pack_purchase_screen.json", - "skin_button_panel/gamepad": "ui/skin_pack_purchase_screen.json", - "skin_button_panel/not_gamepad": "ui/skin_pack_purchase_screen.json", - "equip_button_state_panel": "ui/skin_pack_purchase_screen.json", - "equip_button_state_panel/button_panel": "ui/skin_pack_purchase_screen.json", - "equip_button_text": "ui/skin_pack_purchase_screen.json", - "equip_button_text/text": "ui/skin_pack_purchase_screen.json", - "skins_grid_item": "ui/skin_pack_purchase_screen.json", - "skins_grid_item/model": "ui/skin_pack_purchase_screen.json", - "skins_grid_item/lock": "ui/skin_pack_purchase_screen.json", - "skins_grid_item/button": "ui/skin_pack_purchase_screen.json", - "skins_grid": "ui/skin_pack_purchase_screen.json", - "skins_panel": "ui/skin_pack_purchase_screen.json", - "skins_panel/bg": "ui/skin_pack_purchase_screen.json", - "skins_panel/bg/left": "ui/skin_pack_purchase_screen.json", - "skins_panel/bg/sg": "ui/skin_pack_purchase_screen.json", - "skins_panel/bg/right": "ui/skin_pack_purchase_screen.json", - "skins_panel/bg/progress_loading_panel": "ui/skin_pack_purchase_screen.json", - "skins_panel/bg/progress_loading_panel/progress_loading": "ui/skin_pack_purchase_screen.json", - "skins_panel/bg/progress_loading_panel/progress_loading_outline": "ui/skin_pack_purchase_screen.json", - "skins_panel/bg/progress_loading_panel/progress_loading_outline/hover": "ui/skin_pack_purchase_screen.json", - "screen_root": "ui/skin_pack_purchase_screen.json", - "skin_pack_purchase_upsell_screen": "ui/skin_pack_purchase_screen.json", - "skin_pack_purchase_upsell_screen_content": "ui/skin_pack_purchase_screen.json", - "skin_pack_purchase_upsell_dialog_content": "ui/skin_pack_purchase_screen.json", - "skin_pack_purchase_upsell_dialog_content/container": "ui/skin_pack_purchase_screen.json", - "skin_pack_purchase_standard": "ui/skin_pack_purchase_screen.json", - "skin_pack_purchase_standard_content": "ui/skin_pack_purchase_screen.json", - "skin_pack_purchase_dialog_content": "ui/skin_pack_purchase_screen.json", - "skin_pack_purchase_dialog_content/container": "ui/skin_pack_purchase_screen.json", - }, - "skin_picker": { - "banner_fill": "ui/skin_picker_screen.json", - "title_label": "ui/skin_picker_screen.json", - "label": "ui/skin_picker_screen.json", - "chevron_image": "ui/skin_picker_screen.json", - "bumper_image": "ui/skin_picker_screen.json", - "undo_image": "ui/skin_picker_screen.json", - "plus_icon": "ui/skin_picker_screen.json", - "direction_button_panel": "ui/skin_picker_screen.json", - "direction_button_panel/chevron_image": "ui/skin_picker_screen.json", - "direction_button_panel/bumper_image": "ui/skin_picker_screen.json", - "cycle_pack_button": "ui/skin_picker_screen.json", - "cycle_pack_left_button": "ui/skin_picker_screen.json", - "cycle_pack_right_button": "ui/skin_picker_screen.json", - "skin_button": "ui/skin_picker_screen.json", - "skin_button/hover": "ui/skin_picker_screen.json", - "skin_button/pressed": "ui/skin_picker_screen.json", - "skin_rotation_arrows": "ui/skin_picker_screen.json", - "skin_viewer_panel": "ui/skin_picker_screen.json", - "skin_viewer_panel/custom_skin_button": "ui/skin_picker_screen.json", - "skin_viewer_panel/skin_model_panel": "ui/skin_picker_screen.json", - "skin_viewer_panel/skin_model_panel/skin_model": "ui/skin_picker_screen.json", - "skin_viewer_panel/lock": "ui/skin_picker_screen.json", - "undo_skin_button": "ui/skin_picker_screen.json", - "accept_skin_button": "ui/skin_picker_screen.json", - "stack_item": "ui/skin_picker_screen.json", - "accept_skin_panel": "ui/skin_picker_screen.json", - "accept_skin_panel/stack_item_0": "ui/skin_picker_screen.json", - "accept_skin_panel/stack_item_0/undo_btn": "ui/skin_picker_screen.json", - "accept_skin_panel/stack_item_1": "ui/skin_picker_screen.json", - "accept_skin_panel/stack_item_1/accept_button": "ui/skin_picker_screen.json", - "appearance_status_image_panel": "ui/skin_picker_screen.json", - "appearance_status_image_panel/limited_status_image": "ui/skin_picker_screen.json", - "appearance_status_image_panel/no_restrictions_status_image": "ui/skin_picker_screen.json", - "appearance_status_content": "ui/skin_picker_screen.json", - "appearance_status_content/appearance_status_image_panel": "ui/skin_picker_screen.json", - "appearance_status_content/padding": "ui/skin_picker_screen.json", - "appearance_status_content/appearance_status_label_panel": "ui/skin_picker_screen.json", - "appearance_status_content/appearance_status_label_panel/appearance_status_label": "ui/skin_picker_screen.json", - "preview_skin_panel": "ui/skin_picker_screen.json", - "preview_skin_panel/preview": "ui/skin_picker_screen.json", - "preview_skin_panel/button_frame": "ui/skin_picker_screen.json", - "preview_skin_panel/button_frame/stack_item_0": "ui/skin_picker_screen.json", - "preview_skin_panel/button_frame/stack_item_0/rotation": "ui/skin_picker_screen.json", - "preview_skin_panel/button_frame/padding": "ui/skin_picker_screen.json", - "preview_skin_panel/button_frame/notification_and_accept_input_panel": "ui/skin_picker_screen.json", - "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack": "ui/skin_picker_screen.json", - "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/skin_status_notification_section": "ui/skin_picker_screen.json", - "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/skin_status_notification_section/appearance_status_notification_panel": "ui/skin_picker_screen.json", - "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1": "ui/skin_picker_screen.json", - "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1/accept": "ui/skin_picker_screen.json", - "skin_model": "ui/skin_picker_screen.json", - "premium_skin_button": "ui/skin_picker_screen.json", - "skin_lock": "ui/skin_picker_screen.json", - "new_pack_icon": "ui/skin_picker_screen.json", - "new_pack_icon/icon": "ui/skin_picker_screen.json", - "pack_lock": "ui/skin_picker_screen.json", - "pack_lock/locked": "ui/skin_picker_screen.json", - "pack_lock/unlocked": "ui/skin_picker_screen.json", - "skin_input_panel": "ui/skin_picker_screen.json", - "skin_input_panel/sg": "ui/skin_picker_screen.json", - "skins_grid_item": "ui/skin_picker_screen.json", - "skins_grid_item/clip": "ui/skin_picker_screen.json", - "skins_grid_item/clip/model": "ui/skin_picker_screen.json", - "skins_grid_item/lock": "ui/skin_picker_screen.json", - "skins_grid_item/button": "ui/skin_picker_screen.json", - "skins_grid": "ui/skin_picker_screen.json", - "pack_name": "ui/skin_picker_screen.json", - "pack_grid_item": "ui/skin_picker_screen.json", - "pack_grid_item/header": "ui/skin_picker_screen.json", - "pack_grid_item/header/padding": "ui/skin_picker_screen.json", - "pack_grid_item/header/pack_lock": "ui/skin_picker_screen.json", - "pack_grid_item/header/pack_name": "ui/skin_picker_screen.json", - "pack_grid_item/header/padding_2": "ui/skin_picker_screen.json", - "pack_grid_item/header/new_pack_icon": "ui/skin_picker_screen.json", - "pack_grid_item/header/padding_3": "ui/skin_picker_screen.json", - "pack_grid_item/bg": "ui/skin_picker_screen.json", - "pack_grid_item/bg/skin_input_panel": "ui/skin_picker_screen.json", - "pack_grid_item/bg/expand_view_button": "ui/skin_picker_screen.json", - "pack_grid_item/bg/progress_loading_no_connection": "ui/skin_picker_screen.json", - "pack_grid_item/bg/progress_loading": "ui/skin_picker_screen.json", - "premium_packs_grid": "ui/skin_picker_screen.json", - "standard_skin_button": "ui/skin_picker_screen.json", - "default_skins_grid_item": "ui/skin_picker_screen.json", - "default_skins_grid_item/model": "ui/skin_picker_screen.json", - "default_skins_grid_item/button": "ui/skin_picker_screen.json", - "default_skins_grid": "ui/skin_picker_screen.json", - "recent_skins_grid_item": "ui/skin_picker_screen.json", - "recent_skins_grid_item/clip": "ui/skin_picker_screen.json", - "recent_skins_grid_item/clip/model": "ui/skin_picker_screen.json", - "recent_skins_grid_item/button": "ui/skin_picker_screen.json", - "recent_skins_grid": "ui/skin_picker_screen.json", - "standard_frame": "ui/skin_picker_screen.json", - "standard_header": "ui/skin_picker_screen.json", - "standard_fill": "ui/skin_picker_screen.json", - "standard_panel": "ui/skin_picker_screen.json", - "standard_panel/default_skins": "ui/skin_picker_screen.json", - "standard_panel/default_skins/header": "ui/skin_picker_screen.json", - "standard_panel/default_skins/fill": "ui/skin_picker_screen.json", - "standard_panel/default_skins/fill/default_skins_grid": "ui/skin_picker_screen.json", - "standard_panel/recent_skins": "ui/skin_picker_screen.json", - "standard_panel/recent_skins/header": "ui/skin_picker_screen.json", - "standard_panel/recent_skins/fill": "ui/skin_picker_screen.json", - "standard_panel/recent_skins/fill/recent_skins_grid": "ui/skin_picker_screen.json", - "standard_panel/recent_skins/fill/recent_skins_loading_panel": "ui/skin_picker_screen.json", - "scrolling_content_stack": "ui/skin_picker_screen.json", - "scrolling_content_stack/standard_panel": "ui/skin_picker_screen.json", - "scrolling_content_stack/premium_packs_grid": "ui/skin_picker_screen.json", - "all_skins_content": "ui/skin_picker_screen.json", - "all_skins_content/scrolling_frame": "ui/skin_picker_screen.json", - "all_skins_content/scrolling_frame/change_skin_scroll": "ui/skin_picker_screen.json", - "all_skins_content/scrolling_frame/progress_loading": "ui/skin_picker_screen.json", - "all_skins_frame": "ui/skin_picker_screen.json", - "all_skins_frame/all_skins_content": "ui/skin_picker_screen.json", - "title_bar": "ui/skin_picker_screen.json", - "title_bar/padding_0": "ui/skin_picker_screen.json", - "title_bar/fill_panel": "ui/skin_picker_screen.json", - "title_bar/fill_panel/title_holder": "ui/skin_picker_screen.json", - "title_bar/fill_panel/title_holder/change_skin_title": "ui/skin_picker_screen.json", - "title_bar/padding_1": "ui/skin_picker_screen.json", - "title_bar/skin_name_holder": "ui/skin_picker_screen.json", - "title_bar/skin_name_holder/preview_skin_name": "ui/skin_picker_screen.json", - "title_bar/padding_2": "ui/skin_picker_screen.json", - "popup_dialog_skin_model": "ui/skin_picker_screen.json", - "popup_dialog_skin_model/paper_doll": "ui/skin_picker_screen.json", - "popup_dialog_choose_skin_type_button": "ui/skin_picker_screen.json", - "popup_dialog_choose_skin_type_button/hover": "ui/skin_picker_screen.json", - "popup_dialog_choose_skin_type_button/pressed": "ui/skin_picker_screen.json", - "popup_dialog_choose_skin_type_panel": "ui/skin_picker_screen.json", - "popup_dialog_choose_skin_type_panel/model": "ui/skin_picker_screen.json", - "popup_dialog_choose_skin_type_panel/button_highlight": "ui/skin_picker_screen.json", - "popup_dialog__invalid_custom_skin": "ui/skin_picker_screen.json", - "popup_dialog__invalid_custom_skin/popup_dialog_bg": "ui/skin_picker_screen.json", - "popup_dialog__invalid_custom_skin/popup_dialog_message": "ui/skin_picker_screen.json", - "popup_dialog__invalid_custom_skin/popup_dialog_middle_button": "ui/skin_picker_screen.json", - "popup_dialog__upsell_without_store": "ui/skin_picker_screen.json", - "popup_dialog__choose_skin_type": "ui/skin_picker_screen.json", - "popup_dialog__choose_skin_type/popup_dialog_bg": "ui/skin_picker_screen.json", - "popup_dialog__choose_skin_type/popup_dialog_message": "ui/skin_picker_screen.json", - "popup_dialog__choose_skin_type/left": "ui/skin_picker_screen.json", - "popup_dialog__choose_skin_type/right": "ui/skin_picker_screen.json", - "content": "ui/skin_picker_screen.json", - "content/title": "ui/skin_picker_screen.json", - "content/selector_area": "ui/skin_picker_screen.json", - "content/content_area": "ui/skin_picker_screen.json", - "content/section_divider": "ui/skin_picker_screen.json", - "skin_picker_screen": "ui/skin_picker_screen.json", - "skin_picker_screen_content": "ui/skin_picker_screen.json", - "skin_picker_screen_content/bg": "ui/skin_picker_screen.json", - "skin_picker_screen_content/container": "ui/skin_picker_screen.json", - "skin_picker_screen_content/container/content": "ui/skin_picker_screen.json", - "skin_picker_screen_content/popup_dialog_factory": "ui/skin_picker_screen.json", - "scrollable_selector_area_content": "ui/skin_picker_screen.json", - "selector_area": "ui/skin_picker_screen.json", - "selector_area/all_skins": "ui/skin_picker_screen.json", - "selector_area/inactive_modal_pane_fade": "ui/skin_picker_screen.json", - "content_area": "ui/skin_picker_screen.json", - "content_area/preview_skin": "ui/skin_picker_screen.json", - "content_area/inactive_modal_pane_fade": "ui/skin_picker_screen.json", - "section_divider": "ui/skin_picker_screen.json", - }, - "smithing_table": { - "smithing_image": "ui/smithing_table_screen.json", - "ingot_image": "ui/smithing_table_screen.json", - "smithing_icon": "ui/smithing_table_screen.json", - "upgrade_label": "ui/smithing_table_screen.json", - "icon_and_text_panel": "ui/smithing_table_screen.json", - "icon_and_text_panel/smithing_icon_panel": "ui/smithing_table_screen.json", - "icon_and_text_panel/upgrade_label": "ui/smithing_table_screen.json", - "smithing_icon_panel": "ui/smithing_table_screen.json", - "smithing_icon_panel/smithing_icon": "ui/smithing_table_screen.json", - "plus_sign_icon": "ui/smithing_table_screen.json", - "arrow_icon": "ui/smithing_table_screen.json", - "cross_out_icon": "ui/smithing_table_screen.json", - "smithing_table_output_slot_button": "ui/smithing_table_screen.json", - "smithing_table_item_slot": "ui/smithing_table_screen.json", - "smithing_table_item_slot/container_item": "ui/smithing_table_screen.json", - "recipe_grid": "ui/smithing_table_screen.json", - "recipe_grid/input_item_slot": "ui/smithing_table_screen.json", - "recipe_grid/plus": "ui/smithing_table_screen.json", - "recipe_grid/plus/plus_sign_icon": "ui/smithing_table_screen.json", - "recipe_grid/material_item_slot": "ui/smithing_table_screen.json", - "recipe_grid/yields": "ui/smithing_table_screen.json", - "recipe_grid/yields/arrow_icon": "ui/smithing_table_screen.json", - "recipe_grid/yields/cross_out_icon": "ui/smithing_table_screen.json", - "recipe_grid/result_item_slot": "ui/smithing_table_screen.json", - "recipe_panel": "ui/smithing_table_screen.json", - "recipe_panel/recipe_grid": "ui/smithing_table_screen.json", - "top_half_panel": "ui/smithing_table_screen.json", - "top_half_panel/icon_and_text_panel": "ui/smithing_table_screen.json", - "top_half_panel/recipe_panel": "ui/smithing_table_screen.json", - "smithing_table_panel": "ui/smithing_table_screen.json", - "smithing_table_panel/container_gamepad_helpers": "ui/smithing_table_screen.json", - "smithing_table_panel/selected_item_details_factory": "ui/smithing_table_screen.json", - "smithing_table_panel/item_lock_notification_factory": "ui/smithing_table_screen.json", - "smithing_table_panel/root_panel": "ui/smithing_table_screen.json", - "smithing_table_panel/root_panel/common_panel": "ui/smithing_table_screen.json", - "smithing_table_panel/root_panel/smithing_table_screen_inventory": "ui/smithing_table_screen.json", - "smithing_table_panel/root_panel/smithing_table_screen_inventory/top_half_panel": "ui/smithing_table_screen.json", - "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label": "ui/smithing_table_screen.json", - "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid": "ui/smithing_table_screen.json", - "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button": "ui/smithing_table_screen.json", - "smithing_table_panel/root_panel/inventory_selected_icon_button": "ui/smithing_table_screen.json", - "smithing_table_panel/root_panel/gamepad_cursor": "ui/smithing_table_screen.json", - "smithing_table_panel/flying_item_renderer": "ui/smithing_table_screen.json", - "smithing_table_screen": "ui/smithing_table_screen.json", - }, - "smithing_table_2": { - "smithing_icon": "ui/smithing_table_2_screen.json", - "upgrade_label": "ui/smithing_table_2_screen.json", - "icon_and_text_panel": "ui/smithing_table_2_screen.json", - "icon_and_text_panel/smithing_icon_panel": "ui/smithing_table_2_screen.json", - "icon_and_text_panel/upgrade_label": "ui/smithing_table_2_screen.json", - "smithing_icon_panel": "ui/smithing_table_2_screen.json", - "smithing_icon_panel/smithing_icon": "ui/smithing_table_2_screen.json", - "smithing_image": "ui/smithing_table_2_screen.json", - "smithing_material_image_ingot": "ui/smithing_table_2_screen.json", - "arrow_icon": "ui/smithing_table_2_screen.json", - "cross_out_icon_image": "ui/smithing_table_2_screen.json", - "cross_out_icon_button": "ui/smithing_table_2_screen.json", - "cross_out_icon_button/default": "ui/smithing_table_2_screen.json", - "cross_out_icon_button/hover": "ui/smithing_table_2_screen.json", - "smithing_input_image_templates": "ui/smithing_table_2_screen.json", - "smithing_input_image_armors": "ui/smithing_table_2_screen.json", - "smithing_input_image_armors_and_tools": "ui/smithing_table_2_screen.json", - "smithing_material_image_all": "ui/smithing_table_2_screen.json", - "template_overlay_image": "ui/smithing_table_2_screen.json", - "template_overlay_image/templates": "ui/smithing_table_2_screen.json", - "input_overlay_image": "ui/smithing_table_2_screen.json", - "input_overlay_image/armors_and_tools": "ui/smithing_table_2_screen.json", - "input_overlay_image/armors": "ui/smithing_table_2_screen.json", - "material_overlay_image": "ui/smithing_table_2_screen.json", - "material_overlay_image/all_materials": "ui/smithing_table_2_screen.json", - "material_overlay_image/ingot": "ui/smithing_table_2_screen.json", - "smithing_table_output_slot_button": "ui/smithing_table_2_screen.json", - "smithing_table_item_slot": "ui/smithing_table_2_screen.json", - "smithing_table_item_slot/container_item": "ui/smithing_table_2_screen.json", - "recipe_grid": "ui/smithing_table_2_screen.json", - "recipe_grid/template_item_slot": "ui/smithing_table_2_screen.json", - "recipe_grid/input_item_slot": "ui/smithing_table_2_screen.json", - "recipe_grid/material_item_slot": "ui/smithing_table_2_screen.json", - "recipe_grid/yields": "ui/smithing_table_2_screen.json", - "recipe_grid/yields/arrow_icon": "ui/smithing_table_2_screen.json", - "recipe_grid/yields/cross_out_icon": "ui/smithing_table_2_screen.json", - "recipe_grid/result_item_slot": "ui/smithing_table_2_screen.json", - "recipe_grid/result_item_preview": "ui/smithing_table_2_screen.json", - "recipe_panel": "ui/smithing_table_2_screen.json", - "recipe_panel/recipe_grid": "ui/smithing_table_2_screen.json", - "result_item_preview": "ui/smithing_table_2_screen.json", - "result_item_preview/inner": "ui/smithing_table_2_screen.json", - "result_item_preview_inner": "ui/smithing_table_2_screen.json", - "result_item_preview_inner/smithing_preview_renderer": "ui/smithing_table_2_screen.json", - "toolbar_background": "ui/smithing_table_2_screen.json", - "help_button": "ui/smithing_table_2_screen.json", - "toolbar_panel": "ui/smithing_table_2_screen.json", - "toolbar_panel/toolbar_background": "ui/smithing_table_2_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel": "ui/smithing_table_2_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": "ui/smithing_table_2_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": "ui/smithing_table_2_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": "ui/smithing_table_2_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": "ui/smithing_table_2_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": "ui/smithing_table_2_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": "ui/smithing_table_2_screen.json", - "toolbar_anchor": "ui/smithing_table_2_screen.json", - "toolbar_anchor/toolbar_panel": "ui/smithing_table_2_screen.json", - "top_half_panel": "ui/smithing_table_2_screen.json", - "top_half_panel/icon_and_text_panel": "ui/smithing_table_2_screen.json", - "top_half_panel/recipe_panel": "ui/smithing_table_2_screen.json", - "smithing_table_panel": "ui/smithing_table_2_screen.json", - "smithing_table_panel/container_gamepad_helpers": "ui/smithing_table_2_screen.json", - "smithing_table_panel/selected_item_details_factory": "ui/smithing_table_2_screen.json", - "smithing_table_panel/item_lock_notification_factory": "ui/smithing_table_2_screen.json", - "smithing_table_panel/root_panel": "ui/smithing_table_2_screen.json", - "smithing_table_panel/root_panel/common_panel": "ui/smithing_table_2_screen.json", - "smithing_table_panel/root_panel/smithing_table_screen_inventory": "ui/smithing_table_2_screen.json", - "smithing_table_panel/root_panel/smithing_table_screen_inventory/top_half_panel": "ui/smithing_table_2_screen.json", - "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label": "ui/smithing_table_2_screen.json", - "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid": "ui/smithing_table_2_screen.json", - "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button": "ui/smithing_table_2_screen.json", - "smithing_table_panel/root_panel/inventory_selected_icon_button": "ui/smithing_table_2_screen.json", - "smithing_table_panel/root_panel/toolbar_anchor": "ui/smithing_table_2_screen.json", - "smithing_table_panel/root_panel/gamepad_cursor": "ui/smithing_table_2_screen.json", - "smithing_table_panel/flying_item_renderer": "ui/smithing_table_2_screen.json", - }, - "smithing_table_pocket": { - "ingot_image": "ui/smithing_table_screen_pocket.json", - "background_image": "ui/smithing_table_screen_pocket.json", - "arrow_icon": "ui/smithing_table_screen_pocket.json", - "smithing_icon": "ui/smithing_table_screen_pocket.json", - "upgrade_label": "ui/smithing_table_screen_pocket.json", - "smithing_icon_panel": "ui/smithing_table_screen_pocket.json", - "smithing_icon_panel/smithing_icon": "ui/smithing_table_screen_pocket.json", - "smithing_table_title_and_text_panel": "ui/smithing_table_screen_pocket.json", - "smithing_table_title_and_text_panel/smithing_icon_panel": "ui/smithing_table_screen_pocket.json", - "smithing_table_title_and_text_panel/upgrade_label": "ui/smithing_table_screen_pocket.json", - "slots_panel": "ui/smithing_table_screen_pocket.json", - "slots_panel/input_slot": "ui/smithing_table_screen_pocket.json", - "slots_panel/material_slot": "ui/smithing_table_screen_pocket.json", - "slots_panel/result_slot": "ui/smithing_table_screen_pocket.json", - "slots_panel/plus_sign": "ui/smithing_table_screen_pocket.json", - "slots_panel/arrow": "ui/smithing_table_screen_pocket.json", - "slots_panel/arrow/cross_out": "ui/smithing_table_screen_pocket.json", - "smithing_table_contents_panel": "ui/smithing_table_screen_pocket.json", - "smithing_table_contents_panel/smithing_table_title_and_text_panel": "ui/smithing_table_screen_pocket.json", - "smithing_table_contents_panel/slots_panel": "ui/smithing_table_screen_pocket.json", - "inventory_grid": "ui/smithing_table_screen_pocket.json", - "inventory_content": "ui/smithing_table_screen_pocket.json", - "inventory_content/scrolling_panel": "ui/smithing_table_screen_pocket.json", - "inventory_and_smithing_table_panel": "ui/smithing_table_screen_pocket.json", - "inventory_and_smithing_table_panel/inventory_half_screen": "ui/smithing_table_screen_pocket.json", - "inventory_and_smithing_table_panel/inventory_half_screen/inventory_content": "ui/smithing_table_screen_pocket.json", - "inventory_and_smithing_table_panel/smithing_half_screen": "ui/smithing_table_screen_pocket.json", - "inventory_and_smithing_table_panel/smithing_half_screen/smithing_table_content": "ui/smithing_table_screen_pocket.json", - "header": "ui/smithing_table_screen_pocket.json", - "header/header_background": "ui/smithing_table_screen_pocket.json", - "header/close_button": "ui/smithing_table_screen_pocket.json", - "header/panel": "ui/smithing_table_screen_pocket.json", - "header/panel/title_label": "ui/smithing_table_screen_pocket.json", - "header_and_content_stack_panel": "ui/smithing_table_screen_pocket.json", - "header_and_content_stack_panel/header": "ui/smithing_table_screen_pocket.json", - "header_and_content_stack_panel/inventory_and_smithing_table_panel": "ui/smithing_table_screen_pocket.json", - "smithing_table_panel": "ui/smithing_table_screen_pocket.json", - "smithing_table_panel/bg": "ui/smithing_table_screen_pocket.json", - "smithing_table_panel/root_panel": "ui/smithing_table_screen_pocket.json", - "smithing_table_panel/header_and_content_stack_panel": "ui/smithing_table_screen_pocket.json", - "smithing_table_panel/container_gamepad_helpers": "ui/smithing_table_screen_pocket.json", - "smithing_table_panel/inventory_selected_icon_button": "ui/smithing_table_screen_pocket.json", - "smithing_table_panel/hold_icon": "ui/smithing_table_screen_pocket.json", - "smithing_table_panel/selected_item_details_factory": "ui/smithing_table_screen_pocket.json", - "smithing_table_panel/item_lock_notification_factory": "ui/smithing_table_screen_pocket.json", - "smithing_table_panel/flying_item_renderer": "ui/smithing_table_screen_pocket.json", - }, - "smithing_table_2_pocket": { - "smithing_table_item_renderer": "ui/smithing_table_2_screen_pocket.json", - "smithing_image": "ui/smithing_table_2_screen_pocket.json", - "smithing_material_image_ingot": "ui/smithing_table_2_screen_pocket.json", - "background_image": "ui/smithing_table_2_screen_pocket.json", - "smithing_input_image_templates": "ui/smithing_table_2_screen_pocket.json", - "smithing_material_image_all": "ui/smithing_table_2_screen_pocket.json", - "smithing_input_image_armors": "ui/smithing_table_2_screen_pocket.json", - "smithing_input_image_armors_and_tools": "ui/smithing_table_2_screen_pocket.json", - "template_overlay_image": "ui/smithing_table_2_screen_pocket.json", - "template_overlay_image/templates": "ui/smithing_table_2_screen_pocket.json", - "input_overlay_image": "ui/smithing_table_2_screen_pocket.json", - "input_overlay_image/armors_and_tools": "ui/smithing_table_2_screen_pocket.json", - "input_overlay_image/armors": "ui/smithing_table_2_screen_pocket.json", - "material_overlay_image": "ui/smithing_table_2_screen_pocket.json", - "material_overlay_image/ingot": "ui/smithing_table_2_screen_pocket.json", - "material_overlay_image/all_materials": "ui/smithing_table_2_screen_pocket.json", - "arrow_icon": "ui/smithing_table_2_screen_pocket.json", - "smithing_icon": "ui/smithing_table_2_screen_pocket.json", - "upgrade_label": "ui/smithing_table_2_screen_pocket.json", - "slot_grid_item": "ui/smithing_table_2_screen_pocket.json", - "slot_grid_item/slot": "ui/smithing_table_2_screen_pocket.json", - "template_slot": "ui/smithing_table_2_screen_pocket.json", - "input_slot": "ui/smithing_table_2_screen_pocket.json", - "material_slot": "ui/smithing_table_2_screen_pocket.json", - "inputs_stack": "ui/smithing_table_2_screen_pocket.json", - "inputs_stack/template_slot": "ui/smithing_table_2_screen_pocket.json", - "inputs_stack/padding1": "ui/smithing_table_2_screen_pocket.json", - "inputs_stack/input_slot": "ui/smithing_table_2_screen_pocket.json", - "inputs_stack/padding2": "ui/smithing_table_2_screen_pocket.json", - "inputs_stack/material_slot": "ui/smithing_table_2_screen_pocket.json", - "inputs_panel": "ui/smithing_table_2_screen_pocket.json", - "inputs_panel/inputs_stack": "ui/smithing_table_2_screen_pocket.json", - "result_slot": "ui/smithing_table_2_screen_pocket.json", - "cross_out_image": "ui/smithing_table_2_screen_pocket.json", - "cross_out_icon": "ui/smithing_table_2_screen_pocket.json", - "cross_out_icon/default": "ui/smithing_table_2_screen_pocket.json", - "cross_out_icon/hover": "ui/smithing_table_2_screen_pocket.json", - "crafting_arrow": "ui/smithing_table_2_screen_pocket.json", - "crafting_arrow/cross_out": "ui/smithing_table_2_screen_pocket.json", - "crafting_arrow_grid_item": "ui/smithing_table_2_screen_pocket.json", - "crafting_arrow_grid_item/crafting_arrow": "ui/smithing_table_2_screen_pocket.json", - "result_item_preview": "ui/smithing_table_2_screen_pocket.json", - "result_item_preview/smithing_preview_renderer": "ui/smithing_table_2_screen_pocket.json", - "result_item_preview_grid_item": "ui/smithing_table_2_screen_pocket.json", - "result_item_preview_grid_item/result_preview": "ui/smithing_table_2_screen_pocket.json", - "smithing_table_contents_panel": "ui/smithing_table_2_screen_pocket.json", - "smithing_table_contents_panel/label_holder": "ui/smithing_table_2_screen_pocket.json", - "smithing_table_contents_panel/label_holder/title_label": "ui/smithing_table_2_screen_pocket.json", - "smithing_table_contents_panel/inputs": "ui/smithing_table_2_screen_pocket.json", - "smithing_table_contents_panel/result_slot": "ui/smithing_table_2_screen_pocket.json", - "smithing_table_contents_panel/crafting_arrow": "ui/smithing_table_2_screen_pocket.json", - "smithing_table_contents_panel/result_item_preview": "ui/smithing_table_2_screen_pocket.json", - "chest_item_renderer": "ui/smithing_table_2_screen_pocket.json", - "left_tab_inventory": "ui/smithing_table_2_screen_pocket.json", - "left_navigation_tabs": "ui/smithing_table_2_screen_pocket.json", - "left_navigation_tabs/left_tab_inventory": "ui/smithing_table_2_screen_pocket.json", - "inventory_scroll_panel": "ui/smithing_table_2_screen_pocket.json", - "left_panel": "ui/smithing_table_2_screen_pocket.json", - "left_panel/gamepad_helpers_and_tabs_holder": "ui/smithing_table_2_screen_pocket.json", - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": "ui/smithing_table_2_screen_pocket.json", - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": "ui/smithing_table_2_screen_pocket.json", - "left_panel/content": "ui/smithing_table_2_screen_pocket.json", - "left_panel/content/bg": "ui/smithing_table_2_screen_pocket.json", - "left_panel/content/inventory_scroll_panel": "ui/smithing_table_2_screen_pocket.json", - "right_tab_smithing_table": "ui/smithing_table_2_screen_pocket.json", - "right_navigation_tabs": "ui/smithing_table_2_screen_pocket.json", - "right_navigation_tabs/pocket_tab_close_and_help_button": "ui/smithing_table_2_screen_pocket.json", - "right_navigation_tabs/fill": "ui/smithing_table_2_screen_pocket.json", - "right_navigation_tabs/right_tab_smithing_table": "ui/smithing_table_2_screen_pocket.json", - "right_panel": "ui/smithing_table_2_screen_pocket.json", - "right_panel/content": "ui/smithing_table_2_screen_pocket.json", - "right_panel/content/bg": "ui/smithing_table_2_screen_pocket.json", - "right_panel/content/smithing_content_stack_panel": "ui/smithing_table_2_screen_pocket.json", - "right_panel/navigation_tabs_holder": "ui/smithing_table_2_screen_pocket.json", - "right_panel/navigation_tabs_holder/right_navigation_tabs": "ui/smithing_table_2_screen_pocket.json", - "pocket_hotbar_and_content_panels": "ui/smithing_table_2_screen_pocket.json", - "smithing_table_panel": "ui/smithing_table_2_screen_pocket.json", - "smithing_table_panel/pocket_hotbar_and_content_panels": "ui/smithing_table_2_screen_pocket.json", - "smithing_table_panel/container_gamepad_helpers": "ui/smithing_table_2_screen_pocket.json", - "smithing_table_panel/selected_item_details_factory": "ui/smithing_table_2_screen_pocket.json", - "smithing_table_panel/item_lock_notification_factory": "ui/smithing_table_2_screen_pocket.json", - "smithing_table_panel/inventory_selected_icon_button": "ui/smithing_table_2_screen_pocket.json", - "smithing_table_panel/inventory_take_progress_icon_button": "ui/smithing_table_2_screen_pocket.json", - "smithing_table_panel/flying_item_renderer": "ui/smithing_table_2_screen_pocket.json", - }, - "smoker": { - "smoker_screen": "ui/smoker_screen.json", - }, - "start": { - "achievements_icon": "ui/start_screen.json", - "inbox_bell_animated_icon": "ui/start_screen.json", - "inbox_icon": "ui/start_screen.json", - "unread_notification_icon": "ui/start_screen.json", - "feedback_icon": "ui/start_screen.json", - "feedback_icon_edu": "ui/start_screen.json", - "Xbox_icon": "ui/start_screen.json", - "change_skin_icon": "ui/start_screen.json", - "manage_accounts_icon": "ui/start_screen.json", - "new_offers_icon": "ui/start_screen.json", - "edu_ai_lesson_crafter_button_content": "ui/start_screen.json", - "edu_ai_lesson_crafter_button_content/padded_label": "ui/start_screen.json", - "edu_ai_lesson_crafter_button_content/padded_label/label": "ui/start_screen.json", - "edu_ai_lesson_crafter_button_content/padded_icon": "ui/start_screen.json", - "edu_ai_lesson_crafter_button_content/padded_icon/icon": "ui/start_screen.json", - "preview_tag": "ui/start_screen.json", - "preview_tag/preview_label": "ui/start_screen.json", - "update_prompt_icon": "ui/start_screen.json", - "marketplace_error_icon": "ui/start_screen.json", - "sale_ribbon_icon": "ui/start_screen.json", - "alex_icon": "ui/start_screen.json", - "gamerpic": "ui/start_screen.json", - "copyright": "ui/start_screen.json", - "copyright/label": "ui/start_screen.json", - "copyright/label_background": "ui/start_screen.json", - "development_version": "ui/start_screen.json", - "development_version/label": "ui/start_screen.json", - "development_version/label_background": "ui/start_screen.json", - "version": "ui/start_screen.json", - "version/label": "ui/start_screen.json", - "version/label_background": "ui/start_screen.json", - "trial_info": "ui/start_screen.json", - "trial_info/trial_label": "ui/start_screen.json", - "trial_info/label_background": "ui/start_screen.json", - "text_panel": "ui/start_screen.json", - "text_panel/copyright": "ui/start_screen.json", - "text_panel/development_version": "ui/start_screen.json", - "text_panel/version": "ui/start_screen.json", - "skin_or_profile_panel": "ui/start_screen.json", - "skin_or_profile_panel/change_skin": "ui/start_screen.json", - "skin_or_profile_panel/change_skin_button_demo": "ui/start_screen.json", - "skin_or_profile_panel/dressing_room_button": "ui/start_screen.json", - "skin_or_profile_panel/switch_accounts": "ui/start_screen.json", - "skin_or_profile_panel/profile_button": "ui/start_screen.json", - "change_skin_button": "ui/start_screen.json", - "change_skin_button_demo": "ui/start_screen.json", - "switch_accounts_button": "ui/start_screen.json", - "dressing_room_button": "ui/start_screen.json", - "profile_button_content": "ui/start_screen.json", - "profile_button_content/gamerpic_offset_wrapper": "ui/start_screen.json", - "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border": "ui/start_screen.json", - "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic": "ui/start_screen.json", - "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon": "ui/start_screen.json", - "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black": "ui/start_screen.json", - "profile_button_content/padding_middle": "ui/start_screen.json", - "profile_button_content/vertically_central_text": "ui/start_screen.json", - "profile_button_content/vertically_central_text/top_padding": "ui/start_screen.json", - "profile_button_content/vertically_central_text/profile_button_label": "ui/start_screen.json", - "profile_button_content/padding_right": "ui/start_screen.json", - "profile_button": "ui/start_screen.json", - "skin_viewer_panel": "ui/start_screen.json", - "skin_viewer_panel/paper_doll_panel": "ui/start_screen.json", - "skin_viewer_panel/paper_doll_panel/paper_doll": "ui/start_screen.json", - "skin_viewer_panel/paper_doll_panel/appearacne_loading_panel": "ui/start_screen.json", - "skin_viewer_panel/paper_doll_name_tag": "ui/start_screen.json", - "skin_panel": "ui/start_screen.json", - "skin_panel/change_profile_or_skin": "ui/start_screen.json", - "skin_panel/viewer_panel": "ui/start_screen.json", - "friendsdrawer_button_panel": "ui/start_screen.json", - "friendsdrawer_button_panel/friendsdrawer_button": "ui/start_screen.json", - "gathering_button": "ui/start_screen.json", - "badge_and_caption_animated": "ui/start_screen.json", - "badge_and_caption_animated/caption_and_padding": "ui/start_screen.json", - "badge_and_caption_animated/caption_and_padding/pad": "ui/start_screen.json", - "badge_and_caption_animated/caption_and_padding/caption": "ui/start_screen.json", - "badge_and_caption_animated/badge_and_padding": "ui/start_screen.json", - "badge_and_caption_animated/badge_and_padding/badge": "ui/start_screen.json", - "badge_and_caption_animated/badge_and_padding/fill": "ui/start_screen.json", - "gathering_badge": "ui/start_screen.json", - "badge_and_caption": "ui/start_screen.json", - "badge_and_caption/caption_and_padding": "ui/start_screen.json", - "badge_and_caption/caption_and_padding/pad": "ui/start_screen.json", - "badge_and_caption/caption_and_padding/caption": "ui/start_screen.json", - "badge_and_caption/badge_and_padding": "ui/start_screen.json", - "badge_and_caption/badge_and_padding/badge": "ui/start_screen.json", - "badge_and_caption/badge_and_padding/fill": "ui/start_screen.json", - "gathering_caption": "ui/start_screen.json", - "gathering_caption/countdown_text": "ui/start_screen.json", - "gathering_panel": "ui/start_screen.json", - "gathering_panel/horizontal_panel": "ui/start_screen.json", - "gathering_panel/horizontal_panel/pad": "ui/start_screen.json", - "gathering_panel/horizontal_panel/inner_panel": "ui/start_screen.json", - "gathering_panel/horizontal_panel/inner_panel/badge_and_caption": "ui/start_screen.json", - "gathering_panel/horizontal_panel/inner_panel/badge_and_caption_animated": "ui/start_screen.json", - "gathering_panel/horizontal_panel/inner_panel/gathering_button": "ui/start_screen.json", - "gathering_panel/bottom_pad": "ui/start_screen.json", - "edu_feedback_button": "ui/start_screen.json", - "release_feedback_button": "ui/start_screen.json", - "pre_release_feedback_button": "ui/start_screen.json", - "feedback_button": "ui/start_screen.json", - "feedback_button/edu_feedback_button": "ui/start_screen.json", - "feedback_button/release_feedback_button": "ui/start_screen.json", - "feedback_button/pre_release_feedback_button": "ui/start_screen.json", - "achievements_button": "ui/start_screen.json", - "achievements_icon_button": "ui/start_screen.json", - "achievements_icon_button/achievements_button": "ui/start_screen.json", - "inbox_button": "ui/start_screen.json", - "inbox_button_unread_panel": "ui/start_screen.json", - "inbox_button_unread_panel/background": "ui/start_screen.json", - "inbox_icon_button": "ui/start_screen.json", - "inbox_icon_button/inbox_button": "ui/start_screen.json", - "inbox_icon_button/inbox_button_unread_panel": "ui/start_screen.json", - "xbl_signin_button": "ui/start_screen.json", - "platform_signin_button": "ui/start_screen.json", - "column_frame": "ui/start_screen.json", - "educator_resources_button": "ui/start_screen.json", - "upper_online_buttons_panel": "ui/start_screen.json", - "upper_online_buttons_panel/top_pad": "ui/start_screen.json", - "upper_online_buttons_panel/stacked_column": "ui/start_screen.json", - "upper_online_buttons_panel/stacked_column/xbl_btn_padding": "ui/start_screen.json", - "upper_online_buttons_panel/stacked_column/xbl_btn": "ui/start_screen.json", - "upper_online_buttons_panel/stacked_column/xbl_btn/xbl_signin_button": "ui/start_screen.json", - "upper_online_buttons_panel/stacked_column/platform_signin_btn": "ui/start_screen.json", - "upper_online_buttons_panel/stacked_column/platform_signin_btn/platform_signin_button": "ui/start_screen.json", - "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label": "ui/start_screen.json", - "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border": "ui/start_screen.json", - "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/gamerpic": "ui/start_screen.json", - "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/border_white": "ui/start_screen.json", - "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/spacer": "ui/start_screen.json", - "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel": "ui/start_screen.json", - "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel/gamertag_label": "ui/start_screen.json", - "upper_online_buttons_panel/bottom_pad": "ui/start_screen.json", - "lower_online_buttons_panel": "ui/start_screen.json", - "lower_online_buttons_panel/stacked_column": "ui/start_screen.json", - "lower_online_buttons_panel/stacked_column/feedback_padding": "ui/start_screen.json", - "lower_online_buttons_panel/stacked_column/feedback_btn": "ui/start_screen.json", - "lower_online_buttons_panel/stacked_column/feedback_btn/feedback_button": "ui/start_screen.json", - "lower_online_buttons_panel/stacked_column/signingin": "ui/start_screen.json", - "lower_online_buttons_panel/stacked_column/achievements_padding": "ui/start_screen.json", - "lower_online_buttons_panel/stacked_column/achievements_btn": "ui/start_screen.json", - "lower_online_buttons_panel/stacked_column/achievements_btn/achievements_icon_button": "ui/start_screen.json", - "lower_online_buttons_panel/stacked_column/inbox_padding": "ui/start_screen.json", - "lower_online_buttons_panel/stacked_column/inbox_btn": "ui/start_screen.json", - "lower_online_buttons_panel/stacked_column/inbox_btn/inbox_icon_button": "ui/start_screen.json", - "lower_online_buttons_panel/stacked_column/profile_btn_padding": "ui/start_screen.json", - "lower_online_buttons_panel/stacked_column/profile_btn": "ui/start_screen.json", - "lower_online_buttons_panel/stacked_column/profile_btn/profile_button": "ui/start_screen.json", - "main_button": "ui/start_screen.json", - "main_button_dark": "ui/start_screen.json", - "main_content_button": "ui/start_screen.json", - "main_button_gif": "ui/start_screen.json", - "main_button_banner": "ui/start_screen.json", - "main_button_banner/banner_label": "ui/start_screen.json", - "play_button": "ui/start_screen.json", - "play_button_art": "ui/start_screen.json", - "play_button_art/default_background": "ui/start_screen.json", - "play_button_art/hover_background": "ui/start_screen.json", - "play_button_art/label": "ui/start_screen.json", - "play_button_art/default_foreground": "ui/start_screen.json", - "play_button_art/hover_foreground": "ui/start_screen.json", - "play_button_stack": "ui/start_screen.json", - "play_button_stack/play_button": "ui/start_screen.json", - "play_button_stack/play_button_art": "ui/start_screen.json", - "play_button_stack/play_button_banner": "ui/start_screen.json", - "get_started_button": "ui/start_screen.json", - "main_menu_button": "ui/start_screen.json", - "featured_world_button": "ui/start_screen.json", - "unlock_full_game_button": "ui/start_screen.json", - "launch_editions_button": "ui/start_screen.json", - "ai_lesson_crafter_button": "ui/start_screen.json", - "settings_button": "ui/start_screen.json", - "realms_button": "ui/start_screen.json", - "servers_button": "ui/start_screen.json", - "store_button": "ui/start_screen.json", - "error_store_button": "ui/start_screen.json", - "store_button_sale_banner": "ui/start_screen.json", - "store_button_sale_banner/banner_label_padding": "ui/start_screen.json", - "store_button_sale_banner/banner_label_padding/banner_label": "ui/start_screen.json", - "store_button_content": "ui/start_screen.json", - "store_button_content/button_label": "ui/start_screen.json", - "store_button_content/sales_banner": "ui/start_screen.json", - "store_error_image": "ui/start_screen.json", - "store_error_content": "ui/start_screen.json", - "store_error_content/marketplace_button_label": "ui/start_screen.json", - "store_sale_label": "ui/start_screen.json", - "store_button_art": "ui/start_screen.json", - "store_button_art/default_background": "ui/start_screen.json", - "store_button_art/hover_background": "ui/start_screen.json", - "store_button_art/label": "ui/start_screen.json", - "store_button_art/default_foreground": "ui/start_screen.json", - "store_button_art/hover_foreground": "ui/start_screen.json", - "store_button_stack": "ui/start_screen.json", - "store_button_stack/store_button": "ui/start_screen.json", - "store_button_stack/store_button_art": "ui/start_screen.json", - "store_button_stack/store_button_banner": "ui/start_screen.json", - "store_button_stack/update_icon": "ui/start_screen.json", - "store_button_stack/new_offers_icon": "ui/start_screen.json", - "buy_game_button": "ui/start_screen.json", - "stacked_row": "ui/start_screen.json", - "main_buttons_stack_panel": "ui/start_screen.json", - "main_buttons_stack_panel/title_offset_padding": "ui/start_screen.json", - "main_buttons_stack_panel/title_panel_content": "ui/start_screen.json", - "main_buttons_stack_panel/padding_fill_1": "ui/start_screen.json", - "main_buttons_stack_panel/main_buttons_panel": "ui/start_screen.json", - "main_buttons_stack_panel/main_buttons_panel/main_buttons_panel": "ui/start_screen.json", - "main_buttons_stack_panel/main_buttons_panel_new_player_flow": "ui/start_screen.json", - "main_buttons_stack_panel/main_buttons_panel_new_player_flow/main_buttons_panel_new_player_flow": "ui/start_screen.json", - "main_buttons_stack_panel/padding_fill_2": "ui/start_screen.json", - "main_buttons_stack_panel/padding_fill_2/gamepad_helpers": "ui/start_screen.json", - "main_buttons_stack_panel/padding_3": "ui/start_screen.json", - "main_buttons_panel_new_player_flow": "ui/start_screen.json", - "main_buttons_panel_new_player_flow/stacked_rows": "ui/start_screen.json", - "main_buttons_panel_new_player_flow/stacked_rows/test_label_row": "ui/start_screen.json", - "main_buttons_panel_new_player_flow/stacked_rows/test_label_row/trial_info": "ui/start_screen.json", - "main_buttons_panel_new_player_flow/stacked_rows/spacer": "ui/start_screen.json", - "main_buttons_panel_new_player_flow/stacked_rows/get_started_row": "ui/start_screen.json", - "main_buttons_panel_new_player_flow/stacked_rows/get_started_row/get_started_button": "ui/start_screen.json", - "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row": "ui/start_screen.json", - "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row/main_menu_button": "ui/start_screen.json", - "main_buttons_panel": "ui/start_screen.json", - "main_buttons_panel/stacked_rows": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/play": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/featured_world": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/featured_world/featured_world_button": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/stacked_row_2": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0/settings_button": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/store_button": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/update_icon": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/new_offers_icon": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/ai_lesson_crafter_row": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/ai_lesson_crafter_button": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/lesson_crafter_preview_overlay": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/edu_featured_button": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/edu_featured_button/new_and_featured_button": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/settings_and_editions_panel": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel/settings_button": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel/launch_editions_button": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel/settings_button": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/settings": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/settings/settings_button": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/realms": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/realms/realms_button": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/unlock_full_game_row": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/unlock_full_game_row/unlock_full_game": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/store": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/buy_game": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/buy_game/buy_game_button": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/launch_editions": "ui/start_screen.json", - "main_buttons_panel/stacked_rows/launch_editions/launch_editions_button": "ui/start_screen.json", - "gamepad_helpers": "ui/start_screen.json", - "gamepad_helpers/gamepad_helper_a": "ui/start_screen.json", - "gamepad_helpers/gamepad_helper_b_and_padding": "ui/start_screen.json", - "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b": "ui/start_screen.json", - "gamepad_helpers/gamepad_helper_y_and_padding": "ui/start_screen.json", - "gamepad_helpers/gamepad_helper_y_and_padding/gamepad_helper_y": "ui/start_screen.json", - "gamepad_helpers/gamepad_helper_x_and_padding": "ui/start_screen.json", - "gamepad_helpers/gamepad_helper_x_and_padding/gamepad_helper_x": "ui/start_screen.json", - "invite_notification_icon": "ui/start_screen.json", - "invite_notification_button": "ui/start_screen.json", - "notification_button_text": "ui/start_screen.json", - "notification_button_text_background": "ui/start_screen.json", - "notification_button_text_panel": "ui/start_screen.json", - "notification_button_text_panel/text": "ui/start_screen.json", - "notification_button_text_panel/text/background": "ui/start_screen.json", - "start_screen": "ui/start_screen.json", - "start_screen_content": "ui/start_screen.json", - "start_screen_content/main_buttons_and_title_panel": "ui/start_screen.json", - "start_screen_content/online_button_stack": "ui/start_screen.json", - "start_screen_content/online_button_stack/gathering_panel": "ui/start_screen.json", - "start_screen_content/online_button_stack/upper_online_buttons_panel": "ui/start_screen.json", - "start_screen_content/online_button_stack/lower_online_buttons_panel": "ui/start_screen.json", - "start_screen_content/skin_panel": "ui/start_screen.json", - "start_screen_content/text_panel": "ui/start_screen.json", - "start_screen_content/friendsdrawer_button_panel": "ui/start_screen.json", - }, - "stonecutter": { - "stonecutter_label": "ui/stonecutter_screen.json", - "arrow_icon": "ui/stonecutter_screen.json", - "stone_cell_image": "ui/stonecutter_screen.json", - "container_cell_image": "ui/stonecutter_screen.json", - "toolbar_background": "ui/stonecutter_screen.json", - "highlight_slot_panel": "ui/stonecutter_screen.json", - "highlight_slot_panel/hover_text": "ui/stonecutter_screen.json", - "highlight_slot_panel/highlight": "ui/stonecutter_screen.json", - "highlight_slot_panel/white_border": "ui/stonecutter_screen.json", - "stone_slot_button": "ui/stonecutter_screen.json", - "stone_slot_button/hover": "ui/stonecutter_screen.json", - "item_panel": "ui/stonecutter_screen.json", - "item_panel/item_renderer": "ui/stonecutter_screen.json", - "item_panel/item_renderer/stack_count_label": "ui/stonecutter_screen.json", - "stone_button": "ui/stonecutter_screen.json", - "stone_button/banner_pattern": "ui/stonecutter_screen.json", - "stone_button/item_button_ref": "ui/stonecutter_screen.json", - "scroll_grid": "ui/stonecutter_screen.json", - "scroll_grid_panel": "ui/stonecutter_screen.json", - "scroll_grid_panel/grid": "ui/stonecutter_screen.json", - "scroll_panel": "ui/stonecutter_screen.json", - "stone_book_panel": "ui/stonecutter_screen.json", - "stone_book_panel/bg": "ui/stonecutter_screen.json", - "stone_book_panel/scroll_panel": "ui/stonecutter_screen.json", - "result_slot_button": "ui/stonecutter_screen.json", - "input_item_slot": "ui/stonecutter_screen.json", - "result_item_slot": "ui/stonecutter_screen.json", - "input_slots_stack_panel": "ui/stonecutter_screen.json", - "input_slots_stack_panel/input_item_slot": "ui/stonecutter_screen.json", - "top_half_stack_panel": "ui/stonecutter_screen.json", - "top_half_stack_panel/input_slots_holder": "ui/stonecutter_screen.json", - "top_half_stack_panel/input_slots_holder/input_slots_stack_panel": "ui/stonecutter_screen.json", - "top_half_stack_panel/padding_1": "ui/stonecutter_screen.json", - "top_half_stack_panel/arrow_holder": "ui/stonecutter_screen.json", - "top_half_stack_panel/arrow_holder/arrow_icon": "ui/stonecutter_screen.json", - "top_half_stack_panel/padding_2": "ui/stonecutter_screen.json", - "top_half_stack_panel/result_item_slot_holder": "ui/stonecutter_screen.json", - "top_half_stack_panel/result_item_slot_holder/result_item_slot": "ui/stonecutter_screen.json", - "top_half_panel": "ui/stonecutter_screen.json", - "top_half_panel/top_half_stack_panel": "ui/stonecutter_screen.json", - "right_panel": "ui/stonecutter_screen.json", - "right_panel/common_panel": "ui/stonecutter_screen.json", - "right_panel/stonecutter_screen_inventory": "ui/stonecutter_screen.json", - "right_panel/stonecutter_screen_inventory/stonecutter_label": "ui/stonecutter_screen.json", - "right_panel/stonecutter_screen_inventory/top_half_panel": "ui/stonecutter_screen.json", - "right_panel/stonecutter_screen_inventory/inventory_panel_bottom_half_with_label": "ui/stonecutter_screen.json", - "right_panel/stonecutter_screen_inventory/hotbar_grid": "ui/stonecutter_screen.json", - "toolbar_panel": "ui/stonecutter_screen.json", - "toolbar_panel/toolbar_background": "ui/stonecutter_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel": "ui/stonecutter_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": "ui/stonecutter_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": "ui/stonecutter_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": "ui/stonecutter_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": "ui/stonecutter_screen.json", - "toolbar_anchor": "ui/stonecutter_screen.json", - "toolbar_anchor/toolbar_panel": "ui/stonecutter_screen.json", - "center_fold": "ui/stonecutter_screen.json", - "center_fold/center_bg": "ui/stonecutter_screen.json", - "screen_stack_panel": "ui/stonecutter_screen.json", - "screen_stack_panel/stone_book_panel": "ui/stonecutter_screen.json", - "screen_stack_panel/center_fold": "ui/stonecutter_screen.json", - "screen_stack_panel/right_panel": "ui/stonecutter_screen.json", - "screen_stack_panel/toolbar_anchor": "ui/stonecutter_screen.json", - "stonecutter_panel": "ui/stonecutter_screen.json", - "stonecutter_panel/screen_stack_panel": "ui/stonecutter_screen.json", - "stonecutter_panel/container_gamepad_helpers": "ui/stonecutter_screen.json", - "stonecutter_panel/selected_item_details_factory": "ui/stonecutter_screen.json", - "stonecutter_panel/item_lock_notification_factory": "ui/stonecutter_screen.json", - "stonecutter_panel/inventory_selected_icon_button": "ui/stonecutter_screen.json", - "stonecutter_panel/inventory_take_progress_icon_button": "ui/stonecutter_screen.json", - "stonecutter_panel/flying_item_renderer": "ui/stonecutter_screen.json", - "stonecutter_screen": "ui/stonecutter_screen.json", - }, - "stonecutter_pocket": { - "vertical_arrow_icon": "ui/stonecutter_screen_pocket.json", - "chest_item_renderer": "ui/stonecutter_screen_pocket.json", - "stonecutter_item_renderer": "ui/stonecutter_screen_pocket.json", - "input_item_slot": "ui/stonecutter_screen_pocket.json", - "result_item_slot": "ui/stonecutter_screen_pocket.json", - "right_panel": "ui/stonecutter_screen_pocket.json", - "right_panel/content": "ui/stonecutter_screen_pocket.json", - "right_panel/content/bg": "ui/stonecutter_screen_pocket.json", - "right_panel/content/stonecutter_content_stack_panel": "ui/stonecutter_screen_pocket.json", - "right_panel/navigation_tabs_holder": "ui/stonecutter_screen_pocket.json", - "right_panel/navigation_tabs_holder/right_navigation_tabs": "ui/stonecutter_screen_pocket.json", - "right_tab_stonecutter": "ui/stonecutter_screen_pocket.json", - "right_navigation_tabs": "ui/stonecutter_screen_pocket.json", - "right_navigation_tabs/close": "ui/stonecutter_screen_pocket.json", - "right_navigation_tabs/close/nodrop_zone": "ui/stonecutter_screen_pocket.json", - "right_navigation_tabs/close/close_button": "ui/stonecutter_screen_pocket.json", - "right_navigation_tabs/fill": "ui/stonecutter_screen_pocket.json", - "right_navigation_tabs/right_tab_stonecutter": "ui/stonecutter_screen_pocket.json", - "input_slots_stack_panel": "ui/stonecutter_screen_pocket.json", - "input_slots_stack_panel/input_item_slot": "ui/stonecutter_screen_pocket.json", - "stonecutter_content_stack_panel": "ui/stonecutter_screen_pocket.json", - "stonecutter_content_stack_panel/label_holder": "ui/stonecutter_screen_pocket.json", - "stonecutter_content_stack_panel/label_holder/stonecutter_label": "ui/stonecutter_screen_pocket.json", - "stonecutter_content_stack_panel/padding_1": "ui/stonecutter_screen_pocket.json", - "stonecutter_content_stack_panel/panel": "ui/stonecutter_screen_pocket.json", - "stonecutter_content_stack_panel/panel/stack_panel": "ui/stonecutter_screen_pocket.json", - "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder": "ui/stonecutter_screen_pocket.json", - "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder/input_slots_stack_panel": "ui/stonecutter_screen_pocket.json", - "stonecutter_content_stack_panel/panel/stack_panel/padding_3": "ui/stonecutter_screen_pocket.json", - "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder": "ui/stonecutter_screen_pocket.json", - "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder/vertical_arrow_icon": "ui/stonecutter_screen_pocket.json", - "stonecutter_content_stack_panel/panel/stack_panel/padding_4": "ui/stonecutter_screen_pocket.json", - "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder": "ui/stonecutter_screen_pocket.json", - "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder/result_item_slot": "ui/stonecutter_screen_pocket.json", - "stonecutter_content_stack_panel/panel/stack_panel/padding_5": "ui/stonecutter_screen_pocket.json", - "inventory_panel": "ui/stonecutter_screen_pocket.json", - "inventory_panel/inventory_title_label_centerer": "ui/stonecutter_screen_pocket.json", - "inventory_panel/inventory_title_label_centerer/inventory_title_label": "ui/stonecutter_screen_pocket.json", - "inventory_panel/inventory_scroll_panel": "ui/stonecutter_screen_pocket.json", - "inventory_scroll_panel": "ui/stonecutter_screen_pocket.json", - "pattern_button": "ui/stonecutter_screen_pocket.json", - "pattern_scroll_panel": "ui/stonecutter_screen_pocket.json", - "left_panel": "ui/stonecutter_screen_pocket.json", - "left_panel/gamepad_helpers_and_tabs_holder": "ui/stonecutter_screen_pocket.json", - "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": "ui/stonecutter_screen_pocket.json", - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": "ui/stonecutter_screen_pocket.json", - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": "ui/stonecutter_screen_pocket.json", - "left_panel/content": "ui/stonecutter_screen_pocket.json", - "left_panel/content/bg": "ui/stonecutter_screen_pocket.json", - "left_panel/content/inventory_panel": "ui/stonecutter_screen_pocket.json", - "left_panel/content/pattern_scroll_panel": "ui/stonecutter_screen_pocket.json", - "left_tab_stones": "ui/stonecutter_screen_pocket.json", - "left_tab_inventory": "ui/stonecutter_screen_pocket.json", - "left_navigation_tabs": "ui/stonecutter_screen_pocket.json", - "left_navigation_tabs/left_tab_stones": "ui/stonecutter_screen_pocket.json", - "left_navigation_tabs/padding": "ui/stonecutter_screen_pocket.json", - "left_navigation_tabs/left_tab_inventory": "ui/stonecutter_screen_pocket.json", - "pocket_hotbar_and_content_panels": "ui/stonecutter_screen_pocket.json", - "stonecutter_panel": "ui/stonecutter_screen_pocket.json", - "stonecutter_panel/pocket_hotbar_and_content_panels": "ui/stonecutter_screen_pocket.json", - "stonecutter_panel/container_gamepad_helpers": "ui/stonecutter_screen_pocket.json", - "stonecutter_panel/selected_item_details_factory": "ui/stonecutter_screen_pocket.json", - "stonecutter_panel/item_lock_notification_factory": "ui/stonecutter_screen_pocket.json", - "stonecutter_panel/inventory_selected_icon_button": "ui/stonecutter_screen_pocket.json", - "stonecutter_panel/inventory_take_progress_icon_button": "ui/stonecutter_screen_pocket.json", - "stonecutter_panel/flying_item_renderer": "ui/stonecutter_screen_pocket.json", - }, - "storage_management": { - "lock_icon": "ui/storage_management.json", - "storage_header_panel": "ui/storage_management.json", - "storage_header_panel/header_panel": "ui/storage_management.json", - "storage_header_panel/header_panel/file_storage_dropdown": "ui/storage_management.json", - "storage_header_panel/header_panel/file_storage_dropdown_edu": "ui/storage_management.json", - "storage_header_panel/header_panel/clear_cache_button_panel": "ui/storage_management.json", - "storage_header_panel/header_panel/clear_cache_button_panel/clear_cache_button": "ui/storage_management.json", - "storage_header_panel/header_panel/clear_download_cache_button_panel": "ui/storage_management.json", - "storage_header_panel/header_panel/clear_download_cache_button_panel/clear_download_button": "ui/storage_management.json", - "storage_header_panel/header_panel/clear_screenshots_cache_button_panel": "ui/storage_management.json", - "storage_header_panel/header_panel/clear_screenshots_cache_button_panel/clear_screenshots_cache_button": "ui/storage_management.json", - "storage_header_panel/header_panel/delete_local_screenshots_button_panel": "ui/storage_management.json", - "storage_header_panel/header_panel/delete_local_screenshots_button_panel/delete_local_screenshots_button": "ui/storage_management.json", - "storage_header_panel/header_panel/panel": "ui/storage_management.json", - "storage_header_panel/header_panel/panel/multiselect_button": "ui/storage_management.json", - "x_button_image": "ui/storage_management.json", - "storage_main_panel": "ui/storage_management.json", - "storage_main_panel/scroll_content": "ui/storage_management.json", - "storage_footer_panel": "ui/storage_management.json", - "storage_footer_panel/visibleContent": "ui/storage_management.json", - "storage_footer_panel/visibleContent/delete_button": "ui/storage_management.json", - "storage_footer_panel/visibleContent/share_button": "ui/storage_management.json", - "delete_checkbox": "ui/storage_management.json", - "delete_checkbox/selected_checkbox_image": "ui/storage_management.json", - "generic_button": "ui/storage_management.json", - "generic_button/picture": "ui/storage_management.json", - "generic_button/text": "ui/storage_management.json", - "common_scroll_pane": "ui/storage_management.json", - "common_label": "ui/storage_management.json", - "main_content_panel": "ui/storage_management.json", - "main_content_panel/panel": "ui/storage_management.json", - "main_content_panel/panel/spacing": "ui/storage_management.json", - "main_content_panel/panel/delete_checkbox": "ui/storage_management.json", - "main_content_panel/panel/image_panel": "ui/storage_management.json", - "main_content_panel/panel/image_panel/image_border": "ui/storage_management.json", - "main_content_panel/panel/image_panel/image_border/image": "ui/storage_management.json", - "main_content_panel/panel/text_panel_offset": "ui/storage_management.json", - "main_content_panel/panel/text_panel_offset/text_panel": "ui/storage_management.json", - "main_content_panel/panel/text_panel_offset/text_panel/0": "ui/storage_management.json", - "common_main_button": "ui/storage_management.json", - "common_main_button/background": "ui/storage_management.json", - "common_main_button/border": "ui/storage_management.json", - "common_main_button/main_content_panel": "ui/storage_management.json", - "base_glyph": "ui/storage_management.json", - "base_glyph/image": "ui/storage_management.json", - "base_glyph/padding": "ui/storage_management.json", - "main_item_text": "ui/storage_management.json", - "grey_button": "ui/storage_management.json", - "icon_item_text": "ui/storage_management.json", - "world_item_text": "ui/storage_management.json", - "storage_main_item_toggle": "ui/storage_management.json", - "storage_main_item_toggle/main_item_toggle": "ui/storage_management.json", - "storage_main_item_toggle/contentPanel": "ui/storage_management.json", - "storage_main_item_toggle/padding": "ui/storage_management.json", - "storage_scroll_pane": "ui/storage_management.json", - "storage_scroll_pane/category_stack_panel": "ui/storage_management.json", - "storage_scroll_pane/category_stack_panel/stack_panel": "ui/storage_management.json", - "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel": "ui/storage_management.json", - "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel/legacy_world_controls": "ui/storage_management.json", - "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel": "ui/storage_management.json", - "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel/retailtopreview_world_controls": "ui/storage_management.json", - "storage_scroll_pane/multiselect_padding": "ui/storage_management.json", - "world_controls": "ui/storage_management.json", - "world_template_controls": "ui/storage_management.json", - "resource_controls": "ui/storage_management.json", - "behavior_controls": "ui/storage_management.json", - "skin_controls": "ui/storage_management.json", - "cached_controls": "ui/storage_management.json", - "resource_sub_item": "ui/storage_management.json", - "resource_sub_item/dummy_panel": "ui/storage_management.json", - "resource_sub_item/main_panel": "ui/storage_management.json", - "resource_sub_item/main_panel/content": "ui/storage_management.json", - "resource_toggle": "ui/storage_management.json", - "resource_toggle/content_toggle": "ui/storage_management.json", - "resource_toggle/content_toggle/default": "ui/storage_management.json", - "resource_toggle/content_toggle/hover": "ui/storage_management.json", - "resource_toggle/content_toggle/unchecked": "ui/storage_management.json", - "resource_toggle/content_toggle/unchecked_hover": "ui/storage_management.json", - "resource_toggle/item_button_panel": "ui/storage_management.json", - "resource_toggle/item_button_panel/y_sizing_panel": "ui/storage_management.json", - "resource_toggle/item_button_panel/y_sizing_panel/border": "ui/storage_management.json", - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel": "ui/storage_management.json", - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank": "ui/storage_management.json", - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_0": "ui/storage_management.json", - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel": "ui/storage_management.json", - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/blank": "ui/storage_management.json", - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/generate_texture_list_button": "ui/storage_management.json", - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_1": "ui/storage_management.json", - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/delete_button": "ui/storage_management.json", - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_2": "ui/storage_management.json", - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel": "ui/storage_management.json", - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/blank": "ui/storage_management.json", - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/share_button": "ui/storage_management.json", - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_3": "ui/storage_management.json", - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank_3": "ui/storage_management.json", - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_4": "ui/storage_management.json", - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel": "ui/storage_management.json", - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/blank": "ui/storage_management.json", - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/dependency_button": "ui/storage_management.json", - "sub_item_tray_button": "ui/storage_management.json", - "glyph_sub_icon": "ui/storage_management.json", - "sub_item_blank_button": "ui/storage_management.json", - "texture_icon_text": "ui/storage_management.json", - "texture_icon_sub_item": "ui/storage_management.json", - "version_sub_item": "ui/storage_management.json", - "pack_description_sub_item": "ui/storage_management.json", - "world_sub_text": "ui/storage_management.json", - "world_template_sub_text": "ui/storage_management.json", - "basic_sub_item": "ui/storage_management.json", - "dropdown_button": "ui/storage_management.json", - "dropdown_button_content": "ui/storage_management.json", - "dropdown_button_content/image_panel": "ui/storage_management.json", - "dropdown_button_content/image_panel/icon": "ui/storage_management.json", - "dropdown_button_content/text_panel": "ui/storage_management.json", - "dropdown_button_content/text_panel/main_label": "ui/storage_management.json", - "filter_options": "ui/storage_management.json", - "filter_options/0": "ui/storage_management.json", - "light_assets": "ui/storage_management.json", - "button_add": "ui/storage_management.json", - "sort_panel": "ui/storage_management.json", - "sort_panel/default": "ui/storage_management.json", - "sort_toggle": "ui/storage_management.json", - "storage_scroll_panel": "ui/storage_management.json", - "storage_main_item_legacy_world_toggle": "ui/storage_management.json", - "storage_main_item_legacy_world_toggle/main_item_toggle": "ui/storage_management.json", - "storage_main_item_legacy_world_toggle/contentPanel": "ui/storage_management.json", - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel": "ui/storage_management.json", - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/dummy_panel": "ui/storage_management.json", - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/sync_legacy_world_button": "ui/storage_management.json", - "storage_main_item_legacy_world_toggle/contentPanel/dummy_panel": "ui/storage_management.json", - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel": "ui/storage_management.json", - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/dummy_panel": "ui/storage_management.json", - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/sync_legacy_world_description": "ui/storage_management.json", - "storage_main_item_legacy_world_toggle/contentPanel/itemsPanel": "ui/storage_management.json", - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel_dummy_panel": "ui/storage_management.json", - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel": "ui/storage_management.json", - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/dummy_panel": "ui/storage_management.json", - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/sync_legacy_world_conversion_description": "ui/storage_management.json", - "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel": "ui/storage_management.json", - "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/loading_legacy_worlds_label": "ui/storage_management.json", - "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/padding": "ui/storage_management.json", - "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/progress_loading_bars": "ui/storage_management.json", - "storage_main_item_legacy_world_toggle/padding": "ui/storage_management.json", - "legacy_world_main_item_text": "ui/storage_management.json", - "storage_main_item_retailtopreview_world_toggle": "ui/storage_management.json", - "storage_main_item_retailtopreview_world_toggle/main_item_toggle": "ui/storage_management.json", - "storage_main_item_retailtopreview_world_toggle/contentPanel": "ui/storage_management.json", - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel": "ui/storage_management.json", - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/dummy_panel": "ui/storage_management.json", - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/sync_retailtopreview_world_button": "ui/storage_management.json", - "storage_main_item_retailtopreview_world_toggle/contentPanel/dummy_panel": "ui/storage_management.json", - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel": "ui/storage_management.json", - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/dummy_panel": "ui/storage_management.json", - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/sync_retailtopreview_world_description": "ui/storage_management.json", - "storage_main_item_retailtopreview_world_toggle/contentPanel/itemsPanel": "ui/storage_management.json", - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel_dummy_panel": "ui/storage_management.json", - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel": "ui/storage_management.json", - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/dummy_panel": "ui/storage_management.json", - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/sync_retailtopreview_world_conversion_description": "ui/storage_management.json", - "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel": "ui/storage_management.json", - "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/loading_retailtopreview_worlds_label": "ui/storage_management.json", - "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/padding": "ui/storage_management.json", - "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/progress_loading_bars": "ui/storage_management.json", - "storage_main_item_retailtopreview_world_toggle/padding": "ui/storage_management.json", - "retailtopreview_world_main_item_text": "ui/storage_management.json", - }, - "storage_management_popup": { - "storage_dependency_modal": "ui/storage_management_popup.json", - "storage_dependency_modal/base": "ui/storage_management_popup.json", - "storage_dependency_modal/base/background_with_buttons": "ui/storage_management_popup.json", - "storage_dependency_modal/base/title": "ui/storage_management_popup.json", - "storage_dependency_modal/base/dependencies": "ui/storage_management_popup.json", - "storage_dependency_modal/base/two_buttons": "ui/storage_management_popup.json", - "storage_dependency_modal/base/two_buttons/disabled_left": "ui/storage_management_popup.json", - "storage_dependency_modal/base/two_buttons/left": "ui/storage_management_popup.json", - "storage_dependency_modal/base/two_buttons/right": "ui/storage_management_popup.json", - "storage_dependency_panel": "ui/storage_management_popup.json", - "storage_dependency_panel/scroll": "ui/storage_management_popup.json", - "storage_dependency_scroll_panel": "ui/storage_management_popup.json", - "dependency_item_content": "ui/storage_management_popup.json", - "dependency_item_content/content": "ui/storage_management_popup.json", - "dependency_scroll_pane": "ui/storage_management_popup.json", - "dependency_scroll_pane/main_label": "ui/storage_management_popup.json", - "dependency_scroll_pane/contentPanel": "ui/storage_management_popup.json", - "dependency_item": "ui/storage_management_popup.json", - "dependency_item_small": "ui/storage_management_popup.json", - "dependency_resource_item": "ui/storage_management_popup.json", - "dependency_resource_item_small": "ui/storage_management_popup.json", - "dependency_sub_item": "ui/storage_management_popup.json", - "dependency_sub_item/border": "ui/storage_management_popup.json", - "dependency_sub_item/border/stack": "ui/storage_management_popup.json", - "dependency_sub_item/border/stack/padding_0": "ui/storage_management_popup.json", - "dependency_sub_item/border/stack/wrapper": "ui/storage_management_popup.json", - "dependency_sub_item/border/stack/wrapper/dependency_item": "ui/storage_management_popup.json", - "dependency_sub_item/border/stack/panel_0": "ui/storage_management_popup.json", - "dependency_sub_item/border/stack/panel_0/main_label": "ui/storage_management_popup.json", - "dependency_sub_item/border/stack/contentPanel": "ui/storage_management_popup.json", - "dependency_sub_item/border/stack/panel_1": "ui/storage_management_popup.json", - "dependency_sub_item/border/stack/panel_1/remove_pack_button": "ui/storage_management_popup.json", - "dependency_sub_item/border/stack/padding_1": "ui/storage_management_popup.json", - "dependency_sub_item/padding": "ui/storage_management_popup.json", - "sharing_popup_content": "ui/storage_management_popup.json", - }, - "common_store": { - "store_base_screen": "ui/store_common.json", - "label": "ui/store_common.json", - "offer_image_panel": "ui/store_common.json", - "banner_fill": "ui/store_common.json", - "store_description_background": "ui/store_common.json", - "store_description_background_dark": "ui/store_common.json", - "text_style_label": "ui/store_common.json", - "text_style_label/text_label": "ui/store_common.json", - "sdl_texture": "ui/store_common.json", - "store_offer_grid_button": "ui/store_common.json", - "store_offer_grid_button/hover": "ui/store_common.json", - "store_offer_grid_button/hover/key_art_size_panel": "ui/store_common.json", - "store_offer_grid_button/hover/key_art_size_panel/key_art_frame": "ui/store_common.json", - "store_offer_grid_button/pressed": "ui/store_common.json", - "store_offer_grid_button/pressed/key_art_size_panel": "ui/store_common.json", - "store_offer_grid_button/pressed/key_art_size_panel/key_art_frame": "ui/store_common.json", - "store_offer_grid_button/icon_overlay_panel": "ui/store_common.json", - "ribbon_bar_text_background": "ui/store_common.json", - "ribbon_bar_red_hover_text_background": "ui/store_common.json", - "store_background": "ui/store_common.json", - "coin_icon": "ui/store_common.json", - "tag": "ui/store_common.json", - "tag/new_offer_label": "ui/store_common.json", - "marketplace_error_icon": "ui/store_common.json", - "new_offer_icon": "ui/store_common.json", - "status_new_offer_icon": "ui/store_common.json", - "update_balloon_icon": "ui/store_common.json", - "badge_overlay_panel": "ui/store_common.json", - "badge_overlay_panel/top": "ui/store_common.json", - "badge_overlay_panel/bottom": "ui/store_common.json", - "badge_overlay_stack": "ui/store_common.json", - "badge_overlay_stack/left_badge": "ui/store_common.json", - "badge_overlay_stack/padding": "ui/store_common.json", - "badge_overlay_stack/right_badge": "ui/store_common.json", - "content_card_tail_image": "ui/store_common.json", - "content_card_badge": "ui/store_common.json", - "content_card_badge/leftTail": "ui/store_common.json", - "content_card_badge/background": "ui/store_common.json", - "content_card_badge/background/outline": "ui/store_common.json", - "content_card_badge/background/outline/badgeStackPanel": "ui/store_common.json", - "content_card_badge/background/outline/badgeStackPanel/paddingLeft": "ui/store_common.json", - "content_card_badge/background/outline/badgeStackPanel/badgeIcon": "ui/store_common.json", - "content_card_badge/background/outline/badgeStackPanel/paddingMiddle": "ui/store_common.json", - "content_card_badge/background/outline/badgeStackPanel/badgeText": "ui/store_common.json", - "content_card_badge/background/outline/badgeStackPanel/paddingRight": "ui/store_common.json", - "content_card_badge/rightTail": "ui/store_common.json", - "icon_overlay_panel": "ui/store_common.json", - "icon_overlay_panel/icon_overlay_position_factory": "ui/store_common.json", - "icon_overlay_position_factory": "ui/store_common.json", - "top_left_icon_factory": "ui/store_common.json", - "top_middle_icon_factory": "ui/store_common.json", - "top_right_icon_factory": "ui/store_common.json", - "left_middle_icon_factory": "ui/store_common.json", - "center_icon_factory": "ui/store_common.json", - "right_middle_icon_factory": "ui/store_common.json", - "bottom_left_icon_factory": "ui/store_common.json", - "bottom_middle_icon_factory": "ui/store_common.json", - "bottom_right_icon_factory": "ui/store_common.json", - "icon_factory": "ui/store_common.json", - "new_offer_icon_panel": "ui/store_common.json", - "new_offer_icon_panel/new_icon": "ui/store_common.json", - "update_offer_icon_panel": "ui/store_common.json", - "update_offer_icon_panel/update_icon": "ui/store_common.json", - "icon_overlay_image_panel": "ui/store_common.json", - "icon_overlay_image_panel/image_stack_panel": "ui/store_common.json", - "icon_overlay_image_panel/image_stack_panel/icon": "ui/store_common.json", - "icon_overlay_image_panel/image_stack_panel/padding": "ui/store_common.json", - "icon_overlay_sdl_padding": "ui/store_common.json", - "status_icon_overlay": "ui/store_common.json", - "status_icon_overlay/icon_overlay_label_panel": "ui/store_common.json", - "status_icon_overlay/icon_overlay_label_panel/left_margin_padding": "ui/store_common.json", - "status_icon_overlay/icon_overlay_label_panel/left_padding_1": "ui/store_common.json", - "status_icon_overlay/icon_overlay_label_panel/left_padding_2": "ui/store_common.json", - "status_icon_overlay/icon_overlay_label_panel/icon_panel": "ui/store_common.json", - "status_icon_overlay/icon_overlay_label_panel/icon_panel/icon_overlay_label": "ui/store_common.json", - "status_icon_overlay/icon_overlay_label_panel/right_padding_1": "ui/store_common.json", - "status_icon_overlay/icon_overlay_label_panel/right_padding_2": "ui/store_common.json", - "status_icon_overlay/icon_overlay_label_panel/right_margin_padding": "ui/store_common.json", - "status_icon_panel": "ui/store_common.json", - "status_icon_panel/new_offer_icon": "ui/store_common.json", - "status_icon_panel/update_icon": "ui/store_common.json", - "prompt_icon": "ui/store_common.json", - "up_arrow_icon": "ui/store_common.json", - "plus_icon": "ui/store_common.json", - "bang_icon": "ui/store_common.json", - "user_icon_small": "ui/store_common.json", - "user_icon_hover": "ui/store_common.json", - "gamepad_store_helper": "ui/store_common.json", - "purchase_coins_panel": "ui/store_common.json", - "purchase_coins_panel/plus_button": "ui/store_common.json", - "inventory_panel": "ui/store_common.json", - "inventory_panel/inventory_button": "ui/store_common.json", - "progress_loading_bars": "ui/store_common.json", - "progress_loading_spinner": "ui/store_common.json", - "progress_loading": "ui/store_common.json", - "progress_loading/centerer": "ui/store_common.json", - "progress_loading/centerer/progress_loading_spinner": "ui/store_common.json", - "progress_loading/progress_loading_outline": "ui/store_common.json", - "progress_loading/stack_panel": "ui/store_common.json", - "progress_loading/stack_panel/top_panel": "ui/store_common.json", - "progress_loading/stack_panel/top_panel/error_glyph_panel": "ui/store_common.json", - "progress_loading/stack_panel/top_panel/error_glyph_panel/error_image": "ui/store_common.json", - "progress_loading/stack_panel/top_panel/padding": "ui/store_common.json", - "progress_loading/stack_panel/top_panel/store_failure_text": "ui/store_common.json", - "progress_loading/stack_panel/padding": "ui/store_common.json", - "progress_loading/stack_panel/image": "ui/store_common.json", - "progress_loading/store_failure_code": "ui/store_common.json", - "store_empty_progress_bar_icon": "ui/store_common.json", - "store_full_progress_bar_icon": "ui/store_common.json", - "store_progress_bar_nub": "ui/store_common.json", - "store_progress_bar_icon": "ui/store_common.json", - "store_progress_bar_icon/empty_progress_bar_icon": "ui/store_common.json", - "store_progress_bar_icon/progress_percent_panel": "ui/store_common.json", - "store_progress_bar_icon/progress_percent_panel/full_progress_bar_icon": "ui/store_common.json", - "store_progress_bar_icon/progress_percent_panel/progress_bar_nub": "ui/store_common.json", - "screen_contents_with_gamepad_helpers": "ui/store_common.json", - "screen_contents_with_gamepad_helpers/dialog_panel": "ui/store_common.json", - "screen_contents_with_gamepad_helpers/dialog_panel/dialog": "ui/store_common.json", - "screen_contents_with_gamepad_helpers/padding": "ui/store_common.json", - "screen_contents_with_gamepad_helpers/gamepad_helpers_panel": "ui/store_common.json", - "screen_contents_with_gamepad_helpers/gamepad_helpers_panel/gamepad_helpers_a_and_b": "ui/store_common.json", - "text_strike_through": "ui/store_common.json", - "markdown_banner": "ui/store_common.json", - "markdown_triangle": "ui/store_common.json", - "timer_panel": "ui/store_common.json", - "timer_panel/timer": "ui/store_common.json", - "store_offer_type_icon": "ui/store_common.json", - "addon_pack_icon": "ui/store_common.json", - "addon_pack_small_icon": "ui/store_common.json", - "realms_plus_icon": "ui/store_common.json", - "resource_pack_icon": "ui/store_common.json", - "resource_pack_small_icon": "ui/store_common.json", - "skinpack_icon": "ui/store_common.json", - "skinpack_small_icon": "ui/store_common.json", - "world_icon": "ui/store_common.json", - "world_small_icon": "ui/store_common.json", - "mashup_icon": "ui/store_common.json", - "mashup_small_icon": "ui/store_common.json", - "persona_icon": "ui/store_common.json", - "persona_small_icon": "ui/store_common.json", - "small_padding_panel": "ui/store_common.json", - "resource_pack_small_icon_with_buffer": "ui/store_common.json", - "resource_pack_small_icon_with_buffer/resource_pack_small_icon": "ui/store_common.json", - "resource_pack_small_icon_with_buffer/small_padding_panel": "ui/store_common.json", - "addon_pack_small_icon_with_buffer": "ui/store_common.json", - "addon_pack_small_icon_with_buffer/addon_pack_small_icon": "ui/store_common.json", - "addon_pack_small_icon_with_buffer/small_padding_panel": "ui/store_common.json", - "skinpack_small_icon_with_buffer": "ui/store_common.json", - "skinpack_small_icon_with_buffer/skinpack_small_icon": "ui/store_common.json", - "skinpack_small_icon_with_buffer/small_padding_panel": "ui/store_common.json", - "world_small_icon_with_buffer": "ui/store_common.json", - "world_small_icon_with_buffer/world_small_icon": "ui/store_common.json", - "world_small_icon_with_buffer/small_padding_panel": "ui/store_common.json", - "mashup_small_icon_with_buffer": "ui/store_common.json", - "mashup_small_icon_with_buffer/mashup_small_icon": "ui/store_common.json", - "mashup_small_icon_with_buffer/small_padding_panel": "ui/store_common.json", - "persona_small_icon_with_buffer": "ui/store_common.json", - "persona_small_icon_with_buffer/persona_small_icon": "ui/store_common.json", - "persona_small_icon_with_buffer/small_padding_panel": "ui/store_common.json", - "realms_icon": "ui/store_common.json", - "realms_banner_icon": "ui/store_common.json", - "csb_banner_icon": "ui/store_common.json", - "csb_expiration": "ui/store_common.json", - "csb_expiration/background": "ui/store_common.json", - "csb_expiration/contents": "ui/store_common.json", - "csb_expiration/contents/csb_icon": "ui/store_common.json", - "csb_expiration/contents/pad_0": "ui/store_common.json", - "csb_expiration/contents/text_panel": "ui/store_common.json", - "csb_expiration/contents/text_panel/text": "ui/store_common.json", - "pack_icon_stack": "ui/store_common.json", - "pack_icon_stack/pack_icon_stack_factory": "ui/store_common.json", - "pack_icon_stack_factory": "ui/store_common.json", - "markdown_background": "ui/store_common.json", - "markdown_background/banner_panel": "ui/store_common.json", - "markdown_background/banner_panel/banner": "ui/store_common.json", - "markdown_background/banner_panel/banner/banner_content_stack_panel": "ui/store_common.json", - "markdown_background/banner_panel/banner/banner_content_stack_panel/timer_panel": "ui/store_common.json", - "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel": "ui/store_common.json", - "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel/pack_icon_stack": "ui/store_common.json", - "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel": "ui/store_common.json", - "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel/markdown_label": "ui/store_common.json", - "markdown_background/triangle_panel": "ui/store_common.json", - "markdown_background/triangle_panel/triangle": "ui/store_common.json", - "store_top_bar": "ui/store_common.json", - "store_top_bar_filler": "ui/store_common.json", - "direction_button_panel": "ui/store_common.json", - "direction_button_panel/chevron_image": "ui/store_common.json", - "cycle_pack_button": "ui/store_common.json", - "cycle_pack_left_button": "ui/store_common.json", - "cycle_pack_right_button": "ui/store_common.json", - "restore_purchases": "ui/store_common.json", - "back_content_panel": "ui/store_common.json", - "back_content_panel/back_button": "ui/store_common.json", - "unlock_with_coins_button_stack_panel": "ui/store_common.json", - "unlock_with_coins_button_stack_panel/coin_panel": "ui/store_common.json", - "unlock_with_coins_button_stack_panel/coin_panel/coin": "ui/store_common.json", - "unlock_with_coins_button_stack_panel/padding_1": "ui/store_common.json", - "unlock_with_coins_button_stack_panel/unlock_text": "ui/store_common.json", - "store_dialog_with_coin_header": "ui/store_common.json", - "store_coins_title_label": "ui/store_common.json", - "search_header_stack": "ui/store_common.json", - "search_header_stack/gamepad_helper_y_alignment_hack": "ui/store_common.json", - "search_header_stack/gamepad_helper_y_alignment_hack/gamepad_helper_y": "ui/store_common.json", - "search_header_stack/search_header_text_box_panel": "ui/store_common.json", - "search_header_stack/search_header_text_box_panel/search_header_text_box": "ui/store_common.json", - "search_header_stack/search_header_text_box_panel/clear_button": "ui/store_common.json", - "search_header_stack/store_layout_search_button": "ui/store_common.json", - "search_header_stack/padding0": "ui/store_common.json", - "sdl_store_header_with_coins": "ui/store_common.json", - "sdl_store_header_with_coins/sdl_store_header_with_coins_content": "ui/store_common.json", - "top_bar_with_coins_panel": "ui/store_common.json", - "top_bar_with_coins_panel/top_bar": "ui/store_common.json", - "top_bar_with_coins_panel/top_bar/title_stack_panel": "ui/store_common.json", - "top_bar_with_coins_panel/top_bar/title_stack_panel/padding1": "ui/store_common.json", - "top_bar_with_coins_panel/top_bar/title_stack_panel/back_button_content_panel": "ui/store_common.json", - "top_bar_with_coins_panel/top_bar/title_stack_panel/padding2": "ui/store_common.json", - "top_bar_with_coins_panel/top_bar/title_stack_panel/header_title_panel": "ui/store_common.json", - "top_bar_with_coins_panel/top_bar/title_stack_panel/padding3": "ui/store_common.json", - "top_bar_with_coins_panel/top_bar/title_stack_panel/padding4": "ui/store_common.json", - "top_bar_with_coins_panel/top_bar/title_stack_panel/status_and_coins": "ui/store_common.json", - "top_bar_with_coins_panel/top_bar/title_stack_panel/padding5": "ui/store_common.json", - "top_bar_with_coins_panel/top_bar/title_stack_panel/search_header_stack": "ui/store_common.json", - "sdl_store_header_with_coins_content": "ui/store_common.json", - "sdl_store_header_with_coins_content/top_bar_coins": "ui/store_common.json", - "store_header_with_coins": "ui/store_common.json", - "store_header_with_coins/top_bar_coins": "ui/store_common.json", - "store_header_with_coins/child_control": "ui/store_common.json", - "status_with_coins": "ui/store_common.json", - "status_with_coins/inventory_panel": "ui/store_common.json", - "status_with_coins/inventory_panel/inventory_button": "ui/store_common.json", - "status_with_coins/padding0": "ui/store_common.json", - "status_with_coins/coin_balance_panel": "ui/store_common.json", - "status_with_coins/coin_balance_panel/coin_balance_panel": "ui/store_common.json", - "status_with_coins/padding1": "ui/store_common.json", - "coins_with_title": "ui/store_common.json", - "coins_with_title/coin_balance_panel": "ui/store_common.json", - "coins_with_title/title_panel": "ui/store_common.json", - "wallet_button_panel": "ui/store_common.json", - "wallet_button_panel/purchase_coin_panel_alignment_hack": "ui/store_common.json", - "wallet_button_panel/purchase_coin_panel_alignment_hack/purchase_coin_panel": "ui/store_common.json", - "wallet_button_panel/plus_image": "ui/store_common.json", - "wallet_button_panel/gamepad_helper_x_alignment_hack": "ui/store_common.json", - "wallet_button_panel/gamepad_helper_x_alignment_hack/gamepad_helper_x": "ui/store_common.json", - "coin_balance_panel": "ui/store_common.json", - "coin_balance_panel/coin_purchase_in_progress_panel": "ui/store_common.json", - "coin_balance_panel/coin_purchase_in_progress_panel/coin_purchase_in_progress": "ui/store_common.json", - "coin_balance_panel/horizontal_coin_stack": "ui/store_common.json", - "coin_balance_panel/horizontal_coin_stack/padding": "ui/store_common.json", - "coin_balance_panel/horizontal_coin_stack/coin_icon": "ui/store_common.json", - "coin_balance_panel/horizontal_coin_stack/small_filler": "ui/store_common.json", - "coin_balance_panel/horizontal_coin_stack/coin_text_holder": "ui/store_common.json", - "coin_balance_panel/horizontal_coin_stack/coin_text_holder/coin_balance_text": "ui/store_common.json", - "my_account_button_content": "ui/store_common.json", - "my_account_button_content/my_account_content": "ui/store_common.json", - "my_account_button_content/my_account_content/user_icon": "ui/store_common.json", - "my_account_button_content/my_account_content/my_account_label_panel": "ui/store_common.json", - "my_account_button_content/my_account_content/my_account_label_panel/padding": "ui/store_common.json", - "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label": "ui/store_common.json", - "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label/my_account_label": "ui/store_common.json", - "inventory_button_panel": "ui/store_common.json", - "inventory_button_panel/inventory_button": "ui/store_common.json", - "inventory_button_panel/inventory_button/status_panel": "ui/store_common.json", - "inventory_button": "ui/store_common.json", - "inventory_button/my_content_button": "ui/store_common.json", - "inventory_button/my_content_button/library_icon": "ui/store_common.json", - "inventory_button/my_content_button/library_icon_bevel": "ui/store_common.json", - "inventory_button/updates_with_bevel": "ui/store_common.json", - "inventory_button/updates_with_bevel/update_glyph": "ui/store_common.json", - "inventory_button/updates_with_bevel/updates_bevel": "ui/store_common.json", - "inventory_button/label_alignment_pannel": "ui/store_common.json", - "inventory_button/label_alignment_pannel/label_panel": "ui/store_common.json", - "inventory_button/label_alignment_pannel/label_panel/inventory_label": "ui/store_common.json", - "xbl_button_content": "ui/store_common.json", - "xbl_button_content/xbl_icon": "ui/store_common.json", - "xbl_button_content/padding_0": "ui/store_common.json", - "xbl_button_content/disconnected_label": "ui/store_common.json", - "xbl_button_content/padding_1": "ui/store_common.json", - "xbl_button_content/error_icon_panel": "ui/store_common.json", - "xbl_button_content/error_icon_panel/error_icon": "ui/store_common.json", - "disclaimer_panel": "ui/store_common.json", - "disclaimer_panel/legal_text_label": "ui/store_common.json", - "grey_bar_panel": "ui/store_common.json", - "grey_bar_panel/color_panel": "ui/store_common.json", - "grey_bar_panel/color_panel/grey_bar": "ui/store_common.json", - "grey_bar_panel/color_panel/green_bar": "ui/store_common.json", - "grey_bar_panel/pad": "ui/store_common.json", - "tab_name_panel": "ui/store_common.json", - "tab_name_panel/bar_panel": "ui/store_common.json", - "tab_name_panel/bar_panel/green_bar": "ui/store_common.json", - "tab_name_panel/button_panel": "ui/store_common.json", - "tab_name_panel/button_panel/tab_name_button_grey": "ui/store_common.json", - "tab_name_panel/button_panel/tab_name_button_white": "ui/store_common.json", - "tab_name_panel/pad_1": "ui/store_common.json", - "store_offer_item_title_panel": "ui/store_common.json", - "store_offer_item_title_panel/offer_title": "ui/store_common.json", - "store_offer_item_creator_panel": "ui/store_common.json", - "store_offer_item_creator_panel/pack_icon_panel": "ui/store_common.json", - "store_offer_item_creator_panel/pack_icon_panel/pack_icon_stack": "ui/store_common.json", - "store_offer_item_creator_panel/creator_label": "ui/store_common.json", - "store_offer_ratings": "ui/store_common.json", - "store_offer_ratings/rating_text_panel": "ui/store_common.json", - "vertical_store_offer_price_info_panel": "ui/store_common.json", - "vertical_store_offer_price_info_panel/sales_banner": "ui/store_common.json", - "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels": "ui/store_common.json", - "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/markdown_panel": "ui/store_common.json", - "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/padding_markdown_panel_right": "ui/store_common.json", - "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel": "ui/store_common.json", - "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel/offer_status_text": "ui/store_common.json", - "vertical_store_offer_price_info_panel/sales_banner/padding_to_right": "ui/store_common.json", - "store_offer_price_info_panel": "ui/store_common.json", - "store_offer_price_info_panel/sales_banner": "ui/store_common.json", - "store_offer_price_info_panel/sales_banner/sales_markdown_percentage_panel": "ui/store_common.json", - "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown": "ui/store_common.json", - "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/fill_markdown_panel_left": "ui/store_common.json", - "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/markdown_panel": "ui/store_common.json", - "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/padding_markdown_panel_right": "ui/store_common.json", - "store_offer_price_info_panel/sales_banner/coin_panel": "ui/store_common.json", - "store_offer_price_info_panel/sales_banner/coin_panel/offer_coin_icon": "ui/store_common.json", - "store_offer_price_info_panel/sales_banner/padding_3": "ui/store_common.json", - "store_offer_price_info_panel/sales_banner/offer_prompt_panel": "ui/store_common.json", - "store_offer_sales_markdown_percentage_panel": "ui/store_common.json", - "store_offer_sales_markdown_percentage_panel/markdown_background": "ui/store_common.json", - "store_offer_prompt_panel": "ui/store_common.json", - "store_offer_prompt_panel/offer_status_text": "ui/store_common.json", - "featured_key_art": "ui/store_common.json", - "featured_key_art/bg": "ui/store_common.json", - "featured_key_art/bg/featured_key_art": "ui/store_common.json", - "featured_key_art/bg/progress_loading": "ui/store_common.json", - "featured_key_art/bg/new_offer_icon": "ui/store_common.json", - "featured_key_art/focus_border": "ui/store_common.json", - "price_panel": "ui/store_common.json", - "price_panel/featured_icon_panel": "ui/store_common.json", - "price_panel/featured_icon_panel/featured_offer_coin_icon": "ui/store_common.json", - "price_panel/price_label_panel": "ui/store_common.json", - "price_panel/price_label_panel/price": "ui/store_common.json", - "price_panel/padding": "ui/store_common.json", - "vertical_padding_4": "ui/store_common.json", - "vertical_padding_2": "ui/store_common.json", - "sdl_vertical_padding_fill": "ui/store_common.json", - "footer": "ui/store_common.json", - "footer/restore_purchases": "ui/store_common.json", - "store_section_panel": "ui/store_common.json", - "store_section_panel/store_section_panel_outline": "ui/store_common.json", - "store_section_panel/section_panel": "ui/store_common.json", - "store_section_panel/section_panel/header": "ui/store_common.json", - "store_section_panel/section_panel/section_panel": "ui/store_common.json", - "store_section_panel/section_panel/section_panel/background": "ui/store_common.json", - "store_section_factory": "ui/store_common.json", - "store_static_section_factory": "ui/store_common.json", - "rtx_label": "ui/store_common.json", - "rtx_label/banner": "ui/store_common.json", - "rtx_label/banner/icon": "ui/store_common.json", - "subscription_chevron": "ui/store_common.json", - "subscription_chevron/subscription_chevron_panel": "ui/store_common.json", - "subscription_chevron/subscription_chevron_panel/csb_chevron": "ui/store_common.json", - "subscription_chevron/subscription_chevron_panel/sales_banner_background": "ui/store_common.json", - "csb_banner": "ui/store_common.json", - "csb_banner/banner": "ui/store_common.json", - "pagination_content_panel": "ui/store_common.json", - "pagination_content_panel/padding_left": "ui/store_common.json", - "pagination_content_panel/first_page_button": "ui/store_common.json", - "pagination_content_panel/pagination_middle_buttons_panel": "ui/store_common.json", - "pagination_content_panel/padding_right_fill": "ui/store_common.json", - "pagination_content_panel/go_to_top_button": "ui/store_common.json", - "pagination_panel": "ui/store_common.json", - "pagination_panel/top_padding": "ui/store_common.json", - "pagination_panel/pagination_content": "ui/store_common.json", - "pagination_panel/bottom_padding": "ui/store_common.json", - "store_offer_grid_panel_content": "ui/store_common.json", - "store_offer_grid_panel_content/header_centerer_panel": "ui/store_common.json", - "store_offer_grid_panel_content/store_offer_grid_factory": "ui/store_common.json", - "store_offer_grid_panel_content/pagination_centerer": "ui/store_common.json", - "store_offer_grid_panel_content/divider": "ui/store_common.json", - "store_offer_grid_panel": "ui/store_common.json", - "pagination_top_button_panel": "ui/store_common.json", - "pagination_top_button_panel/top_button_image": "ui/store_common.json", - "pagination_middle_buttons_panel": "ui/store_common.json", - "pagination_middle_buttons_panel/previous_page_button": "ui/store_common.json", - "pagination_middle_buttons_panel/current_page_number_panel": "ui/store_common.json", - "pagination_middle_buttons_panel/current_page_number_panel/current_page_number": "ui/store_common.json", - "pagination_middle_buttons_panel/next_page_button": "ui/store_common.json", - "vertical_store_offer_grid_panel": "ui/store_common.json", - "vertical_store_offer_grid_panel/header": "ui/store_common.json", - "vertical_store_offer_grid_panel/centering_panel": "ui/store_common.json", - "vertical_store_offer_grid_panel/centering_panel/vertical_store_offer_grid_content": "ui/store_common.json", - "vertical_store_offer_grid_panel/padding_0": "ui/store_common.json", - "vertical_store_offer_grid_panel/divider": "ui/store_common.json", - "carousel_row_panel": "ui/store_common.json", - "carousel_row_panel/top_panel": "ui/store_common.json", - "carousel_row_panel/top_panel/pad_0": "ui/store_common.json", - "carousel_row_panel/top_panel/tab_names_factory_panel": "ui/store_common.json", - "carousel_row_panel/top_padding": "ui/store_common.json", - "carousel_row_panel/middle_panel": "ui/store_common.json", - "carousel_row_panel/middle_panel/left_button_panel": "ui/store_common.json", - "carousel_row_panel/middle_panel/left_button_panel/left_button": "ui/store_common.json", - "carousel_row_panel/middle_panel/left_button_panel/left_bumper": "ui/store_common.json", - "carousel_row_panel/middle_panel/main_panel_factory": "ui/store_common.json", - "carousel_row_panel/middle_panel/right_button_panel": "ui/store_common.json", - "carousel_row_panel/middle_panel/right_button_panel/right_button": "ui/store_common.json", - "carousel_row_panel/middle_panel/right_button_panel/right_bumper": "ui/store_common.json", - "carousel_row_panel/bottom_panel": "ui/store_common.json", - "carousel_row_panel/bottom_panel/grey_bar_factory_panel": "ui/store_common.json", - "carousel_row_panel/bottom_padding": "ui/store_common.json", - "carousel_row_panel/divider_panel": "ui/store_common.json", - "carousel_row_panel/divider_panel/divider": "ui/store_common.json", - "carousel_factory": "ui/store_common.json", - "hero_row_l2_panel": "ui/store_common.json", - "hero_row_l2_panel/header": "ui/store_common.json", - "hero_row_l2_panel/centering_panel": "ui/store_common.json", - "hero_row_l2_panel/centering_panel/l2_featured_stack": "ui/store_common.json", - "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_0": "ui/store_common.json", - "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_1": "ui/store_common.json", - "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_1": "ui/store_common.json", - "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_2": "ui/store_common.json", - "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_2": "ui/store_common.json", - "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_3": "ui/store_common.json", - "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_3": "ui/store_common.json", - "hero_row_l2_panel/padding_0": "ui/store_common.json", - "hero_row_l2_panel/divider": "ui/store_common.json", - "blade_row_key_art": "ui/store_common.json", - "blade_row_key_art/blade_row_key_art_image": "ui/store_common.json", - "blade_row_key_art/blade_row_key_art_image/key_art_border": "ui/store_common.json", - "one_key_art_screenshot": "ui/store_common.json", - "one_key_art_screenshot_panel": "ui/store_common.json", - "one_key_art_screenshot_panel/blade_offer_frame": "ui/store_common.json", - "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot": "ui/store_common.json", - "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot/one_key_art_frame": "ui/store_common.json", - "screenshots_grid": "ui/store_common.json", - "screenshots_grid/screenshot_1": "ui/store_common.json", - "screenshots_grid/screenshot_2": "ui/store_common.json", - "screenshots_grid/screenshot_3": "ui/store_common.json", - "screenshots_grid/screenshot_4": "ui/store_common.json", - "blade_offer_details_title": "ui/store_common.json", - "blade_offer_sale_markdown": "ui/store_common.json", - "blade_offer_description_details": "ui/store_common.json", - "blade_offer_description_details/blade_title_stack": "ui/store_common.json", - "blade_offer_description_details/blade_title_stack/blade_title": "ui/store_common.json", - "blade_offer_description_details/blade_offer_creator_label": "ui/store_common.json", - "blade_offer_description_details/blade_offer_description_padding_2": "ui/store_common.json", - "blade_offer_description_details/ratings_and_coins": "ui/store_common.json", - "blade_offer_description_details/ratings_and_coins/subscription_panel": "ui/store_common.json", - "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel": "ui/store_common.json", - "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel/blade_markdown_background": "ui/store_common.json", - "blade_offer_description_details/ratings_and_coins/ratings_panel": "ui/store_common.json", - "blade_offer_description_details/ratings_and_coins/ratings_panel/blade_ratings": "ui/store_common.json", - "blade_offer_description_details/ratings_and_coins/blade_rating_count_panel": "ui/store_common.json", - "blade_offer_description_details/ratings_and_coins/fill_padding": "ui/store_common.json", - "blade_offer_description_details/ratings_and_coins/blade_offer_price_markdown_panel": "ui/store_common.json", - "blade_offer_description_details/ratings_and_coins/price_panel": "ui/store_common.json", - "blade_offer_description_details/ratings_and_coins/price_panel/price": "ui/store_common.json", - "blade_offer_description_details/ratings_and_coins/price_panel_padding_right": "ui/store_common.json", - "blade_offer_description_details/blade_offer_description_padding_3": "ui/store_common.json", - "screenshots_and_offer_details_panel": "ui/store_common.json", - "screenshots_and_offer_details_panel/blade_offer_screenshots_grid": "ui/store_common.json", - "screenshots_and_offer_details_panel/blade_offer_description_area": "ui/store_common.json", - "screenshots_and_offer_details_panel/blade_offer_description_area/blade_offer_description_border": "ui/store_common.json", - "screenshots_and_offer_details_panel/blade_offer_description_area/hero_blade_offer_description_details": "ui/store_common.json", - "blade_row_featured_panel": "ui/store_common.json", - "blade_row_featured_panel/blade_row_featured_key_art": "ui/store_common.json", - "blade_row_featured_panel/blade_offer_screenshots_and_details_panel": "ui/store_common.json", - "transparent_content_button": "ui/store_common.json", - "hero_blade_row_panel": "ui/store_common.json", - "hero_blade_row_panel/blade_row_transparent_button": "ui/store_common.json", - "hero_row_panel": "ui/store_common.json", - "hero_row_panel/header": "ui/store_common.json", - "hero_row_panel/centering_panel": "ui/store_common.json", - "hero_row_panel/centering_panel/featured_stack": "ui/store_common.json", - "hero_row_panel/centering_panel/featured_stack/hero_offer": "ui/store_common.json", - "hero_row_panel/centering_panel/featured_stack/padding_0": "ui/store_common.json", - "hero_row_panel/centering_panel/featured_stack/hero_offer_grid": "ui/store_common.json", - "hero_row_panel/padding_0": "ui/store_common.json", - "hero_row_panel/divider": "ui/store_common.json", - "hero_offer": "ui/store_common.json", - "hero_offer/featured_key_art": "ui/store_common.json", - "hero_offer/rtx_label": "ui/store_common.json", - "hero_offer/offer_description_area": "ui/store_common.json", - "hero_offer/offer_description_area/hero_offer_description_details": "ui/store_common.json", - "hero_offer_details_title": "ui/store_common.json", - "hero_offer_description_details": "ui/store_common.json", - "hero_offer_description_details/hero_title_stack": "ui/store_common.json", - "hero_offer_description_details/hero_title_stack/title": "ui/store_common.json", - "hero_offer_description_details/padding_5": "ui/store_common.json", - "hero_offer_description_details/progress": "ui/store_common.json", - "hero_offer_description_details/creator_label": "ui/store_common.json", - "hero_offer_description_details/padding_0": "ui/store_common.json", - "hero_offer_description_details/durable_offer_info_panel": "ui/store_common.json", - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel": "ui/store_common.json", - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/subscription_panel": "ui/store_common.json", - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel": "ui/store_common.json", - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner": "ui/store_common.json", - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel": "ui/store_common.json", - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel/ratings": "ui/store_common.json", - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/rating_count_panel": "ui/store_common.json", - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel": "ui/store_common.json", - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": "ui/store_common.json", - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/fill_padding": "ui/store_common.json", - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/offer_price_markdown_panel": "ui/store_common.json", - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel": "ui/store_common.json", - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel/price": "ui/store_common.json", - "hero_offer_description_details/padding_1": "ui/store_common.json", - "hero_offer_download_progress": "ui/store_common.json", - "hero_offer_download_progress/label": "ui/store_common.json", - "hero_offer_download_progress/bar": "ui/store_common.json", - "rating_text_panel": "ui/store_common.json", - "rating_text_panel/left_padding": "ui/store_common.json", - "rating_text_panel/star_panel": "ui/store_common.json", - "rating_text_panel/star_panel/rating_star": "ui/store_common.json", - "rating_text_panel/middle_padding": "ui/store_common.json", - "rating_text_panel/rating_label": "ui/store_common.json", - "ratings_description": "ui/store_common.json", - "ratings_description/rating_text_panel": "ui/store_common.json", - "store_rating_count_panel": "ui/store_common.json", - "store_rating_count_panel/rating_count_text": "ui/store_common.json", - "hero_offer_grid": "ui/store_common.json", - "hero_offer_grid/row_1": "ui/store_common.json", - "hero_offer_grid/row_1/offer_1": "ui/store_common.json", - "hero_offer_grid/row_1/padding_0": "ui/store_common.json", - "hero_offer_grid/row_1/offer_2": "ui/store_common.json", - "hero_offer_grid/padding_0": "ui/store_common.json", - "hero_offer_grid/row_2": "ui/store_common.json", - "hero_offer_grid/row_2/offer_1": "ui/store_common.json", - "hero_offer_grid/row_2/padding_0": "ui/store_common.json", - "hero_offer_grid/row_2/offer_2": "ui/store_common.json", - "offer_download_progress": "ui/store_common.json", - "offer_download_progress/label": "ui/store_common.json", - "offer_download_progress/bar": "ui/store_common.json", - "banner_button": "ui/store_common.json", - "sdl_text_aligned_panel": "ui/store_common.json", - "sdl_text_minecraftTen_aligned_panel": "ui/store_common.json", - "sdl_content_aligned_panel": "ui/store_common.json", - "sdl_content_aligned_panel/left__padding_panel": "ui/store_common.json", - "sdl_content_aligned_panel/control": "ui/store_common.json", - "sdl_content_aligned_panel/right_padding_panel": "ui/store_common.json", - "sdl_aligned_text": "ui/store_common.json", - "sdl_aligned_minecraftTen_text": "ui/store_common.json", - "content_offer_key_art": "ui/store_common.json", - "vertical_content_offer_header": "ui/store_common.json", - "vertical_content_offer_header/header": "ui/store_common.json", - "vertical_content_offer_panel": "ui/store_common.json", - "vertical_offer_grid_panel": "ui/store_common.json", - "offer_content": "ui/store_common.json", - "offer_content/offer_item": "ui/store_common.json", - "vertical_offer_content": "ui/store_common.json", - "vertical_offer_content/offer_item": "ui/store_common.json", - "vertical_coin_offer_content": "ui/store_common.json", - "vertical_coin_offer_content/offer_item": "ui/store_common.json", - "store_offer_key_art": "ui/store_common.json", - "store_offer_grid_show_more": "ui/store_common.json", - "store_offer_grid_show_more/frame": "ui/store_common.json", - "store_offer_grid_show_more/frame/title": "ui/store_common.json", - "store_offer_grid_show_more/offer_button": "ui/store_common.json", - "store_offer_grid_show_more/offer_button/hover": "ui/store_common.json", - "store_offer_grid_show_more/offer_button/hover/key_art_size_panel": "ui/store_common.json", - "store_offer_grid_show_more/offer_button/pressed": "ui/store_common.json", - "store_offer_grid_show_more/offer_button/pressed/key_art_size_panel": "ui/store_common.json", - "persona_grid_show_more": "ui/store_common.json", - "row_offer_sale_markdown": "ui/store_common.json", - "discount_label": "ui/store_common.json", - "discount_label/label_panel": "ui/store_common.json", - "discount_label/label_panel/label": "ui/store_common.json", - "discount_label/icon_panel": "ui/store_common.json", - "discount_label/icon_panel/icon": "ui/store_common.json", - "hero_offer_sale_markdown": "ui/store_common.json", - "offer_price_markdown_panel": "ui/store_common.json", - "offer_price_markdown_panel/offer_price": "ui/store_common.json", - "offer_price_markdown_panel/offer_price/text_strike_through": "ui/store_common.json", - "store_offer_title": "ui/store_common.json", - "store_offer_key_art_frame": "ui/store_common.json", - "store_offer_key_art_frame/key_art": "ui/store_common.json", - "store_offer_key_art_frame/key_art/key_art_frame": "ui/store_common.json", - "store_offer_key_art_frame/key_art/csb_expiration_banner": "ui/store_common.json", - "store_offer_key_art_frame/progress_loading": "ui/store_common.json", - "vertical_store_offer_grid_item": "ui/store_common.json", - "vertical_store_offer_grid_item/frame": "ui/store_common.json", - "vertical_store_offer_grid_item/frame/horizontal_stack_panel": "ui/store_common.json", - "vertical_store_offer_grid_item/frame/offer_button": "ui/store_common.json", - "vertical_store_offer_grid_item/dark_frame": "ui/store_common.json", - "vertical_store_offer_grid_item/dark_frame/horizontal_stack_panel": "ui/store_common.json", - "vertical_store_offer_grid_item/dark_frame/offer_button": "ui/store_common.json", - "vertical_store_offer_grid_inside_frame": "ui/store_common.json", - "vertical_store_offer_grid_inside_frame/key_art_size_panel": "ui/store_common.json", - "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art_frame": "ui/store_common.json", - "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art": "ui/store_common.json", - "vertical_store_offer_grid_inside_frame/offer_details_general_panel": "ui/store_common.json", - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel": "ui/store_common.json", - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding": "ui/store_common.json", - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding/title": "ui/store_common.json", - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding": "ui/store_common.json", - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding/creator_label": "ui/store_common.json", - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding": "ui/store_common.json", - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/ratings": "ui/store_common.json", - "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": "ui/store_common.json", - "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": "ui/store_common.json", - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/right_side_padding": "ui/store_common.json", - "vertical_store_coin_offer_grid_item": "ui/store_common.json", - "vertical_store_coin_offer_grid_item/frame": "ui/store_common.json", - "vertical_store_coin_offer_grid_item/frame/horizontal_stack_panel": "ui/store_common.json", - "vertical_store_coin_offer_grid_item/dark_frame": "ui/store_common.json", - "vertical_store_coin_offer_grid_item/dark_frame/horizontal_stack_panel": "ui/store_common.json", - "vertical_store_coin_offer_grid_item/dark_frame/offer_button": "ui/store_common.json", - "vertical_coin_offer_grid_inside_frame": "ui/store_common.json", - "vertical_coin_offer_grid_inside_frame/key_art_size_panel": "ui/store_common.json", - "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art_frame": "ui/store_common.json", - "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art": "ui/store_common.json", - "vertical_coin_offer_grid_inside_frame/padding": "ui/store_common.json", - "vertical_coin_offer_grid_inside_frame/coin_panel": "ui/store_common.json", - "vertical_coin_offer_grid_inside_frame/coin_panel/offer_coin_icon": "ui/store_common.json", - "vertical_coin_offer_grid_inside_frame/Minecoins_panel": "ui/store_common.json", - "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel": "ui/store_common.json", - "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding": "ui/store_common.json", - "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel": "ui/store_common.json", - "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel/minecoins_offer_status_text": "ui/store_common.json", - "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding": "ui/store_common.json", - "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding/title": "ui/store_common.json", - "offer_prompt_panel": "ui/store_common.json", - "offer_prompt_panel/coin_panel": "ui/store_common.json", - "offer_prompt_panel/coin_panel/offer_coin_icon": "ui/store_common.json", - "offer_prompt_panel/padding_3": "ui/store_common.json", - "offer_prompt_panel/offer_status_text_panel": "ui/store_common.json", - "offer_prompt_panel/offer_status_text_panel/offer_status_text": "ui/store_common.json", - "store_offer_grid_item": "ui/store_common.json", - "store_offer_grid_item/frame": "ui/store_common.json", - "store_offer_grid_item/frame/key_art": "ui/store_common.json", - "store_offer_grid_item/frame/key_art/key_art_frame": "ui/store_common.json", - "store_offer_grid_item/frame/key_art/csb_plus_expiration_banner": "ui/store_common.json", - "store_offer_grid_item/frame/key_art/badge_overlay_panel": "ui/store_common.json", - "store_offer_grid_item/frame/progress_loading": "ui/store_common.json", - "store_offer_grid_item/frame/progress": "ui/store_common.json", - "store_offer_grid_item/frame/durable_offer_info_panel": "ui/store_common.json", - "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack": "ui/store_common.json", - "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel": "ui/store_common.json", - "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/title": "ui/store_common.json", - "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/creator_label": "ui/store_common.json", - "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/offer_price_info_panel": "ui/store_common.json", - "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/no_durable_status_padding": "ui/store_common.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel": "ui/store_common.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label": "ui/store_common.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel": "ui/store_common.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner": "ui/store_common.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel": "ui/store_common.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel/markdown_banner": "ui/store_common.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/ratings": "ui/store_common.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rating_count_panel": "ui/store_common.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel": "ui/store_common.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": "ui/store_common.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left": "ui/store_common.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel": "ui/store_common.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right": "ui/store_common.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel": "ui/store_common.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6": "ui/store_common.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel": "ui/store_common.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel/sale_timer": "ui/store_common.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_2": "ui/store_common.json", - "store_offer_grid_item/frame/offer_button": "ui/store_common.json", - "thumbnail_only_offer": "ui/store_common.json", - "thumbnail_only_offer/frame": "ui/store_common.json", - "thumbnail_only_offer/frame/key_art": "ui/store_common.json", - "thumbnail_only_offer/frame/key_art/key_art_frame": "ui/store_common.json", - "thumbnail_only_offer/frame/key_art/offer_coin_icon": "ui/store_common.json", - "thumbnail_only_offer/frame/offer_button": "ui/store_common.json", - "store_section_header_label": "ui/store_common.json", - "persona_store_row_offer": "ui/store_common.json", - "persona_store_row_offer/persona_offer": "ui/store_common.json", - "thumnail_only_row_offer": "ui/store_common.json", - "thumnail_only_row_offer/generic_store_offer": "ui/store_common.json", - "generic_store_row_offer_panel": "ui/store_common.json", - "generic_store_row_offer_panel/generic_store_offer": "ui/store_common.json", - "store_row_show_more_button_panel": "ui/store_common.json", - "store_row_show_more_button_panel/show_more_button": "ui/store_common.json", - "persona_show_more_button_panel": "ui/store_common.json", - "persona_show_more_button_panel/show_more_button": "ui/store_common.json", - "persona_grid_panel_stack": "ui/store_common.json", - "persona_grid_panel_stack/default_piece_button": "ui/store_common.json", - "persona_grid_panel_stack/persona_grid_panel": "ui/store_common.json", - "persona_grid_panel": "ui/store_common.json", - "persona_grid_panel/persona_offer_grid": "ui/store_common.json", - "store_offer_grid_factory": "ui/store_common.json", - "non_collection_item_horizontal_padding": "ui/store_common.json", - "horizontal_store_offer_row_factory": "ui/store_common.json", - "static_offer_row_panel": "ui/store_common.json", - "static_offer_row_panel/store_row_dropdown_panel": "ui/store_common.json", - "static_offer_row_panel/store_row_dropdown_panel/store_row_section_panel": "ui/store_common.json", - "store_row_panel": "ui/store_common.json", - "store_row_panel/store_row_dropdown_panel": "ui/store_common.json", - "store_row_panel/store_row_dropdown_panel/store_row_section_panel": "ui/store_common.json", - "vertical_store_row_panel": "ui/store_common.json", - "style_header": "ui/store_common.json", - "style_header/background": "ui/store_common.json", - "style_header/style_header": "ui/store_common.json", - "style_header_panel": "ui/store_common.json", - "style_header_panel/row_header": "ui/store_common.json", - "style_header_panel/row_header/label_panel": "ui/store_common.json", - "style_header_panel/row_header/label_panel/indent": "ui/store_common.json", - "style_header_panel/row_header/label_panel/row_header_label_centering_panel": "ui/store_common.json", - "style_header_panel/row_header/label_panel/row_header_label_centering_panel/row_header_label": "ui/store_common.json", - "style_header_panel/row_header/label_panel/on_sale_banner": "ui/store_common.json", - "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel": "ui/store_common.json", - "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label": "ui/store_common.json", - "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/triangle": "ui/store_common.json", - "style_header_panel/row_header/label_panel/time_remaining_label": "ui/store_common.json", - "style_header_panel/row_carousel_padding": "ui/store_common.json", - "store_row_cycle_button_panel": "ui/store_common.json", - "store_row_cycle_button_panel/cycle_button_panel": "ui/store_common.json", - "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel": "ui/store_common.json", - "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel/page_indicator": "ui/store_common.json", - "store_row": "ui/store_common.json", - "store_row/carousel_panel": "ui/store_common.json", - "store_row/carousel_panel/progress_loading": "ui/store_common.json", - "store_row/carousel_panel/cycle_pack_horizontal_stack": "ui/store_common.json", - "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_left_button_panel": "ui/store_common.json", - "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel": "ui/store_common.json", - "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel/offer_grid": "ui/store_common.json", - "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_right_button_panel": "ui/store_common.json", - "store_row/divider": "ui/store_common.json", - "page_indicator_panel": "ui/store_common.json", - "page_indicator_panel/first_of_three": "ui/store_common.json", - "page_indicator_panel/second_of_three": "ui/store_common.json", - "page_indicator_panel/third_of_three": "ui/store_common.json", - "page_indicator_panel/first_of_two": "ui/store_common.json", - "page_indicator_panel/second_of_two": "ui/store_common.json", - "page_indicator": "ui/store_common.json", - "popup_dialog__no_store_connection": "ui/store_common.json", - "popup_dialog__no_store_connection/popup_dialog_bg": "ui/store_common.json", - "popup_dialog__no_store_connection/popup_dialog_message": "ui/store_common.json", - "popup_dialog__no_store_connection/popup_dialog_middle_button": "ui/store_common.json", - "popup_dialog__restore_popup": "ui/store_common.json", - "popup_dialog__restore_popup/popup_dialog_bg": "ui/store_common.json", - "popup_dialog__restore_popup/popup_dialog_message": "ui/store_common.json", - "popup_dialog__restore_failed": "ui/store_common.json", - "popup_dialog__restore_failed/popup_dialog_bg": "ui/store_common.json", - "popup_dialog__restore_failed/popup_dialog_message": "ui/store_common.json", - "popup_dialog__restore_failed/popup_dialog_middle_button": "ui/store_common.json", - "suggested_content_offers_grid_item": "ui/store_common.json", - "suggested_content_offers_grid_item/frame": "ui/store_common.json", - "suggested_content_offers_grid_item/frame/key_art": "ui/store_common.json", - "suggested_content_offers_grid_item/frame/key_art/key_art_frame": "ui/store_common.json", - "suggested_content_offers_grid_item/frame/progress_loading": "ui/store_common.json", - "suggested_content_offers_grid_item/frame/progress": "ui/store_common.json", - "suggested_content_offers_grid_item/frame/title_label_panel": "ui/store_common.json", - "suggested_content_offers_grid_item/frame/title_label_panel/title": "ui/store_common.json", - "suggested_content_offers_grid_item/frame/title_label_panel/offer_type": "ui/store_common.json", - "suggested_content_offers_grid_item/frame/offer_button": "ui/store_common.json", - "suggested_content_offers_grid_item/frame/offer_button/hover": "ui/store_common.json", - "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel": "ui/store_common.json", - "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame": "ui/store_common.json", - "suggested_content_offers_grid_item/frame/offer_button/pressed": "ui/store_common.json", - "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel": "ui/store_common.json", - "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame": "ui/store_common.json", - "suggested_content_offers_grid": "ui/store_common.json", - "more_suggested_content_offers_button": "ui/store_common.json", - "suggested_content_offers_panel_base": "ui/store_common.json", - "suggested_content_offers_panel_base/content": "ui/store_common.json", - "suggested_content_offers_panel_base/content/suggested_content_offers_grid": "ui/store_common.json", - "suggested_content_offers_panel_base/content/more_suggested_content_offers_button": "ui/store_common.json", - "suggested_content_offers_panel_base/progress_loading": "ui/store_common.json", - "suggested_content_offers_panel_3x1": "ui/store_common.json", - "suggested_content_offers_panel_4x1": "ui/store_common.json", - "search_text_box_panel": "ui/store_common.json", - "search_text_box_panel/search_text_box": "ui/store_common.json", - "search_text_box_panel/clear_button": "ui/store_common.json", - "search_text_box_panel/loading_spinner": "ui/store_common.json", - "search_label_panel": "ui/store_common.json", - "search_label_panel/offset_panel": "ui/store_common.json", - "search_label_panel/offset_panel/label": "ui/store_common.json", - "error_text_panel": "ui/store_common.json", - "error_text_panel/error_text_content": "ui/store_common.json", - "error_text_panel/error_text_content/top_padding": "ui/store_common.json", - "error_text_panel/error_text_content/label_panel": "ui/store_common.json", - "error_text_panel/error_text_content/bottom_padding": "ui/store_common.json", - "results_text_panel": "ui/store_common.json", - "results_text_panel/results_panel": "ui/store_common.json", - "results_text_panel/results_panel/top_padding": "ui/store_common.json", - "results_text_panel/results_panel/results_content": "ui/store_common.json", - "results_text_panel/results_panel/results_content/label_panel": "ui/store_common.json", - "results_text_panel/results_panel/results_content/mid_padding": "ui/store_common.json", - "results_text_panel/results_panel/results_content/results_close_centering_panel": "ui/store_common.json", - "results_text_panel/results_panel/results_content/results_close_centering_panel/results_close_button": "ui/store_common.json", - "results_text_panel/results_panel/results_content/right_padding": "ui/store_common.json", - "results_text_panel/results_panel/bottom_padding": "ui/store_common.json", - "filter_logo_content_panel": "ui/store_common.json", - "filter_logo_content_panel/filter_logo_image": "ui/store_common.json", - "filter_logo_content_panel/filter_count_label": "ui/store_common.json", - "filter_sort_toggle": "ui/store_common.json", - "filter_sort_submenu_scrolling_panel_section": "ui/store_common.json", - "filter_sort_submenu_scrolling_panel_section/submenu_scrolling_panel": "ui/store_common.json", - "filter_sort_grid_panel": "ui/store_common.json", - "filter_sort_grid_panel/filter_sort_grid": "ui/store_common.json", - "sort_button_content_panel": "ui/store_common.json", - "search_panel_filter": "ui/store_common.json", - "search_panel_filter/search_text_box": "ui/store_common.json", - "search_panel_filter/filter_button": "ui/store_common.json", - "search_panel_filter/sort_button": "ui/store_common.json", - "search_results_and_error_stack": "ui/store_common.json", - "search_results_and_error_stack/mid_padding_1": "ui/store_common.json", - "search_results_and_error_stack/error_text_panel": "ui/store_common.json", - "search_results_and_error_stack/mid_padding_2": "ui/store_common.json", - "search_results_and_error_stack/results_text_panel": "ui/store_common.json", - "search_panel": "ui/store_common.json", - "search_panel/search_panel_content": "ui/store_common.json", - "search_panel/search_panel_content/search_text_box": "ui/store_common.json", - "search_panel/search_panel_content/search_results_and_error_panel": "ui/store_common.json", - "search_panel/search_panel_content/bottom_padding": "ui/store_common.json", - "search_and_offer_content": "ui/store_common.json", - "search_and_offer_content/search_and_offer_panel": "ui/store_common.json", - "search_and_offer_content/search_and_offer_panel/search_and_offer_content": "ui/store_common.json", - "search_and_offer_content/search_and_offer_panel/search_and_offer_content/top_padding": "ui/store_common.json", - "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel": "ui/store_common.json", - "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel/upper_section": "ui/store_common.json", - "search_and_offer_content/search_and_offer_panel/search_and_offer_content/search_panel": "ui/store_common.json", - "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel": "ui/store_common.json", - "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel/offer_content": "ui/store_common.json", - "search_and_offer_content/search_and_offer_panel/search_and_offer_content/bottom_padding": "ui/store_common.json", - "search_object": "ui/store_common.json", - "search_object/search_object_content": "ui/store_common.json", - "sort_and_filter_menu_modal_panel": "ui/store_common.json", - "sort_and_filter_menu_modal_panel/filter_menu": "ui/store_common.json", - "sort_and_filter_menu_modals": "ui/store_common.json", - "sort_and_filter_menu_modals/filter_menu_modal": "ui/store_common.json", - "sort_and_filter_menu_modals/sort_menu_panel": "ui/store_common.json", - "search_filter_sort_background": "ui/store_common.json", - "search_filter_background_panel": "ui/store_common.json", - "search_filter_background_panel/search_filter_sort_background": "ui/store_common.json", - "close_bg_button": "ui/store_common.json", - "close_bg_button/default": "ui/store_common.json", - "close_bg_button/hover": "ui/store_common.json", - "close_bg_button/pressed": "ui/store_common.json", - "close_bg_panel": "ui/store_common.json", - "close_bg_panel/header_close_button": "ui/store_common.json", - "close_bg_panel/main_close_button": "ui/store_common.json", - "vertical_line_divider_row": "ui/store_common.json", - "vertical_line_divider_row/vert_line_divider_row_top_buffer": "ui/store_common.json", - "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding": "ui/store_common.json", - "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_left_buffer": "ui/store_common.json", - "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vertical_line_divider_row_line": "ui/store_common.json", - "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_right_buffer": "ui/store_common.json", - "vertical_line_divider_row/vert_line_divider_row_bottom_buffer": "ui/store_common.json", - "sdl_dropdown_header_row_button": "ui/store_common.json", - "sdl_subcategory_button": "ui/store_common.json", - "sdl_dropdown_header_row": "ui/store_common.json", - "sdl_dropdown_header_row/drowdown_header_row_content": "ui/store_common.json", - "sdl_dropdown_header_row/drowdown_header_row_content/button_aspects": "ui/store_common.json", - "sdl_dropdown_data_row": "ui/store_common.json", - "sdl_dropdown_data_row/row_background": "ui/store_common.json", - "sdl_dropdown_data_row/button_aspects": "ui/store_common.json", - }, - "store_layout": { - "sdl_scrolling_content_panel": "ui/store_data_driven_screen.json", - "sdl_scrolling_content_panel/sdl_scrolling_content_stack": "ui/store_data_driven_screen.json", - "sdl_scrolling_content_stack": "ui/store_data_driven_screen.json", - "sdl_scrolling_content_stack/padding_0": "ui/store_data_driven_screen.json", - "sdl_scrolling_content_stack/store_screen_layout_factory": "ui/store_data_driven_screen.json", - "sdl_scrolling_content_stack/footer": "ui/store_data_driven_screen.json", - "sdl_scrolling_section_panel": "ui/store_data_driven_screen.json", - "sdl_scrolling_section_panel/padding0": "ui/store_data_driven_screen.json", - "sdl_scrolling_section_panel/top_static_sdl_section": "ui/store_data_driven_screen.json", - "sdl_scrolling_section_panel/padding1": "ui/store_data_driven_screen.json", - "sdl_scrolling_section_panel/sdl_scrolling_section": "ui/store_data_driven_screen.json", - "sdl_scrolling_section": "ui/store_data_driven_screen.json", - "character_creator_sdl_scroll_section": "ui/store_data_driven_screen.json", - "character_creator_sdl_section": "ui/store_data_driven_screen.json", - "character_creator_sdl_section/sdl_section": "ui/store_data_driven_screen.json", - "character_creator_panel": "ui/store_data_driven_screen.json", - "character_creator_panel/left_main_panel_padding": "ui/store_data_driven_screen.json", - "character_creator_panel/character_creator_sdl_portion": "ui/store_data_driven_screen.json", - "character_creator_panel/middle_main_panel_padding": "ui/store_data_driven_screen.json", - "character_creator_panel/right_main_panel": "ui/store_data_driven_screen.json", - "character_creator_panel/right_main_panel_padding": "ui/store_data_driven_screen.json", - "character_creator_screen_layout": "ui/store_data_driven_screen.json", - "character_creator_screen_layout/character_creator_panel": "ui/store_data_driven_screen.json", - "main_panel": "ui/store_data_driven_screen.json", - "main_panel/background": "ui/store_data_driven_screen.json", - "main_panel/main_panel_content": "ui/store_data_driven_screen.json", - "main_panel/main_panel_content/sdl_screen_content": "ui/store_data_driven_screen.json", - "main_panel/progress_loading": "ui/store_data_driven_screen.json", - "nav_button_content": "ui/store_data_driven_screen.json", - "nav_button_content/image_panel": "ui/store_data_driven_screen.json", - "nav_button_content/small_padding": "ui/store_data_driven_screen.json", - "nav_button_content/label_panel": "ui/store_data_driven_screen.json", - "default_nav_label_panel": "ui/store_data_driven_screen.json", - "default_nav_label_panel/button_text_label": "ui/store_data_driven_screen.json", - "styled_nav_label_panel": "ui/store_data_driven_screen.json", - "styled_nav_label_panel/button_text_label": "ui/store_data_driven_screen.json", - "styled_nav_label_panel_minecraftTen": "ui/store_data_driven_screen.json", - "styled_nav_label_panel_minecraftTen/button_text_label": "ui/store_data_driven_screen.json", - "default_styled_button_text_label": "ui/store_data_driven_screen.json", - "nav_image_panel": "ui/store_data_driven_screen.json", - "nav_image_panel/button_image_panel": "ui/store_data_driven_screen.json", - "nav_image_panel/button_animated_panel": "ui/store_data_driven_screen.json", - "nav_button_image_panel": "ui/store_data_driven_screen.json", - "nav_button_image_panel/button_image": "ui/store_data_driven_screen.json", - "nav_button_image": "ui/store_data_driven_screen.json", - "nav_button_animation": "ui/store_data_driven_screen.json", - "nav_button_fill": "ui/store_data_driven_screen.json", - "nav_button_fill_styled": "ui/store_data_driven_screen.json", - "nav_button_fill_styled_mc10": "ui/store_data_driven_screen.json", - "nav_button_standard_styled": "ui/store_data_driven_screen.json", - "nav_button_standard_styled_mc10": "ui/store_data_driven_screen.json", - "nav_button_standard": "ui/store_data_driven_screen.json", - "nav_button_standard/nav_button": "ui/store_data_driven_screen.json", - "nav_button_grid_panel": "ui/store_data_driven_screen.json", - "nav_button_grid_panel/nav_button_grid": "ui/store_data_driven_screen.json", - "store_layout_ribbon_search_button": "ui/store_data_driven_screen.json", - "store_layout_ribbon_search_button_content": "ui/store_data_driven_screen.json", - "store_layout_ribbon_search_button_content/button_image": "ui/store_data_driven_screen.json", - "store_data_driven_screen_base": "ui/store_data_driven_screen.json", - "store_screen_modal_panel": "ui/store_data_driven_screen.json", - "store_screen_modal_panel/one_button_dialog": "ui/store_data_driven_screen.json", - "store_screen_modal_panel/popup_dialog_factory": "ui/store_data_driven_screen.json", - "dialog_button": "ui/store_data_driven_screen.json", - "store_screen_main_panel": "ui/store_data_driven_screen.json", - "store_screen_main_panel/main_content_view": "ui/store_data_driven_screen.json", - "store_screen_main_panel/sort_and_filter_modals": "ui/store_data_driven_screen.json", - "store_full_screen_content": "ui/store_data_driven_screen.json", - "store_full_screen_content/mouse_input_focus_panel": "ui/store_data_driven_screen.json", - "store_full_screen_content/screen_content": "ui/store_data_driven_screen.json", - "store_full_screen_content/screen_content/top_bar_section": "ui/store_data_driven_screen.json", - "store_full_screen_content/screen_content/main_panel": "ui/store_data_driven_screen.json", - "store_full_screen_content/screen_content/main_panel/main_panel_content": "ui/store_data_driven_screen.json", - "store_full_screen_content/popup_dialog_factory": "ui/store_data_driven_screen.json", - "store_full_screen_content/character_selector_dialog_factory": "ui/store_data_driven_screen.json", - "store_full_screen_content/custom_skin_dialog_factory": "ui/store_data_driven_screen.json", - "sdl_base_screen": "ui/store_data_driven_screen.json", - "character_creator_base_screen": "ui/store_data_driven_screen.json", - "store_data_driven_screen": "ui/store_data_driven_screen.json", - "character_creator_screen": "ui/store_data_driven_screen.json", - "dressing_room_color_picker_screen": "ui/store_data_driven_screen.json", - "expanded_appearance_view_screen": "ui/store_data_driven_screen.json", - "non_scrollable_sdl_screen": "ui/store_data_driven_screen.json", - "skin_selector_screen": "ui/store_data_driven_screen.json", - "store_data_driven_modal_one_button_screen": "ui/store_data_driven_screen.json", - }, - "filter_menu": { - "filter_clear_button_panel": "ui/store_filter_menu_screen.json", - "filter_clear_button_panel/clear_button": "ui/store_filter_menu_screen.json", - "chevron_icon_panel": "ui/store_filter_menu_screen.json", - "chevron_icon_panel/chevron_icon": "ui/store_filter_menu_screen.json", - "filter_variables_panel": "ui/store_filter_menu_screen.json", - "filter_option_button_content": "ui/store_filter_menu_screen.json", - "filter_option_button_content/left_chevron_icon_panel": "ui/store_filter_menu_screen.json", - "filter_option_button_content/filter_type_and_selected_panel": "ui/store_filter_menu_screen.json", - "filter_option_button_content/filter_type_and_selected_panel/top_padding": "ui/store_filter_menu_screen.json", - "filter_option_button_content/filter_type_and_selected_panel/filter_type_label": "ui/store_filter_menu_screen.json", - "filter_option_button_content/filter_type_and_selected_panel/middle_padding": "ui/store_filter_menu_screen.json", - "filter_option_button_content/filter_type_and_selected_panel/selected_label": "ui/store_filter_menu_screen.json", - "filter_option_button_content/filter_type_and_selected_panel/bottom_padding": "ui/store_filter_menu_screen.json", - "filter_option_button_content/right_chevron_icon_panel": "ui/store_filter_menu_screen.json", - "filter_options_button_panel": "ui/store_filter_menu_screen.json", - "filter_options_button_panel/filter_variables_panel": "ui/store_filter_menu_screen.json", - "filter_options_button_panel/filter_variables_panel/filter_options_button": "ui/store_filter_menu_screen.json", - "filter_main_menu_options_button_panel": "ui/store_filter_menu_screen.json", - "filter_title_bar_content": "ui/store_filter_menu_screen.json", - "filter_title_bar_content/filter_logo_and_count_panel": "ui/store_filter_menu_screen.json", - "filter_title_bar_content/centered_filter_title_label": "ui/store_filter_menu_screen.json", - "filter_title_bar_content/centered_filter_title_label/filter_title_label": "ui/store_filter_menu_screen.json", - "filter_title_bar_content/filter_title_padding_close_button": "ui/store_filter_menu_screen.json", - "filter_title_bar_content/centered_x": "ui/store_filter_menu_screen.json", - "filter_title_bar_content/centered_x/close_x_image": "ui/store_filter_menu_screen.json", - "filter_title_bar": "ui/store_filter_menu_screen.json", - "filter_checkbox_toggle": "ui/store_filter_menu_screen.json", - "filter_checkbox_no_icon_toggle": "ui/store_filter_menu_screen.json", - "filter_checkbox_no_icon_toggle/filter_checkbox_no_icon_toggle": "ui/store_filter_menu_screen.json", - "pack_type_sub_menu_panel": "ui/store_filter_menu_screen.json", - "pack_type_sub_menu_panel/pack_type_sub_menu": "ui/store_filter_menu_screen.json", - "pack_type_sub_menu_panel/pack_type_sub_menu/addon_packs_filter": "ui/store_filter_menu_screen.json", - "pack_type_sub_menu_panel/pack_type_sub_menu/skin_packs_filter": "ui/store_filter_menu_screen.json", - "pack_type_sub_menu_panel/pack_type_sub_menu/texture_packs_filter": "ui/store_filter_menu_screen.json", - "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel": "ui/store_filter_menu_screen.json", - "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/worlds_template_filter": "ui/store_filter_menu_screen.json", - "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/world_template_type_filters": "ui/store_filter_menu_screen.json", - "pack_type_sub_menu_panel/pack_type_sub_menu/mashup_packs_filter": "ui/store_filter_menu_screen.json", - "offer_type_sub_menu_panel": "ui/store_filter_menu_screen.json", - "offer_type_sub_menu_panel/bundles_filter": "ui/store_filter_menu_screen.json", - "offer_type_sub_menu_panel/realms_plus_filter": "ui/store_filter_menu_screen.json", - "offer_type_sub_menu_panel/csb_filter": "ui/store_filter_menu_screen.json", - "realms_plus_filter": "ui/store_filter_menu_screen.json", - "realms_plus_filter/realms_plus_filter": "ui/store_filter_menu_screen.json", - "csb_filter": "ui/store_filter_menu_screen.json", - "csb_filter/csb_filter": "ui/store_filter_menu_screen.json", - "realms_plus_gradient_content_panel": "ui/store_filter_menu_screen.json", - "realms_plus_gradient_content_panel/gradient": "ui/store_filter_menu_screen.json", - "realms_plus_gradient_content_panel/particles": "ui/store_filter_menu_screen.json", - "realms_plus_gradient_content_panel/content_panel": "ui/store_filter_menu_screen.json", - "csb_gradient_content_panel": "ui/store_filter_menu_screen.json", - "csb_gradient_content_panel/gradient": "ui/store_filter_menu_screen.json", - "csb_gradient_content_panel/particles": "ui/store_filter_menu_screen.json", - "csb_gradient_content_panel/content_panel": "ui/store_filter_menu_screen.json", - "filter_section_content": "ui/store_filter_menu_screen.json", - "filter_section_content/section_title_button": "ui/store_filter_menu_screen.json", - "filter_section_content/clear_button": "ui/store_filter_menu_screen.json", - "filter_section_content/section_sub_menu": "ui/store_filter_menu_screen.json", - "filter_section_content_dynamic": "ui/store_filter_menu_screen.json", - "filter_section_content_dynamic/filter_section_content": "ui/store_filter_menu_screen.json", - "filter_main_menu_content": "ui/store_filter_menu_screen.json", - "filter_main_menu_content/filter_title_bar_panel": "ui/store_filter_menu_screen.json", - "filter_main_menu_content/offer_type_button": "ui/store_filter_menu_screen.json", - "filter_main_menu_content/pack_type_button": "ui/store_filter_menu_screen.json", - "filter_main_menu_content/minecoin_button": "ui/store_filter_menu_screen.json", - "filter_main_menu_content/rating_button": "ui/store_filter_menu_screen.json", - "filter_main_menu_content/creator_button": "ui/store_filter_menu_screen.json", - "filter_main_menu_content/graphics_button": "ui/store_filter_menu_screen.json", - "filter_main_menu_content/installed_state_button": "ui/store_filter_menu_screen.json", - "filter_main_menu_content/filter_main_menu_filter_toggles_section": "ui/store_filter_menu_screen.json", - "filter_main_menu_content/filter_main_menu_filter_toggles_section/filter_main_menu_filter_toggle_grid_panel": "ui/store_filter_menu_screen.json", - "filter_main_menu_content/clear_button_panel": "ui/store_filter_menu_screen.json", - "filter_main_menu_content_persona": "ui/store_filter_menu_screen.json", - "filter_main_menu_content_persona/filter_title_bar_panel": "ui/store_filter_menu_screen.json", - "filter_main_menu_content_persona/persona_body_button": "ui/store_filter_menu_screen.json", - "filter_main_menu_content_persona/persona_style_button": "ui/store_filter_menu_screen.json", - "filter_main_menu_content_persona/emote_filter_section": "ui/store_filter_menu_screen.json", - "filter_main_menu_content_persona/emote_filter_section/filter_emote_toggle_grid_panel": "ui/store_filter_menu_screen.json", - "filter_main_menu_content_persona/minecoin_button": "ui/store_filter_menu_screen.json", - "filter_main_menu_content_persona/clear_button_panel": "ui/store_filter_menu_screen.json", - "filter_section_content_panel": "ui/store_filter_menu_screen.json", - "filter_section_content_panel/filter_menu_screen": "ui/store_filter_menu_screen.json", - "filter_main_menu_section": "ui/store_filter_menu_screen.json", - "filter_main_menu_section_persona": "ui/store_filter_menu_screen.json", - "filter_pack_type_section": "ui/store_filter_menu_screen.json", - "filter_offer_type_section": "ui/store_filter_menu_screen.json", - "filter_type_section": "ui/store_filter_menu_screen.json", - "filter_menu_content": "ui/store_filter_menu_screen.json", - "filter_menu_content/filter_main_menu_screen": "ui/store_filter_menu_screen.json", - "filter_menu_content/filter_offer_type_screen": "ui/store_filter_menu_screen.json", - "filter_menu_content/filter_pack_type_screen": "ui/store_filter_menu_screen.json", - "filter_menu_content/filter_minecoin_section": "ui/store_filter_menu_screen.json", - "filter_menu_content/filter_rating_section": "ui/store_filter_menu_screen.json", - "filter_menu_content/filter_creator_section": "ui/store_filter_menu_screen.json", - "filter_menu_content/filter_graphics_section": "ui/store_filter_menu_screen.json", - "filter_menu_content/filter_installed_state_section": "ui/store_filter_menu_screen.json", - "filter_menu_content_persona": "ui/store_filter_menu_screen.json", - "filter_menu_content_persona/filter_main_menu_screen": "ui/store_filter_menu_screen.json", - "filter_menu_content_persona/filter_style_section": "ui/store_filter_menu_screen.json", - "filter_menu_content_persona/filter_body_section": "ui/store_filter_menu_screen.json", - "filter_menu_content_persona/filter_minecoin_section": "ui/store_filter_menu_screen.json", - "filter_menu_panel": "ui/store_filter_menu_screen.json", - "filter_menu_panel/top_padding": "ui/store_filter_menu_screen.json", - "filter_menu_panel/alignment_panel": "ui/store_filter_menu_screen.json", - "filter_menu_panel/alignment_panel/left_padding": "ui/store_filter_menu_screen.json", - "filter_menu_panel/alignment_panel/filter_menu_content_scroll": "ui/store_filter_menu_screen.json", - "filter_menu_panel/alignment_panel/right_padding": "ui/store_filter_menu_screen.json", - "filter_menu_screen_content": "ui/store_filter_menu_screen.json", - "filter_menu_screen_content/filter_main_panel": "ui/store_filter_menu_screen.json", - "filter_menu_screen_content/filter_main_panel_persona": "ui/store_filter_menu_screen.json", - "filter_menu_screen_content/filter_menu_close_background_button": "ui/store_filter_menu_screen.json", - }, - "store_inventory": { - "sign_in_button": "ui/store_inventory_screen.json", - "no_xbl_and_local_content_warning_panel": "ui/store_inventory_screen.json", - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel": "ui/store_inventory_screen.json", - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel": "ui/store_inventory_screen.json", - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack": "ui/store_inventory_screen.json", - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/top_padding": "ui/store_inventory_screen.json", - "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": "ui/store_inventory_screen.json", - "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": "ui/store_inventory_screen.json", - "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": "ui/store_inventory_screen.json", - "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": "ui/store_inventory_screen.json", - "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": "ui/store_inventory_screen.json", - "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": "ui/store_inventory_screen.json", - "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": "ui/store_inventory_screen.json", - "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": "ui/store_inventory_screen.json", - "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": "ui/store_inventory_screen.json", - "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": "ui/store_inventory_screen.json", - "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": "ui/store_inventory_screen.json", - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding": "ui/store_inventory_screen.json", - "no_xbl_and_local_content_warning_panel/bottom_padding": "ui/store_inventory_screen.json", - "no_xbl_and_no_local_conent_warning_panel": "ui/store_inventory_screen.json", - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel": "ui/store_inventory_screen.json", - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel": "ui/store_inventory_screen.json", - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack": "ui/store_inventory_screen.json", - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/top_padding": "ui/store_inventory_screen.json", - "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": "ui/store_inventory_screen.json", - "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": "ui/store_inventory_screen.json", - "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": "ui/store_inventory_screen.json", - "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": "ui/store_inventory_screen.json", - "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": "ui/store_inventory_screen.json", - "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": "ui/store_inventory_screen.json", - "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": "ui/store_inventory_screen.json", - "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": "ui/store_inventory_screen.json", - "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": "ui/store_inventory_screen.json", - "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": "ui/store_inventory_screen.json", - "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": "ui/store_inventory_screen.json", - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding": "ui/store_inventory_screen.json", - "no_xbl_and_no_local_conent_warning_panel/bottom_padding": "ui/store_inventory_screen.json", - "inventory_sign_in_panel": "ui/store_inventory_screen.json", - "inventory_sign_in_panel/no_xbl_and_local_content_warning_panel": "ui/store_inventory_screen.json", - "inventory_sign_in_panel/no_xbl_and_no_local_conent_warning_panel": "ui/store_inventory_screen.json", - "divider_panel": "ui/store_inventory_screen.json", - "divider_panel/top_pad": "ui/store_inventory_screen.json", - "divider_panel/divider": "ui/store_inventory_screen.json", - "divider_panel/bottom_pad": "ui/store_inventory_screen.json", - "right_image": "ui/store_inventory_screen.json", - "down_image": "ui/store_inventory_screen.json", - "section_toggle_base": "ui/store_inventory_screen.json", - "owned_toggle": "ui/store_inventory_screen.json", - "current_toggle": "ui/store_inventory_screen.json", - "removed_toggle": "ui/store_inventory_screen.json", - "subscriptions_toggle": "ui/store_inventory_screen.json", - "inventory_left_panel": "ui/store_inventory_screen.json", - "inventory_left_panel/top_pad": "ui/store_inventory_screen.json", - "inventory_left_panel/owned_toggle": "ui/store_inventory_screen.json", - "inventory_left_panel/owned_dropdown_box_panel": "ui/store_inventory_screen.json", - "inventory_left_panel/owned_dropdown_box_panel/owned_dropdown_box": "ui/store_inventory_screen.json", - "inventory_left_panel/divider_0": "ui/store_inventory_screen.json", - "inventory_left_panel/csub_panel": "ui/store_inventory_screen.json", - "inventory_left_panel/csub_panel/csub_stack_panel": "ui/store_inventory_screen.json", - "inventory_left_panel/divider_1": "ui/store_inventory_screen.json", - "inventory_left_panel/subscriptions_toggle": "ui/store_inventory_screen.json", - "csub_stack_panel": "ui/store_inventory_screen.json", - "csub_stack_panel/padding_title_vertical": "ui/store_inventory_screen.json", - "csub_stack_panel/section_title": "ui/store_inventory_screen.json", - "csub_stack_panel/section_title/padding_title_horizontal": "ui/store_inventory_screen.json", - "csub_stack_panel/section_title/testTitle": "ui/store_inventory_screen.json", - "csub_stack_panel/dropdown_panel": "ui/store_inventory_screen.json", - "csub_stack_panel/dropdown_panel/dropdown_stack_panel": "ui/store_inventory_screen.json", - "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle": "ui/store_inventory_screen.json", - "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel": "ui/store_inventory_screen.json", - "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box": "ui/store_inventory_screen.json", - "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1": "ui/store_inventory_screen.json", - "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle": "ui/store_inventory_screen.json", - "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel": "ui/store_inventory_screen.json", - "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box": "ui/store_inventory_screen.json", - "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2": "ui/store_inventory_screen.json", - "subscriptions_text_panel": "ui/store_inventory_screen.json", - "subscriptions_text_panel/subscriptions_text": "ui/store_inventory_screen.json", - "realms_plus_stack_panel": "ui/store_inventory_screen.json", - "realms_plus_stack_panel/section_title": "ui/store_inventory_screen.json", - "realms_plus_stack_panel/section_title/border": "ui/store_inventory_screen.json", - "realms_plus_stack_panel/section_title/section_title_label": "ui/store_inventory_screen.json", - "realms_plus_stack_panel/section_title/particles": "ui/store_inventory_screen.json", - "realms_plus_stack_panel/dropdown_panel": "ui/store_inventory_screen.json", - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel": "ui/store_inventory_screen.json", - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_0": "ui/store_inventory_screen.json", - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle": "ui/store_inventory_screen.json", - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel": "ui/store_inventory_screen.json", - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box": "ui/store_inventory_screen.json", - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1": "ui/store_inventory_screen.json", - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle": "ui/store_inventory_screen.json", - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel": "ui/store_inventory_screen.json", - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box": "ui/store_inventory_screen.json", - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2": "ui/store_inventory_screen.json", - "dropdown_button_content": "ui/store_inventory_screen.json", - "dropdown_button_content/title_label": "ui/store_inventory_screen.json", - "dropdown_button_content/pad_0_fill": "ui/store_inventory_screen.json", - "dropdown_button_content/pad_0": "ui/store_inventory_screen.json", - "dropdown_button_content/icon_panel": "ui/store_inventory_screen.json", - "dropdown_button_content/icon_panel/block_icon": "ui/store_inventory_screen.json", - "dropdown_button_content/pad_1": "ui/store_inventory_screen.json", - "dropdown_button_content/pad_2": "ui/store_inventory_screen.json", - "dropdown_button_content/count_panel": "ui/store_inventory_screen.json", - "dropdown_button_content/count_panel/count": "ui/store_inventory_screen.json", - "dropdown_button_content/pad_3": "ui/store_inventory_screen.json", - "dropdown_button_content/right_carrot": "ui/store_inventory_screen.json", - "dropdown_button_content/right_carrot/right": "ui/store_inventory_screen.json", - "dropdown_button_content/down_carrot": "ui/store_inventory_screen.json", - "dropdown_button_content/down_carrot/down": "ui/store_inventory_screen.json", - "owned_dropdown_content": "ui/store_inventory_screen.json", - "current_dropdown_content": "ui/store_inventory_screen.json", - "removed_dropdown_content": "ui/store_inventory_screen.json", - "dropdown_box": "ui/store_inventory_screen.json", - "dropdown_box/top_pad": "ui/store_inventory_screen.json", - "dropdown_box/all": "ui/store_inventory_screen.json", - "dropdown_box/divider_0": "ui/store_inventory_screen.json", - "dropdown_box/addons": "ui/store_inventory_screen.json", - "dropdown_box/divider_1": "ui/store_inventory_screen.json", - "dropdown_box/skins": "ui/store_inventory_screen.json", - "dropdown_box/divider_2": "ui/store_inventory_screen.json", - "dropdown_box/worlds": "ui/store_inventory_screen.json", - "dropdown_box/divider_3": "ui/store_inventory_screen.json", - "dropdown_box/textures": "ui/store_inventory_screen.json", - "dropdown_box/divider_4": "ui/store_inventory_screen.json", - "dropdown_box/mashups": "ui/store_inventory_screen.json", - "dropdown_box/bottom_pad": "ui/store_inventory_screen.json", - "category_panel_button": "ui/store_inventory_screen.json", - "category_panel_button/default": "ui/store_inventory_screen.json", - "category_panel_button/hover": "ui/store_inventory_screen.json", - "category_panel_button/pressed": "ui/store_inventory_screen.json", - "category_stack_panel": "ui/store_inventory_screen.json", - "category_stack_panel/text": "ui/store_inventory_screen.json", - "category_stack_panel/fill_pad": "ui/store_inventory_screen.json", - "category_stack_panel/icon": "ui/store_inventory_screen.json", - "category_stack_panel/pad_1": "ui/store_inventory_screen.json", - "category_stack_panel/number": "ui/store_inventory_screen.json", - "search_object": "ui/store_inventory_screen.json", - "list_panel": "ui/store_inventory_screen.json", - "list_panel/list_panel_content": "ui/store_inventory_screen.json", - "list_panel/list_panel_content/search_and_offers_grid_scroll_panel": "ui/store_inventory_screen.json", - "list_panel/progress_loading": "ui/store_inventory_screen.json", - "items_content_section": "ui/store_inventory_screen.json", - "subscriptions_content_section": "ui/store_inventory_screen.json", - "subscriptions_content_section/left_pad": "ui/store_inventory_screen.json", - "subscriptions_content_section/search_and_offers_grid_scroll_panel": "ui/store_inventory_screen.json", - "right_pane_factory": "ui/store_inventory_screen.json", - "content_area": "ui/store_inventory_screen.json", - "content_area/control": "ui/store_inventory_screen.json", - "content_area/control/right_pane_factory": "ui/store_inventory_screen.json", - "main_panel": "ui/store_inventory_screen.json", - "main_panel/inventory_left_panel": "ui/store_inventory_screen.json", - "main_panel/inventory_left_panel/inventory_left_image": "ui/store_inventory_screen.json", - "main_panel/inventory_left_panel/left_scrolling_panel": "ui/store_inventory_screen.json", - "main_panel/divider_panel": "ui/store_inventory_screen.json", - "main_panel/divider_panel/main_divider": "ui/store_inventory_screen.json", - "main_panel/inventory_right_panel": "ui/store_inventory_screen.json", - "main_panel/inventory_right_panel/right_panel_background_image": "ui/store_inventory_screen.json", - "main_panel/inventory_right_panel/content_right_panel": "ui/store_inventory_screen.json", - "store_inventory_screen_main_panel": "ui/store_inventory_screen.json", - "store_inventory_screen_main_panel/main_content_view": "ui/store_inventory_screen.json", - "store_inventory_screen_main_panel/sort_and_filter_modals": "ui/store_inventory_screen.json", - "store_search_screen_content": "ui/store_inventory_screen.json", - "store_search_screen_content/main_panel": "ui/store_inventory_screen.json", - "store_search_screen_content/popup_dialog_factory": "ui/store_inventory_screen.json", - "store_inventory_screen": "ui/store_inventory_screen.json", - "signin_text_section_body": "ui/store_inventory_screen.json", - "signin_text": "ui/store_inventory_screen.json", - "signin_text_02": "ui/store_inventory_screen.json", - "signin_text_section": "ui/store_inventory_screen.json", - "signin_text_section/signin_text": "ui/store_inventory_screen.json", - "signin_text_section/line_1_padding_line_2": "ui/store_inventory_screen.json", - "signin_text_section/signin_text_02": "ui/store_inventory_screen.json", - "sign_in_panel_text_body": "ui/store_inventory_screen.json", - }, - "store_item_list": { - "store_offer_key_art": "ui/store_item_list_screen.json", - "main_panel": "ui/store_item_list_screen.json", - "main_panel/search_object": "ui/store_item_list_screen.json", - "main_panel/progress_loading": "ui/store_item_list_screen.json", - "scrolling_content_stack": "ui/store_item_list_screen.json", - "scrolling_content_stack/search_panel": "ui/store_item_list_screen.json", - "store_offer_grid": "ui/store_item_list_screen.json", - "persona_offer_grid": "ui/store_item_list_screen.json", - "vertical_store_offer_grid": "ui/store_item_list_screen.json", - "store_offer_title": "ui/store_item_list_screen.json", - "store_offer_grid_item": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/key_art": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/key_art/key_art_frame": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/key_art/csb_expiration_banner": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/progress": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/title_label_panel": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/title": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/creator_label": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/durable_offer_info_panel": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/offer_button": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/offer_button/hover": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/offer_button/pressed": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame": "ui/store_item_list_screen.json", - "store_offer_grid_item/frame/offer_button/offer_status_icon": "ui/store_item_list_screen.json", - "store_screen_content": "ui/store_item_list_screen.json", - "store_screen_content/main_panel": "ui/store_item_list_screen.json", - "store_screen_content/popup_dialog_factory": "ui/store_item_list_screen.json", - }, - "store_progress": { - "store_progress_screen": "ui/store_progress_screen.json", - "screen_content": "ui/store_progress_screen.json", - "screen_content/title_image": "ui/store_progress_screen.json", - "screen_content/progress_dialog": "ui/store_progress_screen.json", - "dialog_content": "ui/store_progress_screen.json", - "dialog_content/tooltip_panel": "ui/store_progress_screen.json", - "dialog_content/tooltip_panel/tooltip_text": "ui/store_progress_screen.json", - "dialog_content/padding": "ui/store_progress_screen.json", - "dialog_content/progress_panel": "ui/store_progress_screen.json", - "dialog_content/progress_panel/empty_progress_bar": "ui/store_progress_screen.json", - "dialog_content/progress_panel/progress_percent_panel": "ui/store_progress_screen.json", - "dialog_content/progress_panel/progress_percent_panel/full_progress_bar": "ui/store_progress_screen.json", - "dialog_content/progress_panel/progress_percent_panel/progress_bar_nub": "ui/store_progress_screen.json", - "screen_background": "ui/store_progress_screen.json", - }, - "promo_timeline": { - "promo_banner_factory": "ui/store_promo_timeline_screen.json", - "promo_banner_button_content": "ui/store_promo_timeline_screen.json", - "promo_banner_button_content/promo_banner_button": "ui/store_promo_timeline_screen.json", - "promo_banner_button_content/progress_loading_spinner": "ui/store_promo_timeline_screen.json", - "promo_banner_image": "ui/store_promo_timeline_screen.json", - "promo_banner_panel_content": "ui/store_promo_timeline_screen.json", - "promo_banner_panel_content/banner_image": "ui/store_promo_timeline_screen.json", - "promo_banner_panel_content/banner_text_panel": "ui/store_promo_timeline_screen.json", - "promo_banner_panel_content/banner_text_panel/padding_0": "ui/store_promo_timeline_screen.json", - "promo_banner_panel_content/banner_text_panel/title_stack_panel": "ui/store_promo_timeline_screen.json", - "promo_banner_panel_content/banner_text_panel/title_stack_panel/banner_title": "ui/store_promo_timeline_screen.json", - "promo_banner_panel_content/banner_text_panel/description": "ui/store_promo_timeline_screen.json", - "promo_banner_panel_content/button_stack_panel": "ui/store_promo_timeline_screen.json", - "promo_banner_panel_content/button_stack_panel/left_offset": "ui/store_promo_timeline_screen.json", - "promo_banner_panel_content/button_stack_panel/banner_button": "ui/store_promo_timeline_screen.json", - "promo_banner_panel_content/button_stack_panel/right_offset": "ui/store_promo_timeline_screen.json", - "promo_banner_holiday_panel": "ui/store_promo_timeline_screen.json", - "promo_banner_holiday_panel/banner_full_button": "ui/store_promo_timeline_screen.json", - "promo_banner_holiday_panel/banner_full_button/default": "ui/store_promo_timeline_screen.json", - "promo_banner_holiday_panel/banner_full_button/hover": "ui/store_promo_timeline_screen.json", - "promo_banner_holiday_panel/banner_full_button/pressed": "ui/store_promo_timeline_screen.json", - "image_message_panel": "ui/store_promo_timeline_screen.json", - "image_message_panel/image_message_row_content": "ui/store_promo_timeline_screen.json", - "image_message_panel/padding_0": "ui/store_promo_timeline_screen.json", - "image_message_row_content": "ui/store_promo_timeline_screen.json", - "image_message_row_content/gray_background": "ui/store_promo_timeline_screen.json", - "image_message_row_content/gray_background/message_text": "ui/store_promo_timeline_screen.json", - "image_message_row_content/gray_background/row_image": "ui/store_promo_timeline_screen.json", - "image_message_row_content/row_button": "ui/store_promo_timeline_screen.json", - "promo_image_panel": "ui/store_promo_timeline_screen.json", - "promo_image_panel/button_image_panel": "ui/store_promo_timeline_screen.json", - "promo_image_panel/button_animated_panel": "ui/store_promo_timeline_screen.json", - "promo_button_image_panel": "ui/store_promo_timeline_screen.json", - "promo_button_image_panel/button_image": "ui/store_promo_timeline_screen.json", - "promo_button_image": "ui/store_promo_timeline_screen.json", - "promo_button_animation": "ui/store_promo_timeline_screen.json", - "banner_button": "ui/store_promo_timeline_screen.json", - "sdl_text_aligned_panel": "ui/store_promo_timeline_screen.json", - "sdl_text_minecraftTen_aligned_panel": "ui/store_promo_timeline_screen.json", - "sdl_content_aligned_panel": "ui/store_promo_timeline_screen.json", - "sdl_content_aligned_panel/left__padding_panel": "ui/store_promo_timeline_screen.json", - "sdl_content_aligned_panel/control": "ui/store_promo_timeline_screen.json", - "sdl_content_aligned_panel/right_padding_panel": "ui/store_promo_timeline_screen.json", - "sdl_aligned_text": "ui/store_promo_timeline_screen.json", - "sdl_aligned_minecraftTen_text": "ui/store_promo_timeline_screen.json", - "colored_direction_button_panel": "ui/store_promo_timeline_screen.json", - "colored_direction_button_panel/chevron_image": "ui/store_promo_timeline_screen.json", - "left_corner_art": "ui/store_promo_timeline_screen.json", - "right_corner_art": "ui/store_promo_timeline_screen.json", - "promo_landing_panel": "ui/store_promo_timeline_screen.json", - "promo_landing_panel/promo_landing_panel_content": "ui/store_promo_timeline_screen.json", - "promo_landing_panel/promo_landing_panel_content/promo_top": "ui/store_promo_timeline_screen.json", - "promo_landing_panel/promo_landing_panel_content/pad_0": "ui/store_promo_timeline_screen.json", - "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel": "ui/store_promo_timeline_screen.json", - "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom": "ui/store_promo_timeline_screen.json", - "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel": "ui/store_promo_timeline_screen.json", - "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/left_button_panel": "ui/store_promo_timeline_screen.json", - "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/left_button_panel/left_button": "ui/store_promo_timeline_screen.json", - "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/offer_grid": "ui/store_promo_timeline_screen.json", - "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel": "ui/store_promo_timeline_screen.json", - "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel/right_button": "ui/store_promo_timeline_screen.json", - "promo_landing_panel/promo_landing_panel_content/pad_1": "ui/store_promo_timeline_screen.json", - "promo_landing_panel/left_corner_art": "ui/store_promo_timeline_screen.json", - "promo_landing_panel/right_corner_art": "ui/store_promo_timeline_screen.json", - "promotion_screen_top_section": "ui/store_promo_timeline_screen.json", - "promotion_screen_top_section/main_panel": "ui/store_promo_timeline_screen.json", - "promotion_top_main_panel": "ui/store_promo_timeline_screen.json", - "promotion_top_main_panel/promotion_top_main_stack": "ui/store_promo_timeline_screen.json", - "promotion_top_main_panel/promotion_top_main_stack/main_panel_title": "ui/store_promo_timeline_screen.json", - "promotion_top_main_panel/promotion_top_main_stack/promo_single_top": "ui/store_promo_timeline_screen.json", - "promotion_top_main_panel/promotion_top_main_stack/promo_single_top/single_item_view": "ui/store_promo_timeline_screen.json", - "promotion_top_main_panel/promotion_top_main_stack/promo_multi_item": "ui/store_promo_timeline_screen.json", - "main_panel_title": "ui/store_promo_timeline_screen.json", - "main_panel_title/padding_0": "ui/store_promo_timeline_screen.json", - "main_panel_title/header_stack": "ui/store_promo_timeline_screen.json", - "main_panel_title/header_stack/padding_0": "ui/store_promo_timeline_screen.json", - "main_panel_title/header_stack/back_button_centering_panel": "ui/store_promo_timeline_screen.json", - "main_panel_title/header_stack/back_button_centering_panel/button": "ui/store_promo_timeline_screen.json", - "main_panel_title/header_stack/padding_1": "ui/store_promo_timeline_screen.json", - "main_panel_title/header_stack/header_panel": "ui/store_promo_timeline_screen.json", - "main_panel_title/header_stack/header_panel/title_and_description": "ui/store_promo_timeline_screen.json", - "main_panel_title/header_stack/padding_2": "ui/store_promo_timeline_screen.json", - "main_panel_title/header_stack/claim_all_button_panel": "ui/store_promo_timeline_screen.json", - "main_panel_title/header_stack/claim_all_button_panel/claim_all_button": "ui/store_promo_timeline_screen.json", - "main_panel_title/padding_1": "ui/store_promo_timeline_screen.json", - "main_panel_title/divdier_centering_panel": "ui/store_promo_timeline_screen.json", - "main_panel_title/divdier_centering_panel/divider": "ui/store_promo_timeline_screen.json", - "main_panel_title/padding_2": "ui/store_promo_timeline_screen.json", - "promo_multi_item_grid": "ui/store_promo_timeline_screen.json", - "promo_button": "ui/store_promo_timeline_screen.json", - "promo_button/default": "ui/store_promo_timeline_screen.json", - "promo_button/default/key_art_size_panel": "ui/store_promo_timeline_screen.json", - "promo_button/default/key_art_size_panel/key_art_frame": "ui/store_promo_timeline_screen.json", - "promo_button/default/key_art_size_panel/key_art_frame/sizing_panel": "ui/store_promo_timeline_screen.json", - "promo_button/default/key_art_size_panel/key_art_frame/platform_restricted_warning_image": "ui/store_promo_timeline_screen.json", - "promo_button/default/key_art_size_panel/button_frame": "ui/store_promo_timeline_screen.json", - "promo_button/hover": "ui/store_promo_timeline_screen.json", - "promo_button/hover/key_art_size_panel": "ui/store_promo_timeline_screen.json", - "promo_button/hover/key_art_size_panel/key_art_frame": "ui/store_promo_timeline_screen.json", - "promo_button/hover/key_art_size_panel/key_art_frame/sizing_panel": "ui/store_promo_timeline_screen.json", - "promo_button/hover/key_art_size_panel/button_frame": "ui/store_promo_timeline_screen.json", - "promo_button/pressed": "ui/store_promo_timeline_screen.json", - "promo_button/pressed/key_art_frame": "ui/store_promo_timeline_screen.json", - "promo_button/pressed/key_art_frame/sizing_panel": "ui/store_promo_timeline_screen.json", - "promo_button/pressed/button_frame": "ui/store_promo_timeline_screen.json", - "promo_grid_item": "ui/store_promo_timeline_screen.json", - "promo_grid_item/background_image": "ui/store_promo_timeline_screen.json", - "promo_grid_item/background_image/promo_content": "ui/store_promo_timeline_screen.json", - "promo_grid_item/promo_button": "ui/store_promo_timeline_screen.json", - "promo_grid_item/platform_restricted_error_multi_item": "ui/store_promo_timeline_screen.json", - "platform_restricted_error": "ui/store_promo_timeline_screen.json", - "platform_restricted_error/platform_restricted_error_button": "ui/store_promo_timeline_screen.json", - "platform_restricted_error/platform_restricted_error_button/default": "ui/store_promo_timeline_screen.json", - "platform_restricted_error/platform_restricted_error_button/hover": "ui/store_promo_timeline_screen.json", - "platform_restricted_error/platform_restricted_error_button/pressed": "ui/store_promo_timeline_screen.json", - "platform_restricted_error/platform_restricted_error_button/white_overlay_to_gray_out": "ui/store_promo_timeline_screen.json", - "promo_grid_item_content": "ui/store_promo_timeline_screen.json", - "promo_grid_item_content/thumbnail_image": "ui/store_promo_timeline_screen.json", - "promo_grid_item_content/persona_key_art_frame": "ui/store_promo_timeline_screen.json", - "promo_grid_item_content/persona_key_art_frame/persona_image_panel": "ui/store_promo_timeline_screen.json", - "promo_grid_item_content/persona_key_art_frame/background": "ui/store_promo_timeline_screen.json", - "promo_grid_item_content/persona_key_art_frame/rarity_bar_panel": "ui/store_promo_timeline_screen.json", - "promo_grid_item_content/padding_0": "ui/store_promo_timeline_screen.json", - "promo_grid_item_content/title_tooltip": "ui/store_promo_timeline_screen.json", - "promo_grid_item_content/title_tooltip/promo_title": "ui/store_promo_timeline_screen.json", - "promo_grid_item_content/title_tooltip/tooltip": "ui/store_promo_timeline_screen.json", - "promotion_period_grid_panel": "ui/store_promo_timeline_screen.json", - "promotion_period_grid_panel/promotion_offer_grid_image": "ui/store_promo_timeline_screen.json", - "promotion_period_grid_panel/promotion_offer_grid_image/item_selected_bg": "ui/store_promo_timeline_screen.json", - "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel": "ui/store_promo_timeline_screen.json", - "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel": "ui/store_promo_timeline_screen.json", - "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel/day_label": "ui/store_promo_timeline_screen.json", - "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/pad": "ui/store_promo_timeline_screen.json", - "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel": "ui/store_promo_timeline_screen.json", - "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel": "ui/store_promo_timeline_screen.json", - "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel/item_button": "ui/store_promo_timeline_screen.json", - "promotion_period_offer_panel": "ui/store_promo_timeline_screen.json", - "promotion_period_offer_panel/period_1": "ui/store_promo_timeline_screen.json", - "promotion_period_offer_panel/padding_0": "ui/store_promo_timeline_screen.json", - "promotion_period_offer_panel/period_2": "ui/store_promo_timeline_screen.json", - "promotion_period_offer_panel/padding_1": "ui/store_promo_timeline_screen.json", - "promotion_period_offer_panel/period_3": "ui/store_promo_timeline_screen.json", - "promotion_period_offer_panel/padding_2": "ui/store_promo_timeline_screen.json", - "promotion_period_offer_panel/period_4": "ui/store_promo_timeline_screen.json", - "promotion_period_offer_panel/padding_3": "ui/store_promo_timeline_screen.json", - "promotion_period_offer_panel/period_5": "ui/store_promo_timeline_screen.json", - "promotion_period_offer_panel/padding_4": "ui/store_promo_timeline_screen.json", - "promotion_period_offer_panel/period_6": "ui/store_promo_timeline_screen.json", - "promotion_period_offer_panel/padding_5": "ui/store_promo_timeline_screen.json", - "promotion_period_offer_panel/period_7": "ui/store_promo_timeline_screen.json", - "toggle_button_control": "ui/store_promo_timeline_screen.json", - "toggle_button_control/green_check": "ui/store_promo_timeline_screen.json", - "toggle_button_control/key_art_image_panel": "ui/store_promo_timeline_screen.json", - "toggle_button_control/key_art_image_panel/image_loading_panel": "ui/store_promo_timeline_screen.json", - "toggle_button_control/key_art_image_panel/key_art_image": "ui/store_promo_timeline_screen.json", - "checked_border": "ui/store_promo_timeline_screen.json", - "promotion_period_grid_item": "ui/store_promo_timeline_screen.json", - "promotion_period_grid_item/frame": "ui/store_promo_timeline_screen.json", - "promotion_period_grid_item/frame/offer_button": "ui/store_promo_timeline_screen.json", - "promotion_period_grid_item/frame/offer_button/offer_toggle_button": "ui/store_promo_timeline_screen.json", - "vertical_padding_2px": "ui/store_promo_timeline_screen.json", - "timer_icon_tooltip_panel": "ui/store_promo_timeline_screen.json", - "timer_icon_tooltip_panel/limited_status_image": "ui/store_promo_timeline_screen.json", - "timer_tooltip_panel_right_extending": "ui/store_promo_timeline_screen.json", - "timer_tooltip_panel_right_extending/default": "ui/store_promo_timeline_screen.json", - "timer_tooltip_panel_right_extending/hover": "ui/store_promo_timeline_screen.json", - "timer_tooltip_panel_right_extending/pressed": "ui/store_promo_timeline_screen.json", - "timer_tooltip_panel_left_extending": "ui/store_promo_timeline_screen.json", - "timer_tooltip_panel_left_extending/default": "ui/store_promo_timeline_screen.json", - "timer_tooltip_panel_left_extending/hover": "ui/store_promo_timeline_screen.json", - "timer_tooltip_panel_left_extending/pressed": "ui/store_promo_timeline_screen.json", - "no_timer_tooltip_panel": "ui/store_promo_timeline_screen.json", - "no_timer_tooltip_panel/default": "ui/store_promo_timeline_screen.json", - "no_timer_tooltip_panel/hover": "ui/store_promo_timeline_screen.json", - "no_timer_tooltip_panel/pressed": "ui/store_promo_timeline_screen.json", - "promo_timer_panel": "ui/store_promo_timeline_screen.json", - "promo_timer_panel/timer_icon_and_tooltip_panel": "ui/store_promo_timeline_screen.json", - "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_right_extending": "ui/store_promo_timeline_screen.json", - "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_left_extending": "ui/store_promo_timeline_screen.json", - "promo_timer_panel/timer_icon_and_tooltip_panel/notooltip_button": "ui/store_promo_timeline_screen.json", - "promo_timer_panel/timer_icon_and_tooltip_panel/timer_icon": "ui/store_promo_timeline_screen.json", - "promo_timer_panel/padding": "ui/store_promo_timeline_screen.json", - "promo_timer_panel/timer_text": "ui/store_promo_timeline_screen.json", - "offer_title_panel": "ui/store_promo_timeline_screen.json", - "offer_title_panel/offer_title_label": "ui/store_promo_timeline_screen.json", - "title_and_author_panel": "ui/store_promo_timeline_screen.json", - "title_and_author_panel/author_button_panel": "ui/store_promo_timeline_screen.json", - "title_and_author_panel/author_button_panel/summary_author_button": "ui/store_promo_timeline_screen.json", - "glyph_panel": "ui/store_promo_timeline_screen.json", - "glyph_panel/item_glyph_count_panel": "ui/store_promo_timeline_screen.json", - "glyph_panel/item_glyph_count_panel/glyph_icon_panel": "ui/store_promo_timeline_screen.json", - "glyph_panel/item_glyph_count_panel/glyph_icon_panel/glyph_icon": "ui/store_promo_timeline_screen.json", - "glyph_panel/item_glyph_count_panel/center_item_glyph_padding": "ui/store_promo_timeline_screen.json", - "glyph_panel/item_glyph_count_panel/item_glyph_count_panel_label": "ui/store_promo_timeline_screen.json", - "glyph_panel/item_glyph_count_panel/item_glyph_panel_padding": "ui/store_promo_timeline_screen.json", - "vertical_glyph_section_content": "ui/store_promo_timeline_screen.json", - "vertical_glyph_section_content/glyph_content": "ui/store_promo_timeline_screen.json", - "vertical_glyph_section_content/bottom_glyph_content_padding": "ui/store_promo_timeline_screen.json", - "glyph_section_panel": "ui/store_promo_timeline_screen.json", - "glyph_section_panel/glyphs": "ui/store_promo_timeline_screen.json", - "glyph_section_panel/glyphs/skin_glyph_section": "ui/store_promo_timeline_screen.json", - "glyph_section_panel/glyphs/world_glyph_section": "ui/store_promo_timeline_screen.json", - "glyph_section_panel/glyphs/resource_pack_glyph_section": "ui/store_promo_timeline_screen.json", - "vertical_glyph_section_panel": "ui/store_promo_timeline_screen.json", - "image_glyphs_panel": "ui/store_promo_timeline_screen.json", - "image_glyphs_panel/world_panel": "ui/store_promo_timeline_screen.json", - "image_glyphs_panel/world_panel/border": "ui/store_promo_timeline_screen.json", - "image_glyphs_panel/world_panel/world_key_image": "ui/store_promo_timeline_screen.json", - "image_glyphs_panel/persona_panel": "ui/store_promo_timeline_screen.json", - "image_glyphs_panel/persona_panel/border": "ui/store_promo_timeline_screen.json", - "image_glyphs_panel/persona_panel/persona_image": "ui/store_promo_timeline_screen.json", - "image_glyphs_panel/persona_panel/background": "ui/store_promo_timeline_screen.json", - "image_glyphs_panel/persona_panel/rarity_bar_panel": "ui/store_promo_timeline_screen.json", - "image_glyphs_panel/divider": "ui/store_promo_timeline_screen.json", - "image_glyphs_panel/info": "ui/store_promo_timeline_screen.json", - "image_glyphs_panel/info/summary_title_and_author_panel": "ui/store_promo_timeline_screen.json", - "image_glyphs_panel/info/glyph_section": "ui/store_promo_timeline_screen.json", - "image_glyphs_panel/info/glyph_section/glyph_section_panel": "ui/store_promo_timeline_screen.json", - "promo_lower_button_content": "ui/store_promo_timeline_screen.json", - "promo_lower_button_content/promo_banner_button": "ui/store_promo_timeline_screen.json", - "promo_lower_button_content/progress_loading_spinner": "ui/store_promo_timeline_screen.json", - "free_discount_label": "ui/store_promo_timeline_screen.json", - "promo_upper_button_content": "ui/store_promo_timeline_screen.json", - "promo_upper_button_content/markdown": "ui/store_promo_timeline_screen.json", - "promo_upper_button_content/markdown/sales_banner_offset_panel": "ui/store_promo_timeline_screen.json", - "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel": "ui/store_promo_timeline_screen.json", - "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel/markdown_banner": "ui/store_promo_timeline_screen.json", - "promo_upper_button_content/markdown/price_markdown_panel": "ui/store_promo_timeline_screen.json", - "promo_upper_button_content/markdown/price_markdown_panel/offer_price": "ui/store_promo_timeline_screen.json", - "promo_upper_button_content/markdown/price_markdown_panel/offer_price/text_strike_through": "ui/store_promo_timeline_screen.json", - "promo_upper_button_content/promo_item_action_text_panel": "ui/store_promo_timeline_screen.json", - "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel": "ui/store_promo_timeline_screen.json", - "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/platform_restricted_warning_image": "ui/store_promo_timeline_screen.json", - "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/padding": "ui/store_promo_timeline_screen.json", - "promo_upper_button_content/promo_item_action_text_panel/promo_item_action_text": "ui/store_promo_timeline_screen.json", - "promo_upper_button_content/download_progress_bar": "ui/store_promo_timeline_screen.json", - "description_section_panel": "ui/store_promo_timeline_screen.json", - "description_section_panel/contents_description": "ui/store_promo_timeline_screen.json", - "offset_title_offer": "ui/store_promo_timeline_screen.json", - "offset_title_offer/pad_0": "ui/store_promo_timeline_screen.json", - "offset_title_offer/title_panel": "ui/store_promo_timeline_screen.json", - "offset_promo_timer": "ui/store_promo_timeline_screen.json", - "offset_promo_timer/pad_0": "ui/store_promo_timeline_screen.json", - "offset_promo_timer/promo_timer": "ui/store_promo_timeline_screen.json", - "offset_image_glyphs_panel": "ui/store_promo_timeline_screen.json", - "offset_image_glyphs_panel/pad_0": "ui/store_promo_timeline_screen.json", - "offset_image_glyphs_panel/smaller_panel": "ui/store_promo_timeline_screen.json", - "offset_image_glyphs_panel/smaller_panel/details": "ui/store_promo_timeline_screen.json", - "offset_image_glyphs_panel/smaller_panel/description": "ui/store_promo_timeline_screen.json", - "promo_pack_detail_panel": "ui/store_promo_timeline_screen.json", - "promo_pack_detail_panel/offset_title_panel": "ui/store_promo_timeline_screen.json", - "promo_pack_detail_panel/offsetted_promo_timer": "ui/store_promo_timeline_screen.json", - "promo_pack_detail_panel/pad_0": "ui/store_promo_timeline_screen.json", - "promo_pack_detail_panel/offsetted_details": "ui/store_promo_timeline_screen.json", - "promo_pack_detail_panel/pad_1": "ui/store_promo_timeline_screen.json", - "promo_left_inner_top_scrolling_content": "ui/store_promo_timeline_screen.json", - "promo_left_inner_top_scrolling_content/details": "ui/store_promo_timeline_screen.json", - "promo_left_inner_top": "ui/store_promo_timeline_screen.json", - "promo_left_inner_top/top": "ui/store_promo_timeline_screen.json", - "promo_left_inner_top/padding2": "ui/store_promo_timeline_screen.json", - "promo_left_inner_bottom": "ui/store_promo_timeline_screen.json", - "promo_left_inner_bottom/banner_button_top_panel": "ui/store_promo_timeline_screen.json", - "promo_left_inner_bottom/banner_button_top_panel/banner_button_top": "ui/store_promo_timeline_screen.json", - "promo_left_inner_bottom/banner_button_top_panel/platform_restricted_error_single_item": "ui/store_promo_timeline_screen.json", - "promo_left_inner_bottom/banner_button_bottom": "ui/store_promo_timeline_screen.json", - "promo_left_panel": "ui/store_promo_timeline_screen.json", - "promo_left_panel/top": "ui/store_promo_timeline_screen.json", - "promo_left_panel/bottom_buttons_padded": "ui/store_promo_timeline_screen.json", - "promo_left_panel/bottom_buttons_padded/pad_0": "ui/store_promo_timeline_screen.json", - "promo_left_panel/bottom_buttons_padded/bottom": "ui/store_promo_timeline_screen.json", - "promo_left_panel/padding": "ui/store_promo_timeline_screen.json", - "promo_world_image_panel": "ui/store_promo_timeline_screen.json", - "promo_world_image_panel/image": "ui/store_promo_timeline_screen.json", - "promo_world_image_panel/image/key_image": "ui/store_promo_timeline_screen.json", - "promo_world_image_panel/image/key_image/border": "ui/store_promo_timeline_screen.json", - "promo_grey_bar_panel": "ui/store_promo_timeline_screen.json", - "promo_grey_bar_panel/grey_bar": "ui/store_promo_timeline_screen.json", - "promo_grey_bar_panel/green_bar": "ui/store_promo_timeline_screen.json", - "promo_grey_bar_panel/padding": "ui/store_promo_timeline_screen.json", - "promo_world_button_panel": "ui/store_promo_timeline_screen.json", - "promo_world_button_panel/pan_left_button": "ui/store_promo_timeline_screen.json", - "promo_world_button_panel/navigation_bar": "ui/store_promo_timeline_screen.json", - "promo_world_button_panel/navigation_bar/grey_bar": "ui/store_promo_timeline_screen.json", - "promo_world_button_panel/navigation_bar/grey_bar/grey_bar_factory_panel": "ui/store_promo_timeline_screen.json", - "promo_world_button_panel/pan_right_button": "ui/store_promo_timeline_screen.json", - "promo_world_panel": "ui/store_promo_timeline_screen.json", - "promo_world_panel/image": "ui/store_promo_timeline_screen.json", - "promo_world_panel/padding1": "ui/store_promo_timeline_screen.json", - "promo_world_panel/buttons": "ui/store_promo_timeline_screen.json", - "promo_world_panel/padding_3": "ui/store_promo_timeline_screen.json", - "promo_skin_panel": "ui/store_promo_timeline_screen.json", - "promo_skin_panel/size_control": "ui/store_promo_timeline_screen.json", - "promo_skin_panel/size_control/background": "ui/store_promo_timeline_screen.json", - "promo_skin_panel/size_control/skin_button": "ui/store_promo_timeline_screen.json", - "promo_skin_panel/size_control/skin_button/default": "ui/store_promo_timeline_screen.json", - "promo_skin_panel/size_control/skin_button/hover": "ui/store_promo_timeline_screen.json", - "promo_skin_panel/size_control/skin_button/pressed": "ui/store_promo_timeline_screen.json", - "promo_skin_panel/size_control/skin_button/content_panel": "ui/store_promo_timeline_screen.json", - "promo_skin_panel/size_control/skin_button/content_panel/paper_doll": "ui/store_promo_timeline_screen.json", - "promo_skin_grid_panel": "ui/store_promo_timeline_screen.json", - "promo_skin_grid_panel/promo_skin_pack_grid": "ui/store_promo_timeline_screen.json", - "promo_right_panel_scroll_content": "ui/store_promo_timeline_screen.json", - "promo_right_panel_scroll_content/world_screenshots_panel": "ui/store_promo_timeline_screen.json", - "promo_right_panel_scroll_content/world_screenshots_panel/world_panel": "ui/store_promo_timeline_screen.json", - "promo_right_panel_scroll_content/skin_image_panel": "ui/store_promo_timeline_screen.json", - "promo_right_panel_scroll_content/skin_image_panel/skin_panel": "ui/store_promo_timeline_screen.json", - "promo_right_panel_scroll_content/persona_preview": "ui/store_promo_timeline_screen.json", - "skin_scroll_panel": "ui/store_promo_timeline_screen.json", - "persona_classic_skin_grid_panel": "ui/store_promo_timeline_screen.json", - "persona_classic_skin_grid_panel/persona_skin_pack_category_grid": "ui/store_promo_timeline_screen.json", - "promo_right_panel": "ui/store_promo_timeline_screen.json", - "promo_detail_panel": "ui/store_promo_timeline_screen.json", - "promo_detail_panel/detail": "ui/store_promo_timeline_screen.json", - "promo_detail_panel/center_spacing": "ui/store_promo_timeline_screen.json", - "promo_detail_panel/right": "ui/store_promo_timeline_screen.json", - "promotion_skin_viewer_panel": "ui/store_promo_timeline_screen.json", - "promotion_skin_viewer_panel/popup_dialog_factory": "ui/store_promo_timeline_screen.json", - "promotion_skin_viewer_panel/character_loading_panel": "ui/store_promo_timeline_screen.json", - "promotion_skin_viewer_panel/skin_model_panel": "ui/store_promo_timeline_screen.json", - "promotion_skin_viewer_panel/skin_model_panel/skin_model": "ui/store_promo_timeline_screen.json", - "promotion_skin_viewer_panel/skin_model_panel/arrow_panel": "ui/store_promo_timeline_screen.json", - "promotion_skin_viewer_panel/skin_model_panel/arrow_panel/rotate_arrows": "ui/store_promo_timeline_screen.json", - "promo_popup_toast": "ui/store_promo_timeline_screen.json", - }, - "store_sale_item_list": { - "banner_header": "ui/store_sales_item_list_screen.json", - "banner_header/label_panel": "ui/store_sales_item_list_screen.json", - "banner_header/label_panel/on_sale_banner": "ui/store_sales_item_list_screen.json", - "banner_header/label_panel/on_sale_banner/padding_panel": "ui/store_sales_item_list_screen.json", - "banner_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label": "ui/store_sales_item_list_screen.json", - "banner_header/label_panel/on_sale_banner/padding_panel/triangle": "ui/store_sales_item_list_screen.json", - "banner_header/label_panel/time_remaining_label": "ui/store_sales_item_list_screen.json", - "sales_offer_content": "ui/store_sales_item_list_screen.json", - "sales_offer_content/top_padding": "ui/store_sales_item_list_screen.json", - "sales_offer_content/sales_panel": "ui/store_sales_item_list_screen.json", - "sales_offer_content/sales_panel/sales_banner_panel": "ui/store_sales_item_list_screen.json", - "sales_offer_content/sales_panel/top_sales_grid_padding": "ui/store_sales_item_list_screen.json", - "sales_offer_content/sales_panel/sales_grid_panel": "ui/store_sales_item_list_screen.json", - "sales_offer_content/sales_panel/sales_grid_panel/sales_offer_grid": "ui/store_sales_item_list_screen.json", - "all_offer_content": "ui/store_sales_item_list_screen.json", - "all_offer_content/store_offer_grid_panel": "ui/store_sales_item_list_screen.json", - }, - "store_search": { - "store_offer_grid_item": "ui/store_search_screen.json", - "trending_row_content": "ui/store_search_screen.json", - "trending_row_content/trending_row_panel": "ui/store_search_screen.json", - "trending_row_content/trending_row_panel/trending_row_label_panel": "ui/store_search_screen.json", - "trending_row_content/trending_row_panel/trending_row_label_panel/trending_row_label": "ui/store_search_screen.json", - "trending_row_content/trending_row_panel/mid_padding": "ui/store_search_screen.json", - "trending_row_content/trending_row_panel/trending_offers_grid": "ui/store_search_screen.json", - "trending_row_content/trending_row_panel/bottom_padding": "ui/store_search_screen.json", - "trending_rows_grid": "ui/store_search_screen.json", - "search_offer_content": "ui/store_search_screen.json", - "search_offer_content/trending_grid": "ui/store_search_screen.json", - "search_offer_content/item_list_panel": "ui/store_search_screen.json", - "search_offer_content/item_list_panel/item_list_grid": "ui/store_search_screen.json", - "main_panel": "ui/store_search_screen.json", - "main_panel/seach_object": "ui/store_search_screen.json", - "main_panel/progress_loading": "ui/store_search_screen.json", - "store_search_screen_content": "ui/store_search_screen.json", - "store_search_screen_content/main_panel": "ui/store_search_screen.json", - "store_search_screen_content/popup_dialog_factory": "ui/store_search_screen.json", - "store_search_screen": "ui/store_search_screen.json", - }, - "sort_menu": { - "sort_menu_toggle_panel": "ui/store_sort_menu_screen.json", - "sort_menu_toggle_panel/sort_menu_toggle_panel": "ui/store_sort_menu_screen.json", - "sort_menu_toggle_panel/sort_menu_toggle_panel/sort_menu_toggle": "ui/store_sort_menu_screen.json", - "sort_menu_first_button_content_panel": "ui/store_sort_menu_screen.json", - "sort_menu_first_button_content_panel/left_padding": "ui/store_sort_menu_screen.json", - "sort_menu_first_button_content_panel/centered_sort_logo_icon": "ui/store_sort_menu_screen.json", - "sort_menu_first_button_content_panel/centered_sort_logo_icon/sort_logo_icon": "ui/store_sort_menu_screen.json", - "sort_menu_first_button_content_panel/logo_padding_labels": "ui/store_sort_menu_screen.json", - "sort_menu_first_button_content_panel/labels_stack_panel": "ui/store_sort_menu_screen.json", - "sort_menu_first_button_content_panel/labels_stack_panel/top_padding": "ui/store_sort_menu_screen.json", - "sort_menu_first_button_content_panel/labels_stack_panel/sort_const_word_top": "ui/store_sort_menu_screen.json", - "sort_menu_first_button_content_panel/labels_stack_panel/middle_padding": "ui/store_sort_menu_screen.json", - "sort_menu_first_button_content_panel/labels_stack_panel/current_sort_value_label_bottom": "ui/store_sort_menu_screen.json", - "sort_menu_first_button_content_panel/labels_stack_panel/bottom_padding": "ui/store_sort_menu_screen.json", - "sort_menu_first_button_content_panel/labels_padding_x_image": "ui/store_sort_menu_screen.json", - "sort_menu_first_button_content_panel/x_image_panel": "ui/store_sort_menu_screen.json", - "sort_menu_first_button_content_panel/x_image_panel/x_image": "ui/store_sort_menu_screen.json", - "sort_menu_toggles": "ui/store_sort_menu_screen.json", - "sort_menu_toggles/relevance_toggle_panel": "ui/store_sort_menu_screen.json", - "sort_menu_toggles/relevance_toggle_panel/relevance_toggle": "ui/store_sort_menu_screen.json", - "sort_menu_toggles/sort_toggle_grid": "ui/store_sort_menu_screen.json", - "sort_menu_show": "ui/store_sort_menu_screen.json", - "sort_menu_show/1st_button_centering_panel": "ui/store_sort_menu_screen.json", - "sort_menu_show/1st_button_centering_panel/first_button_main": "ui/store_sort_menu_screen.json", - "sort_menu_show/sort_scrolling_content_panel": "ui/store_sort_menu_screen.json", - "sort_menu_panel": "ui/store_sort_menu_screen.json", - "sort_menu_panel/top_padding": "ui/store_sort_menu_screen.json", - "sort_menu_panel/alignment_panel": "ui/store_sort_menu_screen.json", - "sort_menu_panel/alignment_panel/left_padding": "ui/store_sort_menu_screen.json", - "sort_menu_panel/alignment_panel/sort_menu_show": "ui/store_sort_menu_screen.json", - "sort_menu_panel/alignment_panel/right_padding": "ui/store_sort_menu_screen.json", - "sort_menu_screen_content": "ui/store_sort_menu_screen.json", - "sort_menu_screen_content/sort_menu_main": "ui/store_sort_menu_screen.json", - "sort_menu_screen_content/sort_menu_main_persona": "ui/store_sort_menu_screen.json", - "sort_menu_screen_content/sort_menu_background": "ui/store_sort_menu_screen.json", - }, - "structure_editor": { - "small_padding": "ui/structure_editor_screen.json", - "help_icon": "ui/structure_editor_screen.json", - "common_text_label": "ui/structure_editor_screen.json", - "text_edit_control": "ui/structure_editor_screen.json", - "axis_selection_panel": "ui/structure_editor_screen.json", - "axis_selection_panel/label": "ui/structure_editor_screen.json", - "axis_selection_panel/edit_box": "ui/structure_editor_screen.json", - "grid_axis_selection_panel": "ui/structure_editor_screen.json", - "grid_axis_selection_panel/label_container": "ui/structure_editor_screen.json", - "grid_axis_selection_panel/label_container/label": "ui/structure_editor_screen.json", - "grid_axis_selection_panel/axis_grid": "ui/structure_editor_screen.json", - "grid_axis_selection_panel/axis_grid/X": "ui/structure_editor_screen.json", - "grid_axis_selection_panel/axis_grid/Y": "ui/structure_editor_screen.json", - "grid_axis_selection_panel/axis_grid/Z": "ui/structure_editor_screen.json", - "3d_export_button": "ui/structure_editor_screen.json", - "save_button": "ui/structure_editor_screen.json", - "export_button": "ui/structure_editor_screen.json", - "load_button": "ui/structure_editor_screen.json", - "detect_button": "ui/structure_editor_screen.json", - "import_button": "ui/structure_editor_screen.json", - "reset_button": "ui/structure_editor_screen.json", - "help_button": "ui/structure_editor_screen.json", - "toggle_option_panel": "ui/structure_editor_screen.json", - "toggle_option_panel/toggle": "ui/structure_editor_screen.json", - "toggle_option_panel/offset_0": "ui/structure_editor_screen.json", - "toggle_option_panel/first_label_wrapper": "ui/structure_editor_screen.json", - "toggle_option_panel/first_label_wrapper/first_label": "ui/structure_editor_screen.json", - "toggle_option_panel/second_label_wrapper": "ui/structure_editor_screen.json", - "toggle_option_panel/second_label_wrapper/second_label": "ui/structure_editor_screen.json", - "include_entities_panel": "ui/structure_editor_screen.json", - "include_entities_panel/label": "ui/structure_editor_screen.json", - "include_entities_panel/toggle_wrapper": "ui/structure_editor_screen.json", - "include_entities_panel/toggle_wrapper/toggle": "ui/structure_editor_screen.json", - "waterlogging_panel": "ui/structure_editor_screen.json", - "waterlogging_panel/label": "ui/structure_editor_screen.json", - "waterlogging_panel/toggle_wrapper": "ui/structure_editor_screen.json", - "waterlogging_panel/toggle_wrapper/toggle": "ui/structure_editor_screen.json", - "show_bounding_box_panel": "ui/structure_editor_screen.json", - "show_bounding_box_panel/label": "ui/structure_editor_screen.json", - "show_bounding_box_panel/toggle_wrapper": "ui/structure_editor_screen.json", - "show_bounding_box_panel/toggle_wrapper/toggle": "ui/structure_editor_screen.json", - "include_player_panel": "ui/structure_editor_screen.json", - "include_player_panel/label": "ui/structure_editor_screen.json", - "include_player_panel/toggle_wrapper": "ui/structure_editor_screen.json", - "include_player_panel/toggle_wrapper/toggle": "ui/structure_editor_screen.json", - "remove_blocks_panel": "ui/structure_editor_screen.json", - "remove_blocks_panel/label": "ui/structure_editor_screen.json", - "remove_blocks_panel/toggle_wrapper": "ui/structure_editor_screen.json", - "remove_blocks_panel/toggle_wrapper/toggle": "ui/structure_editor_screen.json", - "3d_export_mode_panel": "ui/structure_editor_screen.json", - "3d_export_mode_panel/size_offset_panel": "ui/structure_editor_screen.json", - "3d_export_mode_panel/size_offset_panel/size_panel": "ui/structure_editor_screen.json", - "3d_export_mode_panel/size_offset_panel/offset_panel": "ui/structure_editor_screen.json", - "3d_export_mode_panel/offset_0": "ui/structure_editor_screen.json", - "3d_export_mode_panel/offset_2": "ui/structure_editor_screen.json", - "3d_export_mode_panel/remove_blocks": "ui/structure_editor_screen.json", - "save_mode_panel": "ui/structure_editor_screen.json", - "save_mode_panel/structure_name": "ui/structure_editor_screen.json", - "save_mode_panel/size_offset_panel": "ui/structure_editor_screen.json", - "save_mode_panel/size_offset_panel/size_panel": "ui/structure_editor_screen.json", - "save_mode_panel/size_offset_panel/offset_panel": "ui/structure_editor_screen.json", - "save_mode_panel/detect_offset": "ui/structure_editor_screen.json", - "save_mode_panel/detect": "ui/structure_editor_screen.json", - "save_mode_panel/include_entities_offset": "ui/structure_editor_screen.json", - "save_mode_panel/include_entities": "ui/structure_editor_screen.json", - "save_mode_panel/remove_blocks_offset": "ui/structure_editor_screen.json", - "save_mode_panel/remove_blocks": "ui/structure_editor_screen.json", - "save_mode_panel/redstone_save_offset": "ui/structure_editor_screen.json", - "save_mode_panel/redstone_save_mode": "ui/structure_editor_screen.json", - "save_mode_panel/trailing_offset": "ui/structure_editor_screen.json", - "mirror_checkbox": "ui/structure_editor_screen.json", - "mirror_checkbox/label": "ui/structure_editor_screen.json", - "mirror_checkbox/padding": "ui/structure_editor_screen.json", - "mirror_checkbox/check_box": "ui/structure_editor_screen.json", - "mirror_checkboxes": "ui/structure_editor_screen.json", - "mirror_checkboxes/mirror_checkbox_x": "ui/structure_editor_screen.json", - "mirror_checkboxes/padding": "ui/structure_editor_screen.json", - "mirror_checkboxes/mirror_checkbox_z": "ui/structure_editor_screen.json", - "load_mode_panel": "ui/structure_editor_screen.json", - "load_mode_panel/structure_name": "ui/structure_editor_screen.json", - "load_mode_panel/offset_panel": "ui/structure_editor_screen.json", - "load_mode_panel/include_entities_offset": "ui/structure_editor_screen.json", - "load_mode_panel/include_entities": "ui/structure_editor_screen.json", - "load_mode_panel/remove_blocks_offset": "ui/structure_editor_screen.json", - "load_mode_panel/waterlog_blocks": "ui/structure_editor_screen.json", - "load_mode_panel/waterlog_blocks_offset": "ui/structure_editor_screen.json", - "load_mode_panel/remove_blocks": "ui/structure_editor_screen.json", - "load_mode_panel/integrity_offset": "ui/structure_editor_screen.json", - "load_mode_panel/integrity_label": "ui/structure_editor_screen.json", - "load_mode_panel/integrity_field": "ui/structure_editor_screen.json", - "load_mode_panel/offset_1": "ui/structure_editor_screen.json", - "load_mode_panel/seed_label": "ui/structure_editor_screen.json", - "load_mode_panel/seed_field": "ui/structure_editor_screen.json", - "load_mode_panel/offset_2": "ui/structure_editor_screen.json", - "load_mode_panel/rotation_slider": "ui/structure_editor_screen.json", - "load_mode_panel/mirror_label": "ui/structure_editor_screen.json", - "load_mode_panel/mirror_checkboxes_centerer": "ui/structure_editor_screen.json", - "load_mode_panel/mirror_checkboxes_centerer/mirror_checkboxes": "ui/structure_editor_screen.json", - "load_mode_panel/checkbox_offset": "ui/structure_editor_screen.json", - "load_mode_panel/animation_mode": "ui/structure_editor_screen.json", - "load_mode_panel/animation_time_label": "ui/structure_editor_screen.json", - "load_mode_panel/animation_time_field": "ui/structure_editor_screen.json", - "data_mode_panel": "ui/structure_editor_screen.json", - "data_mode_panel/top_offset": "ui/structure_editor_screen.json", - "data_mode_panel/data_label": "ui/structure_editor_screen.json", - "data_mode_panel/data_label_offset": "ui/structure_editor_screen.json", - "data_mode_panel/data_field": "ui/structure_editor_screen.json", - "data_mode_panel/data_field_offset": "ui/structure_editor_screen.json", - "corner_mode_panel": "ui/structure_editor_screen.json", - "corner_mode_panel/structure_name": "ui/structure_editor_screen.json", - "help_button_panel": "ui/structure_editor_screen.json", - "help_button_panel/help": "ui/structure_editor_screen.json", - "help_button_panel/help_divider": "ui/structure_editor_screen.json", - "save_button_panel": "ui/structure_editor_screen.json", - "save_button_panel/divider": "ui/structure_editor_screen.json", - "save_button_panel/save": "ui/structure_editor_screen.json", - "save_button_panel/save_divider": "ui/structure_editor_screen.json", - "save_button_panel/export": "ui/structure_editor_screen.json", - "save_button_panel/export_divider": "ui/structure_editor_screen.json", - "save_button_panel/import_divider": "ui/structure_editor_screen.json", - "save_button_panel/reset": "ui/structure_editor_screen.json", - "save_button_panel/reset_divider": "ui/structure_editor_screen.json", - "save_button_panel_no_export": "ui/structure_editor_screen.json", - "save_button_panel_no_export/divider": "ui/structure_editor_screen.json", - "save_button_panel_no_export/save": "ui/structure_editor_screen.json", - "save_button_panel_no_export/save_divider": "ui/structure_editor_screen.json", - "save_button_panel_no_export/reset": "ui/structure_editor_screen.json", - "save_button_panel_no_export/reset_divider": "ui/structure_editor_screen.json", - "load_button_panel": "ui/structure_editor_screen.json", - "load_button_panel/divider": "ui/structure_editor_screen.json", - "load_button_panel/load": "ui/structure_editor_screen.json", - "load_button_panel/load_divider": "ui/structure_editor_screen.json", - "load_button_panel/export_divider": "ui/structure_editor_screen.json", - "load_button_panel/import": "ui/structure_editor_screen.json", - "load_button_panel/import_divider": "ui/structure_editor_screen.json", - "load_button_panel/reset": "ui/structure_editor_screen.json", - "load_button_panel/reset_divider": "ui/structure_editor_screen.json", - "load_button_panel_no_export": "ui/structure_editor_screen.json", - "load_button_panel_no_export/divider": "ui/structure_editor_screen.json", - "load_button_panel_no_export/load": "ui/structure_editor_screen.json", - "load_button_panel_no_export/load_divider": "ui/structure_editor_screen.json", - "load_button_panel_no_export/reset": "ui/structure_editor_screen.json", - "load_button_panel_no_export/reset_divider": "ui/structure_editor_screen.json", - "3d_export_button_panel": "ui/structure_editor_screen.json", - "3d_export_button_panel/divider": "ui/structure_editor_screen.json", - "3d_export_button_panel/3d_export": "ui/structure_editor_screen.json", - "3d_export_button_panel/3d_export_divider": "ui/structure_editor_screen.json", - "3d_export_button_panel/import": "ui/structure_editor_screen.json", - "3d_export_button_panel/import_divider": "ui/structure_editor_screen.json", - "3d_export_button_panel/reset": "ui/structure_editor_screen.json", - "3d_export_button_panel/reset_divider": "ui/structure_editor_screen.json", - "data_button_panel": "ui/structure_editor_screen.json", - "data_button_panel/divider": "ui/structure_editor_screen.json", - "data_button_panel/reset": "ui/structure_editor_screen.json", - "data_button_panel/reset_divider": "ui/structure_editor_screen.json", - "corner_button_panel": "ui/structure_editor_screen.json", - "corner_button_panel/reset_divider": "ui/structure_editor_screen.json", - "button_panel_wrapper": "ui/structure_editor_screen.json", - "button_panel_wrapper/panel": "ui/structure_editor_screen.json", - "button_panel_wrapper/panel/divider": "ui/structure_editor_screen.json", - "button_panel_wrapper/panel/save_panel": "ui/structure_editor_screen.json", - "button_panel_wrapper/panel/save_panel_no_export": "ui/structure_editor_screen.json", - "button_panel_wrapper/panel/corner_panel": "ui/structure_editor_screen.json", - "button_panel_wrapper/panel/load_panel_no_export": "ui/structure_editor_screen.json", - "button_panel_wrapper/panel/load_panel": "ui/structure_editor_screen.json", - "button_panel_wrapper/panel/3d_export_panel": "ui/structure_editor_screen.json", - "button_panel_wrapper/panel/data_panel": "ui/structure_editor_screen.json", - "button_panel_wrapper/panel/how_to_play_button": "ui/structure_editor_screen.json", - "button_panel_wrapper/panel/end_divider": "ui/structure_editor_screen.json", - "redstone_dropdown_content": "ui/structure_editor_screen.json", - "redstone_save_mode_panel": "ui/structure_editor_screen.json", - "animation_mode_dropdown_content": "ui/structure_editor_screen.json", - "animation_mode_dropdown": "ui/structure_editor_screen.json", - "structure_name_wrapper": "ui/structure_editor_screen.json", - "structure_name_wrapper/structure_name": "ui/structure_editor_screen.json", - "structure_name_wrapper/structure_name_offset": "ui/structure_editor_screen.json", - "detect_button_wrapper": "ui/structure_editor_screen.json", - "detect_button_wrapper/detect": "ui/structure_editor_screen.json", - "detect_button_wrapper/detect_offset": "ui/structure_editor_screen.json", - "mode_dropdown_content": "ui/structure_editor_screen.json", - "mode_panel": "ui/structure_editor_screen.json", - "scrolling_panel_wrapper": "ui/structure_editor_screen.json", - "scrolling_panel_wrapper/scrolling_panel": "ui/structure_editor_screen.json", - "scrolling_panel": "ui/structure_editor_screen.json", - "scroll_panel_content": "ui/structure_editor_screen.json", - "scroll_panel_content/content_stack_panel": "ui/structure_editor_screen.json", - "scroll_panel_content/content_stack_panel/base_offset": "ui/structure_editor_screen.json", - "scroll_panel_content/content_stack_panel/mode_panel": "ui/structure_editor_screen.json", - "scroll_panel_content/content_stack_panel/mode_panel_offset": "ui/structure_editor_screen.json", - "scroll_panel_content/content_stack_panel/3d_export_mode_panel": "ui/structure_editor_screen.json", - "scroll_panel_content/content_stack_panel/save_mode_panel": "ui/structure_editor_screen.json", - "scroll_panel_content/content_stack_panel/load_mode_panel": "ui/structure_editor_screen.json", - "scroll_panel_content/content_stack_panel/data_mode_panel": "ui/structure_editor_screen.json", - "scroll_panel_content/content_stack_panel/corner_mode_panel": "ui/structure_editor_screen.json", - "scroll_panel_content/content_stack_panel/base_mode_offset": "ui/structure_editor_screen.json", - "scroll_panel_content/content_stack_panel/show_bounding_box": "ui/structure_editor_screen.json", - "scroll_panel_content/content_stack_panel/show_bounding_box_offset": "ui/structure_editor_screen.json", - "scroll_panel_content/content_stack_panel/offset_2": "ui/structure_editor_screen.json", - "left_divider_content": "ui/structure_editor_screen.json", - "left_divider_content/scrolling_panel": "ui/structure_editor_screen.json", - "save_message_text": "ui/structure_editor_screen.json", - "save_message_text/save_message_label": "ui/structure_editor_screen.json", - "import_message_text": "ui/structure_editor_screen.json", - "import_message_text/save_message_label": "ui/structure_editor_screen.json", - "import_failed_message_text": "ui/structure_editor_screen.json", - "import_failed_message_text/save_message_label": "ui/structure_editor_screen.json", - "export_disabled_label": "ui/structure_editor_screen.json", - "image_panel_wrapper": "ui/structure_editor_screen.json", - "image_panel_wrapper/image_panel": "ui/structure_editor_screen.json", - "image_panel_wrapper/save_message_factory": "ui/structure_editor_screen.json", - "image_panel_wrapper/import_message_factory": "ui/structure_editor_screen.json", - "image_panel_wrapper/import_failed_message_factory": "ui/structure_editor_screen.json", - "image_panel_wrapper/export_disabled": "ui/structure_editor_screen.json", - "corner_text": "ui/structure_editor_screen.json", - "corner_text/image_panel": "ui/structure_editor_screen.json", - "image_panel": "ui/structure_editor_screen.json", - "image_panel/border_indent": "ui/structure_editor_screen.json", - "image_panel/border_indent/background_gradient": "ui/structure_editor_screen.json", - "image_panel/border_indent/image_outline": "ui/structure_editor_screen.json", - "image_panel/border_indent/structure_renderer": "ui/structure_editor_screen.json", - "image_panel/border_indent/text_corner": "ui/structure_editor_screen.json", - "image_panel/border_indent/progress_panel": "ui/structure_editor_screen.json", - "image_panel/border_indent/rotate_arrows": "ui/structure_editor_screen.json", - "progress_panel": "ui/structure_editor_screen.json", - "progress_panel/stack_panel": "ui/structure_editor_screen.json", - "progress_panel/stack_panel/label_wrapper": "ui/structure_editor_screen.json", - "progress_panel/stack_panel/label_wrapper/progress_label": "ui/structure_editor_screen.json", - "progress_panel/stack_panel/progress_bar": "ui/structure_editor_screen.json", - "background_gradient": "ui/structure_editor_screen.json", - "corner_text_panel": "ui/structure_editor_screen.json", - "corner_text_panel/paragraph_1_corner": "ui/structure_editor_screen.json", - "corner_text_panel/padding_1": "ui/structure_editor_screen.json", - "corner_text_panel/paragraph_2_corner": "ui/structure_editor_screen.json", - "structure_renderer": "ui/structure_editor_screen.json", - "structure_renderer/renderer": "ui/structure_editor_screen.json", - "black_border": "ui/structure_editor_screen.json", - "rotation_arrows": "ui/structure_editor_screen.json", - "right_divider_content": "ui/structure_editor_screen.json", - "right_divider_content/base_offset": "ui/structure_editor_screen.json", - "right_divider_content/preview": "ui/structure_editor_screen.json", - "right_divider_content/image_offset": "ui/structure_editor_screen.json", - "right_divider_content/button_wrapper": "ui/structure_editor_screen.json", - "right_divider_content/button_wrapper/buttons": "ui/structure_editor_screen.json", - "divider_content": "ui/structure_editor_screen.json", - "divider_content/left_side": "ui/structure_editor_screen.json", - "divider_content/right_side": "ui/structure_editor_screen.json", - "structure_editor_content": "ui/structure_editor_screen.json", - "structure_editor_content/background_panel": "ui/structure_editor_screen.json", - "structure_editor_content/title": "ui/structure_editor_screen.json", - "structure_editor_content/content": "ui/structure_editor_screen.json", - "structure_editor_screen": "ui/structure_editor_screen.json", - }, - "submit_feedback": { - "send_feedback_button": "ui/submit_feedback_screen.json", - "write_feedback_panel": "ui/submit_feedback_screen.json", - "write_feedback_panel/pad_1": "ui/submit_feedback_screen.json", - "write_feedback_panel/write_feedback_label": "ui/submit_feedback_screen.json", - "write_feedback_panel/pad_2": "ui/submit_feedback_screen.json", - "write_feedback_panel/feedback_textbox": "ui/submit_feedback_screen.json", - "write_feedback_panel/remaining_characters_panel": "ui/submit_feedback_screen.json", - "write_feedback_panel/remaining_characters_panel/remaining_characters_count_label": "ui/submit_feedback_screen.json", - "scroll_panel": "ui/submit_feedback_screen.json", - "scroll_panel/write_feedback_panel": "ui/submit_feedback_screen.json", - "main_panel": "ui/submit_feedback_screen.json", - "main_panel/scrolling_panel": "ui/submit_feedback_screen.json", - "submit_feedback_screen": "ui/submit_feedback_screen.json", - "submit_feedback_content": "ui/submit_feedback_screen.json", - "submit_feedback_content/submit_feedback_main_panel": "ui/submit_feedback_screen.json", - "submit_feedback_content/progress_loading": "ui/submit_feedback_screen.json", - }, - "tabbed_upsell": { - "padding_horizontal": "ui/tabbed_upsell_screen.json", - "padding_vertical": "ui/tabbed_upsell_screen.json", - "text_horizontal_padding": "ui/tabbed_upsell_screen.json", - "tabbed_upsell_buy_now_button": "ui/tabbed_upsell_screen.json", - "tabbed_buy_now_label": "ui/tabbed_upsell_screen.json", - "tabbed_buy_now_label/button_label": "ui/tabbed_upsell_screen.json", - "label_panel": "ui/tabbed_upsell_screen.json", - "label_panel/label_text": "ui/tabbed_upsell_screen.json", - "text_panel": "ui/tabbed_upsell_screen.json", - "text_panel/tab_content_title_panel": "ui/tabbed_upsell_screen.json", - "text_panel/tab_content_description_panel": "ui/tabbed_upsell_screen.json", - "text_panel/tab_content_description_panel_second": "ui/tabbed_upsell_screen.json", - "dialog_image": "ui/tabbed_upsell_screen.json", - "dialog_image_with_border": "ui/tabbed_upsell_screen.json", - "dialog_image_with_border/dialog_image": "ui/tabbed_upsell_screen.json", - "content_image_panel": "ui/tabbed_upsell_screen.json", - "content_image_panel/minecraft_dialog_image_with_border": "ui/tabbed_upsell_screen.json", - "content_image_panel/horizontal_padding_01": "ui/tabbed_upsell_screen.json", - "content_image_panel/scrolling_panel": "ui/tabbed_upsell_screen.json", - "scroll_text": "ui/tabbed_upsell_screen.json", - "image_panel": "ui/tabbed_upsell_screen.json", - "image_panel/dialog_image_with_border": "ui/tabbed_upsell_screen.json", - "image_panel/focus_image": "ui/tabbed_upsell_screen.json", - "top_tab": "ui/tabbed_upsell_screen.json", - "tab_navigation_panel_layout": "ui/tabbed_upsell_screen.json", - "tab_navigation_panel_layout/navigation_tabs": "ui/tabbed_upsell_screen.json", - "tab_navigation_panel_layout/navigation_tabs/content": "ui/tabbed_upsell_screen.json", - "common_tab_navigation_panel_layout": "ui/tabbed_upsell_screen.json", - "tabbed_tab_navigation_panel_layout": "ui/tabbed_upsell_screen.json", - "tabbed_tab_navigation_panel_layout/minecraft_navigation_tab": "ui/tabbed_upsell_screen.json", - "tabbed_tab_navigation_panel_layout/nav_padding_01": "ui/tabbed_upsell_screen.json", - "tabbed_tab_navigation_panel_layout/xbl_navigation_tab": "ui/tabbed_upsell_screen.json", - "tabbed_tab_navigation_panel_layout/nav_padding_02": "ui/tabbed_upsell_screen.json", - "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3": "ui/tabbed_upsell_screen.json", - "tabbed_tab_navigation_panel_layout/nav_padding_03": "ui/tabbed_upsell_screen.json", - "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4": "ui/tabbed_upsell_screen.json", - "tabbed_tab_navigation_panel_layout/nav_padding_04": "ui/tabbed_upsell_screen.json", - "tabbed_tab_navigation_panel_layout/server_navigation_tab": "ui/tabbed_upsell_screen.json", - "tabbed_tab_navigation_panel_layout/nav_padding_05": "ui/tabbed_upsell_screen.json", - "tabbed_tab_navigation_panel_layout/store_navigation_tab": "ui/tabbed_upsell_screen.json", - "tabbed_tab_navigation_panel_layout/nav_padding_06": "ui/tabbed_upsell_screen.json", - "tabbed_tab_navigation_panel_layout/creative_navigation_tab": "ui/tabbed_upsell_screen.json", - "tabbed_tab_navigation_panel_layout/nav_padding_07": "ui/tabbed_upsell_screen.json", - "tabbed_tab_navigation_panel_layout/packs_navigation_tab": "ui/tabbed_upsell_screen.json", - "tabbed_tab_navigation_panel_layout/nav_padding_08": "ui/tabbed_upsell_screen.json", - "tabbed_tab_navigation_panel_layout/seeds_navigation_tab": "ui/tabbed_upsell_screen.json", - "tabbed_tab_content_panel_layout": "ui/tabbed_upsell_screen.json", - "tabbed_tab_content_panel_layout/minecraft_tab_content": "ui/tabbed_upsell_screen.json", - "tabbed_tab_content_panel_layout/xbl_tab_content2": "ui/tabbed_upsell_screen.json", - "tabbed_tab_content_panel_layout/achievements_tab_content3": "ui/tabbed_upsell_screen.json", - "tabbed_tab_content_panel_layout/multiplayer_tab_content4": "ui/tabbed_upsell_screen.json", - "tabbed_tab_content_panel_layout/server_tab_content5": "ui/tabbed_upsell_screen.json", - "tabbed_tab_content_panel_layout/store_tab_content6": "ui/tabbed_upsell_screen.json", - "tabbed_tab_content_panel_layout/creative_tab_content7": "ui/tabbed_upsell_screen.json", - "tabbed_tab_content_panel_layout/packs_tab_content8": "ui/tabbed_upsell_screen.json", - "tabbed_tab_content_panel_layout/seeds_tab_content9": "ui/tabbed_upsell_screen.json", - "common_tab_content_panel": "ui/tabbed_upsell_screen.json", - "common_tab_content_panel/content": "ui/tabbed_upsell_screen.json", - "minecraft_tab_content_panel": "ui/tabbed_upsell_screen.json", - "xbl_tab_content_panel": "ui/tabbed_upsell_screen.json", - "achievements_tab_content_panel": "ui/tabbed_upsell_screen.json", - "multiplayer_tab_content_panel": "ui/tabbed_upsell_screen.json", - "server_tab_content_panel": "ui/tabbed_upsell_screen.json", - "store_tab_content_panel": "ui/tabbed_upsell_screen.json", - "creative_tab_content_panel": "ui/tabbed_upsell_screen.json", - "packs_tab_content_panel": "ui/tabbed_upsell_screen.json", - "seeds_tab_content_panel": "ui/tabbed_upsell_screen.json", - "common_tab_screen_panel": "ui/tabbed_upsell_screen.json", - "common_tab_screen_panel/tab_navigation_panel": "ui/tabbed_upsell_screen.json", - "common_tab_screen_panel/padding_01": "ui/tabbed_upsell_screen.json", - "common_tab_screen_panel/tab_content_panel": "ui/tabbed_upsell_screen.json", - "tabbed_screen_panel": "ui/tabbed_upsell_screen.json", - "button_panel": "ui/tabbed_upsell_screen.json", - "button_panel/padding_5": "ui/tabbed_upsell_screen.json", - "button_panel/buy_now_button": "ui/tabbed_upsell_screen.json", - "button_panel/padding_6": "ui/tabbed_upsell_screen.json", - "tab_panel": "ui/tabbed_upsell_screen.json", - "tab_panel/padding_3": "ui/tabbed_upsell_screen.json", - "tab_panel/main_control": "ui/tabbed_upsell_screen.json", - "tab_panel/padding_4": "ui/tabbed_upsell_screen.json", - "tabbed_upsell_content": "ui/tabbed_upsell_screen.json", - "tabbed_upsell_content/padding_0": "ui/tabbed_upsell_screen.json", - "tabbed_upsell_content/tab_panel": "ui/tabbed_upsell_screen.json", - "tabbed_upsell_content/padding_1": "ui/tabbed_upsell_screen.json", - "tabbed_upsell_content/button_panel": "ui/tabbed_upsell_screen.json", - "tabbed_upsell_content/padding_2": "ui/tabbed_upsell_screen.json", - "tabbed_upsell_screen": "ui/tabbed_upsell_screen.json", - "tabbed_upsell_screen_panel": "ui/tabbed_upsell_screen.json", - "tabbed_upsell_screen_panel/tabbed_upsell_screen_content": "ui/tabbed_upsell_screen.json", - "tabbed_upsell_screen_panel/background": "ui/tabbed_upsell_screen.json", - }, - "thanks_for_testing": { - "padding_horizontal": "ui/thanks_for_testing_screen.json", - "padding_vertical": "ui/thanks_for_testing_screen.json", - "text_horizontal_padding": "ui/thanks_for_testing_screen.json", - "tabbed_upsell_buy_now_button": "ui/thanks_for_testing_screen.json", - "tabbed_buy_now_label": "ui/thanks_for_testing_screen.json", - "tabbed_buy_now_label/button_label": "ui/thanks_for_testing_screen.json", - "label_panel": "ui/thanks_for_testing_screen.json", - "label_panel/label_text": "ui/thanks_for_testing_screen.json", - "text_panel": "ui/thanks_for_testing_screen.json", - "text_panel/tab_content_title_panel": "ui/thanks_for_testing_screen.json", - "text_panel/tab_content_description_panel": "ui/thanks_for_testing_screen.json", - "text_panel/tab_content_description_panel_second": "ui/thanks_for_testing_screen.json", - "dialog_image": "ui/thanks_for_testing_screen.json", - "dialog_image_with_border": "ui/thanks_for_testing_screen.json", - "dialog_image_with_border/dialog_image": "ui/thanks_for_testing_screen.json", - "content_image_panel": "ui/thanks_for_testing_screen.json", - "content_image_panel/minecraft_dialog_image_with_border": "ui/thanks_for_testing_screen.json", - "content_image_panel/horizontal_padding_01": "ui/thanks_for_testing_screen.json", - "content_image_panel/scrolling_panel": "ui/thanks_for_testing_screen.json", - "scroll_text": "ui/thanks_for_testing_screen.json", - "image_panel": "ui/thanks_for_testing_screen.json", - "image_panel/dialog_image_with_border": "ui/thanks_for_testing_screen.json", - "image_panel/focus_image": "ui/thanks_for_testing_screen.json", - "top_tab": "ui/thanks_for_testing_screen.json", - "tab_navigation_panel_layout": "ui/thanks_for_testing_screen.json", - "tab_navigation_panel_layout/navigation_tabs": "ui/thanks_for_testing_screen.json", - "tab_navigation_panel_layout/navigation_tabs/content": "ui/thanks_for_testing_screen.json", - "common_tab_navigation_panel_layout": "ui/thanks_for_testing_screen.json", - "tabbed_tab_navigation_panel_layout": "ui/thanks_for_testing_screen.json", - "tabbed_tab_navigation_panel_layout/minecraft_navigation_tab": "ui/thanks_for_testing_screen.json", - "tabbed_tab_navigation_panel_layout/nav_padding_01": "ui/thanks_for_testing_screen.json", - "tabbed_tab_navigation_panel_layout/xbl_navigation_tab": "ui/thanks_for_testing_screen.json", - "tabbed_tab_navigation_panel_layout/nav_padding_02": "ui/thanks_for_testing_screen.json", - "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3": "ui/thanks_for_testing_screen.json", - "tabbed_tab_navigation_panel_layout/nav_padding_03": "ui/thanks_for_testing_screen.json", - "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4": "ui/thanks_for_testing_screen.json", - "tabbed_tab_navigation_panel_layout/nav_padding_04": "ui/thanks_for_testing_screen.json", - "tabbed_tab_navigation_panel_layout/server_navigation_tab": "ui/thanks_for_testing_screen.json", - "tabbed_tab_navigation_panel_layout/nav_padding_05": "ui/thanks_for_testing_screen.json", - "tabbed_tab_navigation_panel_layout/store_navigation_tab": "ui/thanks_for_testing_screen.json", - "tabbed_tab_navigation_panel_layout/nav_padding_06": "ui/thanks_for_testing_screen.json", - "tabbed_tab_navigation_panel_layout/creative_navigation_tab": "ui/thanks_for_testing_screen.json", - "tabbed_tab_navigation_panel_layout/nav_padding_07": "ui/thanks_for_testing_screen.json", - "tabbed_tab_navigation_panel_layout/packs_navigation_tab": "ui/thanks_for_testing_screen.json", - "tabbed_tab_navigation_panel_layout/nav_padding_08": "ui/thanks_for_testing_screen.json", - "tabbed_tab_navigation_panel_layout/seeds_navigation_tab": "ui/thanks_for_testing_screen.json", - "tabbed_tab_content_panel_layout": "ui/thanks_for_testing_screen.json", - "tabbed_tab_content_panel_layout/minecraft_tab_content": "ui/thanks_for_testing_screen.json", - "tabbed_tab_content_panel_layout/xbl_tab_content2": "ui/thanks_for_testing_screen.json", - "tabbed_tab_content_panel_layout/achievements_tab_content3": "ui/thanks_for_testing_screen.json", - "tabbed_tab_content_panel_layout/multiplayer_tab_content4": "ui/thanks_for_testing_screen.json", - "tabbed_tab_content_panel_layout/server_tab_content5": "ui/thanks_for_testing_screen.json", - "tabbed_tab_content_panel_layout/store_tab_content6": "ui/thanks_for_testing_screen.json", - "tabbed_tab_content_panel_layout/creative_tab_content7": "ui/thanks_for_testing_screen.json", - "tabbed_tab_content_panel_layout/packs_tab_content8": "ui/thanks_for_testing_screen.json", - "tabbed_tab_content_panel_layout/seeds_tab_content9": "ui/thanks_for_testing_screen.json", - "common_tab_content_panel": "ui/thanks_for_testing_screen.json", - "common_tab_content_panel/content": "ui/thanks_for_testing_screen.json", - "minecraft_tab_content_panel": "ui/thanks_for_testing_screen.json", - "xbl_tab_content_panel": "ui/thanks_for_testing_screen.json", - "achievements_tab_content_panel": "ui/thanks_for_testing_screen.json", - "multiplayer_tab_content_panel": "ui/thanks_for_testing_screen.json", - "server_tab_content_panel": "ui/thanks_for_testing_screen.json", - "store_tab_content_panel": "ui/thanks_for_testing_screen.json", - "creative_tab_content_panel": "ui/thanks_for_testing_screen.json", - "packs_tab_content_panel": "ui/thanks_for_testing_screen.json", - "seeds_tab_content_panel": "ui/thanks_for_testing_screen.json", - "common_tab_screen_panel": "ui/thanks_for_testing_screen.json", - "common_tab_screen_panel/tab_navigation_panel": "ui/thanks_for_testing_screen.json", - "common_tab_screen_panel/padding_01": "ui/thanks_for_testing_screen.json", - "common_tab_screen_panel/tab_content_panel": "ui/thanks_for_testing_screen.json", - "tabbed_screen_panel": "ui/thanks_for_testing_screen.json", - "button_panel": "ui/thanks_for_testing_screen.json", - "button_panel/padding_5": "ui/thanks_for_testing_screen.json", - "button_panel/buy_now_button": "ui/thanks_for_testing_screen.json", - "button_panel/padding_6": "ui/thanks_for_testing_screen.json", - "tab_panel": "ui/thanks_for_testing_screen.json", - "tab_panel/padding_3": "ui/thanks_for_testing_screen.json", - "tab_panel/main_control": "ui/thanks_for_testing_screen.json", - "tab_panel/padding_4": "ui/thanks_for_testing_screen.json", - "tabbed_upsell_content": "ui/thanks_for_testing_screen.json", - "tabbed_upsell_content/padding_0": "ui/thanks_for_testing_screen.json", - "tabbed_upsell_content/tab_panel": "ui/thanks_for_testing_screen.json", - "tabbed_upsell_content/padding_1": "ui/thanks_for_testing_screen.json", - "tabbed_upsell_content/button_panel": "ui/thanks_for_testing_screen.json", - "tabbed_upsell_content/padding_2": "ui/thanks_for_testing_screen.json", - "thanks_for_testing_screen": "ui/thanks_for_testing_screen.json", - "tabbed_upsell_screen_panel": "ui/thanks_for_testing_screen.json", - "tabbed_upsell_screen_panel/tabbed_upsell_screen_content": "ui/thanks_for_testing_screen.json", - "tabbed_upsell_screen_panel/background": "ui/thanks_for_testing_screen.json", - }, - "third_party_store": { - "third_party_store_screen": "ui/third_party_store_screen.json", - }, - "toast_screen": { - "toast_image": "ui/toast_screen.json", - "toast_icon": "ui/toast_screen.json", - "toast_icon/toast_icon": "ui/toast_screen.json", - "xbox_icon": "ui/toast_screen.json", - "third_party_invite_icon": "ui/toast_screen.json", - "third_party_achievement_icon": "ui/toast_screen.json", - "persona_icon": "ui/toast_screen.json", - "persona_icon/item": "ui/toast_screen.json", - "resource_pack_icon": "ui/toast_screen.json", - "resource_pack_icon/resource_pack_image": "ui/toast_screen.json", - "key_art_image": "ui/toast_screen.json", - "gamer_score_icon": "ui/toast_screen.json", - "toast_label": "ui/toast_screen.json", - "static_button_state_panel": "ui/toast_screen.json", - "static_button": "ui/toast_screen.json", - "static_button/default": "ui/toast_screen.json", - "static_button/hover": "ui/toast_screen.json", - "static_button/pressed": "ui/toast_screen.json", - "static_button/locked": "ui/toast_screen.json", - "popup": "ui/toast_screen.json", - "popup/background": "ui/toast_screen.json", - "popup/popup_content": "ui/toast_screen.json", - "popup/popup_content/icon_padding": "ui/toast_screen.json", - "popup/popup_content/text_padding": "ui/toast_screen.json", - "popup/popup_content/text_panel": "ui/toast_screen.json", - "popup/popup_content/text_panel/text_stack_panel": "ui/toast_screen.json", - "popup/popup_content/button_panel": "ui/toast_screen.json", - "popup/popup_content/button_panel/visual_button": "ui/toast_screen.json", - "item_renderer": "ui/toast_screen.json", - "game_tip_label": "ui/toast_screen.json", - "toast_progress_bar": "ui/toast_screen.json", - "toast_progress_bar/toast_duration_progress_bar": "ui/toast_screen.json", - "recipe_unlocked_icon": "ui/toast_screen.json", - "recipe_unlocked_icon/padding_vertical": "ui/toast_screen.json", - "recipe_unlocked_icon/item_renderer": "ui/toast_screen.json", - "recipe_unlocked_popup": "ui/toast_screen.json", - "recipe_unlocked_popup/input_panel": "ui/toast_screen.json", - "recipe_unlocked_popup/input_panel/label_panel": "ui/toast_screen.json", - "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_1": "ui/toast_screen.json", - "recipe_unlocked_popup/input_panel/label_panel/recipe_unlocked_icon": "ui/toast_screen.json", - "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_2": "ui/toast_screen.json", - "recipe_unlocked_popup/input_panel/label_panel/label_panel": "ui/toast_screen.json", - "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_1": "ui/toast_screen.json", - "recipe_unlocked_popup/input_panel/label_panel/label_panel/label": "ui/toast_screen.json", - "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_2": "ui/toast_screen.json", - "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_3": "ui/toast_screen.json", - "recipe_unlocked_pocket_popup": "ui/toast_screen.json", - "recipe_unlocked_pocket_popup/input_panel": "ui/toast_screen.json", - "recipe_unlocked_pocket_popup/input_panel/label_panel": "ui/toast_screen.json", - "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_1": "ui/toast_screen.json", - "recipe_unlocked_pocket_popup/input_panel/label_panel/recipe_unlocked_icon": "ui/toast_screen.json", - "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_2": "ui/toast_screen.json", - "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel": "ui/toast_screen.json", - "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical": "ui/toast_screen.json", - "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/label": "ui/toast_screen.json", - "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical_1": "ui/toast_screen.json", - "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_3": "ui/toast_screen.json", - "text_stack_panel": "ui/toast_screen.json", - "text_stack_panel/title": "ui/toast_screen.json", - "text_stack_panel/subtitle": "ui/toast_screen.json", - "text_stack_panel/subtitle/icon_padding": "ui/toast_screen.json", - "text_stack_panel/subtitle/icon_padding/gamer_score_icon": "ui/toast_screen.json", - "text_stack_panel/subtitle/subtext_offset": "ui/toast_screen.json", - "text_stack_panel/subtitle/subtext_offset/subtext": "ui/toast_screen.json", - "join_button_icon": "ui/toast_screen.json", - "chat_popup": "ui/toast_screen.json", - "splitscreen_join_popup": "ui/toast_screen.json", - "splitscreen_join_popup/join_button_icon": "ui/toast_screen.json", - "splitscreen_join_popup/join_prompt_text_panel": "ui/toast_screen.json", - "splitscreen_join_popup/join_prompt_text_panel/join_prompt_text": "ui/toast_screen.json", - "formfitting_alpha_toast": "ui/toast_screen.json", - "formfitting_alpha_toast/bg": "ui/toast_screen.json", - "formfitting_alpha_toast/bg/label": "ui/toast_screen.json", - "snackbar": "ui/toast_screen.json", - "snackbar/body": "ui/toast_screen.json", - "snackbar/body/background": "ui/toast_screen.json", - "snackbar/body/background/content": "ui/toast_screen.json", - "snackbar/body/background/content/left_padding": "ui/toast_screen.json", - "snackbar/body/background/content/vertically_central_text": "ui/toast_screen.json", - "snackbar/body/background/content/vertically_central_text/top_padding": "ui/toast_screen.json", - "snackbar/body/background/content/vertically_central_text/text": "ui/toast_screen.json", - "snackbar/body/background/content/right_padding": "ui/toast_screen.json", - "snackbar/body/background/right_shadow": "ui/toast_screen.json", - "progress_button_content": "ui/toast_screen.json", - "progress_button_content/gamepad_icon_glyph": "ui/toast_screen.json", - "progress_button_content/spacer": "ui/toast_screen.json", - "progress_button_content/progress_button_label": "ui/toast_screen.json", - "progress_popup": "ui/toast_screen.json", - "progress_popup/background": "ui/toast_screen.json", - "progress_popup/popup_content": "ui/toast_screen.json", - "progress_popup/popup_content/progress_toast_image": "ui/toast_screen.json", - "progress_popup/popup_content/profilepicture": "ui/toast_screen.json", - "progress_popup/popup_content/text_padding": "ui/toast_screen.json", - "progress_popup/popup_content/progress_content_vertical_panel": "ui/toast_screen.json", - "progress_popup/popup_content/progress_content_vertical_panel/title_text_label": "ui/toast_screen.json", - "progress_popup/popup_content/progress_content_vertical_panel/subtext": "ui/toast_screen.json", - "progress_popup/popup_content/progress_content_vertical_panel/stacked_progress_bar": "ui/toast_screen.json", - "progress_popup/popup_content/progress_content_vertical_panel/end_progress_padding": "ui/toast_screen.json", - "progress_popup/popup_content/divider_padding": "ui/toast_screen.json", - "progress_popup/popup_content/divider_image": "ui/toast_screen.json", - "progress_popup/popup_content/popup_decline_button": "ui/toast_screen.json", - "progress_popup/popup_content/end_padding": "ui/toast_screen.json", - "party_invite_popup": "ui/toast_screen.json", - "party_invite_popup/background": "ui/toast_screen.json", - "party_invite_popup/party_invite_content": "ui/toast_screen.json", - "party_invite_popup/party_invite_content/profilepicture": "ui/toast_screen.json", - "party_invite_popup/party_invite_content/text_padding": "ui/toast_screen.json", - "party_invite_popup/party_invite_content/party_invite_content_vertical_panel": "ui/toast_screen.json", - "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/title_text_label": "ui/toast_screen.json", - "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/subtext": "ui/toast_screen.json", - "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/end_padding": "ui/toast_screen.json", - "party_invite_popup/party_invite_content/divider_padding": "ui/toast_screen.json", - "party_invite_popup/party_invite_content/divider_image": "ui/toast_screen.json", - "party_invite_popup/party_invite_content/party_invite_button": "ui/toast_screen.json", - "party_invite_popup/party_invite_content/end_padding": "ui/toast_screen.json", - "party_travel_popup": "ui/toast_screen.json", - "toast_screen": "ui/toast_screen.json", - "toast_screen_content": "ui/toast_screen.json", - "toast_screen_content/content_log_panel": "ui/toast_screen.json", - "toast_screen_content/perf_turtle_panel": "ui/toast_screen.json", - }, - "token_faq": { - "main_panel": "ui/token_faq_screen.json", - "main_panel/faq_question_1": "ui/token_faq_screen.json", - "main_panel/faq_question_1_divider": "ui/token_faq_screen.json", - "main_panel/faq_question_2": "ui/token_faq_screen.json", - "main_panel/faq_question_2_divider": "ui/token_faq_screen.json", - "main_panel/faq_question_3": "ui/token_faq_screen.json", - "main_panel/faq_question_3_divider": "ui/token_faq_screen.json", - "main_panel/faq_question_4": "ui/token_faq_screen.json", - "main_panel/faq_question_4_divider": "ui/token_faq_screen.json", - "main_panel/faq_question_5": "ui/token_faq_screen.json", - "scrolling_panel": "ui/token_faq_screen.json", - "token_faq_screen_content": "ui/token_faq_screen.json", - "token_faq_screen_content/dialog": "ui/token_faq_screen.json", - "background": "ui/token_faq_screen.json", - "token_faq_screen": "ui/token_faq_screen.json", - "token_content_panel": "ui/token_faq_screen.json", - "token_content_panel/token_info_text": "ui/token_faq_screen.json", - "token_popup_content": "ui/token_faq_screen.json", - "token_popup_content/dialog": "ui/token_faq_screen.json", - "token_faq_button_panel": "ui/token_faq_screen.json", - "back_button_panel": "ui/token_faq_screen.json", - "token_popup": "ui/token_faq_screen.json", - }, - "trade": { - "cycle_recipe_button": "ui/trade_screen.json", - "cycle_recipe_left_button": "ui/trade_screen.json", - "cycle_recipe_right_button": "ui/trade_screen.json", - "arrow_image": "ui/trade_screen.json", - "cross_out_icon": "ui/trade_screen.json", - "highlight_slot_panel": "ui/trade_screen.json", - "highlight_slot_panel/hover_text": "ui/trade_screen.json", - "recipe_button": "ui/trade_screen.json", - "recipe_button/hover": "ui/trade_screen.json", - "recipe_item_panel": "ui/trade_screen.json", - "recipe_item_panel/item_renderer": "ui/trade_screen.json", - "recipe_item_panel/item_renderer/stack_count_label": "ui/trade_screen.json", - "recipe_item_panel/recipe_button": "ui/trade_screen.json", - "trade_item_slot": "ui/trade_screen.json", - "trade_item_slot/container_item": "ui/trade_screen.json", - "trade_item_slotB": "ui/trade_screen.json", - "trade_item_slot_result_button": "ui/trade_screen.json", - "trade_item_slot_result": "ui/trade_screen.json", - "arrow": "ui/trade_screen.json", - "arrow/arrow_image": "ui/trade_screen.json", - "arrow/cross_out_icon": "ui/trade_screen.json", - "arrow/recipe_button": "ui/trade_screen.json", - "purchase_grid_item": "ui/trade_screen.json", - "purchase_grid_item/top_item": "ui/trade_screen.json", - "purchase_grid_item/padding": "ui/trade_screen.json", - "purchase_grid_item/bottom_item": "ui/trade_screen.json", - "purchase_grid": "ui/trade_screen.json", - "purchase_grid/grid_slot1": "ui/trade_screen.json", - "purchase_grid/grid_slot2": "ui/trade_screen.json", - "purchase_grid/arrow": "ui/trade_screen.json", - "purchase_grid/result_item_slot": "ui/trade_screen.json", - "greyed_item_panel": "ui/trade_screen.json", - "greyed_item_panel/item_renderer": "ui/trade_screen.json", - "cycle_panel_keyboard": "ui/trade_screen.json", - "cycle_panel_keyboard/left": "ui/trade_screen.json", - "cycle_panel_keyboard/right": "ui/trade_screen.json", - "cycle_panel_gamepad": "ui/trade_screen.json", - "cycle_panel_gamepad/left": "ui/trade_screen.json", - "cycle_panel_gamepad/right": "ui/trade_screen.json", - "cycle_panel": "ui/trade_screen.json", - "cycle_panel/keyboard": "ui/trade_screen.json", - "cycle_panel/gamepad": "ui/trade_screen.json", - "merchant_purchase_panel": "ui/trade_screen.json", - "merchant_purchase_panel/purchase_grid": "ui/trade_screen.json", - "top_half_panel": "ui/trade_screen.json", - "top_half_panel/villager_name_label": "ui/trade_screen.json", - "top_half_panel/cycle_panel": "ui/trade_screen.json", - "top_half_panel/merchant_purchase_panel": "ui/trade_screen.json", - "trade_panel": "ui/trade_screen.json", - "trade_panel/gamepad_helpers": "ui/trade_screen.json", - "trade_panel/selected_item_details_factory": "ui/trade_screen.json", - "trade_panel/item_lock_notification_factory": "ui/trade_screen.json", - "trade_panel/root_panel": "ui/trade_screen.json", - "trade_panel/root_panel/common_panel": "ui/trade_screen.json", - "trade_panel/root_panel/trade_inventory": "ui/trade_screen.json", - "trade_panel/root_panel/trade_inventory/top_half_panel": "ui/trade_screen.json", - "trade_panel/root_panel/trade_inventory/inventory_panel_bottom_half_with_label": "ui/trade_screen.json", - "trade_panel/root_panel/trade_inventory/hotbar_grid_template": "ui/trade_screen.json", - "trade_panel/root_panel/trade_inventory/inventory_selected_icon_button": "ui/trade_screen.json", - "trade_panel/root_panel/trade_inventory/gamepad_cursor": "ui/trade_screen.json", - "trade_panel/flying_item_renderer": "ui/trade_screen.json", - "trade_screen": "ui/trade_screen.json", - }, - "trade_pocket": { - "background_image": "ui/trade_screen_pocket.json", - "recipe_item_panel": "ui/trade_screen_pocket.json", - "recipe_item_panel/item_renderer": "ui/trade_screen_pocket.json", - "recipe_item_panel/item_renderer/stack_count_label": "ui/trade_screen_pocket.json", - "result_item_panel": "ui/trade_screen_pocket.json", - "result_item_panel/output_item_name": "ui/trade_screen_pocket.json", - "result_item_panel/recipe_item_panel": "ui/trade_screen_pocket.json", - "trade_item_slot": "ui/trade_screen_pocket.json", - "trade_item_slot/container_item": "ui/trade_screen_pocket.json", - "trade_item_slotB": "ui/trade_screen_pocket.json", - "trade_item_slot_result_button": "ui/trade_screen_pocket.json", - "trade_item_slot_result": "ui/trade_screen_pocket.json", - "purchase_grid": "ui/trade_screen_pocket.json", - "purchase_grid/grid_slot1": "ui/trade_screen_pocket.json", - "purchase_grid/grid_slot2": "ui/trade_screen_pocket.json", - "purchase_grid/arrow": "ui/trade_screen_pocket.json", - "purchase_grid/result_item_slot": "ui/trade_screen_pocket.json", - "merchant_purchase_panel": "ui/trade_screen_pocket.json", - "merchant_purchase_panel/left": "ui/trade_screen_pocket.json", - "merchant_purchase_panel/purchase_grid": "ui/trade_screen_pocket.json", - "merchant_purchase_panel/right": "ui/trade_screen_pocket.json", - "merchant_panel": "ui/trade_screen_pocket.json", - "merchant_panel/merchant_purchase_panel": "ui/trade_screen_pocket.json", - "inventory_grid": "ui/trade_screen_pocket.json", - "inventory_content": "ui/trade_screen_pocket.json", - "inventory_content/scrolling_panel": "ui/trade_screen_pocket.json", - "half_screen": "ui/trade_screen_pocket.json", - "inventory_half_screen": "ui/trade_screen_pocket.json", - "inventory_half_screen/inventory_content": "ui/trade_screen_pocket.json", - "merchant_half_screen": "ui/trade_screen_pocket.json", - "merchant_half_screen/merchant_panel": "ui/trade_screen_pocket.json", - "header": "ui/trade_screen_pocket.json", - "header/header_background": "ui/trade_screen_pocket.json", - "header/close_button": "ui/trade_screen_pocket.json", - "header/villager_name_label": "ui/trade_screen_pocket.json", - "trade_panel": "ui/trade_screen_pocket.json", - "trade_panel/bg": "ui/trade_screen_pocket.json", - "trade_panel/root_panel": "ui/trade_screen_pocket.json", - "trade_panel/header": "ui/trade_screen_pocket.json", - "trade_panel/inventory": "ui/trade_screen_pocket.json", - "trade_panel/merchant_half_screen": "ui/trade_screen_pocket.json", - "trade_panel/gamepad_helpers": "ui/trade_screen_pocket.json", - "trade_panel/container_gamepad_helpers": "ui/trade_screen_pocket.json", - "trade_panel/inventory_selected_icon_button": "ui/trade_screen_pocket.json", - "trade_panel/selected_item_details_factory": "ui/trade_screen_pocket.json", - "trade_panel/item_lock_notification_factory": "ui/trade_screen_pocket.json", - "trade_panel/flying_item_renderer": "ui/trade_screen_pocket.json", - }, - "trade2": { - "toolbar_background": "ui/trade_2_screen.json", - "arrow_left_image": "ui/trade_2_screen.json", - "arrow_right_image": "ui/trade_2_screen.json", - "trade_cell_image": "ui/trade_2_screen.json", - "cross_out_image": "ui/trade_2_screen.json", - "lock_image": "ui/trade_2_screen.json", - "scroll_background_image": "ui/trade_2_screen.json", - "red_slash": "ui/trade_2_screen.json", - "blue_progress_bar": "ui/trade_2_screen.json", - "white_progress_bar": "ui/trade_2_screen.json", - "empty_progress_bar": "ui/trade_2_screen.json", - "progress_bar_nub": "ui/trade_2_screen.json", - "hover_button": "ui/trade_2_screen.json", - "hover_button/hover_text": "ui/trade_2_screen.json", - "stack_count_label": "ui/trade_2_screen.json", - "changed_item_count_label": "ui/trade_2_screen.json", - "changed_item_count_label/stack_count_label": "ui/trade_2_screen.json", - "changed_item_count_label/stack_count_label/red_slash": "ui/trade_2_screen.json", - "changed_item_count_label/stack_count_label/red_slash_double": "ui/trade_2_screen.json", - "changed_item_count_label/padding": "ui/trade_2_screen.json", - "changed_item_count_label/second_stack_count_label": "ui/trade_2_screen.json", - "single_item_grid": "ui/trade_2_screen.json", - "single_item_grid/item_with_count": "ui/trade_2_screen.json", - "single_item_grid/item_with_count/item_renderer": "ui/trade_2_screen.json", - "single_item_grid/item_with_count/item_renderer/stack_count_label": "ui/trade_2_screen.json", - "single_item_grid/item_with_count/item_renderer/changed_item_count_label": "ui/trade_2_screen.json", - "single_item_grid/item_with_count/item_renderer/hover_button": "ui/trade_2_screen.json", - "trade_item_1": "ui/trade_2_screen.json", - "trade_item_2": "ui/trade_2_screen.json", - "sell_item": "ui/trade_2_screen.json", - "arrow_holder": "ui/trade_2_screen.json", - "arrow_holder/arrow_image": "ui/trade_2_screen.json", - "arrow_holder/cross_out_image": "ui/trade_2_screen.json", - "arrow_holder/lock_image": "ui/trade_2_screen.json", - "toggle_content": "ui/trade_2_screen.json", - "toggle_content/padding_1": "ui/trade_2_screen.json", - "toggle_content/trade_item_1": "ui/trade_2_screen.json", - "toggle_content/padding_2": "ui/trade_2_screen.json", - "toggle_content/padding_2_extra": "ui/trade_2_screen.json", - "toggle_content/trade_item_2": "ui/trade_2_screen.json", - "toggle_content/padding_3": "ui/trade_2_screen.json", - "toggle_content/padding_3_extra": "ui/trade_2_screen.json", - "toggle_content/arrow_holder": "ui/trade_2_screen.json", - "toggle_content/padding_4": "ui/trade_2_screen.json", - "toggle_content/sell_item_holder": "ui/trade_2_screen.json", - "toggle_content/sell_item_holder/sell_item": "ui/trade_2_screen.json", - "toggle_content/sell_item_holder_with_less_padding": "ui/trade_2_screen.json", - "toggle_content/sell_item_holder_with_less_padding/sell_item": "ui/trade_2_screen.json", - "toggle_content/padding_5": "ui/trade_2_screen.json", - "toggle_content_holder": "ui/trade_2_screen.json", - "toggle_content_holder/toggle_content": "ui/trade_2_screen.json", - "trade_toggle_unchecked": "ui/trade_2_screen.json", - "trade_toggle_unchecked/toggle_checked_normal": "ui/trade_2_screen.json", - "trade_toggle_unchecked/toggle_checked_red": "ui/trade_2_screen.json", - "trade_toggle_checked": "ui/trade_2_screen.json", - "trade_toggle_checked/toggle_checked_normal": "ui/trade_2_screen.json", - "trade_toggle_checked/toggle_checked_red": "ui/trade_2_screen.json", - "trade_toggle_locked": "ui/trade_2_screen.json", - "trade_actual_toggle": "ui/trade_2_screen.json", - "trade_toggle": "ui/trade_2_screen.json", - "trade_toggle_holder": "ui/trade_2_screen.json", - "trade_toggle_holder/trade_toggle": "ui/trade_2_screen.json", - "trade_toggle_stack_panel": "ui/trade_2_screen.json", - "tier_label": "ui/trade_2_screen.json", - "tier_label_locked": "ui/trade_2_screen.json", - "tier_stack_panel": "ui/trade_2_screen.json", - "tier_stack_panel/padding": "ui/trade_2_screen.json", - "tier_stack_panel/tier_label_holder": "ui/trade_2_screen.json", - "tier_stack_panel/tier_label_holder/tier_label": "ui/trade_2_screen.json", - "tier_stack_panel/tier_label_holder/tier_label_locked": "ui/trade_2_screen.json", - "tier_stack_panel/trade_toggle_stack_panel": "ui/trade_2_screen.json", - "trade_selector_stack_panel": "ui/trade_2_screen.json", - "scroll_inner_input_panel": "ui/trade_2_screen.json", - "scroll_inner_input_panel/trade_selector_stack_panel": "ui/trade_2_screen.json", - "trade_scroll_panel": "ui/trade_2_screen.json", - "left_panel": "ui/trade_2_screen.json", - "left_panel/bg": "ui/trade_2_screen.json", - "left_panel/trade_scroll_panel": "ui/trade_2_screen.json", - "exp_progress_bar": "ui/trade_2_screen.json", - "exp_progress_bar/empty_progress_bar": "ui/trade_2_screen.json", - "exp_progress_bar/empty_progress_bar/progress_bar_nub": "ui/trade_2_screen.json", - "exp_progress_bar/empty_progress_bar/blue_progress_bar": "ui/trade_2_screen.json", - "exp_progress_bar/empty_progress_bar/white_progress_bar": "ui/trade_2_screen.json", - "trade_details": "ui/trade_2_screen.json", - "trade_details/item_panel_image": "ui/trade_2_screen.json", - "trade_details/item_panel_image/item_text_label": "ui/trade_2_screen.json", - "trade_details_factory": "ui/trade_2_screen.json", - "trade_details_factory_holder": "ui/trade_2_screen.json", - "trade_details_button": "ui/trade_2_screen.json", - "trade_details_1_button": "ui/trade_2_screen.json", - "trade_details_2_button": "ui/trade_2_screen.json", - "enchantment_details_button": "ui/trade_2_screen.json", - "trade_result_item_slot_button": "ui/trade_2_screen.json", - "red_cell_image": "ui/trade_2_screen.json", - "container_cell_image": "ui/trade_2_screen.json", - "container_cell_image/cell_image": "ui/trade_2_screen.json", - "container_cell_image/red_cell_image": "ui/trade_2_screen.json", - "item_slot": "ui/trade_2_screen.json", - "ingredient_1_item_slot": "ui/trade_2_screen.json", - "ingredient_2_item_slot": "ui/trade_2_screen.json", - "result_item_slot": "ui/trade_2_screen.json", - "item_slot_holder": "ui/trade_2_screen.json", - "item_slot_holder/ingredient_1_item_slot": "ui/trade_2_screen.json", - "item_slot_holder/trade_details_1_button": "ui/trade_2_screen.json", - "item_slot_holder/trade_details_1_factory_holder": "ui/trade_2_screen.json", - "item_slots_stack_panel": "ui/trade_2_screen.json", - "item_slots_stack_panel/ingredient_item_1_holder": "ui/trade_2_screen.json", - "item_slots_stack_panel/ingredient_item_2_holder": "ui/trade_2_screen.json", - "item_slots_stack_panel/pointing_right_arrow_holder": "ui/trade_2_screen.json", - "item_slots_stack_panel/pointing_right_arrow_holder/arrow_right_image": "ui/trade_2_screen.json", - "item_slots_stack_panel/pointing_left_arrow_holder": "ui/trade_2_screen.json", - "item_slots_stack_panel/pointing_left_arrow_holder/arrow_left_image": "ui/trade_2_screen.json", - "item_slots_stack_panel/result_item_slot_holder": "ui/trade_2_screen.json", - "trade_button": "ui/trade_2_screen.json", - "how_to_play_button": "ui/trade_2_screen.json", - "top_half_stack_panel": "ui/trade_2_screen.json", - "top_half_stack_panel/item_slots_holder": "ui/trade_2_screen.json", - "top_half_stack_panel/item_slots_holder/item_slots_stack_panel": "ui/trade_2_screen.json", - "top_half_stack_panel/padding_1": "ui/trade_2_screen.json", - "top_half_stack_panel/trade_button_holder": "ui/trade_2_screen.json", - "top_half_stack_panel/trade_button_holder/trade_button": "ui/trade_2_screen.json", - "top_half_stack_panel/how_to_play_button_holder": "ui/trade_2_screen.json", - "top_half_stack_panel/how_to_play_button_holder/how_to_play_button": "ui/trade_2_screen.json", - "top_half_panel": "ui/trade_2_screen.json", - "top_half_panel/top_half_stack_panel": "ui/trade_2_screen.json", - "villager_name_label": "ui/trade_2_screen.json", - "right_panel": "ui/trade_2_screen.json", - "right_panel/common_panel": "ui/trade_2_screen.json", - "right_panel/trade_screen_inventory": "ui/trade_2_screen.json", - "right_panel/trade_screen_inventory/villager_name_label": "ui/trade_2_screen.json", - "right_panel/trade_screen_inventory/exp_progress_bar": "ui/trade_2_screen.json", - "right_panel/trade_screen_inventory/top_half_panel": "ui/trade_2_screen.json", - "right_panel/trade_screen_inventory/inventory_panel_bottom_half_with_label": "ui/trade_2_screen.json", - "right_panel/trade_screen_inventory/hotbar_grid": "ui/trade_2_screen.json", - "toolbar_panel": "ui/trade_2_screen.json", - "toolbar_panel/toolbar_background": "ui/trade_2_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel": "ui/trade_2_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": "ui/trade_2_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": "ui/trade_2_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": "ui/trade_2_screen.json", - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": "ui/trade_2_screen.json", - "toolbar_anchor": "ui/trade_2_screen.json", - "toolbar_anchor/toolbar_panel": "ui/trade_2_screen.json", - "center_fold": "ui/trade_2_screen.json", - "center_fold/center_bg": "ui/trade_2_screen.json", - "screen_stack_panel": "ui/trade_2_screen.json", - "screen_stack_panel/left_panel": "ui/trade_2_screen.json", - "screen_stack_panel/center_fold": "ui/trade_2_screen.json", - "screen_stack_panel/right_panel": "ui/trade_2_screen.json", - "screen_stack_panel/toolbar_anchor": "ui/trade_2_screen.json", - "gamepad_helper_x": "ui/trade_2_screen.json", - "gamepad_helper_y": "ui/trade_2_screen.json", - "screen_panel": "ui/trade_2_screen.json", - "screen_panel/screen_stack_panel": "ui/trade_2_screen.json", - "screen_panel/container_gamepad_helpers": "ui/trade_2_screen.json", - "screen_panel/selected_item_details_factory": "ui/trade_2_screen.json", - "screen_panel/item_lock_notification_factory": "ui/trade_2_screen.json", - "screen_panel/inventory_selected_icon_button": "ui/trade_2_screen.json", - "screen_panel/inventory_take_progress_icon_button": "ui/trade_2_screen.json", - "screen_panel/flying_item_renderer": "ui/trade_2_screen.json", - "trade_screen": "ui/trade_2_screen.json", - }, - "trade2_pocket": { - "chest_item_renderer": "ui/trade_2_screen_pocket.json", - "trade_icon": "ui/trade_2_screen_pocket.json", - "arrow_right_image": "ui/trade_2_screen_pocket.json", - "right_navigation_tabs": "ui/trade_2_screen_pocket.json", - "right_navigation_tabs/pocket_tab_close_button": "ui/trade_2_screen_pocket.json", - "right_navigation_tabs/fill": "ui/trade_2_screen_pocket.json", - "trade_slots_panel": "ui/trade_2_screen_pocket.json", - "trade_slots_panel/item_slots_stack_panel": "ui/trade_2_screen_pocket.json", - "trade_and_help_buttons": "ui/trade_2_screen_pocket.json", - "trade_and_help_buttons/trade_button_holder": "ui/trade_2_screen_pocket.json", - "trade_and_help_buttons/trade_button_holder/trade_button": "ui/trade_2_screen_pocket.json", - "trade_and_help_buttons/how_to_play_button_holder": "ui/trade_2_screen_pocket.json", - "trade_and_help_buttons/how_to_play_button_holder/how_to_play_button": "ui/trade_2_screen_pocket.json", - "name_and_trade_slots_stack_panel": "ui/trade_2_screen_pocket.json", - "name_and_trade_slots_stack_panel/padding_1": "ui/trade_2_screen_pocket.json", - "name_and_trade_slots_stack_panel/villager_name_label_holder": "ui/trade_2_screen_pocket.json", - "name_and_trade_slots_stack_panel/villager_name_label_holder/villager_name_label": "ui/trade_2_screen_pocket.json", - "name_and_trade_slots_stack_panel/padding_2": "ui/trade_2_screen_pocket.json", - "name_and_trade_slots_stack_panel/exp_progress_bar_holder": "ui/trade_2_screen_pocket.json", - "name_and_trade_slots_stack_panel/exp_progress_bar_holder/exp_progress_bar": "ui/trade_2_screen_pocket.json", - "name_and_trade_slots_stack_panel/padding_3": "ui/trade_2_screen_pocket.json", - "name_and_trade_slots_stack_panel/trade_slots_panel": "ui/trade_2_screen_pocket.json", - "name_and_trade_slots_stack_panel/padding_4": "ui/trade_2_screen_pocket.json", - "name_and_trade_slots_stack_panel/trade_and_help_buttons": "ui/trade_2_screen_pocket.json", - "right_panel": "ui/trade_2_screen_pocket.json", - "right_panel/content": "ui/trade_2_screen_pocket.json", - "right_panel/content/bg": "ui/trade_2_screen_pocket.json", - "right_panel/content/name_and_trade_slots_stack_panel": "ui/trade_2_screen_pocket.json", - "right_panel/navigation_tabs_holder": "ui/trade_2_screen_pocket.json", - "right_panel/navigation_tabs_holder/right_navigation_tabs": "ui/trade_2_screen_pocket.json", - "left_tab_trade": "ui/trade_2_screen_pocket.json", - "left_tab_inventory": "ui/trade_2_screen_pocket.json", - "left_navigation_tabs": "ui/trade_2_screen_pocket.json", - "left_navigation_tabs/left_tab_trades": "ui/trade_2_screen_pocket.json", - "left_navigation_tabs/padding": "ui/trade_2_screen_pocket.json", - "left_navigation_tabs/left_tab_inventory": "ui/trade_2_screen_pocket.json", - "arrow_holder": "ui/trade_2_screen_pocket.json", - "arrow_holder/arrow_image": "ui/trade_2_screen_pocket.json", - "arrow_holder/cross_out_image": "ui/trade_2_screen_pocket.json", - "arrow_holder/lock_image": "ui/trade_2_screen_pocket.json", - "inventory_scroll_panel": "ui/trade_2_screen_pocket.json", - "toggle_content": "ui/trade_2_screen_pocket.json", - "toggle_content/padding_1": "ui/trade_2_screen_pocket.json", - "toggle_content/trade_item_holder": "ui/trade_2_screen_pocket.json", - "toggle_content/trade_item_holder/padding_left": "ui/trade_2_screen_pocket.json", - "toggle_content/trade_item_holder/trade_item_1": "ui/trade_2_screen_pocket.json", - "toggle_content/trade_item_holder/padding_middle": "ui/trade_2_screen_pocket.json", - "toggle_content/trade_item_holder/trade_item_2": "ui/trade_2_screen_pocket.json", - "toggle_content/trade_item_holder/padding_right": "ui/trade_2_screen_pocket.json", - "toggle_content/padding_2": "ui/trade_2_screen_pocket.json", - "toggle_content/arrow_holder": "ui/trade_2_screen_pocket.json", - "toggle_content/padding_3": "ui/trade_2_screen_pocket.json", - "toggle_content/sell_item_holder": "ui/trade_2_screen_pocket.json", - "toggle_content/sell_item_holder/sell_item": "ui/trade_2_screen_pocket.json", - "toggle_content/padding_4": "ui/trade_2_screen_pocket.json", - "left_panel": "ui/trade_2_screen_pocket.json", - "left_panel/gamepad_helpers_and_tabs_holder": "ui/trade_2_screen_pocket.json", - "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": "ui/trade_2_screen_pocket.json", - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": "ui/trade_2_screen_pocket.json", - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": "ui/trade_2_screen_pocket.json", - "left_panel/content": "ui/trade_2_screen_pocket.json", - "left_panel/content/bg": "ui/trade_2_screen_pocket.json", - "left_panel/content/inventory_scroll_panel": "ui/trade_2_screen_pocket.json", - "left_panel/content/trade_scroll_panel": "ui/trade_2_screen_pocket.json", - "pocket_hotbar_and_content_panels": "ui/trade_2_screen_pocket.json", - "screen_panel": "ui/trade_2_screen_pocket.json", - "screen_panel/pocket_hotbar_and_content_panels": "ui/trade_2_screen_pocket.json", - "screen_panel/container_gamepad_helpers": "ui/trade_2_screen_pocket.json", - "screen_panel/selected_item_details_factory": "ui/trade_2_screen_pocket.json", - "screen_panel/item_lock_notification_factory": "ui/trade_2_screen_pocket.json", - "screen_panel/inventory_selected_icon_button": "ui/trade_2_screen_pocket.json", - "screen_panel/inventory_take_progress_icon_button": "ui/trade_2_screen_pocket.json", - "screen_panel/flying_item_renderer": "ui/trade_2_screen_pocket.json", - }, - "trialUpsell": { - "normal_stroke_button": "ui/trial_upsell_screen.json", - "normal_description_label": "ui/trial_upsell_screen.json", - "trialTime": "ui/trial_upsell_screen.json", - "trial_label": "ui/trial_upsell_screen.json", - "trial_description_panel": "ui/trial_upsell_screen.json", - "trial_description_panel/description_text": "ui/trial_upsell_screen.json", - "trial_expired_description_panel": "ui/trial_upsell_screen.json", - "trial_expired_description_panel/vertical_padding_0": "ui/trial_upsell_screen.json", - "trial_expired_description_panel/line1": "ui/trial_upsell_screen.json", - "trial_expired_description_panel/vertical_padding_1": "ui/trial_upsell_screen.json", - "trial_expired_description_panel/line2": "ui/trial_upsell_screen.json", - "trial_expired_description_panel/line3": "ui/trial_upsell_screen.json", - "trial_expired_description_panel/line4": "ui/trial_upsell_screen.json", - "trial_expired_description_panel/line5": "ui/trial_upsell_screen.json", - "continue_button": "ui/trial_upsell_screen.json", - "buy_button": "ui/trial_upsell_screen.json", - "root_panel": "ui/trial_upsell_screen.json", - "trial_upsell_screen_dialog": "ui/trial_upsell_screen.json", - "trial_upsell_expired_screen_dialog": "ui/trial_upsell_screen.json", - "button_content_panel": "ui/trial_upsell_screen.json", - "button_content_panel/buy": "ui/trial_upsell_screen.json", - "button_content_panel/continue": "ui/trial_upsell_screen.json", - "trial_upsell_screen": "ui/trial_upsell_screen.json", - "trial_upsell_screen_content": "ui/trial_upsell_screen.json", - "trial_upsell_screen_content/trialTime": "ui/trial_upsell_screen.json", - "trial_upsell_screen_content/root_panel": "ui/trial_upsell_screen.json", - "trial_upsell_screen_content/root_panel/trial_upsell_screen_dialog": "ui/trial_upsell_screen.json", - "trial_upsell_expired_screen": "ui/trial_upsell_screen.json", - "trial_upsell_expired_screen_content": "ui/trial_upsell_screen.json", - "trial_upsell_expired_screen_content/trialTime": "ui/trial_upsell_screen.json", - "trial_upsell_expired_screen_content/root_panel": "ui/trial_upsell_screen.json", - "trial_upsell_expired_screen_content/root_panel/trial_upsell_expired_screen_dialog": "ui/trial_upsell_screen.json", - "content_description_panel": "ui/trial_upsell_screen.json", - "content_description_panel/scrolling_panel": "ui/trial_upsell_screen.json", - }, - "ugc_viewer": { - "padding": "ui/ugc_viewer_screen.json", - "world_label": "ui/ugc_viewer_screen.json", - "world_image": "ui/ugc_viewer_screen.json", - "button_content": "ui/ugc_viewer_screen.json", - "button_content/stack_panel": "ui/ugc_viewer_screen.json", - "button_content/stack_panel/world_label": "ui/ugc_viewer_screen.json", - "button_content/stack_panel/world_panel": "ui/ugc_viewer_screen.json", - "button_content/stack_panel/world_panel/background": "ui/ugc_viewer_screen.json", - "button_content/stack_panel/world_panel/background/world_image": "ui/ugc_viewer_screen.json", - "grid_item": "ui/ugc_viewer_screen.json", - "grid_item/button": "ui/ugc_viewer_screen.json", - "place_holder_control": "ui/ugc_viewer_screen.json", - "place_holder_control/search_icon": "ui/ugc_viewer_screen.json", - "place_holder_control/place_holder_text": "ui/ugc_viewer_screen.json", - "search_box": "ui/ugc_viewer_screen.json", - "grid_content": "ui/ugc_viewer_screen.json", - "scrolling_content": "ui/ugc_viewer_screen.json", - "scrolling_content/grid_content": "ui/ugc_viewer_screen.json", - "main_panel": "ui/ugc_viewer_screen.json", - "main_panel/padding_0": "ui/ugc_viewer_screen.json", - "main_panel/centerer_panel_0": "ui/ugc_viewer_screen.json", - "main_panel/centerer_panel_0/search_box": "ui/ugc_viewer_screen.json", - "main_panel/padding_1": "ui/ugc_viewer_screen.json", - "main_panel/centerer_panel_1": "ui/ugc_viewer_screen.json", - "main_panel/centerer_panel_1/scrolling_panel": "ui/ugc_viewer_screen.json", - "main_panel/padding_2": "ui/ugc_viewer_screen.json", - "ugc_viewer_screen": "ui/ugc_viewer_screen.json", - "screen_content": "ui/ugc_viewer_screen.json", - "screen_content/main_panel": "ui/ugc_viewer_screen.json", - }, - "common_art": { - "title_image": "ui/ui_art_assets_common.json", - "title_image_edu": "ui/ui_art_assets_common.json", - "splash_text": "ui/ui_art_assets_common.json", - "title_panel_pocket": "ui/ui_art_assets_common.json", - "title_panel_pocket/title_image": "ui/ui_art_assets_common.json", - "title_panel_pocket/splash_text": "ui/ui_art_assets_common.json", - "title_panel_win10": "ui/ui_art_assets_common.json", - "title_panel_win10/title_image": "ui/ui_art_assets_common.json", - "title_panel_win10/splash_text": "ui/ui_art_assets_common.json", - "title_panel_osx": "ui/ui_art_assets_common.json", - "title_panel_osx/title_image": "ui/ui_art_assets_common.json", - "title_panel_osx/splash_text": "ui/ui_art_assets_common.json", - "title_panel_edu_desktop": "ui/ui_art_assets_common.json", - "title_panel_edu_desktop/banner_control": "ui/ui_art_assets_common.json", - "title_panel_edu_desktop/banner_control/banner": "ui/ui_art_assets_common.json", - "title_panel_edu_desktop/banner_control/drop_shadow": "ui/ui_art_assets_common.json", - "title_panel_edu_desktop/title_control": "ui/ui_art_assets_common.json", - "title_panel_edu_desktop/title_control/title_image_edu": "ui/ui_art_assets_common.json", - "title_panel_edu_desktop/title_control/splash_text": "ui/ui_art_assets_common.json", - "title_panel_edu_mobile": "ui/ui_art_assets_common.json", - "title_panel_edu_mobile/title_control": "ui/ui_art_assets_common.json", - "title_panel_edu_mobile/title_control/title_image_edu": "ui/ui_art_assets_common.json", - "title_panel_edu_mobile/title_control/splash_text": "ui/ui_art_assets_common.json", - "title_panel_content": "ui/ui_art_assets_common.json", - "start_title_panel_content": "ui/ui_art_assets_common.json", - "pause_logo_panel": "ui/ui_art_assets_common.json", - "pause_logo_panel/logo": "ui/ui_art_assets_common.json", - }, - "common": { - "empty_panel": "ui/ui_common.json", - "vertical_padding_8px": "ui/ui_common.json", - "horizontal_padding_2px": "ui/ui_common.json", - "empty_image": "ui/ui_common.json", - "horizontal_stack_panel": "ui/ui_common.json", - "vertical_stack_panel": "ui/ui_common.json", - "vert_stack_centering_panel": "ui/ui_common.json", - "vert_stack_centering_panel/stack_content": "ui/ui_common.json", - "button": "ui/ui_common.json", - "screen_header_title_panel": "ui/ui_common.json", - "screen_header_title_panel/store_header_title": "ui/ui_common.json", - "back_button": "ui/ui_common.json", - "back_title_button": "ui/ui_common.json", - "back_title_button/panel1": "ui/ui_common.json", - "back_title_button/panel1/button": "ui/ui_common.json", - "back_title_button/padding1": "ui/ui_common.json", - "back_title_button/panel2": "ui/ui_common.json", - "back_title_button/panel2/label": "ui/ui_common.json", - "chevron_image": "ui/ui_common.json", - "back_button_content": "ui/ui_common.json", - "back_button_content/chevron_panel": "ui/ui_common.json", - "back_button_content/chevron_panel/left_chevron": "ui/ui_common.json", - "back_button_content/padding1": "ui/ui_common.json", - "back_button_content/label_panel": "ui/ui_common.json", - "back_button_content/label_panel/label": "ui/ui_common.json", - "label_hover": "ui/ui_common.json", - "label_hover/hover": "ui/ui_common.json", - "tts_activate_sibling": "ui/ui_common.json", - "tts_activate_sibling/default": "ui/ui_common.json", - "tts_activate_sibling/pressed": "ui/ui_common.json", - "tts_activate_sibling/hover": "ui/ui_common.json", - "back_title_button_content": "ui/ui_common.json", - "back_title_button_content/padding1": "ui/ui_common.json", - "back_title_button_content/chevron_panel": "ui/ui_common.json", - "back_title_button_content/chevron_panel/left_chevron": "ui/ui_common.json", - "back_title_button_content/padding2": "ui/ui_common.json", - "toggle_visuals": "ui/ui_common.json", - "toggle_visuals/unchecked": "ui/ui_common.json", - "toggle_visuals/checked": "ui/ui_common.json", - "toggle_visuals/unchecked_hover": "ui/ui_common.json", - "toggle_visuals/checked_hover": "ui/ui_common.json", - "toggle_visuals/unchecked_locked": "ui/ui_common.json", - "toggle_visuals/checked_locked": "ui/ui_common.json", - "toggle_visuals/unchecked_locked_hover": "ui/ui_common.json", - "toggle_visuals/checked_locked_hover": "ui/ui_common.json", - "toggle": "ui/ui_common.json", - "radio_toggle": "ui/ui_common.json", - "checkbox": "ui/ui_common.json", - "checkbox_image": "ui/ui_common.json", - "checked_image": "ui/ui_common.json", - "unchecked_image": "ui/ui_common.json", - "checked_hover_image": "ui/ui_common.json", - "unchecked_hover_image": "ui/ui_common.json", - "rotating_text": "ui/ui_common.json", - "button_text": "ui/ui_common.json", - "toggle_state_template": "ui/ui_common.json", - "new_button_label": "ui/ui_common.json", - "checkbox_checked_state": "ui/ui_common.json", - "checkbox_unchecked_state": "ui/ui_common.json", - "checkbox_checked_hover_state": "ui/ui_common.json", - "checkbox_unchecked_hover_state": "ui/ui_common.json", - "checkbox_checked_locked_state": "ui/ui_common.json", - "checkbox_unchecked_locked_state": "ui/ui_common.json", - "radio_toggle_checked_state": "ui/ui_common.json", - "radio_toggle_unchecked_state": "ui/ui_common.json", - "radio_toggle_checked_hover_state": "ui/ui_common.json", - "radio_toggle_unchecked_hover_state": "ui/ui_common.json", - "radio_toggle_checked_locked_state": "ui/ui_common.json", - "radio_toggle_unchecked_locked_state": "ui/ui_common.json", - "slider_button_state": "ui/ui_common.json", - "slider_button_layout": "ui/ui_common.json", - "slider_button_hover_layout": "ui/ui_common.json", - "slider_button_locked_layout": "ui/ui_common.json", - "slider_button_indent_layout": "ui/ui_common.json", - "slider_box": "ui/ui_common.json", - "slider_box/default": "ui/ui_common.json", - "slider_box/hover": "ui/ui_common.json", - "slider_box/indent": "ui/ui_common.json", - "slider_box/locked": "ui/ui_common.json", - "slider_box/locked/transparent_grey": "ui/ui_common.json", - "slider_background": "ui/ui_common.json", - "slider_background_hover": "ui/ui_common.json", - "slider_progress": "ui/ui_common.json", - "slider_progress_hover": "ui/ui_common.json", - "slider_border": "ui/ui_common.json", - "slider_bar_default": "ui/ui_common.json", - "slider_bar_default/sizing_panel": "ui/ui_common.json", - "slider_bar_default/transparent_grey": "ui/ui_common.json", - "slider_bar_hover": "ui/ui_common.json", - "slider_step": "ui/ui_common.json", - "slider_step_hover": "ui/ui_common.json", - "slider_step_progress": "ui/ui_common.json", - "slider_step_progress_hover": "ui/ui_common.json", - "slider": "ui/ui_common.json", - "slider/slider_box": "ui/ui_common.json", - "slider/slider_bar_default": "ui/ui_common.json", - "slider/slider_bar_hover": "ui/ui_common.json", - "dropdown_background": "ui/ui_common.json", - "dropdown": "ui/ui_common.json", - "dropdown/dropdown_content": "ui/ui_common.json", - "dropdown/dropdown_content/0": "ui/ui_common.json", - "dropdown_no_scrollpanel": "ui/ui_common.json", - "square_image_border_white": "ui/ui_common.json", - "focus_border_white": "ui/ui_common.json", - "focus_border_yellow": "ui/ui_common.json", - "focus_border_black": "ui/ui_common.json", - "non_interact_focus_border": "ui/ui_common.json", - "non_interact_focus_border_button": "ui/ui_common.json", - "non_interact_focus_border_button/default": "ui/ui_common.json", - "non_interact_focus_border_button/hover": "ui/ui_common.json", - "non_interact_focus_border_button/pressed": "ui/ui_common.json", - "non_interact_focus_border_button/content": "ui/ui_common.json", - "tts_label_focus_wrapper": "ui/ui_common.json", - "tts_label_focus_wrapper/label": "ui/ui_common.json", - "tts_label_focus_wrapper/focus_border": "ui/ui_common.json", - "default_indent": "ui/ui_common.json", - "edit_box_indent": "ui/ui_common.json", - "edit_box_indent_hover": "ui/ui_common.json", - "transparent_edit_box_indent": "ui/ui_common.json", - "transparent_edit_box_indent_hover": "ui/ui_common.json", - "text_edit_box_label": "ui/ui_common.json", - "text_edit_box_place_holder_label": "ui/ui_common.json", - "text_magnifying_glass_image": "ui/ui_common.json", - "text_close_X_button_image": "ui/ui_common.json", - "text_close_X_button_image_hover": "ui/ui_common.json", - "clear_text_button": "ui/ui_common.json", - "clear_text_button/default": "ui/ui_common.json", - "clear_text_button/hover": "ui/ui_common.json", - "clear_text_button/pressed": "ui/ui_common.json", - "text_edit_box": "ui/ui_common.json", - "text_edit_box/centering_panel": "ui/ui_common.json", - "text_edit_box/centering_panel/clipper_panel": "ui/ui_common.json", - "text_edit_box/centering_panel/clipper_panel/magnifying_glass": "ui/ui_common.json", - "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel": "ui/ui_common.json", - "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel/clear_text_button": "ui/ui_common.json", - "text_edit_box/centering_panel/clipper_panel/visibility_panel": "ui/ui_common.json", - "text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control": "ui/ui_common.json", - "text_edit_box/locked": "ui/ui_common.json", - "text_edit_box/locked/edit_box_indent": "ui/ui_common.json", - "text_edit_box/default": "ui/ui_common.json", - "text_edit_box/hover": "ui/ui_common.json", - "text_edit_box/pressed": "ui/ui_common.json", - "text_edit_box_scrolling_content": "ui/ui_common.json", - "scrollable_text_edit_box": "ui/ui_common.json", - "scrollable_text_edit_box/centering_panel": "ui/ui_common.json", - "scrollable_text_edit_box/centering_panel/clipper_panel": "ui/ui_common.json", - "scrollable_text_edit_box/centering_panel/clipper_panel/text_edit_text_control": "ui/ui_common.json", - "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel": "ui/ui_common.json", - "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control": "ui/ui_common.json", - "scrollable_text_edit_box/locked": "ui/ui_common.json", - "scrollable_text_edit_box/locked/edit_box_indent": "ui/ui_common.json", - "scrollable_text_edit_box/default": "ui/ui_common.json", - "scrollable_text_edit_box/hover": "ui/ui_common.json", - "scrollable_text_edit_box/pressed": "ui/ui_common.json", - "transparent_text_edit_box": "ui/ui_common.json", - "transparent_text_edit_box/clipper_panel": "ui/ui_common.json", - "transparent_text_edit_box/clipper_panel/visibility_panel": "ui/ui_common.json", - "transparent_text_edit_box/clipper_panel/visibility_panel/place_holder_control": "ui/ui_common.json", - "transparent_text_edit_box/locked": "ui/ui_common.json", - "transparent_text_edit_box/locked/edit_box_indent": "ui/ui_common.json", - "transparent_text_edit_box/default": "ui/ui_common.json", - "transparent_text_edit_box/hover": "ui/ui_common.json", - "transparent_text_edit_box/pressed": "ui/ui_common.json", - "multiline_text_edit_box": "ui/ui_common.json", - "scrollable_multiline_text_edit_box": "ui/ui_common.json", - "dirt_background": "ui/ui_common.json", - "portal_background": "ui/ui_common.json", - "empty_progress_bar": "ui/ui_common.json", - "filled_progress_bar": "ui/ui_common.json", - "empty_progress_bar_beveled": "ui/ui_common.json", - "progress_bar_beveled_overlay": "ui/ui_common.json", - "filled_progress_bar_for_collections": "ui/ui_common.json", - "progress_bar": "ui/ui_common.json", - "progress_bar/empty_progress_bar": "ui/ui_common.json", - "progress_bar/filled_progress_bar": "ui/ui_common.json", - "progress_bar_for_collections": "ui/ui_common.json", - "progress_bar_for_collections/empty_progress_bar": "ui/ui_common.json", - "progress_bar_for_collections/filled_progress_bar_for_collections": "ui/ui_common.json", - "horizontal_divider": "ui/ui_common.json", - "horizontal_divider/divider_image": "ui/ui_common.json", - "vertical_divider": "ui/ui_common.json", - "vertical_divider/divider_image": "ui/ui_common.json", - "underline": "ui/ui_common.json", - "single_line_label": "ui/ui_common.json", - "single_line_label/label_panel": "ui/ui_common.json", - "single_line_label/label_panel/0": "ui/ui_common.json", - "gamepad_helper_icon_description": "ui/ui_common.json", - "gamepad_helper_icon_image": "ui/ui_common.json", - "keyboard_helper_icon_image": "ui/ui_common.json", - "gamepad_helper": "ui/ui_common.json", - "gamepad_helper/icon_panel": "ui/ui_common.json", - "gamepad_helper/description_panel": "ui/ui_common.json", - "gamepad_helper/description_panel/desc": "ui/ui_common.json", - "gamepad_helpers": "ui/ui_common.json", - "gamepad_helpers_a_and_b": "ui/ui_common.json", - "gamepad_helpers_a_and_b/gamepad_helper_a": "ui/ui_common.json", - "gamepad_helpers_a_and_b/control": "ui/ui_common.json", - "gamepad_helpers_a_and_b/gamepad_helper_b": "ui/ui_common.json", - "container_gamepad_helpers": "ui/ui_common.json", - "container_gamepad_helpers/fill_panel": "ui/ui_common.json", - "container_gamepad_helpers/buttons": "ui/ui_common.json", - "container_gamepad_helpers/buttons/gamepad_helper_x": "ui/ui_common.json", - "container_gamepad_helpers/buttons/gamepad_helper_a": "ui/ui_common.json", - "container_gamepad_helpers/buttons/gamepad_helper_y": "ui/ui_common.json", - "container_gamepad_helpers/buttons/gamepad_helper_b": "ui/ui_common.json", - "container_gamepad_helpers/buffer_panel_right": "ui/ui_common.json", - "gamepad_helper_bumpers": "ui/ui_common.json", - "gamepad_helper_bumpers/gamepad_helper_left_bumper": "ui/ui_common.json", - "gamepad_helper_bumpers/gamepad_helper_right_bumper": "ui/ui_common.json", - "tabs_left_gamepad_helpers": "ui/ui_common.json", - "tabs_left_gamepad_helpers/gamepad_helper_left_bumper": "ui/ui_common.json", - "tabs_left_gamepad_helpers/gamepad_helper_left_trigger": "ui/ui_common.json", - "tabs_right_gamepad_helpers": "ui/ui_common.json", - "tabs_right_gamepad_helpers/gamepad_helper_right_bumper": "ui/ui_common.json", - "tabs_right_gamepad_helpers/gamepad_helper_right_trigger": "ui/ui_common.json", - "keyboard_helper_description": "ui/ui_common.json", - "keyboard_helper": "ui/ui_common.json", - "keyboard_helper/image_centerer": "ui/ui_common.json", - "keyboard_helper/image_centerer/image": "ui/ui_common.json", - "keyboard_helper/image_centerer/image/keyboard_character": "ui/ui_common.json", - "keyboard_helper/centerer": "ui/ui_common.json", - "keyboard_helper/centerer/desc": "ui/ui_common.json", - "keyboard_helpers": "ui/ui_common.json", - "gamepad_icon_button": "ui/ui_common.json", - "gamepad_helper_start": "ui/ui_common.json", - "gamepad_helper_a": "ui/ui_common.json", - "gamepad_helper_a_14": "ui/ui_common.json", - "gamepad_helper_b": "ui/ui_common.json", - "gamepad_helper_b_14": "ui/ui_common.json", - "gamepad_helper_x": "ui/ui_common.json", - "gamepad_helper_x_14": "ui/ui_common.json", - "gamepad_helper_y": "ui/ui_common.json", - "gamepad_helper_y_14": "ui/ui_common.json", - "keyboard_helper_keys": "ui/ui_common.json", - "gamepad_helper_left_trigger": "ui/ui_common.json", - "gamepad_helper_right_trigger": "ui/ui_common.json", - "keyboard_left_trigger": "ui/ui_common.json", - "keyboard_right_trigger": "ui/ui_common.json", - "gamepad_icon_dpad": "ui/ui_common.json", - "gamepad_helper_dpad": "ui/ui_common.json", - "gamepad_helper_dpad_down": "ui/ui_common.json", - "gamepad_helper_dpad_left": "ui/ui_common.json", - "gamepad_helper_dpad_right": "ui/ui_common.json", - "gamepad_helper_dpad_up": "ui/ui_common.json", - "gamepad_icon_thumbstick": "ui/ui_common.json", - "gamepad_helper_thumbstick": "ui/ui_common.json", - "gamepad_helper_thumbstick_right": "ui/ui_common.json", - "gamepad_helper_thumbstick_left": "ui/ui_common.json", - "gamepad_helper_left_bumper": "ui/ui_common.json", - "gamepad_helper_right_bumper": "ui/ui_common.json", - "dialog_background_common": "ui/ui_common.json", - "dialog_background_hollow_common": "ui/ui_common.json", - "dialog_background_hollow_common/control": "ui/ui_common.json", - "dialog_background_opaque": "ui/ui_common.json", - "dialog_background_hollow_1": "ui/ui_common.json", - "dialog_background_hollow_2": "ui/ui_common.json", - "dialog_background_hollow_3": "ui/ui_common.json", - "dialog_background_hollow_4": "ui/ui_common.json", - "dialog_background_hollow_4_thin": "ui/ui_common.json", - "dialog_background_hollow_5": "ui/ui_common.json", - "dialog_background_hollow_6": "ui/ui_common.json", - "dialog_background_hollow_7": "ui/ui_common.json", - "dialog_background_hollow_8": "ui/ui_common.json", - "dialog_divider": "ui/ui_common.json", - "normal_button": "ui/ui_common.json", - "normal_stroke_button": "ui/ui_common.json", - "section_heading_label": "ui/ui_common.json", - "center_fold": "ui/ui_common.json", - "center_fold/center_bg": "ui/ui_common.json", - "section_divider": "ui/ui_common.json", - "section_divider/padding1": "ui/ui_common.json", - "section_divider/divider_parent": "ui/ui_common.json", - "section_divider/divider_parent/divider": "ui/ui_common.json", - "section_divider/padding2": "ui/ui_common.json", - "minecraftTenLabel": "ui/ui_common.json", - "close_button_image": "ui/ui_common.json", - "close_button_panel": "ui/ui_common.json", - "close_button_panel/close_button_image": "ui/ui_common.json", - "close_button": "ui/ui_common.json", - "close_button/default": "ui/ui_common.json", - "close_button/hover": "ui/ui_common.json", - "close_button/pressed": "ui/ui_common.json", - "close_button_grey_bg": "ui/ui_common.json", - "close_button_grey_bg/default": "ui/ui_common.json", - "close_button_grey_bg/hover": "ui/ui_common.json", - "close_button_grey_bg/pressed": "ui/ui_common.json", - "close_button_high_contrast": "ui/ui_common.json", - "close_button_high_contrast/background": "ui/ui_common.json", - "close_button_high_contrast/default": "ui/ui_common.json", - "close_button_high_contrast/hover": "ui/ui_common.json", - "close_button_high_contrast/pressed": "ui/ui_common.json", - "compact_close_button": "ui/ui_common.json", - "compact_close_button/default": "ui/ui_common.json", - "compact_close_button/hover": "ui/ui_common.json", - "compact_close_button/pressed": "ui/ui_common.json", - "light_close_button": "ui/ui_common.json", - "light_close_button/default": "ui/ui_common.json", - "light_close_button/hover": "ui/ui_common.json", - "light_close_button/pressed": "ui/ui_common.json", - "help_button": "ui/ui_common.json", - "help_button/default": "ui/ui_common.json", - "help_button/hover": "ui/ui_common.json", - "help_button/pressed": "ui/ui_common.json", - "cell_image": "ui/ui_common.json", - "cell_image_selected": "ui/ui_common.json", - "cell_image_panel": "ui/ui_common.json", - "cell_image_panel/cell_image": "ui/ui_common.json", - "cell_image_panel/cell_image_selected": "ui/ui_common.json", - "cell_overlay": "ui/ui_common.json", - "highlight_slot": "ui/ui_common.json", - "white_border_slot": "ui/ui_common.json", - "progressive_select_progress_bar": "ui/ui_common.json", - "progressive_select_progress_bar/stack_progress_bar_down": "ui/ui_common.json", - "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_progress_bar": "ui/ui_common.json", - "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_text": "ui/ui_common.json", - "stack_splitting_overlay": "ui/ui_common.json", - "stack_splitting_overlay/classic_stack_splitting_overlay": "ui/ui_common.json", - "stack_splitting_overlay/classic_stack_splitting_overlay/stack_splitting_bar": "ui/ui_common.json", - "stack_splitting_overlay/pocket_stack_splitting_overlay": "ui/ui_common.json", - "stack_splitting_overlay/pocket_stack_splitting_overlay/stack_splitting_bar": "ui/ui_common.json", - "inventory_hold_icon_holding": "ui/ui_common.json", - "inventory_hold_icon_holding/progressive_down": "ui/ui_common.json", - "inventory_hold_icon_holding/progressive_up": "ui/ui_common.json", - "inventory_hold_icon_holding/progressive_left_side": "ui/ui_common.json", - "inventory_hold_icon_holding/progressive_right_side": "ui/ui_common.json", - "inventory_hold_icon_release": "ui/ui_common.json", - "highlight_slot_panel": "ui/ui_common.json", - "highlight_slot_panel/highlight": "ui/ui_common.json", - "highlight_slot_panel/highlight/hover_text": "ui/ui_common.json", - "highlight_slot_panel/white_border": "ui/ui_common.json", - "pocket_ui_highlight_slot": "ui/ui_common.json", - "hover_text": "ui/ui_common.json", - "screen_background": "ui/ui_common.json", - "stack_count_label": "ui/ui_common.json", - "durability_bar": "ui/ui_common.json", - "durability_bar_grabbed": "ui/ui_common.json", - "storage_bar": "ui/ui_common.json", - "storage_bar_grabbed": "ui/ui_common.json", - "item_renderer": "ui/ui_common.json", - "filtered_item_renderer": "ui/ui_common.json", - "flying_item_renderer": "ui/ui_common.json", - "selected_item_details": "ui/ui_common.json", - "selected_item_details/item_panel_image": "ui/ui_common.json", - "item_panel_image": "ui/ui_common.json", - "item_panel_image/item_text_label": "ui/ui_common.json", - "item_text_label": "ui/ui_common.json", - "selected_item_details_factory": "ui/ui_common.json", - "item_lock_notification": "ui/ui_common.json", - "item_lock_notification/notification_background_image": "ui/ui_common.json", - "item_lock_notification/notification_background_image/notification_text_label": "ui/ui_common.json", - "item_lock_notification_factory": "ui/ui_common.json", - "layout_toggle_content": "ui/ui_common.json", - "layout_toggle_content/image": "ui/ui_common.json", - "layout_toggle_content/icon": "ui/ui_common.json", - "layout_template_toggle": "ui/ui_common.json", - "layout_toggle": "ui/ui_common.json", - "creative_layout_toggle": "ui/ui_common.json", - "recipe_book_layout_toggle": "ui/ui_common.json", - "survival_layout_toggle": "ui/ui_common.json", - "furnace_recipe_book_layout_toggle": "ui/ui_common.json", - "furnace_survival_layout_toggle": "ui/ui_common.json", - "crafting_root_input_panel": "ui/ui_common.json", - "toolbar_background_image": "ui/ui_common.json", - "empty_panel_size_y_0": "ui/ui_common.json", - "scroll_background_and_viewport": "ui/ui_common.json", - "scroll_background_and_viewport/background": "ui/ui_common.json", - "scroll_background_and_viewport/scrolling_view_port": "ui/ui_common.json", - "scroll_background_and_viewport/scrolling_view_port/scrolling_content": "ui/ui_common.json", - "scroll_bar_and_track": "ui/ui_common.json", - "scroll_bar_and_track/stack_panel": "ui/ui_common.json", - "scroll_bar_and_track/stack_panel/empty_panel_0": "ui/ui_common.json", - "scroll_bar_and_track/stack_panel/panel": "ui/ui_common.json", - "scroll_bar_and_track/stack_panel/panel/centered_panel": "ui/ui_common.json", - "scroll_bar_and_track/stack_panel/panel/centered_panel/track": "ui/ui_common.json", - "scroll_bar_and_track/stack_panel/panel/centered_panel/scroll_box": "ui/ui_common.json", - "scroll_bar_and_track/stack_panel/empty_panel_1": "ui/ui_common.json", - "scroll_view_control": "ui/ui_common.json", - "scroll_view_control/stack_panel": "ui/ui_common.json", - "scroll_view_control/stack_panel/background_and_viewport": "ui/ui_common.json", - "scroll_view_control/stack_panel/bar_and_track": "ui/ui_common.json", - "scroll_view_control/panel": "ui/ui_common.json", - "scroll_view_control/panel/background_and_viewport": "ui/ui_common.json", - "scroll_view_control/panel/bar_and_track": "ui/ui_common.json", - "scrollbar_track": "ui/ui_common.json", - "scrollbar_track/bar_indent": "ui/ui_common.json", - "scroll_box": "ui/ui_common.json", - "scroll_box/box": "ui/ui_common.json", - "scroll_box/box/mouse_box": "ui/ui_common.json", - "scroll_box/box/touch_box": "ui/ui_common.json", - "scroll_box_indent": "ui/ui_common.json", - "scrollbar_box_image": "ui/ui_common.json", - "touch_scrollbar_box_image": "ui/ui_common.json", - "new_touch_scrollbar_box_image": "ui/ui_common.json", - "container_touch_scrollbar_box_image": "ui/ui_common.json", - "scroll_indent_image": "ui/ui_common.json", - "scrolling_panel_base": "ui/ui_common.json", - "scrolling_panel": "ui/ui_common.json", - "scrolling_panel/scroll_touch": "ui/ui_common.json", - "scrolling_panel/scroll_mouse": "ui/ui_common.json", - "scrolling_panel_with_offset": "ui/ui_common.json", - "container_slot_button_prototype": "ui/ui_common.json", - "container_slot_button_prototype/hover": "ui/ui_common.json", - "no_coalesce_container_slot_button": "ui/ui_common.json", - "pocket_ui_container_slot": "ui/ui_common.json", - "pocket_ui_container_slot/hover": "ui/ui_common.json", - "pocket_ui_container_slot/hover/highlight_square": "ui/ui_common.json", - "slot_selected": "ui/ui_common.json", - "slot_selected/progress_bar_release": "ui/ui_common.json", - "container_item": "ui/ui_common.json", - "container_item/item_cell": "ui/ui_common.json", - "container_item/item_cell/item": "ui/ui_common.json", - "container_item/item_cell/item/stack_count_label": "ui/ui_common.json", - "container_item/item_cell/durability_bar": "ui/ui_common.json", - "container_item/item_cell/storage_bar": "ui/ui_common.json", - "container_item/item_cell_overlay_ref": "ui/ui_common.json", - "container_item/item_selected_image": "ui/ui_common.json", - "container_item/item_button_ref": "ui/ui_common.json", - "container_item/container_item_lock_overlay": "ui/ui_common.json", - "container_item/item_lock_cell_image": "ui/ui_common.json", - "container_item/bundle_slot_panel": "ui/ui_common.json", - "pocket_ui_container_item": "ui/ui_common.json", - "pocket_ui_large_container_item": "ui/ui_common.json", - "container_item_lock_yellow": "ui/ui_common.json", - "container_item_lock_red": "ui/ui_common.json", - "container_item_lock_overlay": "ui/ui_common.json", - "container_item_lock_overlay/container_item_lock_yellow": "ui/ui_common.json", - "container_item_lock_overlay/container_item_lock_red": "ui/ui_common.json", - "item_lock_cell_image": "ui/ui_common.json", - "container_grid": "ui/ui_common.json", - "pocket_container_grid": "ui/ui_common.json", - "container_scroll_box_image": "ui/ui_common.json", - "container_scroll_bar_side_rails": "ui/ui_common.json", - "container_scrollbar_track": "ui/ui_common.json", - "container_scrollbar_track/rails": "ui/ui_common.json", - "container_scroll_background_image": "ui/ui_common.json", - "container_scroll_panel": "ui/ui_common.json", - "pocket_ui_highlight_selected_slot": "ui/ui_common.json", - "pocket_hotbar_panel": "ui/ui_common.json", - "pocket_hotbar_panel/bg": "ui/ui_common.json", - "pocket_hotbar_panel/hotbar_grid": "ui/ui_common.json", - "drop_item_panel": "ui/ui_common.json", - "pocket_hotbar_and_content_panels": "ui/ui_common.json", - "pocket_hotbar_and_content_panels/pocket_content_panels": "ui/ui_common.json", - "pocket_hotbar_and_content_panels/hotbar_drop_item_panel": "ui/ui_common.json", - "pocket_hotbar_and_content_panels/hotbar_drop_item_panel/pocket_hotbar_panel": "ui/ui_common.json", - "blank_pocket_content_panel": "ui/ui_common.json", - "pocket_content_panels": "ui/ui_common.json", - "pocket_content_panels/left_panel": "ui/ui_common.json", - "pocket_content_panels/offset_panel": "ui/ui_common.json", - "pocket_content_panels/offset_panel/center_bg": "ui/ui_common.json", - "pocket_content_panels/right_panel": "ui/ui_common.json", - "inventory_selected_icon": "ui/ui_common.json", - "inventory_selected_stack_size_text": "ui/ui_common.json", - "inventory_hold_icon": "ui/ui_common.json", - "inventory_selected_item_lock_overlay": "ui/ui_common.json", - "inventory_selected_item_lock_overlay/container_item_lock_yellow": "ui/ui_common.json", - "inventory_selected_item_lock_overlay/container_item_lock_red": "ui/ui_common.json", - "inventory_icon_panel": "ui/ui_common.json", - "inventory_icon_panel/selected_item_icon": "ui/ui_common.json", - "inventory_icon_panel/selected_stack_size_text": "ui/ui_common.json", - "inventory_icon_panel/selected_item_lock_overlay": "ui/ui_common.json", - "inventory_icon_panel/hover_text": "ui/ui_common.json", - "inventory_selected_icon_button": "ui/ui_common.json", - "inventory_selected_icon_button/default": "ui/ui_common.json", - "inventory_selected_icon_button/pressed": "ui/ui_common.json", - "inventory_selected_icon_button/hover": "ui/ui_common.json", - "inventory_selected_icon_button/durability_bar_grabbed": "ui/ui_common.json", - "inventory_selected_icon_button/storage_bar_grabbed": "ui/ui_common.json", - "inventory_take_progress_icon_button": "ui/ui_common.json", - "inventory_take_progress_icon_button/default": "ui/ui_common.json", - "inventory_take_progress_icon_button/pressed": "ui/ui_common.json", - "inventory_take_progress_icon_button/hover": "ui/ui_common.json", - "gamepad_cursor_image": "ui/ui_common.json", - "gamepad_cursor_button": "ui/ui_common.json", - "gamepad_cursor_button/default": "ui/ui_common.json", - "gamepad_cursor_button/pressed": "ui/ui_common.json", - "gamepad_cursor_button/hover": "ui/ui_common.json", - "grid_item_for_inventory": "ui/ui_common.json", - "grid_item_for_hotbar": "ui/ui_common.json", - "hotbar_grid_template": "ui/ui_common.json", - "inventory_panel": "ui/ui_common.json", - "inventory_panel/inventory_grid": "ui/ui_common.json", - "inventory_panel_bottom_half": "ui/ui_common.json", - "inventory_panel_bottom_half/inventory_panel": "ui/ui_common.json", - "inventory_panel_bottom_half_with_label": "ui/ui_common.json", - "inventory_panel_bottom_half_with_label/inventory_panel": "ui/ui_common.json", - "inventory_panel_bottom_half_with_label/inventory_label": "ui/ui_common.json", - "common_panel": "ui/ui_common.json", - "common_panel/bg_image": "ui/ui_common.json", - "common_panel/dialog_divider": "ui/ui_common.json", - "common_panel/close_button_holder": "ui/ui_common.json", - "common_panel/close_button_holder/close": "ui/ui_common.json", - "common_panel/close_button_holder/compact_close": "ui/ui_common.json", - "root_panel": "ui/ui_common.json", - "input_panel": "ui/ui_common.json", - "base_screen": "ui/ui_common.json", - "base_screen/variables_button_mappings_and_controls": "ui/ui_common.json", - "base_screen/variables_button_mappings_and_controls/bg_no_safezone_screen_panel": "ui/ui_common.json", - "base_screen/variables_button_mappings_and_controls/safezone_screen_matrix": "ui/ui_common.json", - "base_screen/variables_button_mappings_and_controls/screen_background": "ui/ui_common.json", - "base_screen/loading_bars_background": "ui/ui_common.json", - "base_screen/loading_bars_background/loading_bars": "ui/ui_common.json", - "render_below_base_screen": "ui/ui_common.json", - "safezone_buffer": "ui/ui_common.json", - "top_safezone_vertical_buffer": "ui/ui_common.json", - "bottom_safezone_vertical_buffer": "ui/ui_common.json", - "left_safezone_horizontal_buffer": "ui/ui_common.json", - "right_safezone_horizontal_buffer": "ui/ui_common.json", - "safe_zone_stack": "ui/ui_common.json", - "safe_zone_stack/top_outer_control": "ui/ui_common.json", - "safe_zone_stack/top_inner_control": "ui/ui_common.json", - "safe_zone_stack/header_bar": "ui/ui_common.json", - "safezone_inner_matrix": "ui/ui_common.json", - "safezone_inner_matrix/outer_top": "ui/ui_common.json", - "safezone_inner_matrix/outer_top/top_side_control": "ui/ui_common.json", - "safezone_inner_matrix/inner_top": "ui/ui_common.json", - "safezone_inner_matrix/inner_top/top_side_control": "ui/ui_common.json", - "safezone_inner_matrix/safezone_screen_panel": "ui/ui_common.json", - "safezone_inner_matrix/inner_bottom": "ui/ui_common.json", - "safezone_inner_matrix/outer_bottom": "ui/ui_common.json", - "safezone_outer_matrix": "ui/ui_common.json", - "safezone_outer_matrix/outer_left": "ui/ui_common.json", - "safezone_outer_matrix/outer_left/outer_left_safe_zone_stack": "ui/ui_common.json", - "safezone_outer_matrix/inner_left": "ui/ui_common.json", - "safezone_outer_matrix/inner_left/inner_left_safe_zone_stack": "ui/ui_common.json", - "safezone_outer_matrix/inner_matrix": "ui/ui_common.json", - "safezone_outer_matrix/inner_right": "ui/ui_common.json", - "safezone_outer_matrix/inner_right/inner_right_safe_zone_stack": "ui/ui_common.json", - "safezone_outer_matrix/outer_right": "ui/ui_common.json", - "safezone_outer_matrix/outer_right/outer_right_safe_zone_stack": "ui/ui_common.json", - "bundle_tooltip_wrapper": "ui/ui_common.json", - "bundle_tooltip_wrapper/bundle_tooltip_factory_wrapper": "ui/ui_common.json", - "bundle_tooltip_wrapper/bundle_touch_tooltip": "ui/ui_common.json", - "screen_panel": "ui/ui_common.json", - "screen_panel/root_screen_panel": "ui/ui_common.json", - "screen_panel/additional_screen_content": "ui/ui_common.json", - "screen_panel/popup_dialog_factory": "ui/ui_common.json", - "screen_panel/bundle_hover_tooltip": "ui/ui_common.json", - "base_screen_empty_panel": "ui/ui_common.json", - "modal_screen": "ui/ui_common.json", - "realms_error_modal_screen": "ui/ui_common.json", - "modal_area_panel_base": "ui/ui_common.json", - "inactive_modal_pane_fade": "ui/ui_common.json", - "inventory_screen_common": "ui/ui_common.json", - "fullscreen_header": "ui/ui_common.json", - "fullscreen_header/top_bar": "ui/ui_common.json", - "fullscreen_header/top_bar/title_stack_panel": "ui/ui_common.json", - "fullscreen_header/top_bar/title_stack_panel/padding1": "ui/ui_common.json", - "fullscreen_header/top_bar/title_stack_panel/back_button_content_panel": "ui/ui_common.json", - "fullscreen_header/top_bar/title_stack_panel/padding2": "ui/ui_common.json", - "fullscreen_header/child_control": "ui/ui_common.json", - "back_content_panel": "ui/ui_common.json", - "back_content_panel/back_button": "ui/ui_common.json", - "top_bar": "ui/ui_common.json", - "tooltip_background": "ui/ui_common.json", - "tooltip_button_content": "ui/ui_common.json", - "tooltip_button_content/tooltip_panel_content": "ui/ui_common.json", - "static_tooltip_popup_with_image_and_text": "ui/ui_common.json", - "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel": "ui/ui_common.json", - "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel": "ui/ui_common.json", - "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel": "ui/ui_common.json", - "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel/0": "ui/ui_common.json", - "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding": "ui/ui_common.json", - "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text": "ui/ui_common.json", - "static_tooltip_popup_with_image_and_text/tooltip_chevron": "ui/ui_common.json", - "dynamic_tooltip_popup_with_custom_content": "ui/ui_common.json", - "dynamic_tooltip_popup_with_custom_content/tooltip_content": "ui/ui_common.json", - "dynamic_tooltip_popup_with_custom_content/tooltip_chevron": "ui/ui_common.json", - "dynamic_tooltip_popup_with_image_and_text": "ui/ui_common.json", - "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel": "ui/ui_common.json", - "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel": "ui/ui_common.json", - "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel": "ui/ui_common.json", - "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel/0": "ui/ui_common.json", - "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding": "ui/ui_common.json", - "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text": "ui/ui_common.json", - "dynamic_tooltip_popup_with_image_and_text/tooltip_chevron": "ui/ui_common.json", - "dynamic_tooltip_left": "ui/ui_common.json", - "dynamic_tooltip_below": "ui/ui_common.json", - "dynamic_custom_tooltip_below": "ui/ui_common.json", - "dynamic_tooltip": "ui/ui_common.json", - "dynamic_tooltip/above": "ui/ui_common.json", - "dynamic_tooltip/above/content": "ui/ui_common.json", - "dynamic_tooltip/below": "ui/ui_common.json", - "dynamic_tooltip/below/content": "ui/ui_common.json", - "legacy_pocket_close_button_default": "ui/ui_common.json", - "legacy_pocket_close_button_pressed": "ui/ui_common.json", - "legacy_pocket_close_button": "ui/ui_common.json", - "legacy_pocket_close_button/default": "ui/ui_common.json", - "legacy_pocket_close_button/hover": "ui/ui_common.json", - "legacy_pocket_close_button/pressed": "ui/ui_common.json", - "info_icon": "ui/ui_common.json", - "error_glyph": "ui/ui_common.json", - "creative_icon": "ui/ui_common.json", - "inventory_icon": "ui/ui_common.json", - "recipe_book_icon": "ui/ui_common.json", - "tab_icon_image": "ui/ui_common.json", - "search_icon": "ui/ui_common.json", - "service_repo_image_panel": "ui/ui_common.json", - "service_repo_image_panel/service_repo_image": "ui/ui_common.json", - "service_repo_image_panel/progress_loading": "ui/ui_common.json", - "common_cycler": "ui/ui_common.json", - "image_cycler": "ui/ui_common.json", - "text_cycler": "ui/ui_common.json", - "squaring_panel": "ui/ui_common.json", - "squaring_panel/squaring_panel": "ui/ui_common.json", - "squaring_panel/squaring_panel/squaring_panel_content": "ui/ui_common.json", - }, - "common-classic": { - "button": "ui/ui_common_classic.json", - "button_state_default": "ui/ui_common_classic.json", - "button_state_hover": "ui/ui_common_classic.json", - "button_state_pressed": "ui/ui_common_classic.json", - "toggle": "ui/ui_common_classic.json", - "toggle_checked_state": "ui/ui_common_classic.json", - "toggle_unchecked_state": "ui/ui_common_classic.json", - "toggle_checked_hovered_state": "ui/ui_common_classic.json", - "toggle_checked_hovered_state/toggle_checked_state": "ui/ui_common_classic.json", - "toggle_checked_hovered_state/hover": "ui/ui_common_classic.json", - "toggle_unchecked_hovered_state": "ui/ui_common_classic.json", - "toggle_unchecked_hovered_state/toggle_unchecked_state": "ui/ui_common_classic.json", - "toggle_unchecked_hovered_state/hover": "ui/ui_common_classic.json", - }, - "edu_common": { - "light_label": "ui/ui_edu_common.json", - "dark_label": "ui/ui_edu_common.json", - "readable_label": "ui/ui_edu_common.json", - "slider_toggle": "ui/ui_edu_common.json", - "trash_default": "ui/ui_edu_common.json", - "trash_hover": "ui/ui_edu_common.json", - "trash_pressed": "ui/ui_edu_common.json", - "photo_trash_button": "ui/ui_edu_common.json", - "photo_trash_button/default": "ui/ui_edu_common.json", - "photo_trash_button/hover": "ui/ui_edu_common.json", - "photo_trash_button/pressed": "ui/ui_edu_common.json", - "download_progress_modal_panel": "ui/ui_edu_common.json", - "download_progress_modal_panel/downloading": "ui/ui_edu_common.json", - "loading_progress_modal_panel": "ui/ui_edu_common.json", - "loading_progress_modal_panel/loading": "ui/ui_edu_common.json", - "modal_cancel_button": "ui/ui_edu_common.json", - "modal_progress_panel_with_cancel": "ui/ui_edu_common.json", - "modal_progress_panel_with_cancel/common_panel": "ui/ui_edu_common.json", - "modal_progress_panel_with_cancel/title": "ui/ui_edu_common.json", - "modal_progress_panel_with_cancel/content": "ui/ui_edu_common.json", - "modal_progress_panel_with_cancel/content/title_panel": "ui/ui_edu_common.json", - "modal_progress_panel_with_cancel/content/label": "ui/ui_edu_common.json", - "modal_progress_panel_with_cancel/content/progress_loading_bars": "ui/ui_edu_common.json", - "modal_progress_panel_with_cancel/cancel_button": "ui/ui_edu_common.json", - "modal_progress_panel_no_button": "ui/ui_edu_common.json", - "modal_progress_panel_no_button/common_panel": "ui/ui_edu_common.json", - "modal_progress_panel_no_button/content": "ui/ui_edu_common.json", - "modal_progress_panel_no_button/content/progress_title_text": "ui/ui_edu_common.json", - "modal_progress_panel_no_button/content/progress_loading_bars": "ui/ui_edu_common.json", - "apple_animation": "ui/ui_edu_common.json", - "book_animation": "ui/ui_edu_common.json", - "edu_loading_animation": "ui/ui_edu_common.json", - "horizontal_stack_item": "ui/ui_edu_common.json", - "vertical_stack_item": "ui/ui_edu_common.json", - "back_button_padded": "ui/ui_edu_common.json", - "back_button_padded/back_button_padding_before": "ui/ui_edu_common.json", - "back_button_padded/back_button": "ui/ui_edu_common.json", - "home_button_content": "ui/ui_edu_common.json", - "home_button": "ui/ui_edu_common.json", - "underline_text": "ui/ui_edu_common.json", - "underline_text/label_hover": "ui/ui_edu_common.json", - "underline_button": "ui/ui_edu_common.json", - "underline_button/default": "ui/ui_edu_common.json", - "underline_button/hover": "ui/ui_edu_common.json", - "underline_button/pressed": "ui/ui_edu_common.json", - "edu_screen_header": "ui/ui_edu_common.json", - "edu_screen_header/title_controls": "ui/ui_edu_common.json", - "edu_screen_header/title_controls/back_item": "ui/ui_edu_common.json", - "edu_screen_header/title_controls/back_item/back_button": "ui/ui_edu_common.json", - "edu_screen_header/title_controls/back_item/gamepad": "ui/ui_edu_common.json", - "edu_screen_header/title_controls/image_item": "ui/ui_edu_common.json", - "edu_screen_header/title_controls/image_item/image": "ui/ui_edu_common.json", - "edu_screen_header/title_controls/image_item_template": "ui/ui_edu_common.json", - "edu_screen_header/title_controls/image_item_template/image": "ui/ui_edu_common.json", - "edu_screen_header/title_controls/image_item_template/image/image_color": "ui/ui_edu_common.json", - "edu_screen_header/title_controls/title_text_padding": "ui/ui_edu_common.json", - "edu_screen_header/title_controls/title_item": "ui/ui_edu_common.json", - "edu_screen_header/title_controls/title_item/title": "ui/ui_edu_common.json", - "share_dialog_title": "ui/ui_edu_common.json", - "share_header_panel": "ui/ui_edu_common.json", - "share_header_panel/title": "ui/ui_edu_common.json", - "share_header_panel/close_button": "ui/ui_edu_common.json", - "teams_advanced_share_header_panel": "ui/ui_edu_common.json", - "add_resource_share_header_panel": "ui/ui_edu_common.json", - "body_panel": "ui/ui_edu_common.json", - "body_panel/body_stack": "ui/ui_edu_common.json", - "teams_body_panel": "ui/ui_edu_common.json", - "teams_body_resource_panel": "ui/ui_edu_common.json", - "teams_simple_body_resource_panel": "ui/ui_edu_common.json", - "joincode_body_panel": "ui/ui_edu_common.json", - "add_resource_body_panel": "ui/ui_edu_common.json", - "icon_section": "ui/ui_edu_common.json", - "icon_section/icon_stack_panel": "ui/ui_edu_common.json", - "icon_section/icon_padding": "ui/ui_edu_common.json", - "add_resources_section": "ui/ui_edu_common.json", - "add_resources_section/divider": "ui/ui_edu_common.json", - "add_resources_section/add_resource_label": "ui/ui_edu_common.json", - "add_resources_section/teams_padding_middle": "ui/ui_edu_common.json", - "add_resources_section/resource_button": "ui/ui_edu_common.json", - "edit_resource_uri_glyph": "ui/ui_edu_common.json", - "edit_resources_section": "ui/ui_edu_common.json", - "edit_resources_section/divider": "ui/ui_edu_common.json", - "edit_resources_section/resource_label_text": "ui/ui_edu_common.json", - "edit_resources_section/teams_padding_middle": "ui/ui_edu_common.json", - "edit_resources_section/edit_resource_body_button_stack": "ui/ui_edu_common.json", - "edit_resources_section/edit_resource_body_button_stack/resource_button": "ui/ui_edu_common.json", - "edit_resources_section/edit_resource_body_button_stack/padding_middle": "ui/ui_edu_common.json", - "edit_resources_section/edit_resource_body_button_stack/edit_resource_uri_button": "ui/ui_edu_common.json", - "body_content_stack": "ui/ui_edu_common.json", - "body_content_stack/body_text_centering_panel": "ui/ui_edu_common.json", - "body_content_stack/body_text_centering_panel/body_text": "ui/ui_edu_common.json", - "body_content_stack/padding_middle": "ui/ui_edu_common.json", - "body_content_stack/icons": "ui/ui_edu_common.json", - "body_content_stack/copy_link_centering_panel": "ui/ui_edu_common.json", - "body_content_stack/copy_link_centering_panel/copy_link_panel": "ui/ui_edu_common.json", - "body_content_stack/add_resources": "ui/ui_edu_common.json", - "body_content_stack/edit_resources": "ui/ui_edu_common.json", - "teams_simple_body_content_stack": "ui/ui_edu_common.json", - "teams_body_content_stack": "ui/ui_edu_common.json", - "teams_body_resource_content_stack": "ui/ui_edu_common.json", - "joincode_body_content_stack": "ui/ui_edu_common.json", - "add_resource_body_content_stack": "ui/ui_edu_common.json", - "add_resource_body_content_stack/label_one_centering_panel": "ui/ui_edu_common.json", - "add_resource_body_content_stack/label_one_centering_panel/teams_share_label": "ui/ui_edu_common.json", - "add_resource_body_content_stack/label_padding_middle": "ui/ui_edu_common.json", - "add_resource_body_content_stack/label_two_centering_panel": "ui/ui_edu_common.json", - "add_resource_body_content_stack/label_two_centering_panel/teams_share_label": "ui/ui_edu_common.json", - "add_resource_body_content_stack/learn_more_padding_middle": "ui/ui_edu_common.json", - "add_resource_body_content_stack/link1": "ui/ui_edu_common.json", - "add_resource_body_content_stack/url_padding_middle": "ui/ui_edu_common.json", - "add_resource_body_content_stack/url_label": "ui/ui_edu_common.json", - "add_resource_body_content_stack/url_textbox": "ui/ui_edu_common.json", - "add_resource_body_content_stack/inline_notification": "ui/ui_edu_common.json", - "add_resource_body_content_stack/inline_notification_spacer": "ui/ui_edu_common.json", - "add_resource_body_content_stack/button_name_label": "ui/ui_edu_common.json", - "add_resource_body_content_stack/button_middle_spacer": "ui/ui_edu_common.json", - "add_resource_body_content_stack/button_name_textbox": "ui/ui_edu_common.json", - "add_resource_body_content_stack/button_name_textbox_next_disabled": "ui/ui_edu_common.json", - "add_edit_resource_body_content_stack": "ui/ui_edu_common.json", - "add_edit_resource_body_content_stack/scroll_content": "ui/ui_edu_common.json", - "add_edit_resource_body_content_stack/scroll_content/scrolling_panel": "ui/ui_edu_common.json", - "resource_popup_buttons": "ui/ui_edu_common.json", - "resource_popup_buttons/done_button": "ui/ui_edu_common.json", - "resource_popup_buttons/button_padding": "ui/ui_edu_common.json", - "resource_popup_buttons/back_button_panel": "ui/ui_edu_common.json", - "resource_popup_buttons/back_button_panel/back_button_enabled": "ui/ui_edu_common.json", - "resource_popup_buttons/back_button_panel/back_button_disabled": "ui/ui_edu_common.json", - "add_resource_popup_lower_button_panel": "ui/ui_edu_common.json", - "add_resource_popup_lower_button_panel/edit_resource_popup_buttons": "ui/ui_edu_common.json", - "add_resource_popup_lower_button_panel/add_resource_popup_buttons": "ui/ui_edu_common.json", - "share_dialog_body_text": "ui/ui_edu_common.json", - "share_dialog_body_text/tts_border": "ui/ui_edu_common.json", - "share_dialog_body_text/text": "ui/ui_edu_common.json", - "share_icon": "ui/ui_edu_common.json", - "share_label": "ui/ui_edu_common.json", - "share_label/share_image_offset_panel": "ui/ui_edu_common.json", - "share_label/share_image_offset_panel/link_share": "ui/ui_edu_common.json", - "copy_link_stack_panel": "ui/ui_edu_common.json", - "copy_link_stack_panel/link_box": "ui/ui_edu_common.json", - "copy_link_stack_panel/copy_button": "ui/ui_edu_common.json", - "icon_stack_panel": "ui/ui_edu_common.json", - "icon_stack_panel/padding_left": "ui/ui_edu_common.json", - "icon_stack_panel/teams_button": "ui/ui_edu_common.json", - "icon_stack_panel/teams_mail_padding": "ui/ui_edu_common.json", - "icon_stack_panel/mail_button": "ui/ui_edu_common.json", - "icon_stack_panel/mail_classrooms_padding": "ui/ui_edu_common.json", - "icon_stack_panel/classrooms_button": "ui/ui_edu_common.json", - "icon_stack_panel/padding_right": "ui/ui_edu_common.json", - "default_share_button_contents": "ui/ui_edu_common.json", - "default_share_button_contents/background": "ui/ui_edu_common.json", - "default_share_button_contents/image": "ui/ui_edu_common.json", - "default_share_button": "ui/ui_edu_common.json", - "default_share_button/default": "ui/ui_edu_common.json", - "default_share_button/hover": "ui/ui_edu_common.json", - "default_share_button/pressed": "ui/ui_edu_common.json", - "vertical_divider": "ui/ui_edu_common.json", - "vertical_divider/divider": "ui/ui_edu_common.json", - "horizontal_divider": "ui/ui_edu_common.json", - "horizontal_divider/divider": "ui/ui_edu_common.json", - "stack_panel_grid_slot": "ui/ui_edu_common.json", - "stack_panel_grid_slot/stack_panel_grid_item_panel": "ui/ui_edu_common.json", - "stack_panel_grid_slot/stack_panel_grid_item_panel/stack_panel_grid_item": "ui/ui_edu_common.json", - "stack_panel_grid_row": "ui/ui_edu_common.json", - "stack_panel_grid_row/stack_panel_grid_row_item": "ui/ui_edu_common.json", - "stack_panel_grid_row/stack_panel_grid_row_item/row": "ui/ui_edu_common.json", - "stack_panel_grid_row/divider": "ui/ui_edu_common.json", - "stack_panel_grid_row/divider/line": "ui/ui_edu_common.json", - "stack_panel_grid": "ui/ui_edu_common.json", - "border": "ui/ui_edu_common.json", - "description_panel": "ui/ui_edu_common.json", - "description_panel/border": "ui/ui_edu_common.json", - "description_panel/description": "ui/ui_edu_common.json", - "edu_share_text_popup": "ui/ui_edu_common.json", - "teams_edu_share_text_popup": "ui/ui_edu_common.json", - "teams_edu_share_resource_popup": "ui/ui_edu_common.json", - "teams_edu_simple_share_resource_popup": "ui/ui_edu_common.json", - "joincode_edu_popup": "ui/ui_edu_common.json", - "add_resource_dialog": "ui/ui_edu_common.json", - "share_popup_dialog_factory": "ui/ui_edu_common.json", - "inline_notification": "ui/ui_edu_common.json", - "inline_notification/stack": "ui/ui_edu_common.json", - "inline_notification/stack/icon": "ui/ui_edu_common.json", - "inline_notification/stack/spacer": "ui/ui_edu_common.json", - "inline_notification/stack/warning_text": "ui/ui_edu_common.json", - "search_button_content": "ui/ui_edu_common.json", - "search_bar_and_home_button": "ui/ui_edu_common.json", - "search_bar_and_home_button/search_bar": "ui/ui_edu_common.json", - "search_bar_and_home_button/search_bar/search_bar": "ui/ui_edu_common.json", - "search_bar_and_home_button/search_button": "ui/ui_edu_common.json", - "search_bar_and_home_button/search_pad": "ui/ui_edu_common.json", - "search_bar_and_home_button/home_button": "ui/ui_edu_common.json", - "search_bar_and_home_button/end_pad": "ui/ui_edu_common.json", - "hotbar_hint": "ui/ui_edu_common.json", - "hotbar_hint/inactive_slot_dimmer": "ui/ui_edu_common.json", - "hotbar_hint/bound_key_glyph_background": "ui/ui_edu_common.json", - "hotbar_hint/bound_key_glyph_background/bound_key_glyph_text": "ui/ui_edu_common.json", - "view_toggle_content": "ui/ui_edu_common.json", - "view_toggle_content/button_image_templates": "ui/ui_edu_common.json", - "view_toggle_content/button_image_templates/image_color_templates": "ui/ui_edu_common.json", - "view_toggle_content/button_image_worlds": "ui/ui_edu_common.json", - "view_toggle_content/button_label_wrapper": "ui/ui_edu_common.json", - "view_toggle_content/button_label_wrapper/button_label": "ui/ui_edu_common.json", - "view_toggle_content/left_edge_text_padding": "ui/ui_edu_common.json", - "worlds_and_templates_search_bar": "ui/ui_edu_common.json", - "worlds_and_templates_search_bar/stack_panel": "ui/ui_edu_common.json", - "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper": "ui/ui_edu_common.json", - "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper/search_bar": "ui/ui_edu_common.json", - "worlds_and_templates_search_bar/stack_panel/temp_padding": "ui/ui_edu_common.json", - "worlds_and_templates_search_bar/stack_panel/view_toggle_background": "ui/ui_edu_common.json", - "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel": "ui/ui_edu_common.json", - "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/left_edge_padding": "ui/ui_edu_common.json", - "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/view_toggle_button": "ui/ui_edu_common.json", - "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/right_edge_padding": "ui/ui_edu_common.json", - "edu_cloud_conflict_resolution_popup_dialog_factory": "ui/ui_edu_common.json", - "edu_cloud_conflict_resolution_popup": "ui/ui_edu_common.json", - "edu_cloud_conflict_resolution_content": "ui/ui_edu_common.json", - "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper": "ui/ui_edu_common.json", - "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/tts_border": "ui/ui_edu_common.json", - "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/conflict_resolution_description": "ui/ui_edu_common.json", - "edu_cloud_conflict_resolution_content/padding1": "ui/ui_edu_common.json", - "edu_cloud_conflict_resolution_content/world_info_wrapper": "ui/ui_edu_common.json", - "edu_cloud_conflict_resolution_content/world_info_wrapper/tts_border": "ui/ui_edu_common.json", - "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack": "ui/ui_edu_common.json", - "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_name_label": "ui/ui_edu_common.json", - "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_last_changed_label": "ui/ui_edu_common.json", - "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_name_label": "ui/ui_edu_common.json", - "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_last_changed_label": "ui/ui_edu_common.json", - "edu_cloud_conflict_resolution_content/padding2": "ui/ui_edu_common.json", - "edu_cloud_conflict_resolution_content/keep_local_button": "ui/ui_edu_common.json", - "edu_cloud_conflict_resolution_content/keep_cloud_button": "ui/ui_edu_common.json", - "edu_cloud_conflict_resolution_content/keep_both_button": "ui/ui_edu_common.json", - "nested_buttons_base_definition": "ui/ui_edu_common.json", - }, - "purchase_common": { - "banner_fill": "ui/ui_purchase_common.json", - "banner_empty": "ui/ui_purchase_common.json", - "screenshots_grid_item": "ui/ui_purchase_common.json", - "screenshots_grid_item/frame": "ui/ui_purchase_common.json", - "screenshots_grid_item/frame/screenshot_image": "ui/ui_purchase_common.json", - "screenshots_grid_item/frame/progress_loading": "ui/ui_purchase_common.json", - "screenshots_grid_item/frame/screenshot_button": "ui/ui_purchase_common.json", - "screenshots_grid_item/frame/screenshot_button/hover": "ui/ui_purchase_common.json", - "screenshots_grid_item/frame/screenshot_button/pressed": "ui/ui_purchase_common.json", - "screenshots_grid": "ui/ui_purchase_common.json", - "key_image_frame": "ui/ui_purchase_common.json", - "key_image_frame/zoomed": "ui/ui_purchase_common.json", - "offer_grid_item": "ui/ui_purchase_common.json", - "offer_grid_item/frame": "ui/ui_purchase_common.json", - "offer_grid_item/frame/offer_key_art": "ui/ui_purchase_common.json", - "offer_grid_item/frame/offer_button": "ui/ui_purchase_common.json", - "offer_grid_item/frame/offer_button/hover": "ui/ui_purchase_common.json", - "offer_grid_item/frame/offer_button/pressed": "ui/ui_purchase_common.json", - "offer_grid": "ui/ui_purchase_common.json", - "key_art_and_text": "ui/ui_purchase_common.json", - "key_art_and_text/key_image_panel": "ui/ui_purchase_common.json", - "key_art_and_text/key_image_panel/key_image": "ui/ui_purchase_common.json", - "key_art_and_text/padding": "ui/ui_purchase_common.json", - "key_art_and_text/description_scroll": "ui/ui_purchase_common.json", - "pack_description": "ui/ui_purchase_common.json", - }, - "common_buttons": { - "button_image": "ui/ui_template_buttons.json", - "background_button_image": "ui/ui_template_buttons.json", - "locked_button_image": "ui/ui_template_buttons.json", - "light_button_assets": "ui/ui_template_buttons.json", - "dark_button_assets": "ui/ui_template_buttons.json", - "focus_border": "ui/ui_template_buttons.json", - "new_ui_button_panel": "ui/ui_template_buttons.json", - "new_ui_button_panel/button_content": "ui/ui_template_buttons.json", - "new_ui_button_panel/border": "ui/ui_template_buttons.json", - "new_ui_form_fitting_button_panel": "ui/ui_template_buttons.json", - "new_ui_form_fitting_button_panel/border": "ui/ui_template_buttons.json", - "new_ui_width_fitting_button_panel": "ui/ui_template_buttons.json", - "new_ui_width_fitting_button_panel/border": "ui/ui_template_buttons.json", - "new_ui_height_fitting_button_panel": "ui/ui_template_buttons.json", - "new_ui_height_fitting_button_panel/border": "ui/ui_template_buttons.json", - "borderless_form_fitting_button_panel": "ui/ui_template_buttons.json", - "light_text_button": "ui/ui_template_buttons.json", - "light_text_button/default": "ui/ui_template_buttons.json", - "light_text_button/hover": "ui/ui_template_buttons.json", - "light_text_button/pressed": "ui/ui_template_buttons.json", - "light_text_button/locked": "ui/ui_template_buttons.json", - "dark_text_button": "ui/ui_template_buttons.json", - "dark_text_button/default": "ui/ui_template_buttons.json", - "dark_text_button/hover": "ui/ui_template_buttons.json", - "dark_text_button/pressed": "ui/ui_template_buttons.json", - "dark_text_button/locked": "ui/ui_template_buttons.json", - "new_ui_binding_button_label": "ui/ui_template_buttons.json", - "underline_button": "ui/ui_template_buttons.json", - "underline_button/default": "ui/ui_template_buttons.json", - "underline_button/default/label_default": "ui/ui_template_buttons.json", - "underline_button/hover": "ui/ui_template_buttons.json", - "underline_button/hover/label_hover": "ui/ui_template_buttons.json", - "underline_button/pressed": "ui/ui_template_buttons.json", - "underline_button/pressed/label_hover": "ui/ui_template_buttons.json", - "read_button": "ui/ui_template_buttons.json", - "read_button/read_button_inner": "ui/ui_template_buttons.json", - "light_content_form_fitting_button": "ui/ui_template_buttons.json", - "dark_content_form_fitting_button": "ui/ui_template_buttons.json", - "light_text_form_fitting_button": "ui/ui_template_buttons.json", - "dark_text_form_fitting_button": "ui/ui_template_buttons.json", - "transparent_content_button": "ui/ui_template_buttons.json", - "single_image_with_border_button": "ui/ui_template_buttons.json", - "light_content_button": "ui/ui_template_buttons.json", - "light_content_button/default": "ui/ui_template_buttons.json", - "light_content_button/hover": "ui/ui_template_buttons.json", - "light_content_button/pressed": "ui/ui_template_buttons.json", - "light_content_button/locked": "ui/ui_template_buttons.json", - "light_content_button_control_content": "ui/ui_template_buttons.json", - "light_content_button_control_content/default": "ui/ui_template_buttons.json", - "light_content_button_control_content/hover": "ui/ui_template_buttons.json", - "light_content_button_control_content/pressed": "ui/ui_template_buttons.json", - "light_content_button_control_content/locked": "ui/ui_template_buttons.json", - "deactivated_light_content_button": "ui/ui_template_buttons.json", - "dark_content_button": "ui/ui_template_buttons.json", - "dark_content_button/default": "ui/ui_template_buttons.json", - "dark_content_button/hover": "ui/ui_template_buttons.json", - "dark_content_button/pressed": "ui/ui_template_buttons.json", - "dark_content_button/locked": "ui/ui_template_buttons.json", - "no_background_content_button": "ui/ui_template_buttons.json", - "no_background_content_button/default": "ui/ui_template_buttons.json", - "no_background_content_button/hover": "ui/ui_template_buttons.json", - "no_background_content_button/pressed": "ui/ui_template_buttons.json", - "no_background_content_button/locked": "ui/ui_template_buttons.json", - "button_content_panel": "ui/ui_template_buttons.json", - "button_content_panel/content": "ui/ui_template_buttons.json", - "form_fitting_button_content_panel": "ui/ui_template_buttons.json", - "form_fitting_button_content_panel/content": "ui/ui_template_buttons.json", - "horizontal_form_fitting": "ui/ui_template_buttons.json", - "horizontal_form_fitting/content": "ui/ui_template_buttons.json", - "width_fitting_button_content_panel": "ui/ui_template_buttons.json", - "width_fitting_button_content_panel/content": "ui/ui_template_buttons.json", - "height_fitting_button_content_panel": "ui/ui_template_buttons.json", - "height_fitting_button_content_panel/content": "ui/ui_template_buttons.json", - "light_glyph_button": "ui/ui_template_buttons.json", - "light_glyph_button/default": "ui/ui_template_buttons.json", - "light_glyph_button/hover": "ui/ui_template_buttons.json", - "light_glyph_button/pressed": "ui/ui_template_buttons.json", - "light_glyph_button/locked": "ui/ui_template_buttons.json", - "dark_glyph_button_default": "ui/ui_template_buttons.json", - "dark_glyph_button_hover": "ui/ui_template_buttons.json", - "dark_glyph_button_pressed": "ui/ui_template_buttons.json", - "dark_glyph_button_locked": "ui/ui_template_buttons.json", - "dark_glyph_button": "ui/ui_template_buttons.json", - "dark_glyph_button/default": "ui/ui_template_buttons.json", - "dark_glyph_button/hover": "ui/ui_template_buttons.json", - "dark_glyph_button/pressed": "ui/ui_template_buttons.json", - "dark_glyph_button/locked": "ui/ui_template_buttons.json", - "dark_glyph_button_with_custom_control": "ui/ui_template_buttons.json", - "dark_glyph_button_with_custom_control/custom_control": "ui/ui_template_buttons.json", - "dark_glyph_button_with_custom_control/default": "ui/ui_template_buttons.json", - "dark_glyph_button_with_custom_control/hover": "ui/ui_template_buttons.json", - "dark_glyph_button_with_custom_control/pressed": "ui/ui_template_buttons.json", - "dark_glyph_button_with_custom_control/locked": "ui/ui_template_buttons.json", - "glyph_content_panel": "ui/ui_template_buttons.json", - "glyph_content_panel/glyph_button_content": "ui/ui_template_buttons.json", - "hyperlink_button": "ui/ui_template_buttons.json", - "hyperlink_content_button": "ui/ui_template_buttons.json", - "nested_button_assets": "ui/ui_template_buttons.json", - "nested_overlay_assets": "ui/ui_template_buttons.json", - "nested_label_content_background_assets": "ui/ui_template_buttons.json", - "nested_label_background_assets": "ui/ui_template_buttons.json", - "nested_transparent_label_content_background_assets": "ui/ui_template_buttons.json", - "nested_transparent_label_content_background_assets/assets": "ui/ui_template_buttons.json", - "nested_base_label": "ui/ui_template_buttons.json", - "nested_centered_label_control": "ui/ui_template_buttons.json", - "nested_centered_label_control/label": "ui/ui_template_buttons.json", - "nested_label_with_image_control": "ui/ui_template_buttons.json", - "nested_label_with_image_control/image": "ui/ui_template_buttons.json", - "nested_label_with_image_control/image_to_label_padding": "ui/ui_template_buttons.json", - "nested_label_with_image_control/label_panel": "ui/ui_template_buttons.json", - "nested_label_with_image_control/label_panel/label": "ui/ui_template_buttons.json", - "nested_six_part_empty_definition": "ui/ui_template_buttons.json", - "nested_six_part_label_control": "ui/ui_template_buttons.json", - "nested_six_part_label_control/left_top_label": "ui/ui_template_buttons.json", - "nested_six_part_label_control/left_middle_label": "ui/ui_template_buttons.json", - "nested_six_part_label_control/left_bottom_label": "ui/ui_template_buttons.json", - "nested_six_part_label_control/right_top_label": "ui/ui_template_buttons.json", - "nested_six_part_label_control/right_middle_label": "ui/ui_template_buttons.json", - "nested_six_part_label_control/right_bottom_label": "ui/ui_template_buttons.json", - "nested_dark_button_assets": "ui/ui_template_buttons.json", - "nested_content_background_assets": "ui/ui_template_buttons.json", - "nested_content_overlay_assets": "ui/ui_template_buttons.json", - "nested_dark_control_with_image": "ui/ui_template_buttons.json", - "nested_dark_control_with_image/background": "ui/ui_template_buttons.json", - "nested_dark_control_with_image/image_panel": "ui/ui_template_buttons.json", - "nested_dark_control_with_image/image_panel/image": "ui/ui_template_buttons.json", - "nestable_button": "ui/ui_template_buttons.json", - "nestable_button/nested_controls_panel": "ui/ui_template_buttons.json", - "nestable_button/nested_controls_panel/locked_overlay": "ui/ui_template_buttons.json", - "nestable_button/nested_controls_panel/nested_controls": "ui/ui_template_buttons.json", - "nestable_button/base_button": "ui/ui_template_buttons.json", - "nestable_button/base_button/default": "ui/ui_template_buttons.json", - "nestable_button/base_button/hover": "ui/ui_template_buttons.json", - "nestable_button/base_button/pressed": "ui/ui_template_buttons.json", - "nestable_button/base_button/locked": "ui/ui_template_buttons.json", - "nested_button_base": "ui/ui_template_buttons.json", - "nested_button_base/button_overlay": "ui/ui_template_buttons.json", - "nested_button_base/button_control": "ui/ui_template_buttons.json", - "nested_button_base/button_control/control_area": "ui/ui_template_buttons.json", - "nested_button_base/button_control/control_area/background": "ui/ui_template_buttons.json", - "nested_button_base/button_control/control_area/control": "ui/ui_template_buttons.json", - "nested_button_base/button_control/control_area/overlay": "ui/ui_template_buttons.json", - "nested_button_base/button_control/button_stack_padding": "ui/ui_template_buttons.json", - "nested_button_base/button_control/label_area": "ui/ui_template_buttons.json", - "nested_button_base/button_control/label_area/background": "ui/ui_template_buttons.json", - "nested_button_base/button_control/label_area/control_background": "ui/ui_template_buttons.json", - "nested_button_base/button_control/label_area/control": "ui/ui_template_buttons.json", - "dark_nestable_button": "ui/ui_template_buttons.json", - "transparent_label_nestable_button": "ui/ui_template_buttons.json", - "static_tooltip_notification_panel": "ui/ui_template_buttons.json", - "static_tooltip_notification_panel/default": "ui/ui_template_buttons.json", - "static_tooltip_notification_panel/pressed": "ui/ui_template_buttons.json", - "static_tooltip_notification_panel/hover": "ui/ui_template_buttons.json", - "static_tooltip_notification_panel/locked": "ui/ui_template_buttons.json", - "static_tooltip_notification_panel/static_tooltip_popup_panel": "ui/ui_template_buttons.json", - "dynamic_tooltip_notification_panel": "ui/ui_template_buttons.json", - "dynamic_tooltip_notification_panel/default": "ui/ui_template_buttons.json", - "dynamic_tooltip_notification_panel/pressed": "ui/ui_template_buttons.json", - "dynamic_tooltip_notification_panel/hover": "ui/ui_template_buttons.json", - "dynamic_tooltip_notification_panel/locked": "ui/ui_template_buttons.json", - "dynamic_tooltip_notification_panel/dyanmic_tooltip_popup_panel": "ui/ui_template_buttons.json", - "text_body_focus_border_for_controller_button": "ui/ui_template_buttons.json", - "text_body_focus_border_for_controller_button/default": "ui/ui_template_buttons.json", - "text_body_focus_border_for_controller_button/hover": "ui/ui_template_buttons.json", - "text_body_focus_border_for_controller_button/hover/focus_border": "ui/ui_template_buttons.json", - "text_body_focus_border_for_controller_button/text_control": "ui/ui_template_buttons.json", - }, - "common_dialogs": { - "standard_title_label": "ui/ui_template_dialogs.json", - "title_label": "ui/ui_template_dialogs.json", - "title_label/common_dialogs_0": "ui/ui_template_dialogs.json", - "title_label/common_dialogs_1": "ui/ui_template_dialogs.json", - "main_panel_three_buttons": "ui/ui_template_dialogs.json", - "main_panel_three_buttons/common_panel": "ui/ui_template_dialogs.json", - "main_panel_three_buttons/title_label": "ui/ui_template_dialogs.json", - "main_panel_three_buttons/panel_indent": "ui/ui_template_dialogs.json", - "main_panel_three_buttons/panel_indent/inside_header_panel": "ui/ui_template_dialogs.json", - "main_panel_three_buttons/top_button_panel": "ui/ui_template_dialogs.json", - "main_panel_three_buttons/middle_button_panel": "ui/ui_template_dialogs.json", - "main_panel_three_buttons/bottom_button_panel": "ui/ui_template_dialogs.json", - "main_panel_two_buttons": "ui/ui_template_dialogs.json", - "main_panel_two_buttons/common_panel": "ui/ui_template_dialogs.json", - "main_panel_two_buttons/title_label": "ui/ui_template_dialogs.json", - "main_panel_two_buttons/panel_indent": "ui/ui_template_dialogs.json", - "main_panel_two_buttons/panel_indent/inside_header_panel": "ui/ui_template_dialogs.json", - "main_panel_two_buttons/top_button_panel": "ui/ui_template_dialogs.json", - "main_panel_two_buttons/bottom_button_panel": "ui/ui_template_dialogs.json", - "main_panel_one_button": "ui/ui_template_dialogs.json", - "main_panel_one_button/common_panel": "ui/ui_template_dialogs.json", - "main_panel_one_button/title_label": "ui/ui_template_dialogs.json", - "main_panel_one_button/panel_indent": "ui/ui_template_dialogs.json", - "main_panel_one_button/panel_indent/inside_header_panel": "ui/ui_template_dialogs.json", - "main_panel_one_button/bottom_button_panel": "ui/ui_template_dialogs.json", - "main_panel_no_buttons": "ui/ui_template_dialogs.json", - "main_panel_no_buttons/common_panel": "ui/ui_template_dialogs.json", - "main_panel_no_buttons/title_label": "ui/ui_template_dialogs.json", - "main_panel_no_buttons/panel_indent": "ui/ui_template_dialogs.json", - "main_panel_no_buttons/panel_indent/inside_header_panel": "ui/ui_template_dialogs.json", - "main_panel_no_title_no_buttons": "ui/ui_template_dialogs.json", - "main_panel_no_title_no_buttons/common_panel": "ui/ui_template_dialogs.json", - "main_panel_no_title_no_buttons/panel_indent": "ui/ui_template_dialogs.json", - "main_panel_no_title_no_buttons/panel_indent/inside_header_panel": "ui/ui_template_dialogs.json", - "main_panel_small_title_one_button": "ui/ui_template_dialogs.json", - "main_panel_small_title_one_button/common_panel": "ui/ui_template_dialogs.json", - "main_panel_small_title_one_button/title_label": "ui/ui_template_dialogs.json", - "main_panel_small_title_one_button/panel_indent": "ui/ui_template_dialogs.json", - "main_panel_small_title_one_button/panel_indent/inside_header_panel": "ui/ui_template_dialogs.json", - "main_panel_small_title_one_button/bottom_button_panel": "ui/ui_template_dialogs.json", - "main_panel": "ui/ui_template_dialogs.json", - "main_panel/modal_background_image": "ui/ui_template_dialogs.json", - "main_panel/panel_indent": "ui/ui_template_dialogs.json", - "main_panel/panel_indent/inside_header_panel": "ui/ui_template_dialogs.json", - "form_fitting_main_panel_no_buttons": "ui/ui_template_dialogs.json", - "form_fitting_main_panel_no_buttons/common_panel": "ui/ui_template_dialogs.json", - "common_panel": "ui/ui_template_dialogs.json", - "common_panel/bg_image": "ui/ui_template_dialogs.json", - "dialog_background_common": "ui/ui_template_dialogs.json", - "dialog_background_thin": "ui/ui_template_dialogs.json", - "flat_solid_background": "ui/ui_template_dialogs.json", - "dialog_background_hollow_common": "ui/ui_template_dialogs.json", - "dialog_background_hollow_common/control": "ui/ui_template_dialogs.json", - "dialog_background_hollow_common/control/inside_header_panel": "ui/ui_template_dialogs.json", - "dialog_background_hollow_common/control/close_button_holder": "ui/ui_template_dialogs.json", - "dialog_background_hollow_common/control/title_label": "ui/ui_template_dialogs.json", - "common_close_button_holder": "ui/ui_template_dialogs.json", - "common_close_button_holder/close": "ui/ui_template_dialogs.json", - "common_close_button_holder/compact_close": "ui/ui_template_dialogs.json", - "dialog_background_opaque": "ui/ui_template_dialogs.json", - "dialog_background_opaque_with_child": "ui/ui_template_dialogs.json", - "dialog_background_hollow_1": "ui/ui_template_dialogs.json", - "dialog_background_hollow_2": "ui/ui_template_dialogs.json", - "dialog_background_hollow_3": "ui/ui_template_dialogs.json", - "dialog_background_hollow_4": "ui/ui_template_dialogs.json", - "dialog_background_hollow_6": "ui/ui_template_dialogs.json", - "full_screen_background": "ui/ui_template_dialogs.json", - "full_screen_background/background": "ui/ui_template_dialogs.json", - "background_image": "ui/ui_template_dialogs.json", - }, - "common_tabs": { - "empty_tab_content": "ui/ui_template_tabs.json", - "tab_image": "ui/ui_template_tabs.json", - "tab_panel": "ui/ui_template_tabs.json", - "tab_panel/tab_image": "ui/ui_template_tabs.json", - "tab_panel/tab_content_sizer": "ui/ui_template_tabs.json", - "tab_panel/tab_content_sizer/tab_content": "ui/ui_template_tabs.json", - "base_tab": "ui/ui_template_tabs.json", - "tab_top": "ui/ui_template_tabs.json", - "tab_left": "ui/ui_template_tabs.json", - "tab_right": "ui/ui_template_tabs.json", - "pocket_tab_left": "ui/ui_template_tabs.json", - "pocket_tab_right": "ui/ui_template_tabs.json", - "pocket_tab_close_button": "ui/ui_template_tabs.json", - "pocket_tab_close_button/close_button": "ui/ui_template_tabs.json", - "pocket_tab_help_button": "ui/ui_template_tabs.json", - "pocket_tab_help_button/help_button": "ui/ui_template_tabs.json", - "pocket_tab_close_and_help_button": "ui/ui_template_tabs.json", - "pocket_tab_close_and_help_button/close_button": "ui/ui_template_tabs.json", - "pocket_tab_close_and_help_button/help_button": "ui/ui_template_tabs.json", - "tab_close_and_help_button": "ui/ui_template_tabs.json", - "tab_close_and_help_button/close_button": "ui/ui_template_tabs.json", - "tab_close_and_help_button/help_button": "ui/ui_template_tabs.json", - }, - "common_toggles": { - "content_toggle_image_panel": "ui/ui_template_toggles.json", - "content_toggle_image_panel/icon": "ui/ui_template_toggles.json", - "content_toggle_label_panel": "ui/ui_template_toggles.json", - "content_toggle_label_panel/toggle_label": "ui/ui_template_toggles.json", - "content_toggle_icon_panel": "ui/ui_template_toggles.json", - "content_toggle_icon_panel/content_toggle_image": "ui/ui_template_toggles.json", - "toggle_content_panel": "ui/ui_template_toggles.json", - "toggle_content_panel/toggle_image_panel": "ui/ui_template_toggles.json", - "toggle_content_panel/toggle_image_padding_label": "ui/ui_template_toggles.json", - "toggle_content_panel/toggle_label_panel": "ui/ui_template_toggles.json", - "toggle_content_panel/toggle_label_padding_toggle_icon": "ui/ui_template_toggles.json", - "toggle_content_panel/toggle_icon": "ui/ui_template_toggles.json", - "vertical_form_fitting_toggle_content": "ui/ui_template_toggles.json", - "vertical_form_fitting_toggle_content/toggle_image_panel": "ui/ui_template_toggles.json", - "vertical_form_fitting_toggle_content/toggle_image_padding_label": "ui/ui_template_toggles.json", - "vertical_form_fitting_toggle_content/toggle_label_panel": "ui/ui_template_toggles.json", - "vertical_form_fitting_toggle_content/toggle_label_padding_toggle_icon": "ui/ui_template_toggles.json", - "vertical_form_fitting_toggle_content/toggle_icon": "ui/ui_template_toggles.json", - "light_text_toggle": "ui/ui_template_toggles.json", - "light_image_toggle": "ui/ui_template_toggles.json", - "light_content_toggle": "ui/ui_template_toggles.json", - "dark_ui_toggle": "ui/ui_template_toggles.json", - "dark_text_toggle": "ui/ui_template_toggles.json", - "dark_image_toggle": "ui/ui_template_toggles.json", - "dark_content_toggle": "ui/ui_template_toggles.json", - "dark_vertical_template_toggle": "ui/ui_template_toggles.json", - "dark_vertical_form_fitting_content_toggle": "ui/ui_template_toggles.json", - "dark_vertical_form_fitting_content_toggle/dark_content_toggle": "ui/ui_template_toggles.json", - "dark_template_toggle": "ui/ui_template_toggles.json", - "light_template_toggle": "ui/ui_template_toggles.json", - "light_ui_toggle": "ui/ui_template_toggles.json", - "switch_toggle": "ui/ui_template_toggles.json", - "light_text_toggle_collection": "ui/ui_template_toggles.json", - "light_image_toggle_collection": "ui/ui_template_toggles.json", - "dark_text_toggle_collection": "ui/ui_template_toggles.json", - "dark_image_toggle_collection": "ui/ui_template_toggles.json", - "dark_ui_toggle_collection": "ui/ui_template_toggles.json", - "light_ui_toggle_collection": "ui/ui_template_toggles.json", - "switch_toggle_collection": "ui/ui_template_toggles.json", - "toggle_state_panel": "ui/ui_template_toggles.json", - "toggle_state_panel/button_panel": "ui/ui_template_toggles.json", - "toggle_unchecked": "ui/ui_template_toggles.json", - "toggle_checked": "ui/ui_template_toggles.json", - "toggle_unchecked_hover": "ui/ui_template_toggles.json", - "toggle_checked_hover": "ui/ui_template_toggles.json", - "toggle_locked": "ui/ui_template_toggles.json", - "toggle_unchecked_locked": "ui/ui_template_toggles.json", - "toggle_checked_locked": "ui/ui_template_toggles.json", - "toggle_unchecked_hover_with_chevron": "ui/ui_template_toggles.json", - "toggle_checked_hover_with_chevron": "ui/ui_template_toggles.json", - "toggle_image": "ui/ui_template_toggles.json", - "toggle_image/image": "ui/ui_template_toggles.json", - "radio_off_icon": "ui/ui_template_toggles.json", - "radio_off_hover_icon": "ui/ui_template_toggles.json", - "radio_on_icon": "ui/ui_template_toggles.json", - "radio_on_hover_icon": "ui/ui_template_toggles.json", - "check_box_button_toggle_image": "ui/ui_template_toggles.json", - "checkbox_button_checked_state": "ui/ui_template_toggles.json", - "checkbox_button_unchecked_state": "ui/ui_template_toggles.json", - "checkbox_button_checked_hover_state": "ui/ui_template_toggles.json", - "checkbox_button_unchecked_hover_state": "ui/ui_template_toggles.json", - "checkbox_button_checked_locked_state": "ui/ui_template_toggles.json", - "checkbox_button_unchecked_locked_state": "ui/ui_template_toggles.json", - "toggle_checkbox_unchecked": "ui/ui_template_toggles.json", - "toggle_checkbox_checked": "ui/ui_template_toggles.json", - "toggle_checkbox_unchecked_hover": "ui/ui_template_toggles.json", - "toggle_checkbox_checked_hover": "ui/ui_template_toggles.json", - "toggle_checkbox_unchecked_locked": "ui/ui_template_toggles.json", - "toggle_checkbox_checked_locked": "ui/ui_template_toggles.json", - "check_box_button_ui_panel": "ui/ui_template_toggles.json", - "check_box_button_ui_panel/toggle_image": "ui/ui_template_toggles.json", - "check_box_button_ui_panel/toggle_image/button_content": "ui/ui_template_toggles.json", - "check_box_button_ui_panel/toggle_image/border": "ui/ui_template_toggles.json", - "check_box_button_ui_panel/toggle_image/checkbox_image": "ui/ui_template_toggles.json", - "check_box_button_ui_panel/toggle_image/checkbox_image/image": "ui/ui_template_toggles.json", - "button_and_checkbox_template": "ui/ui_template_toggles.json", - "button_with_checkbox_toggle": "ui/ui_template_toggles.json", - }, - "friendsbutton": { - "friendsdrawer_animated_icon": "ui/ui_friendsbutton.json", - "profilepicture": "ui/ui_friendsbutton.json", - "persona_icon_with_border": "ui/ui_friendsbutton.json", - "persona_icon_with_border/profile_icon": "ui/ui_friendsbutton.json", - "persona_icon_with_border/border_black": "ui/ui_friendsbutton.json", - "friendsdrawer_persona_icons": "ui/ui_friendsbutton.json", - "social_button_stackpanel": "ui/ui_friendsbutton.json", - "social_button_stackpanel/image_panel": "ui/ui_friendsbutton.json", - "social_button_stackpanel/image_panel/social_icon": "ui/ui_friendsbutton.json", - "social_button_hover_stackpanel": "ui/ui_friendsbutton.json", - "self_persona_stackpanel": "ui/ui_friendsbutton.json", - "self_persona_stackpanel/self_icon": "ui/ui_friendsbutton.json", - "single_friend_persona_stackpanel": "ui/ui_friendsbutton.json", - "single_friend_persona_stackpanel/self_icon": "ui/ui_friendsbutton.json", - "single_friend_persona_stackpanel/friend_one_icon": "ui/ui_friendsbutton.json", - "many_friend_persona_stackpanel": "ui/ui_friendsbutton.json", - "many_friend_persona_stackpanel/self_icon": "ui/ui_friendsbutton.json", - "many_friend_persona_stackpanel/extra_friends_text_panel": "ui/ui_friendsbutton.json", - "many_friend_persona_stackpanel/extra_friends_text_panel/background": "ui/ui_friendsbutton.json", - "many_friend_persona_stackpanel/extra_friends_text_panel/extra_members_label": "ui/ui_friendsbutton.json", - "many_friend_persona_stackpanel/extra_friends_text_panel/border_black": "ui/ui_friendsbutton.json", - "button": "ui/ui_friendsbutton.json", - "button/default": "ui/ui_friendsbutton.json", - "button/hover": "ui/ui_friendsbutton.json", - "button/pressed": "ui/ui_friendsbutton.json", - "button/locked": "ui/ui_friendsbutton.json", - "social_factory_stackpanel_default": "ui/ui_friendsbutton.json", - "social_factory_stackpanel_hovered": "ui/ui_friendsbutton.json", - "friendsdrawer_button_content": "ui/ui_friendsbutton.json", - "friendsdrawer_button_content/social_factory_stackpanel": "ui/ui_friendsbutton.json", - "friendsdrawer_button_content/padding_middle": "ui/ui_friendsbutton.json", - "friendsdrawer_button_content/vertically_centered_text": "ui/ui_friendsbutton.json", - "friendsdrawer_button_content/vertically_centered_text/top_padding": "ui/ui_friendsbutton.json", - "friendsdrawer_button_content/vertically_centered_text/profile_button_label": "ui/ui_friendsbutton.json", - "friendsdrawer_button_content/padding_right": "ui/ui_friendsbutton.json", - "friendsdrawer_hover_button_content": "ui/ui_friendsbutton.json", - "friends_drawer_popup": "ui/ui_friendsbutton.json", - }, - "iconbutton": { - "iconbutton_animated_icon": "ui/ui_iconbutton.json", - "button": "ui/ui_iconbutton.json", - "iconbutton_button_content": "ui/ui_iconbutton.json", - "iconbutton_button_content/icon_wrapper": "ui/ui_iconbutton.json", - "iconbutton_button_content/icon_wrapper/icon_with_border": "ui/ui_iconbutton.json", - "iconbutton_button_content/icon_wrapper/icon_with_border/iconbutton_animated_icon": "ui/ui_iconbutton.json", - "iconbutton_button_content/icon_wrapper/icon_with_border/border_black": "ui/ui_iconbutton.json", - "iconbutton_button_content/padding_middle": "ui/ui_iconbutton.json", - "iconbutton_button_content/vertically_centered_text": "ui/ui_iconbutton.json", - "iconbutton_button_content/vertically_centered_text/top_padding": "ui/ui_iconbutton.json", - "iconbutton_button_content/vertically_centered_text/profile_button_label": "ui/ui_iconbutton.json", - }, - "update_dimensions": { - "update_dimensions_update_and_play_button": "ui/update_dimensions.json", - "update_dimensions_description": "ui/update_dimensions.json", - "update_dimensions_label_panel": "ui/update_dimensions.json", - "make_backup_checkbox": "ui/update_dimensions.json", - "make_backup_checkbox/header_description_stack_panel": "ui/update_dimensions.json", - "make_backup_checkbox/header_description_stack_panel/checkbox_visuals": "ui/update_dimensions.json", - "make_backup_checkbox/header_description_stack_panel/buffer_panel": "ui/update_dimensions.json", - "make_backup_checkbox/header_description_stack_panel/buffer_panel/label": "ui/update_dimensions.json", - "make_backup_checkbox/header_description_stack_panel/another_panel": "ui/update_dimensions.json", - "world_upgrade": "ui/update_dimensions.json", - "update_dimensions_dialog": "ui/update_dimensions.json", - "update_dimensions_dialog/common_panel": "ui/update_dimensions.json", - "update_dimensions_dialog/title_label": "ui/update_dimensions.json", - "update_dimensions_dialog/panel_indent": "ui/update_dimensions.json", - "update_dimensions_dialog/panel_indent/inside_header_panel": "ui/update_dimensions.json", - "update_dimensions_dialog/top_button_panel": "ui/update_dimensions.json", - "update_dimensions_dialog/bottom_button_panel": "ui/update_dimensions.json", - "update_dimensions_dialog/world_upgrade_image": "ui/update_dimensions.json", - "gamepad_helpers": "ui/update_dimensions.json", - "gamepad_helpers/gamepad_helper_a": "ui/update_dimensions.json", - "update_dimensions_screen": "ui/update_dimensions.json", - "update_dimensions_screen_content": "ui/update_dimensions.json", - "update_dimensions_screen_content/update_dimensions_dialog": "ui/update_dimensions.json", - "update_dimensions_screen_content/gamepad_helpers": "ui/update_dimensions.json", - }, - "update_version": { - "update_version_screen": "ui/update_version.json", - "update_version_popup": "ui/update_version.json", - "background": "ui/update_version.json", - "update_version_content": "ui/update_version.json", - "update_version_content/top_of_version_panel": "ui/update_version.json", - "update_version_content/spacer_1px": "ui/update_version.json", - "update_version_content/update_body_text": "ui/update_version.json", - "update_version_content/spacer_1px_2": "ui/update_version.json", - "patch_notes_panel": "ui/update_version.json", - "patch_notes_panel/patch_notes_text": "ui/update_version.json", - "picture_and_patch_notes": "ui/update_version.json", - "picture_and_patch_notes/patch_notes_image_outline": "ui/update_version.json", - "picture_and_patch_notes/patch_notes_image_outline/patch_notes_image": "ui/update_version.json", - "picture_and_patch_notes/patch_notes_panel": "ui/update_version.json", - "patch_notes": "ui/update_version.json", - "patch_notes/patch_notes_text": "ui/update_version.json", - "update_body_text": "ui/update_version.json", - "update_button": "ui/update_version.json", - }, - "world_recovery": { - "world_recovery_screen": "ui/world_recovery_screen.json", - "world_recovery_screen_content": "ui/world_recovery_screen.json", - "world_recovery_screen_content/dialog": "ui/world_recovery_screen.json", - "description_panel": "ui/world_recovery_screen.json", - "scrolling_panel": "ui/world_recovery_screen.json", - "description_label": "ui/world_recovery_screen.json", - "button_panel": "ui/world_recovery_screen.json", - "background": "ui/world_recovery_screen.json", - }, - "world_templates": { - "horizontal_padding": "ui/world_templates_screen.json", - "world_icon": "ui/world_templates_screen.json", - "realms_icon": "ui/world_templates_screen.json", - "label_background": "ui/world_templates_screen.json", - "lock_icon": "ui/world_templates_screen.json", - "realms_plus_icon": "ui/world_templates_screen.json", - "new_world_toggle": "ui/world_templates_screen.json", - "new_realm_toggle": "ui/world_templates_screen.json", - "world_button_content": "ui/world_templates_screen.json", - "world_button_content/horizontal_padding_0": "ui/world_templates_screen.json", - "world_button_content/icon_panel": "ui/world_templates_screen.json", - "world_button_content/horizontal_padding_1": "ui/world_templates_screen.json", - "world_button_content/world_button_label_panel": "ui/world_templates_screen.json", - "world_button_content/world_button_label_panel/world_button_label": "ui/world_templates_screen.json", - "world_button_content/horizontal_padding_2": "ui/world_templates_screen.json", - "world_button_label": "ui/world_templates_screen.json", - "common_button_template": "ui/world_templates_screen.json", - "generate_random": "ui/world_templates_screen.json", - "help_button": "ui/world_templates_screen.json", - "grid_button_content_template": "ui/world_templates_screen.json", - "grid_button_content_template/content": "ui/world_templates_screen.json", - "label_content_template": "ui/world_templates_screen.json", - "label_content_template/label_panel": "ui/world_templates_screen.json", - "label_content_template/label_panel/label_panel_layout": "ui/world_templates_screen.json", - "label_content_template/label_panel/label_panel_layout/label": "ui/world_templates_screen.json", - "my_templates_label": "ui/world_templates_screen.json", - "realms_plus_templates_label": "ui/world_templates_screen.json", - "custom_templates_label": "ui/world_templates_screen.json", - "generate_random_button": "ui/world_templates_screen.json", - "realms_templates_info": "ui/world_templates_screen.json", - "realms_templates_info/info_label": "ui/world_templates_screen.json", - "world_list_text": "ui/world_templates_screen.json", - "world_template_screenshot": "ui/world_templates_screen.json", - "world_template_screenshot/picture": "ui/world_templates_screen.json", - "world_template_name": "ui/world_templates_screen.json", - "world_template_description": "ui/world_templates_screen.json", - "world_template_version": "ui/world_templates_screen.json", - "template_download_text": "ui/world_templates_screen.json", - "world_template_text_panel": "ui/world_templates_screen.json", - "world_template_text_panel/text_indent": "ui/world_templates_screen.json", - "world_template_text_panel/text_indent/top_side": "ui/world_templates_screen.json", - "world_template_text_panel/text_indent/top_side/world_template_name": "ui/world_templates_screen.json", - "world_template_text_panel/text_indent/top_side/download_text_label": "ui/world_templates_screen.json", - "world_template_text_panel/text_indent/bottom_side": "ui/world_templates_screen.json", - "world_template_text_panel/text_indent/bottom_side/csb_icon": "ui/world_templates_screen.json", - "world_template_text_panel/text_indent/bottom_side/pad": "ui/world_templates_screen.json", - "world_template_text_panel/text_indent/bottom_side/world_template_description": "ui/world_templates_screen.json", - "world_template_text_panel/text_indent/bottom_side/world_template_version": "ui/world_templates_screen.json", - "csb_banner": "ui/world_templates_screen.json", - "csb_banner/banner": "ui/world_templates_screen.json", - "world_template_content_panel": "ui/world_templates_screen.json", - "world_template_content_panel/world_template_screenshot": "ui/world_templates_screen.json", - "world_template_content_panel/world_template_text_panel": "ui/world_templates_screen.json", - "world_template_content_panel/lock_panel": "ui/world_templates_screen.json", - "world_template_content_panel/lock_panel/lock_icon": "ui/world_templates_screen.json", - "world_template_item_button": "ui/world_templates_screen.json", - "realms_plus_template_item_button": "ui/world_templates_screen.json", - "world_template_item": "ui/world_templates_screen.json", - "world_template_item/world_template_item_button": "ui/world_templates_screen.json", - "realms_plus_template_item": "ui/world_templates_screen.json", - "realms_plus_template_item/realms_plus_template_item_button": "ui/world_templates_screen.json", - "world_template_item_grid": "ui/world_templates_screen.json", - "see_more_templates_button": "ui/world_templates_screen.json", - "suggested_see_more_button": "ui/world_templates_screen.json", - "realms_plus_see_more_button": "ui/world_templates_screen.json", - "world_template_inventory_see_more_button": "ui/world_templates_screen.json", - "custom_world_template_see_more_button": "ui/world_templates_screen.json", - "world_template_section_factory": "ui/world_templates_screen.json", - "suggested_template_section_factory": "ui/world_templates_screen.json", - "realms_plus_template_section_factory": "ui/world_templates_screen.json", - "world_template_inventory_section_factory": "ui/world_templates_screen.json", - "custom_world_template_section_factory": "ui/world_templates_screen.json", - "custom_world_template_item_grid": "ui/world_templates_screen.json", - "no_owned_templates_text_label": "ui/world_templates_screen.json", - "no_owned_templates_text": "ui/world_templates_screen.json", - "no_template_content_owned": "ui/world_templates_screen.json", - "no_template_content_owned/no_template_content_owned_text_panel": "ui/world_templates_screen.json", - "common_scrolling_panel": "ui/world_templates_screen.json", - "common_content": "ui/world_templates_screen.json", - "scrolling_offsets": "ui/world_templates_screen.json", - "template_scroll_content": "ui/world_templates_screen.json", - "template_scroll_content/scrolling_panel": "ui/world_templates_screen.json", - "common_scroll_pane": "ui/world_templates_screen.json", - "template_scroll_panel": "ui/world_templates_screen.json", - "template_scroll_panel/world_template_screen_content_stack_panel": "ui/world_templates_screen.json", - "world_list_grids_stack": "ui/world_templates_screen.json", - "world_list_grids_stack/template_list_panel": "ui/world_templates_screen.json", - "world_list_grids_stack/template_list_panel/my_templates_label_panel": "ui/world_templates_screen.json", - "world_list_grids_stack/template_list_panel/world_template_inventory_section_factory": "ui/world_templates_screen.json", - "world_list_grids_stack/template_list_panel/template_bottom_padding": "ui/world_templates_screen.json", - "world_list_grids_stack/store_panel": "ui/world_templates_screen.json", - "world_list_grids_stack/store_panel/loading_panel": "ui/world_templates_screen.json", - "world_list_grids_stack/store_panel/store_grids": "ui/world_templates_screen.json", - "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel": "ui/world_templates_screen.json", - "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_label_panel": "ui/world_templates_screen.json", - "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_section_factory": "ui/world_templates_screen.json", - "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_bottom_padding": "ui/world_templates_screen.json", - "world_list_grids_stack/store_panel/store_grids/suggested_content_panel": "ui/world_templates_screen.json", - "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_content_offers_title_label": "ui/world_templates_screen.json", - "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_section_factory": "ui/world_templates_screen.json", - "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_bottom_padding": "ui/world_templates_screen.json", - "world_list_grids_stack/custom_template_panel": "ui/world_templates_screen.json", - "world_list_grids_stack/custom_template_panel/custom_templates_label_panel": "ui/world_templates_screen.json", - "world_list_grids_stack/custom_template_panel/custom_world_template_section_factory": "ui/world_templates_screen.json", - "world_list_grids_stack/custom_template_panel/custom_template_list_bottom_padding": "ui/world_templates_screen.json", - "world_list_grids_stack/realms_info_panel": "ui/world_templates_screen.json", - "world_list_grids_stack/realms_info_panel/padding": "ui/world_templates_screen.json", - "world_list_grids_stack/realms_info_panel/realms_templates_info": "ui/world_templates_screen.json", - "world_list_grids_stack/realms_info_panel/open_uri_button": "ui/world_templates_screen.json", - "world_list_grid_content": "ui/world_templates_screen.json", - "world_list_grid_content/world_list_grids_stack": "ui/world_templates_screen.json", - "world_template_screen_content_stack_panel": "ui/world_templates_screen.json", - "world_template_screen_content_stack_panel/padding_0": "ui/world_templates_screen.json", - "world_template_screen_content_stack_panel/crossplatform_disabled_panel": "ui/world_templates_screen.json", - "world_template_screen_content_stack_panel/crossplatform_disabled_panel/disable_text": "ui/world_templates_screen.json", - "world_template_screen_content_stack_panel/crossplatform_disable_spacer": "ui/world_templates_screen.json", - "world_template_screen_content_stack_panel/generate_random_panel": "ui/world_templates_screen.json", - "world_template_screen_content_stack_panel/generate_random_button_bottom_padding": "ui/world_templates_screen.json", - "world_template_screen_content_stack_panel/world_list_grid_content": "ui/world_templates_screen.json", - "open_account_setting_button": "ui/world_templates_screen.json", - "world_templates_screen": "ui/world_templates_screen.json", - "world_templates_picker_content": "ui/world_templates_screen.json", - "world_templates_picker_content/background": "ui/world_templates_screen.json", - }, - "xbl_console_qr_signin": { - "banner_fill": "ui/xbl_console_qr_signin.json", - "main_panel_qr": "ui/xbl_console_qr_signin.json", - "main_panel_qr/left_panel": "ui/xbl_console_qr_signin.json", - "main_panel_qr/divider": "ui/xbl_console_qr_signin.json", - "main_panel_qr/right_panel": "ui/xbl_console_qr_signin.json", - "main_panel_qr/right_panel/scrolling_panel_sizer": "ui/xbl_console_qr_signin.json", - "main_panel_qr/right_panel/scrolling_panel_sizer/right_scroll_panel": "ui/xbl_console_qr_signin.json", - "common_scrolling_panel": "ui/xbl_console_qr_signin.json", - "gamepad_helpers": "ui/xbl_console_qr_signin.json", - "gamepad_helpers/gamepad_helper_b": "ui/xbl_console_qr_signin.json", - "xbl_console_qr_signin": "ui/xbl_console_qr_signin.json", - "xbl_console_qr_signin_screen_content": "ui/xbl_console_qr_signin.json", - "xbl_console_qr_signin_screen_content/gamepad_helpers": "ui/xbl_console_qr_signin.json", - "xbl_console_qr_signin_screen_content/dialog": "ui/xbl_console_qr_signin.json", - "dialog": "ui/xbl_console_qr_signin.json", - "scroll_content_focus_border": "ui/xbl_console_qr_signin.json", - "left_panel": "ui/xbl_console_qr_signin.json", - "left_panel/left_header": "ui/xbl_console_qr_signin.json", - "left_panel/padding_1": "ui/xbl_console_qr_signin.json", - "left_panel/left_body": "ui/xbl_console_qr_signin.json", - "left_panel/padding_2": "ui/xbl_console_qr_signin.json", - "left_panel/qr_panel": "ui/xbl_console_qr_signin.json", - "left_panel/qr_panel/qr_border": "ui/xbl_console_qr_signin.json", - "left_panel/qr_panel/qr_code": "ui/xbl_console_qr_signin.json", - "left_panel/qr_panel/bee_overlay": "ui/xbl_console_qr_signin.json", - "input_panel_wrapper": "ui/xbl_console_qr_signin.json", - "input_panel_wrapper/r_scroll_panel": "ui/xbl_console_qr_signin.json", - "right_scroll_panel": "ui/xbl_console_qr_signin.json", - "right_scroll_panel/right_header": "ui/xbl_console_qr_signin.json", - "right_scroll_panel/padding_1": "ui/xbl_console_qr_signin.json", - "right_scroll_panel/website_message_label": "ui/xbl_console_qr_signin.json", - "right_scroll_panel/padding_2": "ui/xbl_console_qr_signin.json", - "right_scroll_panel/wrapper_panel_1": "ui/xbl_console_qr_signin.json", - "right_scroll_panel/wrapper_panel_1/banner_1": "ui/xbl_console_qr_signin.json", - "right_scroll_panel/wrapper_panel_1/banner_1/url_label": "ui/xbl_console_qr_signin.json", - "right_scroll_panel/padding_3": "ui/xbl_console_qr_signin.json", - "right_scroll_panel/code_message_label": "ui/xbl_console_qr_signin.json", - "right_scroll_panel/padding_4": "ui/xbl_console_qr_signin.json", - "right_scroll_panel/wrapper_panel_2": "ui/xbl_console_qr_signin.json", - "right_scroll_panel/wrapper_panel_2/banner_2": "ui/xbl_console_qr_signin.json", - "right_scroll_panel/wrapper_panel_2/banner_2/code_label": "ui/xbl_console_qr_signin.json", - "right_scroll_panel/padding_5": "ui/xbl_console_qr_signin.json", - "right_scroll_panel/code_message_body1": "ui/xbl_console_qr_signin.json", - "right_scroll_panel/padding_6": "ui/xbl_console_qr_signin.json", - "right_scroll_panel/code_message_body2": "ui/xbl_console_qr_signin.json", - "right_scroll_panel/padding_7": "ui/xbl_console_qr_signin.json", - "right_scroll_panel/warning_messages": "ui/xbl_console_qr_signin.json", - "ps4_warning_message_panel": "ui/xbl_console_qr_signin.json", - "ps4_warning_message_panel/sign_in_account_message": "ui/xbl_console_qr_signin.json", - "ps4_warning_message_panel/padding_1": "ui/xbl_console_qr_signin.json", - "ps4_warning_message_panel/permanent_linking_message": "ui/xbl_console_qr_signin.json", - }, - "xbl_console_signin": { - "banner_fill": "ui/xbl_console_signin.json", - "main_panel": "ui/xbl_console_signin.json", - "main_panel/padding_0": "ui/xbl_console_signin.json", - "main_panel/message_label_panel": "ui/xbl_console_signin.json", - "main_panel/message_label_panel/message_label": "ui/xbl_console_signin.json", - "main_panel/padding_1": "ui/xbl_console_signin.json", - "main_panel/website_message_label": "ui/xbl_console_signin.json", - "main_panel/banner_1": "ui/xbl_console_signin.json", - "main_panel/banner_1/url_label": "ui/xbl_console_signin.json", - "main_panel/padding_2": "ui/xbl_console_signin.json", - "main_panel/code_message_label": "ui/xbl_console_signin.json", - "main_panel/banner_2": "ui/xbl_console_signin.json", - "main_panel/banner_2/code_label": "ui/xbl_console_signin.json", - "gamepad_helpers": "ui/xbl_console_signin.json", - "gamepad_helpers/gamepad_helper_b": "ui/xbl_console_signin.json", - "xbl_console_signin": "ui/xbl_console_signin.json", - "xbl_console_signin_screen_content": "ui/xbl_console_signin.json", - "xbl_console_signin_screen_content/gamepad_helpers": "ui/xbl_console_signin.json", - "xbl_console_signin_screen_content/dialog": "ui/xbl_console_signin.json", - "dialog": "ui/xbl_console_signin.json", - }, - "xbl_console_signin_succeeded": { - "banner_fill": "ui/xbl_console_signin_succeeded.json", - "gamer_score_icon": "ui/xbl_console_signin_succeeded.json", - "profile_pic": "ui/xbl_console_signin_succeeded.json", - "gamertag_label": "ui/xbl_console_signin_succeeded.json", - "gamer_score_label": "ui/xbl_console_signin_succeeded.json", - "gamer_score_panel": "ui/xbl_console_signin_succeeded.json", - "gamer_score_panel/gamer_score_icon": "ui/xbl_console_signin_succeeded.json", - "gamer_score_panel/padding_0": "ui/xbl_console_signin_succeeded.json", - "gamer_score_panel/gamer_score_panel": "ui/xbl_console_signin_succeeded.json", - "gamer_score_panel/gamer_score_panel/gamer_score": "ui/xbl_console_signin_succeeded.json", - "button_panel": "ui/xbl_console_signin_succeeded.json", - "button_panel/play": "ui/xbl_console_signin_succeeded.json", - "text_panel": "ui/xbl_console_signin_succeeded.json", - "text_panel/new_account_text": "ui/xbl_console_signin_succeeded.json", - "third_party_platform_legal_text": "ui/xbl_console_signin_succeeded.json", - "new_account_text_panel": "ui/xbl_console_signin_succeeded.json", - "gamer_profile_panel": "ui/xbl_console_signin_succeeded.json", - "gamer_profile_panel/picture_panel": "ui/xbl_console_signin_succeeded.json", - "gamer_profile_panel/picture_panel/banner": "ui/xbl_console_signin_succeeded.json", - "gamer_profile_panel/picture_panel/banner/profile_pic": "ui/xbl_console_signin_succeeded.json", - "gamer_profile_panel/padding_1": "ui/xbl_console_signin_succeeded.json", - "gamer_profile_panel/info_panel": "ui/xbl_console_signin_succeeded.json", - "gamer_profile_panel/info_panel/profile_info_panel": "ui/xbl_console_signin_succeeded.json", - "gamer_profile_panel/info_panel/profile_info_panel/gamertag_label": "ui/xbl_console_signin_succeeded.json", - "gamer_profile_panel/info_panel/profile_info_panel/padding_0": "ui/xbl_console_signin_succeeded.json", - "gamer_profile_panel/info_panel/profile_info_panel/gamer_score_panel": "ui/xbl_console_signin_succeeded.json", - "main_panel": "ui/xbl_console_signin_succeeded.json", - "main_panel/profile": "ui/xbl_console_signin_succeeded.json", - "main_panel/padding_0": "ui/xbl_console_signin_succeeded.json", - "main_panel/third_party_legal_text_panel": "ui/xbl_console_signin_succeeded.json", - "main_panel/padding_1": "ui/xbl_console_signin_succeeded.json", - "main_panel/new_account_text_panel": "ui/xbl_console_signin_succeeded.json", - "main_panel/padding_2": "ui/xbl_console_signin_succeeded.json", - "main_panel/button_panel": "ui/xbl_console_signin_succeeded.json", - "xbl_console_signin_succeeded": "ui/xbl_console_signin_succeeded.json", - "xbl_console_signin_succeeded_screen_content": "ui/xbl_console_signin_succeeded.json", - "xbl_console_signin_succeeded_screen_content/dialog": "ui/xbl_console_signin_succeeded.json", - "dialog": "ui/xbl_console_signin_succeeded.json", - }, - "xbl_immediate_signin": { - "xbl_immediate_signin_screen": "ui/xbl_immediate_signin.json", - "xbl_immediate_signin_screen_content": "ui/xbl_immediate_signin.json", - "xbl_immediate_signin_screen_content/root_panel": "ui/xbl_immediate_signin.json", - }, - "win10_trial_conversion": { - "padding_horizontal": "ui/win10_trial_conversion_screen.json", - "padding_vertical": "ui/win10_trial_conversion_screen.json", - "padding_vertical_3": "ui/win10_trial_conversion_screen.json", - "background_image": "ui/win10_trial_conversion_screen.json", - "title_image": "ui/win10_trial_conversion_screen.json", - "focus_border": "ui/win10_trial_conversion_screen.json", - "pack_image": "ui/win10_trial_conversion_screen.json", - "pack_image_panel": "ui/win10_trial_conversion_screen.json", - "pack_image_panel/pack_image": "ui/win10_trial_conversion_screen.json", - "title_image_border": "ui/win10_trial_conversion_screen.json", - "title_image_border/image": "ui/win10_trial_conversion_screen.json", - "pack_image_with_border": "ui/win10_trial_conversion_screen.json", - "pack_image_with_border/image": "ui/win10_trial_conversion_screen.json", - "label_panel": "ui/win10_trial_conversion_screen.json", - "button_panel": "ui/win10_trial_conversion_screen.json", - "button_panel/padding_5": "ui/win10_trial_conversion_screen.json", - "button_panel/buy_now_button": "ui/win10_trial_conversion_screen.json", - "button_panel/padding_6": "ui/win10_trial_conversion_screen.json", - "buy_now_button": "ui/win10_trial_conversion_screen.json", - "buy_now_label": "ui/win10_trial_conversion_screen.json", - "buy_now_label/button_label": "ui/win10_trial_conversion_screen.json", - "is_focused": "ui/win10_trial_conversion_screen.json", - "filler_panel": "ui/win10_trial_conversion_screen.json", - "focus_border_button": "ui/win10_trial_conversion_screen.json", - "focus_border_button/default": "ui/win10_trial_conversion_screen.json", - "focus_border_button/hover": "ui/win10_trial_conversion_screen.json", - "focus_border_button/pressed": "ui/win10_trial_conversion_screen.json", - "grid_item": "ui/win10_trial_conversion_screen.json", - "grid_item/padding_1": "ui/win10_trial_conversion_screen.json", - "grid_item/pack_image_pane": "ui/win10_trial_conversion_screen.json", - "grid_item/padding_2": "ui/win10_trial_conversion_screen.json", - "grid_item/pack_panel": "ui/win10_trial_conversion_screen.json", - "grid_item/padding_3": "ui/win10_trial_conversion_screen.json", - "grid_item_vertical": "ui/win10_trial_conversion_screen.json", - "grid_item_vertical/grid_item_horizontal": "ui/win10_trial_conversion_screen.json", - "grid_item_vertical/pack_grid": "ui/win10_trial_conversion_screen.json", - "pack_panel": "ui/win10_trial_conversion_screen.json", - "pack_panel/packtitle": "ui/win10_trial_conversion_screen.json", - "pack_panel/padding_2": "ui/win10_trial_conversion_screen.json", - "pack_panel/packdesc": "ui/win10_trial_conversion_screen.json", - "collection_main_panel": "ui/win10_trial_conversion_screen.json", - "collection_main_panel/padding_1": "ui/win10_trial_conversion_screen.json", - "collection_main_panel/title_panel": "ui/win10_trial_conversion_screen.json", - "collection_main_panel/padding_2": "ui/win10_trial_conversion_screen.json", - "collection_main_panel/title_image_panel": "ui/win10_trial_conversion_screen.json", - "collection_main_panel/title_image_panel/border_image": "ui/win10_trial_conversion_screen.json", - "collection_main_panel/padding_3": "ui/win10_trial_conversion_screen.json", - "collection_main_panel/offer_panel": "ui/win10_trial_conversion_screen.json", - "collection_main_panel/offer_panel/padding_1": "ui/win10_trial_conversion_screen.json", - "collection_main_panel/offer_panel/label_panel": "ui/win10_trial_conversion_screen.json", - "collection_main_panel/offer_panel/label_panel/offer_label": "ui/win10_trial_conversion_screen.json", - "collection_main_panel/offer_panel/padding_2": "ui/win10_trial_conversion_screen.json", - "collection_main_panel/padding_4": "ui/win10_trial_conversion_screen.json", - "collection_main_panel/button_panel": "ui/win10_trial_conversion_screen.json", - "collection_main_panel/padding_5": "ui/win10_trial_conversion_screen.json", - "collection_main_panel/include_panel": "ui/win10_trial_conversion_screen.json", - "collection_main_panel/include_panel/padding_1": "ui/win10_trial_conversion_screen.json", - "collection_main_panel/include_panel/include_label": "ui/win10_trial_conversion_screen.json", - "collection_main_panel/padding_6": "ui/win10_trial_conversion_screen.json", - "collection_main_panel/pack_list_grid": "ui/win10_trial_conversion_screen.json", - "background_image_with_border": "ui/win10_trial_conversion_screen.json", - "background_image_with_border/main_panel_no_buttons": "ui/win10_trial_conversion_screen.json", - "win10_trial_conversion_main_panel": "ui/win10_trial_conversion_screen.json", - "win10_trial_conversion_main_panel/scrolling_panel": "ui/win10_trial_conversion_screen.json", - "vertical_main_panel": "ui/win10_trial_conversion_screen.json", - "vertical_main_panel/padding_1": "ui/win10_trial_conversion_screen.json", - "vertical_main_panel/panel": "ui/win10_trial_conversion_screen.json", - "vertical_main_panel/padding_2": "ui/win10_trial_conversion_screen.json", - "horizontal_main_panel": "ui/win10_trial_conversion_screen.json", - "horizontal_main_panel/padding_1": "ui/win10_trial_conversion_screen.json", - "horizontal_main_panel/starter_collection": "ui/win10_trial_conversion_screen.json", - "horizontal_main_panel/padding_2": "ui/win10_trial_conversion_screen.json", - "horizontal_main_panel/master_collection": "ui/win10_trial_conversion_screen.json", - "win10_trial_conversion_screen": "ui/win10_trial_conversion_screen.json", - "win10_trial_conversion_panel": "ui/win10_trial_conversion_screen.json", - }, + "achievement": "ui/achievement_screen.json", + "add_external_server": "ui/add_external_server_screen.json", + "adhoc_inprogress": "ui/adhoc_inprogess_screen.json", + "adhoc": "ui/adhoc_screen.json", + "anvil": "ui/anvil_screen.json", + "anvil_pocket": "ui/anvil_screen_pocket.json", + "authentication_modals": "ui/authentication_modals.json", + "authentication": "ui/authentication_screen.json", + "auto_save_info": "ui/auto_save_info_screen.json", + "beacon": "ui/beacon_screen.json", + "beacon_pocket": "ui/beacon_screen_pocket.json", + "blast_furnace": "ui/blast_furnace_screen.json", + "book": "ui/book_screen.json", + "brewing_stand": "ui/brewing_stand_screen.json", + "brewing_stand_pocket": "ui/brewing_stand_screen_pocket.json", + "bundle_purchase_warning": "ui/bundle_purchase_warning_screen.json", + "cartography": "ui/cartography_screen.json", + "cartography_pocket": "ui/cartography_screen_pocket.json", + "chalkboard": "ui/chalkboard_screen.json", + "chat": "ui/chat_screen.json", + "chat_settings": "ui/chat_settings_menu_screen.json", + "chest": "ui/chest_screen.json", + "choose_realm": "ui/choose_realm_screen.json", + "coin_purchase": "ui/coin_purchase_screen.json", + "command_block": "ui/command_block_screen.json", + "confirm_delete_account": "ui/confirm_delete_account_screen.json", + "content_log": "ui/content_log.json", + "content_log_history": "ui/content_log_history_screen.json", + "crafter_pocket": "ui/crafter_screen_pocket.json", + "create_world_upsell": "ui/create_world_upsell_screen.json", + "credits": "ui/credits_screen.json", + "csb_purchase_error": "ui/csb_purchase_error_screen.json", + "csb": "ui/csb_screen.json", + "csb_content": "ui/csb_sections/content_section.json", + "csb_banner": "ui/csb_sections/csb_banner.json", + "csb_buy": "ui/csb_sections/csb_buy_now_screen.json", + "common_csb": "ui/csb_sections/csb_common.json", + "csb_purchase_amazondevicewarning": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "csb_purchase_warning": "ui/csb_sections/csb_purchase_warning_screen.json", + "csb_subscription_panel": "ui/csb_sections/csb_subscription_panel.json", + "csb_upsell": "ui/csb_sections/csb_upsell_dialog.json", + "csb_packs": "ui/csb_sections/csb_view_packs_screen.json", + "csb_welcome": "ui/csb_sections/csb_welcome_screen.json", + "csb_faq": "ui/csb_sections/faq_section.json", + "csb_landing": "ui/csb_sections/landing_section.json", + "custom_templates": "ui/custom_templates_screen.json", + "world_conversion_complete": "ui/world_conversion_complete_screen.json", + "day_one_experience_intro": "ui/day_one_experience_intro_screen.json", + "day_one_experience": "ui/day_one_experience_screen.json", + "death": "ui/death_screen.json", + "debug_screen": "ui/debug_screen.json", + "dev_console": "ui/dev_console_screen.json", + "disconnect": "ui/disconnect_screen.json", + "display_logged_error": "ui/display_logged_error_screen.json", + "discovery_dialog": "ui/edu_discovery_dialog.json", + "edu_featured": "ui/edu_featured.json", + "edu_quit_button": "ui/edu_pause_screen_pause_button.json", + "persona_emote": "ui/emote_wheel_screen.json", + "enchanting": "ui/enchanting_screen.json", + "enchanting_pocket": "ui/enchanting_screen_pocket.json", + "encyclopedia": "ui/encyclopedia_screen.json", + "expanded_skin_pack": "ui/expanded_skin_pack_screen.json", + "feed_common": "ui/feed_common.json", + "file_upload": "ui/file_upload_screen.json", + "furnace": "ui/furnace_screen.json", + "furnace_pocket": "ui/furnace_screen_pocket.json", + "game_tip": "ui/game_tip_screen.json", + "gamepad_disconnected": "ui/gamepad_disconnected.json", + "gameplay": "ui/gameplay_common.json", + "gathering_info": "ui/gathering_info_screen.json", + "globalpause": "ui/global_pause_screen.json", + "grindstone": "ui/grindstone_screen.json", + "grindstone_pocket": "ui/grindstone_screen_pocket.json", + "gamma_calibration": "ui/gamma_calibration_screen.json", + "horse": "ui/horse_screen.json", + "horse_pocket": "ui/horse_screen_pocket.json", + "how_to_play_common": "ui/how_to_play_common.json", + "how_to_play": "ui/how_to_play_screen.json", + "hud": "ui/hud_screen.json", + "host_options": "ui/host_options_screen.json", + "bed": "ui/in_bed_screen.json", + "im_reader": "ui/immersive_reader.json", + "crafting": "ui/inventory_screen.json", + "crafting_pocket": "ui/inventory_screen_pocket.json", + "invite": "ui/invite_screen.json", + "jigsaw_editor": "ui/jigsaw_editor_screen.json", + "late_join": "ui/late_join_pregame_screen.json", + "library_modal": "ui/library_modal_screen.json", + "local_world_picker": "ui/local_world_picker_screen.json", + "loom": "ui/loom_screen.json", + "loom_pocket": "ui/loom_screen_pocket.json", + "manage_feed": "ui/manage_feed_screen.json", + "manifest_validation": "ui/manifest_validation_screen.json", + "sdl_label": "ui/marketplace_sdl/sdl_label.json", + "sdl_dropdowns": "ui/marketplace_sdl/sdl_dropdowns.json", + "sdl_image_row": "ui/marketplace_sdl/sdl_image_row.json", + "sdl_text_row": "ui/marketplace_sdl/sdl_text_row.json", + "mob_effect": "ui/mob_effect_screen.json", + "non_xbl_user_management": "ui/non_xbl_user_management_screen.json", + "npc_interact": "ui/npc_interact_screen.json", + "online_safety": "ui/online_safety_screen.json", + "pack_settings": "ui/pack_settings_screen.json", + "panorama": "ui/panorama_screen.json", + "patch_notes": "ui/patch_notes_screen.json", + "pause": "ui/pause_screen.json", + "pdp": "ui/pdp_screen.json", + "pdp_screenshots": "ui/pdp_screenshots_section.json", + "permissions": "ui/permissions_screen.json", + "persona_cast_character_screen": "ui/persona_cast_character_screen.json", + "persona_common": "ui/persona_common.json", + "persona_popups": "ui/persona_popups.json", + "play": "ui/play_screen.json", + "perf_turtle": "ui/perf_turtle.json", + "pocket_containers": "ui/pocket_containers.json", + "popup_dialog": "ui/popup_dialog.json", + "portfolio": "ui/portfolio_screen.json", + "progress": "ui/progress_screen.json", + "rating_prompt": "ui/rating_prompt.json", + "realms_common": "ui/realms_common.json", + "realms_create": "ui/realms_create.json", + "realms_pending_invitations": "ui/realms_pending_invitations.json", + "realms_slots": "ui/realms_slots_screen.json", + "realms_settings": "ui/realms_settings_screen.json", + "realms_allowlist": "ui/realms_allowlist.json", + "realms_invite_link_settings": "ui/realms_invite_link_settings_screen.json", + "realms_plus_ended": "ui/realms_plus_ended_screen.json", + "realmsPlus": "ui/realmsPlus_screen.json", + "realmsPlus_content": "ui/realmsPlus_sections/content_section.json", + "realmsPlus_faq": "ui/realmsPlus_sections/faq_section.json", + "realmsPlus_landing": "ui/realmsPlus_sections/landing_section.json", + "realmsPlus_buy": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "realmsPlus_packs": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "realmsPlus_purchase_warning": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "realms_stories_transition": "ui/realms_stories_transition_screen.json", + "redstone": "ui/redstone_screen.json", + "resource_packs": "ui/resource_packs_screen.json", + "safe_zone": "ui/safe_zone_screen.json", + "storage_migration_common": "ui/storage_migration_common.json", + "storage_migration_generic": "ui/storage_migration_generic_screen.json", + "scoreboard": "ui/scoreboards.json", + "screenshot": "ui/screenshot_screen.json", + "select_world": "ui/select_world_screen.json", + "server_form": "ui/server_form.json", + "settings": "ui/settings_screen.json", + "controls_section": "ui/settings_sections/controls_section.json", + "general_section": "ui/settings_sections/general_section.json", + "realms_world_section": "ui/settings_sections/realms_world_section.json", + "settings_common": "ui/settings_sections/settings_common.json", + "world_section": "ui/settings_sections/world_section.json", + "social_section": "ui/settings_sections/social_section.json", + "sidebar_navigation": "ui/sidebar_navigation.json", + "sign": "ui/sign_screen.json", + "simple_inprogress": "ui/simple_inprogress_screen.json", + "skin_pack_purchase": "ui/skin_pack_purchase_screen.json", + "skin_picker": "ui/skin_picker_screen.json", + "smithing_table": "ui/smithing_table_screen.json", + "smithing_table_2": "ui/smithing_table_2_screen.json", + "smithing_table_pocket": "ui/smithing_table_screen_pocket.json", + "smithing_table_2_pocket": "ui/smithing_table_2_screen_pocket.json", + "smoker": "ui/smoker_screen.json", + "start": "ui/start_screen.json", + "stonecutter": "ui/stonecutter_screen.json", + "stonecutter_pocket": "ui/stonecutter_screen_pocket.json", + "storage_management": "ui/storage_management.json", + "storage_management_popup": "ui/storage_management_popup.json", + "common_store": "ui/store_common.json", + "store_layout": "ui/store_data_driven_screen.json", + "filter_menu": "ui/store_filter_menu_screen.json", + "store_inventory": "ui/store_inventory_screen.json", + "store_item_list": "ui/store_item_list_screen.json", + "store_progress": "ui/store_progress_screen.json", + "promo_timeline": "ui/store_promo_timeline_screen.json", + "store_sale_item_list": "ui/store_sales_item_list_screen.json", + "store_search": "ui/store_search_screen.json", + "sort_menu": "ui/store_sort_menu_screen.json", + "structure_editor": "ui/structure_editor_screen.json", + "submit_feedback": "ui/submit_feedback_screen.json", + "tabbed_upsell": "ui/tabbed_upsell_screen.json", + "thanks_for_testing": "ui/thanks_for_testing_screen.json", + "third_party_store": "ui/third_party_store_screen.json", + "toast_screen": "ui/toast_screen.json", + "token_faq": "ui/token_faq_screen.json", + "trade": "ui/trade_screen.json", + "trade_pocket": "ui/trade_screen_pocket.json", + "trade2": "ui/trade_2_screen.json", + "trade2_pocket": "ui/trade_2_screen_pocket.json", + "trialUpsell": "ui/trial_upsell_screen.json", + "ugc_viewer": "ui/ugc_viewer_screen.json", + "common_art": "ui/ui_art_assets_common.json", + "common": "ui/ui_common.json", + "common-classic": "ui/ui_common_classic.json", + "edu_common": "ui/ui_edu_common.json", + "purchase_common": "ui/ui_purchase_common.json", + "common_buttons": "ui/ui_template_buttons.json", + "common_dialogs": "ui/ui_template_dialogs.json", + "common_tabs": "ui/ui_template_tabs.json", + "common_toggles": "ui/ui_template_toggles.json", + "friendsbutton": "ui/ui_friendsbutton.json", + "iconbutton": "ui/ui_iconbutton.json", + "update_dimensions": "ui/update_dimensions.json", + "update_version": "ui/update_version.json", + "world_recovery": "ui/world_recovery_screen.json", + "world_templates": "ui/world_templates_screen.json", + "xbl_console_qr_signin": "ui/xbl_console_qr_signin.json", + "xbl_console_signin": "ui/xbl_console_signin.json", + "xbl_console_signin_succeeded": "ui/xbl_console_signin_succeeded.json", + "xbl_immediate_signin": "ui/xbl_immediate_signin.json", + "win10_trial_conversion": "ui/win10_trial_conversion_screen.json" } \ No newline at end of file From 69a54ace0bf3831823871b44f3be57a77e90412e Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 23 Feb 2026 00:18:59 +0700 Subject: [PATCH 062/245] modify custom ui pack system --- config.d.ts | 2 + package.json | 2 +- src/analyzer/custom-ui.ts | 0 src/analyzer/generate-code.ts | 105 ++++++++ src/analyzer/generate-ui-defs.ts | 134 ++++++++++ src/analyzer/rebaseUIFiles.ts | 50 ++++ src/analyzer/utils.ts | 20 ++ src/compilers/Configuration.ts | 20 +- src/components/UI.ts | 8 +- src/components/Utils.ts | 18 +- src/index.ts | 4 +- src/types/vanilla/paths.ts | 418 +++++++++++++++---------------- 12 files changed, 559 insertions(+), 222 deletions(-) delete mode 100644 src/analyzer/custom-ui.ts create mode 100644 src/analyzer/generate-code.ts create mode 100644 src/analyzer/generate-ui-defs.ts create mode 100644 src/analyzer/rebaseUIFiles.ts create mode 100644 src/analyzer/utils.ts diff --git a/config.d.ts b/config.d.ts index 48a767b..28c11e1 100644 --- a/config.d.ts +++ b/config.d.ts @@ -14,10 +14,12 @@ export interface Config { gdkUserId?: string fixInventoryItemRenderer?: boolean buildFolder?: string + fileExtension?: string } ui_analyzer?: { enabled?: boolean + generate_path?: string imports?: string[] } diff --git a/package.json b/package.json index 0cee075..2391aa7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.0.13", + "version": "4.0.16-indev", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", diff --git a/src/analyzer/custom-ui.ts b/src/analyzer/custom-ui.ts deleted file mode 100644 index e69de29..0000000 diff --git a/src/analyzer/generate-code.ts b/src/analyzer/generate-code.ts new file mode 100644 index 0000000..dc9789b --- /dev/null +++ b/src/analyzer/generate-code.ts @@ -0,0 +1,105 @@ +import path from "node:path" +import fs from "fs" +import { config } from "../compilers/Configuration.js" + +interface Element { + file: string + type: string + extends?: { + name: string + namespace: string + } + children?: string[] +} + +interface Database { + [key: string]: Element +} + +const importType = 'import { Type, MemoryModify, ModifyUI } from "asajs"' + +function toCamelCase(str: string) { + return str.replace(/[-_]\w/g, m => m[1].toUpperCase()) +} + +export function genCustomCode(pack_folder: string) { + const database = JSON.parse(fs.readFileSync(path.join("database", `${pack_folder}-defs.json`), "utf-8")) + const Elements: string[] = [] + const json: Record> = {} + const UI = [ + "type UI = {", + ...Object.entries(database).map(args => { + const [key, element] = <[string, Database]>args + const typeName = `${key[0].toUpperCase()}${toCamelCase(key).slice(1)}` + const filepaths: Record = {} + Elements.push( + [ + `type ${typeName} = {`, + ...Object.entries(element).map(([elementPath, elementData]) => { + filepaths[elementPath] = elementData.file + return ` "${elementPath}": {\n type: Type.${elementData.type.toUpperCase()},\n children: ${elementData.children ? elementData.children.map(c => `"${c}"`).join(" | ") : "string"}\n },` + }), + "}", + ].join("\n"), + ) + json[key] = { + ...(json[key] || {}), + ...filepaths, + } + return ` "${key}": ${typeName},` + }), + "}", + ].join("\n") + + const paths = `const paths = ${JSON.stringify(json, null, 4)}` + + if (config.ui_analyzer?.generate_path) { + if (!fs.existsSync(config.ui_analyzer?.generate_path)) { + fs.mkdirSync(config.ui_analyzer?.generate_path, { recursive: true }) + } + } + + fs.writeFileSync( + path.join(config.ui_analyzer?.generate_path || "database", `${pack_folder}.ts`), + [ + importType, + `type Namespace = keyof UI +type Element = Extract +type ElementInfos> = UI[T][K] +// @ts-ignore +type GetType> = ElementInfos["type"] +// @ts-ignore +type GetChilds> = ElementInfos["children"] + +export default function Modify>(namespace: T, name: K) { + // @ts-ignore + const getPath = paths[namespace][name] + // @ts-ignore + const memoryUI = MemoryModify[getPath]?.[name] + // @ts-ignore + if (memoryUI) return memoryUI as ModifyUI, GetChilds> + const path = paths[namespace] + if (!path) { + throw new Error(\`Namespace '\${namespace}' does not exist\`) + // @ts-ignore + } else if (typeof path !== "string" && !getPath) { + throw new Error(\`Element '\${name}' does not exist in namespace '\${namespace}'\`) + } + // @ts-ignore + const modifyUI = new ModifyUI, GetChilds>( + namespace, + name, + // @ts-ignore + typeof path === "string" ? path : getPath, + ) + // @ts-ignore + ;(MemoryModify[getPath] ||= {})[name] = modifyUI + return modifyUI +}`, + paths, + UI, + ...Elements, + ].join("\n\n"), + "utf-8", + ) +} diff --git a/src/analyzer/generate-ui-defs.ts b/src/analyzer/generate-ui-defs.ts new file mode 100644 index 0000000..4f7c2cb --- /dev/null +++ b/src/analyzer/generate-ui-defs.ts @@ -0,0 +1,134 @@ +import path from "path" +import { uiFiles } from "./utils.js" +import fs from "fs" +import { paths } from "../types/vanilla/paths.js" +import { vanilladefs } from "./vanilladefs.js" + +type Namespace = string +type ElementPath = string + +interface ScanElement { + file: string + type?: string + extends?: { + name: string + namespace?: string + } + children?: string[] +} + +const map = new Map() +Object.entries(paths).forEach(([namespace, path]) => { + map.set(path, namespace) +}) + +export function generateUIDefs(pack_folder: string) { + const uiMap = new Map>() + uiFiles(pack_folder).forEach(file => { + try { + const fileContent: Record = JSON.parse( + fs.readFileSync(path.join("custom", pack_folder, file), "utf-8"), + ) + if (fileContent["file_signature"]) delete fileContent["file_signature"] + + let n = fileContent["namespace"] + if (n) delete fileContent["namespace"] + else n = map.get(file) + const namespace = n + + const elementMap = new Map() + + function scanElement(elements: Array<[string, any]>, prefix: string = "") { + const childElement: string[] = [] + elements.forEach(([element, properties]: [string, any]) => { + if (properties.anim_type) return + + const [name, extend] = element.split("@") + if (name.startsWith("$")) return + if (name.startsWith("$")) return + childElement.push(name) + const elementPath = `${prefix}${name}` + let extendsName: string | undefined + let extendsNamespace: string | undefined + if (extend) { + const [extnamespace, name] = extend.split(".") + if (name) { + extendsName = name + extendsNamespace = extnamespace + } else { + extendsName = extnamespace + extendsNamespace = namespace + } + } + + const controls = properties.controls + const out: any = { + file, + } + + if (controls) { + const children = scanElement( + controls.map((c: string) => Object.entries(c)[0]), + `${prefix}${name}/`, + ) + + if (children.length) out.children = children + } + + if (properties.type) out.type = properties.type + if (extendsName && extendsNamespace) + out.extends = { name: extendsName, namespace: extendsNamespace } + + elementMap.set(elementPath, out) + }) + return childElement + } + scanElement(Object.entries(fileContent)) + uiMap.set(namespace, elementMap) + } catch (error) {} + }) + + function scanElementType(name: string, namespace: string) { + const element = uiMap.get(namespace)?.get(name) + if (element) { + if (element.type) return element.type + else { + const extend = element.extends + if (extend) return scanElementType(extend.name, extend.namespace!) + } + } + return vanilladefs[namespace]?.[name]?.type + } + + uiMap.entries().forEach(([namespace, elementsMap]) => { + elementsMap.entries().forEach(([name, { file, type, extends: extend }]) => { + if (type) return + else { + if (extend) { + const type = scanElementType(extend.name, extend.namespace!) + if (type) { + elementsMap.set(name, { + ...elementsMap.get(name)!, + type, + }) + } else elementsMap.delete(name) + } else { + const elementDefs = vanilladefs[namespace]?.[name] + if (elementDefs) { + elementsMap.set(name, { + ...elementsMap.get(name)!, + type: elementDefs.type, + }) + } else { + elementsMap.delete(name) + } + } + } + }) + + if (!elementsMap.size) uiMap.delete(namespace) + }) + + if (!fs.existsSync("database")) fs.mkdirSync("database") + fs.writeFileSync(path.join("database", `${pack_folder}-defs.json`), JSON.stringify(uiMap, null, 4), "utf-8") +} diff --git a/src/analyzer/rebaseUIFiles.ts b/src/analyzer/rebaseUIFiles.ts new file mode 100644 index 0000000..da7922e --- /dev/null +++ b/src/analyzer/rebaseUIFiles.ts @@ -0,0 +1,50 @@ +import fs from "fs" +import path from "path" +import { parse } from "jsonc-parser" +import { uiFiles } from "./utils.js" + +export function rebaseUIFiles(pack_folder: string) { + const ui = uiFiles(pack_folder) + const targetDir = path.join("custom", pack_folder) + + ui.add("ui/_ui_defs.json") + ui.add("ui/_global_variables.json") + + if (!fs.existsSync(targetDir)) return + + const processDirectory = (currentDir: string) => { + const entries = fs.readdirSync(currentDir, { withFileTypes: true }) + + for (const entry of entries) { + const fullPath = path.join(currentDir, entry.name) + + if (entry.isDirectory()) { + processDirectory(fullPath) + + if (fs.readdirSync(fullPath).length === 0) { + fs.rmdirSync(fullPath) + } + } else if (entry.isFile()) { + const relativePath = fullPath.replace(targetDir + path.sep, "") + const normalizedPath = relativePath.split(path.sep).join("/") + + if (!ui.has(normalizedPath)) { + fs.rmSync(fullPath, { force: true }) + } else { + try { + const fileContent = fs.readFileSync(fullPath, "utf-8") + const parsedData = parse(fileContent) + + if (parsedData !== undefined) { + fs.writeFileSync(fullPath, JSON.stringify(parsedData, null, 4), "utf-8") + } + } catch (error) { + console.error(`Parser error: ${fullPath}`, error) + } + } + } + } + } + + processDirectory(targetDir) +} diff --git a/src/analyzer/utils.ts b/src/analyzer/utils.ts new file mode 100644 index 0000000..3bfb771 --- /dev/null +++ b/src/analyzer/utils.ts @@ -0,0 +1,20 @@ +import { paths } from "../types/vanilla/paths.js" +import fs from "fs" +import path from "path" +import jsonc from "jsonc-parser" + +export const vanilla_ui_defs = Object.values(paths) +const vanillaUIDefsMap = new Map>() + +export function readUIDefs(pack_folder: string): string[] { + const { ui_defs } = jsonc.parse(fs.readFileSync(path.join("custom", pack_folder, "ui/_ui_defs.json"), "utf-8")) + return ui_defs +} + +export function uiFiles(pack_folder: string): Set { + if (vanillaUIDefsMap.has(pack_folder)) return vanillaUIDefsMap.get(pack_folder)! + const ui_defs = readUIDefs(pack_folder) + const set = new Set(ui_defs.concat(...vanilla_ui_defs)) + vanillaUIDefsMap.set(pack_folder, set) + return set +} diff --git a/src/compilers/Configuration.ts b/src/compilers/Configuration.ts index 8cd79ee..1691f3e 100644 --- a/src/compilers/Configuration.ts +++ b/src/compilers/Configuration.ts @@ -3,6 +3,9 @@ import path from "path" import jsonc from "jsonc-parser" import { Config, RetBindingValue } from "../../config.js" import { createRequire } from "module" +import { rebaseUIFiles } from "../analyzer/rebaseUIFiles.js" +import { generateUIDefs } from "../analyzer/generate-ui-defs.js" +import { genCustomCode } from "../analyzer/generate-code.js" const options: Record = {} @@ -64,5 +67,20 @@ export const buildFolder = config.compiler?.buildFolder || "build" export const bindingFuntions = config.binding_functions if (!fs.existsSync(".gitignore")) { - fs.writeFileSync(".gitignore", `node_modules`, "utf-8") + fs.writeFileSync(".gitignore", "node_modules\ncustom", "utf-8") +} + +if (config.ui_analyzer?.enabled) { + config.ui_analyzer.imports?.forEach(v => { + if (!fs.existsSync(path.join(config.ui_analyzer?.generate_path || "database", `${v}.ts`))) { + if (!fs.existsSync(path.join("database", `${v}-defs.json`))) { + if (fs.existsSync(path.join("custom", v, "ui/_ui_defs.json"))) { + rebaseUIFiles(v) + generateUIDefs(v) + } else throw new Error(`${v} ui_defs.json not found`) + } + + genCustomCode(v) + } + }) } diff --git a/src/components/UI.ts b/src/components/UI.ts index 71aa1d9..c66036d 100644 --- a/src/components/UI.ts +++ b/src/components/UI.ts @@ -14,6 +14,7 @@ import { RandomString, ResolveBinding } from "./Utils.js" import { RandomNamespace } from "../compilers/Random.js" import util from "node:util" +import { config } from "../compilers/Configuration.js" interface ExtendUI { name: string @@ -60,7 +61,8 @@ export class UI extends Class this.name = name?.match(/^(\w|\/)+/)?.[0] || RandomString(16) this.namespace = namespace || RandomNamespace() - if (!path) this.path = `asajs/${this.namespace}.json` + if (!path) + this.path = `asajs/${this.namespace}${config.compiler?.fileExtension ? (config.compiler.fileExtension.startsWith(".") ? config.compiler.fileExtension : `.${config.compiler.fileExtension}`) : ".json"}` else this.path = path this.extendable = this.name.search("/") === -1 @@ -125,12 +127,12 @@ export class UI extends Class child: UI, properties?: Properties, name?: string, - callback?: (name: string) => void, + callback?: (name: string, parent: UI) => void, ) { if (this === child) throw new Error("Cannot add a child to itself") const childName = name || RandomString(16) this.controls.set(childName, [child, properties || {}]) - callback?.(childName) + callback?.(childName, this) return this } diff --git a/src/components/Utils.ts b/src/components/Utils.ts index 32b83ba..0135c24 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -133,10 +133,11 @@ export function ResolveBinding(cache: Map, ...bindings: Binding binding.source_property_name = out } } - - binding.binding_type = BindingType.VIEW - + binding.binding_type ||= BindingType.VIEW if (!binding.target_property_name) throw new Error("Binding must have a target property name") + } else if (binding.binding_collection_name) { + if (Object.keys(binding).length > 1) binding.binding_type ||= BindingType.COLLECTION + else binding.binding_type ||= BindingType.COLLECTION_DETAILS } result.push(binding) } @@ -196,7 +197,10 @@ export function b(input: string): CompileBinding { // Quick Elements export function Modify>(namespace: T, name: K) { // @ts-ignore - const memoryUI = MemoryModify[paths[namespace][name]]?.[name] + const getPath = paths[namespace] || paths[namespace][name] + + // @ts-ignore + const memoryUI = MemoryModify[getPath]?.[name] // @ts-ignore if (memoryUI) return memoryUI as ModifyUI, VanillaElementChilds> const path = paths[namespace] @@ -204,7 +208,7 @@ export function Modify>(namespace: T, if (!path) { throw new Error(`Namespace '${namespace}' does not exist`) // @ts-ignore - } else if (typeof path !== "string" && !paths[namespace][name]) { + } else if (typeof path !== "string" && !getPath) { throw new Error(`Element '${name}' does not exist in namespace '${namespace}'`) } // @ts-ignore @@ -212,10 +216,10 @@ export function Modify>(namespace: T, namespace, name, // @ts-ignore - typeof path === "string" ? path : paths[namespace][name], + typeof path === "string" ? path : getPath, ) // @ts-ignore - ;(MemoryModify[paths[namespace][name]] ||= {})[name] = modifyUI + ;(MemoryModify[getPath] ||= {})[name] = modifyUI return modifyUI } diff --git a/src/index.ts b/src/index.ts index 239aff6..d169504 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,5 @@ -import "./compilers/Configuration.js" import "./compilers/PreCompile.js" +import "./compilers/Configuration.js" import "./compilers/ui/builder.js" import "./compilers/ui/installer.js" @@ -17,3 +17,5 @@ export { ArrayName, Operation } from "./types/properties/index.js" export * from "./compilers/bindings/Binary.js" export { API } from "./components/API.js" + +export { MemoryModify } from "./compilers/Memory.js" diff --git a/src/types/vanilla/paths.ts b/src/types/vanilla/paths.ts index 989a533..ef859a5 100644 --- a/src/types/vanilla/paths.ts +++ b/src/types/vanilla/paths.ts @@ -1,210 +1,210 @@ export const paths = { - "achievement": "ui/achievement_screen.json", - "add_external_server": "ui/add_external_server_screen.json", - "adhoc_inprogress": "ui/adhoc_inprogess_screen.json", - "adhoc": "ui/adhoc_screen.json", - "anvil": "ui/anvil_screen.json", - "anvil_pocket": "ui/anvil_screen_pocket.json", - "authentication_modals": "ui/authentication_modals.json", - "authentication": "ui/authentication_screen.json", - "auto_save_info": "ui/auto_save_info_screen.json", - "beacon": "ui/beacon_screen.json", - "beacon_pocket": "ui/beacon_screen_pocket.json", - "blast_furnace": "ui/blast_furnace_screen.json", - "book": "ui/book_screen.json", - "brewing_stand": "ui/brewing_stand_screen.json", - "brewing_stand_pocket": "ui/brewing_stand_screen_pocket.json", - "bundle_purchase_warning": "ui/bundle_purchase_warning_screen.json", - "cartography": "ui/cartography_screen.json", - "cartography_pocket": "ui/cartography_screen_pocket.json", - "chalkboard": "ui/chalkboard_screen.json", - "chat": "ui/chat_screen.json", - "chat_settings": "ui/chat_settings_menu_screen.json", - "chest": "ui/chest_screen.json", - "choose_realm": "ui/choose_realm_screen.json", - "coin_purchase": "ui/coin_purchase_screen.json", - "command_block": "ui/command_block_screen.json", - "confirm_delete_account": "ui/confirm_delete_account_screen.json", - "content_log": "ui/content_log.json", - "content_log_history": "ui/content_log_history_screen.json", - "crafter_pocket": "ui/crafter_screen_pocket.json", - "create_world_upsell": "ui/create_world_upsell_screen.json", - "credits": "ui/credits_screen.json", - "csb_purchase_error": "ui/csb_purchase_error_screen.json", - "csb": "ui/csb_screen.json", - "csb_content": "ui/csb_sections/content_section.json", - "csb_banner": "ui/csb_sections/csb_banner.json", - "csb_buy": "ui/csb_sections/csb_buy_now_screen.json", - "common_csb": "ui/csb_sections/csb_common.json", - "csb_purchase_amazondevicewarning": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", - "csb_purchase_warning": "ui/csb_sections/csb_purchase_warning_screen.json", - "csb_subscription_panel": "ui/csb_sections/csb_subscription_panel.json", - "csb_upsell": "ui/csb_sections/csb_upsell_dialog.json", - "csb_packs": "ui/csb_sections/csb_view_packs_screen.json", - "csb_welcome": "ui/csb_sections/csb_welcome_screen.json", - "csb_faq": "ui/csb_sections/faq_section.json", - "csb_landing": "ui/csb_sections/landing_section.json", - "custom_templates": "ui/custom_templates_screen.json", - "world_conversion_complete": "ui/world_conversion_complete_screen.json", - "day_one_experience_intro": "ui/day_one_experience_intro_screen.json", - "day_one_experience": "ui/day_one_experience_screen.json", - "death": "ui/death_screen.json", - "debug_screen": "ui/debug_screen.json", - "dev_console": "ui/dev_console_screen.json", - "disconnect": "ui/disconnect_screen.json", - "display_logged_error": "ui/display_logged_error_screen.json", - "discovery_dialog": "ui/edu_discovery_dialog.json", - "edu_featured": "ui/edu_featured.json", - "edu_quit_button": "ui/edu_pause_screen_pause_button.json", - "persona_emote": "ui/emote_wheel_screen.json", - "enchanting": "ui/enchanting_screen.json", - "enchanting_pocket": "ui/enchanting_screen_pocket.json", - "encyclopedia": "ui/encyclopedia_screen.json", - "expanded_skin_pack": "ui/expanded_skin_pack_screen.json", - "feed_common": "ui/feed_common.json", - "file_upload": "ui/file_upload_screen.json", - "furnace": "ui/furnace_screen.json", - "furnace_pocket": "ui/furnace_screen_pocket.json", - "game_tip": "ui/game_tip_screen.json", - "gamepad_disconnected": "ui/gamepad_disconnected.json", - "gameplay": "ui/gameplay_common.json", - "gathering_info": "ui/gathering_info_screen.json", - "globalpause": "ui/global_pause_screen.json", - "grindstone": "ui/grindstone_screen.json", - "grindstone_pocket": "ui/grindstone_screen_pocket.json", - "gamma_calibration": "ui/gamma_calibration_screen.json", - "horse": "ui/horse_screen.json", - "horse_pocket": "ui/horse_screen_pocket.json", - "how_to_play_common": "ui/how_to_play_common.json", - "how_to_play": "ui/how_to_play_screen.json", - "hud": "ui/hud_screen.json", - "host_options": "ui/host_options_screen.json", - "bed": "ui/in_bed_screen.json", - "im_reader": "ui/immersive_reader.json", - "crafting": "ui/inventory_screen.json", - "crafting_pocket": "ui/inventory_screen_pocket.json", - "invite": "ui/invite_screen.json", - "jigsaw_editor": "ui/jigsaw_editor_screen.json", - "late_join": "ui/late_join_pregame_screen.json", - "library_modal": "ui/library_modal_screen.json", - "local_world_picker": "ui/local_world_picker_screen.json", - "loom": "ui/loom_screen.json", - "loom_pocket": "ui/loom_screen_pocket.json", - "manage_feed": "ui/manage_feed_screen.json", - "manifest_validation": "ui/manifest_validation_screen.json", - "sdl_label": "ui/marketplace_sdl/sdl_label.json", - "sdl_dropdowns": "ui/marketplace_sdl/sdl_dropdowns.json", - "sdl_image_row": "ui/marketplace_sdl/sdl_image_row.json", - "sdl_text_row": "ui/marketplace_sdl/sdl_text_row.json", - "mob_effect": "ui/mob_effect_screen.json", - "non_xbl_user_management": "ui/non_xbl_user_management_screen.json", - "npc_interact": "ui/npc_interact_screen.json", - "online_safety": "ui/online_safety_screen.json", - "pack_settings": "ui/pack_settings_screen.json", - "panorama": "ui/panorama_screen.json", - "patch_notes": "ui/patch_notes_screen.json", - "pause": "ui/pause_screen.json", - "pdp": "ui/pdp_screen.json", - "pdp_screenshots": "ui/pdp_screenshots_section.json", - "permissions": "ui/permissions_screen.json", - "persona_cast_character_screen": "ui/persona_cast_character_screen.json", - "persona_common": "ui/persona_common.json", - "persona_popups": "ui/persona_popups.json", - "play": "ui/play_screen.json", - "perf_turtle": "ui/perf_turtle.json", - "pocket_containers": "ui/pocket_containers.json", - "popup_dialog": "ui/popup_dialog.json", - "portfolio": "ui/portfolio_screen.json", - "progress": "ui/progress_screen.json", - "rating_prompt": "ui/rating_prompt.json", - "realms_common": "ui/realms_common.json", - "realms_create": "ui/realms_create.json", - "realms_pending_invitations": "ui/realms_pending_invitations.json", - "realms_slots": "ui/realms_slots_screen.json", - "realms_settings": "ui/realms_settings_screen.json", - "realms_allowlist": "ui/realms_allowlist.json", - "realms_invite_link_settings": "ui/realms_invite_link_settings_screen.json", - "realms_plus_ended": "ui/realms_plus_ended_screen.json", - "realmsPlus": "ui/realmsPlus_screen.json", - "realmsPlus_content": "ui/realmsPlus_sections/content_section.json", - "realmsPlus_faq": "ui/realmsPlus_sections/faq_section.json", - "realmsPlus_landing": "ui/realmsPlus_sections/landing_section.json", - "realmsPlus_buy": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - "realmsPlus_packs": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", - "realmsPlus_purchase_warning": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", - "realms_stories_transition": "ui/realms_stories_transition_screen.json", - "redstone": "ui/redstone_screen.json", - "resource_packs": "ui/resource_packs_screen.json", - "safe_zone": "ui/safe_zone_screen.json", - "storage_migration_common": "ui/storage_migration_common.json", - "storage_migration_generic": "ui/storage_migration_generic_screen.json", - "scoreboard": "ui/scoreboards.json", - "screenshot": "ui/screenshot_screen.json", - "select_world": "ui/select_world_screen.json", - "server_form": "ui/server_form.json", - "settings": "ui/settings_screen.json", - "controls_section": "ui/settings_sections/controls_section.json", - "general_section": "ui/settings_sections/general_section.json", - "realms_world_section": "ui/settings_sections/realms_world_section.json", - "settings_common": "ui/settings_sections/settings_common.json", - "world_section": "ui/settings_sections/world_section.json", - "social_section": "ui/settings_sections/social_section.json", - "sidebar_navigation": "ui/sidebar_navigation.json", - "sign": "ui/sign_screen.json", - "simple_inprogress": "ui/simple_inprogress_screen.json", - "skin_pack_purchase": "ui/skin_pack_purchase_screen.json", - "skin_picker": "ui/skin_picker_screen.json", - "smithing_table": "ui/smithing_table_screen.json", - "smithing_table_2": "ui/smithing_table_2_screen.json", - "smithing_table_pocket": "ui/smithing_table_screen_pocket.json", - "smithing_table_2_pocket": "ui/smithing_table_2_screen_pocket.json", - "smoker": "ui/smoker_screen.json", - "start": "ui/start_screen.json", - "stonecutter": "ui/stonecutter_screen.json", - "stonecutter_pocket": "ui/stonecutter_screen_pocket.json", - "storage_management": "ui/storage_management.json", - "storage_management_popup": "ui/storage_management_popup.json", - "common_store": "ui/store_common.json", - "store_layout": "ui/store_data_driven_screen.json", - "filter_menu": "ui/store_filter_menu_screen.json", - "store_inventory": "ui/store_inventory_screen.json", - "store_item_list": "ui/store_item_list_screen.json", - "store_progress": "ui/store_progress_screen.json", - "promo_timeline": "ui/store_promo_timeline_screen.json", - "store_sale_item_list": "ui/store_sales_item_list_screen.json", - "store_search": "ui/store_search_screen.json", - "sort_menu": "ui/store_sort_menu_screen.json", - "structure_editor": "ui/structure_editor_screen.json", - "submit_feedback": "ui/submit_feedback_screen.json", - "tabbed_upsell": "ui/tabbed_upsell_screen.json", - "thanks_for_testing": "ui/thanks_for_testing_screen.json", - "third_party_store": "ui/third_party_store_screen.json", - "toast_screen": "ui/toast_screen.json", - "token_faq": "ui/token_faq_screen.json", - "trade": "ui/trade_screen.json", - "trade_pocket": "ui/trade_screen_pocket.json", - "trade2": "ui/trade_2_screen.json", - "trade2_pocket": "ui/trade_2_screen_pocket.json", - "trialUpsell": "ui/trial_upsell_screen.json", - "ugc_viewer": "ui/ugc_viewer_screen.json", - "common_art": "ui/ui_art_assets_common.json", - "common": "ui/ui_common.json", - "common-classic": "ui/ui_common_classic.json", - "edu_common": "ui/ui_edu_common.json", - "purchase_common": "ui/ui_purchase_common.json", - "common_buttons": "ui/ui_template_buttons.json", - "common_dialogs": "ui/ui_template_dialogs.json", - "common_tabs": "ui/ui_template_tabs.json", - "common_toggles": "ui/ui_template_toggles.json", - "friendsbutton": "ui/ui_friendsbutton.json", - "iconbutton": "ui/ui_iconbutton.json", - "update_dimensions": "ui/update_dimensions.json", - "update_version": "ui/update_version.json", - "world_recovery": "ui/world_recovery_screen.json", - "world_templates": "ui/world_templates_screen.json", - "xbl_console_qr_signin": "ui/xbl_console_qr_signin.json", - "xbl_console_signin": "ui/xbl_console_signin.json", - "xbl_console_signin_succeeded": "ui/xbl_console_signin_succeeded.json", - "xbl_immediate_signin": "ui/xbl_immediate_signin.json", - "win10_trial_conversion": "ui/win10_trial_conversion_screen.json" -} \ No newline at end of file + achievement: "ui/achievement_screen.json", + add_external_server: "ui/add_external_server_screen.json", + adhoc_inprogress: "ui/adhoc_inprogess_screen.json", + adhoc: "ui/adhoc_screen.json", + anvil: "ui/anvil_screen.json", + anvil_pocket: "ui/anvil_screen_pocket.json", + authentication_modals: "ui/authentication_modals.json", + authentication: "ui/authentication_screen.json", + auto_save_info: "ui/auto_save_info_screen.json", + beacon: "ui/beacon_screen.json", + beacon_pocket: "ui/beacon_screen_pocket.json", + blast_furnace: "ui/blast_furnace_screen.json", + book: "ui/book_screen.json", + brewing_stand: "ui/brewing_stand_screen.json", + brewing_stand_pocket: "ui/brewing_stand_screen_pocket.json", + bundle_purchase_warning: "ui/bundle_purchase_warning_screen.json", + cartography: "ui/cartography_screen.json", + cartography_pocket: "ui/cartography_screen_pocket.json", + chalkboard: "ui/chalkboard_screen.json", + chat: "ui/chat_screen.json", + chat_settings: "ui/chat_settings_menu_screen.json", + chest: "ui/chest_screen.json", + choose_realm: "ui/choose_realm_screen.json", + coin_purchase: "ui/coin_purchase_screen.json", + command_block: "ui/command_block_screen.json", + confirm_delete_account: "ui/confirm_delete_account_screen.json", + content_log: "ui/content_log.json", + content_log_history: "ui/content_log_history_screen.json", + crafter_pocket: "ui/crafter_screen_pocket.json", + create_world_upsell: "ui/create_world_upsell_screen.json", + credits: "ui/credits_screen.json", + csb_purchase_error: "ui/csb_purchase_error_screen.json", + csb: "ui/csb_screen.json", + csb_content: "ui/csb_sections/content_section.json", + csb_banner: "ui/csb_sections/csb_banner.json", + csb_buy: "ui/csb_sections/csb_buy_now_screen.json", + common_csb: "ui/csb_sections/csb_common.json", + csb_purchase_amazondevicewarning: "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + csb_purchase_warning: "ui/csb_sections/csb_purchase_warning_screen.json", + csb_subscription_panel: "ui/csb_sections/csb_subscription_panel.json", + csb_upsell: "ui/csb_sections/csb_upsell_dialog.json", + csb_packs: "ui/csb_sections/csb_view_packs_screen.json", + csb_welcome: "ui/csb_sections/csb_welcome_screen.json", + csb_faq: "ui/csb_sections/faq_section.json", + csb_landing: "ui/csb_sections/landing_section.json", + custom_templates: "ui/custom_templates_screen.json", + world_conversion_complete: "ui/world_conversion_complete_screen.json", + day_one_experience_intro: "ui/day_one_experience_intro_screen.json", + day_one_experience: "ui/day_one_experience_screen.json", + death: "ui/death_screen.json", + debug_screen: "ui/debug_screen.json", + dev_console: "ui/dev_console_screen.json", + disconnect: "ui/disconnect_screen.json", + display_logged_error: "ui/display_logged_error_screen.json", + discovery_dialog: "ui/edu_discovery_dialog.json", + edu_featured: "ui/edu_featured.json", + edu_quit_button: "ui/edu_pause_screen_pause_button.json", + persona_emote: "ui/emote_wheel_screen.json", + enchanting: "ui/enchanting_screen.json", + enchanting_pocket: "ui/enchanting_screen_pocket.json", + encyclopedia: "ui/encyclopedia_screen.json", + expanded_skin_pack: "ui/expanded_skin_pack_screen.json", + feed_common: "ui/feed_common.json", + file_upload: "ui/file_upload_screen.json", + furnace: "ui/furnace_screen.json", + furnace_pocket: "ui/furnace_screen_pocket.json", + game_tip: "ui/game_tip_screen.json", + gamepad_disconnected: "ui/gamepad_disconnected.json", + gameplay: "ui/gameplay_common.json", + gathering_info: "ui/gathering_info_screen.json", + globalpause: "ui/global_pause_screen.json", + grindstone: "ui/grindstone_screen.json", + grindstone_pocket: "ui/grindstone_screen_pocket.json", + gamma_calibration: "ui/gamma_calibration_screen.json", + horse: "ui/horse_screen.json", + horse_pocket: "ui/horse_screen_pocket.json", + how_to_play_common: "ui/how_to_play_common.json", + how_to_play: "ui/how_to_play_screen.json", + hud: "ui/hud_screen.json", + host_options: "ui/host_options_screen.json", + bed: "ui/in_bed_screen.json", + im_reader: "ui/immersive_reader.json", + crafting: "ui/inventory_screen.json", + crafting_pocket: "ui/inventory_screen_pocket.json", + invite: "ui/invite_screen.json", + jigsaw_editor: "ui/jigsaw_editor_screen.json", + late_join: "ui/late_join_pregame_screen.json", + library_modal: "ui/library_modal_screen.json", + local_world_picker: "ui/local_world_picker_screen.json", + loom: "ui/loom_screen.json", + loom_pocket: "ui/loom_screen_pocket.json", + manage_feed: "ui/manage_feed_screen.json", + manifest_validation: "ui/manifest_validation_screen.json", + sdl_label: "ui/marketplace_sdl/sdl_label.json", + sdl_dropdowns: "ui/marketplace_sdl/sdl_dropdowns.json", + sdl_image_row: "ui/marketplace_sdl/sdl_image_row.json", + sdl_text_row: "ui/marketplace_sdl/sdl_text_row.json", + mob_effect: "ui/mob_effect_screen.json", + non_xbl_user_management: "ui/non_xbl_user_management_screen.json", + npc_interact: "ui/npc_interact_screen.json", + online_safety: "ui/online_safety_screen.json", + pack_settings: "ui/pack_settings_screen.json", + panorama: "ui/panorama_screen.json", + patch_notes: "ui/patch_notes_screen.json", + pause: "ui/pause_screen.json", + pdp: "ui/pdp_screen.json", + pdp_screenshots: "ui/pdp_screenshots_section.json", + permissions: "ui/permissions_screen.json", + persona_cast_character_screen: "ui/persona_cast_character_screen.json", + persona_common: "ui/persona_common.json", + persona_popups: "ui/persona_popups.json", + play: "ui/play_screen.json", + perf_turtle: "ui/perf_turtle.json", + pocket_containers: "ui/pocket_containers.json", + popup_dialog: "ui/popup_dialog.json", + portfolio: "ui/portfolio_screen.json", + progress: "ui/progress_screen.json", + rating_prompt: "ui/rating_prompt.json", + realms_common: "ui/realms_common.json", + realms_create: "ui/realms_create.json", + realms_pending_invitations: "ui/realms_pending_invitations.json", + realms_slots: "ui/realms_slots_screen.json", + realms_settings: "ui/realms_settings_screen.json", + realms_allowlist: "ui/realms_allowlist.json", + realms_invite_link_settings: "ui/realms_invite_link_settings_screen.json", + realms_plus_ended: "ui/realms_plus_ended_screen.json", + realmsPlus: "ui/realmsPlus_screen.json", + realmsPlus_content: "ui/realmsPlus_sections/content_section.json", + realmsPlus_faq: "ui/realmsPlus_sections/faq_section.json", + realmsPlus_landing: "ui/realmsPlus_sections/landing_section.json", + realmsPlus_buy: "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + realmsPlus_packs: "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + realmsPlus_purchase_warning: "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + realms_stories_transition: "ui/realms_stories_transition_screen.json", + redstone: "ui/redstone_screen.json", + resource_packs: "ui/resource_packs_screen.json", + safe_zone: "ui/safe_zone_screen.json", + storage_migration_common: "ui/storage_migration_common.json", + storage_migration_generic: "ui/storage_migration_generic_screen.json", + scoreboard: "ui/scoreboards.json", + screenshot: "ui/screenshot_screen.json", + select_world: "ui/select_world_screen.json", + server_form: "ui/server_form.json", + settings: "ui/settings_screen.json", + controls_section: "ui/settings_sections/controls_section.json", + general_section: "ui/settings_sections/general_section.json", + realms_world_section: "ui/settings_sections/realms_world_section.json", + settings_common: "ui/settings_sections/settings_common.json", + world_section: "ui/settings_sections/world_section.json", + social_section: "ui/settings_sections/social_section.json", + sidebar_navigation: "ui/sidebar_navigation.json", + sign: "ui/sign_screen.json", + simple_inprogress: "ui/simple_inprogress_screen.json", + skin_pack_purchase: "ui/skin_pack_purchase_screen.json", + skin_picker: "ui/skin_picker_screen.json", + smithing_table: "ui/smithing_table_screen.json", + smithing_table_2: "ui/smithing_table_2_screen.json", + smithing_table_pocket: "ui/smithing_table_screen_pocket.json", + smithing_table_2_pocket: "ui/smithing_table_2_screen_pocket.json", + smoker: "ui/smoker_screen.json", + start: "ui/start_screen.json", + stonecutter: "ui/stonecutter_screen.json", + stonecutter_pocket: "ui/stonecutter_screen_pocket.json", + storage_management: "ui/storage_management.json", + storage_management_popup: "ui/storage_management_popup.json", + common_store: "ui/store_common.json", + store_layout: "ui/store_data_driven_screen.json", + filter_menu: "ui/store_filter_menu_screen.json", + store_inventory: "ui/store_inventory_screen.json", + store_item_list: "ui/store_item_list_screen.json", + store_progress: "ui/store_progress_screen.json", + promo_timeline: "ui/store_promo_timeline_screen.json", + store_sale_item_list: "ui/store_sales_item_list_screen.json", + store_search: "ui/store_search_screen.json", + sort_menu: "ui/store_sort_menu_screen.json", + structure_editor: "ui/structure_editor_screen.json", + submit_feedback: "ui/submit_feedback_screen.json", + tabbed_upsell: "ui/tabbed_upsell_screen.json", + thanks_for_testing: "ui/thanks_for_testing_screen.json", + third_party_store: "ui/third_party_store_screen.json", + toast_screen: "ui/toast_screen.json", + token_faq: "ui/token_faq_screen.json", + trade: "ui/trade_screen.json", + trade_pocket: "ui/trade_screen_pocket.json", + trade2: "ui/trade_2_screen.json", + trade2_pocket: "ui/trade_2_screen_pocket.json", + trialUpsell: "ui/trial_upsell_screen.json", + ugc_viewer: "ui/ugc_viewer_screen.json", + common_art: "ui/ui_art_assets_common.json", + common: "ui/ui_common.json", + "common-classic": "ui/ui_common_classic.json", + edu_common: "ui/ui_edu_common.json", + purchase_common: "ui/ui_purchase_common.json", + common_buttons: "ui/ui_template_buttons.json", + common_dialogs: "ui/ui_template_dialogs.json", + common_tabs: "ui/ui_template_tabs.json", + common_toggles: "ui/ui_template_toggles.json", + friendsbutton: "ui/ui_friendsbutton.json", + iconbutton: "ui/ui_iconbutton.json", + update_dimensions: "ui/update_dimensions.json", + update_version: "ui/update_version.json", + world_recovery: "ui/world_recovery_screen.json", + world_templates: "ui/world_templates_screen.json", + xbl_console_qr_signin: "ui/xbl_console_qr_signin.json", + xbl_console_signin: "ui/xbl_console_signin.json", + xbl_console_signin_succeeded: "ui/xbl_console_signin_succeeded.json", + xbl_immediate_signin: "ui/xbl_immediate_signin.json", + win10_trial_conversion: "ui/win10_trial_conversion_screen.json", +} From d02d0469c3af25b8a9021ace1ae073d31e9e7da9 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 23 Feb 2026 01:09:55 +0700 Subject: [PATCH 063/245] fix controls is not array --- src/analyzer/generate-ui-defs.ts | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/analyzer/generate-ui-defs.ts b/src/analyzer/generate-ui-defs.ts index 4f7c2cb..97c8f45 100644 --- a/src/analyzer/generate-ui-defs.ts +++ b/src/analyzer/generate-ui-defs.ts @@ -45,7 +45,6 @@ export function generateUIDefs(pack_folder: string) { const [name, extend] = element.split("@") if (name.startsWith("$")) return - if (name.startsWith("$")) return childElement.push(name) const elementPath = `${prefix}${name}` let extendsName: string | undefined @@ -66,7 +65,7 @@ export function generateUIDefs(pack_folder: string) { file, } - if (controls) { + if (controls && Array.isArray(controls)) { const children = scanElement( controls.map((c: string) => Object.entries(c)[0]), `${prefix}${name}/`, @@ -119,9 +118,7 @@ export function generateUIDefs(pack_folder: string) { ...elementsMap.get(name)!, type: elementDefs.type, }) - } else { - elementsMap.delete(name) - } + } else elementsMap.delete(name) } } }) From be4ceb4afea98439220915b8cb72318b4d54d959 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 23 Feb 2026 01:43:23 +0700 Subject: [PATCH 064/245] fix somebug --- src/analyzer/generate-code.ts | 5 ++++- src/analyzer/rebaseUIFiles.ts | 4 +--- src/components/UI.ts | 5 ----- 3 files changed, 5 insertions(+), 9 deletions(-) diff --git a/src/analyzer/generate-code.ts b/src/analyzer/generate-code.ts index dc9789b..5bc4ac6 100644 --- a/src/analyzer/generate-code.ts +++ b/src/analyzer/generate-code.ts @@ -1,6 +1,7 @@ import path from "node:path" import fs from "fs" import { config } from "../compilers/Configuration.js" +import { Type } from "../types/enums/Type.js" interface Element { file: string @@ -37,7 +38,9 @@ export function genCustomCode(pack_folder: string) { `type ${typeName} = {`, ...Object.entries(element).map(([elementPath, elementData]) => { filepaths[elementPath] = elementData.file - return ` "${elementPath}": {\n type: Type.${elementData.type.toUpperCase()},\n children: ${elementData.children ? elementData.children.map(c => `"${c}"`).join(" | ") : "string"}\n },` + const type = elementData.type.toUpperCase() + // @ts-ignore + return ` "${elementPath}": {\n type: Type.${Type[type] ? type : "PANEL"},\n children: ${elementData.children ? elementData.children.map(c => `"${c}"`).join(" | ") : "string"}\n },` }), "}", ].join("\n"), diff --git a/src/analyzer/rebaseUIFiles.ts b/src/analyzer/rebaseUIFiles.ts index da7922e..c7b0029 100644 --- a/src/analyzer/rebaseUIFiles.ts +++ b/src/analyzer/rebaseUIFiles.ts @@ -28,9 +28,7 @@ export function rebaseUIFiles(pack_folder: string) { const relativePath = fullPath.replace(targetDir + path.sep, "") const normalizedPath = relativePath.split(path.sep).join("/") - if (!ui.has(normalizedPath)) { - fs.rmSync(fullPath, { force: true }) - } else { + if (ui.has(normalizedPath)) { try { const fileContent = fs.readFileSync(fullPath, "utf-8") const parsedData = parse(fileContent) diff --git a/src/components/UI.ts b/src/components/UI.ts index c66036d..25ddcfe 100644 --- a/src/components/UI.ts +++ b/src/components/UI.ts @@ -53,11 +53,6 @@ export class UI extends Class process.exit(1) } - if (namespace && !/^\w+$/.test(namespace)) { - console.error(`The '${namespace}' cannot be used as a namespace`) - process.exit(1) - } - this.name = name?.match(/^(\w|\/)+/)?.[0] || RandomString(16) this.namespace = namespace || RandomNamespace() From c0e5021954e357ac290e299f500cd9bebd5a6c2a Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 23 Feb 2026 01:43:50 +0700 Subject: [PATCH 065/245] bump to version 4.1.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 2391aa7..9f0c99b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.0.16-indev", + "version": "4.1.0", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", From cba4669d542b77d060e799e854e0ed92f60d033c Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 23 Feb 2026 10:05:35 +0700 Subject: [PATCH 066/245] remove build config --- package.json | 2 +- resources/{asajs.config.js => example-config.js} | 0 src/compilers/Configuration.ts | 4 ++-- 3 files changed, 3 insertions(+), 3 deletions(-) rename resources/{asajs.config.js => example-config.js} (100%) diff --git a/package.json b/package.json index 9f0c99b..8ec87c4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.1.0", + "version": "4.1.1", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", diff --git a/resources/asajs.config.js b/resources/example-config.js similarity index 100% rename from resources/asajs.config.js rename to resources/example-config.js diff --git a/src/compilers/Configuration.ts b/src/compilers/Configuration.ts index 1691f3e..4c4c066 100644 --- a/src/compilers/Configuration.ts +++ b/src/compilers/Configuration.ts @@ -43,7 +43,7 @@ if (!fs.existsSync("asajs.config.js")) { return \`#$\{out.join("")}\` }\n`, - fs.readFileSync("resources/asajs.config.js", "utf-8").replace("asajs/", "./"), + fs.readFileSync("resources/example-config.js", "utf-8").replace("asajs/", "./"), ].join("\n"), ) } else { @@ -51,7 +51,7 @@ if (!fs.existsSync("asajs.config.js")) { "asajs.config.js", [ 'import { RandomBindingString } from "asajs"\n', - fs.readFileSync("node_modules/asajs/resources/asajs.config.js", "utf-8"), + fs.readFileSync("node_modules/asajs/resources/example-config.js", "utf-8"), ].join("\n"), ) } From 581228ada93fe4f9f7b88f7b201ece5a0d42b758 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 23 Feb 2026 10:45:53 +0700 Subject: [PATCH 067/245] str_slice function --- package.json | 2 +- src/compilers/bindings/Checker.ts | 8 ++++++ src/compilers/bindings/Function.ts | 46 +++++++++++++++++++++++++++++- 3 files changed, 54 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 8ec87c4..9b8f7dc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.1.1", + "version": "4.1.2-indev", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", diff --git a/src/compilers/bindings/Checker.ts b/src/compilers/bindings/Checker.ts index 16de11f..aace94b 100644 --- a/src/compilers/bindings/Checker.ts +++ b/src/compilers/bindings/Checker.ts @@ -30,6 +30,14 @@ export function isHasBinding(input: string) { return /#\w+/.test(input) } +export function isBinding(input: string) { + return /^#\w+$/.test(input) +} + +export function isNumber(input: string) { + return /^[+-]?(?:\d+|\d+\.\d*|\.\d+)(?:[eE][+-]?\d+)?$/.test(input) +} + export function isString(input: string) { return /^'.+'$/.test(input) } diff --git a/src/compilers/bindings/Function.ts b/src/compilers/bindings/Function.ts index 322e7b4..6a589fb 100644 --- a/src/compilers/bindings/Function.ts +++ b/src/compilers/bindings/Function.ts @@ -1,7 +1,7 @@ import { RandomBindingString, RandomString, ResolveBinding } from "../../components/Utils.js" import { BindingItem } from "../../types/properties/value.js" import { bindingFuntions } from "../Configuration.js" -import { isString } from "./Checker.js" +import { isBinding, isNumber, isString } from "./Checker.js" import { Expression, GenBinding } from "./types.js" type CallbackRet = { @@ -141,6 +141,12 @@ export const defaultFunctions = { } }, + not_contains: (source_str, contains_str) => { + return { + value: `(${source_str} - ${contains_str}) = ${source_str}`, + } + }, + contains: (source_str, contains_str) => { return { value: `not ((${source_str} - ${contains_str}) = ${source_str})`, @@ -195,6 +201,44 @@ export const defaultFunctions = { } }, + str_slice: (str, start, end) => { + const prefix = `'asajs:${RandomString(5)}:'` + + if (isBinding(start)) start = `('%.' + (${start} + ${prefix.length - 2}) + 's')` + else if (isNumber(start)) start = `'%.${+start + prefix.length - 2}s'` + else throw new Error("Invalid start") + + const genStrBinds: GenBinding = { + source: ``, + target: RandomBindingString(), + } + + if (isBinding(str)) genStrBinds.source = `(${prefix} + ${str})` + else if (isString(str)) genStrBinds.source = `${prefix.slice(0, -1)}${str.slice(1)}` + else throw new Error("Invalid str") + + if (end) { + if (isBinding(end)) end = `('%.' + (${end} + ${prefix.length - 2}) + 's')` + else if (isNumber(end)) end = `'%.${+end + prefix.length - 2}s'` + else throw new Error("Invalid end") + + const sliceEnd: GenBinding = { + source: `(${end} * ${genStrBinds.target})`, + target: RandomBindingString(), + } + + return { + genBindings: [genStrBinds, sliceEnd], + value: `${sliceEnd.target} - (${start} * ${sliceEnd.target})`, + } + } else { + return { + genBindings: [genStrBinds], + value: `${genStrBinds.target} - (${start} * ${genStrBinds.target})`, + } + } + }, + /** * Return a translatable string * @param key From 08961f692b582c27a04a391a0acc6bd0bb6ee2e3 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 23 Feb 2026 11:00:34 +0700 Subject: [PATCH 068/245] slice --- src/compilers/bindings/Function.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/compilers/bindings/Function.ts b/src/compilers/bindings/Function.ts index 6a589fb..79007de 100644 --- a/src/compilers/bindings/Function.ts +++ b/src/compilers/bindings/Function.ts @@ -204,10 +204,6 @@ export const defaultFunctions = { str_slice: (str, start, end) => { const prefix = `'asajs:${RandomString(5)}:'` - if (isBinding(start)) start = `('%.' + (${start} + ${prefix.length - 2}) + 's')` - else if (isNumber(start)) start = `'%.${+start + prefix.length - 2}s'` - else throw new Error("Invalid start") - const genStrBinds: GenBinding = { source: ``, target: RandomBindingString(), @@ -217,8 +213,12 @@ export const defaultFunctions = { else if (isString(str)) genStrBinds.source = `${prefix.slice(0, -1)}${str.slice(1)}` else throw new Error("Invalid str") + if (isBinding(start)) start = `('%.' + (${prefix.length - 2} + ${start}) + 's')` + else if (isNumber(start)) start = `'%.${+start + prefix.length - 2}s'` + else throw new Error("Invalid start") + if (end) { - if (isBinding(end)) end = `('%.' + (${end} + ${prefix.length - 2}) + 's')` + if (isBinding(end)) end = `('%.' + (${prefix.length - 2} + ${end}) + 's')` else if (isNumber(end)) end = `'%.${+end + prefix.length - 2}s'` else throw new Error("Invalid end") From 58a193455a4362fdcff1541c874726fc3ac5da03 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 23 Feb 2026 12:42:15 +0700 Subject: [PATCH 069/245] add ui build folder --- .npmignore | 3 ++- config.d.ts | 1 + src/analyzer/rebaseUIFiles.ts | 37 +++++++++------------------------- src/compilers/Configuration.ts | 1 + src/components/UI.ts | 4 ++-- tsconfig.json | 2 +- 6 files changed, 17 insertions(+), 31 deletions(-) diff --git a/.npmignore b/.npmignore index 24a9309..703f145 100644 --- a/.npmignore +++ b/.npmignore @@ -7,4 +7,5 @@ test .tsbuildinfo tsconfig.json asajs.config.js -build \ No newline at end of file +build +*.js.map \ No newline at end of file diff --git a/config.d.ts b/config.d.ts index 28c11e1..d83aa08 100644 --- a/config.d.ts +++ b/config.d.ts @@ -15,6 +15,7 @@ export interface Config { fixInventoryItemRenderer?: boolean buildFolder?: string fileExtension?: string + uiBuildFolder?: string } ui_analyzer?: { diff --git a/src/analyzer/rebaseUIFiles.ts b/src/analyzer/rebaseUIFiles.ts index c7b0029..cd2c137 100644 --- a/src/analyzer/rebaseUIFiles.ts +++ b/src/analyzer/rebaseUIFiles.ts @@ -12,37 +12,20 @@ export function rebaseUIFiles(pack_folder: string) { if (!fs.existsSync(targetDir)) return - const processDirectory = (currentDir: string) => { - const entries = fs.readdirSync(currentDir, { withFileTypes: true }) + for (const relativePath of ui) { + const fullPath = path.join(targetDir, relativePath) - for (const entry of entries) { - const fullPath = path.join(currentDir, entry.name) + if (fs.existsSync(fullPath) && fs.statSync(fullPath).isFile()) { + try { + const fileContent = fs.readFileSync(fullPath, "utf-8") + const parsedData = parse(fileContent) - if (entry.isDirectory()) { - processDirectory(fullPath) - - if (fs.readdirSync(fullPath).length === 0) { - fs.rmdirSync(fullPath) - } - } else if (entry.isFile()) { - const relativePath = fullPath.replace(targetDir + path.sep, "") - const normalizedPath = relativePath.split(path.sep).join("/") - - if (ui.has(normalizedPath)) { - try { - const fileContent = fs.readFileSync(fullPath, "utf-8") - const parsedData = parse(fileContent) - - if (parsedData !== undefined) { - fs.writeFileSync(fullPath, JSON.stringify(parsedData, null, 4), "utf-8") - } - } catch (error) { - console.error(`Parser error: ${fullPath}`, error) - } + if (parsedData !== undefined) { + fs.writeFileSync(fullPath, JSON.stringify(parsedData, null, 4), "utf-8") } + } catch (error) { + console.error(`Parser error: ${fullPath}`, error) } } } - - processDirectory(targetDir) } diff --git a/src/compilers/Configuration.ts b/src/compilers/Configuration.ts index 4c4c066..2dd1118 100644 --- a/src/compilers/Configuration.ts +++ b/src/compilers/Configuration.ts @@ -63,6 +63,7 @@ export const isBuildMode = options["build"] ?? config.compiler?.enabled ?? false export const isLinkMode = options["link"] ?? config.compiler?.autoImport ?? false export const unLinked = options["unlink"] ?? !(config.compiler?.autoImport ?? true) export const buildFolder = config.compiler?.buildFolder || "build" +export const uiBuildFolder = config.compiler?.uiBuildFolder || "asajs" export const bindingFuntions = config.binding_functions diff --git a/src/components/UI.ts b/src/components/UI.ts index 25ddcfe..f9e4a05 100644 --- a/src/components/UI.ts +++ b/src/components/UI.ts @@ -14,7 +14,7 @@ import { RandomString, ResolveBinding } from "./Utils.js" import { RandomNamespace } from "../compilers/Random.js" import util from "node:util" -import { config } from "../compilers/Configuration.js" +import { config, uiBuildFolder } from "../compilers/Configuration.js" interface ExtendUI { name: string @@ -57,7 +57,7 @@ export class UI extends Class this.namespace = namespace || RandomNamespace() if (!path) - this.path = `asajs/${this.namespace}${config.compiler?.fileExtension ? (config.compiler.fileExtension.startsWith(".") ? config.compiler.fileExtension : `.${config.compiler.fileExtension}`) : ".json"}` + this.path = `${uiBuildFolder}/${this.namespace}${config.compiler?.fileExtension ? (config.compiler.fileExtension.startsWith(".") ? config.compiler.fileExtension : `.${config.compiler.fileExtension}`) : ".json"}` else this.path = path this.extendable = this.name.search("/") === -1 diff --git a/tsconfig.json b/tsconfig.json index faa887d..fb94435 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,7 +6,7 @@ "outDir": "dist/js", "declarationDir": "dist/types", "declaration": true, - "sourceMap": false, + "sourceMap": true, "strict": true, "esModuleInterop": true, "incremental": true, From 12dadcac2c3f8ea8e6b2554bb0b8cb867d8f97c3 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 23 Feb 2026 14:22:10 +0700 Subject: [PATCH 070/245] stupid --- package.json | 2 +- src/compilers/Configuration.ts | 2 +- src/compilers/bindings/Parser.ts | 3 +++ src/compilers/ui/builder.ts | 22 ++++++++++++++++------ src/components/UI.ts | 10 ++++++++-- 5 files changed, 29 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 9b8f7dc..8fe98b7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.1.2-indev", + "version": "4.1.3-indev", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", diff --git a/src/compilers/Configuration.ts b/src/compilers/Configuration.ts index 2dd1118..da9ea95 100644 --- a/src/compilers/Configuration.ts +++ b/src/compilers/Configuration.ts @@ -51,7 +51,7 @@ if (!fs.existsSync("asajs.config.js")) { "asajs.config.js", [ 'import { RandomBindingString } from "asajs"\n', - fs.readFileSync("node_modules/asajs/resources/example-config.js", "utf-8"), + fs.readFileSync(path.join(process.cwd(), "node_modules/asajs/resources/example-config.js"), "utf-8"), ].join("\n"), ) } diff --git a/src/compilers/bindings/Parser.ts b/src/compilers/bindings/Parser.ts index 70bd8b7..ba2bb9d 100644 --- a/src/compilers/bindings/Parser.ts +++ b/src/compilers/bindings/Parser.ts @@ -13,6 +13,8 @@ export class Parser { output: Expression tokens: Token[] + static hasError = false + constructor( private input: string, private cache = new Map(), @@ -414,6 +416,7 @@ export class Parser { private expect(kind: TokenKind, err: string) { const prev = this.at() || this.last() if (!prev || prev.kind !== kind) { + Parser.hasError = true throw new Error( `\x1b[31m${this.getPointer(prev)}\n` + `[ERROR]: ${err}\x1b[0m - Expected ${TokenKind[kind]}`, ) diff --git a/src/compilers/ui/builder.ts b/src/compilers/ui/builder.ts index 33fe14b..40c1e9d 100644 --- a/src/compilers/ui/builder.ts +++ b/src/compilers/ui/builder.ts @@ -10,6 +10,7 @@ import { disableRSP, enableRSP } from "./installer.js" import { Log } from "../PreCompile.js" import path from "path" import { API_events } from "../../components/API.js" +import { Parser } from "../bindings/Parser.js" async function buildUI() { const build = Memory.build() @@ -40,7 +41,9 @@ async function buildUI() { ), "utf-8", ) - .then(() => Log("INFO", `${outFile} with ${Object.keys(value).length} elements created!`)) + .then(() => + Log("INFO", `${outFile.replace(/\\/g, "/")} with ${Object.keys(value).length} elements created!`), + ) build.delete(file) return file }), @@ -58,12 +61,15 @@ async function buildUI() { fs .stat(`${buildFolder}/pack_icon.png`) .catch(() => - fs.copyFile( - isTestMode ? "resources/pack_icon.png" : "node_modules/asajs/resources/pack_icon.png", - `${buildFolder}/pack_icon.png`, - ), + fs + .copyFile( + isTestMode + ? "resources/pack_icon.png" + : path.join(process.cwd(), "node_modules/asajs/resources/pack_icon.png"), + `${buildFolder}/pack_icon.png`, + ) + .then(() => Log("INFO", `${buildFolder}/pack_icon.png copied!`)), ) - .then(() => Log("INFO", `${buildFolder}/pack_icon.png copied!`)) .catch(() => Log("WARN", `cannot copy ${buildFolder}/pack_icon.png!`)), ]).catch(error => console.error(error)) @@ -75,6 +81,10 @@ if (isBuildMode) { process.on("beforeExit", async () => { if (first) { first = false + if (Parser.hasError) { + console.error() + return + } await createBuildFolder() await buildUI() if (isLinkMode) await linkToGame() diff --git a/src/components/UI.ts b/src/components/UI.ts index f9e4a05..63cdb7d 100644 --- a/src/components/UI.ts +++ b/src/components/UI.ts @@ -12,6 +12,7 @@ import { AnimationKeyframe } from "./AnimationKeyframe.js" import { Class } from "./Class.js" import { RandomString, ResolveBinding } from "./Utils.js" import { RandomNamespace } from "../compilers/Random.js" +import nodepath from "path" import util from "node:util" import { config, uiBuildFolder } from "../compilers/Configuration.js" @@ -22,6 +23,12 @@ interface ExtendUI { toString(): string } +const fileExt = config.compiler?.fileExtension + ? config.compiler.fileExtension.startsWith(".") + ? config.compiler.fileExtension + : `.${config.compiler.fileExtension}` + : ".json" + export class UI extends Class { readonly path: string readonly name: string @@ -56,8 +63,7 @@ export class UI extends Class this.name = name?.match(/^(\w|\/)+/)?.[0] || RandomString(16) this.namespace = namespace || RandomNamespace() - if (!path) - this.path = `${uiBuildFolder}/${this.namespace}${config.compiler?.fileExtension ? (config.compiler.fileExtension.startsWith(".") ? config.compiler.fileExtension : `.${config.compiler.fileExtension}`) : ".json"}` + if (!path) this.path = nodepath.join(uiBuildFolder, `${this.namespace}${fileExt}`) else this.path = path this.extendable = this.name.search("/") === -1 From 41d402625b0e7f0dc489c9f8223061af1aee85f9 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 23 Feb 2026 14:24:06 +0700 Subject: [PATCH 071/245] asajs 4.1.3 stable --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8fe98b7..8e56369 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.1.3-indev", + "version": "4.1.3", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", From af3c42f7e823bb0ad26dbc7e0cf8a644b29dbb8a Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 23 Feb 2026 15:58:03 +0700 Subject: [PATCH 072/245] config --- config.d.ts | 4 + resources/example-config.js | 3 + src/compilers/Configuration.ts | 5 + src/compilers/Random.ts | 7 -- src/compilers/bindings/Function.ts | 11 +- src/compilers/bindings/Parser.ts | 4 +- src/components/AnimationKeyframe.ts | 3 +- src/components/UI.ts | 17 ++- src/components/Utils.ts | 168 +++++++++++++++++++++------- test/app.ts | 23 ++-- 10 files changed, 170 insertions(+), 75 deletions(-) delete mode 100644 src/compilers/Random.ts diff --git a/config.d.ts b/config.d.ts index d83aa08..aea3149 100644 --- a/config.d.ts +++ b/config.d.ts @@ -16,6 +16,10 @@ export interface Config { buildFolder?: string fileExtension?: string uiBuildFolder?: string + obfuscateStringName?: boolean + allowRandomStringName?: boolean + namespaceCount?: number + forceRandomStringLength?: number } ui_analyzer?: { diff --git a/resources/example-config.js b/resources/example-config.js index 2d42c27..21ffa8f 100644 --- a/resources/example-config.js +++ b/resources/example-config.js @@ -13,6 +13,9 @@ export const config = { autoImport: true, autoEnable: true, importToPreview: false, + obfuscateStringName: true, + allowRandomStringName: true, + forceRandomStringLength: 16, }, binding_functions: { custom_abs: function (number) { diff --git a/src/compilers/Configuration.ts b/src/compilers/Configuration.ts index da9ea95..938d879 100644 --- a/src/compilers/Configuration.ts +++ b/src/compilers/Configuration.ts @@ -58,12 +58,17 @@ if (!fs.existsSync("asajs.config.js")) { } export const config: Config = createRequire(import.meta.url)(path.resolve(process.cwd(), "asajs.config.js")).config +export const debugMode = options["debug"] ?? false export const isBuildMode = options["build"] ?? config.compiler?.enabled ?? false export const isLinkMode = options["link"] ?? config.compiler?.autoImport ?? false export const unLinked = options["unlink"] ?? !(config.compiler?.autoImport ?? true) export const buildFolder = config.compiler?.buildFolder || "build" export const uiBuildFolder = config.compiler?.uiBuildFolder || "asajs" +export const isNotObfuscate = debugMode || !(config.compiler?.obfuscateStringName ?? false) +export const allowRandomStringName = !debugMode || (config.compiler?.allowRandomStringName ?? true) +export const namespaceCount = debugMode ? 5 : (config.compiler?.namespaceCount ?? 15) +export const forceRandomStringLength = debugMode ? 10 : config.compiler?.forceRandomStringLength export const bindingFuntions = config.binding_functions diff --git a/src/compilers/Random.ts b/src/compilers/Random.ts deleted file mode 100644 index 390dfdb..0000000 --- a/src/compilers/Random.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { RandomString } from "../components/Utils.js" - -const namespaces = Array.from({ length: 15 }, () => RandomString(16)) - -export function RandomNamespace() { - return namespaces[Math.floor(Math.random() * namespaces.length)] -} diff --git a/src/compilers/bindings/Function.ts b/src/compilers/bindings/Function.ts index 79007de..533c89b 100644 --- a/src/compilers/bindings/Function.ts +++ b/src/compilers/bindings/Function.ts @@ -1,4 +1,4 @@ -import { RandomBindingString, RandomString, ResolveBinding } from "../../components/Utils.js" +import { bs, RandomBindingString, RandomString, ResolveBinding } from "../../components/Utils.js" import { BindingItem } from "../../types/properties/value.js" import { bindingFuntions } from "../Configuration.js" import { isBinding, isNumber, isString } from "./Checker.js" @@ -6,6 +6,7 @@ import { Expression, GenBinding } from "./types.js" type CallbackRet = { genBindings?: GenBinding[] + doNotAddParentesis?: boolean value: Expression } type Callback = (...args: Expression[]) => CallbackRet @@ -239,6 +240,14 @@ export const defaultFunctions = { } }, + bs: input_binding => { + if (!isBinding(input_binding)) throw new Error("Invalid input binding") + return { + doNotAddParentesis: true, + value: bs(<`#${string}`>input_binding), + } + }, + /** * Return a translatable string * @param key diff --git a/src/compilers/bindings/Parser.ts b/src/compilers/bindings/Parser.ts index ba2bb9d..0e53cde 100644 --- a/src/compilers/bindings/Parser.ts +++ b/src/compilers/bindings/Parser.ts @@ -407,9 +407,9 @@ export class Parser { if (!func) { return this.expect(TokenKind.WORD, "Function not found!")! } else { - const { genBindings, value } = func(...params) + const { genBindings, value, doNotAddParentesis } = func(...params) if (genBindings) this.genBindings.push(...genBindings) - return `(${value})` + return doNotAddParentesis ? value : `(${value})` } } diff --git a/src/components/AnimationKeyframe.ts b/src/components/AnimationKeyframe.ts index 18df5c4..3ad805a 100644 --- a/src/components/AnimationKeyframe.ts +++ b/src/components/AnimationKeyframe.ts @@ -4,8 +4,7 @@ import { AnimType } from "../types/enums/AnimType.js" import { KeyframeAnimationProperties } from "../types/properties/element/Animation.js" import { Animation } from "./Animation.js" import { Class } from "./Class.js" -import { RandomString } from "./Utils.js" -import { RandomNamespace } from "../compilers/Random.js" +import { RandomNamespace, RandomString } from "./Utils.js" import util from "node:util" diff --git a/src/components/UI.ts b/src/components/UI.ts index 63cdb7d..43a4256 100644 --- a/src/components/UI.ts +++ b/src/components/UI.ts @@ -10,12 +10,11 @@ import { BindingItem, ButtonMapping, ModificationItem, VariableItem, Variables } import { Animation } from "./Animation.js" import { AnimationKeyframe } from "./AnimationKeyframe.js" import { Class } from "./Class.js" -import { RandomString, ResolveBinding } from "./Utils.js" -import { RandomNamespace } from "../compilers/Random.js" +import { defaultNamespace, RandomNamespace, RandomString, ResolveBinding } from "./Utils.js" import nodepath from "path" import util from "node:util" -import { config, uiBuildFolder } from "../compilers/Configuration.js" +import { config, isNotObfuscate, uiBuildFolder } from "../compilers/Configuration.js" interface ExtendUI { name: string @@ -52,6 +51,7 @@ export class UI extends Class name?: string, namespace?: string, path?: string, + allowObfuscate?: boolean, ) { super() @@ -60,8 +60,13 @@ export class UI extends Class process.exit(1) } - this.name = name?.match(/^(\w|\/)+/)?.[0] || RandomString(16) - this.namespace = namespace || RandomNamespace() + if (isNotObfuscate || !(allowObfuscate ?? true)) { + this.name = name?.match(/^(\w|\/)+/)?.[0] || RandomString(16) + this.namespace = namespace || defaultNamespace || RandomNamespace() + } else { + this.name = RandomString(16) + this.namespace = RandomNamespace() + } if (!path) this.path = nodepath.join(uiBuildFolder, `${this.namespace}${fileExt}`) else this.path = path @@ -204,7 +209,7 @@ export class ModifyUI ex protected modifications: ModificationItem[] = [] constructor(namespace: string, name: string, path: string) { - super(undefined, name, namespace, path) + super(undefined, name, namespace, path, false) } /** diff --git a/src/components/Utils.ts b/src/components/Utils.ts index 0135c24..27c59de 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -40,6 +40,12 @@ import { SmartAnimation } from "../types/enums/SmartAnimation.js" import { MemoryModify } from "../compilers/Memory.js" import { Lexer } from "../compilers/bindings/Lexer.js" import { Token, TokenKind, TSToken, TSTokenKind } from "../compilers/bindings/types.js" +import { + allowRandomStringName, + forceRandomStringLength, + isNotObfuscate, + namespaceCount, +} from "../compilers/Configuration.js" type CompileBinding = `[${string}]` @@ -145,9 +151,18 @@ export function ResolveBinding(cache: Map, ...bindings: Binding return result } -export function RandomString(length: number, base: number = 32) { +export let defaultNamespace: string | null = null +export function SetDefaultNamespace(input: string) { + defaultNamespace = input +} +export function ClearDefaultNamespace() { + defaultNamespace = null +} + +export function GenRandomString(length: number, base = 32) { const chars = "0123456789abcdefghijklmnopqrstuvwxyz".slice(0, base) const out = new Array(length) + if (forceRandomStringLength) length = forceRandomStringLength try { const buffer = new Uint8Array(length) @@ -164,8 +179,53 @@ export function RandomString(length: number, base: number = 32) { return out.join("") } -export function RandomBindingString(length: number = 16, base: number = 32): Binding { - return `#${RandomString(length, base)}` +const StringID = GenRandomString(5, undefined) +const nspl = allowRandomStringName + ? Array.from({ length: namespaceCount }, () => RandomString(16)) + : (() => { + return Array.from({ length: namespaceCount }, (i, index) => `${StringID}_namespace_${index + 1}`) + })() + +export function RandomNamespace() { + return nspl[Math.floor(Math.random() * nspl.length)] +} + +let rndStr = 1 +export function RandomString(length: number, base: number = 32, force?: boolean) { + if (force || allowRandomStringName) return GenRandomString(length, base) + else return `${StringID}_string_${rndStr++}` +} + +let rndStrBind = 1 +export function RandomBindingString(length: number = 16, base: number = 32, force?: boolean): Binding { + if (force || allowRandomStringName) return `#${GenRandomString(length, base)}` + else return `#${StringID}_binding_${rndStrBind++}` +} + +const rndMap = new Map() + +export function s(input: string) { + if (isNotObfuscate) return input + else { + if (rndMap.has(input)) return rndMap.get(input) as string + else { + const ret = RandomBindingString() + rndMap.set(input, ret) + return ret + } + } +} + +export function bs(input: `#${string}`): `#${string}` { + if (isNotObfuscate) return input + else { + if (rndMap.has(input)) return rndMap.get(input) as `#${string}` + else { + const ret = RandomBindingString() + rndMap.set(input, ret) + return ret + } + } } export function GetItemByAuxID(auxID: number) { @@ -224,36 +284,41 @@ export function Modify>(namespace: T, return modifyUI } -export function Panel(properties?: Panel, namespace?: string, name?: string) { - return new UI(Type.PANEL, name, namespace).setProperties(properties || {}) +export function Panel(properties?: Panel, namespace?: string, name?: string, allowObfuscate?: boolean) { + return new UI(Type.PANEL, name, namespace, undefined, allowObfuscate).setProperties(properties || {}) } -export function CollectionPanel(properties?: CollectionPanel, namespace?: string, name?: string) { - return new UI(Type.COLLECTION_PANEL, name, namespace).setProperties(properties || {}) +export function CollectionPanel( + properties?: CollectionPanel, + namespace?: string, + name?: string, + allowObfuscate?: boolean, +) { + return new UI(Type.COLLECTION_PANEL, name, namespace, undefined, allowObfuscate).setProperties(properties || {}) } -export function StackPanel(properties?: StackPanel, namespace?: string, name?: string) { - return new UI(Type.STACK_PANEL, name, namespace).setProperties(properties || {}) +export function StackPanel(properties?: StackPanel, namespace?: string, name?: string, allowObfuscate?: boolean) { + return new UI(Type.STACK_PANEL, name, namespace, undefined, allowObfuscate).setProperties(properties || {}) } -export function InputPanel(properties?: InputPanel, namespace?: string, name?: string) { - return new UI(Type.INPUT_PANEL, name, namespace).setProperties(properties || {}) +export function InputPanel(properties?: InputPanel, namespace?: string, name?: string, allowObfuscate?: boolean) { + return new UI(Type.INPUT_PANEL, name, namespace, undefined, allowObfuscate).setProperties(properties || {}) } -export function Gird(properties?: Grid, namespace?: string, name?: string) { - return new UI(Type.GRID, name, namespace).setProperties(properties || {}) +export function Gird(properties?: Grid, namespace?: string, name?: string, allowObfuscate?: boolean) { + return new UI(Type.GRID, name, namespace, undefined, allowObfuscate).setProperties(properties || {}) } -export function Screen(properties?: Screen, namespace?: string, name?: string) { - return new UI(Type.SCREEN, name, namespace).setProperties(properties || {}) +export function Screen(properties?: Screen, namespace?: string, name?: string, allowObfuscate?: boolean) { + return new UI(Type.SCREEN, name, namespace, undefined, allowObfuscate).setProperties(properties || {}) } -export function Image(properties?: Image, namespace?: string, name?: string) { - return new UI(Type.IMAGE, name, namespace).setProperties(properties || {}) +export function Image(properties?: Image, namespace?: string, name?: string, allowObfuscate?: boolean) { + return new UI(Type.IMAGE, name, namespace, undefined, allowObfuscate).setProperties(properties || {}) } -export function Label(properties?: Label, namespace?: string, name?: string) { - return new UI(Type.LABEL, name, namespace).setProperties(properties || {}) +export function Label(properties?: Label, namespace?: string, name?: string, allowObfuscate?: boolean) { + return new UI(Type.LABEL, name, namespace, undefined, allowObfuscate).setProperties(properties || {}) } export function Custom( @@ -261,54 +326,70 @@ export function Custom( properties?: Properties, namespace?: string, name?: string, + allowObfuscate?: boolean, ) { - const custom = new UI(Type.CUSTOM, name, namespace) + const custom = new UI(Type.CUSTOM, name, namespace, undefined, allowObfuscate) if (properties) custom.setProperties({ renderer, ...properties }) return custom } -export function TooltipTrigger(properties?: TooltipTrigger, namespace?: string, name?: string) { - return new UI(Type.TOOLTIP_TRIGGER, name, namespace).setProperties(properties || {}) +export function TooltipTrigger( + properties?: TooltipTrigger, + namespace?: string, + name?: string, + allowObfuscate?: boolean, +) { + return new UI(Type.TOOLTIP_TRIGGER, name, namespace, undefined, allowObfuscate).setProperties(properties || {}) } -export function Button(properties?: Button, namespace?: string, name?: string) { - return new UI(Type.BUTTON, name, namespace).setProperties(properties || {}) +export function Button(properties?: Button, namespace?: string, name?: string, allowObfuscate?: boolean) { + return new UI(Type.BUTTON, name, namespace, undefined, allowObfuscate).setProperties(properties || {}) } -export function Toggle(properties?: Toggle, namespace?: string, name?: string) { - return new UI(Type.TOGGLE, name, namespace).setProperties(properties || {}) +export function Toggle(properties?: Toggle, namespace?: string, name?: string, allowObfuscate?: boolean) { + return new UI(Type.TOGGLE, name, namespace, undefined, allowObfuscate).setProperties(properties || {}) } -export function Dropdown(properties?: Dropdown, namespace?: string, name?: string) { - return new UI(Type.DROPDOWN, name, namespace).setProperties(properties || {}) +export function Dropdown(properties?: Dropdown, namespace?: string, name?: string, allowObfuscate?: boolean) { + return new UI(Type.DROPDOWN, name, namespace, undefined, allowObfuscate).setProperties(properties || {}) } -export function SelectionWheel(properties?: SelectionWheel, namespace?: string, name?: string) { - return new UI(Type.SELECTION_WHEEL, name, namespace).setProperties(properties || {}) +export function SelectionWheel( + properties?: SelectionWheel, + namespace?: string, + name?: string, + allowObfuscate?: boolean, +) { + return new UI(Type.SELECTION_WHEEL, name, namespace, undefined, allowObfuscate).setProperties(properties || {}) } -export function EditBox(properties?: EditBox, namespace?: string, name?: string) { - return new UI(Type.EDIT_BOX, name, namespace).setProperties(properties || {}) +export function EditBox(properties?: EditBox, namespace?: string, name?: string, allowObfuscate?: boolean) { + return new UI(Type.EDIT_BOX, name, namespace, undefined, allowObfuscate).setProperties(properties || {}) } -export function ScrollbarBox(properties?: ScrollbarBox, namespace?: string, name?: string) { - return new UI(Type.SCROLLBAR_BOX, name, namespace).setProperties(properties || {}) +export function ScrollbarBox(properties?: ScrollbarBox, namespace?: string, name?: string, allowObfuscate?: boolean) { + return new UI(Type.SCROLLBAR_BOX, name, namespace, undefined, allowObfuscate).setProperties(properties || {}) } -export function ScrollbarTrack(properties?: ScrollbarTrack, namespace?: string, name?: string) { - return new UI(Type.SCROLL_TRACK, name, namespace).setProperties(properties || {}) +export function ScrollbarTrack( + properties?: ScrollbarTrack, + namespace?: string, + name?: string, + allowObfuscate?: boolean, +) { + return new UI(Type.SCROLL_TRACK, name, namespace, undefined, allowObfuscate).setProperties(properties || {}) } -export function ScrollView(properties?: ScrollView, namespace?: string, name?: string) { - return new UI(Type.SCROLL_VIEW, name, namespace).setProperties(properties || {}) +export function ScrollView(properties?: ScrollView, namespace?: string, name?: string, allowObfuscate?: boolean) { + return new UI(Type.SCROLL_VIEW, name, namespace, undefined, allowObfuscate).setProperties(properties || {}) } -export function Slider(properties?: Slider, namespace?: string, name?: string) { - return new UI(Type.SLIDER, name, namespace).setProperties(properties || {}) +export function Slider(properties?: Slider, namespace?: string, name?: string, allowObfuscate?: boolean) { + return new UI(Type.SLIDER, name, namespace, undefined, allowObfuscate).setProperties(properties || {}) } -export function SliderBox(properties?: SliderBox, namespace?: string, name?: string) { - return new UI(Type.SLIDER_BOX, name, namespace).setProperties(properties || {}) +export function SliderBox(properties?: SliderBox, namespace?: string, name?: string, allowObfuscate?: boolean) { + return new UI(Type.SLIDER_BOX, name, namespace, undefined, allowObfuscate).setProperties(properties || {}) } export function ExtendsOf( @@ -316,9 +397,10 @@ export function ExtendsOf( properties?: Properties, namespace?: string, name?: string, + allowObfuscate?: boolean, ) { if (!element.extendable) throw new Error("Cannot extend a UI that cannot be extended") - const ui = new UI(undefined, name, namespace) + const ui = new UI(undefined, name, namespace, undefined, allowObfuscate) if (properties) ui.setProperties(properties) // @ts-ignore ui.extend = element diff --git a/test/app.ts b/test/app.ts index fefcd00..55e4124 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1,16 +1,11 @@ -import { Anchor, Label, Modify } from ".." +import { Label, Modify, Panel } from ".." -const label = Label( - { - text: "Hello World from my Custom UI!", - shadow: true, - anchor: Anchor.TOP_MIDDLE, - offset: [0, 10], - }, - "test", -).addBindings({ - source_property_name: `[ custom_abs(#a) ]`, - target_property_name: "#text", -}) +const panel = Panel() -Modify("start", "start_screen_content").insertChild(label) +panel.addChild( + Label({ + text: "Hello World", + }), +) + +Modify("start", "start_screen_content").insertChild(panel) From 88509283881e99f6132471c31b5a4c9978353694 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 23 Feb 2026 16:31:23 +0700 Subject: [PATCH 073/245] rename function grid to gird and fix image not show all properties --- package.json | 2 +- src/components/Utils.ts | 2 +- src/types/properties/element/Cycler.ts | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 8e56369..9ed6f89 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.1.3", + "version": "4.1.5", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", diff --git a/src/components/Utils.ts b/src/components/Utils.ts index 27c59de..f5bf3ef 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -305,7 +305,7 @@ export function InputPanel(properties?: InputPanel, namespace?: string, name?: s return new UI(Type.INPUT_PANEL, name, namespace, undefined, allowObfuscate).setProperties(properties || {}) } -export function Gird(properties?: Grid, namespace?: string, name?: string, allowObfuscate?: boolean) { +export function Grid(properties?: Grid, namespace?: string, name?: string, allowObfuscate?: boolean) { return new UI(Type.GRID, name, namespace, undefined, allowObfuscate).setProperties(properties || {}) } diff --git a/src/types/properties/element/Cycler.ts b/src/types/properties/element/Cycler.ts index 8c8a79e..e3f188c 100644 --- a/src/types/properties/element/Cycler.ts +++ b/src/types/properties/element/Cycler.ts @@ -1,6 +1,7 @@ import { Value } from "../value.js" +import { Sprite } from "./Sprite.js" -export interface Image { +export interface Image extends Sprite { fill?: Value texture_path?: Value texture?: Value From 58a1893c1dc5f8888c346e2304905997b4c4a1f5 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 23 Feb 2026 17:28:53 +0700 Subject: [PATCH 074/245] add variable generate function --- package.json | 2 +- src/compilers/ui/builder.ts | 2 +- src/components/Utils.ts | 24 +++++++++++++++++++++--- 3 files changed, 23 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 9ed6f89..b26ebf3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.1.5", + "version": "4.1.6", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", diff --git a/src/compilers/ui/builder.ts b/src/compilers/ui/builder.ts index 40c1e9d..6a5e286 100644 --- a/src/compilers/ui/builder.ts +++ b/src/compilers/ui/builder.ts @@ -16,7 +16,7 @@ async function buildUI() { const build = Memory.build() build.set("ui/_ui_defs.json", { - ui_defs: Array.from(build.keys()), + ui_defs: Array.from(build.keys(), v => v.replace(/\\/g, "/")), }) if (config.global_variables) build.set("ui/_global_variables.json", config.global_variables) diff --git a/src/components/Utils.ts b/src/components/Utils.ts index f5bf3ef..463412a 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, BindingItem } from "../types/properties/value.js" +import { Array3, Binding, BindingItem, Variable } from "../types/properties/value.js" import { ModifyUI, UI } from "./UI.js" import { Renderer } from "../types/enums/Renderer.js" @@ -202,6 +202,12 @@ export function RandomBindingString(length: number = 16, base: number = 32, forc else return `#${StringID}_binding_${rndStrBind++}` } +let rndVarBind = 1 +export function RandomVariableBinding(length: number = 16, base: number = 32, force?: boolean): Variable { + if (force || allowRandomStringName) return `$${GenRandomString(length, base)}` + else return `$${StringID}_binding_${rndVarBind++}` +} + const rndMap = new Map() export function s(input: string) { @@ -216,10 +222,10 @@ export function s(input: string) { } } -export function bs(input: `#${string}`): `#${string}` { +export function bs(input: Binding): Binding { if (isNotObfuscate) return input else { - if (rndMap.has(input)) return rndMap.get(input) as `#${string}` + if (rndMap.has(input)) return rndMap.get(input) else { const ret = RandomBindingString() rndMap.set(input, ret) @@ -228,6 +234,18 @@ export function bs(input: `#${string}`): `#${string}` { } } +export function vs(input: Variable): Variable { + if (isNotObfuscate) return input + else { + if (rndMap.has(input)) return rndMap.get(input) + else { + const ret = RandomVariableBinding() + rndMap.set(input, ret) + return ret + } + } +} + export function GetItemByAuxID(auxID: number) { const item = ItemAuxID[auxID] if (item) return `minecraft:${item.toLowerCase()}` From 0b1f80da437b490d7f8a502be580d434a87caadc Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 23 Feb 2026 17:54:12 +0700 Subject: [PATCH 075/245] alias default variable format --- package.json | 2 +- src/compilers/FormatProperties.ts | 17 +++++++++++++++++ src/compilers/bindings/Checker.ts | 4 ++++ src/compilers/bindings/Function.ts | 16 ++++++++++++---- src/components/Utils.ts | 11 ++++++++--- 5 files changed, 42 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index b26ebf3..adbfbc1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.1.6", + "version": "4.1.7", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", diff --git a/src/compilers/FormatProperties.ts b/src/compilers/FormatProperties.ts index bb7d556..2a1b2f0 100644 --- a/src/compilers/FormatProperties.ts +++ b/src/compilers/FormatProperties.ts @@ -15,6 +15,23 @@ export function FormatProperties(properties: any) { property_bag[key] = value delete properties[key] } + + if (key.startsWith("$")) { + const [varName, varType] = key.split("|") + + switch (varType) { + case "d": + properties[`${varName}|default`] = value + delete properties[key] + break + + case "default": + break + + default: + throw new Error("Invalid variable type") + } + } } if (config.compiler?.fixInventoryItemRenderer && property_bag[BagBinding.ITEM_ID_AUX]) { diff --git a/src/compilers/bindings/Checker.ts b/src/compilers/bindings/Checker.ts index aace94b..208a37b 100644 --- a/src/compilers/bindings/Checker.ts +++ b/src/compilers/bindings/Checker.ts @@ -34,6 +34,10 @@ export function isBinding(input: string) { return /^#\w+$/.test(input) } +export function isVariable(input: string) { + return /^\$\w+$/.test(input) +} + export function isNumber(input: string) { return /^[+-]?(?:\d+|\d+\.\d*|\.\d+)(?:[eE][+-]?\d+)?$/.test(input) } diff --git a/src/compilers/bindings/Function.ts b/src/compilers/bindings/Function.ts index 533c89b..0fa1fe3 100644 --- a/src/compilers/bindings/Function.ts +++ b/src/compilers/bindings/Function.ts @@ -1,7 +1,7 @@ -import { bs, RandomBindingString, RandomString, ResolveBinding } from "../../components/Utils.js" -import { BindingItem } from "../../types/properties/value.js" +import { bs, RandomBindingString, RandomString, ResolveBinding, vs } from "../../components/Utils.js" +import { Binding, BindingItem, Variable } from "../../types/properties/value.js" import { bindingFuntions } from "../Configuration.js" -import { isBinding, isNumber, isString } from "./Checker.js" +import { isBinding, isNumber, isString, isVariable } from "./Checker.js" import { Expression, GenBinding } from "./types.js" type CallbackRet = { @@ -244,7 +244,15 @@ export const defaultFunctions = { if (!isBinding(input_binding)) throw new Error("Invalid input binding") return { doNotAddParentesis: true, - value: bs(<`#${string}`>input_binding), + value: bs(input_binding), + } + }, + + vs: input_variable => { + if (!isVariable(input_variable)) throw new Error("Invalid input binding") + return { + doNotAddParentesis: true, + value: vs(input_variable), } }, diff --git a/src/components/Utils.ts b/src/components/Utils.ts index 463412a..9af6086 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -235,13 +235,18 @@ export function bs(input: Binding): Binding { } export function vs(input: Variable): Variable { - if (isNotObfuscate) return input + let [name, mode]: [Variable, string] = input.split("|") as [Variable, string] + input = name + if (mode) mode = "|" + mode + else mode = "" + + if (isNotObfuscate) return `${name}${mode}` else { - if (rndMap.has(input)) return rndMap.get(input) + if (rndMap.has(input)) return `${rndMap.get(input)}${mode}` else { const ret = RandomVariableBinding() rndMap.set(input, ret) - return ret + return `${ret}${mode}` } } } From d61023195b98f71cbe4692e56e65257a8400cb10 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 23 Feb 2026 18:00:19 +0700 Subject: [PATCH 076/245] allow binding --- src/types/properties/value.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/properties/value.ts b/src/types/properties/value.ts index 84cd6cc..ab6f16d 100644 --- a/src/types/properties/value.ts +++ b/src/types/properties/value.ts @@ -20,7 +20,7 @@ export type Array2 = [T, T] export type Array3 = [T, T, T] export type Array4 = [T, T, T, T] -export type Value = Variable | T +export type Value = Variable | Binding | T export type AnimValue = Value export type BindingItem = { From 95d368282c9ebe64fb81c4737d5c1339991d6d04 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 23 Feb 2026 18:00:54 +0700 Subject: [PATCH 077/245] bump to version 4.1.9 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index adbfbc1..186dafb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.1.7", + "version": "4.1.8", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", From 5a1905b7a3c016c09538baf003fec667ef9fad22 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 23 Feb 2026 18:01:07 +0700 Subject: [PATCH 078/245] bump to version 4.1.8 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 186dafb..9fa9db4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.1.8", + "version": "4.1.88", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", From 2e9de68b551d86a05625e120e106a8d0f875afcd Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 23 Feb 2026 18:01:11 +0700 Subject: [PATCH 079/245] bump to version 4.1.8 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 9fa9db4..186dafb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.1.88", + "version": "4.1.8", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", From 3dba9225e7aa2f3a8a7ba2d9ff1276a66ab2b867 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 24 Feb 2026 05:42:24 +0700 Subject: [PATCH 080/245] asajs v4.1.13 --- package.json | 2 +- src/compilers/Configuration.ts | 6 +++--- src/compilers/FormatProperties.ts | 2 +- src/components/AnimationKeyframe.ts | 25 ++++++++++++++++++------- src/components/Utils.ts | 6 +++--- 5 files changed, 26 insertions(+), 15 deletions(-) diff --git a/package.json b/package.json index 186dafb..0153208 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.1.8", + "version": "4.1.13", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", diff --git a/src/compilers/Configuration.ts b/src/compilers/Configuration.ts index 938d879..c06d5d2 100644 --- a/src/compilers/Configuration.ts +++ b/src/compilers/Configuration.ts @@ -66,9 +66,9 @@ export const unLinked = options["unlink"] ?? !(config.compiler?.autoImport ?? tr export const buildFolder = config.compiler?.buildFolder || "build" export const uiBuildFolder = config.compiler?.uiBuildFolder || "asajs" export const isNotObfuscate = debugMode || !(config.compiler?.obfuscateStringName ?? false) -export const allowRandomStringName = !debugMode || (config.compiler?.allowRandomStringName ?? true) -export const namespaceCount = debugMode ? 5 : (config.compiler?.namespaceCount ?? 15) -export const forceRandomStringLength = debugMode ? 10 : config.compiler?.forceRandomStringLength +export const allowRandomStringName = !(debugMode || !(config.compiler?.allowRandomStringName ?? true)) +export const namespaceCount = config.compiler?.namespaceCount ?? 15 +export const forceRandomStringLength = config.compiler?.forceRandomStringLength export const bindingFuntions = config.binding_functions diff --git a/src/compilers/FormatProperties.ts b/src/compilers/FormatProperties.ts index 2a1b2f0..69c990d 100644 --- a/src/compilers/FormatProperties.ts +++ b/src/compilers/FormatProperties.ts @@ -18,7 +18,7 @@ export function FormatProperties(properties: any) { if (key.startsWith("$")) { const [varName, varType] = key.split("|") - + if (!varType) break switch (varType) { case "d": properties[`${varName}|default`] = value diff --git a/src/components/AnimationKeyframe.ts b/src/components/AnimationKeyframe.ts index 3ad805a..6e702e2 100644 --- a/src/components/AnimationKeyframe.ts +++ b/src/components/AnimationKeyframe.ts @@ -1,13 +1,21 @@ +import { config, isNotObfuscate, uiBuildFolder } from "../compilers/Configuration.js" 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 { Animation } from "./Animation.js" import { Class } from "./Class.js" -import { RandomNamespace, RandomString } from "./Utils.js" +import { defaultNamespace, RandomNamespace, RandomString } from "./Utils.js" +import nodepath from "path" import util from "node:util" +const fileExt = config.compiler?.fileExtension + ? config.compiler.fileExtension.startsWith(".") + ? config.compiler.fileExtension + : `.${config.compiler.fileExtension}` + : ".json" + export class AnimationKeyframe extends Class { readonly path: string readonly name: string @@ -21,6 +29,7 @@ export class AnimationKeyframe extends Class { name?: string, namespace?: string, path?: string, + allowObfuscate?: boolean, ) { super() @@ -29,14 +38,16 @@ export class AnimationKeyframe extends Class { process.exit(1) } - if (namespace && !/^\w+$/.test(namespace)) { - console.error(`The '${namespace}' cannot be used as a namespace`) - process.exit(1) + if (isNotObfuscate || !(allowObfuscate ?? true)) { + this.name = name?.match(/^(\w|\/)+/)?.[0] || RandomString(16) + this.namespace = namespace || defaultNamespace || RandomNamespace() + } else { + this.name = RandomString(16) + this.namespace = RandomNamespace() } - this.name = name || RandomString(16) - this.namespace = namespace || RandomNamespace() - this.path = path || `asajs/${this.namespace}.json` + if (!path) this.path = nodepath.join(uiBuildFolder, `${this.namespace}${fileExt}`) + else this.path = path Memory.add(this) } diff --git a/src/components/Utils.ts b/src/components/Utils.ts index 9af6086..790733f 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -203,9 +203,9 @@ export function RandomBindingString(length: number = 16, base: number = 32, forc } let rndVarBind = 1 -export function RandomVariableBinding(length: number = 16, base: number = 32, force?: boolean): Variable { +export function RandomVariableString(length: number = 16, base: number = 32, force?: boolean): Variable { if (force || allowRandomStringName) return `$${GenRandomString(length, base)}` - else return `$${StringID}_binding_${rndVarBind++}` + else return `$${StringID}_variable_${rndVarBind++}` } const rndMap = new Map() @@ -244,7 +244,7 @@ export function vs(input: Variable): Variable { else { if (rndMap.has(input)) return `${rndMap.get(input)}${mode}` else { - const ret = RandomVariableBinding() + const ret = RandomVariableString() rndMap.set(input, ret) return `${ret}${mode}` } From e2be9892dc7d77edc39478c3f26108f47bfb3345 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 24 Feb 2026 14:24:43 +0700 Subject: [PATCH 081/245] public toString method --- package.json | 2 +- src/components/Animation.ts | 5 +++-- src/components/AnimationKeyframe.ts | 3 ++- src/components/UI.ts | 11 +++++++++-- src/types/properties/element/Sprite.ts | 2 +- src/types/properties/value.ts | 3 ++- 6 files changed, 18 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index 0153208..7df1958 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.1.13", + "version": "4.1.14", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", diff --git a/src/components/Animation.ts b/src/components/Animation.ts index 39c5ce7..2dced74 100644 --- a/src/components/Animation.ts +++ b/src/components/Animation.ts @@ -1,6 +1,7 @@ import { AnimType } from "../types/enums/AnimType.js" import { SmartAnimation } from "../types/enums/SmartAnimation.js" import { AnimationProperties } from "../types/properties/element/Animation.js" +import { Control } from "../types/properties/value.js" import { Class } from "./Class.js" import { KeyframeController } from "./KeyframeController.js" @@ -138,8 +139,8 @@ export class Animation extends Class { return this } - protected toString() { - return String(this.firstKey()) + toString(): Control { + return String(this.firstKey()) } protected [util.inspect.custom]($: any, opts: any) { diff --git a/src/components/AnimationKeyframe.ts b/src/components/AnimationKeyframe.ts index 6e702e2..6b3368e 100644 --- a/src/components/AnimationKeyframe.ts +++ b/src/components/AnimationKeyframe.ts @@ -9,6 +9,7 @@ import { defaultNamespace, RandomNamespace, RandomString } from "./Utils.js" import nodepath from "path" import util from "node:util" +import { Control } from "../types/properties/value.js" const fileExt = config.compiler?.fileExtension ? config.compiler.fileExtension.startsWith(".") @@ -77,7 +78,7 @@ export class AnimationKeyframe extends Class { } } - protected toString() { + toString(): Control { return `@${this.namespace}.${this.name}` } diff --git a/src/components/UI.ts b/src/components/UI.ts index 43a4256..3699b02 100644 --- a/src/components/UI.ts +++ b/src/components/UI.ts @@ -6,7 +6,14 @@ 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, ButtonMapping, ModificationItem, VariableItem, Variables } from "../types/properties/value.js" +import { + BindingItem, + ButtonMapping, + Control, + ModificationItem, + VariableItem, + Variables, +} from "../types/properties/value.js" import { Animation } from "./Animation.js" import { AnimationKeyframe } from "./AnimationKeyframe.js" import { Class } from "./Class.js" @@ -165,7 +172,7 @@ export class UI extends Class return ui } - protected toString() { + toString(): Control { return `@${this.namespace}.${this.name}` } diff --git a/src/types/properties/element/Sprite.ts b/src/types/properties/element/Sprite.ts index 363e65f..21d9b7f 100644 --- a/src/types/properties/element/Sprite.ts +++ b/src/types/properties/element/Sprite.ts @@ -8,7 +8,7 @@ export interface Sprite { uv_size?: AnimValue> texture_file_system?: Value nineslice_size?: AnimValue | Array3 | Array4> - tiled?: Value + tiled?: Value tiled_scale?: Value> clip_direction?: Value clip_ratio?: Value diff --git a/src/types/properties/value.ts b/src/types/properties/value.ts index ab6f16d..5fc2d81 100644 --- a/src/types/properties/value.ts +++ b/src/types/properties/value.ts @@ -14,13 +14,14 @@ import { AnimationKeyframe } from "../../components/AnimationKeyframe.js" export type Variable = `$${string}` export type Binding = `#${string}` +export type Control = `@${string}` | `${string}@${string}` export type Animation = anim.Animation | AnimationKeyframe | `@${string}` export type Array2 = [T, T] export type Array3 = [T, T, T] export type Array4 = [T, T, T, T] -export type Value = Variable | Binding | T +export type Value = Variable | Binding | Control | T export type AnimValue = Value export type BindingItem = { From eee464dcd710a904e4958281d237cfd77aeac393 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 24 Feb 2026 19:39:01 +0700 Subject: [PATCH 082/245] format element properties --- src/compilers/FormatProperties.ts | 5 +++++ src/types/enums/TextureFileSystem.ts | 0 src/types/properties/components.ts | 2 +- src/types/properties/element/Control.ts | 5 ++++- .../element/{DropdownName.ts => Dropdown.ts} | 2 +- src/types/properties/element/Layout.ts | 3 +++ src/types/properties/element/ScrollView.ts | 2 +- src/types/properties/element/Slider.ts | 6 ------ src/types/properties/element/Sprite.ts | 6 +++--- src/types/properties/element/index.ts | 2 +- src/types/properties/enum.ts | 13 +++++++++++++ src/types/properties/index.ts | 1 + 12 files changed, 33 insertions(+), 14 deletions(-) create mode 100644 src/types/enums/TextureFileSystem.ts rename src/types/properties/element/{DropdownName.ts => Dropdown.ts} (81%) create mode 100644 src/types/properties/enum.ts diff --git a/src/compilers/FormatProperties.ts b/src/compilers/FormatProperties.ts index 69c990d..2a866df 100644 --- a/src/compilers/FormatProperties.ts +++ b/src/compilers/FormatProperties.ts @@ -43,6 +43,11 @@ export function FormatProperties(properties: any) { delete properties.anchor } + if (properties.fit_to_width) { + properties["$fit_to_width"] = properties.fit_to_width + delete properties.fit_to_width + } + if (Object.keys(property_bag).length) { if (properties.property_bag) { properties.property_bag = { ...property_bag, ...properties.property_bag } diff --git a/src/types/enums/TextureFileSystem.ts b/src/types/enums/TextureFileSystem.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/types/properties/components.ts b/src/types/properties/components.ts index e71489c..bc71b9f 100644 --- a/src/types/properties/components.ts +++ b/src/types/properties/components.ts @@ -16,7 +16,7 @@ export interface TooltipTrigger extends InputPanel, e.TooltipTrigger {} export interface Button extends InputPanel, e.Button {} export interface Toggle extends InputPanel, e.Toggle {} -export interface Dropdown extends Toggle, e.DropdownName {} +export interface Dropdown extends Toggle, e.Dropdown {} export interface SelectionWheel extends InputPanel, e.SelectionWheel {} export interface EditBox extends Button, e.EditBox {} diff --git a/src/types/properties/element/Control.ts b/src/types/properties/element/Control.ts index 5520f7d..7446451 100644 --- a/src/types/properties/element/Control.ts +++ b/src/types/properties/element/Control.ts @@ -5,13 +5,13 @@ export interface Control { ignored?: Value enabled?: Value layer?: Value - z_order?: Value alpha?: AnimValue propagate_alpha?: Value clips_children?: Value allow_clipping?: Value clip_offset?: Value> clip_state_change_event?: Value + enable_scissor_test?: Value selected?: Value use_child_anchors?: Value contained?: Value @@ -20,6 +20,9 @@ export interface Control { property_bag?: Value collection_index?: Value property_bag_for_children?: Value + disable_anim_fast_forward?: Value + animation_reset_name?: Value + grid_position?: Value> [key: Binding]: Value [key: Variable]: Value } diff --git a/src/types/properties/element/DropdownName.ts b/src/types/properties/element/Dropdown.ts similarity index 81% rename from src/types/properties/element/DropdownName.ts rename to src/types/properties/element/Dropdown.ts index 06b82ab..679b425 100644 --- a/src/types/properties/element/DropdownName.ts +++ b/src/types/properties/element/Dropdown.ts @@ -1,6 +1,6 @@ import { Value } from "../value.js" -export interface DropdownName { +export interface Dropdown { dropdown_name?: Value dropdown_content_control?: Value dropdown_area?: Value diff --git a/src/types/properties/element/Layout.ts b/src/types/properties/element/Layout.ts index 782a3a3..6c4dfc5 100644 --- a/src/types/properties/element/Layout.ts +++ b/src/types/properties/element/Layout.ts @@ -12,4 +12,7 @@ export interface Layout { anchor_from?: Value anchor_to?: Value anchor?: Value + contained?: Value + draggable?: Value + follows_cursor?: Value } diff --git a/src/types/properties/element/ScrollView.ts b/src/types/properties/element/ScrollView.ts index a63f41e..3e77d19 100644 --- a/src/types/properties/element/ScrollView.ts +++ b/src/types/properties/element/ScrollView.ts @@ -4,7 +4,7 @@ export interface ScrollView { scrollbar_track_button?: Value scrollbar_touch_button?: Value scroll_speed?: Value - gesture_control_enabled?: Value + gesture_control_enabled?: Value always_handle_scrolling?: Value touch_mode?: Value scrollbar_box?: Value diff --git a/src/types/properties/element/Slider.ts b/src/types/properties/element/Slider.ts index c0a9c99..ebff85b 100644 --- a/src/types/properties/element/Slider.ts +++ b/src/types/properties/element/Slider.ts @@ -22,10 +22,4 @@ export interface Slider { background_hover_control?: Value progress_control?: Value progress_hover_control?: Value - slider_render_bar_background_color?: Value> - slider_render_bar_progress_color?: Value> - slider_render_bar_outline_color?: Value> - slider_render_bar_background_hover_color?: Value> - slider_render_bar_progress_hover_color?: Value> - slider_render_bar_outline_hover_color?: Value> } diff --git a/src/types/properties/element/Sprite.ts b/src/types/properties/element/Sprite.ts index 21d9b7f..7dccd95 100644 --- a/src/types/properties/element/Sprite.ts +++ b/src/types/properties/element/Sprite.ts @@ -1,4 +1,5 @@ import { ClipDirection } from "../../enums/ClipDirection.js" +import { TextureFileSystem } from "../enum.js" import { AnimValue, Array2, Array3, Array4, Value } from "../value.js" export interface Sprite { @@ -6,9 +7,9 @@ export interface Sprite { allow_debug_missing_texture?: Value uv?: AnimValue> uv_size?: AnimValue> - texture_file_system?: Value + texture_file_system?: Value nineslice_size?: AnimValue | Array3 | Array4> - tiled?: Value + tiled?: Value tiled_scale?: Value> clip_direction?: Value clip_ratio?: Value @@ -22,5 +23,4 @@ export interface Sprite { grayscale?: Value force_texture_reload?: Value base_size?: Value> - color_corrected?: Value } diff --git a/src/types/properties/element/index.ts b/src/types/properties/element/index.ts index 7870f4d..a419539 100644 --- a/src/types/properties/element/index.ts +++ b/src/types/properties/element/index.ts @@ -6,7 +6,7 @@ export * from "./Control.js" export * from "./CustomRenderer.js" export * from "./Cycler.js" export * from "./DataBinding.js" -export * from "./DropdownName.js" +export * from "./Dropdown.js" export * from "./EditBox.js" export * from "./Factory.js" export * from "./Focus.js" diff --git a/src/types/properties/enum.ts b/src/types/properties/enum.ts new file mode 100644 index 0000000..e96f42c --- /dev/null +++ b/src/types/properties/enum.ts @@ -0,0 +1,13 @@ +export enum TextureFileSystem { + IN_USER_PACKAGE = "InUserPackage", + IN_APP_PACKAGE = "InAppPackage", + RAW_PATH = "RawPath", + RAW_PERSISTENT = "RawPersistent", + IN_SETTINGS_DIR = "InSettingsDir", + IN_EXTERNAL_DIR = "InExternalDir", + IN_SERVER_PACKAGE = "InServerPackage", + IN_DATA_DIR = "InDataDir", + IN_USER_DIR = "InUserDir", + IN_WORLD_DIR = "InWorldDir", + STORE_CACHE = "StoreCache", +} diff --git a/src/types/properties/index.ts b/src/types/properties/index.ts index 6c10ba5..62e2f71 100644 --- a/src/types/properties/index.ts +++ b/src/types/properties/index.ts @@ -1,6 +1,7 @@ export * as ElementProperties from "./element/index.js" export * as ComponentProperties from "./components.js" export * as Value from "./value.js" +export * from "./enum.js" export { ArrayName } from "../enums/ArrayName.js" export { Operation } from "../enums/Operation.js" From 2c1242a9ad84ffa90b08b90936903e1fbabc4e35 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 24 Feb 2026 19:41:51 +0700 Subject: [PATCH 083/245] animation properties --- src/components/Utils.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Utils.ts b/src/components/Utils.ts index 790733f..888e651 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -523,8 +523,8 @@ export function AsepriteFlipBookKeyframe( } // Quick Animation -type Anim = AnimationProperties | number -type AnimWithSmartAnim = [SmartAnimation | Anim, ...Anim[]] +export type AnimationByType = AnimationProperties | number +export type AnimWithSmartAnim = [SmartAnimation | AnimationByType, ...AnimationByType[]] export function OffsetAnimation(...keyframes: AnimWithSmartAnim) { return new Animation(AnimType.OFFSET, ...keyframes) From 7d2b1b023bfa351dc9582dde11cb759aebbb63ff Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 24 Feb 2026 20:30:30 +0700 Subject: [PATCH 084/245] add factory and addchilds method --- src/components/Factory.ts | 53 +++++++++++++++++++++++++++++++++++++++ src/components/UI.ts | 25 ++++++++++++++++++ src/components/Utils.ts | 5 ++++ 3 files changed, 83 insertions(+) create mode 100644 src/components/Factory.ts diff --git a/src/components/Factory.ts b/src/components/Factory.ts new file mode 100644 index 0000000..ffb3ef8 --- /dev/null +++ b/src/components/Factory.ts @@ -0,0 +1,53 @@ +import { Type } from "../types/enums/Type.js" +import { Variable } from "../types/properties/value.js" +import { Class } from "./Class.js" +import { UI } from "./UI.js" + +export class FactoryManager extends Class { + private maxChildrenSize?: number + private factoryVariables?: Array + private controlIds: Map> + private control?: UI + + constructor(protected name: string) { + super() + this.controlIds = new Map() + } + + setControlId(name: string, element: UI) { + if (this.control) throw new Error("Cannot set control id after setting control") + this.controlIds.set(name, element) + return this + } + + setControlIds(...elements: { name: string; element: UI }[]) { + elements.forEach(({ name, element }) => this.controlIds.set(name, element)) + return this + } + + setControl(element: UI) { + if (this.controlIds.size) throw new Error("Cannot set control after setting control ids") + this.control = element + return this + } + + setMaxChildrenSize(size: number) { + this.maxChildrenSize = size + return this + } + + protected toJSON() { + const obj: any = { name: this.name } + + if (this.maxChildrenSize) obj.max_children_size = this.maxChildrenSize + if (this.factoryVariables) obj.variables = this.factoryVariables + if (this.control) obj.control_name = this.control.toString().slice(1) + if (this.controlIds.size) { + const controlIds: Record = {} + this.controlIds.forEach((value, key) => (controlIds[key] = key + value.toString())) + obj.control_ids = controlIds + } + + return obj + } +} diff --git a/src/components/UI.ts b/src/components/UI.ts index 3699b02..74acfda 100644 --- a/src/components/UI.ts +++ b/src/components/UI.ts @@ -22,6 +22,7 @@ import nodepath from "path" import util from "node:util" import { config, isNotObfuscate, uiBuildFolder } from "../compilers/Configuration.js" +import { FactoryManager } from "./Factory.js" interface ExtendUI { name: string @@ -35,6 +36,13 @@ const fileExt = config.compiler?.fileExtension : `.${config.compiler.fileExtension}` : ".json" +type ChildInput> = { + child: C + properties?: C extends UI ? Partial> : never + name?: string + callback?: (name: string, parent: UI) => void +} + export class UI extends Class { readonly path: string readonly name: string @@ -49,6 +57,7 @@ export class UI extends Class protected readonly buttonMappings: ButtonMapping[] = [] protected readonly anims: (Animation | AnimationKeyframe)[] = [] protected readonly extendType?: Type + protected factory?: FactoryManager protected properties: Properties = {} protected bindCache = new Map() @@ -93,6 +102,11 @@ export class UI extends Class return this } + setFactory(factory: FactoryManager) { + this.factory = factory + return this + } + /** * Bind data (coming from the code) to this UI element to use. * @param bindings @@ -149,6 +163,16 @@ export class UI extends Class return this } + addChilds[]>(...childs: { [K in keyof UIs]: ChildInput }) { + const childrenList = childs as unknown as ChildInput>[] + + childrenList.forEach(({ child, properties, name, callback }) => { + this.addChild(child, properties, name, callback) + }) + + return this + } + addAnimations(...anims: (Animation | AnimationKeyframe)[]) { this.anims.push(...anims) return this @@ -186,6 +210,7 @@ export class UI extends Class 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.factory) obj.factory = this.factory if (this.anims.length) obj.anims = this.anims.map(a => String(a)) diff --git a/src/components/Utils.ts b/src/components/Utils.ts index 888e651..1d9715b 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -46,6 +46,7 @@ import { isNotObfuscate, namespaceCount, } from "../compilers/Configuration.js" +import { FactoryManager } from "./Factory.js" type CompileBinding = `[${string}]` @@ -307,6 +308,10 @@ export function Modify>(namespace: T, return modifyUI } +export function Factory(name: string) { + return new FactoryManager(name) +} + export function Panel(properties?: Panel, namespace?: string, name?: string, allowObfuscate?: boolean) { return new UI(Type.PANEL, name, namespace, undefined, allowObfuscate).setProperties(properties || {}) } From f05814570bb178fad5de2ee29a9e2579fbef5145 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 24 Feb 2026 20:33:10 +0700 Subject: [PATCH 085/245] asajs v4.1.15 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7df1958..f0cab0d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.1.14", + "version": "4.1.15", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", From e9902febfd848a81932888b10070eb0db010ae12 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Wed, 25 Feb 2026 18:07:24 +0700 Subject: [PATCH 086/245] check valid name & namespace --- src/components/UI.ts | 10 ++++++++-- src/components/Utils.ts | 1 + 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/components/UI.ts b/src/components/UI.ts index 74acfda..76b661f 100644 --- a/src/components/UI.ts +++ b/src/components/UI.ts @@ -71,13 +71,19 @@ export class UI extends Class ) { super() - if (name === "namespace") { + if (name && !/^\p{L}+$/u.test(name)) { + throw new Error("Invalid name") + } else if (name === "namespace") { console.error("The 'namespace' cannot be used as a name") process.exit(1) } + if (namespace && !/^\p{L}+$/u.test(namespace)) { + throw new Error("Invalid namespace") + } + if (isNotObfuscate || !(allowObfuscate ?? true)) { - this.name = name?.match(/^(\w|\/)+/)?.[0] || RandomString(16) + this.name = name || RandomString(16) this.namespace = namespace || defaultNamespace || RandomNamespace() } else { this.name = RandomString(16) diff --git a/src/components/Utils.ts b/src/components/Utils.ts index 1d9715b..fbf67ff 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -154,6 +154,7 @@ export function ResolveBinding(cache: Map, ...bindings: Binding export let defaultNamespace: string | null = null export function SetDefaultNamespace(input: string) { + if (!/\p{L}+/u.test(input)) throw new Error("Invalid namespace") defaultNamespace = input } export function ClearDefaultNamespace() { From a3c734862a6b4d9095897ad08de8b413e07c426b Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 27 Feb 2026 13:31:31 +0700 Subject: [PATCH 087/245] more binding --- extends/binding.txt | 1479 +++++++++++++++++++++++++++++ package.json | 2 +- scripts/enum.ts | 70 +- src/analyzer/vanilladefs.ts | 343 ++++++- src/types/enums/Binding.ts | 937 ++++++++++++++++++ src/types/vanilla/intellisense.ts | 61 +- src/types/vanilla/paths.ts | 419 ++++---- test/app.ts | 2 +- 8 files changed, 3013 insertions(+), 300 deletions(-) create mode 100644 extends/binding.txt diff --git a/extends/binding.txt b/extends/binding.txt new file mode 100644 index 0000000..9ab3e6f --- /dev/null +++ b/extends/binding.txt @@ -0,0 +1,1479 @@ +#3d_export_mode_panel_visible +#Xout_button_visible_binding_name +#accessibility_coins_with_bonus +#accessibility_coins_without_bonus +#accessibility_minecoins_amount +#accessibility_scaling_option_tooltip_text +#achievement_offer_lock_state_texture +#action_text +#actionbar_text_background_opacity +#actionbar_text_background_opacity_enabled +#actionbar_text_background_opacity_slider_label +#actionbar_text_background_opacity_text_value +#actions_collection_index +#activate_link +#activate_link_enabled +#activated_purchase_panel_visible +#add_command_focus_override_up +#add_invite_link_button_enabled +#add_invite_link_button_visible +#additional_realms_subscriptions_dimensions +#additional_server_toggle_index +#addon_stacking_warning_visible +#advanced_graphics_options_button_visible +#advanced_graphics_options_grid_visible +#agree_terms_and_conditions +#allow_cheats +#allow_cheats_enabled +#allow_content_log_write_to_disk +#allow_destructive_items +#allow_destructive_items_enabled +#allow_mobs +#allow_mobs_enabled +#always_day +#always_day_enabled +#anchored_offset_value_x +#anchored_offset_value_y +#animation_mode_dropdown_toggle_label +#animation_name +#animation_time_content_edit_box +#animation_time_field +#animation_to_play +#animation_to_play_when_done +#appearance_status_brief_label +#appearance_status_hover_label +#are_gamepad_quick_select_helpers_visible +#armor_trim_material +#armor_trim_pattern +#author_text_box +#auto_save_animation_visible +#auto_update_mode_off +#auto_update_mode_on_wifi_only +#auto_update_mode_on_with_cellular +#available_game_image_visible +#available_grid_dimensions +#available_pack_items +#back_button_accessibility_text +#background_image_texture_file_system +#background_image_texture_path +#backup_network_error_visible +#banner_button_left_padding_visible +#banner_button_right_padding_visible +#banner_colors +#banner_description_left_padding_visible +#banner_description_right_padding_visible +#banner_hover_texture_filepath +#banner_patterns +#banner_title_left_padding_visible +#banner_title_right_padding_visible +#banner_type +#base_game_version_debug_text +#beta_retail_legacy_world_date +#beta_retail_legacy_world_filesize +#beta_retail_legacy_world_game_mode +#beta_retail_legacy_world_image +#beta_retail_legacy_world_item_grid_dimension +#beta_retail_legacy_world_name +#beta_retail_legacy_world_texture_source +#beta_retail_legacy_worlds_visible +#beta_retail_local_world_date +#beta_retail_local_world_filesize +#beta_retail_local_world_game_mode +#beta_retail_local_world_image +#beta_retail_local_world_item_grid_dimension +#beta_retail_local_world_name +#beta_retail_local_world_texture_source +#beta_retail_local_worlds_visible +#block_position +#block_type_dropdown_enabled +#block_type_dropdown_label_color_binding +#block_type_dropdown_toggle_label +#blocked_players_buttons_visible +#blocked_players_nextButton_visible +#blocked_players_page_index_text +#blocked_players_prevButton_visible +#bloom_strength +#bloom_strength_enabled +#bloom_strength_slider_label +#bloom_strength_text_value +#bonus_chest +#bonus_chest_enabled +#bottom_left_block +#bubble_particles +#bubble_particles_enabled +#bundle_coin_texture_file_system +#bundle_description_collection_index +#bundle_or_hero_pack_icon_section_visible +#bundle_purchase_warning_title +#bundle_selected_item_visible +#bundle_thumbnail_grid_dimensions +#bundle_thumbnail_texture_file_system +#bundle_thumbnail_texture_name +#bundle_tooltip_grid_dimensions +#button_dpad_left_description +#button_name_focus_override_up +#button_name_text +#button_navigation +#button_thumbstick_left_description +#button_thumbstick_right_description +#buttons_and_deathmessage_visible +#call_to_action_button_visible +#can_be_platform_network_enabled +#can_collect_achievement_award +#can_move +#can_scroll_left +#can_scroll_right +#cast_character_options_collection_index +#cast_character_options_dimensions +#category +#category_addons_icon_visible +#category_column_collection_index +#category_mashups_icon_visible +#category_row_collection_index +#category_skins_icon_visible +#category_textures_icon_visible +#category_worlds_icon_visible +#character_loading_in_progress +#charged_item +#chat_ +#chat_background_opacity +#chat_background_opacity_enabled +#chat_background_opacity_slider_label +#chat_background_opacity_text_value +#chat_color_dropdown_label +#chat_coordinate_dropdown_label +#chat_coordinate_dropdown_visible +#chat_coordinate_text_edit_visible +#chat_font_size +#chat_font_size_custom_label +#chat_font_size_slider_label +#chat_font_size_steps +#chat_line_spacing +#chat_line_spacing_enabled +#chat_line_spacing_slider_label +#chat_line_spacing_text_value +#chat_message_duration_radio_TenSec +#chat_message_duration_radio_ThirtySec +#chat_message_duration_radio_ThreeSec +#chat_typeface_dropdown_label +#classic_stack_splitting_overlay_visible +#clear_button_focus_change_right +#close_button_visible_binding_name +#cloud_file_last_changed +#cloud_file_last_changed_enabled +#cloud_file_name +#cloud_file_name_enabled +#code_builder +#code_builder_enabled +#coin_bundle_description_font_color +#coin_bundle_description_font_size +#coin_bundle_description_font_type +#coin_bundle_description_section +#coin_bundle_description_text +#coin_bundle_description_text_tts +#coin_bundle_section_content +#coin_offer_texture_file_system +#coin_prompt_color +#coins_required_for_purchase +#collapsed_collection_index +#collapsed_collection_name +#collapsed_show_more_visible +#collection_index +#collection_index +#collection_name +#collection_number_size +#collection_page_number_label +#collection_permission_level_dropdown_icon_texture +#collections +#color_picker_info_panel_title_color +#color_picker_info_panel_title_name +#column_collection_index +#command_always_on_mode +#command_blocks_enabled +#command_blocks_enabled_on +#command_chain_mode +#command_conditional_mode +#command_focus_override_down +#command_impulse_mode +#command_macro_command_enabled +#command_needs_redstone_mode +#command_repeat_mode +#command_unconditional_mode +#comment +#common +#condition_dropdown_toggle_label +#confirm_skin_button_enabled +#constructor +#constructor +#consumable_not_extendable_visible +#container_cell_background_texture +#container_item_background_texture +#content_log_gui_level_error +#content_log_gui_level_info +#content_log_gui_level_verbose +#content_log_gui_level_warn +#content_log_gui_option_enabled +#content_log_gui_show_on_errors +#content_log_gui_show_on_errors_enabled +#content_tier_slider_text_value +#control_customization_visible +#controller_left_bumper_description +#controller_right_bumper_description +#converted_world_preview_date +#converted_world_preview_date_visible +#converted_world_preview_file_size +#converted_world_preview_game_mode +#converted_world_preview_image +#converted_world_preview_name +#converted_world_preview_texture_source +#coordinate_type_facing +#coordinate_type_position +#crafter_output_item_banner_colors +#crafter_output_item_banner_patterns +#crafter_output_item_banner_type +#crafter_output_item_decorated_pot_sherds +#crafter_output_item_shield_base_color_hovered +#create_on_realms_button_visible +#create_persona_popup_confirm_text +#creative_layout_button_visible +#cross_platform_friends_grid_visible +#cross_platform_friends_server_icon_texture_name +#crossplatform_toggle +#crossplatform_toggle_enabled +#csb_expiration_banner_visible +#csb_incompatible_button_visible +#csb_one_month_free_trial_visible +#csb_purchased_with_buy_panel +#csb_purchased_with_cancel_panel +#current_user_profile_options +#custom_dropdown_collection_index +#custom_rot_y +#custom_template_list_visible +#custom_world_template_factory_collection +#customize_tooltip_option_text +#customize_tooltip_option_visible +#cycle_left_button_accessibility_text +#cycle_pack_left_button_enabled +#cycle_pack_right_button_enabled +#cycle_promotions_left_button_enabled +#cycle_promotions_right_button_enabled +#cycle_right_button_accessibility_text +#cycle_screenshots_left_button_enabled +#cycle_screenshots_right_button_enabled +#cycling_icon_file_system +#cycling_icon_path +#cycling_icon_zip +#damage_bob +#damage_bob_enabled +#damage_bob_slider_label +#data_field +#daylight_cycle +#daylight_cycle_enabled +#deactivated_purchase_hover_visible +#deactivated_purchase_panel_visible +#debug_drawer_button_visible +#debug_hud_radio_audio +#debug_hud_radio_basic +#debug_hud_radio_buffer_memory +#debug_hud_radio_cachestorageusage +#debug_hud_radio_camera +#debug_hud_radio_client_network +#debug_hud_radio_imagememory +#debug_hud_radio_imgui +#debug_hud_radio_lock_contention +#debug_hud_radio_material_memory +#debug_hud_radio_off +#debug_hud_radio_oreui +#debug_hud_radio_perimagememory +#debug_hud_radio_profiler +#debug_hud_radio_renderchunks +#debug_hud_radio_server_network +#debug_hud_radio_texturememory +#debug_hud_radio_workerthreads +#decorated_pot_sherds +#default_item_file_system +#default_item_texture +#default_item_zip +#default_move_stick_visible +#default_move_stick_visible_enabled +#default_prompt_color +#default_skins_grid_dimensions +#deferred_point_light_enabled +#delay_right_side_buttons_visible +#delete_realm_button_visible +#delete_selected_saves_button_enabled +#delete_selected_saves_button_text +#dependency_texture_file_system +#dependent_packs_texture_file_system +#dependent_packs_texture_zip +#description_collapsed_visible +#description_expanded_visible +#device_info_memory_tier_visible +#device_info_options_enabled +#diagnostics_options_enabled +#difficulty_option_label +#disable_head_follow_mouse +#disabled_filter_visible +#disabled_play_button_visible +#disconnected_from_adhoc_label_visible +#disconnected_from_crossplatform_multiplayer +#disconnected_from_multiplayer +#disconnected_from_third_party_label_visible +#disconnected_from_xbox_live_label_visible +#document +#download_progress_bar_percentage +#download_progress_bar_visible +#dressing_room_button_focus_change_override +#dressing_room_button_visible +#dressing_room_controller_button_visible +#dropdown_toggle_texture_file_system +#dy_d +#ecomode_toggle +#ecomode_toggle_enabled +#edit_appearance_error_tooltip_visible +#edit_world_button_button_string +#editions_visible_and_not_realms_promo_visible +#edu_cloud_conflict_resolution_cloud_date +#edu_cloud_conflict_resolution_cloud_name +#edu_cloud_conflict_resolution_description +#edu_cloud_conflict_resolution_local_date +#edu_cloud_conflict_resolution_local_name +#edu_cloud_error_hyperlink_label +#edu_cloud_storage_body_label_text +#edu_cloud_upload +#edu_cloud_upload_enabled +#edu_cloud_upload_images_visible +#edu_external_link_display_name +#edu_external_resource_uri_enabled +#edu_external_resource_uri_exists +#edu_server_timeout_button_text +#edu_signed_in_only_ui_visible +#edu_store_purchase_button_text +#edu_uri_resource_name +#edu_uri_resource_name_enabled +#edu_uri_resource_uri +#edu_uri_resource_uri_enabled +#education_toggle +#education_toggle_enabled +#emote_index +#emote_wheel_selection_visible +#empty_offhand_image_visible +#empty_star_texture +#enable_graphics_api_switching +#enable_texture_hot_reloader +#enabled +#enchant_error +#enchantment_details_button_visible +#entities_drop_loot +#entities_drop_loot_enabled +#entitlements_refreshing_visible +#entity_id +#entry_button_focus_change_left_override +#entry_button_focus_change_right_override +#entry_button_focus_id_override +#entry_button_tooltip_visible +#entry_grid_collection_index +#entry_selection_collection_index +#epic +#error_code +#execute_on_first_tick_enabled +#existing_world_button_enabled +#existing_world_icon_file_system +#expanded_color +#expanded_skin_pack_collection_index +#experimental_toggle_enabled +#expiration_container_visible +#expiration_duration_dropdown_enabled +#expiration_duration_dropdown_toggle_label +#expiration_duration_radio_day +#expiration_duration_radio_halfDay +#expiration_duration_radio_halfHour +#expiration_duration_radio_hour +#expiration_duration_radio_never +#expiration_duration_radio_quarterDay +#expiration_duration_radio_week +#export_offset_edit_box +#export_size_edit_box +#external_storage_permission_dropdown_visible +#factory_collection_index +#factory_collection_index +#fade_in_icon_time_seconds +#fail_realms_purchase_fulfillment_visible +#feature_server_message_text +#feature_server_message_visible +#featured_servers_visible_and_available +#field_of_view +#field_of_view_enabled +#field_of_view_slider_label +#file_storage_location_enabled +#file_storage_location_toggle_label +#filled_star_texture +#filter_option_visible_ +#filter_packtype_selected_visible +#filter_profanity_option_tooltip_text +#filter_selected_ +#filtered_light_multiplier +#find_cross_platform_friends_enabled +#fire_spreads +#fire_spreads_enabled +#first_party_member_profile_options +#flying_item_renderer +#focus_change_down +#focus_change_left +#focus_change_right +#focus_change_up +#focus_identifier +#focus_navigation_mode_down +#focus_navigation_mode_left +#focus_navigation_mode_right +#focus_navigation_mode_up +#force_dirty_animation +#force_pack_download_enabled +#force_pack_download_locked +#force_skin_update +#force_user_agreement_addon +#force_user_agreement_addon_enabled +#force_user_agreement_level +#force_user_agreement_level_enabled +#form_button_texture_file_system +#form_text +#frame_pacing_option_tooltip_text +#free_preview_realm_available +#free_preview_realm_button_visible +#free_preview_realm_new_button_visible +#free_up_space_storage_bar_fill_color +#free_up_space_storage_bar_percent_filled +#free_up_space_storage_bar_text_left +#free_up_space_storage_bar_text_right +#friend_button_focus_override_down +#friend_button_focus_override_up +#friend_realms_grid_dimension +#friends_drawer_button_enabled +#friends_drawer_button_focus_override +#friends_drawer_button_visible +#friends_network_world_item_grid_dimension +#friends_server_icon_texture_name +#friends_tab_invitation_button_focus_down_override +#friends_tab_show_not_bouncing +#fvariable +#gameMode_option_label +#gamertag_item_grid_dimension +#gamertag_pic_and_label_visible +#gathering_caption_background_color +#gathering_caption_foreground_color +#general_multiplayer_warning_label_visible +#general_multiplayer_warning_text +#general_no_multiplayer_grid_message_text +#general_no_multiplayer_grid_message_visible +#generate_random_button_enabled +#generate_random_button_text +#gesture_delta_source +#gesture_mouse_delta_x +#gesture_mouse_delta_y +#get_offline_authcode_message_panel_visible +#gif_path +#graphics_mode_dropdown_enabled +#graphics_mode_dropdown_toggle_label +#graphics_mode_is_ray_traced +#graphics_mode_is_simple_or_fancy +#graphics_mode_option_tooltip_text +#graphics_mode_option_warning_visible +#graphics_mode_preset_is_visible +#graphics_mode_radio_deferred +#graphics_mode_radio_deferred_enabled +#graphics_mode_radio_fancy +#graphics_mode_radio_ray_traced +#graphics_mode_radio_ray_traced_enabled +#graphics_mode_radio_simple +#graphics_mode_switch +#graphics_mode_switch_enabled +#graphics_quality_preset_mode_radio_custom +#graphics_quality_preset_mode_radio_performance +#graphics_quality_preset_mode_radio_visuals +#graphics_upscaling +#graphics_upscaling_enabled +#grid_number_size +#group_item_group_name +#gui_accessibility_scaling +#gui_accessibility_scaling_enabled +#gui_scale_disabled_option_tooltip_text +#gui_scale_disabled_option_visible +#has_focus +#has_horse_armor_and_saddle_slot +#has_nautilus_armor_and_saddle_slot +#has_only_nautilus_armor_slot +#header_left_padding_visible +#header_right_padding_visible +#hero_featured_pack_icon_section_visible +#hide_invites +#host_main_button_focus_override_down +#host_main_button_focus_override_up +#host_option_focus_override_down +#host_option_focus_override_left +#host_option_focus_override_right +#host_option_focus_override_up +#host_options_menu_not_open_and_tts_enabled +#host_teleport_grid_dimension +#host_teleport_players_visible +#host_weather_grid_dimension +#hover_slice +#hover_text +#how_to_play_gamepad_helper_label_text +#how_to_play_gamepad_helper_label_visible +#hud_text_background_opacity +#hud_text_background_opacity_enabled +#hud_text_background_opacity_slider_label +#hud_text_background_opacity_text_value +#hyperlink +#icon_overlay_font_scale_factor +#icon_overlay_left_padding_visible +#icon_overlay_position_collection +#icon_overlay_right_padding_visible +#icon_overlay_text_alignment +#icon_overlay_texture_filepath +#image_name +#immediaterespawn +#immediaterespawn_enabled +#immutable_world +#immutable_world_enabled +#improved_input_response_option_tooltip_text +#in_cast_modal +#include_entities +#include_entities_binding_name +#include_entities_toggle +#include_entities_toggle_off +#include_players +#include_players_binding_name +#include_players_toggle +#index +#infinite_link +#infinite_link_enabled +#info_additional_server_name +#info_additional_server_ping +#info_additional_server_ping_texture_name +#info_additional_server_player_count +#info_is_network_available_and_ping_loading +#info_third_party_screenshot_visible +#info_third_party_server_logo_texture_path +#info_third_party_server_name +#info_third_party_server_player_count +#info_type +#integrity_field +#interface_opacity +#interface_opacity_enabled +#interface_opacity_slider_label +#interface_opacity_text_value +#invalid_grid_dimensions +#invalid_pack_items +#inventory_button_text_color +#inventory_selected_armor_trim_material +#inventory_selected_banner_colors +#inventory_selected_banner_patterns +#inventory_selected_banner_type +#inventory_selected_decorated_pot_sherds +#inventory_selected_item_charged_item +#inventory_selected_item_color +#inventory_selected_item_lock_in_inventory +#inventory_selected_item_lock_in_slot +#inventory_selected_item_stack_count +#inventory_selected_serialized_actor_pose +#invite_link_expiration_time +#invite_link_expiration_time_TTS +#invited_friends_buttons_visible +#invited_friends_nextButton_visible +#invited_friends_page_index_text +#invited_friends_prevButton_visible +#ip_button_focus_change_left +#ip_text_box +#is_additional_server_label_visible +#is_additional_server_selected +#is_appearance_status_hover_panel_visible +#is_appearance_status_visible +#is_classic_skin_current_offer_loading +#is_classic_skin_pack_loading +#is_collection_query_on_sale +#is_color_picker_equip_visible +#is_conn_id_tooltip_hover_panel_visible +#is_controller_close_hover_visible +#is_controller_hover_visible +#is_creative_and_creative_layout +#is_creative_and_recipe_book_layout +#is_creative_layout_button_visible +#is_currency_purchase_visible +#is_cycle_button_focused +#is_cycle_button_focused +#is_cycle_button_focused +#is_cycle_button_focused +#is_hardcore +#is_hardcore_enabled +#is_ip_tooltip_hover_panel_visible +#is_joincode_tooltip_hover_panel_visible +#is_leaving_mpp_banner_visible +#is_loading_retailtopreview_world +#is_more_info_button_visible +#is_mpp_subscriber_only_sale +#is_multiplayer_blocked_or_network_down +#is_network_available_and_multiplayer_visible +#is_network_available_and_ping_loading +#is_network_available_and_ping_not_loading +#is_offer_purchasable_and_not_free +#is_ownership_verification_in_progress +#is_passcode_tooltip_hover_panel_visible +#is_pdp_page_sales_csb_icon_visible +#is_play_again_button_visible +#is_progress_texture_visible +#is_purchase_button_padding_visible +#is_right_info_classic_skin_panel_visible +#is_right_info_emote_panel_visible +#is_right_info_getting_started_panel_visible +#is_right_info_piece_offer_panel_visible +#is_right_info_size_panel_visible +#is_right_panel_classic_custom_visible +#is_right_panel_classic_skin_pack_visible +#is_right_tab_smithing_table +#is_screen_nav_button_visible +#is_scroll_bar_box +#is_sdl_dropdown_header_toggle_selected +#is_search_offer_list_visible +#is_selected_bundle_item_slot +#is_server_info_available_collection +#is_simple_sidebar_state_active +#is_skin_pack_screen_search_loading +#is_specail_offer_banner_visible +#is_subcategory_equip_button_visible +#is_third_party_server_selected +#is_tooltip_hover_panel_visible +#is_top_row_button_focus_enabled +#is_using_dressing_room_debugging +#is_verbose_sidebar_nav_button_visible +#item_addon_pack_count_and_label +#item_addon_pack_count_visible +#item_column_collection_index +#item_custom_color +#item_does_not_meet_requirements +#item_durability_current_amount +#item_durability_total_amount +#item_id_aux +#item_lodestone_tracking_handle +#item_mashup_count_and_label +#item_name +#item_pickup_time +#item_realms_expiration_label +#item_resource_pack_count_and_label +#item_resource_pack_count_visible +#item_row_collection_index +#item_storage_current_amount +#item_world_template_count_and_label +#item_world_template_count_visible +#itzlipofutzli +#join_and_download_everything +#join_by_code_text_edit +#joinable_realms_panel_visible +#joincode_error_icon_visible +#joincode_fetching_anim_texture +#joincode_icon_left_focus_override +#joystick_visibility_hidden +#joystick_visibility_hidden_when_unused +#joystick_visibility_visible +#keep_inventory +#keep_inventory_enabled +#key_art_texture_file_system +#keyboard_button_focus_override_down +#keyboard_button_focus_override_up +#keyboard_show_full_keyboard_options +#keyboard_show_full_keyboard_options_enabled +#keyboard_show_standard_keyboard_options +#kh8C +#lan_network_world_item_grid_dimension +#language_collapsed_collection_length +#language_columns_collection_length +#language_rows_collection_length +#leak_memory +#leak_memory_enabled +#left_corner_image_texture_file_system +#left_corner_image_texture_path +#left_cycle_button_right_focus_override +#left_most_grid_item_focus_override_left +#legacy_invite_button_enabled +#legacy_invite_button_visible +#legacy_world_icon_texture_file +#legacy_world_item_grid_dimension +#legacy_world_optionsVisible +#legacy_world_storage_dropdown +#legacy_world_tab +#legacy_world_texture_file_system +#legacy_world_texture_source +#legacy_worlds_loading_display_message +#legendary +#lesson_complete_description +#library_search_result_string +#library_search_sort_method_string +#load_offset_edit_box +#loading_bars_animation_visible +#loading_friends_realms_grid_dimension +#loading_friends_realms_grid_visible +#loading_legacy_worlds_grid_visible +#loading_personal_realms_grid_dimension +#loading_personal_realms_grid_visible +#loading_servers_progress_visible +#local_and_cloud_storage_visible +#local_world_item_grid_dimension +#local_worlds_title_with_count +#locator_bar +#locator_bar_enabled +#look_at_cursor +#main_filter_section_visible +#main_mashup_key_art_file_system +#main_mashup_key_art_texture +#manage_feed_buttons_visible +#manage_feed_nextButton_visible +#manage_feed_page_index_text +#manage_feed_prevButton_visible +#manage_profile_image_options +#max_framerate_option_tooltip_text +#max_framerate_slider_visible +#memory_tier_high +#memory_tier_low +#memory_tier_mid +#memory_tier_superHigh +#memory_tier_superLow +#mentions_ +#mentions_color_dropdown_label +#message_text_box +#minimize_button_visible_binding_name +#mob_griefing +#mob_griefing_enabled +#mob_loot +#mob_loot_enabled +#mob_spawn +#mob_spawn_enabled +#modal_label_text +#modal_label_tts +#modal_left_button_text +#modal_middle_button_text +#modal_rightcancel_button_text +#modal_title_text +#modal_title_tts +#move_stick_visible +#move_stick_visible_enabled +#multiplayer_blocked_panel_visible +#multiplayer_game +#multiplayer_game_enabled +#name_text_box +#natural_regeneration +#natural_regeneration_enabled +#nav_button_thumbnail_texture_file_system +#nav_collection_index +#navigation_tab_focus_precedence +#needs_offline_token_authorization +#network_world_button_enabled +#network_world_header_icon_texture_location +#network_world_header_icon_texture_path +#new_touch_control_schemes_preview_enabled +#new_touch_control_schemes_settings +#nex_visibility_enabled +#nex_visible +#no_available_packs_visibility +#no_cross_platform_friends_grid_message_text +#no_cross_platform_friends_grid_message_visible +#no_friends_grid_message_text +#no_friends_grid_message_visible +#no_local_world_help_visible +#no_local_world_switch_visible +#no_local_worlds_launch_help_button_label +#no_local_worlds_switch_setting_visible +#no_pick_photos_alert_visibility +#no_platform_friends_visible +#no_realms_packs_visibility +#no_unowned_packs_visibility +#no_xbox_live_friends_visible +#notification_duration_radio_TenSec +#notification_duration_radio_ThirtySec +#notification_duration_radio_ThreeSec +#notification_text +#objective_background_opacity +#offer_collection_index +#offer_collection_index +#offer_collection_index +#offer_download_progress_label +#offer_grid_item_button_focus_id +#offer_prompt_text_visibility +#offer_strikethrough_price_visible +#offline_linked_account_friend_grid_dimension +#offline_linked_account_friends_visible +#offline_platform_friend_grid_dimension +#offline_platform_friends_visible +#offline_xbox_live_friend_grid_dimension +#offline_xbox_live_friends_visible +#omnw +#on_screen_position_x +#on_screen_position_y +#online_linked_account_friend_grid_dimension +#online_linked_account_friends_visible +#online_platform_friend_grid_dimension +#online_platform_friends_visible +#online_safety_do_not_show_again +#online_xbox_live_friend_grid_dimension +#online_xbox_live_friends_visible +#open +#open_account_setting_button_gamecore_visible +#open_color_picker_button_enabled +#open_color_picker_button_visible +#operator +#ownership_verification_state_text +#pack_additional_skin_count_text +#pack_icon_sale_section_visible +#pack_id +#pack_loading_no_connection_visible +#pack_loading_progress_visible +#packs_collection_index +#page_text_box +#panel_title +#panorama_texture_file_system +#party_invite_everyone +#party_invite_friends_only +#party_invite_send_privileges_party_leader_only +#party_invite_send_privileges_party_members +#party_privacy_invite_only +#party_privacy_open +#passcode_text_box +#pattern_cell_background_texture +#pattern_selector_total_items +#pause_gif +#perfect_weather +#perfect_weather_enabled +#permission_level_dropdown_icon_texture +#permission_level_dropdown_label +#permission_level_member +#permission_level_operator +#permission_level_radio_custom +#permission_level_radio_member +#permission_level_radio_operator +#permission_level_radio_visitor +#permission_level_visitor +#permission_options_grid_visible +#permissions_dropdown_button_label +#permissions_dropdown_enabled +#permissions_dropdown_label +#permissions_dropdown_visible +#persona_piece_offer_visible +#personal_realms_grid_dimension +#personal_realms_grid_visible +#placement_priority_text_box_value +#platform_broadcast_dropdown_enabled +#platform_broadcast_dropdown_toggle_label +#platform_broadcast_friends_of_friends +#platform_broadcast_friends_only +#platform_broadcast_invite_only +#platform_locked +#platform_multiplayer_warning_label_visible +#platform_multiplayer_warning_text +#platform_settings_dropdown_visible +#platform_toggle_visible_friends_of_friends +#platform_toggle_visible_invite_only +#play_button_art_default_alpha +#play_button_art_default_bg_path +#play_button_art_default_fg_path +#play_button_art_hover_alpha +#play_button_art_hover_bg_path +#play_button_art_hover_fg_path +#play_button_art_label_color +#play_button_banner_text_color +#play_button_banner_texture_source +#player_count_collection_length +#player_damage +#player_damage_enabled +#player_filter_text_box +#player_game_mode_dropdown_enabled +#player_game_mode_dropdown_toggle_label +#player_game_mode_dropdown_visible +#player_game_mode_radio_adventure +#player_game_mode_radio_creative +#player_game_mode_radio_default +#player_game_mode_radio_spectator +#player_game_mode_radio_survival +#player_name +#player_name_enabled +#player_permission_level_icon_texture +#player_permissions_dropdown_enabled +#player_permissions_dropdown_toggle_label +#player_sleep +#player_sleep_enabled +#player_sleep_percentage +#player_sleep_percentage_enabled +#player_sleep_percentage_slider_label +#player_sleep_percentage_steps +#player_sleep_percentage_text_value +#player_uuid +#playername +#players_in_my_world_visible +#pocket_stack_splitting_overlay_visible +#point_light_shadow_option_tooltip_text +#popular_packs_grid_dimension +#popup_first_lower_button_text +#popup_message_student_visible +#popup_second_lower_button_text +#port_text_box +#pre_process_ +#premium_packs_grid_dimensions +#premium_skins_grid_dimensions +#preview_idx +#previous_block_type_text_color +#previous_condition_mode_text +#previous_redstone_mode_text +#profile_button_x_icon_visible +#profile_image_options +#progress_bar_current_amount +#progress_bar_total_amount +#progress_bar_visible +#progress_loading_anim_visible +#progress_loading_bars_backups_visible +#progressive_select_bar_ratio +#progressive_select_down_visible +#progressive_select_left_side_visible +#progressive_select_right_side_visible +#progressive_select_up_visible +#promo_action_button_visible +#promo_bottom_button_focus_override_down +#promo_day_focus_override_right +#promo_item_action_button_text +#promo_item_resource_pack_count +#promo_item_resource_pack_count_and_label +#promo_item_resource_pack_count_visible +#promo_item_skin_count_and_label +#promo_item_skin_count_visible +#promo_item_world_template_count +#promo_item_world_template_count_and_label +#promo_item_world_template_count_visible +#promo_persona_thumbnail_file_system +#promo_persona_thumbnail_texture +#promo_screenshot_collection_length +#promo_timer_tool_tip_left_visible +#promo_timer_tool_tip_not_visible +#promo_timer_tool_tip_right_visible +#promo_timer_tool_tip_visible +#promotion_thumbnail_texture_file_system +#promotion_thumbnail_texture_path +#property_field +#ps4_warning_message_visible +#psn_visibility_enabled +#psn_visible +#purchase_with_coins_button_text +#purchase_with_currency_button_text +#purchase_with_currency_disclaimer +#pvp_damage +#pvp_damage_enabled +#pvp_enabled +#qr_code_content +#random_tick_speed +#random_tick_speed_enabled +#rare +#ratings_focus_container_visible +#ratings_interact_panel_visible +#ratings_panel_5stars_visible +#ray_tracing_warning_message +#realm_consumable_to_subscription_info +#realm_consumable_to_subscription_visibility +#realm_default_permission_dropdown_enabled +#realm_default_permission_dropdown_toggle_label +#realm_invite_links_description +#realm_nintendo_first_realm_purchase_button_visible +#realm_selected_preference_icon +#realm_selected_preference_tts +#realm_subscription_origin_addendum +#realm_subscription_origin_visibility +#realms_advanced_info_visible +#realms_advanced_loading_failed_message_visible +#realms_advanced_loading_message_visible +#realms_allowlist_button_a_description +#realms_allowlist_button_b_description +#realms_backup_grid_dimension +#realms_branch_grid_dimension +#realms_difficulty_dropdown_enabled +#realms_feed_button_tts_header +#realms_game_mode_dropdown_enabled +#realms_grid_dimensions +#realms_invite_links_collection_length +#realms_invite_links_info_visible +#realms_invite_links_loading_failed_message_visible +#realms_invite_links_loading_message_visible +#realms_loading_display_message +#realms_name_box +#realms_notification_button_visible +#realms_pack_items +#realms_plus_one_month_free_trial_visible +#realms_plus_skin_pack_texture +#realms_plus_skin_pack_texture_file_system +#realms_plus_subscriptions_dimensions +#realms_plus_template_factory_collection +#realms_redeem_button_visible +#realms_settings_loading_modal_progress_text +#realms_settings_loading_modal_title +#realms_sign_in_button_visible +#realms_sign_in_prompt_friends +#realms_subscription_button_visible +#realms_subscription_info_visible +#realms_subscription_loading_failed_message_visible +#realms_subscription_loading_message_visible +#realms_subscriptions_loading_failed_visible +#realms_subscriptions_loading_visible +#realms_unread_story_count_visible +#realms_world_expiry_notification_visible +#realms_world_item_grid_dimension +#realms_worlds_title_with_count +#recent_skins_grid_dimensions +#recipes_unlock +#recipes_unlock_enabled +#redstone_dropdown_toggle_label +#refresh_joincode_button_disabled +#refresh_joincode_button_hide +#register_as_dressing_room_scene +#remove_blocks +#remove_blocks_toggle +#remove_player_button_visible +#render_clouds +#render_clouds_enabled +#render_distance_performance_tooltip_text +#render_distance_warning_visible +#respawn_blocks_explode +#respawn_blocks_explode_enabled +#respawn_radius +#respawn_radius_enabled +#restart_hosting_button_visible +#retailtopreview_world_checkVisible +#retailtopreview_world_error +#retailtopreview_world_icon_texture +#retailtopreview_world_icon_texture_file +#retailtopreview_world_isSelected +#retailtopreview_world_length +#retailtopreview_world_optionsVisible +#retailtopreview_world_storage_dropdown +#retailtopreview_world_tab +#retailtopreview_world_texture_file_system +#retailtopreview_world_texture_zip +#retailtopreview_world_update +#retailtopreview_world_visible +#retailtopreview_world_warning +#right_corner_image_texture_file_system +#right_corner_image_texture_path +#right_cycle_button_left_focus_override +#right_most_grid_item_focus_override_right +#rotation +#rotation_enabled +#rotation_slider_label +#rotation_steps +#rotation_text_value +#row_collection_index +#row_collection_index +#row_collection_name +#rtx_disabled_option_upsell_tooltip_text +#rtx_disabled_option_upsell_visible +#rtx_render_distance_warning_visible +#rtx_renderdist_performance_tooltip_text +#rtx_upscale_disabled_option_upsell_visible +#save_accordion_checkbox_focus_id +#save_accordion_checkbox_toggle_state +#save_active_world_button_tts +#save_checkbox_button_tts_header +#save_checkbox_button_tts_override +#save_offset_edit_box +#save_options_button_focus_id +#save_size_edit_box +#saves_loading_failed_message +#saves_loading_failed_visible +#saves_loading_indicator_visible +#scoreboard_list_scoretype_hearts +#scoreboard_list_scoretype_score +#scoreboard_objective_background_opacity +#screen_position_x_slider_label +#screen_position_x_text_value +#screen_position_y_slider_label +#screen_position_y_text_value +#screenshot_collection_length +#screenshot_column_collection_index +#screenshot_focus_override_right +#screenshot_row_collection_index +#screenshot_texture_file_system +#screenshot_texture_file_system_image_row +#screenshot_texture_file_system_image_row_global +#screenshot_texture_image_row +#screenshot_texture_image_row_global +#script_debugger_attach_mode_connect +#script_debugger_attach_mode_listen +#script_debugger_auto_attach_options_visible +#script_debugger_options_enabled +#script_debugger_passcode_visible +#script_watchdog_options_enabled +#script_watchdog_slow_threshold_visible +#script_watchdog_spike_threshold_visible +#scroll_bar_visible +#scroll_button_release +#scrollbar_hit_bottom +#sdl_color_picker_right_section_content +#sdl_dropdown_data_row_visible +#sdl_expanded_appearance_content +#sdl_texture_component_image_path +#sdl_texture_component_image_system +#sdl_texture_component_image_visible +#sdl_top_static_section_content +#seach_results_close_button_visible +#search_box_name +#search_header_box_text_content +#search_header_clear_visible +#search_results_close_focus_id +#search_results_panel_visible +#seed_field +#selectable_button_visibility +#selected_control_scheme_name +#selected_grid_dimensions +#selected_hover_text +#selected_item_durability_current_amount +#selected_item_durability_total_amount +#selected_item_durability_visible +#selected_item_storage_current_amount +#selected_item_storage_total_amount +#selected_item_storage_visible +#selected_pack_items +#selection_priority_text_box_value +#send_button_accessibility_text +#serialized_actor_pose +#server_add_info_box +#server_column_collection_index +#server_id_text_box +#server_nested_buttons_visible +#server_region_connected_visible +#server_row_collection_index +#server_search_box +#server_sim_distance +#server_sim_distance_enabled +#server_sim_distance_slider_label +#server_sim_distance_steps +#server_sim_distance_text_value +#server_visibility_enabled +#server_visible +#serverbound_client_diagnostics_enabled +#servers_network_world_item_grid_dimension +#set_target_rotation +#shield_base_color +#shield_base_color_hovered +#shield_is_active +#should_host +#should_show_bundle_open_back +#should_show_bundle_open_front +#should_show_subscription_tab +#show_border_effect +#show_border_effect_enabled +#show_bounding_box_binding_name +#show_bounding_box_toggle +#show_bounding_box_toggle_off +#show_bounding_box_toggle_on +#show_convert_to_infinite_button +#show_coordinates +#show_coordinates_enabled +#show_days_played +#show_days_played_enabled +#show_deferred_render_distance +#show_edu_icon +#show_end_poem +#show_full_copy_coordinates_keys +#show_hovered_selected_inventory_slot +#show_input_overlay_armors_and_tools +#show_input_overlay_templates +#show_item_pickup +#show_material_overlay_ingot +#show_more +#show_new_edit_realm_world_opt_in +#show_new_play_screen_opt_in +#show_new_play_screen_servers_opt_in +#show_no_xbl_and_local_content_warning +#show_no_xbl_and_no_local_content_warning +#show_persistent_bundle_hover_text +#show_raytracing_render_distance +#show_reload_custom_skin_button +#show_selected_button_highlight +#show_standard_copy_coordinates_keys +#show_submit_feedback_screen +#show_worlds_populating_progress +#showing_new_player_flow_buttons +#showing_platform_store_icon +#sidebar_nav_image_bilinear_enabled +#sidebar_nav_image_file_system +#sidebar_screen_nav_screen_button_label +#sidebar_section_collection_index +#sidebar_verbose_toggle_check +#sign_in_error_client_visible +#sign_in_ios_buttons_visible +#sign_text_multi +#simple_sidebar_factory_collection +#simple_sidebar_option_toggle_check +#skin_button_game_pad_visible +#skin_collection_index +#skin_collection_index +#skin_cycle_pack_left_button_enabled +#skin_cycle_pack_right_button_enabled +#skin_idx +#skin_pack_collection_index +#skin_pack_collector_collection_index +#skin_pack_loading_progress_visible +#skin_pack_right_panel_skin_count_text +#skin_pack_right_panel_texture_pack_count_text +#skin_pack_right_panel_usage_is_limited +#skin_pack_right_panel_usage_text +#skin_pack_right_panel_usage_tooltip_text +#skin_pack_right_panel_world_count_text +#skin_rotation +#skin_search_progress_visible +#skins_collection_index +#slider_value +#smooth_lighting +#smooth_lighting_enabled +#sneak_hold +#sneak_toggle +#sort_menu_collection_grid_dimensions +#sort_relevance_toggle_check +#sort_toggle_label_tts_override +#sound_to_play +#split_screen_radio_horizontal +#split_screen_radio_vertical +#splitscreen_interface_opacity +#splitscreen_interface_opacity_enabled +#splitscreen_interface_opacity_slider_label +#stack_splitting_bar_offset_x +#stack_splitting_bar_offset_y +#stack_splitting_bar_visible +#start_hosting_button_visible +#start_selected +#start_with_map +#start_with_map_enabled +#starter_bundle_offer_prompt_text +#starter_bundle_strikethrough_visible +#static_joystick +#static_joystick_enabled +#static_permissions_display_description +#stone_cell_background_texture +#storage_location_radio_external +#storage_location_radio_package +#store_button_art_default_alpha +#store_button_art_default_bg_path +#store_button_art_default_fg_path +#store_button_art_hover_alpha +#store_button_art_hover_bg_path +#store_button_art_hover_fg_path +#store_button_art_label_color +#store_button_banner_text_color +#store_button_banner_texture +#store_button_banner_texture_source +#store_button_banner_visible +#store_error_tooltip_visible +#store_offer_section_visible +#store_row_image_animation_name +#store_row_image_texture_filepath +#store_row_image_texture_name +#structure_3d_export_mode +#structure_animation_blocks +#structure_animation_layers +#structure_animation_none +#structure_corner_mode +#structure_data_mode +#structure_load_mode +#structure_name +#structure_name_content_binding_name +#structure_redstone_disk +#structure_redstone_memory +#structure_save_mode +#student_button_grid_dimensions +#student_buttons_collection_index +#sub_command +#sub_dependent_packs_description +#sub_dependent_packs_version +#sub_legacy_world_description +#sub_legacy_world_warning_button +#sub_retailtopreview_world_date +#sub_retailtopreview_world_description +#sub_retailtopreview_world_error +#sub_retailtopreview_world_name +#sub_retailtopreview_world_size +#sub_retailtopreview_world_update +#sub_retailtopreview_world_valid +#sub_retailtopreview_world_version +#sub_retailtopreview_world_warning +#sub_retailtopreview_world_warning_button +#sub_world_template_game_type +#submit_feedback_in_progress +#submit_text +#subscription_banner_visible +#subscription_chevron_visibility +#subscription_world_template_text +#suggested_content_visible +#suggested_offers_loading +#suggested_offers_title +#suggested_template_factory_collection +#sunsetting_do_not_show_again +#supports_available_space_query +#switch_storage_type_enabled +#switch_storage_type_toggle_label +#sync_legacy_world_button_visible +#sync_retailtopreview_world_button_visible +#tab_button_label_text_color +#tag_collapsed_collection_length +#tag_columns_collection_length +#template_controls_visiblity +#template_search_box +#terms_and_conditions_hyperlink +#text +#text_box_name +#text_box_photos +#text_edit_box_focus_override_down +#text_edit_box_focus_override_up +#text_edit_selected +#text_tts +#texture +#texture_file_system +#texture_hot_reloader_enabled +#third_party_featured_item_grid_dimension +#third_party_profile_pic_file_system +#third_party_screenshot_visible +#third_party_server_logo_resource_location +#third_party_server_logo_texture_path +#thirdperson_radio_first +#thirdperson_radio_third_back +#thirdperson_radio_third_front +#this_promo_screenshot_selected +#thumbnail_texture_file_system +#tile_drops +#tile_drops_enabled +#time_since_manage_feed_post +#timer_field_count_to_show +#title_text +#title_text_box +#tnt_explodes +#tnt_explodes_enabled +#toast_progress_bar_current_amount +#toast_progress_bar_total_amount +#toggle_group_forced_index +#toggle_on_hover +#toggle_state +#top_button_scale_radio_big +#top_button_scale_radio_medium +#top_button_scale_radio_small +#top_right_block +#total_size_binding +#touch_classic_dpad_being_used +#touch_controls_v2_crosshair_mode +#touch_controls_v2_touch_mode +#touch_joystick_crosshair_being_used +#touch_joystick_tap_being_used +#touch_progress_bar_visible +#trade_details_button_1_visible +#trade_details_button_2_visible +#trade_item_focus_override_left +#trade_item_focus_override_right +#trial_creative_mode_enabled_abtest +#trial_legacy_worlds_enabled_abtest +#trial_marketplace_enabled_abtest +#trial_multiplayer_enabled_abtest +#trial_purchase_link_visible +#trial_resource_pack_enabled_abtest +#trial_seeds_enabled_abtest +#trial_server_enabled_abtest +#trial_trialworld_transfer_enabled_abtest +#trial_upsell_continue_button +#trial_upsell_expired_updatedDescription +#trial_upsell_updatedDescription +#trial_xboxlive_enabled_abtest +#tts_dialog_body +#tts_dialog_title +#tts_filters_appliedCount_text +#tts_offer_markdown_percentage +#tts_overrride_offer_full_price +#tts_purchase_with_coins_button_text +#typeface_radio_mojangles +#typeface_radio_notoSans +#ui_profile_radio_classic +#ui_profile_radio_pocket +#uncommon +#understand_purchase_warning +#uninvited_friends_buttons_visible +#uninvited_friends_nextButton_visible +#uninvited_friends_page_index_text +#uninvited_friends_prevButton_visible +#unlink_consequences_acknowledged +#unlock_full_game_button_text +#unowned_grid_dimensions +#unowned_pack_items +#unowned_visible +#unread_notification_icon_visibility +#unselectable_button_visibility +#unselectable_dust_is_visible +#update_dimensions_make_backup +#update_notification_section_visible +#update_notification_visible +#upper_online_buttons_visible +#upscaling_mode_radio_bilinear +#upscaling_mode_radio_taau +#upscaling_mode_toggle_label +#use_heart_offset +#using_ellipses +#uv_offset_x +#verbose_sidebar_factory_collection +#verbose_sidebar_option_toggle_check +#version +#version_filter_text_box +#vibrant_visuals_badge_visible +#vibrant_visuals_hover_icon_file_system +#vibrant_visuals_hover_visible +#visible +#vsync_adaptive +#vsync_off +#vsync_on +#waterlog_blocks_toggle +#weather_cycle +#weather_cycle_enabled +#websocket_encryption_visible +#world_button_focus_identifier +#world_column_collection_index +#world_controls_visiblity +#world_difficulty_dropdown_enabled +#world_difficulty_dropdown_toggle_label +#world_difficulty_radio_easy +#world_difficulty_radio_hard +#world_difficulty_radio_normal +#world_difficulty_radio_peaceful +#world_download_info_visible +#world_download_progress_bar_percentage +#world_game_mode_dropdown_enabled +#world_game_mode_dropdown_toggle_label +#world_game_mode_radio_adventure +#world_game_mode_radio_creative +#world_game_mode_radio_spectator +#world_game_mode_radio_survival +#world_name +#world_name_enabled +#world_row_collection_index +#world_search_box +#world_seed +#world_seed_enabled +#world_template_icon_texture +#world_template_icon_texture_file +#world_template_icon_texture_zip +#world_template_inventory_factory_collection +#world_template_option_locked_warning_text +#world_template_options_lock_warning_text +#world_template_permissions_locked_warning_text +#world_template_types_toggle_check +#world_type_dropdown_enabled +#world_type_dropdown_toggle_label +#world_type_radio_flat +#world_type_radio_infinite +#world_type_radio_old +#worlds_tab_import_button_focus_down_override +#write_feedback_textbox +#x_padding +#xbl_broadcast_dropdown_toggle_label +#xbl_broadcast_friends_of_friends +#xbl_broadcast_friends_only +#xbl_broadcast_invite_only +#xbl_multiplayer_warning_label_visible +#xbl_multiplayer_warning_text +#xbl_show_broadcast_dropdown +#y_padding \ No newline at end of file diff --git a/package.json b/package.json index f0cab0d..029b921 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.1.15", + "version": "4.1.15-indev.1", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", diff --git a/scripts/enum.ts b/scripts/enum.ts index 2669a23..69a7de3 100644 --- a/scripts/enum.ts +++ b/scripts/enum.ts @@ -7,41 +7,57 @@ const schema = PFFS.readFileJSON("ui.schema.json").definitions const enumPath = "src/types/enums/" const index: string[] = [] +const bagBindings = new Set(schema["hc:bag_binding"].enum) for (const key in schema) { const data = schema[key] - if (data.enum) { - const enumName = key.match(/\w+$/)?.[0].toCamelCase(true)! - index.push(`export { ${enumName} } from "./${enumName}.js"`) - const count = new Map() - const fileData: string[] = [`export enum ${enumName} {`] + const ext = async (extendData: string[] = []) => { + if (data.enum) { + const enumName = key.match(/\w+$/)?.[0].toCamelCase(true)! + index.push(`export { ${enumName} } from "./${enumName}.js"`) + const count = new Map() - for (const value of data.enum as string[]) { - if (enumName === "ButtonId") { - const values = value.match(/\w+/g)! - const name = - values[0] === "button" ? values.slice(1).join("_").toUpperCase() : values.join("_").toUpperCase() - if (name === undefined) continue - fileData.push(` ${count.get(name) ? `${name}_${count.get(name)}` : name} = "${value}",`) + const fileData: string[] = [`export enum ${enumName} {`] - count.set(name, (count.get(name) || 0) + 1) - } else { - let name = value.match(/\w+$/g)?.join("_")?.toUpperCase()! - if (name === undefined) continue - if (/\d/.test(name?.[0])) name = "_" + name - fileData.push(` ${count.get(name) ? `${name}_${count.get(name)}` : name} = "${value}",`) - count.set(name, (count.get(name) || 0) + 1) + for (const value of Array.from(new Set([...data.enum, ...extendData])) as string[]) { + if (enumName === "ButtonId") { + const values = value.match(/\w+/g)! + const name = + values[0] === "button" + ? values.slice(1).join("_").toUpperCase() + : values.join("_").toUpperCase() + if (name === undefined) continue + fileData.push(` ${count.get(name) ? `${name}_${count.get(name)}` : name} = "${value}",`) + + count.set(name, (count.get(name) || 0) + 1) + } else { + let name = value.match(/\w+$/g)?.join("_")?.toUpperCase()! + if (name === undefined) continue + if (/\d/.test(name?.[0])) name = "_" + name + fileData.push(` ${count.get(name) ? `${name}_${count.get(name)}` : name} = "${value}",`) + count.set(name, (count.get(name) || 0) + 1) + } } + + if (enumName === "Type") { + fileData.push(` UNKNOWN = "unknown",`) + } + + fileData.push("}") + + await fs + .writeFile(`${enumPath}${enumName}.ts`, fileData.join("\n")) + .then(() => console.log(`Generated enum ${enumName} with ${data.enum.length} values`)) } - - if (enumName === "Type") { - fileData.push(` UNKNOWN = "unknown",`) - } - - fileData.push("}") - - fs.writeFile(`${enumPath}${enumName}.ts`, fileData.join("\n")) } + + await fs + .readFile(`extends/${key.match(/\w+$/)?.[0]}.txt`, "utf-8") + .then(async data => { + const extendData = data.split("\r\n").filter(line => !bagBindings.has(line)) + await ext(extendData).then(v => console.log(`Extended ${key} with ${extendData.length} values`)) + }) + .catch(() => ext()) } fs.writeFile(`${enumPath}index.ts`, index.join("\n")) diff --git a/src/analyzer/vanilladefs.ts b/src/analyzer/vanilladefs.ts index c6172b6..a9ff23c 100644 --- a/src/analyzer/vanilladefs.ts +++ b/src/analyzer/vanilladefs.ts @@ -40452,6 +40452,50 @@ export const vanilladefs: VanillaDefs = { "file": "ui/hud_screen.json", "type": "stack_panel" }, + "subtitle_direction_label": { + "file": "ui/hud_screen.json", + "type": "label" + }, + "subtitle_grid_item": { + "file": "ui/hud_screen.json", + "type": "panel", + "children": [ + "subtitle_background" + ] + }, + "subtitle_grid_item/subtitle_background": { + "file": "ui/hud_screen.json", + "type": "image", + "children": [ + "direction_left", + "subtitle_text", + "direction_right" + ] + }, + "subtitle_grid_item/subtitle_background/direction_left": { + "file": "ui/hud_screen.json", + "type": "label", + "extend": { + "name": "subtitle_direction_label", + "namespace": "hud" + } + }, + "subtitle_grid_item/subtitle_background/subtitle_text": { + "file": "ui/hud_screen.json", + "type": "label", + "extend": { + "name": "chat_label", + "namespace": "hud" + } + }, + "subtitle_grid_item/subtitle_background/direction_right": { + "file": "ui/hud_screen.json", + "type": "label", + "extend": { + "name": "subtitle_direction_label", + "namespace": "hud" + } + }, "subtitle_panel": { "file": "ui/hud_screen.json", "type": "panel", @@ -51248,6 +51292,232 @@ export const vanilladefs: VanillaDefs = { } } }, + "sdl_content_navigation": { + "content_navigation_factory": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "stack_panel" + }, + "inventory_nav_item_panel": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "panel", + "children": [ + "inventory_nav_item" + ] + }, + "inventory_nav_item_panel/inventory_nav_item": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "image", + "children": [ + "divider_stack_panel" + ] + }, + "inventory_nav_item_panel/inventory_nav_item/divider_stack_panel": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "stack_panel", + "children": [ + "top_pad", + "nav_button", + "divider" + ] + }, + "inventory_nav_item_panel/inventory_nav_item/divider_stack_panel/top_pad": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "panel" + }, + "inventory_nav_item_panel/inventory_nav_item/divider_stack_panel/nav_button": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "button", + "extend": { + "name": "category_panel_button", + "namespace": "sdl_content_navigation" + } + }, + "inventory_nav_item_panel/inventory_nav_item/divider_stack_panel/divider": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "stack_panel", + "extend": { + "name": "divider_panel", + "namespace": "sdl_content_navigation" + } + }, + "category_panel_button": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "button", + "extend": { + "name": "button", + "namespace": "common" + }, + "children": [ + "default", + "hover", + "pressed" + ] + }, + "category_panel_button/default": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "stack_panel", + "extend": { + "name": "category_stack_panel", + "namespace": "sdl_content_navigation" + } + }, + "category_panel_button/hover": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "stack_panel", + "extend": { + "name": "category_stack_panel", + "namespace": "sdl_content_navigation" + } + }, + "category_panel_button/pressed": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "stack_panel", + "extend": { + "name": "category_stack_panel", + "namespace": "sdl_content_navigation" + } + }, + "divider_panel": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "stack_panel", + "children": [ + "top_pad", + "divider" + ] + }, + "divider_panel/top_pad": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "panel" + }, + "divider_panel/divider": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "panel", + "extend": { + "name": "horizontal_divider", + "namespace": "common" + } + }, + "category_stack_panel": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "stack_panel", + "children": [ + "pad_1", + "text", + "fill_pad", + "icon", + "pad_2", + "number" + ] + }, + "category_stack_panel/pad_1": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "panel" + }, + "category_stack_panel/text": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "unknown" + }, + "category_stack_panel/fill_pad": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "panel" + }, + "category_stack_panel/icon": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "image" + }, + "category_stack_panel/pad_2": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "panel" + }, + "category_stack_panel/number": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "label" + }, + "light_redirect_button_panel": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "panel", + "children": [ + "light_redirect_button" + ] + }, + "light_redirect_button_panel/light_redirect_button": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "sdl_button_no_click_panel": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "panel", + "children": [ + "sdl_button_no_click" + ] + }, + "sdl_button_no_click_panel/sdl_button_no_click": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "button", + "extend": { + "name": "light_content_button", + "namespace": "common_buttons" + } + }, + "no_click_button": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "stack_panel", + "children": [ + "pad_1", + "text", + "fill_pad", + "icon_panel", + "pad_2" + ] + }, + "no_click_button/pad_1": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "panel" + }, + "no_click_button/text": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "unknown" + }, + "no_click_button/fill_pad": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "panel" + }, + "no_click_button/icon_panel": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "panel", + "children": [ + "icon" + ] + }, + "no_click_button/icon_panel/icon": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "image", + "extend": { + "name": "arrow_down", + "namespace": "sdl_content_navigation" + } + }, + "no_click_button/pad_2": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "panel" + }, + "arrow_down": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "image" + }, + "section_header_no_color_binding": { + "file": "ui/marketplace_sdl/sdl_content_navigation.json", + "type": "label", + "extend": { + "name": "store_section_header_label", + "namespace": "common_store" + } + } + }, "sdl_dropdowns": { "sdl_dropdown_rows": { "file": "ui/marketplace_sdl/sdl_dropdowns.json", @@ -99807,8 +100077,6 @@ export const vanilladefs: VanillaDefs = { "file": "ui/settings_sections/realms_world_section.json", "type": "stack_panel", "children": [ - "new_edit_world_opt_in_panel", - "new_edit_world_opt_in_divider", "option_info_label", "hardcore_info_label", "realm_name_edit", @@ -99853,50 +100121,6 @@ export const vanilladefs: VanillaDefs = { "manage_feed_button" ] }, - "panel_content/new_edit_world_opt_in_panel": { - "file": "ui/settings_sections/realms_world_section.json", - "type": "stack_panel", - "children": [ - "panel_title", - "panel_text", - "opt_in_button" - ] - }, - "panel_content/new_edit_world_opt_in_panel/panel_title": { - "file": "ui/settings_sections/realms_world_section.json", - "type": "panel", - "extend": { - "name": "option_group_label", - "namespace": "settings_common" - } - }, - "panel_content/new_edit_world_opt_in_panel/panel_text": { - "file": "ui/settings_sections/realms_world_section.json", - "type": "panel", - "extend": { - "name": "option_group_label", - "namespace": "settings_common" - } - }, - "panel_content/new_edit_world_opt_in_panel/opt_in_button": { - "file": "ui/settings_sections/realms_world_section.json", - "type": "button", - "extend": { - "name": "action_button", - "namespace": "settings_common" - } - }, - "panel_content/new_edit_world_opt_in_divider": { - "file": "ui/settings_sections/realms_world_section.json", - "type": "panel", - "children": [ - "section_divider" - ] - }, - "panel_content/new_edit_world_opt_in_divider/section_divider": { - "file": "ui/settings_sections/realms_world_section.json", - "type": "image" - }, "panel_content/option_info_label": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", @@ -118553,11 +118777,7 @@ export const vanilladefs: VanillaDefs = { }, "sdl_scrolling_content_stack/store_screen_layout_factory": { "file": "ui/store_data_driven_screen.json", - "type": "stack_panel", - "extend": { - "name": "store_section_factory", - "namespace": "common_store" - } + "type": "unknown" }, "sdl_scrolling_content_stack/footer": { "file": "ui/store_data_driven_screen.json", @@ -118716,13 +118936,32 @@ export const vanilladefs: VanillaDefs = { "type": "image" }, "main_panel/main_panel_content": { + "file": "ui/store_data_driven_screen.json", + "type": "stack_panel", + "children": [ + "nav_panel", + "main_panel_because_screen_content_is_a_whiny_baby_and_cant_use_fill" + ] + }, + "main_panel/main_panel_content/nav_panel": { "file": "ui/store_data_driven_screen.json", "type": "panel", "children": [ "sdl_screen_content" ] }, - "main_panel/main_panel_content/sdl_screen_content": { + "main_panel/main_panel_content/nav_panel/sdl_screen_content": { + "file": "ui/store_data_driven_screen.json", + "type": "unknown" + }, + "main_panel/main_panel_content/main_panel_because_screen_content_is_a_whiny_baby_and_cant_use_fill": { + "file": "ui/store_data_driven_screen.json", + "type": "panel", + "children": [ + "sdl_screen_content" + ] + }, + "main_panel/main_panel_content/main_panel_because_screen_content_is_a_whiny_baby_and_cant_use_fill/sdl_screen_content": { "file": "ui/store_data_driven_screen.json", "type": "unknown" }, diff --git a/src/types/enums/Binding.ts b/src/types/enums/Binding.ts index b147650..e1ff649 100644 --- a/src/types/enums/Binding.ts +++ b/src/types/enums/Binding.ts @@ -2790,4 +2790,941 @@ export enum Binding { SELECTED_BUNDLE_ITEM_TEXT = "#selected_bundle_item_text", EDU_AI_LESSON_CRAFTER_ON = "#edu_ai_lesson_crafter_on", EDITIONS_VISIBLE_AND_NOT_REALMS_PROMO_VISIBLE = "#editions_visible_and_not_realms_promo_visible", + XOUT_BUTTON_VISIBLE_BINDING_NAME = "#Xout_button_visible_binding_name", + ACCESSIBILITY_COINS_WITH_BONUS = "#accessibility_coins_with_bonus", + ACCESSIBILITY_COINS_WITHOUT_BONUS = "#accessibility_coins_without_bonus", + ACCESSIBILITY_MINECOINS_AMOUNT = "#accessibility_minecoins_amount", + ACCESSIBILITY_SCALING_OPTION_TOOLTIP_TEXT = "#accessibility_scaling_option_tooltip_text", + ACTION_TEXT = "#action_text", + ACTIONBAR_TEXT_BACKGROUND_OPACITY = "#actionbar_text_background_opacity", + ACTIONBAR_TEXT_BACKGROUND_OPACITY_ENABLED = "#actionbar_text_background_opacity_enabled", + ACTIONBAR_TEXT_BACKGROUND_OPACITY_SLIDER_LABEL = "#actionbar_text_background_opacity_slider_label", + ACTIONBAR_TEXT_BACKGROUND_OPACITY_TEXT_VALUE = "#actionbar_text_background_opacity_text_value", + ACTIONS_COLLECTION_INDEX = "#actions_collection_index", + ACTIVATE_LINK = "#activate_link", + ACTIVATE_LINK_ENABLED = "#activate_link_enabled", + ACTIVATED_PURCHASE_PANEL_VISIBLE = "#activated_purchase_panel_visible", + ADD_INVITE_LINK_BUTTON_ENABLED = "#add_invite_link_button_enabled", + ADD_INVITE_LINK_BUTTON_VISIBLE = "#add_invite_link_button_visible", + ADDITIONAL_SERVER_TOGGLE_INDEX = "#additional_server_toggle_index", + ADDON_STACKING_WARNING_VISIBLE = "#addon_stacking_warning_visible", + ADVANCED_GRAPHICS_OPTIONS_BUTTON_VISIBLE = "#advanced_graphics_options_button_visible", + ADVANCED_GRAPHICS_OPTIONS_GRID_VISIBLE = "#advanced_graphics_options_grid_visible", + AGREE_TERMS_AND_CONDITIONS = "#agree_terms_and_conditions", + ANIMATION_NAME = "#animation_name", + ANIMATION_TIME_CONTENT_EDIT_BOX = "#animation_time_content_edit_box", + ANIMATION_TIME_FIELD = "#animation_time_field", + ANIMATION_TO_PLAY = "#animation_to_play", + ANIMATION_TO_PLAY_WHEN_DONE = "#animation_to_play_when_done", + APPEARANCE_STATUS_HOVER_LABEL = "#appearance_status_hover_label", + ARE_GAMEPAD_QUICK_SELECT_HELPERS_VISIBLE = "#are_gamepad_quick_select_helpers_visible", + ARMOR_TRIM_MATERIAL = "#armor_trim_material", + ARMOR_TRIM_PATTERN = "#armor_trim_pattern", + AUTHOR_TEXT_BOX = "#author_text_box", + AUTO_UPDATE_MODE_OFF = "#auto_update_mode_off", + AUTO_UPDATE_MODE_ON_WIFI_ONLY = "#auto_update_mode_on_wifi_only", + AUTO_UPDATE_MODE_ON_WITH_CELLULAR = "#auto_update_mode_on_with_cellular", + AVAILABLE_GRID_DIMENSIONS = "#available_grid_dimensions", + AVAILABLE_PACK_ITEMS = "#available_pack_items", + BACK_BUTTON_ACCESSIBILITY_TEXT = "#back_button_accessibility_text", + BACKGROUND_IMAGE_TEXTURE_FILE_SYSTEM = "#background_image_texture_file_system", + BACKGROUND_IMAGE_TEXTURE_PATH = "#background_image_texture_path", + BANNER_BUTTON_LEFT_PADDING_VISIBLE = "#banner_button_left_padding_visible", + BANNER_BUTTON_RIGHT_PADDING_VISIBLE = "#banner_button_right_padding_visible", + BANNER_DESCRIPTION_LEFT_PADDING_VISIBLE = "#banner_description_left_padding_visible", + BANNER_DESCRIPTION_RIGHT_PADDING_VISIBLE = "#banner_description_right_padding_visible", + BANNER_HOVER_TEXTURE_FILEPATH = "#banner_hover_texture_filepath", + BANNER_TITLE_LEFT_PADDING_VISIBLE = "#banner_title_left_padding_visible", + BANNER_TITLE_RIGHT_PADDING_VISIBLE = "#banner_title_right_padding_visible", + BETA_RETAIL_LEGACY_WORLD_DATE = "#beta_retail_legacy_world_date", + BETA_RETAIL_LEGACY_WORLD_FILESIZE = "#beta_retail_legacy_world_filesize", + BETA_RETAIL_LEGACY_WORLD_GAME_MODE = "#beta_retail_legacy_world_game_mode", + BETA_RETAIL_LEGACY_WORLD_IMAGE = "#beta_retail_legacy_world_image", + BETA_RETAIL_LEGACY_WORLD_NAME = "#beta_retail_legacy_world_name", + BETA_RETAIL_LEGACY_WORLD_TEXTURE_SOURCE = "#beta_retail_legacy_world_texture_source", + BETA_RETAIL_LOCAL_WORLD_DATE = "#beta_retail_local_world_date", + BETA_RETAIL_LOCAL_WORLD_FILESIZE = "#beta_retail_local_world_filesize", + BETA_RETAIL_LOCAL_WORLD_GAME_MODE = "#beta_retail_local_world_game_mode", + BETA_RETAIL_LOCAL_WORLD_IMAGE = "#beta_retail_local_world_image", + BETA_RETAIL_LOCAL_WORLD_NAME = "#beta_retail_local_world_name", + BETA_RETAIL_LOCAL_WORLD_TEXTURE_SOURCE = "#beta_retail_local_world_texture_source", + BLOCK_TYPE_DROPDOWN_LABEL_COLOR_BINDING = "#block_type_dropdown_label_color_binding", + BLOOM_STRENGTH = "#bloom_strength", + BLOOM_STRENGTH_ENABLED = "#bloom_strength_enabled", + BLOOM_STRENGTH_SLIDER_LABEL = "#bloom_strength_slider_label", + BLOOM_STRENGTH_TEXT_VALUE = "#bloom_strength_text_value", + BUNDLE_COIN_TEXTURE_FILE_SYSTEM = "#bundle_coin_texture_file_system", + BUNDLE_DESCRIPTION_COLLECTION_INDEX = "#bundle_description_collection_index", + BUNDLE_OR_HERO_PACK_ICON_SECTION_VISIBLE = "#bundle_or_hero_pack_icon_section_visible", + BUNDLE_PURCHASE_WARNING_TITLE = "#bundle_purchase_warning_title", + BUNDLE_THUMBNAIL_TEXTURE_FILE_SYSTEM = "#bundle_thumbnail_texture_file_system", + BUNDLE_THUMBNAIL_TEXTURE_NAME = "#bundle_thumbnail_texture_name", + BUTTON_DPAD_LEFT_DESCRIPTION = "#button_dpad_left_description", + BUTTON_NAME_TEXT = "#button_name_text", + BUTTON_THUMBSTICK_LEFT_DESCRIPTION = "#button_thumbstick_left_description", + BUTTON_THUMBSTICK_RIGHT_DESCRIPTION = "#button_thumbstick_right_description", + CALL_TO_ACTION_BUTTON_VISIBLE = "#call_to_action_button_visible", + CAN_MOVE = "#can_move", + CAN_SCROLL_LEFT = "#can_scroll_left", + CAN_SCROLL_RIGHT = "#can_scroll_right", + CAST_CHARACTER_OPTIONS_COLLECTION_INDEX = "#cast_character_options_collection_index", + CAST_CHARACTER_OPTIONS_DIMENSIONS = "#cast_character_options_dimensions", + CATEGORY = "#category", + CATEGORY_ADDONS_ICON_VISIBLE = "#category_addons_icon_visible", + CATEGORY_COLUMN_COLLECTION_INDEX = "#category_column_collection_index", + CATEGORY_MASHUPS_ICON_VISIBLE = "#category_mashups_icon_visible", + CATEGORY_ROW_COLLECTION_INDEX = "#category_row_collection_index", + CATEGORY_SKINS_ICON_VISIBLE = "#category_skins_icon_visible", + CATEGORY_TEXTURES_ICON_VISIBLE = "#category_textures_icon_visible", + CATEGORY_WORLDS_ICON_VISIBLE = "#category_worlds_icon_visible", + CHAT_ = "#chat_", + CHAT_BACKGROUND_OPACITY = "#chat_background_opacity", + CHAT_BACKGROUND_OPACITY_ENABLED = "#chat_background_opacity_enabled", + CHAT_BACKGROUND_OPACITY_SLIDER_LABEL = "#chat_background_opacity_slider_label", + CHAT_BACKGROUND_OPACITY_TEXT_VALUE = "#chat_background_opacity_text_value", + CHAT_COLOR_DROPDOWN_LABEL = "#chat_color_dropdown_label", + CHAT_COORDINATE_DROPDOWN_LABEL = "#chat_coordinate_dropdown_label", + CHAT_COORDINATE_DROPDOWN_VISIBLE = "#chat_coordinate_dropdown_visible", + CHAT_COORDINATE_TEXT_EDIT_VISIBLE = "#chat_coordinate_text_edit_visible", + CHAT_FONT_SIZE_SLIDER_LABEL = "#chat_font_size_slider_label", + CHAT_FONT_SIZE_STEPS = "#chat_font_size_steps", + CHAT_LINE_SPACING_SLIDER_LABEL = "#chat_line_spacing_slider_label", + CHAT_LINE_SPACING_TEXT_VALUE = "#chat_line_spacing_text_value", + CHAT_MESSAGE_DURATION_RADIO_TENSEC = "#chat_message_duration_radio_TenSec", + CHAT_MESSAGE_DURATION_RADIO_THIRTYSEC = "#chat_message_duration_radio_ThirtySec", + CHAT_MESSAGE_DURATION_RADIO_THREESEC = "#chat_message_duration_radio_ThreeSec", + CHAT_TYPEFACE_DROPDOWN_LABEL = "#chat_typeface_dropdown_label", + CLASSIC_STACK_SPLITTING_OVERLAY_VISIBLE = "#classic_stack_splitting_overlay_visible", + CLEAR_BUTTON_FOCUS_CHANGE_RIGHT = "#clear_button_focus_change_right", + CLOUD_FILE_LAST_CHANGED = "#cloud_file_last_changed", + CLOUD_FILE_LAST_CHANGED_ENABLED = "#cloud_file_last_changed_enabled", + CLOUD_FILE_NAME = "#cloud_file_name", + CLOUD_FILE_NAME_ENABLED = "#cloud_file_name_enabled", + COIN_BUNDLE_DESCRIPTION_FONT_COLOR = "#coin_bundle_description_font_color", + COIN_BUNDLE_DESCRIPTION_FONT_SIZE = "#coin_bundle_description_font_size", + COIN_BUNDLE_DESCRIPTION_FONT_TYPE = "#coin_bundle_description_font_type", + COIN_BUNDLE_DESCRIPTION_SECTION = "#coin_bundle_description_section", + COIN_BUNDLE_DESCRIPTION_TEXT = "#coin_bundle_description_text", + COIN_BUNDLE_DESCRIPTION_TEXT_TTS = "#coin_bundle_description_text_tts", + COIN_BUNDLE_SECTION_CONTENT = "#coin_bundle_section_content", + COIN_PROMPT_COLOR = "#coin_prompt_color", + COLLAPSED_COLLECTION_INDEX = "#collapsed_collection_index", + COLLAPSED_COLLECTION_NAME = "#collapsed_collection_name", + COLLAPSED_SHOW_MORE_VISIBLE = "#collapsed_show_more_visible", + COLLECTION_INDEX = "#collection_index", + COLLECTION_NAME = "#collection_name", + COLLECTION_NUMBER_SIZE = "#collection_number_size", + COLLECTION_PERMISSION_LEVEL_DROPDOWN_ICON_TEXTURE = "#collection_permission_level_dropdown_icon_texture", + COLLECTIONS = "#collections", + COLUMN_COLLECTION_INDEX = "#column_collection_index", + COMMAND_MACRO_COMMAND_ENABLED = "#command_macro_command_enabled", + COMMENT = "#comment", + COMMON = "#common", + CONSTRUCTOR = "#constructor", + CONTENT_LOG_GUI_LEVEL_ERROR = "#content_log_gui_level_error", + CONTENT_LOG_GUI_LEVEL_INFO = "#content_log_gui_level_info", + CONTENT_LOG_GUI_LEVEL_VERBOSE = "#content_log_gui_level_verbose", + CONTENT_LOG_GUI_LEVEL_WARN = "#content_log_gui_level_warn", + CONTENT_LOG_GUI_SHOW_ON_ERRORS = "#content_log_gui_show_on_errors", + CONTENT_LOG_GUI_SHOW_ON_ERRORS_ENABLED = "#content_log_gui_show_on_errors_enabled", + CONTENT_TIER_SLIDER_TEXT_VALUE = "#content_tier_slider_text_value", + CONTROL_CUSTOMIZATION_VISIBLE = "#control_customization_visible", + CONTROLLER_LEFT_BUMPER_DESCRIPTION = "#controller_left_bumper_description", + CONTROLLER_RIGHT_BUMPER_DESCRIPTION = "#controller_right_bumper_description", + COORDINATE_TYPE_FACING = "#coordinate_type_facing", + COORDINATE_TYPE_POSITION = "#coordinate_type_position", + CRAFTER_OUTPUT_ITEM_BANNER_COLORS = "#crafter_output_item_banner_colors", + CRAFTER_OUTPUT_ITEM_BANNER_PATTERNS = "#crafter_output_item_banner_patterns", + CRAFTER_OUTPUT_ITEM_BANNER_TYPE = "#crafter_output_item_banner_type", + CRAFTER_OUTPUT_ITEM_DECORATED_POT_SHERDS = "#crafter_output_item_decorated_pot_sherds", + CRAFTER_OUTPUT_ITEM_SHIELD_BASE_COLOR_HOVERED = "#crafter_output_item_shield_base_color_hovered", + CREATE_PERSONA_POPUP_CONFIRM_TEXT = "#create_persona_popup_confirm_text", + CSB_EXPIRATION_BANNER_VISIBLE = "#csb_expiration_banner_visible", + CSB_INCOMPATIBLE_BUTTON_VISIBLE = "#csb_incompatible_button_visible", + CSB_ONE_MONTH_FREE_TRIAL_VISIBLE = "#csb_one_month_free_trial_visible", + CSB_PURCHASED_WITH_BUY_PANEL = "#csb_purchased_with_buy_panel", + CSB_PURCHASED_WITH_CANCEL_PANEL = "#csb_purchased_with_cancel_panel", + CURRENT_USER_PROFILE_OPTIONS = "#current_user_profile_options", + CUSTOM_DROPDOWN_COLLECTION_INDEX = "#custom_dropdown_collection_index", + CUSTOM_ROT_Y = "#custom_rot_y", + CUSTOM_WORLD_TEMPLATE_FACTORY_COLLECTION = "#custom_world_template_factory_collection", + CUSTOMIZE_TOOLTIP_OPTION_TEXT = "#customize_tooltip_option_text", + CUSTOMIZE_TOOLTIP_OPTION_VISIBLE = "#customize_tooltip_option_visible", + CYCLE_LEFT_BUTTON_ACCESSIBILITY_TEXT = "#cycle_left_button_accessibility_text", + CYCLE_PACK_LEFT_BUTTON_ENABLED = "#cycle_pack_left_button_enabled", + CYCLE_PACK_RIGHT_BUTTON_ENABLED = "#cycle_pack_right_button_enabled", + CYCLE_RIGHT_BUTTON_ACCESSIBILITY_TEXT = "#cycle_right_button_accessibility_text", + CYCLE_SCREENSHOTS_LEFT_BUTTON_ENABLED = "#cycle_screenshots_left_button_enabled", + CYCLE_SCREENSHOTS_RIGHT_BUTTON_ENABLED = "#cycle_screenshots_right_button_enabled", + CYCLING_ICON_FILE_SYSTEM = "#cycling_icon_file_system", + CYCLING_ICON_PATH = "#cycling_icon_path", + CYCLING_ICON_ZIP = "#cycling_icon_zip", + DAMAGE_BOB = "#damage_bob", + DAMAGE_BOB_ENABLED = "#damage_bob_enabled", + DAMAGE_BOB_SLIDER_LABEL = "#damage_bob_slider_label", + DATA_FIELD = "#data_field", + DEACTIVATED_PURCHASE_HOVER_VISIBLE = "#deactivated_purchase_hover_visible", + DEACTIVATED_PURCHASE_PANEL_VISIBLE = "#deactivated_purchase_panel_visible", + DEBUG_DRAWER_BUTTON_VISIBLE = "#debug_drawer_button_visible", + DEBUG_HUD_RADIO_AUDIO = "#debug_hud_radio_audio", + DEBUG_HUD_RADIO_BUFFER_MEMORY = "#debug_hud_radio_buffer_memory", + DEBUG_HUD_RADIO_CACHESTORAGEUSAGE = "#debug_hud_radio_cachestorageusage", + DEBUG_HUD_RADIO_CAMERA = "#debug_hud_radio_camera", + DEBUG_HUD_RADIO_CLIENT_NETWORK = "#debug_hud_radio_client_network", + DEBUG_HUD_RADIO_IMAGEMEMORY = "#debug_hud_radio_imagememory", + DEBUG_HUD_RADIO_IMGUI = "#debug_hud_radio_imgui", + DEBUG_HUD_RADIO_LOCK_CONTENTION = "#debug_hud_radio_lock_contention", + DEBUG_HUD_RADIO_MATERIAL_MEMORY = "#debug_hud_radio_material_memory", + DEBUG_HUD_RADIO_OREUI = "#debug_hud_radio_oreui", + DEBUG_HUD_RADIO_PERIMAGEMEMORY = "#debug_hud_radio_perimagememory", + DEBUG_HUD_RADIO_PROFILER = "#debug_hud_radio_profiler", + DEBUG_HUD_RADIO_SERVER_NETWORK = "#debug_hud_radio_server_network", + DEBUG_HUD_RADIO_TEXTUREMEMORY = "#debug_hud_radio_texturememory", + DECORATED_POT_SHERDS = "#decorated_pot_sherds", + DEFAULT_ITEM_FILE_SYSTEM = "#default_item_file_system", + DEFAULT_ITEM_TEXTURE = "#default_item_texture", + DEFAULT_ITEM_ZIP = "#default_item_zip", + DEFAULT_MOVE_STICK_VISIBLE = "#default_move_stick_visible", + DEFAULT_MOVE_STICK_VISIBLE_ENABLED = "#default_move_stick_visible_enabled", + DEFAULT_PROMPT_COLOR = "#default_prompt_color", + DEFERRED_POINT_LIGHT_ENABLED = "#deferred_point_light_enabled", + DELETE_SELECTED_SAVES_BUTTON_ENABLED = "#delete_selected_saves_button_enabled", + DELETE_SELECTED_SAVES_BUTTON_TEXT = "#delete_selected_saves_button_text", + DEPENDENCY_TEXTURE_FILE_SYSTEM = "#dependency_texture_file_system", + DEPENDENT_PACKS_TEXTURE_FILE_SYSTEM = "#dependent_packs_texture_file_system", + DEPENDENT_PACKS_TEXTURE_ZIP = "#dependent_packs_texture_zip", + DESCRIPTION_COLLAPSED_VISIBLE = "#description_collapsed_visible", + DESCRIPTION_EXPANDED_VISIBLE = "#description_expanded_visible", + DEVICE_INFO_MEMORY_TIER_VISIBLE = "#device_info_memory_tier_visible", + DEVICE_INFO_OPTIONS_ENABLED = "#device_info_options_enabled", + DIAGNOSTICS_OPTIONS_ENABLED = "#diagnostics_options_enabled", + DISABLE_HEAD_FOLLOW_MOUSE = "#disable_head_follow_mouse", + DOCUMENT = "#document", + DRESSING_ROOM_BUTTON_FOCUS_CHANGE_OVERRIDE = "#dressing_room_button_focus_change_override", + DRESSING_ROOM_BUTTON_VISIBLE = "#dressing_room_button_visible", + DRESSING_ROOM_CONTROLLER_BUTTON_VISIBLE = "#dressing_room_controller_button_visible", + DROPDOWN_TOGGLE_TEXTURE_FILE_SYSTEM = "#dropdown_toggle_texture_file_system", + DY_D = "#dy_d", + ECOMODE_TOGGLE = "#ecomode_toggle", + ECOMODE_TOGGLE_ENABLED = "#ecomode_toggle_enabled", + EDIT_APPEARANCE_ERROR_TOOLTIP_VISIBLE = "#edit_appearance_error_tooltip_visible", + EDIT_WORLD_BUTTON_BUTTON_STRING = "#edit_world_button_button_string", + EDU_CLOUD_CONFLICT_RESOLUTION_CLOUD_DATE = "#edu_cloud_conflict_resolution_cloud_date", + EDU_CLOUD_CONFLICT_RESOLUTION_CLOUD_NAME = "#edu_cloud_conflict_resolution_cloud_name", + EDU_CLOUD_CONFLICT_RESOLUTION_DESCRIPTION = "#edu_cloud_conflict_resolution_description", + EDU_CLOUD_CONFLICT_RESOLUTION_LOCAL_DATE = "#edu_cloud_conflict_resolution_local_date", + EDU_CLOUD_CONFLICT_RESOLUTION_LOCAL_NAME = "#edu_cloud_conflict_resolution_local_name", + EDU_CLOUD_ERROR_HYPERLINK_LABEL = "#edu_cloud_error_hyperlink_label", + EDU_CLOUD_STORAGE_BODY_LABEL_TEXT = "#edu_cloud_storage_body_label_text", + EDU_CLOUD_UPLOAD = "#edu_cloud_upload", + EDU_CLOUD_UPLOAD_ENABLED = "#edu_cloud_upload_enabled", + EDU_CLOUD_UPLOAD_IMAGES_VISIBLE = "#edu_cloud_upload_images_visible", + EDU_EXTERNAL_LINK_DISPLAY_NAME = "#edu_external_link_display_name", + EDU_EXTERNAL_RESOURCE_URI_ENABLED = "#edu_external_resource_uri_enabled", + EDU_EXTERNAL_RESOURCE_URI_EXISTS = "#edu_external_resource_uri_exists", + EDU_SERVER_TIMEOUT_BUTTON_TEXT = "#edu_server_timeout_button_text", + EDU_SIGNED_IN_ONLY_UI_VISIBLE = "#edu_signed_in_only_ui_visible", + EDU_URI_RESOURCE_NAME = "#edu_uri_resource_name", + EDU_URI_RESOURCE_NAME_ENABLED = "#edu_uri_resource_name_enabled", + EDU_URI_RESOURCE_URI = "#edu_uri_resource_uri", + EDU_URI_RESOURCE_URI_ENABLED = "#edu_uri_resource_uri_enabled", + EMOTE_INDEX = "#emote_index", + EMOTE_WHEEL_SELECTION_VISIBLE = "#emote_wheel_selection_visible", + EMPTY_STAR_TEXTURE = "#empty_star_texture", + ENABLE_GRAPHICS_API_SWITCHING = "#enable_graphics_api_switching", + ENCHANT_ERROR = "#enchant_error", + ENTITLEMENTS_REFRESHING_VISIBLE = "#entitlements_refreshing_visible", + ENTRY_BUTTON_FOCUS_CHANGE_LEFT_OVERRIDE = "#entry_button_focus_change_left_override", + ENTRY_BUTTON_FOCUS_CHANGE_RIGHT_OVERRIDE = "#entry_button_focus_change_right_override", + ENTRY_BUTTON_FOCUS_ID_OVERRIDE = "#entry_button_focus_id_override", + ENTRY_BUTTON_TOOLTIP_VISIBLE = "#entry_button_tooltip_visible", + ENTRY_GRID_COLLECTION_INDEX = "#entry_grid_collection_index", + ENTRY_SELECTION_COLLECTION_INDEX = "#entry_selection_collection_index", + EPIC = "#epic", + ERROR_CODE = "#error_code", + EXISTING_WORLD_BUTTON_ENABLED = "#existing_world_button_enabled", + EXISTING_WORLD_ICON_FILE_SYSTEM = "#existing_world_icon_file_system", + EXPANDED_COLOR = "#expanded_color", + EXPANDED_SKIN_PACK_COLLECTION_INDEX = "#expanded_skin_pack_collection_index", + EXPERIMENTAL_TOGGLE_ENABLED = "#experimental_toggle_enabled", + EXPIRATION_CONTAINER_VISIBLE = "#expiration_container_visible", + EXPIRATION_DURATION_DROPDOWN_ENABLED = "#expiration_duration_dropdown_enabled", + EXPIRATION_DURATION_DROPDOWN_TOGGLE_LABEL = "#expiration_duration_dropdown_toggle_label", + EXPIRATION_DURATION_RADIO_DAY = "#expiration_duration_radio_day", + EXPIRATION_DURATION_RADIO_HALFDAY = "#expiration_duration_radio_halfDay", + EXPIRATION_DURATION_RADIO_HALFHOUR = "#expiration_duration_radio_halfHour", + EXPIRATION_DURATION_RADIO_HOUR = "#expiration_duration_radio_hour", + EXPIRATION_DURATION_RADIO_NEVER = "#expiration_duration_radio_never", + EXPIRATION_DURATION_RADIO_QUARTERDAY = "#expiration_duration_radio_quarterDay", + EXPIRATION_DURATION_RADIO_WEEK = "#expiration_duration_radio_week", + EXPORT_OFFSET_EDIT_BOX = "#export_offset_edit_box", + EXPORT_SIZE_EDIT_BOX = "#export_size_edit_box", + EXTERNAL_STORAGE_PERMISSION_DROPDOWN_VISIBLE = "#external_storage_permission_dropdown_visible", + FACTORY_COLLECTION_INDEX = "#factory_collection_index", + FADE_IN_ICON_TIME_SECONDS = "#fade_in_icon_time_seconds", + FAIL_REALMS_PURCHASE_FULFILLMENT_VISIBLE = "#fail_realms_purchase_fulfillment_visible", + FILE_STORAGE_LOCATION_TOGGLE_LABEL = "#file_storage_location_toggle_label", + FILLED_STAR_TEXTURE = "#filled_star_texture", + FILTER_OPTION_VISIBLE_ = "#filter_option_visible_", + FILTER_PACKTYPE_SELECTED_VISIBLE = "#filter_packtype_selected_visible", + FILTER_PROFANITY_OPTION_TOOLTIP_TEXT = "#filter_profanity_option_tooltip_text", + FILTER_SELECTED_ = "#filter_selected_", + FILTERED_LIGHT_MULTIPLIER = "#filtered_light_multiplier", + FIND_CROSS_PLATFORM_FRIENDS_ENABLED = "#find_cross_platform_friends_enabled", + FIRST_PARTY_MEMBER_PROFILE_OPTIONS = "#first_party_member_profile_options", + FLYING_ITEM_RENDERER = "#flying_item_renderer", + FOCUS_NAVIGATION_MODE_DOWN = "#focus_navigation_mode_down", + FOCUS_NAVIGATION_MODE_LEFT = "#focus_navigation_mode_left", + FOCUS_NAVIGATION_MODE_RIGHT = "#focus_navigation_mode_right", + FOCUS_NAVIGATION_MODE_UP = "#focus_navigation_mode_up", + FORCE_DIRTY_ANIMATION = "#force_dirty_animation", + FORCE_PACK_DOWNLOAD_ENABLED = "#force_pack_download_enabled", + FORCE_PACK_DOWNLOAD_LOCKED = "#force_pack_download_locked", + FORCE_SKIN_UPDATE = "#force_skin_update", + FORCE_USER_AGREEMENT_ADDON = "#force_user_agreement_addon", + FORCE_USER_AGREEMENT_ADDON_ENABLED = "#force_user_agreement_addon_enabled", + FORM_TEXT = "#form_text", + FRAME_PACING_OPTION_TOOLTIP_TEXT = "#frame_pacing_option_tooltip_text", + FREE_PREVIEW_REALM_AVAILABLE = "#free_preview_realm_available", + FREE_PREVIEW_REALM_BUTTON_VISIBLE = "#free_preview_realm_button_visible", + FREE_PREVIEW_REALM_NEW_BUTTON_VISIBLE = "#free_preview_realm_new_button_visible", + FREE_UP_SPACE_STORAGE_BAR_FILL_COLOR = "#free_up_space_storage_bar_fill_color", + FREE_UP_SPACE_STORAGE_BAR_PERCENT_FILLED = "#free_up_space_storage_bar_percent_filled", + FREE_UP_SPACE_STORAGE_BAR_TEXT_LEFT = "#free_up_space_storage_bar_text_left", + FREE_UP_SPACE_STORAGE_BAR_TEXT_RIGHT = "#free_up_space_storage_bar_text_right", + FRIEND_REALMS_GRID_DIMENSION = "#friend_realms_grid_dimension", + FRIENDS_DRAWER_BUTTON_ENABLED = "#friends_drawer_button_enabled", + FRIENDS_DRAWER_BUTTON_FOCUS_OVERRIDE = "#friends_drawer_button_focus_override", + FRIENDS_DRAWER_BUTTON_VISIBLE = "#friends_drawer_button_visible", + FRIENDS_NETWORK_WORLD_ITEM_GRID_DIMENSION = "#friends_network_world_item_grid_dimension", + FRIENDS_TAB_SHOW_NOT_BOUNCING = "#friends_tab_show_not_bouncing", + FVARIABLE = "#fvariable", + GATHERING_CAPTION_BACKGROUND_COLOR = "#gathering_caption_background_color", + GATHERING_CAPTION_FOREGROUND_COLOR = "#gathering_caption_foreground_color", + GENERATE_RANDOM_BUTTON_TEXT = "#generate_random_button_text", + GESTURE_DELTA_SOURCE = "#gesture_delta_source", + GESTURE_MOUSE_DELTA_X = "#gesture_mouse_delta_x", + GESTURE_MOUSE_DELTA_Y = "#gesture_mouse_delta_y", + GET_OFFLINE_AUTHCODE_MESSAGE_PANEL_VISIBLE = "#get_offline_authcode_message_panel_visible", + GIF_PATH = "#gif_path", + GRAPHICS_MODE_DROPDOWN_ENABLED = "#graphics_mode_dropdown_enabled", + GRAPHICS_MODE_DROPDOWN_TOGGLE_LABEL = "#graphics_mode_dropdown_toggle_label", + GRAPHICS_MODE_IS_RAY_TRACED = "#graphics_mode_is_ray_traced", + GRAPHICS_MODE_IS_SIMPLE_OR_FANCY = "#graphics_mode_is_simple_or_fancy", + GRAPHICS_MODE_OPTION_TOOLTIP_TEXT = "#graphics_mode_option_tooltip_text", + GRAPHICS_MODE_OPTION_WARNING_VISIBLE = "#graphics_mode_option_warning_visible", + GRAPHICS_MODE_PRESET_IS_VISIBLE = "#graphics_mode_preset_is_visible", + GRAPHICS_MODE_RADIO_DEFERRED = "#graphics_mode_radio_deferred", + GRAPHICS_MODE_RADIO_DEFERRED_ENABLED = "#graphics_mode_radio_deferred_enabled", + GRAPHICS_MODE_RADIO_FANCY = "#graphics_mode_radio_fancy", + GRAPHICS_MODE_RADIO_RAY_TRACED = "#graphics_mode_radio_ray_traced", + GRAPHICS_MODE_RADIO_RAY_TRACED_ENABLED = "#graphics_mode_radio_ray_traced_enabled", + GRAPHICS_MODE_RADIO_SIMPLE = "#graphics_mode_radio_simple", + GRAPHICS_MODE_SWITCH = "#graphics_mode_switch", + GRAPHICS_MODE_SWITCH_ENABLED = "#graphics_mode_switch_enabled", + GRAPHICS_QUALITY_PRESET_MODE_RADIO_CUSTOM = "#graphics_quality_preset_mode_radio_custom", + GRAPHICS_QUALITY_PRESET_MODE_RADIO_PERFORMANCE = "#graphics_quality_preset_mode_radio_performance", + GRAPHICS_QUALITY_PRESET_MODE_RADIO_VISUALS = "#graphics_quality_preset_mode_radio_visuals", + GRID_NUMBER_SIZE = "#grid_number_size", + GROUP_ITEM_GROUP_NAME = "#group_item_group_name", + GUI_ACCESSIBILITY_SCALING = "#gui_accessibility_scaling", + GUI_ACCESSIBILITY_SCALING_ENABLED = "#gui_accessibility_scaling_enabled", + GUI_SCALE_DISABLED_OPTION_TOOLTIP_TEXT = "#gui_scale_disabled_option_tooltip_text", + GUI_SCALE_DISABLED_OPTION_VISIBLE = "#gui_scale_disabled_option_visible", + HAS_HORSE_ARMOR_AND_SADDLE_SLOT = "#has_horse_armor_and_saddle_slot", + HAS_NAUTILUS_ARMOR_AND_SADDLE_SLOT = "#has_nautilus_armor_and_saddle_slot", + HAS_ONLY_NAUTILUS_ARMOR_SLOT = "#has_only_nautilus_armor_slot", + HEADER_LEFT_PADDING_VISIBLE = "#header_left_padding_visible", + HEADER_RIGHT_PADDING_VISIBLE = "#header_right_padding_visible", + HERO_FEATURED_PACK_ICON_SECTION_VISIBLE = "#hero_featured_pack_icon_section_visible", + HIDE_INVITES = "#hide_invites", + HOST_OPTIONS_MENU_NOT_OPEN_AND_TTS_ENABLED = "#host_options_menu_not_open_and_tts_enabled", + HOST_TELEPORT_GRID_DIMENSION = "#host_teleport_grid_dimension", + HOST_WEATHER_GRID_DIMENSION = "#host_weather_grid_dimension", + HOVER_SLICE = "#hover_slice", + HUD_TEXT_BACKGROUND_OPACITY = "#hud_text_background_opacity", + HUD_TEXT_BACKGROUND_OPACITY_ENABLED = "#hud_text_background_opacity_enabled", + HUD_TEXT_BACKGROUND_OPACITY_SLIDER_LABEL = "#hud_text_background_opacity_slider_label", + HUD_TEXT_BACKGROUND_OPACITY_TEXT_VALUE = "#hud_text_background_opacity_text_value", + ICON_OVERLAY_FONT_SCALE_FACTOR = "#icon_overlay_font_scale_factor", + ICON_OVERLAY_LEFT_PADDING_VISIBLE = "#icon_overlay_left_padding_visible", + ICON_OVERLAY_POSITION_COLLECTION = "#icon_overlay_position_collection", + ICON_OVERLAY_RIGHT_PADDING_VISIBLE = "#icon_overlay_right_padding_visible", + ICON_OVERLAY_TEXT_ALIGNMENT = "#icon_overlay_text_alignment", + ICON_OVERLAY_TEXTURE_FILEPATH = "#icon_overlay_texture_filepath", + IMAGE_NAME = "#image_name", + IMPROVED_INPUT_RESPONSE_OPTION_TOOLTIP_TEXT = "#improved_input_response_option_tooltip_text", + IN_CAST_MODAL = "#in_cast_modal", + INCLUDE_ENTITIES_TOGGLE = "#include_entities_toggle", + INCLUDE_ENTITIES_TOGGLE_OFF = "#include_entities_toggle_off", + INCLUDE_PLAYERS_TOGGLE = "#include_players_toggle", + INDEX = "#index", + INFINITE_LINK = "#infinite_link", + INFINITE_LINK_ENABLED = "#infinite_link_enabled", + INFO_ADDITIONAL_SERVER_PING = "#info_additional_server_ping", + INFO_ADDITIONAL_SERVER_PING_TEXTURE_NAME = "#info_additional_server_ping_texture_name", + INFO_ADDITIONAL_SERVER_PLAYER_COUNT = "#info_additional_server_player_count", + INFO_IS_NETWORK_AVAILABLE_AND_PING_LOADING = "#info_is_network_available_and_ping_loading", + INFO_THIRD_PARTY_SERVER_PLAYER_COUNT = "#info_third_party_server_player_count", + INFO_TYPE = "#info_type", + INTERFACE_OPACITY_TEXT_VALUE = "#interface_opacity_text_value", + INVALID_GRID_DIMENSIONS = "#invalid_grid_dimensions", + INVALID_PACK_ITEMS = "#invalid_pack_items", + INVENTORY_BUTTON_TEXT_COLOR = "#inventory_button_text_color", + INVENTORY_SELECTED_ARMOR_TRIM_MATERIAL = "#inventory_selected_armor_trim_material", + INVENTORY_SELECTED_DECORATED_POT_SHERDS = "#inventory_selected_decorated_pot_sherds", + INVENTORY_SELECTED_SERIALIZED_ACTOR_POSE = "#inventory_selected_serialized_actor_pose", + INVITE_LINK_EXPIRATION_TIME = "#invite_link_expiration_time", + INVITE_LINK_EXPIRATION_TIME_TTS = "#invite_link_expiration_time_TTS", + IP_BUTTON_FOCUS_CHANGE_LEFT = "#ip_button_focus_change_left", + IS_APPEARANCE_STATUS_HOVER_PANEL_VISIBLE = "#is_appearance_status_hover_panel_visible", + IS_APPEARANCE_STATUS_VISIBLE = "#is_appearance_status_visible", + IS_COLOR_PICKER_EQUIP_VISIBLE = "#is_color_picker_equip_visible", + IS_CONN_ID_TOOLTIP_HOVER_PANEL_VISIBLE = "#is_conn_id_tooltip_hover_panel_visible", + IS_CONTROLLER_CLOSE_HOVER_VISIBLE = "#is_controller_close_hover_visible", + IS_CREATIVE_LAYOUT_BUTTON_VISIBLE = "#is_creative_layout_button_visible", + IS_CURRENCY_PURCHASE_VISIBLE = "#is_currency_purchase_visible", + IS_CYCLE_BUTTON_FOCUSED = "#is_cycle_button_focused", + IS_HARDCORE = "#is_hardcore", + IS_HARDCORE_ENABLED = "#is_hardcore_enabled", + IS_JOINCODE_TOOLTIP_HOVER_PANEL_VISIBLE = "#is_joincode_tooltip_hover_panel_visible", + IS_LEAVING_MPP_BANNER_VISIBLE = "#is_leaving_mpp_banner_visible", + IS_LOADING_RETAILTOPREVIEW_WORLD = "#is_loading_retailtopreview_world", + IS_MORE_INFO_BUTTON_VISIBLE = "#is_more_info_button_visible", + IS_MPP_SUBSCRIBER_ONLY_SALE = "#is_mpp_subscriber_only_sale", + IS_MULTIPLAYER_BLOCKED_OR_NETWORK_DOWN = "#is_multiplayer_blocked_or_network_down", + IS_NETWORK_AVAILABLE_AND_PING_NOT_LOADING = "#is_network_available_and_ping_not_loading", + IS_OWNERSHIP_VERIFICATION_IN_PROGRESS = "#is_ownership_verification_in_progress", + IS_PASSCODE_TOOLTIP_HOVER_PANEL_VISIBLE = "#is_passcode_tooltip_hover_panel_visible", + IS_PDP_PAGE_SALES_CSB_ICON_VISIBLE = "#is_pdp_page_sales_csb_icon_visible", + IS_PLAY_AGAIN_BUTTON_VISIBLE = "#is_play_again_button_visible", + IS_PROGRESS_TEXTURE_VISIBLE = "#is_progress_texture_visible", + IS_PURCHASE_BUTTON_PADDING_VISIBLE = "#is_purchase_button_padding_visible", + IS_RIGHT_INFO_CLASSIC_SKIN_PANEL_VISIBLE = "#is_right_info_classic_skin_panel_visible", + IS_RIGHT_INFO_EMOTE_PANEL_VISIBLE = "#is_right_info_emote_panel_visible", + IS_RIGHT_INFO_GETTING_STARTED_PANEL_VISIBLE = "#is_right_info_getting_started_panel_visible", + IS_RIGHT_INFO_PIECE_OFFER_PANEL_VISIBLE = "#is_right_info_piece_offer_panel_visible", + IS_RIGHT_INFO_SIZE_PANEL_VISIBLE = "#is_right_info_size_panel_visible", + IS_RIGHT_TAB_SMITHING_TABLE = "#is_right_tab_smithing_table", + IS_SCROLL_BAR_BOX = "#is_scroll_bar_box", + IS_SDL_DROPDOWN_HEADER_TOGGLE_SELECTED = "#is_sdl_dropdown_header_toggle_selected", + IS_SUBCATEGORY_EQUIP_BUTTON_VISIBLE = "#is_subcategory_equip_button_visible", + IS_TOOLTIP_HOVER_PANEL_VISIBLE = "#is_tooltip_hover_panel_visible", + ITEM_ADDON_PACK_COUNT_AND_LABEL = "#item_addon_pack_count_and_label", + ITEM_ADDON_PACK_COUNT_VISIBLE = "#item_addon_pack_count_visible", + ITEM_COLUMN_COLLECTION_INDEX = "#item_column_collection_index", + ITEM_MASHUP_COUNT_AND_LABEL = "#item_mashup_count_and_label", + ITEM_RESOURCE_PACK_COUNT_AND_LABEL = "#item_resource_pack_count_and_label", + ITEM_ROW_COLLECTION_INDEX = "#item_row_collection_index", + ITEM_STORAGE_CURRENT_AMOUNT = "#item_storage_current_amount", + ITEM_WORLD_TEMPLATE_COUNT_AND_LABEL = "#item_world_template_count_and_label", + ITZLIPOFUTZLI = "#itzlipofutzli", + JOIN_BY_CODE_TEXT_EDIT = "#join_by_code_text_edit", + JOINCODE_ERROR_ICON_VISIBLE = "#joincode_error_icon_visible", + JOYSTICK_VISIBILITY_HIDDEN = "#joystick_visibility_hidden", + JOYSTICK_VISIBILITY_HIDDEN_WHEN_UNUSED = "#joystick_visibility_hidden_when_unused", + JOYSTICK_VISIBILITY_VISIBLE = "#joystick_visibility_visible", + KH8C = "#kh8C", + LANGUAGE_COLLAPSED_COLLECTION_LENGTH = "#language_collapsed_collection_length", + LANGUAGE_COLUMNS_COLLECTION_LENGTH = "#language_columns_collection_length", + LANGUAGE_ROWS_COLLECTION_LENGTH = "#language_rows_collection_length", + LEAK_MEMORY = "#leak_memory", + LEFT_CORNER_IMAGE_TEXTURE_FILE_SYSTEM = "#left_corner_image_texture_file_system", + LEFT_CORNER_IMAGE_TEXTURE_PATH = "#left_corner_image_texture_path", + LEFT_CYCLE_BUTTON_RIGHT_FOCUS_OVERRIDE = "#left_cycle_button_right_focus_override", + LEGACY_INVITE_BUTTON_ENABLED = "#legacy_invite_button_enabled", + LEGACY_INVITE_BUTTON_VISIBLE = "#legacy_invite_button_visible", + LEGACY_WORLD_ICON_TEXTURE_FILE = "#legacy_world_icon_texture_file", + LEGACY_WORLD_OPTIONSVISIBLE = "#legacy_world_optionsVisible", + LEGACY_WORLD_STORAGE_DROPDOWN = "#legacy_world_storage_dropdown", + LEGACY_WORLD_TAB = "#legacy_world_tab", + LEGACY_WORLD_TEXTURE_FILE_SYSTEM = "#legacy_world_texture_file_system", + LEGACY_WORLD_TEXTURE_SOURCE = "#legacy_world_texture_source", + LEGACY_WORLDS_LOADING_DISPLAY_MESSAGE = "#legacy_worlds_loading_display_message", + LEGENDARY = "#legendary", + LESSON_COMPLETE_DESCRIPTION = "#lesson_complete_description", + LIBRARY_SEARCH_RESULT_STRING = "#library_search_result_string", + LIBRARY_SEARCH_SORT_METHOD_STRING = "#library_search_sort_method_string", + LOAD_OFFSET_EDIT_BOX = "#load_offset_edit_box", + LOCAL_WORLDS_TITLE_WITH_COUNT = "#local_worlds_title_with_count", + LOCATOR_BAR = "#locator_bar", + LOCATOR_BAR_ENABLED = "#locator_bar_enabled", + LOOK_AT_CURSOR = "#look_at_cursor", + MAIN_FILTER_SECTION_VISIBLE = "#main_filter_section_visible", + MANAGE_FEED_BUTTONS_VISIBLE = "#manage_feed_buttons_visible", + MANAGE_FEED_NEXTBUTTON_VISIBLE = "#manage_feed_nextButton_visible", + MANAGE_FEED_PAGE_INDEX_TEXT = "#manage_feed_page_index_text", + MANAGE_FEED_PREVBUTTON_VISIBLE = "#manage_feed_prevButton_visible", + MANAGE_PROFILE_IMAGE_OPTIONS = "#manage_profile_image_options", + MAX_FRAMERATE_OPTION_TOOLTIP_TEXT = "#max_framerate_option_tooltip_text", + MAX_FRAMERATE_SLIDER_VISIBLE = "#max_framerate_slider_visible", + MEMORY_TIER_HIGH = "#memory_tier_high", + MEMORY_TIER_LOW = "#memory_tier_low", + MEMORY_TIER_MID = "#memory_tier_mid", + MEMORY_TIER_SUPERHIGH = "#memory_tier_superHigh", + MEMORY_TIER_SUPERLOW = "#memory_tier_superLow", + MENTIONS_ = "#mentions_", + MENTIONS_COLOR_DROPDOWN_LABEL = "#mentions_color_dropdown_label", + MESSAGE_TEXT_BOX = "#message_text_box", + MODAL_LABEL_TTS = "#modal_label_tts", + MODAL_TITLE_TTS = "#modal_title_tts", + MOVE_STICK_VISIBLE = "#move_stick_visible", + MOVE_STICK_VISIBLE_ENABLED = "#move_stick_visible_enabled", + NAME_TEXT_BOX = "#name_text_box", + NAV_BUTTON_THUMBNAIL_TEXTURE_FILE_SYSTEM = "#nav_button_thumbnail_texture_file_system", + NAV_COLLECTION_INDEX = "#nav_collection_index", + NEEDS_OFFLINE_TOKEN_AUTHORIZATION = "#needs_offline_token_authorization", + NEW_TOUCH_CONTROL_SCHEMES_PREVIEW_ENABLED = "#new_touch_control_schemes_preview_enabled", + NEW_TOUCH_CONTROL_SCHEMES_SETTINGS = "#new_touch_control_schemes_settings", + NEX_VISIBILITY_ENABLED = "#nex_visibility_enabled", + NEX_VISIBLE = "#nex_visible", + NO_AVAILABLE_PACKS_VISIBILITY = "#no_available_packs_visibility", + NO_LOCAL_WORLD_HELP_VISIBLE = "#no_local_world_help_visible", + NO_LOCAL_WORLD_SWITCH_VISIBLE = "#no_local_world_switch_visible", + NO_LOCAL_WORLDS_LAUNCH_HELP_BUTTON_LABEL = "#no_local_worlds_launch_help_button_label", + NO_REALMS_PACKS_VISIBILITY = "#no_realms_packs_visibility", + NO_UNOWNED_PACKS_VISIBILITY = "#no_unowned_packs_visibility", + NOTIFICATION_DURATION_RADIO_TENSEC = "#notification_duration_radio_TenSec", + NOTIFICATION_DURATION_RADIO_THIRTYSEC = "#notification_duration_radio_ThirtySec", + NOTIFICATION_DURATION_RADIO_THREESEC = "#notification_duration_radio_ThreeSec", + NOTIFICATION_TEXT = "#notification_text", + OBJECTIVE_BACKGROUND_OPACITY = "#objective_background_opacity", + OFFER_COLLECTION_INDEX = "#offer_collection_index", + OFFLINE_LINKED_ACCOUNT_FRIENDS_VISIBLE = "#offline_linked_account_friends_visible", + OMNW = "#omnw", + ON_SCREEN_POSITION_X = "#on_screen_position_x", + ON_SCREEN_POSITION_Y = "#on_screen_position_y", + ONLINE_LINKED_ACCOUNT_FRIENDS_VISIBLE = "#online_linked_account_friends_visible", + OPEN_ACCOUNT_SETTING_BUTTON_GAMECORE_VISIBLE = "#open_account_setting_button_gamecore_visible", + OPEN_COLOR_PICKER_BUTTON_ENABLED = "#open_color_picker_button_enabled", + OPEN_COLOR_PICKER_BUTTON_VISIBLE = "#open_color_picker_button_visible", + OWNERSHIP_VERIFICATION_STATE_TEXT = "#ownership_verification_state_text", + PACK_ICON_SALE_SECTION_VISIBLE = "#pack_icon_sale_section_visible", + PACK_ID = "#pack_id", + PACKS_COLLECTION_INDEX = "#packs_collection_index", + PAGE_TEXT_BOX = "#page_text_box", + PANEL_TITLE = "#panel_title", + PARTY_INVITE_EVERYONE = "#party_invite_everyone", + PARTY_INVITE_FRIENDS_ONLY = "#party_invite_friends_only", + PARTY_INVITE_SEND_PRIVILEGES_PARTY_LEADER_ONLY = "#party_invite_send_privileges_party_leader_only", + PARTY_INVITE_SEND_PRIVILEGES_PARTY_MEMBERS = "#party_invite_send_privileges_party_members", + PARTY_PRIVACY_INVITE_ONLY = "#party_privacy_invite_only", + PARTY_PRIVACY_OPEN = "#party_privacy_open", + PASSCODE_TEXT_BOX = "#passcode_text_box", + PAUSE_GIF = "#pause_gif", + PERMISSION_LEVEL_MEMBER = "#permission_level_member", + PERMISSION_LEVEL_OPERATOR = "#permission_level_operator", + PERMISSION_LEVEL_RADIO_CUSTOM = "#permission_level_radio_custom", + PERMISSION_LEVEL_VISITOR = "#permission_level_visitor", + PERMISSIONS_DROPDOWN_VISIBLE = "#permissions_dropdown_visible", + PERSONA_PIECE_OFFER_VISIBLE = "#persona_piece_offer_visible", + PERSONAL_REALMS_GRID_DIMENSION = "#personal_realms_grid_dimension", + PLACEMENT_PRIORITY_TEXT_BOX_VALUE = "#placement_priority_text_box_value", + PLATFORM_BROADCAST_DROPDOWN_ENABLED = "#platform_broadcast_dropdown_enabled", + PLATFORM_BROADCAST_DROPDOWN_TOGGLE_LABEL = "#platform_broadcast_dropdown_toggle_label", + PLATFORM_BROADCAST_FRIENDS_OF_FRIENDS = "#platform_broadcast_friends_of_friends", + PLATFORM_BROADCAST_FRIENDS_ONLY = "#platform_broadcast_friends_only", + PLATFORM_BROADCAST_INVITE_ONLY = "#platform_broadcast_invite_only", + PLATFORM_LOCKED = "#platform_locked", + PLATFORM_SETTINGS_DROPDOWN_VISIBLE = "#platform_settings_dropdown_visible", + PLATFORM_TOGGLE_VISIBLE_FRIENDS_OF_FRIENDS = "#platform_toggle_visible_friends_of_friends", + PLATFORM_TOGGLE_VISIBLE_INVITE_ONLY = "#platform_toggle_visible_invite_only", + PLAY_BUTTON_ART_DEFAULT_ALPHA = "#play_button_art_default_alpha", + PLAY_BUTTON_ART_DEFAULT_BG_PATH = "#play_button_art_default_bg_path", + PLAY_BUTTON_ART_DEFAULT_FG_PATH = "#play_button_art_default_fg_path", + PLAY_BUTTON_ART_HOVER_ALPHA = "#play_button_art_hover_alpha", + PLAY_BUTTON_ART_HOVER_BG_PATH = "#play_button_art_hover_bg_path", + PLAY_BUTTON_ART_HOVER_FG_PATH = "#play_button_art_hover_fg_path", + PLAY_BUTTON_ART_LABEL_COLOR = "#play_button_art_label_color", + PLAY_BUTTON_BANNER_TEXT_COLOR = "#play_button_banner_text_color", + PLAY_BUTTON_BANNER_TEXTURE_SOURCE = "#play_button_banner_texture_source", + PLAYER_COUNT_COLLECTION_LENGTH = "#player_count_collection_length", + PLAYER_FILTER_TEXT_BOX = "#player_filter_text_box", + PLAYER_GAME_MODE_DROPDOWN_TOGGLE_LABEL = "#player_game_mode_dropdown_toggle_label", + PLAYER_GAME_MODE_RADIO_DEFAULT = "#player_game_mode_radio_default", + PLAYER_GAME_MODE_RADIO_SPECTATOR = "#player_game_mode_radio_spectator", + PLAYER_SLEEP = "#player_sleep", + PLAYER_SLEEP_ENABLED = "#player_sleep_enabled", + PLAYER_SLEEP_PERCENTAGE = "#player_sleep_percentage", + PLAYER_SLEEP_PERCENTAGE_ENABLED = "#player_sleep_percentage_enabled", + PLAYER_SLEEP_PERCENTAGE_SLIDER_LABEL = "#player_sleep_percentage_slider_label", + PLAYER_SLEEP_PERCENTAGE_STEPS = "#player_sleep_percentage_steps", + PLAYER_SLEEP_PERCENTAGE_TEXT_VALUE = "#player_sleep_percentage_text_value", + PLAYERS_IN_MY_WORLD_VISIBLE = "#players_in_my_world_visible", + POCKET_STACK_SPLITTING_OVERLAY_VISIBLE = "#pocket_stack_splitting_overlay_visible", + POINT_LIGHT_SHADOW_OPTION_TOOLTIP_TEXT = "#point_light_shadow_option_tooltip_text", + POPULAR_PACKS_GRID_DIMENSION = "#popular_packs_grid_dimension", + POPUP_FIRST_LOWER_BUTTON_TEXT = "#popup_first_lower_button_text", + POPUP_SECOND_LOWER_BUTTON_TEXT = "#popup_second_lower_button_text", + PRE_PROCESS_ = "#pre_process_", + PREVIEW_IDX = "#preview_idx", + PREVIOUS_BLOCK_TYPE_TEXT_COLOR = "#previous_block_type_text_color", + PREVIOUS_CONDITION_MODE_TEXT = "#previous_condition_mode_text", + PREVIOUS_REDSTONE_MODE_TEXT = "#previous_redstone_mode_text", + PROFILE_BUTTON_X_ICON_VISIBLE = "#profile_button_x_icon_visible", + PROFILE_IMAGE_OPTIONS = "#profile_image_options", + PROGRESSIVE_SELECT_BAR_RATIO = "#progressive_select_bar_ratio", + PROGRESSIVE_SELECT_DOWN_VISIBLE = "#progressive_select_down_visible", + PROGRESSIVE_SELECT_LEFT_SIDE_VISIBLE = "#progressive_select_left_side_visible", + PROGRESSIVE_SELECT_RIGHT_SIDE_VISIBLE = "#progressive_select_right_side_visible", + PROGRESSIVE_SELECT_UP_VISIBLE = "#progressive_select_up_visible", + PROMO_ACTION_BUTTON_VISIBLE = "#promo_action_button_visible", + PROMO_BOTTOM_BUTTON_FOCUS_OVERRIDE_DOWN = "#promo_bottom_button_focus_override_down", + PROMO_DAY_FOCUS_OVERRIDE_RIGHT = "#promo_day_focus_override_right", + PROMO_ITEM_ACTION_BUTTON_TEXT = "#promo_item_action_button_text", + PROMO_ITEM_RESOURCE_PACK_COUNT = "#promo_item_resource_pack_count", + PROMO_ITEM_RESOURCE_PACK_COUNT_AND_LABEL = "#promo_item_resource_pack_count_and_label", + PROMO_ITEM_RESOURCE_PACK_COUNT_VISIBLE = "#promo_item_resource_pack_count_visible", + PROMO_ITEM_SKIN_COUNT_AND_LABEL = "#promo_item_skin_count_and_label", + PROMO_ITEM_SKIN_COUNT_VISIBLE = "#promo_item_skin_count_visible", + PROMO_ITEM_WORLD_TEMPLATE_COUNT = "#promo_item_world_template_count", + PROMO_ITEM_WORLD_TEMPLATE_COUNT_AND_LABEL = "#promo_item_world_template_count_and_label", + PROMO_ITEM_WORLD_TEMPLATE_COUNT_VISIBLE = "#promo_item_world_template_count_visible", + PROMO_PERSONA_THUMBNAIL_FILE_SYSTEM = "#promo_persona_thumbnail_file_system", + PROMO_PERSONA_THUMBNAIL_TEXTURE = "#promo_persona_thumbnail_texture", + PROMO_SCREENSHOT_COLLECTION_LENGTH = "#promo_screenshot_collection_length", + PROMO_TIMER_TOOL_TIP_LEFT_VISIBLE = "#promo_timer_tool_tip_left_visible", + PROMO_TIMER_TOOL_TIP_NOT_VISIBLE = "#promo_timer_tool_tip_not_visible", + PROMO_TIMER_TOOL_TIP_RIGHT_VISIBLE = "#promo_timer_tool_tip_right_visible", + PROMO_TIMER_TOOL_TIP_VISIBLE = "#promo_timer_tool_tip_visible", + PROPERTY_FIELD = "#property_field", + PS4_WARNING_MESSAGE_VISIBLE = "#ps4_warning_message_visible", + PSN_VISIBILITY_ENABLED = "#psn_visibility_enabled", + PSN_VISIBLE = "#psn_visible", + QR_CODE_CONTENT = "#qr_code_content", + RARE = "#rare", + RATINGS_FOCUS_CONTAINER_VISIBLE = "#ratings_focus_container_visible", + RAY_TRACING_WARNING_MESSAGE = "#ray_tracing_warning_message", + REALM_CONSUMABLE_TO_SUBSCRIPTION_INFO = "#realm_consumable_to_subscription_info", + REALM_INVITE_LINKS_DESCRIPTION = "#realm_invite_links_description", + REALM_SELECTED_PREFERENCE_ICON = "#realm_selected_preference_icon", + REALM_SELECTED_PREFERENCE_TTS = "#realm_selected_preference_tts", + REALM_SUBSCRIPTION_ORIGIN_ADDENDUM = "#realm_subscription_origin_addendum", + REALMS_ADVANCED_INFO_VISIBLE = "#realms_advanced_info_visible", + REALMS_ADVANCED_LOADING_FAILED_MESSAGE_VISIBLE = "#realms_advanced_loading_failed_message_visible", + REALMS_ADVANCED_LOADING_MESSAGE_VISIBLE = "#realms_advanced_loading_message_visible", + REALMS_ALLOWLIST_BUTTON_A_DESCRIPTION = "#realms_allowlist_button_a_description", + REALMS_ALLOWLIST_BUTTON_B_DESCRIPTION = "#realms_allowlist_button_b_description", + REALMS_FEED_BUTTON_TTS_HEADER = "#realms_feed_button_tts_header", + REALMS_GRID_DIMENSIONS = "#realms_grid_dimensions", + REALMS_INVITE_LINKS_COLLECTION_LENGTH = "#realms_invite_links_collection_length", + REALMS_INVITE_LINKS_INFO_VISIBLE = "#realms_invite_links_info_visible", + REALMS_INVITE_LINKS_LOADING_FAILED_MESSAGE_VISIBLE = "#realms_invite_links_loading_failed_message_visible", + REALMS_INVITE_LINKS_LOADING_MESSAGE_VISIBLE = "#realms_invite_links_loading_message_visible", + REALMS_PACK_ITEMS = "#realms_pack_items", + REALMS_PLUS_SKIN_PACK_TEXTURE = "#realms_plus_skin_pack_texture", + REALMS_PLUS_SKIN_PACK_TEXTURE_FILE_SYSTEM = "#realms_plus_skin_pack_texture_file_system", + REALMS_PLUS_TEMPLATE_FACTORY_COLLECTION = "#realms_plus_template_factory_collection", + REALMS_REDEEM_BUTTON_VISIBLE = "#realms_redeem_button_visible", + REALMS_SETTINGS_LOADING_MODAL_PROGRESS_TEXT = "#realms_settings_loading_modal_progress_text", + REALMS_SETTINGS_LOADING_MODAL_TITLE = "#realms_settings_loading_modal_title", + REALMS_SUBSCRIPTION_BUTTON_VISIBLE = "#realms_subscription_button_visible", + REALMS_UNREAD_STORY_COUNT_VISIBLE = "#realms_unread_story_count_visible", + REALMS_WORLD_ITEM_GRID_DIMENSION = "#realms_world_item_grid_dimension", + REALMS_WORLDS_TITLE_WITH_COUNT = "#realms_worlds_title_with_count", + RECIPES_UNLOCK = "#recipes_unlock", + RECIPES_UNLOCK_ENABLED = "#recipes_unlock_enabled", + REFRESH_JOINCODE_BUTTON_DISABLED = "#refresh_joincode_button_disabled", + REFRESH_JOINCODE_BUTTON_HIDE = "#refresh_joincode_button_hide", + REGISTER_AS_DRESSING_ROOM_SCENE = "#register_as_dressing_room_scene", + REMOVE_BLOCKS_TOGGLE = "#remove_blocks_toggle", + RENDER_DISTANCE_PERFORMANCE_TOOLTIP_TEXT = "#render_distance_performance_tooltip_text", + RENDER_DISTANCE_WARNING_VISIBLE = "#render_distance_warning_visible", + RESPAWN_BLOCKS_EXPLODE = "#respawn_blocks_explode", + RESPAWN_BLOCKS_EXPLODE_ENABLED = "#respawn_blocks_explode_enabled", + RESTART_HOSTING_BUTTON_VISIBLE = "#restart_hosting_button_visible", + RETAILTOPREVIEW_WORLD_CHECKVISIBLE = "#retailtopreview_world_checkVisible", + RETAILTOPREVIEW_WORLD_ERROR = "#retailtopreview_world_error", + RETAILTOPREVIEW_WORLD_ICON_TEXTURE = "#retailtopreview_world_icon_texture", + RETAILTOPREVIEW_WORLD_ICON_TEXTURE_FILE = "#retailtopreview_world_icon_texture_file", + RETAILTOPREVIEW_WORLD_ISSELECTED = "#retailtopreview_world_isSelected", + RETAILTOPREVIEW_WORLD_LENGTH = "#retailtopreview_world_length", + RETAILTOPREVIEW_WORLD_OPTIONSVISIBLE = "#retailtopreview_world_optionsVisible", + RETAILTOPREVIEW_WORLD_STORAGE_DROPDOWN = "#retailtopreview_world_storage_dropdown", + RETAILTOPREVIEW_WORLD_TAB = "#retailtopreview_world_tab", + RETAILTOPREVIEW_WORLD_TEXTURE_FILE_SYSTEM = "#retailtopreview_world_texture_file_system", + RETAILTOPREVIEW_WORLD_TEXTURE_ZIP = "#retailtopreview_world_texture_zip", + RETAILTOPREVIEW_WORLD_UPDATE = "#retailtopreview_world_update", + RETAILTOPREVIEW_WORLD_VISIBLE = "#retailtopreview_world_visible", + RETAILTOPREVIEW_WORLD_WARNING = "#retailtopreview_world_warning", + RIGHT_CORNER_IMAGE_TEXTURE_FILE_SYSTEM = "#right_corner_image_texture_file_system", + RIGHT_CORNER_IMAGE_TEXTURE_PATH = "#right_corner_image_texture_path", + RIGHT_CYCLE_BUTTON_LEFT_FOCUS_OVERRIDE = "#right_cycle_button_left_focus_override", + ROTATION = "#rotation", + ROW_COLLECTION_INDEX = "#row_collection_index", + ROW_COLLECTION_NAME = "#row_collection_name", + RTX_DISABLED_OPTION_UPSELL_TOOLTIP_TEXT = "#rtx_disabled_option_upsell_tooltip_text", + RTX_DISABLED_OPTION_UPSELL_VISIBLE = "#rtx_disabled_option_upsell_visible", + RTX_RENDERDIST_PERFORMANCE_TOOLTIP_TEXT = "#rtx_renderdist_performance_tooltip_text", + RTX_UPSCALE_DISABLED_OPTION_UPSELL_VISIBLE = "#rtx_upscale_disabled_option_upsell_visible", + SAVE_ACCORDION_CHECKBOX_FOCUS_ID = "#save_accordion_checkbox_focus_id", + SAVE_ACCORDION_CHECKBOX_TOGGLE_STATE = "#save_accordion_checkbox_toggle_state", + SAVE_ACTIVE_WORLD_BUTTON_TTS = "#save_active_world_button_tts", + SAVE_CHECKBOX_BUTTON_TTS_HEADER = "#save_checkbox_button_tts_header", + SAVE_CHECKBOX_BUTTON_TTS_OVERRIDE = "#save_checkbox_button_tts_override", + SAVE_OFFSET_EDIT_BOX = "#save_offset_edit_box", + SAVE_OPTIONS_BUTTON_FOCUS_ID = "#save_options_button_focus_id", + SAVE_SIZE_EDIT_BOX = "#save_size_edit_box", + SAVES_LOADING_FAILED_MESSAGE = "#saves_loading_failed_message", + SAVES_LOADING_FAILED_VISIBLE = "#saves_loading_failed_visible", + SAVES_LOADING_INDICATOR_VISIBLE = "#saves_loading_indicator_visible", + SCOREBOARD_OBJECTIVE_BACKGROUND_OPACITY = "#scoreboard_objective_background_opacity", + SCREEN_POSITION_X_TEXT_VALUE = "#screen_position_x_text_value", + SCREEN_POSITION_Y_TEXT_VALUE = "#screen_position_y_text_value", + SCREENSHOT_COLUMN_COLLECTION_INDEX = "#screenshot_column_collection_index", + SCREENSHOT_FOCUS_OVERRIDE_RIGHT = "#screenshot_focus_override_right", + SCREENSHOT_ROW_COLLECTION_INDEX = "#screenshot_row_collection_index", + SCREENSHOT_TEXTURE_FILE_SYSTEM_IMAGE_ROW = "#screenshot_texture_file_system_image_row", + SCREENSHOT_TEXTURE_FILE_SYSTEM_IMAGE_ROW_GLOBAL = "#screenshot_texture_file_system_image_row_global", + SCREENSHOT_TEXTURE_IMAGE_ROW = "#screenshot_texture_image_row", + SCREENSHOT_TEXTURE_IMAGE_ROW_GLOBAL = "#screenshot_texture_image_row_global", + SCRIPT_DEBUGGER_ATTACH_MODE_CONNECT = "#script_debugger_attach_mode_connect", + SCRIPT_DEBUGGER_ATTACH_MODE_LISTEN = "#script_debugger_attach_mode_listen", + SCRIPT_DEBUGGER_AUTO_ATTACH_OPTIONS_VISIBLE = "#script_debugger_auto_attach_options_visible", + SCRIPT_DEBUGGER_OPTIONS_ENABLED = "#script_debugger_options_enabled", + SCRIPT_DEBUGGER_PASSCODE_VISIBLE = "#script_debugger_passcode_visible", + SCRIPT_WATCHDOG_OPTIONS_ENABLED = "#script_watchdog_options_enabled", + SCRIPT_WATCHDOG_SLOW_THRESHOLD_VISIBLE = "#script_watchdog_slow_threshold_visible", + SCRIPT_WATCHDOG_SPIKE_THRESHOLD_VISIBLE = "#script_watchdog_spike_threshold_visible", + SCROLL_BAR_VISIBLE = "#scroll_bar_visible", + SCROLL_BUTTON_RELEASE = "#scroll_button_release", + SCROLLBAR_HIT_BOTTOM = "#scrollbar_hit_bottom", + SDL_COLOR_PICKER_RIGHT_SECTION_CONTENT = "#sdl_color_picker_right_section_content", + SDL_DROPDOWN_DATA_ROW_VISIBLE = "#sdl_dropdown_data_row_visible", + SDL_EXPANDED_APPEARANCE_CONTENT = "#sdl_expanded_appearance_content", + SDL_TEXTURE_COMPONENT_IMAGE_PATH = "#sdl_texture_component_image_path", + SDL_TEXTURE_COMPONENT_IMAGE_SYSTEM = "#sdl_texture_component_image_system", + SDL_TEXTURE_COMPONENT_IMAGE_VISIBLE = "#sdl_texture_component_image_visible", + SDL_TOP_STATIC_SECTION_CONTENT = "#sdl_top_static_section_content", + SEARCH_BOX_NAME = "#search_box_name", + SEARCH_HEADER_BOX_TEXT_CONTENT = "#search_header_box_text_content", + SEARCH_HEADER_CLEAR_VISIBLE = "#search_header_clear_visible", + SEARCH_RESULTS_CLOSE_FOCUS_ID = "#search_results_close_focus_id", + SEED_FIELD = "#seed_field", + SELECTABLE_BUTTON_VISIBILITY = "#selectable_button_visibility", + SELECTED_CONTROL_SCHEME_NAME = "#selected_control_scheme_name", + SELECTED_GRID_DIMENSIONS = "#selected_grid_dimensions", + SELECTED_HOVER_TEXT = "#selected_hover_text", + SELECTED_ITEM_STORAGE_CURRENT_AMOUNT = "#selected_item_storage_current_amount", + SELECTED_ITEM_STORAGE_TOTAL_AMOUNT = "#selected_item_storage_total_amount", + SELECTED_ITEM_STORAGE_VISIBLE = "#selected_item_storage_visible", + SELECTED_PACK_ITEMS = "#selected_pack_items", + SELECTION_PRIORITY_TEXT_BOX_VALUE = "#selection_priority_text_box_value", + SERIALIZED_ACTOR_POSE = "#serialized_actor_pose", + SERVER_ADD_INFO_BOX = "#server_add_info_box", + SERVER_COLUMN_COLLECTION_INDEX = "#server_column_collection_index", + SERVER_ID_TEXT_BOX = "#server_id_text_box", + SERVER_NESTED_BUTTONS_VISIBLE = "#server_nested_buttons_visible", + SERVER_REGION_CONNECTED_VISIBLE = "#server_region_connected_visible", + SERVER_ROW_COLLECTION_INDEX = "#server_row_collection_index", + SERVER_SEARCH_BOX = "#server_search_box", + SERVER_SIM_DISTANCE_TEXT_VALUE = "#server_sim_distance_text_value", + SERVERBOUND_CLIENT_DIAGNOSTICS_ENABLED = "#serverbound_client_diagnostics_enabled", + SET_TARGET_ROTATION = "#set_target_rotation", + SHIELD_BASE_COLOR = "#shield_base_color", + SHIELD_BASE_COLOR_HOVERED = "#shield_base_color_hovered", + SHOULD_HOST = "#should_host", + SHOULD_SHOW_BUNDLE_OPEN_BACK = "#should_show_bundle_open_back", + SHOULD_SHOW_BUNDLE_OPEN_FRONT = "#should_show_bundle_open_front", + SHOW_BORDER_EFFECT = "#show_border_effect", + SHOW_BORDER_EFFECT_ENABLED = "#show_border_effect_enabled", + SHOW_BOUNDING_BOX_TOGGLE = "#show_bounding_box_toggle", + SHOW_DAYS_PLAYED = "#show_days_played", + SHOW_DAYS_PLAYED_ENABLED = "#show_days_played_enabled", + SHOW_DEFERRED_RENDER_DISTANCE = "#show_deferred_render_distance", + SHOW_FULL_COPY_COORDINATES_KEYS = "#show_full_copy_coordinates_keys", + SHOW_INPUT_OVERLAY_ARMORS_AND_TOOLS = "#show_input_overlay_armors_and_tools", + SHOW_INPUT_OVERLAY_TEMPLATES = "#show_input_overlay_templates", + SHOW_ITEM_PICKUP = "#show_item_pickup", + SHOW_MATERIAL_OVERLAY_INGOT = "#show_material_overlay_ingot", + SHOW_MORE = "#show_more", + SHOW_NEW_EDIT_REALM_WORLD_OPT_IN = "#show_new_edit_realm_world_opt_in", + SHOW_NEW_PLAY_SCREEN_OPT_IN = "#show_new_play_screen_opt_in", + SHOW_NEW_PLAY_SCREEN_SERVERS_OPT_IN = "#show_new_play_screen_servers_opt_in", + SHOW_PERSISTENT_BUNDLE_HOVER_TEXT = "#show_persistent_bundle_hover_text", + SHOW_STANDARD_COPY_COORDINATES_KEYS = "#show_standard_copy_coordinates_keys", + SHOW_SUBMIT_FEEDBACK_SCREEN = "#show_submit_feedback_screen", + SHOWING_NEW_PLAYER_FLOW_BUTTONS = "#showing_new_player_flow_buttons", + SHOWING_PLATFORM_STORE_ICON = "#showing_platform_store_icon", + SIDEBAR_NAV_IMAGE_BILINEAR_ENABLED = "#sidebar_nav_image_bilinear_enabled", + SIDEBAR_NAV_IMAGE_FILE_SYSTEM = "#sidebar_nav_image_file_system", + SIDEBAR_SCREEN_NAV_SCREEN_BUTTON_LABEL = "#sidebar_screen_nav_screen_button_label", + SIDEBAR_SECTION_COLLECTION_INDEX = "#sidebar_section_collection_index", + SIGN_TEXT_MULTI = "#sign_text_multi", + SIMPLE_SIDEBAR_FACTORY_COLLECTION = "#simple_sidebar_factory_collection", + SKIN_COLLECTION_INDEX = "#skin_collection_index", + SKIN_IDX = "#skin_idx", + SKIN_PACK_COLLECTION_INDEX = "#skin_pack_collection_index", + SKIN_PACK_COLLECTOR_COLLECTION_INDEX = "#skin_pack_collector_collection_index", + SKIN_PACK_RIGHT_PANEL_SKIN_COUNT_TEXT = "#skin_pack_right_panel_skin_count_text", + SKIN_PACK_RIGHT_PANEL_TEXTURE_PACK_COUNT_TEXT = "#skin_pack_right_panel_texture_pack_count_text", + SKIN_PACK_RIGHT_PANEL_USAGE_TOOLTIP_TEXT = "#skin_pack_right_panel_usage_tooltip_text", + SKIN_PACK_RIGHT_PANEL_WORLD_COUNT_TEXT = "#skin_pack_right_panel_world_count_text", + SKIN_ROTATION = "#skin_rotation", + SKINS_COLLECTION_INDEX = "#skins_collection_index", + SNEAK_HOLD = "#sneak_hold", + SNEAK_TOGGLE = "#sneak_toggle", + SORT_MENU_COLLECTION_GRID_DIMENSIONS = "#sort_menu_collection_grid_dimensions", + SORT_RELEVANCE_TOGGLE_CHECK = "#sort_relevance_toggle_check", + SORT_TOGGLE_LABEL_TTS_OVERRIDE = "#sort_toggle_label_tts_override", + SOUND_TO_PLAY = "#sound_to_play", + SPLIT_SCREEN_RADIO_HORIZONTAL = "#split_screen_radio_horizontal", + SPLIT_SCREEN_RADIO_VERTICAL = "#split_screen_radio_vertical", + SPLITSCREEN_INTERFACE_OPACITY = "#splitscreen_interface_opacity", + SPLITSCREEN_INTERFACE_OPACITY_SLIDER_LABEL = "#splitscreen_interface_opacity_slider_label", + STACK_SPLITTING_BAR_OFFSET_X = "#stack_splitting_bar_offset_x", + STACK_SPLITTING_BAR_OFFSET_Y = "#stack_splitting_bar_offset_y", + STACK_SPLITTING_BAR_VISIBLE = "#stack_splitting_bar_visible", + STARTER_BUNDLE_OFFER_PROMPT_TEXT = "#starter_bundle_offer_prompt_text", + STARTER_BUNDLE_STRIKETHROUGH_VISIBLE = "#starter_bundle_strikethrough_visible", + STATIC_JOYSTICK = "#static_joystick", + STATIC_JOYSTICK_ENABLED = "#static_joystick_enabled", + STATIC_PERMISSIONS_DISPLAY_DESCRIPTION = "#static_permissions_display_description", + STORE_BUTTON_ART_DEFAULT_ALPHA = "#store_button_art_default_alpha", + STORE_BUTTON_ART_DEFAULT_BG_PATH = "#store_button_art_default_bg_path", + STORE_BUTTON_ART_DEFAULT_FG_PATH = "#store_button_art_default_fg_path", + STORE_BUTTON_ART_HOVER_ALPHA = "#store_button_art_hover_alpha", + STORE_BUTTON_ART_HOVER_BG_PATH = "#store_button_art_hover_bg_path", + STORE_BUTTON_ART_HOVER_FG_PATH = "#store_button_art_hover_fg_path", + STORE_BUTTON_ART_LABEL_COLOR = "#store_button_art_label_color", + STORE_BUTTON_BANNER_TEXT_COLOR = "#store_button_banner_text_color", + STORE_BUTTON_BANNER_TEXTURE = "#store_button_banner_texture", + STORE_BUTTON_BANNER_TEXTURE_SOURCE = "#store_button_banner_texture_source", + STORE_BUTTON_BANNER_VISIBLE = "#store_button_banner_visible", + STORE_ERROR_TOOLTIP_VISIBLE = "#store_error_tooltip_visible", + STORE_OFFER_SECTION_VISIBLE = "#store_offer_section_visible", + STORE_ROW_IMAGE_ANIMATION_NAME = "#store_row_image_animation_name", + STORE_ROW_IMAGE_TEXTURE_FILEPATH = "#store_row_image_texture_filepath", + STORE_ROW_IMAGE_TEXTURE_NAME = "#store_row_image_texture_name", + STRUCTURE_3D_EXPORT_MODE = "#structure_3d_export_mode", + STRUCTURE_ANIMATION_BLOCKS = "#structure_animation_blocks", + STRUCTURE_ANIMATION_LAYERS = "#structure_animation_layers", + STRUCTURE_ANIMATION_NONE = "#structure_animation_none", + STRUCTURE_CORNER_MODE = "#structure_corner_mode", + STRUCTURE_DATA_MODE = "#structure_data_mode", + STRUCTURE_LOAD_MODE = "#structure_load_mode", + STRUCTURE_NAME = "#structure_name", + STRUCTURE_NAME_CONTENT_BINDING_NAME = "#structure_name_content_binding_name", + STRUCTURE_REDSTONE_DISK = "#structure_redstone_disk", + STRUCTURE_REDSTONE_MEMORY = "#structure_redstone_memory", + STRUCTURE_SAVE_MODE = "#structure_save_mode", + STUDENT_BUTTONS_COLLECTION_INDEX = "#student_buttons_collection_index", + SUB_DEPENDENT_PACKS_DESCRIPTION = "#sub_dependent_packs_description", + SUB_DEPENDENT_PACKS_VERSION = "#sub_dependent_packs_version", + SUB_LEGACY_WORLD_DESCRIPTION = "#sub_legacy_world_description", + SUB_LEGACY_WORLD_WARNING_BUTTON = "#sub_legacy_world_warning_button", + SUB_RETAILTOPREVIEW_WORLD_DATE = "#sub_retailtopreview_world_date", + SUB_RETAILTOPREVIEW_WORLD_DESCRIPTION = "#sub_retailtopreview_world_description", + SUB_RETAILTOPREVIEW_WORLD_ERROR = "#sub_retailtopreview_world_error", + SUB_RETAILTOPREVIEW_WORLD_NAME = "#sub_retailtopreview_world_name", + SUB_RETAILTOPREVIEW_WORLD_SIZE = "#sub_retailtopreview_world_size", + SUB_RETAILTOPREVIEW_WORLD_UPDATE = "#sub_retailtopreview_world_update", + SUB_RETAILTOPREVIEW_WORLD_VALID = "#sub_retailtopreview_world_valid", + SUB_RETAILTOPREVIEW_WORLD_VERSION = "#sub_retailtopreview_world_version", + SUB_RETAILTOPREVIEW_WORLD_WARNING = "#sub_retailtopreview_world_warning", + SUB_RETAILTOPREVIEW_WORLD_WARNING_BUTTON = "#sub_retailtopreview_world_warning_button", + SUB_WORLD_TEMPLATE_GAME_TYPE = "#sub_world_template_game_type", + SUBMIT_FEEDBACK_IN_PROGRESS = "#submit_feedback_in_progress", + SUBMIT_TEXT = "#submit_text", + SUBSCRIPTION_BANNER_VISIBLE = "#subscription_banner_visible", + SUBSCRIPTION_CHEVRON_VISIBILITY = "#subscription_chevron_visibility", + SUBSCRIPTION_WORLD_TEMPLATE_TEXT = "#subscription_world_template_text", + SUGGESTED_OFFERS_LOADING = "#suggested_offers_loading", + SUGGESTED_OFFERS_TITLE = "#suggested_offers_title", + SUGGESTED_TEMPLATE_FACTORY_COLLECTION = "#suggested_template_factory_collection", + SUPPORTS_AVAILABLE_SPACE_QUERY = "#supports_available_space_query", + SYNC_LEGACY_WORLD_BUTTON_VISIBLE = "#sync_legacy_world_button_visible", + SYNC_RETAILTOPREVIEW_WORLD_BUTTON_VISIBLE = "#sync_retailtopreview_world_button_visible", + TAB_BUTTON_LABEL_TEXT_COLOR = "#tab_button_label_text_color", + TAG_COLLAPSED_COLLECTION_LENGTH = "#tag_collapsed_collection_length", + TAG_COLUMNS_COLLECTION_LENGTH = "#tag_columns_collection_length", + TEMPLATE_CONTROLS_VISIBLITY = "#template_controls_visiblity", + TEMPLATE_SEARCH_BOX = "#template_search_box", + TEXT_BOX_NAME = "#text_box_name", + TEXT_BOX_PHOTOS = "#text_box_photos", + TEXT_EDIT_SELECTED = "#text_edit_selected", + TEXT_TTS = "#text_tts", + THIS_PROMO_SCREENSHOT_SELECTED = "#this_promo_screenshot_selected", + TIMER_FIELD_COUNT_TO_SHOW = "#timer_field_count_to_show", + TITLE_TEXT_BOX = "#title_text_box", + TOAST_PROGRESS_BAR_CURRENT_AMOUNT = "#toast_progress_bar_current_amount", + TOAST_PROGRESS_BAR_TOTAL_AMOUNT = "#toast_progress_bar_total_amount", + TOGGLE_GROUP_FORCED_INDEX = "#toggle_group_forced_index", + TOP_BUTTON_SCALE_RADIO_BIG = "#top_button_scale_radio_big", + TOP_BUTTON_SCALE_RADIO_MEDIUM = "#top_button_scale_radio_medium", + TOP_BUTTON_SCALE_RADIO_SMALL = "#top_button_scale_radio_small", + TOTAL_SIZE_BINDING = "#total_size_binding", + TOUCH_CLASSIC_DPAD_BEING_USED = "#touch_classic_dpad_being_used", + TOUCH_CONTROLS_V2_CROSSHAIR_MODE = "#touch_controls_v2_crosshair_mode", + TOUCH_CONTROLS_V2_TOUCH_MODE = "#touch_controls_v2_touch_mode", + TOUCH_JOYSTICK_CROSSHAIR_BEING_USED = "#touch_joystick_crosshair_being_used", + TOUCH_JOYSTICK_TAP_BEING_USED = "#touch_joystick_tap_being_used", + TOUCH_PROGRESS_BAR_VISIBLE = "#touch_progress_bar_visible", + TRADE_ITEM_FOCUS_OVERRIDE_LEFT = "#trade_item_focus_override_left", + TRADE_ITEM_FOCUS_OVERRIDE_RIGHT = "#trade_item_focus_override_right", + TRIAL_CREATIVE_MODE_ENABLED_ABTEST = "#trial_creative_mode_enabled_abtest", + TRIAL_LEGACY_WORLDS_ENABLED_ABTEST = "#trial_legacy_worlds_enabled_abtest", + TRIAL_MARKETPLACE_ENABLED_ABTEST = "#trial_marketplace_enabled_abtest", + TRIAL_MULTIPLAYER_ENABLED_ABTEST = "#trial_multiplayer_enabled_abtest", + TRIAL_PURCHASE_LINK_VISIBLE = "#trial_purchase_link_visible", + TRIAL_RESOURCE_PACK_ENABLED_ABTEST = "#trial_resource_pack_enabled_abtest", + TRIAL_SEEDS_ENABLED_ABTEST = "#trial_seeds_enabled_abtest", + TRIAL_SERVER_ENABLED_ABTEST = "#trial_server_enabled_abtest", + TRIAL_TRIALWORLD_TRANSFER_ENABLED_ABTEST = "#trial_trialworld_transfer_enabled_abtest", + TRIAL_UPSELL_CONTINUE_BUTTON = "#trial_upsell_continue_button", + TRIAL_UPSELL_EXPIRED_UPDATEDDESCRIPTION = "#trial_upsell_expired_updatedDescription", + TRIAL_UPSELL_UPDATEDDESCRIPTION = "#trial_upsell_updatedDescription", + TRIAL_XBOXLIVE_ENABLED_ABTEST = "#trial_xboxlive_enabled_abtest", + TTS_FILTERS_APPLIEDCOUNT_TEXT = "#tts_filters_appliedCount_text", + TTS_OFFER_MARKDOWN_PERCENTAGE = "#tts_offer_markdown_percentage", + TTS_OVERRRIDE_OFFER_FULL_PRICE = "#tts_overrride_offer_full_price", + TTS_PURCHASE_WITH_COINS_BUTTON_TEXT = "#tts_purchase_with_coins_button_text", + UNCOMMON = "#uncommon", + UNDERSTAND_PURCHASE_WARNING = "#understand_purchase_warning", + UNLOCK_FULL_GAME_BUTTON_TEXT = "#unlock_full_game_button_text", + UNOWNED_GRID_DIMENSIONS = "#unowned_grid_dimensions", + UNOWNED_PACK_ITEMS = "#unowned_pack_items", + UNOWNED_VISIBLE = "#unowned_visible", + UNREAD_NOTIFICATION_ICON_VISIBILITY = "#unread_notification_icon_visibility", + UNSELECTABLE_BUTTON_VISIBILITY = "#unselectable_button_visibility", + UNSELECTABLE_DUST_IS_VISIBLE = "#unselectable_dust_is_visible", + UPDATE_DIMENSIONS_MAKE_BACKUP = "#update_dimensions_make_backup", + UPDATE_NOTIFICATION_SECTION_VISIBLE = "#update_notification_section_visible", + UPPER_ONLINE_BUTTONS_VISIBLE = "#upper_online_buttons_visible", + UPSCALING_MODE_RADIO_BILINEAR = "#upscaling_mode_radio_bilinear", + UPSCALING_MODE_RADIO_TAAU = "#upscaling_mode_radio_taau", + UPSCALING_MODE_TOGGLE_LABEL = "#upscaling_mode_toggle_label", + USE_HEART_OFFSET = "#use_heart_offset", + USING_ELLIPSES = "#using_ellipses", + UV_OFFSET_X = "#uv_offset_x", + VERBOSE_SIDEBAR_FACTORY_COLLECTION = "#verbose_sidebar_factory_collection", + VERSION_FILTER_TEXT_BOX = "#version_filter_text_box", + VIBRANT_VISUALS_BADGE_VISIBLE = "#vibrant_visuals_badge_visible", + VIBRANT_VISUALS_HOVER_ICON_FILE_SYSTEM = "#vibrant_visuals_hover_icon_file_system", + VIBRANT_VISUALS_HOVER_VISIBLE = "#vibrant_visuals_hover_visible", + WATERLOG_BLOCKS_TOGGLE = "#waterlog_blocks_toggle", + WEBSOCKET_ENCRYPTION_VISIBLE = "#websocket_encryption_visible", + WORLD_COLUMN_COLLECTION_INDEX = "#world_column_collection_index", + WORLD_CONTROLS_VISIBLITY = "#world_controls_visiblity", + WORLD_DIFFICULTY_DROPDOWN_TOGGLE_LABEL = "#world_difficulty_dropdown_toggle_label", + WORLD_DOWNLOAD_INFO_VISIBLE = "#world_download_info_visible", + WORLD_DOWNLOAD_PROGRESS_BAR_PERCENTAGE = "#world_download_progress_bar_percentage", + WORLD_GAME_MODE_DROPDOWN_TOGGLE_LABEL = "#world_game_mode_dropdown_toggle_label", + WORLD_GAME_MODE_RADIO_SPECTATOR = "#world_game_mode_radio_spectator", + WORLD_ROW_COLLECTION_INDEX = "#world_row_collection_index", + WORLD_SEARCH_BOX = "#world_search_box", + WORLD_TEMPLATE_ICON_TEXTURE = "#world_template_icon_texture", + WORLD_TEMPLATE_ICON_TEXTURE_FILE = "#world_template_icon_texture_file", + WORLD_TEMPLATE_ICON_TEXTURE_ZIP = "#world_template_icon_texture_zip", + WORLD_TEMPLATE_INVENTORY_FACTORY_COLLECTION = "#world_template_inventory_factory_collection", + WORLD_TEMPLATE_OPTION_LOCKED_WARNING_TEXT = "#world_template_option_locked_warning_text", + WORLD_TEMPLATE_PERMISSIONS_LOCKED_WARNING_TEXT = "#world_template_permissions_locked_warning_text", + WORLD_TEMPLATE_TYPES_TOGGLE_CHECK = "#world_template_types_toggle_check", + WORLD_TYPE_DROPDOWN_TOGGLE_LABEL = "#world_type_dropdown_toggle_label", + WRITE_FEEDBACK_TEXTBOX = "#write_feedback_textbox", + X_PADDING = "#x_padding", + XBL_BROADCAST_FRIENDS_OF_FRIENDS = "#xbl_broadcast_friends_of_friends", + XBL_BROADCAST_FRIENDS_ONLY = "#xbl_broadcast_friends_only", + XBL_BROADCAST_INVITE_ONLY = "#xbl_broadcast_invite_only", + Y_PADDING = "#y_padding", } \ No newline at end of file diff --git a/src/types/vanilla/intellisense.ts b/src/types/vanilla/intellisense.ts index 873616f..ec66807 100644 --- a/src/types/vanilla/intellisense.ts +++ b/src/types/vanilla/intellisense.ts @@ -104,6 +104,7 @@ export type VanillaUI = { "manage_feed": ManageFeedType, "manifest_validation": ManifestValidationType, "sdl_label": SdlLabelType, + "sdl_content_navigation": SdlContentNavigationType, "sdl_dropdowns": SdlDropdownsType, "sdl_image_row": SdlImageRowType, "sdl_text_row": SdlTextRowType, @@ -5587,6 +5588,12 @@ export type HudType = { "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 }, + "subtitle_direction_label": { type: T.LABEL, children: string }, + "subtitle_grid_item": { type: T.PANEL, children: 'subtitle_background' }, + "subtitle_grid_item/subtitle_background": { type: T.IMAGE, children: 'direction_left' | 'subtitle_text' | 'direction_right' }, + "subtitle_grid_item/subtitle_background/direction_left": { type: T.LABEL, children: string }, + "subtitle_grid_item/subtitle_background/subtitle_text": { type: T.LABEL, children: string }, + "subtitle_grid_item/subtitle_background/direction_right": { type: T.LABEL, children: string }, "subtitle_panel": { type: T.PANEL, children: 'stack_panel' }, "subtitle_panel/stack_panel": { type: T.STACK_PANEL, children: string }, "item_durability": { type: T.CUSTOM, children: string }, @@ -7067,6 +7074,43 @@ export type SdlLabelType = { "sdl_mc_ten_label": { type: T.LABEL, children: string }, } +export type SdlContentNavigationType = { + "content_navigation_factory": { type: T.STACK_PANEL, children: string }, + "inventory_nav_item_panel": { type: T.PANEL, children: 'inventory_nav_item' }, + "inventory_nav_item_panel/inventory_nav_item": { type: T.IMAGE, children: 'divider_stack_panel' }, + "inventory_nav_item_panel/inventory_nav_item/divider_stack_panel": { type: T.STACK_PANEL, children: 'top_pad' | 'nav_button' | 'divider' }, + "inventory_nav_item_panel/inventory_nav_item/divider_stack_panel/top_pad": { type: T.PANEL, children: string }, + "inventory_nav_item_panel/inventory_nav_item/divider_stack_panel/nav_button": { type: T.BUTTON, children: string }, + "inventory_nav_item_panel/inventory_nav_item/divider_stack_panel/divider": { type: T.STACK_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 }, + "divider_panel": { type: T.STACK_PANEL, children: 'top_pad' | 'divider' }, + "divider_panel/top_pad": { type: T.PANEL, children: string }, + "divider_panel/divider": { type: T.PANEL, children: string }, + "category_stack_panel": { type: T.STACK_PANEL, children: 'pad_1' | 'text' | 'fill_pad' | 'icon' | 'pad_2' | 'number' }, + "category_stack_panel/pad_1": { type: T.PANEL, children: string }, + "category_stack_panel/text": { type: T.UNKNOWN, 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_2": { type: T.PANEL, children: string }, + "category_stack_panel/number": { type: T.LABEL, children: string }, + "light_redirect_button_panel": { type: T.PANEL, children: 'light_redirect_button' }, + "light_redirect_button_panel/light_redirect_button": { type: T.BUTTON, children: string }, + "sdl_button_no_click_panel": { type: T.PANEL, children: 'sdl_button_no_click' }, + "sdl_button_no_click_panel/sdl_button_no_click": { type: T.BUTTON, children: string }, + "no_click_button": { type: T.STACK_PANEL, children: 'pad_1' | 'text' | 'fill_pad' | 'icon_panel' | 'pad_2' }, + "no_click_button/pad_1": { type: T.PANEL, children: string }, + "no_click_button/text": { type: T.UNKNOWN, children: string }, + "no_click_button/fill_pad": { type: T.PANEL, children: string }, + "no_click_button/icon_panel": { type: T.PANEL, children: 'icon' }, + "no_click_button/icon_panel/icon": { type: T.IMAGE, children: string }, + "no_click_button/pad_2": { type: T.PANEL, children: string }, + "arrow_down": { type: T.IMAGE, children: string }, + "section_header_no_color_binding": { type: T.LABEL, children: string }, +} + export type SdlDropdownsType = { "sdl_dropdown_rows": { type: T.PANEL, children: 'container_panel' }, "sdl_dropdown_rows/container_panel": { type: T.STACK_PANEL, children: 'toggle' | 'pad' }, @@ -13756,13 +13800,7 @@ export type RealmsWorldSectionType = { "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": { type: T.STACK_PANEL, children: '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/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 }, @@ -16355,7 +16393,7 @@ export type StoreLayoutType = { "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/store_screen_layout_factory": { type: T.UNKNOWN, 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 }, @@ -16376,8 +16414,11 @@ export type StoreLayoutType = { "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/main_panel_content": { type: T.STACK_PANEL, children: 'nav_panel' | 'main_panel_because_screen_content_is_a_whiny_baby_and_cant_use_fill' }, + "main_panel/main_panel_content/nav_panel": { type: T.PANEL, children: 'sdl_screen_content' }, + "main_panel/main_panel_content/nav_panel/sdl_screen_content": { type: T.UNKNOWN, children: string }, + "main_panel/main_panel_content/main_panel_because_screen_content_is_a_whiny_baby_and_cant_use_fill": { type: T.PANEL, children: 'sdl_screen_content' }, + "main_panel/main_panel_content/main_panel_because_screen_content_is_a_whiny_baby_and_cant_use_fill/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 }, diff --git a/src/types/vanilla/paths.ts b/src/types/vanilla/paths.ts index ef859a5..7a79241 100644 --- a/src/types/vanilla/paths.ts +++ b/src/types/vanilla/paths.ts @@ -1,210 +1,211 @@ export const paths = { - achievement: "ui/achievement_screen.json", - add_external_server: "ui/add_external_server_screen.json", - adhoc_inprogress: "ui/adhoc_inprogess_screen.json", - adhoc: "ui/adhoc_screen.json", - anvil: "ui/anvil_screen.json", - anvil_pocket: "ui/anvil_screen_pocket.json", - authentication_modals: "ui/authentication_modals.json", - authentication: "ui/authentication_screen.json", - auto_save_info: "ui/auto_save_info_screen.json", - beacon: "ui/beacon_screen.json", - beacon_pocket: "ui/beacon_screen_pocket.json", - blast_furnace: "ui/blast_furnace_screen.json", - book: "ui/book_screen.json", - brewing_stand: "ui/brewing_stand_screen.json", - brewing_stand_pocket: "ui/brewing_stand_screen_pocket.json", - bundle_purchase_warning: "ui/bundle_purchase_warning_screen.json", - cartography: "ui/cartography_screen.json", - cartography_pocket: "ui/cartography_screen_pocket.json", - chalkboard: "ui/chalkboard_screen.json", - chat: "ui/chat_screen.json", - chat_settings: "ui/chat_settings_menu_screen.json", - chest: "ui/chest_screen.json", - choose_realm: "ui/choose_realm_screen.json", - coin_purchase: "ui/coin_purchase_screen.json", - command_block: "ui/command_block_screen.json", - confirm_delete_account: "ui/confirm_delete_account_screen.json", - content_log: "ui/content_log.json", - content_log_history: "ui/content_log_history_screen.json", - crafter_pocket: "ui/crafter_screen_pocket.json", - create_world_upsell: "ui/create_world_upsell_screen.json", - credits: "ui/credits_screen.json", - csb_purchase_error: "ui/csb_purchase_error_screen.json", - csb: "ui/csb_screen.json", - csb_content: "ui/csb_sections/content_section.json", - csb_banner: "ui/csb_sections/csb_banner.json", - csb_buy: "ui/csb_sections/csb_buy_now_screen.json", - common_csb: "ui/csb_sections/csb_common.json", - csb_purchase_amazondevicewarning: "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", - csb_purchase_warning: "ui/csb_sections/csb_purchase_warning_screen.json", - csb_subscription_panel: "ui/csb_sections/csb_subscription_panel.json", - csb_upsell: "ui/csb_sections/csb_upsell_dialog.json", - csb_packs: "ui/csb_sections/csb_view_packs_screen.json", - csb_welcome: "ui/csb_sections/csb_welcome_screen.json", - csb_faq: "ui/csb_sections/faq_section.json", - csb_landing: "ui/csb_sections/landing_section.json", - custom_templates: "ui/custom_templates_screen.json", - world_conversion_complete: "ui/world_conversion_complete_screen.json", - day_one_experience_intro: "ui/day_one_experience_intro_screen.json", - day_one_experience: "ui/day_one_experience_screen.json", - death: "ui/death_screen.json", - debug_screen: "ui/debug_screen.json", - dev_console: "ui/dev_console_screen.json", - disconnect: "ui/disconnect_screen.json", - display_logged_error: "ui/display_logged_error_screen.json", - discovery_dialog: "ui/edu_discovery_dialog.json", - edu_featured: "ui/edu_featured.json", - edu_quit_button: "ui/edu_pause_screen_pause_button.json", - persona_emote: "ui/emote_wheel_screen.json", - enchanting: "ui/enchanting_screen.json", - enchanting_pocket: "ui/enchanting_screen_pocket.json", - encyclopedia: "ui/encyclopedia_screen.json", - expanded_skin_pack: "ui/expanded_skin_pack_screen.json", - feed_common: "ui/feed_common.json", - file_upload: "ui/file_upload_screen.json", - furnace: "ui/furnace_screen.json", - furnace_pocket: "ui/furnace_screen_pocket.json", - game_tip: "ui/game_tip_screen.json", - gamepad_disconnected: "ui/gamepad_disconnected.json", - gameplay: "ui/gameplay_common.json", - gathering_info: "ui/gathering_info_screen.json", - globalpause: "ui/global_pause_screen.json", - grindstone: "ui/grindstone_screen.json", - grindstone_pocket: "ui/grindstone_screen_pocket.json", - gamma_calibration: "ui/gamma_calibration_screen.json", - horse: "ui/horse_screen.json", - horse_pocket: "ui/horse_screen_pocket.json", - how_to_play_common: "ui/how_to_play_common.json", - how_to_play: "ui/how_to_play_screen.json", - hud: "ui/hud_screen.json", - host_options: "ui/host_options_screen.json", - bed: "ui/in_bed_screen.json", - im_reader: "ui/immersive_reader.json", - crafting: "ui/inventory_screen.json", - crafting_pocket: "ui/inventory_screen_pocket.json", - invite: "ui/invite_screen.json", - jigsaw_editor: "ui/jigsaw_editor_screen.json", - late_join: "ui/late_join_pregame_screen.json", - library_modal: "ui/library_modal_screen.json", - local_world_picker: "ui/local_world_picker_screen.json", - loom: "ui/loom_screen.json", - loom_pocket: "ui/loom_screen_pocket.json", - manage_feed: "ui/manage_feed_screen.json", - manifest_validation: "ui/manifest_validation_screen.json", - sdl_label: "ui/marketplace_sdl/sdl_label.json", - sdl_dropdowns: "ui/marketplace_sdl/sdl_dropdowns.json", - sdl_image_row: "ui/marketplace_sdl/sdl_image_row.json", - sdl_text_row: "ui/marketplace_sdl/sdl_text_row.json", - mob_effect: "ui/mob_effect_screen.json", - non_xbl_user_management: "ui/non_xbl_user_management_screen.json", - npc_interact: "ui/npc_interact_screen.json", - online_safety: "ui/online_safety_screen.json", - pack_settings: "ui/pack_settings_screen.json", - panorama: "ui/panorama_screen.json", - patch_notes: "ui/patch_notes_screen.json", - pause: "ui/pause_screen.json", - pdp: "ui/pdp_screen.json", - pdp_screenshots: "ui/pdp_screenshots_section.json", - permissions: "ui/permissions_screen.json", - persona_cast_character_screen: "ui/persona_cast_character_screen.json", - persona_common: "ui/persona_common.json", - persona_popups: "ui/persona_popups.json", - play: "ui/play_screen.json", - perf_turtle: "ui/perf_turtle.json", - pocket_containers: "ui/pocket_containers.json", - popup_dialog: "ui/popup_dialog.json", - portfolio: "ui/portfolio_screen.json", - progress: "ui/progress_screen.json", - rating_prompt: "ui/rating_prompt.json", - realms_common: "ui/realms_common.json", - realms_create: "ui/realms_create.json", - realms_pending_invitations: "ui/realms_pending_invitations.json", - realms_slots: "ui/realms_slots_screen.json", - realms_settings: "ui/realms_settings_screen.json", - realms_allowlist: "ui/realms_allowlist.json", - realms_invite_link_settings: "ui/realms_invite_link_settings_screen.json", - realms_plus_ended: "ui/realms_plus_ended_screen.json", - realmsPlus: "ui/realmsPlus_screen.json", - realmsPlus_content: "ui/realmsPlus_sections/content_section.json", - realmsPlus_faq: "ui/realmsPlus_sections/faq_section.json", - realmsPlus_landing: "ui/realmsPlus_sections/landing_section.json", - realmsPlus_buy: "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", - realmsPlus_packs: "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", - realmsPlus_purchase_warning: "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", - realms_stories_transition: "ui/realms_stories_transition_screen.json", - redstone: "ui/redstone_screen.json", - resource_packs: "ui/resource_packs_screen.json", - safe_zone: "ui/safe_zone_screen.json", - storage_migration_common: "ui/storage_migration_common.json", - storage_migration_generic: "ui/storage_migration_generic_screen.json", - scoreboard: "ui/scoreboards.json", - screenshot: "ui/screenshot_screen.json", - select_world: "ui/select_world_screen.json", - server_form: "ui/server_form.json", - settings: "ui/settings_screen.json", - controls_section: "ui/settings_sections/controls_section.json", - general_section: "ui/settings_sections/general_section.json", - realms_world_section: "ui/settings_sections/realms_world_section.json", - settings_common: "ui/settings_sections/settings_common.json", - world_section: "ui/settings_sections/world_section.json", - social_section: "ui/settings_sections/social_section.json", - sidebar_navigation: "ui/sidebar_navigation.json", - sign: "ui/sign_screen.json", - simple_inprogress: "ui/simple_inprogress_screen.json", - skin_pack_purchase: "ui/skin_pack_purchase_screen.json", - skin_picker: "ui/skin_picker_screen.json", - smithing_table: "ui/smithing_table_screen.json", - smithing_table_2: "ui/smithing_table_2_screen.json", - smithing_table_pocket: "ui/smithing_table_screen_pocket.json", - smithing_table_2_pocket: "ui/smithing_table_2_screen_pocket.json", - smoker: "ui/smoker_screen.json", - start: "ui/start_screen.json", - stonecutter: "ui/stonecutter_screen.json", - stonecutter_pocket: "ui/stonecutter_screen_pocket.json", - storage_management: "ui/storage_management.json", - storage_management_popup: "ui/storage_management_popup.json", - common_store: "ui/store_common.json", - store_layout: "ui/store_data_driven_screen.json", - filter_menu: "ui/store_filter_menu_screen.json", - store_inventory: "ui/store_inventory_screen.json", - store_item_list: "ui/store_item_list_screen.json", - store_progress: "ui/store_progress_screen.json", - promo_timeline: "ui/store_promo_timeline_screen.json", - store_sale_item_list: "ui/store_sales_item_list_screen.json", - store_search: "ui/store_search_screen.json", - sort_menu: "ui/store_sort_menu_screen.json", - structure_editor: "ui/structure_editor_screen.json", - submit_feedback: "ui/submit_feedback_screen.json", - tabbed_upsell: "ui/tabbed_upsell_screen.json", - thanks_for_testing: "ui/thanks_for_testing_screen.json", - third_party_store: "ui/third_party_store_screen.json", - toast_screen: "ui/toast_screen.json", - token_faq: "ui/token_faq_screen.json", - trade: "ui/trade_screen.json", - trade_pocket: "ui/trade_screen_pocket.json", - trade2: "ui/trade_2_screen.json", - trade2_pocket: "ui/trade_2_screen_pocket.json", - trialUpsell: "ui/trial_upsell_screen.json", - ugc_viewer: "ui/ugc_viewer_screen.json", - common_art: "ui/ui_art_assets_common.json", - common: "ui/ui_common.json", - "common-classic": "ui/ui_common_classic.json", - edu_common: "ui/ui_edu_common.json", - purchase_common: "ui/ui_purchase_common.json", - common_buttons: "ui/ui_template_buttons.json", - common_dialogs: "ui/ui_template_dialogs.json", - common_tabs: "ui/ui_template_tabs.json", - common_toggles: "ui/ui_template_toggles.json", - friendsbutton: "ui/ui_friendsbutton.json", - iconbutton: "ui/ui_iconbutton.json", - update_dimensions: "ui/update_dimensions.json", - update_version: "ui/update_version.json", - world_recovery: "ui/world_recovery_screen.json", - world_templates: "ui/world_templates_screen.json", - xbl_console_qr_signin: "ui/xbl_console_qr_signin.json", - xbl_console_signin: "ui/xbl_console_signin.json", - xbl_console_signin_succeeded: "ui/xbl_console_signin_succeeded.json", - xbl_immediate_signin: "ui/xbl_immediate_signin.json", - win10_trial_conversion: "ui/win10_trial_conversion_screen.json", -} + "achievement": "ui/achievement_screen.json", + "add_external_server": "ui/add_external_server_screen.json", + "adhoc_inprogress": "ui/adhoc_inprogess_screen.json", + "adhoc": "ui/adhoc_screen.json", + "anvil": "ui/anvil_screen.json", + "anvil_pocket": "ui/anvil_screen_pocket.json", + "authentication_modals": "ui/authentication_modals.json", + "authentication": "ui/authentication_screen.json", + "auto_save_info": "ui/auto_save_info_screen.json", + "beacon": "ui/beacon_screen.json", + "beacon_pocket": "ui/beacon_screen_pocket.json", + "blast_furnace": "ui/blast_furnace_screen.json", + "book": "ui/book_screen.json", + "brewing_stand": "ui/brewing_stand_screen.json", + "brewing_stand_pocket": "ui/brewing_stand_screen_pocket.json", + "bundle_purchase_warning": "ui/bundle_purchase_warning_screen.json", + "cartography": "ui/cartography_screen.json", + "cartography_pocket": "ui/cartography_screen_pocket.json", + "chalkboard": "ui/chalkboard_screen.json", + "chat": "ui/chat_screen.json", + "chat_settings": "ui/chat_settings_menu_screen.json", + "chest": "ui/chest_screen.json", + "choose_realm": "ui/choose_realm_screen.json", + "coin_purchase": "ui/coin_purchase_screen.json", + "command_block": "ui/command_block_screen.json", + "confirm_delete_account": "ui/confirm_delete_account_screen.json", + "content_log": "ui/content_log.json", + "content_log_history": "ui/content_log_history_screen.json", + "crafter_pocket": "ui/crafter_screen_pocket.json", + "create_world_upsell": "ui/create_world_upsell_screen.json", + "credits": "ui/credits_screen.json", + "csb_purchase_error": "ui/csb_purchase_error_screen.json", + "csb": "ui/csb_screen.json", + "csb_content": "ui/csb_sections/content_section.json", + "csb_banner": "ui/csb_sections/csb_banner.json", + "csb_buy": "ui/csb_sections/csb_buy_now_screen.json", + "common_csb": "ui/csb_sections/csb_common.json", + "csb_purchase_amazondevicewarning": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "csb_purchase_warning": "ui/csb_sections/csb_purchase_warning_screen.json", + "csb_subscription_panel": "ui/csb_sections/csb_subscription_panel.json", + "csb_upsell": "ui/csb_sections/csb_upsell_dialog.json", + "csb_packs": "ui/csb_sections/csb_view_packs_screen.json", + "csb_welcome": "ui/csb_sections/csb_welcome_screen.json", + "csb_faq": "ui/csb_sections/faq_section.json", + "csb_landing": "ui/csb_sections/landing_section.json", + "custom_templates": "ui/custom_templates_screen.json", + "world_conversion_complete": "ui/world_conversion_complete_screen.json", + "day_one_experience_intro": "ui/day_one_experience_intro_screen.json", + "day_one_experience": "ui/day_one_experience_screen.json", + "death": "ui/death_screen.json", + "debug_screen": "ui/debug_screen.json", + "dev_console": "ui/dev_console_screen.json", + "disconnect": "ui/disconnect_screen.json", + "display_logged_error": "ui/display_logged_error_screen.json", + "discovery_dialog": "ui/edu_discovery_dialog.json", + "edu_featured": "ui/edu_featured.json", + "edu_quit_button": "ui/edu_pause_screen_pause_button.json", + "persona_emote": "ui/emote_wheel_screen.json", + "enchanting": "ui/enchanting_screen.json", + "enchanting_pocket": "ui/enchanting_screen_pocket.json", + "encyclopedia": "ui/encyclopedia_screen.json", + "expanded_skin_pack": "ui/expanded_skin_pack_screen.json", + "feed_common": "ui/feed_common.json", + "file_upload": "ui/file_upload_screen.json", + "furnace": "ui/furnace_screen.json", + "furnace_pocket": "ui/furnace_screen_pocket.json", + "game_tip": "ui/game_tip_screen.json", + "gamepad_disconnected": "ui/gamepad_disconnected.json", + "gameplay": "ui/gameplay_common.json", + "gathering_info": "ui/gathering_info_screen.json", + "globalpause": "ui/global_pause_screen.json", + "grindstone": "ui/grindstone_screen.json", + "grindstone_pocket": "ui/grindstone_screen_pocket.json", + "gamma_calibration": "ui/gamma_calibration_screen.json", + "horse": "ui/horse_screen.json", + "horse_pocket": "ui/horse_screen_pocket.json", + "how_to_play_common": "ui/how_to_play_common.json", + "how_to_play": "ui/how_to_play_screen.json", + "hud": "ui/hud_screen.json", + "host_options": "ui/host_options_screen.json", + "bed": "ui/in_bed_screen.json", + "im_reader": "ui/immersive_reader.json", + "crafting": "ui/inventory_screen.json", + "crafting_pocket": "ui/inventory_screen_pocket.json", + "invite": "ui/invite_screen.json", + "jigsaw_editor": "ui/jigsaw_editor_screen.json", + "late_join": "ui/late_join_pregame_screen.json", + "library_modal": "ui/library_modal_screen.json", + "local_world_picker": "ui/local_world_picker_screen.json", + "loom": "ui/loom_screen.json", + "loom_pocket": "ui/loom_screen_pocket.json", + "manage_feed": "ui/manage_feed_screen.json", + "manifest_validation": "ui/manifest_validation_screen.json", + "sdl_label": "ui/marketplace_sdl/sdl_label.json", + "sdl_content_navigation": "ui/marketplace_sdl/sdl_content_navigation.json", + "sdl_dropdowns": "ui/marketplace_sdl/sdl_dropdowns.json", + "sdl_image_row": "ui/marketplace_sdl/sdl_image_row.json", + "sdl_text_row": "ui/marketplace_sdl/sdl_text_row.json", + "mob_effect": "ui/mob_effect_screen.json", + "non_xbl_user_management": "ui/non_xbl_user_management_screen.json", + "npc_interact": "ui/npc_interact_screen.json", + "online_safety": "ui/online_safety_screen.json", + "pack_settings": "ui/pack_settings_screen.json", + "panorama": "ui/panorama_screen.json", + "patch_notes": "ui/patch_notes_screen.json", + "pause": "ui/pause_screen.json", + "pdp": "ui/pdp_screen.json", + "pdp_screenshots": "ui/pdp_screenshots_section.json", + "permissions": "ui/permissions_screen.json", + "persona_cast_character_screen": "ui/persona_cast_character_screen.json", + "persona_common": "ui/persona_common.json", + "persona_popups": "ui/persona_popups.json", + "play": "ui/play_screen.json", + "perf_turtle": "ui/perf_turtle.json", + "pocket_containers": "ui/pocket_containers.json", + "popup_dialog": "ui/popup_dialog.json", + "portfolio": "ui/portfolio_screen.json", + "progress": "ui/progress_screen.json", + "rating_prompt": "ui/rating_prompt.json", + "realms_common": "ui/realms_common.json", + "realms_create": "ui/realms_create.json", + "realms_pending_invitations": "ui/realms_pending_invitations.json", + "realms_slots": "ui/realms_slots_screen.json", + "realms_settings": "ui/realms_settings_screen.json", + "realms_allowlist": "ui/realms_allowlist.json", + "realms_invite_link_settings": "ui/realms_invite_link_settings_screen.json", + "realms_plus_ended": "ui/realms_plus_ended_screen.json", + "realmsPlus": "ui/realmsPlus_screen.json", + "realmsPlus_content": "ui/realmsPlus_sections/content_section.json", + "realmsPlus_faq": "ui/realmsPlus_sections/faq_section.json", + "realmsPlus_landing": "ui/realmsPlus_sections/landing_section.json", + "realmsPlus_buy": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "realmsPlus_packs": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "realmsPlus_purchase_warning": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "realms_stories_transition": "ui/realms_stories_transition_screen.json", + "redstone": "ui/redstone_screen.json", + "resource_packs": "ui/resource_packs_screen.json", + "safe_zone": "ui/safe_zone_screen.json", + "storage_migration_common": "ui/storage_migration_common.json", + "storage_migration_generic": "ui/storage_migration_generic_screen.json", + "scoreboard": "ui/scoreboards.json", + "screenshot": "ui/screenshot_screen.json", + "select_world": "ui/select_world_screen.json", + "server_form": "ui/server_form.json", + "settings": "ui/settings_screen.json", + "controls_section": "ui/settings_sections/controls_section.json", + "general_section": "ui/settings_sections/general_section.json", + "realms_world_section": "ui/settings_sections/realms_world_section.json", + "settings_common": "ui/settings_sections/settings_common.json", + "world_section": "ui/settings_sections/world_section.json", + "social_section": "ui/settings_sections/social_section.json", + "sidebar_navigation": "ui/sidebar_navigation.json", + "sign": "ui/sign_screen.json", + "simple_inprogress": "ui/simple_inprogress_screen.json", + "skin_pack_purchase": "ui/skin_pack_purchase_screen.json", + "skin_picker": "ui/skin_picker_screen.json", + "smithing_table": "ui/smithing_table_screen.json", + "smithing_table_2": "ui/smithing_table_2_screen.json", + "smithing_table_pocket": "ui/smithing_table_screen_pocket.json", + "smithing_table_2_pocket": "ui/smithing_table_2_screen_pocket.json", + "smoker": "ui/smoker_screen.json", + "start": "ui/start_screen.json", + "stonecutter": "ui/stonecutter_screen.json", + "stonecutter_pocket": "ui/stonecutter_screen_pocket.json", + "storage_management": "ui/storage_management.json", + "storage_management_popup": "ui/storage_management_popup.json", + "common_store": "ui/store_common.json", + "store_layout": "ui/store_data_driven_screen.json", + "filter_menu": "ui/store_filter_menu_screen.json", + "store_inventory": "ui/store_inventory_screen.json", + "store_item_list": "ui/store_item_list_screen.json", + "store_progress": "ui/store_progress_screen.json", + "promo_timeline": "ui/store_promo_timeline_screen.json", + "store_sale_item_list": "ui/store_sales_item_list_screen.json", + "store_search": "ui/store_search_screen.json", + "sort_menu": "ui/store_sort_menu_screen.json", + "structure_editor": "ui/structure_editor_screen.json", + "submit_feedback": "ui/submit_feedback_screen.json", + "tabbed_upsell": "ui/tabbed_upsell_screen.json", + "thanks_for_testing": "ui/thanks_for_testing_screen.json", + "third_party_store": "ui/third_party_store_screen.json", + "toast_screen": "ui/toast_screen.json", + "token_faq": "ui/token_faq_screen.json", + "trade": "ui/trade_screen.json", + "trade_pocket": "ui/trade_screen_pocket.json", + "trade2": "ui/trade_2_screen.json", + "trade2_pocket": "ui/trade_2_screen_pocket.json", + "trialUpsell": "ui/trial_upsell_screen.json", + "ugc_viewer": "ui/ugc_viewer_screen.json", + "common_art": "ui/ui_art_assets_common.json", + "common": "ui/ui_common.json", + "common-classic": "ui/ui_common_classic.json", + "edu_common": "ui/ui_edu_common.json", + "purchase_common": "ui/ui_purchase_common.json", + "common_buttons": "ui/ui_template_buttons.json", + "common_dialogs": "ui/ui_template_dialogs.json", + "common_tabs": "ui/ui_template_tabs.json", + "common_toggles": "ui/ui_template_toggles.json", + "friendsbutton": "ui/ui_friendsbutton.json", + "iconbutton": "ui/ui_iconbutton.json", + "update_dimensions": "ui/update_dimensions.json", + "update_version": "ui/update_version.json", + "world_recovery": "ui/world_recovery_screen.json", + "world_templates": "ui/world_templates_screen.json", + "xbl_console_qr_signin": "ui/xbl_console_qr_signin.json", + "xbl_console_signin": "ui/xbl_console_signin.json", + "xbl_console_signin_succeeded": "ui/xbl_console_signin_succeeded.json", + "xbl_immediate_signin": "ui/xbl_immediate_signin.json", + "win10_trial_conversion": "ui/win10_trial_conversion_screen.json" +} \ No newline at end of file diff --git a/test/app.ts b/test/app.ts index 55e4124..f2e98a3 100644 --- a/test/app.ts +++ b/test/app.ts @@ -8,4 +8,4 @@ panel.addChild( }), ) -Modify("start", "start_screen_content").insertChild(panel) +Modify("start", "start_screen_content").insertChild(panel).addBindings({}) From 718d801a33645e41004c06a00a8703c77b7abdcf Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 2 Mar 2026 15:44:19 +0700 Subject: [PATCH 088/245] nothing --- extends/binding.txt | 2 - extends/button_id.txt | 947 ++++++++++++++++++++++++++++++++++ resources/example-config.js | 20 +- src/components/UI.ts | 63 ++- src/components/Utils.ts | 2 +- src/types/enums/ArrayName.ts | 1 + src/types/enums/Binding.ts | 2 - src/types/enums/ButtonId.ts | 275 ++++++++++ src/types/properties/value.ts | 2 +- test/app.ts | 18 +- 10 files changed, 1274 insertions(+), 58 deletions(-) create mode 100644 extends/button_id.txt diff --git a/extends/binding.txt b/extends/binding.txt index 9ab3e6f..3430acf 100644 --- a/extends/binding.txt +++ b/extends/binding.txt @@ -665,7 +665,6 @@ #item_storage_current_amount #item_world_template_count_and_label #item_world_template_count_visible -#itzlipofutzli #join_and_download_everything #join_by_code_text_edit #joinable_realms_panel_visible @@ -683,7 +682,6 @@ #keyboard_show_full_keyboard_options #keyboard_show_full_keyboard_options_enabled #keyboard_show_standard_keyboard_options -#kh8C #lan_network_world_item_grid_dimension #language_collapsed_collection_length #language_columns_collection_length diff --git a/extends/button_id.txt b/extends/button_id.txt new file mode 100644 index 0000000..d7f0bd0 --- /dev/null +++ b/extends/button_id.txt @@ -0,0 +1,947 @@ +button.paddle_left +button.controller_start +button.slot3 +button.slot9 +button.file_upload_cancel +button.close +button.add_popup_escape +button.tapped_bundle_item_icon +button.container_auto_destroy +button.save_button +button.picked_inventory +button.cycle_recipe_left +button.ugc_item +button.redirect_to_upsell +button.choose_skinny +button.menu_settings +button.clear_screenshots_cache +button.deselected_pack +button.store +button.sort_up +button.navigate_edit_world +button.font_license_popup +button.menu_legacy_world_item_delete +button.portfolio_export +button.cancel_close_without_saving +button.close_manage_feed +button.show_more_offers +button.player_count +button.paddle_right +button.turn_left +button.control +button.enable_text_to_speech +button.look_up_smooth +button.full_screen +button.build_or_attack_or_block_select +button.downright +button.clear_selected_recipe +button.search_bar_clear +button.showEula +button.insert_photo_page +button.hide_bundle_tooltip +button.host_toggle +button.add_realm +button.select_worlds +button.menu_invalid_world_template_clicked +button.manage_account +button.featured_category +button.menu_realm_send_invites +button.close_options_popup +button.world_slot +button.menu_realm_world_trial +button.next_friends_page +button.file_upload_wifi_warning_continue +button.eduCloud_learn_more +button.toggle_verbose_state +button.get_more_skins +button.share +button.pan_left +button.redirect_button +button.select_screenshot +button.genre +button.close_filter_menu +button.menu_inventory_cancel +button.look_down_smooth +button.arrow_down +button.command_macro_2 +button.command_macro_6 +button.anvil_coalesce_stack +button.cancel +button.insert_text_page +button.chat_menu_cancel +button.sub_command +button.trade_details_2 +button.starter_buy_now_button +button.menu_offline +button.ai_lesson_crafter +button.additional_realms_buy_button +button.continue +button.manual_save_checkbox +button.expand_realms +button.copy_local_world +button.menu_feed +button.portfolio_add_photo +button.delete_account +button.clear_content_log_files +button.expand_advanced_graphics +button.see_realms_subscription +button.view_achievement +button.redeem_realms_item +button.menu_cancel +button.destroy_or_interact +button.scoreboard +button.look_right_smooth +button.arrow_left +button.command_macro_7 +button.focus_left +button.focus_right +button.remove_trial +button.trade_secondary_select +button.player_profile_card +button.settings_help +button.reset_party_settings_filters +button.more_realms_plus_templates +button.back +button.menu_legacy_world_item_migrate +button.entry_confirm +button.tag_trailer +button.archived_world_upload +button.delete_resource_button +button.select_nav_option +button.close_result_panel +button.apply_to_realm +button.purchase_with_currency +button.user_rating_star_toggle +button.select_appearance +button.open_default_character_selection_modal +button.promotion_page +button.emote_slot_2 +button.command_macro_3 +button.cartography_result_take_half_place_one +button.menu_exit +button.close_share_popup +button.privpol_popup +button.edit_page +button.force_gui_scaling +button.privacy_and_online_safety +button.menu_realms +button.additional_realms_right_button +button.save_active_world_button +button.score_player_profile_card +button.form_button_click +button.exit_student +button.exit_advanced +button.menu_start_realms_world +button.hide_gui_all +button.slot_pressed +button.edu_cloud_conflict_resolution_cloud_button +button.play_video +button.share_world_link +button.exit_verbose_state_bg +button.text_edit_box_deselected +button.cast_select +button.structure_3D_export +button.copy_facing_coordinates +button.look_left +button.grindstone_coalesce_stack +button.main_menu_button +button.window_right +button.restore +button.clear +button.play_button +button.export_book +button.focus_debug +button.emote_wheel_exit_non_gamepad +button.is_hovered +button.friends_drawer +button.play_realm +button.available_pack +button.menu_quit +button.connect_to_third_party_server +button.portfolio_convert_right +button.hotbar_inventory_left +button.view_toggle +button.preview_app1 +button.purchase_with_coins +button.navigate_to_store_search_resource +button.scrollToRateContent +button.tab_button +button.skin_selected_skins_page +button.clear_pack_type_filters +button.menu_down +button.build_or_interact +button.slot2 +button.command_macro_chord_7 +button.output_coalesce_stack +button.join_world_popup +button.teams_share +button.copy_to_clipboard +button.reset_binding +button.new_realm +button.showEligibility +button.confirm +button.menu_navigation +button.master_buy_now_button +button.realms_player_count_10 +button.download_realms_world +button.view_profile +button.terms_and_conditions_popup +button.attribution_popup +button.exit_verbose_state +button.navigate_first_page +button.structure_import +button.menu_tertiary_select +button.sneak +button.controller_autocomplete +button.shift +button.copy_facing_block_coordinates +button.look_down +button.labtable_take_all_place_all +button.view_worlds +button.container_take_half_place_one +button.recipe_book_toggle_hovered +button.action_button +button.realms_warning_more_info +button.dialog_button +button.join_server_anyway +button.menu_local_world_item_edit +button.menu_network_join_by_code_popup_join +button.free_preview_realm_available +button.play_world +button.clear_diagnostics_captures +button.dev_trigger_graphics_device_loss +button.select_emote_slot_1 +button.real_money_purchase +button.navigate_previous_page +button.go_back +button.edit_appearance_preset +button.retry_appearance_preset +button.structure_detect +button.controller_secondary_select +button.right +button.descend +button.look_up_left +button.button_hovered +button.access +button.maximize +button.shape_drawing +button.new_world +button.open_demo_popup_link +button.mute_chat +button.host_main +button.open_chat_settings +button.turn_right +button.close_entry_prompt_dialog +button.trade_take_all_place_all +button.choose_fat +button.gathering +button.menu_store +button.sync_legacy_worlds +button.sync_retailtopreview_worlds +button.view_feed +button.expand_selected +button.expand_available +button.submit_custom_form +button.kick +button.menu_start_local_world +button.portfolio_page_next +button.manage_feed_prev_button +button.lesson_complete +button.tutorial_restart +button.claim_all +button.swap_color_channel_left +button.menu_autocomplete +button.toggle_perspective +button.sprint +button.block_select +button.emote_slot_1 +button.hide_tooltips +button.grindstone_take_all_place_all +button.loom_result_take_half_place_one +button.confirm_passcode +button.local_button +button.finalize +button.scroll_down +button.pointer_pressed +button.visual_button +button.recent_skin_hovered +button.default_skin_hovered +button.menu_play +button.download_save +button.confirm_button +button.connecting_close +button.error_close +button.menu_alternate_tab_left +button.fly_up_slow +button.emote_slot_3 +button.menu_select +button.pattern_select +button.view_library +button.error_ok +button.coalesce_stack +button.container_auto_place_one +button.recipe_select +button.signIn +button.update_and_play +button.menu_achievements +button.realms_options_close +button.selected_pack +button.read_toggle +button.menu_network_join_by_code +button.menu_realms_world_item_edit +button.cancel_reset +button.size +button.exit_done +button.found_cancel +button.dressing_room +button.close_eduCloud_error_popup +button.open_content_log_history +button.realms_plus +button.none_piece_option +button.menu_textcursorleft +button.dev_console_2 +button.inventory_left +button.jump +button.sprint_toggle +button.menu_alternate_tab_right +button.switch_to_controller +button.content_log_history_chord +button.change_flight_height +button.comp_create_take_all_place_all +button.matreduce_take_all_place_all +button.scrollbar_touch +button.crafting_output_secondary +button.startBrowsing +button.click_autocomplete +button.generate_random +button.realms_invite_plus +button.realms_copy_invite_link +button.realm_invitation_decline +button.renew +button.edit_world +button.student_button +button.switch_to_new_ui_servers +button.cancel_join_server +button.navigate_screenshots_left +button.description_read_toggle +button.editor_settings +button.rating_no_button +button.sign_in +button.done_add_resource_button +button.sort +button.expand_skin_pack +button.default_skin_selected +button.navigate_to_store_search_mashup +button.cycle_offer_left +button.select_promotion_item +button.pressedArrowRight +button.left +button.block_select_toggle +button.command_macro_chord_4 +button.chat_autocomplete_back +button.output_take_one_place_one +button.import +button.arrow_key +button.reset_keyboard_bindings +button.customize_tooltip_option_is_hovered +button.show_skip +button.sign_book +button.pause +button.force_screens_type_pocket +button.reload_ui_definitions +button.load_game +button.menu_network_server_world_edit +button.portfolio_convert_left +button.edu_cloud_hyperlink +button.hotbar_inventory_button +button.stop_hosting +button.dropdown_nav_toggle_on_hover +button.defaultNoAction +button.pan_right +button.structure_save +button.structure_load +button.menu_textcursorright +button.look_up +button.hide_gui +button.command_macro_9 +button.command_macro_chord_1 +button.home +button.try_menu_exit +button.select_offer +button.purchaseErrorBack +button.auth_cancel +button.delete_page +button.scroll_right +button.trade +button.choose_custom_skin +button.delete_local_screenshots +button.coin_wallet +button.additional_realms_left_button +button.sort_down +button.menu_how_to_play +button.debug_drawer_button +button.portfolio_delete_photo_right +button.cancel_add_resource_button +button.addons_faq +button.action +button.info +button.eduCloud_error_ok +button.feedback_link +button.custom_skin_info_popup +button.open_expanded_appearance_view +button.equip_piece +button.click_on +button.structure_reset +button.sneak_toggle +button.controller_select +button.look_center +button.memory_warning_cancel +button.container_take_all_place_all +button.close_dialog +button.remove_button +button.emote_hovered +button.cycle_recipe_right +button.update +button.report_errors +button.navigate_screenshots_right +button.portfolio_delete_photo_left +button.download_failed_cancel +button.popup_escape +button.tag_escape +button.file_upload_play +button.unlink_msa +button.navigate_to_store_search_world +button.close_edit_appearance_preset +button.expand_toggle +button.subgenre +button.controller_secondary_select_right +button.ascend +button.look_down_slight +button.look_down_left +button.screenshot +button.text_edit_box_clear +button.labtable_coalesce_stack +button.service +button.mail_share +button.copy_share_link +button.layout_increment +button.cancel_purchase +button.chat_previous_message +button.trade_select +button.enchantment_details +button.menu_skins +button.textures +button.move_left +button.pack_settings +button.navigate_create_new_world +button.close_popup +button.menu_local_world_create +button.news_read_toggle +button.no_local_worlds_launch_help +button.no_photo_alert_ok +button.join_server +button.new_world_upload +button.reset_new_player_flow +button.select_control_mode +button.filter +button.copy_current_coordinates +button.slot5 +button.command_macro_chord_8 +button.combine +button.cursor_drop_one +button.reset_gamepad_bindings +button.teleport_clear +button.close_chat_settings +button.open_dev_console +button.menu_servers +button.warningDependency +button.retry +button.realms_plus_buy_button +button.delete_save +button.edit_realm +button.activate_world +button.menu_open_uri +button.join_and_download_required +button.leave +button.hide_paperdoll_hud +button.wake_up_button +button.add_friend +button.library_back_button +button.switch_accounts +button.controller_hover_open_verbose_view +button.turn_down +button.controller_secondary_select_left +button.block_select_with_data +button.slot1 +button.console +button.menu_check_store +button.classrooms_share +button.window_left +button.drop_one +button.pick_debug_object +button.simulate_touch +button.send_feedback +button.playSolo +button.realms_player_count_2 +button.proceed +button.hide_tooltips_hud +button.close_to_code_entry +button.ok +button.cloud_learn_more_link +button.copy_build_info +button.open_color_picker +button.navigate_carousel_left +button.close_differences_dialog +button.stonecutter_result_take_half_place_one +button.dropdown_exit +button.content_log_history +button.anvil_take_all_place_all +button.library_home +button.memory_warning_ok +button.container_slot_hovered +button.visit_help +button.tapped_bundle_tooltip +button.scroll_up +button.send +button.unowned_pack +button.addonLink +button.navigate_edit_realms_world +button.cycle_pack_left +button.menu_network_join_by_code_close +button.add_member +button.edu_cloud_conflict_resolution_both_button +button.library_search +button.delete_manifest +button.must_exit_world_error_dialog +button.cycle_offer_right +button.confirm_delete +button.stone_select +button.comp_create_coalesce_stack +button.layout_decrement +button.clear_hotbar_or_remove_one +button.buy_now +button.confirm_bundle_purchase +button.keyboard_toggle +button.two_player +button.feedback_button_pressed +button.signin +button.realms_invite_find_friends +button.ten_users +button.exit_student_edit +button.delete_action +button.close_permissions_popup +button.ban +button.menu_import_level +button.menu_realm_nintendo_first_realm_purchase_button +button.menu_sign_in_to_view_realms +button.rating_yes_button +button.send_invites +button.entered_entries +button.entry_grid_button +button.connecting_cancel +button.join_world +button.start_hosting +button.resource_button +button.select_skin +button.onedrive_link +button.cycle_skins_right +button.search_header_clear +button.go_to_top +button.cycle_screenshots_left +button.swap_color_channel_right +button.help +button.emote_slot_0 +button.hide_paperdoll +button.command_macro_4 +button.world_picker_skip +button.add_server +button.cursor_drop_all +button.view_all_packs +button.tos_popup +button.buy +button.first_lower_popup_button +button.chat +button.turn_up +button.view_recent_skin +button.restore_store +button.realms_duration_long +button.exit_or_toggle +button.to_profile_or_skins_screen +button.view_third_party_server_offers +button.menu_network_world_item +button.option_reset +button.entry_ip +button.menu_retry +button.resources +button.library_item +button.refresh_manifest +button.reset_settings +button.save +button.purchase_error_dialog +button.nav_button +button.cycle_screenshots_right +button.create_selected_persona +button.click_off +button.dev_console +button.menu_secondary_select +button.look_left_smooth +button.arrow_right +button.command_macro_0 +button.command_macro_chord_0 +button.command_macro_chord_5 +button.text_edit_box_selected +button.enchant +button.unlink +button.library_category +button.reset +button.goBack +button.learn_more_popup_link +button.scroll_left +button.chat_next_message +button.menu_tab_left +button.code_builder +button.menu_world_template_clicked +button.addon_copy_realms_warning +button.exit_maximized +button.add_url +button.menu_permission +button.join_and_download_everything +button.previous_friends_page +button.image_prev +button.controller_hover_close_verbose_view +button.show_profile_settings +button.in_csb_button +button.interact_button +button.select_blade_offer +button.cast_back +button.menu_textedit_down +button.up_ignore +button.ascendScaffolding +button.fly_down_slow +button.hotbar_drop_all +button.text_to_speech +button.command_macro_1 +button.command_macro_chord_6 +button.education_resources +button.filter_toggle_hovered +button.privpol_hyperlink +button.menu_continue +button.deleteResources +button.bottom_modal +button.all +button.skins +button.csb_cancel +button.two_users +button.save_to_storage +button.entry_clear +button.manage_feed_next_button +button.undo +button.preview_app2 +button.cycle_next_debug_overlay_page +button.dev_allocate_texture_handles +button.equip_skin +button.navigate_to_store_search_addon +button.item_action +button.submit_rating +button.change_height +button.swap_to_right_limb +button.cast_right_select +button.inventory_right +button.controller_textedit_up +button.controller_back +button.menu_tab_right +button.open_crafting +button.look_up_right +button.arrow_up +button.toggle_control_hud +button.command_macro_chord_2 +button.respawn_button +button.destroy_selection +button.acceptEula +button.open_demo_screen +button.online_button +button.open_main_menu +button.menu_profile +button.realms_plus_right_button +button.backup_download +button.menu_network_server_item +button.error_try_again +button.edu_cloud_conflict_resolution_local_button +button.download_cancel +button.coin_purchase +button.collect_achievement +button.tab_name +button.language +button.smithing_table_take_half_place_one +button.left_panel_tab_decrement +button.left_panel_tab_increment +button.build_or_attack +button.anvil_take_half_place_one +button.menu_leave_screen +button.loom_result_take_all_place_all +button.clear_hotbar_or_drop +button.ten_player +button.interact +button.tabbed_buy_now_button +button.trade_details_1 +button.cloud_help_button +button.menu_edu_play +button.menu_inbox +button.to_profile_screen +button.create_realm +button.realms_invite_share +button.portfolio_page_prev +button.confirm_close_without_saving +button.confirm_reset +button.close_sign_out_fail_popup +button.manage_invites_popup +button.cycle_previous_debug_overlay_page +button.select_screen_nav_button_option +button.cycle_skins_left +button.realms_pack_more_info +button.apply_persona_piece +button.cycle_promotions_left +button.platform_restricted +button.cast_left_select +button.structure_export +button.menu_autocomplete_back +button.look_right +button.learn_more +button.info_accept +button.swap_page_right +button.trade_coalesce_stack +button.more_custom_templates +button.view_default_skin +button.back_to_selector_area +button.premium_skin_unhovered +button.expand_view +button.menu_get_started +button.remove_pack_button +button.start_transfer +button.my_account +button.realms_invite_minus +button.invite_links +button.delete_selected_saves +button.realms_pack +button.cycle_pack_right +button.view_skin +button.menu_quick_play +button.open_account_setting_gamecore +button.hotbar_inventory_right +button.manage_feed_delete +button.add_resource_learn_more +button.search_clear +button.item_pdp +button.smithing_table_take_all_place_all +button.emote +button.controller_autocomplete_back +button.interactwithtoast +button.inventory +button.destroy_or_attack +button.look_up_slight +button.upleft +button.matreduce_coalesce_stack +button.right_panel_tab_decrement +button.shift_pane_focus +button.crafting_container_auto_place +button.prev_page +button.book_exit +button.chat_paste_coordinates +button.new_ui_debug +button.emote_hovered_via_analog +button.menu_buy_game +button.accept_skin +button.menu_invite_notification +button.clear_cache +button.csb_info +button.menu_realms_plus_template_clicked +button.realms_invite_unblock +button.play_on_realm_close +button.restore_save +button.switch_to_new_ui +button.download_failed_open +button.select_all +button.sign_out +button.copy_account_info +button.seeMoreBy +button.navigate_next_page +button.delete_appearance_preset +button.close_sort_menu +button.drop +button.menu_inventory_drop_all +button.copy_coordinates +button.command_macro_chord_3 +button.chat_autocomplete +button.drop_all +button.recipe_search +button.recipe_secondary +button.tos_hyperlink +button.next_page +button.cancelServicePack +button.menu_right +button.menu_clear +button.emote_selected +button.skin_unhovered +button.exit +button.clear_members +button.select_save_options +button.invalid_pack +button.server_found_close +button.tag +button.external_link +button.leak_memory +button.skin_selected +button.play_emote_again +button.navigate_carousel_right +button.slot7 +button.slot8 +button.slot0 +button.command_macro_8 +button.command_macro_chord_9 +button.cartography_result_take_all_place_all +button.grindstone_take_half_place_one +button.container_reset_held +button.binding_button +button.modify_control_layout +button.recipe_tertiary +button.crafting_output_tertiary +button.right_learn_more +button.second_lower_popup_button +button.reopen_keyboard +button.reset_chat_settings +button.mobeffects +button.emote_selected_updated +button.faq_screen +button.premium_skin_hovered +button.edu_feedback +button.featured_world +button.more_info +button.credits +button.skin_hovered +button.menu_network_add_friend +button.menu_realms_world_item_remove +button.create_on_realms_button +button.hotbar_select +button.entry_close +button.image_next +button.change_arm_size +button.differences_information_button +button.cast_single_character_button +button.change_piece_color +button.exit_filter_menu +button.stonecutter_result_take_all_place_all +button.menu_textedit_up +button.menu_left +button.descendScaffolding +button.controller_textedit_down +button.slot4 +button.down_ignore +button.command_macro_5 +button.convert_legacy_world +button.passcode_popup_escape +button.return +button.container_auto_place +button.reset_touch_bindings +button.view_character_creator_items +button.goToDownload +button.cancel_purchase_show_demo_choice +button.menu_choose_slot +button.main_menu +button.csb_buy +button.addon_select_world +button.addon_copy_world_warning +button.menu_invite_players +button.menu_realms_feed +button.more_coding +button.equip_size +button.navigate_to_store_search_skin +button.navigate_to_store_search_vibrantvisuals +button.cycle_promotions_right +button.select_bundle_summary_offer +button.smithing_table_coalesce_stack +button.immersive_reader +button.menu_auto_place +button.look_down_right +button.output_take_all_place_all +button.create_new +button.servers +button.right_panel_tab_increment +button.menu_custom_world_template_clicked +button.swap_page_left +button.menu_up +button.trade_take_half_place_one +button.undo_skin +button.worlds +button.realms_plus_left_button +button.realms_remove_invite_link +button.expand_unowned +button.expand_action_edit +button.joincode_share +button.manage_feed_ignore +button.reset_day_one_experience +button.gamma_calibration +button.show_more_skin_packs +button.is_appearance_status_hovered +button.swap_to_left_limb +button.pressedArrowLeft +button.mobeffectsandinteractwithtoast +button.menu_inventory_drop +button.slot6 +button.upright +button.downleft +button.menu_ok +button.menu_toggle +button.search_bar_hovered +button.crafting_output_primary +button.clear_hotbar +button.left_learn_more +button.picked +button.menu_choose_realm +button.set_spawn +button.dismount +button.toast_interaction +button.trade_toggle_hovered +button.view_premium_skin +button.launch_editions +button.deselect_resource +button.next +button.addons +button.mashups +button.more_suggested_content_offers +button.playWithFriends +button.realms_duration_short +button.realm_invitation_accept +button.cancel_join_realm +button.exit_basic +button.advanced_settings +button.add_command +button.get_offline_authcode +button.close_button +button.join +button.opacity +button.generate_joincode +button.restart_hosting +button.local_world_upload +button.get_certificate +button.licensed_content_popup +button.homeButton +button.search +button.scroll_map +button.purchase_coins +button.equip_color +button.clear_all_filters +button.down +button.menu_cancel +button.pointer_pressed +button.menu_select +button.pause +button.alt +button.chat +button.code_builder +button.menu_tab_left +button.up +button.menu_right +button.mobeffects +button.menu_up +button.menu_ok +button.dismount \ No newline at end of file diff --git a/resources/example-config.js b/resources/example-config.js index 21ffa8f..8d4db49 100644 --- a/resources/example-config.js +++ b/resources/example-config.js @@ -13,23 +13,13 @@ export const config = { autoImport: true, autoEnable: true, importToPreview: false, - obfuscateStringName: true, + obfuscateStringName: false, allowRandomStringName: true, forceRandomStringLength: 16, }, - binding_functions: { - custom_abs: function (number) { - const randomAbs = RandomBindingString(16) - - return { - generate_bindings: [ - { - source_property_name: `[ abs(${number}) ]`, - target_property_name: randomAbs, - }, - ], - return_value: randomAbs, - } - }, + ui_analyzer: { + enabled: false, + generate_path: "src/modify", + imports: [], }, } diff --git a/src/components/UI.ts b/src/components/UI.ts index 76b661f..db5e581 100644 --- a/src/components/UI.ts +++ b/src/components/UI.ts @@ -71,17 +71,6 @@ export class UI extends Class ) { super() - if (name && !/^\p{L}+$/u.test(name)) { - throw new Error("Invalid name") - } else if (name === "namespace") { - console.error("The 'namespace' cannot be used as a name") - process.exit(1) - } - - if (namespace && !/^\p{L}+$/u.test(namespace)) { - throw new Error("Invalid namespace") - } - if (isNotObfuscate || !(allowObfuscate ?? true)) { this.name = name || RandomString(16) this.namespace = namespace || defaultNamespace || RandomNamespace() @@ -242,6 +231,8 @@ export class UI extends Class export class ModifyUI extends UI { private isClearBinding: boolean = false private isClearVariables: boolean = false + private isClearControls: boolean = false + private isClearAnims: boolean = false private isClearButtonMappings: boolean = false protected modifications: ModificationItem[] = [] @@ -250,13 +241,23 @@ export class ModifyUI ex super(undefined, name, namespace, path, false) } - /** - * Remove all bindings of this modify element - * @returns - */ - clearBinding() { - this.isClearBinding = true - return this + clearArray(arrayName: ArrayName) { + switch (arrayName) { + case ArrayName.BINDINGS: + this.isClearBinding = true + return this + case ArrayName.CONTROLS: + this.isClearControls = true + return this + case ArrayName.BUTTON_MAPPINGS: + this.isClearButtonMappings = true + return this + case ArrayName.ANIMS: + this.isClearAnims = true + return this + default: + return arrayName satisfies never + } } /** @@ -268,15 +269,6 @@ export class ModifyUI ex 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 @@ -459,10 +451,25 @@ export class ModifyUI ex const obj = this.toJsonUI() if (this.isClearBinding) obj.bindings = [] + if (this.isClearControls) obj.controls = [] + if (this.isClearAnims) obj.anims = [] if (this.isClearVariables) obj.variables = [] if (this.isClearButtonMappings) obj.button_mappings = [] - if (this.modifications.length) obj.modifications = this.modifications + if (this.modifications.length) { + // const map = new Map>() + + // this.modifications.forEach(mod => { + // const { operation, array_name, control_name, target, target_control, value, where } = mod + + // switch (array_name) { + // case ArrayName.CONTROLS: { + // } + // } + // }) + + obj.modifications = this.modifications + } return obj } diff --git a/src/components/Utils.ts b/src/components/Utils.ts index fbf67ff..b53e7a5 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -217,7 +217,7 @@ export function s(input: string) { else { if (rndMap.has(input)) return rndMap.get(input) as string else { - const ret = RandomBindingString() + const ret = RandomString(16) rndMap.set(input, ret) return ret } diff --git a/src/types/enums/ArrayName.ts b/src/types/enums/ArrayName.ts index 961040e..e0cabb7 100644 --- a/src/types/enums/ArrayName.ts +++ b/src/types/enums/ArrayName.ts @@ -2,4 +2,5 @@ export enum ArrayName { CONTROLS = "controls", BINDINGS = "bindings", BUTTON_MAPPINGS = "button_mappings", + ANIMS = "anims", } diff --git a/src/types/enums/Binding.ts b/src/types/enums/Binding.ts index e1ff649..055be8c 100644 --- a/src/types/enums/Binding.ts +++ b/src/types/enums/Binding.ts @@ -3218,13 +3218,11 @@ export enum Binding { ITEM_ROW_COLLECTION_INDEX = "#item_row_collection_index", ITEM_STORAGE_CURRENT_AMOUNT = "#item_storage_current_amount", ITEM_WORLD_TEMPLATE_COUNT_AND_LABEL = "#item_world_template_count_and_label", - ITZLIPOFUTZLI = "#itzlipofutzli", JOIN_BY_CODE_TEXT_EDIT = "#join_by_code_text_edit", JOINCODE_ERROR_ICON_VISIBLE = "#joincode_error_icon_visible", JOYSTICK_VISIBILITY_HIDDEN = "#joystick_visibility_hidden", JOYSTICK_VISIBILITY_HIDDEN_WHEN_UNUSED = "#joystick_visibility_hidden_when_unused", JOYSTICK_VISIBILITY_VISIBLE = "#joystick_visibility_visible", - KH8C = "#kh8C", LANGUAGE_COLLAPSED_COLLECTION_LENGTH = "#language_collapsed_collection_length", LANGUAGE_COLUMNS_COLLECTION_LENGTH = "#language_columns_collection_length", LANGUAGE_ROWS_COLLECTION_LENGTH = "#language_rows_collection_length", diff --git a/src/types/enums/ButtonId.ts b/src/types/enums/ButtonId.ts index b649b55..6340cf6 100644 --- a/src/types/enums/ButtonId.ts +++ b/src/types/enums/ButtonId.ts @@ -1108,4 +1108,279 @@ export enum ButtonId { VIEW_TOGGLE = "button.view_toggle", UPDATE_AND_PLAY = "button.update_and_play", SELECT_WORLDS = "button.select_worlds", + PADDLE_LEFT = "button.paddle_left", + ADD_POPUP_ESCAPE = "button.add_popup_escape", + CLEAR_SCREENSHOTS_CACHE = "button.clear_screenshots_cache", + DESELECTED_PACK = "button.deselected_pack", + STORE = "button.store", + SORT_UP = "button.sort_up", + PADDLE_RIGHT = "button.paddle_right", + CONTROL = "button.control", + ENABLE_TEXT_TO_SPEECH = "button.enable_text_to_speech", + LOOK_UP_SMOOTH = "button.look_up_smooth", + FULL_SCREEN = "button.full_screen", + BUILD_OR_ATTACK_OR_BLOCK_SELECT = "button.build_or_attack_or_block_select", + DOWNRIGHT = "button.downright", + SHOWEULA = "button.showEula", + ADD_REALM = "button.add_realm", + CLOSE_OPTIONS_POPUP = "button.close_options_popup", + EDUCLOUD_LEARN_MORE = "button.eduCloud_learn_more", + LOOK_DOWN_SMOOTH = "button.look_down_smooth", + COMMAND_MACRO_2 = "button.command_macro_2", + COMMAND_MACRO_6 = "button.command_macro_6", + ADDITIONAL_REALMS_BUY_BUTTON = "button.additional_realms_buy_button", + MANUAL_SAVE_CHECKBOX = "button.manual_save_checkbox", + EXPAND_REALMS = "button.expand_realms", + DELETE_ACCOUNT = "button.delete_account", + EXPAND_ADVANCED_GRAPHICS = "button.expand_advanced_graphics", + DESTROY_OR_INTERACT = "button.destroy_or_interact", + LOOK_RIGHT_SMOOTH = "button.look_right_smooth", + COMMAND_MACRO_7 = "button.command_macro_7", + SETTINGS_HELP = "button.settings_help", + RESET_PARTY_SETTINGS_FILTERS = "button.reset_party_settings_filters", + TAG_TRAILER = "button.tag_trailer", + EMOTE_SLOT_2 = "button.emote_slot_2", + COMMAND_MACRO_3 = "button.command_macro_3", + FORCE_GUI_SCALING = "button.force_gui_scaling", + PRIVACY_AND_ONLINE_SAFETY = "button.privacy_and_online_safety", + ADDITIONAL_REALMS_RIGHT_BUTTON = "button.additional_realms_right_button", + SAVE_ACTIVE_WORLD_BUTTON = "button.save_active_world_button", + EDU_CLOUD_CONFLICT_RESOLUTION_CLOUD_BUTTON = "button.edu_cloud_conflict_resolution_cloud_button", + COPY_FACING_COORDINATES = "button.copy_facing_coordinates", + LOOK_LEFT = "button.look_left", + WINDOW_RIGHT = "button.window_right", + FOCUS_DEBUG = "button.focus_debug", + FRIENDS_DRAWER = "button.friends_drawer", + AVAILABLE_PACK = "button.available_pack", + PREVIEW_APP1 = "button.preview_app1", + NAVIGATE_TO_STORE_SEARCH_RESOURCE = "button.navigate_to_store_search_resource", + TAB_BUTTON = "button.tab_button", + BUILD_OR_INTERACT = "button.build_or_interact", + COMMAND_MACRO_CHORD_7 = "button.command_macro_chord_7", + OUTPUT_COALESCE_STACK = "button.output_coalesce_stack", + VIEW_PROFILE = "button.view_profile", + MENU_TERTIARY_SELECT = "button.menu_tertiary_select", + SNEAK = "button.sneak", + SHIFT = "button.shift", + COPY_FACING_BLOCK_COORDINATES = "button.copy_facing_block_coordinates", + LOOK_DOWN = "button.look_down", + LABTABLE_TAKE_ALL_PLACE_ALL = "button.labtable_take_all_place_all", + RECIPE_BOOK_TOGGLE_HOVERED = "button.recipe_book_toggle_hovered", + PLAY_WORLD = "button.play_world", + CLEAR_DIAGNOSTICS_CAPTURES = "button.clear_diagnostics_captures", + DEV_TRIGGER_GRAPHICS_DEVICE_LOSS = "button.dev_trigger_graphics_device_loss", + RIGHT = "button.right", + DESCEND = "button.descend", + LOOK_UP_LEFT = "button.look_up_left", + OPEN_DEMO_POPUP_LINK = "button.open_demo_popup_link", + EXPAND_SELECTED = "button.expand_selected", + EXPAND_AVAILABLE = "button.expand_available", + LESSON_COMPLETE = "button.lesson_complete", + TUTORIAL_RESTART = "button.tutorial_restart", + TOGGLE_PERSPECTIVE = "button.toggle_perspective", + SPRINT = "button.sprint", + BLOCK_SELECT = "button.block_select", + EMOTE_SLOT_1 = "button.emote_slot_1", + CONFIRM_PASSCODE = "button.confirm_passcode", + POINTER_PRESSED = "button.pointer_pressed", + VISUAL_BUTTON = "button.visual_button", + DOWNLOAD_SAVE = "button.download_save", + CONNECTING_CLOSE = "button.connecting_close", + ERROR_CLOSE = "button.error_close", + FLY_UP_SLOW = "button.fly_up_slow", + EMOTE_SLOT_3 = "button.emote_slot_3", + ERROR_OK = "button.error_ok", + SELECTED_PACK = "button.selected_pack", + CLOSE_EDUCLOUD_ERROR_POPUP = "button.close_eduCloud_error_popup", + MENU_TEXTCURSORLEFT = "button.menu_textcursorleft", + DEV_CONSOLE_2 = "button.dev_console_2", + JUMP = "button.jump", + SPRINT_TOGGLE = "button.sprint_toggle", + SWITCH_TO_CONTROLLER = "button.switch_to_controller", + CONTENT_LOG_HISTORY_CHORD = "button.content_log_history_chord", + CHANGE_FLIGHT_HEIGHT = "button.change_flight_height", + COMP_CREATE_TAKE_ALL_PLACE_ALL = "button.comp_create_take_all_place_all", + MATREDUCE_TAKE_ALL_PLACE_ALL = "button.matreduce_take_all_place_all", + STARTBROWSING = "button.startBrowsing", + REALMS_COPY_INVITE_LINK = "button.realms_copy_invite_link", + SIGN_IN = "button.sign_in", + NAVIGATE_TO_STORE_SEARCH_MASHUP = "button.navigate_to_store_search_mashup", + LEFT = "button.left", + BLOCK_SELECT_TOGGLE = "button.block_select_toggle", + COMMAND_MACRO_CHORD_4 = "button.command_macro_chord_4", + OUTPUT_TAKE_ONE_PLACE_ONE = "button.output_take_one_place_one", + CUSTOMIZE_TOOLTIP_OPTION_IS_HOVERED = "button.customize_tooltip_option_is_hovered", + PAUSE = "button.pause", + FORCE_SCREENS_TYPE_POCKET = "button.force_screens_type_pocket", + RELOAD_UI_DEFINITIONS = "button.reload_ui_definitions", + EDU_CLOUD_HYPERLINK = "button.edu_cloud_hyperlink", + MENU_TEXTCURSORRIGHT = "button.menu_textcursorright", + LOOK_UP = "button.look_up", + COMMAND_MACRO_9 = "button.command_macro_9", + COMMAND_MACRO_CHORD_1 = "button.command_macro_chord_1", + HOME = "button.home", + DELETE_LOCAL_SCREENSHOTS = "button.delete_local_screenshots", + ADDITIONAL_REALMS_LEFT_BUTTON = "button.additional_realms_left_button", + SORT_DOWN = "button.sort_down", + DEBUG_DRAWER_BUTTON = "button.debug_drawer_button", + EDUCLOUD_ERROR_OK = "button.eduCloud_error_ok", + FEEDBACK_LINK = "button.feedback_link", + OPEN_EXPANDED_APPEARANCE_VIEW = "button.open_expanded_appearance_view", + CLICK_ON = "button.click_on", + SNEAK_TOGGLE = "button.sneak_toggle", + LOOK_CENTER = "button.look_center", + MEMORY_WARNING_CANCEL = "button.memory_warning_cancel", + REPORT_ERRORS = "button.report_errors", + DOWNLOAD_FAILED_CANCEL = "button.download_failed_cancel", + POPUP_ESCAPE = "button.popup_escape", + TAG_ESCAPE = "button.tag_escape", + NAVIGATE_TO_STORE_SEARCH_WORLD = "button.navigate_to_store_search_world", + ASCEND = "button.ascend", + LOOK_DOWN_SLIGHT = "button.look_down_slight", + LOOK_DOWN_LEFT = "button.look_down_left", + LABTABLE_COALESCE_STACK = "button.labtable_coalesce_stack", + MOVE_LEFT = "button.move_left", + PACK_SETTINGS = "button.pack_settings", + RESET_NEW_PLAYER_FLOW = "button.reset_new_player_flow", + SELECT_CONTROL_MODE = "button.select_control_mode", + COPY_CURRENT_COORDINATES = "button.copy_current_coordinates", + COMMAND_MACRO_CHORD_8 = "button.command_macro_chord_8", + COMBINE = "button.combine", + OPEN_DEV_CONSOLE = "button.open_dev_console", + REALMS_PLUS_BUY_BUTTON = "button.realms_plus_buy_button", + DELETE_SAVE = "button.delete_save", + JOIN_AND_DOWNLOAD_REQUIRED = "button.join_and_download_required", + LIBRARY_BACK_BUTTON = "button.library_back_button", + TURN_DOWN = "button.turn_down", + BLOCK_SELECT_WITH_DATA = "button.block_select_with_data", + CONSOLE = "button.console", + WINDOW_LEFT = "button.window_left", + PICK_DEBUG_OBJECT = "button.pick_debug_object", + SIMULATE_TOUCH = "button.simulate_touch", + CLOSE_TO_CODE_ENTRY = "button.close_to_code_entry", + CLOUD_LEARN_MORE_LINK = "button.cloud_learn_more_link", + COPY_BUILD_INFO = "button.copy_build_info", + OPEN_COLOR_PICKER = "button.open_color_picker", + CONTENT_LOG_HISTORY = "button.content_log_history", + MEMORY_WARNING_OK = "button.memory_warning_ok", + VISIT_HELP = "button.visit_help", + UNOWNED_PACK = "button.unowned_pack", + ADDONLINK = "button.addonLink", + EDU_CLOUD_CONFLICT_RESOLUTION_BOTH_BUTTON = "button.edu_cloud_conflict_resolution_both_button", + COMP_CREATE_COALESCE_STACK = "button.comp_create_coalesce_stack", + BUY_NOW = "button.buy_now", + TEN_USERS = "button.ten_users", + CLOSE_PERMISSIONS_POPUP = "button.close_permissions_popup", + ONEDRIVE_LINK = "button.onedrive_link", + EMOTE_SLOT_0 = "button.emote_slot_0", + COMMAND_MACRO_4 = "button.command_macro_4", + ADD_SERVER = "button.add_server", + FIRST_LOWER_POPUP_BUTTON = "button.first_lower_popup_button", + TURN_UP = "button.turn_up", + RESOURCES = "button.resources", + CLICK_OFF = "button.click_off", + DEV_CONSOLE = "button.dev_console", + LOOK_LEFT_SMOOTH = "button.look_left_smooth", + COMMAND_MACRO_0 = "button.command_macro_0", + COMMAND_MACRO_CHORD_0 = "button.command_macro_chord_0", + COMMAND_MACRO_CHORD_5 = "button.command_macro_chord_5", + LIBRARY_CATEGORY = "button.library_category", + GOBACK = "button.goBack", + LEARN_MORE_POPUP_LINK = "button.learn_more_popup_link", + CODE_BUILDER = "button.code_builder", + JOIN_AND_DOWNLOAD_EVERYTHING = "button.join_and_download_everything", + IMAGE_PREV = "button.image_prev", + UP_IGNORE = "button.up_ignore", + ASCENDSCAFFOLDING = "button.ascendScaffolding", + FLY_DOWN_SLOW = "button.fly_down_slow", + HOTBAR_DROP_ALL = "button.hotbar_drop_all", + TEXT_TO_SPEECH = "button.text_to_speech", + COMMAND_MACRO_1 = "button.command_macro_1", + COMMAND_MACRO_CHORD_6 = "button.command_macro_chord_6", + EDUCATION_RESOURCES = "button.education_resources", + CSB_CANCEL = "button.csb_cancel", + TWO_USERS = "button.two_users", + SAVE_TO_STORAGE = "button.save_to_storage", + PREVIEW_APP2 = "button.preview_app2", + CYCLE_NEXT_DEBUG_OVERLAY_PAGE = "button.cycle_next_debug_overlay_page", + DEV_ALLOCATE_TEXTURE_HANDLES = "button.dev_allocate_texture_handles", + NAVIGATE_TO_STORE_SEARCH_ADDON = "button.navigate_to_store_search_addon", + OPEN_CRAFTING = "button.open_crafting", + LOOK_UP_RIGHT = "button.look_up_right", + TOGGLE_CONTROL_HUD = "button.toggle_control_hud", + COMMAND_MACRO_CHORD_2 = "button.command_macro_chord_2", + MENU_PROFILE = "button.menu_profile", + REALMS_PLUS_RIGHT_BUTTON = "button.realms_plus_right_button", + EDU_CLOUD_CONFLICT_RESOLUTION_LOCAL_BUTTON = "button.edu_cloud_conflict_resolution_local_button", + BUILD_OR_ATTACK = "button.build_or_attack", + INTERACT = "button.interact", + CLOUD_HELP_BUTTON = "button.cloud_help_button", + MENU_EDU_PLAY = "button.menu_edu_play", + CLOSE_SIGN_OUT_FAIL_POPUP = "button.close_sign_out_fail_popup", + CYCLE_PREVIOUS_DEBUG_OVERLAY_PAGE = "button.cycle_previous_debug_overlay_page", + LOOK_RIGHT = "button.look_right", + INVITE_LINKS = "button.invite_links", + DELETE_SELECTED_SAVES = "button.delete_selected_saves", + REALMS_PACK = "button.realms_pack", + EMOTE = "button.emote", + INTERACTWITHTOAST = "button.interactwithtoast", + DESTROY_OR_ATTACK = "button.destroy_or_attack", + LOOK_UP_SLIGHT = "button.look_up_slight", + UPLEFT = "button.upleft", + MATREDUCE_COALESCE_STACK = "button.matreduce_coalesce_stack", + CRAFTING_CONTAINER_AUTO_PLACE = "button.crafting_container_auto_place", + NEW_UI_DEBUG = "button.new_ui_debug", + CSB_INFO = "button.csb_info", + RESTORE_SAVE = "button.restore_save", + DOWNLOAD_FAILED_OPEN = "button.download_failed_open", + SELECT_ALL = "button.select_all", + SIGN_OUT = "button.sign_out", + COPY_ACCOUNT_INFO = "button.copy_account_info", + DROP = "button.drop", + COPY_COORDINATES = "button.copy_coordinates", + COMMAND_MACRO_CHORD_3 = "button.command_macro_chord_3", + SELECT_SAVE_OPTIONS = "button.select_save_options", + INVALID_PACK = "button.invalid_pack", + SERVER_FOUND_CLOSE = "button.server_found_close", + EXTERNAL_LINK = "button.external_link", + COMMAND_MACRO_8 = "button.command_macro_8", + COMMAND_MACRO_CHORD_9 = "button.command_macro_chord_9", + MODIFY_CONTROL_LAYOUT = "button.modify_control_layout", + RIGHT_LEARN_MORE = "button.right_learn_more", + SECOND_LOWER_POPUP_BUTTON = "button.second_lower_popup_button", + EMOTE_SELECTED_UPDATED = "button.emote_selected_updated", + ENTRY_CLOSE = "button.entry_close", + IMAGE_NEXT = "button.image_next", + DESCENDSCAFFOLDING = "button.descendScaffolding", + DOWN_IGNORE = "button.down_ignore", + COMMAND_MACRO_5 = "button.command_macro_5", + PASSCODE_POPUP_ESCAPE = "button.passcode_popup_escape", + VIEW_CHARACTER_CREATOR_ITEMS = "button.view_character_creator_items", + CSB_BUY = "button.csb_buy", + MORE_CODING = "button.more_coding", + NAVIGATE_TO_STORE_SEARCH_SKIN = "button.navigate_to_store_search_skin", + NAVIGATE_TO_STORE_SEARCH_VIBRANTVISUALS = "button.navigate_to_store_search_vibrantvisuals", + LOOK_DOWN_RIGHT = "button.look_down_right", + OUTPUT_TAKE_ALL_PLACE_ALL = "button.output_take_all_place_all", + SERVERS = "button.servers", + REALMS_PLUS_LEFT_BUTTON = "button.realms_plus_left_button", + REALMS_REMOVE_INVITE_LINK = "button.realms_remove_invite_link", + EXPAND_UNOWNED = "button.expand_unowned", + JOINCODE_SHARE = "button.joincode_share", + GAMMA_CALIBRATION = "button.gamma_calibration", + MOBEFFECTSANDINTERACTWITHTOAST = "button.mobeffectsandinteractwithtoast", + UPRIGHT = "button.upright", + DOWNLEFT = "button.downleft", + MENU_TOGGLE = "button.menu_toggle", + CLEAR_HOTBAR = "button.clear_hotbar", + LEFT_LEARN_MORE = "button.left_learn_more", + SET_SPAWN = "button.set_spawn", + DISMOUNT = "button.dismount", + GET_OFFLINE_AUTHCODE = "button.get_offline_authcode", + RESTART_HOSTING = "button.restart_hosting", + GET_CERTIFICATE = "button.get_certificate", + EQUIP_COLOR = "button.equip_color", + DOWN = "button.down", + ALT = "button.alt", + UP = "button.up", } \ No newline at end of file diff --git a/src/types/properties/value.ts b/src/types/properties/value.ts index 5fc2d81..c8c4d7e 100644 --- a/src/types/properties/value.ts +++ b/src/types/properties/value.ts @@ -77,6 +77,6 @@ export type ModificationItem = { where?: BindingItem | object target?: object target_control?: string - value?: object | (object | BindingItem)[] + value?: object operation?: Operation } diff --git a/test/app.ts b/test/app.ts index f2e98a3..39b1e33 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1,11 +1,11 @@ -import { Label, Modify, Panel } from ".." +import { Anchor, Label, Modify } from ".." -const panel = Panel() +const label = Label({ + text: "Hello World!", + anchor: Anchor.TOP_MIDDLE, + offset: [0, 5], + layer: 50, + shadow: true, +}) -panel.addChild( - Label({ - text: "Hello World", - }), -) - -Modify("start", "start_screen_content").insertChild(panel).addBindings({}) +Modify("start", "start_screen_content").insertChild(label) From 9f884dc7d2dfb29609f665091f58f96315516914 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 2 Mar 2026 15:45:59 +0700 Subject: [PATCH 089/245] readme --- README.md | 10 +--------- package.json | 2 +- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1bd9695..72f5c3d 100644 --- a/README.md +++ b/README.md @@ -18,16 +18,8 @@ Say goodbye to the tedious and repetitive nature of manual JSON editing. AsaJS s To use AsaJS, ensure you have **[Node.js](https://nodejs.org/en)** installed on your system. -**Latest stable version:** - ```bash -npm install asajs -``` - -**For our nightly builds:** - -``` -npm install asajs@indev +npx create-asajs ``` ## 📖 "Hello World!" Example diff --git a/package.json b/package.json index 029b921..ffea1f3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asajs", - "version": "4.1.15-indev.1", + "version": "4.1.15-indev.2", "description": "Create your Minecraft JSON-UI resource packs using JavaScript", "keywords": [ "Minecraft", From 76d68230f69a22f7c33fc047676a1f26ace52cee Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 9 Apr 2026 10:36:32 +0700 Subject: [PATCH 090/245] big refactor --- assets/grub/background.png | Bin 0 -> 2264522 bytes devices/ideapad-slim-5/configuration.nix | 57 + .../ideapad-slim-5/hardware-configuration.nix | 33 + flake.lock | 1063 +++++++++++++++++ flake.nix | 70 ++ home/asakiyuki/configuration.nix | 43 + home/asakiyuki/modules/env.nix | 5 + home/asakiyuki/modules/files.nix | 19 + home/asakiyuki/modules/programs.nix | 20 + host/desktop/default.nix | 28 + libs/default.nix | 3 + modules/features/home/bash.nix | 62 + modules/features/home/fastfetch.nix | 176 +++ modules/features/home/ghostty.nix | 50 + modules/features/home/kitty.nix | 75 ++ modules/features/home/niri.nix | 11 + modules/features/home/obs-studio.nix | 5 + modules/features/home/packages.nix | 14 + modules/features/home/starship.nix | 81 ++ modules/features/home/theme.nix | 50 + modules/features/home/tmux.nix | 81 ++ modules/features/home/vscode.nix | 5 + modules/features/home/xdg.nix | 14 + modules/features/system/boot.nix | 24 + modules/features/system/flatpak.nix | 5 + modules/features/system/gdm.nix | 5 + modules/features/system/gnome.nix | 5 + modules/features/system/hyprland.nix | 5 + modules/features/system/input-method.nix | 10 + modules/features/system/kde-plasma.nix | 6 + modules/features/system/niri.nix | 4 + modules/features/system/nix-dl.nix | 14 + modules/features/system/packages.nix | 67 ++ modules/features/system/sddm.nix | 24 + modules/features/system/steam.nix | 5 + modules/fonts.nix | 86 ++ modules/hardware/bluetooth.nix | 3 + modules/hardware/default.nix | 6 + modules/home-manager.nix | 7 + modules/programs/hyprland/default.nix | 13 + .../programs/hyprland/settings/default.nix | 15 + modules/programs/hyprland/settings/exec.nix | 8 + modules/programs/hyprland/settings/input.nix | 5 + .../programs/hyprland/settings/key-bind.nix | 47 + modules/programs/hyprland/settings/theme.nix | 58 + .../hyprland/settings/window-rules.nix | 15 + modules/programs/nixcord/default.nix | 44 + modules/programs/nixvim/_nixvim.nix | 14 + modules/programs/nixvim/default.nix | 20 + modules/programs/nixvim/extra-packages.nix | 6 + modules/programs/nixvim/keymaps/_default.nix | 26 + modules/programs/nixvim/keymaps/_keymaps.nix | 11 + modules/programs/nixvim/keymaps/barbar.nix | 39 + .../nixvim/keymaps/nvim-tree-toggle.nix | 8 + .../programs/nixvim/keymaps/toggleterm.nix | 63 + modules/programs/nixvim/lua/_lua.nix | 4 + .../programs/nixvim/plugins/_extraPlugins.nix | 15 + modules/programs/nixvim/plugins/_plugins.nix | 33 + modules/programs/nixvim/plugins/cmp.nix | 25 + .../programs/nixvim/plugins/conform-nvim.nix | 20 + .../nixvim/plugins/extras/mini-icons.nix | 4 + .../nixvim/plugins/extras/neocord.nix | 4 + modules/programs/nixvim/plugins/lint.nix | 6 + modules/programs/nixvim/plugins/lsp.nix | 12 + modules/programs/nixvim/plugins/lspkind.nix | 4 + .../programs/nixvim/plugins/lua/neocord.lua | 24 + modules/programs/nixvim/plugins/nvimtree.nix | 5 + modules/programs/nixvim/plugins/which-key.nix | 7 + modules/services/default.nix | 6 + options/common/default.nix | 10 + options/desktop/default.nix | 17 + options/desktop/environment.nix | 33 + options/desktop/hardware.nix | 5 + options/desktop/programs.nix | 18 + overlays/nixpkgs.nix | 3 + packages/bun.nix | 27 + packages/cage-xtmapper-0.1.5.nix | 48 + packages/cage-xtmapper-0.2.0.nix | 48 + packages/catppuccin-obs.nix | 16 + packages/custom-cursors.nix | 31 + packages/default.nix | 7 + 81 files changed, 3065 insertions(+) create mode 100644 assets/grub/background.png create mode 100755 devices/ideapad-slim-5/configuration.nix create mode 100755 devices/ideapad-slim-5/hardware-configuration.nix create mode 100644 flake.lock create mode 100644 flake.nix create mode 100644 home/asakiyuki/configuration.nix create mode 100644 home/asakiyuki/modules/env.nix create mode 100644 home/asakiyuki/modules/files.nix create mode 100644 home/asakiyuki/modules/programs.nix create mode 100644 host/desktop/default.nix create mode 100644 libs/default.nix create mode 100644 modules/features/home/bash.nix create mode 100644 modules/features/home/fastfetch.nix create mode 100644 modules/features/home/ghostty.nix create mode 100644 modules/features/home/kitty.nix create mode 100644 modules/features/home/niri.nix create mode 100644 modules/features/home/obs-studio.nix create mode 100644 modules/features/home/packages.nix create mode 100644 modules/features/home/starship.nix create mode 100644 modules/features/home/theme.nix create mode 100644 modules/features/home/tmux.nix create mode 100644 modules/features/home/vscode.nix create mode 100644 modules/features/home/xdg.nix create mode 100644 modules/features/system/boot.nix create mode 100644 modules/features/system/flatpak.nix create mode 100644 modules/features/system/gdm.nix create mode 100644 modules/features/system/gnome.nix create mode 100644 modules/features/system/hyprland.nix create mode 100644 modules/features/system/input-method.nix create mode 100644 modules/features/system/kde-plasma.nix create mode 100644 modules/features/system/niri.nix create mode 100644 modules/features/system/nix-dl.nix create mode 100644 modules/features/system/packages.nix create mode 100644 modules/features/system/sddm.nix create mode 100644 modules/features/system/steam.nix create mode 100644 modules/fonts.nix create mode 100644 modules/hardware/bluetooth.nix create mode 100644 modules/hardware/default.nix create mode 100644 modules/home-manager.nix create mode 100644 modules/programs/hyprland/default.nix create mode 100644 modules/programs/hyprland/settings/default.nix create mode 100644 modules/programs/hyprland/settings/exec.nix create mode 100644 modules/programs/hyprland/settings/input.nix create mode 100644 modules/programs/hyprland/settings/key-bind.nix create mode 100644 modules/programs/hyprland/settings/theme.nix create mode 100644 modules/programs/hyprland/settings/window-rules.nix create mode 100644 modules/programs/nixcord/default.nix create mode 100644 modules/programs/nixvim/_nixvim.nix create mode 100644 modules/programs/nixvim/default.nix create mode 100644 modules/programs/nixvim/extra-packages.nix create mode 100644 modules/programs/nixvim/keymaps/_default.nix create mode 100644 modules/programs/nixvim/keymaps/_keymaps.nix create mode 100644 modules/programs/nixvim/keymaps/barbar.nix create mode 100644 modules/programs/nixvim/keymaps/nvim-tree-toggle.nix create mode 100644 modules/programs/nixvim/keymaps/toggleterm.nix create mode 100644 modules/programs/nixvim/lua/_lua.nix create mode 100644 modules/programs/nixvim/plugins/_extraPlugins.nix create mode 100644 modules/programs/nixvim/plugins/_plugins.nix create mode 100644 modules/programs/nixvim/plugins/cmp.nix create mode 100644 modules/programs/nixvim/plugins/conform-nvim.nix create mode 100644 modules/programs/nixvim/plugins/extras/mini-icons.nix create mode 100644 modules/programs/nixvim/plugins/extras/neocord.nix create mode 100644 modules/programs/nixvim/plugins/lint.nix create mode 100644 modules/programs/nixvim/plugins/lsp.nix create mode 100644 modules/programs/nixvim/plugins/lspkind.nix create mode 100644 modules/programs/nixvim/plugins/lua/neocord.lua create mode 100644 modules/programs/nixvim/plugins/nvimtree.nix create mode 100644 modules/programs/nixvim/plugins/which-key.nix create mode 100644 modules/services/default.nix create mode 100644 options/common/default.nix create mode 100644 options/desktop/default.nix create mode 100644 options/desktop/environment.nix create mode 100644 options/desktop/hardware.nix create mode 100644 options/desktop/programs.nix create mode 100644 overlays/nixpkgs.nix create mode 100755 packages/bun.nix create mode 100644 packages/cage-xtmapper-0.1.5.nix create mode 100644 packages/cage-xtmapper-0.2.0.nix create mode 100644 packages/catppuccin-obs.nix create mode 100644 packages/custom-cursors.nix create mode 100644 packages/default.nix diff --git a/assets/grub/background.png b/assets/grub/background.png new file mode 100644 index 0000000000000000000000000000000000000000..63a60607545caee587131b89e0d7ac4fbf78ac9a GIT binary patch literal 2264522 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

0B8#k!y@=CdG+`{lw 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≫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±y`7p9VR-b%M%HgL6+Lr0 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

#Jjb->Dg|%4W`;bmm^e&f=z>`%()T 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�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%0Dq$BSZRy)xW#N=L>5KeUi;gmVGSQ z)p+c7>%XwuCl#H}6rO9IXK1hawXokT!fgIV-(v-rswZC5KRtt~;!XOlH=A!;IIo+o zY^TY2nsZ-lPQvUb754L{M7_WBA?oK0*0P`b|4ODGuWr8nUN7*l$h%$Ne#|_Y`u^m# z=gGTU=PFC_9r*aDclu^ixf`xVdougD@BUR+2%ogr?qKNKx9@X!oJCX~&A9#Ve;?=l zrj3t}ZvXQ?V_yG)#ea4lYQJ>hn6=^dlFO`0A=7KGSZRA@zQ5l2K0k8BB<}X-PfuOt zUbC;}$z*foyR|l}TNMs&_qzHlW%;394r{x%tFKCUywf2#HhjaaFPy9sSE}~iV`zNq z;?;V);(cN zZn9j@4RCD~aXnyq=+2YuXEHYwiWeV@j>_1=pAZ`7cR3R<6yTc^80bOVqTA)(AEpt7Yx!a z9(kC&eA&WD^{Em!POIBx9DHJMto20Do8n-zZxUXe<%>;wjN*!z<2J>s{NMh+cFGRx zie(3nc^>$Zq5hSB=Gl`kb_+e6{h?>3vK;fYd&^!p7Y1hjTF;`T^-(ZETt?q~4rAxm z;=&cm2ltxlYDoy*yY_Kv!a@h@jfzWo_Hz7dao?1X`J?klIcBWAAh%K z{AOSM?JSd5`R?Nt@h)?e<-X5r`kd$IP^PoweeSf^cRqf9Z+6XQ#?}1QE-U8Tn{rT1 zBHE~#SF`3>ESfP z9g`SK7S&9hQM{yKTKS=^?4Q@3-y-@vGdih3DexPsfx`jzJx=GjrpTS*pK6onU*9o7 z^dbAqPIDh)2MyikZwvS$_%CVIs7>Q?v$K1wB`LU(=hlz=%~uq+z5V#ud_&~Jm<7B# zP7I5?MY$7pA9xrmx?<6n$oNN&EfzkaRVQymd%u}$T9oM(INj#k59OGBMXk&C|H_$E z6J-+h`(JLq-5&*hn;QLfqDwC9*!KFl#kuWU>ypD*FSQl233xEfe6>YWmgUr1h21^u z9)A{c|2=w2DQ3HP_acr1T#Pcy$`|o@efev8^swnGtrasBBn)J)aV~!n!9-# zeCF~lIirx8`e6ToYbMVw>o+ql-Fo6n#eTiGhdF0I$I71#zoET!+e5tzW+1# zPNc=P-nVbn*!B19dcfO%_k8rdKLYW84uu8;jcnCX{zxvD`Sh{Nj7``*TNUw5e_tPk?w*mwE7!yWO;)``Un zm<8rET>p@ESyBAE;Oh6!ONHYQND+`jP8$u!T)r6IeX z#nc|y`O0RxzRZV4{`-f2MI`nvH#RvJ?sn?}yUxrBPF#N;%vmnl#huOTHT}heMmybQ zGCq7eoFP-cE!J&ZOh-=od5S%{8z5(p_@rZ7f(N5`1Q}6 z$k4#deE!mF8*fSYO_%Nqm$v(~bA8YmefH)fH?=Uw&;0UqzP*#?!-@QI29{T3_Fnn;vA*a~cztr`<$|K+ z4}Wn_``K8qE^YvAI@kS@B8R=_M+Eg7Ohl^Ez;kv^FBYr+5WcBs`+F9N29u_ z_Qmh-l&3aL&u^aSa(?Zr19GA(j=Q|x_po}(T(7EIQVVvcF8tUx<=Dc)69-vdDcyE= zNdNP7%d5A^YdcaqHf2>j{3iJSbGn^hwv^ax<7;=jN_TVF9(Ju2 zcg#8Nf86H}+&U?A{-R%E%2W%z<&YgMY=9d2N7uQ|Ab4qh^z(bW;tL7N2e&(}UlmBkD z{r$fS^AFn8i)eTsKF-}5(QOfbQhMIm;5+QnoJ;@QENc>3*yWVE%~LYtt@5mtN8g*? zycDtEP5tnHi+`BY&?AH;LWPfwp+fZpV;ES)jdm0^P{_ytC#%yg3gr=Q@+(+ znsaC;pMUg%1Mh^p`S$EhO5A&}R66GEEFY1X6IYm(|VrQ=C{WE@T}Y9KFNda zoljM^%%7^Y!g@b<-nLybmt+2liC^WLqb*lh_kCAsDf)h9dBr0E%PDW>HyGYlNjLtX za9nzlh~)42)}?cM>>e}SxO4hiKw!yqU*_7deXrI}UO4UcS@~^l6B%Em@UEY$&)<7l zs!;Xy9>+`U`Ww$sNDm)|E&+uh%*ko%&> zLF?SZwr1k3BmCWl`~ZaC9=CrO-X-jSXg7kyfJW`=M+XI*h*jpTEgbGrn7aHUOr zEpNxzaB&5f>LRd;Dkl2PEoi?XiE~+$QvFlX)+@ zpxvYW>&hRn|28>O#4>HN@V)2@%2sy{E?WLk^|<0ph3MkRnQ2OI6Yb=t&iy|nV)3Te zIg*k)zq~nqN!q5oGl%EEdOP#o%Y#E_&Yk9deN($n^0e4RIqn}0?Tp!XblIo9yjRXo zJ)j_+^;%+wgbt7Y&ZQb`LOKkpGdp+4ex77f8a>&y>Ex%S{yYEI2CUluVwyx3d&itr z_4$)BEG$9{03$%GJ@jk}Gq7Ti8o_A6}9<-4W|+qCr;m#;B; zY@#*U=iig$ccRz(($Bn~*>Agd@8Rk4kyd_6z*z&1PKxHZd{e%cZ}LF)AK zyNQ3+n}rCy7SJ(MSX6kf;?~g(jv)&LG=pU4UlLj&|9A85V-NDyPl#H)jFo@S$GWu5 zwsAGDM19gVOI!n|gj{Wj+dxEaNNzvLxH5Fa^*1Np5b}6sZ%hgdVp7WAZ zdZ}Z!-B0iNkDrRidmUWw``A%fSgQVel~T{ePVbW`7ri>GTV>n(H8vO2F1>MM_Zwv& zA)aSE@6Me|uz1*PeEoLw-uwx3Z~oc5Zu;%Vx78CTpMFsBjw!(An_gSkw{JhsKbE!Z znsDSCAL9u=N!^nSCrYmyEL5z&_9t#%mP!zVlZl#=Y`opS86xUGW!g@D=-n^6D`3X8 zP4yKgr0;*Jnzw)B5|6zdHUYK2GY%*B+Z;H`{oCgAm(4RSbRV;N%_2B^&e;g3y{BhO zpF3^g@#GTAJEJ_eVyhi)W+!L9SJrGZ4N=~xBF6k zfrnzaA596`l*e0Y`EX)$u}JGNv5oQ5zcjw*_;t+ZQGs{3Rz!|~NEp-EY0O?V0%sgc zUi^)@v87VwOVJ6=jY&&YdOt>I+I_r!<44*nyFkav1rFS&B(kr=bvs3ZQ=LtU<_pQ41;f!|iykC=+YP24%=GL>dN~~S}_^1E;!gr0F zPp`12P0_IXTAXh4`HN=n+k$Hbx>@J0KHu^Gl;3tVmQz}y-qKG01)qLh5yrZ8-OTV}zV!Axo68%$Cx71aH(LKg_5U-X zr(CQpN+cFpz7z;s-Y0!O!%adz#QMX{SWZM$QNx(@H-KEI}^RxtCv zlIoHcJNvLT{4JKJk4aiRUCEOlc712X{i!ajX={`3O6mD#%k8Y{%M1+?w_<$}-up1+ z=BG<*lmFeFK0kR|{Y7?jnHk4!hki|IGo7|cgI&q`{LRCMk~Tiz{T}n+)KXiuQpdJImc``M)si@L{9fG$^7rOd$8 zs733~1WtdpBRuc$O*W0DM;jKh`)`@LS!-QJvU`AairMYnqjx?PMRSU{9+1#Gb9fg=O}-6J^m^4cF(OgF3Fu0 z|E25S8Q&p@)zv4|6hO2G&IssbD7U6&C6A%w#+bC3p$wca@MIe^MYP-PF*!~ znsD0Jo=Vf=-rH~(>e?Ss8C^X@OMOzbp1XMCk3V9sslx7jY%C2J?@y$IDl znJ)BJn6D-~RP;^Z)8BWa@`XE!F1%}8{eh<=?s&xI%KQ7xIzH{)R{Y;{j>GbWt2a)G zu=%=n^Q!wlkL3%gI~m?dJ}4>L*-*7cZbD+^p6cGqGfp3!;4kav_J8jghe`9o{5|So zF4!-e8LgA*xtGi6@wvAzHcpnQ`+vQGGx>q(w<=rdFt<>%z85YJ!alj5X()0x6YxAZ znemjknte@K_rGj~7?qc24({E={%WJh)N2{5Pm~pKuRq83(PT+|j-*{sOg>w+LddUP zhla$Rn_stv%3R;D&~aPd$ATWGpmqDx&d5jy$)=fQiy42MvgVQUbH@c3WcI#75<7Ur#cg>UY#x7~Apsxq8^lofi(?edOeCC@B7`{>vH3 z#I+(xbBhfV?WOE3`(E!{vDsKObk6JV&BZIf?1`WC=KsVx`6c-lD&Mws_`O;1=%{5< zT@cTWrQ8+kRc@DR3QWroINlaK=T6D|9nwi{>2eBQ2UA}5x1N&Ii^`L1zMK8P^xvnl z8}D;v9+pZ zG)nLHr-MgNO6}3vYx->N&wWf&V=ko|yYBBR-MSt&f|p z?)N=@JAbl=;w+v?1!^G%2ETQFKTJCM`q*lV^mg-(`x8P+Z++j~Ek31#+k3~N|NB!o zycf-Q^RzJSz*Et%^{FiCe|H7%TlU)X-}{PnZNl$28E#tofB(tz+ZHP*Yn{Emr{2D7 zY1>{d_l?&YbML3`=UcS?hQk4)e}4|hD%_NRnDga8q9SXn-iq#7*Ux_2SyaFmDy9*u zoXWarLu^jQ>y`YjnlaazZ7n#bY!KSy6nev)?ef|Ur$x_g+4nNXT9@zairm8%()!+2lvz(JL^$=}hl(KA%>0-%-@}aYH^Vq~-8sB1 z`%DqD>55B>3>;0wYr{6InD>ppK3;r|rrSzp7aX-cLu}uzSorr)=^g8J5A>q-}Vo zD)VE_#^3!ehO2k1S@5=CE$3(XDG@8=vO^t%MKlC=`JSG8+r8sbgwKWVS|`0G-UvRY z8m(~YZ>rP2?e4#m@8AA^QKIAKv5#w>$osi#Zoc_D!=-Nn-`lo|SC3Rfw&+fpA`_Ez zx9@dLCv)W6Jr1Axe%NsB_W#8*t+%NfwO*Zl zHrnjywtw>fCdaOOZ#n(sM>!|&tXlxSxk3DgG`pLKGpf>()*fu$JfO?_Dy9By&EoS!M-ux5TM=E0Z5)xrp?N#MlR}IcFA9dbZ@*joYtREDxC47o?L^+t1D(pIOZoW}S>Oy|c`@6xS3z>8pE>Ciaq|4pB5^HDz5b<3lp`sRCnJe}ql8C1sl zx$4-OH8WpI)<3eZZ>W~jESvN=V<*;PxUSRW*c+G7QDUZ{=@!X`}@?rc|ZRD ztG7FJ@}lqh?$|YK-<;e&Og+Knx{{0URjr=Sx1AAl9>0CR@5J~2FTJl6m;GDu;LqH9 zCN+<_dEB~LgSsQ zy_)`Yv+vB7IbWN3^t#>F2dC#-J^XfYl3T9DO&yEOusPeZr7myUC@pVLvR7Q=(frsg z%jXD%wj2?=|NXG|-qjg1gjYXZvpHv%X>PVb??SECt>3P??tB|2!m7Ww;?PND+3Eay z>^T$GEH-XC7rF1>BW(-Qk5?-LmwB<=ZgVOZ|8l`p_Vdj->+8O%#{EAa8ndIn`?;B# zspy9j)!O^Q-+#>i*Jv;^Ok@?4OsXOK+KuNf?`hZ}W?5Q-T(FKYTqu;=_mA%kTWI zIQgpYsqz08Z2Wuc`>*esXM8#|-E7aFKV5E-VP(9hHe`v!*O#7( zUgvd(r*V>LPTz&|Q!ku97A?#-Q^YQAndq~Wsb-f;_NHvAoVIzdbDmt>V!@-@+2;!u zY+bA)b9v>`3w%qRPIIWwJGoo%nzwvN)`dG!A|-wcw;YZ-zURda>uAGlvpM;FGjFo4 z)A`dS^;-BsPva(sG}WRAW%2ZaT?gi_5m@XHdH>4hX$IdNpHI7W`l3dJ%O2k~tQSwc z-oN?H1(8$n=|UQNoNlvszEV1ITZj8j{*!A9!gcrmJ9N6{=dtcBciWDwd70y!eY>GB zQvOfZg~?yOd@Wp`mdNSZxIISa*@viYPnWV+7KvIOP#3-pX{|l*1$^VxZ#jxb}!$~|fYu~H>(M{CdUHksv7QSjzmie~J zbPRU*$#V$b=TSYApTd4N?Ub?3lQk^6Ki$ke;WyPtmGe|h{~vi9Dq^Yf1|rff_8eZ(*_X3@o-&^?b@Hhrm^ zv`VDx>4&H6jnh}pde9|wXVdq1j_wp*C&8+U$Ri>rj{NRjXX+9A$Z6~3tvvkvEKz?O zZXTQ0F?ajr7hH3)HfX76?NkUZ*`NQoc-!2EC3{&4ljg3s`exyLp+2?=OS)ThGrF^V&L<`6nlyQ|ZkAGST4l1Wu-5+T4#xC*Vj5LjtZrL>ywI;~{_-nh zN=bR+1imExGA{=V6G*2YGMi4VDXY698*&yRI@ zq8Fr@I+yqO;m(zJe7>k(z^rsH$()=F$d~3*tgj!BrUDC zy>dd;;ShJQ|K9WuOBX4!P0gKsqdEJ>7QNf$`>s!~H$M7#lRBS5^``^55*?*>Ytoh1 zJvkI{bf?Fxw;LnYEByZ0?=ZVy^2dGh8vAAKFRr-7#xHdCVS}$i{OUdIE;U>Eopv3x z^7^sld*ts2;fuP?w9n8Jd6yhpUsooj{m{mB*Uq~7rSDS@+~%uRtyWFAv69KDx+OFT-Sf^Q~dUGcy|K;QFjirt-n&xhswNXX# z`uV?QCX42u|H5N=;!5!BFZ_zkl7@47J}_{alsumP>-f2*xkh^e%C_4$2+e)bf+#U`_u|NF}L;~w|bgqq*he$Aca%K7F@?~z!?g?2BV257O( zFK3;~cK=jU#o@}oY4$%$C;3SDSFW4>zD#8M`Z@cI`Oe+_Yx%42$>+_fPmcYa_;StL z(>ro>JGrmD|J&&NY}09rf{li2+_c|%#hz+Csn{R8Yx>QaHe<_WEhgTfO^=D$|+t z;BT)uf2ST@v*yO?>~E{O_O5FAdh7M1fM@GNUhdpc+NxEnTp`$-9aZp1`s=YHN>6L{ zi?}ZcGmtcm_XxQ#&&$F8d4NXF_9JE46S%f-T#?ljWEah?yyM)1RhO8BmOcMdc1%%Y z&8B_%zL7sZzlh1ucr#&{^DEA@y@&L~7Ko%3J~@7ob-j+%X2X?kjj@rl`u971J-50b zwBnKT`v(R2=luVzt#=E(E)ulC&RAx>)R#2}bl04Z^R9W%`gLme7XABQ8rN)dPD-86 zEEr#@I+x$Z?eF_TpMSoxnQgXc-D#0Cg~uG9W@;FSS5i|4>nu657dk&M z%z3e4eUHVpqb+>A*EZT@TI?+Kd2V)NM$4l`xif-omQQxlyV$n=dAjKrZY8m@r*1`g zB|mDX<+Ob%o1Z-S53}T5%UgU#YXS;WI&D4M1&$k4*t$zQO*?mB!TopAFFgb|_}uMG zUf?%L;$-Niw<~*v?GlWov%On-7*!oYA#2zjxJ@)y$owEG@8_O%6C+9!e>@OE6&a~?Y6=Btb5 z$=%A2ObK%s2*F0V(7E3bC_nl{vTD#?iZ>QK%|9{uke^i$L7q@N&^O<{B z!e6l5l(>Fd%D+;5;qxAa6Zb^UUAu8EVXBkCjja`Tm44h~i)Cm%w6pj5<@ucg4jaTY zS+{?)mAZTC(p?M3cpC@%3Wx7+HcnrA>VetZ^$~YXI==Z{)Zb;2Q`|997SoI1!~s3D@%7i1D@`t;Bfnd#s4ix)iG^EGz* zkH7XslCfVa-2Vi6J=EFrDdhC~KgT5Fe;qM2&)1JA(+(?hzP)wJw#8ReLxVpYTKOp3 z|GJ2Ma8W@(@x!9Cw*3A(zg?Kpy=t@%#p2lQf37f2?B}zu zmKRprNTkMmVbt-yenF`tyP047S{UcmHIG)GpZnpo{oZFUi$CnDPQUZp;pmeC7q951 zFPDw4{HJ!chX1*bTDR!3w>7588?LhL3%j6y%JKHrE8=<|R-U&z{^wcOb^9k3|I4-4 z-3b@$Zdv5>@>-w!z1WY;2iE_8%=@&p_Ec8?0k zl;uuZ`bef#??O;OS5ninz5DCmeRtV#a=mTTr$+f5Cyv+eU3|$YP{W1u>plZpk#p;! z?fwd1ul)Sp`uJ3H|DdOLj=HPI)LaR#+4r0O@Y!_pKcDRDTG#(SH)-3Af^CL>{w(*~ z`Tn=w#^p};S9{!*)jnv&p1Qz&P5OyfSI$qr7GU+{kKD7Ixh66P{@pbEeZ0Kl>#e_Y z-pU4*$mR*(i0%KAxwX;h)`E!O4bz&gark{_k6PL1B=dP)V%@H!d%Bi6ei~DmFLrPi zO9)-KvZX0#F<;h|TJ{}hrHcQu?0QgrIn5~?Ig^<(YPpvyy3G+=!Y|faIJJ&3E}K79{&nFzxkvqzzeITp*-bVo|LmWV z{?K%JX^OsEjCRsIMlP?;(>Le6J8s{y`jSBHjhpAR&LUsyW5KkwqjIQym6kxE;)v(MJQe{7Ak zj_j%nB2{fcx7Htab70!K*w}VWj7J8iV&f;nDo3vL8m0B3k6&iSc4{A3XZ=2{Ogbg1 zDSILJKNGzzWgmVtZsJ@lodDB;naGx^!X+l+577tDXg ze*9@D)8X7R+55}H+0~Z^ZPA;yi*sYpGX1Yp4l;gsaH%iY#3O&Q^$&;o`JOdv4^LM7 zTR!!WV9xi3RVk~K%j-Tr2w*ASY!M;zf~SO>LL*tYH^&A4omUt+DRAD^Y1-{;pUTN!mvt!0*ENhYT%;+Yee09L z$p_jW&#+2P-fYY&U$|jma_f_84^PZj`0<-XYW_qCkMAcIh}k#mz1E!?S!e5EY;t6Y z`y)2CV-@dDJ^1r})|-Wf+hjLL``?QF=Vuo^jbTEq#X9%?O|5S>6s#6`zHyy=h+HDa z%#@8cw6=F04)gC8-~Ie6zZKK`M+>FSM!vZ}ecx2(c%|B{)4sf(am-&#gInx^frIqH z;OURjEi-0lJpX%q(OEO04Tt~UsJ|<%Qpmr&tf#Q;QN`m)Y~8sI(L2|cS6Q8~n3faY z`@PmrekOll%JE}=?*A~pH)-c-<9~M|V%r@aoqL^U8FuL1e4m6RYs}3VdL?B#&M->6 zaWdbRF>BA4w|=GQ!YeJAeDrw6?m{;twLPCuS8MPt>X zgfKr#`}@ximGoEh^Y48B$937Nghf(nZzcUidN04oYSYpxiEQ1Ms3-B^n)&N6rc)2i zbXR=}>D5cw9MtNyC4v1#W^c&_UGaHt8#Fe~=3Nz*Fm<`~id6|c+*{bX4y7OS-E#g( zm+wL5yJ1OO8q8N07O&WJV4H5<&LgZ*^CSWaHk!wuaWLl7zk~0c(YsZTbp7{C zd|&s@x#rDvJ669$tJ7~^tH;cpGUIZu{c6UBg~lc2=MK$cZFkY;H)4Od_}j86;^!XE zNiF`%R<@PvUWA2!)`cVu&)WTya<=l-zGr+@(>O&s=CjtjEg!Sja91fPACh?B(zrPy z^g@T9_0K2IG-ImyxHD@^x9y|LM=|nT3LM{7)P= zm~i*@EBnmWf5MU%k1lARuAK6ql_B=t=1c)yDX!Bg_3yp>Bv0r?ms4}$;x)c;aj<@LL3!55W-g<)O(|Gt&p`@HSqoW zd)q;+_jmG}6K^XVap-Po^((X&-(2&X^@IGz%)~`|ALsTNrd(NHxqn6Bq4ufGw?*R} zb60y<-;++vT%NabONROvkDkL_rDCdF$-KVTD}LSCw&aTHb^pGfGtbvdlK;0Y|8w!W zR}Si8dYK-Zbf{IypioIVDeS^DT%vF!Z6Ck*}Tp7p#|=N5ZA zYw}mk(|Kn%MQ(a2wT8Q-V%3sMtV^|Kgo(PVi>{v&TJ!g2*QNj;jTvXPPeoNnMW|2N z^`K;H(oTaJ=Ps@6J64k8b2@T!%EfgzXY^f*FiUeyj=tsKuj5rYS9soe)`KgX9xn)K z^?0a#I<(P3`bEax&2O}ejr(I(Hs)>Gw!Go2uwvJy2F^P+c8hEC4tbw14ViBsw`Yy@ zw5OW-y8buo9|XxW9KIcJY{rwgf&%FM2 zi#NYWTo{Y+^IzfScRsgu-T(al@c!R7*|O6c%T_sLpWT&v;cH82d6y|$vTl^P=encc zSmmY%+j0LdWqrOb_w)Dt4?8vEfBu+rD&y9?GqMl=aJv4j)%{P-&v$%j ztJ;vCo0Rm?=)<8}(fSwqb_eeN*Pphh;&l(-;mzjLYo4vtl&@L*X+hqcA2VVW9i6{> zQCs!81KfPKSoaAmI#9-Ex_ZNDwbX4^uX87^z8;^jE2^ma|EBk|Lw~IKe~gnmD{S3| zlF(BNr+i&=o=w0#)WXZ^+brJd<=oH84*si~QSo?BY^0c-=W5=)S=_BLvlhL(d3-DH zyK9nbYE8A4ai3wlmsfJ@`?`<6`yIMvtB!8rTPeC|&)U@YKkmh6a29S-soMO{lfyDRqMjA_SAN|yDm)n|Ja#y6vP;-!UY zpJrQDEi@{avAF15lfz$cN8M-t^4?W{U8Asf>!#QX6Y?gne4;!3R=iJ}dDp(k^J*I& z3*Ky+S?=%pt9k~@Mj$v$nN!X->*IR!EHvW%dJa$ zRCnLb-L3T4{dDe^FOv1*&)bUYD=fY<&RprXHY#JT|05r>G>6?v(p}74?o5+5|7%^h zbzjq!A6}ucueQk9d7i)h-=b#y^Ar2SHEvkU*)qekdFjWi0fqaNggd%Dg#Veojxg2j zJ}Z@;!_o6|=CvRT7R^x4&@dz2W zP_)S5l-7@ugVQcFy{`GNM&bX-zil~(`7{OFHH~LBc>kUFt9J+U&y??NXBGGVk@

?$<{fN$s#(4#q$xpJI=c^vHo^bE#q=SEd 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ⓈR#y|6Dl@5xe(jU!!I(i!=G1Y1>ckhHfN(;_de6~ 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

bed9oSk}w)oK{~StP)F1Qtoj` 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%0A*j-?ZpCvuPu+Qc+->vh$7Y?o8 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≷O;)QzIti$oyh{SXh^3!tmIYJD(eI`En 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 z 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%0A1Fe^l4i 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

JhDy)LV1t{FY*a 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
    Y({my0vDr6Fzn=JdX}asx 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 z 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 Mb-4i|Rh|{<-9s)?V*bf$oc9O)uBzC`_aL3D` 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%0AVoq_?4tBT}U&p5kYmrc@?^sQL7 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

    SseU? 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 JT)}4)?FH!q4alA$&D-D5`S`D*x8#ok@xQ2 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 a^_UnyEQzitRbyaaVDNPHb6Mw<&;$TqI=IOI literal 0 HcmV?d00001 diff --git a/devices/ideapad-slim-5/configuration.nix b/devices/ideapad-slim-5/configuration.nix new file mode 100755 index 0000000..5cc77dc --- /dev/null +++ b/devices/ideapad-slim-5/configuration.nix @@ -0,0 +1,57 @@ +{ + libs, + pkgs, + ... +}: +{ + imports = [ + ./hardware-configuration.nix + (libs.root "/host/desktop/default.nix") + (libs.root "/home/asakiyuki/configuration.nix") + ]; + + networking.hostName = "nixos"; + networking.networkmanager.enable = true; + time.timeZone = "Asia/Ho_Chi_Minh"; + + nixpkgs.config.allowUnfree = true; + + programs.firefox.enable = true; + + nix.settings.experimental-features = [ + "nix-command" + "flakes" + ]; + + device = { + flake-name = "ideapad-slim-5"; + cursors = "aemeath"; + + dm.sddm.enable = true; + dm.gdm.enable = false; + + de.kdePlasma.enable = false; + de.gnome.enable = false; + + wm.niri.enable = false; + wm.hyprland.enable = true; + + bluetooth.enable = true; + flatpak.enable = true; + + programs = { + terminal = "ghostty"; + obs-studio.enable = true; + nixcord.enable = true; + tmux.enable = true; + starship.enable = true; + fastfetch.enable = true; + cider-2.enable = true; + steam.enable = true; + }; + }; + + boot.kernelPackages = pkgs.linuxPackages_latest; + boot.extraModulePackages = [ pkgs.linuxPackages_latest.zenpower ]; + system.stateVersion = "25.11"; +} diff --git a/devices/ideapad-slim-5/hardware-configuration.nix b/devices/ideapad-slim-5/hardware-configuration.nix new file mode 100755 index 0000000..a1eee23 --- /dev/null +++ b/devices/ideapad-slim-5/hardware-configuration.nix @@ -0,0 +1,33 @@ +# Do not modify this file! It was generated by ‘nixos-generate-config’ +# and may be overwritten by future invocations. Please make changes +# to /etc/nixos/configuration.nix instead. +{ config, lib, pkgs, modulesPath, ... }: + +{ + imports = + [ (modulesPath + "/installer/scan/not-detected.nix") + ]; + + boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usb_storage" "usbhid" "sd_mod" "sdhci_pci" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ "kvm-amd" ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "/dev/disk/by-uuid/85ab0f38-b6e7-4046-a33b-ce7b9812b959"; + fsType = "ext4"; + }; + + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/2221-C55B"; + fsType = "vfat"; + options = [ "fmask=0022" "dmask=0022" ]; + }; + + swapDevices = + [ { device = "/dev/disk/by-uuid/20e229eb-f32e-4369-be96-25275ebc8ae3"; } + ]; + + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; + hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; +} diff --git a/flake.lock b/flake.lock new file mode 100644 index 0000000..9bae294 --- /dev/null +++ b/flake.lock @@ -0,0 +1,1063 @@ +{ + "nodes": { + "aquamarine": { + "inputs": { + "hyprutils": [ + "hyprland", + "hyprutils" + ], + "hyprwayland-scanner": [ + "hyprland", + "hyprwayland-scanner" + ], + "nixpkgs": [ + "hyprland", + "nixpkgs" + ], + "systems": [ + "hyprland", + "systems" + ] + }, + "locked": { + "lastModified": 1775558810, + "narHash": "sha256-fy95EdPnqQlpbP8+rk0yWKclWShCUS5VKs6P7/1MF2c=", + "owner": "hyprwm", + "repo": "aquamarine", + "rev": "7371b669b22aa2af980f913fc312a786d2f1abb2", + "type": "github" + }, + "original": { + "owner": "hyprwm", + "repo": "aquamarine", + "type": "github" + } + }, + "catppuccin": { + "inputs": { + "nixpkgs": "nixpkgs" + }, + "locked": { + "lastModified": 1775213373, + "narHash": "sha256-wJHsijC2l/E+ovmlpPGha8pXA6RHSwHWmBV97gvkmyI=", + "owner": "catppuccin", + "repo": "nix", + "rev": "ba73719e673e7c2d89ac2f8df0bc0d48983e4907", + "type": "github" + }, + "original": { + "owner": "catppuccin", + "repo": "nix", + "type": "github" + } + }, + "flake-compat": { + "flake": false, + "locked": { + "lastModified": 1767039857, + "narHash": "sha256-vNpUSpF5Nuw8xvDLj2KCwwksIbjua2LZCqhV1LNRDns=", + "owner": "NixOS", + "repo": "flake-compat", + "rev": "5edf11c44bc78a0d334f6334cdaf7d60d732daab", + "type": "github" + }, + "original": { + "owner": "NixOS", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_2": { + "locked": { + "lastModified": 1733328505, + "narHash": "sha256-NeCCThCEP3eCl2l/+27kNNK7QrwZB1IJCrXfrbv5oqU=", + "rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec", + "revCount": 69, + "type": "tarball", + "url": "https://api.flakehub.com/f/pinned/edolstra/flake-compat/1.1.0/01948eb7-9cba-704f-bbf3-3fa956735b52/source.tar.gz" + }, + "original": { + "type": "tarball", + "url": "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz" + } + }, + "flake-parts": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib" + }, + "locked": { + "lastModified": 1772408722, + "narHash": "sha256-rHuJtdcOjK7rAHpHphUb1iCvgkU3GpfvicLMwwnfMT0=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "f20dc5d9b8027381c474144ecabc9034d6a839a3", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "flake-parts", + "type": "github" + } + }, + "flake-parts_2": { + "inputs": { + "nixpkgs-lib": [ + "nixvim", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1768135262, + "narHash": "sha256-PVvu7OqHBGWN16zSi6tEmPwwHQ4rLPU9Plvs8/1TUBY=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "80daad04eddbbf5a4d883996a73f3f542fa437ac", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "flake-parts", + "type": "github" + } + }, + "flake-utils": { + "inputs": { + "systems": "systems" + }, + "locked": { + "lastModified": 1731533236, + "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_2": { + "inputs": { + "systems": "systems_3" + }, + "locked": { + "lastModified": 1731533236, + "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "gitignore": { + "inputs": { + "nixpkgs": [ + "hyprland", + "pre-commit-hooks", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1709087332, + "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=", + "owner": "hercules-ci", + "repo": "gitignore.nix", + "rev": "637db329424fd7e46cf4185293b9cc8c88c95394", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "gitignore.nix", + "type": "github" + } + }, + "home-manager": { + "inputs": { + "nixpkgs": [ + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1775425411, + "narHash": "sha256-KY6HsebJHEe5nHOWP7ur09mb0drGxYSzE3rQxy62rJo=", + "owner": "nix-community", + "repo": "home-manager", + "rev": "0d02ec1d0a05f88ef9e74b516842900c41f0f2fe", + "type": "github" + }, + "original": { + "owner": "nix-community", + "ref": "release-25.11", + "repo": "home-manager", + "type": "github" + } + }, + "honkai-railway-grub-theme": { + "inputs": { + "flake-utils": "flake-utils", + "nixpkgs": "nixpkgs_2" + }, + "locked": { + "lastModified": 1775016235, + "narHash": "sha256-/C6J0Zf6APHUrPXVkXTsOYcQWGzusoO3SVG8bXlLink=", + "owner": "voidlhf", + "repo": "StarRailGrubThemes", + "rev": "4a84e576bb544afbdfc76dbe40ffc50a5c2b16de", + "type": "github" + }, + "original": { + "owner": "voidlhf", + "repo": "StarRailGrubThemes", + "rev": "4a84e576bb544afbdfc76dbe40ffc50a5c2b16de", + "type": "github" + } + }, + "hyprcursor": { + "inputs": { + "hyprlang": [ + "hyprland", + "hyprlang" + ], + "nixpkgs": [ + "hyprland", + "nixpkgs" + ], + "systems": [ + "hyprland", + "systems" + ] + }, + "locked": { + "lastModified": 1772461003, + "narHash": "sha256-pVICsV7FtcEeVwg5y/LFh3XFUkVJninm/P1j/JHzEbM=", + "owner": "hyprwm", + "repo": "hyprcursor", + "rev": "b62396457b9cfe2ebf24fe05404b09d2a40f8ed7", + "type": "github" + }, + "original": { + "owner": "hyprwm", + "repo": "hyprcursor", + "type": "github" + } + }, + "hyprgraphics": { + "inputs": { + "hyprutils": [ + "hyprland", + "hyprutils" + ], + "nixpkgs": [ + "hyprland", + "nixpkgs" + ], + "systems": [ + "hyprland", + "systems" + ] + }, + "locked": { + "lastModified": 1775496928, + "narHash": "sha256-Ds759WU03mGWtu3I43J+5GF5Ni8TvF+GYQUFD+fVeMo=", + "owner": "hyprwm", + "repo": "hyprgraphics", + "rev": "cf95d93d17baa18f1d9b016b3afe27f820521a6e", + "type": "github" + }, + "original": { + "owner": "hyprwm", + "repo": "hyprgraphics", + "type": "github" + } + }, + "hyprland": { + "inputs": { + "aquamarine": "aquamarine", + "hyprcursor": "hyprcursor", + "hyprgraphics": "hyprgraphics", + "hyprland-guiutils": "hyprland-guiutils", + "hyprland-protocols": "hyprland-protocols", + "hyprlang": "hyprlang", + "hyprutils": "hyprutils", + "hyprwayland-scanner": "hyprwayland-scanner", + "hyprwire": "hyprwire", + "nixpkgs": "nixpkgs_3", + "pre-commit-hooks": "pre-commit-hooks", + "systems": "systems_2", + "xdph": "xdph" + }, + "locked": { + "lastModified": 1775578056, + "narHash": "sha256-TiSPoIM8EBf6Z6Hrne5wX4hPfss1xTRcRfTL6+DfmLo=", + "owner": "hyprwm", + "repo": "Hyprland", + "rev": "75dc67e63f1873f1e97f73daf0ce284f75afa97c", + "type": "github" + }, + "original": { + "owner": "hyprwm", + "repo": "Hyprland", + "type": "github" + } + }, + "hyprland-guiutils": { + "inputs": { + "aquamarine": [ + "hyprland", + "aquamarine" + ], + "hyprgraphics": [ + "hyprland", + "hyprgraphics" + ], + "hyprlang": [ + "hyprland", + "hyprlang" + ], + "hyprtoolkit": "hyprtoolkit", + "hyprutils": [ + "hyprland", + "hyprutils" + ], + "hyprwayland-scanner": [ + "hyprland", + "hyprwayland-scanner" + ], + "nixpkgs": [ + "hyprland", + "nixpkgs" + ], + "systems": [ + "hyprland", + "systems" + ] + }, + "locked": { + "lastModified": 1774710575, + "narHash": "sha256-p7Rcw13+gA4Z9EI3oGYe3neQ3FqyOOfZCleBTfhJ95Q=", + "owner": "hyprwm", + "repo": "hyprland-guiutils", + "rev": "0703df899520001209646246bef63358c9881e36", + "type": "github" + }, + "original": { + "owner": "hyprwm", + "repo": "hyprland-guiutils", + "type": "github" + } + }, + "hyprland-protocols": { + "inputs": { + "nixpkgs": [ + "hyprland", + "nixpkgs" + ], + "systems": [ + "hyprland", + "systems" + ] + }, + "locked": { + "lastModified": 1772460177, + "narHash": "sha256-/6G/MsPvtn7bc4Y32pserBT/Z4SUUdBd4XYJpOEKVR4=", + "owner": "hyprwm", + "repo": "hyprland-protocols", + "rev": "1cb6db5fd6bb8aee419f4457402fa18293ace917", + "type": "github" + }, + "original": { + "owner": "hyprwm", + "repo": "hyprland-protocols", + "type": "github" + } + }, + "hyprlang": { + "inputs": { + "hyprutils": [ + "hyprland", + "hyprutils" + ], + "nixpkgs": [ + "hyprland", + "nixpkgs" + ], + "systems": [ + "hyprland", + "systems" + ] + }, + "locked": { + "lastModified": 1772459629, + "narHash": "sha256-/iwvNUYShmmnwmz/czEUh6+0eF5vCMv0xtDW0STPIuM=", + "owner": "hyprwm", + "repo": "hyprlang", + "rev": "7615ee388de18239a4ab1400946f3d0e498a8186", + "type": "github" + }, + "original": { + "owner": "hyprwm", + "repo": "hyprlang", + "type": "github" + } + }, + "hyprtoolkit": { + "inputs": { + "aquamarine": [ + "hyprland", + "hyprland-guiutils", + "aquamarine" + ], + "hyprgraphics": [ + "hyprland", + "hyprland-guiutils", + "hyprgraphics" + ], + "hyprlang": [ + "hyprland", + "hyprland-guiutils", + "hyprlang" + ], + "hyprutils": [ + "hyprland", + "hyprland-guiutils", + "hyprutils" + ], + "hyprwayland-scanner": [ + "hyprland", + "hyprland-guiutils", + "hyprwayland-scanner" + ], + "nixpkgs": [ + "hyprland", + "hyprland-guiutils", + "nixpkgs" + ], + "systems": [ + "hyprland", + "hyprland-guiutils", + "systems" + ] + }, + "locked": { + "lastModified": 1772462885, + "narHash": "sha256-5pHXrQK9zasMnIo6yME6EOXmWGFMSnCITcfKshhKJ9I=", + "owner": "hyprwm", + "repo": "hyprtoolkit", + "rev": "9af245a69fa6b286b88ddfc340afd288e00a6998", + "type": "github" + }, + "original": { + "owner": "hyprwm", + "repo": "hyprtoolkit", + "type": "github" + } + }, + "hyprutils": { + "inputs": { + "nixpkgs": [ + "hyprland", + "nixpkgs" + ], + "systems": [ + "hyprland", + "systems" + ] + }, + "locked": { + "lastModified": 1774911391, + "narHash": "sha256-c4YVwO33Mmw+FIV8E0u3atJZagHvGTJ9Jai6RtiB8rE=", + "owner": "hyprwm", + "repo": "hyprutils", + "rev": "e6caa3d4d1427eedbdf556cf4ceb70f2d9c0b56d", + "type": "github" + }, + "original": { + "owner": "hyprwm", + "repo": "hyprutils", + "type": "github" + } + }, + "hyprwayland-scanner": { + "inputs": { + "nixpkgs": [ + "hyprland", + "nixpkgs" + ], + "systems": [ + "hyprland", + "systems" + ] + }, + "locked": { + "lastModified": 1772459835, + "narHash": "sha256-978jRz/y/9TKmZb/qD4lEYHCQGHpEXGqy+8X2lFZsak=", + "owner": "hyprwm", + "repo": "hyprwayland-scanner", + "rev": "0a692d4a645165eebd65f109146b8861e3a925e7", + "type": "github" + }, + "original": { + "owner": "hyprwm", + "repo": "hyprwayland-scanner", + "type": "github" + } + }, + "hyprwire": { + "inputs": { + "hyprutils": [ + "hyprland", + "hyprutils" + ], + "nixpkgs": [ + "hyprland", + "nixpkgs" + ], + "systems": [ + "hyprland", + "systems" + ] + }, + "locked": { + "lastModified": 1775414057, + "narHash": "sha256-mDpHnf+MkdOxEqIM1TnckYYh9p1SXR8B3KQfNZ12M8s=", + "owner": "hyprwm", + "repo": "hyprwire", + "rev": "86012ee01b0fdd8bf3101ef38816f2efbee42490", + "type": "github" + }, + "original": { + "owner": "hyprwm", + "repo": "hyprwire", + "type": "github" + } + }, + "ixx": { + "inputs": { + "flake-utils": [ + "nixvim", + "nuschtosSearch", + "flake-utils" + ], + "nixpkgs": [ + "nixvim", + "nuschtosSearch", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1754860581, + "narHash": "sha256-EM0IE63OHxXCOpDHXaTyHIOk2cNvMCGPqLt/IdtVxgk=", + "owner": "NuschtOS", + "repo": "ixx", + "rev": "babfe85a876162c4acc9ab6fb4483df88fa1f281", + "type": "github" + }, + "original": { + "owner": "NuschtOS", + "ref": "v0.1.1", + "repo": "ixx", + "type": "github" + } + }, + "niri": { + "inputs": { + "niri-stable": "niri-stable", + "niri-unstable": "niri-unstable", + "nixpkgs": "nixpkgs_4", + "nixpkgs-stable": "nixpkgs-stable", + "xwayland-satellite-stable": "xwayland-satellite-stable", + "xwayland-satellite-unstable": "xwayland-satellite-unstable" + }, + "locked": { + "lastModified": 1775566751, + "narHash": "sha256-5Xkx4NQvl2azAQe3lCZCMUx4FiwGOlEb+I4kyycQYw8=", + "owner": "sodiboo", + "repo": "niri-flake", + "rev": "6aa49a9c5b82911459e230db5bd64289082d4354", + "type": "github" + }, + "original": { + "owner": "sodiboo", + "repo": "niri-flake", + "type": "github" + } + }, + "niri-stable": { + "flake": false, + "locked": { + "lastModified": 1756556321, + "narHash": "sha256-RLD89dfjN0RVO86C/Mot0T7aduCygPGaYbog566F0Qo=", + "owner": "YaLTeR", + "repo": "niri", + "rev": "01be0e65f4eb91a9cd624ac0b76aaeab765c7294", + "type": "github" + }, + "original": { + "owner": "YaLTeR", + "ref": "v25.08", + "repo": "niri", + "type": "github" + } + }, + "niri-unstable": { + "flake": false, + "locked": { + "lastModified": 1775561155, + "narHash": "sha256-TK2IrqQivRcwqJa0suZMbcsN17CtA8Uu0v7CDnLATb0=", + "owner": "YaLTeR", + "repo": "niri", + "rev": "599db847f857b8a7ff78ce02f15acab5d5d9fee1", + "type": "github" + }, + "original": { + "owner": "YaLTeR", + "repo": "niri", + "type": "github" + } + }, + "nix-index-database": { + "inputs": { + "nixpkgs": [ + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1775365369, + "narHash": "sha256-DgH5mveLoau20CuTnaU5RXZWgFQWn56onQ4Du2CqYoI=", + "owner": "nix-community", + "repo": "nix-index-database", + "rev": "cef5cf82671e749ac87d69aadecbb75967e6f6c3", + "type": "github" + }, + "original": { + "owner": "nix-community", + "repo": "nix-index-database", + "type": "github" + } + }, + "nixcord": { + "inputs": { + "flake-compat": "flake-compat_2", + "flake-parts": "flake-parts", + "nixpkgs": "nixpkgs_5", + "nixpkgs-nixcord": "nixpkgs-nixcord" + }, + "locked": { + "lastModified": 1775609538, + "narHash": "sha256-wuEAtQEyYLSTljliQJfCktlaougrr2x72AL3elomMe8=", + "owner": "FlameFlag", + "repo": "nixcord", + "rev": "62128fa01d11c887437114248536438fd3add38d", + "type": "github" + }, + "original": { + "owner": "FlameFlag", + "repo": "nixcord", + "type": "github" + } + }, + "nixos-hardware": { + "locked": { + "lastModified": 1775490113, + "narHash": "sha256-2ZBhDNZZwYkRmefK5XLOusCJHnoeKkoN95hoSGgMxWM=", + "owner": "NixOS", + "repo": "nixos-hardware", + "rev": "c775c2772ba56e906cbeb4e0b2db19079ef11ff7", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "master", + "repo": "nixos-hardware", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1775036866, + "narHash": "sha256-ZojAnPuCdy657PbTq5V0Y+AHKhZAIwSIT2cb8UgAz/U=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "6201e203d09599479a3b3450ed24fa81537ebc4e", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib": { + "locked": { + "lastModified": 1772328832, + "narHash": "sha256-e+/T/pmEkLP6BHhYjx6GmwP5ivonQQn0bJdH9YrRB+Q=", + "owner": "nix-community", + "repo": "nixpkgs.lib", + "rev": "c185c7a5e5dd8f9add5b2f8ebeff00888b070742", + "type": "github" + }, + "original": { + "owner": "nix-community", + "repo": "nixpkgs.lib", + "type": "github" + } + }, + "nixpkgs-nixcord": { + "locked": { + "lastModified": 1773222311, + "narHash": "sha256-BHoB/XpbqoZkVYZCfXJXfkR+GXFqwb/4zbWnOr2cRcU=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0590cd39f728e129122770c029970378a79d076a", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-25.11", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-stable": { + "locked": { + "lastModified": 1775305101, + "narHash": "sha256-/74n1oQPtKG52Yw41cbToxspxHbYz6O3vi+XEw16Qe8=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "36a601196c4ebf49e035270e10b2d103fe39076b", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-25.11", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_2": { + "locked": { + "lastModified": 1774709303, + "narHash": "sha256-D3Q07BbIA2KnTcSXIqqu9P586uWxN74zNoCH3h2ESHg=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "8110df5ad7abf5d4c0f6fb0f8f978390e77f9685", + "type": "github" + }, + "original": { + "owner": "nixos", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_3": { + "locked": { + "lastModified": 1775423009, + "narHash": "sha256-vPKLpjhIVWdDrfiUM8atW6YkIggCEKdSAlJPzzhkQlw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "68d8aa3d661f0e6bd5862291b5bb263b2a6595c9", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_4": { + "locked": { + "lastModified": 1775423009, + "narHash": "sha256-vPKLpjhIVWdDrfiUM8atW6YkIggCEKdSAlJPzzhkQlw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "68d8aa3d661f0e6bd5862291b5bb263b2a6595c9", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_5": { + "locked": { + "lastModified": 1773222311, + "narHash": "sha256-BHoB/XpbqoZkVYZCfXJXfkR+GXFqwb/4zbWnOr2cRcU=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0590cd39f728e129122770c029970378a79d076a", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-25.11", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_6": { + "locked": { + "lastModified": 1775305101, + "narHash": "sha256-/74n1oQPtKG52Yw41cbToxspxHbYz6O3vi+XEw16Qe8=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "36a601196c4ebf49e035270e10b2d103fe39076b", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-25.11", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixvim": { + "inputs": { + "flake-parts": "flake-parts_2", + "nixpkgs": [ + "nixpkgs" + ], + "nuschtosSearch": "nuschtosSearch", + "systems": "systems_4" + }, + "locked": { + "lastModified": 1769049374, + "narHash": "sha256-h0Os2qqNyycDY1FyZgtbn28VF1ySP74/n0f+LDd8j+w=", + "owner": "nix-community", + "repo": "nixvim", + "rev": "b8f76bf5751835647538ef8784e4e6ee8deb8f95", + "type": "github" + }, + "original": { + "owner": "nix-community", + "ref": "nixos-25.11", + "repo": "nixvim", + "type": "github" + } + }, + "nuschtosSearch": { + "inputs": { + "flake-utils": "flake-utils_2", + "ixx": "ixx", + "nixpkgs": [ + "nixvim", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1768249818, + "narHash": "sha256-ANfn5OqIxq3HONPIXZ6zuI5sLzX1sS+2qcf/Pa0kQEc=", + "owner": "NuschtOS", + "repo": "search", + "rev": "b6f77b88e9009bfde28e2130e218e5123dc66796", + "type": "github" + }, + "original": { + "owner": "NuschtOS", + "repo": "search", + "type": "github" + } + }, + "pre-commit-hooks": { + "inputs": { + "flake-compat": "flake-compat", + "gitignore": "gitignore", + "nixpkgs": [ + "hyprland", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1775036584, + "narHash": "sha256-zW0lyy7ZNNT/x8JhzFHBsP2IPx7ATZIPai4FJj12BgU=", + "owner": "cachix", + "repo": "git-hooks.nix", + "rev": "4e0eb042b67d863b1b34b3f64d52ceb9cd926735", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "git-hooks.nix", + "type": "github" + } + }, + "root": { + "inputs": { + "catppuccin": "catppuccin", + "home-manager": "home-manager", + "honkai-railway-grub-theme": "honkai-railway-grub-theme", + "hyprland": "hyprland", + "niri": "niri", + "nix-index-database": "nix-index-database", + "nixcord": "nixcord", + "nixos-hardware": "nixos-hardware", + "nixpkgs": "nixpkgs_6", + "nixvim": "nixvim", + "unstablepkgs": "unstablepkgs" + } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_2": { + "locked": { + "lastModified": 1689347949, + "narHash": "sha256-12tWmuL2zgBgZkdoB6qXZsgJEH9LR3oUgpaQq2RbI80=", + "owner": "nix-systems", + "repo": "default-linux", + "rev": "31732fcf5e8fea42e59c2488ad31a0e651500f68", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default-linux", + "type": "github" + } + }, + "systems_3": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_4": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "unstablepkgs": { + "locked": { + "lastModified": 1775423009, + "narHash": "sha256-vPKLpjhIVWdDrfiUM8atW6YkIggCEKdSAlJPzzhkQlw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "68d8aa3d661f0e6bd5862291b5bb263b2a6595c9", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "xdph": { + "inputs": { + "hyprland-protocols": [ + "hyprland", + "hyprland-protocols" + ], + "hyprlang": [ + "hyprland", + "hyprlang" + ], + "hyprutils": [ + "hyprland", + "hyprutils" + ], + "hyprwayland-scanner": [ + "hyprland", + "hyprwayland-scanner" + ], + "nixpkgs": [ + "hyprland", + "nixpkgs" + ], + "systems": [ + "hyprland", + "systems" + ] + }, + "locked": { + "lastModified": 1773601989, + "narHash": "sha256-2tJf/CQoHApoIudxHeJye+0Ii7scR0Yyi7pNiWk0Hn8=", + "owner": "hyprwm", + "repo": "xdg-desktop-portal-hyprland", + "rev": "a9b862d1aa000a676d310cc62d249f7ad726233d", + "type": "github" + }, + "original": { + "owner": "hyprwm", + "repo": "xdg-desktop-portal-hyprland", + "type": "github" + } + }, + "xwayland-satellite-stable": { + "flake": false, + "locked": { + "lastModified": 1755491097, + "narHash": "sha256-m+9tUfsmBeF2Gn4HWa6vSITZ4Gz1eA1F5Kh62B0N4oE=", + "owner": "Supreeeme", + "repo": "xwayland-satellite", + "rev": "388d291e82ffbc73be18169d39470f340707edaa", + "type": "github" + }, + "original": { + "owner": "Supreeeme", + "ref": "v0.7", + "repo": "xwayland-satellite", + "type": "github" + } + }, + "xwayland-satellite-unstable": { + "flake": false, + "locked": { + "lastModified": 1773622265, + "narHash": "sha256-wToKwH7IgWdGLMSIWksEDs4eumR6UbbsuPQ42r0oTXQ=", + "owner": "Supreeeme", + "repo": "xwayland-satellite", + "rev": "a879e5e0896a326adc79c474bf457b8b99011027", + "type": "github" + }, + "original": { + "owner": "Supreeeme", + "repo": "xwayland-satellite", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..c0b05da --- /dev/null +++ b/flake.nix @@ -0,0 +1,70 @@ +{ + description = "The Asa's nix configurations"; + + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11"; + unstablepkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + nixos-hardware.url = "github:NixOS/nixos-hardware/master"; + catppuccin.url = "github:catppuccin/nix"; + + niri.url = "github:sodiboo/niri-flake"; + hyprland.url = "github:hyprwm/Hyprland"; + nixcord.url = "github:FlameFlag/nixcord"; + + honkai-railway-grub-theme.url = "github:voidlhf/StarRailGrubThemes/4a84e576bb544afbdfc76dbe40ffc50a5c2b16de"; + + nix-index-database = { + url = "github:nix-community/nix-index-database"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + + home-manager = { + url = "github:nix-community/home-manager/release-25.11"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + + nixvim = { + url = "github:nix-community/nixvim/nixos-25.11"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + }; + + outputs = + { + self, + nixpkgs, + unstablepkgs, + ... + }@inputs: + let + libs = import ./libs/default.nix inputs; + custom = import ./packages/default.nix inputs; + unstable = import unstablepkgs { + system = "x86_64-linux"; + config.allowUnfree = true; + }; + in + { + nixosConfigurations = { + ideapad-slim-5 = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + specialArgs = { + inherit + self + custom + libs + unstable + inputs + ; + }; + modules = [ + inputs.nixos-hardware.nixosModules.lenovo-ideapad-slim-5 + inputs.nix-index-database.nixosModules.default + inputs.home-manager.nixosModules.default + (libs.root "/devices/ideapad-slim-5/configuration.nix") + ]; + }; + }; + }; +} + diff --git a/home/asakiyuki/configuration.nix b/home/asakiyuki/configuration.nix new file mode 100644 index 0000000..6cca440 --- /dev/null +++ b/home/asakiyuki/configuration.nix @@ -0,0 +1,43 @@ +{ + inputs, + config, + pkgs, + custom, + ... +}: +let + osconfig = config; +in +{ + users.users.asakiyuki = { + isNormalUser = true; + extraGroups = [ "wheel" ]; + }; + + home-manager.users.asakiyuki = { + _module.args = { inherit inputs osconfig custom; }; + imports = [ + ./modules/programs.nix + ./modules/files.nix + + ../../modules/features/home/theme.nix + + inputs.catppuccin.homeModules.catppuccin + inputs.nixvim.homeModules.nixvim + inputs.nixcord.homeModules.nixcord + inputs.niri.homeModules.niri + ]; + + home = { + username = "asakiyuki"; + stateVersion = "25.11"; + pointerCursor = + (custom.cursors { + name = osconfig.device.cursors; + size = 48; + }) + { pkgs = pkgs; }; + }; + }; +} + diff --git a/home/asakiyuki/modules/env.nix b/home/asakiyuki/modules/env.nix new file mode 100644 index 0000000..31d7eb7 --- /dev/null +++ b/home/asakiyuki/modules/env.nix @@ -0,0 +1,5 @@ +{ ... }: { + home.sessionVariables = { + QT_QPA_PLATFORMTHEME = "qt6ct"; + }; +} \ No newline at end of file diff --git a/home/asakiyuki/modules/files.nix b/home/asakiyuki/modules/files.nix new file mode 100644 index 0000000..189fdb1 --- /dev/null +++ b/home/asakiyuki/modules/files.nix @@ -0,0 +1,19 @@ +{ pkgs, osconfig, ... }: +{ + home.file = { + ".config/qt5ct/colors/Catppuccin-Mocha.conf".source = "${pkgs.catppuccin-qt5ct}/share/qt5ct/colors/Catppuccin-Mocha.conf"; + ".config/qt6ct/colors/Catppuccin-Mocha.conf".source = "${pkgs.catppuccin-qt5ct}/share/qt5ct/colors/Catppuccin-Mocha.conf"; + }; + + xdg.configFile = { + kdeglobals.text = builtins.readFile ((pkgs.catppuccin-kde.override { flavour = ["mocha"]; accents = ["sapphire"]; }) + "/share/color-schemes/CatppuccinMochaSapphire.colors") + + '' + + [UiSettings] + ColorScheme=qt6ct + + [General] + TerminalApplication=${osconfig.device.programs.terminal} + ''; + }; +} \ No newline at end of file diff --git a/home/asakiyuki/modules/programs.nix b/home/asakiyuki/modules/programs.nix new file mode 100644 index 0000000..3076c0a --- /dev/null +++ b/home/asakiyuki/modules/programs.nix @@ -0,0 +1,20 @@ +{ lib, osconfig, ... }: { + imports = [ + (../../../modules/features/home/ghostty.nix) + (../../../modules/features/home/kitty.nix) + + (../../../modules/features/home/bash.nix) + (../../../modules/features/home/starship.nix) + (../../../modules/features/home/tmux.nix) + (../../../modules/features/home/fastfetch.nix) + (../../../modules/features/home/vscode.nix) + (../../../modules/features/home/obs-studio.nix) + (../../../modules/features/home/xdg.nix) + (../../../modules/features/home/packages.nix) + + (../../../modules/programs/nixvim/_nixvim.nix) + (../../../modules/programs/nixcord/default.nix) + (../../../modules/features/home/niri.nix) + (../../../modules/programs/hyprland/default.nix) + ]; +} \ No newline at end of file diff --git a/host/desktop/default.nix b/host/desktop/default.nix new file mode 100644 index 0000000..885fd44 --- /dev/null +++ b/host/desktop/default.nix @@ -0,0 +1,28 @@ +{ libs, ... }: +{ + imports = [ + (libs.root "/modules/hardware/default.nix") + + (libs.root "/modules/fonts.nix") + + (libs.root "/modules/features/system/packages.nix") + (libs.root "/modules/features/system/boot.nix") + (libs.root "/modules/features/system/sddm.nix") + (libs.root "/modules/features/system/gdm.nix") + (libs.root "/modules/features/system/kde-plasma.nix") + (libs.root "/modules/features/system/gnome.nix") + (libs.root "/modules/features/system/niri.nix") + (libs.root "/modules/features/system/hyprland.nix") + (libs.root "/modules/features/system/input-method.nix") + (libs.root "/modules/features/system/steam.nix") + (libs.root "/modules/features/system/nix-dl.nix") + (libs.root "/modules/features/system/flatpak.nix") + + (libs.root "/modules/services/default.nix") + (libs.root "/modules/home-manager.nix") + + (libs.root "/options/desktop/default.nix") + (libs.root "/overlays/nixpkgs.nix") + ]; +} + diff --git a/libs/default.nix b/libs/default.nix new file mode 100644 index 0000000..1d9bb1b --- /dev/null +++ b/libs/default.nix @@ -0,0 +1,3 @@ +{ ... }: { + root = path: ../. + path; +} \ No newline at end of file diff --git a/modules/features/home/bash.nix b/modules/features/home/bash.nix new file mode 100644 index 0000000..a826f42 --- /dev/null +++ b/modules/features/home/bash.nix @@ -0,0 +1,62 @@ +{ lib, osconfig, ... }: { + programs.bash = { + enable = true; + shellAliases = { + cls = "clear"; + cleanup = "sudo nix-collect-garbage -d"; + cls-log = "sudo journalctl --vacuum-time=1s"; + + logout = "pkill -KILL -u $USER"; + + nrs = "sudo nixos-rebuild switch --flake /etc/nixos#${osconfig.device.flake-name}"; + wss = "waydroid session stop; exit;"; + flake-upgrade = "nix flake update"; + spf = "superfile"; + }; + + shellOptions = [ + "histappend" + "checkwinsize" + "extglob" + "globstar" + "checkjobs" + "autocd" + ]; + + initExtra = '' + function git-commit() { + git add . + git commit -m "$1" + } + + function git-push() { + git-commit "$1" + git push origin HEAD + } + + function git-pull() { + git fetch origin HEAD + git pull origin HEAD + } + + function get-hash() { + nix hash to-sri --type sha256 $(nix-prefetch-url --unpack "$1") + } + '' + + lib.optionalString osconfig.device.programs.tmux.enable '' + allowed_terms=("xterm-kitty" "xterm-ghostty") + + should_run_tmux=false + for term in "${"$" + "{allowed_terms[@]" + "}"}"; do + if [[ "$TERM" == "$term" ]]; then + should_run_tmux=true + break + fi + done + + if [ -z "$TMUX" ] && [ "$should_run_tmux" = true ]; then + exec tmux + fi + ''; + }; +} \ No newline at end of file diff --git a/modules/features/home/fastfetch.nix b/modules/features/home/fastfetch.nix new file mode 100644 index 0000000..57a8302 --- /dev/null +++ b/modules/features/home/fastfetch.nix @@ -0,0 +1,176 @@ +{ lib, osconfig, ... }: +{ + programs.fastfetch = lib.mkIf osconfig.device.programs.fastfetch.enable { + enable = true; + settings = { + logo = { + padding.top = 1; + color = { + "1" = "#89b4fa"; + "2" = "#cdd6f4"; + "3" = "#89b4fa"; + "4" = "#cdd6f4"; + "5" = "#89b4fa"; + "6" = "#cdd6f4"; + }; + }; + + display = { + color = { + title = "#cdd6f4"; + output = "#cdd6f4"; + separator = "black"; + }; + + bar = { + width = 10; + charTotal = " "; + border.left = "["; + border.right = "]"; + char.elapsed = "█"; + color = { + border = "green"; + elapsed = "green"; + total = "black"; + }; + }; + + percent = { + type = 3; + color = { + green = "green"; + yellow = "yellow"; + red = "red"; + }; + }; + + separator = " "; + brightColor = true; + }; + + modules = [ + { + type = "title"; + format = " {user-name}@{host-name}"; + outputColor = "bright_yellow"; + } + + { + type = "separator"; + string = "─"; + length = 24; + outputColor = "white"; + } + + { + type = "os"; + key = "╭─"; + keyColor = "green"; + } + { + type = "kernel"; + key = "├─󰌽"; + keyColor = "green"; + } + { + type = "shell"; + key = "├─"; + keyColor = "green"; + } + { + type = "packages"; + key = "├─󰆧"; + keyColor = "green"; + } + { + type = "uptime"; + key = "╰─󱑁"; + keyColor = "green"; + } + + "break" + + { + type = "host"; + keyColor = "blue"; + key = "╭─󰧨"; + } + { + type = "cpu"; + key = "├─"; + keyColor = "blue"; + } + { + type = "gpu"; + key = "├─"; + keyColor = "blue"; + } + { + type = "sound"; + key = "├─"; + format = "{name}"; + keyColor = "blue"; + } + { + type = "memory"; + format = "{percentage-bar} {used} / {total}"; + key = "├─"; + keyColor = "blue"; + } + { + type = "disk"; + format = "{size-percentage-bar} {name} ({mountpoint}) {size-used} / {size-total} - {filesystem}"; + key = "├─󰋊"; + keyColor = "blue"; + } + { + type = "localip"; + key = "╰─"; + keyColor = "blue"; + } + + "break" + + { + type = "terminal"; + key = "╭─"; + keyColor = "yellow"; + } + { + type = "wm"; + key = "├─󰨇"; + keyColor = "yellow"; + } + { + type = "de"; + key = "├─󰨇"; + keyColor = "yellow"; + } + { + type = "bios"; + key = "├─"; + keyColor = "yellow"; + } + { + type = "theme"; + key = "├─󱓓"; + keyColor = "yellow"; + } + { + type = "icons"; + key = "├─󱓓"; + keyColor = "yellow"; + } + { + type = "cursor"; + key = "╰─󱓓"; + keyColor = "yellow"; + } + + "break" + "colors" + ]; + }; + }; +} + diff --git a/modules/features/home/ghostty.nix b/modules/features/home/ghostty.nix new file mode 100644 index 0000000..edb78b4 --- /dev/null +++ b/modules/features/home/ghostty.nix @@ -0,0 +1,50 @@ +{ lib, osconfig, ... }: { + programs.ghostty = lib.mkIf (osconfig.device.programs.terminal == "ghostty") { + enable = true; + settings = { + theme = "catppuccin-mocha"; + + font-size = 10; + font-family = "SauceCodePro NFP Bold"; + + window-width = 230; + window-height = 68; + + window-padding-x = 5; + window-padding-y = 0; + + keybind = [ + "ctrl+shift+n=unbind" + "ctrl+shift+i=unbind" + ]; + }; + + themes = { + catppuccin-mocha = { + background = "1e1e2e"; + cursor-color = "f5e0dc"; + foreground = "cdd6f4"; + palette = [ + "0=#45475a" + "1=#f38ba8" + "2=#a6e3a1" + "3=#f9e2af" + "4=#89b4fa" + "5=#f5c2e7" + "6=#94e2d5" + "7=#bac2de" + "8=#585b70" + "9=#f38ba8" + "10=#a6e3a1" + "11=#f9e2af" + "12=#89b4fa" + "13=#f5c2e7" + "14=#94e2d5" + "15=#a6adc8" + ]; + selection-background = "353749"; + selection-foreground = "cdd6f4"; + }; + }; + }; +} \ No newline at end of file diff --git a/modules/features/home/kitty.nix b/modules/features/home/kitty.nix new file mode 100644 index 0000000..7631d3e --- /dev/null +++ b/modules/features/home/kitty.nix @@ -0,0 +1,75 @@ +{ lib, osconfig, ... }: { + programs.kitty = lib.mkIf (osconfig.device.programs.terminal == "kitty") { + enable = true; + + keybindings = { + "ctrl+c" = "copy_to_clipboard"; + "ctrl+v" = "paste_from_clipboard"; + }; + + settings = { + window_padding_width = 2; + window_padding_height = 2; + + cursor_shape = "beam"; + # background_opacity = 0.5; + + font_family = "Tahoma"; + font_size = 9; + + foreground = "#cdd6f4"; + background = "#1e1e2e"; + selection_foreground = "#1e1e2e"; + selection_background = "#f5e0dc"; + + cursor = "#f5e0dc"; + cursor_text_color = "#1e1e2e"; + + url_color = "#f5e0dc"; + + active_border_color = "#b4befe"; + inactive_border_color = "#6c7086"; + bell_border_color = "#f9e2af"; + + wayland_titlebar_color = "system"; + macos_titlebar_color = "system"; + + active_tab_foreground = "#11111b"; + active_tab_background = "#cba6f7"; + inactive_tab_foreground = "#cdd6f4"; + inactive_tab_background = "#181825"; + tab_bar_background = "#11111b"; + + mark1_foreground = "#1e1e2e"; + mark1_background = "#b4befe"; + mark2_foreground = "#1e1e2e"; + mark2_background = "#cba6f7"; + mark3_foreground = "#1e1e2e"; + mark3_background = "#74c7ec"; + + color0 = "#45475a"; + color8 = "#585b70"; + + color1 = "#f38ba8"; + color9 = "#f38ba8"; + + color2 = "#a6e3a1"; + color10 = "#a6e3a1"; + + color3 = "#f9e2af"; + color11 = "#f9e2af"; + + color4 = "#89b4fa"; + color12 = "#89b4fa"; + + color5 = "#f5c2e7"; + color13 = "#f5c2e7"; + + color6 = "#94e2d5"; + color14 = "#94e2d5"; + + color7 = "#bac2de"; + color15 = "#a6adc8"; + }; + }; +} \ No newline at end of file diff --git a/modules/features/home/niri.nix b/modules/features/home/niri.nix new file mode 100644 index 0000000..5e99097 --- /dev/null +++ b/modules/features/home/niri.nix @@ -0,0 +1,11 @@ +{ osconfig, lib, ... }: { + programs.niri = lib.mkIf osconfig.device.wm.niri.enable { + enable = true; + settings = { + binds = { + # "Ctrl+Alt+T" = "ghostty"; + # "Mod+D" = "fuzzel"; + }; + }; + }; +} \ No newline at end of file diff --git a/modules/features/home/obs-studio.nix b/modules/features/home/obs-studio.nix new file mode 100644 index 0000000..5ac8cac --- /dev/null +++ b/modules/features/home/obs-studio.nix @@ -0,0 +1,5 @@ +{ pkgs, custom, lib, osconfig, ... }: +lib.mkIf osconfig.device.programs.obs-studio.enable { + programs.obs-studio.enable = true; + home.file.".config/obs-studio/themes".source = pkgs.callPackage custom.catppuccin-obs { }; +} \ No newline at end of file diff --git a/modules/features/home/packages.nix b/modules/features/home/packages.nix new file mode 100644 index 0000000..eec6614 --- /dev/null +++ b/modules/features/home/packages.nix @@ -0,0 +1,14 @@ +{ + pkgs, + lib, + osconfig, + ... +}: +{ + home.packages = with pkgs; [ + hyprshot + antigravity + + (lib.mkIf osconfig.device.programs.cider-2.enable cider-2) + ]; +} diff --git a/modules/features/home/starship.nix b/modules/features/home/starship.nix new file mode 100644 index 0000000..4743be5 --- /dev/null +++ b/modules/features/home/starship.nix @@ -0,0 +1,81 @@ +{ lib, osconfig, ... }: { + programs.starship = lib.mkIf osconfig.device.programs.starship.enable { + enable = true; + settings = { + add_newline = true; + scan_timeout = 10; + + format = '' + $os $shell $cmake$java$nodejs$git_branch$character + $cmd_duration$sudo$directory > ''; + + sudo = { + format = "[$symbol]($style) "; + symbol = ""; + disabled = false; + }; + + java = { + format = "[$symbol $version]($style) "; + symbol = ""; + }; + + cmake = { + format = "[$symbol $version](bold blue) "; + symbol = ""; + }; + + nodejs = { + format = "[$symbol $version](bold green) "; + symbol = "󰎙"; + }; + + git_branch = { + format = "[$symbol $branch]($style) "; + symbol = ""; + style = "red"; + disabled = false; + }; + + directory = { + format = "[$read_only]($read_only_style)[$path]($style)"; + style = "#2e8be8"; + truncation_length = 2; + read_only = "󰌾 "; + }; + + character = { + success_symbol = "[](green)"; + error_symbol = "[](red)"; + disabled = false; + }; + + cmd_duration = { + min_time = 1; + format = "[\\[$duration\\]]($style) "; + style = "#C0C0C0"; + show_milliseconds = true; + }; + + shell = { + disabled = false; + bash_indicator = "bash"; + fish_indicator = "fish"; + zsh_indicator = "zsh"; + powershell_indicator = "pwsh"; + format = "[$indicator]($style)"; + style = "white"; + }; + + os = { + format = "[$symbol]($style)"; + disabled = false; + symbols = { + Arch = "[󰣇](bold blue)"; + Windows = "[](bold blue)"; + NixOS = "[](bold blue)"; + }; + }; + }; + }; +} diff --git a/modules/features/home/theme.nix b/modules/features/home/theme.nix new file mode 100644 index 0000000..bcd3751 --- /dev/null +++ b/modules/features/home/theme.nix @@ -0,0 +1,50 @@ +{ pkgs, lib, ... }: +let + catppuccin-gtk = pkgs.catppuccin-gtk.override { + variant = "mocha"; + accents = [ "sapphire" ]; + size = "compact"; + }; +in +{ + home.activation.copyGtkTheme = lib.hm.dag.entryAfter [ "writeBoundary" ] '' + mkdir -p "$HOME/.themes/" + + if [ ! -d "$HOME/.themes/catppuccin-mocha-sapphire-compact" ]; then + cp -r "${catppuccin-gtk}/share/themes/catppuccin-mocha-sapphire-compact" "$HOME/.themes/" + fi + + if [ ! -d "$HOME/.themes/catppuccin-mocha-sapphire-compact-hdpi" ]; then + cp -r "${catppuccin-gtk}/share/themes/catppuccin-mocha-sapphire-compact-hdpi" "$HOME/.themes/" + fi + + if [ ! -d "$HOME/.themes/catppuccin-mocha-sapphire-compact-xhdpi" ]; then + cp -r "${catppuccin-gtk}/share/themes/catppuccin-mocha-sapphire-compact-xhdpi" "$HOME/.themes/" + fi + ''; + + # QT + qt = { + enable = true; + platformTheme.name = "qtct"; + style = { + package = with pkgs; [ + catppuccin-qt5ct + catppuccin-kde + kdePackages.breeze + ]; + }; + }; + + # GTK + gtk.theme.name = "catppuccin-mocha-sapphire-compact"; + + # Catppuccin + catppuccin = { + accent = "blue"; + flavor = "mocha"; + + fcitx5.enable = true; + obs.enable = true; + }; +} \ No newline at end of file diff --git a/modules/features/home/tmux.nix b/modules/features/home/tmux.nix new file mode 100644 index 0000000..1a2b2c0 --- /dev/null +++ b/modules/features/home/tmux.nix @@ -0,0 +1,81 @@ +{ lib, osconfig, pkgs, ... }: +let + TOP_PANEL = '' + set -g pane-border-status top + set -g pane-border-lines single + set -g pane-border-indicators colour + + set -g pane-border-format "#{E:@asa-module-icon} #{pane_index} #{E:@asa-module-text} #{pane_current_path} #[default]" + ''; + + OPTIONS = '' + set-option -g destroy-unattached on + set -g allow-passthrough on + ''; + + BINDS = '' + unbind r + bind r source-file ~/.config/tmux/tmux.conf; + ''; + + BOTTOM_PANEL = '' + set -g status-justify "centre" + + set -g window-status-format "#{E:@asa-module-icon} #I #{E:@asa-module-text} #W " + set -g window-status-current-format "#{E:@asa-module-icon} #I #{E:@asa-module-text} #W " + + set -gg status-left "#{E:@asa-module-text} %A %d/%m/%Y #[default] " + set -ag status-left "#{E:@asa-module-text} %I:%M %p #[default] " + set -g status-left-length 100 + + set -g status-right "#{E:@asa-module-icon}  #{E:@asa-module-text} #S #[default] " + set -ag status-right "#{E:@asa-module-icon} CPU #{E:@asa-module-text} #{cpu_percentage} #[default] " + set -ag status-right "#{E:@asa-module-icon} RAM #{E:@asa-module-text} #{ram_percentage} " + set -g status-right-length 100 + + setw -g automatic-rename off + ''; + + CATPPUCCIN = '' + set -g @catppuccin_flavor 'mocha' + set -ogq @asa-module-icon "#[bg=#{E:@thm_sapphire},fg=#{E:@thm_surface_0}]" + set -ogq @asa-module-text "#[bg=#{E:@thm_surface_0},fg=#{E:@thm_fg}]" + ''; + + YANK = '' + set -g @yank_selection 'primary' + set -g @yank_selection_mouse 'primary' + ''; + + EXTRA_CONFIG = '' + bind-key -T copy-mode-vi v send-keys -X begin-selection + bind-key -T copy-mode-vi V send-keys -X select-line + bind-key -T copy-mode-vi C-v send-keys -X rectangle-toggle + bind-key -T copy-mode-vi y send-keys -X copy-selection-and-cancel + ''; +in +{ + programs.tmux = lib.mkIf osconfig.device.programs.tmux.enable { + enable = true; + keyMode = "vi"; + disableConfirmationPrompt = true; + prefix = "c-a"; + + extraConfig = TOP_PANEL + OPTIONS + BINDS + EXTRA_CONFIG; + + plugins = with pkgs.tmuxPlugins; [ + { + plugin = yank; + extraConfig = YANK; + } + { + plugin = catppuccin; + extraConfig = CATPPUCCIN; + } + { + plugin = cpu; + extraConfig = BOTTOM_PANEL; + } + ]; + }; +} diff --git a/modules/features/home/vscode.nix b/modules/features/home/vscode.nix new file mode 100644 index 0000000..3aa606a --- /dev/null +++ b/modules/features/home/vscode.nix @@ -0,0 +1,5 @@ +{ ... }: { + programs.vscode = { + enable = true; + }; +} \ No newline at end of file diff --git a/modules/features/home/xdg.nix b/modules/features/home/xdg.nix new file mode 100644 index 0000000..1eb7cd0 --- /dev/null +++ b/modules/features/home/xdg.nix @@ -0,0 +1,14 @@ +{ pkgs, lib, osconfig, ... }: { + xdg.portal = lib.mkIf osconfig.device.wm.hyprland.enable { + enable = true; + xdgOpenUsePortal = true; + config = { + common.default = ["gtk"]; + hyprland.default = ["gtk" "hyprland"]; + }; + extraPortals = [ + pkgs.xdg-desktop-portal-gtk + pkgs.xdg-desktop-portal-hyprland + ]; + }; +} \ No newline at end of file diff --git a/modules/features/system/boot.nix b/modules/features/system/boot.nix new file mode 100644 index 0000000..f19f953 --- /dev/null +++ b/modules/features/system/boot.nix @@ -0,0 +1,24 @@ +{ inputs, pkgs, libs, ... }: let + background = libs.root "/assets/grub/background.png"; + baseTheme = inputs.honkai-railway-grub-theme.packages.${pkgs.stdenv.hostPlatform.system}.cyrene-grub-theme; +in { + boot = { + loader = { + efi.canTouchEfiVariables = true; + + grub = rec { + enable = true; + device = "nodev"; + efiSupport = true; + useOSProber = true; + splashImage = background; + theme = pkgs.runCommand "my-grub-theme" { } '' + mkdir -p $out + cp -r ${baseTheme}/* $out/ + chmod -R u+w $out + cp ${background} $out/background.png + ''; + }; + }; + }; +} \ No newline at end of file diff --git a/modules/features/system/flatpak.nix b/modules/features/system/flatpak.nix new file mode 100644 index 0000000..b362b71 --- /dev/null +++ b/modules/features/system/flatpak.nix @@ -0,0 +1,5 @@ +{ lib, config, ... }: { + services.flatpak = lib.mkIf config.device.flatpak.enable { + enable = true; + }; +} \ No newline at end of file diff --git a/modules/features/system/gdm.nix b/modules/features/system/gdm.nix new file mode 100644 index 0000000..4583e78 --- /dev/null +++ b/modules/features/system/gdm.nix @@ -0,0 +1,5 @@ +{ lib, config, ... }: { + services = lib.mkIf config.device.dm.gdm.enable { + displayManager.gdm.enable = true; + }; +} \ No newline at end of file diff --git a/modules/features/system/gnome.nix b/modules/features/system/gnome.nix new file mode 100644 index 0000000..b434dea --- /dev/null +++ b/modules/features/system/gnome.nix @@ -0,0 +1,5 @@ +{ lib, config, ... }: { + services = lib.mkIf config.device.de.gnome.enable { + desktopManager.gnome.enable = true; + }; +} \ No newline at end of file diff --git a/modules/features/system/hyprland.nix b/modules/features/system/hyprland.nix new file mode 100644 index 0000000..8500ce4 --- /dev/null +++ b/modules/features/system/hyprland.nix @@ -0,0 +1,5 @@ +{ lib, config, ... }: { + programs.hyprland = lib.mkIf config.device.wm.hyprland.enable { + enable = true; + }; +} \ No newline at end of file diff --git a/modules/features/system/input-method.nix b/modules/features/system/input-method.nix new file mode 100644 index 0000000..c2ca486 --- /dev/null +++ b/modules/features/system/input-method.nix @@ -0,0 +1,10 @@ +{ pkgs, ... }: { + i18n.inputMethod = { + enable = true; + type = "fcitx5"; + fcitx5.addons = with pkgs; [ + # fcitx5-bamboo + kdePackages.fcitx5-unikey + ]; + }; +} \ No newline at end of file diff --git a/modules/features/system/kde-plasma.nix b/modules/features/system/kde-plasma.nix new file mode 100644 index 0000000..b615e2e --- /dev/null +++ b/modules/features/system/kde-plasma.nix @@ -0,0 +1,6 @@ +{ lib, config, ... }: { + services = lib.mkIf config.device.de.kdePlasma.enable { + desktopManager.plasma6.enable = true; + xserver.enable = true; + }; +} \ No newline at end of file diff --git a/modules/features/system/niri.nix b/modules/features/system/niri.nix new file mode 100644 index 0000000..8928447 --- /dev/null +++ b/modules/features/system/niri.nix @@ -0,0 +1,4 @@ +{ lib, config, ... }: { + programs.niri.enable = lib.mkIf config.device.wm.niri.enable true; + services.xserver.enable = lib.mkIf config.device.wm.niri.enable true; +} \ No newline at end of file diff --git a/modules/features/system/nix-dl.nix b/modules/features/system/nix-dl.nix new file mode 100644 index 0000000..a43a7a7 --- /dev/null +++ b/modules/features/system/nix-dl.nix @@ -0,0 +1,14 @@ +{ pkgs, ... }: { + programs.nix-ld = { + enable = true; + libraries = with pkgs; [ + stdenv.cc.cc + zlib + brotli + unixODBC + zstd + glib + stdenv.cc.cc.lib + ]; + }; +} \ No newline at end of file diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix new file mode 100644 index 0000000..1a8805b --- /dev/null +++ b/modules/features/system/packages.nix @@ -0,0 +1,67 @@ +{ + pkgs, + lib, + config, + ... +}: +{ + environment.systemPackages = + with pkgs; + [ + git + vim + wget + tree + btop + ffmpeg-full + nodejs + bun + brightnessctl + + quickshell + bluetuith + lxqt.pavucontrol-qt + nwg-look + + (pkgs.catppuccin-kde.override { + flavour = [ "mocha" ]; + accents = [ "sapphire" ]; + }) + + (pkgs.catppuccin-gtk.override { + variant = "mocha"; + accents = [ "sapphire" ]; + size = "compact"; + }) + ] + ++ ( + with pkgs; + with kdePackages; + [ + dolphin + kate + qt5compat + qtdeclarative + libsForQt5.qt5.qtgraphicaleffects + qtimageformats + qtsvg + qtmultimedia + kde-gtk-config + qtdeclarative + kirigami + ksvg + qtbase + plasma5support + qttools + plasma-sdk + ] + ) + ++ (lib.optionals config.device.wm.hyprland.enable ( + with pkgs; + [ + xdg-desktop-portal + xdg-desktop-portal-wlr + xdg-desktop-portal-hyprland + ] + )); +} diff --git a/modules/features/system/sddm.nix b/modules/features/system/sddm.nix new file mode 100644 index 0000000..8cd7fd7 --- /dev/null +++ b/modules/features/system/sddm.nix @@ -0,0 +1,24 @@ +{ pkgs, lib, config, ... }: let + custom-sddm-astronaut = pkgs.sddm-astronaut.override { + embeddedTheme = config.device.dm.sddm.theme; + }; +in { + services.displayManager.sddm = lib.mkIf config.device.dm.sddm.enable { + enable = true; + wayland.enable = true; + extraPackages = with pkgs; [ + custom-sddm-astronaut + ]; + theme = "sddm-astronaut-theme"; + settings = { + Theme = { + Current = "sddm-astronaut-theme"; + }; + }; + }; + + environment.systemPackages = with pkgs; [ + custom-sddm-astronaut + kdePackages.qtmultimedia + ]; +} \ No newline at end of file diff --git a/modules/features/system/steam.nix b/modules/features/system/steam.nix new file mode 100644 index 0000000..8329534 --- /dev/null +++ b/modules/features/system/steam.nix @@ -0,0 +1,5 @@ +{ lib, config, ... }: { + programs.steam = lib.mkIf config.device.programs.steam.enable { + enable = true; + }; +} \ No newline at end of file diff --git a/modules/fonts.nix b/modules/fonts.nix new file mode 100644 index 0000000..315ae1f --- /dev/null +++ b/modules/fonts.nix @@ -0,0 +1,86 @@ +{ pkgs, ... }: +let + fetch-fonts = { + segoe-ui = { + light = pkgs.fetchurl { + url = "https://c.s-microsoft.com/static/fonts/segoe-ui/west-european/light/latest.ttf"; + sha256 = "1bqbvpxqflh4an5ciawrkl0bxy58vqhxiynspcvpx1zyryxcjlhm"; + }; + + semilight = pkgs.fetchurl { + url = "https://c.s-microsoft.com/static/fonts/segoe-ui/west-european/semilight/latest.ttf"; + sha256 = "1y6rfxdwwfq1bgk7fj4bvhck1di6whw5h0yby8gj7x6y1cv4ka1p"; + }; + + normal = pkgs.fetchurl { + url = "https://c.s-microsoft.com/static/fonts/segoe-ui/west-european/normal/latest.ttf"; + sha256 = "0ac4hgmlxl6cgak7g39rvfk25gs3fm5wlnmc7mbpv38i7mkppiaf"; + }; + + bold = pkgs.fetchurl { + url = "https://c.s-microsoft.com/static/fonts/segoe-ui/west-european/bold/latest.ttf"; + sha256 = "147mk64y2hihy6s29dlgimcrfi7ihi68qjcrfdzqk6cvk8kr3f0q"; + }; + + semibold = pkgs.fetchurl { + url = "https://c.s-microsoft.com/static/fonts/segoe-ui/west-european/semibold/latest.ttf"; + sha256 = "0whxgk9q4j9pd3k462m0dyr39q7vk2lxla5whcckyfrks983c4nj"; + }; + }; + }; + + custom = { + tahoma = pkgs.stdenv.mkDerivation { + pname = "tahoma"; + version = "1.0"; + dontUnpack = true; + + src = pkgs.fetchurl { + url = "https://www.asakiyuki.com/static/fonts/Tahoma.ttf"; + sha256 = "129l1cprplci2xmxi0gnsjrvprr48xqp8kr5s9lrwcnaxvb4z4ni"; + }; + + installPhase = '' + mkdir -p $out/share/fonts/truetype + cp $src $out/share/fonts/truetype/ + ''; + }; + + segoe-ui = pkgs.stdenv.mkDerivation { + pname = "segoe-ui"; + version = "1.0"; + dontUnpack = true; + + installPhase = '' + mkdir -p $out/share/fonts/truetype + + cp ${fetch-fonts.segoe-ui.light} $out/share/fonts/truetype + cp ${fetch-fonts.segoe-ui.semilight} $out/share/fonts/truetype + cp ${fetch-fonts.segoe-ui.normal} $out/share/fonts/truetype + cp ${fetch-fonts.segoe-ui.bold} $out/share/fonts/truetype + cp ${fetch-fonts.segoe-ui.semibold} $out/share/fonts/truetype + ''; + }; + }; +in +{ + fonts.enableDefaultPackages = true; + fonts.packages = with pkgs; [ + custom.tahoma + custom.segoe-ui + + # Nerd fonts + nerd-fonts.sauce-code-pro + + # Unicode fonts + noto-fonts + noto-fonts-cjk-sans + noto-fonts-color-emoji + liberation_ttf + fira-code + fira-code-symbols + mplus-outline-fonts.githubRelease + dina-font + proggyfonts + ]; +} \ No newline at end of file diff --git a/modules/hardware/bluetooth.nix b/modules/hardware/bluetooth.nix new file mode 100644 index 0000000..53cedb6 --- /dev/null +++ b/modules/hardware/bluetooth.nix @@ -0,0 +1,3 @@ +{ config, ... }: { + hardware.bluetooth.enable = config.device.bluetooth.enable; +} \ No newline at end of file diff --git a/modules/hardware/default.nix b/modules/hardware/default.nix new file mode 100644 index 0000000..dd6ae6f --- /dev/null +++ b/modules/hardware/default.nix @@ -0,0 +1,6 @@ +{ ... }: +{ + imports = [ + ./bluetooth.nix + ]; +} \ No newline at end of file diff --git a/modules/home-manager.nix b/modules/home-manager.nix new file mode 100644 index 0000000..b3c526a --- /dev/null +++ b/modules/home-manager.nix @@ -0,0 +1,7 @@ +{ ... }: { + home-manager = { + useUserPackages = true; + useGlobalPkgs = true; + backupFileExtension = "bak"; + }; +} \ No newline at end of file diff --git a/modules/programs/hyprland/default.nix b/modules/programs/hyprland/default.nix new file mode 100644 index 0000000..7adae6a --- /dev/null +++ b/modules/programs/hyprland/default.nix @@ -0,0 +1,13 @@ +{ lib, osconfig, ... }: +{ + imports = [ + ./settings/default.nix + ]; + + wayland.windowManager.hyprland = lib.mkIf osconfig.device.wm.hyprland.enable { + enable = true; + xwayland.enable = true; + + }; +} + diff --git a/modules/programs/hyprland/settings/default.nix b/modules/programs/hyprland/settings/default.nix new file mode 100644 index 0000000..6696ee9 --- /dev/null +++ b/modules/programs/hyprland/settings/default.nix @@ -0,0 +1,15 @@ +{ osconfig, ... }: +{ + imports = [ + ./key-bind.nix + ./theme.nix + ./exec.nix + ./window-rules.nix + ./input.nix + ]; + + wayland.windowManager.hyprland.settings = { + monitor = osconfig.device.wm.hyprland.monitors; + }; +} + diff --git a/modules/programs/hyprland/settings/exec.nix b/modules/programs/hyprland/settings/exec.nix new file mode 100644 index 0000000..7b6050a --- /dev/null +++ b/modules/programs/hyprland/settings/exec.nix @@ -0,0 +1,8 @@ +{ ... }: +{ + wayland.windowManager.hyprland.settings.exec-once = [ + "quickshell" + "fcitx5" + ]; +} + diff --git a/modules/programs/hyprland/settings/input.nix b/modules/programs/hyprland/settings/input.nix new file mode 100644 index 0000000..c50caa2 --- /dev/null +++ b/modules/programs/hyprland/settings/input.nix @@ -0,0 +1,5 @@ +{ ... }: { + wayland.windowManager.hyprland.settings.input = { + touchpad.natural_scroll = true; + }; +} \ No newline at end of file diff --git a/modules/programs/hyprland/settings/key-bind.nix b/modules/programs/hyprland/settings/key-bind.nix new file mode 100644 index 0000000..9af8ff4 --- /dev/null +++ b/modules/programs/hyprland/settings/key-bind.nix @@ -0,0 +1,47 @@ +{ osconfig, ... }: +{ + wayland.windowManager.hyprland.settings.bind = [ + "CTRL ALT, T, exec, ${osconfig.device.programs.terminal}" + + "ALT, F4, killactive" + "SUPER SHIFT, L, exit," + "SUPER SHIFT, TAB, togglefloating," + "SUPER SHIFT, S, exec, hyprshot -m region -o '~/Pictures/Screenshot/' -z" + "SUPER, J, togglesplit," + "SUPER, E, exec, dolphin" + + "SUPER, left, movefocus, l" + "SUPER, right, movefocus, r" + "SUPER, up, movefocus, u" + "SUPER, down, movefocus, d" + + "SUPER CTRL, left, movewindow, l" + "SUPER CTRL, right, movewindow, r" + "SUPER CTRL, up, movewindow, u" + "SUPER CTRL, down, movewindow, d" + + "SUPER, tab, workspace, e+1" + "SUPER, mouse_down, workspace, e-1" + "SUPER, mouse_up, workspace, e+1" + + "ALT, space, global, asakiyuki:launcher" + + ",XF86MonBrightnessDown, exec, brightnessctl s 5%-" + ",XF86MonBrightnessUp, exec, brightnessctl s +5%" + ] + ++ builtins.concatLists ( + builtins.genList (i: [ + "SUPER, ${toString (i + 1)}, workspace,${toString (i + 1)}" + "SUPER SHIFT, ${toString (i + 1)}, movetoworkspace,${toString (i + 1)}" + ]) 9 + ) + ++ [ + "SUPER, 0, workspace, 10" + "SUPER SHIFT, 0, movetoworkspace, 10" + ]; + + wayland.windowManager.hyprland.settings.bindm = [ + "SUPER, mouse:272, movewindow" + "SUPER, mouse:273, resizewindow" + ]; +} diff --git a/modules/programs/hyprland/settings/theme.nix b/modules/programs/hyprland/settings/theme.nix new file mode 100644 index 0000000..d687b60 --- /dev/null +++ b/modules/programs/hyprland/settings/theme.nix @@ -0,0 +1,58 @@ +{ ... }: { + wayland.windowManager.hyprland.settings = { + general = { + gaps_in = 5; + gaps_out = 10; + border_size = 1; + "col.active_border" = "rgb(cdd6f4)"; + "col.inactive_border" = "rgb(7f849c)"; + allow_tearing = true; + resize_on_border = true; + }; + + decoration = { + rounding = 5; + rounding_power = 5; + active_opacity = 1; + inactive_opacity = 1; + + blur = { + enabled = true; + size = 2; + passes = 5; + vibrancy = 3; + }; + }; + + animations = { + enabled = "yes"; + + bezier = [ + "overshot, 0.05, 0.9, 0.1, 1.1" + "md3_decel, 0.05, 0.7, 0.1, 1" + ]; + + animation = [ + "windows, 1, 3, overshot, popin 60%" + "border, 1, 10, default" + "fade, 1, 2, default" + "workspaces, 1, 3.5, overshot, slidefade 15%" + "specialWorkspace, 1, 3, md3_decel, slidevert" + ]; + }; + + dwindle = { + pseudotile = true; + preserve_split = true; + }; + + master = { + new_status = "master"; + }; + + misc = { + force_default_wallpaper = 1; + disable_hyprland_logo = true; + }; + }; +} \ No newline at end of file diff --git a/modules/programs/hyprland/settings/window-rules.nix b/modules/programs/hyprland/settings/window-rules.nix new file mode 100644 index 0000000..1410417 --- /dev/null +++ b/modules/programs/hyprland/settings/window-rules.nix @@ -0,0 +1,15 @@ +{ ... }: +{ + wayland.windowManager.hyprland.settings.windowrule = [ + "opacity 0.0 override, class:^(xwaylandvideobridge)$" + "noanim, class:^(xwaylandvideobridge)$" + "noinitialfocus, class:^(xwaylandvideobridge)$" + "maxsize 1 1, class:^(xwaylandvideobridge)$" + "noblur, class:^(xwaylandvideobridge)$" + "nofocus, class:^(xwaylandvideobridge)$" + ]; + wayland.windowManager.hyprland.settings.windowrulev2 = [ + "tile, class:^(Chromium)$" + ]; +} + diff --git a/modules/programs/nixcord/default.nix b/modules/programs/nixcord/default.nix new file mode 100644 index 0000000..ca486db --- /dev/null +++ b/modules/programs/nixcord/default.nix @@ -0,0 +1,44 @@ +{ lib, osconfig, ... }: +{ + programs.nixcord = lib.mkIf osconfig.device.programs.nixcord.enable { + enable = true; + discord = { + enable = true; + vencord.enable = true; + }; + + config = { + enableReactDevtools = true; + themeLinks = [ "https://catppuccin.github.io/discord/dist/catppuccin-mocha-blue.theme.css" ]; + + plugins = { + BlurNSFW.enable = true; + volumeBooster.enable = true; + ClearURLs.enable = true; + copyEmojiMarkdown.enable = true; + youtubeAdblock.enable = true; + experiments.enable = true; + fixCodeblockGap.enable = true; + fixImagesQuality.enable = true; + fixSpotifyEmbeds.enable = true; + fixYoutubeEmbeds.enable = true; + gameActivityToggle.enable = true; + imageZoom.enable = true; + memberCount.enable = true; + mentionAvatars.enable = true; + noDevtoolsWarning.enable = true; + noF1.enable = true; + openInApp.enable = true; + voiceDownload.enable = true; + validUser.enable = true; + translate.enable = true; + whoReacted.enable = true; + + fakeNitro = { + enable = true; + enableEmojiBypass = false; + }; + }; + }; + }; +} \ No newline at end of file diff --git a/modules/programs/nixvim/_nixvim.nix b/modules/programs/nixvim/_nixvim.nix new file mode 100644 index 0000000..f3182af --- /dev/null +++ b/modules/programs/nixvim/_nixvim.nix @@ -0,0 +1,14 @@ +{ pkgs, config, ... }: +{ + programs.nixvim.imports = [ + ./default.nix + ./extra-packages.nix + + ./keymaps/_keymaps.nix + + ./plugins/_plugins.nix + ./plugins/_extraPlugins.nix + + ./lua/_lua.nix + ]; +} diff --git a/modules/programs/nixvim/default.nix b/modules/programs/nixvim/default.nix new file mode 100644 index 0000000..dc1e7ec --- /dev/null +++ b/modules/programs/nixvim/default.nix @@ -0,0 +1,20 @@ +{ ... }: +{ + enable = true; + vimdiffAlias = true; + colorschemes.catppuccin.enable = true; + + opts = { + number = true; + relativenumber = true; + + tabstop = 2; + shiftwidth = 2; + softtabstop = 2; + smartindent = true; + expandtab = true; + + clipboard = "unnamedplus"; + }; +} + diff --git a/modules/programs/nixvim/extra-packages.nix b/modules/programs/nixvim/extra-packages.nix new file mode 100644 index 0000000..1951aa8 --- /dev/null +++ b/modules/programs/nixvim/extra-packages.nix @@ -0,0 +1,6 @@ +{ pkgs, ... }: +{ + extraPackages = with pkgs; [ + nodePackages.prettier + ]; +} diff --git a/modules/programs/nixvim/keymaps/_default.nix b/modules/programs/nixvim/keymaps/_default.nix new file mode 100644 index 0000000..fb6dd0f --- /dev/null +++ b/modules/programs/nixvim/keymaps/_default.nix @@ -0,0 +1,26 @@ +[ + { + mode = "i"; + key = ""; + action = ""; + options.silent = true; + } + { + mode = "i"; + key = ""; + action = ""; + options.silent = true; + } + { + mode = "i"; + key = ""; + action = ""; + options.silent = true; + } + { + mode = "i"; + key = ""; + action = ""; + options.silent = true; + } +] diff --git a/modules/programs/nixvim/keymaps/_keymaps.nix b/modules/programs/nixvim/keymaps/_keymaps.nix new file mode 100644 index 0000000..160868f --- /dev/null +++ b/modules/programs/nixvim/keymaps/_keymaps.nix @@ -0,0 +1,11 @@ +{ ... }: +{ + globals.mapleader = " "; + keymaps = + [ ] + ++ (import ./_default.nix) + ++ (import ./barbar.nix) + ++ (import ./toggleterm.nix) + ++ (import ./nvim-tree-toggle.nix); +} + diff --git a/modules/programs/nixvim/keymaps/barbar.nix b/modules/programs/nixvim/keymaps/barbar.nix new file mode 100644 index 0000000..d1cdf6a --- /dev/null +++ b/modules/programs/nixvim/keymaps/barbar.nix @@ -0,0 +1,39 @@ +[ + { + mode = "n"; + key = ""; + action = "BufferPrevious"; + options.silent = true; + } + { + mode = "n"; + key = ""; + action = "BufferNext"; + options.silent = true; + } + { + mode = "n"; + key = ""; + action = "BufferMovePrevious"; + options.silent = true; + } + { + mode = "n"; + key = ">"; + action = "BufferMoveNext"; + options.silent = true; + } + { + mode = "n"; + key = ""; + action = "BufferClose"; + options.silent = true; + } +] +++ (builtins.genList (i: { + mode = "n"; + key = ""; + action = "BufferGoto ${toString (i + 1)}"; + options.silent = true; +}) 9) + diff --git a/modules/programs/nixvim/keymaps/nvim-tree-toggle.nix b/modules/programs/nixvim/keymaps/nvim-tree-toggle.nix new file mode 100644 index 0000000..7c48e7a --- /dev/null +++ b/modules/programs/nixvim/keymaps/nvim-tree-toggle.nix @@ -0,0 +1,8 @@ +[ + { + mode = "n"; + key = ""; + action = "NvimTreeToggle"; + options.silent = true; + } +] diff --git a/modules/programs/nixvim/keymaps/toggleterm.nix b/modules/programs/nixvim/keymaps/toggleterm.nix new file mode 100644 index 0000000..c1509ed --- /dev/null +++ b/modules/programs/nixvim/keymaps/toggleterm.nix @@ -0,0 +1,63 @@ +[ + { + mode = "t"; + key = ""; + action = ""; + } + { + mode = "t"; + key = "jk"; + action = ""; + } + { + mode = "t"; + key = ""; + action = ""; + } + + { + mode = "t"; + key = ""; + action = "wincmd l"; + } + { + mode = "t"; + key = ""; + action = "wincmd k"; + } + { + mode = "t"; + key = ""; + action = "wincmd j"; + } + { + mode = "t"; + key = ""; + action = "wincmd h"; + } +] +++ builtins.concatLists ( + builtins.genList (i: [ + { + mode = "n"; + key = "th${toString (i + 1)}"; + action = ":${toString (i + 1)}ToggleTerm direction=horizontal"; + options.silent = true; + options.noremap = true; + } + { + mode = "n"; + key = "tv${toString (i + 1)}"; + action = ":${toString (i + 1)}ToggleTerm direction=vertical"; + options.silent = true; + options.noremap = true; + } + { + mode = "n"; + key = "tf${toString (i + 1)}"; + action = ":${toString (i + 1)}ToggleTerm direction=float"; + options.silent = true; + options.noremap = true; + } + ]) 9 +) diff --git a/modules/programs/nixvim/lua/_lua.nix b/modules/programs/nixvim/lua/_lua.nix new file mode 100644 index 0000000..facb35d --- /dev/null +++ b/modules/programs/nixvim/lua/_lua.nix @@ -0,0 +1,4 @@ +{ ... }: +{ + +} diff --git a/modules/programs/nixvim/plugins/_extraPlugins.nix b/modules/programs/nixvim/plugins/_extraPlugins.nix new file mode 100644 index 0000000..94a6838 --- /dev/null +++ b/modules/programs/nixvim/plugins/_extraPlugins.nix @@ -0,0 +1,15 @@ +{ pkgs, ... }: +let + EXTRA_PLUGINS = [ + ./extras/neocord.nix + ./extras/mini-icons.nix + ]; + + LUA = [ + ./lua/neocord.lua + ]; +in +{ + extraPlugins = map (path: import path { plugins = pkgs.vimPlugins; }) EXTRA_PLUGINS; + extraConfigLua = builtins.concatStringsSep "\n" (map builtins.readFile LUA); +} \ No newline at end of file diff --git a/modules/programs/nixvim/plugins/_plugins.nix b/modules/programs/nixvim/plugins/_plugins.nix new file mode 100644 index 0000000..4d3f798 --- /dev/null +++ b/modules/programs/nixvim/plugins/_plugins.nix @@ -0,0 +1,33 @@ +{ ... }@inputs: +{ + plugins = { + nvim-tree = import ./nvimtree.nix inputs; + lsp = import ./lsp.nix inputs; + lspkind = import ./lspkind.nix inputs; + conform-nvim = import ./conform-nvim.nix inputs; + which-key = import ./which-key.nix inputs; + lint = import ./lint.nix inputs; + + cmp = import ./cmp.nix inputs; + cmp-nvim-lsp.enable = true; + cmp-buffer.enable = true; + cmp-path.enable = true; + cmp_luasnip.enable = true; + + web-devicons.enable = true; + lz-n.enable = true; + treesitter.enable = true; + lualine.enable = true; + neoscroll.enable = true; + image.enable = true; + nvim-autopairs.enable = true; + bufferline.enable = true; + luasnip.enable = true; + friendly-snippets.enable = true; + indent-blankline.enable = true; + barbar.enable = true; + toggleterm.enable = true; + auto-save.enable = true; + visual-multi.enable = true; + }; +} diff --git a/modules/programs/nixvim/plugins/cmp.nix b/modules/programs/nixvim/plugins/cmp.nix new file mode 100644 index 0000000..8b49804 --- /dev/null +++ b/modules/programs/nixvim/plugins/cmp.nix @@ -0,0 +1,25 @@ +{ ... }: { + enable = true; + autoEnableSources = true; + + settings = { + sources = [ + { name = "nvim_lsp"; } + { name = "path"; } + { name = "luasnip"; } + { name = "buffer"; } + ]; + + mapping = { + "" = "cmp.mapping.complete()"; + "" = "cmp.mapping.scroll_docs(-4)"; + "" = "cmp.mapping.scroll_docs(4)"; + "" = "cmp.mapping.abort()"; + "" = "cmp.mapping.confirm({ select = true })"; + "" = "cmp.mapping(cmp.mapping.select_next_item(), {'i', 's'})"; + "" = "cmp.mapping(cmp.mapping.select_prev_item(), {'i', 's'})"; + }; + + formatting.fields = [ "kind" "abbr" "menu" ]; + }; +} \ No newline at end of file diff --git a/modules/programs/nixvim/plugins/conform-nvim.nix b/modules/programs/nixvim/plugins/conform-nvim.nix new file mode 100644 index 0000000..192e491 --- /dev/null +++ b/modules/programs/nixvim/plugins/conform-nvim.nix @@ -0,0 +1,20 @@ +{ ... }: +{ + enable = true; + settings = { + formatters_by_ft = { + javascript = [ "prettier" ]; + typescript = [ "prettier" ]; + json = [ "prettier" ]; + css = [ "prettier" ]; + html = [ "prettier" ]; + nix = [ "nixfmt" ]; + php = [ "php_cs_fixer" ]; + }; + + format_on_save = { + timeout_ms = 500; + lsp_fallback = true; + }; + }; +} diff --git a/modules/programs/nixvim/plugins/extras/mini-icons.nix b/modules/programs/nixvim/plugins/extras/mini-icons.nix new file mode 100644 index 0000000..38b4a25 --- /dev/null +++ b/modules/programs/nixvim/plugins/extras/mini-icons.nix @@ -0,0 +1,4 @@ +{ plugins, ... }: +{ + plugin = plugins.mini-icons; +} \ No newline at end of file diff --git a/modules/programs/nixvim/plugins/extras/neocord.nix b/modules/programs/nixvim/plugins/extras/neocord.nix new file mode 100644 index 0000000..8af30c2 --- /dev/null +++ b/modules/programs/nixvim/plugins/extras/neocord.nix @@ -0,0 +1,4 @@ +{ plugins, ... }: +{ + plugin = plugins.neocord; +} \ No newline at end of file diff --git a/modules/programs/nixvim/plugins/lint.nix b/modules/programs/nixvim/plugins/lint.nix new file mode 100644 index 0000000..a46224a --- /dev/null +++ b/modules/programs/nixvim/plugins/lint.nix @@ -0,0 +1,6 @@ +{ ... }: +{ + enable = true; + lintersByFt = { + }; +} diff --git a/modules/programs/nixvim/plugins/lsp.nix b/modules/programs/nixvim/plugins/lsp.nix new file mode 100644 index 0000000..ee013d0 --- /dev/null +++ b/modules/programs/nixvim/plugins/lsp.nix @@ -0,0 +1,12 @@ +{ ... }: +{ + enable = true; + servers = { + phpactor.enable = true; + nil_ls.enable = true; + pyright.enable = true; + ts_ls.enable = true; + html.enable = true; + cssls.enable = true; + }; +} diff --git a/modules/programs/nixvim/plugins/lspkind.nix b/modules/programs/nixvim/plugins/lspkind.nix new file mode 100644 index 0000000..22cd50e --- /dev/null +++ b/modules/programs/nixvim/plugins/lspkind.nix @@ -0,0 +1,4 @@ +{ ... }: { + enable = true; + cmp.enable = true; +} diff --git a/modules/programs/nixvim/plugins/lua/neocord.lua b/modules/programs/nixvim/plugins/lua/neocord.lua new file mode 100644 index 0000000..9384beb --- /dev/null +++ b/modules/programs/nixvim/plugins/lua/neocord.lua @@ -0,0 +1,24 @@ +require("neocord").setup({ + -- General options + logo= "auto", -- "auto" or url + logo_tooltip= nil,-- nil or string + main_image= "language", -- "language" or "logo" + client_id = "1157438221865717891",-- Use your own Discord application client id (not recommended) + log_level = nil,-- Log messages at or above this level (one of the following: "debug", "info", "warn", "error") + debounce_timeout= 10, -- Number of seconds to debounce events (or calls to `:lua package.loaded.presence:update(, true)`) + blacklist = {}, -- A list of strings or Lua patterns that disable Rich Presence if the current file name, path, or workspace matches + file_assets = {}, -- Custom file asset definitions keyed by file names and extensions (see default config at `lua/presence/file_assets.lua` for reference) + show_time = true, -- Show the timer + global_timer= false,-- if set true, timer won't update when any event are triggered + buttons = nil,-- A list of buttons (objects with label and url attributes) or a function returning such list. + + -- Rich Presence text options + editing_text= "Editing %s", -- Format string rendered when an editable file is loaded in the buffer (either string or function(filename: string): string) + file_explorer_text= "Browsing %s",-- Format string rendered when browsing a file explorer (either string or function(file_explorer_name: string): string) + git_commit_text = "Committing changes", -- Format string rendered when committing changes in git (either string or function(filename: string): string) + plugin_manager_text = "Managing plugins", -- Format string rendered when managing plugins (either string or function(plugin_manager_name: string): string) + reading_text= "Reading %s", -- Format string rendered when a read-only or unmodifiable file is loaded in the buffer (either string or function(filename: string): string) + workspace_text= "Working on %s",-- Format string rendered when in a git repository (either string or function(project_name: string|nil, filename: string): string) + line_number_text= "Line %s out of %s",-- Format string rendered when `enable_line_number` is set to true (either string or function(line_number: number, line_count: number): string) + terminal_text = "Using Terminal", -- Format string rendered when in terminal mode. +}) \ No newline at end of file diff --git a/modules/programs/nixvim/plugins/nvimtree.nix b/modules/programs/nixvim/plugins/nvimtree.nix new file mode 100644 index 0000000..e9073ff --- /dev/null +++ b/modules/programs/nixvim/plugins/nvimtree.nix @@ -0,0 +1,5 @@ +{ ... }: { + enable = true; + openOnSetupFile = true; + settings.auto_reload_on_write = true; +} diff --git a/modules/programs/nixvim/plugins/which-key.nix b/modules/programs/nixvim/plugins/which-key.nix new file mode 100644 index 0000000..f8a8422 --- /dev/null +++ b/modules/programs/nixvim/plugins/which-key.nix @@ -0,0 +1,7 @@ +{ ... }: +{ + enable = true; + settings = { + preset = "modern"; + }; +} diff --git a/modules/services/default.nix b/modules/services/default.nix new file mode 100644 index 0000000..0295aac --- /dev/null +++ b/modules/services/default.nix @@ -0,0 +1,6 @@ +{ ... }: { + services.pipewire = { + enable = true; + pulse.enable = true; + }; +} \ No newline at end of file diff --git a/options/common/default.nix b/options/common/default.nix new file mode 100644 index 0000000..64c67b5 --- /dev/null +++ b/options/common/default.nix @@ -0,0 +1,10 @@ +{ lib, ... }: { + options.device = { + flatpak.enable = lib.mkEnableOption "flatpak"; + flake-name = lib.mkOption { + type = lib.types.str; + default = "desktop"; + description = "Flake name for quick rebuild"; + }; + }; +} \ No newline at end of file diff --git a/options/desktop/default.nix b/options/desktop/default.nix new file mode 100644 index 0000000..63061ff --- /dev/null +++ b/options/desktop/default.nix @@ -0,0 +1,17 @@ +{ lib, ... }: { + imports = [ + ../common/default.nix + + ./environment.nix + ./programs.nix + ./hardware.nix + ]; + + options.device = { + cursors = lib.mkOption { + type = lib.types.str; + default = "aemeath"; + description = "Cursor theme to use for the desktop"; + }; + }; +} \ No newline at end of file diff --git a/options/desktop/environment.nix b/options/desktop/environment.nix new file mode 100644 index 0000000..a9e42b7 --- /dev/null +++ b/options/desktop/environment.nix @@ -0,0 +1,33 @@ +{ lib, ... }: { + options.device = { + dm = { + sddm = { + enable = lib.mkEnableOption "sddm"; + theme = lib.mkOption { + type = lib.types.str; + default = "hyprland_kath"; + description = "astronaut theme name"; + }; + }; + + gdm.enable = lib.mkEnableOption "gdm"; + }; + + de = { + kdePlasma.enable = lib.mkEnableOption "kde plasma"; + gnome.enable = lib.mkEnableOption "gnome"; + }; + + wm = { + niri.enable = lib.mkEnableOption "niri"; + hyprland = { + enable = lib.mkEnableOption "hyprland"; + monitors = lib.mkOption { + type = lib.types.listOf lib.types.str; + default = [ "eDP-1, 1920x1200@60, 0x0, 1" ]; + description = "Monitors settings"; + }; + }; + }; + }; +} \ No newline at end of file diff --git a/options/desktop/hardware.nix b/options/desktop/hardware.nix new file mode 100644 index 0000000..002a483 --- /dev/null +++ b/options/desktop/hardware.nix @@ -0,0 +1,5 @@ +{ lib, ... }: { + options.device = { + bluetooth.enable = lib.mkEnableOption "bluetooth"; + }; +} \ No newline at end of file diff --git a/options/desktop/programs.nix b/options/desktop/programs.nix new file mode 100644 index 0000000..a2581fb --- /dev/null +++ b/options/desktop/programs.nix @@ -0,0 +1,18 @@ +{ lib, ... }: { + options.device.programs = { + terminal = lib.mkOption { + type = lib.types.str; + default = "ghostty"; + description = "Terminal"; + }; + + nixcord.enable = lib.mkEnableOption "nixcord"; + tmux.enable = lib.mkEnableOption "tmux"; + starship.enable = lib.mkEnableOption "starship"; + fastfetch.enable = lib.mkEnableOption "fastfetch"; + steam.enable = lib.mkEnableOption "steam"; + + obs-studio.enable = lib.mkEnableOption "Obs Studio"; + cider-2.enable = lib.mkEnableOption "Cider 2"; + }; +} \ No newline at end of file diff --git a/overlays/nixpkgs.nix b/overlays/nixpkgs.nix new file mode 100644 index 0000000..c3e264f --- /dev/null +++ b/overlays/nixpkgs.nix @@ -0,0 +1,3 @@ +{ inputs, ... }: { + nixpkgs.overlays = [ inputs.niri.overlays.niri ]; +} \ No newline at end of file diff --git a/packages/bun.nix b/packages/bun.nix new file mode 100755 index 0000000..ac08808 --- /dev/null +++ b/packages/bun.nix @@ -0,0 +1,27 @@ +{ pkgs, ... }: +pkgs.stdenv.mkDerivation rec { + pname = "bun"; + version = "1.3.10"; + + src = pkgs.fetchzip { + url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-x64-baseline.zip"; + hash = "sha256-ZWTs4ApH0BsATxrE1DSuqCETIrNZZxdG8xtN0NinNBw="; + }; + + dontBuild = true; + + installPhase = '' + mkdir -p $out/bin + cp bun $out/bin/ + chmod +x $out/bin/bun + ''; + + meta = with pkgs.lib; { + description = "Incredibly fast JavaScript runtime, bundler, transpiler and package manager – all in one"; + homepage = "https://bun.sh"; + license = with licenses; [ + mit + lgpl21Only + ]; + }; +} diff --git a/packages/cage-xtmapper-0.1.5.nix b/packages/cage-xtmapper-0.1.5.nix new file mode 100644 index 0000000..9e6d3d1 --- /dev/null +++ b/packages/cage-xtmapper-0.1.5.nix @@ -0,0 +1,48 @@ +{ pkgs, ... }: +let + RELEASE_VERSION = "20260208"; + PACKAGE_VERSION = "0.1.5"; +in +pkgs.stdenv.mkDerivation rec { + pname = "cage-xtmapper"; + version = PACKAGE_VERSION; + + src = pkgs.fetchurl { + url = "https://github.com/Xtr126/cage-xtmapper/releases/download/v${RELEASE_VERSION}/cage-xtmapper-v${PACKAGE_VERSION}.tar"; + hash = "sha256-ZmdltOQInGbCBpf/e8D2sB9Rjt4wqd8wwuSFvryHfFA="; + }; + + nativeBuildInputs = [ pkgs.autoPatchelfHook ]; + + buildInputs = with pkgs; [ + wayland + libxkbcommon + pixman + libdrm + libGL + mesa + vulkan-loader + udev + seatd + libxcb-render-util + ]; + + dontBuild = true; + + installPhase = '' + mkdir -p $out/bin + tar xvf $src + cp usr/local/bin/cage_xtmapper $out/bin/ + cp usr/local/bin/cage_xtmapper.sh $out/bin/ + chmod +x $out/bin/cage_xtmapper + chmod +x $out/bin/cage_xtmapper.sh + ''; + + meta = with pkgs.lib; { + description = "cage-xtmapper input mapping tool"; + homepage = "https://github.com/Xtr126/cage-xtmapper"; + license = licenses.mit; + platforms = platforms.linux; + }; +} + diff --git a/packages/cage-xtmapper-0.2.0.nix b/packages/cage-xtmapper-0.2.0.nix new file mode 100644 index 0000000..dc8e95b --- /dev/null +++ b/packages/cage-xtmapper-0.2.0.nix @@ -0,0 +1,48 @@ +{ pkgs, ... }: +let + RELEASE_VERSION = "20260208"; + PACKAGE_VERSION = "0.2.0"; +in +pkgs.stdenv.mkDerivation rec { + pname = "cage-xtmapper"; + version = PACKAGE_VERSION; + + src = pkgs.fetchurl { + url = "https://github.com/Xtr126/cage-xtmapper/releases/download/v${RELEASE_VERSION}/cage-xtmapper-v${PACKAGE_VERSION}.tar"; + hash = "sha256-F1C3KnTzTO1vEouixqO1xnsGmufRyAk+BiRlypNq4kQ="; + }; + + nativeBuildInputs = [ pkgs.autoPatchelfHook ]; + + buildInputs = with pkgs; [ + wayland + libxkbcommon + pixman + libdrm + libGL + mesa + vulkan-loader + udev + seatd + libxcb-render-util + ]; + + dontBuild = true; + + installPhase = '' + mkdir -p $out/bin + tar xvf $src + cp usr/local/bin/cage_xtmapper $out/bin/ + cp usr/local/bin/cage_xtmapper.sh $out/bin/ + chmod +x $out/bin/cage_xtmapper + chmod +x $out/bin/cage_xtmapper.sh + ''; + + meta = with pkgs.lib; { + description = "cage-xtmapper input mapping tool"; + homepage = "https://github.com/Xtr126/cage-xtmapper"; + license = licenses.mit; + platforms = platforms.linux; + }; +} + diff --git a/packages/catppuccin-obs.nix b/packages/catppuccin-obs.nix new file mode 100644 index 0000000..0dcd502 --- /dev/null +++ b/packages/catppuccin-obs.nix @@ -0,0 +1,16 @@ +{ lib, pkgs, ... }: +pkgs.stdenv.mkDerivation { + pname = "catppuccin-obs"; + version = "main"; + + src = pkgs.fetchzip { + url = "https://static.asakiyuki.com/nixos/catppuccin-obs.zip"; + sha256 = "sha256-Uk4a0HKaeyQilgBiPsuAWQubk1yZdyirNcfhYJEL+lQ="; + }; + + buildCommand = '' + mkdir -p $out + cp -r $src/themes/* $out/ + ''; +} + diff --git a/packages/custom-cursors.nix b/packages/custom-cursors.nix new file mode 100644 index 0000000..2163719 --- /dev/null +++ b/packages/custom-cursors.nix @@ -0,0 +1,31 @@ +{ + cursors ? "aemeath", + size ? 48, +}: +let + _b = name: url: hash: { inherit name url hash; }; + _q = name: hash: { ${name} = _b name "https://static.asakiyuki.com/cursors/linux/${name}.tar.gz" hash; }; + + cursors-data = ( + _q "castorice" "sha256-nqAC+Itr+TXLGG8zYDBoBve+MeRckds5BM23DrsCTMM=" + // _q "aemeath" "sha256-0eEsUks5MwW4g5Xau24SgchX+LD9Ra3azAH0KL9JzQw=" + // _q "elysia" "sha256-mjDHklWrX5Pp/vejRQiMk0VA6afY04HXGyGD0PcopdI=" + // _q "cartethyia" "sha256-jYIDoX+rfUjw6LXrqE4y8j5IL0vByrrRkgRuz08Zy6U=" + ).${cursors}; +in +{ pkgs, ... }: +{ + gtk.enable = true; + x11.enable = true; + name = cursors-data.name; + size = size; + package = pkgs.runCommand "moveUp" { } '' + mkdir -p $out/share/icons + ln -s ${ + pkgs.fetchzip { + url = cursors-data.url; + hash = cursors-data.hash; + } + } $out/share/icons/${cursors-data.name} + ''; +} diff --git a/packages/default.nix b/packages/default.nix new file mode 100644 index 0000000..5e6a3fa --- /dev/null +++ b/packages/default.nix @@ -0,0 +1,7 @@ +{ ... }@inputs: +{ + bun = import ./bun.nix; + cage-xtmapper = { version ? "0.2.0" }: import ./cage-xtmapper-${version}.nix; + catppuccin-obs = import ./catppuccin-obs.nix; + cursors = { name ? "aemeath", size ? 48 }: (import ./custom-cursors.nix { cursors = name; size = size; }); +} \ No newline at end of file From dbd42fb2abcb64b17896f6503664aa32b9ba7104 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 9 Apr 2026 11:40:44 +0700 Subject: [PATCH 091/245] disable kde plasma and fix qt theme --- home/asakiyuki/configuration.nix | 1 + home/asakiyuki/modules/env.nix | 2 +- home/asakiyuki/modules/files.nix | 4 ++-- modules/features/system/packages.nix | 9 ++++----- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/home/asakiyuki/configuration.nix b/home/asakiyuki/configuration.nix index 6cca440..a801f7e 100644 --- a/home/asakiyuki/configuration.nix +++ b/home/asakiyuki/configuration.nix @@ -19,6 +19,7 @@ in imports = [ ./modules/programs.nix ./modules/files.nix + ./modules/env.nix ../../modules/features/home/theme.nix diff --git a/home/asakiyuki/modules/env.nix b/home/asakiyuki/modules/env.nix index 31d7eb7..5a2010e 100644 --- a/home/asakiyuki/modules/env.nix +++ b/home/asakiyuki/modules/env.nix @@ -1,5 +1,5 @@ { ... }: { home.sessionVariables = { - QT_QPA_PLATFORMTHEME = "qt6ct"; + QML_IMPORT_PATH = "/run/current-system/sw/lib/qt-6/qml"; }; } \ No newline at end of file diff --git a/home/asakiyuki/modules/files.nix b/home/asakiyuki/modules/files.nix index 189fdb1..441b05b 100644 --- a/home/asakiyuki/modules/files.nix +++ b/home/asakiyuki/modules/files.nix @@ -1,8 +1,8 @@ { pkgs, osconfig, ... }: { home.file = { - ".config/qt5ct/colors/Catppuccin-Mocha.conf".source = "${pkgs.catppuccin-qt5ct}/share/qt5ct/colors/Catppuccin-Mocha.conf"; - ".config/qt6ct/colors/Catppuccin-Mocha.conf".source = "${pkgs.catppuccin-qt5ct}/share/qt5ct/colors/Catppuccin-Mocha.conf"; + ".config/qt5ct/colors/Catppuccin-Mocha.conf".source = "${pkgs.catppuccin-qt5ct}/share/qt5ct/colors/catppuccin-mocha-sapphire.conf"; + ".config/qt6ct/colors/Catppuccin-Mocha.conf".source = "${pkgs.catppuccin-qt5ct}/share/qt6ct/colors/catppuccin-mocha-sapphire.conf"; }; xdg.configFile = { diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix index 1a8805b..f557e2f 100644 --- a/modules/features/system/packages.nix +++ b/modules/features/system/packages.nix @@ -23,10 +23,10 @@ lxqt.pavucontrol-qt nwg-look - (pkgs.catppuccin-kde.override { - flavour = [ "mocha" ]; - accents = [ "sapphire" ]; - }) + # (pkgs.catppuccin-kde.override { + # flavour = [ "mocha" ]; + # accents = [ "sapphire" ]; + # }) (pkgs.catppuccin-gtk.override { variant = "mocha"; @@ -42,7 +42,6 @@ kate qt5compat qtdeclarative - libsForQt5.qt5.qtgraphicaleffects qtimageformats qtsvg qtmultimedia From d6447efb29415e179a6d70077509b1e7c66733f0 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 9 Apr 2026 11:56:25 +0700 Subject: [PATCH 092/245] add services-menus --- configs/services-menu/open-with-code.desktop | 10 ++++++++++ home/asakiyuki/modules/files.nix | 1 + modules/programs/hyprland/settings/key-bind.nix | 2 +- 3 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 configs/services-menu/open-with-code.desktop diff --git a/configs/services-menu/open-with-code.desktop b/configs/services-menu/open-with-code.desktop new file mode 100644 index 0000000..0d41a8e --- /dev/null +++ b/configs/services-menu/open-with-code.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Type=Service +ServiceTypes=KonqPopupMenu/Plugin +MimeType=inode/directory +Actions=RunCodeDir + +[Desktop Action RunCodeDir] +Name=Open with Code +Icon=vscode +Exec=code %F \ No newline at end of file diff --git a/home/asakiyuki/modules/files.nix b/home/asakiyuki/modules/files.nix index 441b05b..86ca471 100644 --- a/home/asakiyuki/modules/files.nix +++ b/home/asakiyuki/modules/files.nix @@ -3,6 +3,7 @@ home.file = { ".config/qt5ct/colors/Catppuccin-Mocha.conf".source = "${pkgs.catppuccin-qt5ct}/share/qt5ct/colors/catppuccin-mocha-sapphire.conf"; ".config/qt6ct/colors/Catppuccin-Mocha.conf".source = "${pkgs.catppuccin-qt5ct}/share/qt6ct/colors/catppuccin-mocha-sapphire.conf"; + ".local/share/kio/servicemenus/open-with-code.desktop".source = ../../../configs/services-menu/open-with-code.desktop; }; xdg.configFile = { diff --git a/modules/programs/hyprland/settings/key-bind.nix b/modules/programs/hyprland/settings/key-bind.nix index 9af8ff4..59dc9e1 100644 --- a/modules/programs/hyprland/settings/key-bind.nix +++ b/modules/programs/hyprland/settings/key-bind.nix @@ -6,7 +6,7 @@ "ALT, F4, killactive" "SUPER SHIFT, L, exit," "SUPER SHIFT, TAB, togglefloating," - "SUPER SHIFT, S, exec, hyprshot -m region -o '~/Pictures/Screenshot/' -z" + "SUPER SHIFT, S, exec, hyprshot -m region -o '/home/asakiyuki/Pictures/Screenshot/' -z" "SUPER, J, togglesplit," "SUPER, E, exec, dolphin" From 4e9bbad81d7caf2febc3859f7ad9ea75ac5db896 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 9 Apr 2026 11:57:41 +0700 Subject: [PATCH 093/245] add ghostty menu --- configs/services-menu/open-ghostty-here.desktop | 10 ++++++++++ home/asakiyuki/modules/files.nix | 2 ++ 2 files changed, 12 insertions(+) create mode 100644 configs/services-menu/open-ghostty-here.desktop diff --git a/configs/services-menu/open-ghostty-here.desktop b/configs/services-menu/open-ghostty-here.desktop new file mode 100644 index 0000000..b53fb68 --- /dev/null +++ b/configs/services-menu/open-ghostty-here.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Type=Service +ServiceTypes=KonqPopupMenu/Plugin +MimeType=inode/directory +Actions=RunGhosttyDir + +[Desktop Action RunGhosttyDir] +Name=Open Ghostty here +Icon=ghostty +Exec=code %F \ No newline at end of file diff --git a/home/asakiyuki/modules/files.nix b/home/asakiyuki/modules/files.nix index 86ca471..3646a66 100644 --- a/home/asakiyuki/modules/files.nix +++ b/home/asakiyuki/modules/files.nix @@ -3,7 +3,9 @@ home.file = { ".config/qt5ct/colors/Catppuccin-Mocha.conf".source = "${pkgs.catppuccin-qt5ct}/share/qt5ct/colors/catppuccin-mocha-sapphire.conf"; ".config/qt6ct/colors/Catppuccin-Mocha.conf".source = "${pkgs.catppuccin-qt5ct}/share/qt6ct/colors/catppuccin-mocha-sapphire.conf"; + ".local/share/kio/servicemenus/open-with-code.desktop".source = ../../../configs/services-menu/open-with-code.desktop; + ".local/share/kio/servicemenus/open-ghostty-here.desktop".source = ../../../configs/services-menu/open-ghostty-here.desktop; }; xdg.configFile = { From 0be6b40018cb4abaa0a37237d28f4685a064fdb2 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 9 Apr 2026 12:10:08 +0700 Subject: [PATCH 094/245] add dolphinrc file --- configs/dolphinrc | 2 ++ configs/services-menu/open-ghostty-here.desktop | 4 ++-- home/asakiyuki/modules/files.nix | 5 +++++ 3 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 configs/dolphinrc diff --git a/configs/dolphinrc b/configs/dolphinrc new file mode 100644 index 0000000..c6286a9 --- /dev/null +++ b/configs/dolphinrc @@ -0,0 +1,2 @@ +[ContextMenu] +ShowOpenTerminal=false \ No newline at end of file diff --git a/configs/services-menu/open-ghostty-here.desktop b/configs/services-menu/open-ghostty-here.desktop index b53fb68..0385aca 100644 --- a/configs/services-menu/open-ghostty-here.desktop +++ b/configs/services-menu/open-ghostty-here.desktop @@ -6,5 +6,5 @@ Actions=RunGhosttyDir [Desktop Action RunGhosttyDir] Name=Open Ghostty here -Icon=ghostty -Exec=code %F \ No newline at end of file +Icon=com.mitchellh.ghostty +Exec=ghostty +new-window --working-directory="%F" \ No newline at end of file diff --git a/home/asakiyuki/modules/files.nix b/home/asakiyuki/modules/files.nix index 3646a66..95ef7f4 100644 --- a/home/asakiyuki/modules/files.nix +++ b/home/asakiyuki/modules/files.nix @@ -6,6 +6,11 @@ ".local/share/kio/servicemenus/open-with-code.desktop".source = ../../../configs/services-menu/open-with-code.desktop; ".local/share/kio/servicemenus/open-ghostty-here.desktop".source = ../../../configs/services-menu/open-ghostty-here.desktop; + + ".config/dolphinrc" = { + force = true; + source = ../../../configs/dolphinrc + }; }; xdg.configFile = { From 6a0cf35f153f08ea660a13dc90538934f508ba35 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 9 Apr 2026 12:44:21 +0700 Subject: [PATCH 095/245] idk --- home/asakiyuki/modules/files.nix | 2 +- modules/features/system/packages.nix | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/home/asakiyuki/modules/files.nix b/home/asakiyuki/modules/files.nix index 95ef7f4..e411213 100644 --- a/home/asakiyuki/modules/files.nix +++ b/home/asakiyuki/modules/files.nix @@ -9,7 +9,7 @@ ".config/dolphinrc" = { force = true; - source = ../../../configs/dolphinrc + source = ../../../configs/dolphinrc; }; }; diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix index f557e2f..d856935 100644 --- a/modules/features/system/packages.nix +++ b/modules/features/system/packages.nix @@ -17,6 +17,7 @@ nodejs bun brightnessctl + wine64 quickshell bluetuith From f851493ca96d00624238194b655e3d619b174a32 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 9 Apr 2026 12:48:03 +0700 Subject: [PATCH 096/245] add css --- assets/discord/style.css | 3 +++ modules/programs/nixcord/default.nix | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 assets/discord/style.css diff --git a/assets/discord/style.css b/assets/discord/style.css new file mode 100644 index 0000000..861c8a8 --- /dev/null +++ b/assets/discord/style.css @@ -0,0 +1,3 @@ +.winButtons_c38106 winButtonsWithDivider_c38106 { + display: none; +} diff --git a/modules/programs/nixcord/default.nix b/modules/programs/nixcord/default.nix index ca486db..60be60d 100644 --- a/modules/programs/nixcord/default.nix +++ b/modules/programs/nixcord/default.nix @@ -7,6 +7,8 @@ vencord.enable = true; }; + quickCss = builtins.readFile ../../../assets/discord/style.css; + config = { enableReactDevtools = true; themeLinks = [ "https://catppuccin.github.io/discord/dist/catppuccin-mocha-blue.theme.css" ]; From a19f0bde5c3314232b93f1024d1af57ce4cbb435 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 9 Apr 2026 13:11:10 +0700 Subject: [PATCH 097/245] add firefox --- assets/discord/style.css | 6 +- assets/firefox/userChrome.css | 0 assets/firefox/userContent.css | 0 modules/features/home/browsers.nix | 166 ++++++++++++++++++ modules/features/system/packages.nix | 2 +- .../hyprland/settings/window-rules.nix | 7 + modules/programs/nixcord/default.nix | 5 +- 7 files changed, 182 insertions(+), 4 deletions(-) create mode 100644 assets/firefox/userChrome.css create mode 100644 assets/firefox/userContent.css create mode 100644 modules/features/home/browsers.nix diff --git a/assets/discord/style.css b/assets/discord/style.css index 861c8a8..e98cc9f 100644 --- a/assets/discord/style.css +++ b/assets/discord/style.css @@ -1,3 +1,7 @@ -.winButtons_c38106 winButtonsWithDivider_c38106 { +.winButtons_c38106.winButtonsWithDivider_c38106 { display: none; } + +.trailing_c38106 { + padding-right: 10px; +} diff --git a/assets/firefox/userChrome.css b/assets/firefox/userChrome.css new file mode 100644 index 0000000..e69de29 diff --git a/assets/firefox/userContent.css b/assets/firefox/userContent.css new file mode 100644 index 0000000..e69de29 diff --git a/modules/features/home/browsers.nix b/modules/features/home/browsers.nix new file mode 100644 index 0000000..6d4e60c --- /dev/null +++ b/modules/features/home/browsers.nix @@ -0,0 +1,166 @@ +{ pkgs, libs, ... }: +{ + programs = { + firefox = { + enable = true; + profiles.default = { + settings = { + "browser.startup.homepage" = "about:home"; + }; + + search = { + default = "google"; + engines = { + youtube = { + name = "YouTube"; + definedAliases = [ + "@yt" + "@youtube" + ]; + icon = "https://www.youtube.com/s/desktop/83c08b77/img/favicon.ico"; + urls = [ + { + template = "https://www.youtube.com/results"; + params = [ + { + name = "search_query"; + value = "{searchTerms}"; + } + ]; + } + ]; + }; + + google = { + name = "Google"; + definedAliases = [ + "@g" + "@google" + ]; + icon = "https://www.gstatic.com/images/branding/searchlogo/ico/favicon.ico"; + urls = [ + { + template = "https://www.google.com/search"; + params = [ + { + name = "q"; + value = "{searchTerms}"; + } + ]; + } + { + template = "https://www.google.com/search"; + params = [ + { + name = "udm"; + value = "2"; + } + { + name = "q"; + value = "{searchTerms}"; + } + ]; + } + ]; + }; + + github = { + name = "Github"; + definedAliases = [ + "@gh" + "@github" + ]; + icon = "https://github.githubassets.com/favicons/favicon-dark.svg"; + urls = [ + { + template = "https://github.com/search"; + params = [ + { + name = "type"; + value = "repositories"; + } + { + name = "q"; + value = "{searchTerms}"; + } + ]; + } + ]; + }; + + reddit = { + name = "Reddit"; + definedAliases = [ + "@rd" + "@reddit" + ]; + icon = "https://www.redditstatic.com/shreddit/assets/favicon/192x192.png"; + urls = [ + { + template = "https://www.reddit.com/search"; + params = [ + { + name = "q"; + value = "{searchTerms}"; + } + ]; + } + ]; + }; + + nix-packages = { + name = "Nix Packages"; + definedAliases = [ + "@np" + "@nixpkgs" + ]; + icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg"; + urls = [ + { + template = "https://search.nixos.org/packages"; + params = [ + { + name = "type"; + value = "packages"; + } + { + name = "query"; + value = "{searchTerms}"; + } + ]; + } + ]; + }; + + mynixos = { + name = "My NixOS"; + definedAliases = [ "@mynixos" ]; + icon = "https://mynixos.com/favicon.ico"; + urls = [ + { + template = "https://mynixos.com/search"; + params = [ + { + name = "q"; + value = "{searchTerms}"; + } + ]; + } + ]; + }; + + bing.metaData.hidden = true; + ddg.metaData.hidden = true; + perplexity.metaData.hidden = true; + wikipedia.metaData.hidden = true; + }; + }; + + userChrome = builtins.readFile (libs.root "/assets/firefox/userChrome.css"); + userContent = builtins.readFile (libs.root "/assets/firefox/userContent.css"); + }; + }; + + chromium.enable = false; + }; +} diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix index d856935..fce3475 100644 --- a/modules/features/system/packages.nix +++ b/modules/features/system/packages.nix @@ -17,7 +17,7 @@ nodejs bun brightnessctl - wine64 + # wine64 quickshell bluetuith diff --git a/modules/programs/hyprland/settings/window-rules.nix b/modules/programs/hyprland/settings/window-rules.nix index 1410417..13902c6 100644 --- a/modules/programs/hyprland/settings/window-rules.nix +++ b/modules/programs/hyprland/settings/window-rules.nix @@ -1,6 +1,13 @@ { ... }: { wayland.windowManager.hyprland.settings.windowrule = [ + "float, class:(clipse)" + "size 622 652, class:(clipse)" + "stayfocused, class:(clipse)" + + "suppressevent maximize, class:.*" + "nofocus,class:^$,title:^$,xwayland:1,floating:1,fullscreen:0,pinned:0" + "opacity 0.0 override, class:^(xwaylandvideobridge)$" "noanim, class:^(xwaylandvideobridge)$" "noinitialfocus, class:^(xwaylandvideobridge)$" diff --git a/modules/programs/nixcord/default.nix b/modules/programs/nixcord/default.nix index 60be60d..248bab7 100644 --- a/modules/programs/nixcord/default.nix +++ b/modules/programs/nixcord/default.nix @@ -1,4 +1,4 @@ -{ lib, osconfig, ... }: +{ lib, libs, osconfig, ... }: { programs.nixcord = lib.mkIf osconfig.device.programs.nixcord.enable { enable = true; @@ -7,9 +7,10 @@ vencord.enable = true; }; - quickCss = builtins.readFile ../../../assets/discord/style.css; + quickCss = builtins.readFile (libs.root "/assets/discord/style.css"); config = { + useQuickCss = true; enableReactDevtools = true; themeLinks = [ "https://catppuccin.github.io/discord/dist/catppuccin-mocha-blue.theme.css" ]; From 3371d41a3ccd99445ea065e359609286925d60cf Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 9 Apr 2026 13:55:33 +0700 Subject: [PATCH 098/245] idk --- assets/firefox/userChrome.css | 11 +++++++++++ devices/ideapad-slim-5/configuration.nix | 2 -- home/asakiyuki/configuration.nix | 3 ++- home/asakiyuki/modules/files.nix | 3 ++- home/asakiyuki/modules/programs.nix | 1 + modules/features/home/browsers.nix | 6 ++++++ 6 files changed, 22 insertions(+), 4 deletions(-) diff --git a/assets/firefox/userChrome.css b/assets/firefox/userChrome.css index e69de29..daeaf9e 100644 --- a/assets/firefox/userChrome.css +++ b/assets/firefox/userChrome.css @@ -0,0 +1,11 @@ +.titlebar-buttonbox-container { + display: none; +} + +.titlebar-spacer { + width: 2.5px !important; +} + +#TabsToolbar { + padding-left: 2.5px !important; +} diff --git a/devices/ideapad-slim-5/configuration.nix b/devices/ideapad-slim-5/configuration.nix index 5cc77dc..b08929e 100755 --- a/devices/ideapad-slim-5/configuration.nix +++ b/devices/ideapad-slim-5/configuration.nix @@ -16,8 +16,6 @@ nixpkgs.config.allowUnfree = true; - programs.firefox.enable = true; - nix.settings.experimental-features = [ "nix-command" "flakes" diff --git a/home/asakiyuki/configuration.nix b/home/asakiyuki/configuration.nix index a801f7e..3c196b3 100644 --- a/home/asakiyuki/configuration.nix +++ b/home/asakiyuki/configuration.nix @@ -1,5 +1,6 @@ { inputs, + libs, config, pkgs, custom, @@ -15,7 +16,7 @@ in }; home-manager.users.asakiyuki = { - _module.args = { inherit inputs osconfig custom; }; + _module.args = { inherit inputs osconfig custom libs; }; imports = [ ./modules/programs.nix ./modules/files.nix diff --git a/home/asakiyuki/modules/files.nix b/home/asakiyuki/modules/files.nix index e411213..e6f1ad6 100644 --- a/home/asakiyuki/modules/files.nix +++ b/home/asakiyuki/modules/files.nix @@ -1,4 +1,4 @@ -{ pkgs, osconfig, ... }: +{ pkgs, lib, osconfig, ... }: { home.file = { ".config/qt5ct/colors/Catppuccin-Mocha.conf".source = "${pkgs.catppuccin-qt5ct}/share/qt5ct/colors/catppuccin-mocha-sapphire.conf"; @@ -7,6 +7,7 @@ ".local/share/kio/servicemenus/open-with-code.desktop".source = ../../../configs/services-menu/open-with-code.desktop; ".local/share/kio/servicemenus/open-ghostty-here.desktop".source = ../../../configs/services-menu/open-ghostty-here.desktop; + ".mozilla/firefox/default/search.json.mozlz4".force = lib.mkForce true; ".config/dolphinrc" = { force = true; source = ../../../configs/dolphinrc; diff --git a/home/asakiyuki/modules/programs.nix b/home/asakiyuki/modules/programs.nix index 3076c0a..f544a91 100644 --- a/home/asakiyuki/modules/programs.nix +++ b/home/asakiyuki/modules/programs.nix @@ -2,6 +2,7 @@ imports = [ (../../../modules/features/home/ghostty.nix) (../../../modules/features/home/kitty.nix) + (../../../modules/features/home/browsers.nix) (../../../modules/features/home/bash.nix) (../../../modules/features/home/starship.nix) diff --git a/modules/features/home/browsers.nix b/modules/features/home/browsers.nix index 6d4e60c..14896d3 100644 --- a/modules/features/home/browsers.nix +++ b/modules/features/home/browsers.nix @@ -6,6 +6,12 @@ profiles.default = { settings = { "browser.startup.homepage" = "about:home"; + + "devtools.chrome.enabled" = true; + "devtools.debugger.remote-enabled" = true; + "toolkit.legacyUserProfileCustomizations.stylesheets" = true; + + "full-screen-api.warning.timeout" = 0; }; search = { From ad2beaab1a15beb41751851231786d726e9bb2f5 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 9 Apr 2026 14:20:03 +0700 Subject: [PATCH 099/245] add php --- modules/features/system/packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix index fce3475..b1eb9a4 100644 --- a/modules/features/system/packages.nix +++ b/modules/features/system/packages.nix @@ -17,6 +17,7 @@ nodejs bun brightnessctl + php # wine64 quickshell From 9dd9a7c09fdba28d5e20530774c33d558fd4dd2c Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 9 Apr 2026 14:31:12 +0700 Subject: [PATCH 100/245] add touchpad --- modules/programs/hyprland/settings/input.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/modules/programs/hyprland/settings/input.nix b/modules/programs/hyprland/settings/input.nix index c50caa2..2914e07 100644 --- a/modules/programs/hyprland/settings/input.nix +++ b/modules/programs/hyprland/settings/input.nix @@ -1,5 +1,13 @@ { ... }: { - wayland.windowManager.hyprland.settings.input = { - touchpad.natural_scroll = true; + wayland.windowManager.hyprland.settings = { + "$LAPTOP_TOUCHPAD_ENABLE" = false; + + device = { + name = "gxtp5100:00-27c6:01e0-touchpad"; + enabled = "$LAPTOP_TOUCHPAD_ENABLE"; + natural_scroll = true; + }; + + input.touchpad.natural_scroll = true; }; } \ No newline at end of file From 6534b9518c64ff339b4d8de6ca17dc15a2059363 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 9 Apr 2026 14:46:31 +0700 Subject: [PATCH 101/245] add resize windows keybind --- .../programs/hyprland/settings/key-bind.nix | 33 +++++++++++-------- 1 file changed, 20 insertions(+), 13 deletions(-) diff --git a/modules/programs/hyprland/settings/key-bind.nix b/modules/programs/hyprland/settings/key-bind.nix index 59dc9e1..b083eb9 100644 --- a/modules/programs/hyprland/settings/key-bind.nix +++ b/modules/programs/hyprland/settings/key-bind.nix @@ -3,28 +3,35 @@ wayland.windowManager.hyprland.settings.bind = [ "CTRL ALT, T, exec, ${osconfig.device.programs.terminal}" - "ALT, F4, killactive" "SUPER SHIFT, L, exit," "SUPER SHIFT, TAB, togglefloating," "SUPER SHIFT, S, exec, hyprshot -m region -o '/home/asakiyuki/Pictures/Screenshot/' -z" "SUPER, J, togglesplit," "SUPER, E, exec, dolphin" - "SUPER, left, movefocus, l" - "SUPER, right, movefocus, r" - "SUPER, up, movefocus, u" - "SUPER, down, movefocus, d" + "ALT, F4, killactive" - "SUPER CTRL, left, movewindow, l" - "SUPER CTRL, right, movewindow, r" - "SUPER CTRL, up, movewindow, u" - "SUPER CTRL, down, movewindow, d" + "SUPER SHIFT, LEFT, resizeactive, -25 0" + "SUPER SHIFT, RIGHT, resizeactive, 25 0" + "SUPER SHIFT, UP, resizeactive, 0 -25" + "SUPER SHIFT, DOWN, resizeactive, 0 25" - "SUPER, tab, workspace, e+1" - "SUPER, mouse_down, workspace, e-1" - "SUPER, mouse_up, workspace, e+1" + "SUPER, LEFT, movefocus, l" + "SUPER, RIGHT, movefocus, r" + "SUPER, UP, movefocus, u" + "SUPER, DOWN, movefocus, d" - "ALT, space, global, asakiyuki:launcher" + "SUPER CTRL, LEFT, movewindow, l" + "SUPER CTRL, RIGHT, movewindow, r" + "SUPER CTRL, UP, movewindow, u" + "SUPER CTRL, DOWN, movewindow, d" + + "SUPER, TAB, workspace, e+1" + "SUPER ALT, TAB, workspace, e-1" + "SUPER, MOUSE_DOWN, workspace, e-1" + "SUPER, MOUSE_UP, workspace, e+1" + + "ALT, SPACE, global, asakiyuki:launcher" ",XF86MonBrightnessDown, exec, brightnessctl s 5%-" ",XF86MonBrightnessUp, exec, brightnessctl s +5%" From d61d8cf00a1da98b8af300ece277c05efde0c0f6 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 9 Apr 2026 14:54:18 +0700 Subject: [PATCH 102/245] add vim key --- modules/features/system/packages.nix | 25 +++++++++++-------- .../programs/hyprland/settings/key-bind.nix | 15 +++++++++++ 2 files changed, 29 insertions(+), 11 deletions(-) diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix index b1eb9a4..47d2569 100644 --- a/modules/features/system/packages.nix +++ b/modules/features/system/packages.nix @@ -4,10 +4,24 @@ config, ... }: +let + custom-catppuccin-gtk = pkgs.catppuccin-gtk.override { + variant = "mocha"; + accents = [ "sapphire" ]; + size = "compact"; + }; + + custom-catppuccin-kde = (pkgs.catppuccin-kde.override { + flavour = [ "mocha" ]; + accents = [ "sapphire" ]; + }); +in { environment.systemPackages = with pkgs; [ + custom-catppuccin-gtk + git vim wget @@ -24,17 +38,6 @@ bluetuith lxqt.pavucontrol-qt nwg-look - - # (pkgs.catppuccin-kde.override { - # flavour = [ "mocha" ]; - # accents = [ "sapphire" ]; - # }) - - (pkgs.catppuccin-gtk.override { - variant = "mocha"; - accents = [ "sapphire" ]; - size = "compact"; - }) ] ++ ( with pkgs; diff --git a/modules/programs/hyprland/settings/key-bind.nix b/modules/programs/hyprland/settings/key-bind.nix index b083eb9..a625f66 100644 --- a/modules/programs/hyprland/settings/key-bind.nix +++ b/modules/programs/hyprland/settings/key-bind.nix @@ -25,6 +25,21 @@ "SUPER CTRL, RIGHT, movewindow, r" "SUPER CTRL, UP, movewindow, u" "SUPER CTRL, DOWN, movewindow, d" + + "SUPER SHIFT, h, resizeactive, -25 0" + "SUPER SHIFT, l, resizeactive, 25 0" + "SUPER SHIFT, k, resizeactive, 0 -25" + "SUPER SHIFT, j, resizeactive, 0 25" + + "SUPER, h, movefocus, l" + "SUPER, l, movefocus, r" + "SUPER, k, movefocus, u" + "SUPER, j, movefocus, d" + + "SUPER CTRL, h, movewindow, l" + "SUPER CTRL, l, movewindow, r" + "SUPER CTRL, k, movewindow, u" + "SUPER CTRL, j, movewindow, d" "SUPER, TAB, workspace, e+1" "SUPER ALT, TAB, workspace, e-1" From 16fb62aef56c603b47b2a302f5456bbe3eccf43e Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 9 Apr 2026 16:22:54 +0700 Subject: [PATCH 103/245] mount windows partition --- devices/ideapad-slim-5/configuration.nix | 1 + devices/ideapad-slim-5/mount.nix | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 devices/ideapad-slim-5/mount.nix diff --git a/devices/ideapad-slim-5/configuration.nix b/devices/ideapad-slim-5/configuration.nix index b08929e..e73672c 100755 --- a/devices/ideapad-slim-5/configuration.nix +++ b/devices/ideapad-slim-5/configuration.nix @@ -6,6 +6,7 @@ { imports = [ ./hardware-configuration.nix + ./mount.nix (libs.root "/host/desktop/default.nix") (libs.root "/home/asakiyuki/configuration.nix") ]; diff --git a/devices/ideapad-slim-5/mount.nix b/devices/ideapad-slim-5/mount.nix new file mode 100644 index 0000000..f55b490 --- /dev/null +++ b/devices/ideapad-slim-5/mount.nix @@ -0,0 +1,12 @@ +{ ... }: { + fileSystems."/mnt/windows" = { + device = "/dev/disk/by-uuid/0000294D000006E6"; + fsType = "ntfs-3g"; + options = [ + "rw" + "uid=1000" + "gid=100" + "umask=022" + ]; + }; +} \ No newline at end of file From 975bb9f458e1913d22648a84b67d7a5fd7a24399 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 9 Apr 2026 16:23:35 +0700 Subject: [PATCH 104/245] add ntfs3g package --- modules/features/system/packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix index 47d2569..281a012 100644 --- a/modules/features/system/packages.nix +++ b/modules/features/system/packages.nix @@ -32,6 +32,7 @@ in bun brightnessctl php + ntfs3g # wine64 quickshell From 68b4561321e9e8413f41180f45e9fc33c52d0d88 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 9 Apr 2026 16:32:40 +0700 Subject: [PATCH 105/245] add udisk2 --- devices/ideapad-slim-5/configuration.nix | 1 + host/desktop/default.nix | 1 + modules/features/system/udisks2.nix | 5 +++++ 3 files changed, 7 insertions(+) create mode 100644 modules/features/system/udisks2.nix diff --git a/devices/ideapad-slim-5/configuration.nix b/devices/ideapad-slim-5/configuration.nix index e73672c..4537c77 100755 --- a/devices/ideapad-slim-5/configuration.nix +++ b/devices/ideapad-slim-5/configuration.nix @@ -7,6 +7,7 @@ imports = [ ./hardware-configuration.nix ./mount.nix + (libs.root "/host/desktop/default.nix") (libs.root "/home/asakiyuki/configuration.nix") ]; diff --git a/host/desktop/default.nix b/host/desktop/default.nix index 885fd44..83918bb 100644 --- a/host/desktop/default.nix +++ b/host/desktop/default.nix @@ -17,6 +17,7 @@ (libs.root "/modules/features/system/steam.nix") (libs.root "/modules/features/system/nix-dl.nix") (libs.root "/modules/features/system/flatpak.nix") + (libs.root "/modules/features/system/udisks2.nix") (libs.root "/modules/services/default.nix") (libs.root "/modules/home-manager.nix") diff --git a/modules/features/system/udisks2.nix b/modules/features/system/udisks2.nix new file mode 100644 index 0000000..4b43bd7 --- /dev/null +++ b/modules/features/system/udisks2.nix @@ -0,0 +1,5 @@ +{ ... }: { + services.udisks2 = { + enable = true; + }; +} \ No newline at end of file From fbbfb2d800115f0a1ba53cea336969a325db2fef Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 9 Apr 2026 17:40:16 +0700 Subject: [PATCH 106/245] add dolphin --- host/desktop/default.nix | 2 ++ modules/features/system/dolphin.nix | 3 +++ modules/features/system/packages.nix | 6 +++++- modules/programs/hyprland/settings/key-bind.nix | 2 +- 4 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 modules/features/system/dolphin.nix diff --git a/host/desktop/default.nix b/host/desktop/default.nix index 83918bb..fe2136b 100644 --- a/host/desktop/default.nix +++ b/host/desktop/default.nix @@ -25,5 +25,7 @@ (libs.root "/options/desktop/default.nix") (libs.root "/overlays/nixpkgs.nix") ]; + + xdg.menus.enable = true; } diff --git a/modules/features/system/dolphin.nix b/modules/features/system/dolphin.nix new file mode 100644 index 0000000..59baf27 --- /dev/null +++ b/modules/features/system/dolphin.nix @@ -0,0 +1,3 @@ +{ ... }: { + programs.dolphin.enable = true; +} \ No newline at end of file diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix index 281a012..407afb7 100644 --- a/modules/features/system/packages.nix +++ b/modules/features/system/packages.nix @@ -33,7 +33,11 @@ in brightnessctl php ntfs3g - # wine64 + + wine + wine64 + winetricks + protontricks quickshell bluetuith diff --git a/modules/programs/hyprland/settings/key-bind.nix b/modules/programs/hyprland/settings/key-bind.nix index a625f66..d0a2a57 100644 --- a/modules/programs/hyprland/settings/key-bind.nix +++ b/modules/programs/hyprland/settings/key-bind.nix @@ -9,7 +9,7 @@ "SUPER, J, togglesplit," "SUPER, E, exec, dolphin" - "ALT, F4, killactive" + "SUPER, C, killactive" "SUPER SHIFT, LEFT, resizeactive, -25 0" "SUPER SHIFT, RIGHT, resizeactive, 25 0" From 41c9464a53f60990adb08636049a2ffbcab53a92 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 9 Apr 2026 17:41:27 +0700 Subject: [PATCH 107/245] move dolphin to home --- home/asakiyuki/modules/programs.nix | 1 + modules/features/{system => home}/dolphin.nix | 0 modules/features/system/packages.nix | 1 - 3 files changed, 1 insertion(+), 1 deletion(-) rename modules/features/{system => home}/dolphin.nix (100%) diff --git a/home/asakiyuki/modules/programs.nix b/home/asakiyuki/modules/programs.nix index f544a91..d33d5f3 100644 --- a/home/asakiyuki/modules/programs.nix +++ b/home/asakiyuki/modules/programs.nix @@ -4,6 +4,7 @@ (../../../modules/features/home/kitty.nix) (../../../modules/features/home/browsers.nix) + (../../../modules/features/home/dolphin.nix) (../../../modules/features/home/bash.nix) (../../../modules/features/home/starship.nix) (../../../modules/features/home/tmux.nix) diff --git a/modules/features/system/dolphin.nix b/modules/features/home/dolphin.nix similarity index 100% rename from modules/features/system/dolphin.nix rename to modules/features/home/dolphin.nix diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix index 407afb7..91b65cd 100644 --- a/modules/features/system/packages.nix +++ b/modules/features/system/packages.nix @@ -48,7 +48,6 @@ in with pkgs; with kdePackages; [ - dolphin kate qt5compat qtdeclarative From 780b8ab45fd438186b7289fe709dfa2b90544636 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 9 Apr 2026 17:56:30 +0700 Subject: [PATCH 108/245] add neovide --- flake.lock | 78 ++++++++++++++++++++-------- flake.nix | 1 + home/asakiyuki/modules/programs.nix | 2 +- host/desktop/default.nix | 1 + modules/features/home/dolphin.nix | 3 -- modules/features/home/neovide.nix | 6 +++ modules/features/system/packages.nix | 2 + overlays/nixpkgs.nix | 5 +- 8 files changed, 71 insertions(+), 27 deletions(-) delete mode 100644 modules/features/home/dolphin.nix create mode 100644 modules/features/home/neovide.nix diff --git a/flake.lock b/flake.lock index 9bae294..0be8cfe 100644 --- a/flake.lock +++ b/flake.lock @@ -51,6 +51,24 @@ "type": "github" } }, + "dolphin-overlay": { + "inputs": { + "nixpkgs": "nixpkgs_2" + }, + "locked": { + "lastModified": 1743892246, + "narHash": "sha256-AHeavUWjnDPT/hffE5hM8RIew+mZJSSr9tUEiSvZW30=", + "owner": "rumboon", + "repo": "dolphin-overlay", + "rev": "55fec3268972876890d6081d3d76a701c37c01d7", + "type": "github" + }, + "original": { + "owner": "rumboon", + "repo": "dolphin-overlay", + "type": "github" + } + }, "flake-compat": { "flake": false, "locked": { @@ -202,7 +220,7 @@ "honkai-railway-grub-theme": { "inputs": { "flake-utils": "flake-utils", - "nixpkgs": "nixpkgs_2" + "nixpkgs": "nixpkgs_3" }, "locked": { "lastModified": 1775016235, @@ -288,7 +306,7 @@ "hyprutils": "hyprutils", "hyprwayland-scanner": "hyprwayland-scanner", "hyprwire": "hyprwire", - "nixpkgs": "nixpkgs_3", + "nixpkgs": "nixpkgs_4", "pre-commit-hooks": "pre-commit-hooks", "systems": "systems_2", "xdph": "xdph" @@ -570,7 +588,7 @@ "inputs": { "niri-stable": "niri-stable", "niri-unstable": "niri-unstable", - "nixpkgs": "nixpkgs_4", + "nixpkgs": "nixpkgs_5", "nixpkgs-stable": "nixpkgs-stable", "xwayland-satellite-stable": "xwayland-satellite-stable", "xwayland-satellite-unstable": "xwayland-satellite-unstable" @@ -646,7 +664,7 @@ "inputs": { "flake-compat": "flake-compat_2", "flake-parts": "flake-parts", - "nixpkgs": "nixpkgs_5", + "nixpkgs": "nixpkgs_6", "nixpkgs-nixcord": "nixpkgs-nixcord" }, "locked": { @@ -743,6 +761,21 @@ } }, "nixpkgs_2": { + "locked": { + "lastModified": 1743890059, + "narHash": "sha256-QQLhHHGNtAW8qRpseb40zqZlhZUeRRUg2SGmXjfE+so=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "58a813438464b5295170efe38d8bd5f40fcc1d23", + "type": "github" + }, + "original": { + "owner": "NixOS", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_3": { "locked": { "lastModified": 1774709303, "narHash": "sha256-D3Q07BbIA2KnTcSXIqqu9P586uWxN74zNoCH3h2ESHg=", @@ -758,22 +791,6 @@ "type": "github" } }, - "nixpkgs_3": { - "locked": { - "lastModified": 1775423009, - "narHash": "sha256-vPKLpjhIVWdDrfiUM8atW6YkIggCEKdSAlJPzzhkQlw=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "68d8aa3d661f0e6bd5862291b5bb263b2a6595c9", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, "nixpkgs_4": { "locked": { "lastModified": 1775423009, @@ -791,6 +808,22 @@ } }, "nixpkgs_5": { + "locked": { + "lastModified": 1775423009, + "narHash": "sha256-vPKLpjhIVWdDrfiUM8atW6YkIggCEKdSAlJPzzhkQlw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "68d8aa3d661f0e6bd5862291b5bb263b2a6595c9", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_6": { "locked": { "lastModified": 1773222311, "narHash": "sha256-BHoB/XpbqoZkVYZCfXJXfkR+GXFqwb/4zbWnOr2cRcU=", @@ -806,7 +839,7 @@ "type": "github" } }, - "nixpkgs_6": { + "nixpkgs_7": { "locked": { "lastModified": 1775305101, "narHash": "sha256-/74n1oQPtKG52Yw41cbToxspxHbYz6O3vi+XEw16Qe8=", @@ -895,6 +928,7 @@ "root": { "inputs": { "catppuccin": "catppuccin", + "dolphin-overlay": "dolphin-overlay", "home-manager": "home-manager", "honkai-railway-grub-theme": "honkai-railway-grub-theme", "hyprland": "hyprland", @@ -902,7 +936,7 @@ "nix-index-database": "nix-index-database", "nixcord": "nixcord", "nixos-hardware": "nixos-hardware", - "nixpkgs": "nixpkgs_6", + "nixpkgs": "nixpkgs_7", "nixvim": "nixvim", "unstablepkgs": "unstablepkgs" } diff --git a/flake.nix b/flake.nix index c0b05da..1bf8e4f 100644 --- a/flake.nix +++ b/flake.nix @@ -10,6 +10,7 @@ niri.url = "github:sodiboo/niri-flake"; hyprland.url = "github:hyprwm/Hyprland"; nixcord.url = "github:FlameFlag/nixcord"; + dolphin-overlay.url = "github:rumboon/dolphin-overlay"; honkai-railway-grub-theme.url = "github:voidlhf/StarRailGrubThemes/4a84e576bb544afbdfc76dbe40ffc50a5c2b16de"; diff --git a/home/asakiyuki/modules/programs.nix b/home/asakiyuki/modules/programs.nix index d33d5f3..286c652 100644 --- a/home/asakiyuki/modules/programs.nix +++ b/home/asakiyuki/modules/programs.nix @@ -3,8 +3,8 @@ (../../../modules/features/home/ghostty.nix) (../../../modules/features/home/kitty.nix) (../../../modules/features/home/browsers.nix) + (../../../modules/features/home/neovide.nix) - (../../../modules/features/home/dolphin.nix) (../../../modules/features/home/bash.nix) (../../../modules/features/home/starship.nix) (../../../modules/features/home/tmux.nix) diff --git a/host/desktop/default.nix b/host/desktop/default.nix index fe2136b..47c867a 100644 --- a/host/desktop/default.nix +++ b/host/desktop/default.nix @@ -27,5 +27,6 @@ ]; xdg.menus.enable = true; + services.dbus.enable = true; } diff --git a/modules/features/home/dolphin.nix b/modules/features/home/dolphin.nix deleted file mode 100644 index 59baf27..0000000 --- a/modules/features/home/dolphin.nix +++ /dev/null @@ -1,3 +0,0 @@ -{ ... }: { - programs.dolphin.enable = true; -} \ No newline at end of file diff --git a/modules/features/home/neovide.nix b/modules/features/home/neovide.nix new file mode 100644 index 0000000..f4c1b6d --- /dev/null +++ b/modules/features/home/neovide.nix @@ -0,0 +1,6 @@ +{ ... }: { + programs.neovide = { + enable = true; + settings = {}; + }; +} \ No newline at end of file diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix index 91b65cd..3512ca4 100644 --- a/modules/features/system/packages.nix +++ b/modules/features/system/packages.nix @@ -48,6 +48,8 @@ in with pkgs; with kdePackages; [ + kservice + dolphin kate qt5compat qtdeclarative diff --git a/overlays/nixpkgs.nix b/overlays/nixpkgs.nix index c3e264f..837a83e 100644 --- a/overlays/nixpkgs.nix +++ b/overlays/nixpkgs.nix @@ -1,3 +1,6 @@ { inputs, ... }: { - nixpkgs.overlays = [ inputs.niri.overlays.niri ]; + nixpkgs.overlays = [ + inputs.niri.overlays.niri + inputs.dolphin-overlay.overlays.default + ]; } \ No newline at end of file From 93ccb973065f7fee1e2385f768bc104119239b8b Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 9 Apr 2026 18:00:39 +0700 Subject: [PATCH 109/245] disable neovide --- home/asakiyuki/modules/programs.nix | 2 +- modules/features/home/neovide.nix | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/home/asakiyuki/modules/programs.nix b/home/asakiyuki/modules/programs.nix index 286c652..6241dee 100644 --- a/home/asakiyuki/modules/programs.nix +++ b/home/asakiyuki/modules/programs.nix @@ -3,7 +3,7 @@ (../../../modules/features/home/ghostty.nix) (../../../modules/features/home/kitty.nix) (../../../modules/features/home/browsers.nix) - (../../../modules/features/home/neovide.nix) + # (../../../modules/features/home/neovide.nix) (../../../modules/features/home/bash.nix) (../../../modules/features/home/starship.nix) diff --git a/modules/features/home/neovide.nix b/modules/features/home/neovide.nix index f4c1b6d..6d71add 100644 --- a/modules/features/home/neovide.nix +++ b/modules/features/home/neovide.nix @@ -1,6 +1,8 @@ { ... }: { programs.neovide = { enable = true; - settings = {}; + settings = { + neovim-bin = "/etc/profiles/per-user/asakiyuki/bin/nvim"; + }; }; } \ No newline at end of file From 6b856c3b4f0549683eedf8ae345137bcf4f68963 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 9 Apr 2026 22:36:04 +0700 Subject: [PATCH 110/245] idk --- .vscode/settings.json | 3 +++ devices/ideapad-slim-5/configuration.nix | 8 ++++++++ 2 files changed, 11 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..10b1817 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "nixEnvSelector.suggestion": false +} diff --git a/devices/ideapad-slim-5/configuration.nix b/devices/ideapad-slim-5/configuration.nix index 4537c77..5d5db6e 100755 --- a/devices/ideapad-slim-5/configuration.nix +++ b/devices/ideapad-slim-5/configuration.nix @@ -18,6 +18,14 @@ nixpkgs.config.allowUnfree = true; + boot.kernelParams = [ "amd_pstate=active" ]; + boot.kernelModules = [ "ideapad_laptop" ]; + services.power-profiles-daemon.enable = true; + environment.systemPackages = with pkgs; [ + lm_sensors + ryzenadj + ]; + nix.settings.experimental-features = [ "nix-command" "flakes" From 315c905dc2f758ca13eb9ec78d8a5c6042a48f1b Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 9 Apr 2026 22:38:16 +0700 Subject: [PATCH 111/245] add git.nix --- modules/features/home/git.nix | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 modules/features/home/git.nix diff --git a/modules/features/home/git.nix b/modules/features/home/git.nix new file mode 100644 index 0000000..8b3ea7e --- /dev/null +++ b/modules/features/home/git.nix @@ -0,0 +1,5 @@ +{ ... }: { + programs.git = { + + }; +} \ No newline at end of file From 596a61019f914525278fd0f61740e6317b4e397e Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 9 Apr 2026 22:38:45 +0700 Subject: [PATCH 112/245] import git.nix --- home/asakiyuki/modules/programs.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/home/asakiyuki/modules/programs.nix b/home/asakiyuki/modules/programs.nix index 6241dee..342d885 100644 --- a/home/asakiyuki/modules/programs.nix +++ b/home/asakiyuki/modules/programs.nix @@ -13,6 +13,7 @@ (../../../modules/features/home/obs-studio.nix) (../../../modules/features/home/xdg.nix) (../../../modules/features/home/packages.nix) + (../../../modules/features/home/git.nix) (../../../modules/programs/nixvim/_nixvim.nix) (../../../modules/programs/nixcord/default.nix) From a645e356700b7d5cfb5bad79fcd94971e7a1324c Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Thu, 9 Apr 2026 22:49:53 +0700 Subject: [PATCH 113/245] add git config --- modules/features/home/git.nix | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/modules/features/home/git.nix b/modules/features/home/git.nix index 8b3ea7e..93dad9b 100644 --- a/modules/features/home/git.nix +++ b/modules/features/home/git.nix @@ -1,5 +1,19 @@ { ... }: { programs.git = { - + enable = true; + settings = { + user = { + name = "Asaki Yuki"; + email = "vantrong2007vn@gmail.com"; + }; + + init = { + defaultBranch = "main"; + }; + + # pull = { + # rebase = ""; + # }; + }; }; } \ No newline at end of file From c2f195156786d03dbb059bc2c7c5fb02cad6316c Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 10 Apr 2026 00:57:37 +0700 Subject: [PATCH 114/245] idk --- modules/features/home/packages.nix | 1 + modules/programs/hyprland/settings/input.nix | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/features/home/packages.nix b/modules/features/home/packages.nix index eec6614..eb17276 100644 --- a/modules/features/home/packages.nix +++ b/modules/features/home/packages.nix @@ -8,6 +8,7 @@ home.packages = with pkgs; [ hyprshot antigravity + prismlauncher (lib.mkIf osconfig.device.programs.cider-2.enable cider-2) ]; diff --git a/modules/programs/hyprland/settings/input.nix b/modules/programs/hyprland/settings/input.nix index 2914e07..4b27c42 100644 --- a/modules/programs/hyprland/settings/input.nix +++ b/modules/programs/hyprland/settings/input.nix @@ -1,6 +1,6 @@ { ... }: { wayland.windowManager.hyprland.settings = { - "$LAPTOP_TOUCHPAD_ENABLE" = false; + "$LAPTOP_TOUCHPAD_ENABLE" = true; device = { name = "gxtp5100:00-27c6:01e0-touchpad"; From 9e968ef3d8497da24e859ed684f4595625aa5ce0 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 10 Apr 2026 01:01:07 +0700 Subject: [PATCH 115/245] add waydroid --- host/desktop/default.nix | 1 + modules/features/system/waydroid.nix | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 modules/features/system/waydroid.nix diff --git a/host/desktop/default.nix b/host/desktop/default.nix index 47c867a..1cb988a 100644 --- a/host/desktop/default.nix +++ b/host/desktop/default.nix @@ -6,6 +6,7 @@ (libs.root "/modules/fonts.nix") (libs.root "/modules/features/system/packages.nix") + (libs.root "/modules/features/system/waydroid.nix") (libs.root "/modules/features/system/boot.nix") (libs.root "/modules/features/system/sddm.nix") (libs.root "/modules/features/system/gdm.nix") diff --git a/modules/features/system/waydroid.nix b/modules/features/system/waydroid.nix new file mode 100644 index 0000000..3c3f460 --- /dev/null +++ b/modules/features/system/waydroid.nix @@ -0,0 +1,10 @@ +{ pkgs, lib, config, ... }: { + virtualisation.waydroid = { + enable = true; + package = pkgs.waydroid-nftables; + }; + + environment.systemPackages = lib.mkOptionals config.virtualisation.waydroid.enable [ + waydroid-helper + ]; +} \ No newline at end of file From f7558e3e23265bd3cf369f5ff6d24a271d0066f5 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 10 Apr 2026 01:06:50 +0700 Subject: [PATCH 116/245] add dconf --- modules/features/home/bash.nix | 3 ++- modules/features/system/dconf.nix | 3 +++ modules/features/system/waydroid.nix | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 modules/features/system/dconf.nix diff --git a/modules/features/home/bash.nix b/modules/features/home/bash.nix index a826f42..1d6f06e 100644 --- a/modules/features/home/bash.nix +++ b/modules/features/home/bash.nix @@ -9,9 +9,10 @@ logout = "pkill -KILL -u $USER"; nrs = "sudo nixos-rebuild switch --flake /etc/nixos#${osconfig.device.flake-name}"; - wss = "waydroid session stop; exit;"; flake-upgrade = "nix flake update"; spf = "superfile"; + } // lib.mkIf osconfig.virtualisation.waydroid.enable { + wss = "waydroid session stop; exit;"; }; shellOptions = [ diff --git a/modules/features/system/dconf.nix b/modules/features/system/dconf.nix new file mode 100644 index 0000000..5458734 --- /dev/null +++ b/modules/features/system/dconf.nix @@ -0,0 +1,3 @@ +{ ... }: { + programs.dconf.enable = true; +} \ No newline at end of file diff --git a/modules/features/system/waydroid.nix b/modules/features/system/waydroid.nix index 3c3f460..c48a046 100644 --- a/modules/features/system/waydroid.nix +++ b/modules/features/system/waydroid.nix @@ -4,7 +4,7 @@ package = pkgs.waydroid-nftables; }; - environment.systemPackages = lib.mkOptionals config.virtualisation.waydroid.enable [ - waydroid-helper + environment.systemPackages = lib.optionals config.virtualisation.waydroid.enable [ + pkgs.waydroid-helper ]; } \ No newline at end of file From cbcde09dcef8a31cde0712a2913c25283bd11511 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 10 Apr 2026 01:11:01 +0700 Subject: [PATCH 117/245] idk --- host/desktop/default.nix | 1 + modules/features/system/dconf.nix | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/host/desktop/default.nix b/host/desktop/default.nix index 1cb988a..3c5f521 100644 --- a/host/desktop/default.nix +++ b/host/desktop/default.nix @@ -19,6 +19,7 @@ (libs.root "/modules/features/system/nix-dl.nix") (libs.root "/modules/features/system/flatpak.nix") (libs.root "/modules/features/system/udisks2.nix") + (libs.root "/modules/features/system/dconf.nix") (libs.root "/modules/services/default.nix") (libs.root "/modules/home-manager.nix") diff --git a/modules/features/system/dconf.nix b/modules/features/system/dconf.nix index 5458734..1640805 100644 --- a/modules/features/system/dconf.nix +++ b/modules/features/system/dconf.nix @@ -1,3 +1,6 @@ -{ ... }: { +{ lib, config, pkgs, ... }: { programs.dconf.enable = true; + environment.systemPackages = lib.optionals config.programs.dconf.enable [ + pkgs.glib + ]; } \ No newline at end of file From ba6f93c0d55e85d5dc61ce61f9e2263486402075 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 10 Apr 2026 01:34:22 +0700 Subject: [PATCH 118/245] add waydroid --- devices/ideapad-slim-5/mount.nix | 29 ++++++++++++++++++++--------- 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/devices/ideapad-slim-5/mount.nix b/devices/ideapad-slim-5/mount.nix index f55b490..303f838 100644 --- a/devices/ideapad-slim-5/mount.nix +++ b/devices/ideapad-slim-5/mount.nix @@ -1,12 +1,23 @@ { ... }: { - fileSystems."/mnt/windows" = { - device = "/dev/disk/by-uuid/0000294D000006E6"; - fsType = "ntfs-3g"; - options = [ - "rw" - "uid=1000" - "gid=100" - "umask=022" - ]; + fileSystems = { + "/mnt/windows" = { + device = "/dev/disk/by-uuid/0000294D000006E6"; + fsType = "ntfs-3g"; + options = [ + "rw" + "uid=1000" + "gid=100" + "umask=022" + ]; + }; + "/mnt/waydroid" = { + device = "/home/asakiyuki/.local/share/waydroid/data/media/0"; + fsType = "fuse.bindfs"; + options = [ + "mirror=1000" + "xattr-none" + "chmod-ignore" + ]; + }; }; } \ No newline at end of file From 5769469b6b0d13570172c803d55a77582098c623 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 10 Apr 2026 02:01:58 +0700 Subject: [PATCH 119/245] add papirus icons theme --- home/asakiyuki/modules/files.nix | 3 +++ modules/features/home/bash.nix | 27 ++++++++++++++++----------- modules/features/system/packages.nix | 1 + 3 files changed, 20 insertions(+), 11 deletions(-) diff --git a/home/asakiyuki/modules/files.nix b/home/asakiyuki/modules/files.nix index e6f1ad6..3d607a0 100644 --- a/home/asakiyuki/modules/files.nix +++ b/home/asakiyuki/modules/files.nix @@ -23,6 +23,9 @@ [General] TerminalApplication=${osconfig.device.programs.terminal} + + [Icons] + Theme=Papirus ''; }; } \ No newline at end of file diff --git a/modules/features/home/bash.nix b/modules/features/home/bash.nix index 1d6f06e..2d9a838 100644 --- a/modules/features/home/bash.nix +++ b/modules/features/home/bash.nix @@ -1,19 +1,24 @@ { lib, osconfig, ... }: { programs.bash = { enable = true; - shellAliases = { - cls = "clear"; - cleanup = "sudo nix-collect-garbage -d"; - cls-log = "sudo journalctl --vacuum-time=1s"; + shellAliases = lib.attrsets.mergeAttrsList [ + { + cls = "clear"; + cleanup = "sudo nix-collect-garbage -d"; + cls-log = "sudo journalctl --vacuum-time=1s"; - logout = "pkill -KILL -u $USER"; + logout = "pkill -KILL -u $USER"; - nrs = "sudo nixos-rebuild switch --flake /etc/nixos#${osconfig.device.flake-name}"; - flake-upgrade = "nix flake update"; - spf = "superfile"; - } // lib.mkIf osconfig.virtualisation.waydroid.enable { - wss = "waydroid session stop; exit;"; - }; + nrs = "sudo nixos-rebuild switch --flake /etc/nixos#${osconfig.device.flake-name}"; + flake-upgrade = "nix flake update"; + } + { + spf = "superfile"; + } + (lib.mkIf osconfig.virtualisation.waydroid.enable { + wss = "waydroid session stop; exit;"; + }) + ]; shellOptions = [ "histappend" diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix index 3512ca4..ed3e0ce 100644 --- a/modules/features/system/packages.nix +++ b/modules/features/system/packages.nix @@ -21,6 +21,7 @@ in with pkgs; [ custom-catppuccin-gtk + papirus-icon-theme git vim From e829bedfe33bbd2144250dd1e01382aa15f7b226 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 10 Apr 2026 21:15:43 +0700 Subject: [PATCH 120/245] add upower service --- devices/ideapad-slim-5/configuration.nix | 2 ++ modules/features/home/bash.nix | 2 +- modules/features/system/upower.nix | 5 +++++ modules/programs/hyprland/settings/input.nix | 2 +- modules/programs/hyprland/settings/key-bind.nix | 2 +- 5 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 modules/features/system/upower.nix diff --git a/devices/ideapad-slim-5/configuration.nix b/devices/ideapad-slim-5/configuration.nix index 5d5db6e..26c5195 100755 --- a/devices/ideapad-slim-5/configuration.nix +++ b/devices/ideapad-slim-5/configuration.nix @@ -8,6 +8,8 @@ ./hardware-configuration.nix ./mount.nix + ../../modules/features/system/upower.nix + (libs.root "/host/desktop/default.nix") (libs.root "/home/asakiyuki/configuration.nix") ]; diff --git a/modules/features/home/bash.nix b/modules/features/home/bash.nix index 2d9a838..3fbe4d0 100644 --- a/modules/features/home/bash.nix +++ b/modules/features/home/bash.nix @@ -15,7 +15,7 @@ { spf = "superfile"; } - (lib.mkIf osconfig.virtualisation.waydroid.enable { + (lib.optionalAttrs osconfig.virtualisation.waydroid.enable { wss = "waydroid session stop; exit;"; }) ]; diff --git a/modules/features/system/upower.nix b/modules/features/system/upower.nix new file mode 100644 index 0000000..b9bb6f5 --- /dev/null +++ b/modules/features/system/upower.nix @@ -0,0 +1,5 @@ +{ ... }: { + services.upower = { + enable = true; + }; +} \ No newline at end of file diff --git a/modules/programs/hyprland/settings/input.nix b/modules/programs/hyprland/settings/input.nix index 4b27c42..2914e07 100644 --- a/modules/programs/hyprland/settings/input.nix +++ b/modules/programs/hyprland/settings/input.nix @@ -1,6 +1,6 @@ { ... }: { wayland.windowManager.hyprland.settings = { - "$LAPTOP_TOUCHPAD_ENABLE" = true; + "$LAPTOP_TOUCHPAD_ENABLE" = false; device = { name = "gxtp5100:00-27c6:01e0-touchpad"; diff --git a/modules/programs/hyprland/settings/key-bind.nix b/modules/programs/hyprland/settings/key-bind.nix index d0a2a57..9c3427f 100644 --- a/modules/programs/hyprland/settings/key-bind.nix +++ b/modules/programs/hyprland/settings/key-bind.nix @@ -5,7 +5,7 @@ "SUPER SHIFT, L, exit," "SUPER SHIFT, TAB, togglefloating," - "SUPER SHIFT, S, exec, hyprshot -m region -o '/home/asakiyuki/Pictures/Screenshot/' -z" + "SUPER SHIFT, S, exec, hyprshot -m region -o '/home/asakiyuki/Pictures/Screenshots/' -z" "SUPER, J, togglesplit," "SUPER, E, exec, dolphin" From aedfd070b97a0e1a395faa6e1d291d4c4bd39d21 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 10 Apr 2026 22:58:40 +0700 Subject: [PATCH 121/245] add symlink option --- devices/ideapad-slim-5/configuration.nix | 29 ++++++++- modules/features/home/browsers.nix | 2 +- modules/programs/hyprland/default.nix | 1 - .../programs/hyprland/settings/default.nix | 2 +- .../programs/hyprland/settings/key-bind.nix | 4 +- options/desktop/default.nix | 1 + options/desktop/environment.nix | 61 ++++++++++--------- options/desktop/file.nix | 8 +++ 8 files changed, 71 insertions(+), 37 deletions(-) create mode 100644 options/desktop/file.nix diff --git a/devices/ideapad-slim-5/configuration.nix b/devices/ideapad-slim-5/configuration.nix index 26c5195..2e26f3c 100755 --- a/devices/ideapad-slim-5/configuration.nix +++ b/devices/ideapad-slim-5/configuration.nix @@ -7,9 +7,9 @@ imports = [ ./hardware-configuration.nix ./mount.nix - + ../../modules/features/system/upower.nix - + (libs.root "/host/desktop/default.nix") (libs.root "/home/asakiyuki/configuration.nix") ]; @@ -45,10 +45,35 @@ wm.niri.enable = false; wm.hyprland.enable = true; + wm.hyprland.monitors = [ + { + output = "eDP-1"; + mode = "1920x1200@60"; + position = "0x0"; + scale = "1"; + transform = "0"; + bitdepth = 10; + # cm = "hdr"; + # supports_wide_color = 1; + # supports_hdr = 1; + # sdr_min_luminance = 0; + # sdr_max_luminance = 400; + # sdr_eotf = 2; + # sdrbrightness = 1.0; + # sdrsaturation = 1.2; + } + ]; bluetooth.enable = true; flatpak.enable = true; + symlink = { + "SteamApps" = ".local/share/Steam/steamapps"; + "Development/KDE-Widget" = ".local/share/plasma/plasmoids"; + "Development/SplashScreen" = ".local/share/plasma/look-and-feel"; + "Development/DesktopEffects" = ".local/share/kwin/effects"; + }; + programs = { terminal = "ghostty"; obs-studio.enable = true; diff --git a/modules/features/home/browsers.nix b/modules/features/home/browsers.nix index 14896d3..2d1d157 100644 --- a/modules/features/home/browsers.nix +++ b/modules/features/home/browsers.nix @@ -167,6 +167,6 @@ }; }; - chromium.enable = false; + chromium.enable = true; }; } diff --git a/modules/programs/hyprland/default.nix b/modules/programs/hyprland/default.nix index 7adae6a..9a327a0 100644 --- a/modules/programs/hyprland/default.nix +++ b/modules/programs/hyprland/default.nix @@ -7,7 +7,6 @@ wayland.windowManager.hyprland = lib.mkIf osconfig.device.wm.hyprland.enable { enable = true; xwayland.enable = true; - }; } diff --git a/modules/programs/hyprland/settings/default.nix b/modules/programs/hyprland/settings/default.nix index 6696ee9..9071b10 100644 --- a/modules/programs/hyprland/settings/default.nix +++ b/modules/programs/hyprland/settings/default.nix @@ -9,7 +9,7 @@ ]; wayland.windowManager.hyprland.settings = { - monitor = osconfig.device.wm.hyprland.monitors; + monitorv2 = osconfig.device.wm.hyprland.monitors; }; } diff --git a/modules/programs/hyprland/settings/key-bind.nix b/modules/programs/hyprland/settings/key-bind.nix index 9c3427f..d5d70ea 100644 --- a/modules/programs/hyprland/settings/key-bind.nix +++ b/modules/programs/hyprland/settings/key-bind.nix @@ -1,11 +1,11 @@ -{ osconfig, ... }: +{ osconfig, config, ... }: { wayland.windowManager.hyprland.settings.bind = [ "CTRL ALT, T, exec, ${osconfig.device.programs.terminal}" "SUPER SHIFT, L, exit," "SUPER SHIFT, TAB, togglefloating," - "SUPER SHIFT, S, exec, hyprshot -m region -o '/home/asakiyuki/Pictures/Screenshots/' -z" + "SUPER SHIFT, S, exec, hyprshot -m region -o '${config.home.homeDirectory}/Pictures/Screenshots/' -z" "SUPER, J, togglesplit," "SUPER, E, exec, dolphin" diff --git a/options/desktop/default.nix b/options/desktop/default.nix index 63061ff..2c25632 100644 --- a/options/desktop/default.nix +++ b/options/desktop/default.nix @@ -5,6 +5,7 @@ ./environment.nix ./programs.nix ./hardware.nix + ./file.nix ]; options.device = { diff --git a/options/desktop/environment.nix b/options/desktop/environment.nix index a9e42b7..88a471b 100644 --- a/options/desktop/environment.nix +++ b/options/desktop/environment.nix @@ -1,33 +1,34 @@ -{ lib, ... }: { - options.device = { - dm = { - sddm = { - enable = lib.mkEnableOption "sddm"; - theme = lib.mkOption { - type = lib.types.str; - default = "hyprland_kath"; - description = "astronaut theme name"; - }; - }; - - gdm.enable = lib.mkEnableOption "gdm"; +{ lib, ... }: +{ + options.device = { + dm = { + sddm = { + enable = lib.mkEnableOption "sddm"; + theme = lib.mkOption { + type = lib.types.str; + default = "hyprland_kath"; + description = "astronaut theme name"; }; + }; - de = { - kdePlasma.enable = lib.mkEnableOption "kde plasma"; - gnome.enable = lib.mkEnableOption "gnome"; - }; - - wm = { - niri.enable = lib.mkEnableOption "niri"; - hyprland = { - enable = lib.mkEnableOption "hyprland"; - monitors = lib.mkOption { - type = lib.types.listOf lib.types.str; - default = [ "eDP-1, 1920x1200@60, 0x0, 1" ]; - description = "Monitors settings"; - }; - }; - }; + gdm.enable = lib.mkEnableOption "gdm"; }; -} \ No newline at end of file + + de = { + kdePlasma.enable = lib.mkEnableOption "kde plasma"; + gnome.enable = lib.mkEnableOption "gnome"; + }; + + wm = { + niri.enable = lib.mkEnableOption "niri"; + hyprland = { + enable = lib.mkEnableOption "hyprland"; + monitors = lib.mkOption { + type = lib.types.listOf lib.types.attrs; + default = []; + description = "Monitors settings"; + }; + }; + }; + }; +} diff --git a/options/desktop/file.nix b/options/desktop/file.nix new file mode 100644 index 0000000..9d69748 --- /dev/null +++ b/options/desktop/file.nix @@ -0,0 +1,8 @@ +{ lib, ... }: { + options.device = { + symlink = lib.mkOption { + default = {}; + type = lib.type.attrsOf lib.types.str; + }; + }; +} \ No newline at end of file From 1986863848c8c1c8e20eac2ad62a4194ad91b046 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 10 Apr 2026 23:08:46 +0700 Subject: [PATCH 122/245] add some link and env --- devices/ideapad-slim-5/configuration.nix | 11 ++++++++--- home/asakiyuki/modules/files.nix | 4 ++-- options/desktop/file.nix | 2 +- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/devices/ideapad-slim-5/configuration.nix b/devices/ideapad-slim-5/configuration.nix index 2e26f3c..c2d7168 100755 --- a/devices/ideapad-slim-5/configuration.nix +++ b/devices/ideapad-slim-5/configuration.nix @@ -33,6 +33,11 @@ "flakes" ]; + environment.sessionVariables = { + PROTON_USE_WAYLAND = "1"; + PROTON_USE_NTSYNC = "1"; + }; + device = { flake-name = "ideapad-slim-5"; cursors = "aemeath"; @@ -69,9 +74,9 @@ symlink = { "SteamApps" = ".local/share/Steam/steamapps"; - "Development/KDE-Widget" = ".local/share/plasma/plasmoids"; - "Development/SplashScreen" = ".local/share/plasma/look-and-feel"; - "Development/DesktopEffects" = ".local/share/kwin/effects"; + # "Development/KDE-Widget" = ".local/share/plasma/plasmoids"; + # "Development/SplashScreen" = ".local/share/plasma/look-and-feel"; + # "Development/DesktopEffects" = ".local/share/kwin/effects"; }; programs = { diff --git a/home/asakiyuki/modules/files.nix b/home/asakiyuki/modules/files.nix index 3d607a0..7d98ad0 100644 --- a/home/asakiyuki/modules/files.nix +++ b/home/asakiyuki/modules/files.nix @@ -1,4 +1,4 @@ -{ pkgs, lib, osconfig, ... }: +{ pkgs, lib, osconfig, config, ... }: { home.file = { ".config/qt5ct/colors/Catppuccin-Mocha.conf".source = "${pkgs.catppuccin-qt5ct}/share/qt5ct/colors/catppuccin-mocha-sapphire.conf"; @@ -12,7 +12,7 @@ force = true; source = ../../../configs/dolphinrc; }; - }; + } // builtins.mapAttrs (key: path: { source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/${path}"; }) osconfig.device.symlink; xdg.configFile = { kdeglobals.text = builtins.readFile ((pkgs.catppuccin-kde.override { flavour = ["mocha"]; accents = ["sapphire"]; }) + "/share/color-schemes/CatppuccinMochaSapphire.colors") + diff --git a/options/desktop/file.nix b/options/desktop/file.nix index 9d69748..472b56c 100644 --- a/options/desktop/file.nix +++ b/options/desktop/file.nix @@ -2,7 +2,7 @@ options.device = { symlink = lib.mkOption { default = {}; - type = lib.type.attrsOf lib.types.str; + type = lib.types.attrsOf lib.types.str; }; }; } \ No newline at end of file From cd7830e49404e93cb6098b705218fda1ff273b1c Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 11 Apr 2026 00:39:08 +0700 Subject: [PATCH 123/245] f- hdr --- devices/ideapad-slim-5/configuration.nix | 27 +++++++++++++++--------- modules/features/home/packages.nix | 2 ++ 2 files changed, 19 insertions(+), 10 deletions(-) diff --git a/devices/ideapad-slim-5/configuration.nix b/devices/ideapad-slim-5/configuration.nix index c2d7168..a60423b 100755 --- a/devices/ideapad-slim-5/configuration.nix +++ b/devices/ideapad-slim-5/configuration.nix @@ -55,17 +55,24 @@ output = "eDP-1"; mode = "1920x1200@60"; position = "0x0"; - scale = "1"; - transform = "0"; + scale = 1; + bitdepth = 10; - # cm = "hdr"; - # supports_wide_color = 1; - # supports_hdr = 1; - # sdr_min_luminance = 0; - # sdr_max_luminance = 400; - # sdr_eotf = 2; - # sdrbrightness = 1.0; - # sdrsaturation = 1.2; + cm = "hdr"; + supports_wide_color = 1; + supports_hdr = 1; + + sdrbrightness = 1.0; + sdrsaturation = 1.0; + + sdr_min_luminance = 0.005; + sdr_max_luminance = 200; + + min_luminance = 0.0005; + max_luminance = 400; + max_avg_luminance = 250; + + sdr_eotf = 2; } ]; diff --git a/modules/features/home/packages.nix b/modules/features/home/packages.nix index eb17276..212a818 100644 --- a/modules/features/home/packages.nix +++ b/modules/features/home/packages.nix @@ -9,6 +9,8 @@ hyprshot antigravity prismlauncher + protonup-qt + vlc (lib.mkIf osconfig.device.programs.cider-2.enable cider-2) ]; From ec5fe2b1cb8b7c9c993cfb11860259ecf2313020 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 11 Apr 2026 01:32:03 +0700 Subject: [PATCH 124/245] add hdr option --- devices/ideapad-slim-5/configuration.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/devices/ideapad-slim-5/configuration.nix b/devices/ideapad-slim-5/configuration.nix index a60423b..8095316 100755 --- a/devices/ideapad-slim-5/configuration.nix +++ b/devices/ideapad-slim-5/configuration.nix @@ -1,8 +1,12 @@ { + lib, libs, pkgs, ... }: +let + ENABLE_HDR = false; +in { imports = [ ./hardware-configuration.nix @@ -51,13 +55,14 @@ wm.niri.enable = false; wm.hyprland.enable = true; wm.hyprland.monitors = [ - { + ({ output = "eDP-1"; mode = "1920x1200@60"; position = "0x0"; scale = 1; bitdepth = 10; + } // lib.optionalAttrs ENABLE_HDR { cm = "hdr"; supports_wide_color = 1; supports_hdr = 1; @@ -73,7 +78,7 @@ max_avg_luminance = 250; sdr_eotf = 2; - } + }) ]; bluetooth.enable = true; From c41aa537eb6debe6c4493f25d2023e13a8fdc31a Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 11 Apr 2026 01:46:08 +0700 Subject: [PATCH 125/245] idk --- devices/ideapad-slim-5/configuration.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/devices/ideapad-slim-5/configuration.nix b/devices/ideapad-slim-5/configuration.nix index 8095316..32aa3f1 100755 --- a/devices/ideapad-slim-5/configuration.nix +++ b/devices/ideapad-slim-5/configuration.nix @@ -86,6 +86,7 @@ in symlink = { "SteamApps" = ".local/share/Steam/steamapps"; + "Development/Quickshell" = ".config/quickshell"; # "Development/KDE-Widget" = ".local/share/plasma/plasmoids"; # "Development/SplashScreen" = ".local/share/plasma/look-and-feel"; # "Development/DesktopEffects" = ".local/share/kwin/effects"; From c7b70c29db7d5d154319687b605b8fe2813f0033 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 11 Apr 2026 02:06:48 +0700 Subject: [PATCH 126/245] add antigravity context menu --- configs/services-menu/open-with-antigravity.desktop | 10 ++++++++++ home/asakiyuki/modules/files.nix | 1 + 2 files changed, 11 insertions(+) create mode 100644 configs/services-menu/open-with-antigravity.desktop diff --git a/configs/services-menu/open-with-antigravity.desktop b/configs/services-menu/open-with-antigravity.desktop new file mode 100644 index 0000000..536c45d --- /dev/null +++ b/configs/services-menu/open-with-antigravity.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Type=Service +ServiceTypes=KonqPopupMenu/Plugin +MimeType=inode/directory +Actions=RunCodeDir + +[Desktop Action RunCodeDir] +Name=Open with Antigravity +Icon=antigravity +Exec=antigravity %F \ No newline at end of file diff --git a/home/asakiyuki/modules/files.nix b/home/asakiyuki/modules/files.nix index 7d98ad0..4fed6e3 100644 --- a/home/asakiyuki/modules/files.nix +++ b/home/asakiyuki/modules/files.nix @@ -5,6 +5,7 @@ ".config/qt6ct/colors/Catppuccin-Mocha.conf".source = "${pkgs.catppuccin-qt5ct}/share/qt6ct/colors/catppuccin-mocha-sapphire.conf"; ".local/share/kio/servicemenus/open-with-code.desktop".source = ../../../configs/services-menu/open-with-code.desktop; + ".local/share/kio/servicemenus/open-with-antigravity.desktop".source = ../../../configs/services-menu/open-with-antigravity.desktop; ".local/share/kio/servicemenus/open-ghostty-here.desktop".source = ../../../configs/services-menu/open-ghostty-here.desktop; ".mozilla/firefox/default/search.json.mozlz4".force = lib.mkForce true; From 85d3134481cd8abb0cd857ad967b1a932ea827d4 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 11 Apr 2026 02:10:33 +0700 Subject: [PATCH 127/245] add nvim context menu --- configs/services-menu/open-ghostty-here.desktop | 10 +++++----- configs/services-menu/open-with-nvim.desktop | 10 ++++++++++ home/asakiyuki/modules/files.nix | 1 + 3 files changed, 16 insertions(+), 5 deletions(-) create mode 100644 configs/services-menu/open-with-nvim.desktop diff --git a/configs/services-menu/open-ghostty-here.desktop b/configs/services-menu/open-ghostty-here.desktop index 0385aca..f2e4926 100644 --- a/configs/services-menu/open-ghostty-here.desktop +++ b/configs/services-menu/open-ghostty-here.desktop @@ -2,9 +2,9 @@ Type=Service ServiceTypes=KonqPopupMenu/Plugin MimeType=inode/directory -Actions=RunGhosttyDir +Actions=RunCodeDir -[Desktop Action RunGhosttyDir] -Name=Open Ghostty here -Icon=com.mitchellh.ghostty -Exec=ghostty +new-window --working-directory="%F" \ No newline at end of file +[Desktop Action RunCodeDir] +Name=Open with Nvim +Icon=nvim +Exec=ghostty +new-window --working-directory="~/.config" -e nvim . \ No newline at end of file diff --git a/configs/services-menu/open-with-nvim.desktop b/configs/services-menu/open-with-nvim.desktop new file mode 100644 index 0000000..fc6fa87 --- /dev/null +++ b/configs/services-menu/open-with-nvim.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Type=Service +ServiceTypes=KonqPopupMenu/Plugin +MimeType=inode/directory +Actions=RunCodeDir + +[Desktop Action RunCodeDir] +Name=Open with Nvim +Icon=nvim +Exec=antigravity %F \ No newline at end of file diff --git a/home/asakiyuki/modules/files.nix b/home/asakiyuki/modules/files.nix index 4fed6e3..200fe81 100644 --- a/home/asakiyuki/modules/files.nix +++ b/home/asakiyuki/modules/files.nix @@ -5,6 +5,7 @@ ".config/qt6ct/colors/Catppuccin-Mocha.conf".source = "${pkgs.catppuccin-qt5ct}/share/qt6ct/colors/catppuccin-mocha-sapphire.conf"; ".local/share/kio/servicemenus/open-with-code.desktop".source = ../../../configs/services-menu/open-with-code.desktop; + ".local/share/kio/servicemenus/open-with-nvim.desktop".source = ../../../configs/services-menu/open-with-nvim.desktop; ".local/share/kio/servicemenus/open-with-antigravity.desktop".source = ../../../configs/services-menu/open-with-antigravity.desktop; ".local/share/kio/servicemenus/open-ghostty-here.desktop".source = ../../../configs/services-menu/open-ghostty-here.desktop; From a871ec1447d97e86bed14c5ccc5da0e3bec040be Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 11 Apr 2026 02:14:49 +0700 Subject: [PATCH 128/245] add copy-public-url.sh --- configs/services-menu/copy-server-public-url.desktop | 10 ++++++++++ configs/services-menu/open-ghostty-here.desktop | 10 +++++----- configs/services-menu/open-with-nvim.desktop | 2 +- scripts/copy-public-url.sh | 12 ++++++++++++ 4 files changed, 28 insertions(+), 6 deletions(-) create mode 100644 configs/services-menu/copy-server-public-url.desktop create mode 100755 scripts/copy-public-url.sh diff --git a/configs/services-menu/copy-server-public-url.desktop b/configs/services-menu/copy-server-public-url.desktop new file mode 100644 index 0000000..785d36c --- /dev/null +++ b/configs/services-menu/copy-server-public-url.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Type=Service +ServiceTypes=KonqPopupMenu/Plugin +MimeType=all/allfiles; +Actions=CopyPublicURL + +[Desktop Action CopyPublicURL] +Name=Copy location as URL +Icon=org.kde.plasma.clipboard +Exec=/etc/nixos/scripts/copy-public-url.sh "%F" \ No newline at end of file diff --git a/configs/services-menu/open-ghostty-here.desktop b/configs/services-menu/open-ghostty-here.desktop index f2e4926..0385aca 100644 --- a/configs/services-menu/open-ghostty-here.desktop +++ b/configs/services-menu/open-ghostty-here.desktop @@ -2,9 +2,9 @@ Type=Service ServiceTypes=KonqPopupMenu/Plugin MimeType=inode/directory -Actions=RunCodeDir +Actions=RunGhosttyDir -[Desktop Action RunCodeDir] -Name=Open with Nvim -Icon=nvim -Exec=ghostty +new-window --working-directory="~/.config" -e nvim . \ No newline at end of file +[Desktop Action RunGhosttyDir] +Name=Open Ghostty here +Icon=com.mitchellh.ghostty +Exec=ghostty +new-window --working-directory="%F" \ No newline at end of file diff --git a/configs/services-menu/open-with-nvim.desktop b/configs/services-menu/open-with-nvim.desktop index fc6fa87..f2e4926 100644 --- a/configs/services-menu/open-with-nvim.desktop +++ b/configs/services-menu/open-with-nvim.desktop @@ -7,4 +7,4 @@ Actions=RunCodeDir [Desktop Action RunCodeDir] Name=Open with Nvim Icon=nvim -Exec=antigravity %F \ No newline at end of file +Exec=ghostty +new-window --working-directory="~/.config" -e nvim . \ No newline at end of file diff --git a/scripts/copy-public-url.sh b/scripts/copy-public-url.sh new file mode 100755 index 0000000..10d8875 --- /dev/null +++ b/scripts/copy-public-url.sh @@ -0,0 +1,12 @@ +#!/bin/sh +str_path="$1" +search="asakiyuki@server.asakiyuki.com:15523/home/asakiyuki/PUBLIC/" + +prefix=${str_path%%"$search"*} +prefix_index=${#prefix} + +if [ $(expr length "$str_path") -gt $prefix_index ]; then + prefix_index=$(($prefix_index + $(expr length $search))) + output=${str_path:prefix_index} + wl-copy "https://static.asakiyuki.com/${output// /"%20"}" +fi \ No newline at end of file From ce9df993242e7853872e8b9ded72e5196395d1ca Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 11 Apr 2026 02:26:53 +0700 Subject: [PATCH 129/245] update dolphinrc --- configs/dolphinrc | 5 +++++ home/asakiyuki/modules/files.nix | 2 ++ 2 files changed, 7 insertions(+) diff --git a/configs/dolphinrc b/configs/dolphinrc index c6286a9..c148bda 100644 --- a/configs/dolphinrc +++ b/configs/dolphinrc @@ -1,2 +1,7 @@ +[General] +RememberOpenedTabs=false +ModifiedStartupSettings=true +FilterBar=true + [ContextMenu] ShowOpenTerminal=false \ No newline at end of file diff --git a/home/asakiyuki/modules/files.nix b/home/asakiyuki/modules/files.nix index 200fe81..64fe073 100644 --- a/home/asakiyuki/modules/files.nix +++ b/home/asakiyuki/modules/files.nix @@ -4,6 +4,8 @@ ".config/qt5ct/colors/Catppuccin-Mocha.conf".source = "${pkgs.catppuccin-qt5ct}/share/qt5ct/colors/catppuccin-mocha-sapphire.conf"; ".config/qt6ct/colors/Catppuccin-Mocha.conf".source = "${pkgs.catppuccin-qt5ct}/share/qt6ct/colors/catppuccin-mocha-sapphire.conf"; + ".local/share/kio/servicemenus/copy-server-public-url.desktop".source = ../../../configs/services-menu/copy-server-public-url.desktop; + ".local/share/kio/servicemenus/open-with-code.desktop".source = ../../../configs/services-menu/open-with-code.desktop; ".local/share/kio/servicemenus/open-with-nvim.desktop".source = ../../../configs/services-menu/open-with-nvim.desktop; ".local/share/kio/servicemenus/open-with-antigravity.desktop".source = ../../../configs/services-menu/open-with-antigravity.desktop; From 96d189677e7eb4f5966f18923481a7b81b1900f1 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 11 Apr 2026 02:42:02 +0700 Subject: [PATCH 130/245] idk --- modules/features/home/packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/features/home/packages.nix b/modules/features/home/packages.nix index 212a818..eca46e3 100644 --- a/modules/features/home/packages.nix +++ b/modules/features/home/packages.nix @@ -11,6 +11,9 @@ prismlauncher protonup-qt vlc + gimp + libreoffice-qt-fresh + lutris (lib.mkIf osconfig.device.programs.cider-2.enable cider-2) ]; From ea137327c9faba9f68a04be7fcbc8e2397dfd6b8 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 11 Apr 2026 07:51:04 +0700 Subject: [PATCH 131/245] add some packages --- flake.lock | 43 +++++++++++++++++++++++++++--- flake.nix | 1 + modules/features/home/packages.nix | 6 +++++ 3 files changed, 46 insertions(+), 4 deletions(-) diff --git a/flake.lock b/flake.lock index 0be8cfe..8da0186 100644 --- a/flake.lock +++ b/flake.lock @@ -556,6 +556,24 @@ "type": "github" } }, + "hytale-launcher": { + "inputs": { + "nixpkgs": "nixpkgs_5" + }, + "locked": { + "lastModified": 1775840082, + "narHash": "sha256-7vLn6AaVuB8GAwwxNGWziYw90ZxZaRofawdvn05qprE=", + "owner": "zarilion", + "repo": "hytale-launcher-nix", + "rev": "30aef1c62122e0ec1b6b80c2b92cab84c333da84", + "type": "github" + }, + "original": { + "owner": "zarilion", + "repo": "hytale-launcher-nix", + "type": "github" + } + }, "ixx": { "inputs": { "flake-utils": [ @@ -588,7 +606,7 @@ "inputs": { "niri-stable": "niri-stable", "niri-unstable": "niri-unstable", - "nixpkgs": "nixpkgs_5", + "nixpkgs": "nixpkgs_6", "nixpkgs-stable": "nixpkgs-stable", "xwayland-satellite-stable": "xwayland-satellite-stable", "xwayland-satellite-unstable": "xwayland-satellite-unstable" @@ -664,7 +682,7 @@ "inputs": { "flake-compat": "flake-compat_2", "flake-parts": "flake-parts", - "nixpkgs": "nixpkgs_6", + "nixpkgs": "nixpkgs_7", "nixpkgs-nixcord": "nixpkgs-nixcord" }, "locked": { @@ -824,6 +842,22 @@ } }, "nixpkgs_6": { + "locked": { + "lastModified": 1775423009, + "narHash": "sha256-vPKLpjhIVWdDrfiUM8atW6YkIggCEKdSAlJPzzhkQlw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "68d8aa3d661f0e6bd5862291b5bb263b2a6595c9", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_7": { "locked": { "lastModified": 1773222311, "narHash": "sha256-BHoB/XpbqoZkVYZCfXJXfkR+GXFqwb/4zbWnOr2cRcU=", @@ -839,7 +873,7 @@ "type": "github" } }, - "nixpkgs_7": { + "nixpkgs_8": { "locked": { "lastModified": 1775305101, "narHash": "sha256-/74n1oQPtKG52Yw41cbToxspxHbYz6O3vi+XEw16Qe8=", @@ -932,11 +966,12 @@ "home-manager": "home-manager", "honkai-railway-grub-theme": "honkai-railway-grub-theme", "hyprland": "hyprland", + "hytale-launcher": "hytale-launcher", "niri": "niri", "nix-index-database": "nix-index-database", "nixcord": "nixcord", "nixos-hardware": "nixos-hardware", - "nixpkgs": "nixpkgs_7", + "nixpkgs": "nixpkgs_8", "nixvim": "nixvim", "unstablepkgs": "unstablepkgs" } diff --git a/flake.nix b/flake.nix index 1bf8e4f..cdf00dc 100644 --- a/flake.nix +++ b/flake.nix @@ -7,6 +7,7 @@ nixos-hardware.url = "github:NixOS/nixos-hardware/master"; catppuccin.url = "github:catppuccin/nix"; + hytale-launcher.url = "github:zarilion/hytale-launcher-nix"; niri.url = "github:sodiboo/niri-flake"; hyprland.url = "github:hyprwm/Hyprland"; nixcord.url = "github:FlameFlag/nixcord"; diff --git a/modules/features/home/packages.nix b/modules/features/home/packages.nix index eca46e3..bf3a668 100644 --- a/modules/features/home/packages.nix +++ b/modules/features/home/packages.nix @@ -2,6 +2,7 @@ pkgs, lib, osconfig, + inputs, ... }: { @@ -14,7 +15,12 @@ gimp libreoffice-qt-fresh lutris + osu-lazer-bin + proton-pass + proton-authenticator + + inputs.hytale-launcher.packages.${pkgs.system}.default (lib.mkIf osconfig.device.programs.cider-2.enable cider-2) ]; } From 960fcf0e0d92cd7941d39e0c0f8b2bf746fb9f97 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 11 Apr 2026 08:02:24 +0700 Subject: [PATCH 132/245] add cloudflre.nix --- host/desktop/default.nix | 1 + modules/features/system/cloudflare.nix | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 modules/features/system/cloudflare.nix diff --git a/host/desktop/default.nix b/host/desktop/default.nix index 3c5f521..19bacf2 100644 --- a/host/desktop/default.nix +++ b/host/desktop/default.nix @@ -20,6 +20,7 @@ (libs.root "/modules/features/system/flatpak.nix") (libs.root "/modules/features/system/udisks2.nix") (libs.root "/modules/features/system/dconf.nix") + (libs.root "/modules/features/system/cloudflare.nix") (libs.root "/modules/services/default.nix") (libs.root "/modules/home-manager.nix") diff --git a/modules/features/system/cloudflare.nix b/modules/features/system/cloudflare.nix new file mode 100644 index 0000000..c838380 --- /dev/null +++ b/modules/features/system/cloudflare.nix @@ -0,0 +1,5 @@ +{ ... }: { + services = { + cloudflare-warp.enable = true; + }; +} \ No newline at end of file From 4320703fa5080982630ba070eb3840f9aa9ce3db Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 11 Apr 2026 08:44:37 +0700 Subject: [PATCH 133/245] remove session env --- devices/ideapad-slim-5/configuration.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/devices/ideapad-slim-5/configuration.nix b/devices/ideapad-slim-5/configuration.nix index 32aa3f1..107ca63 100755 --- a/devices/ideapad-slim-5/configuration.nix +++ b/devices/ideapad-slim-5/configuration.nix @@ -37,11 +37,6 @@ in "flakes" ]; - environment.sessionVariables = { - PROTON_USE_WAYLAND = "1"; - PROTON_USE_NTSYNC = "1"; - }; - device = { flake-name = "ideapad-slim-5"; cursors = "aemeath"; From 3750ae75887a42ecea56051f82480007324166d0 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sun, 12 Apr 2026 19:02:41 +0700 Subject: [PATCH 134/245] add some package --- .vscode/settings.json | 3 - devices/ideapad-slim-5/configuration.nix | 3 +- flake.lock | 66 +++++++++---------- modules/features/home/packages.nix | 21 ++++++ modules/features/system/packages.nix | 27 ++------ modules/programs/hyprland/settings/input.nix | 23 +++---- .../programs/hyprland/settings/key-bind.nix | 2 + 7 files changed, 75 insertions(+), 70 deletions(-) delete mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 10b1817..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "nixEnvSelector.suggestion": false -} diff --git a/devices/ideapad-slim-5/configuration.nix b/devices/ideapad-slim-5/configuration.nix index 107ca63..324b837 100755 --- a/devices/ideapad-slim-5/configuration.nix +++ b/devices/ideapad-slim-5/configuration.nix @@ -55,9 +55,8 @@ in mode = "1920x1200@60"; position = "0x0"; scale = 1; - - bitdepth = 10; } // lib.optionalAttrs ENABLE_HDR { + bitdepth = 10; cm = "hdr"; supports_wide_color = 1; supports_hdr = 1; diff --git a/flake.lock b/flake.lock index 8da0186..eea7df1 100644 --- a/flake.lock +++ b/flake.lock @@ -104,11 +104,11 @@ "nixpkgs-lib": "nixpkgs-lib" }, "locked": { - "lastModified": 1772408722, - "narHash": "sha256-rHuJtdcOjK7rAHpHphUb1iCvgkU3GpfvicLMwwnfMT0=", + "lastModified": 1775087534, + "narHash": "sha256-91qqW8lhL7TLwgQWijoGBbiD4t7/q75KTi8NxjVmSmA=", "owner": "hercules-ci", "repo": "flake-parts", - "rev": "f20dc5d9b8027381c474144ecabc9034d6a839a3", + "rev": "3107b77cd68437b9a76194f0f7f9c55f2329ca5b", "type": "github" }, "original": { @@ -312,11 +312,11 @@ "xdph": "xdph" }, "locked": { - "lastModified": 1775578056, - "narHash": "sha256-TiSPoIM8EBf6Z6Hrne5wX4hPfss1xTRcRfTL6+DfmLo=", + "lastModified": 1775828308, + "narHash": "sha256-XsijqtwDQd8pf/PweiGGuX7O1250f3YOchQ+oGm0eCc=", "owner": "hyprwm", "repo": "Hyprland", - "rev": "75dc67e63f1873f1e97f73daf0ce284f75afa97c", + "rev": "f7755322fc515108cc9eed8113c09492d4a352c1", "type": "github" }, "original": { @@ -612,11 +612,11 @@ "xwayland-satellite-unstable": "xwayland-satellite-unstable" }, "locked": { - "lastModified": 1775566751, - "narHash": "sha256-5Xkx4NQvl2azAQe3lCZCMUx4FiwGOlEb+I4kyycQYw8=", + "lastModified": 1775877135, + "narHash": "sha256-nAqtUMy22olwyiOJB0CASVrbu5XB5+43GjlbIJ1KuvQ=", "owner": "sodiboo", "repo": "niri-flake", - "rev": "6aa49a9c5b82911459e230db5bd64289082d4354", + "rev": "f943da038fd668d435c2d17916577f295faa8839", "type": "github" }, "original": { @@ -686,11 +686,11 @@ "nixpkgs-nixcord": "nixpkgs-nixcord" }, "locked": { - "lastModified": 1775609538, - "narHash": "sha256-wuEAtQEyYLSTljliQJfCktlaougrr2x72AL3elomMe8=", + "lastModified": 1775824780, + "narHash": "sha256-WwXmevM7d7A60pXuBIjhDts1WMj/yFym3XYsf7EVoEg=", "owner": "FlameFlag", "repo": "nixcord", - "rev": "62128fa01d11c887437114248536438fd3add38d", + "rev": "8b7178802e247cb5d29545e286d5664ff4fb83bc", "type": "github" }, "original": { @@ -733,11 +733,11 @@ }, "nixpkgs-lib": { "locked": { - "lastModified": 1772328832, - "narHash": "sha256-e+/T/pmEkLP6BHhYjx6GmwP5ivonQQn0bJdH9YrRB+Q=", + "lastModified": 1774748309, + "narHash": "sha256-+U7gF3qxzwD5TZuANzZPeJTZRHS29OFQgkQ2kiTJBIQ=", "owner": "nix-community", "repo": "nixpkgs.lib", - "rev": "c185c7a5e5dd8f9add5b2f8ebeff00888b070742", + "rev": "333c4e0545a6da976206c74db8773a1645b5870a", "type": "github" }, "original": { @@ -748,11 +748,11 @@ }, "nixpkgs-nixcord": { "locked": { - "lastModified": 1773222311, - "narHash": "sha256-BHoB/XpbqoZkVYZCfXJXfkR+GXFqwb/4zbWnOr2cRcU=", + "lastModified": 1775595990, + "narHash": "sha256-OEf7YqhF9IjJFYZJyuhAypgU+VsRB5lD4DuiMws5Ltc=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "0590cd39f728e129122770c029970378a79d076a", + "rev": "4e92bbcdb030f3b4782be4751dc08e6b6cb6ccf2", "type": "github" }, "original": { @@ -764,11 +764,11 @@ }, "nixpkgs-stable": { "locked": { - "lastModified": 1775305101, - "narHash": "sha256-/74n1oQPtKG52Yw41cbToxspxHbYz6O3vi+XEw16Qe8=", + "lastModified": 1775811116, + "narHash": "sha256-t+HZK42pB6N+i5RGbuy7Xluez/VvWbembBdvzsc23Ss=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "36a601196c4ebf49e035270e10b2d103fe39076b", + "rev": "54170c54449ea4d6725efd30d719c5e505f1c10e", "type": "github" }, "original": { @@ -843,11 +843,11 @@ }, "nixpkgs_6": { "locked": { - "lastModified": 1775423009, - "narHash": "sha256-vPKLpjhIVWdDrfiUM8atW6YkIggCEKdSAlJPzzhkQlw=", + "lastModified": 1775710090, + "narHash": "sha256-ar3rofg+awPB8QXDaFJhJ2jJhu+KqN/PRCXeyuXR76E=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "68d8aa3d661f0e6bd5862291b5bb263b2a6595c9", + "rev": "4c1018dae018162ec878d42fec712642d214fdfa", "type": "github" }, "original": { @@ -859,11 +859,11 @@ }, "nixpkgs_7": { "locked": { - "lastModified": 1773222311, - "narHash": "sha256-BHoB/XpbqoZkVYZCfXJXfkR+GXFqwb/4zbWnOr2cRcU=", + "lastModified": 1775595990, + "narHash": "sha256-OEf7YqhF9IjJFYZJyuhAypgU+VsRB5lD4DuiMws5Ltc=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "0590cd39f728e129122770c029970378a79d076a", + "rev": "4e92bbcdb030f3b4782be4751dc08e6b6cb6ccf2", "type": "github" }, "original": { @@ -875,11 +875,11 @@ }, "nixpkgs_8": { "locked": { - "lastModified": 1775305101, - "narHash": "sha256-/74n1oQPtKG52Yw41cbToxspxHbYz6O3vi+XEw16Qe8=", + "lastModified": 1775811116, + "narHash": "sha256-t+HZK42pB6N+i5RGbuy7Xluez/VvWbembBdvzsc23Ss=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "36a601196c4ebf49e035270e10b2d103fe39076b", + "rev": "54170c54449ea4d6725efd30d719c5e505f1c10e", "type": "github" }, "original": { @@ -1038,11 +1038,11 @@ }, "unstablepkgs": { "locked": { - "lastModified": 1775423009, - "narHash": "sha256-vPKLpjhIVWdDrfiUM8atW6YkIggCEKdSAlJPzzhkQlw=", + "lastModified": 1775710090, + "narHash": "sha256-ar3rofg+awPB8QXDaFJhJ2jJhu+KqN/PRCXeyuXR76E=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "68d8aa3d661f0e6bd5862291b5bb263b2a6595c9", + "rev": "4c1018dae018162ec878d42fec712642d214fdfa", "type": "github" }, "original": { diff --git a/modules/features/home/packages.nix b/modules/features/home/packages.nix index bf3a668..37fd013 100644 --- a/modules/features/home/packages.nix +++ b/modules/features/home/packages.nix @@ -5,17 +5,38 @@ inputs, ... }: +let + custom-catppuccin-gtk = pkgs.catppuccin-gtk.override { + variant = "mocha"; + accents = [ "sapphire" ]; + size = "compact"; + }; + + custom-catppuccin-kde = (pkgs.catppuccin-kde.override { + flavour = [ "mocha" ]; + accents = [ "sapphire" ]; + }); +in { home.packages = with pkgs; [ + custom-catppuccin-gtk + hyprshot antigravity prismlauncher protonup-qt + protonplus vlc gimp libreoffice-qt-fresh lutris osu-lazer-bin + lmstudio + xprop + + bluetuith + lxqt.pavucontrol-qt + nwg-look proton-pass proton-authenticator diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix index ed3e0ce..109d7a2 100644 --- a/modules/features/system/packages.nix +++ b/modules/features/system/packages.nix @@ -4,25 +4,10 @@ config, ... }: -let - custom-catppuccin-gtk = pkgs.catppuccin-gtk.override { - variant = "mocha"; - accents = [ "sapphire" ]; - size = "compact"; - }; - - custom-catppuccin-kde = (pkgs.catppuccin-kde.override { - flavour = [ "mocha" ]; - accents = [ "sapphire" ]; - }); -in { environment.systemPackages = with pkgs; - [ - custom-catppuccin-gtk - papirus-icon-theme - + [ git vim wget @@ -34,16 +19,16 @@ in brightnessctl php ntfs3g - + zip + unzip + wine wine64 winetricks protontricks - + quickshell - bluetuith - lxqt.pavucontrol-qt - nwg-look + papirus-icon-theme ] ++ ( with pkgs; diff --git a/modules/programs/hyprland/settings/input.nix b/modules/programs/hyprland/settings/input.nix index 2914e07..d46fdd7 100644 --- a/modules/programs/hyprland/settings/input.nix +++ b/modules/programs/hyprland/settings/input.nix @@ -1,13 +1,14 @@ -{ ... }: { - wayland.windowManager.hyprland.settings = { - "$LAPTOP_TOUCHPAD_ENABLE" = false; +{ ... }: +{ + wayland.windowManager.hyprland.settings = { + "$LAPTOP_TOUCHPAD_ENABLE" = false; - device = { - name = "gxtp5100:00-27c6:01e0-touchpad"; - enabled = "$LAPTOP_TOUCHPAD_ENABLE"; - natural_scroll = true; - }; - - input.touchpad.natural_scroll = true; + device = { + name = "gxtp5100:00-27c6:01e0-touchpad"; + enabled = "$LAPTOP_TOUCHPAD_ENABLE"; + natural_scroll = true; }; -} \ No newline at end of file + + input.touchpad.natural_scroll = true; + }; +} diff --git a/modules/programs/hyprland/settings/key-bind.nix b/modules/programs/hyprland/settings/key-bind.nix index d5d70ea..624f81a 100644 --- a/modules/programs/hyprland/settings/key-bind.nix +++ b/modules/programs/hyprland/settings/key-bind.nix @@ -47,6 +47,8 @@ "SUPER, MOUSE_UP, workspace, e+1" "ALT, SPACE, global, asakiyuki:launcher" + ", XF86TouchpadToggle, global, asakiyuki:touchpadtoggle" + ", Caps_Lock, global, asakiyuki:capslock" ",XF86MonBrightnessDown, exec, brightnessctl s 5%-" ",XF86MonBrightnessUp, exec, brightnessctl s +5%" From 77d70bff5216c5f054f71ccdd41ff01801e23a28 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sun, 12 Apr 2026 19:19:07 +0700 Subject: [PATCH 135/245] add blender --- modules/features/home/packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/features/home/packages.nix b/modules/features/home/packages.nix index 37fd013..3011eaf 100644 --- a/modules/features/home/packages.nix +++ b/modules/features/home/packages.nix @@ -32,6 +32,7 @@ in lutris osu-lazer-bin lmstudio + blender xprop bluetuith From 019b14295edf044608f3a04e8a20fbee113f6d7a Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sun, 12 Apr 2026 19:44:48 +0700 Subject: [PATCH 136/245] add tensorflow --- modules/features/system/packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix index 109d7a2..9f54b5a 100644 --- a/modules/features/system/packages.nix +++ b/modules/features/system/packages.nix @@ -52,6 +52,9 @@ plasma-sdk ] ) + ++ (with rPackages; [ + tensorflow + ]) ++ (lib.optionals config.device.wm.hyprland.enable ( with pkgs; [ From e1175885503ecdfdbcf7401a553ea6f0d4d3f09c Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sun, 12 Apr 2026 20:01:02 +0700 Subject: [PATCH 137/245] add python3 --- modules/features/system/packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix index 9f54b5a..e3dc991 100644 --- a/modules/features/system/packages.nix +++ b/modules/features/system/packages.nix @@ -21,6 +21,7 @@ ntfs3g zip unzip + python3 wine wine64 From c5d7c2f880224eb7fba096509ade3e0e6b46937a Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sun, 12 Apr 2026 20:50:49 +0700 Subject: [PATCH 138/245] idk --- modules/features/home/packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/features/home/packages.nix b/modules/features/home/packages.nix index 3011eaf..b44cf9d 100644 --- a/modules/features/home/packages.nix +++ b/modules/features/home/packages.nix @@ -42,7 +42,7 @@ in proton-pass proton-authenticator - inputs.hytale-launcher.packages.${pkgs.system}.default + inputs.hytale-launcher.packages.${system}.default (lib.mkIf osconfig.device.programs.cider-2.enable cider-2) ]; } From 7bcfc3953130b999a212d4927e1408d1676d914b Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sun, 12 Apr 2026 22:10:37 +0700 Subject: [PATCH 139/245] idk --- modules/features/system/packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix index e3dc991..d45e6a7 100644 --- a/modules/features/system/packages.nix +++ b/modules/features/system/packages.nix @@ -22,6 +22,7 @@ zip unzip python3 + jdk25 wine wine64 From af7aff91367e9bbbdc3b5796f11d2b3f7af0f73e Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 00:21:48 +0700 Subject: [PATCH 140/245] remove catppuccin flake --- .vscode/settings.json | 3 + flake.lock | 115 +++++++++++-------------------- flake.nix | 1 - home/asakiyuki/configuration.nix | 1 - modules/features/home/theme.nix | 9 --- 5 files changed, 43 insertions(+), 86 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..10b1817 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "nixEnvSelector.suggestion": false +} diff --git a/flake.lock b/flake.lock index eea7df1..2adfa23 100644 --- a/flake.lock +++ b/flake.lock @@ -33,34 +33,16 @@ "type": "github" } }, - "catppuccin": { + "dolphin-overlay": { "inputs": { "nixpkgs": "nixpkgs" }, "locked": { - "lastModified": 1775213373, - "narHash": "sha256-wJHsijC2l/E+ovmlpPGha8pXA6RHSwHWmBV97gvkmyI=", - "owner": "catppuccin", - "repo": "nix", - "rev": "ba73719e673e7c2d89ac2f8df0bc0d48983e4907", - "type": "github" - }, - "original": { - "owner": "catppuccin", - "repo": "nix", - "type": "github" - } - }, - "dolphin-overlay": { - "inputs": { - "nixpkgs": "nixpkgs_2" - }, - "locked": { - "lastModified": 1743892246, - "narHash": "sha256-AHeavUWjnDPT/hffE5hM8RIew+mZJSSr9tUEiSvZW30=", + "lastModified": 1775943689, + "narHash": "sha256-0XBCoR1L5gYmh8VqZu0HcHsL4GeGXQMC0f3ARshf/rk=", "owner": "rumboon", "repo": "dolphin-overlay", - "rev": "55fec3268972876890d6081d3d76a701c37c01d7", + "rev": "c32758737a0cb02d0bf380753d11df1b8537a944", "type": "github" }, "original": { @@ -220,7 +202,7 @@ "honkai-railway-grub-theme": { "inputs": { "flake-utils": "flake-utils", - "nixpkgs": "nixpkgs_3" + "nixpkgs": "nixpkgs_2" }, "locked": { "lastModified": 1775016235, @@ -306,17 +288,17 @@ "hyprutils": "hyprutils", "hyprwayland-scanner": "hyprwayland-scanner", "hyprwire": "hyprwire", - "nixpkgs": "nixpkgs_4", + "nixpkgs": "nixpkgs_3", "pre-commit-hooks": "pre-commit-hooks", "systems": "systems_2", "xdph": "xdph" }, "locked": { - "lastModified": 1775828308, - "narHash": "sha256-XsijqtwDQd8pf/PweiGGuX7O1250f3YOchQ+oGm0eCc=", + "lastModified": 1776013496, + "narHash": "sha256-zSD9MqFjGAP3QpqahwLtNrGgddIL8XPYFuGoyE7ile0=", "owner": "hyprwm", "repo": "Hyprland", - "rev": "f7755322fc515108cc9eed8113c09492d4a352c1", + "rev": "d67c4e2b7f1e381b24becbb45b8e8471fcdda163", "type": "github" }, "original": { @@ -558,7 +540,7 @@ }, "hytale-launcher": { "inputs": { - "nixpkgs": "nixpkgs_5" + "nixpkgs": "nixpkgs_4" }, "locked": { "lastModified": 1775840082, @@ -606,7 +588,7 @@ "inputs": { "niri-stable": "niri-stable", "niri-unstable": "niri-unstable", - "nixpkgs": "nixpkgs_6", + "nixpkgs": "nixpkgs_5", "nixpkgs-stable": "nixpkgs-stable", "xwayland-satellite-stable": "xwayland-satellite-stable", "xwayland-satellite-unstable": "xwayland-satellite-unstable" @@ -665,11 +647,11 @@ ] }, "locked": { - "lastModified": 1775365369, - "narHash": "sha256-DgH5mveLoau20CuTnaU5RXZWgFQWn56onQ4Du2CqYoI=", + "lastModified": 1775970782, + "narHash": "sha256-7jt9Vpm48Yy5yAWigYpde+HxtYEpEuyzIQJF4VYehhk=", "owner": "nix-community", "repo": "nix-index-database", - "rev": "cef5cf82671e749ac87d69aadecbb75967e6f6c3", + "rev": "bedba5989b04614fc598af9633033b95a937933f", "type": "github" }, "original": { @@ -682,15 +664,15 @@ "inputs": { "flake-compat": "flake-compat_2", "flake-parts": "flake-parts", - "nixpkgs": "nixpkgs_7", + "nixpkgs": "nixpkgs_6", "nixpkgs-nixcord": "nixpkgs-nixcord" }, "locked": { - "lastModified": 1775824780, - "narHash": "sha256-WwXmevM7d7A60pXuBIjhDts1WMj/yFym3XYsf7EVoEg=", + "lastModified": 1775902385, + "narHash": "sha256-Y3hDPDxelMYssDK+z1REuhh1I9ykuPGo2IMpnF0muy8=", "owner": "FlameFlag", "repo": "nixcord", - "rev": "8b7178802e247cb5d29545e286d5664ff4fb83bc", + "rev": "ebae44d65ab37fccd66e03db7d75fc434e2069f6", "type": "github" }, "original": { @@ -717,16 +699,15 @@ }, "nixpkgs": { "locked": { - "lastModified": 1775036866, - "narHash": "sha256-ZojAnPuCdy657PbTq5V0Y+AHKhZAIwSIT2cb8UgAz/U=", + "lastModified": 1743890059, + "narHash": "sha256-QQLhHHGNtAW8qRpseb40zqZlhZUeRRUg2SGmXjfE+so=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "6201e203d09599479a3b3450ed24fa81537ebc4e", + "rev": "58a813438464b5295170efe38d8bd5f40fcc1d23", "type": "github" }, "original": { "owner": "NixOS", - "ref": "nixos-unstable", "repo": "nixpkgs", "type": "github" } @@ -779,21 +760,6 @@ } }, "nixpkgs_2": { - "locked": { - "lastModified": 1743890059, - "narHash": "sha256-QQLhHHGNtAW8qRpseb40zqZlhZUeRRUg2SGmXjfE+so=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "58a813438464b5295170efe38d8bd5f40fcc1d23", - "type": "github" - }, - "original": { - "owner": "NixOS", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs_3": { "locked": { "lastModified": 1774709303, "narHash": "sha256-D3Q07BbIA2KnTcSXIqqu9P586uWxN74zNoCH3h2ESHg=", @@ -809,6 +775,22 @@ "type": "github" } }, + "nixpkgs_3": { + "locked": { + "lastModified": 1775423009, + "narHash": "sha256-vPKLpjhIVWdDrfiUM8atW6YkIggCEKdSAlJPzzhkQlw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "68d8aa3d661f0e6bd5862291b5bb263b2a6595c9", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, "nixpkgs_4": { "locked": { "lastModified": 1775423009, @@ -826,22 +808,6 @@ } }, "nixpkgs_5": { - "locked": { - "lastModified": 1775423009, - "narHash": "sha256-vPKLpjhIVWdDrfiUM8atW6YkIggCEKdSAlJPzzhkQlw=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "68d8aa3d661f0e6bd5862291b5bb263b2a6595c9", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs_6": { "locked": { "lastModified": 1775710090, "narHash": "sha256-ar3rofg+awPB8QXDaFJhJ2jJhu+KqN/PRCXeyuXR76E=", @@ -857,7 +823,7 @@ "type": "github" } }, - "nixpkgs_7": { + "nixpkgs_6": { "locked": { "lastModified": 1775595990, "narHash": "sha256-OEf7YqhF9IjJFYZJyuhAypgU+VsRB5lD4DuiMws5Ltc=", @@ -873,7 +839,7 @@ "type": "github" } }, - "nixpkgs_8": { + "nixpkgs_7": { "locked": { "lastModified": 1775811116, "narHash": "sha256-t+HZK42pB6N+i5RGbuy7Xluez/VvWbembBdvzsc23Ss=", @@ -961,7 +927,6 @@ }, "root": { "inputs": { - "catppuccin": "catppuccin", "dolphin-overlay": "dolphin-overlay", "home-manager": "home-manager", "honkai-railway-grub-theme": "honkai-railway-grub-theme", @@ -971,7 +936,7 @@ "nix-index-database": "nix-index-database", "nixcord": "nixcord", "nixos-hardware": "nixos-hardware", - "nixpkgs": "nixpkgs_8", + "nixpkgs": "nixpkgs_7", "nixvim": "nixvim", "unstablepkgs": "unstablepkgs" } diff --git a/flake.nix b/flake.nix index cdf00dc..2915e3b 100644 --- a/flake.nix +++ b/flake.nix @@ -5,7 +5,6 @@ nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11"; unstablepkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; nixos-hardware.url = "github:NixOS/nixos-hardware/master"; - catppuccin.url = "github:catppuccin/nix"; hytale-launcher.url = "github:zarilion/hytale-launcher-nix"; niri.url = "github:sodiboo/niri-flake"; diff --git a/home/asakiyuki/configuration.nix b/home/asakiyuki/configuration.nix index 3c196b3..f3dbdab 100644 --- a/home/asakiyuki/configuration.nix +++ b/home/asakiyuki/configuration.nix @@ -24,7 +24,6 @@ in ../../modules/features/home/theme.nix - inputs.catppuccin.homeModules.catppuccin inputs.nixvim.homeModules.nixvim inputs.nixcord.homeModules.nixcord inputs.niri.homeModules.niri diff --git a/modules/features/home/theme.nix b/modules/features/home/theme.nix index bcd3751..3437164 100644 --- a/modules/features/home/theme.nix +++ b/modules/features/home/theme.nix @@ -38,13 +38,4 @@ in # GTK gtk.theme.name = "catppuccin-mocha-sapphire-compact"; - - # Catppuccin - catppuccin = { - accent = "blue"; - flavor = "mocha"; - - fcitx5.enable = true; - obs.enable = true; - }; } \ No newline at end of file From 06a099aeb51e471f7c0330dac5cec3c6097ea461 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 00:31:52 +0700 Subject: [PATCH 141/245] install vscode as unstable version --- home/asakiyuki/configuration.nix | 3 ++- modules/features/home/vscode.nix | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/home/asakiyuki/configuration.nix b/home/asakiyuki/configuration.nix index f3dbdab..8af15c1 100644 --- a/home/asakiyuki/configuration.nix +++ b/home/asakiyuki/configuration.nix @@ -4,6 +4,7 @@ config, pkgs, custom, + unstable, ... }: let @@ -16,7 +17,7 @@ in }; home-manager.users.asakiyuki = { - _module.args = { inherit inputs osconfig custom libs; }; + _module.args = { inherit inputs unstable osconfig custom libs; }; imports = [ ./modules/programs.nix ./modules/files.nix diff --git a/modules/features/home/vscode.nix b/modules/features/home/vscode.nix index 3aa606a..29000a0 100644 --- a/modules/features/home/vscode.nix +++ b/modules/features/home/vscode.nix @@ -1,5 +1,6 @@ -{ ... }: { +{ unstable, ... }: { programs.vscode = { enable = true; + package = unstable.vscode; }; } \ No newline at end of file From 6f07cf2b902d253718284997c5b9e8d324f3648c Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 01:29:05 +0700 Subject: [PATCH 142/245] fixed capslock with modifier keys not trigger popup --- devices/ideapad-slim-5/configuration.nix | 43 ++++--- home/asakiyuki/configuration.nix | 15 ++- modules/features/home/vscode.nix | 13 +- modules/features/system/packages.nix | 5 +- .../programs/hyprland/settings/key-bind.nix | 119 +++++++++--------- 5 files changed, 106 insertions(+), 89 deletions(-) diff --git a/devices/ideapad-slim-5/configuration.nix b/devices/ideapad-slim-5/configuration.nix index 324b837..16c2066 100755 --- a/devices/ideapad-slim-5/configuration.nix +++ b/devices/ideapad-slim-5/configuration.nix @@ -6,7 +6,7 @@ }: let ENABLE_HDR = false; -in +in { imports = [ ./hardware-configuration.nix @@ -50,29 +50,32 @@ in wm.niri.enable = false; wm.hyprland.enable = true; wm.hyprland.monitors = [ - ({ - output = "eDP-1"; - mode = "1920x1200@60"; - position = "0x0"; - scale = 1; - } // lib.optionalAttrs ENABLE_HDR { - bitdepth = 10; - cm = "hdr"; - supports_wide_color = 1; - supports_hdr = 1; + ( + { + output = "eDP-1"; + mode = "1920x1200@60"; + position = "0x0"; + scale = 1; + } + // lib.optionalAttrs ENABLE_HDR { + bitdepth = 10; + cm = "hdr"; + supports_wide_color = 1; + supports_hdr = 1; - sdrbrightness = 1.0; - sdrsaturation = 1.0; + sdrbrightness = 1.0; + sdrsaturation = 1.0; - sdr_min_luminance = 0.005; - sdr_max_luminance = 200; + sdr_min_luminance = 0.005; + sdr_max_luminance = 200; - min_luminance = 0.0005; - max_luminance = 400; - max_avg_luminance = 250; + min_luminance = 0.0005; + max_luminance = 400; + max_avg_luminance = 250; - sdr_eotf = 2; - }) + sdr_eotf = 2; + } + ) ]; bluetooth.enable = true; diff --git a/home/asakiyuki/configuration.nix b/home/asakiyuki/configuration.nix index 8af15c1..4dc6fbf 100644 --- a/home/asakiyuki/configuration.nix +++ b/home/asakiyuki/configuration.nix @@ -17,19 +17,27 @@ in }; home-manager.users.asakiyuki = { - _module.args = { inherit inputs unstable osconfig custom libs; }; + _module.args = { + inherit + inputs + unstable + osconfig + custom + libs + ; + }; imports = [ ./modules/programs.nix ./modules/files.nix ./modules/env.nix - + ../../modules/features/home/theme.nix inputs.nixvim.homeModules.nixvim inputs.nixcord.homeModules.nixcord inputs.niri.homeModules.niri ]; - + home = { username = "asakiyuki"; stateVersion = "25.11"; @@ -42,4 +50,3 @@ in }; }; } - diff --git a/modules/features/home/vscode.nix b/modules/features/home/vscode.nix index 29000a0..a5af7c9 100644 --- a/modules/features/home/vscode.nix +++ b/modules/features/home/vscode.nix @@ -1,6 +1,7 @@ -{ unstable, ... }: { - programs.vscode = { - enable = true; - package = unstable.vscode; - }; -} \ No newline at end of file +{ unstable, ... }: +{ + programs.vscode = { + enable = true; + package = unstable.vscode; + }; +} diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix index d45e6a7..dea3737 100644 --- a/modules/features/system/packages.nix +++ b/modules/features/system/packages.nix @@ -7,7 +7,7 @@ { environment.systemPackages = with pkgs; - [ + [ git vim wget @@ -23,12 +23,13 @@ unzip python3 jdk25 + nixfmt wine wine64 winetricks protontricks - + quickshell papirus-icon-theme ] diff --git a/modules/programs/hyprland/settings/key-bind.nix b/modules/programs/hyprland/settings/key-bind.nix index 624f81a..3e50488 100644 --- a/modules/programs/hyprland/settings/key-bind.nix +++ b/modules/programs/hyprland/settings/key-bind.nix @@ -1,71 +1,76 @@ { osconfig, config, ... }: { - wayland.windowManager.hyprland.settings.bind = [ - "CTRL ALT, T, exec, ${osconfig.device.programs.terminal}" + wayland.windowManager.hyprland.settings = { + bind = [ + "CTRL ALT, T, exec, ${osconfig.device.programs.terminal}" - "SUPER SHIFT, L, exit," - "SUPER SHIFT, TAB, togglefloating," - "SUPER SHIFT, S, exec, hyprshot -m region -o '${config.home.homeDirectory}/Pictures/Screenshots/' -z" - "SUPER, J, togglesplit," - "SUPER, E, exec, dolphin" + "SUPER SHIFT, L, exit," + "SUPER SHIFT, TAB, togglefloating," + "SUPER SHIFT, S, exec, hyprshot -m region -o '${config.home.homeDirectory}/Pictures/Screenshots/' -z" + "SUPER, J, togglesplit," + "SUPER, E, exec, dolphin" - "SUPER, C, killactive" + "SUPER, C, killactive" - "SUPER SHIFT, LEFT, resizeactive, -25 0" - "SUPER SHIFT, RIGHT, resizeactive, 25 0" - "SUPER SHIFT, UP, resizeactive, 0 -25" - "SUPER SHIFT, DOWN, resizeactive, 0 25" + "SUPER SHIFT, LEFT, resizeactive, -25 0" + "SUPER SHIFT, RIGHT, resizeactive, 25 0" + "SUPER SHIFT, UP, resizeactive, 0 -25" + "SUPER SHIFT, DOWN, resizeactive, 0 25" - "SUPER, LEFT, movefocus, l" - "SUPER, RIGHT, movefocus, r" - "SUPER, UP, movefocus, u" - "SUPER, DOWN, movefocus, d" + "SUPER, LEFT, movefocus, l" + "SUPER, RIGHT, movefocus, r" + "SUPER, UP, movefocus, u" + "SUPER, DOWN, movefocus, d" - "SUPER CTRL, LEFT, movewindow, l" - "SUPER CTRL, RIGHT, movewindow, r" - "SUPER CTRL, UP, movewindow, u" - "SUPER CTRL, DOWN, movewindow, d" - - "SUPER SHIFT, h, resizeactive, -25 0" - "SUPER SHIFT, l, resizeactive, 25 0" - "SUPER SHIFT, k, resizeactive, 0 -25" - "SUPER SHIFT, j, resizeactive, 0 25" + "SUPER CTRL, LEFT, movewindow, l" + "SUPER CTRL, RIGHT, movewindow, r" + "SUPER CTRL, UP, movewindow, u" + "SUPER CTRL, DOWN, movewindow, d" - "SUPER, h, movefocus, l" - "SUPER, l, movefocus, r" - "SUPER, k, movefocus, u" - "SUPER, j, movefocus, d" + "SUPER SHIFT, h, resizeactive, -25 0" + "SUPER SHIFT, l, resizeactive, 25 0" + "SUPER SHIFT, k, resizeactive, 0 -25" + "SUPER SHIFT, j, resizeactive, 0 25" - "SUPER CTRL, h, movewindow, l" - "SUPER CTRL, l, movewindow, r" - "SUPER CTRL, k, movewindow, u" - "SUPER CTRL, j, movewindow, d" + "SUPER, h, movefocus, l" + "SUPER, l, movefocus, r" + "SUPER, k, movefocus, u" + "SUPER, j, movefocus, d" - "SUPER, TAB, workspace, e+1" - "SUPER ALT, TAB, workspace, e-1" - "SUPER, MOUSE_DOWN, workspace, e-1" - "SUPER, MOUSE_UP, workspace, e+1" + "SUPER CTRL, h, movewindow, l" + "SUPER CTRL, l, movewindow, r" + "SUPER CTRL, k, movewindow, u" + "SUPER CTRL, j, movewindow, d" - "ALT, SPACE, global, asakiyuki:launcher" - ", XF86TouchpadToggle, global, asakiyuki:touchpadtoggle" - ", Caps_Lock, global, asakiyuki:capslock" + "SUPER, TAB, workspace, e+1" + "SUPER ALT, TAB, workspace, e-1" + "SUPER, MOUSE_DOWN, workspace, e-1" + "SUPER, MOUSE_UP, workspace, e+1" - ",XF86MonBrightnessDown, exec, brightnessctl s 5%-" - ",XF86MonBrightnessUp, exec, brightnessctl s +5%" - ] - ++ builtins.concatLists ( - builtins.genList (i: [ - "SUPER, ${toString (i + 1)}, workspace,${toString (i + 1)}" - "SUPER SHIFT, ${toString (i + 1)}, movetoworkspace,${toString (i + 1)}" - ]) 9 - ) - ++ [ - "SUPER, 0, workspace, 10" - "SUPER SHIFT, 0, movetoworkspace, 10" - ]; + ", XF86TouchpadToggle, global, asakiyuki:touchpadtoggle" + "ALT, SPACE, global, asakiyuki:launcher" - wayland.windowManager.hyprland.settings.bindm = [ - "SUPER, mouse:272, movewindow" - "SUPER, mouse:273, resizewindow" - ]; + ",XF86MonBrightnessDown, exec, brightnessctl s 5%-" + ",XF86MonBrightnessUp, exec, brightnessctl s +5%" + ] + ++ builtins.concatLists ( + builtins.genList (i: [ + "SUPER, ${toString (i + 1)}, workspace,${toString (i + 1)}" + "SUPER SHIFT, ${toString (i + 1)}, movetoworkspace,${toString (i + 1)}" + ]) 9 + ) + ++ [ + "SUPER, 0, workspace, 10" + "SUPER SHIFT, 0, movetoworkspace, 10" + ]; + + bindi = [ + ", Caps_Lock, global, asakiyuki:capslock" + ]; + + bindm = [ + "SUPER, mouse:272, movewindow" + "SUPER, mouse:273, resizewindow" + ]; + }; } From a442768eac4c9921f621a99061a98d15c6f8cd64 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 10:41:13 +0700 Subject: [PATCH 143/245] add server configurations --- devices/home-server/configuration.nix | 107 ++++++++++++++++++ .../home-server/hardware-configuration.nix | 43 +++++++ flake.nix | 9 +- 3 files changed, 158 insertions(+), 1 deletion(-) create mode 100644 devices/home-server/configuration.nix create mode 100644 devices/home-server/hardware-configuration.nix diff --git a/devices/home-server/configuration.nix b/devices/home-server/configuration.nix new file mode 100644 index 0000000..96b5297 --- /dev/null +++ b/devices/home-server/configuration.nix @@ -0,0 +1,107 @@ +{ ... }: +{ + imports = [ ./hardware-configuration.nix ]; + + nix.settings.experimental-features = [ + "nix-command" + "flakes" + ]; + + services = { + adguardhome = { + enable = true; + port = 34778; + openFirewall = true; + }; + + fail2ban = { + enable = true; + ignoreIP = [ + "192.168.0.0/16" + ]; + }; + + cloudflare-dyndns = { + enable = true; + apiTokenFile = "/home/asakiyuki/.secret/CLOUDFLARE_TOKEN_KEY"; + frequency = "*:0/5"; + proxied = true; + ipv6 = false; + ipv4 = true; + deleteMissing = false; + domains = [ "ddns.asakiyuki.com" ]; + }; + + openssh = { + enable = true; + ports = [ 15523 ]; + authorizedKeysInHomedir = true; + authorizedKeysFiles = [ "/home/asakiyuki/.ssh/authorized_keys" ]; + settings = { + AllowUsers = [ + "asakiyuki" + "junko" + ]; + PasswordAuthentication = true; + KbdInteractiveAuthentication = false; + AllowAgentForwarding = false; + AllowStreamLocalForwarding = false; + X11Forwarding = false; + PermitRootLogin = "no"; + }; + }; + }; + + networking = { + useDHCP = false; + networkmanager.enable = true; + defaultGateway = "192.168.1.1"; + nameservers = [ + "8.8.8.8" + "1.1.1.1" + ]; + + interfaces = { + enp1s0 = { + useDHCP = false; + + ipv4.addresses = [ + { + address = "192.168.1.100"; + prefixLength = 24; + } + ]; + + ipv6.addresses = [ + { + address = "2402:800:62d0:1c26:abcd:1234:5678:9abc"; + prefixLength = 64; + } + ]; + }; + }; + + firewall = { + enable = true; + allowedUDPPorts = [ + 53 + 34778 + ]; + allowedTCPPorts = [ + 15523 + 53 + 8443 + 583 + 25565 + ]; + }; + }; + + nixpkgs.config.allowUnfree = true; + + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; + + time.timeZone = "Asia/Ho_Chi_Minh"; + system.stateVersion = "25.11"; +} diff --git a/devices/home-server/hardware-configuration.nix b/devices/home-server/hardware-configuration.nix new file mode 100644 index 0000000..8d19e80 --- /dev/null +++ b/devices/home-server/hardware-configuration.nix @@ -0,0 +1,43 @@ +# Do not modify this file! It was generated by ‘nixos-generate-config’ +# and may be overwritten by future invocations. Please make changes +# to /etc/nixos/configuration.nix instead. +{ + config, + lib, + pkgs, + modulesPath, + ... +}: + +{ + imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; + + boot.initrd.availableKernelModules = [ + "xhci_pci" + "ahci" + "usbhid" + "usb_storage" + "sd_mod" + ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ "kvm-intel" ]; + boot.extraModulePackages = [ ]; + + fileSystems = { + "/" = { + device = "/dev/disk/by-uuid/16cfcdf6-15bb-4b63-835f-044867999510"; + fsType = "ext4"; + }; + "/home/asakiyuki/HOST" = { + device = "/dev/disk/by-uuid/414e2a24-605f-47c3-a325-8db8a4934329"; + fsType = "ext4"; + }; + }; + + swapDevices = [ + { device = "/dev/disk/by-uuid/cfa7f30f-f08a-4400-babe-41357586a6a0"; } + ]; + + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; + hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; +} diff --git a/flake.nix b/flake.nix index 2915e3b..504ac0a 100644 --- a/flake.nix +++ b/flake.nix @@ -65,7 +65,14 @@ (libs.root "/devices/ideapad-slim-5/configuration.nix") ]; }; + + home-server = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + specialArgs = { inherit self inputs libs; }; + modules = [ + (libs.root "/devices/home-server/configuration.nix") + ]; + }; }; }; } - From 86c9561ab33f97ce43fd391e970d2f5c81424747 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 10:43:11 +0700 Subject: [PATCH 144/245] add some packages to server --- devices/home-server/configuration.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/devices/home-server/configuration.nix b/devices/home-server/configuration.nix index 96b5297..21d2b8d 100644 --- a/devices/home-server/configuration.nix +++ b/devices/home-server/configuration.nix @@ -1,4 +1,4 @@ -{ ... }: +{ pkgs, ... }: { imports = [ ./hardware-configuration.nix ]; @@ -7,6 +7,11 @@ "flakes" ]; + environment.systemPackages = with pkgs; [ + git + vim + ]; + services = { adguardhome = { enable = true; From fd0e9dfbd1c5a64786b96b14a4050ea15f4f4c33 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 10:45:01 +0700 Subject: [PATCH 145/245] add users --- devices/home-server/configuration.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/devices/home-server/configuration.nix b/devices/home-server/configuration.nix index 21d2b8d..dc1615b 100644 --- a/devices/home-server/configuration.nix +++ b/devices/home-server/configuration.nix @@ -12,6 +12,15 @@ vim ]; + users.users.junko = { + isNormalUser = true; + }; + + users.users.asakiyuki = { + isNormalUser = true; + extraGroups = [ "wheel" ]; + }; + services = { adguardhome = { enable = true; From 37c414c4b7db86b277c10a1c5935391c4b800b50 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 11:07:39 +0700 Subject: [PATCH 146/245] add home options --- home/asakiyuki/configuration.nix | 23 ++++++ modules/features/home/packages.nix | 59 +++++++--------- options/home/default.nix | 5 ++ options/home/programs.nix | 108 +++++++++++++++++++++++++++++ options/server/default.nix | 5 ++ 5 files changed, 166 insertions(+), 34 deletions(-) create mode 100644 options/home/default.nix create mode 100644 options/home/programs.nix create mode 100644 options/server/default.nix diff --git a/home/asakiyuki/configuration.nix b/home/asakiyuki/configuration.nix index 4dc6fbf..02f850c 100644 --- a/home/asakiyuki/configuration.nix +++ b/home/asakiyuki/configuration.nix @@ -32,6 +32,7 @@ in ./modules/env.nix ../../modules/features/home/theme.nix + ../../options/home/default.nix inputs.nixvim.homeModules.nixvim inputs.nixcord.homeModules.nixcord @@ -48,5 +49,27 @@ in }) { pkgs = pkgs; }; }; + + programs = { + catppuccin.enable = true; + antigravity.enable = true; + hyprshot.enable = true; + prismlauncher.enable = true; + proton-ge.enable = true; + vlc.enable = true; + gimp.enable = true; + libreoffice.enable = true; + lutris.enable = true; + osu.enable = true; + lmstudio.enable = true; + blender.enable = true; + xprop.enable = true; + bluetuith.enable = true; + pavucontrol.enable = true; + nwg-look.enable = true; + proton-apps.enable = true; + hytale.enable = true; + cider.enable = true; + }; }; } diff --git a/modules/features/home/packages.nix b/modules/features/home/packages.nix index b44cf9d..2a1de84 100644 --- a/modules/features/home/packages.nix +++ b/modules/features/home/packages.nix @@ -1,48 +1,39 @@ { pkgs, lib, + config, osconfig, inputs, ... }: -let - custom-catppuccin-gtk = pkgs.catppuccin-gtk.override { - variant = "mocha"; - accents = [ "sapphire" ]; - size = "compact"; - }; - - custom-catppuccin-kde = (pkgs.catppuccin-kde.override { - flavour = [ "mocha" ]; - accents = [ "sapphire" ]; - }); -in { - home.packages = with pkgs; [ - custom-catppuccin-gtk + home.packages = [ + (lib.mkIf config.programs.catppuccin.enable config.programs.catppuccin.package) - hyprshot - antigravity - prismlauncher - protonup-qt - protonplus - vlc - gimp - libreoffice-qt-fresh - lutris - osu-lazer-bin - lmstudio - blender - xprop + (lib.mkIf config.programs.hyprshot.enable config.programs.hyprshot.package) + (lib.mkIf config.programs.antigravity.enable config.programs.antigravity.package) + (lib.mkIf config.programs.prismlauncher.enable config.programs.prismlauncher.package) + (lib.mkIf config.programs.proton-ge.enable config.programs.proton-ge.protonup-qt) + (lib.mkIf config.programs.proton-ge.enable config.programs.proton-ge.protonplus) + (lib.mkIf config.programs.vlc.enable config.programs.vlc.package) + (lib.mkIf config.programs.gimp.enable config.programs.gimp.package) + (lib.mkIf config.programs.libreoffice.enable config.programs.libreoffice.package) + (lib.mkIf config.programs.lutris.enable config.programs.lutris.package) + (lib.mkIf config.programs.osu.enable config.programs.osu.package) + (lib.mkIf config.programs.lmstudio.enable config.programs.lmstudio.package) + (lib.mkIf config.programs.blender.enable config.programs.blender.package) + (lib.mkIf config.programs.xprop.enable config.programs.xprop.package) - bluetuith - lxqt.pavucontrol-qt - nwg-look + (lib.mkIf config.programs.bluetuith.enable config.programs.bluetuith.package) + (lib.mkIf config.programs.pavucontrol.enable config.programs.pavucontrol.package) + (lib.mkIf config.programs.nwg-look.enable config.programs.nwg-look.package) - proton-pass - proton-authenticator + (lib.mkIf config.programs.proton-apps.enable config.programs.proton-apps.pass) + (lib.mkIf config.programs.proton-apps.enable config.programs.proton-apps.authenticator) - inputs.hytale-launcher.packages.${system}.default - (lib.mkIf osconfig.device.programs.cider-2.enable cider-2) + (lib.mkIf config.programs.hytale.enable config.programs.hytale.package) + (lib.mkIf ( + config.programs.cider.enable && osconfig.device.programs.cider-2.enable + ) config.programs.cider.package) ]; } diff --git a/options/home/default.nix b/options/home/default.nix new file mode 100644 index 0000000..6e358ab --- /dev/null +++ b/options/home/default.nix @@ -0,0 +1,5 @@ +{ ... }: +{ + imports = [ ./programs.nix ]; + options = { }; +} diff --git a/options/home/programs.nix b/options/home/programs.nix new file mode 100644 index 0000000..7d56568 --- /dev/null +++ b/options/home/programs.nix @@ -0,0 +1,108 @@ +{ + config, + lib, + pkgs, + inputs, + ... +}: +{ + options.programs = { + catppuccin = { + enable = lib.mkEnableOption "catppuccin"; + package = lib.mkOption { + type = lib.types.package; + default = pkgs.catppuccin-gtk.override { + variant = "mocha"; + accents = [ "sapphire" ]; + size = "compact"; + }; + description = "Catppuccin GTK package"; + }; + kde = lib.mkOption { + type = lib.types.package; + default = pkgs.catppuccin-kde.override { + flavour = [ "mocha" ]; + accents = [ "sapphire" ]; + }; + description = "Catppuccin KDE package"; + }; + }; + antigravity = { + enable = lib.mkEnableOption "antigravity"; + package = lib.mkPackageOption pkgs "antigravity" { }; + }; + hyprshot = { + enable = lib.mkEnableOption "hyprshot"; + package = lib.mkPackageOption pkgs "hyprshot" { }; + }; + prismlauncher = { + enable = lib.mkEnableOption "prismlauncher"; + package = lib.mkPackageOption pkgs "prismlauncher" { }; + }; + proton-ge = { + enable = lib.mkEnableOption "proton-ge utils"; + protonup-qt = lib.mkPackageOption pkgs "protonup-qt" { }; + protonplus = lib.mkPackageOption pkgs "protonplus" { }; + }; + vlc = { + enable = lib.mkEnableOption "vlc"; + package = lib.mkPackageOption pkgs "vlc" { }; + }; + gimp = { + enable = lib.mkEnableOption "gimp"; + package = lib.mkPackageOption pkgs "gimp" { }; + }; + libreoffice = { + enable = lib.mkEnableOption "libreoffice"; + package = lib.mkPackageOption pkgs "libreoffice-qt-fresh" { }; + }; + lutris = { + enable = lib.mkEnableOption "lutris"; + package = lib.mkPackageOption pkgs "lutris" { }; + }; + osu = { + enable = lib.mkEnableOption "osu-lazer"; + package = lib.mkPackageOption pkgs "osu-lazer-bin" { }; + }; + lmstudio = { + enable = lib.mkEnableOption "lmstudio"; + package = lib.mkPackageOption pkgs "lmstudio" { }; + }; + blender = { + enable = lib.mkEnableOption "blender"; + package = lib.mkPackageOption pkgs "blender" { }; + }; + xprop = { + enable = lib.mkEnableOption "xprop"; + package = lib.mkPackageOption pkgs "xprop" { }; + }; + bluetuith = { + enable = lib.mkEnableOption "bluetuith"; + package = lib.mkPackageOption pkgs "bluetuith" { }; + }; + pavucontrol = { + enable = lib.mkEnableOption "pavucontrol-qt"; + package = lib.mkPackageOption pkgs "lxqt" { extraPrefixCode = ".pavucontrol-qt"; }; + }; + nwg-look = { + enable = lib.mkEnableOption "nwg-look"; + package = lib.mkPackageOption pkgs "nwg-look" { }; + }; + proton-apps = { + enable = lib.mkEnableOption "proton-pass and proton-authenticator"; + pass = lib.mkPackageOption pkgs "proton-pass" { }; + authenticator = lib.mkPackageOption pkgs "proton-authenticator" { }; + }; + hytale = { + enable = lib.mkEnableOption "hytale-launcher"; + package = lib.mkOption { + type = lib.types.package; + default = inputs.hytale-launcher.packages.${pkgs.system}.default; + }; + }; + cider = { + enable = lib.mkEnableOption "cider-2"; + package = lib.mkPackageOption pkgs "cider-2" { }; + }; + }; +} diff --git a/options/server/default.nix b/options/server/default.nix new file mode 100644 index 0000000..95fbfff --- /dev/null +++ b/options/server/default.nix @@ -0,0 +1,5 @@ +{ ... }: +{ + imports = [ ../common/default.nix ]; + options.device = { }; +} From 7411f57e2a835ace5923d625b0fc5305e6422dad Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 11:25:06 +0700 Subject: [PATCH 147/245] add programs options for system --- home/asakiyuki/configuration.nix | 7 +- host/desktop/default.nix | 9 +- host/desktop/programs.nix | 24 ++++++ host/server/default.nix | 4 + modules/features/home/packages.nix | 37 ++++----- modules/features/system/packages.nix | 75 ++++++----------- options/common/default.nix | 21 +++-- options/common/programs.nix | 118 +++++++++++++++++++++++++++ options/home/programs.nix | 32 ++++---- 9 files changed, 219 insertions(+), 108 deletions(-) create mode 100644 host/desktop/programs.nix create mode 100644 host/server/default.nix create mode 100644 options/common/programs.nix diff --git a/home/asakiyuki/configuration.nix b/home/asakiyuki/configuration.nix index 02f850c..c775af0 100644 --- a/home/asakiyuki/configuration.nix +++ b/home/asakiyuki/configuration.nix @@ -53,23 +53,20 @@ in programs = { catppuccin.enable = true; antigravity.enable = true; - hyprshot.enable = true; prismlauncher.enable = true; - proton-ge.enable = true; vlc.enable = true; gimp.enable = true; libreoffice.enable = true; - lutris.enable = true; osu.enable = true; lmstudio.enable = true; blender.enable = true; xprop.enable = true; - bluetuith.enable = true; pavucontrol.enable = true; nwg-look.enable = true; - proton-apps.enable = true; hytale.enable = true; cider.enable = true; + proton-ge.enable = true; + proton-apps.enable = true; }; }; } diff --git a/host/desktop/default.nix b/host/desktop/default.nix index 19bacf2..089cd27 100644 --- a/host/desktop/default.nix +++ b/host/desktop/default.nix @@ -1,8 +1,10 @@ { libs, ... }: { imports = [ + ./programs.nix + (libs.root "/modules/hardware/default.nix") - + (libs.root "/modules/fonts.nix") (libs.root "/modules/features/system/packages.nix") @@ -21,10 +23,10 @@ (libs.root "/modules/features/system/udisks2.nix") (libs.root "/modules/features/system/dconf.nix") (libs.root "/modules/features/system/cloudflare.nix") - + (libs.root "/modules/services/default.nix") (libs.root "/modules/home-manager.nix") - + (libs.root "/options/desktop/default.nix") (libs.root "/overlays/nixpkgs.nix") ]; @@ -32,4 +34,3 @@ xdg.menus.enable = true; services.dbus.enable = true; } - diff --git a/host/desktop/programs.nix b/host/desktop/programs.nix new file mode 100644 index 0000000..b0b4291 --- /dev/null +++ b/host/desktop/programs.nix @@ -0,0 +1,24 @@ +{ ... }: +{ + programs = { + wget.enable = true; + tree.enable = true; + ffmpeg.enable = true; + nodejs.enable = true; + bun.enable = true; + brightnessctl.enable = true; + php.enable = true; + ntfs3g.enable = true; + zip.enable = true; + unzip.enable = true; + python.enable = true; + jdk.enable = true; + nixfmt.enable = true; + winepackages.enable = true; + quickshell.enable = true; + papirus-icons.enable = true; + kde-packages.enable = true; + r-tensorflow.enable = true; + hyprland-portals.enable = true; + }; +} diff --git a/host/server/default.nix b/host/server/default.nix new file mode 100644 index 0000000..facb35d --- /dev/null +++ b/host/server/default.nix @@ -0,0 +1,4 @@ +{ ... }: +{ + +} diff --git a/modules/features/home/packages.nix b/modules/features/home/packages.nix index 2a1de84..7701bdb 100644 --- a/modules/features/home/packages.nix +++ b/modules/features/home/packages.nix @@ -10,30 +10,25 @@ home.packages = [ (lib.mkIf config.programs.catppuccin.enable config.programs.catppuccin.package) - (lib.mkIf config.programs.hyprshot.enable config.programs.hyprshot.package) - (lib.mkIf config.programs.antigravity.enable config.programs.antigravity.package) - (lib.mkIf config.programs.prismlauncher.enable config.programs.prismlauncher.package) - (lib.mkIf config.programs.proton-ge.enable config.programs.proton-ge.protonup-qt) - (lib.mkIf config.programs.proton-ge.enable config.programs.proton-ge.protonplus) - (lib.mkIf config.programs.vlc.enable config.programs.vlc.package) - (lib.mkIf config.programs.gimp.enable config.programs.gimp.package) - (lib.mkIf config.programs.libreoffice.enable config.programs.libreoffice.package) - (lib.mkIf config.programs.lutris.enable config.programs.lutris.package) - (lib.mkIf config.programs.osu.enable config.programs.osu.package) - (lib.mkIf config.programs.lmstudio.enable config.programs.lmstudio.package) - (lib.mkIf config.programs.blender.enable config.programs.blender.package) - (lib.mkIf config.programs.xprop.enable config.programs.xprop.package) + (lib.mkIf config.programs.packages.antigravity.enable config.programs.packages.antigravity.package) + (lib.mkIf config.programs.packages.prismlauncher.enable config.programs.packages.prismlauncher.package) + (lib.optionals config.programs.proton-ge.enable config.programs.proton-ge.packages) + (lib.mkIf config.programs.packages.vlc.enable config.programs.packages.vlc.package) + (lib.mkIf config.programs.packages.gimp.enable config.programs.packages.gimp.package) + (lib.mkIf config.programs.packages.libreoffice.enable config.programs.packages.libreoffice.package) + (lib.mkIf config.programs.packages.osu.enable config.programs.packages.osu.package) + (lib.mkIf config.programs.packages.lmstudio.enable config.programs.packages.lmstudio.package) + (lib.mkIf config.programs.packages.blender.enable config.programs.packages.blender.package) + (lib.mkIf config.programs.packages.xprop.enable config.programs.packages.xprop.package) - (lib.mkIf config.programs.bluetuith.enable config.programs.bluetuith.package) - (lib.mkIf config.programs.pavucontrol.enable config.programs.pavucontrol.package) - (lib.mkIf config.programs.nwg-look.enable config.programs.nwg-look.package) + (lib.mkIf config.programs.packages.pavucontrol.enable config.programs.packages.pavucontrol.package) + (lib.mkIf config.programs.packages.nwg-look.enable config.programs.packages.nwg-look.package) - (lib.mkIf config.programs.proton-apps.enable config.programs.proton-apps.pass) - (lib.mkIf config.programs.proton-apps.enable config.programs.proton-apps.authenticator) + (lib.optionals config.programs.proton-apps.enable config.programs.proton-apps.packages) - (lib.mkIf config.programs.hytale.enable config.programs.hytale.package) + (lib.mkIf config.programs.packages.hytale.enable config.programs.packages.hytale.package) (lib.mkIf ( - config.programs.cider.enable && osconfig.device.programs.cider-2.enable - ) config.programs.cider.package) + config.programs.packages.cider.enable && osconfig.device.programs.cider-2.enable + ) config.programs.packages.cider.package) ]; } diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix index dea3737..3a310f7 100644 --- a/modules/features/system/packages.nix +++ b/modules/features/system/packages.nix @@ -2,6 +2,7 @@ pkgs, lib, config, + rPackages, ... }: { @@ -10,60 +11,30 @@ [ git vim - wget - tree btop - ffmpeg-full - nodejs - bun - brightnessctl - php - ntfs3g - zip - unzip - python3 - jdk25 - nixfmt - wine - wine64 - winetricks - protontricks + (lib.mkIf config.programs.wget.enable config.programs.wget.package) + (lib.mkIf config.programs.tree.enable config.programs.tree.package) + (lib.mkIf config.programs.ffmpeg.enable config.programs.ffmpeg.package) + (lib.mkIf config.programs.nodejs.enable config.programs.nodejs.package) + (lib.mkIf config.programs.bun.enable config.programs.bun.package) + (lib.mkIf config.programs.brightnessctl.enable config.programs.brightnessctl.package) + (lib.mkIf config.programs.php.enable config.programs.php.package) + (lib.mkIf config.programs.ntfs3g.enable config.programs.ntfs3g.package) + (lib.mkIf config.programs.zip.enable config.programs.zip.package) + (lib.mkIf config.programs.unzip.enable config.programs.unzip.package) + (lib.mkIf config.programs.python.enable config.programs.python.package) + (lib.mkIf config.programs.jdk.enable config.programs.jdk.package) + (lib.mkIf config.programs.nixfmt.enable config.programs.nixfmt.package) - quickshell - papirus-icon-theme + (lib.optionals config.programs.winepackages.enable config.programs.winepackages.packages) + + (lib.mkIf config.programs.quickshell.enable config.programs.quickshell.package) + (lib.mkIf config.programs.papirus-icons.enable config.programs.papirus-icons.package) ] - ++ ( - with pkgs; - with kdePackages; - [ - kservice - dolphin - kate - qt5compat - qtdeclarative - qtimageformats - qtsvg - qtmultimedia - kde-gtk-config - qtdeclarative - kirigami - ksvg - qtbase - plasma5support - qttools - plasma-sdk - ] - ) - ++ (with rPackages; [ - tensorflow - ]) - ++ (lib.optionals config.device.wm.hyprland.enable ( - with pkgs; - [ - xdg-desktop-portal - xdg-desktop-portal-wlr - xdg-desktop-portal-hyprland - ] - )); + ++ (lib.optionals config.programs.kde-packages.enable config.programs.kde-packages.packages) + ++ (lib.optionals config.programs.r-tensorflow.enable [ config.programs.r-tensorflow.package ]) + ++ (lib.optionals ( + config.programs.hyprland-portals.enable && config.device.wm.hyprland.enable + ) config.programs.hyprland-portals.packages); } diff --git a/options/common/default.nix b/options/common/default.nix index 64c67b5..f725b20 100644 --- a/options/common/default.nix +++ b/options/common/default.nix @@ -1,10 +1,13 @@ -{ lib, ... }: { - options.device = { - flatpak.enable = lib.mkEnableOption "flatpak"; - flake-name = lib.mkOption { - type = lib.types.str; - default = "desktop"; - description = "Flake name for quick rebuild"; - }; +{ lib, ... }: +{ + imports = [ ./programs.nix ]; + + options.device = { + flatpak.enable = lib.mkEnableOption "flatpak"; + flake-name = lib.mkOption { + type = lib.types.str; + default = "desktop"; + description = "Flake name for quick rebuild"; }; -} \ No newline at end of file + }; +} diff --git a/options/common/programs.nix b/options/common/programs.nix new file mode 100644 index 0000000..46e1afa --- /dev/null +++ b/options/common/programs.nix @@ -0,0 +1,118 @@ +{ lib, pkgs, ... }: +{ + options.programs = { + wget = { + enable = lib.mkEnableOption "wget"; + package = lib.mkPackageOption pkgs "wget" { }; + }; + tree = { + enable = lib.mkEnableOption "tree"; + package = lib.mkPackageOption pkgs "tree" { }; + }; + ffmpeg = { + enable = lib.mkEnableOption "ffmpeg"; + package = lib.mkPackageOption pkgs "ffmpeg-full" { }; + }; + nodejs = { + enable = lib.mkEnableOption "nodejs"; + package = lib.mkPackageOption pkgs "nodejs" { }; + }; + bun = { + enable = lib.mkEnableOption "bun"; + package = lib.mkPackageOption pkgs "bun" { }; + }; + brightnessctl = { + enable = lib.mkEnableOption "brightnessctl"; + package = lib.mkPackageOption pkgs "brightnessctl" { }; + }; + php = { + enable = lib.mkEnableOption "php"; + package = lib.mkPackageOption pkgs "php" { }; + }; + ntfs3g = { + enable = lib.mkEnableOption "ntfs3g"; + package = lib.mkPackageOption pkgs "ntfs3g" { }; + }; + zip = { + enable = lib.mkEnableOption "zip"; + package = lib.mkPackageOption pkgs "zip" { }; + }; + unzip = { + enable = lib.mkEnableOption "unzip"; + package = lib.mkPackageOption pkgs "unzip" { }; + }; + python = { + enable = lib.mkEnableOption "python"; + package = lib.mkPackageOption pkgs "python3" { }; + }; + jdk = { + enable = lib.mkEnableOption "jdk-25"; + package = lib.mkPackageOption pkgs "jdk25" { }; + }; + nixfmt = { + enable = lib.mkEnableOption "nixfmt"; + package = lib.mkPackageOption pkgs "nixfmt" { }; + }; + winepackages = { + enable = lib.mkEnableOption "Wine and Proton utilities"; + packages = lib.mkOption { + type = lib.types.listOf lib.types.package; + default = with pkgs; [ + wine + wine64 + winetricks + protontricks + ]; + }; + }; + quickshell = { + enable = lib.mkEnableOption "quickshell"; + package = lib.mkPackageOption pkgs "quickshell" { }; + }; + papirus-icons = { + enable = lib.mkEnableOption "papirus-icon-theme"; + package = lib.mkPackageOption pkgs "papirus-icon-theme" { }; + }; + kde-packages = { + enable = lib.mkEnableOption "KDE utility packages"; + packages = lib.mkOption { + type = lib.types.listOf lib.types.package; + default = with pkgs.kdePackages; [ + kservice + dolphin + kate + qt5compat + qtdeclarative + qtimageformats + qtsvg + qtmultimedia + kde-gtk-config + kirigami + ksvg + qtbase + plasma5support + qttools + plasma-sdk + ]; + }; + }; + r-tensorflow = { + enable = lib.mkEnableOption "R tensorflow"; + package = lib.mkOption { + type = lib.types.package; + default = pkgs.rPackages.tensorflow; + }; + }; + hyprland-portals = { + enable = lib.mkEnableOption "XDGP for hyprland"; + packages = lib.mkOption { + type = lib.types.listOf lib.types.package; + default = with pkgs; [ + xdg-desktop-portal + xdg-desktop-portal-wlr + xdg-desktop-portal-hyprland + ]; + }; + }; + }; +} diff --git a/options/home/programs.nix b/options/home/programs.nix index 7d56568..c6b5385 100644 --- a/options/home/programs.nix +++ b/options/home/programs.nix @@ -31,18 +31,19 @@ enable = lib.mkEnableOption "antigravity"; package = lib.mkPackageOption pkgs "antigravity" { }; }; - hyprshot = { - enable = lib.mkEnableOption "hyprshot"; - package = lib.mkPackageOption pkgs "hyprshot" { }; - }; prismlauncher = { enable = lib.mkEnableOption "prismlauncher"; package = lib.mkPackageOption pkgs "prismlauncher" { }; }; proton-ge = { enable = lib.mkEnableOption "proton-ge utils"; - protonup-qt = lib.mkPackageOption pkgs "protonup-qt" { }; - protonplus = lib.mkPackageOption pkgs "protonplus" { }; + packages = lib.mkOption { + type = lib.types.listOf lib.types.package; + default = with pkgs; [ + protonup-qt + protonplus + ]; + }; }; vlc = { enable = lib.mkEnableOption "vlc"; @@ -56,10 +57,6 @@ enable = lib.mkEnableOption "libreoffice"; package = lib.mkPackageOption pkgs "libreoffice-qt-fresh" { }; }; - lutris = { - enable = lib.mkEnableOption "lutris"; - package = lib.mkPackageOption pkgs "lutris" { }; - }; osu = { enable = lib.mkEnableOption "osu-lazer"; package = lib.mkPackageOption pkgs "osu-lazer-bin" { }; @@ -76,13 +73,9 @@ enable = lib.mkEnableOption "xprop"; package = lib.mkPackageOption pkgs "xprop" { }; }; - bluetuith = { - enable = lib.mkEnableOption "bluetuith"; - package = lib.mkPackageOption pkgs "bluetuith" { }; - }; pavucontrol = { enable = lib.mkEnableOption "pavucontrol-qt"; - package = lib.mkPackageOption pkgs "lxqt" { extraPrefixCode = ".pavucontrol-qt"; }; + package = lib.mkPackageOption pkgs.lxqt "pavucontrol-qt" { }; }; nwg-look = { enable = lib.mkEnableOption "nwg-look"; @@ -90,8 +83,13 @@ }; proton-apps = { enable = lib.mkEnableOption "proton-pass and proton-authenticator"; - pass = lib.mkPackageOption pkgs "proton-pass" { }; - authenticator = lib.mkPackageOption pkgs "proton-authenticator" { }; + packages = lib.mkOption { + type = lib.types.listOf lib.types.package; + default = with pkgs; [ + proton-pass + proton-authenticator + ]; + }; }; hytale = { enable = lib.mkEnableOption "hytale-launcher"; From 32d10077ddfd0aea0297a76f76300f47d51d9afe Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 11:31:43 +0700 Subject: [PATCH 148/245] fix some AI bugs --- modules/features/home/packages.nix | 35 ++++++++++++++-------------- modules/features/system/packages.nix | 3 +-- 2 files changed, 18 insertions(+), 20 deletions(-) diff --git a/modules/features/home/packages.nix b/modules/features/home/packages.nix index 7701bdb..dbea11e 100644 --- a/modules/features/home/packages.nix +++ b/modules/features/home/packages.nix @@ -10,25 +10,24 @@ home.packages = [ (lib.mkIf config.programs.catppuccin.enable config.programs.catppuccin.package) - (lib.mkIf config.programs.packages.antigravity.enable config.programs.packages.antigravity.package) - (lib.mkIf config.programs.packages.prismlauncher.enable config.programs.packages.prismlauncher.package) - (lib.optionals config.programs.proton-ge.enable config.programs.proton-ge.packages) - (lib.mkIf config.programs.packages.vlc.enable config.programs.packages.vlc.package) - (lib.mkIf config.programs.packages.gimp.enable config.programs.packages.gimp.package) - (lib.mkIf config.programs.packages.libreoffice.enable config.programs.packages.libreoffice.package) - (lib.mkIf config.programs.packages.osu.enable config.programs.packages.osu.package) - (lib.mkIf config.programs.packages.lmstudio.enable config.programs.packages.lmstudio.package) - (lib.mkIf config.programs.packages.blender.enable config.programs.packages.blender.package) - (lib.mkIf config.programs.packages.xprop.enable config.programs.packages.xprop.package) + (lib.mkIf config.programs.antigravity.enable config.programs.antigravity.package) + (lib.mkIf config.programs.prismlauncher.enable config.programs.prismlauncher.package) + (lib.mkIf config.programs.vlc.enable config.programs.vlc.package) + (lib.mkIf config.programs.gimp.enable config.programs.gimp.package) + (lib.mkIf config.programs.libreoffice.enable config.programs.libreoffice.package) + (lib.mkIf config.programs.osu.enable config.programs.osu.package) + (lib.mkIf config.programs.lmstudio.enable config.programs.lmstudio.package) + (lib.mkIf config.programs.blender.enable config.programs.blender.package) + (lib.mkIf config.programs.xprop.enable config.programs.xprop.package) - (lib.mkIf config.programs.packages.pavucontrol.enable config.programs.packages.pavucontrol.package) - (lib.mkIf config.programs.packages.nwg-look.enable config.programs.packages.nwg-look.package) + (lib.mkIf config.programs.pavucontrol.enable config.programs.pavucontrol.package) + (lib.mkIf config.programs.nwg-look.enable config.programs.nwg-look.package) - (lib.optionals config.programs.proton-apps.enable config.programs.proton-apps.packages) - - (lib.mkIf config.programs.packages.hytale.enable config.programs.packages.hytale.package) + (lib.mkIf config.programs.hytale.enable config.programs.hytale.package) (lib.mkIf ( - config.programs.packages.cider.enable && osconfig.device.programs.cider-2.enable - ) config.programs.packages.cider.package) - ]; + config.programs.cider.enable && osconfig.device.programs.cider-2.enable + ) config.programs.cider.package) + ] + ++ (lib.optionals config.programs.proton-ge.enable config.programs.proton-ge.packages) + ++ (lib.optionals config.programs.proton-apps.enable config.programs.proton-apps.packages); } diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix index 3a310f7..0072458 100644 --- a/modules/features/system/packages.nix +++ b/modules/features/system/packages.nix @@ -27,11 +27,10 @@ (lib.mkIf config.programs.jdk.enable config.programs.jdk.package) (lib.mkIf config.programs.nixfmt.enable config.programs.nixfmt.package) - (lib.optionals config.programs.winepackages.enable config.programs.winepackages.packages) - (lib.mkIf config.programs.quickshell.enable config.programs.quickshell.package) (lib.mkIf config.programs.papirus-icons.enable config.programs.papirus-icons.package) ] + ++ (lib.optionals config.programs.winepackages.enable config.programs.winepackages.packages) ++ (lib.optionals config.programs.kde-packages.enable config.programs.kde-packages.packages) ++ (lib.optionals config.programs.r-tensorflow.enable [ config.programs.r-tensorflow.package ]) ++ (lib.optionals ( From 55d9eb4f36cc405b251d59f2bb6105d1abd2c950 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 11:40:01 +0700 Subject: [PATCH 149/245] move --- home/asakiyuki/configuration.nix | 27 +-------------------------- host/desktop/default.nix | 15 ++++++++++++++- host/desktop/programs.nix | 25 ++++++++++++++++++++++++- 3 files changed, 39 insertions(+), 28 deletions(-) diff --git a/home/asakiyuki/configuration.nix b/home/asakiyuki/configuration.nix index c775af0..6aa3da3 100644 --- a/home/asakiyuki/configuration.nix +++ b/home/asakiyuki/configuration.nix @@ -2,8 +2,8 @@ inputs, libs, config, - pkgs, custom, + pkgs, unstable, ... }: @@ -42,31 +42,6 @@ in home = { username = "asakiyuki"; stateVersion = "25.11"; - pointerCursor = - (custom.cursors { - name = osconfig.device.cursors; - size = 48; - }) - { pkgs = pkgs; }; - }; - - programs = { - catppuccin.enable = true; - antigravity.enable = true; - prismlauncher.enable = true; - vlc.enable = true; - gimp.enable = true; - libreoffice.enable = true; - osu.enable = true; - lmstudio.enable = true; - blender.enable = true; - xprop.enable = true; - pavucontrol.enable = true; - nwg-look.enable = true; - hytale.enable = true; - cider.enable = true; - proton-ge.enable = true; - proton-apps.enable = true; }; }; } diff --git a/host/desktop/default.nix b/host/desktop/default.nix index 089cd27..2774a6c 100644 --- a/host/desktop/default.nix +++ b/host/desktop/default.nix @@ -1,4 +1,10 @@ -{ libs, ... }: +{ + libs, + custom, + config, + pkgs, + ... +}: { imports = [ ./programs.nix @@ -31,6 +37,13 @@ (libs.root "/overlays/nixpkgs.nix") ]; + home-manager.users.asakiyuki.home.pointerCursor = + (custom.cursors { + name = config.device.cursors; + size = 48; + }) + { pkgs = pkgs; }; + xdg.menus.enable = true; services.dbus.enable = true; } diff --git a/host/desktop/programs.nix b/host/desktop/programs.nix index b0b4291..d12a8f0 100644 --- a/host/desktop/programs.nix +++ b/host/desktop/programs.nix @@ -1,4 +1,8 @@ -{ ... }: +{ + config, + pkgs, + ... +}: { programs = { wget.enable = true; @@ -21,4 +25,23 @@ r-tensorflow.enable = true; hyprland-portals.enable = true; }; + + home-manager.users.asakiyuki.programs = { + catppuccin.enable = true; + antigravity.enable = true; + prismlauncher.enable = true; + vlc.enable = true; + gimp.enable = true; + libreoffice.enable = true; + osu.enable = true; + lmstudio.enable = true; + blender.enable = true; + xprop.enable = true; + pavucontrol.enable = true; + nwg-look.enable = true; + hytale.enable = true; + cider.enable = true; + proton-ge.enable = true; + proton-apps.enable = true; + }; } From 919f3ba969fb680e443847999223dc9103ee8cf2 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 13:08:59 +0700 Subject: [PATCH 150/245] add hyprshot --- host/desktop/programs.nix | 1 + modules/features/system/packages.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/host/desktop/programs.nix b/host/desktop/programs.nix index d12a8f0..ff2f4cd 100644 --- a/host/desktop/programs.nix +++ b/host/desktop/programs.nix @@ -27,6 +27,7 @@ }; home-manager.users.asakiyuki.programs = { + hyprshot.enable = true; catppuccin.enable = true; antigravity.enable = true; prismlauncher.enable = true; diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix index 0072458..83902eb 100644 --- a/modules/features/system/packages.nix +++ b/modules/features/system/packages.nix @@ -12,6 +12,7 @@ git vim btop + gcc (lib.mkIf config.programs.wget.enable config.programs.wget.package) (lib.mkIf config.programs.tree.enable config.programs.tree.package) From d3ff7173416820c0b95f4eb5a3f5fd22fe990e66 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 18:40:55 +0700 Subject: [PATCH 151/245] add files --- devices/ideapad-slim-5/configuration.nix | 42 ++++++++++++-- home/asakiyuki/modules/files.nix | 71 ++++++++++++++---------- options/common/default.nix | 5 +- options/common/file.nix | 24 ++++++++ options/desktop/default.nix | 30 +++++----- options/desktop/file.nix | 8 --- 6 files changed, 122 insertions(+), 58 deletions(-) create mode 100644 options/common/file.nix delete mode 100644 options/desktop/file.nix diff --git a/devices/ideapad-slim-5/configuration.nix b/devices/ideapad-slim-5/configuration.nix index 16c2066..bea3938 100755 --- a/devices/ideapad-slim-5/configuration.nix +++ b/devices/ideapad-slim-5/configuration.nix @@ -81,12 +81,42 @@ in bluetooth.enable = true; flatpak.enable = true; - symlink = { - "SteamApps" = ".local/share/Steam/steamapps"; - "Development/Quickshell" = ".config/quickshell"; - # "Development/KDE-Widget" = ".local/share/plasma/plasmoids"; - # "Development/SplashScreen" = ".local/share/plasma/look-and-feel"; - # "Development/DesktopEffects" = ".local/share/kwin/effects"; + files = { + force = { + ".config/dolphinrc" = true; + }; + + mkForce = { + ".mozilla/firefox/default/search.json.mozlz4" = true; + }; + + source = { + ".config/qt5ct/colors/Catppuccin-Mocha.conf" = + "${pkgs.catppuccin-qt5ct}/share/qt5ct/colors/catppuccin-mocha-sapphire.conf"; + ".config/qt6ct/colors/Catppuccin-Mocha.conf" = + "${pkgs.catppuccin-qt5ct}/share/qt6ct/colors/catppuccin-mocha-sapphire.conf"; + + ".config/dolphinrc" = libs.root "/configs/dolphinrc"; + + ".local/share/kio/servicemenus/copy-server-public-url.desktop" = + libs.root "/configs/services-menu/copy-server-public-url.desktop"; + ".local/share/kio/servicemenus/open-with-code.desktop" = + libs.root "/configs/services-menu/open-with-code.desktop"; + ".local/share/kio/servicemenus/open-with-nvim.desktop" = + libs.root "/configs/services-menu/open-with-nvim.desktop"; + ".local/share/kio/servicemenus/open-with-antigravity.desktop" = + libs.root "/configs/services-menu/open-with-antigravity.desktop"; + ".local/share/kio/servicemenus/open-ghostty-here.desktop" = + libs.root "/configs/services-menu/open-ghostty-here.desktop"; + }; + + symlink = { + "SteamApps" = ".local/share/Steam/steamapps"; + "Development/Quickshell" = ".config/quickshell"; + # "Development/KDE-Widget" = ".local/share/plasma/plasmoids"; + # "Development/SplashScreen" = ".local/share/plasma/look-and-feel"; + # "Development/DesktopEffects" = ".local/share/kwin/effects"; + }; }; programs = { diff --git a/home/asakiyuki/modules/files.nix b/home/asakiyuki/modules/files.nix index 64fe073..bcb5945 100644 --- a/home/asakiyuki/modules/files.nix +++ b/home/asakiyuki/modules/files.nix @@ -1,35 +1,50 @@ -{ pkgs, lib, osconfig, config, ... }: { - home.file = { - ".config/qt5ct/colors/Catppuccin-Mocha.conf".source = "${pkgs.catppuccin-qt5ct}/share/qt5ct/colors/catppuccin-mocha-sapphire.conf"; - ".config/qt6ct/colors/Catppuccin-Mocha.conf".source = "${pkgs.catppuccin-qt5ct}/share/qt6ct/colors/catppuccin-mocha-sapphire.conf"; + pkgs, + lib, + osconfig, + config, + ... +}: +{ + home.file = lib.mkMerge [ + (builtins.mapAttrs (_: path: { + source = path; + }) osconfig.device.files.source) - ".local/share/kio/servicemenus/copy-server-public-url.desktop".source = ../../../configs/services-menu/copy-server-public-url.desktop; + (builtins.mapAttrs (_: path: { + source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/${path}"; + }) osconfig.device.files.symlink) - ".local/share/kio/servicemenus/open-with-code.desktop".source = ../../../configs/services-menu/open-with-code.desktop; - ".local/share/kio/servicemenus/open-with-nvim.desktop".source = ../../../configs/services-menu/open-with-nvim.desktop; - ".local/share/kio/servicemenus/open-with-antigravity.desktop".source = ../../../configs/services-menu/open-with-antigravity.desktop; - ".local/share/kio/servicemenus/open-ghostty-here.desktop".source = ../../../configs/services-menu/open-ghostty-here.desktop; + (lib.mkMerge ( + builtins.map (name: lib.setAttrByPath [ name "force" ] true) ( + builtins.attrNames osconfig.device.files.force + ) + )) - ".mozilla/firefox/default/search.json.mozlz4".force = lib.mkForce true; - ".config/dolphinrc" = { - force = true; - source = ../../../configs/dolphinrc; - }; - } // builtins.mapAttrs (key: path: { source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/${path}"; }) osconfig.device.symlink; + (lib.mkMerge ( + builtins.map (name: lib.setAttrByPath [ name "force" ] (lib.mkForce true)) ( + builtins.attrNames osconfig.device.files.mkForce + ) + )) + ]; - xdg.configFile = { - kdeglobals.text = builtins.readFile ((pkgs.catppuccin-kde.override { flavour = ["mocha"]; accents = ["sapphire"]; }) + "/share/color-schemes/CatppuccinMochaSapphire.colors") + - '' + xdg.configFile.kdeglobals.text = + builtins.readFile ( + (pkgs.catppuccin-kde.override { + flavour = [ "mocha" ]; + accents = [ "sapphire" ]; + }) + + "/share/color-schemes/CatppuccinMochaSapphire.colors" + ) + + '' - [UiSettings] - ColorScheme=qt6ct - - [General] - TerminalApplication=${osconfig.device.programs.terminal} + [UiSettings] + ColorScheme=qt6ct - [Icons] - Theme=Papirus - ''; - }; -} \ No newline at end of file + [General] + TerminalApplication=${osconfig.device.programs.terminal} + + [Icons] + Theme=Papirus + ''; +} diff --git a/options/common/default.nix b/options/common/default.nix index f725b20..b473cd7 100644 --- a/options/common/default.nix +++ b/options/common/default.nix @@ -1,6 +1,9 @@ { lib, ... }: { - imports = [ ./programs.nix ]; + imports = [ + ./programs.nix + ./file.nix + ]; options.device = { flatpak.enable = lib.mkEnableOption "flatpak"; diff --git a/options/common/file.nix b/options/common/file.nix new file mode 100644 index 0000000..1f4e476 --- /dev/null +++ b/options/common/file.nix @@ -0,0 +1,24 @@ +{ lib, ... }: +{ + options.device.files = { + symlink = lib.mkOption { + default = { }; + type = lib.types.attrsOf lib.types.str; + }; + + source = lib.mkOption { + default = { }; + type = lib.types.attrsOf lib.types.path; + }; + + force = lib.mkOption { + default = { }; + type = lib.types.attrsOf lib.types.bool; + }; + + mkForce = lib.mkOption { + default = { }; + type = lib.types.attrsOf lib.types.bool; + }; + }; +} diff --git a/options/desktop/default.nix b/options/desktop/default.nix index 2c25632..9bd723d 100644 --- a/options/desktop/default.nix +++ b/options/desktop/default.nix @@ -1,18 +1,18 @@ -{ lib, ... }: { - imports = [ - ../common/default.nix +{ lib, ... }: +{ + imports = [ + ../common/default.nix - ./environment.nix - ./programs.nix - ./hardware.nix - ./file.nix - ]; + ./environment.nix + ./programs.nix + ./hardware.nix + ]; - options.device = { - cursors = lib.mkOption { - type = lib.types.str; - default = "aemeath"; - description = "Cursor theme to use for the desktop"; - }; + options.device = { + cursors = lib.mkOption { + type = lib.types.str; + default = "aemeath"; + description = "Cursor theme to use for the desktop"; }; -} \ No newline at end of file + }; +} diff --git a/options/desktop/file.nix b/options/desktop/file.nix deleted file mode 100644 index 472b56c..0000000 --- a/options/desktop/file.nix +++ /dev/null @@ -1,8 +0,0 @@ -{ lib, ... }: { - options.device = { - symlink = lib.mkOption { - default = {}; - type = lib.types.attrsOf lib.types.str; - }; - }; -} \ No newline at end of file From 0ae8f323bdc4c59cc8afa1541f77c337228c468e Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 18:46:50 +0700 Subject: [PATCH 152/245] idk --- home/asakiyuki/modules/files.nix | 33 +++++++++++++++++--------------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/home/asakiyuki/modules/files.nix b/home/asakiyuki/modules/files.nix index bcb5945..0d4ae48 100644 --- a/home/asakiyuki/modules/files.nix +++ b/home/asakiyuki/modules/files.nix @@ -29,22 +29,25 @@ ]; xdg.configFile.kdeglobals.text = - builtins.readFile ( - (pkgs.catppuccin-kde.override { - flavour = [ "mocha" ]; - accents = [ "sapphire" ]; - }) - + "/share/color-schemes/CatppuccinMochaSapphire.colors" - ) - + '' + if (osconfig.device.wm.hyprland.enable || osconfig.device.wm.niri.enable) then + builtins.readFile ( + (pkgs.catppuccin-kde.override { + flavour = [ "mocha" ]; + accents = [ "sapphire" ]; + }) + + "/share/color-schemes/CatppuccinMochaSapphire.colors" + ) + + '' - [UiSettings] - ColorScheme=qt6ct + [UiSettings] + ColorScheme=qt6ct - [General] - TerminalApplication=${osconfig.device.programs.terminal} + [General] + TerminalApplication=${osconfig.device.programs.terminal} - [Icons] - Theme=Papirus - ''; + [Icons] + Theme=Papirus + '' + else + ""; } From f5562edddec52e58246b04a99c3cda07b942e985 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 18:50:05 +0700 Subject: [PATCH 153/245] split server configuration --- devices/home-server/configuration.nix | 111 ++------------------------ host/server/default.nix | 108 ++++++++++++++++++++++++- 2 files changed, 112 insertions(+), 107 deletions(-) diff --git a/devices/home-server/configuration.nix b/devices/home-server/configuration.nix index dc1615b..5cbd3e5 100644 --- a/devices/home-server/configuration.nix +++ b/devices/home-server/configuration.nix @@ -1,116 +1,15 @@ -{ pkgs, ... }: +{ pkgs, libs, ... }: { - imports = [ ./hardware-configuration.nix ]; + imports = [ + ./hardware-configuration.nix + (libs.root "/host/server/default.nix") + ]; nix.settings.experimental-features = [ "nix-command" "flakes" ]; - environment.systemPackages = with pkgs; [ - git - vim - ]; - - users.users.junko = { - isNormalUser = true; - }; - - users.users.asakiyuki = { - isNormalUser = true; - extraGroups = [ "wheel" ]; - }; - - services = { - adguardhome = { - enable = true; - port = 34778; - openFirewall = true; - }; - - fail2ban = { - enable = true; - ignoreIP = [ - "192.168.0.0/16" - ]; - }; - - cloudflare-dyndns = { - enable = true; - apiTokenFile = "/home/asakiyuki/.secret/CLOUDFLARE_TOKEN_KEY"; - frequency = "*:0/5"; - proxied = true; - ipv6 = false; - ipv4 = true; - deleteMissing = false; - domains = [ "ddns.asakiyuki.com" ]; - }; - - openssh = { - enable = true; - ports = [ 15523 ]; - authorizedKeysInHomedir = true; - authorizedKeysFiles = [ "/home/asakiyuki/.ssh/authorized_keys" ]; - settings = { - AllowUsers = [ - "asakiyuki" - "junko" - ]; - PasswordAuthentication = true; - KbdInteractiveAuthentication = false; - AllowAgentForwarding = false; - AllowStreamLocalForwarding = false; - X11Forwarding = false; - PermitRootLogin = "no"; - }; - }; - }; - - networking = { - useDHCP = false; - networkmanager.enable = true; - defaultGateway = "192.168.1.1"; - nameservers = [ - "8.8.8.8" - "1.1.1.1" - ]; - - interfaces = { - enp1s0 = { - useDHCP = false; - - ipv4.addresses = [ - { - address = "192.168.1.100"; - prefixLength = 24; - } - ]; - - ipv6.addresses = [ - { - address = "2402:800:62d0:1c26:abcd:1234:5678:9abc"; - prefixLength = 64; - } - ]; - }; - }; - - firewall = { - enable = true; - allowedUDPPorts = [ - 53 - 34778 - ]; - allowedTCPPorts = [ - 15523 - 53 - 8443 - 583 - 25565 - ]; - }; - }; - nixpkgs.config.allowUnfree = true; boot.loader.systemd-boot.enable = true; diff --git a/host/server/default.nix b/host/server/default.nix index facb35d..cee9119 100644 --- a/host/server/default.nix +++ b/host/server/default.nix @@ -1,4 +1,110 @@ -{ ... }: +{ libs, ... }: { + imports = [ + (libs.root "/home/asakiyuki/configuration.nix") + ]; + environment.systemPackages = with pkgs; [ + git + vim + ]; + + users.users.junko = { + isNormalUser = true; + }; + + users.users.asakiyuki = { + isNormalUser = true; + extraGroups = [ "wheel" ]; + }; + + services = { + adguardhome = { + enable = true; + port = 34778; + openFirewall = true; + }; + + fail2ban = { + enable = true; + ignoreIP = [ + "192.168.0.0/16" + ]; + }; + + cloudflare-dyndns = { + enable = true; + apiTokenFile = "/home/asakiyuki/.secret/CLOUDFLARE_TOKEN_KEY"; + frequency = "*:0/5"; + proxied = true; + ipv6 = false; + ipv4 = true; + deleteMissing = false; + domains = [ "ddns.asakiyuki.com" ]; + }; + + openssh = { + enable = true; + ports = [ 15523 ]; + authorizedKeysInHomedir = true; + authorizedKeysFiles = [ "/home/asakiyuki/.ssh/authorized_keys" ]; + settings = { + AllowUsers = [ + "asakiyuki" + "junko" + ]; + PasswordAuthentication = true; + KbdInteractiveAuthentication = false; + AllowAgentForwarding = false; + AllowStreamLocalForwarding = false; + X11Forwarding = false; + PermitRootLogin = "no"; + }; + }; + }; + + networking = { + useDHCP = false; + networkmanager.enable = true; + defaultGateway = "192.168.1.1"; + nameservers = [ + "8.8.8.8" + "1.1.1.1" + ]; + + interfaces = { + enp1s0 = { + useDHCP = false; + + ipv4.addresses = [ + { + address = "192.168.1.100"; + prefixLength = 24; + } + ]; + + ipv6.addresses = [ + { + address = "2402:800:62d0:1c26:abcd:1234:5678:9abc"; + prefixLength = 64; + } + ]; + }; + }; + + firewall = { + enable = true; + allowedUDPPorts = [ + 53 + 34778 + ]; + allowedTCPPorts = [ + 15523 + 53 + 8443 + 583 + 25565 + ]; + }; + }; } From 68a2437d9ac43844f4bebb80a9295ef4c8c51790 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 18:51:59 +0700 Subject: [PATCH 154/245] add idk --- devices/home-server/configuration.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/devices/home-server/configuration.nix b/devices/home-server/configuration.nix index 5cbd3e5..4307f9f 100644 --- a/devices/home-server/configuration.nix +++ b/devices/home-server/configuration.nix @@ -10,6 +10,10 @@ "flakes" ]; + device = { + flake-name = "home-server"; + }; + nixpkgs.config.allowUnfree = true; boot.loader.systemd-boot.enable = true; From 25c1f95bdb1336fb9d35509958b6d9c6baa139e2 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 18:52:50 +0700 Subject: [PATCH 155/245] add pkgs to args --- host/server/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/server/default.nix b/host/server/default.nix index cee9119..a6bf961 100644 --- a/host/server/default.nix +++ b/host/server/default.nix @@ -1,4 +1,4 @@ -{ libs, ... }: +{ libs, pkgs, ... }: { imports = [ (libs.root "/home/asakiyuki/configuration.nix") From 7bff92347dce2b4411544f3be64751032cf32a5b Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 18:54:12 +0700 Subject: [PATCH 156/245] add server options --- host/server/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/host/server/default.nix b/host/server/default.nix index a6bf961..828d8c4 100644 --- a/host/server/default.nix +++ b/host/server/default.nix @@ -2,6 +2,7 @@ { imports = [ (libs.root "/home/asakiyuki/configuration.nix") + (libs.root "/options/server/default.nix") ]; environment.systemPackages = with pkgs; [ From c383cd8f68e2eca4f50574bab1013cb80e0e44c2 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 18:55:10 +0700 Subject: [PATCH 157/245] remove junko user --- host/server/default.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/host/server/default.nix b/host/server/default.nix index 828d8c4..0471c8d 100644 --- a/host/server/default.nix +++ b/host/server/default.nix @@ -14,11 +14,6 @@ isNormalUser = true; }; - users.users.asakiyuki = { - isNormalUser = true; - extraGroups = [ "wheel" ]; - }; - services = { adguardhome = { enable = true; From ccaafc3fafb63e6ed866f2fdfc50d77a05f119e1 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 18:56:34 +0700 Subject: [PATCH 158/245] add args --- flake.nix | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/flake.nix b/flake.nix index 504ac0a..1022813 100644 --- a/flake.nix +++ b/flake.nix @@ -44,20 +44,22 @@ system = "x86_64-linux"; config.allowUnfree = true; }; + + specialArgs = { + inherit + self + custom + libs + unstable + inputs + ; + }; in { nixosConfigurations = { ideapad-slim-5 = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; - specialArgs = { - inherit - self - custom - libs - unstable - inputs - ; - }; + specialArgs = specialArgs; modules = [ inputs.nixos-hardware.nixosModules.lenovo-ideapad-slim-5 inputs.nix-index-database.nixosModules.default @@ -68,7 +70,7 @@ home-server = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; - specialArgs = { inherit self inputs libs; }; + specialArgs = specialArgs; modules = [ (libs.root "/devices/home-server/configuration.nix") ]; From 60cc7b5929898a08397cb4ab8a896d96e96d09d4 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 19:00:10 +0700 Subject: [PATCH 159/245] add modules to home-server --- flake.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flake.nix b/flake.nix index 1022813..9a7b34c 100644 --- a/flake.nix +++ b/flake.nix @@ -72,6 +72,8 @@ system = "x86_64-linux"; specialArgs = specialArgs; modules = [ + inputs.nix-index-database.nixosModules.default + inputs.home-manager.nixosModules.default (libs.root "/devices/home-server/configuration.nix") ]; }; From da7459efbb7edb80078f75bbe77e222f1f9552b5 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 19:05:08 +0700 Subject: [PATCH 160/245] dvvl --- options/{common => }/default.nix | 11 ++++++++++- options/desktop/default.nix | 18 ------------------ options/desktop/programs.nix | 18 ------------------ options/{desktop => }/environment.nix | 0 options/{common => }/file.nix | 0 options/{desktop => }/hardware.nix | 0 options/{common => }/programs.nix | 17 +++++++++++++++++ options/server/default.nix | 5 ----- 8 files changed, 27 insertions(+), 42 deletions(-) rename options/{common => }/default.nix (56%) delete mode 100644 options/desktop/default.nix delete mode 100644 options/desktop/programs.nix rename options/{desktop => }/environment.nix (100%) rename options/{common => }/file.nix (100%) rename options/{desktop => }/hardware.nix (100%) rename options/{common => }/programs.nix (86%) delete mode 100644 options/server/default.nix diff --git a/options/common/default.nix b/options/default.nix similarity index 56% rename from options/common/default.nix rename to options/default.nix index b473cd7..b57105b 100644 --- a/options/common/default.nix +++ b/options/default.nix @@ -1,8 +1,11 @@ -{ lib, ... }: +{ ... }: { imports = [ ./programs.nix ./file.nix + ./environment.nix + ./programs.nix + ./hardware.nix ]; options.device = { @@ -12,5 +15,11 @@ default = "desktop"; description = "Flake name for quick rebuild"; }; + + cursors = lib.mkOption { + type = lib.types.str; + default = "aemeath"; + description = "Cursor theme to use for the desktop"; + }; }; } diff --git a/options/desktop/default.nix b/options/desktop/default.nix deleted file mode 100644 index 9bd723d..0000000 --- a/options/desktop/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ lib, ... }: -{ - imports = [ - ../common/default.nix - - ./environment.nix - ./programs.nix - ./hardware.nix - ]; - - options.device = { - cursors = lib.mkOption { - type = lib.types.str; - default = "aemeath"; - description = "Cursor theme to use for the desktop"; - }; - }; -} diff --git a/options/desktop/programs.nix b/options/desktop/programs.nix deleted file mode 100644 index a2581fb..0000000 --- a/options/desktop/programs.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ lib, ... }: { - options.device.programs = { - terminal = lib.mkOption { - type = lib.types.str; - default = "ghostty"; - description = "Terminal"; - }; - - nixcord.enable = lib.mkEnableOption "nixcord"; - tmux.enable = lib.mkEnableOption "tmux"; - starship.enable = lib.mkEnableOption "starship"; - fastfetch.enable = lib.mkEnableOption "fastfetch"; - steam.enable = lib.mkEnableOption "steam"; - - obs-studio.enable = lib.mkEnableOption "Obs Studio"; - cider-2.enable = lib.mkEnableOption "Cider 2"; - }; -} \ No newline at end of file diff --git a/options/desktop/environment.nix b/options/environment.nix similarity index 100% rename from options/desktop/environment.nix rename to options/environment.nix diff --git a/options/common/file.nix b/options/file.nix similarity index 100% rename from options/common/file.nix rename to options/file.nix diff --git a/options/desktop/hardware.nix b/options/hardware.nix similarity index 100% rename from options/desktop/hardware.nix rename to options/hardware.nix diff --git a/options/common/programs.nix b/options/programs.nix similarity index 86% rename from options/common/programs.nix rename to options/programs.nix index 46e1afa..eea99d3 100644 --- a/options/common/programs.nix +++ b/options/programs.nix @@ -1,5 +1,22 @@ { lib, pkgs, ... }: { + options.device.programs = { + terminal = lib.mkOption { + type = lib.types.str; + default = "ghostty"; + description = "Terminal"; + }; + + nixcord.enable = lib.mkEnableOption "nixcord"; + tmux.enable = lib.mkEnableOption "tmux"; + starship.enable = lib.mkEnableOption "starship"; + fastfetch.enable = lib.mkEnableOption "fastfetch"; + steam.enable = lib.mkEnableOption "steam"; + + obs-studio.enable = lib.mkEnableOption "Obs Studio"; + cider-2.enable = lib.mkEnableOption "Cider 2"; + }; + options.programs = { wget = { enable = lib.mkEnableOption "wget"; diff --git a/options/server/default.nix b/options/server/default.nix deleted file mode 100644 index 95fbfff..0000000 --- a/options/server/default.nix +++ /dev/null @@ -1,5 +0,0 @@ -{ ... }: -{ - imports = [ ../common/default.nix ]; - options.device = { }; -} From cf260a566ede0831b78daa86b664928d935c8306 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 19:06:24 +0700 Subject: [PATCH 161/245] idk --- host/desktop/default.nix | 2 +- options/{ => system}/default.nix | 2 +- options/{ => system}/environment.nix | 0 options/{ => system}/file.nix | 0 options/{ => system}/hardware.nix | 0 options/{ => system}/programs.nix | 0 6 files changed, 2 insertions(+), 2 deletions(-) rename options/{ => system}/default.nix (97%) rename options/{ => system}/environment.nix (100%) rename options/{ => system}/file.nix (100%) rename options/{ => system}/hardware.nix (100%) rename options/{ => system}/programs.nix (100%) diff --git a/host/desktop/default.nix b/host/desktop/default.nix index 2774a6c..d304995 100644 --- a/host/desktop/default.nix +++ b/host/desktop/default.nix @@ -33,7 +33,7 @@ (libs.root "/modules/services/default.nix") (libs.root "/modules/home-manager.nix") - (libs.root "/options/desktop/default.nix") + (libs.root "/options/system/default.nix") (libs.root "/overlays/nixpkgs.nix") ]; diff --git a/options/default.nix b/options/system/default.nix similarity index 97% rename from options/default.nix rename to options/system/default.nix index b57105b..5a54b7a 100644 --- a/options/default.nix +++ b/options/system/default.nix @@ -1,4 +1,4 @@ -{ ... }: +{ lib, ... }: { imports = [ ./programs.nix diff --git a/options/environment.nix b/options/system/environment.nix similarity index 100% rename from options/environment.nix rename to options/system/environment.nix diff --git a/options/file.nix b/options/system/file.nix similarity index 100% rename from options/file.nix rename to options/system/file.nix diff --git a/options/hardware.nix b/options/system/hardware.nix similarity index 100% rename from options/hardware.nix rename to options/system/hardware.nix diff --git a/options/programs.nix b/options/system/programs.nix similarity index 100% rename from options/programs.nix rename to options/system/programs.nix From 8ad9377b38edc57d45cd9c088f3f67c79ac7ef6d Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 19:06:49 +0700 Subject: [PATCH 162/245] idk --- host/server/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/server/default.nix b/host/server/default.nix index 0471c8d..457ec2f 100644 --- a/host/server/default.nix +++ b/host/server/default.nix @@ -2,7 +2,7 @@ { imports = [ (libs.root "/home/asakiyuki/configuration.nix") - (libs.root "/options/server/default.nix") + (libs.root "/options/system/default.nix") ]; environment.systemPackages = with pkgs; [ From 0f6fdf63f126f83b154d44d7bb1e0843215bc7c6 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 19:23:45 +0700 Subject: [PATCH 163/245] terminal --- host/desktop/programs.nix | 2 + modules/features/home/browsers.nix | 321 ++++++++++++++--------------- modules/features/home/ghostty.nix | 70 ++++--- modules/features/home/kitty.nix | 105 +++++----- options/system/programs.nix | 11 +- 5 files changed, 259 insertions(+), 250 deletions(-) diff --git a/host/desktop/programs.nix b/host/desktop/programs.nix index ff2f4cd..049b29e 100644 --- a/host/desktop/programs.nix +++ b/host/desktop/programs.nix @@ -44,5 +44,7 @@ cider.enable = true; proton-ge.enable = true; proton-apps.enable = true; + firefox.enable = true; + chromium.enable = true; }; } diff --git a/modules/features/home/browsers.nix b/modules/features/home/browsers.nix index 2d1d157..e9ad3b5 100644 --- a/modules/features/home/browsers.nix +++ b/modules/features/home/browsers.nix @@ -1,172 +1,169 @@ { pkgs, libs, ... }: { programs = { - firefox = { - enable = true; - profiles.default = { - settings = { - "browser.startup.homepage" = "about:home"; - - "devtools.chrome.enabled" = true; - "devtools.debugger.remote-enabled" = true; - "toolkit.legacyUserProfileCustomizations.stylesheets" = true; + firefox.profiles.default = { + settings = { + "browser.startup.homepage" = "about:home"; - "full-screen-api.warning.timeout" = 0; - }; + "devtools.chrome.enabled" = true; + "devtools.debugger.remote-enabled" = true; + "toolkit.legacyUserProfileCustomizations.stylesheets" = true; - search = { - default = "google"; - engines = { - youtube = { - name = "YouTube"; - definedAliases = [ - "@yt" - "@youtube" - ]; - icon = "https://www.youtube.com/s/desktop/83c08b77/img/favicon.ico"; - urls = [ - { - template = "https://www.youtube.com/results"; - params = [ - { - name = "search_query"; - value = "{searchTerms}"; - } - ]; - } - ]; - }; - - google = { - name = "Google"; - definedAliases = [ - "@g" - "@google" - ]; - icon = "https://www.gstatic.com/images/branding/searchlogo/ico/favicon.ico"; - urls = [ - { - template = "https://www.google.com/search"; - params = [ - { - name = "q"; - value = "{searchTerms}"; - } - ]; - } - { - template = "https://www.google.com/search"; - params = [ - { - name = "udm"; - value = "2"; - } - { - name = "q"; - value = "{searchTerms}"; - } - ]; - } - ]; - }; - - github = { - name = "Github"; - definedAliases = [ - "@gh" - "@github" - ]; - icon = "https://github.githubassets.com/favicons/favicon-dark.svg"; - urls = [ - { - template = "https://github.com/search"; - params = [ - { - name = "type"; - value = "repositories"; - } - { - name = "q"; - value = "{searchTerms}"; - } - ]; - } - ]; - }; - - reddit = { - name = "Reddit"; - definedAliases = [ - "@rd" - "@reddit" - ]; - icon = "https://www.redditstatic.com/shreddit/assets/favicon/192x192.png"; - urls = [ - { - template = "https://www.reddit.com/search"; - params = [ - { - name = "q"; - value = "{searchTerms}"; - } - ]; - } - ]; - }; - - nix-packages = { - name = "Nix Packages"; - definedAliases = [ - "@np" - "@nixpkgs" - ]; - icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg"; - urls = [ - { - template = "https://search.nixos.org/packages"; - params = [ - { - name = "type"; - value = "packages"; - } - { - name = "query"; - value = "{searchTerms}"; - } - ]; - } - ]; - }; - - mynixos = { - name = "My NixOS"; - definedAliases = [ "@mynixos" ]; - icon = "https://mynixos.com/favicon.ico"; - urls = [ - { - template = "https://mynixos.com/search"; - params = [ - { - name = "q"; - value = "{searchTerms}"; - } - ]; - } - ]; - }; - - bing.metaData.hidden = true; - ddg.metaData.hidden = true; - perplexity.metaData.hidden = true; - wikipedia.metaData.hidden = true; - }; - }; - - userChrome = builtins.readFile (libs.root "/assets/firefox/userChrome.css"); - userContent = builtins.readFile (libs.root "/assets/firefox/userContent.css"); + "full-screen-api.warning.timeout" = 0; }; + + search = { + default = "google"; + engines = { + youtube = { + name = "YouTube"; + definedAliases = [ + "@yt" + "@youtube" + ]; + icon = "https://www.youtube.com/s/desktop/83c08b77/img/favicon.ico"; + urls = [ + { + template = "https://www.youtube.com/results"; + params = [ + { + name = "search_query"; + value = "{searchTerms}"; + } + ]; + } + ]; + }; + + google = { + name = "Google"; + definedAliases = [ + "@g" + "@google" + ]; + icon = "https://www.gstatic.com/images/branding/searchlogo/ico/favicon.ico"; + urls = [ + { + template = "https://www.google.com/search"; + params = [ + { + name = "q"; + value = "{searchTerms}"; + } + ]; + } + { + template = "https://www.google.com/search"; + params = [ + { + name = "udm"; + value = "2"; + } + { + name = "q"; + value = "{searchTerms}"; + } + ]; + } + ]; + }; + + github = { + name = "Github"; + definedAliases = [ + "@gh" + "@github" + ]; + icon = "https://github.githubassets.com/favicons/favicon-dark.svg"; + urls = [ + { + template = "https://github.com/search"; + params = [ + { + name = "type"; + value = "repositories"; + } + { + name = "q"; + value = "{searchTerms}"; + } + ]; + } + ]; + }; + + reddit = { + name = "Reddit"; + definedAliases = [ + "@rd" + "@reddit" + ]; + icon = "https://www.redditstatic.com/shreddit/assets/favicon/192x192.png"; + urls = [ + { + template = "https://www.reddit.com/search"; + params = [ + { + name = "q"; + value = "{searchTerms}"; + } + ]; + } + ]; + }; + + nix-packages = { + name = "Nix Packages"; + definedAliases = [ + "@np" + "@nixpkgs" + ]; + icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg"; + urls = [ + { + template = "https://search.nixos.org/packages"; + params = [ + { + name = "type"; + value = "packages"; + } + { + name = "query"; + value = "{searchTerms}"; + } + ]; + } + ]; + }; + + mynixos = { + name = "My NixOS"; + definedAliases = [ "@mynixos" ]; + icon = "https://mynixos.com/favicon.ico"; + urls = [ + { + template = "https://mynixos.com/search"; + params = [ + { + name = "q"; + value = "{searchTerms}"; + } + ]; + } + ]; + }; + + bing.metaData.hidden = true; + ddg.metaData.hidden = true; + perplexity.metaData.hidden = true; + wikipedia.metaData.hidden = true; + }; + }; + + userChrome = builtins.readFile (libs.root "/assets/firefox/userChrome.css"); + userContent = builtins.readFile (libs.root "/assets/firefox/userContent.css"); }; - chromium.enable = true; + chromium = { }; }; } diff --git a/modules/features/home/ghostty.nix b/modules/features/home/ghostty.nix index edb78b4..0b29b5d 100644 --- a/modules/features/home/ghostty.nix +++ b/modules/features/home/ghostty.nix @@ -1,50 +1,54 @@ -{ lib, osconfig, ... }: { - programs.ghostty = lib.mkIf (osconfig.device.programs.terminal == "ghostty") { +{ lib, osconfig, ... }: +{ + programs.ghostty = + lib.mkIf + (osconfig.device.programs.terminal.enable && osconfig.device.programs.terminal.name == "ghostty") + { enable = true; settings = { - theme = "catppuccin-mocha"; + theme = "catppuccin-mocha"; - font-size = 10; - font-family = "SauceCodePro NFP Bold"; + font-size = 10; + font-family = "SauceCodePro NFP Bold"; - window-width = 230; - window-height = 68; + window-width = 230; + window-height = 68; - window-padding-x = 5; - window-padding-y = 0; + window-padding-x = 5; + window-padding-y = 0; - keybind = [ + keybind = [ "ctrl+shift+n=unbind" "ctrl+shift+i=unbind" - ]; - }; + ]; + }; - themes = { - catppuccin-mocha = { + themes = { + catppuccin-mocha = { background = "1e1e2e"; cursor-color = "f5e0dc"; foreground = "cdd6f4"; palette = [ - "0=#45475a" - "1=#f38ba8" - "2=#a6e3a1" - "3=#f9e2af" - "4=#89b4fa" - "5=#f5c2e7" - "6=#94e2d5" - "7=#bac2de" - "8=#585b70" - "9=#f38ba8" - "10=#a6e3a1" - "11=#f9e2af" - "12=#89b4fa" - "13=#f5c2e7" - "14=#94e2d5" - "15=#a6adc8" + "0=#45475a" + "1=#f38ba8" + "2=#a6e3a1" + "3=#f9e2af" + "4=#89b4fa" + "5=#f5c2e7" + "6=#94e2d5" + "7=#bac2de" + "8=#585b70" + "9=#f38ba8" + "10=#a6e3a1" + "11=#f9e2af" + "12=#89b4fa" + "13=#f5c2e7" + "14=#94e2d5" + "15=#a6adc8" ]; selection-background = "353749"; selection-foreground = "cdd6f4"; - }; + }; }; - }; -} \ No newline at end of file + }; +} diff --git a/modules/features/home/kitty.nix b/modules/features/home/kitty.nix index 7631d3e..e07fa97 100644 --- a/modules/features/home/kitty.nix +++ b/modules/features/home/kitty.nix @@ -1,75 +1,78 @@ -{ lib, osconfig, ... }: { - programs.kitty = lib.mkIf (osconfig.device.programs.terminal == "kitty") { +{ lib, osconfig, ... }: +{ + programs.kitty = + lib.mkIf (osconfig.device.programs.terminal.enable && osconfig.device.programs.terminal == "kitty") + { enable = true; keybindings = { - "ctrl+c" = "copy_to_clipboard"; - "ctrl+v" = "paste_from_clipboard"; + "ctrl+c" = "copy_to_clipboard"; + "ctrl+v" = "paste_from_clipboard"; }; settings = { - window_padding_width = 2; - window_padding_height = 2; + window_padding_width = 2; + window_padding_height = 2; - cursor_shape = "beam"; - # background_opacity = 0.5; + cursor_shape = "beam"; + # background_opacity = 0.5; - font_family = "Tahoma"; - font_size = 9; + font_family = "Tahoma"; + font_size = 9; - foreground = "#cdd6f4"; - background = "#1e1e2e"; - selection_foreground = "#1e1e2e"; - selection_background = "#f5e0dc"; + foreground = "#cdd6f4"; + background = "#1e1e2e"; + selection_foreground = "#1e1e2e"; + selection_background = "#f5e0dc"; - cursor = "#f5e0dc"; - cursor_text_color = "#1e1e2e"; + cursor = "#f5e0dc"; + cursor_text_color = "#1e1e2e"; - url_color = "#f5e0dc"; + url_color = "#f5e0dc"; - active_border_color = "#b4befe"; - inactive_border_color = "#6c7086"; - bell_border_color = "#f9e2af"; + active_border_color = "#b4befe"; + inactive_border_color = "#6c7086"; + bell_border_color = "#f9e2af"; - wayland_titlebar_color = "system"; - macos_titlebar_color = "system"; + wayland_titlebar_color = "system"; + macos_titlebar_color = "system"; - active_tab_foreground = "#11111b"; - active_tab_background = "#cba6f7"; - inactive_tab_foreground = "#cdd6f4"; - inactive_tab_background = "#181825"; - tab_bar_background = "#11111b"; + active_tab_foreground = "#11111b"; + active_tab_background = "#cba6f7"; + inactive_tab_foreground = "#cdd6f4"; + inactive_tab_background = "#181825"; + tab_bar_background = "#11111b"; - mark1_foreground = "#1e1e2e"; - mark1_background = "#b4befe"; - mark2_foreground = "#1e1e2e"; - mark2_background = "#cba6f7"; - mark3_foreground = "#1e1e2e"; - mark3_background = "#74c7ec"; + mark1_foreground = "#1e1e2e"; + mark1_background = "#b4befe"; + mark2_foreground = "#1e1e2e"; + mark2_background = "#cba6f7"; + mark3_foreground = "#1e1e2e"; + mark3_background = "#74c7ec"; - color0 = "#45475a"; - color8 = "#585b70"; + color0 = "#45475a"; + color8 = "#585b70"; - color1 = "#f38ba8"; - color9 = "#f38ba8"; + color1 = "#f38ba8"; + color9 = "#f38ba8"; - color2 = "#a6e3a1"; - color10 = "#a6e3a1"; + color2 = "#a6e3a1"; + color10 = "#a6e3a1"; - color3 = "#f9e2af"; - color11 = "#f9e2af"; + color3 = "#f9e2af"; + color11 = "#f9e2af"; - color4 = "#89b4fa"; - color12 = "#89b4fa"; + color4 = "#89b4fa"; + color12 = "#89b4fa"; - color5 = "#f5c2e7"; - color13 = "#f5c2e7"; + color5 = "#f5c2e7"; + color13 = "#f5c2e7"; - color6 = "#94e2d5"; - color14 = "#94e2d5"; + color6 = "#94e2d5"; + color14 = "#94e2d5"; - color7 = "#bac2de"; - color15 = "#a6adc8"; + color7 = "#bac2de"; + color15 = "#a6adc8"; }; - }; -} \ No newline at end of file + }; +} diff --git a/options/system/programs.nix b/options/system/programs.nix index eea99d3..22a55d4 100644 --- a/options/system/programs.nix +++ b/options/system/programs.nix @@ -1,10 +1,13 @@ { lib, pkgs, ... }: { options.device.programs = { - terminal = lib.mkOption { - type = lib.types.str; - default = "ghostty"; - description = "Terminal"; + terminal = { + enable = lib.mkEnableOption "terminal"; + name = lib.mkOption { + type = lib.types.str; + default = "ghostty"; + description = "Terminal"; + }; }; nixcord.enable = lib.mkEnableOption "nixcord"; From 17bb2d39ef274659c9174feb597d4a855dac1b97 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 19:25:39 +0700 Subject: [PATCH 164/245] add device.nix --- devices/ideapad-slim-5/configuration.nix | 97 ----------------------- host/desktop/default.nix | 1 + host/desktop/device.nix | 99 ++++++++++++++++++++++++ 3 files changed, 100 insertions(+), 97 deletions(-) create mode 100644 host/desktop/device.nix diff --git a/devices/ideapad-slim-5/configuration.nix b/devices/ideapad-slim-5/configuration.nix index bea3938..ddad59d 100755 --- a/devices/ideapad-slim-5/configuration.nix +++ b/devices/ideapad-slim-5/configuration.nix @@ -4,9 +4,6 @@ pkgs, ... }: -let - ENABLE_HDR = false; -in { imports = [ ./hardware-configuration.nix @@ -37,100 +34,6 @@ in "flakes" ]; - device = { - flake-name = "ideapad-slim-5"; - cursors = "aemeath"; - - dm.sddm.enable = true; - dm.gdm.enable = false; - - de.kdePlasma.enable = false; - de.gnome.enable = false; - - wm.niri.enable = false; - wm.hyprland.enable = true; - wm.hyprland.monitors = [ - ( - { - output = "eDP-1"; - mode = "1920x1200@60"; - position = "0x0"; - scale = 1; - } - // lib.optionalAttrs ENABLE_HDR { - bitdepth = 10; - cm = "hdr"; - supports_wide_color = 1; - supports_hdr = 1; - - sdrbrightness = 1.0; - sdrsaturation = 1.0; - - sdr_min_luminance = 0.005; - sdr_max_luminance = 200; - - min_luminance = 0.0005; - max_luminance = 400; - max_avg_luminance = 250; - - sdr_eotf = 2; - } - ) - ]; - - bluetooth.enable = true; - flatpak.enable = true; - - files = { - force = { - ".config/dolphinrc" = true; - }; - - mkForce = { - ".mozilla/firefox/default/search.json.mozlz4" = true; - }; - - source = { - ".config/qt5ct/colors/Catppuccin-Mocha.conf" = - "${pkgs.catppuccin-qt5ct}/share/qt5ct/colors/catppuccin-mocha-sapphire.conf"; - ".config/qt6ct/colors/Catppuccin-Mocha.conf" = - "${pkgs.catppuccin-qt5ct}/share/qt6ct/colors/catppuccin-mocha-sapphire.conf"; - - ".config/dolphinrc" = libs.root "/configs/dolphinrc"; - - ".local/share/kio/servicemenus/copy-server-public-url.desktop" = - libs.root "/configs/services-menu/copy-server-public-url.desktop"; - ".local/share/kio/servicemenus/open-with-code.desktop" = - libs.root "/configs/services-menu/open-with-code.desktop"; - ".local/share/kio/servicemenus/open-with-nvim.desktop" = - libs.root "/configs/services-menu/open-with-nvim.desktop"; - ".local/share/kio/servicemenus/open-with-antigravity.desktop" = - libs.root "/configs/services-menu/open-with-antigravity.desktop"; - ".local/share/kio/servicemenus/open-ghostty-here.desktop" = - libs.root "/configs/services-menu/open-ghostty-here.desktop"; - }; - - symlink = { - "SteamApps" = ".local/share/Steam/steamapps"; - "Development/Quickshell" = ".config/quickshell"; - # "Development/KDE-Widget" = ".local/share/plasma/plasmoids"; - # "Development/SplashScreen" = ".local/share/plasma/look-and-feel"; - # "Development/DesktopEffects" = ".local/share/kwin/effects"; - }; - }; - - programs = { - terminal = "ghostty"; - obs-studio.enable = true; - nixcord.enable = true; - tmux.enable = true; - starship.enable = true; - fastfetch.enable = true; - cider-2.enable = true; - steam.enable = true; - }; - }; - boot.kernelPackages = pkgs.linuxPackages_latest; boot.extraModulePackages = [ pkgs.linuxPackages_latest.zenpower ]; system.stateVersion = "25.11"; diff --git a/host/desktop/default.nix b/host/desktop/default.nix index d304995..4f7bdc2 100644 --- a/host/desktop/default.nix +++ b/host/desktop/default.nix @@ -8,6 +8,7 @@ { imports = [ ./programs.nix + ./device.nix (libs.root "/modules/hardware/default.nix") diff --git a/host/desktop/device.nix b/host/desktop/device.nix new file mode 100644 index 0000000..5fb7061 --- /dev/null +++ b/host/desktop/device.nix @@ -0,0 +1,99 @@ +{ lib, ... }: +let + ENABLE_HDR = false; +in +{ + device = { + flake-name = "ideapad-slim-5"; + cursors = "aemeath"; + + dm.sddm.enable = true; + dm.gdm.enable = false; + + de.kdePlasma.enable = false; + de.gnome.enable = false; + + wm.niri.enable = false; + wm.hyprland.enable = true; + wm.hyprland.monitors = [ + ( + { + output = "eDP-1"; + mode = "1920x1200@60"; + position = "0x0"; + scale = 1; + } + // lib.optionalAttrs ENABLE_HDR { + bitdepth = 10; + cm = "hdr"; + supports_wide_color = 1; + supports_hdr = 1; + + sdrbrightness = 1.0; + sdrsaturation = 1.0; + + sdr_min_luminance = 0.005; + sdr_max_luminance = 200; + + min_luminance = 0.0005; + max_luminance = 400; + max_avg_luminance = 250; + + sdr_eotf = 2; + } + ) + ]; + + bluetooth.enable = true; + flatpak.enable = true; + + files = { + force = { + ".config/dolphinrc" = true; + }; + + mkForce = { + ".mozilla/firefox/default/search.json.mozlz4" = true; + }; + + source = { + ".config/qt5ct/colors/Catppuccin-Mocha.conf" = + "${pkgs.catppuccin-qt5ct}/share/qt5ct/colors/catppuccin-mocha-sapphire.conf"; + ".config/qt6ct/colors/Catppuccin-Mocha.conf" = + "${pkgs.catppuccin-qt5ct}/share/qt6ct/colors/catppuccin-mocha-sapphire.conf"; + + ".config/dolphinrc" = libs.root "/configs/dolphinrc"; + + ".local/share/kio/servicemenus/copy-server-public-url.desktop" = + libs.root "/configs/services-menu/copy-server-public-url.desktop"; + ".local/share/kio/servicemenus/open-with-code.desktop" = + libs.root "/configs/services-menu/open-with-code.desktop"; + ".local/share/kio/servicemenus/open-with-nvim.desktop" = + libs.root "/configs/services-menu/open-with-nvim.desktop"; + ".local/share/kio/servicemenus/open-with-antigravity.desktop" = + libs.root "/configs/services-menu/open-with-antigravity.desktop"; + ".local/share/kio/servicemenus/open-ghostty-here.desktop" = + libs.root "/configs/services-menu/open-ghostty-here.desktop"; + }; + + symlink = { + "SteamApps" = ".local/share/Steam/steamapps"; + "Development/Quickshell" = ".config/quickshell"; + # "Development/KDE-Widget" = ".local/share/plasma/plasmoids"; + # "Development/SplashScreen" = ".local/share/plasma/look-and-feel"; + # "Development/DesktopEffects" = ".local/share/kwin/effects"; + }; + }; + + programs = { + terminal = "ghostty"; + obs-studio.enable = true; + nixcord.enable = true; + tmux.enable = true; + starship.enable = true; + fastfetch.enable = true; + cider-2.enable = true; + steam.enable = true; + }; + }; +} From df098242f5d6c5f5316d06a764b6d763f4a2de06 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 20:10:50 +0700 Subject: [PATCH 165/245] add docker.nix --- home/asakiyuki/modules/files.nix | 2 +- host/desktop/device.nix | 12 ++++++++++-- host/desktop/programs.nix | 1 + modules/features/home/kitty.nix | 3 ++- modules/features/system/docker.nix | 6 ++++++ modules/features/system/packages.nix | 3 ++- modules/programs/hyprland/settings/key-bind.nix | 2 +- options/system/programs.nix | 9 +++++++++ 8 files changed, 32 insertions(+), 6 deletions(-) create mode 100644 modules/features/system/docker.nix diff --git a/home/asakiyuki/modules/files.nix b/home/asakiyuki/modules/files.nix index 0d4ae48..064fab0 100644 --- a/home/asakiyuki/modules/files.nix +++ b/home/asakiyuki/modules/files.nix @@ -43,7 +43,7 @@ ColorScheme=qt6ct [General] - TerminalApplication=${osconfig.device.programs.terminal} + TerminalApplication=${osconfig.device.programs.terminal.name} [Icons] Theme=Papirus diff --git a/host/desktop/device.nix b/host/desktop/device.nix index 5fb7061..aa7f19c 100644 --- a/host/desktop/device.nix +++ b/host/desktop/device.nix @@ -1,4 +1,9 @@ -{ lib, ... }: +{ + lib, + libs, + pkgs, + ... +}: let ENABLE_HDR = false; in @@ -86,7 +91,10 @@ in }; programs = { - terminal = "ghostty"; + terminal = { + enable = true; + name = "ghostty"; + }; obs-studio.enable = true; nixcord.enable = true; tmux.enable = true; diff --git a/host/desktop/programs.nix b/host/desktop/programs.nix index 049b29e..2ba2b75 100644 --- a/host/desktop/programs.nix +++ b/host/desktop/programs.nix @@ -46,5 +46,6 @@ proton-apps.enable = true; firefox.enable = true; chromium.enable = true; + gcc.enable = true; }; } diff --git a/modules/features/home/kitty.nix b/modules/features/home/kitty.nix index e07fa97..8225e23 100644 --- a/modules/features/home/kitty.nix +++ b/modules/features/home/kitty.nix @@ -1,7 +1,8 @@ { lib, osconfig, ... }: { programs.kitty = - lib.mkIf (osconfig.device.programs.terminal.enable && osconfig.device.programs.terminal == "kitty") + lib.mkIf + (osconfig.device.programs.terminal.enable && osconfig.device.programs.terminal.name == "kitty") { enable = true; diff --git a/modules/features/system/docker.nix b/modules/features/system/docker.nix new file mode 100644 index 0000000..2f929eb --- /dev/null +++ b/modules/features/system/docker.nix @@ -0,0 +1,6 @@ +{ ... }: +{ + virtualisation.docker = { + enable = true; + }; +} diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix index 83902eb..40baae6 100644 --- a/modules/features/system/packages.nix +++ b/modules/features/system/packages.nix @@ -12,7 +12,7 @@ git vim btop - gcc + nixd (lib.mkIf config.programs.wget.enable config.programs.wget.package) (lib.mkIf config.programs.tree.enable config.programs.tree.package) @@ -31,6 +31,7 @@ (lib.mkIf config.programs.quickshell.enable config.programs.quickshell.package) (lib.mkIf config.programs.papirus-icons.enable config.programs.papirus-icons.package) ] + ++ (lib.optionals config.programs.gcc.enable config.programs.gcc.packages) ++ (lib.optionals config.programs.winepackages.enable config.programs.winepackages.packages) ++ (lib.optionals config.programs.kde-packages.enable config.programs.kde-packages.packages) ++ (lib.optionals config.programs.r-tensorflow.enable [ config.programs.r-tensorflow.package ]) diff --git a/modules/programs/hyprland/settings/key-bind.nix b/modules/programs/hyprland/settings/key-bind.nix index 3e50488..0208a6f 100644 --- a/modules/programs/hyprland/settings/key-bind.nix +++ b/modules/programs/hyprland/settings/key-bind.nix @@ -2,7 +2,7 @@ { wayland.windowManager.hyprland.settings = { bind = [ - "CTRL ALT, T, exec, ${osconfig.device.programs.terminal}" + "CTRL ALT, T, exec, ${osconfig.device.programs.terminal.name}" "SUPER SHIFT, L, exit," "SUPER SHIFT, TAB, togglefloating," diff --git a/options/system/programs.nix b/options/system/programs.nix index 22a55d4..17eb5a9 100644 --- a/options/system/programs.nix +++ b/options/system/programs.nix @@ -123,6 +123,15 @@ default = pkgs.rPackages.tensorflow; }; }; + gcc = { + enable = lib.mkEnableOption "c"; + packages = lib.mkOption { + type = lib.types.listOf lib.types.package; + default = with pkgs; [ + gcc + ]; + }; + }; hyprland-portals = { enable = lib.mkEnableOption "XDGP for hyprland"; packages = lib.mkOption { From 9f353d29613db0e603eaefcef0cf7a4f35db654a Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 20:27:30 +0700 Subject: [PATCH 166/245] add docker to server --- host/desktop/default.nix | 1 + host/server/default.nix | 2 ++ 2 files changed, 3 insertions(+) diff --git a/host/desktop/default.nix b/host/desktop/default.nix index 4f7bdc2..7c24e90 100644 --- a/host/desktop/default.nix +++ b/host/desktop/default.nix @@ -30,6 +30,7 @@ (libs.root "/modules/features/system/udisks2.nix") (libs.root "/modules/features/system/dconf.nix") (libs.root "/modules/features/system/cloudflare.nix") + (libs.root "/modules/features/system/docker.nix") (libs.root "/modules/services/default.nix") (libs.root "/modules/home-manager.nix") diff --git a/host/server/default.nix b/host/server/default.nix index 457ec2f..2ee6f15 100644 --- a/host/server/default.nix +++ b/host/server/default.nix @@ -1,6 +1,8 @@ { libs, pkgs, ... }: { imports = [ + (libs.root "/modules/features/system/docker.nix") + (libs.root "/home/asakiyuki/configuration.nix") (libs.root "/options/system/default.nix") ]; From 1dc8846fb1d286b432692f17189a567d2f744ae5 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 20:34:08 +0700 Subject: [PATCH 167/245] dvvl --- home/asakiyuki/modules/files.nix | 36 ++++++++++++++++---------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/home/asakiyuki/modules/files.nix b/home/asakiyuki/modules/files.nix index 064fab0..4bfb6df 100644 --- a/home/asakiyuki/modules/files.nix +++ b/home/asakiyuki/modules/files.nix @@ -28,26 +28,26 @@ )) ]; - xdg.configFile.kdeglobals.text = - if (osconfig.device.wm.hyprland.enable || osconfig.device.wm.niri.enable) then + xdg.configFile.kdeglobals = lib.mkIf (osconfig.device.wm.hyprland.enable || osconfig.device.wm.niri.enable) { + text = ( builtins.readFile ( - (pkgs.catppuccin-kde.override { - flavour = [ "mocha" ]; - accents = [ "sapphire" ]; - }) - + "/share/color-schemes/CatppuccinMochaSapphire.colors" - ) - + '' + (pkgs.catppuccin-kde.override { + flavour = [ "mocha" ]; + accents = [ "sapphire" ]; + }) + + "/share/color-schemes/CatppuccinMochaSapphire.colors" + ) + + '' - [UiSettings] - ColorScheme=qt6ct + [UiSettings] + ColorScheme=qt6ct - [General] - TerminalApplication=${osconfig.device.programs.terminal.name} + [General] + TerminalApplication=${osconfig.device.programs.terminal.name} - [Icons] - Theme=Papirus - '' - else - ""; + [Icons] + Theme=Papirus + '' + ) + }; } From 766b986ae01609158b029c4a987f09b613d35400 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 20:34:39 +0700 Subject: [PATCH 168/245] semicolon :sob: --- home/asakiyuki/modules/files.nix | 40 +++++++++++++++++--------------- 1 file changed, 21 insertions(+), 19 deletions(-) diff --git a/home/asakiyuki/modules/files.nix b/home/asakiyuki/modules/files.nix index 4bfb6df..290bba9 100644 --- a/home/asakiyuki/modules/files.nix +++ b/home/asakiyuki/modules/files.nix @@ -28,26 +28,28 @@ )) ]; - xdg.configFile.kdeglobals = lib.mkIf (osconfig.device.wm.hyprland.enable || osconfig.device.wm.niri.enable) { - text = ( - builtins.readFile ( - (pkgs.catppuccin-kde.override { - flavour = [ "mocha" ]; - accents = [ "sapphire" ]; - }) - + "/share/color-schemes/CatppuccinMochaSapphire.colors" - ) - + '' + xdg.configFile.kdeglobals = + lib.mkIf (osconfig.device.wm.hyprland.enable || osconfig.device.wm.niri.enable) + { + text = ( + builtins.readFile ( + (pkgs.catppuccin-kde.override { + flavour = [ "mocha" ]; + accents = [ "sapphire" ]; + }) + + "/share/color-schemes/CatppuccinMochaSapphire.colors" + ) + + '' - [UiSettings] - ColorScheme=qt6ct + [UiSettings] + ColorScheme=qt6ct - [General] - TerminalApplication=${osconfig.device.programs.terminal.name} + [General] + TerminalApplication=${osconfig.device.programs.terminal.name} - [Icons] - Theme=Papirus - '' - ) - }; + [Icons] + Theme=Papirus + '' + ); + }; } From f21f1c29d519b60f6cd079fabf4d129177abcfab Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 20:42:43 +0700 Subject: [PATCH 169/245] add port 80 and 443 --- host/server/default.nix | 3 ++- host/server/programs.nix | 0 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 host/server/programs.nix diff --git a/host/server/default.nix b/host/server/default.nix index 2ee6f15..f632634 100644 --- a/host/server/default.nix +++ b/host/server/default.nix @@ -97,9 +97,10 @@ 34778 ]; allowedTCPPorts = [ + 80 + 443 15523 53 - 8443 583 25565 ]; diff --git a/host/server/programs.nix b/host/server/programs.nix new file mode 100644 index 0000000..e69de29 From 20e9093b85cbade7c62f9fce6a341fed5eb3045d Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 20:44:48 +0700 Subject: [PATCH 170/245] idk --- host/server/default.nix | 2 ++ host/server/programs.nix | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/host/server/default.nix b/host/server/default.nix index f632634..340142e 100644 --- a/host/server/default.nix +++ b/host/server/default.nix @@ -1,6 +1,8 @@ { libs, pkgs, ... }: { imports = [ + ./programs.nix + (libs.root "/modules/features/system/docker.nix") (libs.root "/home/asakiyuki/configuration.nix") diff --git a/host/server/programs.nix b/host/server/programs.nix index e69de29..38219b4 100644 --- a/host/server/programs.nix +++ b/host/server/programs.nix @@ -0,0 +1,6 @@ +{ ... }: +{ + programs = { + + }; +} From 0538d591a31a294b1ffb8ce0f188d6e8f020668d Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 20:50:56 +0700 Subject: [PATCH 171/245] open port 18581 --- host/server/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/host/server/default.nix b/host/server/default.nix index 340142e..5149d4b 100644 --- a/host/server/default.nix +++ b/host/server/default.nix @@ -101,6 +101,8 @@ allowedTCPPorts = [ 80 443 + 18581 + 8443 15523 53 583 From f702ae8812b1757be4d5fef1591b2d5bfc359c42 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 22:21:49 +0700 Subject: [PATCH 172/245] idk --- host/desktop/programs.nix | 7 ------- host/server/default.nix | 1 + host/server/programs.nix | 1 - modules/features/system/packages.nix | 15 ++++++++------- options/system/programs.nix | 20 -------------------- 5 files changed, 9 insertions(+), 35 deletions(-) diff --git a/host/desktop/programs.nix b/host/desktop/programs.nix index 2ba2b75..129c18b 100644 --- a/host/desktop/programs.nix +++ b/host/desktop/programs.nix @@ -1,23 +1,16 @@ { - config, - pkgs, ... }: { programs = { - wget.enable = true; - tree.enable = true; ffmpeg.enable = true; nodejs.enable = true; bun.enable = true; brightnessctl.enable = true; php.enable = true; ntfs3g.enable = true; - zip.enable = true; - unzip.enable = true; python.enable = true; jdk.enable = true; - nixfmt.enable = true; winepackages.enable = true; quickshell.enable = true; papirus-icons.enable = true; diff --git a/host/server/default.nix b/host/server/default.nix index 5149d4b..b5012c3 100644 --- a/host/server/default.nix +++ b/host/server/default.nix @@ -4,6 +4,7 @@ ./programs.nix (libs.root "/modules/features/system/docker.nix") + (libs.root "/modules/features/system/packages.nix") (libs.root "/home/asakiyuki/configuration.nix") (libs.root "/options/system/default.nix") diff --git a/host/server/programs.nix b/host/server/programs.nix index 38219b4..a32ca87 100644 --- a/host/server/programs.nix +++ b/host/server/programs.nix @@ -1,6 +1,5 @@ { ... }: { programs = { - }; } diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix index 40baae6..b728c90 100644 --- a/modules/features/system/packages.nix +++ b/modules/features/system/packages.nix @@ -2,7 +2,6 @@ pkgs, lib, config, - rPackages, ... }: { @@ -12,21 +11,23 @@ git vim btop - nixd + wget + tree + + nixd + nixfmt + + zip + unzip - (lib.mkIf config.programs.wget.enable config.programs.wget.package) - (lib.mkIf config.programs.tree.enable config.programs.tree.package) (lib.mkIf config.programs.ffmpeg.enable config.programs.ffmpeg.package) (lib.mkIf config.programs.nodejs.enable config.programs.nodejs.package) (lib.mkIf config.programs.bun.enable config.programs.bun.package) (lib.mkIf config.programs.brightnessctl.enable config.programs.brightnessctl.package) (lib.mkIf config.programs.php.enable config.programs.php.package) (lib.mkIf config.programs.ntfs3g.enable config.programs.ntfs3g.package) - (lib.mkIf config.programs.zip.enable config.programs.zip.package) - (lib.mkIf config.programs.unzip.enable config.programs.unzip.package) (lib.mkIf config.programs.python.enable config.programs.python.package) (lib.mkIf config.programs.jdk.enable config.programs.jdk.package) - (lib.mkIf config.programs.nixfmt.enable config.programs.nixfmt.package) (lib.mkIf config.programs.quickshell.enable config.programs.quickshell.package) (lib.mkIf config.programs.papirus-icons.enable config.programs.papirus-icons.package) diff --git a/options/system/programs.nix b/options/system/programs.nix index 17eb5a9..c7a95db 100644 --- a/options/system/programs.nix +++ b/options/system/programs.nix @@ -21,14 +21,6 @@ }; options.programs = { - wget = { - enable = lib.mkEnableOption "wget"; - package = lib.mkPackageOption pkgs "wget" { }; - }; - tree = { - enable = lib.mkEnableOption "tree"; - package = lib.mkPackageOption pkgs "tree" { }; - }; ffmpeg = { enable = lib.mkEnableOption "ffmpeg"; package = lib.mkPackageOption pkgs "ffmpeg-full" { }; @@ -53,14 +45,6 @@ enable = lib.mkEnableOption "ntfs3g"; package = lib.mkPackageOption pkgs "ntfs3g" { }; }; - zip = { - enable = lib.mkEnableOption "zip"; - package = lib.mkPackageOption pkgs "zip" { }; - }; - unzip = { - enable = lib.mkEnableOption "unzip"; - package = lib.mkPackageOption pkgs "unzip" { }; - }; python = { enable = lib.mkEnableOption "python"; package = lib.mkPackageOption pkgs "python3" { }; @@ -69,10 +53,6 @@ enable = lib.mkEnableOption "jdk-25"; package = lib.mkPackageOption pkgs "jdk25" { }; }; - nixfmt = { - enable = lib.mkEnableOption "nixfmt"; - package = lib.mkPackageOption pkgs "nixfmt" { }; - }; winepackages = { enable = lib.mkEnableOption "Wine and Proton utilities"; packages = lib.mkOption { From 6185dd48a8f1fb35d8b8758f59f65b06cd10c7cb Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 22:25:43 +0700 Subject: [PATCH 173/245] add services.nix --- home/asakiyuki/modules/programs.nix | 45 ++++++++++++----------- host/server/default.nix | 6 +-- host/server/programs.nix | 1 + host/server/service.nix | 3 ++ modules/features/services/adguardhome.nix | 8 ++++ 5 files changed, 36 insertions(+), 27 deletions(-) create mode 100644 host/server/service.nix create mode 100644 modules/features/services/adguardhome.nix diff --git a/home/asakiyuki/modules/programs.nix b/home/asakiyuki/modules/programs.nix index 342d885..24a81f7 100644 --- a/home/asakiyuki/modules/programs.nix +++ b/home/asakiyuki/modules/programs.nix @@ -1,23 +1,24 @@ -{ lib, osconfig, ... }: { - imports = [ - (../../../modules/features/home/ghostty.nix) - (../../../modules/features/home/kitty.nix) - (../../../modules/features/home/browsers.nix) - # (../../../modules/features/home/neovide.nix) - - (../../../modules/features/home/bash.nix) - (../../../modules/features/home/starship.nix) - (../../../modules/features/home/tmux.nix) - (../../../modules/features/home/fastfetch.nix) - (../../../modules/features/home/vscode.nix) - (../../../modules/features/home/obs-studio.nix) - (../../../modules/features/home/xdg.nix) - (../../../modules/features/home/packages.nix) - (../../../modules/features/home/git.nix) +{ ... }: +{ + imports = [ + (../../../modules/features/home/ghostty.nix) + (../../../modules/features/home/kitty.nix) + (../../../modules/features/home/browsers.nix) + # (../../../modules/features/home/neovide.nix) - (../../../modules/programs/nixvim/_nixvim.nix) - (../../../modules/programs/nixcord/default.nix) - (../../../modules/features/home/niri.nix) - (../../../modules/programs/hyprland/default.nix) - ]; -} \ No newline at end of file + (../../../modules/features/home/bash.nix) + (../../../modules/features/home/starship.nix) + (../../../modules/features/home/tmux.nix) + (../../../modules/features/home/fastfetch.nix) + (../../../modules/features/home/vscode.nix) + (../../../modules/features/home/obs-studio.nix) + (../../../modules/features/home/xdg.nix) + (../../../modules/features/home/packages.nix) + (../../../modules/features/home/git.nix) + + (../../../modules/programs/nixvim/_nixvim.nix) + (../../../modules/programs/nixcord/default.nix) + (../../../modules/features/home/niri.nix) + (../../../modules/programs/hyprland/default.nix) + ]; +} diff --git a/host/server/default.nix b/host/server/default.nix index b5012c3..a098139 100644 --- a/host/server/default.nix +++ b/host/server/default.nix @@ -2,6 +2,7 @@ { imports = [ ./programs.nix + ./service.nix (libs.root "/modules/features/system/docker.nix") (libs.root "/modules/features/system/packages.nix") @@ -20,11 +21,6 @@ }; services = { - adguardhome = { - enable = true; - port = 34778; - openFirewall = true; - }; fail2ban = { enable = true; diff --git a/host/server/programs.nix b/host/server/programs.nix index a32ca87..38219b4 100644 --- a/host/server/programs.nix +++ b/host/server/programs.nix @@ -1,5 +1,6 @@ { ... }: { programs = { + }; } diff --git a/host/server/service.nix b/host/server/service.nix new file mode 100644 index 0000000..8cd23a0 --- /dev/null +++ b/host/server/service.nix @@ -0,0 +1,3 @@ +{ ... }: [ + imports = []; +] \ No newline at end of file diff --git a/modules/features/services/adguardhome.nix b/modules/features/services/adguardhome.nix new file mode 100644 index 0000000..9b2d2ae --- /dev/null +++ b/modules/features/services/adguardhome.nix @@ -0,0 +1,8 @@ +{ ... }: +{ + services.adguardhome = { + enable = true; + port = 34778; + openFirewall = true; + }; +} From 5760ed4067ce7709658ed73b3f60af452a948586 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 22:27:00 +0700 Subject: [PATCH 174/245] rebase services --- host/desktop/default.nix | 2 +- host/server/service.nix | 6 ++++-- modules/{features => }/services/adguardhome.nix | 0 modules/services/{default.nix => pipewire.nix} | 0 4 files changed, 5 insertions(+), 3 deletions(-) rename modules/{features => }/services/adguardhome.nix (100%) rename modules/services/{default.nix => pipewire.nix} (100%) diff --git a/host/desktop/default.nix b/host/desktop/default.nix index 7c24e90..f827a0b 100644 --- a/host/desktop/default.nix +++ b/host/desktop/default.nix @@ -32,7 +32,7 @@ (libs.root "/modules/features/system/cloudflare.nix") (libs.root "/modules/features/system/docker.nix") - (libs.root "/modules/services/default.nix") + (libs.root "/modules/services/pipewire.nix") (libs.root "/modules/home-manager.nix") (libs.root "/options/system/default.nix") diff --git a/host/server/service.nix b/host/server/service.nix index 8cd23a0..b701053 100644 --- a/host/server/service.nix +++ b/host/server/service.nix @@ -1,3 +1,5 @@ -{ ... }: [ - imports = []; +{ libs, ... }: [ + imports = [ + (libs.root "/modules/services/adguardhome.nix") + ]; ] \ No newline at end of file diff --git a/modules/features/services/adguardhome.nix b/modules/services/adguardhome.nix similarity index 100% rename from modules/features/services/adguardhome.nix rename to modules/services/adguardhome.nix diff --git a/modules/services/default.nix b/modules/services/pipewire.nix similarity index 100% rename from modules/services/default.nix rename to modules/services/pipewire.nix From 473719999284895b2831d097114a368845fe1578 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 22:37:37 +0700 Subject: [PATCH 175/245] tin vip vai lon --- home/asakiyuki/configuration.nix | 1 - home/junko/configuration.nix | 35 +++++++++ host/server/default.nix | 102 +------------------------ host/server/networking.nix | 50 ++++++++++++ host/server/service.nix | 5 -- host/server/services.nix | 9 +++ modules/services/cloudflare-dyndns.nix | 13 ++++ modules/services/fail2ban.nix | 9 +++ modules/services/openssh.nix | 21 +++++ modules/services/pipewire.nix | 13 ++-- 10 files changed, 148 insertions(+), 110 deletions(-) create mode 100644 home/junko/configuration.nix create mode 100644 host/server/networking.nix delete mode 100644 host/server/service.nix create mode 100644 host/server/services.nix create mode 100644 modules/services/cloudflare-dyndns.nix create mode 100644 modules/services/fail2ban.nix create mode 100644 modules/services/openssh.nix diff --git a/home/asakiyuki/configuration.nix b/home/asakiyuki/configuration.nix index 6aa3da3..f9150b1 100644 --- a/home/asakiyuki/configuration.nix +++ b/home/asakiyuki/configuration.nix @@ -3,7 +3,6 @@ libs, config, custom, - pkgs, unstable, ... }: diff --git a/home/junko/configuration.nix b/home/junko/configuration.nix new file mode 100644 index 0000000..197fffd --- /dev/null +++ b/home/junko/configuration.nix @@ -0,0 +1,35 @@ +{ + inputs, + libs, + config, + custom, + unstable, + ... +}: +let + osconfig = config; +in +{ + users.users.junko = { + isNormalUser = true; + }; + + home-manager.users.junko = { + _module.args = { + inherit + inputs + unstable + osconfig + custom + libs + ; + }; + + imports = [ ]; + + home = { + username = "junko"; + stateVersion = "25.11"; + }; + }; +} diff --git a/host/server/default.nix b/host/server/default.nix index a098139..9d77f6b 100644 --- a/host/server/default.nix +++ b/host/server/default.nix @@ -2,109 +2,15 @@ { imports = [ ./programs.nix - ./service.nix + ./services.nix + ./networking.nix (libs.root "/modules/features/system/docker.nix") (libs.root "/modules/features/system/packages.nix") (libs.root "/home/asakiyuki/configuration.nix") + (libs.root "/home/junko/configuration.nix") + (libs.root "/options/system/default.nix") ]; - - environment.systemPackages = with pkgs; [ - git - vim - ]; - - users.users.junko = { - isNormalUser = true; - }; - - services = { - - fail2ban = { - enable = true; - ignoreIP = [ - "192.168.0.0/16" - ]; - }; - - cloudflare-dyndns = { - enable = true; - apiTokenFile = "/home/asakiyuki/.secret/CLOUDFLARE_TOKEN_KEY"; - frequency = "*:0/5"; - proxied = true; - ipv6 = false; - ipv4 = true; - deleteMissing = false; - domains = [ "ddns.asakiyuki.com" ]; - }; - - openssh = { - enable = true; - ports = [ 15523 ]; - authorizedKeysInHomedir = true; - authorizedKeysFiles = [ "/home/asakiyuki/.ssh/authorized_keys" ]; - settings = { - AllowUsers = [ - "asakiyuki" - "junko" - ]; - PasswordAuthentication = true; - KbdInteractiveAuthentication = false; - AllowAgentForwarding = false; - AllowStreamLocalForwarding = false; - X11Forwarding = false; - PermitRootLogin = "no"; - }; - }; - }; - - networking = { - useDHCP = false; - networkmanager.enable = true; - defaultGateway = "192.168.1.1"; - nameservers = [ - "8.8.8.8" - "1.1.1.1" - ]; - - interfaces = { - enp1s0 = { - useDHCP = false; - - ipv4.addresses = [ - { - address = "192.168.1.100"; - prefixLength = 24; - } - ]; - - ipv6.addresses = [ - { - address = "2402:800:62d0:1c26:abcd:1234:5678:9abc"; - prefixLength = 64; - } - ]; - }; - }; - - firewall = { - enable = true; - allowedUDPPorts = [ - 53 - 34778 - ]; - allowedTCPPorts = [ - 80 - 443 - 18581 - 8443 - 15523 - 53 - 583 - 25565 - ]; - }; - }; } diff --git a/host/server/networking.nix b/host/server/networking.nix new file mode 100644 index 0000000..6dd4bfb --- /dev/null +++ b/host/server/networking.nix @@ -0,0 +1,50 @@ +{ ... }: +{ + networking = { + firewall = { + enable = true; + allowedUDPPorts = [ + 53 + 34778 + ]; + allowedTCPPorts = [ + 80 + 443 + 18581 + 8443 + 15523 + 53 + 583 + 25565 + ]; + }; + + useDHCP = false; + networkmanager.enable = true; + + defaultGateway = "192.168.1.1"; + nameservers = [ + "8.8.8.8" + "1.1.1.1" + ]; + + interfaces = { + enp1s0 = { + useDHCP = false; + ipv4.addresses = [ + { + address = "192.168.1.100"; + prefixLength = 24; + } + ]; + + ipv6.addresses = [ + { + address = "2402:800:62d0:1c26:abcd:1234:5678:9abc"; + prefixLength = 64; + } + ]; + }; + }; + }; +} diff --git a/host/server/service.nix b/host/server/service.nix deleted file mode 100644 index b701053..0000000 --- a/host/server/service.nix +++ /dev/null @@ -1,5 +0,0 @@ -{ libs, ... }: [ - imports = [ - (libs.root "/modules/services/adguardhome.nix") - ]; -] \ No newline at end of file diff --git a/host/server/services.nix b/host/server/services.nix new file mode 100644 index 0000000..8bb1137 --- /dev/null +++ b/host/server/services.nix @@ -0,0 +1,9 @@ +{ libs, ... }: +{ + imports = [ + (libs.root "/modules/services/adguardhome.nix") + (libs.root "/modules/services/cloudflare-dyndns.nix") + (libs.root "/modules/services/fail2ban.nix") + (libs.root "/modules/services/openssh.nix") + ]; +} diff --git a/modules/services/cloudflare-dyndns.nix b/modules/services/cloudflare-dyndns.nix new file mode 100644 index 0000000..76d36d2 --- /dev/null +++ b/modules/services/cloudflare-dyndns.nix @@ -0,0 +1,13 @@ +{ ... }: +{ + services.cloudflare-dyndns = { + enable = true; + apiTokenFile = "/home/asakiyuki/.secret/CLOUDFLARE_TOKEN_KEY"; + frequency = "*:0/5"; + proxied = true; + ipv6 = false; + ipv4 = true; + deleteMissing = false; + domains = [ "ddns.asakiyuki.com" ]; + }; +} diff --git a/modules/services/fail2ban.nix b/modules/services/fail2ban.nix new file mode 100644 index 0000000..e5847a1 --- /dev/null +++ b/modules/services/fail2ban.nix @@ -0,0 +1,9 @@ +{ ... }: +{ + security.fail2ban = { + enable = true; + ignoreIP = [ + "192.168.0.0/16" + ]; + }; +} diff --git a/modules/services/openssh.nix b/modules/services/openssh.nix new file mode 100644 index 0000000..ea30230 --- /dev/null +++ b/modules/services/openssh.nix @@ -0,0 +1,21 @@ +{ ... }: +{ + services.openssh = { + enable = true; + ports = [ 15523 ]; + authorizedKeysInHomedir = true; + authorizedKeysFiles = [ "/home/asakiyuki/.ssh/authorized_keys" ]; + settings = { + AllowUsers = [ + "asakiyuki" + "junko" + ]; + PasswordAuthentication = true; + KbdInteractiveAuthentication = false; + AllowAgentForwarding = false; + AllowStreamLocalForwarding = false; + X11Forwarding = false; + PermitRootLogin = "no"; + }; + }; +} diff --git a/modules/services/pipewire.nix b/modules/services/pipewire.nix index 0295aac..95f8f8f 100644 --- a/modules/services/pipewire.nix +++ b/modules/services/pipewire.nix @@ -1,6 +1,7 @@ -{ ... }: { - services.pipewire = { - enable = true; - pulse.enable = true; - }; -} \ No newline at end of file +{ ... }: +{ + services.pipewire = { + enable = true; + pulse.enable = true; + }; +} From 1d97959a149654261c92b00e7a5ac011169cfdf1 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 22:39:19 +0700 Subject: [PATCH 176/245] fix fail2ban not in security --- modules/services/fail2ban.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/fail2ban.nix b/modules/services/fail2ban.nix index e5847a1..3c63bab 100644 --- a/modules/services/fail2ban.nix +++ b/modules/services/fail2ban.nix @@ -1,6 +1,6 @@ { ... }: { - security.fail2ban = { + services.fail2ban = { enable = true; ignoreIP = [ "192.168.0.0/16" From 8b2e1e20294a89bdb2f40b8654fbe6a548230012 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 22:47:29 +0700 Subject: [PATCH 177/245] idk --- devices/home-server/configuration.nix | 4 ---- home/asakiyuki/configuration.nix | 6 +++--- home/asakiyuki/{modules => }/env.nix | 0 home/asakiyuki/{modules => }/files.nix | 0 home/asakiyuki/{modules => }/programs.nix | 0 host/server/default.nix | 5 ++++- host/server/device.nix | 11 +++++++++++ host/server/programs.nix | 7 ++++++- 8 files changed, 24 insertions(+), 9 deletions(-) rename home/asakiyuki/{modules => }/env.nix (100%) rename home/asakiyuki/{modules => }/files.nix (100%) rename home/asakiyuki/{modules => }/programs.nix (100%) create mode 100644 host/server/device.nix diff --git a/devices/home-server/configuration.nix b/devices/home-server/configuration.nix index 4307f9f..5cbd3e5 100644 --- a/devices/home-server/configuration.nix +++ b/devices/home-server/configuration.nix @@ -10,10 +10,6 @@ "flakes" ]; - device = { - flake-name = "home-server"; - }; - nixpkgs.config.allowUnfree = true; boot.loader.systemd-boot.enable = true; diff --git a/home/asakiyuki/configuration.nix b/home/asakiyuki/configuration.nix index f9150b1..4b87595 100644 --- a/home/asakiyuki/configuration.nix +++ b/home/asakiyuki/configuration.nix @@ -26,9 +26,9 @@ in ; }; imports = [ - ./modules/programs.nix - ./modules/files.nix - ./modules/env.nix + ./programs.nix + ./files.nix + ./env.nix ../../modules/features/home/theme.nix ../../options/home/default.nix diff --git a/home/asakiyuki/modules/env.nix b/home/asakiyuki/env.nix similarity index 100% rename from home/asakiyuki/modules/env.nix rename to home/asakiyuki/env.nix diff --git a/home/asakiyuki/modules/files.nix b/home/asakiyuki/files.nix similarity index 100% rename from home/asakiyuki/modules/files.nix rename to home/asakiyuki/files.nix diff --git a/home/asakiyuki/modules/programs.nix b/home/asakiyuki/programs.nix similarity index 100% rename from home/asakiyuki/modules/programs.nix rename to home/asakiyuki/programs.nix diff --git a/host/server/default.nix b/host/server/default.nix index 9d77f6b..916a646 100644 --- a/host/server/default.nix +++ b/host/server/default.nix @@ -1,16 +1,19 @@ -{ libs, pkgs, ... }: +{ libs, ... }: { imports = [ ./programs.nix ./services.nix ./networking.nix + ./default.nix (libs.root "/modules/features/system/docker.nix") (libs.root "/modules/features/system/packages.nix") + (libs.root "/modules/features/system/nix-dl.nix") (libs.root "/home/asakiyuki/configuration.nix") (libs.root "/home/junko/configuration.nix") (libs.root "/options/system/default.nix") + (libs.root "/overlays/nixpkgs.nix") ]; } diff --git a/host/server/device.nix b/host/server/device.nix new file mode 100644 index 0000000..20d4809 --- /dev/null +++ b/host/server/device.nix @@ -0,0 +1,11 @@ +{ ... }: +{ + device = { + flake-name = "home-server"; + + programs = { + fastfetch.enable = true; + starship.enable = true; + }; + }; +} diff --git a/host/server/programs.nix b/host/server/programs.nix index 38219b4..5af6b25 100644 --- a/host/server/programs.nix +++ b/host/server/programs.nix @@ -1,6 +1,11 @@ { ... }: { programs = { - + ffmpeg.enable = true; + nodejs.enable = true; + bun.enable = true; + ntfs3g.enable = true; + python.enable = true; + jdk.enable = true; }; } From 1fbfde308333b4abc0789b7d43b74fa1b51d71c3 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 22:49:19 +0700 Subject: [PATCH 178/245] idk --- host/server/device.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/host/server/device.nix b/host/server/device.nix index 20d4809..9cfdbff 100644 --- a/host/server/device.nix +++ b/host/server/device.nix @@ -3,9 +3,9 @@ device = { flake-name = "home-server"; - programs = { - fastfetch.enable = true; - starship.enable = true; - }; + # programs = { + # fastfetch.enable = true; + # starship.enable = true; + # }; }; } From 14b68ce06e4b4d8eb99037b8a557d1381836176a Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 22:49:47 +0700 Subject: [PATCH 179/245] idk --- devices/home-server/configuration.nix | 2 +- home/asakiyuki/programs.nix | 34 +++++++++++++-------------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/devices/home-server/configuration.nix b/devices/home-server/configuration.nix index 5cbd3e5..3430bd1 100644 --- a/devices/home-server/configuration.nix +++ b/devices/home-server/configuration.nix @@ -1,4 +1,4 @@ -{ pkgs, libs, ... }: +{ libs, ... }: { imports = [ ./hardware-configuration.nix diff --git a/home/asakiyuki/programs.nix b/home/asakiyuki/programs.nix index 24a81f7..77a6c1e 100644 --- a/home/asakiyuki/programs.nix +++ b/home/asakiyuki/programs.nix @@ -1,24 +1,24 @@ { ... }: { imports = [ - (../../../modules/features/home/ghostty.nix) - (../../../modules/features/home/kitty.nix) - (../../../modules/features/home/browsers.nix) - # (../../../modules/features/home/neovide.nix) + ../../../modules/features/home/ghostty.nix + ../../../modules/features/home/kitty.nix + ../../../modules/features/home/browsers.nix + # ../../../modules/features/home/neovide.nix - (../../../modules/features/home/bash.nix) - (../../../modules/features/home/starship.nix) - (../../../modules/features/home/tmux.nix) - (../../../modules/features/home/fastfetch.nix) - (../../../modules/features/home/vscode.nix) - (../../../modules/features/home/obs-studio.nix) - (../../../modules/features/home/xdg.nix) - (../../../modules/features/home/packages.nix) - (../../../modules/features/home/git.nix) + ../../../modules/features/home/bash.nix + ../../../modules/features/home/starship.nix + ../../../modules/features/home/tmux.nix + ../../../modules/features/home/fastfetch.nix + ../../../modules/features/home/vscode.nix + ../../../modules/features/home/obs-studio.nix + ../../../modules/features/home/xdg.nix + ../../../modules/features/home/packages.nix + ../../../modules/features/home/git.nix - (../../../modules/programs/nixvim/_nixvim.nix) - (../../../modules/programs/nixcord/default.nix) - (../../../modules/features/home/niri.nix) - (../../../modules/programs/hyprland/default.nix) + ../../../modules/programs/nixvim/_nixvim.nix + ../../../modules/programs/nixcord/default.nix + ../../../modules/features/home/niri.nix + ../../../modules/programs/hyprland/default.nix ]; } From 80f69ad9eb744d955c10593380ab0fda90574ced Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 22:50:57 +0700 Subject: [PATCH 180/245] idk --- host/server/default.nix | 2 +- host/server/device.nix | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/host/server/default.nix b/host/server/default.nix index 916a646..4a3df8d 100644 --- a/host/server/default.nix +++ b/host/server/default.nix @@ -1,10 +1,10 @@ { libs, ... }: { imports = [ + ./device.nix ./programs.nix ./services.nix ./networking.nix - ./default.nix (libs.root "/modules/features/system/docker.nix") (libs.root "/modules/features/system/packages.nix") diff --git a/host/server/device.nix b/host/server/device.nix index 9cfdbff..20d4809 100644 --- a/host/server/device.nix +++ b/host/server/device.nix @@ -3,9 +3,9 @@ device = { flake-name = "home-server"; - # programs = { - # fastfetch.enable = true; - # starship.enable = true; - # }; + programs = { + fastfetch.enable = true; + starship.enable = true; + }; }; } From 9ce12aeb1dfd5f50705a33152b48bdcbdbf0367b Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 23:03:37 +0700 Subject: [PATCH 181/245] fix invalid imports path --- .vscode/settings.json | 3 - devices/ideapad-slim-5/configuration.nix | 3 - flake.lock | 512 +---------------------- flake.nix | 1 - home/asakiyuki/programs.nix | 34 +- host/desktop/default.nix | 3 + 6 files changed, 33 insertions(+), 523 deletions(-) delete mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 10b1817..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "nixEnvSelector.suggestion": false -} diff --git a/devices/ideapad-slim-5/configuration.nix b/devices/ideapad-slim-5/configuration.nix index ddad59d..7fa0878 100755 --- a/devices/ideapad-slim-5/configuration.nix +++ b/devices/ideapad-slim-5/configuration.nix @@ -9,10 +9,7 @@ ./hardware-configuration.nix ./mount.nix - ../../modules/features/system/upower.nix - (libs.root "/host/desktop/default.nix") - (libs.root "/home/asakiyuki/configuration.nix") ]; networking.hostName = "nixos"; diff --git a/flake.lock b/flake.lock index 2adfa23..d32a79d 100644 --- a/flake.lock +++ b/flake.lock @@ -1,38 +1,5 @@ { "nodes": { - "aquamarine": { - "inputs": { - "hyprutils": [ - "hyprland", - "hyprutils" - ], - "hyprwayland-scanner": [ - "hyprland", - "hyprwayland-scanner" - ], - "nixpkgs": [ - "hyprland", - "nixpkgs" - ], - "systems": [ - "hyprland", - "systems" - ] - }, - "locked": { - "lastModified": 1775558810, - "narHash": "sha256-fy95EdPnqQlpbP8+rk0yWKclWShCUS5VKs6P7/1MF2c=", - "owner": "hyprwm", - "repo": "aquamarine", - "rev": "7371b669b22aa2af980f913fc312a786d2f1abb2", - "type": "github" - }, - "original": { - "owner": "hyprwm", - "repo": "aquamarine", - "type": "github" - } - }, "dolphin-overlay": { "inputs": { "nixpkgs": "nixpkgs" @@ -52,22 +19,6 @@ } }, "flake-compat": { - "flake": false, - "locked": { - "lastModified": 1767039857, - "narHash": "sha256-vNpUSpF5Nuw8xvDLj2KCwwksIbjua2LZCqhV1LNRDns=", - "owner": "NixOS", - "repo": "flake-compat", - "rev": "5edf11c44bc78a0d334f6334cdaf7d60d732daab", - "type": "github" - }, - "original": { - "owner": "NixOS", - "repo": "flake-compat", - "type": "github" - } - }, - "flake-compat_2": { "locked": { "lastModified": 1733328505, "narHash": "sha256-NeCCThCEP3eCl2l/+27kNNK7QrwZB1IJCrXfrbv5oqU=", @@ -140,7 +91,7 @@ }, "flake-utils_2": { "inputs": { - "systems": "systems_3" + "systems": "systems_2" }, "locked": { "lastModified": 1731533236, @@ -156,28 +107,6 @@ "type": "github" } }, - "gitignore": { - "inputs": { - "nixpkgs": [ - "hyprland", - "pre-commit-hooks", - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1709087332, - "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=", - "owner": "hercules-ci", - "repo": "gitignore.nix", - "rev": "637db329424fd7e46cf4185293b9cc8c88c95394", - "type": "github" - }, - "original": { - "owner": "hercules-ci", - "repo": "gitignore.nix", - "type": "github" - } - }, "home-manager": { "inputs": { "nixpkgs": [ @@ -219,328 +148,9 @@ "type": "github" } }, - "hyprcursor": { - "inputs": { - "hyprlang": [ - "hyprland", - "hyprlang" - ], - "nixpkgs": [ - "hyprland", - "nixpkgs" - ], - "systems": [ - "hyprland", - "systems" - ] - }, - "locked": { - "lastModified": 1772461003, - "narHash": "sha256-pVICsV7FtcEeVwg5y/LFh3XFUkVJninm/P1j/JHzEbM=", - "owner": "hyprwm", - "repo": "hyprcursor", - "rev": "b62396457b9cfe2ebf24fe05404b09d2a40f8ed7", - "type": "github" - }, - "original": { - "owner": "hyprwm", - "repo": "hyprcursor", - "type": "github" - } - }, - "hyprgraphics": { - "inputs": { - "hyprutils": [ - "hyprland", - "hyprutils" - ], - "nixpkgs": [ - "hyprland", - "nixpkgs" - ], - "systems": [ - "hyprland", - "systems" - ] - }, - "locked": { - "lastModified": 1775496928, - "narHash": "sha256-Ds759WU03mGWtu3I43J+5GF5Ni8TvF+GYQUFD+fVeMo=", - "owner": "hyprwm", - "repo": "hyprgraphics", - "rev": "cf95d93d17baa18f1d9b016b3afe27f820521a6e", - "type": "github" - }, - "original": { - "owner": "hyprwm", - "repo": "hyprgraphics", - "type": "github" - } - }, - "hyprland": { - "inputs": { - "aquamarine": "aquamarine", - "hyprcursor": "hyprcursor", - "hyprgraphics": "hyprgraphics", - "hyprland-guiutils": "hyprland-guiutils", - "hyprland-protocols": "hyprland-protocols", - "hyprlang": "hyprlang", - "hyprutils": "hyprutils", - "hyprwayland-scanner": "hyprwayland-scanner", - "hyprwire": "hyprwire", - "nixpkgs": "nixpkgs_3", - "pre-commit-hooks": "pre-commit-hooks", - "systems": "systems_2", - "xdph": "xdph" - }, - "locked": { - "lastModified": 1776013496, - "narHash": "sha256-zSD9MqFjGAP3QpqahwLtNrGgddIL8XPYFuGoyE7ile0=", - "owner": "hyprwm", - "repo": "Hyprland", - "rev": "d67c4e2b7f1e381b24becbb45b8e8471fcdda163", - "type": "github" - }, - "original": { - "owner": "hyprwm", - "repo": "Hyprland", - "type": "github" - } - }, - "hyprland-guiutils": { - "inputs": { - "aquamarine": [ - "hyprland", - "aquamarine" - ], - "hyprgraphics": [ - "hyprland", - "hyprgraphics" - ], - "hyprlang": [ - "hyprland", - "hyprlang" - ], - "hyprtoolkit": "hyprtoolkit", - "hyprutils": [ - "hyprland", - "hyprutils" - ], - "hyprwayland-scanner": [ - "hyprland", - "hyprwayland-scanner" - ], - "nixpkgs": [ - "hyprland", - "nixpkgs" - ], - "systems": [ - "hyprland", - "systems" - ] - }, - "locked": { - "lastModified": 1774710575, - "narHash": "sha256-p7Rcw13+gA4Z9EI3oGYe3neQ3FqyOOfZCleBTfhJ95Q=", - "owner": "hyprwm", - "repo": "hyprland-guiutils", - "rev": "0703df899520001209646246bef63358c9881e36", - "type": "github" - }, - "original": { - "owner": "hyprwm", - "repo": "hyprland-guiutils", - "type": "github" - } - }, - "hyprland-protocols": { - "inputs": { - "nixpkgs": [ - "hyprland", - "nixpkgs" - ], - "systems": [ - "hyprland", - "systems" - ] - }, - "locked": { - "lastModified": 1772460177, - "narHash": "sha256-/6G/MsPvtn7bc4Y32pserBT/Z4SUUdBd4XYJpOEKVR4=", - "owner": "hyprwm", - "repo": "hyprland-protocols", - "rev": "1cb6db5fd6bb8aee419f4457402fa18293ace917", - "type": "github" - }, - "original": { - "owner": "hyprwm", - "repo": "hyprland-protocols", - "type": "github" - } - }, - "hyprlang": { - "inputs": { - "hyprutils": [ - "hyprland", - "hyprutils" - ], - "nixpkgs": [ - "hyprland", - "nixpkgs" - ], - "systems": [ - "hyprland", - "systems" - ] - }, - "locked": { - "lastModified": 1772459629, - "narHash": "sha256-/iwvNUYShmmnwmz/czEUh6+0eF5vCMv0xtDW0STPIuM=", - "owner": "hyprwm", - "repo": "hyprlang", - "rev": "7615ee388de18239a4ab1400946f3d0e498a8186", - "type": "github" - }, - "original": { - "owner": "hyprwm", - "repo": "hyprlang", - "type": "github" - } - }, - "hyprtoolkit": { - "inputs": { - "aquamarine": [ - "hyprland", - "hyprland-guiutils", - "aquamarine" - ], - "hyprgraphics": [ - "hyprland", - "hyprland-guiutils", - "hyprgraphics" - ], - "hyprlang": [ - "hyprland", - "hyprland-guiutils", - "hyprlang" - ], - "hyprutils": [ - "hyprland", - "hyprland-guiutils", - "hyprutils" - ], - "hyprwayland-scanner": [ - "hyprland", - "hyprland-guiutils", - "hyprwayland-scanner" - ], - "nixpkgs": [ - "hyprland", - "hyprland-guiutils", - "nixpkgs" - ], - "systems": [ - "hyprland", - "hyprland-guiutils", - "systems" - ] - }, - "locked": { - "lastModified": 1772462885, - "narHash": "sha256-5pHXrQK9zasMnIo6yME6EOXmWGFMSnCITcfKshhKJ9I=", - "owner": "hyprwm", - "repo": "hyprtoolkit", - "rev": "9af245a69fa6b286b88ddfc340afd288e00a6998", - "type": "github" - }, - "original": { - "owner": "hyprwm", - "repo": "hyprtoolkit", - "type": "github" - } - }, - "hyprutils": { - "inputs": { - "nixpkgs": [ - "hyprland", - "nixpkgs" - ], - "systems": [ - "hyprland", - "systems" - ] - }, - "locked": { - "lastModified": 1774911391, - "narHash": "sha256-c4YVwO33Mmw+FIV8E0u3atJZagHvGTJ9Jai6RtiB8rE=", - "owner": "hyprwm", - "repo": "hyprutils", - "rev": "e6caa3d4d1427eedbdf556cf4ceb70f2d9c0b56d", - "type": "github" - }, - "original": { - "owner": "hyprwm", - "repo": "hyprutils", - "type": "github" - } - }, - "hyprwayland-scanner": { - "inputs": { - "nixpkgs": [ - "hyprland", - "nixpkgs" - ], - "systems": [ - "hyprland", - "systems" - ] - }, - "locked": { - "lastModified": 1772459835, - "narHash": "sha256-978jRz/y/9TKmZb/qD4lEYHCQGHpEXGqy+8X2lFZsak=", - "owner": "hyprwm", - "repo": "hyprwayland-scanner", - "rev": "0a692d4a645165eebd65f109146b8861e3a925e7", - "type": "github" - }, - "original": { - "owner": "hyprwm", - "repo": "hyprwayland-scanner", - "type": "github" - } - }, - "hyprwire": { - "inputs": { - "hyprutils": [ - "hyprland", - "hyprutils" - ], - "nixpkgs": [ - "hyprland", - "nixpkgs" - ], - "systems": [ - "hyprland", - "systems" - ] - }, - "locked": { - "lastModified": 1775414057, - "narHash": "sha256-mDpHnf+MkdOxEqIM1TnckYYh9p1SXR8B3KQfNZ12M8s=", - "owner": "hyprwm", - "repo": "hyprwire", - "rev": "86012ee01b0fdd8bf3101ef38816f2efbee42490", - "type": "github" - }, - "original": { - "owner": "hyprwm", - "repo": "hyprwire", - "type": "github" - } - }, "hytale-launcher": { "inputs": { - "nixpkgs": "nixpkgs_4" + "nixpkgs": "nixpkgs_3" }, "locked": { "lastModified": 1775840082, @@ -588,7 +198,7 @@ "inputs": { "niri-stable": "niri-stable", "niri-unstable": "niri-unstable", - "nixpkgs": "nixpkgs_5", + "nixpkgs": "nixpkgs_4", "nixpkgs-stable": "nixpkgs-stable", "xwayland-satellite-stable": "xwayland-satellite-stable", "xwayland-satellite-unstable": "xwayland-satellite-unstable" @@ -662,17 +272,17 @@ }, "nixcord": { "inputs": { - "flake-compat": "flake-compat_2", + "flake-compat": "flake-compat", "flake-parts": "flake-parts", - "nixpkgs": "nixpkgs_6", + "nixpkgs": "nixpkgs_5", "nixpkgs-nixcord": "nixpkgs-nixcord" }, "locked": { - "lastModified": 1775902385, - "narHash": "sha256-Y3hDPDxelMYssDK+z1REuhh1I9ykuPGo2IMpnF0muy8=", + "lastModified": 1776024431, + "narHash": "sha256-FALazpSmCflBfFAhDRaS0mK5wITcW2VQq8zchcx7/lk=", "owner": "FlameFlag", "repo": "nixcord", - "rev": "ebae44d65ab37fccd66e03db7d75fc434e2069f6", + "rev": "14e6c9ea6a359b81663953af53f1d943c0d29f57", "type": "github" }, "original": { @@ -792,22 +402,6 @@ } }, "nixpkgs_4": { - "locked": { - "lastModified": 1775423009, - "narHash": "sha256-vPKLpjhIVWdDrfiUM8atW6YkIggCEKdSAlJPzzhkQlw=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "68d8aa3d661f0e6bd5862291b5bb263b2a6595c9", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs_5": { "locked": { "lastModified": 1775710090, "narHash": "sha256-ar3rofg+awPB8QXDaFJhJ2jJhu+KqN/PRCXeyuXR76E=", @@ -823,7 +417,7 @@ "type": "github" } }, - "nixpkgs_6": { + "nixpkgs_5": { "locked": { "lastModified": 1775595990, "narHash": "sha256-OEf7YqhF9IjJFYZJyuhAypgU+VsRB5lD4DuiMws5Ltc=", @@ -839,7 +433,7 @@ "type": "github" } }, - "nixpkgs_7": { + "nixpkgs_6": { "locked": { "lastModified": 1775811116, "narHash": "sha256-t+HZK42pB6N+i5RGbuy7Xluez/VvWbembBdvzsc23Ss=", @@ -862,7 +456,7 @@ "nixpkgs" ], "nuschtosSearch": "nuschtosSearch", - "systems": "systems_4" + "systems": "systems_3" }, "locked": { "lastModified": 1769049374, @@ -902,41 +496,17 @@ "type": "github" } }, - "pre-commit-hooks": { - "inputs": { - "flake-compat": "flake-compat", - "gitignore": "gitignore", - "nixpkgs": [ - "hyprland", - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1775036584, - "narHash": "sha256-zW0lyy7ZNNT/x8JhzFHBsP2IPx7ATZIPai4FJj12BgU=", - "owner": "cachix", - "repo": "git-hooks.nix", - "rev": "4e0eb042b67d863b1b34b3f64d52ceb9cd926735", - "type": "github" - }, - "original": { - "owner": "cachix", - "repo": "git-hooks.nix", - "type": "github" - } - }, "root": { "inputs": { "dolphin-overlay": "dolphin-overlay", "home-manager": "home-manager", "honkai-railway-grub-theme": "honkai-railway-grub-theme", - "hyprland": "hyprland", "hytale-launcher": "hytale-launcher", "niri": "niri", "nix-index-database": "nix-index-database", "nixcord": "nixcord", "nixos-hardware": "nixos-hardware", - "nixpkgs": "nixpkgs_7", + "nixpkgs": "nixpkgs_6", "nixvim": "nixvim", "unstablepkgs": "unstablepkgs" } @@ -957,21 +527,6 @@ } }, "systems_2": { - "locked": { - "lastModified": 1689347949, - "narHash": "sha256-12tWmuL2zgBgZkdoB6qXZsgJEH9LR3oUgpaQq2RbI80=", - "owner": "nix-systems", - "repo": "default-linux", - "rev": "31732fcf5e8fea42e59c2488ad31a0e651500f68", - "type": "github" - }, - "original": { - "owner": "nix-systems", - "repo": "default-linux", - "type": "github" - } - }, - "systems_3": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -986,7 +541,7 @@ "type": "github" } }, - "systems_4": { + "systems_3": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -1017,47 +572,6 @@ "type": "github" } }, - "xdph": { - "inputs": { - "hyprland-protocols": [ - "hyprland", - "hyprland-protocols" - ], - "hyprlang": [ - "hyprland", - "hyprlang" - ], - "hyprutils": [ - "hyprland", - "hyprutils" - ], - "hyprwayland-scanner": [ - "hyprland", - "hyprwayland-scanner" - ], - "nixpkgs": [ - "hyprland", - "nixpkgs" - ], - "systems": [ - "hyprland", - "systems" - ] - }, - "locked": { - "lastModified": 1773601989, - "narHash": "sha256-2tJf/CQoHApoIudxHeJye+0Ii7scR0Yyi7pNiWk0Hn8=", - "owner": "hyprwm", - "repo": "xdg-desktop-portal-hyprland", - "rev": "a9b862d1aa000a676d310cc62d249f7ad726233d", - "type": "github" - }, - "original": { - "owner": "hyprwm", - "repo": "xdg-desktop-portal-hyprland", - "type": "github" - } - }, "xwayland-satellite-stable": { "flake": false, "locked": { diff --git a/flake.nix b/flake.nix index 9a7b34c..e68d653 100644 --- a/flake.nix +++ b/flake.nix @@ -8,7 +8,6 @@ hytale-launcher.url = "github:zarilion/hytale-launcher-nix"; niri.url = "github:sodiboo/niri-flake"; - hyprland.url = "github:hyprwm/Hyprland"; nixcord.url = "github:FlameFlag/nixcord"; dolphin-overlay.url = "github:rumboon/dolphin-overlay"; diff --git a/home/asakiyuki/programs.nix b/home/asakiyuki/programs.nix index 77a6c1e..98e5373 100644 --- a/home/asakiyuki/programs.nix +++ b/home/asakiyuki/programs.nix @@ -1,24 +1,24 @@ { ... }: { imports = [ - ../../../modules/features/home/ghostty.nix - ../../../modules/features/home/kitty.nix - ../../../modules/features/home/browsers.nix - # ../../../modules/features/home/neovide.nix + ../../modules/features/home/ghostty.nix + ../../modules/features/home/kitty.nix + ../../modules/features/home/browsers.nix + # ../../modules/features/home/neovide.nix - ../../../modules/features/home/bash.nix - ../../../modules/features/home/starship.nix - ../../../modules/features/home/tmux.nix - ../../../modules/features/home/fastfetch.nix - ../../../modules/features/home/vscode.nix - ../../../modules/features/home/obs-studio.nix - ../../../modules/features/home/xdg.nix - ../../../modules/features/home/packages.nix - ../../../modules/features/home/git.nix + ../../modules/features/home/bash.nix + ../../modules/features/home/starship.nix + ../../modules/features/home/tmux.nix + ../../modules/features/home/fastfetch.nix + ../../modules/features/home/vscode.nix + ../../modules/features/home/obs-studio.nix + ../../modules/features/home/xdg.nix + ../../modules/features/home/packages.nix + ../../modules/features/home/git.nix - ../../../modules/programs/nixvim/_nixvim.nix - ../../../modules/programs/nixcord/default.nix - ../../../modules/features/home/niri.nix - ../../../modules/programs/hyprland/default.nix + ../../modules/programs/nixvim/_nixvim.nix + ../../modules/programs/nixcord/default.nix + ../../modules/features/home/niri.nix + ../../modules/programs/hyprland/default.nix ]; } diff --git a/host/desktop/default.nix b/host/desktop/default.nix index f827a0b..e19fd37 100644 --- a/host/desktop/default.nix +++ b/host/desktop/default.nix @@ -31,6 +31,9 @@ (libs.root "/modules/features/system/dconf.nix") (libs.root "/modules/features/system/cloudflare.nix") (libs.root "/modules/features/system/docker.nix") + (libs.root "/modules/features/system/upower.nix") + + (libs.root "/home/asakiyuki/configuration.nix") (libs.root "/modules/services/pipewire.nix") (libs.root "/modules/home-manager.nix") From 7cde82d59657ed4b5ac20d0bc1dc6e6fe969bf2d Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 23:13:41 +0700 Subject: [PATCH 182/245] idk --- home/asakiyuki/programs.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/asakiyuki/programs.nix b/home/asakiyuki/programs.nix index 98e5373..ff6d425 100644 --- a/home/asakiyuki/programs.nix +++ b/home/asakiyuki/programs.nix @@ -15,7 +15,7 @@ ../../modules/features/home/xdg.nix ../../modules/features/home/packages.nix ../../modules/features/home/git.nix - + clea ../../modules/programs/nixvim/_nixvim.nix ../../modules/programs/nixcord/default.nix ../../modules/features/home/niri.nix From 7e17e04a9afb981afdfd2ae75e3ec2ed02e3c7ce Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 23:14:39 +0700 Subject: [PATCH 183/245] idk --- home/asakiyuki/programs.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/asakiyuki/programs.nix b/home/asakiyuki/programs.nix index ff6d425..98e5373 100644 --- a/home/asakiyuki/programs.nix +++ b/home/asakiyuki/programs.nix @@ -15,7 +15,7 @@ ../../modules/features/home/xdg.nix ../../modules/features/home/packages.nix ../../modules/features/home/git.nix - clea + ../../modules/programs/nixvim/_nixvim.nix ../../modules/programs/nixcord/default.nix ../../modules/features/home/niri.nix From 5a5276ca8d1b31df8250f1e9a26a7e1fda672e57 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 23:17:53 +0700 Subject: [PATCH 184/245] add lutris --- host/desktop/programs.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/host/desktop/programs.nix b/host/desktop/programs.nix index 129c18b..756f4d1 100644 --- a/host/desktop/programs.nix +++ b/host/desktop/programs.nix @@ -20,6 +20,7 @@ }; home-manager.users.asakiyuki.programs = { + lutris.enable = true; hyprshot.enable = true; catppuccin.enable = true; antigravity.enable = true; From 8454cd18b3cf662de14e6eb3ce6c6a41da577ae0 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 14 Apr 2026 00:37:36 +0700 Subject: [PATCH 185/245] remove dot-env file --- devices/ideapad-slim-5/configuration.nix | 6 ++++++ home/asakiyuki/env.nix | 5 ----- host/desktop/default.nix | 4 +++- 3 files changed, 9 insertions(+), 6 deletions(-) delete mode 100644 home/asakiyuki/env.nix diff --git a/devices/ideapad-slim-5/configuration.nix b/devices/ideapad-slim-5/configuration.nix index 7fa0878..9d57529 100755 --- a/devices/ideapad-slim-5/configuration.nix +++ b/devices/ideapad-slim-5/configuration.nix @@ -31,6 +31,12 @@ "flakes" ]; + home-manager.users.asakiyuki.home = { + sessionVariables = { + QML_IMPORT_PATH = "/run/current-system/sw/lib/qt-6/qml"; + }; + }; + boot.kernelPackages = pkgs.linuxPackages_latest; boot.extraModulePackages = [ pkgs.linuxPackages_latest.zenpower ]; system.stateVersion = "25.11"; diff --git a/home/asakiyuki/env.nix b/home/asakiyuki/env.nix deleted file mode 100644 index 5a2010e..0000000 --- a/home/asakiyuki/env.nix +++ /dev/null @@ -1,5 +0,0 @@ -{ ... }: { - home.sessionVariables = { - QML_IMPORT_PATH = "/run/current-system/sw/lib/qt-6/qml"; - }; -} \ No newline at end of file diff --git a/host/desktop/default.nix b/host/desktop/default.nix index e19fd37..9d557f6 100644 --- a/host/desktop/default.nix +++ b/host/desktop/default.nix @@ -42,12 +42,14 @@ (libs.root "/overlays/nixpkgs.nix") ]; - home-manager.users.asakiyuki.home.pointerCursor = + home-manager.users.asakiyuki = { + home.pointerCursor = (custom.cursors { name = config.device.cursors; size = 48; }) { pkgs = pkgs; }; + }; xdg.menus.enable = true; services.dbus.enable = true; From f940a235f094b036a254a3933c710b3bb4b835aa Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 14 Apr 2026 00:39:42 +0700 Subject: [PATCH 186/245] add .vscode --- .vscode/settings.json | 3 +++ home/asakiyuki/configuration.nix | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..10b1817 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "nixEnvSelector.suggestion": false +} diff --git a/home/asakiyuki/configuration.nix b/home/asakiyuki/configuration.nix index 4b87595..3c668f6 100644 --- a/home/asakiyuki/configuration.nix +++ b/home/asakiyuki/configuration.nix @@ -28,7 +28,6 @@ in imports = [ ./programs.nix ./files.nix - ./env.nix ../../modules/features/home/theme.nix ../../options/home/default.nix From a47826b7c286e083d5ab9e62236014ab76afbebc Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 14 Apr 2026 01:15:18 +0700 Subject: [PATCH 187/245] format all files --- devices/home-server/configuration.nix | 3 +- .../home-server/hardware-configuration.nix | 15 +- devices/ideapad-slim-5/configuration.nix | 10 +- .../ideapad-slim-5/hardware-configuration.nix | 45 +++--- devices/ideapad-slim-5/mount.nix | 44 +++--- flake.nix | 85 +++++----- home/asakiyuki/configuration.nix | 9 +- home/asakiyuki/files.nix | 55 +++---- home/asakiyuki/programs.nix | 3 +- home/junko/configuration.nix | 8 +- host/desktop/default.nix | 15 +- host/desktop/device.nix | 12 +- host/desktop/programs.nix | 5 +- host/server/default.nix | 3 +- host/server/device.nix | 3 +- host/server/networking.nix | 3 +- host/server/programs.nix | 3 +- host/server/services.nix | 3 +- libs/default.nix | 6 +- modules/features/home/bash.nix | 123 ++++++++------- modules/features/home/browsers.nix | 9 +- modules/features/home/fastfetch.nix | 6 +- modules/features/home/ghostty.nix | 89 ++++++----- modules/features/home/git.nix | 32 ++-- modules/features/home/kitty.nix | 149 +++++++++--------- modules/features/home/neovide.nix | 14 +- modules/features/home/niri.nix | 24 +-- modules/features/home/obs-studio.nix | 14 +- modules/features/home/packages.nix | 47 +++--- modules/features/home/starship.nix | 6 +- modules/features/home/theme.nix | 70 ++++---- modules/features/home/tmux.nix | 13 +- modules/features/home/vscode.nix | 3 +- modules/features/home/xdg.nix | 31 ++-- modules/features/system/boot.nix | 47 +++--- modules/features/system/cloudflare.nix | 10 +- modules/features/system/dconf.nix | 17 +- modules/features/system/docker.nix | 3 +- modules/features/system/flatpak.nix | 14 +- modules/features/system/gdm.nix | 11 +- modules/features/system/gnome.nix | 14 +- modules/features/system/hyprland.nix | 14 +- modules/features/system/input-method.nix | 20 +-- modules/features/system/kde-plasma.nix | 16 +- modules/features/system/niri.nix | 12 +- modules/features/system/nix-dl.nix | 28 ++-- modules/features/system/packages.nix | 15 +- modules/features/system/sddm.nix | 49 +++--- modules/features/system/steam.nix | 14 +- modules/features/system/udisks2.nix | 10 +- modules/features/system/upower.nix | 10 +- modules/features/system/waydroid.nix | 23 +-- modules/fonts.nix | 8 +- modules/hardware/bluetooth.nix | 6 +- modules/hardware/default.nix | 11 +- modules/home-manager.nix | 14 +- modules/programs/hyprland/default.nix | 6 +- .../programs/hyprland/settings/default.nix | 4 +- modules/programs/hyprland/settings/exec.nix | 4 +- modules/programs/hyprland/settings/input.nix | 3 +- .../programs/hyprland/settings/key-bind.nix | 109 +++++++------ modules/programs/hyprland/settings/theme.nix | 114 +++++++------- .../hyprland/settings/window-rules.nix | 14 +- modules/programs/nixcord/default.nix | 10 +- modules/programs/nixvim/_nixvim.nix | 3 +- modules/programs/nixvim/default.nix | 4 +- modules/programs/nixvim/extra-packages.nix | 3 +- modules/programs/nixvim/keymaps/_keymaps.nix | 6 +- modules/programs/nixvim/keymaps/barbar.nix | 12 +- .../programs/nixvim/keymaps/toggleterm.nix | 3 +- modules/programs/nixvim/lua/_lua.nix | 4 +- .../programs/nixvim/plugins/_extraPlugins.nix | 26 ++- modules/programs/nixvim/plugins/_plugins.nix | 3 +- modules/programs/nixvim/plugins/cmp.nix | 44 +++--- .../programs/nixvim/plugins/conform-nvim.nix | 17 +- .../nixvim/plugins/extras/mini-icons.nix | 7 +- .../nixvim/plugins/extras/neocord.nix | 7 +- modules/programs/nixvim/plugins/lint.nix | 3 +- modules/programs/nixvim/plugins/lsp.nix | 3 +- modules/programs/nixvim/plugins/lspkind.nix | 6 +- modules/programs/nixvim/plugins/nvimtree.nix | 8 +- modules/programs/nixvim/plugins/which-key.nix | 3 +- modules/services/adguardhome.nix | 3 +- modules/services/cloudflare-dyndns.nix | 5 +- modules/services/fail2ban.nix | 3 +- modules/services/openssh.nix | 7 +- modules/services/pipewire.nix | 3 +- options/home/default.nix | 7 +- options/home/programs.nix | 34 ++-- options/system/default.nix | 3 +- options/system/environment.nix | 3 +- options/system/file.nix | 11 +- options/system/hardware.nix | 10 +- options/system/programs.nix | 25 +-- overlays/nixpkgs.nix | 12 +- packages/bun.nix | 2 +- packages/cage-xtmapper-0.1.5.nix | 76 +++++---- packages/cage-xtmapper-0.2.0.nix | 76 +++++---- packages/catppuccin-obs.nix | 3 +- packages/custom-cursors.nix | 53 ++++--- packages/default.nix | 19 ++- 101 files changed, 1073 insertions(+), 1034 deletions(-) diff --git a/devices/home-server/configuration.nix b/devices/home-server/configuration.nix index 3430bd1..98e45be 100644 --- a/devices/home-server/configuration.nix +++ b/devices/home-server/configuration.nix @@ -1,5 +1,4 @@ -{ libs, ... }: -{ +{libs, ...}: { imports = [ ./hardware-configuration.nix (libs.root "/host/server/default.nix") diff --git a/devices/home-server/hardware-configuration.nix b/devices/home-server/hardware-configuration.nix index 8d19e80..34620a6 100644 --- a/devices/home-server/hardware-configuration.nix +++ b/devices/home-server/hardware-configuration.nix @@ -4,13 +4,10 @@ { config, lib, - pkgs, modulesPath, ... -}: - -{ - imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; +}: { + imports = [(modulesPath + "/installer/scan/not-detected.nix")]; boot.initrd.availableKernelModules = [ "xhci_pci" @@ -19,9 +16,9 @@ "usb_storage" "sd_mod" ]; - boot.initrd.kernelModules = [ ]; - boot.kernelModules = [ "kvm-intel" ]; - boot.extraModulePackages = [ ]; + boot.initrd.kernelModules = []; + boot.kernelModules = ["kvm-intel"]; + boot.extraModulePackages = []; fileSystems = { "/" = { @@ -35,7 +32,7 @@ }; swapDevices = [ - { device = "/dev/disk/by-uuid/cfa7f30f-f08a-4400-babe-41357586a6a0"; } + {device = "/dev/disk/by-uuid/cfa7f30f-f08a-4400-babe-41357586a6a0";} ]; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; diff --git a/devices/ideapad-slim-5/configuration.nix b/devices/ideapad-slim-5/configuration.nix index 9d57529..c8bd10c 100755 --- a/devices/ideapad-slim-5/configuration.nix +++ b/devices/ideapad-slim-5/configuration.nix @@ -1,10 +1,8 @@ { - lib, libs, pkgs, ... -}: -{ +}: { imports = [ ./hardware-configuration.nix ./mount.nix @@ -18,8 +16,8 @@ nixpkgs.config.allowUnfree = true; - boot.kernelParams = [ "amd_pstate=active" ]; - boot.kernelModules = [ "ideapad_laptop" ]; + boot.kernelParams = ["amd_pstate=active"]; + boot.kernelModules = ["ideapad_laptop"]; services.power-profiles-daemon.enable = true; environment.systemPackages = with pkgs; [ lm_sensors @@ -38,6 +36,6 @@ }; boot.kernelPackages = pkgs.linuxPackages_latest; - boot.extraModulePackages = [ pkgs.linuxPackages_latest.zenpower ]; + boot.extraModulePackages = [pkgs.linuxPackages_latest.zenpower]; system.stateVersion = "25.11"; } diff --git a/devices/ideapad-slim-5/hardware-configuration.nix b/devices/ideapad-slim-5/hardware-configuration.nix index a1eee23..4c69537 100755 --- a/devices/ideapad-slim-5/hardware-configuration.nix +++ b/devices/ideapad-slim-5/hardware-configuration.nix @@ -1,32 +1,35 @@ # Do not modify this file! It was generated by ‘nixos-generate-config’ # and may be overwritten by future invocations. Please make changes # to /etc/nixos/configuration.nix instead. -{ config, lib, pkgs, modulesPath, ... }: - { - imports = - [ (modulesPath + "/installer/scan/not-detected.nix") - ]; + config, + lib, + modulesPath, + ... +}: { + imports = [ + (modulesPath + "/installer/scan/not-detected.nix") + ]; - boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usb_storage" "usbhid" "sd_mod" "sdhci_pci" ]; - boot.initrd.kernelModules = [ ]; - boot.kernelModules = [ "kvm-amd" ]; - boot.extraModulePackages = [ ]; + boot.initrd.availableKernelModules = ["nvme" "xhci_pci" "usb_storage" "usbhid" "sd_mod" "sdhci_pci"]; + boot.initrd.kernelModules = []; + boot.kernelModules = ["kvm-amd"]; + boot.extraModulePackages = []; - fileSystems."/" = - { device = "/dev/disk/by-uuid/85ab0f38-b6e7-4046-a33b-ce7b9812b959"; - fsType = "ext4"; - }; + fileSystems."/" = { + device = "/dev/disk/by-uuid/85ab0f38-b6e7-4046-a33b-ce7b9812b959"; + fsType = "ext4"; + }; - fileSystems."/boot" = - { device = "/dev/disk/by-uuid/2221-C55B"; - fsType = "vfat"; - options = [ "fmask=0022" "dmask=0022" ]; - }; + fileSystems."/boot" = { + device = "/dev/disk/by-uuid/2221-C55B"; + fsType = "vfat"; + options = ["fmask=0022" "dmask=0022"]; + }; - swapDevices = - [ { device = "/dev/disk/by-uuid/20e229eb-f32e-4369-be96-25275ebc8ae3"; } - ]; + swapDevices = [ + {device = "/dev/disk/by-uuid/20e229eb-f32e-4369-be96-25275ebc8ae3";} + ]; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; diff --git a/devices/ideapad-slim-5/mount.nix b/devices/ideapad-slim-5/mount.nix index 303f838..4c85d22 100644 --- a/devices/ideapad-slim-5/mount.nix +++ b/devices/ideapad-slim-5/mount.nix @@ -1,23 +1,23 @@ -{ ... }: { - fileSystems = { - "/mnt/windows" = { - device = "/dev/disk/by-uuid/0000294D000006E6"; - fsType = "ntfs-3g"; - options = [ - "rw" - "uid=1000" - "gid=100" - "umask=022" - ]; - }; - "/mnt/waydroid" = { - device = "/home/asakiyuki/.local/share/waydroid/data/media/0"; - fsType = "fuse.bindfs"; - options = [ - "mirror=1000" - "xattr-none" - "chmod-ignore" - ]; - }; +{...}: { + fileSystems = { + "/mnt/windows" = { + device = "/dev/disk/by-uuid/0000294D000006E6"; + fsType = "ntfs-3g"; + options = [ + "rw" + "uid=1000" + "gid=100" + "umask=022" + ]; }; -} \ No newline at end of file + "/mnt/waydroid" = { + device = "/home/asakiyuki/.local/share/waydroid/data/media/0"; + fsType = "fuse.bindfs"; + options = [ + "mirror=1000" + "xattr-none" + "chmod-ignore" + ]; + }; + }; +} diff --git a/flake.nix b/flake.nix index e68d653..cff00bd 100644 --- a/flake.nix +++ b/flake.nix @@ -29,53 +29,50 @@ }; }; - outputs = - { - self, - nixpkgs, - unstablepkgs, - ... - }@inputs: - let - libs = import ./libs/default.nix inputs; - custom = import ./packages/default.nix inputs; - unstable = import unstablepkgs { + outputs = { + self, + nixpkgs, + unstablepkgs, + ... + } @ inputs: let + libs = import ./libs/default.nix inputs; + custom = import ./packages/default.nix inputs; + unstable = import unstablepkgs { + system = "x86_64-linux"; + config.allowUnfree = true; + }; + + specialArgs = { + inherit + self + custom + libs + unstable + inputs + ; + }; + in { + nixosConfigurations = { + ideapad-slim-5 = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; - config.allowUnfree = true; + specialArgs = specialArgs; + modules = [ + inputs.nixos-hardware.nixosModules.lenovo-ideapad-slim-5 + inputs.nix-index-database.nixosModules.default + inputs.home-manager.nixosModules.default + (libs.root "/devices/ideapad-slim-5/configuration.nix") + ]; }; - specialArgs = { - inherit - self - custom - libs - unstable - inputs - ; - }; - in - { - nixosConfigurations = { - ideapad-slim-5 = nixpkgs.lib.nixosSystem { - system = "x86_64-linux"; - specialArgs = specialArgs; - modules = [ - inputs.nixos-hardware.nixosModules.lenovo-ideapad-slim-5 - inputs.nix-index-database.nixosModules.default - inputs.home-manager.nixosModules.default - (libs.root "/devices/ideapad-slim-5/configuration.nix") - ]; - }; - - home-server = nixpkgs.lib.nixosSystem { - system = "x86_64-linux"; - specialArgs = specialArgs; - modules = [ - inputs.nix-index-database.nixosModules.default - inputs.home-manager.nixosModules.default - (libs.root "/devices/home-server/configuration.nix") - ]; - }; + home-server = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + specialArgs = specialArgs; + modules = [ + inputs.nix-index-database.nixosModules.default + inputs.home-manager.nixosModules.default + (libs.root "/devices/home-server/configuration.nix") + ]; }; }; + }; } diff --git a/home/asakiyuki/configuration.nix b/home/asakiyuki/configuration.nix index 3c668f6..28f7b27 100644 --- a/home/asakiyuki/configuration.nix +++ b/home/asakiyuki/configuration.nix @@ -5,14 +5,12 @@ custom, unstable, ... -}: -let +}: let osconfig = config; -in -{ +in { users.users.asakiyuki = { isNormalUser = true; - extraGroups = [ "wheel" ]; + extraGroups = ["wheel"]; }; home-manager.users.asakiyuki = { @@ -25,6 +23,7 @@ in libs ; }; + imports = [ ./programs.nix ./files.nix diff --git a/home/asakiyuki/files.nix b/home/asakiyuki/files.nix index 290bba9..5440dd7 100644 --- a/home/asakiyuki/files.nix +++ b/home/asakiyuki/files.nix @@ -4,25 +4,26 @@ osconfig, config, ... -}: -{ +}: { home.file = lib.mkMerge [ (builtins.mapAttrs (_: path: { - source = path; - }) osconfig.device.files.source) + source = path; + }) + osconfig.device.files.source) (builtins.mapAttrs (_: path: { - source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/${path}"; - }) osconfig.device.files.symlink) + source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/${path}"; + }) + osconfig.device.files.symlink) (lib.mkMerge ( - builtins.map (name: lib.setAttrByPath [ name "force" ] true) ( + builtins.map (name: lib.setAttrByPath [name "force"] true) ( builtins.attrNames osconfig.device.files.force ) )) (lib.mkMerge ( - builtins.map (name: lib.setAttrByPath [ name "force" ] (lib.mkForce true)) ( + builtins.map (name: lib.setAttrByPath [name "force"] (lib.mkForce true)) ( builtins.attrNames osconfig.device.files.mkForce ) )) @@ -30,26 +31,26 @@ xdg.configFile.kdeglobals = lib.mkIf (osconfig.device.wm.hyprland.enable || osconfig.device.wm.niri.enable) - { - text = ( - builtins.readFile ( - (pkgs.catppuccin-kde.override { - flavour = [ "mocha" ]; - accents = [ "sapphire" ]; - }) - + "/share/color-schemes/CatppuccinMochaSapphire.colors" - ) - + '' + { + text = ( + builtins.readFile ( + (pkgs.catppuccin-kde.override { + flavour = ["mocha"]; + accents = ["sapphire"]; + }) + + "/share/color-schemes/CatppuccinMochaSapphire.colors" + ) + + '' - [UiSettings] - ColorScheme=qt6ct + [UiSettings] + ColorScheme=qt6ct - [General] - TerminalApplication=${osconfig.device.programs.terminal.name} + [General] + TerminalApplication=${osconfig.device.programs.terminal.name} - [Icons] - Theme=Papirus - '' - ); - }; + [Icons] + Theme=Papirus + '' + ); + }; } diff --git a/home/asakiyuki/programs.nix b/home/asakiyuki/programs.nix index 98e5373..ce921d9 100644 --- a/home/asakiyuki/programs.nix +++ b/home/asakiyuki/programs.nix @@ -1,5 +1,4 @@ -{ ... }: -{ +{...}: { imports = [ ../../modules/features/home/ghostty.nix ../../modules/features/home/kitty.nix diff --git a/home/junko/configuration.nix b/home/junko/configuration.nix index 197fffd..c5ac96c 100644 --- a/home/junko/configuration.nix +++ b/home/junko/configuration.nix @@ -5,11 +5,9 @@ custom, unstable, ... -}: -let +}: let osconfig = config; -in -{ +in { users.users.junko = { isNormalUser = true; }; @@ -25,7 +23,7 @@ in ; }; - imports = [ ]; + imports = []; home = { username = "junko"; diff --git a/host/desktop/default.nix b/host/desktop/default.nix index 9d557f6..eff94de 100644 --- a/host/desktop/default.nix +++ b/host/desktop/default.nix @@ -3,9 +3,9 @@ custom, config, pkgs, + inputs, ... -}: -{ +}: { imports = [ ./programs.nix ./device.nix @@ -44,13 +44,14 @@ home-manager.users.asakiyuki = { home.pointerCursor = - (custom.cursors { - name = config.device.cursors; - size = 48; - }) - { pkgs = pkgs; }; + (custom.cursors { + name = config.device.cursors; + size = 48; + }) + {pkgs = pkgs;}; }; + nix.nixPath = ["nixpkgs=${inputs.nixpkgs}"]; xdg.menus.enable = true; services.dbus.enable = true; } diff --git a/host/desktop/device.nix b/host/desktop/device.nix index aa7f19c..0ff53f4 100644 --- a/host/desktop/device.nix +++ b/host/desktop/device.nix @@ -3,11 +3,9 @@ libs, pkgs, ... -}: -let +}: let ENABLE_HDR = false; -in -{ +in { device = { flake-name = "ideapad-slim-5"; cursors = "aemeath"; @@ -62,10 +60,8 @@ in }; source = { - ".config/qt5ct/colors/Catppuccin-Mocha.conf" = - "${pkgs.catppuccin-qt5ct}/share/qt5ct/colors/catppuccin-mocha-sapphire.conf"; - ".config/qt6ct/colors/Catppuccin-Mocha.conf" = - "${pkgs.catppuccin-qt5ct}/share/qt6ct/colors/catppuccin-mocha-sapphire.conf"; + ".config/qt5ct/colors/Catppuccin-Mocha.conf" = "${pkgs.catppuccin-qt5ct}/share/qt5ct/colors/catppuccin-mocha-sapphire.conf"; + ".config/qt6ct/colors/Catppuccin-Mocha.conf" = "${pkgs.catppuccin-qt5ct}/share/qt6ct/colors/catppuccin-mocha-sapphire.conf"; ".config/dolphinrc" = libs.root "/configs/dolphinrc"; diff --git a/host/desktop/programs.nix b/host/desktop/programs.nix index 756f4d1..89d08df 100644 --- a/host/desktop/programs.nix +++ b/host/desktop/programs.nix @@ -1,7 +1,4 @@ -{ - ... -}: -{ +{...}: { programs = { ffmpeg.enable = true; nodejs.enable = true; diff --git a/host/server/default.nix b/host/server/default.nix index 4a3df8d..77f414c 100644 --- a/host/server/default.nix +++ b/host/server/default.nix @@ -1,5 +1,4 @@ -{ libs, ... }: -{ +{libs, ...}: { imports = [ ./device.nix ./programs.nix diff --git a/host/server/device.nix b/host/server/device.nix index 20d4809..e4396c2 100644 --- a/host/server/device.nix +++ b/host/server/device.nix @@ -1,5 +1,4 @@ -{ ... }: -{ +{...}: { device = { flake-name = "home-server"; diff --git a/host/server/networking.nix b/host/server/networking.nix index 6dd4bfb..a01f1b8 100644 --- a/host/server/networking.nix +++ b/host/server/networking.nix @@ -1,5 +1,4 @@ -{ ... }: -{ +{...}: { networking = { firewall = { enable = true; diff --git a/host/server/programs.nix b/host/server/programs.nix index 5af6b25..a26218a 100644 --- a/host/server/programs.nix +++ b/host/server/programs.nix @@ -1,5 +1,4 @@ -{ ... }: -{ +{...}: { programs = { ffmpeg.enable = true; nodejs.enable = true; diff --git a/host/server/services.nix b/host/server/services.nix index 8bb1137..23e4c04 100644 --- a/host/server/services.nix +++ b/host/server/services.nix @@ -1,5 +1,4 @@ -{ libs, ... }: -{ +{libs, ...}: { imports = [ (libs.root "/modules/services/adguardhome.nix") (libs.root "/modules/services/cloudflare-dyndns.nix") diff --git a/libs/default.nix b/libs/default.nix index 1d9bb1b..e7d6e52 100644 --- a/libs/default.nix +++ b/libs/default.nix @@ -1,3 +1,3 @@ -{ ... }: { - root = path: ../. + path; -} \ No newline at end of file +{...}: { + root = path: ../. + path; +} diff --git a/modules/features/home/bash.nix b/modules/features/home/bash.nix index 3fbe4d0..ae362ff 100644 --- a/modules/features/home/bash.nix +++ b/modules/features/home/bash.nix @@ -1,68 +1,73 @@ -{ lib, osconfig, ... }: { - programs.bash = { - enable = true; - shellAliases = lib.attrsets.mergeAttrsList [ - { - cls = "clear"; - cleanup = "sudo nix-collect-garbage -d"; - cls-log = "sudo journalctl --vacuum-time=1s"; +{ + lib, + osconfig, + ... +}: { + programs.bash = { + enable = true; + shellAliases = lib.attrsets.mergeAttrsList [ + { + cls = "clear"; + cleanup = "sudo nix-collect-garbage -d"; + cls-log = "sudo journalctl --vacuum-time=1s"; - logout = "pkill -KILL -u $USER"; + logout = "pkill -KILL -u $USER"; - nrs = "sudo nixos-rebuild switch --flake /etc/nixos#${osconfig.device.flake-name}"; - flake-upgrade = "nix flake update"; - } - { - spf = "superfile"; - } - (lib.optionalAttrs osconfig.virtualisation.waydroid.enable { - wss = "waydroid session stop; exit;"; - }) - ]; + nrs = "sudo nixos-rebuild switch --flake /etc/nixos#${osconfig.device.flake-name}"; + flake-upgrade = "nix flake update"; + } + { + spf = "superfile"; + } + (lib.optionalAttrs osconfig.virtualisation.waydroid.enable { + wss = "waydroid session stop; exit;"; + }) + ]; - shellOptions = [ - "histappend" - "checkwinsize" - "extglob" - "globstar" - "checkjobs" - "autocd" - ]; + shellOptions = [ + "histappend" + "checkwinsize" + "extglob" + "globstar" + "checkjobs" + "autocd" + ]; - initExtra = '' - function git-commit() { - git add . - git commit -m "$1" - } + initExtra = + '' + function git-commit() { + git add . + git commit -m "$1" + } - function git-push() { - git-commit "$1" - git push origin HEAD - } + function git-push() { + git-commit "$1" + git push origin HEAD + } - function git-pull() { - git fetch origin HEAD - git pull origin HEAD - } + function git-pull() { + git fetch origin HEAD + git pull origin HEAD + } - function get-hash() { - nix hash to-sri --type sha256 $(nix-prefetch-url --unpack "$1") - } - '' + - lib.optionalString osconfig.device.programs.tmux.enable '' - allowed_terms=("xterm-kitty" "xterm-ghostty") + function get-hash() { + nix hash to-sri --type sha256 $(nix-prefetch-url --unpack "$1") + } + '' + + lib.optionalString osconfig.device.programs.tmux.enable '' + allowed_terms=("xterm-kitty" "xterm-ghostty") - should_run_tmux=false - for term in "${"$" + "{allowed_terms[@]" + "}"}"; do - if [[ "$TERM" == "$term" ]]; then - should_run_tmux=true - break - fi - done + should_run_tmux=false + for term in "${"$" + "{allowed_terms[@]" + "}"}"; do + if [[ "$TERM" == "$term" ]]; then + should_run_tmux=true + break + fi + done - if [ -z "$TMUX" ] && [ "$should_run_tmux" = true ]; then - exec tmux - fi - ''; - }; -} \ No newline at end of file + if [ -z "$TMUX" ] && [ "$should_run_tmux" = true ]; then + exec tmux + fi + ''; + }; +} diff --git a/modules/features/home/browsers.nix b/modules/features/home/browsers.nix index e9ad3b5..8d7764b 100644 --- a/modules/features/home/browsers.nix +++ b/modules/features/home/browsers.nix @@ -1,5 +1,8 @@ -{ pkgs, libs, ... }: { + pkgs, + libs, + ... +}: { programs = { firefox.profiles.default = { settings = { @@ -138,7 +141,7 @@ mynixos = { name = "My NixOS"; - definedAliases = [ "@mynixos" ]; + definedAliases = ["@mynixos"]; icon = "https://mynixos.com/favicon.ico"; urls = [ { @@ -164,6 +167,6 @@ userContent = builtins.readFile (libs.root "/assets/firefox/userContent.css"); }; - chromium = { }; + chromium = {}; }; } diff --git a/modules/features/home/fastfetch.nix b/modules/features/home/fastfetch.nix index 57a8302..65c7896 100644 --- a/modules/features/home/fastfetch.nix +++ b/modules/features/home/fastfetch.nix @@ -1,5 +1,8 @@ -{ lib, osconfig, ... }: { + lib, + osconfig, + ... +}: { programs.fastfetch = lib.mkIf osconfig.device.programs.fastfetch.enable { enable = true; settings = { @@ -173,4 +176,3 @@ }; }; } - diff --git a/modules/features/home/ghostty.nix b/modules/features/home/ghostty.nix index 0b29b5d..c0ac6c0 100644 --- a/modules/features/home/ghostty.nix +++ b/modules/features/home/ghostty.nix @@ -1,54 +1,57 @@ -{ lib, osconfig, ... }: { + lib, + osconfig, + ... +}: { programs.ghostty = lib.mkIf - (osconfig.device.programs.terminal.enable && osconfig.device.programs.terminal.name == "ghostty") - { - enable = true; - settings = { - theme = "catppuccin-mocha"; + (osconfig.device.programs.terminal.enable && osconfig.device.programs.terminal.name == "ghostty") + { + enable = true; + settings = { + theme = "catppuccin-mocha"; - font-size = 10; - font-family = "SauceCodePro NFP Bold"; + font-size = 10; + font-family = "SauceCodePro NFP Bold"; - window-width = 230; - window-height = 68; + window-width = 230; + window-height = 68; - window-padding-x = 5; - window-padding-y = 0; + window-padding-x = 5; + window-padding-y = 0; - keybind = [ - "ctrl+shift+n=unbind" - "ctrl+shift+i=unbind" + keybind = [ + "ctrl+shift+n=unbind" + "ctrl+shift+i=unbind" + ]; + }; + + themes = { + catppuccin-mocha = { + background = "1e1e2e"; + cursor-color = "f5e0dc"; + foreground = "cdd6f4"; + palette = [ + "0=#45475a" + "1=#f38ba8" + "2=#a6e3a1" + "3=#f9e2af" + "4=#89b4fa" + "5=#f5c2e7" + "6=#94e2d5" + "7=#bac2de" + "8=#585b70" + "9=#f38ba8" + "10=#a6e3a1" + "11=#f9e2af" + "12=#89b4fa" + "13=#f5c2e7" + "14=#94e2d5" + "15=#a6adc8" ]; - }; - - themes = { - catppuccin-mocha = { - background = "1e1e2e"; - cursor-color = "f5e0dc"; - foreground = "cdd6f4"; - palette = [ - "0=#45475a" - "1=#f38ba8" - "2=#a6e3a1" - "3=#f9e2af" - "4=#89b4fa" - "5=#f5c2e7" - "6=#94e2d5" - "7=#bac2de" - "8=#585b70" - "9=#f38ba8" - "10=#a6e3a1" - "11=#f9e2af" - "12=#89b4fa" - "13=#f5c2e7" - "14=#94e2d5" - "15=#a6adc8" - ]; - selection-background = "353749"; - selection-foreground = "cdd6f4"; - }; + selection-background = "353749"; + selection-foreground = "cdd6f4"; }; }; + }; } diff --git a/modules/features/home/git.nix b/modules/features/home/git.nix index 93dad9b..15a2bac 100644 --- a/modules/features/home/git.nix +++ b/modules/features/home/git.nix @@ -1,19 +1,19 @@ -{ ... }: { - programs.git = { - enable = true; - settings = { - user = { - name = "Asaki Yuki"; - email = "vantrong2007vn@gmail.com"; - }; +{...}: { + programs.git = { + enable = true; + settings = { + user = { + name = "Asaki Yuki"; + email = "vantrong2007vn@gmail.com"; + }; - init = { - defaultBranch = "main"; - }; + init = { + defaultBranch = "main"; + }; - # pull = { - # rebase = ""; - # }; - }; + # pull = { + # rebase = ""; + # }; }; -} \ No newline at end of file + }; +} diff --git a/modules/features/home/kitty.nix b/modules/features/home/kitty.nix index 8225e23..06e1e9c 100644 --- a/modules/features/home/kitty.nix +++ b/modules/features/home/kitty.nix @@ -1,79 +1,82 @@ -{ lib, osconfig, ... }: { + lib, + osconfig, + ... +}: { programs.kitty = lib.mkIf - (osconfig.device.programs.terminal.enable && osconfig.device.programs.terminal.name == "kitty") - { - enable = true; + (osconfig.device.programs.terminal.enable && osconfig.device.programs.terminal.name == "kitty") + { + enable = true; - keybindings = { - "ctrl+c" = "copy_to_clipboard"; - "ctrl+v" = "paste_from_clipboard"; - }; - - settings = { - window_padding_width = 2; - window_padding_height = 2; - - cursor_shape = "beam"; - # background_opacity = 0.5; - - font_family = "Tahoma"; - font_size = 9; - - foreground = "#cdd6f4"; - background = "#1e1e2e"; - selection_foreground = "#1e1e2e"; - selection_background = "#f5e0dc"; - - cursor = "#f5e0dc"; - cursor_text_color = "#1e1e2e"; - - url_color = "#f5e0dc"; - - active_border_color = "#b4befe"; - inactive_border_color = "#6c7086"; - bell_border_color = "#f9e2af"; - - wayland_titlebar_color = "system"; - macos_titlebar_color = "system"; - - active_tab_foreground = "#11111b"; - active_tab_background = "#cba6f7"; - inactive_tab_foreground = "#cdd6f4"; - inactive_tab_background = "#181825"; - tab_bar_background = "#11111b"; - - mark1_foreground = "#1e1e2e"; - mark1_background = "#b4befe"; - mark2_foreground = "#1e1e2e"; - mark2_background = "#cba6f7"; - mark3_foreground = "#1e1e2e"; - mark3_background = "#74c7ec"; - - color0 = "#45475a"; - color8 = "#585b70"; - - color1 = "#f38ba8"; - color9 = "#f38ba8"; - - color2 = "#a6e3a1"; - color10 = "#a6e3a1"; - - color3 = "#f9e2af"; - color11 = "#f9e2af"; - - color4 = "#89b4fa"; - color12 = "#89b4fa"; - - color5 = "#f5c2e7"; - color13 = "#f5c2e7"; - - color6 = "#94e2d5"; - color14 = "#94e2d5"; - - color7 = "#bac2de"; - color15 = "#a6adc8"; - }; + keybindings = { + "ctrl+c" = "copy_to_clipboard"; + "ctrl+v" = "paste_from_clipboard"; }; + + settings = { + window_padding_width = 2; + window_padding_height = 2; + + cursor_shape = "beam"; + # background_opacity = 0.5; + + font_family = "Tahoma"; + font_size = 9; + + foreground = "#cdd6f4"; + background = "#1e1e2e"; + selection_foreground = "#1e1e2e"; + selection_background = "#f5e0dc"; + + cursor = "#f5e0dc"; + cursor_text_color = "#1e1e2e"; + + url_color = "#f5e0dc"; + + active_border_color = "#b4befe"; + inactive_border_color = "#6c7086"; + bell_border_color = "#f9e2af"; + + wayland_titlebar_color = "system"; + macos_titlebar_color = "system"; + + active_tab_foreground = "#11111b"; + active_tab_background = "#cba6f7"; + inactive_tab_foreground = "#cdd6f4"; + inactive_tab_background = "#181825"; + tab_bar_background = "#11111b"; + + mark1_foreground = "#1e1e2e"; + mark1_background = "#b4befe"; + mark2_foreground = "#1e1e2e"; + mark2_background = "#cba6f7"; + mark3_foreground = "#1e1e2e"; + mark3_background = "#74c7ec"; + + color0 = "#45475a"; + color8 = "#585b70"; + + color1 = "#f38ba8"; + color9 = "#f38ba8"; + + color2 = "#a6e3a1"; + color10 = "#a6e3a1"; + + color3 = "#f9e2af"; + color11 = "#f9e2af"; + + color4 = "#89b4fa"; + color12 = "#89b4fa"; + + color5 = "#f5c2e7"; + color13 = "#f5c2e7"; + + color6 = "#94e2d5"; + color14 = "#94e2d5"; + + color7 = "#bac2de"; + color15 = "#a6adc8"; + }; + }; } diff --git a/modules/features/home/neovide.nix b/modules/features/home/neovide.nix index 6d71add..cc64b6d 100644 --- a/modules/features/home/neovide.nix +++ b/modules/features/home/neovide.nix @@ -1,8 +1,8 @@ -{ ... }: { - programs.neovide = { - enable = true; - settings = { - neovim-bin = "/etc/profiles/per-user/asakiyuki/bin/nvim"; - }; +{...}: { + programs.neovide = { + enable = true; + settings = { + neovim-bin = "/etc/profiles/per-user/asakiyuki/bin/nvim"; }; -} \ No newline at end of file + }; +} diff --git a/modules/features/home/niri.nix b/modules/features/home/niri.nix index 5e99097..3e928c1 100644 --- a/modules/features/home/niri.nix +++ b/modules/features/home/niri.nix @@ -1,11 +1,15 @@ -{ osconfig, lib, ... }: { - programs.niri = lib.mkIf osconfig.device.wm.niri.enable { - enable = true; - settings = { - binds = { - # "Ctrl+Alt+T" = "ghostty"; - # "Mod+D" = "fuzzel"; - }; - }; +{ + osconfig, + lib, + ... +}: { + programs.niri = lib.mkIf osconfig.device.wm.niri.enable { + enable = true; + settings = { + binds = { + # "Ctrl+Alt+T" = "ghostty"; + # "Mod+D" = "fuzzel"; + }; }; -} \ No newline at end of file + }; +} diff --git a/modules/features/home/obs-studio.nix b/modules/features/home/obs-studio.nix index 5ac8cac..a49e57f 100644 --- a/modules/features/home/obs-studio.nix +++ b/modules/features/home/obs-studio.nix @@ -1,5 +1,11 @@ -{ pkgs, custom, lib, osconfig, ... }: +{ + pkgs, + custom, + lib, + osconfig, + ... +}: lib.mkIf osconfig.device.programs.obs-studio.enable { - programs.obs-studio.enable = true; - home.file.".config/obs-studio/themes".source = pkgs.callPackage custom.catppuccin-obs { }; -} \ No newline at end of file + programs.obs-studio.enable = true; + home.file.".config/obs-studio/themes".source = pkgs.callPackage custom.catppuccin-obs {}; +} diff --git a/modules/features/home/packages.nix b/modules/features/home/packages.nix index dbea11e..22a02f0 100644 --- a/modules/features/home/packages.nix +++ b/modules/features/home/packages.nix @@ -1,33 +1,32 @@ { - pkgs, lib, config, osconfig, - inputs, ... -}: -{ - home.packages = [ - (lib.mkIf config.programs.catppuccin.enable config.programs.catppuccin.package) +}: { + home.packages = + [ + (lib.mkIf config.programs.catppuccin.enable config.programs.catppuccin.package) - (lib.mkIf config.programs.antigravity.enable config.programs.antigravity.package) - (lib.mkIf config.programs.prismlauncher.enable config.programs.prismlauncher.package) - (lib.mkIf config.programs.vlc.enable config.programs.vlc.package) - (lib.mkIf config.programs.gimp.enable config.programs.gimp.package) - (lib.mkIf config.programs.libreoffice.enable config.programs.libreoffice.package) - (lib.mkIf config.programs.osu.enable config.programs.osu.package) - (lib.mkIf config.programs.lmstudio.enable config.programs.lmstudio.package) - (lib.mkIf config.programs.blender.enable config.programs.blender.package) - (lib.mkIf config.programs.xprop.enable config.programs.xprop.package) + (lib.mkIf config.programs.antigravity.enable config.programs.antigravity.package) + (lib.mkIf config.programs.prismlauncher.enable config.programs.prismlauncher.package) + (lib.mkIf config.programs.vlc.enable config.programs.vlc.package) + (lib.mkIf config.programs.gimp.enable config.programs.gimp.package) + (lib.mkIf config.programs.libreoffice.enable config.programs.libreoffice.package) + (lib.mkIf config.programs.osu.enable config.programs.osu.package) + (lib.mkIf config.programs.lmstudio.enable config.programs.lmstudio.package) + (lib.mkIf config.programs.blender.enable config.programs.blender.package) + (lib.mkIf config.programs.xprop.enable config.programs.xprop.package) - (lib.mkIf config.programs.pavucontrol.enable config.programs.pavucontrol.package) - (lib.mkIf config.programs.nwg-look.enable config.programs.nwg-look.package) + (lib.mkIf config.programs.pavucontrol.enable config.programs.pavucontrol.package) + (lib.mkIf config.programs.nwg-look.enable config.programs.nwg-look.package) - (lib.mkIf config.programs.hytale.enable config.programs.hytale.package) - (lib.mkIf ( - config.programs.cider.enable && osconfig.device.programs.cider-2.enable - ) config.programs.cider.package) - ] - ++ (lib.optionals config.programs.proton-ge.enable config.programs.proton-ge.packages) - ++ (lib.optionals config.programs.proton-apps.enable config.programs.proton-apps.packages); + (lib.mkIf config.programs.hytale.enable config.programs.hytale.package) + (lib.mkIf ( + config.programs.cider.enable && osconfig.device.programs.cider-2.enable + ) + config.programs.cider.package) + ] + ++ (lib.optionals config.programs.proton-ge.enable config.programs.proton-ge.packages) + ++ (lib.optionals config.programs.proton-apps.enable config.programs.proton-apps.packages); } diff --git a/modules/features/home/starship.nix b/modules/features/home/starship.nix index 4743be5..d6e8121 100644 --- a/modules/features/home/starship.nix +++ b/modules/features/home/starship.nix @@ -1,4 +1,8 @@ -{ lib, osconfig, ... }: { +{ + lib, + osconfig, + ... +}: { programs.starship = lib.mkIf osconfig.device.programs.starship.enable { enable = true; settings = { diff --git a/modules/features/home/theme.nix b/modules/features/home/theme.nix index 3437164..54b76f5 100644 --- a/modules/features/home/theme.nix +++ b/modules/features/home/theme.nix @@ -1,41 +1,43 @@ -{ pkgs, lib, ... }: -let - catppuccin-gtk = pkgs.catppuccin-gtk.override { - variant = "mocha"; - accents = [ "sapphire" ]; - size = "compact"; - }; -in { - home.activation.copyGtkTheme = lib.hm.dag.entryAfter [ "writeBoundary" ] '' - mkdir -p "$HOME/.themes/" + pkgs, + lib, + ... +}: let + catppuccin-gtk = pkgs.catppuccin-gtk.override { + variant = "mocha"; + accents = ["sapphire"]; + size = "compact"; + }; +in { + home.activation.copyGtkTheme = lib.hm.dag.entryAfter ["writeBoundary"] '' + mkdir -p "$HOME/.themes/" - if [ ! -d "$HOME/.themes/catppuccin-mocha-sapphire-compact" ]; then - cp -r "${catppuccin-gtk}/share/themes/catppuccin-mocha-sapphire-compact" "$HOME/.themes/" - fi + if [ ! -d "$HOME/.themes/catppuccin-mocha-sapphire-compact" ]; then + cp -r "${catppuccin-gtk}/share/themes/catppuccin-mocha-sapphire-compact" "$HOME/.themes/" + fi - if [ ! -d "$HOME/.themes/catppuccin-mocha-sapphire-compact-hdpi" ]; then - cp -r "${catppuccin-gtk}/share/themes/catppuccin-mocha-sapphire-compact-hdpi" "$HOME/.themes/" - fi + if [ ! -d "$HOME/.themes/catppuccin-mocha-sapphire-compact-hdpi" ]; then + cp -r "${catppuccin-gtk}/share/themes/catppuccin-mocha-sapphire-compact-hdpi" "$HOME/.themes/" + fi - if [ ! -d "$HOME/.themes/catppuccin-mocha-sapphire-compact-xhdpi" ]; then - cp -r "${catppuccin-gtk}/share/themes/catppuccin-mocha-sapphire-compact-xhdpi" "$HOME/.themes/" - fi - ''; + if [ ! -d "$HOME/.themes/catppuccin-mocha-sapphire-compact-xhdpi" ]; then + cp -r "${catppuccin-gtk}/share/themes/catppuccin-mocha-sapphire-compact-xhdpi" "$HOME/.themes/" + fi + ''; - # QT - qt = { - enable = true; - platformTheme.name = "qtct"; - style = { - package = with pkgs; [ - catppuccin-qt5ct - catppuccin-kde - kdePackages.breeze - ]; - }; + # QT + qt = { + enable = true; + platformTheme.name = "qtct"; + style = { + package = with pkgs; [ + catppuccin-qt5ct + catppuccin-kde + kdePackages.breeze + ]; }; + }; - # GTK - gtk.theme.name = "catppuccin-mocha-sapphire-compact"; -} \ No newline at end of file + # GTK + gtk.theme.name = "catppuccin-mocha-sapphire-compact"; +} diff --git a/modules/features/home/tmux.nix b/modules/features/home/tmux.nix index 1a2b2c0..ae8d93d 100644 --- a/modules/features/home/tmux.nix +++ b/modules/features/home/tmux.nix @@ -1,5 +1,9 @@ -{ lib, osconfig, pkgs, ... }: -let +{ + lib, + osconfig, + pkgs, + ... +}: let TOP_PANEL = '' set -g pane-border-status top set -g pane-border-lines single @@ -20,7 +24,7 @@ let BOTTOM_PANEL = '' set -g status-justify "centre" - + set -g window-status-format "#{E:@asa-module-icon} #I #{E:@asa-module-text} #W " set -g window-status-current-format "#{E:@asa-module-icon} #I #{E:@asa-module-text} #W " @@ -53,8 +57,7 @@ let bind-key -T copy-mode-vi C-v send-keys -X rectangle-toggle bind-key -T copy-mode-vi y send-keys -X copy-selection-and-cancel ''; -in -{ +in { programs.tmux = lib.mkIf osconfig.device.programs.tmux.enable { enable = true; keyMode = "vi"; diff --git a/modules/features/home/vscode.nix b/modules/features/home/vscode.nix index a5af7c9..249ccdc 100644 --- a/modules/features/home/vscode.nix +++ b/modules/features/home/vscode.nix @@ -1,5 +1,4 @@ -{ unstable, ... }: -{ +{unstable, ...}: { programs.vscode = { enable = true; package = unstable.vscode; diff --git a/modules/features/home/xdg.nix b/modules/features/home/xdg.nix index 1eb7cd0..d3d1341 100644 --- a/modules/features/home/xdg.nix +++ b/modules/features/home/xdg.nix @@ -1,14 +1,19 @@ -{ pkgs, lib, osconfig, ... }: { - xdg.portal = lib.mkIf osconfig.device.wm.hyprland.enable { - enable = true; - xdgOpenUsePortal = true; - config = { - common.default = ["gtk"]; - hyprland.default = ["gtk" "hyprland"]; - }; - extraPortals = [ - pkgs.xdg-desktop-portal-gtk - pkgs.xdg-desktop-portal-hyprland - ]; +{ + pkgs, + lib, + osconfig, + ... +}: { + xdg.portal = lib.mkIf osconfig.device.wm.hyprland.enable { + enable = true; + xdgOpenUsePortal = true; + config = { + common.default = ["gtk"]; + hyprland.default = ["gtk" "hyprland"]; }; -} \ No newline at end of file + extraPortals = [ + pkgs.xdg-desktop-portal-gtk + pkgs.xdg-desktop-portal-hyprland + ]; + }; +} diff --git a/modules/features/system/boot.nix b/modules/features/system/boot.nix index f19f953..e339853 100644 --- a/modules/features/system/boot.nix +++ b/modules/features/system/boot.nix @@ -1,24 +1,29 @@ -{ inputs, pkgs, libs, ... }: let - background = libs.root "/assets/grub/background.png"; - baseTheme = inputs.honkai-railway-grub-theme.packages.${pkgs.stdenv.hostPlatform.system}.cyrene-grub-theme; +{ + inputs, + pkgs, + libs, + ... +}: let + background = libs.root "/assets/grub/background.png"; + baseTheme = inputs.honkai-railway-grub-theme.packages.${pkgs.stdenv.hostPlatform.system}.cyrene-grub-theme; in { - boot = { - loader = { - efi.canTouchEfiVariables = true; + boot = { + loader = { + efi.canTouchEfiVariables = true; - grub = rec { - enable = true; - device = "nodev"; - efiSupport = true; - useOSProber = true; - splashImage = background; - theme = pkgs.runCommand "my-grub-theme" { } '' - mkdir -p $out - cp -r ${baseTheme}/* $out/ - chmod -R u+w $out - cp ${background} $out/background.png - ''; - }; - }; + grub = { + enable = true; + device = "nodev"; + efiSupport = true; + useOSProber = true; + splashImage = background; + theme = pkgs.runCommand "my-grub-theme" {} '' + mkdir -p $out + cp -r ${baseTheme}/* $out/ + chmod -R u+w $out + cp ${background} $out/background.png + ''; + }; }; -} \ No newline at end of file + }; +} diff --git a/modules/features/system/cloudflare.nix b/modules/features/system/cloudflare.nix index c838380..db418c9 100644 --- a/modules/features/system/cloudflare.nix +++ b/modules/features/system/cloudflare.nix @@ -1,5 +1,5 @@ -{ ... }: { - services = { - cloudflare-warp.enable = true; - }; -} \ No newline at end of file +{...}: { + services = { + cloudflare-warp.enable = true; + }; +} diff --git a/modules/features/system/dconf.nix b/modules/features/system/dconf.nix index 1640805..bf1452c 100644 --- a/modules/features/system/dconf.nix +++ b/modules/features/system/dconf.nix @@ -1,6 +1,11 @@ -{ lib, config, pkgs, ... }: { - programs.dconf.enable = true; - environment.systemPackages = lib.optionals config.programs.dconf.enable [ - pkgs.glib - ]; -} \ No newline at end of file +{ + lib, + config, + pkgs, + ... +}: { + programs.dconf.enable = true; + environment.systemPackages = lib.optionals config.programs.dconf.enable [ + pkgs.glib + ]; +} diff --git a/modules/features/system/docker.nix b/modules/features/system/docker.nix index 2f929eb..2c11b90 100644 --- a/modules/features/system/docker.nix +++ b/modules/features/system/docker.nix @@ -1,5 +1,4 @@ -{ ... }: -{ +{...}: { virtualisation.docker = { enable = true; }; diff --git a/modules/features/system/flatpak.nix b/modules/features/system/flatpak.nix index b362b71..22fe6cb 100644 --- a/modules/features/system/flatpak.nix +++ b/modules/features/system/flatpak.nix @@ -1,5 +1,9 @@ -{ lib, config, ... }: { - services.flatpak = lib.mkIf config.device.flatpak.enable { - enable = true; - }; -} \ No newline at end of file +{ + lib, + config, + ... +}: { + services.flatpak = lib.mkIf config.device.flatpak.enable { + enable = true; + }; +} diff --git a/modules/features/system/gdm.nix b/modules/features/system/gdm.nix index 4583e78..f897a85 100644 --- a/modules/features/system/gdm.nix +++ b/modules/features/system/gdm.nix @@ -1,5 +1,6 @@ -{ lib, config, ... }: { - services = lib.mkIf config.device.dm.gdm.enable { - displayManager.gdm.enable = true; - }; -} \ No newline at end of file +{ lib, config, ... }: +{ + services = lib.mkIf config.device.dm.gdm.enable { + displayManager.gdm.enable = true; + }; +} diff --git a/modules/features/system/gnome.nix b/modules/features/system/gnome.nix index b434dea..0a219c1 100644 --- a/modules/features/system/gnome.nix +++ b/modules/features/system/gnome.nix @@ -1,5 +1,9 @@ -{ lib, config, ... }: { - services = lib.mkIf config.device.de.gnome.enable { - desktopManager.gnome.enable = true; - }; -} \ No newline at end of file +{ + lib, + config, + ... +}: { + services = lib.mkIf config.device.de.gnome.enable { + desktopManager.gnome.enable = true; + }; +} diff --git a/modules/features/system/hyprland.nix b/modules/features/system/hyprland.nix index 8500ce4..3be2d1f 100644 --- a/modules/features/system/hyprland.nix +++ b/modules/features/system/hyprland.nix @@ -1,5 +1,9 @@ -{ lib, config, ... }: { - programs.hyprland = lib.mkIf config.device.wm.hyprland.enable { - enable = true; - }; -} \ No newline at end of file +{ + lib, + config, + ... +}: { + programs.hyprland = lib.mkIf config.device.wm.hyprland.enable { + enable = true; + }; +} diff --git a/modules/features/system/input-method.nix b/modules/features/system/input-method.nix index c2ca486..5441220 100644 --- a/modules/features/system/input-method.nix +++ b/modules/features/system/input-method.nix @@ -1,10 +1,10 @@ -{ pkgs, ... }: { - i18n.inputMethod = { - enable = true; - type = "fcitx5"; - fcitx5.addons = with pkgs; [ - # fcitx5-bamboo - kdePackages.fcitx5-unikey - ]; - }; -} \ No newline at end of file +{pkgs, ...}: { + i18n.inputMethod = { + enable = true; + type = "fcitx5"; + fcitx5.addons = with pkgs; [ + # fcitx5-bamboo + kdePackages.fcitx5-unikey + ]; + }; +} diff --git a/modules/features/system/kde-plasma.nix b/modules/features/system/kde-plasma.nix index b615e2e..a2b3b59 100644 --- a/modules/features/system/kde-plasma.nix +++ b/modules/features/system/kde-plasma.nix @@ -1,6 +1,10 @@ -{ lib, config, ... }: { - services = lib.mkIf config.device.de.kdePlasma.enable { - desktopManager.plasma6.enable = true; - xserver.enable = true; - }; -} \ No newline at end of file +{ + lib, + config, + ... +}: { + services = lib.mkIf config.device.de.kdePlasma.enable { + desktopManager.plasma6.enable = true; + xserver.enable = true; + }; +} diff --git a/modules/features/system/niri.nix b/modules/features/system/niri.nix index 8928447..61060a9 100644 --- a/modules/features/system/niri.nix +++ b/modules/features/system/niri.nix @@ -1,4 +1,8 @@ -{ lib, config, ... }: { - programs.niri.enable = lib.mkIf config.device.wm.niri.enable true; - services.xserver.enable = lib.mkIf config.device.wm.niri.enable true; -} \ No newline at end of file +{ + lib, + config, + ... +}: { + programs.niri.enable = lib.mkIf config.device.wm.niri.enable true; + services.xserver.enable = lib.mkIf config.device.wm.niri.enable true; +} diff --git a/modules/features/system/nix-dl.nix b/modules/features/system/nix-dl.nix index a43a7a7..f893177 100644 --- a/modules/features/system/nix-dl.nix +++ b/modules/features/system/nix-dl.nix @@ -1,14 +1,14 @@ -{ pkgs, ... }: { - programs.nix-ld = { - enable = true; - libraries = with pkgs; [ - stdenv.cc.cc - zlib - brotli - unixODBC - zstd - glib - stdenv.cc.cc.lib - ]; - }; -} \ No newline at end of file +{pkgs, ...}: { + programs.nix-ld = { + enable = true; + libraries = with pkgs; [ + stdenv.cc.cc + zlib + brotli + unixODBC + zstd + glib + stdenv.cc.cc.lib + ]; + }; +} diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix index b728c90..f9010f8 100644 --- a/modules/features/system/packages.nix +++ b/modules/features/system/packages.nix @@ -3,10 +3,8 @@ lib, config, ... -}: -{ - environment.systemPackages = - with pkgs; +}: { + environment.systemPackages = with pkgs; [ git vim @@ -15,7 +13,7 @@ tree nixd - nixfmt + alejandra zip unzip @@ -35,8 +33,9 @@ ++ (lib.optionals config.programs.gcc.enable config.programs.gcc.packages) ++ (lib.optionals config.programs.winepackages.enable config.programs.winepackages.packages) ++ (lib.optionals config.programs.kde-packages.enable config.programs.kde-packages.packages) - ++ (lib.optionals config.programs.r-tensorflow.enable [ config.programs.r-tensorflow.package ]) + ++ (lib.optionals config.programs.r-tensorflow.enable [config.programs.r-tensorflow.package]) ++ (lib.optionals ( - config.programs.hyprland-portals.enable && config.device.wm.hyprland.enable - ) config.programs.hyprland-portals.packages); + config.programs.hyprland-portals.enable && config.device.wm.hyprland.enable + ) + config.programs.hyprland-portals.packages); } diff --git a/modules/features/system/sddm.nix b/modules/features/system/sddm.nix index 8cd7fd7..983a482 100644 --- a/modules/features/system/sddm.nix +++ b/modules/features/system/sddm.nix @@ -1,24 +1,29 @@ -{ pkgs, lib, config, ... }: let - custom-sddm-astronaut = pkgs.sddm-astronaut.override { - embeddedTheme = config.device.dm.sddm.theme; - }; +{ + pkgs, + lib, + config, + ... +}: let + custom-sddm-astronaut = pkgs.sddm-astronaut.override { + embeddedTheme = config.device.dm.sddm.theme; + }; in { - services.displayManager.sddm = lib.mkIf config.device.dm.sddm.enable { - enable = true; - wayland.enable = true; - extraPackages = with pkgs; [ - custom-sddm-astronaut - ]; - theme = "sddm-astronaut-theme"; - settings = { - Theme = { - Current = "sddm-astronaut-theme"; - }; - }; - }; - - environment.systemPackages = with pkgs; [ - custom-sddm-astronaut - kdePackages.qtmultimedia + services.displayManager.sddm = lib.mkIf config.device.dm.sddm.enable { + enable = true; + wayland.enable = true; + extraPackages = [ + custom-sddm-astronaut ]; -} \ No newline at end of file + theme = "sddm-astronaut-theme"; + settings = { + Theme = { + Current = "sddm-astronaut-theme"; + }; + }; + }; + + environment.systemPackages = with pkgs; [ + custom-sddm-astronaut + kdePackages.qtmultimedia + ]; +} diff --git a/modules/features/system/steam.nix b/modules/features/system/steam.nix index 8329534..d9300cc 100644 --- a/modules/features/system/steam.nix +++ b/modules/features/system/steam.nix @@ -1,5 +1,9 @@ -{ lib, config, ... }: { - programs.steam = lib.mkIf config.device.programs.steam.enable { - enable = true; - }; -} \ No newline at end of file +{ + lib, + config, + ... +}: { + programs.steam = lib.mkIf config.device.programs.steam.enable { + enable = true; + }; +} diff --git a/modules/features/system/udisks2.nix b/modules/features/system/udisks2.nix index 4b43bd7..86e584d 100644 --- a/modules/features/system/udisks2.nix +++ b/modules/features/system/udisks2.nix @@ -1,5 +1,5 @@ -{ ... }: { - services.udisks2 = { - enable = true; - }; -} \ No newline at end of file +{...}: { + services.udisks2 = { + enable = true; + }; +} diff --git a/modules/features/system/upower.nix b/modules/features/system/upower.nix index b9bb6f5..de3ace5 100644 --- a/modules/features/system/upower.nix +++ b/modules/features/system/upower.nix @@ -1,5 +1,5 @@ -{ ... }: { - services.upower = { - enable = true; - }; -} \ No newline at end of file +{...}: { + services.upower = { + enable = true; + }; +} diff --git a/modules/features/system/waydroid.nix b/modules/features/system/waydroid.nix index c48a046..a24d629 100644 --- a/modules/features/system/waydroid.nix +++ b/modules/features/system/waydroid.nix @@ -1,10 +1,15 @@ -{ pkgs, lib, config, ... }: { - virtualisation.waydroid = { - enable = true; - package = pkgs.waydroid-nftables; - }; +{ + pkgs, + lib, + config, + ... +}: { + virtualisation.waydroid = { + enable = true; + package = pkgs.waydroid-nftables; + }; - environment.systemPackages = lib.optionals config.virtualisation.waydroid.enable [ - pkgs.waydroid-helper - ]; -} \ No newline at end of file + environment.systemPackages = lib.optionals config.virtualisation.waydroid.enable [ + pkgs.waydroid-helper + ]; +} diff --git a/modules/fonts.nix b/modules/fonts.nix index 315ae1f..8ce7eeb 100644 --- a/modules/fonts.nix +++ b/modules/fonts.nix @@ -1,5 +1,4 @@ -{ pkgs, ... }: -let +{pkgs, ...}: let fetch-fonts = { segoe-ui = { light = pkgs.fetchurl { @@ -62,8 +61,7 @@ let ''; }; }; -in -{ +in { fonts.enableDefaultPackages = true; fonts.packages = with pkgs; [ custom.tahoma @@ -83,4 +81,4 @@ in dina-font proggyfonts ]; -} \ No newline at end of file +} diff --git a/modules/hardware/bluetooth.nix b/modules/hardware/bluetooth.nix index 53cedb6..ab60377 100644 --- a/modules/hardware/bluetooth.nix +++ b/modules/hardware/bluetooth.nix @@ -1,3 +1,3 @@ -{ config, ... }: { - hardware.bluetooth.enable = config.device.bluetooth.enable; -} \ No newline at end of file +{config, ...}: { + hardware.bluetooth.enable = config.device.bluetooth.enable; +} diff --git a/modules/hardware/default.nix b/modules/hardware/default.nix index dd6ae6f..f04797e 100644 --- a/modules/hardware/default.nix +++ b/modules/hardware/default.nix @@ -1,6 +1,5 @@ -{ ... }: -{ - imports = [ - ./bluetooth.nix - ]; -} \ No newline at end of file +{...}: { + imports = [ + ./bluetooth.nix + ]; +} diff --git a/modules/home-manager.nix b/modules/home-manager.nix index b3c526a..52728ac 100644 --- a/modules/home-manager.nix +++ b/modules/home-manager.nix @@ -1,7 +1,7 @@ -{ ... }: { - home-manager = { - useUserPackages = true; - useGlobalPkgs = true; - backupFileExtension = "bak"; - }; -} \ No newline at end of file +{...}: { + home-manager = { + useUserPackages = true; + useGlobalPkgs = true; + backupFileExtension = "bak"; + }; +} diff --git a/modules/programs/hyprland/default.nix b/modules/programs/hyprland/default.nix index 9a327a0..1618df8 100644 --- a/modules/programs/hyprland/default.nix +++ b/modules/programs/hyprland/default.nix @@ -1,5 +1,8 @@ -{ lib, osconfig, ... }: { + lib, + osconfig, + ... +}: { imports = [ ./settings/default.nix ]; @@ -9,4 +12,3 @@ xwayland.enable = true; }; } - diff --git a/modules/programs/hyprland/settings/default.nix b/modules/programs/hyprland/settings/default.nix index 9071b10..9047bd8 100644 --- a/modules/programs/hyprland/settings/default.nix +++ b/modules/programs/hyprland/settings/default.nix @@ -1,5 +1,4 @@ -{ osconfig, ... }: -{ +{osconfig, ...}: { imports = [ ./key-bind.nix ./theme.nix @@ -12,4 +11,3 @@ monitorv2 = osconfig.device.wm.hyprland.monitors; }; } - diff --git a/modules/programs/hyprland/settings/exec.nix b/modules/programs/hyprland/settings/exec.nix index 7b6050a..96ae0ef 100644 --- a/modules/programs/hyprland/settings/exec.nix +++ b/modules/programs/hyprland/settings/exec.nix @@ -1,8 +1,6 @@ -{ ... }: -{ +{...}: { wayland.windowManager.hyprland.settings.exec-once = [ "quickshell" "fcitx5" ]; } - diff --git a/modules/programs/hyprland/settings/input.nix b/modules/programs/hyprland/settings/input.nix index d46fdd7..6e4f781 100644 --- a/modules/programs/hyprland/settings/input.nix +++ b/modules/programs/hyprland/settings/input.nix @@ -1,5 +1,4 @@ -{ ... }: -{ +{...}: { wayland.windowManager.hyprland.settings = { "$LAPTOP_TOUCHPAD_ENABLE" = false; diff --git a/modules/programs/hyprland/settings/key-bind.nix b/modules/programs/hyprland/settings/key-bind.nix index 0208a6f..610c2ce 100644 --- a/modules/programs/hyprland/settings/key-bind.nix +++ b/modules/programs/hyprland/settings/key-bind.nix @@ -1,68 +1,73 @@ -{ osconfig, config, ... }: { + osconfig, + config, + ... +}: { wayland.windowManager.hyprland.settings = { - bind = [ - "CTRL ALT, T, exec, ${osconfig.device.programs.terminal.name}" + bind = + [ + "CTRL ALT, T, exec, ${osconfig.device.programs.terminal.name}" - "SUPER SHIFT, L, exit," - "SUPER SHIFT, TAB, togglefloating," - "SUPER SHIFT, S, exec, hyprshot -m region -o '${config.home.homeDirectory}/Pictures/Screenshots/' -z" - "SUPER, J, togglesplit," - "SUPER, E, exec, dolphin" + "SUPER SHIFT, L, exit," + "SUPER SHIFT, TAB, togglefloating," + "SUPER SHIFT, S, exec, hyprshot -m region -o '${config.home.homeDirectory}/Pictures/Screenshots/' -z" + "SUPER, J, togglesplit," + "SUPER, E, exec, dolphin" - "SUPER, C, killactive" + "SUPER, C, killactive" - "SUPER SHIFT, LEFT, resizeactive, -25 0" - "SUPER SHIFT, RIGHT, resizeactive, 25 0" - "SUPER SHIFT, UP, resizeactive, 0 -25" - "SUPER SHIFT, DOWN, resizeactive, 0 25" + "SUPER SHIFT, LEFT, resizeactive, -25 0" + "SUPER SHIFT, RIGHT, resizeactive, 25 0" + "SUPER SHIFT, UP, resizeactive, 0 -25" + "SUPER SHIFT, DOWN, resizeactive, 0 25" - "SUPER, LEFT, movefocus, l" - "SUPER, RIGHT, movefocus, r" - "SUPER, UP, movefocus, u" - "SUPER, DOWN, movefocus, d" + "SUPER, LEFT, movefocus, l" + "SUPER, RIGHT, movefocus, r" + "SUPER, UP, movefocus, u" + "SUPER, DOWN, movefocus, d" - "SUPER CTRL, LEFT, movewindow, l" - "SUPER CTRL, RIGHT, movewindow, r" - "SUPER CTRL, UP, movewindow, u" - "SUPER CTRL, DOWN, movewindow, d" + "SUPER CTRL, LEFT, movewindow, l" + "SUPER CTRL, RIGHT, movewindow, r" + "SUPER CTRL, UP, movewindow, u" + "SUPER CTRL, DOWN, movewindow, d" - "SUPER SHIFT, h, resizeactive, -25 0" - "SUPER SHIFT, l, resizeactive, 25 0" - "SUPER SHIFT, k, resizeactive, 0 -25" - "SUPER SHIFT, j, resizeactive, 0 25" + "SUPER SHIFT, h, resizeactive, -25 0" + "SUPER SHIFT, l, resizeactive, 25 0" + "SUPER SHIFT, k, resizeactive, 0 -25" + "SUPER SHIFT, j, resizeactive, 0 25" - "SUPER, h, movefocus, l" - "SUPER, l, movefocus, r" - "SUPER, k, movefocus, u" - "SUPER, j, movefocus, d" + "SUPER, h, movefocus, l" + "SUPER, l, movefocus, r" + "SUPER, k, movefocus, u" + "SUPER, j, movefocus, d" - "SUPER CTRL, h, movewindow, l" - "SUPER CTRL, l, movewindow, r" - "SUPER CTRL, k, movewindow, u" - "SUPER CTRL, j, movewindow, d" + "SUPER CTRL, h, movewindow, l" + "SUPER CTRL, l, movewindow, r" + "SUPER CTRL, k, movewindow, u" + "SUPER CTRL, j, movewindow, d" - "SUPER, TAB, workspace, e+1" - "SUPER ALT, TAB, workspace, e-1" - "SUPER, MOUSE_DOWN, workspace, e-1" - "SUPER, MOUSE_UP, workspace, e+1" + "SUPER, TAB, workspace, e+1" + "SUPER ALT, TAB, workspace, e-1" + "SUPER, MOUSE_DOWN, workspace, e-1" + "SUPER, MOUSE_UP, workspace, e+1" - ", XF86TouchpadToggle, global, asakiyuki:touchpadtoggle" - "ALT, SPACE, global, asakiyuki:launcher" + ", XF86TouchpadToggle, global, asakiyuki:touchpadtoggle" + "ALT, SPACE, global, asakiyuki:launcher" - ",XF86MonBrightnessDown, exec, brightnessctl s 5%-" - ",XF86MonBrightnessUp, exec, brightnessctl s +5%" - ] - ++ builtins.concatLists ( - builtins.genList (i: [ - "SUPER, ${toString (i + 1)}, workspace,${toString (i + 1)}" - "SUPER SHIFT, ${toString (i + 1)}, movetoworkspace,${toString (i + 1)}" - ]) 9 - ) - ++ [ - "SUPER, 0, workspace, 10" - "SUPER SHIFT, 0, movetoworkspace, 10" - ]; + ",XF86MonBrightnessDown, exec, brightnessctl s 5%-" + ",XF86MonBrightnessUp, exec, brightnessctl s +5%" + ] + ++ builtins.concatLists ( + builtins.genList (i: [ + "SUPER, ${toString (i + 1)}, workspace,${toString (i + 1)}" + "SUPER SHIFT, ${toString (i + 1)}, movetoworkspace,${toString (i + 1)}" + ]) + 9 + ) + ++ [ + "SUPER, 0, workspace, 10" + "SUPER SHIFT, 0, movetoworkspace, 10" + ]; bindi = [ ", Caps_Lock, global, asakiyuki:capslock" diff --git a/modules/programs/hyprland/settings/theme.nix b/modules/programs/hyprland/settings/theme.nix index d687b60..fbd036a 100644 --- a/modules/programs/hyprland/settings/theme.nix +++ b/modules/programs/hyprland/settings/theme.nix @@ -1,58 +1,58 @@ -{ ... }: { - wayland.windowManager.hyprland.settings = { - general = { - gaps_in = 5; - gaps_out = 10; - border_size = 1; - "col.active_border" = "rgb(cdd6f4)"; - "col.inactive_border" = "rgb(7f849c)"; - allow_tearing = true; - resize_on_border = true; - }; - - decoration = { - rounding = 5; - rounding_power = 5; - active_opacity = 1; - inactive_opacity = 1; - - blur = { - enabled = true; - size = 2; - passes = 5; - vibrancy = 3; - }; - }; - - animations = { - enabled = "yes"; - - bezier = [ - "overshot, 0.05, 0.9, 0.1, 1.1" - "md3_decel, 0.05, 0.7, 0.1, 1" - ]; - - animation = [ - "windows, 1, 3, overshot, popin 60%" - "border, 1, 10, default" - "fade, 1, 2, default" - "workspaces, 1, 3.5, overshot, slidefade 15%" - "specialWorkspace, 1, 3, md3_decel, slidevert" - ]; - }; - - dwindle = { - pseudotile = true; - preserve_split = true; - }; - - master = { - new_status = "master"; - }; - - misc = { - force_default_wallpaper = 1; - disable_hyprland_logo = true; - }; +{...}: { + wayland.windowManager.hyprland.settings = { + general = { + gaps_in = 5; + gaps_out = 10; + border_size = 1; + "col.active_border" = "rgb(cdd6f4)"; + "col.inactive_border" = "rgb(7f849c)"; + allow_tearing = true; + resize_on_border = true; }; -} \ No newline at end of file + + decoration = { + rounding = 5; + rounding_power = 5; + active_opacity = 1; + inactive_opacity = 1; + + blur = { + enabled = true; + size = 2; + passes = 5; + vibrancy = 3; + }; + }; + + animations = { + enabled = "yes"; + + bezier = [ + "overshot, 0.05, 0.9, 0.1, 1.1" + "md3_decel, 0.05, 0.7, 0.1, 1" + ]; + + animation = [ + "windows, 1, 3, overshot, popin 60%" + "border, 1, 10, default" + "fade, 1, 2, default" + "workspaces, 1, 3.5, overshot, slidefade 15%" + "specialWorkspace, 1, 3, md3_decel, slidevert" + ]; + }; + + dwindle = { + pseudotile = true; + preserve_split = true; + }; + + master = { + new_status = "master"; + }; + + misc = { + force_default_wallpaper = 1; + disable_hyprland_logo = true; + }; + }; +} diff --git a/modules/programs/hyprland/settings/window-rules.nix b/modules/programs/hyprland/settings/window-rules.nix index 13902c6..2730b08 100644 --- a/modules/programs/hyprland/settings/window-rules.nix +++ b/modules/programs/hyprland/settings/window-rules.nix @@ -1,12 +1,11 @@ -{ ... }: -{ +{...}: { wayland.windowManager.hyprland.settings.windowrule = [ - "float, class:(clipse)" - "size 622 652, class:(clipse)" - "stayfocused, class:(clipse)" + "float, class:(clipse)" + "size 622 652, class:(clipse)" + "stayfocused, class:(clipse)" - "suppressevent maximize, class:.*" - "nofocus,class:^$,title:^$,xwayland:1,floating:1,fullscreen:0,pinned:0" + "suppressevent maximize, class:.*" + "nofocus,class:^$,title:^$,xwayland:1,floating:1,fullscreen:0,pinned:0" "opacity 0.0 override, class:^(xwaylandvideobridge)$" "noanim, class:^(xwaylandvideobridge)$" @@ -19,4 +18,3 @@ "tile, class:^(Chromium)$" ]; } - diff --git a/modules/programs/nixcord/default.nix b/modules/programs/nixcord/default.nix index 248bab7..cc315b6 100644 --- a/modules/programs/nixcord/default.nix +++ b/modules/programs/nixcord/default.nix @@ -1,5 +1,9 @@ -{ lib, libs, osconfig, ... }: { + lib, + libs, + osconfig, + ... +}: { programs.nixcord = lib.mkIf osconfig.device.programs.nixcord.enable { enable = true; discord = { @@ -12,7 +16,7 @@ config = { useQuickCss = true; enableReactDevtools = true; - themeLinks = [ "https://catppuccin.github.io/discord/dist/catppuccin-mocha-blue.theme.css" ]; + themeLinks = ["https://catppuccin.github.io/discord/dist/catppuccin-mocha-blue.theme.css"]; plugins = { BlurNSFW.enable = true; @@ -44,4 +48,4 @@ }; }; }; -} \ No newline at end of file +} diff --git a/modules/programs/nixvim/_nixvim.nix b/modules/programs/nixvim/_nixvim.nix index f3182af..836c158 100644 --- a/modules/programs/nixvim/_nixvim.nix +++ b/modules/programs/nixvim/_nixvim.nix @@ -1,5 +1,4 @@ -{ pkgs, config, ... }: -{ +{...}: { programs.nixvim.imports = [ ./default.nix ./extra-packages.nix diff --git a/modules/programs/nixvim/default.nix b/modules/programs/nixvim/default.nix index dc1e7ec..44adfa4 100644 --- a/modules/programs/nixvim/default.nix +++ b/modules/programs/nixvim/default.nix @@ -1,5 +1,4 @@ -{ ... }: -{ +{...}: { enable = true; vimdiffAlias = true; colorschemes.catppuccin.enable = true; @@ -17,4 +16,3 @@ clipboard = "unnamedplus"; }; } - diff --git a/modules/programs/nixvim/extra-packages.nix b/modules/programs/nixvim/extra-packages.nix index 1951aa8..bf9c523 100644 --- a/modules/programs/nixvim/extra-packages.nix +++ b/modules/programs/nixvim/extra-packages.nix @@ -1,5 +1,4 @@ -{ pkgs, ... }: -{ +{pkgs, ...}: { extraPackages = with pkgs; [ nodePackages.prettier ]; diff --git a/modules/programs/nixvim/keymaps/_keymaps.nix b/modules/programs/nixvim/keymaps/_keymaps.nix index 160868f..12521cb 100644 --- a/modules/programs/nixvim/keymaps/_keymaps.nix +++ b/modules/programs/nixvim/keymaps/_keymaps.nix @@ -1,11 +1,9 @@ -{ ... }: -{ +{...}: { globals.mapleader = " "; keymaps = - [ ] + [] ++ (import ./_default.nix) ++ (import ./barbar.nix) ++ (import ./toggleterm.nix) ++ (import ./nvim-tree-toggle.nix); } - diff --git a/modules/programs/nixvim/keymaps/barbar.nix b/modules/programs/nixvim/keymaps/barbar.nix index d1cdf6a..1c33576 100644 --- a/modules/programs/nixvim/keymaps/barbar.nix +++ b/modules/programs/nixvim/keymaps/barbar.nix @@ -31,9 +31,9 @@ } ] ++ (builtins.genList (i: { - mode = "n"; - key = ""; - action = "BufferGoto ${toString (i + 1)}"; - options.silent = true; -}) 9) - + mode = "n"; + key = ""; + action = "BufferGoto ${toString (i + 1)}"; + options.silent = true; + }) + 9) diff --git a/modules/programs/nixvim/keymaps/toggleterm.nix b/modules/programs/nixvim/keymaps/toggleterm.nix index c1509ed..a5944b6 100644 --- a/modules/programs/nixvim/keymaps/toggleterm.nix +++ b/modules/programs/nixvim/keymaps/toggleterm.nix @@ -59,5 +59,6 @@ options.silent = true; options.noremap = true; } - ]) 9 + ]) + 9 ) diff --git a/modules/programs/nixvim/lua/_lua.nix b/modules/programs/nixvim/lua/_lua.nix index facb35d..ea8f50d 100644 --- a/modules/programs/nixvim/lua/_lua.nix +++ b/modules/programs/nixvim/lua/_lua.nix @@ -1,4 +1,2 @@ -{ ... }: -{ - +{...}: { } diff --git a/modules/programs/nixvim/plugins/_extraPlugins.nix b/modules/programs/nixvim/plugins/_extraPlugins.nix index 94a6838..3291315 100644 --- a/modules/programs/nixvim/plugins/_extraPlugins.nix +++ b/modules/programs/nixvim/plugins/_extraPlugins.nix @@ -1,15 +1,13 @@ -{ pkgs, ... }: -let - EXTRA_PLUGINS = [ - ./extras/neocord.nix - ./extras/mini-icons.nix - ]; +{pkgs, ...}: let + EXTRA_PLUGINS = [ + ./extras/neocord.nix + ./extras/mini-icons.nix + ]; - LUA = [ - ./lua/neocord.lua - ]; -in -{ - extraPlugins = map (path: import path { plugins = pkgs.vimPlugins; }) EXTRA_PLUGINS; - extraConfigLua = builtins.concatStringsSep "\n" (map builtins.readFile LUA); -} \ No newline at end of file + LUA = [ + ./lua/neocord.lua + ]; +in { + extraPlugins = map (path: import path {plugins = pkgs.vimPlugins;}) EXTRA_PLUGINS; + extraConfigLua = builtins.concatStringsSep "\n" (map builtins.readFile LUA); +} diff --git a/modules/programs/nixvim/plugins/_plugins.nix b/modules/programs/nixvim/plugins/_plugins.nix index 4d3f798..348c756 100644 --- a/modules/programs/nixvim/plugins/_plugins.nix +++ b/modules/programs/nixvim/plugins/_plugins.nix @@ -1,5 +1,4 @@ -{ ... }@inputs: -{ +{...} @ inputs: { plugins = { nvim-tree = import ./nvimtree.nix inputs; lsp = import ./lsp.nix inputs; diff --git a/modules/programs/nixvim/plugins/cmp.nix b/modules/programs/nixvim/plugins/cmp.nix index 8b49804..8d7163c 100644 --- a/modules/programs/nixvim/plugins/cmp.nix +++ b/modules/programs/nixvim/plugins/cmp.nix @@ -1,25 +1,25 @@ -{ ... }: { - enable = true; - autoEnableSources = true; +{...}: { + enable = true; + autoEnableSources = true; - settings = { - sources = [ - { name = "nvim_lsp"; } - { name = "path"; } - { name = "luasnip"; } - { name = "buffer"; } - ]; + settings = { + sources = [ + {name = "nvim_lsp";} + {name = "path";} + {name = "luasnip";} + {name = "buffer";} + ]; - mapping = { - "" = "cmp.mapping.complete()"; - "" = "cmp.mapping.scroll_docs(-4)"; - "" = "cmp.mapping.scroll_docs(4)"; - "" = "cmp.mapping.abort()"; - "" = "cmp.mapping.confirm({ select = true })"; - "" = "cmp.mapping(cmp.mapping.select_next_item(), {'i', 's'})"; - "" = "cmp.mapping(cmp.mapping.select_prev_item(), {'i', 's'})"; - }; - - formatting.fields = [ "kind" "abbr" "menu" ]; + mapping = { + "" = "cmp.mapping.complete()"; + "" = "cmp.mapping.scroll_docs(-4)"; + "" = "cmp.mapping.scroll_docs(4)"; + "" = "cmp.mapping.abort()"; + "" = "cmp.mapping.confirm({ select = true })"; + "" = "cmp.mapping(cmp.mapping.select_next_item(), {'i', 's'})"; + "" = "cmp.mapping(cmp.mapping.select_prev_item(), {'i', 's'})"; }; -} \ No newline at end of file + + formatting.fields = ["kind" "abbr" "menu"]; + }; +} diff --git a/modules/programs/nixvim/plugins/conform-nvim.nix b/modules/programs/nixvim/plugins/conform-nvim.nix index 192e491..f20b53e 100644 --- a/modules/programs/nixvim/plugins/conform-nvim.nix +++ b/modules/programs/nixvim/plugins/conform-nvim.nix @@ -1,15 +1,14 @@ -{ ... }: -{ +{...}: { enable = true; settings = { formatters_by_ft = { - javascript = [ "prettier" ]; - typescript = [ "prettier" ]; - json = [ "prettier" ]; - css = [ "prettier" ]; - html = [ "prettier" ]; - nix = [ "nixfmt" ]; - php = [ "php_cs_fixer" ]; + javascript = ["prettier"]; + typescript = ["prettier"]; + json = ["prettier"]; + css = ["prettier"]; + html = ["prettier"]; + nix = ["nixfmt"]; + php = ["php_cs_fixer"]; }; format_on_save = { diff --git a/modules/programs/nixvim/plugins/extras/mini-icons.nix b/modules/programs/nixvim/plugins/extras/mini-icons.nix index 38b4a25..13ea0ec 100644 --- a/modules/programs/nixvim/plugins/extras/mini-icons.nix +++ b/modules/programs/nixvim/plugins/extras/mini-icons.nix @@ -1,4 +1,3 @@ -{ plugins, ... }: -{ - plugin = plugins.mini-icons; -} \ No newline at end of file +{plugins, ...}: { + plugin = plugins.mini-icons; +} diff --git a/modules/programs/nixvim/plugins/extras/neocord.nix b/modules/programs/nixvim/plugins/extras/neocord.nix index 8af30c2..373d68e 100644 --- a/modules/programs/nixvim/plugins/extras/neocord.nix +++ b/modules/programs/nixvim/plugins/extras/neocord.nix @@ -1,4 +1,3 @@ -{ plugins, ... }: -{ - plugin = plugins.neocord; -} \ No newline at end of file +{plugins, ...}: { + plugin = plugins.neocord; +} diff --git a/modules/programs/nixvim/plugins/lint.nix b/modules/programs/nixvim/plugins/lint.nix index a46224a..1473ac2 100644 --- a/modules/programs/nixvim/plugins/lint.nix +++ b/modules/programs/nixvim/plugins/lint.nix @@ -1,5 +1,4 @@ -{ ... }: -{ +{...}: { enable = true; lintersByFt = { }; diff --git a/modules/programs/nixvim/plugins/lsp.nix b/modules/programs/nixvim/plugins/lsp.nix index ee013d0..c0694e9 100644 --- a/modules/programs/nixvim/plugins/lsp.nix +++ b/modules/programs/nixvim/plugins/lsp.nix @@ -1,5 +1,4 @@ -{ ... }: -{ +{...}: { enable = true; servers = { phpactor.enable = true; diff --git a/modules/programs/nixvim/plugins/lspkind.nix b/modules/programs/nixvim/plugins/lspkind.nix index 22cd50e..c140184 100644 --- a/modules/programs/nixvim/plugins/lspkind.nix +++ b/modules/programs/nixvim/plugins/lspkind.nix @@ -1,4 +1,4 @@ -{ ... }: { - enable = true; - cmp.enable = true; +{...}: { + enable = true; + cmp.enable = true; } diff --git a/modules/programs/nixvim/plugins/nvimtree.nix b/modules/programs/nixvim/plugins/nvimtree.nix index e9073ff..c41503c 100644 --- a/modules/programs/nixvim/plugins/nvimtree.nix +++ b/modules/programs/nixvim/plugins/nvimtree.nix @@ -1,5 +1,5 @@ -{ ... }: { - enable = true; - openOnSetupFile = true; - settings.auto_reload_on_write = true; +{...}: { + enable = true; + openOnSetupFile = true; + settings.auto_reload_on_write = true; } diff --git a/modules/programs/nixvim/plugins/which-key.nix b/modules/programs/nixvim/plugins/which-key.nix index f8a8422..ef3ca51 100644 --- a/modules/programs/nixvim/plugins/which-key.nix +++ b/modules/programs/nixvim/plugins/which-key.nix @@ -1,5 +1,4 @@ -{ ... }: -{ +{...}: { enable = true; settings = { preset = "modern"; diff --git a/modules/services/adguardhome.nix b/modules/services/adguardhome.nix index 9b2d2ae..b4fff2c 100644 --- a/modules/services/adguardhome.nix +++ b/modules/services/adguardhome.nix @@ -1,5 +1,4 @@ -{ ... }: -{ +{...}: { services.adguardhome = { enable = true; port = 34778; diff --git a/modules/services/cloudflare-dyndns.nix b/modules/services/cloudflare-dyndns.nix index 76d36d2..f5bac76 100644 --- a/modules/services/cloudflare-dyndns.nix +++ b/modules/services/cloudflare-dyndns.nix @@ -1,5 +1,4 @@ -{ ... }: -{ +{...}: { services.cloudflare-dyndns = { enable = true; apiTokenFile = "/home/asakiyuki/.secret/CLOUDFLARE_TOKEN_KEY"; @@ -8,6 +7,6 @@ ipv6 = false; ipv4 = true; deleteMissing = false; - domains = [ "ddns.asakiyuki.com" ]; + domains = ["ddns.asakiyuki.com"]; }; } diff --git a/modules/services/fail2ban.nix b/modules/services/fail2ban.nix index 3c63bab..3bea9fb 100644 --- a/modules/services/fail2ban.nix +++ b/modules/services/fail2ban.nix @@ -1,5 +1,4 @@ -{ ... }: -{ +{...}: { services.fail2ban = { enable = true; ignoreIP = [ diff --git a/modules/services/openssh.nix b/modules/services/openssh.nix index ea30230..4c61a20 100644 --- a/modules/services/openssh.nix +++ b/modules/services/openssh.nix @@ -1,10 +1,9 @@ -{ ... }: -{ +{...}: { services.openssh = { enable = true; - ports = [ 15523 ]; + ports = [15523]; authorizedKeysInHomedir = true; - authorizedKeysFiles = [ "/home/asakiyuki/.ssh/authorized_keys" ]; + authorizedKeysFiles = ["/home/asakiyuki/.ssh/authorized_keys"]; settings = { AllowUsers = [ "asakiyuki" diff --git a/modules/services/pipewire.nix b/modules/services/pipewire.nix index 95f8f8f..56e3063 100644 --- a/modules/services/pipewire.nix +++ b/modules/services/pipewire.nix @@ -1,5 +1,4 @@ -{ ... }: -{ +{...}: { services.pipewire = { enable = true; pulse.enable = true; diff --git a/options/home/default.nix b/options/home/default.nix index 6e358ab..60a4ba6 100644 --- a/options/home/default.nix +++ b/options/home/default.nix @@ -1,5 +1,4 @@ -{ ... }: -{ - imports = [ ./programs.nix ]; - options = { }; +{...}: { + imports = [./programs.nix]; + options = {}; } diff --git a/options/home/programs.nix b/options/home/programs.nix index c6b5385..2bcb373 100644 --- a/options/home/programs.nix +++ b/options/home/programs.nix @@ -1,11 +1,9 @@ { - config, lib, pkgs, inputs, ... -}: -{ +}: { options.programs = { catppuccin = { enable = lib.mkEnableOption "catppuccin"; @@ -13,7 +11,7 @@ type = lib.types.package; default = pkgs.catppuccin-gtk.override { variant = "mocha"; - accents = [ "sapphire" ]; + accents = ["sapphire"]; size = "compact"; }; description = "Catppuccin GTK package"; @@ -21,19 +19,19 @@ kde = lib.mkOption { type = lib.types.package; default = pkgs.catppuccin-kde.override { - flavour = [ "mocha" ]; - accents = [ "sapphire" ]; + flavour = ["mocha"]; + accents = ["sapphire"]; }; description = "Catppuccin KDE package"; }; }; antigravity = { enable = lib.mkEnableOption "antigravity"; - package = lib.mkPackageOption pkgs "antigravity" { }; + package = lib.mkPackageOption pkgs "antigravity" {}; }; prismlauncher = { enable = lib.mkEnableOption "prismlauncher"; - package = lib.mkPackageOption pkgs "prismlauncher" { }; + package = lib.mkPackageOption pkgs "prismlauncher" {}; }; proton-ge = { enable = lib.mkEnableOption "proton-ge utils"; @@ -47,39 +45,39 @@ }; vlc = { enable = lib.mkEnableOption "vlc"; - package = lib.mkPackageOption pkgs "vlc" { }; + package = lib.mkPackageOption pkgs "vlc" {}; }; gimp = { enable = lib.mkEnableOption "gimp"; - package = lib.mkPackageOption pkgs "gimp" { }; + package = lib.mkPackageOption pkgs "gimp" {}; }; libreoffice = { enable = lib.mkEnableOption "libreoffice"; - package = lib.mkPackageOption pkgs "libreoffice-qt-fresh" { }; + package = lib.mkPackageOption pkgs "libreoffice-qt-fresh" {}; }; osu = { enable = lib.mkEnableOption "osu-lazer"; - package = lib.mkPackageOption pkgs "osu-lazer-bin" { }; + package = lib.mkPackageOption pkgs "osu-lazer-bin" {}; }; lmstudio = { enable = lib.mkEnableOption "lmstudio"; - package = lib.mkPackageOption pkgs "lmstudio" { }; + package = lib.mkPackageOption pkgs "lmstudio" {}; }; blender = { enable = lib.mkEnableOption "blender"; - package = lib.mkPackageOption pkgs "blender" { }; + package = lib.mkPackageOption pkgs "blender" {}; }; xprop = { enable = lib.mkEnableOption "xprop"; - package = lib.mkPackageOption pkgs "xprop" { }; + package = lib.mkPackageOption pkgs "xprop" {}; }; pavucontrol = { enable = lib.mkEnableOption "pavucontrol-qt"; - package = lib.mkPackageOption pkgs.lxqt "pavucontrol-qt" { }; + package = lib.mkPackageOption pkgs.lxqt "pavucontrol-qt" {}; }; nwg-look = { enable = lib.mkEnableOption "nwg-look"; - package = lib.mkPackageOption pkgs "nwg-look" { }; + package = lib.mkPackageOption pkgs "nwg-look" {}; }; proton-apps = { enable = lib.mkEnableOption "proton-pass and proton-authenticator"; @@ -100,7 +98,7 @@ }; cider = { enable = lib.mkEnableOption "cider-2"; - package = lib.mkPackageOption pkgs "cider-2" { }; + package = lib.mkPackageOption pkgs "cider-2" {}; }; }; } diff --git a/options/system/default.nix b/options/system/default.nix index 5a54b7a..b040e06 100644 --- a/options/system/default.nix +++ b/options/system/default.nix @@ -1,5 +1,4 @@ -{ lib, ... }: -{ +{lib, ...}: { imports = [ ./programs.nix ./file.nix diff --git a/options/system/environment.nix b/options/system/environment.nix index 88a471b..ca2bb8a 100644 --- a/options/system/environment.nix +++ b/options/system/environment.nix @@ -1,5 +1,4 @@ -{ lib, ... }: -{ +{lib, ...}: { options.device = { dm = { sddm = { diff --git a/options/system/file.nix b/options/system/file.nix index 1f4e476..ad464d2 100644 --- a/options/system/file.nix +++ b/options/system/file.nix @@ -1,23 +1,22 @@ -{ lib, ... }: -{ +{lib, ...}: { options.device.files = { symlink = lib.mkOption { - default = { }; + default = {}; type = lib.types.attrsOf lib.types.str; }; source = lib.mkOption { - default = { }; + default = {}; type = lib.types.attrsOf lib.types.path; }; force = lib.mkOption { - default = { }; + default = {}; type = lib.types.attrsOf lib.types.bool; }; mkForce = lib.mkOption { - default = { }; + default = {}; type = lib.types.attrsOf lib.types.bool; }; }; diff --git a/options/system/hardware.nix b/options/system/hardware.nix index 002a483..887dafc 100644 --- a/options/system/hardware.nix +++ b/options/system/hardware.nix @@ -1,5 +1,5 @@ -{ lib, ... }: { - options.device = { - bluetooth.enable = lib.mkEnableOption "bluetooth"; - }; -} \ No newline at end of file +{lib, ...}: { + options.device = { + bluetooth.enable = lib.mkEnableOption "bluetooth"; + }; +} diff --git a/options/system/programs.nix b/options/system/programs.nix index c7a95db..fadd929 100644 --- a/options/system/programs.nix +++ b/options/system/programs.nix @@ -1,5 +1,8 @@ -{ lib, pkgs, ... }: { + lib, + pkgs, + ... +}: { options.device.programs = { terminal = { enable = lib.mkEnableOption "terminal"; @@ -23,35 +26,35 @@ options.programs = { ffmpeg = { enable = lib.mkEnableOption "ffmpeg"; - package = lib.mkPackageOption pkgs "ffmpeg-full" { }; + package = lib.mkPackageOption pkgs "ffmpeg-full" {}; }; nodejs = { enable = lib.mkEnableOption "nodejs"; - package = lib.mkPackageOption pkgs "nodejs" { }; + package = lib.mkPackageOption pkgs "nodejs" {}; }; bun = { enable = lib.mkEnableOption "bun"; - package = lib.mkPackageOption pkgs "bun" { }; + package = lib.mkPackageOption pkgs "bun" {}; }; brightnessctl = { enable = lib.mkEnableOption "brightnessctl"; - package = lib.mkPackageOption pkgs "brightnessctl" { }; + package = lib.mkPackageOption pkgs "brightnessctl" {}; }; php = { enable = lib.mkEnableOption "php"; - package = lib.mkPackageOption pkgs "php" { }; + package = lib.mkPackageOption pkgs "php" {}; }; ntfs3g = { enable = lib.mkEnableOption "ntfs3g"; - package = lib.mkPackageOption pkgs "ntfs3g" { }; + package = lib.mkPackageOption pkgs "ntfs3g" {}; }; python = { enable = lib.mkEnableOption "python"; - package = lib.mkPackageOption pkgs "python3" { }; + package = lib.mkPackageOption pkgs "python3" {}; }; jdk = { enable = lib.mkEnableOption "jdk-25"; - package = lib.mkPackageOption pkgs "jdk25" { }; + package = lib.mkPackageOption pkgs "jdk25" {}; }; winepackages = { enable = lib.mkEnableOption "Wine and Proton utilities"; @@ -67,11 +70,11 @@ }; quickshell = { enable = lib.mkEnableOption "quickshell"; - package = lib.mkPackageOption pkgs "quickshell" { }; + package = lib.mkPackageOption pkgs "quickshell" {}; }; papirus-icons = { enable = lib.mkEnableOption "papirus-icon-theme"; - package = lib.mkPackageOption pkgs "papirus-icon-theme" { }; + package = lib.mkPackageOption pkgs "papirus-icon-theme" {}; }; kde-packages = { enable = lib.mkEnableOption "KDE utility packages"; diff --git a/overlays/nixpkgs.nix b/overlays/nixpkgs.nix index 837a83e..5960324 100644 --- a/overlays/nixpkgs.nix +++ b/overlays/nixpkgs.nix @@ -1,6 +1,6 @@ -{ inputs, ... }: { - nixpkgs.overlays = [ - inputs.niri.overlays.niri - inputs.dolphin-overlay.overlays.default - ]; -} \ No newline at end of file +{inputs, ...}: { + nixpkgs.overlays = [ + inputs.niri.overlays.niri + inputs.dolphin-overlay.overlays.default + ]; +} diff --git a/packages/bun.nix b/packages/bun.nix index ac08808..ccaae4a 100755 --- a/packages/bun.nix +++ b/packages/bun.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{pkgs, ...}: pkgs.stdenv.mkDerivation rec { pname = "bun"; version = "1.3.10"; diff --git a/packages/cage-xtmapper-0.1.5.nix b/packages/cage-xtmapper-0.1.5.nix index 9e6d3d1..1eb12cd 100644 --- a/packages/cage-xtmapper-0.1.5.nix +++ b/packages/cage-xtmapper-0.1.5.nix @@ -1,48 +1,46 @@ -{ pkgs, ... }: -let +{pkgs, ...}: let RELEASE_VERSION = "20260208"; PACKAGE_VERSION = "0.1.5"; in -pkgs.stdenv.mkDerivation rec { - pname = "cage-xtmapper"; - version = PACKAGE_VERSION; + pkgs.stdenv.mkDerivation { + pname = "cage-xtmapper"; + version = PACKAGE_VERSION; - src = pkgs.fetchurl { - url = "https://github.com/Xtr126/cage-xtmapper/releases/download/v${RELEASE_VERSION}/cage-xtmapper-v${PACKAGE_VERSION}.tar"; - hash = "sha256-ZmdltOQInGbCBpf/e8D2sB9Rjt4wqd8wwuSFvryHfFA="; - }; + src = pkgs.fetchurl { + url = "https://github.com/Xtr126/cage-xtmapper/releases/download/v${RELEASE_VERSION}/cage-xtmapper-v${PACKAGE_VERSION}.tar"; + hash = "sha256-ZmdltOQInGbCBpf/e8D2sB9Rjt4wqd8wwuSFvryHfFA="; + }; - nativeBuildInputs = [ pkgs.autoPatchelfHook ]; + nativeBuildInputs = [pkgs.autoPatchelfHook]; - buildInputs = with pkgs; [ - wayland - libxkbcommon - pixman - libdrm - libGL - mesa - vulkan-loader - udev - seatd - libxcb-render-util - ]; + buildInputs = with pkgs; [ + wayland + libxkbcommon + pixman + libdrm + libGL + mesa + vulkan-loader + udev + seatd + libxcb-render-util + ]; - dontBuild = true; + dontBuild = true; - installPhase = '' - mkdir -p $out/bin - tar xvf $src - cp usr/local/bin/cage_xtmapper $out/bin/ - cp usr/local/bin/cage_xtmapper.sh $out/bin/ - chmod +x $out/bin/cage_xtmapper - chmod +x $out/bin/cage_xtmapper.sh - ''; - - meta = with pkgs.lib; { - description = "cage-xtmapper input mapping tool"; - homepage = "https://github.com/Xtr126/cage-xtmapper"; - license = licenses.mit; - platforms = platforms.linux; - }; -} + installPhase = '' + mkdir -p $out/bin + tar xvf $src + cp usr/local/bin/cage_xtmapper $out/bin/ + cp usr/local/bin/cage_xtmapper.sh $out/bin/ + chmod +x $out/bin/cage_xtmapper + chmod +x $out/bin/cage_xtmapper.sh + ''; + meta = with pkgs.lib; { + description = "cage-xtmapper input mapping tool"; + homepage = "https://github.com/Xtr126/cage-xtmapper"; + license = licenses.mit; + platforms = platforms.linux; + }; + } diff --git a/packages/cage-xtmapper-0.2.0.nix b/packages/cage-xtmapper-0.2.0.nix index dc8e95b..fae38c3 100644 --- a/packages/cage-xtmapper-0.2.0.nix +++ b/packages/cage-xtmapper-0.2.0.nix @@ -1,48 +1,46 @@ -{ pkgs, ... }: -let +{pkgs, ...}: let RELEASE_VERSION = "20260208"; PACKAGE_VERSION = "0.2.0"; in -pkgs.stdenv.mkDerivation rec { - pname = "cage-xtmapper"; - version = PACKAGE_VERSION; + pkgs.stdenv.mkDerivation { + pname = "cage-xtmapper"; + version = PACKAGE_VERSION; - src = pkgs.fetchurl { - url = "https://github.com/Xtr126/cage-xtmapper/releases/download/v${RELEASE_VERSION}/cage-xtmapper-v${PACKAGE_VERSION}.tar"; - hash = "sha256-F1C3KnTzTO1vEouixqO1xnsGmufRyAk+BiRlypNq4kQ="; - }; + src = pkgs.fetchurl { + url = "https://github.com/Xtr126/cage-xtmapper/releases/download/v${RELEASE_VERSION}/cage-xtmapper-v${PACKAGE_VERSION}.tar"; + hash = "sha256-F1C3KnTzTO1vEouixqO1xnsGmufRyAk+BiRlypNq4kQ="; + }; - nativeBuildInputs = [ pkgs.autoPatchelfHook ]; + nativeBuildInputs = [pkgs.autoPatchelfHook]; - buildInputs = with pkgs; [ - wayland - libxkbcommon - pixman - libdrm - libGL - mesa - vulkan-loader - udev - seatd - libxcb-render-util - ]; + buildInputs = with pkgs; [ + wayland + libxkbcommon + pixman + libdrm + libGL + mesa + vulkan-loader + udev + seatd + libxcb-render-util + ]; - dontBuild = true; + dontBuild = true; - installPhase = '' - mkdir -p $out/bin - tar xvf $src - cp usr/local/bin/cage_xtmapper $out/bin/ - cp usr/local/bin/cage_xtmapper.sh $out/bin/ - chmod +x $out/bin/cage_xtmapper - chmod +x $out/bin/cage_xtmapper.sh - ''; - - meta = with pkgs.lib; { - description = "cage-xtmapper input mapping tool"; - homepage = "https://github.com/Xtr126/cage-xtmapper"; - license = licenses.mit; - platforms = platforms.linux; - }; -} + installPhase = '' + mkdir -p $out/bin + tar xvf $src + cp usr/local/bin/cage_xtmapper $out/bin/ + cp usr/local/bin/cage_xtmapper.sh $out/bin/ + chmod +x $out/bin/cage_xtmapper + chmod +x $out/bin/cage_xtmapper.sh + ''; + meta = with pkgs.lib; { + description = "cage-xtmapper input mapping tool"; + homepage = "https://github.com/Xtr126/cage-xtmapper"; + license = licenses.mit; + platforms = platforms.linux; + }; + } diff --git a/packages/catppuccin-obs.nix b/packages/catppuccin-obs.nix index 0dcd502..fd668d5 100644 --- a/packages/catppuccin-obs.nix +++ b/packages/catppuccin-obs.nix @@ -1,4 +1,4 @@ -{ lib, pkgs, ... }: +{pkgs, ...}: pkgs.stdenv.mkDerivation { pname = "catppuccin-obs"; version = "main"; @@ -13,4 +13,3 @@ pkgs.stdenv.mkDerivation { cp -r $src/themes/* $out/ ''; } - diff --git a/packages/custom-cursors.nix b/packages/custom-cursors.nix index 2163719..b284b7c 100644 --- a/packages/custom-cursors.nix +++ b/packages/custom-cursors.nix @@ -1,31 +1,32 @@ { cursors ? "aemeath", size ? 48, -}: -let - _b = name: url: hash: { inherit name url hash; }; - _q = name: hash: { ${name} = _b name "https://static.asakiyuki.com/cursors/linux/${name}.tar.gz" hash; }; +}: let + _b = name: url: hash: {inherit name url hash;}; + _q = name: hash: {${name} = _b name "https://static.asakiyuki.com/cursors/linux/${name}.tar.gz" hash;}; - cursors-data = ( - _q "castorice" "sha256-nqAC+Itr+TXLGG8zYDBoBve+MeRckds5BM23DrsCTMM=" - // _q "aemeath" "sha256-0eEsUks5MwW4g5Xau24SgchX+LD9Ra3azAH0KL9JzQw=" - // _q "elysia" "sha256-mjDHklWrX5Pp/vejRQiMk0VA6afY04HXGyGD0PcopdI=" - // _q "cartethyia" "sha256-jYIDoX+rfUjw6LXrqE4y8j5IL0vByrrRkgRuz08Zy6U=" - ).${cursors}; + cursors-data = + ( + _q "castorice" "sha256-nqAC+Itr+TXLGG8zYDBoBve+MeRckds5BM23DrsCTMM=" + // _q "aemeath" "sha256-0eEsUks5MwW4g5Xau24SgchX+LD9Ra3azAH0KL9JzQw=" + // _q "elysia" "sha256-mjDHklWrX5Pp/vejRQiMk0VA6afY04HXGyGD0PcopdI=" + // _q "cartethyia" "sha256-jYIDoX+rfUjw6LXrqE4y8j5IL0vByrrRkgRuz08Zy6U=" + ).${ + cursors + }; in -{ pkgs, ... }: -{ - gtk.enable = true; - x11.enable = true; - name = cursors-data.name; - size = size; - package = pkgs.runCommand "moveUp" { } '' - mkdir -p $out/share/icons - ln -s ${ - pkgs.fetchzip { - url = cursors-data.url; - hash = cursors-data.hash; - } - } $out/share/icons/${cursors-data.name} - ''; -} + {pkgs, ...}: { + gtk.enable = true; + x11.enable = true; + name = cursors-data.name; + size = size; + package = pkgs.runCommand "moveUp" {} '' + mkdir -p $out/share/icons + ln -s ${ + pkgs.fetchzip { + url = cursors-data.url; + hash = cursors-data.hash; + } + } $out/share/icons/${cursors-data.name} + ''; + } diff --git a/packages/default.nix b/packages/default.nix index 5e6a3fa..fb7a1ff 100644 --- a/packages/default.nix +++ b/packages/default.nix @@ -1,7 +1,12 @@ -{ ... }@inputs: -{ - bun = import ./bun.nix; - cage-xtmapper = { version ? "0.2.0" }: import ./cage-xtmapper-${version}.nix; - catppuccin-obs = import ./catppuccin-obs.nix; - cursors = { name ? "aemeath", size ? 48 }: (import ./custom-cursors.nix { cursors = name; size = size; }); -} \ No newline at end of file +{...}: { + bun = import ./bun.nix; + cage-xtmapper = {version ? "0.2.0"}: import ./cage-xtmapper-${version}.nix; + catppuccin-obs = import ./catppuccin-obs.nix; + cursors = { + name ? "aemeath", + size ? 48, + }: (import ./custom-cursors.nix { + cursors = name; + size = size; + }); +} From d295ac2ea35aeb4857c92d7e036f5473f89bd671 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 14 Apr 2026 01:22:25 +0700 Subject: [PATCH 188/245] idk --- .vscode/settings.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 10b1817..9231f19 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,15 @@ { - "nixEnvSelector.suggestion": false + "nixEnvSelector.suggestion": false, + "nix.serverSettings": { + "nixd": { + "formatting": { + "command": ["alejandra"] + }, + "options": { + "nixos": { + "expr": "(builtins.getFlake \"/home/asakiyuki/nixos\").nixosConfigurations.ideapad-slim-5.options" + } + } + } + } } From d70ff2ea3f087ab26df08a8ea1c998ed2257e758 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 14 Apr 2026 01:26:40 +0700 Subject: [PATCH 189/245] rename folder from home to profiles --- .vscode/settings.json | 2 +- devices/home-server/hardware-configuration.nix | 2 +- devices/ideapad-slim-5/mount.nix | 2 +- host/desktop/default.nix | 2 +- host/server/default.nix | 4 ++-- modules/services/cloudflare-dyndns.nix | 2 +- modules/services/openssh.nix | 2 +- {home => profiles}/asakiyuki/configuration.nix | 0 {home => profiles}/asakiyuki/files.nix | 0 {home => profiles}/asakiyuki/programs.nix | 0 {home => profiles}/junko/configuration.nix | 0 11 files changed, 8 insertions(+), 8 deletions(-) rename {home => profiles}/asakiyuki/configuration.nix (100%) rename {home => profiles}/asakiyuki/files.nix (100%) rename {home => profiles}/asakiyuki/programs.nix (100%) rename {home => profiles}/junko/configuration.nix (100%) diff --git a/.vscode/settings.json b/.vscode/settings.json index 9231f19..d00dd3c 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -7,7 +7,7 @@ }, "options": { "nixos": { - "expr": "(builtins.getFlake \"/home/asakiyuki/nixos\").nixosConfigurations.ideapad-slim-5.options" + "expr": "(builtins.getFlake \"/profiles/asakiyuki/nixos\").nixosConfigurations.ideapad-slim-5.options" } } } diff --git a/devices/home-server/hardware-configuration.nix b/devices/home-server/hardware-configuration.nix index 34620a6..1a5df02 100644 --- a/devices/home-server/hardware-configuration.nix +++ b/devices/home-server/hardware-configuration.nix @@ -25,7 +25,7 @@ device = "/dev/disk/by-uuid/16cfcdf6-15bb-4b63-835f-044867999510"; fsType = "ext4"; }; - "/home/asakiyuki/HOST" = { + "/profiles/asakiyuki/HOST" = { device = "/dev/disk/by-uuid/414e2a24-605f-47c3-a325-8db8a4934329"; fsType = "ext4"; }; diff --git a/devices/ideapad-slim-5/mount.nix b/devices/ideapad-slim-5/mount.nix index 4c85d22..dff8085 100644 --- a/devices/ideapad-slim-5/mount.nix +++ b/devices/ideapad-slim-5/mount.nix @@ -11,7 +11,7 @@ ]; }; "/mnt/waydroid" = { - device = "/home/asakiyuki/.local/share/waydroid/data/media/0"; + device = "/profiles/asakiyuki/.local/share/waydroid/data/media/0"; fsType = "fuse.bindfs"; options = [ "mirror=1000" diff --git a/host/desktop/default.nix b/host/desktop/default.nix index eff94de..8c6bc80 100644 --- a/host/desktop/default.nix +++ b/host/desktop/default.nix @@ -33,7 +33,7 @@ (libs.root "/modules/features/system/docker.nix") (libs.root "/modules/features/system/upower.nix") - (libs.root "/home/asakiyuki/configuration.nix") + (libs.root "/profiles/asakiyuki/configuration.nix") (libs.root "/modules/services/pipewire.nix") (libs.root "/modules/home-manager.nix") diff --git a/host/server/default.nix b/host/server/default.nix index 77f414c..8859cdf 100644 --- a/host/server/default.nix +++ b/host/server/default.nix @@ -9,8 +9,8 @@ (libs.root "/modules/features/system/packages.nix") (libs.root "/modules/features/system/nix-dl.nix") - (libs.root "/home/asakiyuki/configuration.nix") - (libs.root "/home/junko/configuration.nix") + (libs.root "/profiles/asakiyuki/configuration.nix") + (libs.root "/profiles/junko/configuration.nix") (libs.root "/options/system/default.nix") (libs.root "/overlays/nixpkgs.nix") diff --git a/modules/services/cloudflare-dyndns.nix b/modules/services/cloudflare-dyndns.nix index f5bac76..a9935f1 100644 --- a/modules/services/cloudflare-dyndns.nix +++ b/modules/services/cloudflare-dyndns.nix @@ -1,7 +1,7 @@ {...}: { services.cloudflare-dyndns = { enable = true; - apiTokenFile = "/home/asakiyuki/.secret/CLOUDFLARE_TOKEN_KEY"; + apiTokenFile = "/profiles/asakiyuki/.secret/CLOUDFLARE_TOKEN_KEY"; frequency = "*:0/5"; proxied = true; ipv6 = false; diff --git a/modules/services/openssh.nix b/modules/services/openssh.nix index 4c61a20..5957ed2 100644 --- a/modules/services/openssh.nix +++ b/modules/services/openssh.nix @@ -3,7 +3,7 @@ enable = true; ports = [15523]; authorizedKeysInHomedir = true; - authorizedKeysFiles = ["/home/asakiyuki/.ssh/authorized_keys"]; + authorizedKeysFiles = ["/profiles/asakiyuki/.ssh/authorized_keys"]; settings = { AllowUsers = [ "asakiyuki" diff --git a/home/asakiyuki/configuration.nix b/profiles/asakiyuki/configuration.nix similarity index 100% rename from home/asakiyuki/configuration.nix rename to profiles/asakiyuki/configuration.nix diff --git a/home/asakiyuki/files.nix b/profiles/asakiyuki/files.nix similarity index 100% rename from home/asakiyuki/files.nix rename to profiles/asakiyuki/files.nix diff --git a/home/asakiyuki/programs.nix b/profiles/asakiyuki/programs.nix similarity index 100% rename from home/asakiyuki/programs.nix rename to profiles/asakiyuki/programs.nix diff --git a/home/junko/configuration.nix b/profiles/junko/configuration.nix similarity index 100% rename from home/junko/configuration.nix rename to profiles/junko/configuration.nix From 1adc687ff98b24c5b1d1e5c9bc5d3583e9da35f9 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 14 Apr 2026 01:45:58 +0700 Subject: [PATCH 190/245] rename from profiles to users --- .vscode/settings.json | 2 +- .../home-server/hardware-configuration.nix | 2 +- devices/ideapad-slim-5/mount.nix | 2 +- host/desktop/default.nix | 2 +- host/server/default.nix | 4 +-- modules/features/home/neovide.nix | 2 +- modules/services/cloudflare-dyndns.nix | 4 +-- modules/services/httpd.nix | 32 +++++++++++++++++++ modules/services/openssh.nix | 2 +- .../asakiyuki/configuration.nix | 0 {profiles => users}/asakiyuki/files.nix | 0 {profiles => users}/asakiyuki/programs.nix | 0 {profiles => users}/junko/configuration.nix | 0 13 files changed, 42 insertions(+), 10 deletions(-) create mode 100644 modules/services/httpd.nix rename {profiles => users}/asakiyuki/configuration.nix (100%) rename {profiles => users}/asakiyuki/files.nix (100%) rename {profiles => users}/asakiyuki/programs.nix (100%) rename {profiles => users}/junko/configuration.nix (100%) diff --git a/.vscode/settings.json b/.vscode/settings.json index d00dd3c..9231f19 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -7,7 +7,7 @@ }, "options": { "nixos": { - "expr": "(builtins.getFlake \"/profiles/asakiyuki/nixos\").nixosConfigurations.ideapad-slim-5.options" + "expr": "(builtins.getFlake \"/home/asakiyuki/nixos\").nixosConfigurations.ideapad-slim-5.options" } } } diff --git a/devices/home-server/hardware-configuration.nix b/devices/home-server/hardware-configuration.nix index 1a5df02..34620a6 100644 --- a/devices/home-server/hardware-configuration.nix +++ b/devices/home-server/hardware-configuration.nix @@ -25,7 +25,7 @@ device = "/dev/disk/by-uuid/16cfcdf6-15bb-4b63-835f-044867999510"; fsType = "ext4"; }; - "/profiles/asakiyuki/HOST" = { + "/home/asakiyuki/HOST" = { device = "/dev/disk/by-uuid/414e2a24-605f-47c3-a325-8db8a4934329"; fsType = "ext4"; }; diff --git a/devices/ideapad-slim-5/mount.nix b/devices/ideapad-slim-5/mount.nix index dff8085..4c85d22 100644 --- a/devices/ideapad-slim-5/mount.nix +++ b/devices/ideapad-slim-5/mount.nix @@ -11,7 +11,7 @@ ]; }; "/mnt/waydroid" = { - device = "/profiles/asakiyuki/.local/share/waydroid/data/media/0"; + device = "/home/asakiyuki/.local/share/waydroid/data/media/0"; fsType = "fuse.bindfs"; options = [ "mirror=1000" diff --git a/host/desktop/default.nix b/host/desktop/default.nix index 8c6bc80..2637dee 100644 --- a/host/desktop/default.nix +++ b/host/desktop/default.nix @@ -33,7 +33,7 @@ (libs.root "/modules/features/system/docker.nix") (libs.root "/modules/features/system/upower.nix") - (libs.root "/profiles/asakiyuki/configuration.nix") + (libs.root "/users/asakiyuki/configuration.nix") (libs.root "/modules/services/pipewire.nix") (libs.root "/modules/home-manager.nix") diff --git a/host/server/default.nix b/host/server/default.nix index 8859cdf..5118189 100644 --- a/host/server/default.nix +++ b/host/server/default.nix @@ -9,8 +9,8 @@ (libs.root "/modules/features/system/packages.nix") (libs.root "/modules/features/system/nix-dl.nix") - (libs.root "/profiles/asakiyuki/configuration.nix") - (libs.root "/profiles/junko/configuration.nix") + (libs.root "/users/asakiyuki/configuration.nix") + (libs.root "/users/junko/configuration.nix") (libs.root "/options/system/default.nix") (libs.root "/overlays/nixpkgs.nix") diff --git a/modules/features/home/neovide.nix b/modules/features/home/neovide.nix index cc64b6d..18a7d84 100644 --- a/modules/features/home/neovide.nix +++ b/modules/features/home/neovide.nix @@ -2,7 +2,7 @@ programs.neovide = { enable = true; settings = { - neovim-bin = "/etc/profiles/per-user/asakiyuki/bin/nvim"; + neovim-bin = "/etc/home/per-user/asakiyuki/bin/nvim"; }; }; } diff --git a/modules/services/cloudflare-dyndns.nix b/modules/services/cloudflare-dyndns.nix index a9935f1..1a0b1a6 100644 --- a/modules/services/cloudflare-dyndns.nix +++ b/modules/services/cloudflare-dyndns.nix @@ -1,8 +1,8 @@ {...}: { services.cloudflare-dyndns = { enable = true; - apiTokenFile = "/profiles/asakiyuki/.secret/CLOUDFLARE_TOKEN_KEY"; - frequency = "*:0/5"; + apiTokenFile = "/home/asakiyuki/.secret/CLOUDFLARE_TOKEN_KEY"; + frequency = ":0/5"; proxied = true; ipv6 = false; ipv4 = true; diff --git a/modules/services/httpd.nix b/modules/services/httpd.nix new file mode 100644 index 0000000..8e8a119 --- /dev/null +++ b/modules/services/httpd.nix @@ -0,0 +1,32 @@ +{...}: { + services.httpd = { + enable = true; + adminAddr = "vantrong2007vn@gmail.com"; + + user = "static"; + group = "public"; + + virtualHosts = { + localhost = { + documentRoot = "/host/PUBLIC"; + listen = [ + { + ip = "0.0.0.0"; + port = 37284; + } + ]; + extraConfig = '' + + Options -Indexes +FollowSymLinks + AllowOverride None + Require all granted + + + Require all denied + + + ''; + }; + }; + }; +} diff --git a/modules/services/openssh.nix b/modules/services/openssh.nix index 5957ed2..4c61a20 100644 --- a/modules/services/openssh.nix +++ b/modules/services/openssh.nix @@ -3,7 +3,7 @@ enable = true; ports = [15523]; authorizedKeysInHomedir = true; - authorizedKeysFiles = ["/profiles/asakiyuki/.ssh/authorized_keys"]; + authorizedKeysFiles = ["/home/asakiyuki/.ssh/authorized_keys"]; settings = { AllowUsers = [ "asakiyuki" diff --git a/profiles/asakiyuki/configuration.nix b/users/asakiyuki/configuration.nix similarity index 100% rename from profiles/asakiyuki/configuration.nix rename to users/asakiyuki/configuration.nix diff --git a/profiles/asakiyuki/files.nix b/users/asakiyuki/files.nix similarity index 100% rename from profiles/asakiyuki/files.nix rename to users/asakiyuki/files.nix diff --git a/profiles/asakiyuki/programs.nix b/users/asakiyuki/programs.nix similarity index 100% rename from profiles/asakiyuki/programs.nix rename to users/asakiyuki/programs.nix diff --git a/profiles/junko/configuration.nix b/users/junko/configuration.nix similarity index 100% rename from profiles/junko/configuration.nix rename to users/junko/configuration.nix From f5a25469d61987fa7be1d8695f4284285c9df2e1 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 14 Apr 2026 02:10:37 +0700 Subject: [PATCH 191/245] nothing --- .vscode/settings.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index 9231f19..283fd32 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,6 +1,7 @@ { "nixEnvSelector.suggestion": false, "nix.serverSettings": { + "nil": {}, "nixd": { "formatting": { "command": ["alejandra"] From 67cca1756e63bb503c3c82f4fb2a7df02ee8eb0b Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 14 Apr 2026 07:09:31 +0700 Subject: [PATCH 192/245] disable execute permission some nix files --- devices/ideapad-slim-5/configuration.nix | 0 devices/ideapad-slim-5/hardware-configuration.nix | 0 packages/bun.nix | 0 3 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 devices/ideapad-slim-5/configuration.nix mode change 100755 => 100644 devices/ideapad-slim-5/hardware-configuration.nix mode change 100755 => 100644 packages/bun.nix diff --git a/devices/ideapad-slim-5/configuration.nix b/devices/ideapad-slim-5/configuration.nix old mode 100755 new mode 100644 diff --git a/devices/ideapad-slim-5/hardware-configuration.nix b/devices/ideapad-slim-5/hardware-configuration.nix old mode 100755 new mode 100644 diff --git a/packages/bun.nix b/packages/bun.nix old mode 100755 new mode 100644 From f64e2d8fb1cf3d84f6dcf078736b3d3fc2f4f6e4 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 14 Apr 2026 09:49:40 +0700 Subject: [PATCH 193/245] add bluetuith --- flake.lock | 18 +++++++++--------- host/desktop/programs.nix | 1 + 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/flake.lock b/flake.lock index d32a79d..1b65f69 100644 --- a/flake.lock +++ b/flake.lock @@ -204,11 +204,11 @@ "xwayland-satellite-unstable": "xwayland-satellite-unstable" }, "locked": { - "lastModified": 1775877135, - "narHash": "sha256-nAqtUMy22olwyiOJB0CASVrbu5XB5+43GjlbIJ1KuvQ=", + "lastModified": 1776109195, + "narHash": "sha256-yug5v5OI5ixCYyAiqCbNrxfiyfvxvlsMr/tj3uyH51c=", "owner": "sodiboo", "repo": "niri-flake", - "rev": "f943da038fd668d435c2d17916577f295faa8839", + "rev": "8fcfcef0fc05ee826adf66225b27716131ed74af", "type": "github" }, "original": { @@ -355,11 +355,11 @@ }, "nixpkgs-stable": { "locked": { - "lastModified": 1775811116, - "narHash": "sha256-t+HZK42pB6N+i5RGbuy7Xluez/VvWbembBdvzsc23Ss=", + "lastModified": 1776067740, + "narHash": "sha256-B35lpsqnSZwn1Lmz06BpwF7atPgFmUgw1l8KAV3zpVQ=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "54170c54449ea4d6725efd30d719c5e505f1c10e", + "rev": "7e495b747b51f95ae15e74377c5ce1fe69c1765f", "type": "github" }, "original": { @@ -435,11 +435,11 @@ }, "nixpkgs_6": { "locked": { - "lastModified": 1775811116, - "narHash": "sha256-t+HZK42pB6N+i5RGbuy7Xluez/VvWbembBdvzsc23Ss=", + "lastModified": 1776067740, + "narHash": "sha256-B35lpsqnSZwn1Lmz06BpwF7atPgFmUgw1l8KAV3zpVQ=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "54170c54449ea4d6725efd30d719c5e505f1c10e", + "rev": "7e495b747b51f95ae15e74377c5ce1fe69c1765f", "type": "github" }, "original": { diff --git a/host/desktop/programs.nix b/host/desktop/programs.nix index 89d08df..27be825 100644 --- a/host/desktop/programs.nix +++ b/host/desktop/programs.nix @@ -17,6 +17,7 @@ }; home-manager.users.asakiyuki.programs = { + bluetuith.enable = true; lutris.enable = true; hyprshot.enable = true; catppuccin.enable = true; From 8910559700a601a1b67bba4cdaf8f0edc8d1eb63 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 14 Apr 2026 10:06:04 +0700 Subject: [PATCH 194/245] add dolphin.nix --- host/desktop/programs.nix | 1 + modules/features/home/ghostty.nix | 2 +- modules/features/home/packages.nix | 1 + options/home/programs.nix | 4 ++++ options/home/programs/dolphin.nix | 15 +++++++++++++++ options/system/programs.nix | 1 - 6 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 options/home/programs/dolphin.nix diff --git a/host/desktop/programs.nix b/host/desktop/programs.nix index 27be825..a3a137a 100644 --- a/host/desktop/programs.nix +++ b/host/desktop/programs.nix @@ -17,6 +17,7 @@ }; home-manager.users.asakiyuki.programs = { + dolphin.enable = true; bluetuith.enable = true; lutris.enable = true; hyprshot.enable = true; diff --git a/modules/features/home/ghostty.nix b/modules/features/home/ghostty.nix index c0ac6c0..cd6ed00 100644 --- a/modules/features/home/ghostty.nix +++ b/modules/features/home/ghostty.nix @@ -11,7 +11,7 @@ settings = { theme = "catppuccin-mocha"; - font-size = 10; + font-size = 9; font-family = "SauceCodePro NFP Bold"; window-width = 230; diff --git a/modules/features/home/packages.nix b/modules/features/home/packages.nix index 22a02f0..8dce78a 100644 --- a/modules/features/home/packages.nix +++ b/modules/features/home/packages.nix @@ -6,6 +6,7 @@ }: { home.packages = [ + (lib.mkIf config.programs.dolphin.enable config.programs.dolphin.package) (lib.mkIf config.programs.catppuccin.enable config.programs.catppuccin.package) (lib.mkIf config.programs.antigravity.enable config.programs.antigravity.package) diff --git a/options/home/programs.nix b/options/home/programs.nix index 2bcb373..9921bd2 100644 --- a/options/home/programs.nix +++ b/options/home/programs.nix @@ -4,6 +4,10 @@ inputs, ... }: { + imports = [ + ./programs/dolphin.nix + ]; + options.programs = { catppuccin = { enable = lib.mkEnableOption "catppuccin"; diff --git a/options/home/programs/dolphin.nix b/options/home/programs/dolphin.nix new file mode 100644 index 0000000..4a3a2df --- /dev/null +++ b/options/home/programs/dolphin.nix @@ -0,0 +1,15 @@ +{ + lib, + pkgs, + ... +}: { + options.programs = { + dolphin = { + enable = lib.mkEnableOption "dolphin"; + package = lib.mkOption { + type = lib.types.package; + default = pkgs.kdePackages.dolphin; + }; + }; + }; +} diff --git a/options/system/programs.nix b/options/system/programs.nix index fadd929..6e10dff 100644 --- a/options/system/programs.nix +++ b/options/system/programs.nix @@ -82,7 +82,6 @@ type = lib.types.listOf lib.types.package; default = with pkgs.kdePackages; [ kservice - dolphin kate qt5compat qtdeclarative From f360b98731e06a63799444524b7fa97ef5106eaf Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 14 Apr 2026 10:28:32 +0700 Subject: [PATCH 195/245] add dolphin --- host/desktop/device.nix | 6 +- modules/features/home/dolphin.nix | 16 ++ modules/features/home/packages.nix | 1 - options/home/programs/dolphin.nix | 386 ++++++++++++++++++++++++++++- users/asakiyuki/programs.nix | 1 + 5 files changed, 398 insertions(+), 12 deletions(-) create mode 100644 modules/features/home/dolphin.nix diff --git a/host/desktop/device.nix b/host/desktop/device.nix index 0ff53f4..3f7cb6f 100644 --- a/host/desktop/device.nix +++ b/host/desktop/device.nix @@ -51,9 +51,7 @@ in { flatpak.enable = true; files = { - force = { - ".config/dolphinrc" = true; - }; + force = {}; mkForce = { ".mozilla/firefox/default/search.json.mozlz4" = true; @@ -63,8 +61,6 @@ in { ".config/qt5ct/colors/Catppuccin-Mocha.conf" = "${pkgs.catppuccin-qt5ct}/share/qt5ct/colors/catppuccin-mocha-sapphire.conf"; ".config/qt6ct/colors/Catppuccin-Mocha.conf" = "${pkgs.catppuccin-qt5ct}/share/qt6ct/colors/catppuccin-mocha-sapphire.conf"; - ".config/dolphinrc" = libs.root "/configs/dolphinrc"; - ".local/share/kio/servicemenus/copy-server-public-url.desktop" = libs.root "/configs/services-menu/copy-server-public-url.desktop"; ".local/share/kio/servicemenus/open-with-code.desktop" = diff --git a/modules/features/home/dolphin.nix b/modules/features/home/dolphin.nix new file mode 100644 index 0000000..d51f2f5 --- /dev/null +++ b/modules/features/home/dolphin.nix @@ -0,0 +1,16 @@ +{ + lib, + config, + ... +}: { + home = { + packages = [ + (lib.mkIf config.programs.dolphin.enable config.programs.dolphin.package) + ]; + + file.".config/dolphinrc" = { + text = ""; + force = true; + }; + }; +} diff --git a/modules/features/home/packages.nix b/modules/features/home/packages.nix index 8dce78a..22a02f0 100644 --- a/modules/features/home/packages.nix +++ b/modules/features/home/packages.nix @@ -6,7 +6,6 @@ }: { home.packages = [ - (lib.mkIf config.programs.dolphin.enable config.programs.dolphin.package) (lib.mkIf config.programs.catppuccin.enable config.programs.catppuccin.package) (lib.mkIf config.programs.antigravity.enable config.programs.antigravity.package) diff --git a/options/home/programs/dolphin.nix b/options/home/programs/dolphin.nix index 4a3a2df..bb31087 100644 --- a/options/home/programs/dolphin.nix +++ b/options/home/programs/dolphin.nix @@ -3,12 +3,386 @@ pkgs, ... }: { - options.programs = { - dolphin = { - enable = lib.mkEnableOption "dolphin"; - package = lib.mkOption { - type = lib.types.package; - default = pkgs.kdePackages.dolphin; + options.programs.dolphin = { + enable = lib.mkEnableOption "dolphin"; + package = lib.mkOption { + type = lib.types.package; + default = pkgs.kdePackages.dolphin; + }; + + config = { + General = { + DoubleClickViewAction = lib.mkOption { + type = lib.types.str; + default = "edit_select_all"; + }; + DoubleClickViewCustomAction = lib.mkOption { + type = lib.types.str; + default = ""; + }; + EditableUrl = lib.mkOption { + type = lib.types.bool; + default = false; + }; + UrlCompletionMode = lib.mkOption { + type = lib.types.int; + default = 1; + }; + ShowFullPath = lib.mkOption { + type = lib.types.bool; + default = false; + }; + ShowFullPathInTitlebar = lib.mkOption { + type = lib.types.bool; + default = false; + }; + OpenExternallyCalledFolderInNewTab = lib.mkOption { + type = lib.types.bool; + default = false; + }; + AlwaysShowTabBar = lib.mkOption { + type = lib.types.bool; + default = false; + }; + ShowCloseButtonOnTabs = lib.mkOption { + type = lib.types.bool; + default = true; + }; + TabStyle = lib.mkOption { + type = lib.types.enum ["AutoSize" "FullWidth" "FixedSize"]; + default = "AutoSize"; + }; + Version = lib.mkOption { + type = lib.types.int; + default = 0; + }; + HomeUrl = lib.mkOption { + type = lib.types.str; + default = "~"; + }; + RememberOpenedTabs = lib.mkOption { + type = lib.types.bool; + default = true; + }; + SplitView = lib.mkOption { + type = lib.types.bool; + default = false; + }; + FilterBar = lib.mkOption { + type = lib.types.bool; + default = false; + }; + GlobalViewProps = lib.mkOption { + type = lib.types.bool; + default = true; + }; + BrowseThroughArchives = lib.mkOption { + type = lib.types.bool; + default = false; + }; + ConfirmClosingMultipleTabs = lib.mkOption { + type = lib.types.bool; + default = true; + }; + ConfirmClosingTerminalRunningProgram = lib.mkOption { + type = lib.types.bool; + default = true; + }; + RenameInline = lib.mkOption { + type = lib.types.bool; + default = true; + }; + ShowSelectionToggle = lib.mkOption { + type = lib.types.bool; + default = true; + }; + ShowPasteBarAfterCopying = lib.mkOption { + type = lib.types.bool; + default = true; + }; + UseTabForSwitchingSplitView = lib.mkOption { + type = lib.types.bool; + default = false; + }; + CloseSplitViewChoice = lib.mkOption { + type = lib.types.enum ["ActiveView" "InactiveView" "RightView"]; + default = "ActiveView"; + }; + OpenNewTabAfterLastTab = lib.mkOption { + type = lib.types.bool; + default = false; + }; + ShowToolTips = lib.mkOption { + type = lib.types.bool; + default = false; + }; + AutoExpandFolders = lib.mkOption { + type = lib.types.bool; + default = false; + }; + ShowStatusBar = lib.mkOption { + type = lib.types.enum ["Small" "FullWidth" "Disabled"]; + default = "Small"; + }; + ShowZoomSlider = lib.mkOption { + type = lib.types.bool; + default = false; + }; + LockPanels = lib.mkOption { + type = lib.types.bool; + default = true; + }; + EnlargeSmallPreviews = lib.mkOption { + type = lib.types.bool; + default = true; + }; + SortingChoice = lib.mkOption { + type = lib.types.enum ["NaturalSorting" "CaseInsensitiveSorting" "CaseSensitiveSorting"]; + default = "NaturalSorting"; + }; + HideXTrashFile = lib.mkOption { + type = lib.types.bool; + default = false; + }; + DynamicView = lib.mkOption { + type = lib.types.bool; + default = false; + }; + }; + + CompactMode = { + UseSystemFont = lib.mkOption { + type = lib.types.bool; + default = true; + }; + ViewFont = lib.mkOption { + type = lib.types.str; + default = "System Font"; + }; + IconSize = lib.mkOption { + type = lib.types.int; + default = 22; + }; + PreviewSize = lib.mkOption { + type = lib.types.int; + default = 48; + }; + MaximumTextWidthIndex = lib.mkOption { + type = lib.types.int; + default = 0; + }; + }; + + ContentDisplay = { + DirectorySizeMode = lib.mkOption { + type = lib.types.enum ["ContentCount" "ContentSize" "None"]; + default = "ContentCount"; + }; + RecursiveDirectorySizeLimit = lib.mkOption { + type = lib.types.int; + default = 10; + }; + UseShortRelativeDates = lib.mkOption { + type = lib.types.bool; + default = true; + }; + UsePermissionsFormat = lib.mkOption { + type = lib.types.enum ["SymbolicFormat" "NumericFormat" "CombinedFormat"]; + default = "SymbolicFormat"; + }; + ElidingMode = lib.mkOption { + type = lib.types.enum ["Right" "Middle"]; + default = "Middle"; + }; + }; + + ContextMenu = { + ShowCopyMoveMenu = lib.mkOption { + type = lib.types.bool; + default = false; + }; + ShowAddToPlaces = lib.mkOption { + type = lib.types.bool; + default = true; + }; + ShowSortBy = lib.mkOption { + type = lib.types.bool; + default = true; + }; + ShowViewMode = lib.mkOption { + type = lib.types.bool; + default = true; + }; + ShowOpenInNewTab = lib.mkOption { + type = lib.types.bool; + default = true; + }; + ShowOpenInNewWindow = lib.mkOption { + type = lib.types.bool; + default = true; + }; + ShowOpenInSplitView = lib.mkOption { + type = lib.types.bool; + default = true; + }; + ShowCopyLocation = lib.mkOption { + type = lib.types.bool; + default = true; + }; + ShowDuplicateHere = lib.mkOption { + type = lib.types.bool; + default = true; + }; + ShowOpenTerminal = lib.mkOption { + type = lib.types.bool; + default = true; + }; + ShowCopyToOtherSplitView = lib.mkOption { + type = lib.types.bool; + default = true; + }; + ShowMoveToOtherSplitView = lib.mkOption { + type = lib.types.bool; + default = true; + }; + }; + + DetailsMode = { + UseSystemFont = lib.mkOption { + type = lib.types.bool; + default = true; + }; + ViewFont = lib.mkOption { + type = lib.types.str; + default = "System Font"; + }; + IconSize = lib.mkOption { + type = lib.types.int; + default = 16; + }; + PreviewSize = lib.mkOption { + type = lib.types.int; + default = 48; + }; + ColumnPositions = lib.mkOption { + type = lib.types.str; + default = "0,1,2,3,4,5,6,7,8"; + }; + LeftPadding = lib.mkOption { + type = lib.types.int; + default = 20; + }; + RightPadding = lib.mkOption { + type = lib.types.int; + default = 20; + }; + HighlightEntireRow = lib.mkOption { + type = lib.types.bool; + default = true; + }; + ExpandableFolders = lib.mkOption { + type = lib.types.bool; + default = true; + }; + }; + + IconsMode = { + UseSystemFont = lib.mkOption { + type = lib.types.bool; + default = true; + }; + ViewFont = lib.mkOption { + type = lib.types.str; + default = "System Font"; + }; + IconSize = lib.mkOption { + type = lib.types.int; + default = 32; + }; + PreviewSize = lib.mkOption { + type = lib.types.int; + default = 64; + }; + TextWidthIndex = lib.mkOption { + type = lib.types.int; + default = 1; + }; + MaximumTextLines = lib.mkOption { + type = lib.types.int; + default = 3; + }; + }; + + Settings = { + HiddenFilesShown = lib.mkOption { + type = lib.types.bool; + default = false; + }; + }; + + Dolphin = { + Version = lib.mkOption { + type = lib.types.int; + default = -1; + }; + ViewMode = lib.mkOption { + type = lib.types.int; + default = 0; + }; + PreviewsShown = lib.mkOption { + type = lib.types.bool; + default = true; + }; + GroupedSorting = lib.mkOption { + type = lib.types.bool; + default = false; + }; + SortRole = lib.mkOption { + type = lib.types.str; + default = "text"; + }; + SortOrder = lib.mkOption { + type = lib.types.int; + default = 0; + }; + SortFoldersFirst = lib.mkOption { + type = lib.types.bool; + default = true; + }; + SortHiddenLast = lib.mkOption { + type = lib.types.bool; + default = false; + }; + VisibleRoles = lib.mkOption { + type = lib.types.listOf lib.types.str; + default = []; + }; + HeaderColumnWidths = lib.mkOption { + type = lib.types.str; + default = ""; + }; + }; + + NotificationMessages = { + ConfirmOpenManyFolders = lib.mkOption { + type = lib.types.bool; + default = true; + }; + ConfirmOpenManyTerminals = lib.mkOption { + type = lib.types.bool; + default = true; + }; + ConfirmRenameFileType = lib.mkOption { + type = lib.types.bool; + default = true; + }; + }; + + VersionControl = { + enabledPlugins = lib.mkOption { + type = lib.types.listOf lib.types.str; + default = []; + }; }; }; }; diff --git a/users/asakiyuki/programs.nix b/users/asakiyuki/programs.nix index ce921d9..2fcd88f 100644 --- a/users/asakiyuki/programs.nix +++ b/users/asakiyuki/programs.nix @@ -14,6 +14,7 @@ ../../modules/features/home/xdg.nix ../../modules/features/home/packages.nix ../../modules/features/home/git.nix + ../../modules/features/home/dolphin.nix ../../modules/programs/nixvim/_nixvim.nix ../../modules/programs/nixcord/default.nix From 787584f141dc4c2fb91ec87dac6c57ee63d5c8de Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 14 Apr 2026 10:49:57 +0700 Subject: [PATCH 196/245] idk --- configs/dolphinrc | 7 ------- modules/features/home/dolphin.nix | 22 +++++++++------------- options/home/programs/dolphin.nix | 29 ++++++++++++++++++++++++++--- users/asakiyuki/programs.nix | 1 - 4 files changed, 35 insertions(+), 24 deletions(-) delete mode 100644 configs/dolphinrc diff --git a/configs/dolphinrc b/configs/dolphinrc deleted file mode 100644 index c148bda..0000000 --- a/configs/dolphinrc +++ /dev/null @@ -1,7 +0,0 @@ -[General] -RememberOpenedTabs=false -ModifiedStartupSettings=true -FilterBar=true - -[ContextMenu] -ShowOpenTerminal=false \ No newline at end of file diff --git a/modules/features/home/dolphin.nix b/modules/features/home/dolphin.nix index d51f2f5..f9796d1 100644 --- a/modules/features/home/dolphin.nix +++ b/modules/features/home/dolphin.nix @@ -1,16 +1,12 @@ -{ - lib, - config, - ... -}: { - home = { - packages = [ - (lib.mkIf config.programs.dolphin.enable config.programs.dolphin.package) - ]; - - file.".config/dolphinrc" = { - text = ""; - force = true; +{...}: { + programs.dolphin.configs = { + General = { + RememberOpenedTabs = false; + ModifiedStartupSettings = true; + FilterBar = true; + }; + ContextMenu = { + ShowOpenTerminal = false; }; }; } diff --git a/options/home/programs/dolphin.nix b/options/home/programs/dolphin.nix index bb31087..be188fd 100644 --- a/options/home/programs/dolphin.nix +++ b/options/home/programs/dolphin.nix @@ -1,8 +1,27 @@ { lib, pkgs, + config, ... -}: { +}: let + sanitize = lib.mapAttrsRecursive ( + path: value: + if lib.isList value + then lib.concatStringsSep "," value + else value + ); +in { + config = lib.mkIf config.programs.dolphin.enable { + home.packages = [ + config.programs.dolphin.package + ]; + + home.file.".config/dolphinrc" = { + text = lib.generators.toINI {} (sanitize config.programs.dolphin.configs); + force = true; + }; + }; + options.programs.dolphin = { enable = lib.mkEnableOption "dolphin"; package = lib.mkOption { @@ -10,7 +29,7 @@ default = pkgs.kdePackages.dolphin; }; - config = { + configs = { General = { DoubleClickViewAction = lib.mkOption { type = lib.types.str; @@ -58,7 +77,7 @@ }; HomeUrl = lib.mkOption { type = lib.types.str; - default = "~"; + default = config.home.homeDirectory; }; RememberOpenedTabs = lib.mkOption { type = lib.types.bool; @@ -148,6 +167,10 @@ type = lib.types.bool; default = false; }; + ModifiedStartupSettings = lib.mkOption { + type = lib.types.bool; + default = false; + }; }; CompactMode = { diff --git a/users/asakiyuki/programs.nix b/users/asakiyuki/programs.nix index 2fcd88f..eee0c5e 100644 --- a/users/asakiyuki/programs.nix +++ b/users/asakiyuki/programs.nix @@ -3,7 +3,6 @@ ../../modules/features/home/ghostty.nix ../../modules/features/home/kitty.nix ../../modules/features/home/browsers.nix - # ../../modules/features/home/neovide.nix ../../modules/features/home/bash.nix ../../modules/features/home/starship.nix From ebe0bb1d7112e16d17fdadf33d855c43095cf4d8 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 14 Apr 2026 13:02:59 +0700 Subject: [PATCH 197/245] add yt-dlp.nix --- host/desktop/device.nix | 11 ----------- modules/features/home/dolphin.nix | 33 +++++++++++++++++++++++-------- modules/features/home/yt-dlp.nix | 6 ++++++ options/home/programs/dolphin.nix | 18 +++++++++++++---- users/asakiyuki/programs.nix | 1 + 5 files changed, 46 insertions(+), 23 deletions(-) create mode 100644 modules/features/home/yt-dlp.nix diff --git a/host/desktop/device.nix b/host/desktop/device.nix index 3f7cb6f..13d184b 100644 --- a/host/desktop/device.nix +++ b/host/desktop/device.nix @@ -60,17 +60,6 @@ in { source = { ".config/qt5ct/colors/Catppuccin-Mocha.conf" = "${pkgs.catppuccin-qt5ct}/share/qt5ct/colors/catppuccin-mocha-sapphire.conf"; ".config/qt6ct/colors/Catppuccin-Mocha.conf" = "${pkgs.catppuccin-qt5ct}/share/qt6ct/colors/catppuccin-mocha-sapphire.conf"; - - ".local/share/kio/servicemenus/copy-server-public-url.desktop" = - libs.root "/configs/services-menu/copy-server-public-url.desktop"; - ".local/share/kio/servicemenus/open-with-code.desktop" = - libs.root "/configs/services-menu/open-with-code.desktop"; - ".local/share/kio/servicemenus/open-with-nvim.desktop" = - libs.root "/configs/services-menu/open-with-nvim.desktop"; - ".local/share/kio/servicemenus/open-with-antigravity.desktop" = - libs.root "/configs/services-menu/open-with-antigravity.desktop"; - ".local/share/kio/servicemenus/open-ghostty-here.desktop" = - libs.root "/configs/services-menu/open-ghostty-here.desktop"; }; symlink = { diff --git a/modules/features/home/dolphin.nix b/modules/features/home/dolphin.nix index f9796d1..045591b 100644 --- a/modules/features/home/dolphin.nix +++ b/modules/features/home/dolphin.nix @@ -1,12 +1,29 @@ -{...}: { - programs.dolphin.configs = { - General = { - RememberOpenedTabs = false; - ModifiedStartupSettings = true; - FilterBar = true; +{libs, ...}: { + programs.dolphin = { + services-menu = { + copy-server-public-url = { + "Desktop Entry" = { + Type = "Service"; + ServiceTypes = "KonqPopupMenu/Plugin"; + MimeType = "all/allfiles"; + Actions = "CopyPublicURL"; + }; + "Desktop Action CopyPublicURL" = { + Name = "Copy location as URL"; + Icon = "org.kde.plasma.clipboard"; + Exec = "${libs.root "/scripts/copy-public-url.sh"} \"%F\""; + }; + }; }; - ContextMenu = { - ShowOpenTerminal = false; + configs = { + General = { + RememberOpenedTabs = false; + ModifiedStartupSettings = true; + FilterBar = true; + }; + ContextMenu = { + ShowOpenTerminal = false; + }; }; }; } diff --git a/modules/features/home/yt-dlp.nix b/modules/features/home/yt-dlp.nix new file mode 100644 index 0000000..e77c986 --- /dev/null +++ b/modules/features/home/yt-dlp.nix @@ -0,0 +1,6 @@ +{...}: { + programs.yt-dlp = { + enable = true; + settings = {}; + }; +} diff --git a/options/home/programs/dolphin.nix b/options/home/programs/dolphin.nix index be188fd..18126f0 100644 --- a/options/home/programs/dolphin.nix +++ b/options/home/programs/dolphin.nix @@ -16,10 +16,15 @@ in { config.programs.dolphin.package ]; - home.file.".config/dolphinrc" = { - text = lib.generators.toINI {} (sanitize config.programs.dolphin.configs); - force = true; - }; + home.file = lib.mergeAttrsList [ + { + ".config/dolphinrc" = { + text = lib.generators.toINI {} (sanitize config.programs.dolphin.configs); + force = true; + }; + } + # (lib.attrsToList config.programs.dolphin.services-menu)z + ]; }; options.programs.dolphin = { @@ -408,5 +413,10 @@ in { }; }; }; + + services-menu = lib.mkOption { + type = lib.types.attrsOf (lib.types.attrsOf lib.types.str); + default = {}; + }; }; } diff --git a/users/asakiyuki/programs.nix b/users/asakiyuki/programs.nix index eee0c5e..7aa1439 100644 --- a/users/asakiyuki/programs.nix +++ b/users/asakiyuki/programs.nix @@ -13,6 +13,7 @@ ../../modules/features/home/xdg.nix ../../modules/features/home/packages.nix ../../modules/features/home/git.nix + ../../modules/features/home/yt-dlp.nix ../../modules/features/home/dolphin.nix ../../modules/programs/nixvim/_nixvim.nix From ec6638af5d41f0407f127709696222e09adcc31e Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 14 Apr 2026 13:10:20 +0700 Subject: [PATCH 198/245] add yt-dlp config --- modules/features/home/yt-dlp.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/features/home/yt-dlp.nix b/modules/features/home/yt-dlp.nix index e77c986..c8c8fa4 100644 --- a/modules/features/home/yt-dlp.nix +++ b/modules/features/home/yt-dlp.nix @@ -1,6 +1,8 @@ {...}: { programs.yt-dlp = { enable = true; - settings = {}; + extraConfig = '' + -o ~/Downloads/yt-dlp/%(title)s.%(ext)s + ''; }; } From cd6fe73b8e3f4873958881e551696b494ed8467f Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 14 Apr 2026 18:04:50 +0700 Subject: [PATCH 199/245] r --- host/desktop/device.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/host/desktop/device.nix b/host/desktop/device.nix index 13d184b..7cd7215 100644 --- a/host/desktop/device.nix +++ b/host/desktop/device.nix @@ -1,6 +1,5 @@ { lib, - libs, pkgs, ... }: let From f7a4fc0d8d568099231075bc0c7cc0008efca697 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 14 Apr 2026 22:30:56 +0700 Subject: [PATCH 200/245] add dolphin services menu --- .../copy-server-public-url.desktop | 10 ---- .../services-menu/open-ghostty-here.desktop | 10 ---- .../open-with-antigravity.desktop | 10 ---- configs/services-menu/open-with-code.desktop | 10 ---- configs/services-menu/open-with-nvim.desktop | 10 ---- modules/features/home/dolphin.nix | 59 +++++++++++++++++++ options/home/programs/dolphin.nix | 14 ++++- 7 files changed, 71 insertions(+), 52 deletions(-) delete mode 100644 configs/services-menu/copy-server-public-url.desktop delete mode 100644 configs/services-menu/open-ghostty-here.desktop delete mode 100644 configs/services-menu/open-with-antigravity.desktop delete mode 100644 configs/services-menu/open-with-code.desktop delete mode 100644 configs/services-menu/open-with-nvim.desktop diff --git a/configs/services-menu/copy-server-public-url.desktop b/configs/services-menu/copy-server-public-url.desktop deleted file mode 100644 index 785d36c..0000000 --- a/configs/services-menu/copy-server-public-url.desktop +++ /dev/null @@ -1,10 +0,0 @@ -[Desktop Entry] -Type=Service -ServiceTypes=KonqPopupMenu/Plugin -MimeType=all/allfiles; -Actions=CopyPublicURL - -[Desktop Action CopyPublicURL] -Name=Copy location as URL -Icon=org.kde.plasma.clipboard -Exec=/etc/nixos/scripts/copy-public-url.sh "%F" \ No newline at end of file diff --git a/configs/services-menu/open-ghostty-here.desktop b/configs/services-menu/open-ghostty-here.desktop deleted file mode 100644 index 0385aca..0000000 --- a/configs/services-menu/open-ghostty-here.desktop +++ /dev/null @@ -1,10 +0,0 @@ -[Desktop Entry] -Type=Service -ServiceTypes=KonqPopupMenu/Plugin -MimeType=inode/directory -Actions=RunGhosttyDir - -[Desktop Action RunGhosttyDir] -Name=Open Ghostty here -Icon=com.mitchellh.ghostty -Exec=ghostty +new-window --working-directory="%F" \ No newline at end of file diff --git a/configs/services-menu/open-with-antigravity.desktop b/configs/services-menu/open-with-antigravity.desktop deleted file mode 100644 index 536c45d..0000000 --- a/configs/services-menu/open-with-antigravity.desktop +++ /dev/null @@ -1,10 +0,0 @@ -[Desktop Entry] -Type=Service -ServiceTypes=KonqPopupMenu/Plugin -MimeType=inode/directory -Actions=RunCodeDir - -[Desktop Action RunCodeDir] -Name=Open with Antigravity -Icon=antigravity -Exec=antigravity %F \ No newline at end of file diff --git a/configs/services-menu/open-with-code.desktop b/configs/services-menu/open-with-code.desktop deleted file mode 100644 index 0d41a8e..0000000 --- a/configs/services-menu/open-with-code.desktop +++ /dev/null @@ -1,10 +0,0 @@ -[Desktop Entry] -Type=Service -ServiceTypes=KonqPopupMenu/Plugin -MimeType=inode/directory -Actions=RunCodeDir - -[Desktop Action RunCodeDir] -Name=Open with Code -Icon=vscode -Exec=code %F \ No newline at end of file diff --git a/configs/services-menu/open-with-nvim.desktop b/configs/services-menu/open-with-nvim.desktop deleted file mode 100644 index f2e4926..0000000 --- a/configs/services-menu/open-with-nvim.desktop +++ /dev/null @@ -1,10 +0,0 @@ -[Desktop Entry] -Type=Service -ServiceTypes=KonqPopupMenu/Plugin -MimeType=inode/directory -Actions=RunCodeDir - -[Desktop Action RunCodeDir] -Name=Open with Nvim -Icon=nvim -Exec=ghostty +new-window --working-directory="~/.config" -e nvim . \ No newline at end of file diff --git a/modules/features/home/dolphin.nix b/modules/features/home/dolphin.nix index 045591b..8e64c08 100644 --- a/modules/features/home/dolphin.nix +++ b/modules/features/home/dolphin.nix @@ -14,6 +14,65 @@ Exec = "${libs.root "/scripts/copy-public-url.sh"} \"%F\""; }; }; + + open-ghostty-here = { + "Desktop Entry" = { + Type = "Service"; + ServiceTypes = "KonqPopupMenu/Plugin"; + MimeType = "inode/directory"; + Actions = "RunGhosttyDir"; + }; + "Desktop Action RunGhosttyDir" = { + Name = "Open Ghostty here"; + Icon = "com.mitchellh.ghostty"; + Exec = "ghostty +new-window --working-directory=\"%F\""; + }; + }; + + open-with-antigravity = { + "Desktop Entry" = { + Type = "Service"; + ServiceTypes = "KonqPopupMenu/Plugin"; + MimeType = "inode/directory"; + Actions = "RunCodeDir"; + }; + + "Desktop Action RunCodeDir" = { + Name = "Open with Antigravity"; + Icon = "antigravity"; + Exec = "antigravity \"%F\""; + }; + }; + + open-with-code = { + "Desktop Entry" = { + Type = "Service"; + ServiceTypes = "KonqPopupMenu/Plugin"; + MimeType = "inode/directory"; + Actions = "RunCodeDir"; + }; + + "Desktop Action RunCodeDir" = { + Name = "Open with Code"; + Icon = "vscode"; + Exec = "vscode \"%F\""; + }; + }; + + open-with-nvim = { + "Desktop Entry" = { + Type = "Service"; + ServiceTypes = "KonqPopupMenu/Plugin"; + MimeType = "inode/directory"; + Actions = "RunCodeDir"; + }; + + "Desktop Action RunCodeDir" = { + Name = "Open with Nvim"; + Icon = "nvim"; + Exec = "ghostty +new-window --working-directory=\"~/.config\" -e nvim ."; + }; + }; }; configs = { General = { diff --git a/options/home/programs/dolphin.nix b/options/home/programs/dolphin.nix index 18126f0..797a726 100644 --- a/options/home/programs/dolphin.nix +++ b/options/home/programs/dolphin.nix @@ -23,7 +23,17 @@ in { force = true; }; } - # (lib.attrsToList config.programs.dolphin.services-menu)z + (builtins.listToAttrs (builtins.map + ({ + name, + value, + }: { + name = ".local/share/kio/servicemenus/${name}.desktop"; + value = { + text = lib.generators.toINI {} value; + }; + }) + (lib.attrsToList config.programs.dolphin.services-menu))) ]; }; @@ -415,7 +425,7 @@ in { }; services-menu = lib.mkOption { - type = lib.types.attrsOf (lib.types.attrsOf lib.types.str); + type = lib.types.attrsOf (lib.types.attrsOf (lib.types.attrsOf lib.types.str)); default = {}; }; }; From dfc31ec3b0221c47b8a4858fbaf4a9acb186458a Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 14 Apr 2026 22:36:21 +0700 Subject: [PATCH 201/245] update lock --- flake.lock | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/flake.lock b/flake.lock index 1b65f69..b48638d 100644 --- a/flake.lock +++ b/flake.lock @@ -204,11 +204,11 @@ "xwayland-satellite-unstable": "xwayland-satellite-unstable" }, "locked": { - "lastModified": 1776109195, - "narHash": "sha256-yug5v5OI5ixCYyAiqCbNrxfiyfvxvlsMr/tj3uyH51c=", + "lastModified": 1776154571, + "narHash": "sha256-ui0v96pzemkAxzcrUnfsul+aFTKaVSqBdSx57BqoV0E=", "owner": "sodiboo", "repo": "niri-flake", - "rev": "8fcfcef0fc05ee826adf66225b27716131ed74af", + "rev": "d48cefadf880406bc53c9fbdd1ab62369f341201", "type": "github" }, "original": { @@ -237,11 +237,11 @@ "niri-unstable": { "flake": false, "locked": { - "lastModified": 1775561155, - "narHash": "sha256-TK2IrqQivRcwqJa0suZMbcsN17CtA8Uu0v7CDnLATb0=", + "lastModified": 1776150157, + "narHash": "sha256-mlPY8xgVPfTDNZD6Kd5VJBsIXxOTbCkEakxofvKO39w=", "owner": "YaLTeR", "repo": "niri", - "rev": "599db847f857b8a7ff78ce02f15acab5d5d9fee1", + "rev": "874e7fd70e443fecdd4620ce589f509ceb7d8f25", "type": "github" }, "original": { @@ -278,11 +278,11 @@ "nixpkgs-nixcord": "nixpkgs-nixcord" }, "locked": { - "lastModified": 1776024431, - "narHash": "sha256-FALazpSmCflBfFAhDRaS0mK5wITcW2VQq8zchcx7/lk=", + "lastModified": 1776156493, + "narHash": "sha256-pKZWGJYX3iIt9g/DEkivx7vDDGtk2L8yEVD3nzk0lqQ=", "owner": "FlameFlag", "repo": "nixcord", - "rev": "14e6c9ea6a359b81663953af53f1d943c0d29f57", + "rev": "639293b2c68261321b0d807212aa424a65d9aa07", "type": "github" }, "original": { From 04620a468387aab2d6a94e5c807f40980e7333bb Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Wed, 15 Apr 2026 10:33:16 +0700 Subject: [PATCH 202/245] change vscode to code service menus --- modules/features/home/dolphin.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/features/home/dolphin.nix b/modules/features/home/dolphin.nix index 8e64c08..606a9d7 100644 --- a/modules/features/home/dolphin.nix +++ b/modules/features/home/dolphin.nix @@ -55,7 +55,7 @@ "Desktop Action RunCodeDir" = { Name = "Open with Code"; Icon = "vscode"; - Exec = "vscode \"%F\""; + Exec = "code \"%F\""; }; }; From ca4e3f77b7e835af8bda03ccd171f4259d799bd3 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Wed, 15 Apr 2026 10:44:52 +0700 Subject: [PATCH 203/245] add wingdk --- modules/features/system/packages.nix | 2 ++ packages/default.nix | 1 + packages/winegdk.nix | 14 ++++++++++++++ 3 files changed, 17 insertions(+) create mode 100644 packages/winegdk.nix diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix index f9010f8..6e2325e 100644 --- a/modules/features/system/packages.nix +++ b/modules/features/system/packages.nix @@ -2,6 +2,7 @@ pkgs, lib, config, + libs, ... }: { environment.systemPackages = with pkgs; @@ -18,6 +19,7 @@ zip unzip + (libs.root "/packages/winegdk.nix") (lib.mkIf config.programs.ffmpeg.enable config.programs.ffmpeg.package) (lib.mkIf config.programs.nodejs.enable config.programs.nodejs.package) (lib.mkIf config.programs.bun.enable config.programs.bun.package) diff --git a/packages/default.nix b/packages/default.nix index fb7a1ff..ff68c0a 100644 --- a/packages/default.nix +++ b/packages/default.nix @@ -9,4 +9,5 @@ cursors = name; size = size; }); + winegdk = import ./winegdk.nix; } diff --git a/packages/winegdk.nix b/packages/winegdk.nix new file mode 100644 index 0000000..1b6e579 --- /dev/null +++ b/packages/winegdk.nix @@ -0,0 +1,14 @@ +{ + stdenv, + fetchFromGitHub, +}: +stdenv.mkDerivation { + pname = "winegdk"; + version = "1.0.0"; + src = fetchFromGitHub { + owner = "Weather-OS"; + repo = "winegdk"; + rev = "5cffa07a43a61a2fd1695d714b85b5b44852d55b"; + sha256 = "000000000000000000000000000000000000000000000000000"; + }; +} From c0b9b51f5632969cdeb7011c92531d698f66b3f9 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Wed, 15 Apr 2026 13:26:06 +0700 Subject: [PATCH 204/245] add winegdk and install cage-xtmapper --- flake.lock | 88 +++++++++++++++++++++++++++- flake.nix | 1 + host/desktop/programs.nix | 1 + modules/features/home/packages.nix | 1 + modules/features/system/packages.nix | 5 +- options/home/programs.nix | 4 ++ options/system/programs.nix | 1 + packages/default.nix | 1 - packages/winegdk.nix | 14 ----- 9 files changed, 98 insertions(+), 18 deletions(-) delete mode 100644 packages/winegdk.nix diff --git a/flake.lock b/flake.lock index b48638d..b81af82 100644 --- a/flake.lock +++ b/flake.lock @@ -107,6 +107,24 @@ "type": "github" } }, + "flake-utils_3": { + "inputs": { + "systems": "systems_4" + }, + "locked": { + "lastModified": 1731533236, + "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, "home-manager": { "inputs": { "nixpkgs": [ @@ -449,6 +467,22 @@ "type": "github" } }, + "nixpkgs_7": { + "locked": { + "lastModified": 1762361079, + "narHash": "sha256-lz718rr1BDpZBYk7+G8cE6wee3PiBUpn8aomG/vLLiY=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "ffcdcf99d65c61956d882df249a9be53e5902ea5", + "type": "github" + }, + "original": { + "owner": "nixos", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, "nixvim": { "inputs": { "flake-parts": "flake-parts_2", @@ -508,7 +542,8 @@ "nixos-hardware": "nixos-hardware", "nixpkgs": "nixpkgs_6", "nixvim": "nixvim", - "unstablepkgs": "unstablepkgs" + "unstablepkgs": "unstablepkgs", + "winegdk": "winegdk" } }, "systems": { @@ -556,6 +591,21 @@ "type": "github" } }, + "systems_4": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, "unstablepkgs": { "locked": { "lastModified": 1775710090, @@ -572,6 +622,42 @@ "type": "github" } }, + "winegdk": { + "inputs": { + "flake-utils": "flake-utils_3", + "nixpkgs": "nixpkgs_7", + "winegdk": "winegdk_2" + }, + "locked": { + "lastModified": 1762497139, + "narHash": "sha256-9QE4BJNtz0UgB5mWf+EgGZW9hrVdJyta/KlQJwh8IsQ=", + "owner": "fmbearmf", + "repo": "winegdk-nix", + "rev": "91356fdc0d1c004b8f57b79ddb5e771845dfe2c1", + "type": "github" + }, + "original": { + "owner": "fmbearmf", + "repo": "winegdk-nix", + "type": "github" + } + }, + "winegdk_2": { + "flake": false, + "locked": { + "lastModified": 1762457615, + "narHash": "sha256-Ja32uLvxCi1weDop+HCrSAagkMaNbSjoW1C720/D3cw=", + "owner": "Weather-OS", + "repo": "WineGDK", + "rev": "a82854dfa4b54ab935bc3ca69d4bd885c4a63186", + "type": "github" + }, + "original": { + "owner": "Weather-OS", + "repo": "WineGDK", + "type": "github" + } + }, "xwayland-satellite-stable": { "flake": false, "locked": { diff --git a/flake.nix b/flake.nix index cff00bd..5192817 100644 --- a/flake.nix +++ b/flake.nix @@ -10,6 +10,7 @@ niri.url = "github:sodiboo/niri-flake"; nixcord.url = "github:FlameFlag/nixcord"; dolphin-overlay.url = "github:rumboon/dolphin-overlay"; + winegdk.url = "github:fmbearmf/winegdk-nix"; honkai-railway-grub-theme.url = "github:voidlhf/StarRailGrubThemes/4a84e576bb544afbdfc76dbe40ffc50a5c2b16de"; diff --git a/host/desktop/programs.nix b/host/desktop/programs.nix index a3a137a..d42b1d4 100644 --- a/host/desktop/programs.nix +++ b/host/desktop/programs.nix @@ -40,5 +40,6 @@ firefox.enable = true; chromium.enable = true; gcc.enable = true; + davinci-resolve.enable = true; }; } diff --git a/modules/features/home/packages.nix b/modules/features/home/packages.nix index 22a02f0..0d1f9b8 100644 --- a/modules/features/home/packages.nix +++ b/modules/features/home/packages.nix @@ -17,6 +17,7 @@ (lib.mkIf config.programs.lmstudio.enable config.programs.lmstudio.package) (lib.mkIf config.programs.blender.enable config.programs.blender.package) (lib.mkIf config.programs.xprop.enable config.programs.xprop.package) + (lib.mkIf config.programs.davinci-resolve.enable config.programs.davinci-resolve.package) (lib.mkIf config.programs.pavucontrol.enable config.programs.pavucontrol.package) (lib.mkIf config.programs.nwg-look.enable config.programs.nwg-look.package) diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix index 6e2325e..ff00fc8 100644 --- a/modules/features/system/packages.nix +++ b/modules/features/system/packages.nix @@ -2,7 +2,7 @@ pkgs, lib, config, - libs, + custom, ... }: { environment.systemPackages = with pkgs; @@ -19,7 +19,8 @@ zip unzip - (libs.root "/packages/winegdk.nix") + (pkgs.callPackage (custom.cage-xtmapper {}) {}) + (lib.mkIf config.programs.ffmpeg.enable config.programs.ffmpeg.package) (lib.mkIf config.programs.nodejs.enable config.programs.nodejs.package) (lib.mkIf config.programs.bun.enable config.programs.bun.package) diff --git a/options/home/programs.nix b/options/home/programs.nix index 9921bd2..f726552 100644 --- a/options/home/programs.nix +++ b/options/home/programs.nix @@ -93,6 +93,10 @@ ]; }; }; + davinci-resolve = { + enable = lib.mkEnableOption "davinci-resolve"; + package = lib.mkPackageOption pkgs "davinci-resolve" {}; + }; hytale = { enable = lib.mkEnableOption "hytale-launcher"; package = lib.mkOption { diff --git a/options/system/programs.nix b/options/system/programs.nix index 6e10dff..a3e2280 100644 --- a/options/system/programs.nix +++ b/options/system/programs.nix @@ -1,4 +1,5 @@ { + inputs, lib, pkgs, ... diff --git a/packages/default.nix b/packages/default.nix index ff68c0a..fb7a1ff 100644 --- a/packages/default.nix +++ b/packages/default.nix @@ -9,5 +9,4 @@ cursors = name; size = size; }); - winegdk = import ./winegdk.nix; } diff --git a/packages/winegdk.nix b/packages/winegdk.nix deleted file mode 100644 index 1b6e579..0000000 --- a/packages/winegdk.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ - stdenv, - fetchFromGitHub, -}: -stdenv.mkDerivation { - pname = "winegdk"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "Weather-OS"; - repo = "winegdk"; - rev = "5cffa07a43a61a2fd1695d714b85b5b44852d55b"; - sha256 = "000000000000000000000000000000000000000000000000000"; - }; -} From 3c815e19f7e11bf2a456775d1f745d58d522854f Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Wed, 15 Apr 2026 13:33:54 +0700 Subject: [PATCH 205/245] refactor packages.nix tree --- modules/features/system/packages.nix | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix index ff00fc8..b411c07 100644 --- a/modules/features/system/packages.nix +++ b/modules/features/system/packages.nix @@ -18,8 +18,9 @@ zip unzip - - (pkgs.callPackage (custom.cage-xtmapper {}) {}) + ] + ++ [ + (lib.mkIf config.virtualisation.waydroid.enable (pkgs.callPackage (custom.cage-xtmapper {}) {})) (lib.mkIf config.programs.ffmpeg.enable config.programs.ffmpeg.package) (lib.mkIf config.programs.nodejs.enable config.programs.nodejs.package) @@ -33,12 +34,14 @@ (lib.mkIf config.programs.quickshell.enable config.programs.quickshell.package) (lib.mkIf config.programs.papirus-icons.enable config.programs.papirus-icons.package) ] - ++ (lib.optionals config.programs.gcc.enable config.programs.gcc.packages) - ++ (lib.optionals config.programs.winepackages.enable config.programs.winepackages.packages) - ++ (lib.optionals config.programs.kde-packages.enable config.programs.kde-packages.packages) - ++ (lib.optionals config.programs.r-tensorflow.enable [config.programs.r-tensorflow.package]) - ++ (lib.optionals ( - config.programs.hyprland-portals.enable && config.device.wm.hyprland.enable - ) - config.programs.hyprland-portals.packages); + ++ lib.concatLists [ + (lib.optionals config.programs.gcc.enable config.programs.gcc.packages) + (lib.optionals config.programs.winepackages.enable config.programs.winepackages.packages) + (lib.optionals config.programs.kde-packages.enable config.programs.kde-packages.packages) + (lib.optionals config.programs.r-tensorflow.enable [config.programs.r-tensorflow.package]) + (lib.optionals ( + config.programs.hyprland-portals.enable && config.device.wm.hyprland.enablez + ) + config.programs.hyprland-portals.packages) + ]; } From b25a4d19d29636a92761692106c96b366b6045f1 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Wed, 15 Apr 2026 14:03:53 +0700 Subject: [PATCH 206/245] fix --- modules/features/system/packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix index b411c07..e5ead8e 100644 --- a/modules/features/system/packages.nix +++ b/modules/features/system/packages.nix @@ -40,7 +40,7 @@ (lib.optionals config.programs.kde-packages.enable config.programs.kde-packages.packages) (lib.optionals config.programs.r-tensorflow.enable [config.programs.r-tensorflow.package]) (lib.optionals ( - config.programs.hyprland-portals.enable && config.device.wm.hyprland.enablez + config.programs.hyprland-portals.enable && config.device.wm.hyprland.enable ) config.programs.hyprland-portals.packages) ]; From bc5a78e1553147d6c3b1fddfc011a33a4a2026c7 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 17 Apr 2026 15:27:48 +0700 Subject: [PATCH 207/245] edit windows borders --- modules/programs/hyprland/settings/theme.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/programs/hyprland/settings/theme.nix b/modules/programs/hyprland/settings/theme.nix index fbd036a..bbcd6ed 100644 --- a/modules/programs/hyprland/settings/theme.nix +++ b/modules/programs/hyprland/settings/theme.nix @@ -1,8 +1,8 @@ {...}: { wayland.windowManager.hyprland.settings = { general = { - gaps_in = 5; - gaps_out = 10; + gaps_in = 3; + gaps_out = 8; border_size = 1; "col.active_border" = "rgb(cdd6f4)"; "col.inactive_border" = "rgb(7f849c)"; @@ -11,8 +11,8 @@ }; decoration = { - rounding = 5; - rounding_power = 5; + rounding = 13; + rounding_power = 10; active_opacity = 1; inactive_opacity = 1; From 4f6bb68e4ab309b9e7b29bb857cfca1c88c7a905 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 17 Apr 2026 23:39:32 +0700 Subject: [PATCH 208/245] add users.nix fi;e --- host/server/default.nix | 1 + host/server/users.nix | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 host/server/users.nix diff --git a/host/server/default.nix b/host/server/default.nix index 5118189..7739deb 100644 --- a/host/server/default.nix +++ b/host/server/default.nix @@ -4,6 +4,7 @@ ./programs.nix ./services.nix ./networking.nix + ./users.nix (libs.root "/modules/features/system/docker.nix") (libs.root "/modules/features/system/packages.nix") diff --git a/host/server/users.nix b/host/server/users.nix new file mode 100644 index 0000000..88979d9 --- /dev/null +++ b/host/server/users.nix @@ -0,0 +1,8 @@ +{...}: { + users.users.asakiyuki.extraGroups = ["wheel" "public"]; + users.users.junko.extraGroups = ["public"]; + + users.groups = { + public = {}; + }; +} From 09579fa19a960664cdbface09acb93de2e8cb445 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 17 Apr 2026 23:48:48 +0700 Subject: [PATCH 209/245] add wl-clipboard --- host/desktop/programs.nix | 1 + host/server/users.nix | 5 +++++ options/home/programs.nix | 4 ++++ 3 files changed, 10 insertions(+) diff --git a/host/desktop/programs.nix b/host/desktop/programs.nix index d42b1d4..bf3979a 100644 --- a/host/desktop/programs.nix +++ b/host/desktop/programs.nix @@ -41,5 +41,6 @@ chromium.enable = true; gcc.enable = true; davinci-resolve.enable = true; + wl-clipboard.enable = true; }; } diff --git a/host/server/users.nix b/host/server/users.nix index 88979d9..f0f5319 100644 --- a/host/server/users.nix +++ b/host/server/users.nix @@ -2,6 +2,11 @@ users.users.asakiyuki.extraGroups = ["wheel" "public"]; users.users.junko.extraGroups = ["public"]; + users.users.public = { + extraGroups = ["public"]; + isSystemUser = true; + }; + users.groups = { public = {}; }; diff --git a/options/home/programs.nix b/options/home/programs.nix index f726552..2e2140e 100644 --- a/options/home/programs.nix +++ b/options/home/programs.nix @@ -67,6 +67,10 @@ enable = lib.mkEnableOption "lmstudio"; package = lib.mkPackageOption pkgs "lmstudio" {}; }; + wl-clipboard = { + enable = lib.mkEnableOption "wl-clipboard"; + package = lib.mkPackageOption pkgs "wl-clipboard" {}; + }; blender = { enable = lib.mkEnableOption "blender"; package = lib.mkPackageOption pkgs "blender" {}; From 5811ed30ccabec76a759b5c200a883b82d8014b2 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 17 Apr 2026 23:50:24 +0700 Subject: [PATCH 210/245] add install wl-clipboard --- modules/features/home/packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/features/home/packages.nix b/modules/features/home/packages.nix index 0d1f9b8..7654e4e 100644 --- a/modules/features/home/packages.nix +++ b/modules/features/home/packages.nix @@ -18,6 +18,7 @@ (lib.mkIf config.programs.blender.enable config.programs.blender.package) (lib.mkIf config.programs.xprop.enable config.programs.xprop.package) (lib.mkIf config.programs.davinci-resolve.enable config.programs.davinci-resolve.package) + (lib.mkIf config.programs.wl-clipboard.enable config.programs.wl-clipboard.package) (lib.mkIf config.programs.pavucontrol.enable config.programs.pavucontrol.package) (lib.mkIf config.programs.nwg-look.enable config.programs.nwg-look.package) From 6ab687c2f65063cc9321e0014519d71e0475b4f0 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 17 Apr 2026 23:57:25 +0700 Subject: [PATCH 211/245] add httpd.nix --- host/server/services.nix | 1 + modules/features/system/packages.nix | 3 +++ 2 files changed, 4 insertions(+) diff --git a/host/server/services.nix b/host/server/services.nix index 23e4c04..725644a 100644 --- a/host/server/services.nix +++ b/host/server/services.nix @@ -4,5 +4,6 @@ (libs.root "/modules/services/cloudflare-dyndns.nix") (libs.root "/modules/services/fail2ban.nix") (libs.root "/modules/services/openssh.nix") + (libs.root "/modules/services/httpd.nix") ]; } diff --git a/modules/features/system/packages.nix b/modules/features/system/packages.nix index e5ead8e..7b5fdc3 100644 --- a/modules/features/system/packages.nix +++ b/modules/features/system/packages.nix @@ -18,6 +18,9 @@ zip unzip + + kdePackages.kio-extras + kdePackages.kio-fuse ] ++ [ (lib.mkIf config.virtualisation.waydroid.enable (pkgs.callPackage (custom.cage-xtmapper {}) {})) From 0bfe2eff9c862fdeb84258d7a8f83a041c7c9e16 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 17 Apr 2026 23:58:19 +0700 Subject: [PATCH 212/245] idk --- host/server/users.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/server/users.nix b/host/server/users.nix index f0f5319..943e158 100644 --- a/host/server/users.nix +++ b/host/server/users.nix @@ -3,7 +3,7 @@ users.users.junko.extraGroups = ["public"]; users.users.public = { - extraGroups = ["public"]; + group = ["public"]; isSystemUser = true; }; From 9ac4668cb3e7811eadefe0bf71cdd76e1c8a8397 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Fri, 17 Apr 2026 23:58:46 +0700 Subject: [PATCH 213/245] idk --- host/server/users.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/server/users.nix b/host/server/users.nix index 943e158..c7ee476 100644 --- a/host/server/users.nix +++ b/host/server/users.nix @@ -3,7 +3,7 @@ users.users.junko.extraGroups = ["public"]; users.users.public = { - group = ["public"]; + group = "public"; isSystemUser = true; }; From 2ad2ab68a1cb866554b9d5f970ca8cf4a5d316ac Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 18 Apr 2026 00:01:58 +0700 Subject: [PATCH 214/245] add logrotate --- host/server/services.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/host/server/services.nix b/host/server/services.nix index 725644a..ca500d3 100644 --- a/host/server/services.nix +++ b/host/server/services.nix @@ -6,4 +6,6 @@ (libs.root "/modules/services/openssh.nix") (libs.root "/modules/services/httpd.nix") ]; + + services.logrotate.enable = true; } From 0901c2ccb956b43c8d7c858386c1ab4425b6f05b Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 18 Apr 2026 00:10:35 +0700 Subject: [PATCH 215/245] idk --- host/server/services.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/host/server/services.nix b/host/server/services.nix index ca500d3..852e7d4 100644 --- a/host/server/services.nix +++ b/host/server/services.nix @@ -7,5 +7,8 @@ (libs.root "/modules/services/httpd.nix") ]; - services.logrotate.enable = true; + services.logrotate = { + enable = true; + checkConfig = false; + }; } From 6d9ef6ce9c394ba9551fc235c38f456f8fc7824d Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 18 Apr 2026 00:13:02 +0700 Subject: [PATCH 216/245] idk --- modules/services/httpd.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/httpd.nix b/modules/services/httpd.nix index 8e8a119..5553acb 100644 --- a/modules/services/httpd.nix +++ b/modules/services/httpd.nix @@ -3,7 +3,7 @@ enable = true; adminAddr = "vantrong2007vn@gmail.com"; - user = "static"; + user = "public"; group = "public"; virtualHosts = { From b57db84b49d81432794e500cb2cb7f002a5c9405 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 18 Apr 2026 00:18:14 +0700 Subject: [PATCH 217/245] add flake.lock and open public folder port --- flake.lock | 42 +++++++++++++++++++------------------- host/server/networking.nix | 1 + 2 files changed, 22 insertions(+), 21 deletions(-) diff --git a/flake.lock b/flake.lock index b81af82..f1d2777 100644 --- a/flake.lock +++ b/flake.lock @@ -222,11 +222,11 @@ "xwayland-satellite-unstable": "xwayland-satellite-unstable" }, "locked": { - "lastModified": 1776154571, - "narHash": "sha256-ui0v96pzemkAxzcrUnfsul+aFTKaVSqBdSx57BqoV0E=", + "lastModified": 1776435348, + "narHash": "sha256-qsZnMThxTqxCJZ7DEKu3DD3KjIPcuUBvZ0C9a2uIvaQ=", "owner": "sodiboo", "repo": "niri-flake", - "rev": "d48cefadf880406bc53c9fbdd1ab62369f341201", + "rev": "55b5b1fc9481ab267603a1099e5d4b4ebc7394d7", "type": "github" }, "original": { @@ -255,11 +255,11 @@ "niri-unstable": { "flake": false, "locked": { - "lastModified": 1776150157, - "narHash": "sha256-mlPY8xgVPfTDNZD6Kd5VJBsIXxOTbCkEakxofvKO39w=", + "lastModified": 1776432730, + "narHash": "sha256-Pq1ZVvRGq/IFiFH6vkNwMfZEpWk23NjgGdX50COdj/c=", "owner": "YaLTeR", "repo": "niri", - "rev": "874e7fd70e443fecdd4620ce589f509ceb7d8f25", + "rev": "c814c656c53ea9d69f5afb45c88f4dc4d25338cd", "type": "github" }, "original": { @@ -296,11 +296,11 @@ "nixpkgs-nixcord": "nixpkgs-nixcord" }, "locked": { - "lastModified": 1776156493, - "narHash": "sha256-pKZWGJYX3iIt9g/DEkivx7vDDGtk2L8yEVD3nzk0lqQ=", + "lastModified": 1776443739, + "narHash": "sha256-NEwgjeZ1P03f5WjmOBENLzc7Ij9vb6XkjFXTAleYttU=", "owner": "FlameFlag", "repo": "nixcord", - "rev": "639293b2c68261321b0d807212aa424a65d9aa07", + "rev": "4bf534216e8196a6329b6fd49f449dff75c5267e", "type": "github" }, "original": { @@ -373,11 +373,11 @@ }, "nixpkgs-stable": { "locked": { - "lastModified": 1776067740, - "narHash": "sha256-B35lpsqnSZwn1Lmz06BpwF7atPgFmUgw1l8KAV3zpVQ=", + "lastModified": 1776221942, + "narHash": "sha256-FbQAeVNi7G4v3QCSThrSAAvzQTmrmyDLiHNPvTF2qFM=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "7e495b747b51f95ae15e74377c5ce1fe69c1765f", + "rev": "1766437c5509f444c1b15331e82b8b6a9b967000", "type": "github" }, "original": { @@ -421,11 +421,11 @@ }, "nixpkgs_4": { "locked": { - "lastModified": 1775710090, - "narHash": "sha256-ar3rofg+awPB8QXDaFJhJ2jJhu+KqN/PRCXeyuXR76E=", + "lastModified": 1776169885, + "narHash": "sha256-l/iNYDZ4bGOAFQY2q8y5OAfBBtrDAaPuRQqWaFHVRXM=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "4c1018dae018162ec878d42fec712642d214fdfa", + "rev": "4bd9165a9165d7b5e33ae57f3eecbcb28fb231c9", "type": "github" }, "original": { @@ -453,11 +453,11 @@ }, "nixpkgs_6": { "locked": { - "lastModified": 1776067740, - "narHash": "sha256-B35lpsqnSZwn1Lmz06BpwF7atPgFmUgw1l8KAV3zpVQ=", + "lastModified": 1776221942, + "narHash": "sha256-FbQAeVNi7G4v3QCSThrSAAvzQTmrmyDLiHNPvTF2qFM=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "7e495b747b51f95ae15e74377c5ce1fe69c1765f", + "rev": "1766437c5509f444c1b15331e82b8b6a9b967000", "type": "github" }, "original": { @@ -608,11 +608,11 @@ }, "unstablepkgs": { "locked": { - "lastModified": 1775710090, - "narHash": "sha256-ar3rofg+awPB8QXDaFJhJ2jJhu+KqN/PRCXeyuXR76E=", + "lastModified": 1776169885, + "narHash": "sha256-l/iNYDZ4bGOAFQY2q8y5OAfBBtrDAaPuRQqWaFHVRXM=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "4c1018dae018162ec878d42fec712642d214fdfa", + "rev": "4bd9165a9165d7b5e33ae57f3eecbcb28fb231c9", "type": "github" }, "original": { diff --git a/host/server/networking.nix b/host/server/networking.nix index a01f1b8..5070d67 100644 --- a/host/server/networking.nix +++ b/host/server/networking.nix @@ -12,6 +12,7 @@ 18581 8443 15523 + 37284 53 583 25565 From 367e34c32c5762c735190605876d6472af00113a Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 18 Apr 2026 00:27:43 +0700 Subject: [PATCH 218/245] idk --- host/desktop/default.nix | 2 +- host/server/users.nix | 2 +- modules/services/httpd.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/host/desktop/default.nix b/host/desktop/default.nix index 2637dee..9e03f1a 100644 --- a/host/desktop/default.nix +++ b/host/desktop/default.nix @@ -38,8 +38,8 @@ (libs.root "/modules/services/pipewire.nix") (libs.root "/modules/home-manager.nix") - (libs.root "/options/system/default.nix") (libs.root "/overlays/nixpkgs.nix") + (libs.root "/options/system/default.nix") ]; home-manager.users.asakiyuki = { diff --git a/host/server/users.nix b/host/server/users.nix index c7ee476..96f704e 100644 --- a/host/server/users.nix +++ b/host/server/users.nix @@ -2,7 +2,7 @@ users.users.asakiyuki.extraGroups = ["wheel" "public"]; users.users.junko.extraGroups = ["public"]; - users.users.public = { + users.users.static = { group = "public"; isSystemUser = true; }; diff --git a/modules/services/httpd.nix b/modules/services/httpd.nix index 5553acb..8e8a119 100644 --- a/modules/services/httpd.nix +++ b/modules/services/httpd.nix @@ -3,7 +3,7 @@ enable = true; adminAddr = "vantrong2007vn@gmail.com"; - user = "public"; + user = "static"; group = "public"; virtualHosts = { From 4377d45fefd14390c6aeb87223dc3ace4c181b68 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 18 Apr 2026 00:30:48 +0700 Subject: [PATCH 219/245] fix invalid public directory --- modules/services/httpd.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/services/httpd.nix b/modules/services/httpd.nix index 8e8a119..dd71ddc 100644 --- a/modules/services/httpd.nix +++ b/modules/services/httpd.nix @@ -8,7 +8,7 @@ virtualHosts = { localhost = { - documentRoot = "/host/PUBLIC"; + documentRoot = "/home/PUBLIC"; listen = [ { ip = "0.0.0.0"; @@ -16,7 +16,7 @@ } ]; extraConfig = '' - + Options -Indexes +FollowSymLinks AllowOverride None Require all granted From b89e3ef823478cff40f7ea60f21896814a793732 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 18 Apr 2026 00:38:33 +0700 Subject: [PATCH 220/245] remove dolphin-overlay --- flake.lock | 66 ++++++++----------------------- flake.nix | 1 - options/home/programs/dolphin.nix | 12 +++++- overlays/nixpkgs.nix | 1 - 4 files changed, 27 insertions(+), 53 deletions(-) diff --git a/flake.lock b/flake.lock index f1d2777..17ecc18 100644 --- a/flake.lock +++ b/flake.lock @@ -1,23 +1,5 @@ { "nodes": { - "dolphin-overlay": { - "inputs": { - "nixpkgs": "nixpkgs" - }, - "locked": { - "lastModified": 1775943689, - "narHash": "sha256-0XBCoR1L5gYmh8VqZu0HcHsL4GeGXQMC0f3ARshf/rk=", - "owner": "rumboon", - "repo": "dolphin-overlay", - "rev": "c32758737a0cb02d0bf380753d11df1b8537a944", - "type": "github" - }, - "original": { - "owner": "rumboon", - "repo": "dolphin-overlay", - "type": "github" - } - }, "flake-compat": { "locked": { "lastModified": 1733328505, @@ -149,7 +131,7 @@ "honkai-railway-grub-theme": { "inputs": { "flake-utils": "flake-utils", - "nixpkgs": "nixpkgs_2" + "nixpkgs": "nixpkgs" }, "locked": { "lastModified": 1775016235, @@ -168,7 +150,7 @@ }, "hytale-launcher": { "inputs": { - "nixpkgs": "nixpkgs_3" + "nixpkgs": "nixpkgs_2" }, "locked": { "lastModified": 1775840082, @@ -216,7 +198,7 @@ "inputs": { "niri-stable": "niri-stable", "niri-unstable": "niri-unstable", - "nixpkgs": "nixpkgs_4", + "nixpkgs": "nixpkgs_3", "nixpkgs-stable": "nixpkgs-stable", "xwayland-satellite-stable": "xwayland-satellite-stable", "xwayland-satellite-unstable": "xwayland-satellite-unstable" @@ -292,7 +274,7 @@ "inputs": { "flake-compat": "flake-compat", "flake-parts": "flake-parts", - "nixpkgs": "nixpkgs_5", + "nixpkgs": "nixpkgs_4", "nixpkgs-nixcord": "nixpkgs-nixcord" }, "locked": { @@ -327,15 +309,16 @@ }, "nixpkgs": { "locked": { - "lastModified": 1743890059, - "narHash": "sha256-QQLhHHGNtAW8qRpseb40zqZlhZUeRRUg2SGmXjfE+so=", - "owner": "NixOS", + "lastModified": 1774709303, + "narHash": "sha256-D3Q07BbIA2KnTcSXIqqu9P586uWxN74zNoCH3h2ESHg=", + "owner": "nixos", "repo": "nixpkgs", - "rev": "58a813438464b5295170efe38d8bd5f40fcc1d23", + "rev": "8110df5ad7abf5d4c0f6fb0f8f978390e77f9685", "type": "github" }, "original": { - "owner": "NixOS", + "owner": "nixos", + "ref": "nixos-unstable", "repo": "nixpkgs", "type": "github" } @@ -388,22 +371,6 @@ } }, "nixpkgs_2": { - "locked": { - "lastModified": 1774709303, - "narHash": "sha256-D3Q07BbIA2KnTcSXIqqu9P586uWxN74zNoCH3h2ESHg=", - "owner": "nixos", - "repo": "nixpkgs", - "rev": "8110df5ad7abf5d4c0f6fb0f8f978390e77f9685", - "type": "github" - }, - "original": { - "owner": "nixos", - "ref": "nixos-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs_3": { "locked": { "lastModified": 1775423009, "narHash": "sha256-vPKLpjhIVWdDrfiUM8atW6YkIggCEKdSAlJPzzhkQlw=", @@ -419,7 +386,7 @@ "type": "github" } }, - "nixpkgs_4": { + "nixpkgs_3": { "locked": { "lastModified": 1776169885, "narHash": "sha256-l/iNYDZ4bGOAFQY2q8y5OAfBBtrDAaPuRQqWaFHVRXM=", @@ -435,7 +402,7 @@ "type": "github" } }, - "nixpkgs_5": { + "nixpkgs_4": { "locked": { "lastModified": 1775595990, "narHash": "sha256-OEf7YqhF9IjJFYZJyuhAypgU+VsRB5lD4DuiMws5Ltc=", @@ -451,7 +418,7 @@ "type": "github" } }, - "nixpkgs_6": { + "nixpkgs_5": { "locked": { "lastModified": 1776221942, "narHash": "sha256-FbQAeVNi7G4v3QCSThrSAAvzQTmrmyDLiHNPvTF2qFM=", @@ -467,7 +434,7 @@ "type": "github" } }, - "nixpkgs_7": { + "nixpkgs_6": { "locked": { "lastModified": 1762361079, "narHash": "sha256-lz718rr1BDpZBYk7+G8cE6wee3PiBUpn8aomG/vLLiY=", @@ -532,7 +499,6 @@ }, "root": { "inputs": { - "dolphin-overlay": "dolphin-overlay", "home-manager": "home-manager", "honkai-railway-grub-theme": "honkai-railway-grub-theme", "hytale-launcher": "hytale-launcher", @@ -540,7 +506,7 @@ "nix-index-database": "nix-index-database", "nixcord": "nixcord", "nixos-hardware": "nixos-hardware", - "nixpkgs": "nixpkgs_6", + "nixpkgs": "nixpkgs_5", "nixvim": "nixvim", "unstablepkgs": "unstablepkgs", "winegdk": "winegdk" @@ -625,7 +591,7 @@ "winegdk": { "inputs": { "flake-utils": "flake-utils_3", - "nixpkgs": "nixpkgs_7", + "nixpkgs": "nixpkgs_6", "winegdk": "winegdk_2" }, "locked": { diff --git a/flake.nix b/flake.nix index 5192817..035612f 100644 --- a/flake.nix +++ b/flake.nix @@ -9,7 +9,6 @@ hytale-launcher.url = "github:zarilion/hytale-launcher-nix"; niri.url = "github:sodiboo/niri-flake"; nixcord.url = "github:FlameFlag/nixcord"; - dolphin-overlay.url = "github:rumboon/dolphin-overlay"; winegdk.url = "github:fmbearmf/winegdk-nix"; honkai-railway-grub-theme.url = "github:voidlhf/StarRailGrubThemes/4a84e576bb544afbdfc76dbe40ffc50a5c2b16de"; diff --git a/options/home/programs/dolphin.nix b/options/home/programs/dolphin.nix index 797a726..a6da44d 100644 --- a/options/home/programs/dolphin.nix +++ b/options/home/programs/dolphin.nix @@ -41,7 +41,17 @@ in { enable = lib.mkEnableOption "dolphin"; package = lib.mkOption { type = lib.types.package; - default = pkgs.kdePackages.dolphin; + default = pkgs.symlinkJoin { + name = "dolphin-wrapped"; + paths = [pkgs.kdePackages.dolphin]; + nativeBuildInputs = [pkgs.makeWrapper]; + postBuild = '' + rm $out/bin/dolphin + makeWrapper ${pkgs.kdePackages.dolphin}/bin/dolphin $out/bin/dolphin \ + --set XDG_CONFIG_DIRS "${pkgs.kdePackages.kservice}/etc/xdg:$XDG_CONFIG_DIRS" \ + --run "${pkgs.kdePackages.kservice}/bin/kbuildsycoca6 --noincremental ${pkgs.kdePackages.kservice}/etc/xdg/menus/applications.menu" + ''; + }; }; configs = { diff --git a/overlays/nixpkgs.nix b/overlays/nixpkgs.nix index 5960324..bc54b7a 100644 --- a/overlays/nixpkgs.nix +++ b/overlays/nixpkgs.nix @@ -1,6 +1,5 @@ {inputs, ...}: { nixpkgs.overlays = [ inputs.niri.overlays.niri - inputs.dolphin-overlay.overlays.default ]; } From 1be064468c729659e1f957073d1707432c79471e Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 18 Apr 2026 02:37:26 +0700 Subject: [PATCH 221/245] add icc profile --- assets/srgb_to_gamma2p2_400_mhc2.icm | Bin 0 -> 13084 bytes host/desktop/device.nix | 45 ++++++------------ .../programs/hyprland/settings/default.nix | 3 +- options/system/environment.nix | 11 ++++- 4 files changed, 26 insertions(+), 33 deletions(-) create mode 100644 assets/srgb_to_gamma2p2_400_mhc2.icm diff --git a/assets/srgb_to_gamma2p2_400_mhc2.icm b/assets/srgb_to_gamma2p2_400_mhc2.icm new file mode 100644 index 0000000000000000000000000000000000000000..cf9ffb5216c5ed8fac5d26b6e66ce3e3bf8b6baf GIT binary patch literal 13084 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 literal 0 HcmV?d00001 diff --git a/host/desktop/device.nix b/host/desktop/device.nix index 7cd7215..4044c07 100644 --- a/host/desktop/device.nix +++ b/host/desktop/device.nix @@ -1,10 +1,8 @@ { - lib, + libs, pkgs, ... -}: let - ENABLE_HDR = false; -in { +}: { device = { flake-name = "ideapad-slim-5"; cursors = "aemeath"; @@ -18,33 +16,20 @@ in { wm.niri.enable = false; wm.hyprland.enable = true; wm.hyprland.monitors = [ - ( - { - output = "eDP-1"; - mode = "1920x1200@60"; - position = "0x0"; - scale = 1; - } - // lib.optionalAttrs ENABLE_HDR { - bitdepth = 10; - cm = "hdr"; - supports_wide_color = 1; - supports_hdr = 1; - - sdrbrightness = 1.0; - sdrsaturation = 1.0; - - sdr_min_luminance = 0.005; - sdr_max_luminance = 200; - - min_luminance = 0.0005; - max_luminance = 400; - max_avg_luminance = 250; - - sdr_eotf = 2; - } - ) + "eDP-1, 1920x1200@60, 0x0, 1, bitdepth, 10, cm, hdr, icc, ${libs.root "/assets/srgb_to_gamma2p2_400_mhc2.icm"}" ]; + # wm.hyprland.monitorsv2 = [ + # { + # output = "eDP-1"; + # mode = "1920x1200@60"; + # position = "0x0"; + # scale = 1; + + # bitdepth = 10; + # cm = "hdr"; + # icc = builtins.toString (libs.root "/assets/srgb_to_gamma2p2_400_mhc2.icm"); + # } + # ]; bluetooth.enable = true; flatpak.enable = true; diff --git a/modules/programs/hyprland/settings/default.nix b/modules/programs/hyprland/settings/default.nix index 9047bd8..81cf2bb 100644 --- a/modules/programs/hyprland/settings/default.nix +++ b/modules/programs/hyprland/settings/default.nix @@ -8,6 +8,7 @@ ]; wayland.windowManager.hyprland.settings = { - monitorv2 = osconfig.device.wm.hyprland.monitors; + monitorv2 = osconfig.device.wm.hyprland.monitorsv2; + monitor = osconfig.device.wm.hyprland.monitors; }; } diff --git a/options/system/environment.nix b/options/system/environment.nix index ca2bb8a..9918bb2 100644 --- a/options/system/environment.nix +++ b/options/system/environment.nix @@ -22,10 +22,17 @@ niri.enable = lib.mkEnableOption "niri"; hyprland = { enable = lib.mkEnableOption "hyprland"; - monitors = lib.mkOption { + + monitor = lib.mkOption { + type = lib.types.listOf lib.types.str; + default = []; + description = "Monitors vs settings"; + }; + + monitorsv2 = lib.mkOption { type = lib.types.listOf lib.types.attrs; default = []; - description = "Monitors settings"; + description = "Monitors vs settings"; }; }; }; From 3b6e132d19bb8c008fa73e8d589e1d9550049ae3 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 18 Apr 2026 02:54:49 +0700 Subject: [PATCH 222/245] add hdr variables --- host/desktop/device.nix | 28 ++++++------------- .../programs/hyprland/settings/default.nix | 2 +- .../programs/hyprland/settings/key-bind.nix | 1 + 3 files changed, 11 insertions(+), 20 deletions(-) diff --git a/host/desktop/device.nix b/host/desktop/device.nix index 4044c07..3ef7b7f 100644 --- a/host/desktop/device.nix +++ b/host/desktop/device.nix @@ -1,8 +1,10 @@ -{ - libs, - pkgs, - ... -}: { +{pkgs, ...}: { + home-manager.users.asakiyuki.wayland.windowManager.hyprland.settings = { + "$SDR_SCREEN_CONFIG" = "eDP-1, 1920x1200@60, 0x0, 1"; + "$HDR_SCREEN_CONFIG" = "eDP-1, 1920x1200@60, 0x0, 1, bitdepth, 10, cm, hdredid"; + "$CURRENT_STATE_SCREEN" = "$SDR_SCREEN_CONFIG"; + }; + device = { flake-name = "ideapad-slim-5"; cursors = "aemeath"; @@ -15,21 +17,9 @@ wm.niri.enable = false; wm.hyprland.enable = true; - wm.hyprland.monitors = [ - "eDP-1, 1920x1200@60, 0x0, 1, bitdepth, 10, cm, hdr, icc, ${libs.root "/assets/srgb_to_gamma2p2_400_mhc2.icm"}" + wm.hyprland.monitor = [ + "$CURRENT_STATE_SCREEN" ]; - # wm.hyprland.monitorsv2 = [ - # { - # output = "eDP-1"; - # mode = "1920x1200@60"; - # position = "0x0"; - # scale = 1; - - # bitdepth = 10; - # cm = "hdr"; - # icc = builtins.toString (libs.root "/assets/srgb_to_gamma2p2_400_mhc2.icm"); - # } - # ]; bluetooth.enable = true; flatpak.enable = true; diff --git a/modules/programs/hyprland/settings/default.nix b/modules/programs/hyprland/settings/default.nix index 81cf2bb..0e8f139 100644 --- a/modules/programs/hyprland/settings/default.nix +++ b/modules/programs/hyprland/settings/default.nix @@ -9,6 +9,6 @@ wayland.windowManager.hyprland.settings = { monitorv2 = osconfig.device.wm.hyprland.monitorsv2; - monitor = osconfig.device.wm.hyprland.monitors; + monitor = osconfig.device.wm.hyprland.monitor; }; } diff --git a/modules/programs/hyprland/settings/key-bind.nix b/modules/programs/hyprland/settings/key-bind.nix index 610c2ce..910be59 100644 --- a/modules/programs/hyprland/settings/key-bind.nix +++ b/modules/programs/hyprland/settings/key-bind.nix @@ -52,6 +52,7 @@ "SUPER, MOUSE_UP, workspace, e+1" ", XF86TouchpadToggle, global, asakiyuki:touchpadtoggle" + "META ALT, B, global, asakiyuki:hdrtoggle" "ALT, SPACE, global, asakiyuki:launcher" ",XF86MonBrightnessDown, exec, brightnessctl s 5%-" From 523aa92fcab1740e6dda7628635fe9517d8f3efc Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 18 Apr 2026 03:10:02 +0700 Subject: [PATCH 223/245] idk --- host/desktop/device.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/desktop/device.nix b/host/desktop/device.nix index 3ef7b7f..ac1ffd2 100644 --- a/host/desktop/device.nix +++ b/host/desktop/device.nix @@ -1,7 +1,7 @@ {pkgs, ...}: { home-manager.users.asakiyuki.wayland.windowManager.hyprland.settings = { "$SDR_SCREEN_CONFIG" = "eDP-1, 1920x1200@60, 0x0, 1"; - "$HDR_SCREEN_CONFIG" = "eDP-1, 1920x1200@60, 0x0, 1, bitdepth, 10, cm, hdredid"; + "$HDR_SCREEN_CONFIG" = "eDP-1, 1920x1200@60, 0x0, 1, bitdepth, 10, cm, hdr"; "$CURRENT_STATE_SCREEN" = "$SDR_SCREEN_CONFIG"; }; From f525726c041b8c523bdba6e4fd74bb6f3bd8e981 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sat, 18 Apr 2026 03:15:55 +0700 Subject: [PATCH 224/245] idk --- host/desktop/device.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/host/desktop/device.nix b/host/desktop/device.nix index ac1ffd2..7940029 100644 --- a/host/desktop/device.nix +++ b/host/desktop/device.nix @@ -1,8 +1,6 @@ {pkgs, ...}: { home-manager.users.asakiyuki.wayland.windowManager.hyprland.settings = { - "$SDR_SCREEN_CONFIG" = "eDP-1, 1920x1200@60, 0x0, 1"; - "$HDR_SCREEN_CONFIG" = "eDP-1, 1920x1200@60, 0x0, 1, bitdepth, 10, cm, hdr"; - "$CURRENT_STATE_SCREEN" = "$SDR_SCREEN_CONFIG"; + "$CURRENT_STATE_SCREEN" = "eDP-1, 1920x1200@60, 0x0, 1"; }; device = { From 284466a1192eee9f78cff7c0d6186ee5f23307e4 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 20 Apr 2026 04:14:25 +0700 Subject: [PATCH 225/245] add gitea --- host/server/services.nix | 1 + modules/features/system/gitea.nix | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 modules/features/system/gitea.nix diff --git a/host/server/services.nix b/host/server/services.nix index 852e7d4..6cca71f 100644 --- a/host/server/services.nix +++ b/host/server/services.nix @@ -1,5 +1,6 @@ {libs, ...}: { imports = [ + (libs.root "/modules/features/system/gitea.nix") (libs.root "/modules/services/adguardhome.nix") (libs.root "/modules/services/cloudflare-dyndns.nix") (libs.root "/modules/services/fail2ban.nix") diff --git a/modules/features/system/gitea.nix b/modules/features/system/gitea.nix new file mode 100644 index 0000000..e694c0b --- /dev/null +++ b/modules/features/system/gitea.nix @@ -0,0 +1,10 @@ +{...}: { + services.gitea = { + enable = true; + database.type = "mysql"; + + settings.server = { + HTTP_PORT = 21350; + }; + }; +} From 040d006a4bbb8ea7c14a4434d884f5152d1d9a57 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 20 Apr 2026 04:15:01 +0700 Subject: [PATCH 226/245] open gitea port --- host/server/networking.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/host/server/networking.nix b/host/server/networking.nix index 5070d67..0515710 100644 --- a/host/server/networking.nix +++ b/host/server/networking.nix @@ -16,6 +16,7 @@ 53 583 25565 + 21350 ]; }; From 20af2f9d15f0ac9e6f4a81d4db61f2b0be7323b3 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 20 Apr 2026 04:20:08 +0700 Subject: [PATCH 227/245] move gitea to forgejo --- host/server/services.nix | 2 +- modules/features/system/{gitea.nix => forgejo.nix} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename modules/features/system/{gitea.nix => forgejo.nix} (84%) diff --git a/host/server/services.nix b/host/server/services.nix index 6cca71f..6eb7768 100644 --- a/host/server/services.nix +++ b/host/server/services.nix @@ -1,6 +1,6 @@ {libs, ...}: { imports = [ - (libs.root "/modules/features/system/gitea.nix") + (libs.root "/modules/features/system/forgejo.nix") (libs.root "/modules/services/adguardhome.nix") (libs.root "/modules/services/cloudflare-dyndns.nix") (libs.root "/modules/services/fail2ban.nix") diff --git a/modules/features/system/gitea.nix b/modules/features/system/forgejo.nix similarity index 84% rename from modules/features/system/gitea.nix rename to modules/features/system/forgejo.nix index e694c0b..47aaf99 100644 --- a/modules/features/system/gitea.nix +++ b/modules/features/system/forgejo.nix @@ -1,5 +1,5 @@ {...}: { - services.gitea = { + services.forgejo = { enable = true; database.type = "mysql"; From 3c5c61b1071dea5a157f69e77a999c7237dbf561 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 20 Apr 2026 04:26:34 +0700 Subject: [PATCH 228/245] add forgejo root url --- modules/features/system/forgejo.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/features/system/forgejo.nix b/modules/features/system/forgejo.nix index 47aaf99..00fcdea 100644 --- a/modules/features/system/forgejo.nix +++ b/modules/features/system/forgejo.nix @@ -5,6 +5,7 @@ settings.server = { HTTP_PORT = 21350; + ROOT_URL = "https://git.asakiyuki.com/" }; }; } From 8d794537118873e28df8b11261cb602fe709505d Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 20 Apr 2026 04:27:06 +0700 Subject: [PATCH 229/245] add semocolon --- modules/features/system/forgejo.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/features/system/forgejo.nix b/modules/features/system/forgejo.nix index 00fcdea..60c434b 100644 --- a/modules/features/system/forgejo.nix +++ b/modules/features/system/forgejo.nix @@ -5,7 +5,7 @@ settings.server = { HTTP_PORT = 21350; - ROOT_URL = "https://git.asakiyuki.com/" + ROOT_URL = "https://git.asakiyuki.com/"; }; }; } From 37b7adfc92a31ae72a5612852e9f9974c5b3023e Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 20 Apr 2026 04:32:39 +0700 Subject: [PATCH 230/245] DISABLE_REGISTRATION forgejo --- modules/features/system/forgejo.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/features/system/forgejo.nix b/modules/features/system/forgejo.nix index 60c434b..0e4eb70 100644 --- a/modules/features/system/forgejo.nix +++ b/modules/features/system/forgejo.nix @@ -5,6 +5,7 @@ settings.server = { HTTP_PORT = 21350; + DISABLE_REGISTRATION = true; ROOT_URL = "https://git.asakiyuki.com/"; }; }; From 1b3ed423c45c3502c0e23de182807f54e57b8662 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 20 Apr 2026 04:39:48 +0700 Subject: [PATCH 231/245] idk --- modules/features/system/forgejo.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/features/system/forgejo.nix b/modules/features/system/forgejo.nix index 0e4eb70..960ee16 100644 --- a/modules/features/system/forgejo.nix +++ b/modules/features/system/forgejo.nix @@ -2,10 +2,9 @@ services.forgejo = { enable = true; database.type = "mysql"; - + service.DISABLE_REGISTRATION = true; settings.server = { HTTP_PORT = 21350; - DISABLE_REGISTRATION = true; ROOT_URL = "https://git.asakiyuki.com/"; }; }; From 5900ceac82c0b4ac69b3ec62e750fbac6a785fde Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 20 Apr 2026 04:41:02 +0700 Subject: [PATCH 232/245] idk --- modules/features/system/forgejo.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/features/system/forgejo.nix b/modules/features/system/forgejo.nix index 960ee16..8afbdc0 100644 --- a/modules/features/system/forgejo.nix +++ b/modules/features/system/forgejo.nix @@ -2,10 +2,10 @@ services.forgejo = { enable = true; database.type = "mysql"; - service.DISABLE_REGISTRATION = true; settings.server = { HTTP_PORT = 21350; ROOT_URL = "https://git.asakiyuki.com/"; + service.DISABLE_REGISTRATION = true; }; }; } From 0f7ef67de6ad252f5665563d7cadd8b86b5ba86b Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 20 Apr 2026 04:41:42 +0700 Subject: [PATCH 233/245] idk --- modules/features/system/forgejo.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/modules/features/system/forgejo.nix b/modules/features/system/forgejo.nix index 8afbdc0..75078a2 100644 --- a/modules/features/system/forgejo.nix +++ b/modules/features/system/forgejo.nix @@ -2,10 +2,12 @@ services.forgejo = { enable = true; database.type = "mysql"; - settings.server = { - HTTP_PORT = 21350; - ROOT_URL = "https://git.asakiyuki.com/"; + settings = { service.DISABLE_REGISTRATION = true; + server = { + HTTP_PORT = 21350; + ROOT_URL = "https://git.asakiyuki.com/"; + }; }; }; } From 2ac7ca9ecef14f5af1dadf04f880b328985f59d9 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 20 Apr 2026 04:50:02 +0700 Subject: [PATCH 234/245] idk --- host/server/users.nix | 7 +++++++ modules/features/system/forgejo.nix | 3 +++ 2 files changed, 10 insertions(+) diff --git a/host/server/users.nix b/host/server/users.nix index 96f704e..eaa8e5b 100644 --- a/host/server/users.nix +++ b/host/server/users.nix @@ -7,7 +7,14 @@ isSystemUser = true; }; + users.users.git = { + group = "forgejo"; + isSystemUser = true; + useDefaultShell = true; + }; + users.groups = { public = {}; + forgejo = {}; }; } diff --git a/modules/features/system/forgejo.nix b/modules/features/system/forgejo.nix index 75078a2..7733056 100644 --- a/modules/features/system/forgejo.nix +++ b/modules/features/system/forgejo.nix @@ -6,6 +6,9 @@ service.DISABLE_REGISTRATION = true; server = { HTTP_PORT = 21350; + SSH_PORT = 15523; + START_SSH_SERVER = false; + SSH_CREATE_AUTHORIZED_KEYS_FILE = true; ROOT_URL = "https://git.asakiyuki.com/"; }; }; From e367d8458e234b7972379b101af4dd0c59a9a000 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 20 Apr 2026 04:52:52 +0700 Subject: [PATCH 235/245] idk --- modules/features/system/forgejo.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/features/system/forgejo.nix b/modules/features/system/forgejo.nix index 7733056..0116c2d 100644 --- a/modules/features/system/forgejo.nix +++ b/modules/features/system/forgejo.nix @@ -9,6 +9,8 @@ SSH_PORT = 15523; START_SSH_SERVER = false; SSH_CREATE_AUTHORIZED_KEYS_FILE = true; + SSH_DOMAIN = "server.asakiyuki.com"; + SSH_USER = "git"; ROOT_URL = "https://git.asakiyuki.com/"; }; }; From 8df15d275e26f051eaadfeedcf6a37cbdb9b2831 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 20 Apr 2026 05:03:40 +0700 Subject: [PATCH 236/245] idk --- modules/services/openssh.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/services/openssh.nix b/modules/services/openssh.nix index 4c61a20..5d0254e 100644 --- a/modules/services/openssh.nix +++ b/modules/services/openssh.nix @@ -8,6 +8,7 @@ AllowUsers = [ "asakiyuki" "junko" + "git" ]; PasswordAuthentication = true; KbdInteractiveAuthentication = false; From 61fd1e65463f52ad7eb1645e9c91256fbc8aca2e Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 20 Apr 2026 05:07:06 +0700 Subject: [PATCH 237/245] idk --- host/server/users.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/host/server/users.nix b/host/server/users.nix index eaa8e5b..510613a 100644 --- a/host/server/users.nix +++ b/host/server/users.nix @@ -11,6 +11,8 @@ group = "forgejo"; isSystemUser = true; useDefaultShell = true; + home = "/var/lib/forgejo"; + createHome = false; }; users.groups = { From 7d752d82908ff876c8860512dbdabe83b6cbf943 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 20 Apr 2026 05:12:26 +0700 Subject: [PATCH 238/245] idk --- host/server/users.nix | 2 +- modules/features/system/forgejo.nix | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/host/server/users.nix b/host/server/users.nix index 510613a..5d2fbf5 100644 --- a/host/server/users.nix +++ b/host/server/users.nix @@ -7,7 +7,7 @@ isSystemUser = true; }; - users.users.git = { + users.users.forgejo = { group = "forgejo"; isSystemUser = true; useDefaultShell = true; diff --git a/modules/features/system/forgejo.nix b/modules/features/system/forgejo.nix index 0116c2d..8e05d88 100644 --- a/modules/features/system/forgejo.nix +++ b/modules/features/system/forgejo.nix @@ -10,7 +10,6 @@ START_SSH_SERVER = false; SSH_CREATE_AUTHORIZED_KEYS_FILE = true; SSH_DOMAIN = "server.asakiyuki.com"; - SSH_USER = "git"; ROOT_URL = "https://git.asakiyuki.com/"; }; }; From fc6a9c9fde227b5fa5cbf78662186077a9832d0b Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 20 Apr 2026 05:14:21 +0700 Subject: [PATCH 239/245] idk --- modules/services/openssh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/openssh.nix b/modules/services/openssh.nix index 5d0254e..addf94f 100644 --- a/modules/services/openssh.nix +++ b/modules/services/openssh.nix @@ -8,7 +8,7 @@ AllowUsers = [ "asakiyuki" "junko" - "git" + "forgejo" ]; PasswordAuthentication = true; KbdInteractiveAuthentication = false; From d1d3299883f0c40e78698bd43c1cbb97dfa57684 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 20 Apr 2026 05:34:15 +0700 Subject: [PATCH 240/245] add forgejo web catppuccin theme --- flake.nix | 1 + host/server/default.nix | 14 +++++++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 035612f..1e1da10 100644 --- a/flake.nix +++ b/flake.nix @@ -10,6 +10,7 @@ niri.url = "github:sodiboo/niri-flake"; nixcord.url = "github:FlameFlag/nixcord"; winegdk.url = "github:fmbearmf/winegdk-nix"; + catppuccin.url = "github:catppuccin/nix"; honkai-railway-grub-theme.url = "github:voidlhf/StarRailGrubThemes/4a84e576bb544afbdfc76dbe40ffc50a5c2b16de"; diff --git a/host/server/default.nix b/host/server/default.nix index 7739deb..d5f41b7 100644 --- a/host/server/default.nix +++ b/host/server/default.nix @@ -1,4 +1,8 @@ -{libs, ...}: { +{ + libs, + inputs, + ... +}: { imports = [ ./device.nix ./programs.nix @@ -6,6 +10,8 @@ ./networking.nix ./users.nix + inputs.catppuccin.nixosModules.catppuccin + (libs.root "/modules/features/system/docker.nix") (libs.root "/modules/features/system/packages.nix") (libs.root "/modules/features/system/nix-dl.nix") @@ -16,4 +22,10 @@ (libs.root "/options/system/default.nix") (libs.root "/overlays/nixpkgs.nix") ]; + + catppuccin.forgejo = { + enable = "true"; + accent = "lavender"; + flavor = "mocha"; + }; } From a40239264ce3d398c03c6abd2b141c35a1157424 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 20 Apr 2026 05:36:47 +0700 Subject: [PATCH 241/245] idk --- host/server/default.nix | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/host/server/default.nix b/host/server/default.nix index d5f41b7..d93d24a 100644 --- a/host/server/default.nix +++ b/host/server/default.nix @@ -23,9 +23,17 @@ (libs.root "/overlays/nixpkgs.nix") ]; - catppuccin.forgejo = { - enable = "true"; - accent = "lavender"; - flavor = "mocha"; + catppuccin = { + enable = true; + + gtk.enable = false; + kvantum.enable = false; + cursors.enable = false; + + forgejo = { + enable = true; + accent = "lavender"; + flavor = "mocha"; + }; }; } From 1baf17728fd722f3a5c1b51d0e6ef43fc6931df5 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 20 Apr 2026 05:37:04 +0700 Subject: [PATCH 242/245] idk --- host/server/default.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/host/server/default.nix b/host/server/default.nix index d93d24a..6784fe1 100644 --- a/host/server/default.nix +++ b/host/server/default.nix @@ -26,10 +26,6 @@ catppuccin = { enable = true; - gtk.enable = false; - kvantum.enable = false; - cursors.enable = false; - forgejo = { enable = true; accent = "lavender"; From d9f2ed8f2cecd9c74b8d8572d6fb2b18e3e31190 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 20 Apr 2026 05:37:46 +0700 Subject: [PATCH 243/245] idk --- host/server/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/server/default.nix b/host/server/default.nix index 6784fe1..4286170 100644 --- a/host/server/default.nix +++ b/host/server/default.nix @@ -10,7 +10,7 @@ ./networking.nix ./users.nix - inputs.catppuccin.nixosModules.catppuccin + inputs.catppuccin.nixosModules.forgejo (libs.root "/modules/features/system/docker.nix") (libs.root "/modules/features/system/packages.nix") From 49d5c513579073252c8ec49cae5f7664934372f2 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 20 Apr 2026 05:38:25 +0700 Subject: [PATCH 244/245] idk --- host/server/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/host/server/default.nix b/host/server/default.nix index 4286170..1af42cc 100644 --- a/host/server/default.nix +++ b/host/server/default.nix @@ -1,4 +1,5 @@ { + lib, libs, inputs, ... @@ -10,7 +11,7 @@ ./networking.nix ./users.nix - inputs.catppuccin.nixosModules.forgejo + inputs.catppuccin.nixosModules.catppuccin (libs.root "/modules/features/system/docker.nix") (libs.root "/modules/features/system/packages.nix") @@ -23,6 +24,11 @@ (libs.root "/overlays/nixpkgs.nix") ]; + options.services.displayManager.generic = lib.mkOption { + type = lib.types.attrs; + default = {}; + }; + catppuccin = { enable = true; From 0c40e210f4e497a6f96df6225f95cfafc843c6ad Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 20 Apr 2026 05:38:41 +0700 Subject: [PATCH 245/245] idk --- host/server/default.nix | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/host/server/default.nix b/host/server/default.nix index 1af42cc..ced897d 100644 --- a/host/server/default.nix +++ b/host/server/default.nix @@ -11,8 +11,6 @@ ./networking.nix ./users.nix - inputs.catppuccin.nixosModules.catppuccin - (libs.root "/modules/features/system/docker.nix") (libs.root "/modules/features/system/packages.nix") (libs.root "/modules/features/system/nix-dl.nix") @@ -23,19 +21,4 @@ (libs.root "/options/system/default.nix") (libs.root "/overlays/nixpkgs.nix") ]; - - options.services.displayManager.generic = lib.mkOption { - type = lib.types.attrs; - default = {}; - }; - - catppuccin = { - enable = true; - - forgejo = { - enable = true; - accent = "lavender"; - flavor = "mocha"; - }; - }; }

    &So}o>V-_!Hsm%~JTL6Wo&7&z@BDfcIY%P)o8y(H`x#y) zjI5?VbuK3D-11LzayDD3uSMlKchS{R^S?jYzH}X@&02!4_rI6X8qz@w_5J*eY-WCz=@)%W+l<(~dwvHZW}AMO9&)^nS+@c+Hge?X`2&&|@Dn%!rA$Q*UKeCgh&_xnrk zTmG?@|6BLxlztso{k!#lMN7Qf)3`#mI)*Y&{b-+@e`?7FvFu(>W5@J>YmtxSWtrzT z$3~SDAJCI{d+1VNULAB>;aeJmXqgGJoa@jnZ7E=E`Nvo6mRC2so)FD8$9a3iqZbKn<@c)C!|(5D3y-g6-u%uir?%zg zl4Hf;@ke``w^!8fb6*?XR?KE?FlW0BQ{9oJowAb|RTdVg@wdNN?o!JrsV+ami>2Re z;*S0+#2#rVJv1_e(4+SDG;Ap;L*4_aRP5+ zk%i}q`3uZbY>eN1n7A__XIa~f1$$oEetNR1;i`hYY+1v~^{taCGJ3XbT=e#+_pIGT z5;+Dxmi+Y&;ak6E8c*HQgH8wQpBAxr>?(Qo-&@PtojZQF*y8IPxAeky?%h=2+}8Ge zcfRzpKWAd*r-=NkSGlGAw%-50p1Ic4Xw6IEdH=tEH%%54(LUG_^TTqF{Y{34u_uEU zfA(j-^yP)&Ep^Yf)qQ1G<|q68zxjHquZPMB@rUYFwd?YqSd}CRY>bv(F(?0)@L!Y6 z(76p!-x51okL>=uFT-=i(Mk>h4>hF-r;E#%^Ljpg($}|J6PA5QHL`KN7<{VsjEiTo$LcRH_D`7irb{ts-S?H26OI`! zV4rPr+-}c;dBPtQ8r22vBnT)6%WT>ey1zG0aM`0e`GaZP?^_J)j5$SawF+r$dmA=4(h*OA7iCi-MIPAZGH2J zb{+e!6is<%{N#juRs1uLxB5!UCx43ky6?=No@@3VlAyC(vLjhd$@x#;!{)84cCmTvo6Td$)O>x%M5BpUdJigS zB+fl+FTkdGa+)=3F{?G}!B4+Ayk4IAB5wGkS=jhdK+++ZDV3>nwanJda27n{wR`pl zbJmGhYKo8ln-Diok|~pS)ibY?x@V8BShDkKkMXf0*FWD}n~#eh?g+sHDOKF;1bW9Ee3H$ z+nM)HGUr&bRCI}M+%_Y}D~hS=kNm85yGlAYZ{Q8xki{>2U$|~Wi|d&79zW^OH~Ff?at%IaP1?SVs3ChwBxQ$B4Dx$A!+@UzeP zE%#O5@qC;svwg}*#wWTS$}?L(beHj|*Lp0RC0EkH%u>6~WQpbc_DQLhtG?WN=NS6f zeV+TxjK7g7=hz+Oc!VcDklMT;{*vsLq*=FG)KjB5^#i|8a!{T8Y^`~RBlEfU|CWdU zTs)_qQ+;Z~rDCo+o{6t{BA#EEcy!O)llSSdHq7{?RHt+gNwz^hV`C2 z$MX2BX+ZG8tgN2p%0AcCZrE&WetC@La;-f67RdGcADv!Re7n%O$~(M9{8 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